diff --git a/.gitignore b/.gitignore index a262a4ac65..6b7085d618 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .*swp .htaccess +.vagrant *~ *.DS_Store application/logs/* @@ -10,3 +11,4 @@ application/config/config.php application/config/database.php application/config/encryption.php tests/phpunit/phpunit.xml +config/deploy/id_rsa_deploy diff --git a/.gitmodules b/.gitmodules index d0a354e1a8..e69de29bb2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "application/i18n"] - path = application/i18n - url = git://github.com/ushahidi/Ushahidi-Localizations.git diff --git a/.htaccess b/.htaccess old mode 100644 new mode 100755 diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..9244255771 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: ruby +rvm: +- 2.2 +script: echo 'No tests here :P' +after_success: + - openssl aes-256-cbc -K $encrypted_e2c5c9d58b16_key -iv $encrypted_e2c5c9d58b16_iv + -in config/deploy/id_rsa_deploy.enc -out config/deploy/id_rsa_deploy -d + - ./config/deploy/travis.sh diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 893f50bc7f..189e4acd98 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,17 +1,12 @@ -Ushahidi is an open source project. We encourage you to pitch in. [Join the mailing list](http://list.ushahidi.com) and dive into the [wiki](https://wiki.ushahidi.com)! +# Cómo contribuir a este repositorio -* If you want to submit a bug report please make sure to follow our [reporting guidelines](https://wiki.ushahidi.com/display/WIKI/Report+a+bug). +Haz un _fork_ del repositorio en GitHub y aplica tus cambios en ese _fork_, basándote en la rama (_branch_) `develop`. Cuando tengas algo listo, envíanos un _Pull Request_ sobre la misma rama. -* If you want to submit a patch, please read the checkout the contribution guidelines: - * [Ushahidi Developer Guide](https://wiki.ushahidi.com/display/WIKI/Ushahidi+Developer+Guide) +Puedes ofrecerte a colaborar en cualquiera de los [_issues_ del proyecto](https://github.com/desastre-ecuador/mapa.desastre.ec/issues). Si no sabes cuál tomar, fíjate en lo priorizado en [el tablero de Waffle](https://waffle.io/desastre-ecuador/mapa.desastre.ec/join). También puedes unirte al [chat del equipo técnico en Telegram](https://telegram.me/joinchat/AbmN-wcPvovTZcL0Lpr14Q). + +Adicionalmente, los lineamientos para la contribución de Ushahidi (en inglés) pueden serte útiles: + * [Ushahidi Developer Guide](https://wiki.ushahidi.com/display/WIKI/Ushahidi+v2.X+Developer+Guide) * [Coding Style Guide](https://wiki.ushahidi.com/display/WIKI/Coding+Style+Guide) * [Localization best practice](https://wiki.ushahidi.com/display/WIKI/Localization+-+dev+best+practices) -* If you have a change or new feature in mind, you can [submit it on github](https://github.com/ushahidi/Ushahidi_Web/issues/new) or [add it to the wishlist for 3.0](https://wiki.ushahidi.com/display/WIKI/Ushahidi+3.x+Wishlist). - -*We only accept bug reports, feature request and pull requests in GitHub*. - -* If you have a question about how to use Ushahidi, please [ask on the Ushahidi Forums](http://forums.ushahidi.com). - -Thanks! -Ushahidi Team +¡Gracias por tu ayuda! diff --git a/Capfile b/Capfile new file mode 100644 index 0000000000..a0cf0b5433 --- /dev/null +++ b/Capfile @@ -0,0 +1,27 @@ +# Load DSL and set up stages +require 'capistrano/setup' + +# Include default deployment tasks +require 'capistrano/deploy' + +# Include tasks from other gems included in your Gemfile +# +# For documentation on these, see for example: +# +# https://github.com/capistrano/rvm +# https://github.com/capistrano/rbenv +# https://github.com/capistrano/chruby +# https://github.com/capistrano/bundler +# https://github.com/capistrano/rails +# https://github.com/capistrano/passenger +# +# require 'capistrano/rvm' +# require 'capistrano/rbenv' +# require 'capistrano/chruby' +# require 'capistrano/bundler' +# require 'capistrano/rails/assets' +# require 'capistrano/rails/migrations' +# require 'capistrano/passenger' + +# Load custom tasks from `lib/capistrano/tasks` if you have any defined +Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r } diff --git a/DEPLOY.md b/DEPLOY.md new file mode 100644 index 0000000000..c3a25331bc --- /dev/null +++ b/DEPLOY.md @@ -0,0 +1,29 @@ +Información de como hacer deploy del Ushahidi +--------------------------------------------- + +El sistema de despliegue está configurado con [Capistano](http://capistranorb.com/), +tienes que [instalar la gema Ruby](http://capistranorb.com/documentation/getting-started/installation/) +antes de poder hacer deploys. + +Una vez instalada la gema, si quieres hacer deploys a beta o a producción tienes +que pedir permisos en el canal [Ushahidi Ecuador Técnicos](https://telegram.me/joinchat/AbmN-wcPvovTZcL0Lpr14Q) + + +Hacer deploys a beta y a producción +----------------------------------- + +Para hacer un deploy a beta, deberas ejecutar en el directorio root del proyecto: + + $ cap staging deploy + +Para hacer un deploy a producción, deberas ejecutar: + + $ cap production deploy + + +Despliegues automáticos +----------------------- + +Los _commits_ que llegan a [la rama `develop` del repositorio en GitHub](https://github.com/desastre-ecuador/mapa.desastre.ec/tree/develop) +son lanzados automáticamente al ambiente [beta](http://beta.mapa.desastre.ec) a través de +[Travis CI](https://travis-ci.org/desastre-ecuador/mapa.desastre.ec). diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..080de3c038 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM php:5.5-apache + +RUN apt-get update +RUN apt-get install -y libmcrypt-dev libfreetype6-dev libjpeg-dev libpng12-dev php5-mysql php5-mcrypt php5-curl php5-imap php5-gd + +RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ +RUN docker-php-ext-install -j$(nproc) gd +RUN docker-php-ext-install -j$(nproc) mcrypt +RUN docker-php-ext-install -j$(nproc) mysql +RUN docker-php-ext-install -j$(nproc) mysqli + +RUN a2enmod rewrite \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000000..37ffe9f714 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem 'capistrano', '~> 3.4' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000000..e7d4ee2041 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,24 @@ +GEM + remote: https://rubygems.org/ + specs: + capistrano (3.4.1) + i18n + rake (>= 10.0.0) + sshkit (~> 1.3) + i18n (0.7.0) + net-scp (1.2.1) + net-ssh (>= 2.6.5) + net-ssh (3.1.1) + rake (11.1.2) + sshkit (1.9.0) + net-scp (>= 1.1.2) + net-ssh (>= 2.8.0) + +PLATFORMS + ruby + +DEPENDENCIES + capistrano (~> 3.4) + +BUNDLED WITH + 1.10.6 diff --git a/README.markdown b/README.markdown deleted file mode 100644 index 94b9a1d5b6..0000000000 --- a/README.markdown +++ /dev/null @@ -1,161 +0,0 @@ -Ushahidi Platform -================= -The Ushahidi Platform is an open source web application for information collection, vizualisation and interactive -mapping. It allows people to collect and share their own stories using various mediums such -as SMS, Web Forms, Email or Twitter. For more information about the platform and use cases (case studies) visit: http://www.ushahidi.com - - -System Requirements -------------------- -To install the platform on your computer/server, the target system must meet the following requirements: - -* PHP version 5.2.3 or greater (5.3 or greater is recommended) -* MySQL version 5.0 or greater -* An HTTP Server. Kohana, which Ushahidi is built on, is known to work with the following web servers: - - Apache 1.3+ - - Apache 2.0+ - - lighttpd - - nginx - - Microsoft Internet Information Server (MS IIS) -* Unicode support in the operating system - - -Required Extensions -------------------- -The follwing is a list of PHP extensions that must be installed on your server in order for Ushahidi to run properly: - -* PCRE (http://php.net/pcre) must be compiled with –enable-utf8 and –enable-unicode-properties for UTF-8 functions to work properly. -* iconv (http://php.net/iconv) is required for UTF-8 transliteration. -* mcrypt (http://php.net/mcrypt) is required for encryption. -* SPL (http://php.net/spl) is required for several core libraries. -* mbstring (http://php.net/mbstring) which speeds up Kohana's UTF-8 functions. -* cURL (http://php.net/curl) which is used to access remote sites. -* MySQL (http://php.net/mysql) is required for database access. -* IMAP (http://php.net/imap) is required for email functionality. -* GD (http://php.net/gd) is required for image processing - -__NOTE: Need to figure out what extensions you already have installed on your server? Here are instructions to do just that: http://jontangerine.com/silo/php/phpinfo/__ - - -Optional Server Requirements ----------------------------- -To use Ushahidi's "Clean URLS" feature on an Apache Web Server, you will need the mod_rewrite module -and the ability to use local `.htaccess` files. - -###Installing mod_rewrite - -#####Debian/Ubuntu flavours of Linux - - sudo a2enmod rewrite - -#####CentOS, OS X and Windows - -Make sure the following line is __NOT__ commented in your `httpd.conf` - - LoadModule rewrite_module - - -###Additional Configuration -To check if local `.htaccess` files are allowed, verify that the "AllowOverride" directive in your Apache config -(for the web server directory in which you have installed Ushahidi) has been set to "All" i.e.: - - - ... - AllowOverride All - ... - - -__NOTE:__ - -* Clean URLs means that the URLs of your deployment will not have the 'index.php' prefix -* You __MUST__ restart your Apache web server after making the changes outlined above - - -Installation ------------- -* ####Download and extract Ushahidi - You can obtain the official release of the software from [the download site](http://download.ushahidi.com). - Alternatively, you can find downloads for the current and previous releases on the [Wiki](https://wiki.ushahidi.com/display/WIKI/Ushahidi+Platform+Downloads) - - To unzip/extract the archive on a typical Unix/Linux command line: - - tar -xvf Ushahidi_Web-xxxx.tar.gz - - or in the case of a zip file: - - unzip Ushahidi_Web-xxxx.zip - - This will create a new directory Ushahidi_Web-xxxx containing all the Ushahidi platform files and directories - Move the contents of this directory - into a directory within your webserver's document root or your public HTML directory. - - #####Getting the latest develop code (CAUTION: only do this if you know what you're doing) - - clone the latest code from github - - git clone --recursive git://github.com/ushahidi/Ushahidi_Web.git - - We add the recursive flag so that git will clone the submodules too - -* ####Ensure the following directories are writable (i.e. have their permission values set to 777) - - application/config - - application/cache - - application/logs - - media/uploads - - .htaccess - - On Unix/Linux, you can change the permissions as follows: - - cd path-to-webserver-document-root-directory - chmod -R 777 application/config - chmod -R 777 application/cache - chmod -R 777 application/logs - chmod -R 777 media/uploads - chmod 777 .htaccess - - __NOTE: The process of configuring file permissions is different for various operating systems. Here are some helpful links about permissions for the Windows (http://support.microsoft.com/kb/308419) and Unix (http://www.washington.edu/computing/unix/permissions.html) operating systems.__ - -* ####Create the Ushahidi database - Ushahidi stores all its information in a database. You must therefore create this database in order to install Ushahidi. This is done as follows: - - mysqladmin -u 'username' -p create 'databasename' - - MySQL will prompt for the password for the database password and then create the initial database files. Next, you must log in and set the - database access rights: - - mysql -u 'username' -p - - Again, you will be prompted for the 'username' database password. At the MySQL prompt, enter the following command: - - GRANT SELECT, INSERT, DELETE, UPDATE, CREATE, DROP, ALTER, INDEX, LOCK TABLES on database.* - TO 'username'@'localhost' IDENTIFIED BY 'password'; - - Where: - - 'databasename' is the name of your database - - 'username@localhost' is the name of your MySQL account - - 'password' is the password required for that username - - __NOTE: Your account must have all the privileges listed above in order to run Ushahidi on your webserver.__ - -* ####Ensure PHP error_reporting level is compatable - As of PHP-5.4 Ushahidi doesn't work with the error_reporting level E_STRICT. Ensure this level is excluded from the error_reporting configuration. - -* ####Run the install script - To run the install script, point your browser to the base url of your website: (e.g. http://www.example.com). - - You will be guided through a series of screens to set up the database and site settings depending on the installation method you choose (Basic or Advanced) - -* ####Clean up - ##### Delete the installer - Leaving the installer files in your installation is a security risk. - Now you've installed successfully, **Delete the entire installer directory** - - ##### Remove write permissions from config files - - cd path-to-webserver-document-root-directory - chmod -R 755 application/config - chmod 644 application/config/* - chmod 644 .htaccess - -Additional Information ----------------------- -For further references and documentation, head over to our wiki (http://wiki.ushahidi.com). Also, we encourage you to drop by our forums (https://wiki.ushahidi.com/display/forums/Ushahidi+Forums) if you have any additional questions or concerns. diff --git a/README.md b/README.md new file mode 100644 index 0000000000..1f96665909 --- /dev/null +++ b/README.md @@ -0,0 +1,44 @@ +# mapa.desastre.ec + +[![Tareas listas para desarrollo](https://badge.waffle.io/desastre-ecuador/mapa.desastre.ec.svg?label=ready&title=Tareas%20listas%20para%20desarrollo)](http://waffle.io/desastre-ecuador/mapa.desastre.ec) +[![Build Status](https://travis-ci.org/desastre-ecuador/mapa.desastre.ec.svg?branch=master)](https://travis-ci.org/desastre-ecuador/mapa.desastre.ec) + +Este es un fork de Ushahidi v2, una plataforma para el mapeo de los informes sobre los daños ocurridos por el terremoto que afectó a las costas ecuatorianas el 16 de abril del 2016. La instancia en vivo se puede acceder en . + +## Cómo colaborar + +Hay muchas formas: + +- Reportando _bugs_ o sugiriendo mejoras a través de los [issues del repo en GitHub](https://github.com/desastre-ecuador/mapa.desastre.ec/issues). +- Resolviendo alguno de esos _issues_. Están priorizados y asignados en [este tablero de Waffle](https://waffle.io/desastre-ecuador/mapa.desastre.ec/join). Por favor, sigue [estas recomendaciones acerca de cómo contribuir](https://github.com/desastre-ecuador/mapa.desastre.ec/blob/master/CONTRIBUTING.md). +- Participando en la [lista de discusión de desarrollo](http://listas.desastre.ec/listinfo.cgi/desarrollo-desastre.ec). +- Participando o haciendo preguntas en el [chat del equipo técnico en Telegram](https://telegram.me/joinchat/AbmN-wcPvovTZcL0Lpr14Q). +- Moderando y verificando reportes. Más información en el [chat general en Telegram](https://telegram.me/joinchat/CV6MEghFJudTwP-hP64xVw). +- Ayudando en otras tareas menos técnicas, disponibles en [este tablero de Trello](https://trello.com/b/EVxI6km1). + +## Cómo levantar el ambiente local + +1. Instalar Git: http://git-scm.com/downloads (o GitHub para Windows si quieres una interfaz gráfica) +2. Instalar VirtualBox: https://www.virtualbox.org/wiki/Downloads +3. Instalar Vagrant: http://www.vagrantup.com/ +4. Abrir una terminal +5. Clonar el proyecto: `git clone https://github.com/desastre-ecuador/mapa.desastre.ec` +6. Entrar al directorio del proyecto: `cd mapa.desastre.ec` +7. Iniciar vagrant: `vagrant up` + +Luego, en tu navegador, ve a y sigue el proceso de instalación. + +## Cómo levantar el ambiente local utilizando Docker Compose + +1. Instalar Git: http://git-scm.com/downloads (o GitHub para Windows si quieres una interfaz gráfica) +2. Instalar Docker Compose: `https://docs.docker.com/compose/install/` +3. Abrir una terminal +4. Clonar el proyecto: `git clone https://github.com/desastre-ecuador/mapa.desastre.ec` +5. Entrar al directorio del proyecto: `cd mapa.desastre.ec` +6. Iniciar docker compose: `docker-compose up -d` + +Luego, en tu navegador, ve a y sigue el proceso de instalación. + +## Licencia + +[LGPL versión 3](https://github.com/desastre-ecuador/mapa.desastre.ec/blob/master/License.txt). diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000000..9a87b9cd84 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,9 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure(2) do |config| + config.vm.box = "ubuntu/precise64" + config.vm.network "forwarded_port", guest: 80, host: 8080 + config.vm.synced_folder ".", "/vagrant", owner: "www-data", group: "www-data" + config.vm.provision :shell, :path => 'scripts/bootstrap.sh' +end diff --git a/application/config/version.php b/application/config/version.php index 568aab925c..e899044220 100755 --- a/application/config/version.php +++ b/application/config/version.php @@ -9,4 +9,4 @@ * The Ushahidi Engine DB revision number * Increments when changes are made to the Ushahidi DB schema. */ -$config['ushahidi_db_version'] = "117"; +$config['ushahidi_db_version'] = "119"; diff --git a/application/controllers/feed.php b/application/controllers/feed.php index 4c1342282b..0a5abde0a6 100644 --- a/application/controllers/feed.php +++ b/application/controllers/feed.php @@ -15,7 +15,7 @@ */ class Feed_Controller extends Controller { - + public function __construct() { parent::__construct(); @@ -27,7 +27,7 @@ public function index($feedtype = 'rss2') { throw new Kohana_404_Exception(); } - + if ($feedtype != 'atom' AND $feedtype != 'rss2') { throw new Kohana_404_Exception(); @@ -39,9 +39,9 @@ public function index($feedtype = 'rss2') // Start at which page? $page = ( isset($_GET['p']) AND ! empty($_GET['p']) AND (int) $_GET['p'] >= 1 ) - ? (int) $_GET['p'] + ? (int) $_GET['p'] : 1; - + $page_position = ($page == 1) ? 0 : ( $page * $limit ) ; // Query position $site_url = url::base(); @@ -56,7 +56,7 @@ public function index($feedtype = 'rss2') $cache = Cache::instance(); $feed_items = $cache->get($subdomain.'_feed_'.$limit.'_'.$page); - + if ($feed_items == NULL) { // Cache is Empty so Re-Cache $incidents = ORM::factory('incident') @@ -72,8 +72,8 @@ public function index($feedtype = 'rss2') { $categories[] = (string)$category->category_title; } - - + + $item = array(); $item['id'] = $incident->id; $item['title'] = $incident->incident_title; @@ -81,7 +81,7 @@ public function index($feedtype = 'rss2') $item['description'] = $incident->incident_description; $item['date'] = $incident->incident_date; $item['categories'] = $categories; - + if ( $incident->location_id != 0 AND @@ -97,7 +97,7 @@ public function index($feedtype = 'rss2') } } - $cache->set($subdomain.'_feed_'.$limit.'_'.$page, $items, array('feed'), 3600); // 1 Hour + $cache->set($subdomain.'_feed_'.$limit.'_'.$page, $items, array('feed'), 300); // 5 minutes $feed_items = $items; } diff --git a/application/controllers/json.php b/application/controllers/json.php index 3cdf36a23a..701b664272 100644 --- a/application/controllers/json.php +++ b/application/controllers/json.php @@ -646,28 +646,31 @@ public function layer($layer_id = 0) $layer_url = $layer->layer_url; $layer_file = $layer->layer_file; + $content === FALSE; + if ($layer_url != '') { // Pull from a URL $layer_link = $layer_url; + $layer_request = new HttpClient($layer_link); + $content = $layer_request->execute(); + if ($content === FALSE) + { + throw new Kohana_Exception($layer_request->get_error_msg()); + } } else { // Pull from an uploaded file $layer_link = Kohana::config('upload.directory').'/'.$layer_file; + $content = readfile($layer_link); + if ($content === FALSE) + { + throw new Kohana_Exception("Couldn't read KML file: " . $layer_link); + } } - $layer_request = new HttpClient($layer_link); - $content = $layer_request->execute(); - - if ($content === FALSE) - { - throw new Kohana_Exception($layer_request->get_error_msg()); - } - else - { - echo $content; - } + echo $content; } else { diff --git a/application/controllers/media.php b/application/controllers/media.php old mode 100644 new mode 100755 index dc0bfde6a1..b53473bb0b --- a/application/controllers/media.php +++ b/application/controllers/media.php @@ -90,14 +90,14 @@ public function _send() if (isset($mtime)) { header('ETag: '.$mtime); + header("Last-Modified: ".gmdate("D, d M Y H:i:s", $mtime)." GMT"); } - header("Last-Modified: ".gmdate("D, d M Y H:i:s", $mtime)." GMT"); $oldetag = isset($_SERVER['HTTP_IF_NONE_MATCH'])?trim($_SERVER['HTTP_IF_NONE_MATCH']):''; $oldmtime = isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])?$_SERVER['HTTP_IF_MODIFIED_SINCE']:''; $accencoding = isset($_SERVER['HTTP_ACCEPT_ENCODING'])?$_SERVER['HTTP_ACCEPT_ENCODING']:''; - if (($oldmtime AND strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $oldmtime) OR $oldetag == $mtime) + if (($oldmtime AND strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $oldmtime) OR (isset($mtime) && $oldetag == $mtime)) { header($_SERVER['SERVER_PROTOCOL'] . ' 304 Not Modified'); } diff --git a/application/controllers/scheduler/s_alerts.php b/application/controllers/scheduler/s_alerts.php index ed68ee432b..8e0bc90a02 100644 --- a/application/controllers/scheduler/s_alerts.php +++ b/application/controllers/scheduler/s_alerts.php @@ -59,7 +59,7 @@ public function index() $alerts_email = ($settings['alerts_email']) ? $settings['alerts_email'] : $settings['site_email']; $unsubscribe_message = Kohana::lang('alerts.unsubscribe') - .url::site().'alerts/unsubscribe/'; + .' '.url::site().'alerts/unsubscribe/'; $database_settings = kohana::config('database'); //around line 33 $this->table_prefix = $database_settings['default']['table_prefix']; //around line 34 diff --git a/application/helpers/alert.php b/application/helpers/alert.php index 41b1c07af5..24d165607d 100644 --- a/application/helpers/alert.php +++ b/application/helpers/alert.php @@ -37,7 +37,7 @@ public static function _send_mobile_alert($post, $alert) $message = Kohana::lang('ui_admin.confirmation_code').$alert_code .'.'.Kohana::lang('ui_admin.not_case_sensitive'); // HT: verify link for mobile - $message .= ' '.Kohana::lang('alerts.confirm_request').url::site().'alerts/verify?c='.$alert_code."&m=".$alert_mobile; + $message .= ' '.Kohana::lang('alerts.confirm_request').' '.url::site().'alerts/verify?c='.$alert_code."&m=".$alert_mobile; if (sms::send($post->alert_mobile, $sms_from, $message) === true) { @@ -108,7 +108,7 @@ public static function _send_email_alert($post, $alert) } - $message .= Kohana::lang('alerts.confirm_request').url::site().'alerts/verify?c='.$alert_code."&e=".$alert_email; + $message .= Kohana::lang('alerts.confirm_request').' '.url::site().'alerts/verify?c='.$alert_code."&e=".$alert_email; if (email::send($to, $from, $subject, $message, TRUE) == 1) { diff --git a/application/helpers/download.php b/application/helpers/download.php index 4a51ff9bf0..033a8f0431 100644 --- a/application/helpers/download.php +++ b/application/helpers/download.php @@ -96,6 +96,7 @@ public static function download_csv($post, $incidents, $custom_forms) } } + $csv_headers[] = 'SUBMITED BY (SMS)'; $csv_headers[] = 'APPROVED'; $csv_headers[] = 'VERIFIED'; @@ -181,6 +182,7 @@ public static function download_csv($post, $incidents, $custom_forms) } } + $csv_line[] = $incident->message->message_from; $csv_line[] = $incident->incident_active ? 'YES' : 'NO'; $csv_line[] = $incident->incident_verified ? 'YES' : 'NO'; diff --git a/application/helpers/nav.php b/application/helpers/nav.php index 0ba0668fdf..92074c900e 100644 --- a/application/helpers/nav.php +++ b/application/helpers/nav.php @@ -8,7 +8,7 @@ * @license http://www.ushahidi.com/license.html */ class nav_Core { - + /** * Generate Main Tabs * @param string $this_page @@ -23,68 +23,55 @@ public static function main_tabs($this_page = FALSE, $dontshow = FALSE) // Set $dontshow as an array to prevent errors $dontshow = array(); } - + // Home if( ! in_array('home',$dontshow)) { - $menu_items[] = array( + $menu_items[] = array( 'page' => 'home', 'url' => url::site('main'), - 'name' => Kohana::lang('ui_main.home') + 'name' => Kohana::lang('ui_main.map') ); } - // Reports List - if( ! in_array('reports',$dontshow)) - { - $menu_items[] = array( - 'page' => 'reports', - 'url' => url::site('reports'), - 'name' => Kohana::lang('ui_main.reports') - ); - } - // Reports Submit if( ! in_array('reports_submit',$dontshow)) { if (Kohana::config('settings.allow_reports')) { - $menu_items[] = array( + $menu_items[] = array( 'page' => 'reports_submit', 'url' => url::site('reports/submit'), 'name' => Kohana::lang('ui_main.submit') ); } } - + + // Reports List + if( ! in_array('reports',$dontshow)) + { + $menu_items[] = array( + 'page' => 'reports', + 'url' => url::site('reports'), + 'name' => Kohana::lang('ui_main.reports') + ); + } + // Alerts if(! in_array('alerts',$dontshow)) { if(Kohana::config('settings.allow_alerts')) { - $menu_items[] = array( + $menu_items[] = array( 'page' => 'alerts', 'url' => url::site('alerts'), 'name' => Kohana::lang('ui_main.alerts') ); } } - - // Contacts - if( ! in_array('contact',$dontshow)) - { - if (Kohana::config('settings.site_contact_page') AND Kohana::config('settings.site_email') != "") - { - $menu_items[] = array( - 'page' => 'contact', - 'url' => url::site('contact'), - 'name' => Kohana::lang('ui_main.contact') - ); - } - } - + // Custom Pages - + if( ! in_array('pages',$dontshow)) { $pages = ORM::factory('page')->where('page_active', '1')->find_all(); @@ -92,7 +79,7 @@ public static function main_tabs($this_page = FALSE, $dontshow = FALSE) { if( ! in_array('page/'.$page->id,$dontshow)) { - $menu_items[] = array( + $menu_items[] = array( 'page' => 'page_'.$page->id, 'url' => url::site('page/index/'.$page->id), 'name' => $page->page_tab @@ -101,6 +88,19 @@ public static function main_tabs($this_page = FALSE, $dontshow = FALSE) } } + // Contacts + if( ! in_array('contact',$dontshow)) + { + if (Kohana::config('settings.site_contact_page') AND Kohana::config('settings.site_email') != "") + { + $menu_items[] = array( + 'page' => 'contact', + 'url' => url::site('contact'), + 'name' => Kohana::lang('ui_main.contact') + ); + } + } + Event::run('ushahidi_filter.nav_main_tabs', $menu_items); foreach( $menu_items as $item ) @@ -112,6 +112,6 @@ public static function main_tabs($this_page = FALSE, $dontshow = FALSE) // Action::nav_admin_reports - Add items to the admin reports navigation tabs Event::run('ushahidi_action.nav_main_top', $this_page); } - - + + } diff --git a/application/helpers/reports.php b/application/helpers/reports.php index 256b0095ab..53234c3f86 100644 --- a/application/helpers/reports.php +++ b/application/helpers/reports.php @@ -792,8 +792,7 @@ public static function fetch_incidents($paginate = FALSE, $items_per_page = 0) $category_ids = implode(",", $category_ids); array_push(self::$params, - '(c.id IN ('.$category_ids.') OR c.parent_id IN ('.$category_ids.'))', - 'c.category_visible = 1' + '(c.id IN ('.$category_ids.') OR c.parent_id IN ('.$category_ids.'))' ); } } diff --git a/application/i18n b/application/i18n deleted file mode 160000 index fc788997a2..0000000000 --- a/application/i18n +++ /dev/null @@ -1 +0,0 @@ -Subproject commit fc788997a2e8a16917da4f96bd9f9856c40bbcd4 diff --git a/application/i18n/.tx/config b/application/i18n/.tx/config new file mode 100644 index 0000000000..79dc5bbe97 --- /dev/null +++ b/application/i18n/.tx/config @@ -0,0 +1,207 @@ +[main] +host = https://www.transifex.net +lang_map = en:en_US + +[ushahidi-v2.alerts] +file_filter = po/po-/alerts.po +source_file = po/po-en_US/alerts.pot +source_lang = en_US +type = PO + +[ushahidi-v2.auth] +file_filter = po/po-/auth.po +source_file = po/po-en_US/auth.pot +source_lang = en_US +type = PO + +[ushahidi-v2.bug] +file_filter = po/po-/bug.po +source_file = po/po-en_US/bug.pot +source_lang = en_US +type = PO + +[ushahidi-v2.category] +file_filter = po/po-/category.po +source_file = po/po-en_US/category.pot +source_lang = en_US +type = PO + +[ushahidi-v2.comments] +file_filter = po/po-/comments.po +source_file = po/po-en_US/comments.pot +source_lang = en_US +type = PO + +[ushahidi-v2.contact] +file_filter = po/po-/contact.po +source_file = po/po-en_US/contact.pot +source_lang = en_US +type = PO + +[ushahidi-v2.core] +file_filter = po/po-/core.po +source_file = po/po-en_US/core.pot +source_lang = en_US +type = PO + +[ushahidi-v2.database] +file_filter = po/po-/database.po +source_file = po/po-en_US/database.pot +source_lang = en_US +type = PO + +[ushahidi-v2.datetime] +file_filter = po/po-/datetime.po +source_file = po/po-en_US/datetime.pot +source_lang = en_US +type = PO + +[ushahidi-v2.feeds] +file_filter = po/po-/feeds.po +source_file = po/po-en_US/feeds.pot +source_lang = en_US +type = PO + +[ushahidi-v2.footer] +file_filter = po/po-/footer.po +source_file = po/po-en_US/footer.pot +source_lang = en_US +type = PO + +[ushahidi-v2.form] +file_filter = po/po-/form.po +source_file = po/po-en_US/form.pot +source_lang = en_US +type = PO + +[ushahidi-v2.imap] +file_filter = po/po-/imap.po +source_file = po/po-en_US/imap.pot +source_lang = en_US +type = PO + +[ushahidi-v2.installer] +file_filter = po/po-/installer.po +source_file = po/po-en_US/installer.pot +source_lang = en_US +type = PO + +[ushahidi-v2.layer] +file_filter = po/po-/layer.po +source_file = po/po-en_US/layer.pot +source_lang = en_US +type = PO + +[ushahidi-v2.libraries] +file_filter = po/po-/libraries.po +source_file = po/po-en_US/libraries.pot +source_lang = en_US +type = PO + +[ushahidi-v2.maintenance] +file_filter = po/po-/maintenance.po +source_file = po/po-en_US/maintenance.pot +source_lang = en_US +type = PO + +[ushahidi-v2.message] +file_filter = po/po-/message.po +source_file = po/po-en_US/message.pot +source_lang = en_US +type = PO + +[ushahidi-v2.mhi] +file_filter = po/po-/mhi.po +source_file = po/po-en_US/mhi.pot +source_lang = en_US +type = PO + +[ushahidi-v2.notifications] +file_filter = po/po-/notifications.po +source_file = po/po-en_US/notifications.pot +source_lang = en_US +type = PO + +[ushahidi-v2.page] +file_filter = po/po-/page.po +source_file = po/po-en_US/page.pot +source_lang = en_US +type = PO + +[ushahidi-v2.permissions] +file_filter = po/po-/permissions.po +source_file = po/po-en_US/permissions.pot +source_lang = en_US +type = PO + +[ushahidi-v2.private_message] +file_filter = po/po-/private_message.po +source_file = po/po-en_US/private_message.pot +source_lang = en_US +type = PO + +[ushahidi-v2.report] +file_filter = po/po-/report.po +source_file = po/po-en_US/report.pot +source_lang = en_US +type = PO + +[ushahidi-v2.reporters] +file_filter = po/po-/reporters.po +source_file = po/po-en_US/reporters.pot +source_lang = en_US +type = PO + +[ushahidi-v2.reports] +file_filter = po/po-/reports.po +source_file = po/po-en_US/reports.pot +source_lang = en_US +type = PO + +[ushahidi-v2.roles] +file_filter = po/po-/roles.po +source_file = po/po-en_US/roles.pot +source_lang = en_US +type = PO + +[ushahidi-v2.settings] +file_filter = po/po-/settings.po +source_file = po/po-en_US/settings.pot +source_lang = en_US +type = PO + +[ushahidi-v2.sharing] +file_filter = po/po-/sharing.po +source_file = po/po-en_US/sharing.pot +source_lang = en_US +type = PO + +[ushahidi-v2.stats] +file_filter = po/po-/stats.po +source_file = po/po-en_US/stats.pot +source_lang = en_US +type = PO + +[ushahidi-v2.tooltips] +file_filter = po/po-/tooltips.po +source_file = po/po-en_US/tooltips.pot +source_lang = en_US +type = PO + +[ushahidi-v2.ui_admin] +file_filter = po/po-/ui_admin.po +source_file = po/po-en_US/ui_admin.pot +source_lang = en_US +type = PO + +[ushahidi-v2.ui_main] +file_filter = po/po-/ui_main.po +source_file = po/po-en_US/ui_main.pot +source_lang = en_US +type = PO + +[ushahidi-v2.upgrade] +file_filter = po/po-/upgrade.po +source_file = po/po-en_US/upgrade.pot +source_lang = en_US +type = PO diff --git a/application/i18n/README b/application/i18n/README new file mode 100644 index 0000000000..fc8fb57dd8 --- /dev/null +++ b/application/i18n/README @@ -0,0 +1,8 @@ +Ushahidi Translations +===================== + +This repository is regularly synced with a Transifex project. + +Please make updates at https://www.transifex.com/projects/p/ushahidi-v2/ + +Thank you! diff --git a/application/i18n/ach/alerts.php b/application/i18n/ach/alerts.php new file mode 100644 index 0000000000..d6243c79d7 --- /dev/null +++ b/application/i18n/ach/alerts.php @@ -0,0 +1,7 @@ + array( + 'between' => 'ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም', + 'required' => 'ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም', + ) , + 'alert_lon' => array( + 'between' => 'ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም', + 'required' => 'ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም', + ) , +); diff --git a/application/i18n/am/auth.php b/application/i18n/am/auth.php new file mode 100644 index 0000000000..c741917e03 --- /dev/null +++ b/application/i18n/am/auth.php @@ -0,0 +1,7 @@ + array( + 'email' => '.يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح', + 'email_check' => 'عنوان البريد الإلكتروني مسجل بالفعل لإستقبال التنبيهات لهذه المنطقة', + 'length' => '.حقل البريد الإليكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز', + 'required' => '.يجب ملء حقل البريد الإلكتروني اذا تم اختيار هذا الحقل', + ) , + 'alert_country' => array( + 'single_country' => 'هذا الانتشار يمتد داخل دولة واحدة فقط. من فضلك تأكد من موقع التنبيه داخل البلاد %s.', + ) , + 'alert_lat' => array( + 'between' => '.لم تختر موقع صحيح على الخريطة', + 'required' => '.لم تختر موقع صحيح على الخريطة', + ) , + 'alert_lon' => array( + 'between' => '.لم تختر موقع صحيح على الخريطة', + 'required' => '.لم تختر موقع صحيح على الخريطة', + ) , + 'alert_mobile' => array( + 'length' => '.يبدو أن حقل رقم الهاتف المحمول لا يحتوى على العدد المناسب من الأرقام', + 'mobile_check' => '.هذا الرقم مسجل بالفعل لإستقبال تنبيهات لهذه المنطقة', + 'numeric' => '.يبدو أن الرقم المُدرج في حقل رقم الهاتف المحمول غير سليم. برجاء إدخال الرقم ورمز الدولة', + 'one_required' => '.عليك إدراج إما رقم الهاتف المحمول الخاص بك أو عنوان بريدك الإلكترونى', + 'required' => '.يجب ملء هذا الحقل في حال اختيار حقل الهاتف المحمول', + ) , + 'alert_radius' => array( + 'in_array' => '.لم تحدد نقطة صحيحة على الخريطة', + 'required' => '.لم تحدد النقطة الخاص بك على الخريطة', + ) , + 'alert_recipient' => array( + 'required' => 'لم تختار اى اسم لمتلقى التنبيهات', + ) , + 'alerts_subscribed' => 'لقد قمت بالتسجيل فى التنبيهات فى الفئات التالية', + 'code_already_verified' => '!لقد تم التحقق من هذا الرمز سابقاً', + 'code_not_found' => '.لم يتم العثور على رمز التحقق! يجب التأكد من أن لديك الرابط الصحيح', + 'code_verified' => ' لقد تم التحقق من الرمز الخاص بك. الآن ستتلقى التنبيهات الخاصة بالأحداث فور حدوثها', + 'confirm_request' => 'للتأكيد على طلبك باستقبال التنبيهات، اذهب إلى', + 'create_more_alerts' => 'العودة إلى صفحة التنبيهات لإنشاء المزيد من التنبيهات', + 'email_alert_request_created' => 'طلبك باستقبال تنبيهات على البريد الإليكتروني تم انشاءه وتم إرسال رسالة للتحقق إلى', + 'email_code' => ':برجاء إدخال رمز التحقق الذى استلمته عبر البريد الإلكتروني', + 'email_error_head' => '!لم يتم حفظ طلبك باستقبال تنبيهات على البريد الإلكترونى', + 'email_ok_head' => '!تم حفظ طلبك باستقبال تنبيهات على البريد الإلكترونى', + 'error' => '!لم يتمكن النظام من إجراء طلبك للتحقق', + 'mobile_alert_request_created' => 'طلبك باستقبال تنبيهات على الهاتف المحمول تم إنشاءه وتم إرسال رسالة للتحقق إلى ', + 'mobile_code' => ':برجاء إدخال رمز التحقق الذى استلمته على هاتفك المحمول', + 'mobile_error_head' => '!لم يتم حفظ طلبك باستقبال تنبيهات على الهاتف المحمول', + 'mobile_ok_head' => '!تم حفظ طلبك باستقبال تنبيهات على الهاتف المحمول', + 'settings_error' => 'هذه الخريطة غير مُعدة بصورة صحيحة لإجراء التنبيهات', + 'unsubscribe' => 'لقد استلمت هذه الرسالة لأنك اشتركت فى خدمة استقبال التنبيهات. إذا رغبت فى عدم تلقي تنبيهات مستقبلية إذهب إلى ', + 'unsubscribed' => 'لن تستقبل أية تنبيهات بعد الآن من', + 'unsubscribe_failed' => '.لم نتمكن من إلغاء اشتراكك. برجاء التأكد من أن لديك الرابط الصحيح', + 'verification_email_subject' => 'تنبيهات - تحقق', + 'verify_code' => '.لن تستقبل تنبيهات من هذه المنطقة حتى تقوم بالتأكيد على هذا الطلب', +); diff --git a/application/i18n/ar/auth.php b/application/i18n/ar/auth.php new file mode 100755 index 0000000000..ecfd41c02b --- /dev/null +++ b/application/i18n/ar/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => '.يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح', + 'exists' => '.عفواً، يوجد حساب مستخدم آخر لهذا البريد الإلكتروني', + 'length' => '.حقل البريد الإليكترونى يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز', + 'required' => '.يجب إدخال بيانات حقل البريد الإلكترونى', + ) , + 'name' => array( + 'length' => '.حقل الاسم يجب أن يحتوى 3 رموز على الأقل ولا يتعدى 100 رمز', + 'required' => '.يجب إدخال حقل الاسم بالكامل', + 'standard_text' => '.حقل اسم المستخدم يحتوى على رموز غير مسموح بها', + ) , + 'current_password' => array( + 'length' => 'كلمة المرور يجب ان لا تقل عن 8 حروف.', + 'login error' => 'برجاء التاكد من ادخال كلمة مرور وبريد اليكترونى صحيح', + 'matches' => 'برجاء كتابة كلمة المرور فى الحقلين المخصصين لكلمة المرور', + 'required' => 'حقل كلمة المرور مطلوب', + 'alpha_dash' => 'حقل كلمة المرور يجب ان يتكون من حروف و # و @ كرموز و ارقام و _ و / فقط.', + 'incorrect' => 'كلمة المرور التى ادخلتها لهذا الحساب غير صحيحة. اعد المحاولة.', + ) , + 'new_password' => array( + 'length' => 'كلمة المرور يجب ان لا تقل عن 8 حروف.', + 'login error' => 'برجاء التاكد من ادخال كلمة مرور وبريد اليكترونى صحيح', + 'matches' => 'برجاء كتابة كلمة المرور فى الحقلين المخصصين لكلمة المرور', + 'required' => 'حقل كلمة المرور مطلوب', + 'alpha_dash' => 'حقل كلمة المرور يجب ان يتكون من حروف و # و @ كرموز و ارقام و _ و / فقط.', + ) , + 'password' => array( + 'default' => 'هناك خطأ اثناء عملية الدخول', + 'length' => 'يجب ألا تقل كلمة المرور عن 5 أحرف أو أرقام وألا تزيد على 16 حرف أو رقم', + 'login error' => 'تأكد من إدخال كلمة المرور الصحيحة', + 'matches' => '.أدخل نفس كلمة السر فى الحقلين الخاصين بكلمة المرور', + 'required' => '.يجب ملء حقل كلمة المرور', + 'riverid server down' => 'هناك مشكلة فى السيرفير. أعد المحاولة', + 'riverid' => '%s', + 'alpha_dash' => 'حقل كلمة المرور يجب ان يتكون من حروف و # و @ كرموز و ارقام و _ و / فقط.', + ) , + 'password_confirm' => array( + 'matches' => '.حقل تأكيد كلمة السر يجب أن تطابق حقل كلمة المسر', + ) , + 'resetemail' => array( + 'email' => '.يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح', + 'invalid' => '.ليس لدينا عنوان بريدك الإلكتروني', + 'required' => '.يجب ملء حقل البريد الإلكتروني', + ) , + 'role' => array( + 'superadmin_modify' => 'سوبر ادمن فقط يستطيع تعديل مستخدم سوبر ادمن او اعطاء صلاحية ادمن.', + ) , + 'roles' => array( + 'alpha_numeric' => '.صيغة المهمة غير صحيحة', + 'length' => '.حقل المهمة يجب أن يحتوى 5 رموز على الأقل ولا يتعدى 30 رمز', + 'required' => '.يجب أن تحدد مهمة واحدة على الأقل', + 'values' => '.يجب أن تختار مهمة مسئول إداري أو مستخدم', + ) , + 'token' => array( + 'invalid' => 'رمز استرداد كلمة المرور غير صحيح', + 'required' => 'مطلوب رمز لاسترداد كلمة المرور', + ) , + 'username' => array( + 'admin' => '.لا يمكن تعديل مهمة اسم المستخدم الإداري', + 'alpha_numeric' => 'الملف الشخصى العام يجب ان يحتوى على ارقام وحروف فقط.', + 'exists' => '.عفواً، هذا اسم قيد الاستخدام', + 'length' => '.حقل اسم المستخدم يجب ألا يقل عن رمزين وألا يزيد على 16 رمز', + 'login error' => 'تأكد من إدخال اسم المستخدم الصحيح', + 'required' => '.يجب ملء حقل اسم المستخدم', + 'superadmin' => '.لا يمكن تعديل مهمة المسئول الإداري الأعلى', + 'csrf' => 'هل تعنى حقا تعديل/أنشا مستخدم؟', + ) , +); diff --git a/application/i18n/ar/bug.php b/application/i18n/ar/bug.php new file mode 100755 index 0000000000..93fd07ad40 --- /dev/null +++ b/application/i18n/ar/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'أدخل رمز سري صحيح', + 'required' => 'أدخل الرمز السري', + ) , + 'email' => array( + 'email' => 'يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح', + 'length' => '.حقل البريد الإلكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز', + 'required' => '.يجب ملء هذا الحقل في حال اختيار حقل البريد الإلكتروني', + ) , + 'error' => array( + 'required' => '.يجب ملء حقل الخطأ', + ) , + 'subject' => array( + 'length' => '.يجب ألا يقل حقل الموضوع عن 3 رموز', + 'required' => '.يجب ملء حقل الموضوع', + ) , + 'yourname' => array( + 'length' => '.يجب ألا يقل حقل الاسم عن 3 رموز', + 'required' => '.يجب ملء حقل الاسم', + ) , +); diff --git a/application/i18n/ar/category.php b/application/i18n/ar/category.php new file mode 100755 index 0000000000..297dbcdd01 --- /dev/null +++ b/application/i18n/ar/category.php @@ -0,0 +1,33 @@ + array( + 'length' => '.يجب ألا يقل حقل اللون عن 6 رموز', + 'required' => '.يجب ملء حقل اللون', + ) , + 'category_description' => array( + 'required' => '.يجب ملء حقل التوصيف', + ) , + 'category_image' => array( + 'size' => '.برجاء التأكد أن حجم ملف الصورة لا يتجاوز 50ك.ب', + 'type' => 'JPG, PNG و GIF يبدو أن الحقل الخاص بالصور لا يحتوى على صورة سليمة. إمتدادات الصور المقبولة', + 'valid' => '.يبدو أن الحقل الخاص بالصور لا يحتوي على ملف صحيح', + ) , + 'category_title' => array( + 'length' => '.حقل العنوان يجب أن يحتوى 3 رموز على الأقل ولا يتعدى 80 رمز', + 'required' => '.يجب ملء حقل العنوان', + ) , + 'parent_id' => array( + 'already_parent' => 'لا يمكن وضع فئة فرعية فى فئة مصنفة كفرعية', + 'exists' => '.التصنيف الأصلي غير موجود', + 'numeric' => '.يجب أن يكون التصنيف الرئيسي رقمي', + 'parent_trusted' => 'الفئة الرئيسية لا يمكن ان تكون فئة خاصة', + 'required' => '.يجب ملء حقل التصنيف الرئيسي', + 'same' => '.لا يمكن تطابق التصنيف الفرعي والرئيسي', + 'special' => 'الفئة الخاصة لا يمكن ان تكون فئة فرعية', + ) , +); diff --git a/application/i18n/ar/comments.php b/application/i18n/ar/comments.php new file mode 100755 index 0000000000..e4c5ac13ba --- /dev/null +++ b/application/i18n/ar/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'أدخل رمز سري صحيح', + 'required' => 'أدخل الرمز السري', + 'valid' => 'لقد قمت بادخال رمز سرى خاطئ', + ) , + 'comment_author' => array( + 'length' => '.يجب الا يقل حقل الاسم عن 3 رموز', + 'required' => '.يجب ملء حقل الاسم', + ) , + 'comment_description' => array( + 'required' => '.يجب ملء حقل التعليقات', + ) , + 'comment_email' => array( + 'email' => '.يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح', + 'length' => '.حقل البريد الإلكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز', + 'required' => '.يجب ملء حقل البريد الإلكتروني اذا تم اختيار هذا الحقل', + ) , +); diff --git a/application/i18n/ar/contact.php b/application/i18n/ar/contact.php new file mode 100755 index 0000000000..86a3f0f5ee --- /dev/null +++ b/application/i18n/ar/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'أدخل رمز سري صحيح', + 'valid' => 'برجاء ادخال رمز سرى صحيح', + 'required' => 'أدخل الرمز السري', + ) , + 'contact_email' => array( + 'email' => '.يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح', + 'length' => '.حقل البريد الإلكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز', + 'required' => '.يجب ملء حقل البريد الإلكتروني إذا تم اختيار هذا الحقل', + ) , + 'contact_message' => array( + 'required' => '.يجب ملء حقل الرسالة', + ) , + 'contact_name' => array( + 'length' => '.يجب أن يحتوى حقل الاسم على 3 رموز على الأقل', + 'required' => 'يجب ملء حقل الاسم', + ) , + 'contact_subject' => array( + 'length' => 'يجب ألا يقل حقل الموضوع عن 3 رموز', + 'required' => '.يجب ملء حقل موضوع الرسالة', + ) , + 'email_send' => array( + 'failed' => 'هناك خطأ فى ارسال رسالتك', + ) , +); diff --git a/application/i18n/ar/core.php b/application/i18n/ar/core.php new file mode 100755 index 0000000000..7dc6360ab1 --- /dev/null +++ b/application/i18n/ar/core.php @@ -0,0 +1,35 @@ + 'ملف التكوين', + 'controller' => 'المتحكم', + 'driver' => 'السائق', + 'driver_implements' => 'The %s driver for the %s library must implement the %s interface', + 'driver_not_found' => 'The %s driver for the %s library could not be found', + 'errors_disabled' => 'يمكنك الذهاب إلى home page or try again.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'لم نتمكن من استكمال طلبك', + 'helper' => 'المساعد', + 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file', + 'invalid_method' => 'طريقة غير صالحة تم طلبها في %s %s', + 'invalid_property' => 'الخاصية %s غير موجود في الكلاس %s.', + 'library' => 'المكتبة', + 'log_dir_unwritable' => 'لا يمكن الكتابة على هذا السجل %s', + 'model' => 'نموذج', + 'no_controller' => 'أوشاهيدى لم تتمكن من إيجاد متحكم للإستمرار فى إجراءات الطلب %s', + 'no_default_route' => 'يرجى تحديد مسار تلقائي في الاعداد / routes.php', + 'page_not_found' => 'لم يتم إيجاد الصفحة التى طلبتها', + 'report_bug' => 'أرسل هذه المشكلة إلى يوشاهيدي', + 'resource_not_found' => 'The requested %s, %s, could not be found', + 'stack_trace' => 'تتبع الكومة ', + 'stats_footer' => 'تم التحميل في {execution_time} ثانية, باستخدام {memory_usage} من الذاكرة. المصدر يوشاهيدي النسخة رقم %s.', + 'text_direction' => 'rtl', + 'there_can_be_only_one' => 'يجب ان يكون هناك طلب واحد فقط لأوشاهيدى للصفحة الواحدة', + 'uncaught_exception' => 'مشكلة %s: %s في الملف %s في السطر %s', + 'view' => 'معاينة', + 'view_set_filename' => 'You must set the the view filename before calling render', +); diff --git a/application/i18n/ar/database.php b/application/i18n/ar/database.php new file mode 100755 index 0000000000..60742ff038 --- /dev/null +++ b/application/i18n/ar/database.php @@ -0,0 +1,10 @@ + 'خطأ في قاعدة البيانات', + 'table_not_found' => 'لم يمكن إيجاد الجدول فى قاعدة البيانات. برجاء التأكد من استخدام أحدث إصداره من قاعدة البيانات لهذه الإصداره من يوشاهيدي', +); diff --git a/application/i18n/ar/datetime.php b/application/i18n/ar/datetime.php new file mode 100755 index 0000000000..5e1e05d21a --- /dev/null +++ b/application/i18n/ar/datetime.php @@ -0,0 +1,86 @@ + 'صباحاً', + 'friday' => array( + 'abbv' => 'الجمعة', + 'full' => 'الجمعة', + ) , + 'monday' => array( + 'abbv' => 'الاثنين', + 'full' => 'الاثنين', + ) , + 'pm' => 'مساءً', + 'saturday' => array( + 'abbv' => 'السبت', + 'full' => 'السبت', + ) , + 'sunday' => array( + 'abbv' => 'الأحد', + 'full' => 'الأحد', + ) , + 'thursday' => array( + 'abbv' => 'الخميس', + 'full' => 'الخميس', + ) , + 'tuesday' => array( + 'abbv' => 'الثلاثاء', + 'full' => 'الثلاثاء', + ) , + 'wednesday' => array( + 'abbv' => 'الأربعاء', + 'full' => 'الأربعاء', + ) , + 'january' => array( + 'abbv' => 'يناير', + 'full' => 'يناير', + ) , + 'february' => array( + 'abbv' => 'فبراير', + 'full' => 'فبراير', + ) , + 'march' => array( + 'abbv' => 'مارس', + 'full' => 'مارس', + ) , + 'april' => array( + 'abbv' => 'ابريل', + 'full' => 'ابريل', + ) , + 'may' => array( + 'abbv' => 'مايو', + 'full' => 'مايو', + ) , + 'june' => array( + 'abbv' => 'يونيو', + 'full' => 'يونيو', + ) , + 'july' => array( + 'abbv' => 'يوليو', + 'full' => 'يوليو', + ) , + 'august' => array( + 'abbv' => 'اغسطس', + 'full' => 'اغسطس', + ) , + 'september' => array( + 'abbv' => 'سبتمبر', + 'full' => 'سبتمبر', + ) , + 'october' => array( + 'abbv' => 'اكتوبر', + 'full' => 'اكتوبر', + ) , + 'november' => array( + 'abbv' => 'نوفمبر', + 'full' => 'نوفمبر', + ) , + 'december' => array( + 'abbv' => 'ديسمبر', + 'full' => 'ديسمبر', + ) , +); diff --git a/application/i18n/ar/feeds.php b/application/i18n/ar/feeds.php new file mode 100755 index 0000000000..cff480012f --- /dev/null +++ b/application/i18n/ar/feeds.php @@ -0,0 +1,20 @@ + 'التاريخ', + 'feed_name' => array( + 'length' => 'حقل التغذية المرجعية يجب أن يحتوى على الأقل 3 حروف + ولا يزيد عن 70 حرف', + 'required' => 'أدخل اسم التغذية المرجعية', + ) , + 'feed_url' => array( + 'required' => 'أدخل رابط التغذية المرجعية', + 'url' => 'أدخل رابط فعّال. Eg. http://www.ushahidi.com', + ) , + 'source' => 'المصدر', + 'title' => 'العنوان', +); diff --git a/application/i18n/ar/footer.php b/application/i18n/ar/footer.php new file mode 100644 index 0000000000..6f3c3e6446 --- /dev/null +++ b/application/i18n/ar/footer.php @@ -0,0 +1,9 @@ + 'php5-curl غير مثبت على هذا النظام.', +); diff --git a/application/i18n/ar/form.php b/application/i18n/ar/form.php new file mode 100755 index 0000000000..311163c77a --- /dev/null +++ b/application/i18n/ar/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'القيمة الافتراضية التى وضعتها غير مقبولة', + 'length' => 'اسم الحقل يجب ألا يقل عن 3 حروف وألا يزيد عن 200 حرف', + ) , + 'field_height' => array( + 'between' => 'لتحديد طول الحقل أدخل قيمة من 0 إلى 50', + ) , + 'field_isdate' => array( + 'between' => 'لقد أدخلت قيمة غير صالح فى الحقل الخاص بالتاريخ', + 'required' => 'حدد نعم أو لا للحقل الخاص بالتاريخ', + ) , + 'field_name' => array( + 'length' => 'اسم الحقل يجب ألا يقل عن 3 حروف وألا يزيد عن 100 حرف', + 'required' => 'أدخل اسم الحقل', + 'duplicate' => 'اسم الحقل الذي أدخلته موجود مسبقا على هذا النموذج. من فضلك ادخل احد آخر.', + ) , + 'field_required' => array( + 'between' => 'لقد أدخلت قيمة غير صالحة للحقل المطلوب', + 'required' => 'حدد نعم أو لا للحقل المطلوب', + ) , + 'field_type' => array( + 'numeric' => 'حدد نوع حقل صحيح', + 'required' => 'حدد نوع الحقل', + ) , + 'field_width' => array( + 'between' => 'لتحديد عرض الحقل أدخل قيمة من 0 إلى 300', + ) , + 'form_description' => array( + 'required' => 'أدخل توصيف النموذج', + ) , + 'form_id' => array( + 'default' => 'لا يمكن حذف النموذج الأصلى', + 'numeric' => 'حدد النموذج الذى تريد إضافة هذا الحقل إليه', + 'required' => 'حدد النموذج الذى تريد إضافة هذا الحقل إليه', + ) , + 'form_title' => array( + 'length' => 'حقل اسم النموذج يجب ان يحتوى على الأقل 3 حروف ويجب ألا يزيد على 100 حرف.', + 'required' => 'أدخل اسم النموذج', + 'exists' => 'نموذج مع هذا العنوان موجود مسبقا. يرجى اختيار اسم آخر.', + ) , +); diff --git a/application/i18n/ar/imap.php b/application/i18n/ar/imap.php new file mode 100755 index 0000000000..b5b4a9fb1b --- /dev/null +++ b/application/i18n/ar/imap.php @@ -0,0 +1,10 @@ + 'IMAP Stream لم نتمكن من تشغيل', + 'unsupported_service' => 'خدمات البريد الإليكترونى غير متوفرة', +); diff --git a/application/i18n/ar/installer.php b/application/i18n/ar/installer.php new file mode 100755 index 0000000000..4cdcbeae55 --- /dev/null +++ b/application/i18n/ar/installer.php @@ -0,0 +1,82 @@ + 'مسار القاعدة', + 'database' => 'قاعدة البيانات', + 'database_host' => 'مضيف قاعدة البيانات', + 'database_host_description' => 'إن كنت تشغل أوشاهيدى من على الحاسب الخاص بك، ستكون عاملاً على المضيف المحلى. إن كنت تشغل أوشاهيدى من على خادم ويب، ستحصل معلومات عن المضيف من موفر الخدمة لديك', + 'database_name' => 'اسم قاعدة البيانات', + 'database_name_description' => 'اسم قاعدة البيانات التى تريد تشغيل أوشاهيدى من خلالها', + 'db_information_link' => 'للمزيد من المعلومات, تحقق من this article on the wiki that talks about databases in more detail', + 'default_language' => '(اللغة الأساسية (محلية', + 'default_language_description' => 'Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own', + 'disable' => 'إيقاف', + 'enable' => 'تشغيل', + 'error_summary' => 'التالى قائمة بالمشكلات التى واجهناها', + 'files_location_text' => 'مكان وضع الملفات الخاصة بأوشاهيدى على الخادم الخاص بك. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory', + 'finished' => 'انتهى', + 'general' => 'عام', + 'google_key_description' => 'يمكن لأى أحد الحصول على api مفتاح. Get yours now', + 'go_back' => 'العودة', + 'index' => array( + 'advanced' => 'تنصيب متقدم', + 'advanced_installation_description' => 'قم بإكمال الإعدادات الأساسية في 5 خطوات. تتضمن الإعدادات: الخادم، الخريطة، اسم الموقع، وتفاصيل الاتصال', + 'basic_installation' => 'التنصيب والإعدادات الأساسية', + 'basic_installation_description' => 'كل ما تحتاجه هو الدليل الجذر لموقعك الإليكتروني ومعلومات قاعدة البيانات الخاصة بك. اختر هذا الخيار إذا كنت تريد التنفيذ بسرعة، ويمكنك دائماً العودة لضبط كل شيء في وقت لاحق', + 'proceed' => 'تقدم', + 'welcome' => 'مرحباً بك فى عمليات إنشاء خادم أوشاهيدى، اختر نوع الإعداد الذى تراه مناسباً فى الأسفل', + ) , + 'installation_successful' => 'نجح التنصيب', + 'mail_server' => 'خادم البريد', + 'mail_server_host' => 'مضيف خادم البريد', + 'mail_server_host_description' => 'أمثلة: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'كلمة المرور لخادم البريد', + 'mail_server_password_description' => 'كلمة المرور المعتادة التى تستخدمها للدخول إلى بريدك الإليكترونى', + 'mail_server_port' => 'منفذ خادم البريد', + 'mail_server_type' => 'نوع خادم البريد', + 'mail_server_username' => 'اسم المستخدم لخادم البريد', + 'mail_server_username_description' => 'قم بإدخال عنوان بريد إليكتروني كامل كاسم مستخدم، إذا كنت تستخدم أي من +Gmail/Hotmail/Yahoo Mail', + 'map' => 'خريطة', + 'map_provider' => 'موفر الخرائط', + 'map_provider_description' => 'أوشاهيدى تعمل بفاعلية مع كل من موفرى الخرائط التاليين: Google, Bing, Yahoo or Open Street Map. اختر الموفر الأكثر تفصيلاً فى منطقتك', + 'other_steps' => '...خطوات أخرى', + 'password' => 'كلمة المرور', + 'password_description' => 'كلمة المرور الخاصة بقاعدة البيانات الخاصة بك', + 'previous' => 'السابق', + 'restart_apache' => 'الرجاء إعادة تشغيل الخادم أباتشي', + 'select_mail_server_ssl' => 'SSL تمكين أو تعطيل', + 'select_mail_server_ssl_description' => 'Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security', + 'setup_sms' => 'قم بإعداد خادم الرسائل القصيرة', + 'site_email' => 'البريد الإليكتروني للموقع', + 'site_email_alerts' => 'تنبيهات الموقع البريدية', + 'site_email_alerts_description' => 'عندما يقوم زوار موقعك بالتسجيل لاستقبال التنبيهات الإليكترونية، سيتم الاستقبال من هذا العنوان. ليس من الضروري أن يتطابق هذا العنوان البريدي مع العنوان البريدي للموقع', + 'site_email_description' => 'سيتم توجيه أي مراسلات من على الموقع عبر هذا البريد الإليكتروني', + 'site_name' => 'اسم الموقع', + 'site_name_description' => 'اسم الموقع الخاص بك', + 'site_tagline' => '(Tagline) مانشيت الموقع', + 'site_tagline_description' => '(Tagline) المانشيت الخاص بك', + 'summary' => array( + 'text_1' => 'يجب التأكد من قدرة خادم الويب الخاص بك على كتابة الملفات التالية ', + 'text_2' => '

هذه هى التعليمات الخاصة بتغيير تصريحات الملفات:

+ ', + 'text_3' => 'قبل أن تبدأ، تأكد من قدرة خادم الويب الخاص على كتابة الملفات الآتية. هذا يتضمن تغيير تصريحات الملفات', + 'text_4' => 'من أجل عملية التنصيب، تأكد من وجود المعلومات التالية', + ) , + 'table_prefix' => 'Table Prefix بادئة الجدول', + 'table_prefix_description' => 'عادة لا تحتاج لتغيير بادئة الجدول. ومع ذلك، إذا كنت ترغب في تشغيل العديد من تنصيبات أوشاهيدي من قاعدة بيانات واحدة، يمكنك أن تفعل ذلك عن طريق تغيير البادئة هنا', + 'title' => 'العنوان', + 'to_login' => 'للدخول، اذهب إلى', + 'upload_data' => 'تحميل بيانات التقرير', + 'username' => 'اسم المستخدم', + 'username_description' => 'اسم مستخدم قاعدة البيانات الخاص بك', + 'use_credentials' => 'واستخدم بيانات التفويض التالية', + 'view_site' => 'عرض موقع الويب الخاص بك', +); diff --git a/application/i18n/ar/layer.php b/application/i18n/ar/layer.php new file mode 100755 index 0000000000..afc7547362 --- /dev/null +++ b/application/i18n/ar/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'يجب ان يحتوى حقل اللون على 6 حروف', + 'required' => 'يجب إدخال حقل اللون', + ) , + 'layer_file' => array( + 'type' => 'لايبدو ان حقل الملفات يحتوى على ملف صالح. The only accepted formats are .KMZ, .KML.', + 'valid' => 'لا يبدو ان هذا الحقل يحتوى على قيمة صالحة', + ) , + 'layer_name' => array( + 'length' => 'يجب ان يحتوى حقل الاسم على الأقل 3 حروف وليس اكثر من 80 حرف', + 'required' => 'يجب إدخال حقل الإسم', + ) , + 'layer_url' => array( + 'atleast' => 'يجب إدخال رابط KML أو ملف', + 'both' => 'لا يمكنك الحصول على ملف KML ورابط فى نفس الوقت', + 'url' => 'أدخل رابط صحيح. Eg. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/ar/libraries.php b/application/i18n/ar/libraries.php new file mode 100755 index 0000000000..eaa28be253 --- /dev/null +++ b/application/i18n/ar/libraries.php @@ -0,0 +1,24 @@ + 'Akismet لم يمكن الاتصال بخادم', + 'akismet_cannot_retrieve' => 'Akismet لم يمكن الحصول على استجابة من ', + 'askimet_invalid_apikey' => 'Your Akismet API key is not valid', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2', + 'clickatell_message_too_long' => '=رسالة الكود الموحد طويلة للغاية! (الطول الحالى', + 'clickatell_no_destination_address' => 'حدد عنوان الجهة المقصودة (TO)!', + 'clickatell_no_sender_address' => 'حدد عنوان جهة المصدر (FROM)!', + 'clickatell_unicode_message_too_long' => '=رسالة الكود الموحد طويلة للغاية! (الطول الحالى', + 'clickatell_unsupported_method' => 'طريقة إرسال غير صحيحة', + 'upgrade_directory_not_deleted' => 'Directory %s could not be deleted', + 'upgrade_extracting_error' => 'خطأ اثناء التحميل: %s', + 'upgrade_failed' => 'Downloading the latest ushahidi failed. HTTP status code', + 'upgrade_file_not_copied' => 'File %s could not be copied', + 'upgrade_file_not_deleted' => 'File %s could not be deleted', + 'upgrade_title' => 'مخطوطة تحديث الأوشاهيدى', + 'upgrade_zip_error' => 'The downloaded ushahidi zip file %s, could not be written', +); diff --git a/application/i18n/ar/maintenance.php b/application/i18n/ar/maintenance.php new file mode 100644 index 0000000000..062ec9319f --- /dev/null +++ b/application/i18n/ar/maintenance.php @@ -0,0 +1,9 @@ + 'عذرا، موقعنا حاليا متوقف لأعمال الصيانة. يرجى المحاولة مرة أخرى في بضع دقائق.', +); diff --git a/application/i18n/ar/message.php b/application/i18n/ar/message.php new file mode 100755 index 0000000000..f8519cf940 --- /dev/null +++ b/application/i18n/ar/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'أدخل رمز أمنى صحيح', + 'required' => 'أدخل الرمز الأمنى', + ) , + 'email' => array( + 'email' => 'حقل البريد لإليكترونى لايحتوى على عنوان بريد إليكترونى صالح', + 'length' => 'حقل البريد الإليكترونى يجب ألا يقل عن 4 حروف ولا يزيد عن 64 حرف او رقم', + 'required' => 'يجب ملء حقل البريد الإليكترونى ان تك اختيار هذا الحقل', + ) , + 'message' => array( + 'required' => 'يجب ملء حقل التعيقات', + ) , + 'name' => array( + 'length' => 'يجب ان يحتوى حقل الاسم على الأقل 3 حروف', + 'required' => 'يجب ملء حقل الإسم', + ) , + 'phone' => array( + 'length' => 'حقل التليفون غير صالح', + ) , +); diff --git a/application/i18n/ar/mhi.php b/application/i18n/ar/mhi.php new file mode 100755 index 0000000000..6f15239af0 --- /dev/null +++ b/application/i18n/ar/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => '.برجاء إدخال كود أمان صحيح', + 'required' => '.برجاء إدخال كود الأمان', + ) , + 'contact_email' => array( + 'email' => 'حقل البريد الإليكتروني لا يحتوي على عنوان صحيح', + 'required' => 'برجاء إدخال عنوان بريد إليكتروني صحيح', + ) , + 'contact_message' => array( + 'required' => '.الرسالة حقل مطلوب', + ) , + 'contact_subject' => array( + 'length' => '.حقل الرسالة يجب أن يكون 3أحرف على الأقل', + 'required' => '.الموضوع حقل مطلوب', + ) , +); diff --git a/application/i18n/ar/notifications.php b/application/i18n/ar/notifications.php new file mode 100755 index 0000000000..527ec39dee --- /dev/null +++ b/application/i18n/ar/notifications.php @@ -0,0 +1,35 @@ + 'تم إرسال هذه الرسالة من الموقع الخاص بك', + 'admin_login_url' => 'دخول المسئول الإدارى', + 'admin_new_comment' => array( + 'message' => 'تعليق جديد تم وضعه على الموقع الخاص بك رداً على:', + 'subject' => 'تعليق جديد', + ) , + 'admin_new_email' => array( + 'message' => 'رسالة بريد إليكترونى جديدة تم وضعها على الموقع الخاص بك', + 'subject' => 'رسالة بريد إليكترونى جديدة', + ) , + 'admin_new_report' => array( + 'message' => 'تقرير جديد تم إرساله الى الموقع الخاص بك', + 'subject' => 'تقرير جديد', + ) , + 'admin_new_sms' => array( + 'message' => 'رسالة نصية جديدة تم وضعها على الموقع الخاص بك', + 'subject' => 'رسالة نصية جديدة', + ) , + 'member_new_alert' => array( + 'message' => 'لقد قمت باستقبل تنبيهة جديد', + 'subject' => 'تنبية جديد', + ) , + 'member_new_message' => array( + 'message' => 'لديك رسالى خاصة', + 'subject' => 'رسالة خاصة جديدة', + 'footer' => 'للرد اذهب الى:', + ) , +); diff --git a/application/i18n/ar/page.php b/application/i18n/ar/page.php new file mode 100644 index 0000000000..c20904cd4c --- /dev/null +++ b/application/i18n/ar/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'برجاء كتابة اسم الصفحة', + 'length' => 'عنوان الصفحة يجب ان يحتوى على 3 حروف على الاقل و150 حرف كحد اقصى', + ) , + 'page_tab' => array( + 'required' => 'برجاء كتابة اسم الصفحة', + ) , + 'page_description' => array( + 'required' => 'برجاء كتابة وصف الصفحة', + ) , +); diff --git a/application/i18n/ar/permissions.php b/application/i18n/ar/permissions.php new file mode 100644 index 0000000000..51a17a8828 --- /dev/null +++ b/application/i18n/ar/permissions.php @@ -0,0 +1,26 @@ + 'عرض التقارير', + 'reports_edit' => 'إنشاء / تحرير / حذف تقارير', + 'reports_approve' => 'الموافقة على تقارير', + 'reports_verify' => 'تحقق من التقارير', + 'reports_comments' => 'إدارة التعليقات', + 'reports_download' => 'تنزيل التقارير', + 'reports_upload' => 'رفع التقارير', + 'messages' => 'إدارة الرسائل', + 'messages_reporters' => 'إدارة مراسلون الرسالة', + 'stats' => 'عرض الإحصاءات', + 'settings' => 'تعديل الإعدادات', + 'manage' => 'إدارة اللوحة', + 'users' => 'إدارة المستخدمين', + 'manage_roles' => 'إدارة الأدوار', + 'checkin' => 'يستطيع الاختيار', + 'checkin_admin' => 'إدارة الاختيارات', + 'admin_ui' => 'الدخول إلى واجهة المستخدم المسؤول ', + 'member_ui' => ' الدخول إلى واجهة المستخدم الأعضاء', +); diff --git a/application/i18n/ar/private_message.php b/application/i18n/ar/private_message.php new file mode 100644 index 0000000000..7fecfe247d --- /dev/null +++ b/application/i18n/ar/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'يجب أن تكون هوية الأم عددية', + ) , + 'private_to' => array( + 'required' => 'حقل إلى مطلوب', + 'exists' => 'المستخدم الذي يتم محاولة إرسال رسالة إليه غير موجود', + ) , + 'private_subject' => array( + 'required' => 'حقل الموضوع مطلوب', + 'length' => 'الموضوع يجب أن يكون بين 3 و 150 حرفا', + ) , + 'private_message' => array( + 'required' => 'حقل الرسالة مطلوب ', + ) , +); diff --git a/application/i18n/ar/report.php b/application/i18n/ar/report.php new file mode 100755 index 0000000000..18fbc2b9bb --- /dev/null +++ b/application/i18n/ar/report.php @@ -0,0 +1,127 @@ + '!خطأ', + 'country_name' => array( + 'single_country' => 'هذا الانتشار يمتد داخل دولة واحدة فقط. يرجى التأكد من الموقع التقرير هو داخل البلاد %s', + ) , + 'data_include' => array( + 'between' => 'اختر مادة سارية المفعول لوضعها ضمن ملفات التحميل', + 'numeric' => 'اختر مادة سارية المفعول لوضعها ضمن ملفات التحميل', + ) , + 'data_active' => array( + 'between' => 'برجاء اختيار "تقارير فى انتظار الموافقة" او " تقارير تم الموافقة عليها" او الاثنين', + 'numeric' => 'برجاء اختيار "تقارير فى انتظار الموافقة" او " تقارير تم الموافقة عليها" او الاثنين', + 'required' => 'برجاء اختيار "تقارير فى انتظار الموافقة" او " تقارير تم الموافقة عليها" او الاثنين', + ) , + 'data_verified' => array( + 'between' => 'برجاء اختيار "تقارير فى انتظار التحقق" او " تقارير تم التحقق منها" او الاثنين', + 'numeric' => 'برجاء اختيار "تقارير فى انتظار التحقق" او " تقارير تم التحقق منها" او الاثنين', + 'required' => 'برجاء اختيار "تقارير فى انتظار التحقق" او " تقارير تم التحقق منها" او الاثنين', + ) , + 'data_point' => array( + 'between' => 'اختر تقرير سارى المفعول لتحميله', + 'numeric' => 'اختر تقرير سارى المفعول لتحميله', + 'required' => 'اختر تقرير سارى المفعول لتحميله', + ) , + 'format' => array( + 'valid' => 'يرجي اختيار امتداد صالح لتحميل تقاريرك', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'حقل التاريخ من لايحتوى على قيمة صالحة', + 'range' => 'أدخل قيمة صالحة فى حقل التاريخ من. لايمكن لهذه القيمة أن تتعدى اليوم', + ) , + 'incident_active' => array( + 'between' => 'أدخل قيمة صالحة للموافقة على هذا التقرير', + 'required' => 'أدخل قيمة صالحة للموافقة على هذا التقرير', + ) , + 'incident_ampm' => array( + 'validvalues' => 'لا يبدو ان الحقل الخاص بالفترة الصباحية/المسائية يحتوى على قيمة صالحة', + ) , + 'incident_category' => array( + 'numeric' => 'لا يبدو ان الحقل الخاص بالفئة يحتوى على قيمة صالحة', + 'required' => 'يجب ملء الحقل الخاص بالفئة', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'لا يبدو ان حقل التاريخ يحتوى على قيمة صالحة', + 'date_mmddyyyy' => 'لا يبدو ان حقل التاريخ يحتوى على قيمة صالحة', + 'required' => 'يجب ملء حقل التاريخ', + ) , + 'incident_description' => array( + 'required' => 'يجب ملء حقل التوصيف', + ) , + 'incident_hour' => array( + 'between' => 'لا يبدو ان حقل الساعات يحتوى على قيمة صالحة', + 'required' => 'يجب ملء الحقل الخاص بالساعات', + ) , + 'incident_information' => array( + 'alpha' => 'ادخل قيمة صالحة لإحتمالية مصداقية المعلومة', + 'length' => 'ادخل قيمة صالحة لإحتمالية مصداقية المعلومة', + ) , + 'incident_minute' => array( + 'between' => 'لا يبدو ان حقل الدقائق يحتوى على قيمة صالحة', + 'required' => 'يجب ملء الحقل الخاص بالدقائق', + ) , + 'incident_news' => array( + 'url' => 'لا يبدو ان الحقل الخاص برابط مصدر الخبر يحتوى على قيمة صالحة', + ) , + 'incident_photo' => array( + 'size' => 'حجم ملفات الصور المرفوعة يجب ألا تتعدى 2 م.ب', + 'type' => 'لايبدو ان حقل رفع الصور يحتوى على ملفات صالحة. The only accepted formats are .JPG, .PNG and .GIF.', + 'valid' => 'لايبدو ان حقل رفع الصور يحتوى على ملفات صالحة', + ) , + 'incident_source' => array( + 'alpha' => 'ادخل قيمة صالحة لموثوقية المصدر', + 'length' => 'ادخل قيمة صالحة لموثوقية المصدر', + ) , + 'incident_title' => array( + 'length' => 'حقل العنوان يجب ان يحتوى على الأقل 3 وألا يزيد على 200 حرف', + 'required' => 'يجب ملء حقل العنوان', + 'csrf' => 'هل تقصد حقا تعديل او انشأ تقرير؟', + ) , + 'incident_verified' => array( + 'between' => 'أدخل قيمة صالحة للتحقق من صلاحية هذا التقرير', + 'required' => 'أدخل قيمة صالحة للتحقق من صلاحية هذا التقرير', + ) , + 'incident_video' => array( + 'url' => 'لا يبدو ان حقل روابط الفيديو تحتوى على قيمة صالحة', + ) , + 'latitude' => array( + 'between' => 'لا يبدو ان الحقل الخص بخطوط العرض يحتوى على قيمة صالحة', + 'required' => 'يجب ملء الحقل الخاص بخطوط العرض. أنقر على الخريطة لتحديد المكان', + ) , + 'locale' => array( + 'alpha_dash' => 'حقل المكان يحتوى على قيمة غير صالحة', + 'exists' => 'هذا التقرير لديه بالفعل ترجة بهذه اللغة', + 'length' => 'حقل المكان يحتوى على قيمة غير صالحة ', + 'locale' => 'التقرير الأصلى والترجمة لديهما نفس المكان (language)', + 'required' => 'يجب تحديد مكان', + ) , + 'location_name' => array( + 'length' => 'يجب ان يحتوى حقل اسم المكان على الأقل 3 وألا يزيد على 200 حرف', + 'required' => 'يجب ملء حقل اسم المكان', + ) , + 'longitude' => array( + 'between' => 'لا يبدو ان الحقل الخاص بخطوط الطول يحتوى على قيمة صالحة', + 'required' => 'يجب ملء الحقل الخاص بخطوط الطول. أنقر على الخريطة لتحديد المكان', + ) , + 'person_email' => array( + 'email' => 'لايبدو ان حقل البريد الإليكترونى يحتوى على عنوان بريدى صالح', + 'length' => 'حقل البريد الإليكترونى يجب ألا يقل عن 4 وألا يزيد عن 64 حرف', + ) , + 'person_first' => array( + 'length' => 'حقل الإسم الأول يجب ألا يقل عن 3 وألا يزيد عن 100 حرف', + ) , + 'person_last' => array( + 'length' => 'حقل الإسم الأخير يجب ألا يقل عن 3 وألا يزيد عن 100 حرف', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'حقل التاريخ إلى لايحتوى على قيمة صالحة', + 'range' => 'أدخل قيمة صالحة فى حقل التاريخ إلى. لايمكن لهذه القيمة ان تتعدى اليوم', + 'range_greater' => 'حقل التاريخ من لايمكن أن يتعدى التاريخ الحالى', + ) , +); diff --git a/application/i18n/ar/reporters.php b/application/i18n/ar/reporters.php new file mode 100755 index 0000000000..4cd616697b --- /dev/null +++ b/application/i18n/ar/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'حقل خط العرض يحتوي على قيمة تبدو غير صالحة', + 'required' => 'خط العرض مطلوب. برجاء النقر على الخريطة لتحديد مكان', + ) , + 'level_id' => array( + 'numeric' => 'حقل مستوى المراسل يحتوي على قيمة تبدو غير صالحة', + 'required' => 'حقل مستوى المراسل يحتوي على قيمة تبدو غير صالحة', + ) , + 'location_name' => array( + 'length' => '.حقل اسم المكان يجب ألا يقل عن 3 أحرف ولا يزيد عن 200 حرف', + 'required' => '.حقل اسم المكان مطلوب', + ) , + 'longitude' => array( + 'between' => 'حقل خط الطول يحتوي على قيمة تبدو غير صالحة', + 'required' => 'خط الطول مطلوب. برجاء النقر على الخريطة لتحديد مكان', + ) , + 'reporter_id' => array( + 'numeric' => 'مراسل غير صالح', + 'required' => 'مراسل غير صالح', + ) , +); diff --git a/application/i18n/ar/reports.php b/application/i18n/ar/reports.php new file mode 100644 index 0000000000..710cc2e7e9 --- /dev/null +++ b/application/i18n/ar/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'يرجى التحقق من انك قد قمت باختيار عنصر', + 'numeric' => 'يرجى التحقق من انك قد قمت باختيار عنصر', + 'categories_required' => 'التقارير يجب أن تصنف قبل أن يتم الموافقة عليها', + ) , + 'action' => array( + 'permission' => 'أنك لا تملك إذن لتنفيذ هذا الإجراء', + ) , + 'uploadfile' => array( + 'required' => 'يجب ان تختار ملف للتحميل', + 'type' => 'الملف يجب ان يكون بصيغة .CSV او .XML', + 'valid' => 'يبدو ان الملف يحتوى على حقول غير صالحة', + ) , +); diff --git a/application/i18n/ar/roles.php b/application/i18n/ar/roles.php new file mode 100755 index 0000000000..c06c208b32 --- /dev/null +++ b/application/i18n/ar/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => '.حقل الوصف يجب ألا يقل عن 3 أحرف ولا يزيد عن 100 حرف', + 'required' => '.حقل الوصف مطلوب', + ) , + 'name' => array( + 'alpha_numeric' => '.حقل الاسم يجب أن يحتوي على أرقام أو حروف فقط', + 'length' => '.حقل الاسم يجب ألا يقل عن حرفين ولا يزيد عن 30 حرف', + 'nomodify' => '.لا يمكن تعديل دور الإداري الأعلى', + 'required' => '.حقل الاسم مطلوب', + ) , + 'access_level' => array( + 'numeric' => 'حقل الصلاحيات يجب ان يحتوى رقم من 0 - 100', + 'required' => 'حقل الصلاحيات يجب ان يحتوى رقم من 0 - 100', + ) , + 'permissions' => array( + 'numeric' => 'حقل الصلاحيات يجب ان يحتوى رقم من 0 - 100', + ) , +); diff --git a/application/i18n/ar/settings.php b/application/i18n/ar/settings.php new file mode 100755 index 0000000000..4fc49d705f --- /dev/null +++ b/application/i18n/ar/settings.php @@ -0,0 +1,182 @@ + array( + 'between' => 'حقل التعليقات المسموحة لايحتوى على قيمة صالحة', + 'required' => 'يجب ملء حقل التعليقات المسموحة', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value?', + ) , + 'allow_alerts' => array( + 'between' => 'حقل التنبيهات المسموحة لن تظهر لاحتوائها على قيمة خاطئة.', + 'required' => 'حقل التنبيهات المسموحة مطلوب.', + ) , + 'allow_reports' => array( + 'between' => 'حقل التقارير المسموحة لايحتوى على قيمة صالحة', + 'required' => 'يجب ملء حقل التقارير المسموحة', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value?', + 'required' => 'حقل ابدأ المشاركة مطلوب', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value?', + 'length' => 'The Akismet field does not appear to contain a valid value?', + ) , + 'cache_pages' => array( + 'between' => 'حقل صفحات الكاش مطلوبة.', + 'required' => 'حقل صفحات الكاس لن تظهر لاحتوائها على قيمة خاطئة', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'حقل مدة صفحات الكاش لن تظهر لاحتوائها على قيمة خاطئة', + 'required' => 'حقل مدة صفحات الكاش مطلوب', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'الخادم الخاص بم غير معرف على التعامل مع خاصية الروابط النظيفة. ستحتاج لتغيير خصائص الخادم الخاص بك ليتعامل مع خاصية الروابط النظيفة. تعرف على المزيد حول كيفية التعامل مع خاصية الروابط النظيفة بالذهاب إلىche-mod-rewrite" target="_blank">post', + 'clean_url_enabled' => 'هذه الخاصية تمكن من الولوج إلى أوشاهيدى من خلال الروابط النظيفة. Without "index.php" in the URL.', + 'enable_clean_url' => 'تشغيل الروابط النظيفة', + 'title' => 'الروابط النظيفة', + ) , + 'configure_map' => 'تكوين الخريطة', + 'default_location' => 'المكان الأصلى', + 'default_map_all' => array( + 'alpha_numeric' => 'حقل التغذية المرجعية بحسب اللون لا تحتوى على قيمة صالحة', + 'length' => 'حقل اللون يجب الا يتعدى 6 حروف', + 'required' => 'يجب ملء حقل اللون', + ) , + 'default_map_view' => 'الرؤية الأصلية للخريطة', + 'default_zoom_level' => 'مستوى التقريب الافتراضي', + 'download_city_list' => 'الحصول على المدن من الأسماء الجغرافية', + 'email_host' => array( + 'length' => 'محتوى حقل ميناء خادم البريد طويل', + 'numeric' => 'يجب ان يحتوى حقل ميناء خادم البريد على ارقام فقط', + ) , + 'email_password' => array( + 'length' => 'حقل كلمة المرور يجب ألا يقل عن 5 ولا يزيد عن 50 حرف', + 'required' => 'يجب ملء حقل كلمة المرور لخادم البريد', + ) , + 'email_port' => array( + 'length' => 'محتوى حقل ميناء خادم البريد طويل', + 'numeric' => 'يجب ان يحتوى حقل ميناء خادم البريد على ارقام فقط', + ) , + 'email_servertype' => array( + 'length' => 'محتوى حقل ميناء خادم البريد طويل', + 'required' => 'يجب ملء حقل نوع خادم البريد', + ) , + 'email_username' => array( + 'length' => 'حقل اسم المستخدم لخادم البريد يجب ألا يزيد عن 50 حرف', + 'required' => 'يجب ملء حقل اسم المستخدم لخادم البريد', + ) , + 'facebook' => array( + 'title' => 'خيارات الفيس بوك', + 'description' => 'لكى تحصل على المعلومات بالاسفل يجب ان تنشئ تطبيق للفيس بوك على', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'حقل تحليات جوجل يجب ان تحتوى على هوية صحيحة لملكية الويب بالهيئة الآتية UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'تشغيل HTTPS', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'حقل البنود الصفحة الواحدة للواجهة لايحتوى على قيمة صالحة', + 'required' => 'يجب ملء حقل بنود الصفحة الواحدة للواجهة', + ) , + 'items_per_page_admin' => array( + 'between' => 'حقل بنود الصفحة الواحدة للمسئول الإدارى لاتحتوى على قيمة صالحة', + 'required' => 'يجب ملء حقل بنود الصفحة الواحدة للمسئول الإدارى', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'zoom' => 'مستوى التقريب', + ) , + 'map_provider' => array( + 'choose' => 'اختار موفر خرائط', + 'enter_api' => 'أدخل مفتاح API جديد', + 'get_api' => 'أحصل على API مفتاح', + 'info' => 'إعداد موفر الخرائط الخاص بك هى عملية مباشرة. اختار موفر خرائط, أحصل على مفتاح API من الموقع, ثم أدخل هذا المفتاح', + 'name' => 'موفر الخرائط', + ) , + 'map_timeline' => 'سجل احداث الخريطة', + 'map_settings' => 'إعدادات الخريطة', + 'multiple_countries' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'select_default_location' => 'الدولة الأصلية', + 'set_location' => 'اضغط واسحب الخريطة لتحدد مكانك', + 'site' => array( + 'allow_clustering' => 'جمع التقارير على الخريطة', + 'allow_comments' => 'صرح للمستخدمين بوضع تعليقات على التقارير', + 'allow_feed' => 'السماح بإرسال آخر الأخبار بنظام آر إس إس', + 'allow_alerts' => 'اسمع بالمستخدمين باستقبال التنبيهات', + 'allow_reports' => 'صرح للمستخدمين بإصدار تقارير', + 'banner' => 'بانر الموقع', + 'blocks_per_row' => 'المربعات بالصفوف', + 'cache_pages' => 'صفحات الكاش', + 'cache_pages_lifetime' => 'اسمح بسجل الدخول', + 'checkins' => 'اسمح بسجل الدخول', + 'copyright_statement' => 'موقف حقوق الملكية بالموقع', + 'default_category_colors' => 'وضع لون أساسى لكل الفئات', + 'default_category_icons' => 'ايقونة لكل الفئات الافتراضية', + 'delete_banner_image' => 'امسح صورة البانر', + 'delete_default_map_all_icon' => 'امسح الايقونى الافتراضية', + 'display_contact_page' => 'اعرض صفحة معلومات الاتصال', + 'display_howtohelp_page' => 'اعرض صفحة كيف يمكننا المساعدة', + 'email_alerts' => 'عنوان البريد الإليكترونى الخاص بالتنبيهات', + 'email_site' => 'البريد الإليكترونى للموقع', + 'google_analytics' => 'تحاليل جوجل', + 'google_analytics_example' => 'هوية ملكية الشبكة - Formato: UA-XXXXX-XX', + 'items_per_page' => 'بنود الصفحة الواحدة - الواجهة النهائية', + 'items_per_page_admin' => 'بنود الصحفة الواحدة - المسئول الإدارى', + 'language' => 'لغة الموقع', + 'manually_approve_users' => 'وافق على المستخدمين يدوى', + 'message' => 'رسالة الموقع', + 'name' => 'اسم الموقع', + 'private_deployment' => 'جعل التطبيق خاص', + 'require_email_confirmation' => 'مطلوب تأكيد البريد الاليكترونى للمستخدم', + 'submit_report_message' => 'ارسل تقرير', + 'share_site_stats' => 'Share Site Statistics in API', + 'tagline' => 'سطر الوسم', + 'timezone' => 'الطاق الزمنى', + 'title' => 'إعدادات الموقع', + 'twitter_configuration' => 'اعتماد رسائل التويتر', + 'twitter_hashtags' => 'الوسوم المختلطة - الفصل بفواصل ', + ) , + 'site_email' => array( + 'email' => 'حقل البريد الإليكترونى للموقع لا يحتوى على قيمة صالحة', + 'length' => 'حقل البريد الإليكترونى للموقع يجب ألا يقل عن 4 وألا يزيد عن 100', + ) , + 'site_name' => array( + 'length' => 'حقل اسم الموقع يجب ألا يقل عن 3 والا يزيد عن 50 حرف', + 'required' => 'يجب ملء حقل اسم الموقع', + ) , + 'site_tagline' => array( + 'length' => 'حقل سطر الوسم يجب ألا يقل عن 3 وألا يزيد عن 100 حرف', + 'required' => 'يجب ملء حقل سطر الوسم', + ) , + 'sms' => array( + 'clickatell_password' => 'Clickatell كلمة المرور', + 'flsms_text_1' => 'أدخل رقم (أرقام) الهاتف المتصلة ب Frontline SMS في الحقول ادناه', + 'flsms_text_2' => 'أدخل رقم دون أي + أو شرطات أدناه', + 'option_1' => 'الأختيار 1: استخدم Frontline SMS', + 'option_2' => 'الأختيار 2: استخدم Global SMS Gateway', + 'title' => 'خيارات تشغيل خدمة الرسائل القصيرة', + ) , + 'sms_no1' => array( + 'length' => 'لايبدو ان حقل التليفون 1 يحتوى على قيمة صالحة', + 'numeric' => 'حقل التليفون 1 يجب ان يحتوى على ارقام فقط', + ) , + 'sms_no2' => array( + 'length' => 'محتويات حقل التليفون 2 طويلة', + 'numeric' => 'حقل التليفون 2 يجب ان يحتوى على ارقام فقط', + ) , + 'sms_no3' => array( + 'length' => 'محتويات حقل التليفون 3 طويلة', + 'numeric' => 'يجب ان يحتوى على حقل التليفون 3 على ارقام فقط', + ) , +); diff --git a/application/i18n/ar/sharing.php b/application/i18n/ar/sharing.php new file mode 100755 index 0000000000..c2c3dbccb3 --- /dev/null +++ b/application/i18n/ar/sharing.php @@ -0,0 +1,25 @@ + 'تاريخ الدخول', + 'date_added' => 'تاريخ الإضافة', + 'last_access' => 'آخر دخول كان بتاريخ', + 'sharing_color' => array( + 'length' => '.حقل اللون يجب أن يحتوى على 6 أحرف', + 'required' => '.يجب ملء حقل اللون', + ) , + 'sharing_name' => array( + 'length' => '.اسم المشاركة لا يبدو صحيحاً', + 'required' => '.اسم المشاركة حقل مطلوب', + ) , + 'sharing_url' => array( + 'exists' => 'رابط الموقع موجود بالفعل', + 'length' => '.رابط الموقع لا يبدو صالحاً', + 'required' => '.رابط الموقع حقل مطلوب', + 'url' => '.حقل رابط الموقع يحتوي على رابط لا يبدو صالحاً', + ) , +); diff --git a/application/i18n/ar/stats.php b/application/i18n/ar/stats.php new file mode 100755 index 0000000000..e0d172042a --- /dev/null +++ b/application/i18n/ar/stats.php @@ -0,0 +1,42 @@ + 'موافق عليه', + 'categories' => 'الفئات', + 'category_impact' => 'تأثير الفئة', + 'category_impact_description' => 'This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details', + 'choose_date_range' => 'إختر تاريخ الفترة', + 'countries' => 'الدول', + 'country' => 'الدولة', + 'country_breakdown' => 'تعطل فى الدولة', + 'description' => 'هنا قسم الاحصائات والتى سوف تحتوى على الوصف العام و لكن الان يمكنك التصفح باستخدام الفئات الفرعية من الرابط بالاعلى', + 'error' => 'خطأ', + 'glossary' => 'قاموس المصطلحات', + 'hit_summary' => 'اضغط على الملخص', + 'legend' => 'أسطورة', + 'pageviews' => 'مشاهدات الصفحة', + 'pageviews_description' => 'إجمالى الصحفات التى إطلع عليها زوار الموقع', + 'reports' => 'التقارير', + 'reports_categories' => 'فئات التقارير', + 'reports_statistics' => 'إحصائيات التقارير', + 'reports_status' => 'حالة التقرير', + 'report_punchcard' => 'تقارير مدفوعة', + 'report_stats' => 'إحصائيات التقارير', + 'stats_not_setup' => 'لم يتم إعداد الإحصائيات', + 'time_range_1' => '1 شهر', + 'time_range_2' => '3 شهر', + 'time_range_3' => '6 شهر', + 'time_range_all' => 'الكل', + 'unapproved' => 'لم يتم الموافقة عليه', + 'unique_visitors' => 'زوار مميزين', + 'unique_visitors_description' => 'The number of individuals coming to your deployment; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc', + 'unverified' => 'لم يتم التحقق منه', + 'verified' => 'تم التحقق منه', + 'visitor_summary' => 'ملخص عن الزائر', + 'visits' => 'الزيارات', + 'visits_description' => 'الزيارة هى سجل للزوار المميزين والتى تتعدى مدة رؤيتهم لصفحة الموقع 30 دقيقة', +); diff --git a/application/i18n/ar/tooltips.php b/application/i18n/ar/tooltips.php new file mode 100755 index 0000000000..00b5bcdd85 --- /dev/null +++ b/application/i18n/ar/tooltips.php @@ -0,0 +1,68 @@ + array( + 'add_to_category' => 'ويضيف هذا التقرير إلى فئات إضافية. إذا قمت بتحديد الفئة 1 هنا والتقرير بالفعل الفئة 2 مرفقة به، فإن التقرير سوف يكون بعد ذلك كل من الفئة 1 والفئة 2.', + 'approve' => 'يوافق على تقرير أم لا. إذا تمت الموافقة عليها، سوف تظهر على الملأ.', + 'assign_badge' => 'هل سيكون قادرا على تعيين شارة للمستخدم مما اثار. اختيار شارة أن يحصل على تعيين هنا.', + 'between_times' => 'هذه هي المدى من الساعات و / أو الدقائق بين الوقتين في شكل 24 ساعة. إذا كنت إدخال وقت سابق في الحقل الثاني، سيكون انقلبت مع الأولى. يجب أن تكون هذه الأوقات في غضون يوم واحد. أيضا، يتم فحص هذه المرة ضد الوقت الذي تم تكوينه على موقع الويب الخاص بك في إعدادات موقع و لا وبالضرورة خط الزمن للمستخدم التفاعل مع النشر الخاصة بك. اترك هذا في 0:00 حتي 00:00 لتجاهل هذه التصفيات.', + 'email_body' => 'موضوع البريد الذى تقوم بارسالة', + 'email_subject' => 'عنوان البريد الذى ستقوم بارسالة', + 'report_title' => 'هذا هو العنوان الافتراضى الذى يضاف للتقرير', + 'verify' => 'علم على التقرير ان كان موثق ام لا', + ) , + 'default_value' => 'افصل كل قيمة باستخدام الفاصلة. مثال value1, value2.', + 'dropdown_choices' => 'افصل كل بند مختار باستخدام الفاصلة. مثال Item 1, Item 2.', + 'private_to' => 'ابدا بالكتابة لقائمة الاعضاء', + 'private_subject' => 'عنوان الرسالة الخاصة', + 'private_message' => 'رسالة خاصة', + 'profile_email' => 'بريدك الإليكترونى', + 'profile_name' => 'اسمك بالكامل', + 'profile_notify' => 'اختيار "نعم" يمكنك من استقبال التنبيهات على بريدك الإليكترونى فور رفع تقارير أو تعليقات جديدة على الموقع الخاص بك', + 'profile_password' => 'كلمة المرور الخاصة بك. اترك هذا الحقل فارغ إذا رغبت في استمرار استخدام كلمة المرور الحالية', + 'profile_public_url' => 'هذا هو العنوان الذى ستجد ملف الشخصى بة', + 'profile_username' => 'لايمكنك تغيير اسم المستخدم الخاص بك', + 'settings_alert_email' => 'سيتم إرسال تنبيهات البريد الإليكترونى بواسطة هذا العنوان البريدى', + 'settings_allow_alerts' => 'اسمح للمستخدمين بالاشتراك فى التنبيهات من خلال الويب', + 'settings_allow_clustering' => 'يسمح بتجميع التقرير المتشابهة فى نقطة واحدة على الخريطة', + 'settings_allow_comments' => 'تمكن المستخدم من التعليق على التقارير على الموقع الرئيسي', + 'settings_allow_feed' => 'يسمح للتغذية الإخبارية باستخدام آر إس إس أن تعرض على الموقع الرئيسي', + 'settings_allow_reports' => 'تمكن المستخدم من وضع المعلومات على استمارة الشبكة', + 'settings_api_default_record_limit' => 'API عدد السجلات المستدعاة لكل طلب', + 'settings_api_max_record_limit' => 'API الحد الأقصى للسجلات المستدعاة لكل طلب', + 'settings_api_max_requests_per_ip' => 'IP address الحد الأقصى للطلبات على كل عنوان ', + 'settings_blocks_per_row' => 'عدد المربعات التى سوف تظهر فى كل واحد.', + 'settings_cache_pages' => 'قم بتمكين أو تعطيل التخزين المؤقت للصفحات. هذا يجعل عرض الصفحة أسرع عن طريق اختصار وقت الاستجابة. ونوصي باستخدام التخزين المؤقت للمواقع المزدحمة. **تذكر أن التقارير سوف يتم تجميعها على الواجهة الأمامية بناء ً على الأوقات التي ستقوم بتعيينها أدناه (المدى الزمني للتخزين المؤقت)ـ', + 'settings_cache_pages_lifetime' => 'حدد المدى الزمني للتخزين المؤقت', + 'settings_configure_map' => 'قم بإعداد الخريطة لتغطية منطقة معينة', + 'settings_default_category_colors' => 'حدد كود لونى واحد لكل الفئات على الموقع', + 'settings_default_category_icons' => 'استخدام رمز لجميع الفئات على الموقع', + 'settings_default_location' => 'هذه هي الدولة التى يتم فيها التنفيذ', + 'settings_display_contact' => 'قم بتشغيل وإيقاف تبويب الاتصال فى الموقع الرئيسي', + 'settings_display_howtohelp' => 'قم بتشغيل وإيقاف تبويب المساعدة على الموقع الرئيسي', + 'settings_display_items_per_page' => 'هنا عدد التقارير التى يتم عرضها للصفحة الواحدة على الموقع الرئيسي', + 'settings_display_items_per_page_admin' => 'هنا عدد التقارير التى يتم عرضها للصفحة الواحدة على الواجهة الخلفية للإدارة', + 'settings_flsms_download' => 'منطقة الرسائل القادمة', + 'settings_flsms_synchronize' => 'يقوم بمزامنة الرسائل القادمة لهذه المنطقة مع منصة يوشاهيدي', + 'settings_flsms_text_1' => 'أرقام الهواتف التى يتم استقبال الرسائل عليها', + 'settings_google_analytics' => 'يتابع من يزور الموقع الخاص بك. يحصل على إحصائيات مفصلة للزوار', + 'settings_locale' => 'يقوم بإعداد اللغة المستخدمة فى هذا الموقع', + 'settings_map_provider' => 'يتعرف على الخريطة التى ستستخدم على الموقع', + 'settings_server_host' => 'هنا مكان رسائل البريد الإليكترونى', + 'settings_server_password' => 'كلمة المرور للبريد الإليكترونى الذى يستقبل التقارير', + 'settings_server_port' => 'مطلوب حتى يتم قبول الاتصالات القادمة على هذا البريد الإليكترونى', + 'settings_server_ssl_support' => 'مطلوب للحفاظ على اتصال آمن', + 'settings_server_type' => 'مطلوب لاسترجاع رسائل البريد الإليكترونى من الخادم المضيف', + 'settings_server_username' => 'البريد الإليكترونى الذى يستقبل التقارير', + 'settings_share_site_stats' => 'API يسمح بالوصول إلى التقارير الإحصائية باسنخدام', + 'settings_site_copyright_statement' => 'نوصي دائماً بتأمين حقوق التأليف والنشر لأعمالك. للمساعدة في تحديد الترخيص http://creativecommons.org/choose/ المناسب، قم بزيارة ', + 'settings_site_email' => 'سيتم إرسال الرسائل والتقارير على هذا البريد الإليكترونى', + 'settings_site_message' => 'هذا هو النص الذي سيظهر فوق الخريطة على الصفحة الرئيسية. وهذا مفيد لإعطاء معلومات هامة للزوار على الموقع. لإزالة المربع ، احذف الرسالة هنا', + 'settings_site_name' => 'هذا اسم الموقع والذى يظهر أعلى الموقع الرئيسي', + 'settings_site_tagline' => 'فى خلاصة، قم بشرح معلومات عن هذا الموقع', + 'settings_twitter_configuration' => 'يُعِد الوسم المختلط لتويتر والذى يتم إرساله فى رسائل التويتر', +); diff --git a/application/i18n/ar/ui_admin.php b/application/i18n/ar/ui_admin.php new file mode 100755 index 0000000000..aac5ab5113 --- /dev/null +++ b/application/i18n/ar/ui_admin.php @@ -0,0 +1,319 @@ + 'ممنوع الدخول. إما بيانات دخولك غير سليمة أو تم رفض طلبك', + 'access_denied_others' => 'ممنوع الدخول. تم تمرير طلبك، لكن تم منعه بسبب محدودية الدخول مثل الوقت. حاول لاحقاً', + 'access_level' => 'مستوى الصلاحية', + 'actions' => 'الإجراءات', + 'add_to_category' => 'اضف للفئة', + 'added' => 'تمت الإضافة', + 'added_edited' => 'تم الإضافة/تم التحرير', + 'addons' => 'إضافات', + 'admin_role' => 'المسئول الإدارى', + 'alerts' => 'تنبية', + 'alerts_received' => 'استقبال التنبيهات', + 'all' => 'الكل', + 'am' => 'ص', + 'anonymous' => 'مجهول', + 'anyone_role' => 'اى شخص', + 'anywhere' => 'اى مكان', + 'api_banned' => 'API محظور بسبب', + 'api_logs' => 'API سجلات', + 'api_settings' => 'API إعدادات', + 'api_unban' => 'ارفع الحظر', + 'api_unban_all' => 'ارفع الحظر عن الكل', + 'approved' => 'تمت الموافقة', + 'approve_auto' => 'موافقة أوتوماتيكية', + 'approve_manual' => 'موافقة يدوية', + 'archived' => 'تمت الأرشفة', + 'are_you_sure_you_want_to' => 'هل انت متاكد انك تريد', + 'are_you_sure_you_want_to_delete_this_item' => 'هل ترغب فى مسح هذا البند؟', + 'are_you_sure_you_want_to_delete_this_photo' => 'هل ترغب فى مسح هذة الصورة', + 'are_you_sure_you_want_to_switch_forms' => 'هل ترغب فى تبديل الفورم؟', + 'assign' => 'تعيين', + 'assignments' => 'علامات', + 'assign_badge' => 'تعيين بادج', + 'author' => 'الكاتب', + 'author_email' => 'البريد الإلكتروني للكاتب', + 'back' => 'الرجوع', + 'banip_action' => 'IP حظر للـ ', + 'between_times' => 'بين الاوقات', + 'blocks' => 'مربعات', + 'body' => 'الموضوع', + 'cancel' => 'إلغاء', + 'categories' => 'الفئات', + 'chart_display_error' => 'خطأ فى عرض الرسم البيانى', + 'check_message_valid' => 'تأكد من أن رسالتك صالحة', + 'check_number' => 'تأكد من أن الرقم صالح', + 'check_sms_settings' => 'تأكد من إعدادات الرسائل النصية', + 'checkin_details' => 'التحقق من الدخول', + 'checkins' => 'التحقق', + 'cities_loaded' => 'تم تحميل المدن', + 'code' => 'الرمز', + 'code_out_of_sync' => 'كود الإصدار لايمكنه عمل تزامن', + 'color' => 'اللون', + 'comments' => 'تعليقات', + 'confirmation_code' => 'رمز تأكيد التنبيهات هو: ', + 'confirm_msg' => 'المستخدم قد تم', + 'count' => 'عد', + 'country_not_found' => 'لم يتم إيجاد الدولة', + 'created_edited' => 'تم الإنشاء/تم التحرير', + 'create_report' => 'أنشئ تقرير', + 'critical_upgrade' => 'ترقية هامة', + 'csv' => 'CSV', + 'currently_active' => 'الحالة الحالية مفعلة', + 'currently_inactive' => 'الحالة الحالية غير مفعلة', + 'custom_forms_insufficient_permissions' => 'ليس لديك صلاحيات لتعديل الحقوق المخصصة التالية', + 'daily' => 'يومي', + 'dashboard' => 'لوحة التحكم', + 'database' => 'قاعدة البيانات', + 'date_time' => 'التاريخ والساعة', + 'date_added' => 'تم إضافة التاريخ', + 'date_modified' => 'تم تعديل التاريخ', + 'days_of_the_week' => 'ايام الاسبوع', + 'db_out_of_sync' => 'نسخة قاعدة البيانات ليست متزامنة', + 'deleted' => 'تم الحذف', + 'delete_action' => 'حذف', + 'delete_badge' => 'امسح البادج', + 'demo' => 'تجريبي', + 'description' => 'الوصف', + 'disabled' => 'عطل', + 'divider_start_field' => 'مقسم البداية', + 'divider_end_field' => 'مقسم النهاية', + 'divider_class' => 'div class', + 'download_reports' => 'تحميل التقارير', + 'dropdown_choices' => 'اختيارات من قائمة منسدلة', + 'edited' => 'تم تحريرها', + 'edited_by' => 'حررها', + 'edit_action' => 'حرر', + 'edit_log' => 'حرر السجل', + 'email' => 'البريد الإلكتروني', + 'entire_collective' => 'كامل الجماعية', + 'error_geocoding' => '!خطأ في التشفير الجغرافي HTTP error', + 'error_imap' => 'مكتبة IMAP PHP ليست موجودة', + 'error_msg' => 'خطأ', + 'error_post_incident' => 'خطأ، لم نتمكن من نشر الحدث', + 'every_six_hours' => 'كل 6 ساعات', + 'every_twelve_hours' => 'كل 12 ساعة', + 'experimental' => 'اختيارى', + 'faqs' => 'أسئلة شائعة', + 'feed' => 'تغذية', + 'feedback' => 'تغذية مرجعية', + 'feeds' => 'تغذيات', + 'field_choices' => 'قائمة الاختيارات', + 'field_default' => 'القيمة الافتراضية', + 'field_datatype' => 'نوع البيانات', + 'field_datatype_javascript' => 'جافا', + 'field_datatype_markup' => 'العلامات', + 'field_datatype_numeric' => 'ارقام', + 'field_datatype_text' => 'نص حر', + 'field_height' => 'الارتفاع للصفوف', + 'field_hidden' => 'حقول مخفية', + 'field_maxlength' => 'أقصى عدد للحروف أو الأرقام', + 'field_name' => 'اسم الحقل', + 'field_toggle' => 'تبديل', + 'field_toggle_no' => 'لا', + 'field_toggle_yes_close' => 'نعم, اغلق كأفتراضى', + 'field_toggle_yes_open' => 'نعم, افتح كأفتراضى', + 'file_not_found_upload' => 'لم نتمكن من العثور على الملف المرفوع', + 'file_open_error' => 'لم نتمكن من فتح الملف لقراءته', + 'form_not_exists' => 'هذه الاستمارة غير موجودة!', + 'forum' => 'منتدى', + 'free_text_field' => 'حقل كتابة النص', + 'date_field' => 'بيانات الحقل', + 'radio_field' => 'حقل راديو', + 'checkbox_field' => 'حقل اختيارات', + 'dropdown_field' => 'حقل قائمة منسدلة', + 'from' => 'من', + 'from_date' => 'من', + 'geonames_timeout' => 'خطأ اثناء الحصول على اسماء الأماكن', + 'get_help' => 'أحصل على مساعدة', + 'get_more_themes' => 'أحصل علي مزيد من القوالب', + 'get_more_plugins' => 'أحصل علي مزيد من الإضافات', + 'header_actions' => 'الإجراءات', + 'header_add_edit' => 'أضف/حرر', + 'header_email' => 'بريد إليكترونى', + 'header_manage_users' => 'إدارة المستخدمين', + 'header_role' => 'وظيفة', + 'header_user' => 'المستخدم', + 'help' => 'مساعدة', + 'hourly' => 'كل ساعة', + 'incident_feed' => 'تغذية عن الحدث لـ', + 'installer_info' => 'ملف التثبيت مازال موجودا. إحذف ملف المثبت فهو ثغرة أمنية محتملة', + 'instance' => 'اقتراح', + 'instances' => 'اقتراحات', + 'instance_details' => 'تفاصيل اقتراح', + 'invalid_parameter' => 'إحداثيات غير صالحة', + 'ip_address' => 'عنوان بروتوكول الانترنت', + 'is_date' => 'هل هذا الحقل للتاريخ؟', + 'ispublic_visible' => 'من يستطيع رؤية الاجابات', + 'ispublic_submit' => 'من يستطيع كتابة سؤال', + 'keyword' => 'كلمة مفتاحية', + 'keywords' => 'كلمات مفتاحية', + 'label_email' => 'عنوان البريد الإلكتروني:', + 'label_full_name' => 'الاسم بالكامل:', + 'label_password' => 'كلمة المرور:', + 'label_role' => 'الدور/الوظيفة:', + 'label_username' => 'اسم المستخدم:', + 'layers' => 'طبقات', + 'login_role' => 'مسئول', + 'logout' => 'الخروج', + 'logs' => 'سجلات', + 'manage' => 'إدارة', + 'manage_roles' => 'إدارة الصلاحيات', + 'manage_users' => 'إدارة المستخدمين', + 'manage_users_edit' => 'أضف / تعديل مستخدم', + 'manage_public_listing' => 'تحكم في نشر موقعك ', + 'mark_as' => 'علامة كـ', + 'marked_as_not_spam' => 'تم تعريفه أنه ليس سخام', + 'marked_as_spam' => 'تم تعريفه كسخام', + 'match_no_documents' => 'لم توجد وثائق مطابقة', + 'message' => 'رسالة', + 'messages' => 'الرسائل', + 'messages_laconica' => 'رسائل لاكونيكا', + 'messages_twitter' => 'رسائل تويتر', + 'message_sent' => 'تم إرسال رسالتك', + 'mhi' => 'MHI', + 'minute' => 'دقيقة', + 'minutes' => 'دقائق', + 'missing_parameter' => 'إحداثيات مفقودة', + 'moderator' => 'مسئول', + 'modified' => 'تم تعديله', + 'modify_timezone' => 'تغيير اعدادات النطاق الزمنى', + 'move_down_action' => 'تحرك للأسفل', + 'move_up_action' => 'تحرك للأعلى', + 'multiple_hosted_instances' => 'Multiple Hosted Instances', + 'my_alerts' => 'تنبيهاتى', + 'my_checkins' => 'سجل دخولى', + 'my_profile' => 'بروفايلى', + 'my_reports' => 'تقاريرى', + 'my_votes' => 'التصويت', + 'my_votes_up' => 'ايجابى', + 'my_votes_down' => 'سلبى', + 'name' => 'الاسم', + 'new_alert' => 'أنشئ تنبية جديد', + 'new_private' => 'أنشئ رسالة جديدة', + 'new_password' => 'كلمة مرور جديدة', + 'no' => 'نعم', + 'none_category_explanation' => 'هذة الفئة الخاصة لن تظهر حينما يقوم المستخدمين بادخال تقارير. ولكنها تستخدم لوضع التقارير فى حالة انتظار ما لم تضعها فى فئة (تقارير غير مصنفة)', + 'notification' => 'إشعار', + 'not_case_sensitive' => 'لاتوجد قضية ذات حساسية', + 'not_found' => 'لم يتم العثور عليه', + 'no_data' => 'لا توجد بيانات. فلا توجد نتائج للعرض', + 'no_error' => 'لايوجد خطأ', + 'no_result_display_msg' => 'لاتوجد نتائج للعرض', + 'of' => 'من', + 'on_specific_count' => 'فى عد معين', + 'openids' => 'OpenID\'s', + 'page' => 'صفحة', + 'pages' => 'صفحات', + 'page_not_found' => 'لم يتم العثور على الصفحة', + 'page_not_found_message_with_contact' => 'عذرا، الصفحة التي تحاول عرض غير موجود هنا. على

وهل اتباع ارتباط من مكان آخر على موقعنا؟
إذا وصلت إلى هذه الصفحة من جزء آخر من موقعنا يرجى الاتصال بنا href="%s"> حتى نتمكن من تصحيح خطأ لدينا. على

وهل تتبع وصلة من موقع آخر؟ يمكن في بعض الأحيان
روابط من مواقع أخرى تكون قديمة أو بها أخطاء إملائية. href="%s">
المكان الذي جئت منه، ويمكننا محاولة الاتصال بموقع الأخرى من أجل حل المشكلة. على

وهل اكتب URL ؟
كنت قد كتبته عنوان (URL) بشكل غير صحيح. تحقق للتأكد من أنك قد حصلت على حق الإملاء الدقيق، وما إلى ذلك ', + 'page_not_found_message' => 'عفوا, الصفحة التي تحاول عرضها ليست هنا', + 'parameters_used' => 'الإحداثيات مستخدمة', + 'password' => 'كلمة المرور', + 'password_reset' => 'إعادة تعيين كلمة المرور', + 'password_reset_message_line_1' => 'عزيزي/عزيزتي', + 'password_reset_message_line_2' => 'قد تسلمنا طلب لإعادة تعيين كلمة مرور لأجل', + 'password_reset_message_line_3' => 'لتغيير كلمة المرور, أنقر على الرابط التالى (أو قم بالنسخ واللصق في المتصفح الخاص) بك', + 'password_reset_message_line_4' => 'بناء على طلبك, تم إعادة تعيين كلمة المرور الخاصة بك. التفاصيل الخاصة بك هى كالآتى', + 'password_reset_subject' => 'تم إعادة تعيين كلمة المرور ليوشاهيدي', + 'phone' => 'تليفون', + 'please_select' => 'برجاء الاختيار', + 'pm' => 'م', + 'post_method_not_used' => 'لم يتم إرسال البيانات بطريقة النشر', + 'preview' => 'معاينة', + 'private_message' => 'رسالة', + 'private_messages' => 'رسائل خاصة', + 'private_sent' => 'رسالة خاصة مرسلة', + 'private_subject' => 'عنوان', + 'private_to' => 'الى', + 'public_listing' => 'قائمة للعامة', + 'qualifiers' => 'تصفيات', + 'read' => 'مقروءة', + 'relevance' => 'الصلة', + 'report_title' => 'عنوان التقرير', + 'report_date' => 'تاريخ التقرير', + 'reporters' => 'مُصدرى التقارير', + 'reporter_levels' => 'مستويات مُصدر التقارير', + 'reports' => 'التقارير', + 'reputation' => 'نقاط قوة', + 'required' => 'مطلوب', + 'reset' => 'إعادة تعيين', + 'response' => 'استجابة', + 'results' => 'النتائج', + 'revoke' => 'سحب', + 'riverid_exists_admin' => 'هذا البريد الإلكتروني لديه بالفعل حساب يديره CrowdmapID. سوف يحتاج المستخدم إلى استخدام كلمة المرور الخاصة بهم للدخول Crowdmap القائمة.', + 'save_settings' => 'حفط الاعدادات', + 'search' => 'بحث', + 'search_reports' => 'بحث التقارير', + 'searching_for' => 'البحث عن', + 'security_info_encryption_key' => 'لا يزال مفتاح التشفير معين على إلى القيمة الافتراضية. هذا غير أمن، ويجب تغييرها.', + 'security_info_https' => 'الموقع يخدم ببروتوكول HTTP. ويجب ان يكون HTTPS لزيادة الامان.', + 'security_info_instructions' => 'التعليمات متاحة فى الويكى:', + 'select_download_format' => 'اختار التنسيق المطلوب لتحميل التقارير:-', + 'select_field_type' => '--- إختر نوع الحقل ---', + 'select_item' => 'حدد بند', + 'select_trigger_before_response' => 'يجب ان تختار تريجير قبل انت تختار الاستجابة', + 'select_trigger_before_qualifiers' => 'يجب ان تختار تريجير قبل انت تختار تصفيات', + 'sender' => 'الراسل', + 'send_to' => 'ارسال الى', + 'sent_from_website' => 'تم إرسال هذه الرسالة من الموقع الخاص بك على ', + 'server_time' => 'توقيت السيرفير', + 'settings' => 'الإعدادات', + 'showing_page' => 'عرض صفحة', + 'showing_results' => 'عرض نتائج', + 'shown' => 'اظهار', + 'special_category' => 'فئة خاصة', + 'special_category_explanation' => 'هذه هي الفئة الخاصة التي لن تظهر على شكل تقديم تقرير للمستخدمين تقديم التقارير. ويستخدم هذا بالتزامن مع ميزة "تقارير موثوقة" .', + 'specific_area' => 'مكان محدد', + 'state' => 'محافظة', + 'statistics' => 'إحصائيات', + 'stats' => 'إحصائيات', + 'stats_collection_error' => 'فشلت محاولة جمع الإحصائيات! حاول مرة أخرى بعد قليل.', + 'stats_collection_error_short' => 'محاولة جمع الإحصائيات لم تنجح!', + 'specific_days' => 'ايام محددة', + 'subject' => 'عنوان', + 'superadmin_role' => 'المدير الأعلى', + 'task_performed' => 'تم أداء المهمة', + 'text_field' => 'حقل نصى', + 'theme_name' => 'اسم', + 'title' => 'إدارة المستخدمين', + 'timeout' => 'لايوجد خطأ', + 'to' => 'إلى', + 'total_records' => 'جميع السجلات', + 'to_date' => 'إلى', + 'translate_reports' => 'ترجمة التقارير', + 'trigger' => 'تريجير', + 'triggering_user' => 'تريجير مستخدم', + 'triggers' => 'تريجيرز', + 'unapproved' => 'لم يتم الموافقة عليه', + 'unknown' => 'غير معروف', + 'unknown_failure' => 'خطأ غير معلوم', + 'unread' => 'غير مقروء', + 'unsubscribe_message' => 'لن نستقبل اى تنبيهات من', + 'update_link' => ' أنقر هنا للتحديث الآن', + 'upgrade_ushahidi' => 'ترقية يوشاهيدي', + 'upgrade_ushahidi_status' => 'ترقية حالة يوشاهيدي', + 'upload_reports' => 'رفع التقارير', + 'user' => 'مستخدم', + 'users' => 'المستخدمين', + 'ushahidi' => 'يوشاهيدي', + 'verified_unverified' => 'تم التأكد/غير مؤكد', + 'verify_unverify' => 'مؤكد/غير مؤكد', + 'version' => 'الإصدار', + 'version_available' => ' متاح للترقية', + 'video_encoding' => 'تشفير الفيديو', + 'view_private' => 'رسالة خاصة', + 'view_site' => 'الإطلاع على الموقع', + 'view_report' => 'شاهد التقارير', + 'welcome' => '،مرحباً', + 'wiki' => 'ويكي', + 'xml' => 'XML', + 'yes' => 'نعم', + 'your_search_for' => 'بحثك عن', +); diff --git a/application/i18n/ar/ui_main.php b/application/i18n/ar/ui_main.php new file mode 100755 index 0000000000..eaa2cae9ee --- /dev/null +++ b/application/i18n/ar/ui_main.php @@ -0,0 +1,607 @@ + 'عن الموقع ', + 'access' => 'الدخول', + 'access_limits' => 'حدود الدخول', + 'account_name' => 'اسم الحساب', + 'actions' => 'الإجراءات', + 'action_confirm' => 'لا يمكن التراجع عن هذا الإجراء. هل متأكد من رغبتك في الاستمرار؟', + 'activate' => 'تفعيل', + 'active' => 'مُفعل', + 'add' => 'أضف', + 'added_by' => 'تمت الإضافة بواسطة', + 'additional_data' => 'تقارير معلومات', + 'additional_reports' => 'تقارير إضافية', + 'add_edit' => 'أضف/حرر', + 'add_field' => 'أضف حقل', + 'add_language' => 'أضف لغة', + 'add_new' => 'أضف جديد', + 'add_new_category' => 'أضف فئة جديدة', + 'add_translation' => 'أضف ترجمة', + 'admin' => 'الإدارة', + 'alerts' => 'استقبل تنبيهات', + 'alerts_alert_me' => 'إعلمني إذا تم ملء تقرير، أو عند المحاولة:', + 'alerts_btn_send' => 'حفظ التنبيهات الخاصة بي', + 'alerts_email' => 'عنوان البريد الإلكتروني:', + 'alerts_enter_email' => 'أدخل عنوان البريد الإلكتروني', + 'alerts_enter_mobile' => 'أدخل رقم هاتف المحمول مع رمز الدولة', + 'alerts_get' => 'استقبل تنبيهات', + 'alert_has_been' => 'التنبيه تم ', + 'alerts_mobile_phone' => 'الهاتف المحمول:', + 'alerts_place_spot' => 'أو ضع علامة في مكان على الخريطة لتتلقي تنبيه عند إضافة تقرير على مدار 20 كم حول العلامة', + 'alerts_place_spot2' => 'إذا لم تستطع معرفة مكانك. فضلا انقر على مكانك الصحيح بالخريطة.', + 'alerts_rss' => 'التغذية الاخبارية (انسخ الرابط التالى)', + 'alerts_select_city' => 'إختر مدينة', + 'alerts_step1_select_city' => ' الخطوة الاولى:إختر مدينتك او موقعك:', + 'alerts_step2_send_alerts' => ' الخطوة الثانية:إرسل التنبيهات إلي:', + 'alerts_step3_select_catgories' => 'الخطوة الثالثة (اختيارية): اختار فئة', + 'alert_confirm_previous' => 'أكد على طلب سابق للحصول على تنبيهات', + 'alert_saved' => 'تم حفظ التنبيه الخاص بك', + 'all' => 'الكل', + 'allowed' => 'مسموح', + 'all_categories' => 'كل التصنيفات', + 'all_time' => 'كل الاوقات', + 'and' => 'و', + 'api' => 'واجهة برمجة التطبيقات - API', + 'approve' => 'وافق', + 'approved' => 'تمت الموافقة', + 'approved_reports' => 'التقارير التى تم الموافقة عليها', + 'approve_this_report' => 'وافق على هذا التقرير', + 'approximate' => 'تقريبى', + 'archive' => 'أرشفة', + 'archived' => 'تمت الأرشفة', + 'ascending' => 'تصاعدي', + 'at' => 'على', + 'author' => 'الكاتب', + 'auto_checkin' => 'دخول تلقائى', + 'avg_reports_per_day' => 'معدل التقارير اليومي', + 'awaiting_approval' => 'في انتظار الموافقة', + 'awaiting_verification' => 'فى انتظار التحقق من المصداقية', + 'badge' => 'شارة', + 'badges' => 'شارات', + 'badge_image' => 'صورة الشارة', + 'badge_image_upload_your_own' => 'أو يمكنك تحميل صورة الشارة الخاصة بك', + 'badge_pack' => 'حزمة الشارات', + 'badge_select' => 'أختر شارة', + 'blog' => 'المدونة', + 'browse_profiles' => 'تصفح الملفات الشخصية', + 'cancel' => 'إلغاء', + 'categories' => 'التصنيفات', + 'category' => 'التصنيف', + 'category_filter' => 'تحديد التصنيفات', + 'category_has_been' => 'التصنيف ', + 'category_name' => 'اسم التصنيف', + 'change_date_range' => 'تغيير نطاق التاريخ', + 'change_password' => 'تغيير كلمة المرور', + 'change_picture' => 'غير صورتي', + 'choose' => 'قم باختيار ', + 'choose_data_points' => 'إختر بيانات محددة للتحميل', + 'choose_date_range' => 'أو اختيار نطاق التاريخ المناسب لك', + 'choose_field_type' => 'إختر نوع الحقل', + 'cleanurl' => 'روابط نظيفة', + 'clear' => 'مسح', + 'clear_map' => 'امسح الخريطة', + 'close' => 'إغلاق', + 'clusters' => 'المجموعات', + 'color' => 'اللون', + 'comment' => 'التعليق', + 'comments' => 'التعليقات', + 'comment_details' => 'تفاصيل التعليق', + 'configuration_saved' => 'تم حفظ الإعدادات الخاصة بك', + 'configure' => 'ضبط', + 'confirm_email_successful' => 'تم تأكيد عنوان البريد الالكتروني! الرجاء تسجيل الدخول في الأسفل.', + 'confirm_email_failed' => 'فشل تأكيد البريد الإلكتروني! يمكنك طلب تأكيد البريد الإلكتروني الجديد أدناه.', + 'contact' => 'اتصل بنا', + 'contact_code' => 'الكود الأمني', + 'contact_email' => 'عنوان بريدك الإلكتروني', + 'contact_message' => 'رسالة', + 'contact_message_has_send' => 'تم ارسال الرسالة', + 'contact_name' => 'الأسم', + 'contact_phone' => 'رقم الهاتف', + 'contact_send' => 'أرسل الرسالة', + 'contact_subject' => 'عنوان الرسالة', + 'copyright' => 'حقوق النسخ ©', + 'create' => 'إنشاء', + 'create_edit' => 'إنشئ/حرر', + 'create_new' => 'أنشئ جديد', + 'create_new_password' => 'أنشئ كلمة مرور جديدة', + 'create_report' => 'إنشاء تقرير', + 'credibility' => 'المصداقية', + 'current_password' => 'كلمة المرور الحالية', + 'custom_fields' => 'حقول اضافية', + 'data' => 'معلومات', + 'date' => 'تاريخ', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => 'التاريخ والوقت', + 'day' => 'اليوم', + 'deactivate' => 'تعطيل', + 'default_location_name' => 'نيروبى، كينيا', + 'delete' => 'حذف', + 'deleted' => 'تم الحذف', + 'deletes' => 'المحذوفات', + 'delete_disabled' => 'تم تعطيل الحذف', + 'delete_last' => 'إحذف الأخير', + 'delete_report' => 'إحذف هذا التقرير', + 'delete_selected' => 'إحذف المحدد', + 'delete_spam' => 'إحذف السخام', + 'demo' => 'تجريبى', + 'description' => 'وصف', + 'descending' => 'تنازلي', + 'detailed_location_example' => 'مثال: قصر الاتحادية شارع المرغنى مصر الجديدة القاهرة', + 'details' => 'تفاصيل', + 'direct_report' => 'تقرير مباشر', + 'disabled' => 'معطل', + 'disapprove' => 'لم تتم الموافقة', + 'download_reports' => 'تحميل التقارير', + 'download' => 'تحميل', + 'edit' => 'حرر', + 'edit_form_fields' => 'حرر حقول الاستمارة', + 'edit_report' => 'حرر التقرير', + 'email' => 'البريد الإلكتروني', + 'email_address' => 'عنوان البريد الإلكتروني', + 'email_configuration' => 'إعدادات خادم البريد', + 'email_server_host' => 'مضيف خادم البريد', + 'email_server_password' => 'كلمة المرور لخادم البريد', + 'email_server_port' => 'منفذ خادم البريد', + 'email_server_ssl_support' => 'دعم الخادم البريدي لـ SSL ', + 'email_server_type' => 'نوع خادم البريد', + 'email_server_username' => 'اسم المستخدم لخادم البريد', + 'email_settings_comment_0' => 'يجب أن تكون الإعدادات مرتبطة بهذا البريد الإلكتروني', + 'email_settings_comment_00' => 'لتتمكن من استقبال التقارير عبر البريد، أدخل إعدادات حساب البريد الإلكتروني. برجاء العلم أنه سيتم تلقي الرسائل على البريد الخاص بالموقع', + 'email_settings_comment_1' => 'بعض الخوادم تتطلب عنوان البريد الإلكتروني بالكامل', + 'email_settings_comment_2' => 'كلمة المرور لحساب البريد الإلكتروني', + 'email_settings_comment_3' => 'Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'مثال: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'امثلة: pop3, imap', + 'email_settings_comment_6' => 'SSL تفعيل أو تعطيل الاتصال الآمن', + 'empty' => '---فارغ---', + 'end_point' => 'إلي', + 'error' => 'خطأ!', + 'example' => 'مثال', + 'example_country' => 'كينيا', + 'external_apps' => 'تطبيقات خارجية', + 'external_video_link' => 'رابط فيديو خارجي', + 'facebook' => 'فيس بوك', + 'feed' => 'التغذية', + 'feedback' => 'شاركنا رأيك', + 'feeds' => 'التغذية', + 'feed_has_been' => 'هذة التغذية تم', + 'feed_items' => 'موضوعات للتغذية', + 'feed_name' => 'اسم التغذية', + 'feed_url' => 'رابط التغذية', + 'field_unused' => 'حقل غير مستخدم', + 'file' => 'ملف', + 'file_over_max_allowed' => 'الملف الخاص بك يزيد على الحد الحد الأقصى المسموح به.', + 'filters' => 'تصفيات', + 'filter_reports' => 'أعد تصنيف التقارير', + 'filter_reports_by' => 'صنف التقارير بـ', + 'filter_reports_contain' => 'صنف التثارير التي تحتوي على ', + 'find' => 'ابحث عن', + 'find_location' => 'ابحث عن مكان', + 'first_name' => 'الاسم الأول', + 'force_run_scheduler' => 'تحديد وقت التشغيل القسري', + 'forgot_password' => 'لا تتذكر كلمة المرور الخاصة بك؟', + 'form' => 'استمارة', + 'forms' => 'استمارات', + 'form_description' => 'وصف الاستمارة', + 'form_edit' => 'حرر هذه الاستمارة', + 'form_has_been' => 'هذه الاستمارة تم ', + 'form_title' => 'نوان الاستمارة', + 'from' => 'من', + 'full_name' => 'الاسم الكامل', + 'geolocation_available' => 'الموقع الجغرافى متاح', + 'geometry_color' => 'اللون', + 'geometry_comments' => 'التعليقات', + 'geometry_label' => 'علامة', + 'geometry_strokewidth' => 'عرض التحديد', + 'go' => 'اذهب', + 'hashtag' => 'الوسم', + 'has_been' => 'تم', + 'help' => 'كيفية المساعدة', + 'hidden' => 'مخفي', + 'hide' => 'إخفاء', + 'hide_this_message' => 'أخفى هذه الرسالة', + 'home' => 'الرئيسية', + 'how_to_report' => 'كيفية الإبلاغ', + 'https' => 'HTTPS', + 'id' => 'الهوية', + 'identify_you' => 'تستخدم على الموقع لتعريفك بالأخرين', + 'image' => 'صورة', + 'images' => 'صور', + 'image_icon' => 'صورة/أيقونة', + 'inactive' => 'غير فعَال', + 'inbox' => 'البريد الوارد', + 'incident' => 'حدث', + 'incidents_nearby' => 'الأحداث القريبة', + 'incident_location' => 'مكان الحدث', + 'include' => 'إدرج', + 'include_categories' => 'إدرج فئات', + 'include_custom_fields' => 'أدرج حقول إضافية', + 'include_description' => 'إدرج توصيف', + 'include_detail' => 'درج تفاصيل على قدر الامكان', + 'include_latitude' => 'إدرج خط عرض', + 'include_location_information' => 'إدرج معلومات عن المكان', + 'include_longitude' => 'إدرج خط طول', + 'include_personal_info' => 'أضف البيانات الشخصية', + 'incoming_media' => 'ميديا واردة', + 'information_evaluation' => 'تقييم المعلومات', + 'input_location' => 'أدخل موقعك بالتحديد', + 'insufficient_role' => 'لا يوجد لحسابك الصلاحيات المناسبة للدخول. يرجى الاتصال بمدير الموقع.', + 'in_response_to' => 'أستجابة لـ', + 'ip_address' => 'عنوان بروتوكول الانترنت', + 'is_this_your_profile' => 'هل هذه هو حسابك الشخصي؟', + 'item' => 'بند', + 'items' => 'بنود', + 'item_details' => 'تفاصيل البند', + 'item_title' => 'نوان البند', + 'key' => 'مفتاح', + 'keywords' => 'كلمات البحث', + 'kml_kmz_file' => 'KMZ/KML File', + 'kml_kmz_upload' => 'تحميل ملف KMZ/KML', + 'kml_url' => 'KML URL', + 'laconica' => 'لاكونيا', + 'language' => 'اللغة', + 'last' => 'أخير', + 'last_month' => 'الشهر الأخير', + 'last_name' => 'الاسم الأخير', + 'last_year' => 'السنة الأخيرة', + 'latitude' => 'خط العرض', + 'layers' => 'الطبقات', + 'layers_filter' => 'طبقات أخرى', + 'layer_has_been' => 'الطبقات تم ', + 'layer_name' => 'اسم الطبقة', + 'layer_url' => 'رابط الطبقة', + 'leave_a_comment' => 'اترك تعليق', + 'less_information' => 'معلومات اقل', + 'level' => 'مستوى', + 'level_has_been' => 'هذه المستوى تم ', + 'level_name' => 'اسم المستوى', + 'limited' => 'محدود', + 'link' => 'الرابط', + 'list' => 'قائمة', + 'loading_reports' => 'جاري تحميل التقارير', + 'location' => 'المكان', + 'locations' => 'الأماكن', + 'location_example' => 'المدينة، المحافظة/الدولة', + 'login' => 'الدخول', + 'login_account_creation_successful' => 'تم انشاء حسابك بنجاح. يمكنك الدخول الأن', + 'login_confirmation_sent' => 'تم ارسال رسالة التأكيد إلى بريدك الإلكتروني', + 'login_email_doesnt_exist' => 'البريد الإلكتروني غير موجود. حاول مرة أخرى أو انشئ حساب جديد', + 'login_select_openid' => 'أختار الموقع المناسب لك', + 'login_with' => 'الدخول بـ', + 'login_userpass' => 'البريد الإلكتروني وكلمة المرور', + 'login_openid' => 'OpenID', + 'login_signup' => 'سجل', + 'login_signup_click' => 'سجل حساب جديد', + 'login_signup_confirmation_subject' => 'تأكيد التسجيل', + 'login_signup_admin_approval_subject' => 'الموافقة على عضو جديد', + 'login_signup_approval_subject' => 'الموافقة على حساب عضو جديد', + 'login_signup_text' => 'إنشاء حساب الآن للاستفادة من مميزات الموقع.', + 'longitude' => 'خط الطول', + 'map' => 'خريطة', + 'mark_read' => 'اجعلها مقروءة', + 'mark_unread' => 'اجعلها غير مقروءة', + 'maximum_filesize' => 'الحد الأقصى لحجم الملف', + 'media' => 'مواد إعلامية', + 'media_filter' => 'تصفية المواد الإعلامية', + 'members' => 'أعضاء', + 'manage_your_account' => 'تعديل حسابك', + 'message' => 'رسالة', + 'messages' => 'الرسائل', + 'message_details' => 'تفاصيل الرسالة', + 'message_non_numeric_source' => 'رسالة من مصدر غير رقمي', + 'mobile' => 'الهاتف المحمول', + 'modify' => 'تعديل', + 'modify_date' => 'تعديل تاريخ', + 'month' => 'شهر', + 'more' => 'المزيد', + 'more_information' => 'المزيد من المعلومات', + 'multi_country_instance' => 'هل هذه الخريطة تشمل دول متعددة؟', + 'must_confirm_email_address' => 'يجب عليك تأكيد عنوان البريد الالكتروني للوصول إلى هذا الموقع. إذا كنت فقدت البريد الإلكتروني تأكيد، يمكنك طلب واحدة جديدة أدناه.', + 'name' => 'الاسم', + 'nearby_report' => 'أحداث قريبة', + 'new' => 'جديد', + 'news' => 'أخبار', + 'news_feeds' => 'التغذية الإخبارية', + 'news_source' => 'مصدر الأخبار', + 'new_category' => 'تصنيف جديدة', + 'new_password' => 'كلمو مرور جديدة', + 'new_report' => 'تقرير جديد', + 'next' => 'التالي', + 'no' => 'لا', + 'no_checkins' => 'لا يوجد تسجيل دخول ليتم عرضه', + 'no_data' => 'لا يوجد معلومات', + 'none' => 'لا شئ', + 'notices' => 'إشعارات', + 'not_approved' => 'لم تتم الموافقة عليهم', + 'not_approved_singular' => 'لم تتم الموافقة عليه', + 'not_selected' => '---غير محدد---', + 'not_spam' => 'ليس سخام', + 'not_specified' => 'غير محدد', + 'no_reports' => 'لا يوجد تقارير', + 'no_results' => 'لايوجد نتائج', + 'off' => 'مغلق', + 'official_news' => 'أخبار رسمية وعامة', + 'on' => 'متاح', + 'option' => 'خيارات', + 'optional' => 'اختياري', + 'options' => 'خيارات', + 'organization' => 'منظمة', + 'organizations' => 'منظمات', + 'organization_description' => 'وصف المنظمة', + 'organization_email' => 'البريد الإلكتروني للمنظمة', + 'organization_has_been' => 'المنظمة تم ', + 'organization_name' => 'اسم المنظمة', + 'organization_phone_1' => 'تليفون المنظمة 1', + 'organization_phone_2' => 'تليفون المنظمة 2', + 'organization_website' => 'الموقع الإلكتروني للمنظمة', + 'original' => 'الأصل', + 'original_description' => 'الوصف الأصلي', + 'original_title' => 'العنوان الأصلي', + 'other_ushahidi_instances' => 'تطبيقات يوشاهيدي أخرى', + 'outbox' => 'البريد الصادر', + 'outgoing' => 'البريد الخارج', + 'page' => 'صفحة', + 'pages' => 'الصفحات', + 'page_description' => 'وصف الصفحة', + 'page_has_been' => 'الصفحة تم ', + 'page_tab_name' => 'اسم التبويب للصفحة', + 'page_title' => 'عنوان الصفحة', + 'parent_category' => 'الصنيف الرئيسي', + 'password' => 'كلمة السر', + 'password_again' => 'أكتب كلمة المرور مرة أخرى', + 'password_changed_successfully' => 'تم تغيير كلمة المرور بنجاح. ادخل الآن', + 'password_forgot' => 'تذكر كلمة المرور؟', + 'password_reset_confirm' => 'إطلع على بريدك الإلكتروني لمعرفة كلمة المرور الجديدة', + 'password_save' => 'أدخل عنوان البريد الإلكتروني المستحدم في التسجيل', + 'past_month' => 'الشهر الماضي', + 'past_year' => 'العام الماضي', + 'pending' => 'قيد الإرسال', + 'per' => 'لكل', + 'personal_information' => 'اختياري معلومات شخصية', + 'phone' => 'تليفون', + 'photos' => 'صور', + 'pictures' => 'صور', + 'pictures_and_videos' => 'صور وفيديو', + 'pinpoint_location' => '*ابحث عن مكانك بتحديد إحداثيات الطول والعرض أو أنقر على الخريطة لتحديد المكان', + 'play' => 'تشغيل', + 'please_note' => 'برجاء الملاحظة', + 'plugins' => 'برامج مساعدة', + 'plugin_url' => 'البرامج المساعدة للموقع الإلكتروني', + 'public_profile' => 'الملف العام', + 'public_profile_url' => 'عنوان الملف الشخصي العام', + 'preview' => 'معاينة', + 'preview_item' => 'معاينة الموضوع', + 'preview_message' => 'معاينة الرسالة', + 'previous' => 'السابق', + 'private' => 'خاص', + 'profile_color' => 'لون الملف الشخصي', + 'profile_saved' => 'تم حفظ ملفك الشخصى', + 'quick_stats' => 'إحصائيات سريعة', + 'rating' => 'تقييم', + 'read' => 'قراءة', + 'receive' => 'استقبل', + 'receive_from' => 'استقبل من', + 'receive_notifications' => 'استقبل إشعارات', + 'recent_reports' => 'أحدث التقارير', + 'refresh_news_feeds' => 'إنعاش التغذية الإخبارية', + 'registered_email' => 'البريد الإلكتروني المسجل', + 'remove' => 'احذف', + 'reply' => 'الرد', + 'report' => 'تقرير', + 'reports_listed' => 'التقارير (حسب التسلسل الزمني)', + 'reporter' => 'المحرر', + 'reporters' => 'المحررون', + 'reporter_date' => 'تاريخ التحرير', + 'reporter_email' => 'البريد الإلكترونى لمحرر التقرير', + 'reporter_first_name' => 'الاسم الأول للمحرر التقرير', + 'reporter_has_been' => 'المحرر قد تم ', + 'reporter_ip' => 'عنوان بروتوكول الانترنت لمحرر التقرير', + 'reporter_last_name' => 'الاسم الأخير لمحرر التقرير', + 'reporter_level' => 'مستوى محرر التقرير', + 'reporter_levels' => 'مستويات محرري التقارير', + 'reporter_phone' => 'تليفون محرر التقرير', + 'reports' => 'التقارير', + 'reports_btn_browse' => 'تصفح', + 'reports_btn_submit' => 'تقديم', + 'reports_by_this_user' => 'أرسل بواسطة هذا المستخدم', + 'reports_categories' => 'فئات', + 'reports_count' => '%d تقارير', + 'reports_date' => 'تاريخ', + 'reports_description' => 'وصف', + 'reports_download_csv' => 'سيتم تحميل التقارير في صيغة CSV ', + 'reports_email' => 'البريد الإلكتروني', + 'reports_features' => 'خصائص', + 'reports_find_location' => 'أعثر على أقرب مكان', + 'reports_first' => 'الاسم الأول', + 'reports_last' => 'الاسم الأخير', + 'reports_location_name' => 'تفصيل اسم المكان', + 'reports_news' => 'رابط مصدر الأخبار', + 'reports_optional' => 'معلومات اختيارية', + 'reports_photos' => 'رفع صور', + 'reports_return' => 'العودة لصفحة التقرير', + 'reports_select_city' => 'إختر مكان', + 'reports_submitted' => 'تم إرسال التقرير إلي فريقنا للمعانية. سنتصل بك في حال وجود ضرورة', + 'reports_submit_new' => 'إنشاء تقرير جديد', + 'reports_time' => 'الوقت', + 'reports_timeline' => 'الخط الزمني', + 'reports_title' => 'عنوان التقرير', + 'reports_video' => 'رابط الفيديو', + 'report_an_incident' => 'أبلغ عن واقعة', + 'report_details' => 'تفاصيل التقارير', + 'report_option_1' => 'من خلال إرسال رسالة إلى', + 'report_option_2' => 'بإرسال بريد إلكتروني إلى ', + 'report_option_3' => 'من خلال رسالة تويتر بالوسوم التالية', + 'report_option_4' => 'من خلال ملء هذه الاستمارة', + 'report_option_external_apps' => 'باستخدام تتطبيق', + 'report_saved' => 'تم حفظ التقرير الخاص بك', + 'report_title' => 'عنوان التقرير', + 'request_information' => 'طلب الحصول على مزيد من المعلومات', + 'request_location' => 'طلب بالمكان', + 'required' => 'مطلوب', + 'requirements' => 'متطلبات', + 'resend_confirm_email' => 'أعد ارسال رسالة التأكيد', + 'reset' => 'إعادة', + 'reset_all_filters' => 'مسح كل التصنيفات', + 'reset_password' => 'إعادة تعيين كلمة المرور', + 'retrieve_city_names' => 'الحصول على أسماء المدن للدولة المُختارة', + 'riverid_information' => 'الحساب يدار بواسطة خدمة %s', + 'riverid_exists_login' => 'لديك حساب يديره CrowdmapID! حاول استخدام البريد الإلكتروني الخاص بك CrowdmapID وكلمة السر للدخول.', + 'role' => 'دور', + 'rss' => 'تغذية اخبارية', + 'save' => 'حفظ', + 'saved' => 'تم الحفظ', + 'save_add_new' => 'احفظ وأضف جديد', + 'save_close' => 'حفظ وإغلاق', + 'save_report' => 'حفظ التقرير', + 'schedule' => 'الجدول', + 'scheduler' => 'جدولة', + 'scheduler_day' => 'يوم', + 'scheduler_hour' => 'ساعة', + 'scheduler_log' => 'سجل توقيت الأعمال', + 'scheduler_minute' => 'ثوانى', + 'scheduler_weekday' => 'يوم في الأسبوع', + 'search' => 'بحث', + 'search_results' => 'نتائج البحث', + 'security_code' => 'الكود الأمنى', + 'select_all' => 'إختر الكل', + 'select_field_type' => 'إختر نوع الحقل', + 'select_form_type' => 'إختر نوع الاستمارة', + 'select_in_map' => 'حدد فى الخريطة', + 'select_multiple' => 'إختر قدر الحاجة', + 'select_one' => 'رجاء التأكيد أنك قمت باختيار بند', + 'select_theme' => 'إختر شكل', + 'send' => 'إرسل', + 'send_confirmation' => 'أرسل التأكيد', + 'sending_to' => 'الإرسال إلى', + 'sent' => 'تم الإرسال', + 'sent_by' => 'تم الإرسال بواسطة', + 'server_address' => 'عنوان الخادم', + 'server_type' => 'نوع الخادم', + 'service' => 'الخدمة', + 'service_username' => 'اسم مستخدم الخدمة', + 'service_user_id' => 'هوية مستخدم الخدمة', + 'share' => 'مشاركة', + 'shared_data' => 'بيانات تم تشاركها', + 'share_has_been' => 'المشاركة قد تم', + 'sharing' => 'يتم المشاركة', + 'shorter_map' => 'خريطة أقصر', + 'show' => 'أظهر', + 'show_all' => 'أظهر الكل', + 'show_messages' => 'أظهر الرسائل', + 'site' => 'الموقع الإلكتروني', + 'site_email_address' => 'عنوان البريد الإلكتروني للموقع', + 'site_url' => 'رابط الموقع الإلكتروني', + 'smaller_map' => 'خريطة أصغر', + 'sms' => 'رسائل نصية قصيرة', + 'sorry_no_badges' => 'نأسف. أنت لا تملك أي شارات', + 'source' => 'المصدر', + 'source_name' => 'اسم المصدر', + 'sort' => 'ترتيب', + 'sort_by' => 'رتب بـ', + 'source_url' => 'رابط المصدر', + 'spam' => 'سخام', + 'ssl_support' => 'تغذية اخبارية', + 'start_point' => 'من', + 'step' => 'خطوة', + 'submit' => 'أبلغ عن واقعة', + 'submit_sms' => 'الإبلاغ بواسطة رسالة نصية قصيرة', + 'submit_sms1' => 'إرسل الرسالة النصية الخاصة بك إلى', + 'submit_sms2' => 'على تليفونك', + 'success' => '!نجحت', + 'successfuly_imported' => 'تم الاستيراد بنجاح', + 'surname' => 'اسم العائلة', + 'survey' => 'استطلاع رأى', + 'system' => 'نظام', + 'taller_map' => 'خريطة أطول', + 'tcp_port' => 'TCP Port', + 'themes' => 'قوالب', + 'theme_default' => 'القالب الافتراضي لأوشاهيدي', + 'theme_settings' => 'إعدادات القالب', + 'this' => 'هذا', + 'this_day' => 'اليوم', + 'this_month' => 'هذا الشهر', + 'this_week' => 'هذا الاسبوع', + 'this_year' => 'هذا العام', + 'this_is_your_profile' => 'هذا هو حسابك الشخصى', + 'time' => 'الوقت', + 'title' => 'عنوان ', + 'to' => 'إلى', + 'today' => 'اليوم', + 'today_at' => 'اليوم على', + 'token' => 'أخذت', + 'total_reports' => 'إجمالي التقارير', + 'translated' => 'تمت الترجمة', + 'translated_description' => 'الوصف المترجم', + 'translated_title' => 'العنوان المترجم', + 'translate_to' => 'الترجمة إلى', + 'translation' => 'الترجمة', + 'translation_saved' => 'تم حفظ الترجمة', + 'trusted' => 'موثوق', + 'type' => 'نوع', + 'twitter' => 'تويتر', + 'unable_send_email' => 'لم نتمكن من ارسال الرسالة.', + 'uncategorized_reports' => 'تقارير غير مصنفة', + 'unread' => 'غير مقروء', + 'unverified' => 'لم يتم التحقق', + 'update_feeds' => 'حدث التغذية', + 'upload' => 'رفع', + 'upload_guide' => 'يجرى مراجعة تقرير التحميل من ملف المساعدة', + 'upload_file' => 'الملف للرفع', + 'upload_reports' => 'رفع التقارير', + 'upload_reports_custom_forms' => 'أعمدة الحقول المخصصة يجب ان تكون القيمة form_id مضافة لهم مثلا الحقل الممخصص Test على النموذج الافتراضي، الذي هو رقم 1، سوف يكون Test-1. خلال تحميل السجلات تأكد من أن', + 'upload_reports_detail_1' => 'بالاستمارة أدناه يمكنك استيراد أحداث على محرك يوشاهيدي', + 'upload_reports_detail_4' => 'يجب على الأقل وجود عنوان الحدث والتاريخ', + 'upload_reports_detail_4b' => 'وإذا لم يتم توفير خط العرض وخط الطول والعرض سيتم تحديد المكان باستخدام Geocoder جوجل', + 'upload_reports_detail_4c' => 'إذا استيراد أي معلومات إضافية معلومات شخصية و / أو حقول نموذج مخصص', + 'upload_reports_detail_4d' => 'يجب على الأقل احد حقول المعلومات الشخصية (الاسم واللقب والبريد الإلكتروني) أن يكون موجود. السجلات فارغة سيتم تجاهل استردادها.', + 'upload_reports_detail_4e' => 'إدخالات القائمة المنسدلة للحقول، وأزرار الراديو وخانات تطابق الخيارات المنصوص عليها في الحقول المخصصة في موقعك', + 'upload_reports_detail_4f' => 'يتم فصل خيارات مربع من قبل مثل الفاصلة إذا اختيارك مختارة من الفواكه التفاح والمانجو والعنب، يجب الدخول الخاص بك لهذا تكون "التفاح ,المانجو ,العنب"', + 'upload_reports_detail_4g' => 'قيم حقل تاريخ في التنسيق التالي: شهر / يوم / سنة 3 أكتوبر 2012 على سبيل المثال = 2012/10/03', + 'upload_reports_detail_5' => 'CSV عينة من تقرير في صيغة', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'نجح الرفع', + 'upload_video' => 'أرسل ملف فديو', + 'url' => 'الرابط', + 'user' => 'المستخدم', + 'username' => 'اسم المستخدم', + 'ushahidi_admin' => 'مدير أوشاهيدي', + 'verification' => 'التحقق', + 'verified' => 'تم التحقق منه', + 'verified_reports' => 'تقارير تم التحقق منها', + 'verify' => 'تحقق', + 'verify_this_report' => 'تحقق من هذا التقرير', + 'version' => 'إصدار', + 'via' => 'بواسطة', + 'video' => 'فيديو', + 'view' => 'عرض', + 'views' => 'مشاهدات', + 'view_all' => 'عرض الكل', + 'view_all_feeds' => 'عرض كل التغذيات', + 'view_all_reports' => 'عرض كل التقارير', + 'view_items' => 'عرض البنود', + 'view_more' => 'عرض المزيد', + 'view_public_profile' => 'شاهد ملفك العام', + 'view_report' => 'عرض تقرير', + 'view_reports' => 'عرض التقارير', + 'view_video' => 'شاهد الفيديو', + 'visible' => 'مرئي', + 'waiting_approval' => 'في انتظار الموافقة', + 'waiting_verification' => 'في انتظار التحقق منه', + 'wider_map' => 'خريطة أعرض', + 'web_form' => 'نموذج ويب', + 'web' => 'شبكة', + 'weight' => 'وزن', + 'yes' => 'نعم', + 'yesterday' => 'الأمس', + 'your_dashboard' => 'لوحة القيادة', + 'your_file' => 'ملفك', + 'zoom_in' => 'تكبير', + 'zoom_out' => 'تصغير', +); diff --git a/application/i18n/ar/upgrade.php b/application/i18n/ar/upgrade.php new file mode 100755 index 0000000000..b9a5a8b235 --- /dev/null +++ b/application/i18n/ar/upgrade.php @@ -0,0 +1,55 @@ + array( + 'between' => '.البيانات المدخلة غير صحيحة. ادخل إما 0 = لا أو 1 = نعم', + ) , + 'upgrade_automatic' => 'ترقية أوتوماتيكية', + 'upgrade_available' => 'ترقيات متاحة', + 'upgrade_continue_btn_text' => 'استمر', + 'upgrade_db_btn_text' => 'ترقية', + 'upgrade_db_text_1' => 'إذن، سوف أقوم بترقية قاعدة معلوماتك من إصدار', + 'upgrade_db_text_2' => 'إلى أحدث إصدار', + 'upgrade_db_text_3' => '.انقر عل زر "ترقية" واسترخي بينما أصنع أنا السحر', + 'upgrade_db_text_4' => 'وإذا أردت أن أقوم بالنسخ الاحتياطي لقاعدة البيانات الخاصة بك، فقط ضع علامة على زرالاختيار أدناه وسوف أنفذ في لحظة', + 'upgrade_db_text_5' => ' (Highly recommended) هل ترغب في النسخ الاحتياطي قبل الترقية؟', + 'upgrade_db_title' => 'ترقية قاعدة بيانات يوشاهيدي', + 'upgrade_db_info' => 'تم تحديث أوشاهيدي! قبل المتابعة، تحتاج إلى تحديث قاعدة البيانات الخاصة بك إلى الإصدار الأحدث (%s).', + 'upgrade_db_up_to_date' => 'نسخة قاعدة البيانات محدثة.', + 'upgrade_failed' => 'فشلت الترقية في مرحلة ما', + 'upgrade_manual' => 'ترقية يدوية', + 'upgrade_status' => 'حالة ترقية اليوشاهيدي', + 'upgrade_text_1' => 'الإرشادات التالية توضح كيفية تحديث عملية نشر يوشاهيدي يدوياً', + 'upgrade_text_2' => 'الخطوة 1 قم بتحميل أحدث إنشاء من أوشاهيدي على
http://download.ushahidi.com', + 'upgrade_text_3' => 'الخطوة 2 بحسب نظام التشغيل الذى يعمل عليه خادم الويب, استخدم الإدارة المفضلة لديك/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. :الجميع ماعدا', + 'upgrade_text_4' => 'Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables', + 'upgrade_text_5' => 'للتحديث الآلى اضغط على الزر التالى', + 'upgrade_text_6' => 'للتحديث التلقائى اضغط على الزر بالاسفل', + 'upgrading' => 'الآن تتم الترقية', + 'upgrade_ftp_text' => 'لمتابعة عملة التحديث المعلومات الاتية مطلوبة من السيرفير الموجود علية الموقع', + 'upgrade_ftp_hostname' => 'FTP اسم المستضيف: مثال: "localhost"', + 'upgrade_ftp_password' => 'FTP كلمة المرور:', + 'upgrade_ftp_username' => 'FTP اسم المستخدم:', + 'upgrade_status_info' => 'لديك الان احدث اصدارة من يوشاهيدى', + 'upgrade_status_info_2' => 'أنت لا تحتاج إلى ترقية.', + 'upgrade_db_version' => 'اصدار قاعدة البيانات: %d', + 'upgrade_database' => 'قاعدة البيانات:', + 'ushahidi_release_version' => 'يوشاهيدى %s', + 'beta' => 'نسخة بيتا!', + 'download' => 'حمل اخر اصدارة من يوشهايدى', + 'log_file' => 'ملف لوج', + 'failed_downloading' => 'فشل التحميل..', + 'successfully_unpacked' => 'تم فك الضغط. نسخ الملفات...', + 'failed_unpacking' => 'فشل فك الضغط', + 'successfully_copied' => 'تم نسخ الملفات. تحديث قاعدة البيانات...', + 'failed_copying' => 'فشل فى نسخ الملفات', + 'backup_success' => 'تم نسخ و تحديث قاعدة البيانات بنجاح', + 'backup_failed' => 'فشل فى اخذ نسخة احتياطية من قاعدة البيانات', + 'dbupgrade_success' => 'تم تحديث قاعدة البيانات بنجاح', + 'deleting_files' => 'يتم مسح الملفات التى تم تحمليها', + 'upgrade_success' => 'نجح التحديث. View Log File', +); diff --git a/application/i18n/ar_EG/alerts.php b/application/i18n/ar_EG/alerts.php new file mode 100644 index 0000000000..d7b3042767 --- /dev/null +++ b/application/i18n/ar_EG/alerts.php @@ -0,0 +1,7 @@ + array( + 'email' => 'E-mail ünvanı səhfdi ', + 'email_check' => 'Bu e-mail artıq bu yeri uyarıları üçün imzalanıb', + 'length' => ' E-mail ünvanı 4 və 64 simvol arasında olmalıdır.', + 'required' => 'Bir e-mail ünvanı qeyd eliyin, və ya seçimini silin.', + ) , + 'alert_lat' => array( + 'between' => 'Siz xəritədə yanlış bir yeri seçdiniz', + 'required' => 'Siz xəritədə bir yeri seçmediniz.', + ) , + 'alert_lon' => array( + 'between' => 'Siz xəritədə yanlış bir yeri seçdiniz.', + 'required' => 'Siz xəritədə yanlış bir yeri seçdiniz.', + ) , + 'alert_mobile' => array( + 'length' => 'Telefon nömrəsi düzgün deyil, düzgün nömrəsini daxil edin.', + 'mobile_check' => 'Bu nömrə bu yeri ayarları üçün imzalanıb', + 'numeric' => 'Telefon nömrəsi səhfdi.Rəqəmləri ölkə kodu ilə daxil edin.', + 'one_required' => 'Telefon nömrəsini və ya e-mail daxil edin.', + 'required' => 'Telefon nömrəsini daxil edin', + ) , + 'alert_radius' => array( + 'in_array' => 'Siz xəritədə tədbir radiusu müəyyən etmədiniz.', + 'required' => 'Siz xəritədə tədbir radiusu müəyyən etmədiniz.', + ) , + 'alert_recipient' => array( + 'required' => 'Siz xəbərlər üçün alıcı müəyyən etmədiniz.', + ) , + 'alerts_subscribed' => 'Siz aşağıdakı kateqoriyalara uyğun ayarıları qeyd eləmisiniz.', + 'code_already_verified' => 'Bu kod artıq istifadə olunub.', + 'code_not_found' => 'Bu kod tapılmıyıb.URL düzgün olmasını yoxlıyın.', + 'code_verified' => 'Sizin kodu təsdiq olunub.Bundan etibarən siz bütün xəbərlətdən məlumat alacaqsınız.', + 'confirm_request' => 'Xəbərləri almaq üçün, URL-a keçin:', + 'create_more_alerts' => 'Geri,abunə almaq üçün.', + 'email_alert_request_created' => 'Sizin abunə ərizəsi qeyd olundu və yoxlama məktubu e-mailə göndərildi.', + 'email_code' => 'Zəhmət olmasa yoxlama kodunu daxil edin.', + 'email_error_head' => 'Sizin abunə ərizəviz qeyd olunmayıb.', + 'email_ok_head' => 'Sizin abunə ərizəviz qeyd olunub.', + 'error' => 'Kodu yoxlamaq alınmadı', + 'mobile_alert_request_created' => 'Sizin xəbərlərə əbunəviz qeyd olundu və yoxlama məktubu göndərilib.', + 'mobile_code' => 'Zahmət olmasa sizə SMS-nən gələn yoxlama kodunu daxil edin', + 'mobile_error_head' => 'Sizin telefon abunə ərizəviz qeyd olunmayıb.', + 'mobile_ok_head' => 'Sizin telefon abunə ərizəviz qeyd olunub.', + 'settings_error' => 'Doğru ayarıları almaq üçün kartın konfiqurasiyası düz deyil.', + 'unsubscribe' => 'Siz ayarları almaq üçün qeydiyatdan keçmisiniz.İmtina eləmək üçün:', + 'unsubscribed' => 'Siz artiq ayarları almayacaqsınız', + 'unsubscribe_failed' => 'Zəhmət olmasa URL-ı yoxlıyın', + 'verification_email_subject' => 'Ayarları almaq üçün yoxlama', + 'verify_code' => 'Ərizəvizi yoxlamadan siz ayarları ala bilmərsiniz', +); diff --git a/application/i18n/az_AZ/auth.php b/application/i18n/az_AZ/auth.php new file mode 100644 index 0000000000..ad8f59a64f --- /dev/null +++ b/application/i18n/az_AZ/auth.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Полето за Email не съдържа правилен email адрес?', + 'email_check' => 'Този Email адрес вече е регистриран за получаване на съобщения за това място', + 'length' => 'Email адресът трябва да е между 4 и 64 символа.', + 'required' => 'Email адресът е задължителен, ако се отбелязали отметката.', + ) , + 'alert_lat' => array( + 'between' => 'Не сте избрали правилно местопложение на картата.', + 'required' => 'Не сте избрали правилно местопложение на картата.', + ) , + 'alert_lon' => array( + 'between' => 'Не сте избрали правилно местопложение на картата.', + 'required' => 'Не сте избрали правилно местопложение на картата.', + ) , + 'alert_mobile' => array( + 'length' => 'Полето за мобилен телефон не съдържа правилният брой цифри.', + 'mobile_check' => 'Този мобилен номер вече е регистриран за получаване на съобщения за това място', + 'numeric' => 'Полето за мобилен телефон не съдържа валиден номер. Моля въведете код на страната.', + 'one_required' => 'Трябва да въведете или мобилен номер, или email адрес.', + 'required' => 'Мобилният телефон е задължителен, ако сте отбелязали отметката.', + ) , + 'alert_radius' => array( + 'in_array' => 'Не сте въвели валиден радиус на картата.', + 'required' => 'Не сте въвели радиус на картата.', + ) , + 'alert_recipient' => array( + 'required' => 'Не е посочен получател на известията.', + ) , + 'code_already_verified' => 'Този код вече е бил потвърден!', + 'code_not_found' => 'Този код не е намерен! Моля проверете дали имате правилният адрес.', + 'code_verified' => ' Кодът ви е потвърден. Вече ще получавате съобщения за инциденти.', + 'confirm_request' => 'За да потвърдите заявката си, моля посетете ', + 'create_more_alerts' => 'Върнете се на страницата за инциденти за други съобщения', + 'email_alert_request_created' => 'Заявката за съобщения по мейл е било създадено и изпратено на ', + 'email_code' => 'Моля въведете кода за потвърждение отдолу: ', + 'email_error_head' => 'Вашата заявка за съобщения по mail НЕ е било записано!', + 'email_ok_head' => 'Вашата заявка за съобщения по mail е било записано!', + 'error' => 'Системата не успя да обработи заявката!', + 'mobile_alert_request_created' => 'Разпитването за съобщения по телефон е създадено и изпратено на ', + 'mobile_code' => 'Моля въведете кода, който получихте с SMS тук: ', + 'mobile_error_head' => 'Заявката за съобщения по телефон НЕ е записано!', + 'mobile_ok_head' => 'Заявката за съобщения по телефон е записано!', + 'settings_error' => 'Тази система не поддържа съобщения по телефон', + 'unsubscribe' => 'Получавате този мейл, защото сте регистрирани за съобщения. Ако не искате да го получавате вече, посетете ', + 'unsubscribed' => 'Вече няма да получавате съобщения от ', + 'unsubscribe_failed' => 'Не успяхме да ви отпишем. Моля проверете дали имате правилния адрес.', + 'verification_email_subject' => 'съобщения - потвърждение', + 'verify_code' => 'Няма да получавате съобщения за това място докато не потвърдите заявката си.', +); diff --git a/application/i18n/bg_BG/auth.php b/application/i18n/bg_BG/auth.php new file mode 100644 index 0000000000..ab499a4488 --- /dev/null +++ b/application/i18n/bg_BG/auth.php @@ -0,0 +1,47 @@ + array( + 'email' => 'Полето за email изглежда не съдържа валиден адрес.', + 'exists' => 'Съжаляваме, но вече има потребител с този адрес.', + 'length' => 'Полето за email трябва да съдържа между 4 и 64 символа.', + 'required' => 'Email-ът е задължителен.', + ) , + 'name' => array( + 'length' => 'Пълното име трябва да е между 3 и 100 символа.', + 'required' => 'Пълното име е задължително.', + 'standard_text' => 'Потребителското име съдържа непозволени символи.', + ) , + 'password' => array( + 'length' => 'Паролата трябва да е между 5 и 16 символа.', + 'login error' => 'Моля проверете дали сте въвели правилната парола.', + 'matches' => 'Моля въведете еднаква парола в двете полета.', + 'required' => 'Паролата е задължителна.', + ) , + 'password_confirm' => array( + 'matches' => 'Моля въведете еднаква парола в двете полета.', + ) , + 'resetemail' => array( + 'email' => 'Полето за email изглежда не съдържа валиден адрес.', + 'invalid' => 'Съжаляваме, но нямаме вашият мейл.', + 'required' => 'Email-ът е задължителен.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Невалиден формат на ролята.', + 'length' => 'Ролята трябва да е между 5 и 20 символа.', + 'required' => 'Трябва да дефинирате поне една роля.', + 'values' => 'Трябва да изберете или ADMIN, или USER роля.', + ) , + 'username' => array( + 'admin' => 'Името на admin не може да бъде променено.', + 'exists' => 'Съжалявам, това потребителско име е заето.', + 'length' => 'Потребителското име трябва да е между 2 и 16 символа.', + 'login error' => 'Моля проверете дали сте въвели правилно потребителско име.', + 'required' => 'Потребителското име е задължително.', + 'superadmin' => 'Ролята на супер администратор не може да бъде променян.', + ) , +); diff --git a/application/i18n/bg_BG/bug.php b/application/i18n/bg_BG/bug.php new file mode 100644 index 0000000000..2e9e6e5769 --- /dev/null +++ b/application/i18n/bg_BG/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Моля въведете правилен код за сигурност', + 'required' => 'Моля въведете код за сигурност', + ) , + 'email' => array( + 'email' => 'Email адресът не изглежда валиден', + 'length' => 'Email адресът трябва да е между 4 и 64 символа.', + 'required' => 'Email адресът се изисква, ако се отбелязали отметката.', + ) , + 'error' => array( + 'required' => 'Полето за грешка е задължително.', + ) , + 'subject' => array( + 'length' => 'Заглавието трябва да е поне 3 символа дълго.', + 'required' => 'Заглавието е задължително.', + ) , + 'yourname' => array( + 'length' => 'Името трябва да е поне 3 символа дълго.', + 'required' => 'Името е задължително.', + ) , +); diff --git a/application/i18n/bg_BG/category.php b/application/i18n/bg_BG/category.php new file mode 100644 index 0000000000..c734de22b4 --- /dev/null +++ b/application/i18n/bg_BG/category.php @@ -0,0 +1,30 @@ + array( + 'length' => 'Цветът трябва да има 6 символа.', + 'required' => 'Цветът е задължителен.', + ) , + 'category_description' => array( + 'required' => 'Описанието е задължително.', + ) , + 'category_image' => array( + 'size' => 'Моля имайте предвид, че размерът на иконката трябва да е до 50KB.', + 'type' => 'Полето за иконката изглежда не съдържа валидна снимката. Поддържаните формати са .JPG, .PNG и .GIF.', + 'valid' => 'Полето за иконката изглежда не съдържа валиден файл.', + ) , + 'category_title' => array( + 'length' => 'Заглавието трябва да е между 3 и 80 символа.', + 'required' => 'Заглавието е задължително.', + ) , + 'parent_id' => array( + 'exists' => 'Родителската категория не съществува.', + 'numeric' => 'Родителската категория трябва да е цифра.', + 'required' => 'Родителската категория е задължителна', + 'same' => 'Категорията и родителската категория не може да са едни и същи.', + ) , +); diff --git a/application/i18n/bg_BG/comments.php b/application/i18n/bg_BG/comments.php new file mode 100644 index 0000000000..3fae745209 --- /dev/null +++ b/application/i18n/bg_BG/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Моля въведете правилен код за сигурност', + 'required' => 'Моля въведете код за сигурност', + 'valid' => 'Въведен е грешен код за сигурност.', + ) , + 'comment_author' => array( + 'length' => 'Името трябва да е с поне 3 символа.', + 'required' => 'Името е задължително.', + ) , + 'comment_description' => array( + 'required' => 'Трябва да въведете коментар.', + ) , + 'comment_email' => array( + 'email' => 'Email адресът не изглежда да е правилен?', + 'length' => 'Email трябва да съдържа между 4 и 64 символа.', + 'required' => 'Email полето е задължително, ако сте отбелязали отметката.', + ) , +); diff --git a/application/i18n/bg_BG/contact.php b/application/i18n/bg_BG/contact.php new file mode 100644 index 0000000000..2a78bcca37 --- /dev/null +++ b/application/i18n/bg_BG/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Моля въведете правилен код за сигурност', + 'required' => 'Моля въведете код за сигурност', + ) , + 'contact_email' => array( + 'email' => 'Email адресът не изглежда да е правилен?', + 'length' => 'Email трябва да съдържа между 4 и 64 символа.', + 'required' => 'Email полето е задължително, ако сте отбелязали отметката.', + ) , + 'contact_message' => array( + 'required' => 'Съобщението е задължително.', + ) , + 'contact_name' => array( + 'length' => 'Името трябва да е с поне 3 символа.', + 'required' => 'Името е задължително.', + ) , + 'contact_subject' => array( + 'length' => 'Заглавието трябва е дълго поне 3 символа.', + 'required' => 'Заглавието е задължително.', + ) , +); diff --git a/application/i18n/bg_BG/core.php b/application/i18n/bg_BG/core.php new file mode 100644 index 0000000000..1232acd0f4 --- /dev/null +++ b/application/i18n/bg_BG/core.php @@ -0,0 +1,33 @@ + 'конфигурационен файл', + 'controller' => 'контролер', + 'driver' => 'драйвер', + 'driver_implements' => 'Драйверът %s за библиотеката %s трябва да имплементира интерфейса %s', + 'driver_not_found' => 'Драйверът %s за библиотеката %s не беше намерен', + 'errors_disabled' => 'Може да отидете на началната страница или да опитате отново.', + 'generic_error' => 'Заявката не беше успешно извършена', + 'helper' => 'помощник', + 'invalid_filetype' => 'Заявеният тип файл, .%s, не е сред позволените за преглед', + 'invalid_method' => 'Неправилен метод %s беше извикан в %s', + 'invalid_property' => 'Променливата %s не съществува в клас %s.', + 'library' => 'библиотека', + 'log_dir_unwritable' => 'Невъзможно е писането в папката за log файлове: %s', + 'model' => 'модел', + 'no_controller' => 'Ushahidi не можа да открие контролер за обработка на тази заявка: %s', + 'no_default_route' => 'Моля задайте път по подразбиране в config/routes.php', + 'page_not_found' => 'Страницата, която поискахте, %s, не беше открита.', + 'report_bug' => 'Съобщете за тази грешка на Ushahidi', + 'resource_not_found' => 'Искания %s, %s, не беше открит', + 'stack_trace' => 'Път на изпълнение', + 'stats_footer' => 'Зареден за {execution_time} секунди, използвайки {memory_usage} от паметта. Създадено от Ushahidi v%s.', + 'there_can_be_only_one' => 'Може да има само един Ushahidi на заявка за страница', + 'uncaught_exception' => 'Нехванато %s: %s във файл %s на ред %s', + 'view' => 'преглед', + 'view_set_filename' => 'Първо трябва да зададете файла за преглед преди да извикате изписването', +); diff --git a/application/i18n/bg_BG/database.php b/application/i18n/bg_BG/database.php new file mode 100644 index 0000000000..5becf282ec --- /dev/null +++ b/application/i18n/bg_BG/database.php @@ -0,0 +1,10 @@ + 'Грешка в базата данни: %s', + 'table_not_found' => 'Таблицата "%s" не беше намерена в базата данни. Моля проверете дали имате последната версия на базата данни за тази версия на Ushahidi', +); diff --git a/application/i18n/bg_BG/datetime.php b/application/i18n/bg_BG/datetime.php new file mode 100644 index 0000000000..e8814cc018 --- /dev/null +++ b/application/i18n/bg_BG/datetime.php @@ -0,0 +1,38 @@ + 'сутрин', + 'friday' => array( + 'abbv' => 'пет', + 'full' => 'петък', + ) , + 'monday' => array( + 'abbv' => 'пон', + 'full' => 'понеделник', + ) , + 'pm' => 'следобед', + 'saturday' => array( + 'abbv' => 'съб', + 'full' => 'събота', + ) , + 'sunday' => array( + 'abbv' => 'нед', + 'full' => 'неделя', + ) , + 'thursday' => array( + 'abbv' => 'чет', + 'full' => 'четвъртък', + ) , + 'tuesday' => array( + 'abbv' => 'втр', + 'full' => 'вторник', + ) , + 'wednesday' => array( + 'abbv' => 'сря', + 'full' => 'сряда', + ) , +); diff --git a/application/i18n/bg_BG/feeds.php b/application/i18n/bg_BG/feeds.php new file mode 100644 index 0000000000..13bcaeff9e --- /dev/null +++ b/application/i18n/bg_BG/feeds.php @@ -0,0 +1,18 @@ + array( + 'length' => 'Името на абонамента трябва да е между 3 и 70 символа.', + 'required' => 'Моля въведете име на абонамента.', + ) , + 'feed_url' => array( + 'required' => 'Моля въведете адрес на абонамента.', + 'url' => 'Моля въведете валиден адрес. Например: http://www.ushahidi.com', + ) , + 'source' => 'ИЗТОЧНИК', + 'title' => 'Заглавие', +); diff --git a/application/i18n/bg_BG/footer.php b/application/i18n/bg_BG/footer.php new file mode 100644 index 0000000000..85ea01bc8d --- /dev/null +++ b/application/i18n/bg_BG/footer.php @@ -0,0 +1,9 @@ + 'php5-curl не е инсталиран на тази система', +); diff --git a/application/i18n/bg_BG/form.php b/application/i18n/bg_BG/form.php new file mode 100644 index 0000000000..49d5c30378 --- /dev/null +++ b/application/i18n/bg_BG/form.php @@ -0,0 +1,45 @@ + array( + 'length' => 'Полето Име трябва да е между 3 и 200 символа.', + ) , + 'field_height' => array( + 'between' => 'Моля въведете стойност между 0 и 50 за полето Височина', + ) , + 'field_isdate' => array( + 'between' => 'Въвели сте неправилна стойност за полето Дата', + 'required' => 'Моля изберете Да или Не за полето Дата', + ) , + 'field_name' => array( + 'length' => 'Полето Име трябва да е между 3 и 100 символа.', + 'required' => 'Моля въведете стойност за полето Име.', + ) , + 'field_required' => array( + 'between' => 'Въвели сте неправилна стойност за полето Изисква се', + 'required' => 'Моля изберете Да или Не за полето Изисква се', + ) , + 'field_type' => array( + 'numeric' => 'Моля изберете валиден тип на поле.', + 'required' => 'Моля изберете тип на поле.', + ) , + 'field_width' => array( + 'between' => 'Моля въведете стойност между 0 и 200 за полето Широчина', + ) , + 'form_description' => array( + 'required' => 'Моля въведете описание на формуляра.', + ) , + 'form_id' => array( + 'default' => 'Формулярът по подразбиране не може да бъде изтрит.', + 'numeric' => 'Моля изберете към кой формуляр да се добави това поле.', + 'required' => 'Моля изберете към кой формуляр да се добави това поле.', + ) , + 'form_title' => array( + 'length' => 'Името на формуляра трябва да е между 3 и 100 символа.', + 'required' => 'Моля въведете име на формуляра.', + ) , +); diff --git a/application/i18n/bg_BG/imap.php b/application/i18n/bg_BG/imap.php new file mode 100644 index 0000000000..f62ba018dd --- /dev/null +++ b/application/i18n/bg_BG/imap.php @@ -0,0 +1,10 @@ + 'Отварянето на IMAP поток беше неуспешно', + 'unsupported_service' => 'Email услугата ви не е използваема', +); diff --git a/application/i18n/bg_BG/installer.php b/application/i18n/bg_BG/installer.php new file mode 100644 index 0000000000..629c342135 --- /dev/null +++ b/application/i18n/bg_BG/installer.php @@ -0,0 +1,84 @@ + 'Основен път', + 'database' => 'База данни', + 'database_host' => 'Адрес на база данни', + 'database_host_description' => 'Ако Ushahidi ще върви на вашия компютър, това най-вероятно ще е "localhost". Ако ще върви на сървър, моля попитайте доставчикът си', + 'database_name' => 'Име на база данни', + 'database_name_description' => 'Името на базата данни, с която искате Ushahidi да работи', + 'db_information_link' => 'За повече информация, моля прочетете тази статия във връзка с използването на бази данни', + 'default_language' => 'Език по подразбиране (Локални настройки)', + 'default_language_description' => 'Всеки пакет на Ushahidi идва с вградени езици по подразбиране. Може да добавите и други', + 'disable' => 'Изключи', + 'enable' => 'Включи', + 'error_summary' => 'Това е списъка с грешките, които открихме', + 'files_location_text' => 'Местоположението на сървъра, където ще се поставят файловете на Ushahidi. Ние автоматично засякохме това място. Моля проверете дали е вярно. Ако е празно, значи Ushahidi е инсталиран на най-горната папка', + 'finished' => 'Завършен', + 'general' => 'Общи', + 'google_key' => 'Google API ключ', + 'google_key_description' => 'Всеки може да получи API ключ. Получете вашия сега', + 'go_back' => 'Назад', + 'index' => array( + 'advanced' => 'Инсталация за напреднали', + 'advanced_installation_description' => 'Въведете всички основни настройки в 5 стъпки. Това включва сървъра, картата, името на сайта и контактите.', + 'basic_installation' => 'Основна инсталация', + 'basic_installation_description' => 'Бърза и лесна. Ще ви трябва само началната директория и информация за базата данни. Изберете тази опция, ако искате да започнете бързо. По-късно може да настроите всичко останало.', + 'proceed' => 'Продължи', + 'welcome' => 'Добре дошли в инсталацията на сървъра на Ushahidi. Изберете кой тип инсталация искате:', + ) , + 'installation_successful' => 'Инсталацията е успешна', + 'mail_server' => 'Mail сървър', + 'mail_server_host' => 'Адрес Mail сървър', + 'mail_server_host_description' => 'Примери: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Парола на Mail сървър', + 'mail_server_password_description' => 'Паролата, която използвате, за да влезете в мейла си', + 'mail_server_port' => 'Порт на Mail сървъра', + 'mail_server_port_description' => 'Най-чести портове: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Тип на Mail сървъра', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) или Post Office Protocol (POP). Вижте разликата?', + 'mail_server_username' => 'Потребителско име на Mail сървъра', + 'mail_server_username_description' => 'Ако използвате Gmail, Hotmail или Yahoo Mail, въведете целия email адрес като потребителско име.', + 'map' => 'Карта', + 'map_provider' => 'Доставчик на картата', + 'map_provider_description' => 'Ushahidi работи еднакво добре с тези четири доставчици на карти: Google, Bing, Yahoo и Open Street Map. Изберете тази, които има най-подробни карти във вашия регион.', + 'other_steps' => 'Други стъпки...', + 'password' => 'Парола', + 'password_description' => 'Паролата на базата данни', + 'previous' => 'Предишна', + 'restart_apache' => 'Моля рестартирайте Apache сървъра си', + 'select_mail_server_ssl' => 'Включи/изключи SSL', + 'select_mail_server_ssl_description' => 'Някои mail дават възможност да се използва SSL когато се прави връзка. Използването на SSL се препоръчва, тъй като ви дава допълнителна сигурност.', + 'setup_sms' => 'Настройте вашия SMS сървър', + 'site_email' => 'Email адрес на страницата', + 'site_email_alerts' => 'Email адрес за получаване на сигнали', + 'site_email_alerts_description' => 'Когато посетителите ви се абонират за сигнали, ще ги получават от този адрес. Той не е трябва непременно да е същия като мейла на сайта.', + 'site_email_description' => 'Комуникацията на сайта ще минава през този адрес', + 'site_name' => 'Име на сайта', + 'site_name_description' => 'Името на вашия сайт', + 'site_tagline' => 'Основно съобщение/мото на сайта', + 'site_tagline_description' => 'Съобщението, с което сайта ще посреща посетителите', + 'summary' => array( + 'text_1' => 'Файловете и папките отдолу трябва да могат да се променят на сървъра ви', + 'text_2' => '

Ето как да промените правата за писане:

+ ', + 'text_3' => 'Преди да започнете, проверете дали тези папки и файлове могат да бъдат променяни на сървъра ви. Това включва промяна на правата за писане.', + 'text_4' => 'За процеса на инсталация, трябва да разполагате със следната информация:', + ) , + 'table_prefix' => 'Префикс на таблиците', + 'table_prefix_description' => 'По принцип няма нужда да променяте префикса на таблиците. Понякога обаче, ако искате да инсталирате няколко платформи на един сървър и в една база данни, това е задължително, за да се различават данните една от друга.', + 'title' => 'Заглавие', + 'to_login' => 'За да се впишете, отидете на', + 'upload_data' => 'Качи файл със сигнали', + 'username' => 'Потребителско име', + 'username_description' => 'Потребителско име на базата данни', + 'use_credentials' => 'и използвайте тези потребителски данни', + 'view_site' => 'Прегледайте сайта си', +); diff --git a/application/i18n/bg_BG/layer.php b/application/i18n/bg_BG/layer.php new file mode 100644 index 0000000000..5e71ae71a8 --- /dev/null +++ b/application/i18n/bg_BG/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Цветът трябва да е 6 символа.', + 'required' => 'Цветът се изисква.', + ) , + 'layer_file' => array( + 'type' => 'Файлът не изглежда да е с валиден формат. Приетите формати са само .KMZ, .KML.', + 'valid' => 'Файлът не изглежда да е валиден', + ) , + 'layer_name' => array( + 'length' => 'Името трябва да е между 3 и 80 символа.', + 'required' => 'Името се изисква.', + ) , + 'layer_url' => array( + 'atleast' => 'Изисква се ли KML адрес, или файл.', + 'both' => 'Не може да зададете KML файл и адрес едновременно', + 'url' => 'Моля въведете правилен адрес. Например: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/bg_BG/libraries.php b/application/i18n/bg_BG/libraries.php new file mode 100644 index 0000000000..f0c2238c39 --- /dev/null +++ b/application/i18n/bg_BG/libraries.php @@ -0,0 +1,26 @@ + 'Не успяхме да се свържем с Akismet сървъра', + 'akismet_cannot_retrieve' => 'Отговорът от Akismet не беше получен', + 'api_library_not_found' => 'API библиотеката: %s, за класа %s не беше открита. Моля проверете API таблицата с пътища.', + 'askimet_invalid_apikey' => 'Вашият Akismet API ключ не е валиден', + 'clickatell_fopen_error' => 'Грешка докато изпълнявахме изпращане с fopen!
Моля проверете дали PHP има поддръжка за OpenSSL и проверете дали версията на PHP е над 5.2', + 'clickatell_message_too_long' => 'Съобщението в unicode е прекалено дълго! (дължина=', + 'clickatell_no_destination_address' => 'Моля задайте краен адрес (За)!', + 'clickatell_no_sender_address' => 'Моля задайте изходящ адрес (От)!', + 'clickatell_unicode_message_too_long' => 'Съобщението в unicode е прекалено дълго! (дължина=', + 'clickatell_unsupported_method' => 'Неподдържан формат за изпращане!', + 'invalid_api_library' => 'API библиотека %s не е валидна. Всички API библиотеки трябва да са подкласове на %s', + 'upgrade_directory_not_deleted' => 'Папката %s не може да бъде изтрита', + 'upgrade_extracting_error' => 'Грешка при извеждане: %s', + 'upgrade_failed' => 'Грешка при свалянето на последната версия. HTTP код', + 'upgrade_file_not_copied' => 'Файла %s не може да се копира', + 'upgrade_file_not_deleted' => 'Файла %s не може да се изтрие', + 'upgrade_title' => 'Ushahidi скрипт за подновяване', + 'upgrade_zip_error' => 'Сваления zip на Ushahidi %s, не може да бъде записан', +); diff --git a/application/i18n/bg_BG/maintenance.php b/application/i18n/bg_BG/maintenance.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/bg_BG/maintenance.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Моля въведете правилен код за сигурност', + 'required' => 'Моля въведете код за сигурност', + ) , + 'email' => array( + 'email' => 'Email адресът не изглежда да е правилен?', + 'length' => 'Email трябва да съдържа между 4 и 64 символа.', + 'required' => 'Email полето е задължително, ако сте отбелязали отметката.', + ) , + 'message' => array( + 'required' => 'Коментарът е задължителен.', + ) , + 'name' => array( + 'length' => 'Името трябва да е с поне 3 символа.', + 'required' => 'Името е задължително.', + ) , + 'phone' => array( + 'length' => 'Телефонният номер не е валиден.', + ) , +); diff --git a/application/i18n/bg_BG/mhi.php b/application/i18n/bg_BG/mhi.php new file mode 100644 index 0000000000..888cda67b7 --- /dev/null +++ b/application/i18n/bg_BG/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Моля въведете правилен код за сигурност', + 'required' => 'Моля въведете код за сигурност', + ) , + 'contact_email' => array( + 'email' => 'Email адресът не изглежда да е правилен?', + 'required' => 'Моля задайте правилен email адрес.', + ) , + 'contact_message' => array( + 'required' => 'Полето за съобщения трябва да съдържа нещо.', + ) , + 'contact_subject' => array( + 'length' => 'Заглавието трябва да е поне 3 символа.', + 'required' => 'Заглавието е задължително.', + ) , +); diff --git a/application/i18n/bg_BG/notifications.php b/application/i18n/bg_BG/notifications.php new file mode 100644 index 0000000000..eb4793333b --- /dev/null +++ b/application/i18n/bg_BG/notifications.php @@ -0,0 +1,26 @@ + 'Това съобщение е изпратено от вашия сайт', + 'admin_login_url' => 'Вход за администратори', + 'admin_new_comment' => array( + 'message' => 'Нов коментар е пуснат в отговор на:', + 'subject' => 'Нов коментар', + ) , + 'admin_new_email' => array( + 'message' => 'Ново email съобщение е пуснато на сайта.', + 'subject' => 'Ново email съобщение', + ) , + 'admin_new_report' => array( + 'message' => 'Нов сигнал е пуснат на сайта.', + 'subject' => 'Нов сигнал', + ) , + 'admin_new_sms' => array( + 'message' => 'Нов SMS е пуснат на сайта.', + 'subject' => 'Нов SMS', + ) , +); diff --git a/application/i18n/bg_BG/page.php b/application/i18n/bg_BG/page.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/bg_BG/page.php @@ -0,0 +1,7 @@ + 'грешка!', + 'data_include' => array( + 'between' => 'Моля изберете валиден запис за включване в свалянето', + 'numeric' => 'Моля изберете валиден запис за включване в свалянето', + ) , + 'data_point' => array( + 'between' => 'Моля изберете валиден тип сигнал за включване в свалянето', + 'numeric' => 'Моля изберете валиден тип сигнал за включване в свалянето', + 'required' => 'Моля изберете валиден тип сигнал за включване в свалянето', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Полето за "от дата" не изглежда да съдържа валидна стойност', + 'range' => 'Моля въведете валидно поле "от дата". То не може да е след днес.', + ) , + 'incident_active' => array( + 'between' => 'Моля въведете валидна стойност за "Одобри този сигнал"', + 'required' => 'Моля въведете валидна стойност за "Одобри този сигнал"', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Полето предобед/следобед не изглежда да съдържа правилна стойност', + ) , + 'incident_category' => array( + 'numeric' => 'Полето за категория не изглежда да съдържа правилна стойност', + 'required' => 'Полето за категория се изисква', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Полето за дата не изглежда да съдържа правилна стойност', + 'date_mmddyyyy' => 'Полето за дата не изглежда да съдържа правилна стойност', + 'required' => 'Полето за дата се изисква', + ) , + 'incident_description' => array( + 'required' => 'Полето за описание се изисква', + ) , + 'incident_hour' => array( + 'between' => 'Полето за час не изглежда да съдържа правилна стойност', + 'required' => 'Полето за час се изисква', + ) , + 'incident_information' => array( + 'alpha' => 'Въведете правилна стойност за Достоверност на Информацията', + 'length' => 'Въведете правилна стойност за Достоверност на Информацията', + ) , + 'incident_minute' => array( + 'between' => 'Полето за минути не изглежда да съдържа правилна стойност', + 'required' => 'Полето за минути се изисква', + ) , + 'incident_news' => array( + 'url' => 'Полето за източник на новини не изглежда да съдържа правилна стойност', + ) , + 'incident_photo' => array( + 'size' => 'Проверете дали снимката е под 2MB.', + 'type' => 'Полето за снимка не съдържа валидна снимка. Приемаме само форматите .JPG, .PNG и .GIF.', + 'valid' => 'Полето за снимка не съдържа валиден файл.', + ) , + 'incident_source' => array( + 'alpha' => 'Моля въведете валидна стройност за Благонадеждност на Източника', + 'length' => 'Моля въведете валидна стройност за Благонадеждност на Източника', + ) , + 'incident_title' => array( + 'length' => 'Полето за заглавие трябва да съдържа между 3 и 200 символа', + 'required' => 'Полето за заглавие се изисква', + ) , + 'incident_verified' => array( + 'between' => 'Моля въведете правилна стойност за Потвърди Този Сигнал', + 'required' => 'Моля въведете правилна стойност за Потвърди Този Сигнал', + ) , + 'incident_video' => array( + 'url' => 'Линка на видеото не изглежда да е валидна', + ) , + 'latitude' => array( + 'between' => 'Полето за географска дължина не изглежда да съдържа валидна стойност', + 'required' => 'Полето за географска дължина се изисква. Моля натиснете на картата, за да отбележите местоположението.', + ) , + 'locale' => array( + 'alpha_dash' => 'Полето за локализация не съдържа валидна стойност.', + 'exists' => 'Този сигнал вече има превод на този език', + 'length' => 'Полето за локализация не съдържа валидна стойност.', + 'locale' => 'Оригиналният сигнал и превода има еднакви езици', + 'required' => 'Полето за локализация се изисква', + ) , + 'location_name' => array( + 'length' => 'Полето за име на местоположението трябва да е между 3 и 200 символа.', + 'required' => 'Полето за име на местоположението се изисква.', + ) , + 'longitude' => array( + 'between' => 'Полето за географска ширина не изглежда да съдържа валидна стойност', + 'required' => 'Полето за географска ширина се изисква. Моля натиснете на картата, за да отбележите местоположението.', + ) , + 'person_email' => array( + 'email' => 'Полето за email не изглежда да съдържа правилен адрес', + 'length' => 'Полето за email трябва да е между 4 и 64 символа', + ) , + 'person_first' => array( + 'length' => 'Полето за първо име трябва да е между 3 и 100 символа', + ) , + 'person_last' => array( + 'length' => 'Полето за фамилно име трябва да е между 3 и 100 символа', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Полето за "до дата" не изглежда да съдържа валидна стойност', + 'range' => 'Моля въведете валидно поле "до дата". То не може да е след днес.', + 'range_greater' => 'Полето "до дата" не може да е преди стройността за "от дата".', + ) , +); diff --git a/application/i18n/bg_BG/reporters.php b/application/i18n/bg_BG/reporters.php new file mode 100644 index 0000000000..1d7c85f10c --- /dev/null +++ b/application/i18n/bg_BG/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Полето за географска дължина не изглежда да съдържа валидна стойност', + 'required' => 'Полето за географска дължина се изисква. Моля натиснете картата, за да отбележите местоположението.', + ) , + 'level_id' => array( + 'numeric' => 'Полето за ниво на сигнализиращия не изглежда да съдържа валидна стойност', + 'required' => 'Полето за ниво на сигнализиращия се изисква.', + ) , + 'location_name' => array( + 'length' => 'Полето за име на местоположението трябва да е между 3 и 200 символа', + 'required' => 'Полето за име на местоположението се изисква', + ) , + 'longitude' => array( + 'between' => 'Полето за географска широчина не изглежда да съдържа валидна стойност', + 'required' => 'Полето за географска широчина се изисква. Моля натиснете картата, за да отбележите местоположението.', + ) , + 'reporter_id' => array( + 'numeric' => 'Невалиден сигнализиращ', + 'required' => 'Невалиден сигнализиращ', + ) , +); diff --git a/application/i18n/bg_BG/reports.php b/application/i18n/bg_BG/reports.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/bg_BG/reports.php @@ -0,0 +1,7 @@ + array( + 'length' => 'Полето с описание трябва да е между 3 и 100 символа', + 'required' => 'Полето с описание се изисква.', + ) , + 'name' => array( + 'alpha_numeric' => 'Полето за името трябва да съдържа само букви и цифри.', + 'length' => 'Полето за името трябва да е между 2 и 30 символа.', + 'nomodify' => 'Ролята на Супер Администратор не може да бъде променяна.', + 'required' => 'Полето за името се изисква.', + ) , +); diff --git a/application/i18n/bg_BG/settings.php b/application/i18n/bg_BG/settings.php new file mode 100644 index 0000000000..1e180c6146 --- /dev/null +++ b/application/i18n/bg_BG/settings.php @@ -0,0 +1,183 @@ + array( + 'between' => 'Полето за позволение на коментарите не съдържа валидна стойност.', + 'required' => 'Полето за позволение на коментарите е задължително.', + ) , + 'allow_feed' => array( + 'between' => 'Полето за включване на абонамент не съдържа валидна стойност.', + 'required' => 'Полето за включване на абонамент е задължително.', + ) , + 'allow_reports' => array( + 'between' => 'Полето за позволение на сигнали не съдържа валидна стойност.', + 'required' => 'Полето за позволение на сигнали е задължително.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Полето за споделяне на статистика не съдържа валидна стойност.', + 'required' => 'Полето за споделяне на статистика е задължително.', + ) , + 'api' => array( + 'default_record_limit' => 'Брой на записите, които да се вземат при едно API запитване', + 'maximum_record_limit' => 'Максимален брой на записите, които да се вземат при едно API запитване', + 'maximum_requests_per_ip_address' => 'Максимален брой на API запитвания към един IP адрес', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Полето Akismet е задължително.', + 'length' => 'Полето Akismet не съдържа валидна стойност.', + ) , + 'cache_pages' => array( + 'between' => 'Полето за кеширане на страниците е задължително.', + 'required' => 'Полето за кеширане на страниците не съдържа валидна стойност.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Полето за продължителността на кеша не съдържа валидна стойност.', + 'required' => 'Полето за продължителността на кеша е задължително', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Изглежда сървъра ви не е конфигуриран да работи с изчистени адреси. ще трябва да промените настройките на сървъра си преди да включите изчистените адреси. Вижте как във форума', + 'clean_url_enabled' => 'Тази опция ще позволи Ushahidi да бъде достъпен през изчистени адреси. Това означава без "index.php" в адреса.', + 'enable_clean_url' => 'Включи изчистени адреси', + 'title' => 'Изчистени адреси', + ) , + 'clickatell_api' => array( + 'length' => 'Номера за API-то на Clickatell трябва да съдържа не повече от 20 символа.', + 'required' => 'Номера за API-то на Clickatell е задължителен.', + ) , + 'clickatell_password' => array( + 'length' => 'Полето с паролата на Clickatell трябва да е между 5 и 20 символа.', + 'required' => 'Полето с паролата на Clickatell е задължително.', + ) , + 'clickatell_username' => array( + 'length' => 'Полето с потребителското име на Clickatell трябва да е максимално 50 символа.', + 'required' => 'Полето с потребителското име на Clickatell е задължително.', + ) , + 'configure_map' => 'Настройки на картата', + 'default_location' => 'Местоположение по подразбиране', + 'default_map_all' => array( + 'alpha_numeric' => 'Полето за цвят не съдържа валидна стойност.', + 'length' => 'Полето за цвят трябва да е не повече от 6 символа.', + 'required' => 'Полето за цвят е задължително.', + ) , + 'default_map_view' => 'Изглед на картата по подразбиране', + 'default_zoom_level' => 'Ниво на увеличение по подразбиране', + 'download_city_list' => 'Вземи имената на градовете от картата', + 'email_host' => array( + 'length' => 'Порта на mail сървъра е твърде дълъг', + 'numeric' => 'Порта на mail сървъра трябва да съдържа само цифри', + ) , + 'email_password' => array( + 'length' => 'Полето за парола на мейла трябва да е между 5 и 50 символа.', + 'required' => 'Полето за парола на мейла е задължително.', + ) , + 'email_port' => array( + 'length' => 'Порта на mail сървъра е твърде дълъг', + 'numeric' => 'Порта на mail сървъра трябва да съдържа само цифри', + ) , + 'email_servertype' => array( + 'length' => 'Типа на mail сървъра е с грешна дължина.', + 'required' => 'Типа на mail сървъра е задължителен', + ) , + 'email_username' => array( + 'length' => 'Полето с потребителското име на mail сървъра трябва да е не повече от 50 символа.', + 'required' => 'Полето с потребителското име на mail сървъра е задължително.', + ) , + 'google_analytics' => array( + 'length' => 'Полето за Google Analytics трябва да съдържа валидно Web Property ID във формата UA-XXXXX-XX.', + ) , + 'items_per_page' => array( + 'between' => 'Полето за брой записи на страница (сайта) не съдържа валидна стойност.', + 'required' => 'Полето за брой записи на страница (сайта) е задължително.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Полето за брой записи на страница (администрация) не съдържа валидна стойност.', + 'required' => 'Полето за брой записи на страница (администрация) е задължително.', + ) , + 'map' => array( + 'default_location' => 'Настройването на доставчика на карта е лесен процес. Изберете доставчик, получете API ключ от техния сайт и го въведете тук', + 'zoom' => 'Ниво на увеличение', + ) , + 'map_provider' => array( + 'choose' => 'Изберете доставчик за карта', + 'enter_api' => 'Въведете нов API ключ', + 'get_api' => 'Получете API ключ', + 'info' => 'Настройването на доставчика на карта е лесен процес. Изберете доставчик, получете API ключ от техния сайт и го въведете тук', + 'name' => 'Доставчик на карта', + ) , + 'map_settings' => 'Настройки на картата', + 'multiple_countries' => 'Тази инсталация на Ushahidi важи ли за няколко държави', + 'select_default_location' => 'Моля изберете държава по подразбиране', + 'set_location' => 'Натиснете и преместете картата, за да изберете точното си местоположение', + 'site' => array( + 'allow_clustering' => 'Групирай сигнали на картата', + 'allow_comments' => 'Позволете на потребителите да коментират сигналите', + 'allow_feed' => 'Включете RSS абонамент в сайта', + 'allow_reports' => 'Позволете на потребители да пускат сигнали', + 'api_akismet' => 'Ключ за Akismet', + 'cache_pages' => 'Кеширай страниците', + 'cache_pages_lifetime' => 'Продължителност на кешираните страници', + 'copyright_statement' => 'Съобщение за правата върху сайта', + 'default_category_colors' => 'Цвят по подразбиране за всички категории', + 'display_contact_page' => 'Покажи страницата за контакт', + 'display_howtohelp_page' => 'Покажи страницата "Как да помогнем"', + 'email_alerts' => 'Email за сигнали', + 'email_notice' => 'За да получавате сигнали по мейл, моля настройте email акаунта си.', + 'email_site' => 'Email адрес на сайта', + 'google_analytics_example' => 'Web Property ID - формат: UA-XXXXX-XX', + 'items_per_page' => 'Записи на страница - сайт', + 'items_per_page_admin' => 'Записи на страница - администрация', + 'kismet_notice' => 'Предотвратете спам с коментари с Akismet на Automattic.
Може да получите безплатен API ключ като се регистрирате WordPress.com потребителски акаунт', + 'laconica_configuration' => 'Laconica достъп', + 'laconica_site' => 'Laconica сайт ', + 'language' => 'Език на сайта', + 'message' => 'Съобщение на сайта', + 'name' => 'Име на сайта', + 'share_site_stats' => 'Позволи статистиката (държи се на сървъра на Ushahidi)', + 'tagline' => 'Бележка на сайта', + 'title' => 'Настройки на сайта', + 'twitter_configuration' => 'Twitter думи за търсене', + 'twitter_hashtags' => 'Тагове разделени със запетайка ', + ) , + 'site_email' => array( + 'email' => 'Email адресът не изглежда да е правилен', + 'length' => 'Полето за email адрес трябва да съдържа между 4 и 100 символа', + ) , + 'site_name' => array( + 'length' => 'Полето за име на сайта трябва да е между 4 и 50 символа.', + 'required' => 'Полето за име на сайта е задължително.', + ) , + 'site_tagline' => array( + 'length' => 'Полето за бележката на сайта трябва да съдържа между 3 и 100 символа.', + 'required' => 'Полето за бележката на сайта е задължителна.', + ) , + 'sms' => array( + 'clickatell_api' => 'Вашият Clickatell API номер', + 'clickatell_check_balance' => 'Проверете вашия Clickatell Credit баланс', + 'clickatell_load_balance' => 'Зареди баланса', + 'clickatell_password' => 'Вашата Clickatell парола', + 'clickatell_text_1' => 'Запишете се за услугите на Clickatell като натиснете тук', + 'clickatell_text_2' => 'Въведете вашата информация за достъп до Clickatell тук', + 'clickatell_username' => 'Вашето Clickatell потребителско име', + 'flsms_text_1' => 'Въведете телефонен номер или номера, които да се свържат към Frontline SMS в полето/полетата тук', + 'flsms_text_2' => 'Въведете номер(а) без + или тирета в полетата', + 'option_1' => 'Option 1: Използвайте Frontline SMS', + 'option_2' => 'Option 2: Използвайте Global SMS Gateway', + 'title' => 'Настройки на SMS', + ) , + 'sms_no1' => array( + 'length' => 'Телефон 1 не изглежда да е валиден', + 'numeric' => 'Телефон 1 трябва да съдържа само цифри', + ) , + 'sms_no2' => array( + 'length' => 'Телефон 2 е твърде дълъг', + 'numeric' => 'Телефон 2 трябва да съдържа само цифри', + ) , + 'sms_no3' => array( + 'length' => 'Телефон 3 е твърде дълъг', + 'numeric' => 'Телефон 3 трябва да съдържа само цифри', + ) , +); diff --git a/application/i18n/bg_BG/sharing.php b/application/i18n/bg_BG/sharing.php new file mode 100644 index 0000000000..9e72c7e017 --- /dev/null +++ b/application/i18n/bg_BG/sharing.php @@ -0,0 +1,25 @@ + 'Входяща дата', + 'date_added' => 'Дата на добавяне', + 'last_access' => 'Последен достъп', + 'sharing_color' => array( + 'length' => 'Цветът трябва да е дълъг поне 6 знака.', + 'required' => 'Полето за цвят се изисква.', + ) , + 'sharing_name' => array( + 'length' => 'Името за споделяне не изглежда валидно', + 'required' => 'Името за споделяне се изисква.', + ) , + 'sharing_url' => array( + 'exists' => 'Адресът на този сайт вече съществува', + 'length' => 'Адресът на този сайт не изглежда валиден', + 'required' => 'Адресът на сайт се изисква.', + 'url' => 'Адресът на сайт не съдържа валиден URL.', + ) , +); diff --git a/application/i18n/bg_BG/stats.php b/application/i18n/bg_BG/stats.php new file mode 100644 index 0000000000..6af5ae40d8 --- /dev/null +++ b/application/i18n/bg_BG/stats.php @@ -0,0 +1,42 @@ + 'Одобрени', + 'categories' => 'Категории', + 'category_impact' => 'Значение на категорията', + 'category_impact_description' => 'Тази графика показва промяната на броя сигнали в различните категории през времето. Минете отляво надясно за да видите сравнителен преглед на различните категории. Когато минете с мишката отгоре ще видите повече подробности', + 'choose_date_range' => 'Изберете период', + 'countries' => 'Държави', + 'country' => 'Държава', + 'country_breakdown' => 'Разбивка по държави', + 'description' => 'Здравейте, това е секцията за статистика. Скоро ще има обща информация тук. За сега разгледайте като изберете категории горе вляво', + 'error' => 'Грешка', + 'glossary' => 'Речник', + 'hit_summary' => 'Обобщение на посещенията', + 'legend' => 'Легенда', + 'pageviews' => 'Прегледи', + 'pageviews_description' => 'Общият брой страници прегледани от посетителите ви', + 'reports' => 'Сигнали', + 'reports_categories' => 'Категории на сигнали', + 'reports_statistics' => 'Статистика на сигнали', + 'reports_status' => 'Статус на сигнали', + 'report_punchcard' => 'Преглед за стигнал', + 'report_stats' => 'Статистика за сигнал', + 'stats_not_setup' => 'Статистиката не е настроена', + 'time_range_1' => '1 месец', + 'time_range_2' => '3 месеца', + 'time_range_3' => '6 месеца', + 'time_range_all' => 'Всички', + 'unapproved' => 'Неодобрени', + 'unique_visitors' => 'Уникални посетители', + 'unique_visitors_description' => 'Броя хора, които са посетили сайта. Уникалните посетители се засичат с cookie-а. Когато посетителя не е включил cookie-тата, разпознаването става по IP адрес, резолюция, операционна система и прочие.', + 'unverified' => 'Непотвърден', + 'verified' => 'Потвърден', + 'visitor_summary' => 'Обобщение на посетителите', + 'visits' => 'Посещения', + 'visits_description' => 'Посещението е запис на един потребител, който се влиза в сайта поне 30 минути след последното си влизане.', +); diff --git a/application/i18n/bg_BG/tooltips.php b/application/i18n/bg_BG/tooltips.php new file mode 100644 index 0000000000..3984d48e36 --- /dev/null +++ b/application/i18n/bg_BG/tooltips.php @@ -0,0 +1,49 @@ + 'Вашият email адрес', + 'profile_name' => 'Вашето пълно име', + 'profile_notify' => 'Избирайки ДА ще ви позволи да получавате сигнали по email или коментари оставени на сайта', + 'profile_password' => 'Вашата парола. Оставете я празна, ако искате да запазите сегашната си парола', + 'profile_username' => 'Потребителското име не може да се променя', + 'settings_alert_email' => 'Това е email адресът, на който ще се изпращат съобщенията.', + 'settings_allow_clustering' => 'Това позволява групирането на подобни сигнали в една точка на картата', + 'settings_allow_comments' => 'Позволете на потребители да коментират на сигнали в сайта.', + 'settings_allow_feed' => 'Това позволява на RSS абонаментите да се показват на заглавната страница.', + 'settings_allow_reports' => 'Позволете на потребителите да подават информация чрез формуляра.', + 'settings_api_default_record_limit' => 'Брой на записите по подразбиране, които ще се изваждат при запитване към API', + 'settings_api_max_record_limit' => 'Максимален брой на записите, които ще се изваждат при запитване към API', + 'settings_api_max_requests_per_ip' => 'Максимален брой на запитвания към API на IP адрес', + 'settings_cache_pages' => 'Включете или изключете кеширането на страниците. Това прави показването по-бързи като намалява времето за реакция на сървъра. Препоръчваме го при сайтове с голям трафик. **Запомнете, че сигналите ще се публикуват на заглавната страница на базата на настройките по-долу (срок на изтичане на кеша).', + 'settings_cache_pages_lifetime' => 'Задайте срок на изтичане на кеша', + 'settings_configure_map' => 'Настройте картата да покрива определена територия', + 'settings_default_category_colors' => 'Задайте един цвят за всички категории на сайта', + 'settings_default_location' => 'Това е държавата, за която сайта е направен', + 'settings_display_contact' => 'Покажете или скрийте таба за контакти на началната страница.', + 'settings_display_howtohelp' => 'Покажете или скрийте таба за помощ на началната страница.', + 'settings_display_items_per_page' => 'Това е броя на сигналите показани на страница на заглавната страница.', + 'settings_display_items_per_page_admin' => 'Това е броя на сигналите показани на страница в администраторския панел.', + 'settings_flsms_download' => 'Това е хъба за входящи съобщения', + 'settings_flsms_synchronize' => 'Това синхронизира съобщенията с хъба и платформата', + 'settings_flsms_text_1' => 'Телефонни номера, от които са получени съобщения', + 'settings_google_analytics' => 'Следи посетителите на сайта. Получете подробна статистика', + 'settings_locale' => 'Настройва езика, на който ще се вижда сайта.', + 'settings_map_provider' => 'Настройва коя карта ще се използва на сайта.', + 'settings_server_host' => 'Това посочва къде се намира email адреса', + 'settings_server_password' => 'Това е паролата за email-а, който ще получава съобщенията', + 'settings_server_port' => 'Тива се изисква, за да се получават входящи съобщения от email адреса', + 'settings_server_ssl_support' => 'Това повишава сигурността на връзката', + 'settings_server_type' => 'Това се изисква, за да се получават съобщения от сървъра', + 'settings_server_username' => 'Това е email адресът, който ще получава сигнали', + 'settings_share_site_stats' => 'Статистиката за посещенията се изпраща на сървър контролиран от Ushahidi. Като включите тази опция, вие получавате достъп до тази информация от административният си панел. Като я изключите, вие ще спрете да събирате и имате достъп до статистика за периода.', + 'settings_site_copyright_statement' => 'Винаги е добра идея да запазите правата над труда си. За помощ и информация за подходящите лицензи, моля посетете http://creativecommons.org/choose/.', + 'settings_site_email' => 'Този email адрес ще получава съобщения от формуляра за контакти.', + 'settings_site_message' => 'Този текст ще се появи над картата на началната страница. Полезно е да дава важна информация на посетителите на сайта. За да махнете кутията, просто изтрийте съобщението тук.', + 'settings_site_name' => 'Това е името на сайта, което ще се появи най-отгоре.', + 'settings_site_tagline' => 'В няколко думи за какво се отнася сайта.', + 'settings_twitter_configuration' => 'Задайте Twitter таг, който да се използва при споделяне', +); diff --git a/application/i18n/bg_BG/ui_admin.php b/application/i18n/bg_BG/ui_admin.php new file mode 100644 index 0000000000..4851c0ab0e --- /dev/null +++ b/application/i18n/bg_BG/ui_admin.php @@ -0,0 +1,193 @@ + 'Достъпът е отказан. Или нямате права, или заявката ви е била отказана', + 'access_denied_others' => 'Достъпът е отказан. Заявката е разпозната, но отказана поради различни лимити като време. Моля опитайте по-късно.', + 'actions' => 'Действия', + 'added' => 'добавен', + 'added_edited' => 'добавен/променен', + 'addons' => 'Добавки', + 'admin_role' => 'Администрация', + 'am' => 'сутрин', + 'anonymous' => 'Анонимен', + 'api_banned' => 'API Забранено', + 'api_logs' => 'API История', + 'api_settings' => 'API Настройки', + 'api_unban' => 'Позволи', + 'api_unban_all' => 'Позволи Всички', + 'approved' => 'одобрен', + 'approve_auto' => 'Автоматично одобряване', + 'approve_manual' => 'Одобри на ръка', + 'archived' => 'Архивирано', + 'author' => 'Автор', + 'author_email' => 'Email на автора', + 'back' => 'Зазад', + 'banip_action' => 'Забрани IP', + 'cancel' => 'Отказ', + 'categories' => 'Категории', + 'chart_display_error' => 'Грешка при показването на графика', + 'check_message_valid' => 'Моля проверете дали съобщението е валидно', + 'check_number' => 'Моля проверете дали цифрата е валидна', + 'check_sms_settings' => 'Моля проверете настройките за SMS!', + 'cities_loaded' => 'Градовете са заредени', + 'code' => 'код', + 'code_out_of_sync' => 'Версията на кода не е синхронизирана.', + 'comments' => 'коментари', + 'confirmation_code' => 'Кода за активиране на уведомленията е: ', + 'confirm_msg' => 'Вашият потребител е бил', + 'country_not_found' => 'Държавата не е намерена', + 'created_edited' => 'създаден/променен', + 'create_report' => 'Създай сигнал', + 'critical_upgrade' => 'Критично подновяване', + 'daily' => 'Дневно', + 'dashboard' => 'Плот', + 'database' => 'база данни', + 'date_time' => 'Дата и час', + 'db_out_of_sync' => 'Версията на базата данни не е в синхрон.', + 'deleted' => 'изтрит', + 'delete_action' => 'Изтрий', + 'demo' => 'Проба', + 'description' => 'Описание', + 'download_reports' => 'Свали сигналите', + 'edited_by' => 'Променено от', + 'edit_action' => 'Промени', + 'edit_log' => 'Промени историята', + 'error_geocoding' => 'Грешка в географските координати! HTTP грешка', + 'error_imap' => 'Библиотеката IMAP PHP не е инсталирана', + 'error_msg' => 'Грешка', + 'error_post_incident' => 'Грешка, не успяхме да съобщим за инцидента', + 'every_six_hours' => 'На всеки 6 часа', + 'every_twelve_hours' => 'На всеки 12 часа', + 'faqs' => 'Въпроси и отговори', + 'feed' => 'абонамент', + 'feedback' => 'Обратна връзка', + 'feeds' => 'абонаменти', + 'field_default' => 'Стройност по подразбиране', + 'field_height' => 'Височина (в редове)', + 'field_maxlength' => 'Максимална дължина в символи', + 'field_name' => 'Име на поле', + 'file_not_found_upload' => 'Не успяхме да намерим качения файл', + 'file_open_error' => 'Не успяхме да отворим файла за четене', + 'form_not_exists' => 'Този формуляр не съществува!', + 'forum' => 'Форум', + 'free_text_field' => 'Текстово поле (свободен текст)', + 'from' => 'От', + 'from_date' => 'От', + 'geonames_timeout' => 'Грешка в зареждането на географските имена', + 'get_help' => 'Намери помощ', + 'header_actions' => 'Действия', + 'header_add_edit' => 'Добави/промени', + 'header_manage_users' => 'Настройки на потребителите', + 'header_role' => 'Роля', + 'header_user' => 'Потребител', + 'help' => 'помощ', + 'hourly' => 'Всеки час', + 'incident_feed' => 'Абонамент за инциденти на', + 'instance' => 'Случай', + 'instances' => 'Случаи', + 'instance_details' => 'Подробности за случай', + 'invalid_parameter' => 'Невалиден параметър', + 'ip_address' => 'IP адрес', + 'is_date' => 'Това поле за дата ли е?', + 'label_email' => 'Email адрес:', + 'label_full_name' => 'Пълно име:', + 'label_password' => 'Парола:', + 'label_role' => 'Роля:', + 'label_username' => 'Потребителско име:', + 'layers' => 'Слоеве', + 'login_role' => 'Модератор', + 'logout' => 'Излез', + 'logs' => 'История', + 'manage' => 'Промени', + 'manage_roles' => 'Промени ролите и правата', + 'manage_users' => 'Виж потребителите', + 'manage_users_edit' => 'Добави/промени потребителите', + 'marked_as_not_spam' => 'маркирано като не спам', + 'marked_as_spam' => 'маркирано като спам', + 'match_no_documents' => 'не отговаря на никакви документи', + 'message' => 'Съобщение', + 'messages' => 'Съобщения', + 'messages_laconica' => 'Laconica съобщения', + 'messages_twitter' => 'Twitter съобщения', + 'message_sent' => 'Това съобщение е изпратено!', + 'minutes' => 'Минути', + 'missing_parameter' => 'Липсва параметър', + 'moderator' => 'Модератор', + 'modified' => 'Променен', + 'move_down_action' => 'премести надолу', + 'move_up_action' => 'премести нагоре', + 'multiple_hosted_instances' => 'Множество инсталации', + 'my_profile' => 'Моят профил', + 'new_password' => 'Нова парола', + 'no' => 'Не', + 'notification' => 'Известия', + 'not_case_sensitive' => 'Без значение за главни или малки букви.', + 'not_found' => 'Не е намерено', + 'no_data' => 'Няма данни. Няма резултати за показване.', + 'no_error' => 'Няма грешка', + 'no_result_display_msg' => 'Няма резултати за показване!', + 'of' => 'на', + 'page' => 'страница', + 'pages' => 'страници', + 'page_not_found' => 'Страницата не е намерена', + 'parameters_used' => 'Използвани параметри', + 'password' => 'Парола', + 'password_reset' => 'Възстановяване на парола', + 'password_reset_message_line_1' => 'Уважаеми', + 'password_reset_message_line_2' => 'Получихме запитване за възстановяване на парола от', + 'password_reset_message_line_3' => 'За да промените паролата си, моля отворете този адрес или го копирайте в браузъра си.', + 'password_reset_message_line_4' => 'Както пожелахте, паролата ви беше сменена. Новите данни са', + 'password_reset_subject' => 'Ushahidi смяна на парола', + 'phone' => 'Телефон', + 'pm' => 'следобед', + 'post_method_not_used' => 'Данните не са пратени с POST метод', + 'read' => 'чети', + 'relevance' => 'Свързано', + 'reporters' => 'Сигнализиращи', + 'reporter_levels' => 'Нива на сигнализиращи', + 'reports' => 'Сигнали', + 'required' => 'Изисква се', + 'reset' => 'Възстанови', + 'results' => 'Резултати', + 'save_settings' => 'Запази настройките', + 'search' => 'Търси', + 'searching_for' => 'търси се', + 'select_field_type' => '--- Изберете тип на полето ---', + 'select_item' => 'Изберете обект', + 'sender' => 'Изпращач', + 'sent_from_website' => 'Това съобщение е пратено от сайта на ', + 'settings' => 'Настройки', + 'showing_page' => 'Показва се страница', + 'showing_results' => 'Показват се резултати', + 'statistics' => 'Статистика', + 'stats' => 'Статистика', + 'stats_collection_error' => 'Събирането на статистика се провали! Или сървъра за статистика не работи, или има проблем в инсталацията на Ushahidi. Опитайте пак, за да проверите дали сървъра работи. За да възстановите ръчно статистиката, променете stat_id (на null) и stat_key (на 0) в таблицата за настройки в базата данни. ВНИМАНИЕ: Ще загубите достъп до статистиката си, ако направите това !', + 'stats_collection_error_short' => 'Събирането на статистика се провали!', + 'superadmin_role' => 'Супер администратор', + 'task_performed' => 'Задачата е изпълнена', + 'text_field' => 'Текстово поле', + 'theme_name' => 'Име', + 'title' => 'Настройки на потребителите', + 'to' => 'за', + 'total_records' => 'Всички записи', + 'to_date' => 'до', + 'translate_reports' => 'Преведи сигналите', + 'unapproved' => 'неодобрено', + 'unknown' => 'Непознат', + 'unread' => 'непрочетен', + 'update_link' => ' Натиснете тук, за да обновите сега', + 'upgrade_ushahidi' => 'Обновете Ushahidi', + 'upgrade_ushahidi_status' => 'Статус на Ushahidi обновяване', + 'upload_reports' => 'Качи сигнали', + 'users' => 'Потребители', + 'version' => 'Версия', + 'version_available' => ' в на разположение за подновяване.', + 'view_site' => 'Виж сайта', + 'welcome' => 'Добре дошли, ', + 'yes' => 'Да', + 'your_search_for' => 'Вашето търсене за', +); diff --git a/application/i18n/bg_BG/ui_main.php b/application/i18n/bg_BG/ui_main.php new file mode 100644 index 0000000000..b019f089de --- /dev/null +++ b/application/i18n/bg_BG/ui_main.php @@ -0,0 +1,471 @@ + 'За ', + 'access' => 'Достъп', + 'access_limits' => 'Ограничения на Достъпа', + 'account_name' => 'Име на акаунта', + 'actions' => 'Действия', + 'action_confirm' => 'Това действие не може да бъде върнато. Сигурни ли сте, че искате да продължите?', + 'activate' => 'Активирай', + 'active' => 'Активно', + 'add' => 'Добави', + 'added_by' => 'Добавено от', + 'additional_reports' => 'Допълнителни Справки', + 'add_edit' => 'Добави/Промени', + 'add_field' => 'Добави Поле', + 'add_language' => 'Добави Език', + 'add_new' => 'Добави Ново', + 'add_new_category' => 'Добави Нова Категория', + 'add_translation' => 'Добави Превод', + 'admin' => 'Администрация', + 'alerts' => 'Абонамент за сигнали', + 'alerts_alert_me' => 'Прави ми сигнал, ако се съобщи за инцидент в или около:', + 'alerts_btn_send' => 'Запази сигналът ми', + 'alerts_email' => 'Email адрес:', + 'alerts_enter_email' => 'въведете email адрес', + 'alerts_enter_mobile' => 'въведете мобилен номер с код за страната', + 'alerts_get' => 'Абонамент за сигнали', + 'alerts_mobile_phone' => 'Мобилен телефон:', + 'alerts_place_spot' => 'Или поставете точка на картата долу и ще получавате сигнали в радиус от 20 километра.', + 'alerts_rss' => 'RSS абонамент (копирайте адреса долу)', + 'alerts_select_city' => 'Изберете град', + 'alerts_step1_select_city' => 'Стъпка 1: Изберете вашият град или място:', + 'alerts_step2_send_alerts' => 'Стъпка 2: Изпрати сигналите на:', + 'alerts_step3_select_catgories' => 'Стъпка 3 (по избор): Избери категории', + 'alert_confirm_previous' => 'Потвърди предишна заявка за сигнали', + 'alert_saved' => 'Вашият сигнал е запазен!', + 'all' => 'Всички', + 'allowed' => 'Разрешен', + 'all_categories' => 'Всички категории', + 'all_time' => 'Всички', + 'and' => 'и', + 'approve' => 'Одобри', + 'approved' => 'Одобрени', + 'approved_reports' => 'Одобрени инциденти', + 'approve_this_report' => 'Одобри този инцидент', + 'approximate' => 'Приблизително', + 'archive' => 'Архив', + 'archived' => 'Архивирано', + 'at' => 'на', + 'author' => 'Автор', + 'awaiting_approval' => 'Изчаква одобрение', + 'awaiting_verification' => 'Очаква потвърждение', + 'blog' => 'Блог', + 'cancel' => 'Отказ', + 'categories' => 'Категории', + 'category' => 'Категория', + 'category_filter' => 'Филтър на Категории', + 'category_has_been' => 'Категорията беше ', + 'category_name' => 'Име на Категория', + 'choose' => 'Изберете ', + 'choose_data_points' => 'Изберете точки от данни за сваляне', + 'choose_field_type' => 'Изберете тип на поле', + 'cleanurl' => 'Чисти адреси', + 'clear' => 'Изчисти', + 'close' => 'Затвори', + 'clusters' => 'групи', + 'color' => 'Цвят', + 'comment' => 'Коментар', + 'comments' => 'Коментари', + 'comment_details' => 'Подробности за коментар', + 'configuration_saved' => 'Настройките ви са запазени!', + 'configure' => 'Настрой', + 'contact' => 'Свържете се с нас', + 'contact_code' => 'Код за потвърждение', + 'contact_email' => 'Вашия имейл адрес', + 'contact_message' => 'Съдържание', + 'contact_name' => 'Вашето име', + 'contact_phone' => 'Вашия мобилен номер', + 'contact_send' => 'Изпрати съобщението', + 'contact_subject' => 'Относно', + 'copyright' => 'Авторско право © 2010 Ushahidi.com. Всички права са запазени.', + 'create' => 'Създай', + 'create_edit' => 'Създай/Промени', + 'create_new' => 'Създай нов', + 'create_report' => 'Създай сигнал', + 'credibility' => 'Достоверност', + 'data' => 'Информация', + 'date' => 'Дата', + 'date_format' => '(dd.mm.yyyy)', + 'date_time' => 'Дата и Време', + 'day' => 'ден', + 'deactivate' => 'Деактивирай', + 'default_location_name' => 'Sofia, Bulgaria', + 'delete' => 'Изтрий', + 'deleted' => 'Изтрит', + 'deletes' => 'Изтрива', + 'delete_disabled' => 'Изтрий Изключените', + 'delete_report' => 'Изтрий този сигнал', + 'delete_spam' => 'Изтрий спама', + 'demo' => 'Демо', + 'description' => 'Описание', + 'detailed_location_example' => 'Пример: бул. Патриарх Евтимий 20, София', + 'details' => 'Подробности', + 'direct_report' => 'Директен сигнал', + 'disabled' => 'Изключен', + 'disapprove' => 'Махни одобрение', + 'download_reports' => 'Свали сигнали', + 'edit' => 'Промени', + 'edit_form_fields' => 'Промени полетата на формуляра', + 'edit_report' => 'Промени сигнал', + 'email_address' => 'Email Адрес', + 'email_configuration' => 'Настройки на Mail Сървър', + 'email_server_host' => 'Адрес на Mail Сървър', + 'email_server_password' => 'Парола на Mail Сървър', + 'email_server_port' => 'Порт на Mail Сървър', + 'email_server_ssl_support' => 'SSL Поддръжка на Mail Сървър', + 'email_server_type' => 'Тъп на Mail Сървър', + 'email_server_username' => 'Потребителско име на Mail Сървър', + 'email_settings_comment_0' => ', за да се свържат вашите настройки към email адресът', + 'email_settings_comment_00' => 'За да получавате инциденти по email, моля въведете email адресът си по-долу. Имайте в предвид, че всички мейли ще се получават на', + 'email_settings_comment_1' => 'Някои сървъри изискват цялостен email адрес', + 'email_settings_comment_2' => 'Email парола', + 'email_settings_comment_3' => 'Стандартни портове: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Примери: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Примери: pop3, imap', + 'email_settings_comment_6' => 'Включи или изключи SSL връзка', + 'end_point' => 'на', + 'error' => 'Грешка!', + 'example' => 'Пример', + 'example_country' => 'България', + 'feed' => 'Абонамент', + 'feedback' => 'Дайте обратна връзка', + 'feeds' => 'Абонаменти', + 'feed_has_been' => 'Този абонамент е', + 'feed_items' => 'Елементи на абонамента', + 'feed_name' => 'Име на абонамента', + 'feed_url' => 'Адрес на абонамента', + 'field_unused' => 'Неизползвани полета', + 'file' => 'Файл', + 'filters' => 'Филтри', + 'filter_reports_contain' => 'Филтрирай сигнали съдържащи', + 'find' => 'Намери', + 'find_location' => 'Намери Място', + 'first_name' => 'Първо Име', + 'force_run_scheduler' => 'Пусни на ръка периодичния изпълнител', + 'forgot_password' => 'Забравихте си паролата?', + 'form' => 'Формуляр', + 'forms' => 'Формуляри', + 'form_description' => 'Описание на формуляр', + 'form_edit' => 'Промени този формуляр', + 'form_has_been' => 'Формулярът беше', + 'form_title' => 'Заглавие на формуляр', + 'from' => 'От', + 'full_name' => 'Пълно име', + 'geolocation_available' => 'Има геолокация', + 'hashtag' => 'Уникален номер', + 'has_been' => 'Беше', + 'help' => 'Как да помогнем', + 'hide' => 'Скрий', + 'hide_this_message' => 'скрий това съобщение', + 'home' => 'Начало', + 'how_to_report' => 'Как да съобщим за престъпление', + 'id' => 'Номер', + 'image' => 'Снимка', + 'images' => 'Снимки', + 'image_icon' => 'Снимка/Иконка', + 'inactive' => 'Неактивен', + 'inbox' => 'Кутия', + 'incident' => 'Инцидент', + 'incidents_nearby' => 'Инциденти наблизо', + 'incident_location' => 'Местоположение на инцидента', + 'include' => 'Включи', + 'include_categories' => 'Включи категории', + 'include_description' => 'Включи описание', + 'include_detail' => 'Включи колкото се може повече описания', + 'include_latitude' => 'Включи географска широчина', + 'include_location_information' => 'Включи информация за географска широчина', + 'include_longitude' => 'Включи географска дължина', + 'incoming_media' => 'Включи мултимедия', + 'information_evaluation' => 'Информация за надморското ниво', + 'input_location' => 'Въведете точното си местоположение', + 'in_response_to' => 'В отговор на', + 'ip_address' => 'IP адрес', + 'item' => 'запис', + 'items' => 'записи', + 'item_details' => 'Подробности за запис', + 'item_title' => 'Име на запис', + 'key' => 'Ключ', + 'kml_kmz_file' => 'KMZ/KML файл', + 'kml_kmz_upload' => 'Качи KMZ/KML файл', + 'kml_url' => 'KML адрес', + 'language' => 'Език', + 'last' => 'Последен', + 'last_month' => 'Последен месец', + 'last_name' => 'Последно име', + 'last_year' => 'Последна година', + 'latitude' => 'Географска широчина', + 'layers' => 'Пластове', + 'layers_filter' => 'Други пластове', + 'layer_has_been' => 'Пластът беше', + 'layer_name' => 'Име на пласт', + 'layer_url' => 'Адрес на пласт', + 'leave_a_comment' => 'Остави коментар', + 'level' => 'Ниво', + 'level_has_been' => 'Това ниво беше', + 'level_name' => 'Име на ниво', + 'limited' => 'Ограничен', + 'link' => 'Връзка', + 'location' => 'Местоположение', + 'locations' => 'Местоположения', + 'location_example' => 'Градове, Области и/или Държави', + 'login' => 'Влез', + 'longitude' => 'Географска дължина', + 'map' => 'Карта', + 'mark_read' => 'Маркирай като прочетено', + 'mark_unread' => 'Маркирай като непрочетено', + 'media' => 'Милтимедия', + 'media_filter' => 'Филтър за милтимедия', + 'message' => 'Съобщение', + 'messages' => 'Съобщения', + 'message_details' => 'Подробности за съобщение', + 'mobile' => 'Мобилен', + 'modify' => 'Промени', + 'modify_date' => 'Промени дата', + 'month' => 'месец', + 'more' => 'Още', + 'multi_country_instance' => 'Тази инсталация на Ushahidi важи ли за повече държави?', + 'name' => 'Име', + 'nearby_report' => 'Инциденти наблизо', + 'new' => 'Нов', + 'news' => 'Новини', + 'news_feeds' => 'Абонаменти за новини', + 'news_source' => 'Източници на новини', + 'new_category' => 'Нова категория', + 'new_password' => 'Нова парола', + 'new_report' => 'Нов сигнал', + 'next' => 'Следващ', + 'no' => 'Не', + 'notices' => 'Съобщение', + 'not_approved' => 'Не одобрени', + 'not_approved_singular' => 'Не одобрен', + 'not_spam' => 'не е спам', + 'not_specified' => 'Не е дефиниран', + 'no_results' => 'Няма резултати', + 'official_news' => 'Официални новини', + 'option' => 'Настройка', + 'optional' => 'Незадължителен', + 'options' => 'Настройки', + 'organization' => 'Организация', + 'organizations' => 'Организации', + 'organization_description' => 'Описание на организация', + 'organization_email' => 'Email на организация', + 'organization_has_been' => 'Организацията беше', + 'organization_name' => 'Име на организацията', + 'organization_phone_1' => 'Телефон на организация 1', + 'organization_phone_2' => 'Телефон на организация 2', + 'organization_website' => 'Сайт на организация', + 'original' => 'Оригинал', + 'original_description' => 'Описание на оригинал', + 'original_title' => 'Заглавие на оригинал', + 'other_ushahidi_instances' => 'Други инсталации на Ushahidi', + 'outbox' => 'Изходяща поща', + 'outgoing' => 'Изгодящ', + 'page' => 'Страница', + 'pages' => 'Страници', + 'page_description' => 'Описание на страница', + 'page_has_been' => 'Страницата беше', + 'page_tab_name' => 'Име на таб на страница', + 'page_title' => 'Иеме на страница', + 'parent_category' => 'Родителска категория', + 'password' => 'Парола', + 'password_again' => 'Напишете отново паролата', + 'password_forgot' => 'Забравихте паролата си?', + 'password_reset_confirm' => 'Проверете мейла за новата си парола.', + 'password_save' => 'Останете вписани?', + 'past_month' => 'Последния месец', + 'past_year' => 'Последната година', + 'pending' => 'На изчакване', + 'per' => 'на', + 'personal_information' => 'Лична информация по желание.', + 'phone' => 'Телефон', + 'photos' => 'Снимки', + 'pictures' => 'Снимки', + 'pictures_and_videos' => 'Снимки и видео', + 'pinpoint_location' => '* Потърсете местоположението си като въведете координати (формат: 38.19,-85.61), или кликнете веднъж на картата на правилното място.', + 'play' => 'Пусни', + 'please_note' => 'Моля отбележете', + 'plugins' => 'Добавки', + 'plugin_url' => 'Сайт на добавката', + 'preview' => 'Преглед', + 'preview_item' => 'Прегледай записа', + 'preview_message' => 'Прегледай съобщението', + 'previous' => 'Предишен', + 'profile_saved' => 'Профилът ви е запазен', + 'quick_stats' => 'Бърза статистика', + 'rating' => 'Рейтинг', + 'read' => 'Прочетени', + 'receive' => 'Получен', + 'receive_from' => 'Получен от', + 'receive_notifications' => 'Получавайте сигнали', + 'recent_reports' => 'Скорошни справки', + 'refresh_news_feeds' => 'Обнови новинарските емисии', + 'remove' => 'махни', + 'reply' => 'Отговори', + 'report' => 'Справка', + 'reporter' => 'Сигнализиращ', + 'reporters' => 'Сигнализиращи', + 'reporter_date' => 'Дата на сигнал', + 'reporter_email' => 'Email на сигнализиращ', + 'reporter_first_name' => 'Лично име на сигнализиращ', + 'reporter_has_been' => 'Сигнализиращият беше', + 'reporter_ip' => 'IP адрес на сигнализиращ', + 'reporter_last_name' => 'Фамилно име на сигнализиращ', + 'reporter_level' => 'Ниво на сигнализиращ', + 'reporter_levels' => 'Нива на сигнализиращ', + 'reporter_phone' => 'Телефон на сигнализиращ', + 'reports' => 'Сигнали', + 'reports_btn_browse' => 'Прегледай', + 'reports_btn_submit' => 'Изпрати', + 'reports_categories' => 'Категории', + 'reports_date' => 'Дата', + 'reports_description' => 'Описание', + 'reports_download_csv' => 'Сигналите ще бъдат свалени в CSV формат', + 'reports_find_location' => 'Намерете местоположение близо до вас', + 'reports_first' => 'Лично име', + 'reports_last' => 'Фамилно име', + 'reports_location_name' => 'Уточнете името на местоположението', + 'reports_news' => 'Нов адрес на източник', + 'reports_optional' => 'Незадължителна информация', + 'reports_photos' => 'Качете снимки', + 'reports_return' => 'Върнете на страницата за сигнали', + 'reports_select_city' => 'Изберете град', + 'reports_submitted' => 'Вашият сигнал е изпратен на екипа ни за одобрение. Ще се свържем с вас, ако е нужно.', + 'reports_submit_new' => 'Изпратете нов сигнал', + 'reports_time' => 'Време', + 'reports_timeline' => 'Линия на събитията', + 'reports_title' => 'Заглавие на сигнал', + 'reports_video' => 'Линк на видео', + 'report_an_incident' => 'Съобщете за инцидент', + 'report_details' => 'Подробности за сигнала', + 'report_option_1' => 'Като изпратите съобщение на ', + 'report_option_2' => 'Като изпратите мейл на ', + 'report_option_3' => 'Като изпратите tweet с таг(ове) ', + 'report_option_4' => 'Като попълните този формуляр', + 'report_saved' => 'Сигналът ви е запазен', + 'report_title' => 'Заглавие на сигнал', + 'request_information' => 'Поискайте повече информация', + 'request_location' => 'Поискайте местоположение', + 'requirements' => 'Изисквания', + 'reset_all_filters' => 'Изчисти филтрите', + 'reset_password' => 'Възстанови парола', + 'retrieve_city_names' => 'Взимане на имена на градове в избраните държави', + 'role' => 'Роля', + 'save' => 'Запази', + 'saved' => 'Запазено', + 'save_close' => 'Запази и Затвори', + 'save_report' => 'Запиши сигнали', + 'schedule' => 'График', + 'scheduler' => 'Периодичен изпълнител', + 'scheduler_day' => 'Ден', + 'scheduler_hour' => 'Час', + 'scheduler_log' => 'История', + 'scheduler_minute' => 'Минута', + 'scheduler_weekday' => 'Ден от седмицата', + 'search' => 'ТЪРСИ', + 'search_results' => 'Резултати от търсенето', + 'security_code' => 'Код за сигурност', + 'select_all' => 'Избери всички', + 'select_field_type' => 'Изберете тип на полето', + 'select_form_type' => 'Изберете тип на формуляра', + 'select_in_map' => 'Изберете в картата', + 'select_multiple' => 'Изберете колкото ви трябват', + 'select_one' => 'Моля проверете, че сте избрали запис', + 'select_theme' => 'Изберете външен вид', + 'send' => 'Изпрати', + 'sending_to' => 'Изпраща се на', + 'sent' => 'Изпратен', + 'sent_by' => 'Изпратен от', + 'server_address' => 'Сървърен адрес', + 'server_type' => 'Тип на сървъра', + 'service' => 'Услуга', + 'service_username' => 'Име на услугата', + 'service_user_id' => 'Потребителски номер на услугата', + 'share' => 'Сподели', + 'shared_data' => 'Споделени данни', + 'share_has_been' => 'Споделянето беше', + 'sharing' => 'Споделя се ', + 'show' => 'Покажи', + 'show_all' => 'Покаци всички', + 'site' => 'Сайт', + 'site_email_address' => 'email адрес на сайта', + 'site_url' => 'Адрес на сайта', + 'source' => 'Източник', + 'source_name' => 'Име на източника', + 'source_url' => 'Адрес на източника', + 'spam' => 'Спам', + 'ssl_support' => 'SSL поддръжка?', + 'start_point' => 'От', + 'step' => 'Стъпка', + 'submit' => 'Изпратете Сигнал', + 'submit_sms' => 'Изпратете със SMS', + 'submit_sms1' => 'Изпратете SMS-а си на', + 'submit_sms2' => 'на телефона си', + 'success' => 'Успех!', + 'successfuly_imported' => 'Успешно въведено', + 'surname' => 'Бащино име', + 'system' => 'Система', + 'tcp_port' => 'TCP порт', + 'themes' => 'Външен вид', + 'theme_default' => 'Външен вид по подразбиране', + 'theme_settings' => 'Настройки на външен вид', + 'this' => 'Това', + 'this_day' => 'Днес', + 'this_month' => 'Този месец', + 'this_week' => 'Тази седмица', + 'this_year' => 'Тази година', + 'time' => 'време', + 'title' => 'ЗАГЛАВИЕ ', + 'to' => 'до', + 'today' => 'Днес', + 'today_at' => 'Днес от', + 'translated' => 'Преведен', + 'translated_description' => 'Преведено описание', + 'translated_title' => 'Преведено заглавие', + 'translate_to' => 'Преведи на', + 'translation' => 'Превод', + 'translation_saved' => 'Преводът беше запазен', + 'unread' => 'непрочетен', + 'unverified' => 'Непотвърден', + 'update_feeds' => 'Обнови абонаментите', + 'upload' => 'Качи', + 'upload_file' => 'Файл за качване', + 'upload_reports' => 'Качи сигнали', + 'upload_reports_detail_1' => 'С този формуляр може да въвеждате сигнали в системата на Ushahidi', + 'upload_reports_detail_4' => 'Трябва да съдържа поне заглавие и дата', + 'upload_reports_detail_5' => 'Примерен CSV сигнал', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Обир в София","2009-05-15 01:06:00","София","Потвърдено от полицията","Кражба",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Качването е успешно', + 'user' => 'Потребител', + 'username' => 'Потребителско име', + 'ushahidi_admin' => 'Ushahidi администратор', + 'verification' => 'Потвърждение', + 'verified' => 'Потвърден', + 'verified_reports' => 'Потвърдени сигнали', + 'verify' => 'Потвърди', + 'verify_this_report' => 'Потвърди този сигнал', + 'version' => 'Версия', + 'via' => 'чрез', + 'video' => 'Видео', + 'view' => 'Преглед', + 'views' => 'Прегледи', + 'view_all' => 'Прегледай всички', + 'view_all_feeds' => 'Прегледай всички абонаменти', + 'view_all_reports' => 'Прегледай всички сигнали', + 'view_items' => 'Прегледай записите', + 'view_more' => 'Вижте още', + 'view_report' => 'Прегледай сигнал', + 'view_reports' => 'Прегледай сигнали', + 'visible' => 'Видим', + 'waiting_approval' => 'Изчаква одобрение', + 'waiting_verification' => 'Изчаква потвърждаване', + 'weight' => 'Тежест', + 'yes' => 'Да', + 'yesterday' => 'Вчера', +); diff --git a/application/i18n/bg_BG/upgrade.php b/application/i18n/bg_BG/upgrade.php new file mode 100644 index 0000000000..6bb1528e2b --- /dev/null +++ b/application/i18n/bg_BG/upgrade.php @@ -0,0 +1,30 @@ + array( + 'between' => 'Грешни входящи данни. Може да е само 0 за НЕ и 1 за ДА.', + ) , + 'upgrade_automatic' => 'Автоматично обновяване.', + 'upgrade_available' => 'Има нова версия.', + 'upgrade_continue_btn_text' => 'Продължи', + 'upgrade_db_btn_text' => 'Обновяване', + 'upgrade_db_text_1' => 'Ще обновя базата данни от версия', + 'upgrade_db_text_2' => 'на версия', + 'upgrade_db_text_3' => 'Натиснете "Обновяване" и се гледайте докато направя магията.', + 'upgrade_db_text_4' => 'Ако искаш да направя резервно копие на базата данни, отбележи отметката.', + 'upgrade_db_text_5' => 'Да направя резервно копие на базата данни? (Много препоръчително)', + 'upgrade_db_title' => 'Обновяване на базата данни Ushahidi ', + 'upgrade_failed' => 'Обновяването се провали някъде', + 'upgrade_manual' => 'Обновяване на ръка', + 'upgrade_status' => 'Статус на обновяване на Ushahidi', + 'upgrade_text_1' => 'В тези инструкции ще научите как да обновите Ushahidi на ръка', + 'upgrade_text_2' => 'Стъпка 1: Свалете последната дистрибуция на ushahidi от http://download.ushahidi.com', + 'upgrade_text_3' => 'Стъпка 2: В зависимост от операционната система на сървъра, използвайте предпочитания инструмент/маниер (i.e: telnet, ftp, ssh), за да се вържете и замените съдържанието на всички папки с най-новите от дистрибуцията. ВСИЧКИ ОСВЕН:', + 'upgrade_text_4' => 'Стъпка 3: Натиснете "Продължи", за да обновите базата данни.', + 'upgrade_text_5' => 'За автоматично обновяване, натиснете бутона по-долу.', + 'upgrading' => 'Обновяване', +); diff --git a/application/i18n/bn/alerts.php b/application/i18n/bn/alerts.php new file mode 100644 index 0000000000..a8b141aff1 --- /dev/null +++ b/application/i18n/bn/alerts.php @@ -0,0 +1,7 @@ + array( + 'email' => 'ইমেইল ক্ষেত্রে গ্রহণযোগ্য ঠিকানা নেই', + 'email_check' => 'উক্ত ইমেইল ঠিকানাটি ইতমধ্যে নিবন্ধিত হয়েছে', + 'length' => 'ইমেইল ক্ষেত্র সর্বনিম্ন ৪ এবং সর্বোচ্চ ৬৪ বর্ণবিশিষ্ট হতে হবে', + 'required' => 'চেকবক্স চেক করা তাকলে ইমেইল ক্ষেত্র আবশ্যক', + ) , + 'alert_country' => array( + 'single_country' => 'অনুগ্রহ করে সতর্ক ক্ষেত্র নিজ দেশের অভ্যন্তরে নিশ্চিত করুন', + ) , + 'alert_lat' => array( + 'between' => 'আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি', + 'required' => 'আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি', + ) , + 'alert_lon' => array( + 'between' => 'আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি', + 'required' => 'আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি', + ) , + 'alert_mobile' => array( + 'length' => 'মোবাইল ফোন লিখন ক্ষেত্রে গ্রহণযোগ্য সংখ্যক বর্ণ লেখা হয় নি', + 'mobile_check' => 'উক্ত মোবাইল নাম্বারটি ইতমধ্যে বার্তা গ্রহণের জন্য নিবন্ধিত হয়েছে', + 'numeric' => 'মোবাইল ফোন লিখন ক্ষেত্রে গ্রহণযোগ্য নাম্বার অনুপস্থিত। অনুগ্রহ করে কান্ট্রি কোড সহ ফোন নাম্বার লিখুন', + 'one_required' => 'মোবাইল নাম্বার অথবা ইমেইল ঠিকানা অন্তত একটি প্রদান বাঞ্ছনীয়', + 'required' => 'চেকবক্স চেক করা তাকলে মোবাইল নাম্বার আবশ্যক', + ) , + 'alert_radius' => array( + 'in_array' => 'মানচিত্রে গ্রহণযোগ্য ব্যাসার্ধ প্রদান করা হয় নি', + 'required' => 'মানচিত্রে কোন ব্যাসার্ধ প্রদান করা হয় নি', + ) , + 'alert_recipient' => array( + 'required' => 'গ্রহণযোগ্য প্রাপক প্রদান করা হয় নি', + ) , + 'alerts_subscribed' => 'আপনি নিচের প্রকারগুলোর এলার্টগুলো সাবস্ক্রাইব করেছেন', + 'code_already_verified' => 'এই কোড আগেই ভেরিফাই করা হয়েছে!', + 'code_not_found' => 'ভেরিফিকেশন কোড পাওয়া যায় নি। আপনার সঠিক URL আছে দয়া করে নিশ্চিত করুন।', + 'code_verified' => 'আপনার কোড সঠিকভাবে যাচাই করা হয়েছে। আপনি এখন থেকে ঘটনা সম্পর্কে সতর্কতা গ্রহণ করা হবে।', + 'confirm_request' => 'আপনার সতর্কতা অনুরোধ নিশ্চিত করার জন্য, দয়া করে এখানে যান.', +); diff --git a/application/i18n/bn_BD/auth.php b/application/i18n/bn_BD/auth.php new file mode 100644 index 0000000000..ad8f59a64f --- /dev/null +++ b/application/i18n/bn_BD/auth.php @@ -0,0 +1,7 @@ + 'প্রসঙ্গে', + 'access' => 'প্রবেশাধিকার', + 'access_limits' => 'প্রবেশাধিকার', + 'account_name' => 'অ্যাকাউন্টের নাম', + 'actions' => 'কর্মসমূহ', + 'action_confirm' => 'এই কাজটি মুছে ফেলা সম্ভব নয়। আপনি কি চালিয়ে যেতে চান?', + 'activate' => 'চালু করা', + 'active' => 'চালু', + 'add' => 'যোগ করুন', + 'added_by' => 'যোগ করেছেনঃ', + 'additional_data' => 'অতিরিক্ত তথ্য', + 'additional_reports' => 'অতিরিক্ত রিপোর্ট', + 'add_edit' => 'যোগ/সম্পাদনা', + 'add_field' => 'ক্ষেত্র যোগ করুন', + 'add_language' => 'ভাষা যোগ করুন', + 'add_new' => 'যোগ করুন নতুন', + 'add_new_category' => 'নতুন বিভাগ অন্তর্ভুক্ত করুন', + 'add_translation' => 'ভাষান্তর অন্তর্ভুক্ত করুন', + 'admin' => 'প্রশাসন', + 'alerts' => 'সতর্ক বার্তা গ্রহণ করুন', + 'alerts_alert_me' => 'কোনও রিপোর্ট নথিভুক্ত হলে আমাকে সতর্ক করুন', + 'alerts_btn_send' => 'সতর্কবার্তা সংরক্ষণ করুন', + 'alerts_email' => 'ইমেইল ঠিকানা', + 'alerts_enter_email' => 'ইমেইল ঠিকানা প্রবেশ করুন', + 'alerts_enter_mobile' => 'কান্ট্রি কোডসহ মোবাইল নাম্বার প্রবেশ করুন', + 'alerts_get' => 'সতর্কবাণী গ্রহণ করুন', + 'alert_has_been' => 'সতর্কবাণীটি', + 'alerts_mobile_phone' => 'মোবাইল ফোন', + 'alerts_place_spot' => 'অথবা মানচিত্রে একটি স্থান নির্দিষ্ট করুন, ২০ কিলোমিটারের মধ্যে কোনও রিপোর্ট থাকলে আপনাকে সতর্ক করা হবে', + 'alerts_place_spot2' => 'যদি আপনি নিজের অবস্থান খুঁজে না পান, তাহলে মানচিত্রে নিজের অবস্থান পয়েন্ট করুন', + 'alerts_rss' => 'RSS সংবাদ', + 'alerts_select_city' => 'একটি শহর নির্বাচন করুন', + 'alerts_step1_select_city' => 'ধাপ ১: আপনার শহর অথবা ঠিকানা নির্বাচন করুন:', + 'alerts_step2_send_alerts' => 'ধাপ ২: সতর্কবাণী প্রেরণ করুন:', + 'alerts_step3_select_catgories' => 'ধাপ ৩:(ঐচ্ছিক): বিভাগ নির্বাচন করুন', + 'alert_confirm_previous' => 'পূর্ববর্তী কোনও সতর্কবাণী নিশ্চিত করুন', + 'alert_saved' => 'আপনার সতর্কবার্তাটি সংরক্ষিত হয়েছে', + 'all' => 'সব', + 'allowed' => 'অনুমোদিত', + 'allowed_tags' => 'অনুমোদিত HTML ট্যাগস: "%s"', + 'allowed_iframes' => 'আইফ্রেম গুলো শুধুমাত্র %s থেকে অনুমোদিত', + 'all_categories' => 'সকল বিভাগ', + 'all_time' => 'সবসময়', + 'and' => 'এবং', + 'api' => 'এপিআই', + 'approve' => 'অনুমোদন', + 'approved' => 'অনুমোদিত', + 'approved_reports' => 'অনুমোদিত রিপোর্টসমূহ', + 'approve_this_report' => 'এই রিপোর্টটি অনুমোদন করুন', + 'approximate' => 'প্রায়', + 'archive' => 'আর্কাইভ', + 'archived' => 'আর্কাইভ করা', + 'ascending' => 'ক্রমবর্ধমান', + 'at' => 'প্রতি', + 'author' => 'স্বত্বাধিকারী', + 'auto_checkin' => 'স্বয়ংক্রিয় চেকিং', + 'avg_reports_per_day' => 'প্রতিদিনের গড় রিপোর্ট সংখ্যা', + 'awaiting_approval' => 'অনুমোদনের জন্য অপেক্ষমান', + 'awaiting_verification' => 'যাচাইকরণের জন্য অপেক্ষমান', + 'badge' => 'ব্যাজ', + 'badges' => 'ব্যাজসমূহ', + 'badge_image' => 'ব্যাজের ছবি', + 'badge_image_upload_your_own' => 'অথবা আপনি আপনার নিজের ছবি আপলোড করতে পারেন', + 'badge_pack' => 'ব্যাজ প্যাক', + 'badge_select' => 'একটি ব্যাজ নির্বাচন করুন', + 'blog' => 'ব্লগ', + 'browse_profiles' => 'প্রোফাইল ভ্রমণ করুন', + 'cancel' => 'বাতিল করুন', + 'categories' => 'বিভাগসমূহ', + 'category' => 'বিভাগ', + 'category_filter' => 'বিভাগ ছাঁকনিকরণ', + 'category_has_been' => 'এই বিভাগটি', + 'category_name' => 'বিভাগের নাম', + 'change_date_range' => 'তারিখ পরিধি পরিবর্তন করুন', + 'change_password' => 'পাসওয়ার্ড পরিবর্তন করুন', + 'change_picture' => 'আমার ছবি বদলান', + 'choose' => 'নির্বাচন করুন একটি', + 'choose_data_points' => 'ডাউনলোড করার জন্য ডাটা পয়েন্ট পছন্দ করুন', + 'choose_date_range' => 'অথবা নিজস্ব তারিখ পরিধি নির্বাচন করুন', + 'choose_field_type' => 'ক্ষেত্র টাইপ নির্বাচন করুন', + 'cleanurl' => 'URL ক্লিন করুন', + 'clear' => 'ক্লিয়ার করুন', + 'clear_map' => 'ম্যাপ ক্লিয়ার করুন', + 'close' => 'বন্ধ করুন', + 'clusters' => 'গুচ্ছ', + 'color' => 'বর্ণ', + 'comment' => 'মন্তব্য', + 'comments' => 'মন্তব্যসমূহ', + 'comment_details' => 'বিস্তারিত মন্তব্য', + 'configuration_saved' => 'কনফিগারেশন সংরক্ষিত হয়েছে', + 'configure' => 'কনফিগার', + 'confirm_email_successful' => 'আপনি আপনার ইমেইল সফলভাবে নিশ্চিত করেছেন। অনুগ্রহ করে নিচে থেকে লগিন করুন', + 'confirm_email_successful_and_approval' => 'আপনি সফলভাবে আপনার ইমেল ঠিকানা নিশ্চিত করেছেন! আপনি লগইন করার আগে একজন এডমিনিস্ট্রেটর দ্বারা আপনার অ্যাকাউন্ট অনুমোদন আবশ্যক', + 'confirm_email_failed' => 'ইমেইল নিশ্চিত করা সফল হয় নি', + 'contact' => 'যোগাযোগ', + 'contact_code' => 'যোগাযোগ কোড', + 'contact_email' => 'যোগাযোগ ইমেইল', + 'contact_message' => 'যোগাযোগ মেসেজ', + 'contact_message_has_send' => 'আপনার বার্তাটি পাঠানো হয়েছে', + 'contact_name' => 'পরিচিতের নাম', + 'contact_phone' => 'পরিচিতের ফোন', + 'contact_send' => 'যোগাযোগ পাঠান', + 'contact_subject' => 'সাবজেক্টের সাথে যোগাযোগ করুন', + 'copyright' => 'স্বত্বাধিকার', + 'create' => 'তৈরি করুন', + 'create_edit' => 'তৈরি/সম্পাদনা', + 'create_new' => 'নতুন তৈরি করুন', + 'create_new_password' => 'নতুন পাসওয়ার্ড তৈরি করুন', + 'create_report' => 'রিপোর্ট তৈরি করুন', + 'credibility' => 'ক্রেডিবিলিটি', + 'current_password' => 'বর্তমান পাসওয়ার্ড', + 'custom_fields' => 'কাস্টম ক্ষেত্রসমূহ', + 'data' => 'তথ্য', + 'date' => 'তারিখ', + 'date_format' => '(মম/দদ/বববব)', + 'date_time' => 'দিন এবং সময়', + 'day' => 'দিন', + 'deactivate' => 'অক্ষম করুন', + 'default_location_name' => 'নাইরোবি, কেনিয়া', + 'delete' => 'মুছে ফেলুন', + 'deleted' => 'মুছে ফেলা হয়েছে', + 'deletes' => 'মুছে ফেলে', + 'delete_disabled' => 'মুছে ফেলা অক্ষম করে রাখা হয়েছে', + 'delete_last' => 'শেষটা মুছে ফেলুন', + 'delete_report' => 'এই রিপোর্টটা মুছে ফেলুন', + 'delete_selected' => 'নির্বাচিতটি মুছে ফেলুন', + 'delete_spam' => 'স্প্যাম মুছে ফেলুন', + 'demo' => 'ডেমো', + 'description' => 'বর্ণনা', + 'descending' => 'ক্রমহ্রাসমান', + 'detailed_location_example' => 'সিটি মার্কেটের কোনায়, ৫ম রাস্তা এবং ৪র্থ এভিনিউ, জোহাননেসবার্গ', + 'details' => 'বিস্তারিত', + 'direct_report' => 'সরাসরি রিপোর্ট', + 'disabled' => 'অক্ষম করে রাখা হয়েছে', + 'disapprove' => 'অনুনমোদন করুন', + 'download_reports' => 'রিপোর্ট ডাউনলোড করুন', + 'download' => 'ডাউনলোড', + 'edit' => 'সম্পাদন করুন', + 'edit_form_fields' => 'ফর্ম ক্ষেত্র সম্পাদনা করুন', + 'edit_report' => 'রিপোর্ট সম্পাদনা করুন', + 'email' => 'ইমেইল', + 'email_address' => 'ইমেইল ঠিকানা', + 'email_configuration' => 'মেইল সার্ভার সেটিং', + 'email_server_host' => 'মেইল সার্ভার হোস্ট', + 'email_server_password' => 'মেইল সার্ভার পাসওয়ার্ড', + 'email_server_port' => 'মেইল সার্ভার পোর্ট', + 'email_server_ssl_support' => 'মেইল সার্ভার SSL সাপোর্ট', + 'email_server_type' => 'মেইল সার্ভার টাইপ', + 'email_server_username' => 'মেইল সার্ভার ইউজারনেম', + 'email_settings_comment_0' => 'সুতরাং আপনার সেটিং ইমেইলের সাথে জড়িত হতে হবে', + 'email_settings_comment_00' => 'ইমেইল এর মাধ্যমে রিপোর্ট সমূহ পাওয়ার জন্য অনুগ্রহ করে নিচে আপনার ইমেইল এড্রেসটি প্রবেশ করান। ', + 'email_settings_comment_1' => 'কিছু কিছু সার্ভারে সম্পুর্ন ইমেইল এড্রেসএর প্রয়োজন হয়', + 'email_settings_comment_2' => 'ই-মেইল একাউন্টের পাসওয়ার্ড', + 'email_settings_comment_3' => 'Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'উদাহরণঃ mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'উদাহরণঃ pop2,imap', + 'email_settings_comment_6' => 'SSL connections এনাবল বা ডিজেবল করুন', + 'empty' => ' ---EMPTY---', + 'end_point' => 'প্রতি', + 'error' => 'ভুল!', + 'example' => 'উদাহরণ', + 'example_country' => 'কেনিয়া', + 'external_apps' => 'এক্সটার্নাল অ্যাপস', + 'external_video_link' => 'এক্সটার্নাল ভিডিও লিংক', + 'facebook' => 'ফেইসবুক', + 'feed' => 'ফিড', + 'feedback' => 'ফিডব্যাক দিন', + 'feedback_reports' => 'অনুগ্রহ করে আপনার অভিজ্ঞতা জানিয়ে আমাদের ইমেইল পাঠিয়ে দিন এই ঠিকানায়', + 'feeds' => 'সংবাদ', + 'feed_has_been' => 'এই সংবাদটি', + 'feed_items' => 'আইটেমসমূহ দিন', + 'feed_name' => 'নাম দিন', + 'feed_url' => 'URL দিন', + 'field_unused' => 'অব্যবহৃত ক্ষেত্র', + 'file' => 'নথি', + 'file_over_max_allowed' => 'আপনার ফাইল সর্বোচ্চ আকারের সীমা ছাড়িয়ে গেছে', + 'filters' => 'আলাদা করে', + 'filter_reports' => 'রিপোর্ট ছাঁকুন', + 'filter_reports_by' => 'রিপোর্ট গুলো ফিল্টার করুন', + 'filter_reports_contain' => 'রিপোর্ট গুলো ফিল্টার করুন যেগুলোর মধ্যে আছে', + 'find' => 'খুঁজুন', + 'find_location' => 'অবস্থান খুঁজুন', + 'first_name' => 'প্রথন নাম', + 'force_run_scheduler' => 'Force Run Scheduler', + 'forgot_password' => 'পাসওয়ার্ড ভুলে গেছেন?', + 'form' => 'ফর্ম', + 'forms' => 'ফর্মসমূহ', + 'form_description' => 'ফর্ম বর্ণনা', + 'form_edit' => 'ফর্মটি সম্পাদন করুন', + 'form_has_been' => 'এই ফর্মটি', + 'form_title' => 'ফর্মের শিরোনাম', + 'from' => 'হতে', + 'full_name' => 'পূর্ণ নাম', + 'geolocation_available' => 'ভূঅবস্থান সহজলোভ্য', + 'geometry_color' => 'বর্ণ', + 'geometry_comments' => 'মন্তব্যসমূহ', + 'geometry_label' => 'লেবেল', + 'geometry_strokewidth' => 'স্ট্রোক প্রস্থ', + 'go' => 'যান', + 'hashtag' => 'হ্যাশট্যাগ', + 'has_been' => 'হয়ে আসছে', + 'help' => 'কীভাবে সাহায্য করবেন', + 'hidden' => 'লুকানো', + 'hide' => 'লুকান', + 'hide_this_message' => 'এই মেসেজটি লুকান', + 'home' => 'হোম', + 'how_to_report' => 'কীভাবে রিপোর্ট করবেন?', + 'https' => 'HTTPS', + 'id' => 'আইডি', + 'identify_you' => 'আপনাকে অন্য ব্যবহারকারীদের কাছে সনাক্ত করার জন্য ব্যবহৃত হবে', + 'image' => 'ছবি', + 'images' => 'ছবিমালা', + 'image_icon' => 'ছবি/আইকন', + 'inactive' => 'অচল', + 'inbox' => 'ইনবক্স', + 'incident' => 'ঘটনা', + 'incidents_nearby' => 'কাছাকাছি ঘটনাসমূহ', + 'incident_location' => 'ঘটনাস্তল', + 'include' => 'অন্তর্ভুক্ত', + 'include_categories' => 'বিভাগ অন্তর্ভুক্ত করুন', + 'include_custom_fields' => 'কাস্টম ক্ষেত্র অন্তর্ভুক্ত করুন', + 'include_description' => 'বর্ণনা অন্তর্ভুক্ত করুন', + 'include_detail' => 'যথাসম্ভব বিস্তারিত তথ্য দিন', + 'include_latitude' => 'অক্ষাংশ অন্তর্ভুক্ত করুন', + 'include_location_information' => 'এলাকার তথ্য অন্তর্ভুক্ত করুন', + 'include_longitude' => 'দ্রাঘিমাংশ অন্তর্ভুক্ত করুন', + 'include_personal_info' => 'ব্যক্তিগত তথ্য অন্তর্ভুক্ত করুন', + 'incoming_media' => 'অন্তর্বর্তী মিডিয়া', + 'information_evaluation' => 'তথ্য মূল্ল্যায়ন', + 'input_location' => 'আপনার সর্বোপযুক্ত ঠিকানা দ্বীন', + 'insufficient_role' => 'অ্যাপনার অ্যাকাউন্টের সম্পূর্ণভাবে লগ ইন করার উপযুক্ত অনুমতি নেই। দয়াকরে, প্রশাসনের সাথে যোগাযোগ করূন।', + 'in_response_to' => 'প্রত্যুত্তরে', + 'ip_address' => 'আইপি অ্যাড্রেস', + 'is_this_your_profile' => 'এটা কি আপনার প্রোফাইল?', + 'item' => ' আইটেম', + 'items' => 'আইটেমসমূহ', + 'item_details' => 'বিস্তারিত আইটেম', + 'item_title' => 'আইটেমের শিরোনাম', + 'key' => 'চাবি', + 'keywords' => 'মূল শব্দ', + 'kml_kmz_file' => 'KMZ/KML ফাইল', + 'kml_kmz_upload' => 'KMZ/KML ফাইল আপলোড করুন', + 'kml_url' => 'KML URL', + 'laconica' => 'লাকোনিকা', + 'language' => 'ভাষা', + 'last' => 'শেষ', + 'last_month' => 'শেষ মাস', + 'last_name' => 'শেষ নাম', + 'last_year' => 'শেষ বছর', + 'latitude' => 'দ্রাঘিমাংশ', + 'layers' => 'লেয়ারসমূহ', + 'layers_filter' => 'অন্যান্য লেয়ারসমূহ', + 'layer_has_been' => 'এই লেয়ার', + 'layer_name' => 'লেয়ার Name', + 'layer_url' => 'লেয়ার URL', + 'leave_a_comment' => 'মন্তব্য দিন', + 'less_information' => 'আরো কম তথ্য', + 'level' => 'লেভেল', + 'level_has_been' => 'এই লেভেল', + 'level_name' => 'লেভেল নেইম', + 'limited' => 'লিমিটেড', + 'link' => 'লিঙ্ক', + 'list' => 'লিস্ট', + 'loading_reports' => 'রিপোর্টসমূহ লোড করা', + 'location' => 'অবস্থান', + 'locations' => 'অবস্থানসমূহ', + 'location_example' => 'শহর, রাজ্য এবং/ অথবা দেশ', + 'login' => 'লগ ইন', + 'login_account_creation_successful' => 'অ্যাকাউন্ট সফলভাবে তৈরি হয়েছে। আপনি লগইন করতে পারেন।', + 'login_confirmation_sent' => 'আপনার ইমেইলে নিশ্চিত করণ বার্তা পৌছে গেছে।', + 'login_approval_required' => 'একাউন্ট তৈরি হয়েছে। আপনি লগইন করার আগে একজন এডমিনিস্ট্রেটর দ্বারা আপনার অ্যাকাউন্ট অনুমোদন আবশ্যক', + 'login_email_doesnt_exist' => 'ই-মেইলটি নেই। অন্য একটি ইমেইল আইডি চেষ্টা করূন অথবা নতুন আইডি তৈরি করূন।', + 'login_select_openid' => 'দয়াকরে আপনার অ্যাকাউন্টদাতাতে ক্লিক করূন', + 'login_with' => 'লগ ইন করূন', + 'login_userpass' => 'ই-মেইল এবং পাসওয়ার্ড', + 'login_openid' => 'খোলা আইডি', + 'login_signup' => 'সাইন আপ', + 'login_signup_click' => 'একটি অ্যাকাউন্ট তৈরি করূন', + 'login_signup_confirmation_message' => '%1$s এ সাইন আপ করার জন্য আপনাকে ধন্যবাদ। আপনার ইমেইল এড্রেস টিকে কনফার্ম করার জন্য এই লিঙ্কে যানঃ %2$s', + 'login_signup_confirmation_subject' => 'সাইন আপ নিশ্চিতকরণ', + 'login_signup_admin_approval_message' => '%1$s এ একজন নতুন ইউজার সাইন আপ করেছেন। তার রেজিস্ট্রেশন অনুমোদন করার জন্য এই লিঙ্কে যানঃ %2$s', + 'login_signup_admin_approval_subject' => 'নতুন ইউজার অনুমোদন', + 'login_signup_approval_message' => '%1$s এর জন্য আপনার একাউন্ট অনুমোদন করা হয়েছে। লগইন করার জন্য এই লিঙ্কএ যানঃ %2$s', + 'login_signup_approval_subject' => 'ইউজার অ্যাকাউন্ট অনুমোদিত ', + 'login_signup_text' => ' এই সাইটের আরো ফিচার ব্যবহারের জন্য এখনই একটি অ্যাকাউন্ট তৈরি করূন', + 'longitude' => 'অক্ষাংশ', + 'map' => 'মানচিত্র', + 'mark_read' => 'পঠিত বলে মার্ক করে দিন', + 'mark_unread' => 'অপঠিত বলে মার্ক করে দিন', + 'maximum_filesize' => 'সর্বাধিক ফাইল আকার', + 'media' => 'মিডিয়া', + 'media_filter' => 'মিডিয়া ফিল্টার', + 'members' => 'সদস্যগন', + 'manage_your_account' => 'আপনার অ্যাকাউন্ট ব্যাবস্থা করূন', + 'message' => 'বার্তা', + 'messages' => 'বার্তাসমূহ', + 'message_details' => 'বিস্তারিত বার্তা', + 'message_non_numeric_source' => 'একটি non-numeric সোর্স থেকে মেসেজঃ', + 'mobile' => 'মোবাইল', + 'modify' => 'পরিবর্তন করূন', + 'modify_date' => 'দিন পরিবর্তন করূন', + 'month' => 'মাস', + 'more' => 'আরও', + 'more_information' => 'আরও তথ্য', + 'multi_country_instance' => 'এই উশাহিদি Deployment টি কি একাধিক দেশ নিয়ে করা?', + 'must_confirm_email_address' => 'এই সম্প্রসারণে অনুগমন করার জন্য আপনার ইমেইল ঠিকানাটি নিশ্চিত করুন। নিশ্চিতকরণ ইমেইলটি না পেলে নিচের লিঙ্কে ক্লিক করে মেইলের জন্য অনুরোধ করতে পারেন।', + 'name' => 'নাম', + 'nearby_report' => 'নিকটবর্তী রিপোর্ট', + 'new' => 'নতুন', + 'news' => 'সংবাদ', + 'news_feeds' => 'সংবাদসারি', + 'news_source' => 'তথ্যসূত্র', + 'new_category' => 'নতুন বিভাগ', + 'new_password' => 'নতুন পাসওয়ার্ড', + 'new_report' => 'নতুন রিপোর্ট', + 'next' => 'পরবর্তী', + 'no' => 'না', + 'no_checkins' => 'দেখানোর মত কোনও চেকিন নেই', + 'no_data' => 'কোনও তথ্য নয়', + 'none' => 'কোনটা নয়', + 'notices' => 'নোটিশসমূহ', + 'not_approved' => 'অনুমোদিত নয়', + 'not_approved_singular' => 'অনুমোদিত নয়', + 'not_selected' => '---নির্বাচিত নয়---', + 'not_spam' => 'স্প্যাম নয়', + 'not_specified' => 'অনির্দিষ্ট', + 'no_reports' => 'কোনও রিপোর্ট নেই', + 'no_results' => 'কোনও ফলাফল নেই', + 'off' => 'অফ', + 'official_news' => 'অফিসিয়াল এবং মেইন্সট্রিম খবর', + 'on' => 'চালু', + 'option' => 'অপশন', + 'optional' => 'ঐচ্ছিক', + 'options' => 'অপশনসমূহ', + 'organization' => 'প্রতিষ্ঠান', + 'organizations' => 'প্রতিষ্ঠানসমূহ', + 'organization_description' => 'প্রতিষ্ঠানের বর্ণনা', + 'organization_email' => 'প্রতিষ্ঠানের ইমেইল', + 'organization_has_been' => 'এই প্রতিষ্ঠানটি', + 'organization_name' => 'প্রতিষ্ঠানের নাম', + 'organization_phone_1' => 'মুল ফোন ১', + 'organization_phone_2' => 'মুল ফোন ২', + 'organization_website' => 'মূল ওয়েবসাইট', + 'original' => 'মূল', + 'original_description' => 'মূল বর্ণনা', + 'original_title' => 'মূল শিরোনাম', + 'other_ushahidi_instances' => 'অন্যান্য সম্প্রসারণ', + 'outbox' => 'আউটবক্স', + 'outgoing' => 'আউটগোয়িং', + 'page' => 'পেজ', + 'pages' => 'পেজসমূহ', + 'page_description' => 'পেজের বর্ণনা', + 'page_has_been' => 'এই পেজটি', + 'page_tab_name' => 'পেজ ট্যাবের নাম', + 'page_title' => 'পেজের শিরোনাম', + 'parent_category' => 'প্যারেন্ট ডিরেক্টরি', + 'password' => 'পাসওয়ার্ড', + 'password_again' => 'পাসওয়ার্ড যাচাই করুন', + 'password_changed_successfully' => 'পাসওয়ার্ড পুনরুদ্ধার হয়েছে। অনুগ্রহ করে লগিন করুন', + 'password_forgot' => 'পাসওয়ার্ড ভুলে গেছেন?', + 'password_reset_confirm' => 'নতুন পাসওয়ার্ডের জন্য আপনার ইমেইল চেক করুন', + 'password_save' => 'আপনি কি এই কম্পিউটারে লগ ইন করে থাকতে চান?', + 'past_month' => 'গত মাস', + 'past_year' => 'গত বছর', + 'pending' => 'বাকি', + 'per' => 'প্রতি', + 'personal_information' => 'ব্যক্তিগত তথ্যাদি ঐচ্ছিক', + 'phone' => 'ফোন', + 'photos' => 'ছবিমালা', + 'pictures' => 'ছবিমালা', + 'pictures_and_videos' => 'ছবি এবং ভিডিও', + 'pinpoint_location' => '* এলাকার নাম অথবা ল্যাটিটিউডের মাধ্যমে নিজের এলাকা খুঁজুন অথবা মানচিত্রে ক্লিক করে নিজের অবস্থান নির্দেশ করুন', + 'play' => 'চালান', + 'please_note' => 'অনুগ্রহ করে লক্ষ্য করুন', + 'plugins' => 'প্লাগিন', + 'plugin_url' => 'প্লাগিন ওয়েবসাইট', + 'public_profile' => 'সাধারণের জন্য উন্মুক্ত প্রোফাইল', + 'public_profile_url' => 'Public Profile URL', + 'preview' => 'দেখ', + 'preview_item' => 'আইতেম দেখা', + 'preview_message' => 'বার্তা দেখা', + 'previous' => 'পূর্ববর্তী', + 'private' => 'প্রাইভেট', + 'profile_color' => 'প্রোফাইল কালার', + 'profile_saved' => 'আপনার প্রোফাইলটি সংরক্ষিত হয়েছে', + 'quick_stats' => 'দ্রূত পরিসংখ্যান', + 'rating' => 'রেটিং', + 'read' => 'পড়ুন', + 'receive' => 'গ্রহণ', + 'receive_from' => 'বার্তা গ্রহণ হচ্ছে যেখান থেকে', + 'receive_notifications' => 'বার্তা গ্রহণ', + 'recent_reports' => 'সদ্য রিপোর্টসমূহ', + 'refresh_news_feeds' => 'সংবাদ রিফ্রেশ করুন', + 'registered_email' => 'নিবন্ধনকৃত ইমেইল', + 'remove' => 'দূর করুন', + 'reply' => 'উত্তর দিন', + 'report' => 'রিপোর্ট', + 'reports_listed' => 'রিপোর্টসমূহ (মাপ থেকে, ক্রমবর্ধমান আক্ষরিক ক্রমে সাজানো)', + 'reporter' => 'রিপোর্টার', + 'reporters' => 'রিপোর্টাররা', + 'reporter_date' => 'রিপোর্টারের তারিখ', + 'reporter_email' => 'রিপোর্টারের ই-মেইল', + 'reporter_first_name' => 'রিপোর্টারের প্রথম নাম', + 'reporter_has_been' => 'রিপোর্টার', + 'reporter_ip' => 'রিপোর্টারের আইপি এড্রেস', + 'reporter_last_name' => 'রিপোর্টারের শেষ নেইম', + 'reporter_level' => 'রিপোর্টারের লেভেল', + 'reporter_levels' => 'রিপোর্টারের লেভেল', + 'reporter_phone' => 'রিপোর্টার ফোন', + 'reports' => 'রিপোর্ট', + 'reports_btn_browse' => 'ভ্রমন করূন', + 'reports_btn_submit' => 'জমা দিন', + 'reports_by_this_user' => 'এই ব্যাবহারকারীর রিপোর্ট', + 'reports_categories' => 'বিভাগসমুহ', + 'reports_count' => '%d রিপোর্ট', + 'reports_date' => 'দিন', + 'reports_description' => 'বিস্তারিত', + 'reports_download_csv' => 'রিপোর্টগুলো সিএসভি ফরম্যাটে ডাউনলোড হবে।', + 'reports_email' => 'ইমেইল', + 'reports_features' => 'ফিচারসমূহ', + 'reports_find_location' => 'আপনার কাছাকাছি একটি জায়গা সন্ধান করুন', + 'reports_first' => 'প্রথম নাম', + 'reports_last' => 'শেষ নাম', + 'reports_location_name' => 'এলাকার নাম', + 'reports_news' => 'সংবাদের তথ্য লিঙ্ক', + 'reports_optional' => 'ঐচ্ছিক তথ্য', + 'reports_photos' => 'ছবি আপলোড করুন', + 'reports_return' => 'রিপোর্টের পাতায় ফিরে যান', + 'reports_select_city' => 'শহর নির্বাচন করুন', + 'reports_submitted' => 'আপনার রিপোর্ট আমাদের স্টাফের কাছে নিরীক্ষণের জন্য পৌঁছে গেছে। প্রয়োজনে আপনার সাথে যোগাযোগ করা হবে', + 'reports_submit_new' => 'একটি নতুন রিপোর্ট জমা দিন', + 'reports_time' => 'সময়', + 'reports_timeline' => 'রিপোর্টের সময়রেখা', + 'reports_title' => 'রিপোর্টের শিরোনাম', + 'reports_video' => 'ভিডিও লিঙ্ক', + 'report_an_incident' => 'একটি ঘটনা রিপোর্ট করুন', + 'report_details' => 'বিস্তারিত রিপোর্ট', + 'report_option_1' => 'একটি মেসেজ পাঠানোর মাধ্যমে', + 'report_option_2' => 'ইমেইল পাঠানোর মাধ্যমে', + 'report_option_3' => 'hashtag দিয়ে tweet পাঠানোর মাধ্যমে/s', + 'report_option_4' => 'আমাদের ওয়েবসাইটের এই ফর্ম পূরণ করার মাধ্যমে', + 'report_option_external_apps' => 'অ্যাপ ব্যবহার করার মাধ্যমে', + 'report_saved' => 'আপনার রিপোর্ট সংরক্ষিত হয়েছে', + 'report_title' => 'রিপোর্টের শিরোনাম', + 'request_information' => 'আরও তথ্যের জন্য অনুরোধ করুণ', + 'request_location' => 'এলাকা জানতে অনুরোধ করুন', + 'required' => 'প্রয়োজন', + 'requirements' => 'প্রয়োজনমূহ', + 'resend_confirm_email' => 'নিশ্চিতকরণ মেইলটি আবার পাঠান', + 'reset' => 'রিসেট', + 'reset_all_filters' => 'সকল ফিল্টার রিসেট করুন', + 'reset_password' => 'পাসওয়ার্ড রিসেট করুন', + 'retrieve_city_names' => 'নির্বাচিত দেশের শহরগুলো দেখান', + 'riverid_information' => 'অ্যাকাউন্টটি %s সার্ভিসের মাধ্যমে ম্যানেজ হচ্ছে.', + 'riverid_exists_login' => 'আপনার ইতমধ্যে একটি অ্যাকাউন্ট রয়েছে। আপনার ইমেইল এবং পাসওয়ার্ড ব্যবহার করে অনুগ্রহ করে লগিন করুন', + 'role' => 'ভূমিকা', + 'rss' => 'আরএসএস', + 'save' => 'সংরক্ষণ করুন', + 'saved' => 'সংরক্ষিত হয়েছে', + 'save_add_new' => 'সংরক্ষণ করুন এবং নতুন যোগ করুন', + 'save_close' => 'সংরক্ষণ করুন এবং বন্ধ করুন', + 'save_report' => 'রিপোর্টটি সংরক্ষণ করুন', + 'schedule' => 'শিডিউল', + 'scheduler' => 'শিডিউলার', + 'scheduler_day' => 'দিন', + 'scheduler_hour' => 'ঘণ্টা', + 'scheduler_log' => 'শিডিলের লগ', + 'scheduler_minute' => 'মিনিট', + 'scheduler_weekday' => 'সপ্তাহের দিনঃ', + 'search' => 'সন্ধান', + 'search_results' => 'সন্ধানের ফলাফল', + 'security_code' => 'নিরাপত্তা কোড', + 'select_all' => 'সব সিলেক্ট করুন', + 'select_field_type' => 'একটি ক্ষেত্র টাইপ নির্বাচন করুন', + 'select_form_type' => 'একটি ফর্ম টাইপ নির্বাচন করুন', + 'select_in_map' => 'মানচিত্রে নির্বাচন করুন', + 'select_multiple' => 'যতগুলো প্রয়োজন নির্বাচন করুন', + 'select_one' => 'অনুগ্রহ করে যাচাই করুন যে আপনি একটি আইটেম নির্বাচন করেছেন', + 'select_theme' => 'থিম নির্বাচন করুন', + 'send' => 'পাঠান', + 'send_confirmation' => 'নিশ্চিত করে পাঠান', + 'sending_to' => 'এখানে পাঠানো হচ্ছেঃ', + 'sent' => 'পাঠানো হয়েছে', + 'sent_by' => 'পাঠানো হয়েছে, মাধ্যমঃ', + 'server_address' => 'সার্ভারের ঠিকানা', + 'server_type' => 'সার্ভারের প্রকার', + 'service' => 'সার্ভিস', + 'service_username' => 'সার্ভিস ব্যবহারকারীর নাম', + 'service_user_id' => 'সার্ভিস ব্যবহারকারীর আইডি', + 'share' => 'শেয়ার', + 'shared_data' => 'শেয়ারকৃত তথ্য', + 'share_has_been' => 'শেয়ার', + 'sharing' => 'শেয়ার করা হচ্ছে', + 'shorter_map' => 'অপেক্ষাকৃত ছোট মানচিত্র', + 'show' => 'দেখান', + 'show_all' => 'সব দেখান', + 'show_messages' => 'মেসেজ দেখুন', + 'showing_reports_from' => '%1$s থেকে %2$s এর রিপোর্টসমূহঃ', + 'site' => 'ওয়েবসাইট', + 'site_email_address' => 'সাইটের ইমেইল', + 'site_url' => 'সাইটের URL', + 'smaller_map' => 'অপেক্ষাকৃত ছোট মানচিত্র', + 'sms' => 'এসএমএস', + 'sorry_no_badges' => 'দুঃখিত, আপনার কোনও ব্যাজ নেই', + 'source' => 'উৎস', + 'source_name' => 'উৎসের নাম', + 'sort' => 'সাজানো', + 'sort_by' => 'সাজানো', + 'source_url' => 'উৎস URL', + 'spam' => 'স্প্যাম', + 'ssl_support' => 'SSL সাপোর্ট?', + 'start_point' => 'হতে', + 'step' => 'ধাপ', + 'submit' => 'রিপোর্ট জমা দিন', + 'submitted_by' => 'জমা দিয়েছেন %1$s মাধ্যম %2$s', + 'submit_sms' => 'SMS এর মাধ্যমে নিবেদন করা', + 'submit_sms1' => 'আপনার SMS পাঠান', + 'submit_sms2' => 'আপনার ফোনে', + 'success' => 'সফল!', + 'successfuly_imported' => 'সফল আমদানি', + 'surname' => 'উপনাম', + 'survey' => 'জরীপ', + 'system' => 'সিস্টেম', + 'taller_map' => 'লম্বা মানচিত্র', + 'tcp_port' => 'TCP পোর্ট ', + 'themes' => 'থিমসমূহ', + 'theme_default' => 'ডিফল্ট থিম', + 'theme_settings' => 'থিম সেটিংস', + 'this' => 'এটা', + 'this_day' => 'আজকে', + 'this_month' => 'এই মাসে', + 'this_week' => 'এই সপ্তাহে', + 'this_year' => 'এই বছর', + 'this_is_your_profile' => 'এটি আপনার প্রোফাইল', + 'time' => 'সময়', + 'title' => 'শিরোনাম ', + 'to' => 'প্রতি', + 'today' => 'আজকে', + 'today_at' => 'আজকে', + 'token' => 'টোকেন', + 'total_reports' => 'মোট রিপোর্ট', + 'translated' => 'ভাষান্তরিত', + 'translated_description' => 'ভাষান্তরিত বর্ণনা', + 'translated_title' => 'ভাষান্তরিত শিরোনাম', + 'translate_to' => 'ভাষান্তরিত হয়েছে যে ভাষায়ঃ', + 'translation' => 'ভাষান্তর', + 'translation_saved' => 'ভাষান্তর সংরক্ষিত হয়েছে', + 'trusted' => 'বিশ্বস্ত', + 'type' => 'টাইপ', + 'twitter' => 'টুইটার', + 'unable_send_email' => 'মেইল পাঠাইতে অক্ষম', + 'uncategorized_reports' => 'অবিভক্ত রিপোর্ট', + 'unread' => 'অপঠিত', + 'unverified' => 'অযাচাইকৃত', + 'update_feeds' => 'সংবাদ হালনাগাদ করুন', + 'upload' => 'আপলোড', + 'upload_guide' => 'আমাদের রিপোর্ট আপলোডের গাইড দেখুনঃ-', + 'upload_docs_1' => 'এক্সএমএল আপলোড গাইড', + 'upload_docs_2' => 'সিএসভি আপলোড গাইড', + 'upload_file' => 'আপলোড করার জন্য নথি', + 'upload_reports' => 'রি্পোর্টসমূহ আপলোড করুন', + 'upload_reports_custom_forms' => 'কাস্টম ক্ষেত্র কলাম এর সাথে তাদের form_id যুক্ত থাকতে হবে। যেমনঃ কাস্টম ফিল্ড Test এবং ফর্ম ID 1 হলে কাস্টম ফিল্ড এর নাম হবে Test-1। কাস্টম ফর্ম ফিল্ড ইম্পোর্ট করার সময় নিশ্চিত করুন', + 'upload_reports_detail_1' => 'নিচের ফর্মটির মাধ্যমে আপনি ঘটনাগুলো উশাহিদি ইঞ্জিনে পাঠাতে পারবেন।', + 'upload_reports_detail_2' => 'রিপোর্টসমূহ অবশ্যই CSV অথবা XML ফরম্যাটে আপলোড করতে হবে।', + 'upload_reports_detail_3' => 'ঘটনার আইডি ইতিমধ্যে ডাটাবেসের মধ্যে উপস্থিত হলে, CSV/XML file এ এন্ট্রিগুলো উপেক্ষা করা হবে।', + 'upload_reports_detail_4' => 'এটাতে অন্তত ঘটনা শিরোনাম এবং ঘটনা তারিখ থাকতেই হবে।', + 'upload_reports_detail_4b' => 'কোন অক্ষাংশ এবং দ্রাঘিমাংশ কলাম সরবরাহ করা না হলে, অবস্থান গুগল geocoder ব্যবহার geocoded করা হবে। ', + 'upload_reports_detail_4c' => 'যদি ইম্পোর্টিং বাড়তি তথ্য যথা ব্যাক্তিগত তথ্য এবং/অথবা কাস্টম ফর্ম ফিল্ডস', + 'upload_reports_detail_4d' => 'ব্যক্তিগত তথ্যসমুহ(নাম,ডাকনাম,ইমেইল) এর মধ্য থেকে অন্তত একটি তথ্য থাকতেই হবে। শুন্য রেকর্ডগুলো ইম্পোর্ট হবে না। ', + 'upload_reports_detail_4e' => 'ড্রপডাউন ক্ষেত্র, রেডিও বাটন ও চেকবক্সের জন্য আপনার এন্ট্রি কাস্টম ক্ষেত্রের যথাযথ অপশন মেলে', + 'upload_reports_detail_4f' => 'চেকবক্স অপ্সহন গুলো কমা দিয়ে আলাদা করা। যেমন আপনার আপনি যদি আপেল, আম এবং আঙ্গুর বাছাই করেন তাহলে আপনার এন্ট্রি হতে হবে-"আপেল, আম, আঙ্গুর"', + 'upload_reports_detail_4g' => 'তারিখ ফিল্ড এর তথ্য গুলো mm/dd/yyyy এই ফরম্যাট এ হতে হবে। অর্তাথঃ 3rd October 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'একটি সিএসভি রিপোর্টের উদাহরণ', + 'upload_reports_detail_6' => '#,ঘটনা শিরোনাম, ঘটনার তারিখ, ঘটনাস্থল, বিবরন, বিভাগ, অনুমোদিত, যাচাইকৃত , অক্ষাংশ, দ্রাঘিমাংশ
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'আপলোড সফল', + 'upload_video' => 'ভিডিও আপলোড করুন', + 'url' => 'ইউআরএল', + 'user' => 'ব্যবহারকারী', + 'username' => 'ব্যবহারকারীর নাম', + 'ushahidi_admin' => 'প্রশাসন', + 'verification' => 'যাচাই করা', + 'verified' => 'যাচাই করা হয়েছে', + 'verified_reports' => 'যাচাই করা রিপোর্টসমূহ', + 'verify' => 'যাচাই করুন', + 'verify_this_report' => 'এই রিপোর্টটি যাচাই করুন', + 'version' => 'সংস্করণ', + 'via' => 'মাধ্যম', + 'video' => 'ভিডিও', + 'view' => 'মতামত', + 'views' => 'মতামতসমূহ', + 'view_all' => 'সব দেখা', + 'view_all_feeds' => 'সকল সংবাদ দেখা', + 'view_all_reports' => 'রিপোর্টসমূহ দেখা', + 'view_items' => 'আইটেম দেখা', + 'view_more' => 'আরও দেখা', + 'view_public_profile' => 'সাধারণের জন্য উন্মুক্ত প্রোফাইল দেখা', + 'view_report' => 'রিপোর্ট দেখা', + 'view_reports' => 'রিপোর্টসমূহ দেখা', + 'view_video' => 'ভিডিও দেখুন', + 'visible' => 'দর্শনযোগ্য', + 'waiting_approval' => 'অনুমোদনের অপেক্ষা', + 'waiting_verification' => 'যাচাইকরণের অপেক্ষা', + 'wider_map' => 'চওড়া মানচিত্র', + 'web_form' => 'অন্তর্জাল ফর্ম', + 'web' => 'ওয়েব', + 'weight' => 'ওজন', + 'yes' => 'হ্যাঁ', + 'yesterday' => 'গতকাল', + 'your_dashboard' => 'আপনার ড্যাশবোর্ড', + 'your_file' => 'আপনার নথি', + 'zoom_in' => 'বড় করে দেখুন', + 'zoom_out' => 'ছোট করে দেখুন', +); diff --git a/application/i18n/bs_BA/alerts.php b/application/i18n/bs_BA/alerts.php new file mode 100644 index 0000000000..c057bd8bcb --- /dev/null +++ b/application/i18n/bs_BA/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Da li ste upisali ispravan email u polje za unos email adrese?', + 'email_check' => 'Navedena email adresa je vec registrovana da prima obavjestenja o toj lokaciji.', + 'length' => 'Email polje mora imati najmanje 4 a najviše 64 znaka.', + 'required' => 'Email polje je obavezno ukoliko je oznaceno.', + ) , + 'alert_country' => array( + 'single_country' => 'Ovaj deployment pokriva samo jednu državu. Osigurajte se dali je lokacija na koju upozoravate unutar %s za tu državu.', + ) , + 'alert_lat' => array( + 'between' => 'Niste izabrali validnu lokaciju na mapi.', + 'required' => 'Niste izabrali validnu lokaciju na mapi.', + ) , + 'alert_lon' => array( + 'between' => 'Niste izabrali validnu lokaciju na mapi.', + 'required' => 'Niste izabrali validnu lokaciju na mapi.', + ) , + 'alert_mobile' => array( + 'length' => 'Čini se da polje za mobilni telefon ne sadrzi ispravan broj karaktera.', + 'mobile_check' => 'Navedeni broj je već registriran za primanje obavještenja o toj lokaciji.', + 'numeric' => 'Polje za mobitel ne sadrži ispravan broj karaktera. Molimo unesite samo brojeve uključujući i pozivni broj.', + 'one_required' => 'Morate unjeti broj vašeg mobitela ili vašu email adresu.', + 'required' => 'Polje za mobitel je obavezno ukoliko je označeno.', + ) , + 'alert_radius' => array( + 'in_array' => 'Niste označili ispravan radius na mapi.', + 'required' => 'Niste podesili svoj radius na mapi.', + ) , + 'alert_recipient' => array( + 'required' => 'Niste naveli primaoca upozorenja.', + ) , + 'alerts_subscribed' => 'Pretplatili ste se za obavijesti u sljedećim kategorijama', + 'code_already_verified' => 'Ovaj kod je vec verificiran!', + 'code_not_found' => 'Ovaj kod za verifikaciju nije pronađen! Molimo potvrdite da imate tačan URL.', + 'code_verified' => 'Vaš kod je uspješno verificiran. Od sada ćete primati upozorenja o incidentima kako se budu događali.', + 'confirm_request' => 'Za potvrdu zahtjeva za obavijesti, otidjite na', + 'create_more_alerts' => 'Vratite se na stranicu Upozorenja kako biste kreirali dodatna upozorenja', + 'email_alert_request_created' => 'Vaš zahtjev za email obavijestima je kreiran i poruka za verifikaciju je poslana na', + 'email_code' => 'Unesite email kod za potvrdu koji ste primili:', + 'email_error_head' => 'Vaš zahtjev za email obavijesti NIJE spašen!', + 'email_ok_head' => 'Vaš zahtjev za email obavijesti je spašen!', + 'error' => 'Sistem nije bio u mogucnosti da procesira Vas zahtjev za potvrdom!', + 'mobile_alert_request_created' => 'Vasa Mobilna Aplikacija Upozorenja je kreirana i poslata je poruka upozorenja', + 'mobile_code' => 'Unesite SMS kod za potvrdu koji ste primili:', + 'mobile_error_head' => 'Vaš zahtjev za upozorenje preko mobilnog telefona NIJE snimljen!', + 'mobile_ok_head' => 'Vaš Zahtjev za upozorenje preko mobilnog telefona je snimljen!', + 'settings_error' => 'Ovaj deployment nije setovan za ispravno procesiranje upozorenja', + 'unsubscribe' => 'Dobili ste ovu poruku jer ste se prijavili da primate obavjesti. Ukoliko ubuduce ne zelite primati ovakve poruke idite na', + 'unsubscribed' => 'Nećeš iše primati upozorenja od', + 'unsubscribe_failed' => 'Nismo bili u mogucnosti da Vas odjavimo. Molimo Vas potvrdite da Vam je URL ispravan.', + 'verification_email_subject' => 'obavijesti - verifikacija', + 'verify_code' => 'Necete primati obavjesti na navedenoj lokaciji dok ne potvrdite zahtjev', +); diff --git a/application/i18n/bs_BA/auth.php b/application/i18n/bs_BA/auth.php new file mode 100644 index 0000000000..42d04e50ac --- /dev/null +++ b/application/i18n/bs_BA/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Email adresa koja je unesena nije validna.', + 'exists' => 'Žao nam je, za Vaš email je već registrovan korisnički račun.', + 'length' => 'Polje email mora sadžavati najmanje 4, a najviše 64 karaktera.', + 'required' => 'Polje email je obavezno.', + ) , + 'name' => array( + 'length' => 'Polje ime, mora sadržavati najmanje 3, a najviše 100 karaktera.', + 'required' => 'Polje ime je obavezno.', + 'standard_text' => 'Polje korisničko ime sadrži nedopuštene znakove.', + ) , + 'current_password' => array( + 'length' => 'Vaša šifra mora sadržati najmanje 8 znakova.', + 'login error' => 'Provjerite da li ste unijeli tačan email i šifru.', + 'matches' => 'Unesite istu šifru u oba polja pod nazivom šifra.', + 'required' => 'Polje šifra je obavezna.', + 'alpha_dash' => 'Polje šifra mora da sadrži jedino alfabetske znakove, # i @simbole, brojeve i crtice', + 'incorrect' => 'Unijeli ste pogrešnu šifru. Molimo Vas pokušajte ponovo.', + ) , + 'new_password' => array( + 'length' => 'Vaša šifra mora sadržati najmanje 8 znakova.', + 'login error' => 'Provjerite da li ste unijeli tačan email i šifru.', + 'matches' => 'Unesite istu šifru u oba polja pod nazivom šifra.', + 'required' => 'Polje šifra je obavezna.', + 'alpha_dash' => 'Polja za lozinku moraju sadrzavati jedino slova, potom simbole # i @, brojeve, znakove i crtice', + ) , + 'password' => array( + 'default' => 'Prilikom vase prijave pojavila se greska.', + 'length' => 'Vaša šifra mora sadržati najmanje 8 znakova.', + 'login error' => 'Molimo, provjerite da li ste unijeli ispravan email i šifru.', + 'matches' => 'Unesite istu šifru u oba polja pod nazivom šifra.', + 'required' => 'Polje šifra je obavezna.', + 'riverid server down' => 'Server za autentifikaciju ne radi trenutno. Molimo Vas pokusajte kasnije.', + 'riverid' => '%s', + 'alpha_dash' => 'Polja za lozinku moraju sadrzavati jedino slova, potom simbole # i @, brojeve, znakove i crtice', + ) , + 'password_confirm' => array( + 'matches' => 'Polje potvrdi šifru mora odgovarati polju šifra.', + ) , + 'resetemail' => array( + 'email' => 'Email koji ste unijeli nije ispravna email adresa.', + 'invalid' => 'Žao nam je, unijeli ste nepostojeću email adresu.', + 'required' => 'Polje email je obavezno.', + ) , + 'role' => array( + 'superadmin_modify' => 'Jedino super-administrator moze kreirati izmjene ili unaprijediti korisnika u status administratora', + ) , + 'roles' => array( + 'alpha_numeric' => 'Invalidni format', + 'length' => 'Polje uloge mora biti najmanje 5 i ne duze od 30 karaktera dugo', + 'required' => 'Morate definirati najmanje jednu ulogu', + 'values' => 'Morate odabrati bilo ADMIN ili KORISNIK ulogu', + ) , + 'token' => array( + 'invalid' => 'Zaboravljeni token lozinke nije validan', + 'required' => 'Unos zaboravljenog tokena lozinke je obavezno', + ) , + 'username' => array( + 'admin' => 'Uloga administratora ne moze biti modificirana', + 'alpha_numeric' => 'Javni URL profil moze sasdrzavati jedino brojeve i slova', + 'exists' => 'Oprostite, ovaj javni URL profil je vec u upotrebi', + 'length' => 'Javni URL profil mora biti najmanje 2 i ne vise od 100 karaktera dug', + 'login error' => 'Molimo Vas da provjerite da li ste unijeli ispravan javni URL profil', + 'required' => 'Polje javnog URL profila je obavezno', + 'superadmin' => 'uloga super administratora se ne moze modificirati', + 'csrf' => 'Moguci CSRF napad. Da li ste zaista zeljeli kreirati/izmjeniti korisnika?', + ) , +); diff --git a/application/i18n/bs_BA/bug.php b/application/i18n/bs_BA/bug.php new file mode 100644 index 0000000000..72c11518a5 --- /dev/null +++ b/application/i18n/bs_BA/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Unesite važeći sigurnosni kod.', + 'required' => 'Unesite važeći kod.', + ) , + 'email' => array( + 'email' => 'Polje za e-mail ne sadrži važeću e-mail adresu?', + 'length' => 'E-mail mora da sadrži najmanje 4 i ne više od 64 znaka.', + 'required' => 'E-mail je neophodan ukoliko je kućica označena kvačicom.', + ) , + 'error' => array( + 'required' => 'Neophodno je polje za greške.', + ) , + 'subject' => array( + 'length' => 'Naslov mora imati najmanje 3 znaka.', + 'required' => 'Neophodno je polje za naslov.', + ) , + 'yourname' => array( + 'length' => 'Ime mora da ima najmanje 3 znaka.', + 'required' => 'Polje za ime je neophodno.', + ) , +); diff --git a/application/i18n/bs_BA/category.php b/application/i18n/bs_BA/category.php new file mode 100644 index 0000000000..ef073f7b61 --- /dev/null +++ b/application/i18n/bs_BA/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Označeno polje mora imati 6 znakova', + 'required' => 'Označeno polje je obavezno', + ) , + 'category_description' => array( + 'required' => 'Opis je obavezan', + ) , + 'category_image' => array( + 'size' => 'Provjerite da slika koju želite postaviti ne prelazi 50K', + 'type' => 'Polje slika ne sadrži ispravnu sliku. Prihvaćeni formati slika su .JPG, .PNG i . GIF.', + 'valid' => 'Polje slika ne sadrži ispravnu datoteku', + ) , + 'category_title' => array( + 'length' => 'Naslov mora imati najmanje 3, a najviše 80 znakova', + 'required' => 'Naslov je obavezan', + ) , + 'parent_id' => array( + 'already_parent' => 'Ne možeš podkategorizirat kategoriju koja ima podkategorije.', + 'exists' => 'Odabarana kategorija ne postoji', + 'numeric' => 'Glavna kategorija mora biti numerička', + 'parent_trusted' => 'Glavna kategorija nemože biti specijalna kategorija', + 'required' => 'Odabir glavne kategorije je obavezan', + 'same' => 'Kategorija i glavna kategorija ne mogu biti iste.', + 'special' => 'Posebne kategorije ne mogu biti podkategorizirane.', + ) , +); diff --git a/application/i18n/bs_BA/comments.php b/application/i18n/bs_BA/comments.php new file mode 100644 index 0000000000..bc9ec3f099 --- /dev/null +++ b/application/i18n/bs_BA/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Unesite ispravan sigurnosni kod', + 'required' => 'Unesite sigurnosni kod', + 'valid' => 'Unijeli ste pogrešan sigurnosni kod', + ) , + 'comment_author' => array( + 'length' => 'Polje ime zahtjeva najmanje 3 znaka', + 'required' => 'Ime je obavezno', + ) , + 'comment_description' => array( + 'required' => 'Komentari su obavezni', + ) , + 'comment_email' => array( + 'email' => 'Vaša Email adresa je pogrešno unešena', + 'length' => 'Polje Email zahtjeva najmanje 4 znaka, a najviše 64 znaka.', + 'required' => 'Unesite email adresu ukoliko je kockica oznacena.', + ) , +); diff --git a/application/i18n/bs_BA/contact.php b/application/i18n/bs_BA/contact.php new file mode 100644 index 0000000000..1e66796d9f --- /dev/null +++ b/application/i18n/bs_BA/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Unesite ispravan sigurnosni kod.', + 'valid' => 'Unesite ispravan sigurnosni kod.', + 'required' => 'Unesite sigurnosni kod.', + ) , + 'contact_email' => array( + 'email' => 'Provjerite Vašu Email adresu.', + 'length' => 'Polje Email mora imati najmanje 4, a najviše 64 znakova.', + 'required' => 'Email polje je obavezno ako je checkbox obilježen.', + ) , + 'contact_message' => array( + 'required' => 'Polje poruke je obavezno.', + ) , + 'contact_name' => array( + 'length' => 'Polje ime zahtjeva najmanje 3 znaka.', + 'required' => 'Ime je obavezno.', + ) , + 'contact_subject' => array( + 'length' => 'Polje predmet zahtjeva najmanje 3 znaka.', + 'required' => 'Polje predmet je obavezno.', + ) , + 'email_send' => array( + 'failed' => 'Došlo je do greške prilikom slanja Vaše poruke.', + ) , +); diff --git a/application/i18n/bs_BA/core.php b/application/i18n/bs_BA/core.php new file mode 100644 index 0000000000..4921548225 --- /dev/null +++ b/application/i18n/bs_BA/core.php @@ -0,0 +1,35 @@ + 'konfiguracijska datoteka', + 'controller' => 'kontroler', + 'driver' => 'drajver', + 'driver_implements' => 'Drajver "%s" za "%s" biblioteku mora biti implementiran u "%s" interfejsu.', + 'driver_not_found' => '"%s" drajver za "%s" biblioteku nije pronađen.', + 'errors_disabled' => 'Može te otvoriti naslovnu stranicu ili pokušati ponovo', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Nemoguće izvršiti zahtjev.', + 'helper' => 'pomoćnik', + 'invalid_filetype' => 'Traženi tip podatka, .%s, nije dozvoljen u konfiguracijskoj datoteci.', + 'invalid_method' => 'Ne postojeća metoda %s pozvana u %s', + 'invalid_property' => 'Atribut "%s" ne postoji u klasi "%s".', + 'library' => 'biblioteka', + 'log_dir_unwritable' => 'Log direktorij nije zaključan: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi nije mogao odrediti kontroler za procesiranje upita: "%s"', + 'no_default_route' => 'Molimo podesi te početnu rutu u "config/routes.php"', + 'page_not_found' => 'Stranica koju ste tražili, %s, nije pronađena.', + 'report_bug' => 'Prijavi ovaj problem Ushahidi-u', + 'resource_not_found' => 'Upit "%s", "%s", nije mogao biti pronađen.', + 'stack_trace' => 'Prateća Poruka', + 'stats_footer' => 'Učitano za {execution_time} s. , korišteno {memory_usage} memorije. Generisano sa Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Može biti samo jedna instanca Ushahidi po upitu.', + 'uncaught_exception' => 'Neuhvaćen %s: %s u datoteci %s na liniji %s', + 'view' => 'pogled', + 'view_set_filename' => 'Mora te podesiti naziv "view" datoteke prije početka render-a.', +); diff --git a/application/i18n/bs_BA/database.php b/application/i18n/bs_BA/database.php new file mode 100644 index 0000000000..a33fef71a2 --- /dev/null +++ b/application/i18n/bs_BA/database.php @@ -0,0 +1,10 @@ + 'Greška baze podataka. %s', + 'table_not_found' => 'Tabla "%s" nemože biti nađena u bazi podataka. Molimo Vas provjerite da koristite poslednju verziju baze podataka za ovo izdanje Ushahidi.', +); diff --git a/application/i18n/bs_BA/datetime.php b/application/i18n/bs_BA/datetime.php new file mode 100644 index 0000000000..542e685f5e --- /dev/null +++ b/application/i18n/bs_BA/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Pet', + 'full' => 'Petak', + ) , + 'monday' => array( + 'abbv' => 'Pon', + 'full' => 'Ponedjeljak', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sub', + 'full' => 'Subota', + ) , + 'sunday' => array( + 'abbv' => 'Ned', + 'full' => 'Nedjelja', + ) , + 'thursday' => array( + 'abbv' => 'Čet', + 'full' => 'Četvrtak', + ) , + 'tuesday' => array( + 'abbv' => 'Uto', + 'full' => 'Utorak', + ) , + 'wednesday' => array( + 'abbv' => 'Sri', + 'full' => 'Srijeda', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Januar', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februar', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Mart', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'Maj', + 'full' => 'Maj', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juni', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juli', + ) , + 'august' => array( + 'abbv' => 'Avg', + 'full' => 'Avgust', + ) , + 'september' => array( + 'abbv' => 'Sept', + 'full' => 'Septembar', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Oktobar', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novembar', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'Decembar', + ) , +); diff --git a/application/i18n/bs_BA/feeds.php b/application/i18n/bs_BA/feeds.php new file mode 100644 index 0000000000..a7f8b87277 --- /dev/null +++ b/application/i18n/bs_BA/feeds.php @@ -0,0 +1,19 @@ + 'DATUM', + 'feed_name' => array( + 'length' => 'Polje za unošenje imena ne sme biti kraće od 3 i duže od 70 karaktera.', + 'required' => 'Molimo vas, upišite ime unosa.', + ) , + 'feed_url' => array( + 'required' => 'Molimo vas, upišite URL adresu unosa.', + 'url' => 'Molimo vas unesite validnu URL adresu, na primjer, http://www.ushahidi.com', + ) , + 'source' => 'IZVOR', + 'title' => 'Naslov', +); diff --git a/application/i18n/bs_BA/footer.php b/application/i18n/bs_BA/footer.php new file mode 100644 index 0000000000..5888fb6112 --- /dev/null +++ b/application/i18n/bs_BA/footer.php @@ -0,0 +1,9 @@ + 'php5-curl nije instaliran', +); diff --git a/application/i18n/bs_BA/form.php b/application/i18n/bs_BA/form.php new file mode 100644 index 0000000000..1cdb8c8705 --- /dev/null +++ b/application/i18n/bs_BA/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Postavljena vrijednost namjenjena za polje je nevažeća.', + 'length' => 'Polje Ime treba da sadrži najmanje 3 i ne više od 200 karaktera. ', + ) , + 'field_height' => array( + 'between' => 'Unesite vrijednost od 0 do 50 u polje Visina', + ) , + 'field_isdate' => array( + 'between' => 'Unesena je pogrešna vrijednost za polje Datum.', + 'required' => 'Molimo izaberi Da ili Ne za polje Datum.', + ) , + 'field_name' => array( + 'length' => 'Polje Ime treba da sadrži najmanje 3 i ne više od 100 karaktera. ', + 'required' => 'Molimo unesite ime polja. ', + 'duplicate' => 'Na formularu već postoji polje sa tim imenom. Molimo vas da odaberete drugo ime.', + ) , + 'field_required' => array( + 'between' => 'Unijeli ste nevažeću vrijednost za potrebno polje.', + 'required' => 'Molimo odaberite Da ili Ne za potrebno polje.', + ) , + 'field_type' => array( + 'numeric' => 'Molimo odaberite valjanu vrstu polja.', + 'required' => 'Molimo odaberite vrstu polja.', + ) , + 'field_width' => array( + 'between' => 'Unesite vrijednost od 0 do 300 za širinu polja.', + ) , + 'form_description' => array( + 'required' => 'Molimo unesite opis obrasca.', + ) , + 'form_id' => array( + 'default' => 'Zadani oblik se ne može izbrisati.', + 'numeric' => 'Molimo odaberite koju formu dodati ovom polju.', + 'required' => 'Molimo odaberite koju formu dodati ovom polju.', + ) , + 'form_title' => array( + 'length' => 'Forma naziva polja mora da sadrži najmanje 3 i ne više od 100 karaktera.', + 'required' => 'Unesite naziv obrasca.', + 'exists' => 'Već postoji formular sa tim naslovom. Molimo vas da odaberete drugi naslov.', + ) , +); diff --git a/application/i18n/bs_BA/imap.php b/application/i18n/bs_BA/imap.php new file mode 100644 index 0000000000..4fb287884e --- /dev/null +++ b/application/i18n/bs_BA/imap.php @@ -0,0 +1,10 @@ + 'Ne može otvoriti IMAP stream.', + 'unsupported_service' => 'Email usluga nije podržana.', +); diff --git a/application/i18n/bs_BA/installer.php b/application/i18n/bs_BA/installer.php new file mode 100644 index 0000000000..c9fd646d27 --- /dev/null +++ b/application/i18n/bs_BA/installer.php @@ -0,0 +1,81 @@ + 'Putanja do baze podataka', + 'database' => 'Baza podataka ', + 'database_host' => 'Baza podataka', + 'database_host_description' => 'Ako koristi te Ushahidi na vašem lokalnom računaru, ovo će najvjerovatnije biti "localhost". Ako koristi te Ushahidi sa web servera, onda ćete dobiti podatke od vašeg web server poslužitelja.', + 'database_name' => 'Naziv baze podataka ', + 'database_name_description' => 'Naziv baze podataka za Ushahidi koju želi te korititi', + 'db_information_link' => 'Za više informacija o bazi podataka molimo provjeri te ovdje.', + 'default_language' => 'Osnovni Jezik (lokalni)', + 'default_language_description' => 'Svaka instalacija Ushahidi-a dolazi sa nekoliko različitih prijevoda. Vi takođe može te dodati vaš prijevod.', + 'disable' => 'Onemogući', + 'enable' => 'Omogući', + 'error_summary' => 'Ispod su ispisane greške na koje smo naišli.', + 'files_location_text' => 'Lokacija na vašem serveru gdje ste smjestili Ushahidi datoteke. Ova vrijednost je automatski detektovana, molimo provjeri te njenu ispravnost. Ako je polje prazno, to znači da je Ushahidi instaliran u početni direktorij.', + 'finished' => 'Završeno', + 'general' => 'Općenito', + 'google_key' => 'Google API Ključ', + 'google_key_description' => 'Bilo ko može preuzeti API ključ. Preuzmi te vaš', + 'go_back' => 'Idi nazad', + 'index' => array( + 'advanced' => 'Napredna instalacija', + 'advanced_installation_description' => 'Preuzmi sve osnovne postavke koje su unjete u ovom procesu od 5 koraka. To podrazumjeva server, mapu, naziv sajta i kontakt podatke.', + 'basic_installation' => 'Osnovna instalacija', + 'basic_installation_description' => 'Jednostavno i brzo. Sve što treba te je početni direktorij vaše web stranice i login za vašu bazu podataka. Izaberi te ovu opciju ako želi te brzo i jednostavno započeti, sve ostalo uvijek može te podesiti naknadno.', + 'proceed' => 'Nastavi', + 'welcome' => 'Dobro došli. Ushahidi proces instalacije. +Odaberi te koju vrstu instalacije želi te koristiti.', + ) , + 'installation_successful' => 'Uspješna instalacija', + 'mail_server' => 'Mail Server', + 'mail_server_host' => 'Adresa Mail Servera', + 'mail_server_host_description' => 'Ukoliko koristite Gmail, Hotmail ili Yahoo Mail, unesite puno ime vaše email adrese kao korisničko ime', + 'mail_server_password' => 'Lozinka za Mail Server', + 'mail_server_password_description' => 'Lozinka koju obično koristite za prijavu na svoj email', + 'mail_server_port' => 'Port za Mail Server', + 'mail_server_port_description' => 'Uobičajeni Portovi: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Vrsta Mail Servera', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) ili Post Office Protocol (POP). Šta je razlika?', + 'mail_server_username' => 'Korisničko ime za Mail Server', + 'mail_server_username_description' => 'Ukoliko koristite Gmail, Hotmail ili Yahoo Mail, unesite puno ime vase email adrese kao korisničko ime', + 'map' => 'Mapa', + 'map_provider' => 'Poslužitelj za Mape', + 'map_provider_description' => 'Ushahidi radi podjednako dobro sa bilo kojim od ova tri poslužitelja za mape: Google, Bing or Open Street Map. Odaberi te onaj koji ima najviše detaljnih i tačnih informacija u vašem području.', + 'other_steps' => 'Drugi koraci', + 'password' => 'Lozinka', + 'password_description' => 'Lozinka veše baze podataka', + 'previous' => 'Predhodni', + 'restart_apache' => 'Molimo, restartuj te vaš Apache web server', + 'select_mail_server_ssl' => 'Omogući te ili onemogući te SSL', + 'select_mail_server_ssl_description' => 'Neki mail serveri vam omogućavaju korištenje SSL-a prilikom konektovanja. Korištenje SSL-a je preporučeno radi višeg stepena sigurnosti.', + 'setup_sms' => 'Podesi te vaš SMS server', + 'site_email' => 'Sajt Email adresa', + 'site_email_alerts' => 'Sajt Email adresa za obavijesti', + 'site_email_alerts_description' => 'Posjetioci vašeg web sajta će sa ove email adrese primati obavijesti na koje se prijave. Ova adresa ne mora biti ista kao "Sajt Email adresa".', + 'site_email_description' => 'Sva email komunikacija će biti preusmjeravana na ovu adresu.', + 'site_name' => 'Naziv sajta', + 'site_name_description' => 'Puni naziv vašeg sajta', + 'site_tagline' => 'Slogan stranice', + 'site_tagline_description' => 'Vas slogan', + 'summary' => array( + 'text_1' => 'Datoteke i mape koje se nalaze dolje trebaju biti ispisani od strane vaseg internet servera.', + 'text_2' => '

Ovdje se nalaze uputstva za mijenjanje dozvola za upravljanje fajlovima:

', + 'text_3' => 'Prije nego sto pocnete, moracete biti sigurni da su slijedece datoteke i mape ispisane od strane Vaseg internet servera. Ovo ukljucuje i promjenu dozvole za koristenje datoteke.', + 'text_4' => 'Za kompletiranje procesa instalacije, potrebne su vam slijedeće informacije.', + ) , + 'table_prefix' => 'Prefiks table', + 'table_prefix_description' => 'Inače ne bi trebalo mijenjati prefiks table. Ali ako želite nekoliko instalacija Ushahidi na jednoj bazi podataka, onda promijenite prefiks table ovdje.', + 'title' => 'Naslov', + 'to_login' => 'Za prijavu, idi na', + 'upload_data' => 'Ubacite podatke o izvjescu.', + 'username' => 'Korisničko ime', + 'username_description' => 'Korisničko ime vaše baze podataka', + 'use_credentials' => 'i upotrijebite slijedece akreditive.', + 'view_site' => 'Poledaj svoju stranicu.', +); diff --git a/application/i18n/bs_BA/layer.php b/application/i18n/bs_BA/layer.php new file mode 100644 index 0000000000..e23dde9ef7 --- /dev/null +++ b/application/i18n/bs_BA/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Označeno polje ', + 'required' => 'Označeno polje mora imati 6 znakova.', + ) , + 'layer_file' => array( + 'type' => 'Polje datoteke ne pokazuje da sadrži važeći dokument. Jedini prihvaćeni formati su .KMZ i .KML ', + 'valid' => 'Polje datoteke ne pokazuje da sadrži važeći dokument. ', + ) , + 'layer_name' => array( + 'length' => 'Naziv polja mora da sadrži najmanje 3 i ne više od 80 znakova. ', + 'required' => 'Naziv polja je potreban.', + ) , + 'layer_url' => array( + 'atleast' => 'Obavezan KML URL ili fajl.', + 'both' => 'Ne možete imati oboje i KML dokument i URL. ', + 'url' => 'Molim unesite važeći URL, npr. http://www.ushahidi.com/layerl.kml ', + ) , +); diff --git a/application/i18n/bs_BA/libraries.php b/application/i18n/bs_BA/libraries.php new file mode 100644 index 0000000000..021518bc63 --- /dev/null +++ b/application/i18n/bs_BA/libraries.php @@ -0,0 +1,27 @@ + 'Nije uspjela konekcija na Aksimet server.', + 'akismet_cannot_retrieve' => 'Odgovor od Aksimet servera nije primljen.', + 'api_library_not_found' => 'API biblioteka: %s za %s kalsu nije nađena. Molimo provjerite API i njegovu tabelu smjerenja poslova. ', + 'askimet_invalid_apikey' => 'Vaš Aksimet API ključ nije validan.', + 'clickatell_fopen_error' => 'Greška u izvršavanju metode slanja fopen!
Provjerite dali PHP ima OpenSSL podršku i dali je verzija PHP-a novija od 5.2.', + 'clickatell_message_too_long' => 'Vaša unicode poruka je previše duga! ( Trenutna dužina=', + 'clickatell_no_destination_address' => 'Molimo definišite destinacijsku adresu (ZA)!', + 'clickatell_no_sender_address' => 'Molimo definišite adresu izvora (OD)!', + 'clickatell_unicode_message_too_long' => 'Vaša unicode poruka je previše duga! ( Trenutna dužina=', + 'clickatell_unsupported_method' => 'Nepodržani metod slanja!', + 'invalid_api_library' => 'Vrijednosti %s u API biblioteci nisu validne. Sve API biblioteke moraju biti potklase %s-a.', + 'upgrade_directory_not_deleted' => 'Directorij %s ne može biti obrisan.', + 'upgrade_extracting_error' => 'Grška prilikom raspakivanja: %s', + 'upgrade_failed' => 'Preuzimanje poslljednjeg Ushahidi nije uspješno. HTTP statusni kod', + 'upgrade_file_not_copied' => 'Fajl %s ne može biti kopiran.', + 'upgrade_file_not_deleted' => 'Fajl %s ne može biti obrisan.', + 'upgrade_title' => 'Skripta za Ushahidi nadogradnju', + 'upgrade_zip_error' => 'Preuzeti Ushahidi zip fajl %s, ne može biti zapisan.', + 'riverid_variable_not_available' => '%s nije dostupni u RiverID klasi.', +); diff --git a/application/i18n/bs_BA/maintenance.php b/application/i18n/bs_BA/maintenance.php new file mode 100644 index 0000000000..5008b90c8e --- /dev/null +++ b/application/i18n/bs_BA/maintenance.php @@ -0,0 +1,9 @@ + 'Izvinjavamo se što stranica trenutno nije dostupna zbog održavanja. Molimo da pokušate za nekoliko minuta.', +); diff --git a/application/i18n/bs_BA/message.php b/application/i18n/bs_BA/message.php new file mode 100644 index 0000000000..390da0bc6c --- /dev/null +++ b/application/i18n/bs_BA/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Molimo unesite ispravan sigurnosni kod.', + 'required' => 'Molimo unesite sigurnosni kod.', + ) , + 'email' => array( + 'email' => 'Molimo provjerite da li je unesena ispravna email adresa.', + 'length' => 'Email adresa mora imati minimalno 4 i maksimalno 64 znaka.', + 'required' => 'Unesite email adresu ukoliko je kockica oznacena.', + ) , + 'message' => array( + 'required' => 'Polje sa komentarima mora biti popunjeno.', + ) , + 'name' => array( + 'length' => 'Ime mora imati minimalno 3 znaka.', + 'required' => 'Polje sa imenom mora biti popunjeno.', + ) , + 'phone' => array( + 'length' => 'Telefonski broj nije ispravan.', + ) , +); diff --git a/application/i18n/bs_BA/mhi.php b/application/i18n/bs_BA/mhi.php new file mode 100644 index 0000000000..0e16592e80 --- /dev/null +++ b/application/i18n/bs_BA/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Molimo vas da unesite validan sigurnosti kod', + 'required' => 'Molim vas unesite validnu sigurnosnu šifru.', + ) , + 'contact_email' => array( + 'email' => 'Ovo email polje ne pokazuje validnu email adresu.', + 'required' => 'Molim vas unesite validnu email adresu.', + ) , + 'contact_message' => array( + 'required' => 'Obavezno ispunite polje poruke', + ) , + 'contact_subject' => array( + 'length' => 'Polje predmeta mora sadržavati najmanje 3 slova.', + 'required' => 'Polje predmet je obavezan.', + ) , +); diff --git a/application/i18n/bs_BA/notifications.php b/application/i18n/bs_BA/notifications.php new file mode 100644 index 0000000000..e957e2f949 --- /dev/null +++ b/application/i18n/bs_BA/notifications.php @@ -0,0 +1,35 @@ + 'Ova poruka je poslata sa vaše web stranice.', + 'admin_login_url' => 'Prijava Administratora', + 'admin_new_comment' => array( + 'message' => 'Novi komentar je postavljen na vašoj web stranici kao odgovor na:', + 'subject' => 'Novi komentar', + ) , + 'admin_new_email' => array( + 'message' => 'Nova e-mail poruka je poslana na vašoj web stranici.', + 'subject' => 'Nova e-mail poruka', + ) , + 'admin_new_report' => array( + 'message' => 'Novi izvještaj je podnešen na vašoj web stranici', + 'subject' => 'Novi izvještaj', + ) , + 'admin_new_sms' => array( + 'message' => 'Nova tekstualna poruka je podnešena na vašoj web stranici.', + 'subject' => 'Nova tekstualna poruka', + ) , + 'member_new_alert' => array( + 'message' => 'Primiliste ste novo upozorenje', + 'subject' => 'Novo upozorenje', + ) , + 'member_new_message' => array( + 'message' => 'Dobili ste privatnu poruku', + 'subject' => 'Nova privatna poruka', + 'footer' => 'Za odgovor molimo idete na:', + ) , +); diff --git a/application/i18n/bs_BA/page.php b/application/i18n/bs_BA/page.php new file mode 100644 index 0000000000..dabf766620 --- /dev/null +++ b/application/i18n/bs_BA/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Molimo unesite naziv stranice', + 'length' => 'Naslov stranice mora biti dug najmanje 3, a najviše 150 karaktera ', + ) , + 'page_tab' => array( + 'required' => 'Molimo unesite naziv taba stranice', + ) , + 'page_description' => array( + 'required' => 'Unesite opis stranice', + ) , +); diff --git a/application/i18n/bs_BA/permissions.php b/application/i18n/bs_BA/permissions.php new file mode 100644 index 0000000000..6479a88eda --- /dev/null +++ b/application/i18n/bs_BA/permissions.php @@ -0,0 +1,26 @@ + 'Pogledaj izvjestaje', + 'reports_edit' => 'Napravi/Izmjeni/izbriši izvještaj', + 'reports_approve' => 'Odobri izvjestaj', + 'reports_verify' => 'Potvrdi izvjestaj', + 'reports_comments' => 'Upravljajte komentarima na izvještaje', + 'reports_download' => 'Preuzeti izvještaj', + 'reports_upload' => 'Učitaj izvješća.', + 'messages' => 'Upravljanje porukama', + 'messages_reporters' => 'Upravljajte poruke izvještavača', + 'stats' => 'Pogledaj statistiku.', + 'settings' => 'Modifikacija postavki', + 'manage' => 'Upravjlajte panelom', + 'users' => 'Upravljanje korisnicima', + 'manage_roles' => 'Uredi uloge.', + 'checkin' => 'Može se prijaviti', + 'checkin_admin' => 'Upravljajte prijave', + 'admin_ui' => 'Administratorski pristup UI', + 'member_ui' => 'Korisnički pristup UI', +); diff --git a/application/i18n/bs_BA/private_message.php b/application/i18n/bs_BA/private_message.php new file mode 100644 index 0000000000..709b77263b --- /dev/null +++ b/application/i18n/bs_BA/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Osnovni ID mora biti numerički', + ) , + 'private_to' => array( + 'required' => 'Prema polje je obavezno', + 'exists' => 'Korisnik kome pokušavate poslati poruku ne postoji.', + ) , + 'private_subject' => array( + 'required' => 'Obavezan unos predmeta poruke', + 'length' => 'Predmet mora sadržavati od 3 do 150 karaktera', + ) , + 'private_message' => array( + 'required' => 'Polje za poruku je obavezno', + ) , +); diff --git a/application/i18n/bs_BA/report.php b/application/i18n/bs_BA/report.php new file mode 100644 index 0000000000..cd2b53d339 --- /dev/null +++ b/application/i18n/bs_BA/report.php @@ -0,0 +1,141 @@ + 'graška! + + +detalji prijedlozi istorija', + 'country_name' => array( + 'single_country' => 'Ova implementacija proteže se unutar jedne zemlje samo. Molimo provjerite izvješće lokacija unutar države %s.', + ) , + 'custom_field' => array( + 'numeric' => 'Polje "%s" mora biti numeričko.', + 'required' => 'Polje "%s" je obavezno.', + 'not_exist' => '"%s" polje ne postoji.', + 'permission' => 'Polje "%s" nije moguće mijenjati sa tvojim nalogom.', + 'email' => 'Polje "%s" ne sadrži ispravnu e-mail adresu. ', + 'phone' => 'Polje "%s" mora sadržati ispravan broj telefona.', + 'date_mmddyyyy' => 'Polje "%s" mora sadr\\ati ispravan datum (d.m.YYYY).', + 'date_ddmmyyyy' => 'Polje "%s" mora sadr\\ati ispravan datum (d.m.YYYY).', + ) , + 'data_include' => array( + 'between' => 'Molimo obilježite važeću stavku da je uključite u preuzimanje.', + 'numeric' => 'Molimo obilježite važeću stavku da je uključite u preuzimanje.', + ) , + 'data_active' => array( + 'between' => 'Odaberite "Izvješća čekaju odobrenje" ili "Odobrena izvješća" ili oboje.', + 'numeric' => 'Odaberite "Izvješća čekaju odobrenje" ili "Odobrena izvješća" ili oboje.', + 'required' => 'Odaberite "Izvješća čekaju odobrenje" ili "Odobrena izvješća" ili oboje.', + ) , + 'data_verified' => array( + 'between' => 'Odaberite "Izvješća čekaju potvrdu" ili "Potvrđena izvješća" ili oboje.', + 'numeric' => 'Odaberite "Izvješća čekaju potvrdu" ili "Potvrđena izvješća" ili oboje.', + 'required' => 'Odaberite "Izvješća čekaju potvrdu" ili "Potvrđena izvješća" ili oboje.', + ) , + 'data_point' => array( + 'between' => 'Molimo odaberite važeći tip izvještaja za preuzimanje.', + 'numeric' => 'Molimo odaberite važeći tip oizvještaja za preuzimanje.', + 'required' => 'Molimo odaberite važeći tip izvještaja za preuzimanje.', + ) , + 'format' => array( + 'required' => 'Morate izabrati format snimanja. Izaberite ili CSV ili XML.', + 'valid' => 'Molimo vas da odaberete validni format za snimanje vaših izvještaja na', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Polje OD kojeg datuma ne sadrži validni datum.', + 'range' => 'Unesite validni datum u polje OD kojeg datuma. Datum ne može biti kasnije od današnjeg datuma.', + ) , + 'incident_active' => array( + 'between' => 'Molimo unesite ispravnu vrijednost za odobri ovaj izvještaj', + 'required' => 'Molimo unesite ispravnu vrijednost za odobri ovaj izvještaj', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Am/pm polje ne sadrži ispravnu vrijednost.', + ) , + 'incident_category' => array( + 'numeric' => 'Polje "Kategorije" ne pokazuje da sadrži ispravnu kategoriju.', + 'required' => 'Polje "Kategorije" je obavezno.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Polje datum ne pokazuje da sadrži ispravan datum. ', + 'date_mmddyyyy' => 'Polje datum ne pokazuje da sadrži ispravan datum.', + 'required' => 'Polje datum je obavezno.', + ) , + 'incident_description' => array( + 'required' => 'Polje "Opis" je obavezno.', + ) , + 'incident_hour' => array( + 'between' => 'Polje sat ne pokazuje da sadrži ispravan sat. ', + 'required' => 'Polje sati je obavezno.', + ) , + 'incident_information' => array( + 'alpha' => 'Molimo unesite ispravnu vrijednost za informacijske vjerojatnosti.', + 'length' => 'Molimo unesite ispravnu vrijednost za informacijske vjerojatnosti.', + ) , + 'incident_minute' => array( + 'between' => 'Polje minute ne pokazuje da sadrži ispravnu vrijednost.', + 'required' => 'Polje minuta je obavezno.', + ) , + 'incident_news' => array( + 'url' => 'Polje izvori linkova vijesti ne sadrži ispravan URL. ', + ) , + 'incident_photo' => array( + 'size' => 'Molimo osigurajte da je postavljena fotografija veličine do 2 MB.', + 'type' => 'Polje postavljanje fotografija ne sadrži ispravnu fotografiju. Jedini prihvaćeni formati su .JBG, .PNG i .GIF.', + 'valid' => 'Polje postavljanje fotografija ne sadrži ispravan dokument. ', + ) , + 'incident_source' => array( + 'alpha' => 'Unesite važeću vrijednost za izvor pouzdanosti.', + 'length' => 'Unesite važeću vrijednost za izvor pouzdanosti.', + ) , + 'incident_title' => array( + 'length' => 'Polje "Naslov izvješća" mora da sadrži najmanje 3 i ne više od 200 karaktera.', + 'required' => 'Polje "naslov prijave" je obavezno.', + 'csrf' => 'Mogući CSRF napad. Jeste li stvarno htjeli kreirati / urediti ​​izvješće?', + ) , + 'incident_verified' => array( + 'between' => 'Molimo unesite ispravnu vrijednost za Provjeri ovaj izvještaj.', + 'required' => 'Molimo unesite ispravnu vrijednost za Provjeri ovaj izvještaj.', + ) , + 'incident_video' => array( + 'url' => 'Polje Video poveznice ne sadrže ispravan URL.', + ) , + 'latitude' => array( + 'between' => 'Polje za unos geografske širine ne sadrži validnu vrijednost geografske širine.', + 'required' => 'Unošenje geografske širine je obavezno. Kliknite na mapu kako bi odredili tačnu lokaciju.', + ) , + 'locale' => array( + 'alpha_dash' => 'Polje regionalno ima neispravnu vrijednost.', + 'exists' => 'Ovo izvješće već ima prijevod za ovaj jezik.', + 'length' => 'Polje regionalno ima neispravnu vrijednost.', + 'locale' => 'Izvorni izvještaj i prijevod već imaju isti regionalni (jezik). ', + 'required' => 'Ime lokaliteta je obavezno.', + ) , + 'location_name' => array( + 'length' => 'Polje "Naziv lokacije" mora da sadrži najmanje 3 i ne više od 200 karaktera. ', + 'required' => 'Polje "Lokacija" je obavezno.', + ) , + 'longitude' => array( + 'between' => 'Polje za unos geografske dužine ne sadrži validnu vrijednost geografske širine.', + 'required' => 'Unošenje geografske dužine je obavezno. Kliknite na mapu kako bi odredili tačnu lokaciju.', + ) , + 'person_email' => array( + 'email' => 'Polje e-mail ne sadrži ispravne e-mail adrese. ', + 'length' => 'Polje e-mail mora da sadrži najmanje 4 i ne više od 64 karaktera. ', + ) , + 'person_first' => array( + 'length' => 'Polje ime mora da sadrži najmanje 3 i ne više od 100 karaktera. ', + ) , + 'person_last' => array( + 'length' => 'Polje prezime mora da sadrži najmanje 2 i ne više od 100 karaktera. ', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Polje DO kojeg datuma ne sadrži validni datum.', + 'range' => 'Unesite validni datum u polje DO kojeg datuma. Datum ne može biti kasnije od današnjeg datuma.', + 'range_greater' => 'Datum u polju OD ne može biti noviji od datuma u polju DO.', + ) , +); diff --git a/application/i18n/bs_BA/reporters.php b/application/i18n/bs_BA/reporters.php new file mode 100644 index 0000000000..3c7c0bd142 --- /dev/null +++ b/application/i18n/bs_BA/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Polje za unos geografske širine ne sadrži validnu vrednost geografske širine.', + 'required' => 'Polje za unos geografske širine se mora popuniti. Molimo vas, kliknite na mapu kako biste odredili tačnu lokaciju.', + ) , + 'level_id' => array( + 'numeric' => 'Polje za Nivo Izvještavača ne sadrži validni Nivo.', + 'required' => 'Polje za Nivo Izvještavača ne sadrži validni Nivo.', + ) , + 'location_name' => array( + 'length' => 'Unos u polje za ime lokacije ne sme biti kraće od 3 i duže od 200 karaktera.', + 'required' => 'Polje sa imenom lokacije se mora popuniti.', + ) , + 'longitude' => array( + 'between' => 'Polje za unos geografske dužine ne sadrži validnu vrednost geografske dužine.', + 'required' => 'Polje za unos geografske dužine se mora popuniti. Molimo vas, kliknite na mapu kako biste odredili tačnu lokaciju.', + ) , + 'reporter_id' => array( + 'numeric' => 'Ime izvještavača nije validno', + 'required' => 'Ime izvještavača nije validno', + ) , +); diff --git a/application/i18n/bs_BA/reports.php b/application/i18n/bs_BA/reports.php new file mode 100644 index 0000000000..77d83d2323 --- /dev/null +++ b/application/i18n/bs_BA/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Molimo potvrdite da ste odabrali stavku', + 'numeric' => 'Molimo potvrdite da ste odabrali stavku', + 'categories_required' => 'Izvještaji moraju biti kategorizovani prije nego se odobre', + ) , + 'action' => array( + 'permission' => 'Nemate odobrenje za ovu vrstu zahtjeva', + ) , + 'uploadfile' => array( + 'required' => 'Morate odabrati fajl za postavljanje', + 'type' => 'Postavljeni fajl mora biti u formatu .csv ili .xml', + 'valid' => 'Polje za postavljanje fajlova ne sadrži validni dokument', + ) , +); diff --git a/application/i18n/bs_BA/roles.php b/application/i18n/bs_BA/roles.php new file mode 100644 index 0000000000..e783a6a5df --- /dev/null +++ b/application/i18n/bs_BA/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Polje opis mora da sadrži najmanje 3 i ne više od 100 karaktera. ', + 'required' => 'Polje Opis je neophodno ispuniti', + ) , + 'name' => array( + 'alpha_numeric' => 'Polje Ime mora sadržavati slova ili brojeve', + 'length' => 'Polje ime mora da sadrži najmanje 2 i ne više od 30 karaktera.', + 'nomodify' => 'Super Admin uloga se ne može mijenjati.', + 'required' => 'Polje Ime je neophodno ispuniti', + ) , + 'access_level' => array( + 'numeric' => 'Polje razina pristupa mora biti broj između 0-100.', + 'required' => 'Polje razina pristupa mora biti broj između 0-100.', + ) , + 'permissions' => array( + 'numeric' => 'Polje dozvole mora biti broj između 0-100.', + ) , +); diff --git a/application/i18n/bs_BA/settings.php b/application/i18n/bs_BA/settings.php new file mode 100644 index 0000000000..1570db7599 --- /dev/null +++ b/application/i18n/bs_BA/settings.php @@ -0,0 +1,214 @@ + array( + 'between' => 'Polje Dozvoli komentare ne sadrži validne vrijednosti', + 'required' => 'Polje odobri komentare je obavezno.', + ) , + 'allow_feed' => array( + 'between' => 'U polje include nije unešena validna vrijednost.', + 'required' => 'Polje include je obavezno polje.', + ) , + 'allow_alerts' => array( + 'between' => 'U polje za aktiviranje upozorenja nije unešena validna vrijednost.', + 'required' => 'Polje dopusti obavještenja je obavezno.', + ) , + 'allow_reports' => array( + 'between' => 'Polje za davanje dozvole za primanje izvještaja ne sadrži validnu vrijednost.', + 'required' => 'Polje dopusti obavještenja je obavezno.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'U polje za dijeljenje statistika nije unešena validna vrijednost.', + 'required' => 'Polje za dijeljenje statistika je obavezno polje.', + ) , + 'api' => array( + 'default_record_limit' => 'Broj izvještaja koji se automatski dobija svakim API zahtjevom', + 'maximum_record_limit' => 'Maksimalni broj zapisa za preuzimanje po API zahtjevu', + 'maximum_requests_per_ip_address' => 'Maksimalni broj API zahtjeva po IP adresi', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'U polje Akismet nije unešena validna vrijednost.', + 'length' => 'U polje Akismet nije unešena validna vrijednost.', + ) , + 'cache_pages' => array( + 'between' => 'Polje za keširane strane je obavezno polje.', + 'required' => 'U polje za keširane strane nije unešena validna vrijednost.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'U polje za rok trajanja keširanih strana nije unešena validna vrijednost.', + 'required' => 'Polje za rok trajanja keširanih strana obavezno je.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Izgleda da server nije podešen za procesiranje čistih URLova. Moraćete da promjenite konfiguraciju vašeg servera pre nego što omogućite otvaranje čistih URLova. Više informacija o tome kako omogućiti čiste URLove imate na ovom postu na forumu', + 'clean_url_enabled' => 'Ova opcija omogućava pristup Ushahidiju putem "čistih" URLova (bez "index.php" u URL).', + 'enable_clean_url' => 'Dozvolite čišćenje URL', + 'title' => 'Očisti URLove', + ) , + 'clickatell_api' => array( + 'length' => 'Polje Clickatell API broja ne može imati više od 20 karaktera.', + 'required' => 'Polje Clickatell API broja je obavezno polje.', + ) , + 'clickatell_password' => array( + 'length' => 'Polje Clickatell lozinke mora biti duže od 5, ali najviše 50 karaktera.', + 'required' => 'Polje Clickatell lozinke je obavezno polje.', + ) , + 'clickatell_username' => array( + 'length' => 'Polje Korisnički nalog na Clickatellu ne smije biti duže od 50 karaktera. ', + 'required' => 'Clickatell korisničko ime je obavezno.', + ) , + 'configure_map' => 'Konfigurirajte mapu.', + 'default_location' => 'Zadana lokacija', + 'default_map_all' => array( + 'alpha_numeric' => 'U polje za unos boje nije unešena validna vrednost.', + 'length' => 'Polje za unos boje ne smije biti duže od 6 karaktera.', + 'required' => 'Polje boja je obavezno.', + ) , + 'default_map_view' => 'Automatski prikaz mape', + 'default_zoom_level' => 'Zadani nivo zumiranja', + 'download_city_list' => 'Povucite imena gradova iz Geonames-a', + 'email_host' => array( + 'length' => 'Polje za unos porta Mail servera predugačko je.', + 'numeric' => 'Polje za unos porta Mail servera treba sadržati samo brojeve.', + ) , + 'email_password' => array( + 'length' => 'Polje Lozinka Mail servera mora biti duže od 5 karaktera, ali ne više od 50 karaktera.', + 'required' => 'Polje Lozinka Mail servera je obavezno za popunjavanje.', + ) , + 'email_port' => array( + 'length' => 'Polje Mail server port je predugačko.', + 'numeric' => 'Polje Mail server port treba sadržati samo brojeve.', + ) , + 'email_servertype' => array( + 'length' => 'Polje Mail server port je predugačko.', + 'required' => 'Polje Mail Server Type je obavezno za popunjavanje.', + ) , + 'email_username' => array( + 'length' => 'Polje Mail Server Username ne smije biti duže od 50 karaktera.', + 'required' => 'Polje Mail Server Username je obavezno za popunjavanje.', + ) , + 'facebook' => array( + 'title' => 'Opcije za podešavanje Facebooka ', + 'description' => 'Kako bi ste dobili informaciju ispod potrebno je da kreirate novu Facebook aplikaciju za', + 'app_id' => 'Facebookov App ID', + 'app_secret' => 'Facebookob App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Polje Google Analytics mora sadržati validni Web Property ID kod u formatu UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Omogući HTTPS', + 'https_disabled' => 'Ova opcija omogućava pristup Ushahidiju u nebezbjednom modu; bez "https://" u prefiksu URLa', + 'https_enabled' => 'Ova opcija omogućava pristup Ushahidiju u bezbjednom modu; sa https u prefiksu URLa', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'U Polje za unos broja članaka koji će se prikazivati po strani (Frontend) nije unešena validna vrijednost. ', + 'required' => 'Polje Broj članaka po strani (Frontend) je obavezno za popunjavanje.', + ) , + 'items_per_page_admin' => array( + 'between' => 'U polje za unos broja članaka po strani (Admin) nije unešena validna vrijednost.', + 'required' => 'Polje Broj članaka po strani (Admin) je obavezno za popunjavanje.', + ) , + 'map' => array( + 'default_location' => 'Podešavanje vašeg provajdera mapa jednostavan je proces. Odaberite provajder, uzmite API kluč sa websajta provajdera i unesite API ključ.', + 'zoom' => 'Nivo zumiranja', + ) , + 'map_provider' => array( + 'choose' => 'Odaberite Provajder mape', + 'enter_api' => 'Unesite novi API ključ', + 'get_api' => 'Preuzmite API ključ', + 'info' => 'Podešavanje vašeg provajdera mapa jednostavan je proces. Odaberite provajder, uzmite API kluč sa websajta provajdera i unesite API ključ.', + 'name' => 'Provajder mape', + ) , + 'map_timeline' => 'Hronologija mape', + 'map_settings' => 'Postavke mape', + 'multiple_countries' => 'Dali ova implementacija Ushahidija obuhvata više država?', + 'select_default_location' => 'Odaberite državu.', + 'set_location' => 'Kliknite i povucite mapu da postavite svoju tačnu lokaciju', + 'site' => array( + 'allow_clustering' => 'Izvještaji o klasterima na mapi', + 'allow_comments' => 'Dozvoli korisnicima komentiranje prijava.', + 'allow_feed' => 'Uključi RSS News Feed na web stranici', + 'allow_alerts' => 'Dozvoli korisnicima da se pretplate za obavještenja', + 'allow_reports' => 'Dozvoli korisnicima da unesu izvještaje', + 'api_akismet' => 'Akismet ključ', + 'banner' => 'Baner stranice', + 'blocks_per_row' => 'Broj blokova u redu', + 'cache_pages' => 'Cache-irane strane', + 'cache_pages_lifetime' => 'Rok trajanja Cacheiranih strana', + 'checkins' => 'Dozvolite Prijave', + 'copyright_statement' => 'Izjava o autorskim pravima stranice', + 'default_category_colors' => 'Osnovna boja za sve kategorije', + 'default_category_icons' => 'Osnovna ikona za sve kategorije', + 'delete_banner_image' => 'Obriši sliku banera', + 'delete_default_map_all_icon' => 'Obriši osnovnu ikonu', + 'display_contact_page' => 'Prikaži kontakt stranicu', + 'display_howtohelp_page' => 'Prikaži stranicu "Kako pomoći"', + 'email_alerts' => 'E-mail adresa za obavještenja', + 'email_notice' => 'Za dobijanje izvještaja elektronskom poštom, konfigurirajte postavke vašeg korisničkog računa elektronske pošte.', + 'email_site' => 'E-mail adresa stranice', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Broj članaka po strani - Front End', + 'items_per_page_admin' => 'Broj članaka po strani - Admin', + 'kismet_notice' => 'Onemogućite spamiranje komentara korištenjem Automatticovog Akismeta.
Besplatni API kluč možete dobiti registracijom za korisnički nalog na WordPress.com', + 'laconica_configuration' => 'Akreditivi Laconica', + 'laconica_site' => 'Website Laconica', + 'language' => 'Jezik stranice', + 'manually_approve_users' => 'Ručna potvrda korisnika', + 'message' => 'Poruka stranice', + 'name' => 'Ime stranice', + 'private_deployment' => 'Privatna implementacija', + 'require_email_confirmation' => 'Potrebna potvrda korisničkog e-maila', + 'submit_report_message' => 'Postavi poruku izvještaja ', + 'share_site_stats' => 'Omogućite sakupljanje statistika (čuvane na serveru Ushahidija)', + 'tagline' => 'Tagline sajta', + 'timezone' => 'Vremenska zona', + 'title' => 'Postavke stranice', + 'twitter_configuration' => 'Termini za pretraživanje Twittera', + 'twitter_hashtags' => 'Hashtag - odvojeni zarezima', + ) , + 'site_email' => array( + 'email' => 'Polje za unos email adrese ne sadrži validnu email adresu.', + 'length' => 'Polje za unos email adrese ne može imati manje od 4 i više od 100 karaktera.', + ) , + 'site_name' => array( + 'length' => 'Polje za unos imena sajta ne može biti kraće od 3 i duže od 50 karaktera.', + 'required' => 'Polje naziv stranice je obavezno.', + ) , + 'site_tagline' => array( + 'length' => 'Polje za unos tagline-a ne može biti kraće od 3 i duže od 100 karaktera.', + 'required' => 'Obavezno popuniti polje za unos tagline-a.', + ) , + 'sms' => array( + 'clickatell_api' => 'Upišite vaš Clickatell API broj', + 'clickatell_check_balance' => 'Provjerite stanje na vašem kretitnom računu na Clickatell-u.', + 'clickatell_load_balance' => 'Dopunite kreditni račun', + 'clickatell_password' => 'Vaša Clickatell lozinka', + 'clickatell_text_1' => 'Prijavite se za Clickatellove usluge na ovom linku', + 'clickatell_text_2' => 'U polje ispod unesite vaše pristupne informacije za Clickatell-ov račun', + 'clickatell_username' => 'Vaše Clickatell korisničko ime', + 'flsms_text_1' => 'Unesite telefonski broj (ili brojeve) povezane na Frontline SMS u polje (polja) ispod', + 'flsms_text_2' => 'Unesite broj u polje ispod, bez korištenja + ili crtica', + 'option_1' => 'Opcija 1: Koristi Frontline SMS', + 'option_2' => 'Opcija 2: Iskoristite Global SMS Gateway', + 'title' => 'Opcije za podešavanje SMS-a', + ) , + 'sms_no1' => array( + 'length' => 'Polje Telefon 1 ne sadrži validnu vrijednost.', + 'numeric' => 'U polje Telefon 1 treba unijeti samo brojeve.', + ) , + 'sms_no2' => array( + 'length' => 'Polje telefon 2 je predugačko.', + 'numeric' => 'Polje telefon 2 treba sadržati samo brojeve.', + ) , + 'sms_no3' => array( + 'length' => 'Polje telefon 3 je predugačko.', + 'numeric' => 'Polje telefon 3 treba sadržati samo brojeve.', + ) , + 'test_settings' => 'Postavke testa', +); diff --git a/application/i18n/bs_BA/sharing.php b/application/i18n/bs_BA/sharing.php new file mode 100644 index 0000000000..2144bf773b --- /dev/null +++ b/application/i18n/bs_BA/sharing.php @@ -0,0 +1,25 @@ + 'Ulazni datum', + 'date_added' => 'Datum dodavanja', + 'last_access' => 'Zadnji pristup', + 'sharing_color' => array( + 'length' => 'Obojeno polje mora biti duži od 6 karaktera.', + 'required' => 'Obojeno polje se mora popuniti.', + ) , + 'sharing_name' => array( + 'length' => 'Nevažeće ime za Razmjenu.', + 'required' => 'Unesite ime za Razmjenu.', + ) , + 'sharing_url' => array( + 'exists' => 'Već postoji websajt sa tim URL-om.', + 'length' => 'URL websajta nije validan.', + 'required' => 'Unos URL adrese websajta je obavezan.', + 'url' => 'Polje za unos URL websajta ne sadrži validnu URL adresu.', + ) , +); diff --git a/application/i18n/bs_BA/stats.php b/application/i18n/bs_BA/stats.php new file mode 100644 index 0000000000..990222056a --- /dev/null +++ b/application/i18n/bs_BA/stats.php @@ -0,0 +1,42 @@ + 'Odobreno', + 'categories' => 'Kategorije', + 'category_impact' => 'Kategorija utjecaja', + 'category_impact_description' => 'Na ovom grafikonu imate linearni i hronološki prikaz izvještaja po kategorijama. Listajte s lijeva na desno kako bi dobili komparativni pregled razčilitih kategorija. Pređite mišem preko grafikona kako bi dobili više detalja.', + 'choose_date_range' => 'Odaberite vremensko razdoblje.', + 'countries' => 'Države', + 'country' => 'Država', + 'country_breakdown' => 'Pregled po državama', + 'description' => 'Ovo je statistička sekcija na kojo će se uskoro nalaziti i opšti opis. Za sada možete pregledati informacije preko linkova za podkategorije koji se nalaze iznad.', + 'error' => 'Greška', + 'glossary' => 'Pojmovnik', + 'hit_summary' => 'Sumirani prikaz hitova', + 'legend' => 'Legenda', + 'pageviews' => 'Posjete individualnih stranica', + 'pageviews_description' => 'Ukupan broj stranica koje su posjetitelji vidjeli na tvom sajtu', + 'reports' => 'Izvještaji', + 'reports_categories' => 'Kategorije izvještaja', + 'reports_statistics' => 'Statistike izvještaja', + 'reports_status' => 'Statusi izvještaja', + 'report_punchcard' => 'Perforirana kartica izvještaja', + 'report_stats' => 'Statistički izvještaj', + 'stats_not_setup' => 'Statistika nije postavljena', + 'time_range_1' => '1 mjesec', + 'time_range_2' => '3 mjeseca', + 'time_range_3' => '6 mjeseci', + 'time_range_all' => 'Ukupno', + 'unapproved' => 'Neodobreno', + 'unique_visitors' => 'Pojedinačni posjetitelji', + 'unique_visitors_description' => 'Broj osoba koji prilaze vašoj postavci. Unikatni posjetioci određuju se korištenjem cookie-ja. Posjetioci/teljke koji nisu aktivirali korištenje cookie-ja biće identificirani/ne korištenjem jednostavnim heurističkim pregledom IP adresa, rezolucija, pregledača, pluginova, operativnih sistema, itd.', + 'unverified' => 'Ne odobreno', + 'verified' => 'Odobreno', + 'visitor_summary' => 'Pregled posjetioca.', + 'visits' => 'Posjete', + 'visits_description' => 'Posjetom se smatra zapis dolaska unikatnog posjetioca/teljke više od 30 minuta nakon njegove/njene posledne posjete neke individualne strane', +); diff --git a/application/i18n/bs_BA/tooltips.php b/application/i18n/bs_BA/tooltips.php new file mode 100644 index 0000000000..01ab6a9180 --- /dev/null +++ b/application/i18n/bs_BA/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => 'Ovo dodaje izvještaj u dodatne kategorije. Ako ste ovdje izabrali Kategoriju 1 a izvještaj je već unesen pod Kategoriju 2 onda će izvještaj biti i pod Kategorijom 1 i pod Kategorijom 2.', + 'approve' => 'Odobrava izvještaj ili ne. Odobreni izvještaj se prikazuje javno.', + 'assign_badge' => 'Moći ćete da korisniku koji inicira proces dodjelite odgovarajući bedž. Ovdje odaberite bedž koji ćete dodjeliti.', + 'between_times' => 'Radi se o opsegu sati i/ili minuta između dva data vremena u 24-časovnom formatu. Ako u drugo polje unesete ranije vreme, dva polja će automatski biti zamjenjena. Oba termina moraju se nalaziti unutar jednog dana. Takođe, unešeno vreme upoređuje se sa vremenom koje ste konfigurirali na vašem sajtu u setinzima a ne nužno sa vremenskom zonom u kojoj se nalazi korisnik koji komunicira sa vašom instalacijom. Ako želite da ignorirate ovaj kvalifikator, ostavite oba polja na vrijednosti 00:00 do 00:00.', + 'category' => 'Ako želite da aktivirate okidače samo kada se koristi određena kategorija, ta podešavanja možete obaviti ovdje. To će omoogućiti aktiviranje okidača ako se koristi samo jedna od kategorija. Na primjer, ako odaberete Kategoriju 1 i Kategoriju 2, a izvještaj je podnešen korištenjem Kategorije 2 i Kategorije 3, proći će test. ', + 'days_of_the_week' => 'Ako se te akcije dešavaju određenih dana u nedelji, to možete podesiti ovdje. Imajte u vidu da se dan određuje preko časovne zone konfigurirane u vašoj instalaciji. Pritisnite shift, command ili control dugme na tastaturi za odabir više dana istovremeno. ', + 'email_body' => 'Tijelo e-mail poruke.', + 'email_subject' => 'Predmet e-mail poruke.', + 'feed_id' => 'Unos se može odnositi i na sve unose i na specifične unose. Ako želite da samo specifični unosi aktiviraju okidač, odabraćete ih ovdje. Ako ne, ovdje ćete ostaviti opciju "all".', + 'from' => 'Korisničko ime autora na Twitter-u (ili više korisničkih imena odvojenih zarezima). Ako želite da aktivirate okidače samo za tweetove tačno određenog korisnika ili korisnice, unesite njegovo ili njeno korisničko ime ovdje (bez @)', + 'keywords' => 'Ako ne želite da upoređujete sa datim ključnim riječima, ovo polje možete ostaviti prayno. Ako ćete unositi riječi, trebate ih odvojiti zarezom (,). Na primjer, ako želite da aktivirate okidač kada neko pomene "ljubav" ili "mir" u svojoj poruci, onda ćete u polje za ključne riječi unijeti "ljubav, mir".', + 'location' => 'Možete odabrati koje bilo mjesto ili neku specifičnu lokaciju. Ako odaberete specifičnu lokaciju, od vas će biti zatraženo da iscrtate pravougaonik oko oblasti koja kvalifikuje neku akciju. Na primjer, ako želite da taj okidač bude aktiviran kada neko podnese izvještaj u Brazilu, odabraćete "specifičnu oblast" i onda nacrtati pravougaonik oko Brazila. Te pravougaonike možete napravite onoliko mali ili veliko koliko želite. Možete iscrtati i više pravougaonika. ', + 'on_specific_count' => 'Ovaj kvalifikator će aktivirati okidač na N-tom odbrojavanju kako za kolektivnu bazu korisnika tako i za pojedinačne korisnike i korisnice. Ako želite da ga ignorirate, ostavite polje prazno.', + 'report_title' => 'Ovo je automatski naslov koji će biti dodan na izvještaj.', + 'response' => 'Ako su prošli svi gorenavedeni kvalifikatori, okidać će inicirati odgovor. Odgovor može ići u opsegu od odobravanja izvještaja do izvještavanja korisnika elektronskom poštom. Odaberite odgovor kako bi aktivirali dopunske opcije za svaki pojedinačni odgovor.', + 'send_to' => 'Ako odaberete "Korisnik sa dozvolom za aktiviranje", korisniku koji obavlja tu akciju će dobiti poruku elektronskom poštom. Ako odaberete radio dugme koje se nalazi pored polja za unos, moći ćete da unesete specijalnu email adresu. To je veoma korisno ako postavljate okidače da obavještavaju ljude kada se javljaju izvještaji, prijave ili druge aktivnosti na određenim djelovima mape.', + 'specific_days' => 'Možete označiti više od jednog dana. Datume određuje podešavanje časovnih zona na vašoj instalaciji. Nemojte odabrati nijedan datum ako želite da se akcija automatski odnosi na sve datume. ', + 'trigger' => 'Okidač je ključna komponenta za podešavanje vaših Okidača akcije. Ovdje odlučujete dali želite da se nešto desi kada neko podnese izvještaj, prijavi se, itd. Moći ćete da filtrirate odgovore na te akcije izborom određenog filtra.', + 'user' => 'Korisnik može biti bilo ko ili tačno određeni korisnik. Ako želite da samo određeni korisnici mogu aktivirati okidač, odabraćete ih ovdje. Inače, ostavićete opciju "Anyone" u ovom polju, znajući da je većina okidača podešena za sve korisnike koji su u sistemu', + 'verify' => 'Označava izvještaj kao potvrđen ili nepotvrđen', + ) , + 'change_picture' => 'Profil stranica koristi Gravatar fotografiju. Klik na vašu fotografiju će vas odvesti na Gravatar stranicu gdje možete promjeniti fotografiju.', + 'default_value' => 'Razdvojite svaku vrijednost sa zarezom, npr. vrijednost1, vrijednost2', + 'radio_choices' => 'Odvojite sve vrijednosti zarezom, na primjer, vrijednost1, vrijednost2. Ako želite da postavite automatsku vrijednost, završite vašu listu opcija sa :: na primjer, ako želite da napravite value3 automatskom vrijednošću, linija će glasitei value1, value2, value3::value3', + 'dropdown_choices' => 'Odvojite svaku izabranu stavku zarezom. Npr. Stavka 1, Stavka 2 itd.', + 'private_to' => 'Započnite unos da izlistate članove.', + 'private_subject' => 'Naslov privatne poruke', + 'private_message' => 'Privatna poruka', + 'profile_color' => 'Možete odabrati boju pozadine ispod vaše slike profila na vašem javnom profilu. Te boje će biti i tačka koja će se pojaviti na mapi kada se prijavite.', + 'profile_email' => 'Vaša e-mail adresa', + 'profile_name' => 'Ovo je jedan od načina kako možete biti identifikovani na stranici. Imajte na umu da je ova informacija javna.', + 'profile_new_password' => 'Ako želite da promjenite šifru, unesite je u ovo polje. Ako ne želite da promjenite šifru, ostavite ovo polje prazno.', + 'profile_new_users_password' => 'Ova informacija je obavezna pri kreiranju novog korisnika i inicijalno će služiti kao korisnička šifra. Obavijestite novog korisnika da promjeni šifru nakon prve registracije.', + 'profile_notify' => 'Izbor opcije DA vam omogućava da dobijate obavijesti putem elektronske pošte kada se novi izvještaji ili komentari postave na vašu stranicu.', + 'profile_password' => 'Vaša šifra. Neophodno je unijeti šifru da bi spriječili neovlašten pristup vašem nalogu.', + 'profile_public' => 'Ako odaberete ovu opciju, vaš profil mogu gledati svi korisnici interneta. To je takođe i najlakši način da pokažete izvještaje koje ste postavili, prijave, bedževe, itd. na jednoj strani.', + 'profile_public_url' => 'Ovo je adresa gdje se može pronaći vaš javni profil.', + 'profile_username' => 'Vaše korisničko ime nije promjenjivo', + 'settings_access_level' => 'Nivoa pristupa se koriste kako bi ograničili pristup terenskim podacima iz namjenskih formulara. Viši nivoi pristupa mogu pristupiti poljima iz nižih nivoa. Superadmin ima najviši nivo pristupa (100). Javni podaci su izloženi na najnižem nivou pristupa (0). Članovi imaju nivo pristupa 10. Admin korisnik automatski dobija nivo 90.', + 'settings_alert_email' => 'Ovo je e-mail adresa koja će biti korištena za e-mail obavještenja', + 'settings_allow_alerts' => 'Dozvolite korisnicima da se pretplate na obavještenja putem web-a', + 'settings_allow_clustering' => 'Ovo omogućuje grupisanje sličnih izvještaja u jednu tačku na karti.', + 'settings_allow_comments' => 'Dozvolite korisnicima da komentarišu izvještaj na glavnoj stranici', + 'settings_allow_feed' => 'Ovo omogućuje RSS Novosti da budu prikazane na glavnoj stranici.', + 'settings_allow_reports' => 'Dozvoljava korisnicima da postave informaciju preko web forme', + 'settings_api_default_record_limit' => 'Automatski broj izvještaja koji se prikazuje po API zahtjevu', + 'settings_api_max_record_limit' => 'Maksimalni broj izvještaja koji se prikazuje po API zahtjevu', + 'settings_api_max_requests_per_ip' => 'Maksimalni broj API zahtjeva po IP adresi', + 'settings_banner' => 'Banner sajta prikazuje se na vrhu naslovne strane vašeg sajta, ako to podržava tema koju koristite. Preporučene dimenzije bannera zavisiće od teme koju koristite. Imajte u vidu da će baner zamjeniti naslov sajta i tagline na vrhu strane.', + 'settings_blocks_per_row' => ' Broj blokova sa kolonama koji će se prikazivati u svakom redu.', + 'settings_cache_pages' => 'Aktivirajte ili isključite keširanje strane. To omogućava brže prikazivanje strana skraćivanjem vremena reakcije. Preporučujemo korištenje keširanja kod sajtova sa velikim saobraćajem. **Upamtite da će izvještaji biti postavljeni na front endu na osnovu rasporeda koji ste podesili dolje (Cache Lifetime).', + 'settings_cache_pages_lifetime' => 'Podesite rok trajanja keša.', + 'settings_checkins' => 'Ova postavka omogućava prijavljivanje na vašu instalaciju. Ovo je pojednostavljen tip izvještaja koji nije moderiran pre postavljanja na homepage i zahtjeva samo da vaš sajt bude konfiguriran na određeni način. Kada aktivirate ovu mogućnost, osigurajte se da je časovna zona podešena na UTC i da vaša tema podržava prijave. Kada aktivirata ovu mogućnost, u strani sa setinzima addonova/tema biće aktivirane samo teme teme koje su dostupne uz prijavu.', + 'settings_configure_map' => 'Podesite mapu da pokriva specifičnu lokaciju.', + 'settings_default_category_colors' => 'Podesite jednu boju za sve kategorije na stranici.', + 'settings_default_category_icons' => 'Podesite jednu ikonu za sve kategorije na stranici.', + 'settings_default_location' => 'Ovo je država u kojoj je instaliran sajt.', + 'settings_display_contact' => 'Uključite ili isključite Tab za kontakte na glavnom sajtu.', + 'settings_display_howtohelp' => 'Uključite ili isključite Tab za pomoć na glavnom sajtu.', + 'settings_display_items_per_page' => 'Ovdje imate broj izvještaja koji će se prikazati po strani na glavnom sajtu.', + 'settings_display_items_per_page_admin' => 'Ovdje imate broj izvještaja koji se prikazuje po strani na administratorskim stranama u Back Endu.', + 'settings_flsms_download' => 'Ovoj je čvorište za dolazeće poruke.', + 'settings_flsms_synchronize' => 'Ovdje se sinhroniziraju poruke u čvorištu sa Ushahidi platformom.', + 'settings_flsms_text_1' => 'Broj telefona za primanje SMS poruka.', + 'settings_google_analytics' => 'Pratite posjetioce Vaše stranice. Dobijte detaljne statističke podatke posjetioca.', + 'settings_locale' => 'Postavite jezik koji će se koristiti na stranici.', + 'settings_manually_approve_users' => 'Ako postavite ovu opciju na yes, morate da odobrite svakog individualnog korisnika koji kreira račun na vašem sajtu i dodjeliti im uloge (t.j. Član, Administrator, Superadministrator).', + 'settings_map_provider' => 'Ovo odredžuje koja mapa će koristiti za stranicu.', + 'settings_map_timeline' => 'Ovdje je prikazana hronologija na osnova datuma i vremena podnošenja izvještaja', + 'settings_private_deployment' => 'Ako postavite ovu vrijednost na true ili yes, vaša instalacija postaje privatna i samo korisnici sa korisničkim računima koje ćete vi odrediti moći će pristupiti instalaciji.', + 'settings_require_email_confirmation' => 'Korisnici će emailom dobiti link za potvrdu koji moraju da kliknu prije nego se mogu logirati u instalaciju, ako ste ovdje odabrali yes. Ako ste aktivirali ovu opciju nakon što je vaša instalacija već primila neke korisnike, od njih će biti zatraženo da potvrde svoj račun prije nego što im bude dozvoljeno da ga nastave koristiti.', + 'settings_server_host' => 'Ovdje se čuvaju email poruke', + 'settings_server_password' => 'Ovo je lozinka za email adresu koja prima izvještaje.', + 'settings_server_port' => 'Ovo je potrebno za prihvatanje ulaznih konekcija sa email adrese.', + 'settings_server_ssl_support' => 'Ovo je potrebno kako bi se pojačala bezbjedna konekcija.', + 'settings_server_type' => 'Ovo je potrebno za povlačenje email poruka sa servera.', + 'settings_server_username' => 'Ovo je email adresa koja prima izvještaje.', + 'settings_share_site_stats' => 'Statistike o hitovima čuvaju se na serveru koji je pod kontrolom Ushahidija. Aktiviranjem ove opcije, dobijate pristup statistici o hitovima direktno u vaš administratorski panel. Deaktiviranjem ćete zaustaviti sakupljanje statistika i nećete moći da obnovite statistike o saobraćaju sakupljene dok je ova opcija bila isključena. ', + 'settings_site_copyright_statement' => 'Dali druge osobe imaju pravo da ponovo objave tekst, slike, video i/ili dizajnerske teme koje ste kreirali vi ili vaši korisnici? Posjetite https://creativecommons.org/choose/ ako želite da tačno odredite šta drugi ljudi mogu raditi sa vašim djelima. Upamtite da trebate biti precizni i određeni koje elemente sajta licencirate!', + 'settings_site_email' => 'Ova email adresa će primati izvještaje i poruke podnešene preko formulara za kontakt elektronskom poštom.', + 'settings_site_message' => 'Ovaj tekst će stajati iznad mape na homepage-u i koristan je zato što nudi važne informacije posjetiocima sajta. Ako želite da uklonite taj box, jednostavno izbrišite ovu poruku.', + 'settings_site_name' => 'Ovo je ime stranice koje se pojavljuje na vrhu glavne stranice.', + 'settings_site_submit_report_message' => 'Ovo je poruka koja će se pojaviti na strani za podnošenje izvještaja. Može se iskoristiti za disklejmere i davanje dopunskih uputstava posjetiocima koji podnose izvještaje.', + 'settings_site_tagline' => 'Opišite stranicu u nekoliko riječi.', + 'settings_site_timezone' => 'Ovdje je navedena časovna zona u kojoj će raditi vaš sajt. To će uticati na sve akcije koje ste podesili a koje ovise o tačnom vremenu i datumu, a postavljaće automatski i vreme objavljivanja izvještaja na front endu i na back endu sajta.', + 'settings_twitter_configuration' => 'Odredite twitter hashtag koji će biti korišten u tweetu.', +); diff --git a/application/i18n/bs_BA/ui_admin.php b/application/i18n/bs_BA/ui_admin.php new file mode 100644 index 0000000000..c787d52936 --- /dev/null +++ b/application/i18n/bs_BA/ui_admin.php @@ -0,0 +1,320 @@ + 'Pristup odbijen. Ili vaše službene potvrde nisu važeće ili je vaš zahtjev odbijen.', + 'access_denied_others' => 'Pristup odbijen. Vaš zahtjev je prihvaćen, ali je njegovo odobrenje ograničeno vremenom. Molimo pokušajte kasnije. ', + 'access_level' => 'Nivo pristupa', + 'actions' => 'Akcije', + 'add_to_category' => 'Dodaj u kategoriju', + 'added' => 'Dodano', + 'added_edited' => 'Dodano/Ažurirano', + 'addons' => 'Dodaci', + 'admin_role' => 'Admin', + 'alerts' => 'Upozorenja', + 'alerts_received' => 'Primljena upozorenja', + 'all' => 'Sve', + 'am' => 'AM', + 'anonymous' => 'Anoniman', + 'anyone_role' => 'Bilo ko', + 'anywhere' => 'Bilo gdje', + 'api_banned' => 'API blokiran', + 'api_logs' => 'API logovi', + 'api_settings' => 'API postavke', + 'api_unban' => 'Dozvoli pristup', + 'api_unban_all' => 'Dozvoli pristup svima', + 'approved' => 'odobreno', + 'approve_auto' => 'Odobri automatski', + 'approve_manual' => 'Odobri manuelnim putem', + 'archived' => 'Arkivirano', + 'are_you_sure_you_want_to' => 'Da li ste sigurni da želite da', + 'are_you_sure_you_want_to_delete_this_item' => 'Da li ste sigurni da zelite da obrisete ovu stavku?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Da li ste sigurni da zelite da obrisete ovu fotografiju?', + 'are_you_sure_you_want_to_switch_forms' => 'Da li ste sigurni da želite zamjeniti formulare?', + 'assign' => 'Dodijeli', + 'assignments' => 'Zadaci', + 'assign_badge' => 'Dodijeli oznaku', + 'author' => 'Autor', + 'author_email' => 'Email autora', + 'back' => 'Nazad', + 'banip_action' => 'Blokiraj IP', + 'between_times' => 'Između vremena', + 'blocks' => 'Blokovi', + 'body' => 'Body', + 'cancel' => 'Otkaži', + 'categories' => 'Kategorije', + 'chart_display_error' => 'Grške u prikazivanju grafikona', + 'check_message_valid' => 'Molimo provjerite je li vaša poruka valjana. ', + 'check_number' => 'Molimo provjerite je li broj važeći.', + 'check_sms_settings' => 'Molimo provjerite vaše SMS postavke!', + 'checkin_details' => 'Detalji prijave', + 'checkins' => 'Prijave', + 'cities_loaded' => 'Učitani gradovi', + 'code' => 'kod', + 'code_out_of_sync' => 'Kodirana verzija nije sinkronizirana. ', + 'color' => 'Boja', + 'comments' => 'Komentari', + 'confirmation_code' => 'Vaš kod za potvrdu obavijesti je:', + 'confirm_msg' => 'Korisnik je', + 'count' => 'Broj', + 'country_not_found' => 'Zemlja nije nađena', + 'created_edited' => 'kreirano/uređivano', + 'create_report' => 'Kreiraj izvještaj', + 'critical_upgrade' => 'Važna nadogradnja', + 'csv' => 'CSV', + 'currently_active' => 'Trenutno aktivan', + 'currently_inactive' => 'Trenutno neaktivan', + 'custom_forms_insufficient_permissions' => 'Nemate odgovarajuće dopuštenje da uređujete naredna polja', + 'daily' => 'Dnevno', + 'dashboard' => 'Kontrolna ploča', + 'database' => 'baza podataka', + 'date_time' => 'Daum i vrijeme', + 'date_added' => 'Datum dodan', + 'date_modified' => 'Datum promjenjen', + 'days_of_the_week' => 'Dani u sedmici', + 'db_out_of_sync' => 'DB verzija nije sinhronizovana.', + 'deleted' => 'obrisano', + 'delete_action' => 'Obriši', + 'delete_badge' => 'Izbrisati oznaku', + 'demo' => 'Demo', + 'description' => 'Opis', + 'disabled' => 'Onemogućeno', + 'divider_start_field' => 'Početak Razdjelnika', + 'divider_end_field' => 'Kraj Razdjelnika', + 'divider_class' => 'div class', + 'download_reports' => 'Preuzmi izvještaje', + 'dropdown_choices' => 'Dropdown Izbori', + 'edited' => 'UREĐENO', + 'edited_by' => 'Oredio/la', + 'edit_action' => 'Uredi', + 'edit_log' => 'Izmjeniti log', + 'email' => 'Email', + 'entire_collective' => 'Cjelokupan kolektiv', + 'error_geocoding' => 'Geocoding greška! HTTP greška', + 'error_imap' => 'IMAP PHP Biblioteka nije instalirana', + 'error_twitter' => 'Neispravni kredencijali', + 'error_msg' => 'Greška', + 'error_post_incident' => 'Greška, nije moguće postaviti incident', + 'every_six_hours' => 'Svakih šest sati', + 'every_twelve_hours' => 'Svakih dvanaest sati', + 'experimental' => 'Eksperimentalno', + 'faqs' => 'Često postavljena pitanja', + 'feed' => 'unos', + 'feedback' => 'Povratna informacija', + 'feeds' => 'unosi', + 'field_choices' => 'Lista izbora', + 'field_default' => 'Zadata vrijdnost', + 'field_datatype' => 'Tip podatka', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Označivač', + 'field_datatype_numeric' => 'Numerički', + 'field_datatype_text' => 'Slobodan tekst', + 'field_height' => 'Visina (u koloni)', + 'field_hidden' => 'Sakrivena polja', + 'field_maxlength' => 'Maksimalan broj karaktera', + 'field_name' => 'Polje ime', + 'field_toggle' => 'Preklopnik', + 'field_toggle_no' => 'Ne', + 'field_toggle_yes_close' => 'Da, zatvoriti prema zadanom', + 'field_toggle_yes_open' => 'Da, otvoriti prema zadanom', + 'file_not_found_upload' => 'NIje moguće pronaći podignutu datoteku.', + 'file_open_error' => 'Nije moguće otvoriti datoteku za čitanje.', + 'form_not_exists' => 'Ta Forma ne postoji!', + 'forum' => 'Forum', + 'free_text_field' => 'Polje za tekst (slobodan tekst)', + 'date_field' => 'Polje za "Datum"', + 'radio_field' => 'Polje "Radio Buttons"', + 'checkbox_field' => 'Polje "Checkboxes"', + 'dropdown_field' => 'Polje "Dropdown"', + 'from' => 'Od', + 'from_date' => 'Od', + 'geonames_timeout' => 'Greška prekida za Geonames', + 'get_help' => 'Dobij pomoć', + 'get_more_themes' => 'Dobij više tema', + 'get_more_plugins' => 'Više dodataka', + 'header_actions' => 'Akcije', + 'header_add_edit' => 'Dodaj/uredi', + 'header_email' => 'Email', + 'header_manage_users' => 'Upravljanje korisnicima', + 'header_role' => 'Uloga', + 'header_user' => 'Korisnik/ca', + 'help' => 'Pomoć', + 'hourly' => 'Po satu', + 'incident_feed' => 'Unos incidenta za', + 'installer_info' => 'Instalacioni folder još postoji. Izbrišite instalacioni folder, zato što je potencijalna ranjiva tačka po sigurnost.', + 'instance' => 'Primjer', + 'instances' => 'Primjeri', + 'instance_details' => 'Detalji primjera', + 'invalid_parameter' => 'Nepostojeći parametar', + 'ip_address' => 'IP adresa', + 'is_date' => 'Dali je ovo polje za unos datuma?', + 'ispublic_visible' => 'Ko može vidjeti odgovore', + 'ispublic_submit' => 'Ko može dati odgovor', + 'keyword' => 'Ključna riječ', + 'keywords' => 'Ključne riječi', + 'label_email' => 'Email adresa', + 'label_full_name' => 'Puno ime', + 'label_password' => 'Šifra', + 'label_role' => 'Uloga', + 'label_username' => 'Korisničko ime', + 'layers' => 'Slojevi', + 'login_role' => 'Moredator', + 'logout' => 'Odjava', + 'logs' => 'Logovi', + 'manage' => 'Upravljaj', + 'manage_roles' => 'Upravljanje ulogama i dozvolama', + 'manage_users' => 'Vidi korisnike/ce', + 'manage_users_edit' => 'dodaj/uredi korisnike/ce', + 'manage_public_listing' => 'Upravljaj svojim javnim listingom', + 'mark_as' => 'Obilježi kao', + 'marked_as_not_spam' => 'obilježeno kao da nije spam', + 'marked_as_spam' => 'obilježeno kao spam', + 'match_no_documents' => 'nije odgovaralo nijednom dokumentu', + 'message' => 'Poruka', + 'messages' => 'Poruke', + 'messages_laconica' => 'Poruke Laconice', + 'messages_twitter' => 'Twitter poruke', + 'message_sent' => 'Tvoja poruka je poslana!', + 'mhi' => 'MHI', + 'minute' => 'Minuta', + 'minutes' => 'Minute', + 'missing_parameter' => 'Nedostajući Parametar', + 'moderator' => 'Moderator', + 'modified' => 'modifikovano', + 'modify_timezone' => 'Izmjeniti postavke vremenske zone', + 'move_down_action' => 'premjesti dole', + 'move_up_action' => 'premjesti gore', + 'multiple_hosted_instances' => 'Slučajevi sa više hostova', + 'my_alerts' => 'Moja upozorenja ', + 'my_checkins' => 'Moja prijavljivanja', + 'my_profile' => 'Moj profil', + 'my_reports' => 'Moji izvještaji', + 'my_votes' => 'Ubačeni glasovi', + 'my_votes_up' => 'Pozitivno', + 'my_votes_down' => 'Negativno', + 'name' => 'Naziv', + 'new_alert' => 'Kreiraj novo upozorenje', + 'new_private' => 'Kreiraj novu poruku', + 'new_password' => 'Nova šifra', + 'no' => 'Ne', + 'none_category_explanation' => 'Ovo je posebna kategorija koja se neće prikazati na formularu za podnošenje izvještaja za korisnike koji podnose izvještaje. Korisiti se za zadržavanje izvještaja bez kategorizacije (nekategorizirani izvještaji) kao rezultat brisanja kategorije.', + 'notification' => 'Obavijest', + 'not_case_sensitive' => 'Ne morate paziti na velika i mala slova.', + 'not_found' => 'Nije pronađeno', + 'no_data' => 'Nema podataka. Nema rezultata za prikazivanje.', + 'no_error' => 'Nema greške', + 'no_result_display_msg' => 'Nema rezultata za prikazivanje', + 'of' => 'od', + 'on_specific_count' => 'Po Specifičnom brojanju', + 'openids' => 'OpenID-evi', + 'page' => 'stranica', + 'pages' => 'stranice', + 'page_not_found' => 'Stranica nije pronađena', + 'page_not_found_message_with_contact' => 'Nažalost, strana koju želite da pogledate ne nalazi se ovdje.

Dali ste pratili neki link koji ste našli na drugom mjestu na našem sajtu?
Ako ste na ovu stranu došli sa nekog drugog mjesta na našem sajtu, molimo vas da na kontaktirate kako bi mogli popraviti našu pogrešku.

Dali ste pratili link sa nekog drugog sajta?
Linkovi na drugim sajtovima ponekad mogu biti zastareni ili imati slovne pogreške. Recite nam odakle dolazite i mi ćemo pokušati da kontaktiramotaj sajt kako bi ispravili problem.

Dali ste sami upisali URL?
Možda ste pogrešno upisali adresu (URL). Provjerite da možda niste napravili slovnu grešku, dali možda negdje niste koristili velika slova, itd.

', + 'page_not_found_message' => 'Izvini, ali stranica koju tražiš nije ovdje.', + 'parameters_used' => 'Korišteni parametri', + 'password' => 'Šifra', + 'password_reset' => 'Reset šifre', + 'password_reset_message_line_1' => 'Draga/i', + 'password_reset_message_line_2' => 'Primili smo zahtjev za promjenu šifre u ', + 'password_reset_message_line_3' => 'Da promjenjite šifru, molimo da klikneš na link ispod (ili ga kopiraš i zalijepiš na pretraživač)', + 'password_reset_message_line_4' => 'Po zahtjevu, tvoja šifra je sada resetovana. Slijede tvoji novi podaci', + 'password_reset_subject' => 'Ushahidi reset šifre', + 'phone' => 'Telefon', + 'please_select' => 'Molim obilježi', + 'pm' => 'PM', + 'post_method_not_used' => 'Podaci nisu poslani metodom postivanja ', + 'preview' => 'Pregled', + 'private_message' => 'Poruka', + 'private_messages' => 'Privatna poruka', + 'private_sent' => 'Privatna poruka poslana', + 'private_subject' => 'Naslov', + 'private_to' => 'Prema', + 'public_listing' => 'Javni spisak', + 'qualifiers' => 'Kvalifikatori', + 'read' => 'čitaj', + 'relevance' => 'Relevantnost', + 'report_title' => 'Naslov izvještaja', + 'report_date' => 'Datum izvještaja', + 'reporters' => 'Repoteri/ke', + 'reporter_levels' => 'Nivoa izvještača', + 'reports' => 'Izvještaji', + 'reputation' => 'Bodovi za reputaciju', + 'required' => 'Potrebno', + 'reset' => 'Resetiraj', + 'response' => 'Odgovor', + 'results' => 'Rezultati', + 'revoke' => 'Povuci', + 'riverid_exists_admin' => 'Već postoji korisnički račun kojim upravlja CrowdmapID sa tom email adresom. Korisnik će morati iskoristiti svoju postojeću Crowdmap lozinku za prijavljivanje.', + 'save_settings' => 'Spasi postavke', + 'search' => 'Traži', + 'search_reports' => 'Traži izvještaje', + 'searching_for' => 'tražim', + 'security_info_encryption_key' => 'Ključ za šifriranje još uvijek je postavljen na automatsku vrijednost. To nije bezbjedno i mora biti promjenjeno.', + 'security_info_https' => 'Ovaj se sajt opslužuje putem HTTP-a. Za povećanu sigurnost, treba postaviti na HTTPS.', + 'security_info_instructions' => 'Upute su dostupne na wiki:', + 'select_download_format' => 'Izaberite željeni format za snimanje izvještaja:-', + 'select_field_type' => '--- Odaberite tip polja ---', + 'select_item' => 'Izaberi stavku', + 'select_trigger_before_response' => 'Pre nego što daberete Odgovor, morate odabrati Okidač', + 'select_trigger_before_qualifiers' => 'Morate odabrati Okidač prije nego što definirate Kvalifikatore.', + 'sender' => 'Šalje', + 'send_to' => 'Prema', + 'sent_from_website' => 'Ova poruka je poslana sa tvoje web stranice na', + 'server_time' => 'Server vrijeme', + 'settings' => 'Postavke', + 'showing_page' => 'Prikazivanje stranice', + 'showing_results' => 'Prikazivanje rezultata', + 'shown' => 'Prikazano', + 'special_category' => 'Posebna kategorija', + 'special_category_explanation' => 'Ovo je specijalna kategorija koja se neće prikazati na formularu za podnošenje izvještaja za korisnike koji podnose izvještaje. Koristi se zajedno za opcijom "Trusted Reporters" - izvještavači kojima vjerujemo.', + 'specific_area' => 'Posebna oblast', + 'state' => 'Država', + 'statistics' => 'Statistike', + 'stats' => 'Statistike', + 'stats_collection_error' => 'Sakupljanje statistika nije uspjelo! Pokušajte ponovo kasnije.', + 'stats_collection_error_short' => 'Sakupljanje statistika nije uspjelo!', + 'specific_days' => 'Određeni dani', + 'subject' => 'Naslov', + 'superadmin_role' => 'Superadministrator', + 'task_performed' => 'Obavljeni zadatak', + 'text_field' => 'Polje za unos teksta', + 'theme_name' => 'Ime', + 'title' => 'Upravljajte korisnicima', + 'timeout' => 'Timeout greška. ', + 'to' => 'do', + 'total_records' => 'Ukupno izvještaja', + 'to_date' => 'do', + 'translate_reports' => 'Prevedite izvještaje', + 'trigger' => 'Okidač', + 'triggering_user' => 'Korisnik okidača', + 'triggers' => 'Okidači', + 'unapproved' => 'neodobreno', + 'unknown' => 'Nepoznato', + 'unknown_failure' => 'Nepoznata greška', + 'unread' => 'unread', + 'unsubscribe_message' => 'Više nećete primati obavijesto od ', + 'update_link' => 'Kliknite ovdje za nadgradnju', + 'upgrade_ushahidi' => 'Nadgradite Ushahidi', + 'upgrade_ushahidi_status' => 'Nadgradite Status na Ushahidiju', + 'upload_reports' => 'Postavite Izvještaje', + 'user' => 'Korisnik/ca', + 'users' => 'Korisnici', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verifikovano/neverifikovano', + 'verify_unverify' => 'Verifikuj/Poništi verifikaciju', + 'version' => 'Verzija', + 'version_available' => 'je dostupno za nadogradnju', + 'video_encoding' => 'Kodiranje videa', + 'view_private' => 'Privatne poruke', + 'view_site' => 'Pogledaj stranicu', + 'view_report' => 'Pogledaj izvještaj', + 'welcome' => 'Dobrodošle/i', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Da', + 'your_search_for' => 'Tvoje pretraživanje za', +); diff --git a/application/i18n/bs_BA/ui_main.php b/application/i18n/bs_BA/ui_main.php new file mode 100644 index 0000000000..7cb61ff04c --- /dev/null +++ b/application/i18n/bs_BA/ui_main.php @@ -0,0 +1,614 @@ + 'O Nama ', + 'access' => 'Pristup', + 'access_limits' => 'Ograničenje pristupa', + 'account_name' => 'Ime naloga', + 'actions' => 'Akcije', + 'action_confirm' => 'Ova akcija se ne može poništiti. Jeste li sigurni da želite nastaviti?', + 'activate' => 'Aktiviraj', + 'active' => 'Aktivno', + 'add' => 'Dodaj', + 'added_by' => 'Dodano od', + 'additional_data' => 'Dodatni podaci', + 'additional_reports' => 'Dodatni izvještaji', + 'add_edit' => 'Dodaj/Uredi', + 'add_field' => 'Dodaj polje', + 'add_language' => 'Dodaj jezik', + 'add_new' => 'Novi', + 'add_new_category' => 'Dodaj novu kategoriju', + 'add_translation' => 'Dodaj prevod', + 'admin' => 'Administriranje', + 'alerts' => 'Dobij upozorenja', + 'alerts_alert_me' => 'Obavijesti me ako je izvješće podneseno, ili otprilike:', + 'alerts_btn_send' => 'Spasi moje upozorenje', + 'alerts_email' => 'Email adresu:', + 'alerts_enter_email' => 'Unesi email adresu', + 'alerts_enter_mobile' => 'unesi mobilni broj sa pozivnim brojem', + 'alerts_get' => 'Primi upozorenja', + 'alert_has_been' => 'Upozorenje je ', + 'alerts_mobile_phone' => 'Mobitel', + 'alerts_place_spot' => 'Ili, mjesto na mapi ispod, i bit ćeš obavješten/a u vidu izvještaja koji pokriva područje unutar 20 km.', + 'alerts_place_spot2' => 'Ako nisi našao/la traženu lokaciju, molimo da klikneš na mapu i obilježiš ispravnu lokaciju.', + 'alerts_rss' => 'RSS (kopiraj url ispod)', + 'alerts_select_city' => 'Izaberi grad', + 'alerts_step1_select_city' => 'Korak 1: Obilježi tvoj grad ili lokaciju:', + 'alerts_step2_send_alerts' => 'Korak 2: Pošalji upozorenje na moju:', + 'alerts_step3_select_catgories' => 'Korak 3 (Proizvoljno): Obilježi kategorije ', + 'alert_confirm_previous' => 'Potvrdi prethodni zahtjev za upozorenje', + 'alert_saved' => 'Vaše upozorenje je pohranjeno!', + 'all' => 'Sve kategorije', + 'allowed' => 'Dozvoljeno', + 'allowed_tags' => 'Dopušteni HTMl tagovi: "%s".', + 'allowed_iframes' => 'Iframe-ovi su jedino dopušteni sa: %s.', + 'all_categories' => 'Sve kategorije', + 'all_time' => 'Cijelo vrijeme', + 'and' => 'i', + 'api' => 'API', + 'approve' => 'Odobri', + 'approved' => 'Odobreno', + 'approved_reports' => 'Odobrene prijave', + 'approve_this_report' => 'Odobri prijavu', + 'approximate' => 'Odprilike', + 'archive' => 'Arhiviraj', + 'archived' => 'Arhivirano', + 'ascending' => 'Rastuće', + 'at' => 'kod', + 'author' => 'Autor', + 'auto_checkin' => 'Automatska provjera', + 'avg_reports_per_day' => 'Prosjek prijava po danu', + 'awaiting_approval' => 'Čeka se odobrenje', + 'awaiting_verification' => 'Čeka se potvrda', + 'badge' => 'Bedž', + 'badges' => 'Bedževi', + 'badge_image' => 'Slika bedža', + 'badge_image_upload_your_own' => 'Ili možete upload vašu vlastiti sliku bedža.', + 'badge_pack' => 'Značka paketa', + 'badge_select' => 'Izaberite bedž', + 'blog' => 'Blog', + 'browse_profiles' => 'Pretražite profile', + 'cancel' => 'Odustani', + 'categories' => 'Kategorije', + 'category' => 'Kategorija', + 'category_filter' => 'Kategorija filtera', + 'category_has_been' => 'Kategorija je', + 'category_name' => 'Naziv kategorije', + 'change_date_range' => 'Promijenite opseg datuma', + 'change_password' => 'Promijeni password', + 'change_picture' => 'Promijeni moju sliku', + 'choose' => 'Odaberi', + 'choose_data_points' => 'Odaberite podatke za preuzimanje', + 'choose_date_range' => 'ili izaberite proizvoljni opseg datuma', + 'choose_field_type' => 'Izaberite tip polja', + 'cleanurl' => 'Izbriši URLs', + 'clear' => 'Obriši', + 'clear_map' => 'Očisti mapu', + 'close' => 'Zatvori', + 'clusters' => 'klasteri', + 'color' => 'Boja', + 'comment' => 'Komentirajte', + 'comments' => 'Komentari', + 'comment_details' => 'Detalji komentara', + 'configuration_saved' => 'Vaše postavke su pohranjene.', + 'configure' => 'Podesite', + 'confirm_email_successful' => 'Uspješno ste potvrdili vašu e-mail adresu! Molimo, prijavite se na donji link.', + 'confirm_email_failed' => 'Email potvrda neuspješna! možeš zahtjevati novi email za potvrdu ispod.', + 'contact' => 'Kontaktiraj nas', + 'contact_code' => 'Sigurnosni kod', + 'contact_email' => 'Vaša e-mail adresa', + 'contact_message' => 'Poruka', + 'contact_message_has_send' => 'Vaša poruka je poslana!', + 'contact_name' => 'Vaše ime', + 'contact_phone' => 'Vaš broj telefona', + 'contact_send' => 'Pošalji poruku', + 'contact_subject' => 'Naslov poruke', + 'copyright' => 'Autorska prava', + 'create' => 'Kreiraj', + 'create_edit' => 'Kreiraj/Uredi', + 'create_new' => 'Kreiraj novi', + 'create_new_password' => 'Kreiraj novu lozinku', + 'create_report' => 'Kreiraj izvještaj', + 'credibility' => 'Povjerenje', + 'current_password' => 'Trenutna lozinka', + 'custom_fields' => 'Prilagođena polja', + 'data' => 'Informacija', + 'date' => 'Datum', + 'date_format' => '(mm/dd/gggg)', + 'date_time' => 'Datum i vrijeme', + 'day' => 'dan', + 'deactivate' => 'Deaktiviraj', + 'default_location_name' => 'Nairobi, Kenija', + 'delete' => 'Izbriši', + 'deleted' => 'Izbrisano', + 'deletes' => 'Obrisani', + 'delete_disabled' => 'Onemogućeno brisanje', + 'delete_last' => 'Izbriši zadnje', + 'delete_report' => 'Izbriši ovaj izvještaj', + 'delete_selected' => 'Izbriši odabrano', + 'delete_spam' => 'Izbriši spam', + 'demo' => 'Demo', + 'description' => 'Opis', + 'descending' => 'Opadajuće', + 'detailed_location_example' => 'npr. Obala Maka Dizdara 32, Sarajevo', + 'details' => 'Detalji', + 'direct_report' => 'Direktni izvještaj', + 'disabled' => 'Onemogućeno', + 'disapprove' => 'Neodobren', + 'download_reports' => 'Preuzmi izvještaje', + 'download' => 'Preuzmi.', + 'edit' => 'Uredi', + 'edit_form_fields' => 'Uredi polja formulara', + 'edit_report' => 'Uredi izvještaj', + 'email' => 'E-mail', + 'email_address' => 'E-mail adresa', + 'email_configuration' => 'Postavke e-mail servera', + 'email_server_host' => 'Mail server host', + 'email_server_password' => 'Lozinka e-mail servera', + 'email_server_port' => 'Mail server port', + 'email_server_ssl_support' => 'Mail server SSL podrška', + 'email_server_type' => 'Tip e-mail servera', + 'email_server_username' => 'Korisničko ime e-mail servera', + 'email_settings_comment_0' => 'jer se vaše postavke moraju povezati sa ovom e-mail adresom', + 'email_settings_comment_00' => 'Kako biste dobijali izvještaje putem e-maila, molimo unesite postavke vašeg e-mail naloga. E-mailovi će biti isporučeni na vaš', + 'email_settings_comment_1' => 'Neki serveri zahtijevaju potpunu e-mail adresu', + 'email_settings_comment_2' => 'Lozinka e-mail naloga', + 'email_settings_comment_3' => 'Uobičajeni portovi: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Primjeri: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Primjeri: pop3, imap', + 'email_settings_comment_6' => 'Omogući ili onemogući SSL veze', + 'empty' => '---PRAZNO---', + 'end_point' => 'za', + 'error' => 'Greška!', + 'example' => 'Primjer', + 'example_country' => 'Kenija', + 'external_apps' => 'Spoljne aplikacije', + 'external_video_link' => 'Spoljni video link', + 'facebook' => 'Facebook', + 'feed' => 'Izvor', + 'feedback' => 'Pošalji povratne informacije', + 'feeds' => 'Izvori', + 'feed_has_been' => 'Izvor je', + 'feed_items' => 'Sadržaj izvora', + 'feed_name' => 'Naziv izvora', + 'feed_url' => 'URL izvora', + 'field_unused' => 'Neiskorišteno polje', + 'file' => 'Datoteka', + 'file_over_max_allowed' => 'Vaša datoteka prelazi maksimalnu odobrenu veličinu.', + 'filters' => 'Filteri', + 'filter_reports' => 'Filtriraj izvještaje', + 'filter_reports_by' => 'Filtriraj izvještaje po', + 'filter_reports_contain' => 'Filtriraj izvještaje koji sadrže', + 'find' => 'Pronađi', + 'find_location' => 'Pronađi lokaciju', + 'first_name' => 'Ime', + 'force_run_scheduler' => 'Prisilno pokreni planer', + 'forgot_password' => 'Zaboravili ste lozinku?', + 'form' => 'Formular', + 'forms' => 'Formulari', + 'form_description' => 'Opis formulara', + 'form_edit' => 'Uredi ovaj formular', + 'form_has_been' => 'Formular je', + 'form_title' => 'Naslov formulara', + 'from' => 'Od', + 'full_name' => 'Puno ime', + 'geolocation_available' => 'Goelociranje omogućeno', + 'geometry_color' => 'Boja', + 'geometry_comments' => 'Komentari', + 'geometry_label' => 'Oznaka', + 'geometry_strokewidth' => 'Širina poteza', + 'go' => 'Idi', + 'hashtag' => 'Rešetka', + 'has_been' => 'je bio', + 'help' => 'Kako pomoći', + 'hidden' => 'Sakriveno', + 'hide' => 'Sakrij', + 'hide_this_message' => 'sakrij ovu poruku', + 'home' => 'Naslovna', + 'how_to_report' => 'Kako prijaviti', + 'https' => 'HTTPS', + 'id' => 'Identifikacioni broj', + 'identify_you' => 'se koristi da vas identificira za druge korisnike stranice.', + 'image' => 'Slika', + 'images' => 'Slike', + 'image_icon' => 'Slika/Ikona', + 'inactive' => 'Neaktivan', + 'inbox' => 'Ulazne poruke', + 'incident' => 'Događaj', + 'incidents_nearby' => 'Događaji u blizini', + 'incident_location' => 'Lokacija događaja', + 'include' => 'Uključi', + 'include_categories' => 'Uključi kategorije', + 'include_custom_fields' => 'Uključi prilagođena polja', + 'include_description' => 'Uključi opis', + 'include_detail' => 'Uključi što više detalja', + 'include_latitude' => 'Uključi geografsku širinu', + 'include_location_information' => 'Uključi informacije o lokaciji', + 'include_longitude' => 'Uključi geografsku dužinu', + 'include_personal_info' => 'Uključi lične podatke', + 'incoming_media' => 'Dolazni mediji', + 'information_evaluation' => 'Procjena informacije', + 'input_location' => 'Unesite vašu tačnu lokaciju', + 'insufficient_role' => 'Vaš nalog nema odobrenje da vas u potpunosti prijavi. Molimo, kontaktirajte administratora.', + 'in_response_to' => 'Kao odgovor na', + 'ip_address' => 'IP adresa', + 'is_this_your_profile' => 'Da li je ovo vaš profil?', + 'item' => 'predmet', + 'items' => 'predmeti', + 'item_details' => 'detalji predmeta', + 'item_title' => 'Naslov predmeta', + 'key' => 'Ključ', + 'keywords' => 'Ključne riječi', + 'kml_kmz_file' => 'KMZ/KML datoteka', + 'kml_kmz_upload' => 'Ušitaj KMZ/KML datoteku', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Jezik', + 'last' => 'Posljednji', + 'last_month' => 'Prošli mjesec', + 'last_name' => 'Prezime', + 'last_year' => 'Prošle godine', + 'latitude' => 'Geografska širina', + 'layers' => 'Slojevi', + 'layers_filter' => 'Ostali slojevi', + 'layer_has_been' => 'Sloj je', + 'layer_name' => 'Ime sloja', + 'layer_url' => 'URL sloja', + 'leave_a_comment' => 'Ostavi komentar', + 'less_information' => 'Manje informacija', + 'level' => 'Nivo', + 'level_has_been' => 'Ovaj nivo je', + 'level_name' => 'Ime nivoa', + 'limited' => 'Ograničen', + 'link' => 'Link', + 'list' => 'Lista', + 'loading_reports' => 'Učitavanje izvješća', + 'location' => 'Lokacija', + 'locations' => 'Lokacije', + 'location_example' => 'Grad, Država', + 'login' => 'Prijava', + 'login_account_creation_successful' => 'Nalog je uspješno kreiran. Možete se prijaviti.', + 'login_confirmation_sent' => 'Potvrda je poslana na vašu e-mail adresu.', + 'login_email_doesnt_exist' => 'E-mail adresa ne postoji. Pokušajte sa drugom adresom ili kreirajte nalog.', + 'login_select_openid' => 'Kliknite na ime provajdera vašeg korisničkog računa', + 'login_with' => 'Prijavite se sa', + 'login_userpass' => 'E-mail i lozinka', + 'login_openid' => 'OpenID', + 'login_signup' => 'Pridruži se', + 'login_signup_click' => 'Kreiraj nalog', + 'login_signup_confirmation_message' => 'Hvala vam što ste se prijavili na %1$s. Kako bi potvrdili email adresu, molimo vas posjetite sledeći URL: %2$s', + 'login_signup_confirmation_subject' => 'Potvrda pridruženja', + 'login_signup_text' => 'Kreirajte nalog i iskoristite mnoge prednosti na stranici.', + 'longitude' => 'Geografska dužina', + 'map' => 'Mapa', + 'mark_read' => 'Označi kao pročitano', + 'mark_unread' => 'Označi kao nepročitano', + 'maximum_filesize' => 'Maksimalna dozvoljena veličina', + 'media' => 'Medij', + 'media_filter' => 'Medija filter', + 'members' => 'Članovi', + 'manage_your_account' => 'Upravljanje nalogom', + 'message' => 'Poruka', + 'messages' => 'Poruke', + 'message_details' => 'Detalji poruke', + 'message_non_numeric_source' => 'Poruka od nenumeričkog izvora:', + 'mobile' => 'Mobilni', + 'modify' => 'Izmijeni', + 'modify_date' => 'Izmijeni datum', + 'month' => 'mjesec', + 'more' => 'Više', + 'more_information' => 'Više informacija', + 'multi_country_instance' => 'Dali ovaj Ushahidi Deployment obuhvata više država', + 'must_confirm_email_address' => 'Kako biste pristupili ovome, morate potvrditi vašu e-mail adresu. Ako izgubite e-mail s potvrdom, ispod možete zatražiti novi.', + 'name' => 'Ime', + 'nearby_report' => 'Obližnji izvještaj', + 'new' => 'Novo', + 'news' => 'Novosti', + 'news_feeds' => 'Izvor vijesti', + 'news_source' => 'Novi izvor', + 'new_category' => 'Kategorija vijesti', + 'new_password' => 'Nova šifra', + 'new_report' => 'Novi izvještaj', + 'next' => 'Slijedeće', + 'no' => 'Ne', + 'no_checkins' => 'Nema prijava za prikaz.', + 'no_data' => 'Nema podataka', + 'none' => 'Ništa', + 'notices' => 'Zabilješke', + 'not_approved' => 'Nije odobreno', + 'not_approved_singular' => 'Nije odobreno', + 'not_selected' => '---Nije izabrano---', + 'not_spam' => 'nije spam', + 'not_specified' => 'Nije specificirano', + 'no_reports' => 'Nema izvještaja', + 'no_results' => 'Nema rezultata', + 'off' => 'Isključi', + 'official_news' => 'Zvanične i ostale novosti', + 'on' => 'Uključi', + 'option' => 'Opcija', + 'optional' => 'Dodatne', + 'options' => 'Opcije', + 'organization' => 'Organizacija', + 'organizations' => 'Organizacije', + 'organization_description' => 'Opis organizacije', + 'organization_email' => 'E-mail organizacije', + 'organization_has_been' => 'Organizacija je', + 'organization_name' => 'Ime organizacije', + 'organization_phone_1' => 'Telefonski broj organizacije 1', + 'organization_phone_2' => 'Telefonski broj organizacije 2', + 'organization_website' => 'Website oganizacije', + 'original' => 'Original', + 'original_description' => 'Originalni opis', + 'original_title' => 'Originalni naslov', + 'other_ushahidi_instances' => 'Ostali dijelovi', + 'outbox' => 'Izlazne poruke', + 'outgoing' => 'Odlazne poruke', + 'page' => 'Stranica', + 'pages' => 'Stranice', + 'page_description' => 'Opis stranice', + 'page_has_been' => 'Stranica je', + 'page_tab_name' => 'Ime taba stranice', + 'page_title' => 'Naslov stranice', + 'parent_category' => 'Roditeljska kategorija', + 'password' => 'Lozinka', + 'password_again' => 'Ponovno unesite lozinku', + 'password_changed_successfully' => 'Lozinka je uspješno promijenjena! Prijavite se ispod.', + 'password_forgot' => 'Zaboravili ste lozinku?', + 'password_reset_confirm' => 'Za novu lozinku provjerite vaš e-mail.', + 'password_save' => 'Želite li ostati prijavljeni na ovom računaru?', + 'past_month' => 'Prošli mjesec', + 'past_year' => 'Prošle godine', + 'pending' => 'Na čekanju', + 'per' => 'po', + 'personal_information' => 'Osobni podaci', + 'phone' => 'Telefon', + 'photos' => 'Fotografije', + 'pictures' => 'Slike', + 'pictures_and_videos' => 'Slike i videi', + 'pinpoint_location' => '* Pretražite vašu lokaciju koristeći naziv lokacije i podatke o geografskoj dužini i širini (u formatu: 38.19,-85.61), ili idite na mapu i odaberite tačnu lokaciju.', + 'play' => 'Pusti', + 'please_note' => 'Molimo zabilježite', + 'plugins' => 'Dodaci', + 'plugin_url' => 'Website za dodatke', + 'public_profile' => 'Javni profil', + 'public_profile_url' => 'URL javnog profila', + 'preview' => 'Pregled', + 'preview_item' => 'Pregledaj predmet', + 'preview_message' => 'Pregledaj poruku', + 'previous' => 'Prethodno', + 'private' => 'Privatno', + 'profile_color' => 'Boja profila', + 'profile_saved' => 'Vaš profil je pohranjen', + 'quick_stats' => 'Brze statistike', + 'rating' => 'Ocjene', + 'read' => 'Čitaj', + 'receive' => 'Primi', + 'receive_from' => 'Primi od', + 'receive_notifications' => 'Primi obavijesti', + 'recent_reports' => 'Posljednji izvještaji', + 'refresh_news_feeds' => 'Osvježi izvore vijesti', + 'registered_email' => 'Registrovani e-mail', + 'remove' => 'Ukloni', + 'reply' => 'Odgovori', + 'report' => 'Prijavi', + 'reports_listed' => 'Izvještaji (sa mape, hronološki poredani)', + 'reporter' => 'Izvjestitelj/ka', + 'reporters' => 'Izvjestiteljke/i', + 'reporter_date' => 'Datum Izvestitelj*', + 'reporter_email' => 'Email Izvjestitelj*', + 'reporter_first_name' => 'Ime izvjestitelj*', + 'reporter_has_been' => 'Izvjetitelj* je', + 'reporter_ip' => 'IP adresa izvjestitelj*', + 'reporter_last_name' => 'Prezime izvjestitelj*', + 'reporter_level' => 'Nivo izvjestelja/ke', + 'reporter_levels' => 'Nivoi izvjestelja/ke', + 'reporter_phone' => 'Telefon izvjestitelja', + 'reports' => 'Izvještaji', + 'reports_btn_browse' => 'Pretraži', + 'reports_btn_submit' => 'Pošalji', + 'reports_by_this_user' => 'Izvještaji od ovog korisnika', + 'reports_categories' => 'Kategorije', + 'reports_count' => '%d izvještaji', + 'reports_date' => 'Datum', + 'reports_description' => 'Opis', + 'reports_download_csv' => 'Izvještaj će biti preuzet u CSV formatu', + 'reports_email' => 'e-mail', + 'reports_features' => 'odlike', + 'reports_find_location' => 'Nađi lokaciju blizu tebe', + 'reports_first' => 'Ime', + 'reports_last' => 'Prezime', + 'reports_location_name' => 'Dajte detaljniju lokaciju', + 'reports_news' => 'Link izvora vijesti', + 'reports_optional' => 'Dodatne Informacije', + 'reports_photos' => 'Postavi fotografije', + 'reports_return' => 'Vrati se na stranicu sa izvještajima', + 'reports_select_city' => 'Odaberi grad', + 'reports_submitted' => 'Tvoj izvještaj je dostavljen našem osoblju na provjeru. Uskoro se javljamo ako je neophodno.', + 'reports_submit_new' => 'Novi Izvještaj', + 'reports_time' => 'Vrijeme', + 'reports_timeline' => 'Timeline', + 'reports_title' => 'Naslov izvještaja', + 'reports_video' => 'Video link', + 'report_an_incident' => 'Prijavi incident', + 'report_details' => 'Detalji izvještaja', + 'report_option_1' => 'Slanjem poruke prema', + 'report_option_2' => 'Pošalji email na ', + 'report_option_3' => 'Slanjem tweet-a sa jednim ili više hastaga', + 'report_option_4' => 'Ispuni ovaj formular.', + 'report_option_external_apps' => 'Koristeći aplikaciju', + 'report_saved' => 'Vaš raport je spašen', + 'report_title' => 'Naslov raporta', + 'request_information' => 'Zatražite više informacija', + 'request_location' => 'Zatražite lokaciju', + 'required' => 'Obavezno', + 'requirements' => 'Zahtjevi', + 'resend_confirm_email' => 'Ponovi slanje odobravajućeg emaila', + 'reset' => 'Poništi.', + 'reset_all_filters' => 'Isključi sve filtere', + 'reset_password' => 'Poništi lozinku.', + 'retrieve_city_names' => 'Vrati nazive gradova za obilježenu zemlju', + 'riverid_information' => 'Računima upravlja %s usluga.', + 'riverid_exists_login' => 'Već imaš račun za CrowdmapID! Pokušaj koristiti taj CrowdmapID i šifru za prijavu. ', + 'role' => 'Uloga', + 'rss' => 'RSS', + 'save' => 'Spasi', + 'saved' => 'Spašeno', + 'save_add_new' => 'Spasi i dodaj novi', + 'save_close' => 'Spasi i zatvori', + 'save_report' => 'Spasi dojavu', + 'schedule' => 'Raspored', + 'scheduler' => 'Planer', + 'scheduler_day' => 'Dan', + 'scheduler_hour' => 'Sat', + 'scheduler_log' => 'Dnevnik scheduler-a', + 'scheduler_minute' => 'Minuta', + 'scheduler_weekday' => 'Dan u sedmici', + 'search' => 'SEARCH', + 'search_results' => 'Rezultati pretraživanja', + 'security_code' => 'Sigurnosni kod', + 'select_all' => 'Obilježi sve', + 'select_field_type' => 'Odaberi tip polja', + 'select_form_type' => 'Obilježi oblik forme', + 'select_in_map' => 'Obilježi na mapi', + 'select_multiple' => 'Obilježi koliko je potrebno', + 'select_one' => 'Molimo potvrdi da je stavka provjerena', + 'select_theme' => 'Obilježi temu', + 'send' => 'Pošalji', + 'send_confirmation' => 'Pošalji potvrdu', + 'sending_to' => 'Pošalji prema', + 'sent' => 'Poslano', + 'sent_by' => 'Šalje', + 'server_address' => 'Adresa servera', + 'server_type' => 'Tip servera', + 'service' => 'Usluga', + 'service_username' => 'Korisničko ime usluge', + 'service_user_id' => 'ID korisnice/ka usluge', + 'share' => 'Podijeli', + 'shared_data' => 'Dijeljeni podaci', + 'share_has_been' => 'Podjeljeno je', + 'sharing' => 'Dijeljenje', + 'shorter_map' => 'Kraća mapa', + 'show' => 'Prikaži', + 'show_all' => 'Prikaži sve', + 'show_messages' => 'Prikaži poruke', + 'showing_reports_from' => 'Prikazani izvještaji od %1$s do %2$s', + 'site' => 'Web sajt ', + 'site_email_address' => 'Email adresa sajta', + 'site_url' => 'URL sajta', + 'smaller_map' => 'Manja mapa', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Žao nam je, nemate nijednu značku.', + 'source' => 'Izvor', + 'source_name' => 'Naziv izvora', + 'sort' => 'Razvrstaj', + 'sort_by' => 'Razvrstaj po', + 'source_url' => 'URL izvora', + 'spam' => 'Spam', + 'ssl_support' => 'SSL podrška?', + 'start_point' => 'Od', + 'step' => 'Korak', + 'submit' => 'Izvijestite', + 'submitted_by' => 'Podnijeo/la %1$s preko %2$s', + 'submit_sms' => 'Objavi SMSom.', + 'submit_sms1' => 'Pošalji SMS prema', + 'submit_sms2' => 'na tvoj telefon', + 'success' => 'Uspješno!', + 'successfuly_imported' => 'Uspješno umetnuto', + 'surname' => 'Prezime', + 'survey' => '新开线路', + 'system' => 'Sistem', + 'taller_map' => 'Veća mapa', + 'tcp_port' => 'TCP ulaz', + 'themes' => 'Teme', + 'theme_default' => 'Ushahidi zadana tema', + 'theme_settings' => 'Postavke teme', + 'this' => 'Ovo', + 'this_day' => 'Danas', + 'this_month' => 'Ovaj mjesec', + 'this_week' => 'Ova sedmica', + 'this_year' => 'Ova godina', + 'this_is_your_profile' => 'Ovo je Vaš profil.', + 'time' => 'time', + 'title' => 'TITLE ', + 'to' => 'do', + 'today' => 'Danas', + 'today_at' => 'Danas u', + 'token' => 'Token', + 'total_reports' => 'Ukupno prijava.', + 'translated' => 'Precedeno', + 'translated_description' => 'Prevedeni opis.', + 'translated_title' => 'Prevedeni naslov.', + 'translate_to' => 'Prevedi na', + 'translation' => 'Prevod', + 'translation_saved' => 'Prevod je sacuvan', + 'trusted' => 'Provjereno', + 'type' => 'Tip', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Nije moguce poslati email', + 'uncategorized_reports' => 'Nekategorisane prijave.', + 'unread' => 'nepročitano.', + 'unverified' => 'Nepotvrdjeno', + 'update_feeds' => 'Unosi za ažuriranje', + 'upload' => 'Učitaj', + 'upload_guide' => 'Pogledajte naša uputstva za postavljanje izvještaja:-', + 'upload_docs_1' => 'Vodič za postavljanje u XML formatu', + 'upload_docs_2' => 'Vodič za postavljanje CSV formatu', + 'upload_file' => 'Datoteka za učitavanje', + 'upload_reports' => 'Učitani izvještaji', + 'upload_reports_custom_forms' => 'Kolonama kojima su polja -field- podešena prema vašim zahtjevima moraju se dodati njihove form_id vrijednosti, na pr. specijalni test polja, na difoltnom formularu, sa id-jem 1 biće Test-1. Osigurajte se da je to slučaj prilikom importiranja specijalno podešenog polja. ', + 'upload_reports_detail_1' => 'With the form below, you can import incidents into the Ushahidi engine', + 'upload_reports_detail_2' => 'Izvještaji se moraju postavljati u CSV ili u XML formatu.', + 'upload_reports_detail_3' => 'Kada identifikacijski broj ID incidenta već postoji u bazi podataka, unos u fajl SCV/XML biće ignoriran', + 'upload_reports_detail_4' => 'It must contain at least Incident Title and Incident Date', + 'upload_reports_detail_4b' => 'Ukoliko nisu zadane geografska dužina i širina, lokacija će biti određena korištenjem Google Geocodera.', + 'upload_reports_detail_4c' => 'Ukoliko ubacujete lične podatke npr. lične podatke i/ili posebna polja', + 'upload_reports_detail_4d' => 'Najmanje jedno polje koje se odnosi na lične podatke (ime, prezime, email) mora postojati. Prazni zapisi neće biti unešeni ', + 'upload_reports_detail_4e' => 'Vaši unosi za padajuće menije, radio prekidači i polja za štikliranje slažu se sa opcijama koje se nude za polja podešena prema vašim zahtjevima', + 'upload_reports_detail_4f' => 'Opcije za izbor su odvojene zarezom, npr. ako nudite izbor između jabuka, manga i grožđa, vaš upis za to bi trebao biti "jabuke, mango, grožđe"', + 'upload_reports_detail_4g' => 'Format koji se unosi u polje datum: mm/dd/gggg npr. 3. oktobar 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Uzorak CSV izvještaja', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Učitavanje uspješno', + 'upload_video' => 'Učitavanje videa', + 'url' => 'URL', + 'user' => 'Korisnik', + 'username' => 'Korisnicko ime', + 'ushahidi_admin' => 'Ushahidi administrator', + 'verification' => 'Verifikacija', + 'verified' => 'Potvrdjeno', + 'verified_reports' => 'Potvrdjeni izvjestaji', + 'verify' => 'Potvrdi', + 'verify_this_report' => 'Potvrdi ovaj izvjestaj', + 'version' => 'Verzija', + 'via' => 'putem', + 'video' => 'Video', + 'view' => 'Pregled', + 'views' => 'Pregledi', + 'view_all' => 'Pogledaj sve', + 'view_all_feeds' => 'Pogledaj sva polja', + 'view_all_reports' => 'Pogledaj sve izvjestaje', + 'view_items' => 'Pogledaj stavke', + 'view_more' => 'Prikaži više', + 'view_public_profile' => 'Pogledaj javni profil', + 'view_report' => 'Pogledaj izvještaj', + 'view_reports' => 'Pogledaj izvještaje', + 'view_video' => 'Pogledajte video', + 'visible' => 'Vidljivo', + 'waiting_approval' => 'Čeka na odobrenje', + 'waiting_verification' => 'Verifikacija čekanja', + 'wider_map' => 'Šira mapa', + 'web_form' => 'Web forma', + 'web' => 'Web', + 'weight' => 'Težina', + 'yes' => 'Da', + 'yesterday' => 'Juce', + 'your_dashboard' => 'Vaša kontrolna konzola', + 'your_file' => 'Vaša datoteka.', + 'zoom_in' => 'Povećaj', + 'zoom_out' => 'Smanji', +); diff --git a/application/i18n/bs_BA/upgrade.php b/application/i18n/bs_BA/upgrade.php new file mode 100644 index 0000000000..f3ed0814b3 --- /dev/null +++ b/application/i18n/bs_BA/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Unešeni podaci nisu validni. Prihvatljive vrijednosti jesu 0 za Ne ili 1 za Da.', + ) , + 'upgrade_automatic' => 'Automatska nadogradnja', + 'upgrade_available' => 'Raspoložive nadogradnje', + 'upgrade_continue_btn_text' => 'Nastavi', + 'upgrade_db_btn_text' => 'Nadogradi', + 'upgrade_db_text_1' => 'Spremam se nadograditi vašu bazu podataka sa verzije', + 'upgrade_db_text_2' => 'na novu verziju baze podataka', + 'upgrade_db_text_3' => 'Klik na dugme "Nadogradi" i opusti te se dok se magija dešava', + 'upgrade_db_text_4' => 'Također, ako želite backup vaše baze podataka, štiklirajte polje ispod i to ću odmah učiniti.', + 'upgrade_db_text_5' => 'Uradite backup baze podataka prije nadgradnje novom verzijom? (Preporučujemo da to uradite)', + 'upgrade_db_title' => 'Ushahidi baza podataka nadograđena', + 'upgrade_db_info' => 'Ushahidi je nadgrađen! Pre nego što nastavite, treba da svoju bazu podataka ažurirate na najnoviju verziju (%s).', + 'upgrade_db_up_to_date' => 'Vaša verzija baze podataka je svježa.', + 'upgrade_failed' => 'Nadogradnja nije uspjela', + 'upgrade_manual' => 'Ručna nadogradnja', + 'upgrade_status' => 'Status nadgradnje Ushahidi-ja', + 'upgrade_text_1' => 'Slijede uputstva kao možete manuelno nadgraditi vašu Ushahidi postavku!', + 'upgrade_text_2' => '
Snimi
', + 'upgrade_text_3' => '
- Snimi zadnju verziju Ushahidija sa', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Za svaki slučaj, da bi ste se osigurali u slučaju kakvog bilo problema, preporuča se da napravite puni backup vaše Ushahidi postavke.
Kopiraj fajlove
- Ekstrahiraj snimljeni zipovani fajl
- Ovisno od operativnog sistema koji koristi web server, koristite preferiranu alatku/način (na pr. Telnet, FTP, SSH) za logiranje na webserveri i zamjenite sadržaj svih foldera sa najnovijima iz poslednje nadgradnje.
Nadgradite bazu podataka
- Najpre odredite shematsku verziju vaše baze podataka tako što ćete provjeriti db_version vrijednost na tabeli setinga ili informacije o nadgradnji Ushahidija na vrhu ove stranice.
- Ako ste kod verzije 25, trebate nadgraditi sa 25-26, 26-27, 27-28 i tako dalje sve do najnovijeg SQL fajla u vašem /sql direktoriju.
- Preko klijenta za baze podataka koji koristite, nadgradite bazu podataka izvršavanjem potrebnog upgradex-x.sql fajla.
', + 'upgrade_tables' => 'Korak 3: Pogledajte unutar sql foldera. Ručno pokrenite nadgradnju -.sql fajla počevši sa trenutnom db verzijom vaše instalacije pa do zadnjeg fajla za nadgradnju sql.', + 'upgrade_text_5' => 'Korak 4: Kliknite na dugme "Continue" za nadgradnju potrebnih tabela.', + 'upgrade_text_6' => 'Za automatsku nadogradnju kliknite ispod', + 'upgrade_title_text' => 'Trenutno koristite Ushahidi v%1$s sa verzijom %2$d baze podataka koju pokreće %3$s', + 'upgrading' => 'Nadograđujem', + 'upgrade_ftp_text' => 'Za nastavak lake nadgradnje, FTP serveru na kojem je hostiran vaš website potrebne su slijedeće informacije.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Primjer: "localhost"', + 'upgrade_ftp_password' => 'FTP lozinka:', + 'upgrade_ftp_username' => 'FTP korisničko ime:', + 'upgrade_status_info' => 'Imate najnoviju verziju Ushahidija.', + 'upgrade_status_info_2' => 'Nemate potrebe za nadogradnjom.', + 'upgrade_db_version' => 'Verzija baze podataka: %d', + 'upgrade_warning_software_version' => 'Upozorenje: Verzija softvera u version.php i u bazi podataka ne slažu se.', + 'upgrade_warning_db_version' => 'Upozorenje: Verzija baze podataka u version.php i bazi podataka ne slažu se.', + 'upgrade_database' => 'Baza podataka', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Preuzimanje najnovije verzije Ushahidi-a', + 'log_file' => 'Log fajl', + 'successfully_downloaded' => 'Uspješno snimljeno. Raspakujemo...', + 'failed_downloading' => 'Neuspješno preuzimanje', + 'successfully_unpacked' => 'Uspješno raspakivanje. Kopiram datoteke...', + 'failed_unpacking' => 'Neuspješno raspakivanje.', + 'successfully_copied' => 'Uspješno kopirane datoteke. Nadograđujem bazu podataka...', + 'failed_copying' => 'Neuspješno kopiranje datoteka.', + 'backup_success' => 'Uspješno pohranjivanje i nadogradnja baze podataka', + 'backup_failed' => 'Neuspješno pohranjivanje baze podataka', + 'dbupgrade_success' => 'Uspješna nadogradnja baze podataka.', + 'deleting_files' => 'Brisanje preuzetih datoteka', + 'upgrade_success' => 'NADGRADNJA USPJELA. Pogledajte Log File', +); diff --git a/application/i18n/ca_ES/alerts.php b/application/i18n/ca_ES/alerts.php new file mode 100644 index 0000000000..8906fddbf0 --- /dev/null +++ b/application/i18n/ca_ES/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'El camp Correu Electrònic no apareix o conté una adreça de correu electrònic invàlida?', + 'email_check' => 'Aquesta adreça de correu electrònic ja ha estat registrada per a rebre alertes per aquesta localització.', + 'length' => 'El camp Correu Electrònic ha de tenir entre 4 i 64 caracters.', + 'required' => 'El camp Correu Electrònic és obligatori si el checkbox està marcat.', + ) , + 'alert_country' => array( + 'single_country' => 'Aquest servei está limitat dins d`un estat només. Si us plau, assegureu-vos que la localització de l`alerta és dins l`estat %s.', + ) , + 'alert_lat' => array( + 'between' => 'No heu sel.leccionat una localització vàlida al mapa.', + 'required' => 'No heu sel.leccionat una localització vàlida al mapa.', + ) , + 'alert_lon' => array( + 'between' => 'No heu sel.leccionat una localització vàlida al mapa.', + 'required' => 'No heu sel.leccionat una localització vàlida al mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'El camp Telèfon Mòbil sembla no contenir una quantitat correcta de dígits.', + 'mobile_check' => 'Aquest telèfon mòbil ja ha estat registrat per a rebre alertes per aquesta localització.', + 'numeric' => 'El camp Telèfon Mòbil sembla no contenir un telèfon vàlid. Si us plau, introduiu els números incloent només el Codi de País.', + 'one_required' => 'Heu d`introduir el número de telèfon mòbil o l`adreça de correu electrònic.', + 'required' => 'El camp Telèfon Mòbil és obligatori si el checkbox està marcat.', + ) , + 'alert_radius' => array( + 'in_array' => 'No heu sel.leccionat un radi vàlid al mapa.', + 'required' => 'No heu sel.leccionat un radi vàlid al mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'No heu establert un destinatari per les alertes.', + ) , + 'alerts_subscribed' => 'Us heu subscrit a les alertes per a les seguents categories', + 'code_already_verified' => 'Aquest codi ja ha estat verificat amb anterioritat!', + 'code_not_found' => 'Aquest codi de verificaciõ no s`ha trobat! Si us plau, confirmeu que teniu la URL correcta.', + 'code_verified' => ' El seu codi s`ha verificat correctament. A partir d`ara rebrà les alertes sobre incidències a mida que vagin succeint.', + 'confirm_request' => 'Per a confirmar la seva peticiõ d`alerta, si us plau, vagi a', + 'create_more_alerts' => 'Torneu a la pàgina d`Alertes per crear més alertes', + 'email_alert_request_created' => 'La seva petició d`alerta per correu electrònic ha estat creada i s`ha enviat un missatge de verificació a ', + 'email_code' => 'Si us plau, entreu el codi de confirmació que heu rebut per correu electrònic: ', + 'email_error_head' => 'La seva petició d`alerta per correu electrònic NO s`ha guardat!', + 'email_ok_head' => 'La seva petició d`alerta per correu electrònic s`ha guardat!', + 'error' => 'El sistema no ha pogut processar la seva sol.licitud de confirmació!', + 'mobile_alert_request_created' => 'La seva petició d`alerta al mòbil ha estat creada i s`ha enviat un missatge de verificació a ', + 'mobile_code' => 'Si us plau, entreu el codi de confirmació SMS que heu rebut al mòbil: ', + 'mobile_error_head' => 'La seva petició d`alerta al mòbil NO s`ha guardat!', + 'mobile_ok_head' => 'La seva petició d`alerta al mòbil s`ha guardat!', + 'settings_error' => 'Aquest servei no està configurat per processar correctament les alertes', + 'unsubscribe' => 'Heu rebut aquest correu electrònic perqué us heu subscrit al servei d`alertes. Si no voleu seguir rebent alertes, aneu a ', + 'unsubscribed' => 'Ja no rebrà més alertes de ', + 'unsubscribe_failed' => 'No hem pogut eliminar la seva subscripció. Si us plau, confirmeu que teniu la URL correcta.', + 'verification_email_subject' => 'alertes - verificació', + 'verify_code' => 'No rebreu alertes en aquesta localització fins que confirmeu la vostra petició.', +); diff --git a/application/i18n/ca_ES/auth.php b/application/i18n/ca_ES/auth.php new file mode 100644 index 0000000000..fe1348e7f6 --- /dev/null +++ b/application/i18n/ca_ES/auth.php @@ -0,0 +1,70 @@ + array( + 'email' => 'El correu electrònic entrat no sembla una adreça vàlida.', + 'exists' => 'Ho sentim, ja existeix un compte d`usuari per aquesta adreça de correu electrònic.', + 'length' => 'El camp Correu Electrònci ha de tenir entre 4 i 64 caracters.', + 'required' => 'El camp Correu Electrònic és obligatori.', + ) , + 'name' => array( + 'length' => 'El camp Nom ha de tenir entre 3 i 100 caracters.', + 'required' => 'El camp Nom és obligatori.', + 'standard_text' => 'El Camp Nom d`Usuari conté caracters no permesos.', + ) , + 'current_password' => array( + 'length' => 'El camp Password ha de tenir 8 caracters com a mínim.', + 'login error' => 'Si us plau, reviseu que heu entrat correctament el correu electrònic i el password.', + 'matches' => 'Si us plau, poseu el mateix password als dos camps de Password.', + 'required' => 'El camp Password és obligatori.', + 'alpha_dash' => 'El camp Password només pot contenir caracters alfanumérics, els símbols # i @, números, subratllats i guions', + 'incorrect' => 'El password que heu entrat és incorrecte. Si us plau, prove-ho altra cop.', + ) , + 'new_password' => array( + 'length' => 'El camp Password ha de tenir 8 caracters com a mínim.', + 'login error' => 'Si us plau, reviseu que heu entrat correctament el correu electrònic i el password.', + 'matches' => 'Si us plau, poseu el mateix password als dos camps de Password.', + 'required' => 'El camp Password és obligatori.', + 'alpha_dash' => 'El camp Password només pot contenir caracters alfanumérics, els símbols # i @, números, subratllats i guions', + ) , + 'password' => array( + 'default' => 'Hi ha hagut un error intentant entrar.', + 'length' => 'El camp Password ha de tenir 8 caracters com a mínim.', + 'login error' => 'Si us plau, reviseu que heu entrat correctament el correu electrònic i el password.', + 'matches' => 'Si us plau, poseu el mateix password als dos camps de Password.', + 'required' => 'El camp Password és obligatori.', + 'riverid server down' => 'El servidor d`autenticació està caigut. Si us plau, prove-ho més tard.', + 'alpha_dash' => 'El camp Password només pot contenir caracters alfanumérics, els símbols # i @, números, subratllats i guions', + ) , + 'password_confirm' => array( + 'matches' => 'El camp de Confirmació de Password ha de coincidir amb el camp Password.', + ) , + 'resetemail' => array( + 'email' => 'El correu electrònic que heu posat no sembla una adreça de correu electrònic vàlida.', + 'invalid' => 'Perdoneu, no tenim la seva adreça de correu electrònic', + 'required' => 'El camp Correu Electrònic és obligatori.', + ) , + 'role' => array( + 'superadmin_modify' => 'Només un superadmininstrador pot modificar un superadministrador o promocionar un usuari a administrador.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Format de rol invàlid.', + 'length' => 'El camp Rol ha de tenir entre 5 i 30 caracters.', + 'required' => 'Cal definir un rol com a mínim.', + 'values' => 'Heu de sel.leccionar el rol ADMIN o USUARI.', + ) , + 'username' => array( + 'admin' => 'El rol de l`usuari admin no es pot modificar.', + 'alpha_numeric' => 'El nom d`usuari només pot tenir lletres i números.', + 'exists' => 'Perdoneu, aquest usuari ja està en ús.', + 'length' => 'El camp Nom d`Usuari ha de tenir entre 2 i 100 caracters.', + 'login error' => 'Si us plau, reviseu que heu posat correctament el nom d`usuari.', + 'required' => 'El camp Nom d`Usuari és obligatori.', + 'superadmin' => 'El rol de l`usuari superadministrador no es pot modificar.', + 'csrf' => 'Possible atac CSRF. Segur que volieu crear / editar un usuari?', + ) , +); diff --git a/application/i18n/ca_ES/bug.php b/application/i18n/ca_ES/bug.php new file mode 100644 index 0000000000..b8a8897aa2 --- /dev/null +++ b/application/i18n/ca_ES/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Si us plau, entreu un codi de seguretat vàlid', + 'required' => 'Si us plau, entreu el codi de seguretat', + ) , + 'email' => array( + 'email' => 'El camp Correu Electrònic no conté una adreça vàlida', + 'length' => 'El camp Correu Electrònic ha de tenir entre 4 i 64 caracters.', + 'required' => 'Cal omplenar el camp Correu Electrònic si el checkbox està sel.leccionat.', + ) , + 'error' => array( + 'required' => 'El camp Error és obligatori.', + ) , + 'subject' => array( + 'length' => 'El camp Assumpte ha de ser, pel cap baix, de 3 caracters.', + 'required' => 'El camp Assumpte és obligatori.', + ) , + 'yourname' => array( + 'length' => 'El camp Nom ha de ser, pel cap baix, de 3 caracters.', + 'required' => 'El camp Nom és obligatori.', + ) , +); diff --git a/application/i18n/ca_ES/category.php b/application/i18n/ca_ES/category.php new file mode 100644 index 0000000000..9866419d7b --- /dev/null +++ b/application/i18n/ca_ES/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'El camp Color ha de tenir 6 caracters.', + 'required' => 'El camp Color és obligatori.', + ) , + 'category_description' => array( + 'required' => 'El camp Descripció és obligatori.', + ) , + 'category_image' => array( + 'size' => 'Si us plau, assegureu que la mida de les imatges que es pugen estigui limitada a 50Kb.', + 'type' => 'El camp Imatge no conté una imatge vàlida. El format acceptats són només .JPG, .PNG i .GIF.', + 'valid' => 'El camp Imatge no conté una imatge vàlida.', + ) , + 'category_title' => array( + 'length' => 'El camp Títol ha de tenir entre 3 i 80 caracters.', + 'required' => 'El camp Títol és obligatori.', + ) , + 'parent_id' => array( + 'already_parent' => 'No es pot subcategoritzar una categoria amb subcategories.', + 'exists' => 'La categoria Pare no existeix.', + 'numeric' => 'El camp de la categoria Pare ha de ser numéric.', + 'parent_trusted' => 'La categoria pare no pot ser una categoria especial', + 'required' => 'El camp de la categoria Pare és obligatori.', + 'same' => 'La categoria i la categoria Pare no poden ser iguals.', + 'special' => 'Les categories especials no es poden subcategoritzar', + ) , +); diff --git a/application/i18n/ca_ES/comments.php b/application/i18n/ca_ES/comments.php new file mode 100644 index 0000000000..ce13025758 --- /dev/null +++ b/application/i18n/ca_ES/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Si us plau, entreu un codi de seguretat vàlid', + 'required' => 'Si us plau, entreu el Codi de Seguretat', + 'valid' => 'Ha introduït un codi incorrecte.', + ) , + 'comment_author' => array( + 'length' => 'El camp Nom ha de tenir, pel cap baix, 3 caracters.', + 'required' => 'El camp Nom és obligatori.', + ) , + 'comment_description' => array( + 'required' => 'El camp Comentaris és obligatori.', + ) , + 'comment_email' => array( + 'email' => 'El camp Correu Electrònic sembla tenir una adreça invàlida', + 'length' => 'El camp Correu Electrònic ha de tenir entre 4 i 64 caracters.', + 'required' => 'El camp Correu Electrònic és obligatori si el checkbox està sel.leccionat.', + ) , +); diff --git a/application/i18n/ca_ES/contact.php b/application/i18n/ca_ES/contact.php new file mode 100644 index 0000000000..ada3fa6e43 --- /dev/null +++ b/application/i18n/ca_ES/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Si us plau, entreu un codi de seguretat vàlid', + 'valid' => 'Si us plau, introduïu un codi de seguretat vàlid.', + 'required' => 'Si us plau, entreu el codi de seguretat', + ) , + 'contact_email' => array( + 'email' => 'El camp Email no sembla contenir una adreça vàlida de correu electrònic.', + 'length' => 'El camp de correu electrònic ha de tenir entre 4 i 64 caràcters.', + 'required' => 'El camp Email és obligatori si la casella està marcada.', + ) , + 'contact_message' => array( + 'required' => 'El camp Missatge és obligatori.', + ) , + 'contact_name' => array( + 'length' => 'El camp Nom ha de tenir, pel cap baix, 3 caracters.', + 'required' => 'El camp Nom és obligatori.', + ) , + 'contact_subject' => array( + 'length' => 'El camp Assumpte ha de tenir, pel cap baix, 3 caracters.', + 'required' => 'El camp Assumpte és obligatori.', + ) , + 'email_send' => array( + 'failed' => 'S\'ha produït un error en enviar el missatge.', + ) , +); diff --git a/application/i18n/ca_ES/core.php b/application/i18n/ca_ES/core.php new file mode 100644 index 0000000000..39e64aaff3 --- /dev/null +++ b/application/i18n/ca_ES/core.php @@ -0,0 +1,35 @@ + 'fitxer de configuraciõ', + 'controller' => 'controlador', + 'driver' => 'dispositiu', + 'driver_implements' => 'El dispositiu %s per la llibreria %s ha d`implementar l`interfície %s', + 'driver_not_found' => 'No s`ha trobat el dispositiu %s per la llibreria %s', + 'errors_disabled' => 'Podeu anar a la pàgina principal o provar-ho altra cop.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Incapaç de completar la petició', + 'helper' => 'ajudant', + 'invalid_filetype' => 'El tipus de fitxer sol.licitat, .%s, no és permés pel seu fitxer de configuració', + 'invalid_method' => 'Métode invàlid %s cridat a %s', + 'invalid_property' => 'La propietat %s no existeix a la classe %s.', + 'library' => 'llibreria', + 'log_dir_unwritable' => 'No es pot escriure al directori log: %s', + 'model' => 'model', + 'no_controller' => 'L`Ushahidi no ha pogut trobar un controlador per processar aquesta petició: %s', + 'no_default_route' => 'Si us plau, sel.leccioneu una ruta per defecte a config/routes.php', + 'page_not_found' => 'La pàgina sol.licitada, %s, no s`ha trobat.', + 'report_bug' => 'Reporteu això a l`Ushahidi', + 'resource_not_found' => 'La %s demanada, %s, no s`ha trobat', + 'stack_trace' => 'Pila de traça', + 'stats_footer' => 'Carregat en {execution_time} segons, fent servir {memory_usage} de memòria. Generat per l`Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Només pot haver una instància de l`Ushahidi per cada pàgina demanada', + 'uncaught_exception' => 'Excepció no capturada %s: %s dins el fitxer %s a la línia %s', + 'view' => 'vista', + 'view_set_filename' => 'Heu de sel>leccionar el fitxer de vistes abans de renderitzar', +); diff --git a/application/i18n/ca_ES/database.php b/application/i18n/ca_ES/database.php new file mode 100644 index 0000000000..fbd8767436 --- /dev/null +++ b/application/i18n/ca_ES/database.php @@ -0,0 +1,10 @@ + 'Error de Base de Dades: %s', + 'table_not_found' => 'La Taula "%s" no es troba a la Base de Dades. Si us plau, assegureu-vos dèstar utilitzant la darrera versió de la base de dades per aquesta versiõ de l`Ushahidi', +); diff --git a/application/i18n/ca_ES/datetime.php b/application/i18n/ca_ES/datetime.php new file mode 100644 index 0000000000..b97aabc8bd --- /dev/null +++ b/application/i18n/ca_ES/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Div', + 'full' => 'Divendres', + ) , + 'monday' => array( + 'abbv' => 'Dil', + 'full' => 'Dilluns', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Dis', + 'full' => 'Dissabte', + ) , + 'sunday' => array( + 'abbv' => 'Diu', + 'full' => 'Diumenge', + ) , + 'thursday' => array( + 'abbv' => 'Dij', + 'full' => 'Dijous', + ) , + 'tuesday' => array( + 'abbv' => 'Dim', + 'full' => 'Dimarts', + ) , + 'wednesday' => array( + 'abbv' => 'Dix', + 'full' => 'Dimecres', + ) , + 'january' => array( + 'abbv' => 'Gen', + 'full' => 'Gener', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Febrer', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Març', + ) , + 'april' => array( + 'abbv' => 'Abr', + 'full' => 'Abril', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Maig', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juny', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juliol', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agost', + ) , + 'september' => array( + 'abbv' => 'Set', + 'full' => 'Setembre', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'Octubre', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novembre', + ) , + 'december' => array( + 'abbv' => 'Des', + 'full' => 'Desembre', + ) , +); diff --git a/application/i18n/ca_ES/feedback.php b/application/i18n/ca_ES/feedback.php new file mode 100644 index 0000000000..9ef8c8f857 --- /dev/null +++ b/application/i18n/ca_ES/feedback.php @@ -0,0 +1,24 @@ + 'Accions', + 'feedback_captcha' => array( + 'required' => 'Si us plau, entreu el Codi de Seguretat.', + 'valid' => 'Si us plau, entreu un codi de seguretat vàlid', + ), + 'feedback_date' => 'Data', + 'feedback_details' => 'Detalls', + 'feedback_message' => array( + 'required' => 'Si us plau, entreu alguna informació per a la resposta.', + ), + 'feedback_title' => array( + 'length' => 'El camp Títol ha de tenir entre 3 i 100 caracters.', + 'required' => 'El títol és obligatori.', + ), + 'person_email' => array( + 'email' => 'El camp Correu Electrònic sembla tenir una adreça invàlida', + 'required' => 'Si us plau, entreu el vostre correu electrònic', + ), + 'person_name' => array( + 'required' => 'Si us plau, entreu el vostre nom complert.', + )); +?> diff --git a/application/i18n/ca_ES/feeds.php b/application/i18n/ca_ES/feeds.php new file mode 100644 index 0000000000..6cad887406 --- /dev/null +++ b/application/i18n/ca_ES/feeds.php @@ -0,0 +1,19 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'El camp Nom de Feed ha de tenir entre 3 i 70 caracters.', + 'required' => 'Si us plau, entre el Nom de Feed.', + ) , + 'feed_url' => array( + 'required' => 'Si us plau, entreu la URL del Feed.', + 'url' => 'Si us plau, entreu una URL vàlida. P.ex. http://www.coettc.cat', + ) , + 'source' => 'FONT', + 'title' => 'Títol', +); diff --git a/application/i18n/ca_ES/footer.php b/application/i18n/ca_ES/footer.php new file mode 100644 index 0000000000..d506737f7e --- /dev/null +++ b/application/i18n/ca_ES/footer.php @@ -0,0 +1,9 @@ + 'El php5-curl no està instal.lat en aquest sistema', +); diff --git a/application/i18n/ca_ES/form.php b/application/i18n/ca_ES/form.php new file mode 100644 index 0000000000..5e170d1155 --- /dev/null +++ b/application/i18n/ca_ES/form.php @@ -0,0 +1,46 @@ + array( + 'default' => 'El valor per defecte subministrat per aquest camp és invàlid.', + 'length' => 'El camp Nom ha de tenir entre 3 i 200 caracters.', + ) , + 'field_height' => array( + 'between' => 'Si us plau, entreu un valor entre 0 i 50 pel camp Alçada', + ) , + 'field_isdate' => array( + 'between' => 'Heu entrat un valor invàlid pel camp Data', + 'required' => 'Si us plau, seleccioneu Si o No pel camp Data', + ) , + 'field_name' => array( + 'length' => 'El camp Nom ha de tenir entre 3 i 100 caaracters.', + 'required' => 'Si us plau, entreu el camp Nom.', + ) , + 'field_required' => array( + 'between' => 'Heu entrat un valor invàlid pel camp demanat', + 'required' => 'Si us plau, seleccioneu Si o No pel camp demanat', + ) , + 'field_type' => array( + 'numeric' => 'Si us plau, seleccioneu un Tipus de Camp vàlid.', + 'required' => 'Si us plau, seleccioneu un Tipus de Camp.', + ) , + 'field_width' => array( + 'between' => 'Si us plau, entreu un valor entre 0 i 50 pel camp Amplada', + ) , + 'form_description' => array( + 'required' => 'Si uns plau, entreu la Descripciõ del formulari.', + ) , + 'form_id' => array( + 'default' => 'El formulari per defecte no es pot eliminar.', + 'numeric' => 'Si us plau, seleccioneu a quin formulari cal afegir aquest camp.', + 'required' => 'Si us plau, seleccioneu a quin formulari cal afegir aquest camp.', + ) , + 'form_title' => array( + 'length' => 'El camp Nom del Formulari ha de tenir entre 3 i 100 caaracters.', + 'required' => 'Si us plau, entreu el nom del formulari.', + ) , +); diff --git a/application/i18n/ca_ES/imap.php b/application/i18n/ca_ES/imap.php new file mode 100644 index 0000000000..174d651fd7 --- /dev/null +++ b/application/i18n/ca_ES/imap.php @@ -0,0 +1,10 @@ + 'No es pot obrir el stream de IMAP', + 'unsupported_service' => 'El servei de correu electrònic no està suportat', +); diff --git a/application/i18n/ca_ES/installer.php b/application/i18n/ca_ES/installer.php new file mode 100644 index 0000000000..46585b7656 --- /dev/null +++ b/application/i18n/ca_ES/installer.php @@ -0,0 +1,84 @@ + 'Directori Base', + 'database' => 'Base de Dades', + 'database_host' => 'Servidor de Base de Dades', + 'database_host_description' => 'Si esteu fent servir Ushahidi al vostre propi ordinador, aquesta adreça hauria de ser "localhost". Si l`esteu fent servir en un servidor extern, heu d`agafar la informaciõ del proveidor del servei', + 'database_name' => 'Nom de la Base de Dades', + 'database_name_description' => 'El nom de la base de dades que utilitzarà l`Ushahidi', + 'db_information_link' => 'Per a més informaciõ, llegiu aquest article a la wiki que tracta les bases de dades amb més detall', + 'default_language' => 'Idioma per Defecte (Local)', + 'default_language_description' => 'Cada desenvolupament d`Ushahidi ve amb un conjunt de paquets d`idiomes. També podeu afegir-ne d`altres', + 'disable' => 'Deshabilitat', + 'enable' => 'Habilitat', + 'error_summary' => 'Resum dels errors trobats', + 'files_location_text' => 'El directori al servidor on s`han posat els fitxers d`Ushasidi. Aquest valor ha estat detectat automàticament. Si us plau, reviseu que sigui correcte. Si el camp és buit, no us amoineu. Vol dir que l`Ushasidi està instal.lat al directori arrel', + 'finished' => 'Finalitzat', + 'general' => 'General', + 'google_key' => 'Google Clau API ', + 'google_key_description' => 'Qualsevol pot fer-se amb una API Key. Aconseguiu la vostra ara', + 'go_back' => 'Tornar', + 'index' => array( + 'advanced' => 'INSTAL.LACIÓ AVANÇADA', + 'advanced_installation_description' => 'Obteniu tota la informació per a la instal.lació en un procés de 5 pases. Això inclou servidor, mapa, nom del site i detalls de contacte', + 'basic_installation' => 'INSTAL.LACIÓ BÀSICA', + 'basic_installation_description' => 'Simple i ràpida. Tot el que es necessita és el nom del directori arrel del servidor web i la informaciõ de la base de dades. Trieu aquesta opciõ si voleu fer una instal.lació ràpida. Acabada aquesta instal.lació, es pot complertar la configuració en un altre moment', + 'proceed' => 'Procedir', + 'welcome' => 'Benvingut al procés d`instal.laciõ del servidor d`Ushahidi. Trieu quin tipus d`instal.lació voldrieu realitzar', + ) , + 'installation_successful' => 'Instal.lació Exitosa', + 'mail_server' => 'Servidor de Correu', + 'mail_server_host' => 'Host del Servidor de Correu', + 'mail_server_host_description' => 'Exemples: mail.latevaweb.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Password del Servidor de Correu', + 'mail_server_password_description' => 'El password del compte de correu', + 'mail_server_port' => 'Port del Servidor de Correu', + 'mail_server_port_description' => 'Ports comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tipus de Servidor de Correu', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). Quina és la diferència?', + 'mail_server_username' => 'Usuari del Servidor de Correu', + 'mail_server_username_description' => 'Si utilitzeu el Gmail, el Hotmail, o el Yahoo Mail, feu servir l`adreça complerta com a nom d`usuari', + 'map' => 'Mapa', + 'map_provider' => 'Proveidor de Mapa', + 'map_provider_description' => 'Ushahidi treballa correctament amb qualsevol d-aquests tres proveidors de mapes: Google, Bing or Open Street Map. Trieu el que tingui major nivell de detall a la vostra àrea', + 'other_steps' => 'Altres pases...', + 'password' => 'Password', + 'password_description' => 'El password de la base de dades', + 'previous' => 'Previ', + 'restart_apache' => 'Si us plau, reinicieu el Servidor Apache', + 'select_mail_server_ssl' => 'Habilitar o Deshabilitar SSL', + 'select_mail_server_ssl_description' => 'Alguns servidors de correu donen lòpció de fer servir SSL a l`establir una connexió. Es recomana fer servir SSL ja que ofereix un nivell addicional de seguretat', + 'setup_sms' => 'Configurar un Servidor SMS', + 'site_email' => 'Adreça de correu electrònic del sistema', + 'site_email_alerts' => 'Adreça de correu electrònic per alertes', + 'site_email_alerts_description' => 'Adreça de correu electrònic per l`enviament d`alertes als usuaris que ho sol.licitin. Aquesta adreça de correu electrònic no ha de ser la mateixa que l`adreça de correu electrònic del sistema', + 'site_email_description' => 'Tots els missatges del sistema faran servir aquesta adreça de correu electrònic', + 'site_name' => 'Nom del Sistema', + 'site_name_description' => 'El nom del sistema', + 'site_tagline' => 'Subtítol', + 'site_tagline_description' => 'El subtítol del sistema', + 'summary' => array( + 'text_1' => 'Cal que els fitxers i directoris seguents disposin de permisos d`escriptura', + 'text_2' => '

Podeu trobar més informaciõ per canviar permisos de fitxers a:

+ ', + 'text_3' => 'Abans de comançar, assegureu-vos que els seguents fitxers i directoris tenen permisos d`escriptura. Pot ser necessari canviar els permisos de forma manual', + 'text_4' => 'Pel procés d`instal.laciõ serà necessària la seguent informació', + ) , + 'table_prefix' => 'Prefix per les Taules', + 'table_prefix_description' => 'Normalment no es fa servir cap prefix. Tot i això, si voleu executar vàries instal.lacions d`Ushasidi a la mateixa base de dades, es pot fer canviant el prefix de les taules aquí', + 'title' => 'Títol', + 'to_login' => 'Pel login, aneu a', + 'upload_data' => 'Pujar raports', + 'username' => 'Usuari', + 'username_description' => 'L`usuari de la base de dades', + 'use_credentials' => 'i feu servir les credencials seguents', + 'view_site' => 'Veure el vostre website', +); diff --git a/application/i18n/ca_ES/layer.php b/application/i18n/ca_ES/layer.php new file mode 100644 index 0000000000..cc50bd7af8 --- /dev/null +++ b/application/i18n/ca_ES/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El camp Color ha de tenir 6 caracters.', + 'required' => 'El camp Color és obligatori.', + ) , + 'layer_file' => array( + 'type' => 'El camp Fitxer sembla contenir un fitxer invàlid. Els únics formats acceptats són .KMZ, .KML.', + 'valid' => 'El camp Fitxer no sembla contenir un fitxer vàlid', + ) , + 'layer_name' => array( + 'length' => 'El nom de Fitxer ha de tenir entre 3 i 80 caracters.', + 'required' => 'El nom de fitxer és obligatori.', + ) , + 'layer_url' => array( + 'atleast' => 'Es requereix un fitxer o una URL d`un KML', + 'both' => 'No es pot especificar alhora una URL i un arxiu KML', + 'url' => 'Si us plau, entreu una URL vàlida. P.ex. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/ca_ES/libraries.php b/application/i18n/ca_ES/libraries.php new file mode 100644 index 0000000000..ab37147d7e --- /dev/null +++ b/application/i18n/ca_ES/libraries.php @@ -0,0 +1,27 @@ + 'No es pot connectar al servidor Akismet', + 'akismet_cannot_retrieve' => 'No es pot rebre resposta d`Akismet', + 'api_library_not_found' => 'La llibreria API: %s, per la classe %s no es troba. Si us plau, reviseu la taula d`enrutament de les tasques de l`API.', + 'askimet_invalid_apikey' => 'La clau API de l`Akismet no és vàlida', + 'clickatell_fopen_error' => 'Error executant el métode d`enviament fopen!
Si us plau, reviseu que el PHP suporta OpenSSL i que la versióde PHP és superior a la 5.2', + 'clickatell_message_too_long' => 'El missatge es massa llarg! (Llargada actual=', + 'clickatell_no_destination_address' => 'Si us plau, especifiqueu un adreça de destinació (TO-A)!', + 'clickatell_no_sender_address' => 'Si us plau, especifiqueu una adreça d`origen (FROM-DE)!', + 'clickatell_unicode_message_too_long' => 'El missatge unicode es massa llarg! (Llargada actual=', + 'clickatell_unsupported_method' => 'Métode d`enviament no suportat!', + 'invalid_api_library' => 'La llibreria API %s no és vàlida. Totes les llibreries d`API han de ser subclasses de %s', + 'upgrade_directory_not_deleted' => 'El directori %s no es pot esborrar', + 'upgrade_extracting_error' => 'Error a l`extreure: %s', + 'upgrade_failed' => 'La descàrrega de la darrera versió de l`Ushahidi ha fallat. Codi d`estat HTTP', + 'upgrade_file_not_copied' => 'El fitxer %s no es pot copiar', + 'upgrade_file_not_deleted' => 'El fitxer %s no es pot esborrar', + 'upgrade_title' => 'Script d`actualització de l`Ushahidi', + 'upgrade_zip_error' => 'Al fitxer zip d`Ushahidi descarregat: %s, no es pot escriure', + 'riverid_variable_not_available' => '%s no està disponible en la classe RiverID.', +); diff --git a/application/i18n/ca_ES/maintenance.php b/application/i18n/ca_ES/maintenance.php new file mode 100644 index 0000000000..8b80770ae5 --- /dev/null +++ b/application/i18n/ca_ES/maintenance.php @@ -0,0 +1,9 @@ + 'Perdoneu, el nostre site està temporalment caigut per tasques de manteniment. Si us plau, proveu altre cop d`aquí a una estona.', +); diff --git a/application/i18n/ca_ES/message.php b/application/i18n/ca_ES/message.php new file mode 100644 index 0000000000..d73ac5508b --- /dev/null +++ b/application/i18n/ca_ES/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Si us plau, entreu un codi de seguretat vàlid', + 'required' => 'Si us plau, entreu el codi de seguretat', + ) , + 'email' => array( + 'email' => 'El camp Correu Electrònic sembla tenir una adreça invàlida', + 'length' => 'El camp Correu Electrònic ha de tenir entre 4 i 64 caracters.', + 'required' => 'El camp Correu Electrònic és obligatori si el checkbox està sel.leccionat.', + ) , + 'message' => array( + 'required' => 'El camp Missatge és obligatori.', + ) , + 'name' => array( + 'length' => 'El camp Nom ha de tenir, pel cap baix, 3 caracters.', + 'required' => 'El camp Nom és obligatori.', + ) , + 'phone' => array( + 'length' => 'El camp Telèfon no és vàlid.', + ) , +); diff --git a/application/i18n/ca_ES/mhi.php b/application/i18n/ca_ES/mhi.php new file mode 100644 index 0000000000..4bd22b788c --- /dev/null +++ b/application/i18n/ca_ES/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Si us plau, entreu un codi de seguretat vàlid', + 'required' => 'Si us plau, entreu el codi de seguretat', + ) , + 'contact_email' => array( + 'email' => 'El camp Correu Electrònic no sembla contenir una adreça vàlida', + 'required' => 'Si us plau, entreu una adreça de correu electrònic vàlida', + ) , + 'contact_message' => array( + 'required' => 'El camp Missatge és obligatori.', + ) , + 'contact_subject' => array( + 'length' => 'El camp Assumpte ha de tenir, pel cap baix, 3 caracters.', + 'required' => 'El camp Assumpte és obligatori.', + ) , +); diff --git a/application/i18n/ca_ES/notifications.php b/application/i18n/ca_ES/notifications.php new file mode 100644 index 0000000000..46b74efd2a --- /dev/null +++ b/application/i18n/ca_ES/notifications.php @@ -0,0 +1,35 @@ + 'Aquest missatge ha estat enviat des del vostre site', + 'admin_login_url' => 'Login d`Administrador', + 'admin_new_comment' => array( + 'message' => 'S`ha enviat un nou comentari al site en resposta a:', + 'subject' => 'Nou Comentari', + ) , + 'admin_new_email' => array( + 'message' => 'S`ha enviat un nou missatge de correu electrònic al vostre site.', + 'subject' => 'Nou Missatge de Correu', + ) , + 'admin_new_report' => array( + 'message' => 'S`ha enviat un nou llistat al vostre site.', + 'subject' => 'Nou Llistat', + ) , + 'admin_new_sms' => array( + 'message' => 'S`ha enviat un nou missatge de text al vostre site.', + 'subject' => 'Nou Missatge de Text', + ) , + 'member_new_alert' => array( + 'message' => 'Heu rebut una Nova Alerta', + 'subject' => 'Nova Alerta!', + ) , + 'member_new_message' => array( + 'message' => 'Heu rebut un Missatge Privat', + 'subject' => 'Nou Missatge Privat', + 'footer' => 'Per contestar el missatge, si us plau, Aneu A: ', + ) , +); diff --git a/application/i18n/ca_ES/page.php b/application/i18n/ca_ES/page.php new file mode 100644 index 0000000000..2daad115e5 --- /dev/null +++ b/application/i18n/ca_ES/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Si us plau, poseu un Títol de Pàgina', + 'length' => 'El Títol de Pàgina ha de tenir entre 3 i 150 caracters.', + ) , + 'page_tab' => array( + 'required' => 'Si us plau, poseu un Nom de Pestanya', + ) , + 'page_description' => array( + 'required' => 'Si us plau, poseu una Descripció de Pàgina', + ) , +); diff --git a/application/i18n/ca_ES/permissions.php b/application/i18n/ca_ES/permissions.php new file mode 100644 index 0000000000..8ced339459 --- /dev/null +++ b/application/i18n/ca_ES/permissions.php @@ -0,0 +1,26 @@ + 'Veure Informes', + 'reports_edit' => 'Crear/Editar/Esborrar Informes', + 'reports_approve' => 'Aprovar Informes', + 'reports_verify' => 'Verificar Informes', + 'reports_comments' => 'Gestionar els comentaris dels Informes', + 'reports_download' => 'Descarregar Informes', + 'reports_upload' => 'Pujar Informes', + 'messages' => 'Gestionar Missatges', + 'messages_reporters' => 'Gestionar reporters de Missatges', + 'stats' => 'Veure Estadístiques', + 'settings' => 'Modificació de la Configuració', + 'manage' => 'Gestionar el Panell', + 'users' => 'Gestionar Usuaris', + 'manage_roles' => 'Gestionar Rols', + 'checkin' => 'Pot registrar-se', + 'checkin_admin' => 'Gestionar Registres', + 'admin_ui' => 'Accés a la interfície d\'usuari Admin.', + 'member_ui' => 'Accés a la interfície d\'usuari Membres.', +); diff --git a/application/i18n/ca_ES/private_message.php b/application/i18n/ca_ES/private_message.php new file mode 100644 index 0000000000..710c9345a8 --- /dev/null +++ b/application/i18n/ca_ES/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'ID principal ha de ser numèric', + ) , + 'private_to' => array( + 'required' => 'El camp Per és obligatori', + 'exists' => 'L\'usuari al que intenteu enviar un missatge no existeix', + ) , + 'private_subject' => array( + 'required' => 'El camp Assumpte és obligatori', + 'length' => 'L\'assumpte ha de tenir entre 3 i 150 caracters.', + ) , + 'private_message' => array( + 'required' => 'El camp Missatge és obligatori', + ) , +); diff --git a/application/i18n/ca_ES/report.php b/application/i18n/ca_ES/report.php new file mode 100644 index 0000000000..5882ea14c6 --- /dev/null +++ b/application/i18n/ca_ES/report.php @@ -0,0 +1,128 @@ + 'error!', + 'country_name' => array( + 'single_country' => 'Aquest desplegament s\'estén dins d\'un sol país. Assegureu-vos que la ubicació de l\'informe es troba al país %s.', + ) , + 'data_include' => array( + 'between' => 'Please select a valid item to include in the download', + 'numeric' => 'Please select a valid item to include in the download', + ) , + 'data_active' => array( + 'between' => 'Si us plau, seleccioneu "Informes Pendents d\'Aprovació" o "Informes Aprovats" o ambdòs.', + 'numeric' => 'Si us plau, seleccioneu "Informes Pendents d\'Aprovació" o "Informes Aprovats" o ambdòs.', + 'required' => 'Si us plau, seleccioneu "Informes Pendents d\'Aprovació" o "Informes Aprovats" o ambdòs.', + ) , + 'data_verified' => array( + 'between' => 'Si us plau, seleccioneu "Informes Pendents de Verificació" o "Informes Verificats" o ambdòs.', + 'numeric' => 'Si us plau, seleccioneu "Informes Pendents de Verificació" o "Informes Verificats" o ambdòs.', + 'required' => 'Si us plau, seleccioneu "Informes Pendents de Verificació" o "Informes Verificats" o ambdòs.', + ) , + 'data_point' => array( + 'between' => 'Please select a valid type of report to download', + 'numeric' => 'Please select a valid type of report to download', + 'required' => 'Please select a valid type of report to download', + ) , + 'format' => array( + 'required' => 'Heu de seleccionar un format de descàrrega. Pot ser CSV o XML', + 'valid' => 'Si us plau, seleccioneu un format vàlid per descarregar els informes en', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'El camp de data DES DE sembla no contenir una data vàlida', + 'range' => 'Si us plau, entreu una data vàlida DES DE. No pot ser més gran que la data d`avui.', + ) , + 'incident_active' => array( + 'between' => 'Si us plau, entreu un valor vàlid per a Aprovar Aquest Llistat', + 'required' => 'Si us plau, entreu un valor vàlid per a Aprovar Aquest Llistat', + ) , + 'incident_ampm' => array( + 'validvalues' => 'El camp am/pm sembla contenir un valor no vàlid', + ) , + 'incident_category' => array( + 'numeric' => 'El camp "Categories" no sembla tenir una categoria vàlida', + 'required' => 'El camp "Categories" és obligatori.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'El camp data no sembla tenir una data vàlida', + 'date_mmddyyyy' => 'El camp data no sembla tenir una data vàlida', + 'required' => 'El camp data és obligatori.', + ) , + 'incident_description' => array( + 'required' => 'El camp "Descripció" és obligatori.', + ) , + 'incident_hour' => array( + 'between' => 'El camp hora no sembla tenir una hora vàlida', + 'required' => 'El camp hora és obligatori.', + ) , + 'incident_information' => array( + 'alpha' => 'Si us plau, entreu un valor vàlid per a Information Probability', + 'length' => 'Si us plau, entreu un valor vàlid per a Information Probability', + ) , + 'incident_minute' => array( + 'between' => 'El camp minut no sembla tenir un valor vàlid', + 'required' => 'El camp minut és obligatori.', + ) , + 'incident_news' => array( + 'url' => 'El camp enllaç a les fonts de notícies no sembla tenir una URL vàlida', + ) , + 'incident_photo' => array( + 'size' => 'Si us plau, assegureu-vos que les mides de les fotos a pujar no tinguin més de 2MB.', + 'type' => 'El camp Pujar Fotos no sembla tenir una imatge vàlida. Els únics format acceptats són .JPG, .PNG and .GIF.', + 'valid' => 'El camp Pujar Fotos no sembla tenir un fitxer vàlid', + ) , + 'incident_source' => array( + 'alpha' => 'Si us plau un valor vàlid per a Source Reliability', + 'length' => 'Si us plau un valor vàlid per a Source Reliability', + ) , + 'incident_title' => array( + 'length' => 'El camp "Títol del Llistat" ha de tenir entre 3 i 200 caracters.', + 'required' => 'El camp "Títol del Llistat" es obligatori.', + 'csrf' => 'Possible atac CSRF. Segur que volieu crear/editar un informe?', + ) , + 'incident_verified' => array( + 'between' => 'Si us plau, entre un valor vàlid per a Verificar aquest Llistat', + 'required' => 'Si us plau, entre un valor vàlid per a Verificar aquest Llistat', + ) , + 'incident_video' => array( + 'url' => 'El camp enllaços a video sembla no tenir una URL vàlida', + ) , + 'latitude' => array( + 'between' => 'El camp latitud sembla no tenir una latitud vàlida', + 'required' => 'El camp latitude és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació.', + ) , + 'locale' => array( + 'alpha_dash' => 'El camp locale té un valor incorrecte. ', + 'exists' => 'Aquest llistat ja disposa d`una traducció per aquest idioma', + 'length' => 'El camp locale té un valor incorrecte. ', + 'locale' => 'El Llistat Original i la Traducció tenen el mateix locale (idioma)', + 'required' => 'El locale és obligatori.', + ) , + 'location_name' => array( + 'length' => 'El camp "Nom Refinat d`Ubicació" ha de tenir entre 3 i 200 caracters.', + 'required' => 'El camp "Nom Refinat d`Ubicació" és obligatori.', + ) , + 'longitude' => array( + 'between' => 'El camp longitud sembla no tenir un valor vàlid', + 'required' => 'El camp longitud és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació.', + ) , + 'person_email' => array( + 'email' => 'El camp Correu Electrònic sembla contenir una adreça no vàlida', + 'length' => 'El camp Correu Electrònic ha de tenir entre 4 i 64 caracters.', + ) , + 'person_first' => array( + 'length' => 'El camp Primer Nom ha de tenir entre 3 i 100 caracters.', + ) , + 'person_last' => array( + 'length' => 'El camp Segon Nom ha de tenir entre 2 i 100 caracters.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'El camp data A sembla tenir una data no vàlida', + 'range' => 'Si us plau, entreu una data A vàlida.No pot ser més gran que la data d`avui.', + 'range_greater' => 'La vostra data DES DE no pot ser més gran que la vostra data A.', + ) , +); diff --git a/application/i18n/ca_ES/reporters.php b/application/i18n/ca_ES/reporters.php new file mode 100644 index 0000000000..3ba09d887f --- /dev/null +++ b/application/i18n/ca_ES/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'El camp latitud sembla tenir un valor de latitud no vàlid', + 'required' => 'El camp latitude és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació.', + ) , + 'level_id' => array( + 'numeric' => 'El camp Nivell de Report sembla no tenir un nivell vàlid', + 'required' => 'El camp Nivell de Report sembla no tenir un nivell vàlid', + ) , + 'location_name' => array( + 'length' => 'El camp nom d`ubicació ha de tenir entre 3 i 200 caracters.', + 'required' => 'El camp nom d`ubicació és obligatori.', + ) , + 'longitude' => array( + 'between' => 'El camp longitud sembla tenir un valor de latitud no vàlid', + 'required' => 'El camp longitud és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació.', + ) , + 'reporter_id' => array( + 'numeric' => 'Report Invàlid', + 'required' => 'Report Invàlid', + ) , +); diff --git a/application/i18n/ca_ES/reports.php b/application/i18n/ca_ES/reports.php new file mode 100644 index 0000000000..798f654488 --- /dev/null +++ b/application/i18n/ca_ES/reports.php @@ -0,0 +1,16 @@ + array( + 'required' => 'Si us plau, comproveu que heu marcat un punt', + 'numeric' => 'Si us plau, comproveu que heu marcat un punt', + 'categories_required' => 'Els informes han de ser classificats abans que puguin ser aprovats', + ) , + 'action' => array( + 'permission' => 'No teniu permís per realitzar aquesta acció', + ) , +); diff --git a/application/i18n/ca_ES/roles.php b/application/i18n/ca_ES/roles.php new file mode 100644 index 0000000000..f07592faa0 --- /dev/null +++ b/application/i18n/ca_ES/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El camp Descripció ha de tenir entre 3 i 100 caracters.', + 'required' => 'El camp Descripció és obligatori.', + ) , + 'name' => array( + 'alpha_numeric' => 'El camp Nom només pot contenir lletres o números.', + 'length' => 'El camp Nom ha de tenir entre 2 i 30 caracters.', + 'nomodify' => 'El Rol de SuperAdmin No es pot Modificar.', + 'required' => 'El camp Nom és obligatori.', + ) , + 'access_level' => array( + 'numeric' => 'El camp Nivell d`Accés ha de ser un número entre 0 i 100.', + 'required' => 'El camp Nivell d`Accés ha de ser un número entre 0 i 100.', + ) , + 'permissions' => array( + 'numeric' => 'El camp Permisos ha de ser un nombre entre 0 i 100.', + ) , +); diff --git a/application/i18n/ca_ES/settings.php b/application/i18n/ca_ES/settings.php new file mode 100644 index 0000000000..11215ded33 --- /dev/null +++ b/application/i18n/ca_ES/settings.php @@ -0,0 +1,213 @@ + array( + 'between' => 'El camp Comentaris Permessos no sembla tenir un valor vàlid', + 'required' => 'El camp Comentaris Permesos és obligatori.', + ) , + 'allow_feed' => array( + 'between' => 'El camp Incloure Feed no sembla tenir un valor vàlid', + 'required' => 'El camp Incloure Feed és obligatori.', + ) , + 'allow_alerts' => array( + 'between' => 'El camp Alertes Permesses no sembla tenir un valor vàlid', + 'required' => 'El camp Alertes Permesses és obligatori.', + ) , + 'allow_reports' => array( + 'between' => 'El camp Informes Permessos no sembla tenir un valor vàlid', + 'required' => 'El camp Informes Permessos és obligatori.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'El camp Estadístiques Compartides no sembla tenir un valor vàlid', + 'required' => 'El camp Estadístiques Compartides és obligatori.', + ) , + 'api' => array( + 'default_record_limit' => 'Núm. de registres per defecte a retornar per petició a l`API', + 'maximum_record_limit' => 'Núm. de registres màxim a retornars per petició a l`API', + 'maximum_requests_per_ip_address' => 'Núm. màxim de peticions d`API per adreça IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'El camp Akismet no sembla tenir un valor vàlid', + 'length' => 'El camp Akismet no sembla tenir una llargada vàlida', + ) , + 'cache_pages' => array( + 'between' => 'El camp Pàgines Catxé no sembla tenir un valor vàlid', + 'required' => 'El camp Pàgines Catxé és obligatori.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'El camp Temps de Vida de les Pàgines Catxé no sembla tenir un valor vàlid', + 'required' => 'El camp Temps de Vida de les Pàgines Catxé és obligatori.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Sembla que el seu servidor no està configurat per a suportar URLs netes. Cal que canvieu la configuració del servidor com a pas previ a acceptar URLs netes. Si voleu més informació sobre com habilitar URLs netes, consulteu aquest missatge al fòrum (en anglès)', + 'clean_url_enabled' => 'Aquesta opció fa que l`Ushahidi sigui accessible via URLs "netes", és a dir, sense "index.php" a l`URL.', + 'enable_clean_url' => 'Habilitar URLs netes', + 'title' => 'URLs Netes', + ) , + 'clickatell_api' => array( + 'length' => 'El camp Número de l`API Clickatell no pot ser de més de 20 caracters.', + 'required' => 'El camp número de l`API Clickatell és obligatori.', + ) , + 'clickatell_password' => array( + 'length' => 'El camp Password de l`API Clickatell ha de tenir entre 5 i 50 caracters.', + 'required' => 'El camp password de l`API Clickatell és obligatori.', + ) , + 'clickatell_username' => array( + 'length' => 'El camp Nom d`Usuari de l`API Clickatell no pot ser de més de 50 caracters.', + 'required' => 'El camp nom d`usuari de l`API Clickatell és obligatori.', + ) , + 'configure_map' => 'Configureu Mapa', + 'default_location' => 'Ubicació Predeterminada', + 'default_map_all' => array( + 'alpha_numeric' => 'El camp Color del Feed no sembla tenir un valor vàlid', + 'length' => 'El camp color del feed no pot tenir més de 6 caracters.', + 'required' => 'El camp color del feed és obligatori.', + ) , + 'default_map_view' => 'Vista de Mapa Predeterminada', + 'default_zoom_level' => 'Nivell de Zoom Predeterminat', + 'download_city_list' => 'Descarregar Llista de Ciutats des de Geonames', + 'email_host' => array( + 'length' => 'El camp Servidor de Correu és massa llarg', + 'numeric' => 'El camp Servidor de Correu només pot contenir números.', + ) , + 'email_password' => array( + 'length' => 'El camp Password del Servidor de Corrreu ha de tenir entre 5 i 50 caracters.', + 'required' => 'El camp Password del Servidor de Corrreu és obligatori.', + ) , + 'email_port' => array( + 'length' => 'El camp Port del Servidor de Correu és massa llarg', + 'numeric' => 'El camp Port del Servidor de Correu només pot contenir números.', + ) , + 'email_servertype' => array( + 'length' => 'El camp Tipus de Servidor de Correu és massa llarg', + 'required' => 'El camp Tipus de Servidor de Correu és obligatori.', + ) , + 'email_username' => array( + 'length' => 'El camp Nom d`Usuari del Servidor de Correu no pot tenir més de 50 caracters.', + 'required' => 'El camp Nom d`Usuari del Servidor de Correu és obligatori.', + ) , + 'facebook' => array( + 'title' => 'Configuració d`opcions de Facebook', + 'description' => 'Per agafar la informació següent, necessiteu fer una nova sol.licitud de Facebook a', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'El camp Google Analytics ha de contenir un Web Property ID vàlid amb el format UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Habilitar HTTPS', + 'https_disabled' => 'Aquesta opció fa l`Ushahidi accessible en mode no-segur; sense https"://" al prefix de l`URL', + 'https_enabled' => 'Aquesta opció fa l`Ushahidi accessible en mode segur; amb https"://" al prefix de l`URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'El camp Items per Pàgina (Frontend) sembla no contenir un valor vàlid', + 'required' => 'El camp Items per Pàgina (Frontend) és obligatori.', + ) , + 'items_per_page_admin' => array( + 'between' => 'El camp Items per Pàgina (Admin) sembla no contenir un valor vàlid', + 'required' => 'El camp Items per Pàgina (Admin) és obligatori.', + ) , + 'map' => array( + 'default_location' => 'Configurar el proveïdor de cartografia és un procés senzill. Seleccioneu un proveïdor, obteniu una clau API del site del proveïdor i entreu la clau de l`API', + 'zoom' => 'Nivell de Zoom', + ) , + 'map_provider' => array( + 'choose' => 'SEscolliu un Proveïdor de Cartografia', + 'enter_api' => 'Entreu la nova Clau de l`API', + 'get_api' => 'Aconseguiu una Clau d`API', + 'info' => 'Configurar el proveïdor de cartografia és un procés senzill. Seleccioneu un proveïdor, obteniu una clau API del site del proveïdor i entreu la clau de l`API', + 'name' => 'Proveïdor de Cartografia', + ) , + 'map_timeline' => 'Mapa Cronològic', + 'map_settings' => 'Configuració del Mapa', + 'multiple_countries' => 'Aquesta instal.lació de l`Ushahidi, ¿abasta varis països?', + 'select_default_location' => 'Si us plau, predetermineu un país', + 'set_location' => 'Cliqueu i arrossegueu el mapa per indicar la vostra localització exacta', + 'site' => array( + 'allow_clustering' => 'Permetre Agrupar Informes Reportats al Mapa', + 'allow_comments' => 'Permetre als Usuaris Enviar Comentaris als Informes Reportats', + 'allow_feed' => 'Incloure Feed RSS de Notícies al Website', + 'allow_alerts' => 'Permetre Subscripcions dels Usuaris per Alertes', + 'allow_reports' => 'Permetre als Usuaris Enviar Informes Reportats', + 'api_akismet' => 'Clau Akismet', + 'banner' => 'Banner del Site', + 'blocks_per_row' => 'Blocs Per Filera', + 'cache_pages' => 'Cache de Pàgines', + 'cache_pages_lifetime' => 'Temsp de Vida de la Catxé de Pàgines', + 'checkins' => 'Habilitar Registres', + 'copyright_statement' => 'Declaració de Copyright del Site', + 'default_category_colors' => 'Color Predeterminat Per Totes Les Categories', + 'default_category_icons' => 'Icona predeterminada per a totes les Categories', + 'delete_banner_image' => 'Esborrar Imatge del Banner', + 'delete_default_map_all_icon' => 'Esborrar Icona Predeterminada', + 'display_contact_page' => 'Mostrar Pàgina de Contacte', + 'display_howtohelp_page' => 'Mostrar Pàgina de "Com Ajudar"', + 'email_alerts' => 'Adreça de Correu Electrònic per a les Alertes', + 'email_notice' => 'Per tal de poder rebre informes reportats per correu electrònic, si us plkau, configureu el vostre compte de correu electrònic.', + 'email_site' => 'Adreça de Correu Electrònic del Site', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'ID de Propietat Web - Format: UA-XXXXX-XX', + 'items_per_page' => 'Items Per Pàgina - Front End', + 'items_per_page_admin' => 'Items Per Pàgina - Admin', + 'kismet_notice' => 'Eviteu rebre correu brossa fent servir Akismet d`Automattic.
Podeu obtenir una clau d`API gratuïta registrant un compte d`usuari de WordPress.com', + 'laconica_configuration' => 'Credencials de Laconica', + 'laconica_site' => 'Site de Laconica ', + 'language' => 'Idioma del Site', + 'manually_approve_users' => 'Aprovació Manual d`Usuaris', + 'message' => 'Missatge del Site', + 'name' => 'Nom del Site', + 'private_deployment' => 'Instal.lació Privada', + 'require_email_confirmation' => 'Requereix Confirmació del Correu Electrònic de l`Usuari', + 'submit_report_message' => 'Enviar Missatge d`Informe Reportat', + 'share_site_stats' => 'Habilitar Estadístiques (Enmagatzemades al servidor de l`Ushahidi)', + 'tagline' => 'Subtítol del Site', + 'timezone' => 'Zona Horària', + 'title' => 'Configuració del Site', + 'twitter_configuration' => 'Termes de Recerca a Twitter', + 'twitter_hashtags' => 'Hashtags - Separats amb comes ', + ) , + 'site_email' => array( + 'email' => 'El camp Correu Electrònic del Site no sembla tenir un valor vàlid', + 'length' => 'El camp Correu Electrònic del Site ha de tenir entre 4 i 100 caracters.', + ) , + 'site_name' => array( + 'length' => 'El camp Nom del Site ha de tenir entre 3 i 50 caracters.', + 'required' => 'El camp Nom del Site és obligatori.', + ) , + 'site_tagline' => array( + 'length' => 'El camp Tagline ha de tenir entre 3 i 100 caracters.', + 'required' => 'El camp Tagline és obligatori.', + ) , + 'sms' => array( + 'clickatell_api' => 'Clau de l`API de Clickatell', + 'clickatell_check_balance' => 'Reviseu el Saldo del Clickatell', + 'clickatell_load_balance' => 'Carregueu Saldo', + 'clickatell_password' => 'Password del Clickatell', + 'clickatell_text_1' => 'Registreu-vos al servei Clickatells clicant aquí', + 'clickatell_text_2' => 'Entreu les vostres dades d`accés a Clickatell a sota', + 'clickatell_username' => 'El vostre Nom d`Usuari Clickatell', + 'flsms_text_1' => 'Entreu el(s) número(s) de telèfon connectats al Frontline SMS al(s) camp(s) següent(s)', + 'flsms_text_2' => 'Entreu el número sense cap + ni guions', + 'option_1' => 'Opció 1: Fer servir el Frontline SMS', + 'option_2' => 'Opció 2: Fer servir un sistema SMS extern', + 'title' => 'Opcions de Configuració SMS', + ) , + 'sms_no1' => array( + 'length' => 'El camp Telèfon 1 sembla no tenir un valor vàlid', + 'numeric' => 'El camp Telèfon 1 només hauria de tenir números.', + ) , + 'sms_no2' => array( + 'length' => 'El camp Telèfon 2 és massa llarg', + 'numeric' => 'El camp Telèfon 2 només hauria de tenir números.', + ) , + 'sms_no3' => array( + 'length' => 'El camp Telèfon 3 és massa llarg', + 'numeric' => 'El camp Telèfon 3 només hauria de tenir números.', + ) , +); diff --git a/application/i18n/ca_ES/sharing.php b/application/i18n/ca_ES/sharing.php new file mode 100644 index 0000000000..970d17acdd --- /dev/null +++ b/application/i18n/ca_ES/sharing.php @@ -0,0 +1,25 @@ + 'Data d`ingrés', + 'date_added' => 'Data d`afegida', + 'last_access' => 'Darrer Accés', + 'sharing_color' => array( + 'length' => 'El camp Color ha de ser de 6 caracters.', + 'required' => 'El camp Color és obligatori.', + ) , + 'sharing_name' => array( + 'length' => 'El nom Sharing sembla no ser vàlid', + 'required' => 'És obligatori un nom Sharing.', + ) , + 'sharing_url' => array( + 'exists' => 'L`URL del site ja existeix', + 'length' => 'L`URL del site sembla no tenir una llargada vàlida', + 'required' => 'L`URL del site és obligatori.', + 'url' => 'El camp URL site sembla no tenir un URL vàlid', + ) , +); diff --git a/application/i18n/ca_ES/stats.php b/application/i18n/ca_ES/stats.php new file mode 100644 index 0000000000..057a9ce150 --- /dev/null +++ b/application/i18n/ca_ES/stats.php @@ -0,0 +1,42 @@ + 'Aprovat', + 'categories' => 'Categories', + 'category_impact' => 'Per Categores', + 'category_impact_description' => 'Aquest gràfic dona una visió linial dels llistats, classificats per categories. Escrol.leu d`esquerra a dreta per a comparar les diferents categories. Moveu el punter per sobre del gràfic per a veure`n els detalls', + 'choose_date_range' => 'Trieu un rang de dates', + 'countries' => 'Països', + 'country' => 'País', + 'country_breakdown' => 'Per País', + 'description' => 'Aquesta és la secció d`estadístiques. Aviat hi haurà una descripció general. De moment, podeu navegar fent servir els enllaços de les subcategories', + 'error' => 'Error', + 'glossary' => 'Glossari', + 'hit_summary' => 'Connexions', + 'legend' => 'Legenda', + 'pageviews' => 'Pàgines vistes', + 'pageviews_description' => 'Nombre total de pàgines vistes', + 'reports' => 'Llistats', + 'reports_categories' => 'Categories dels Llistats', + 'reports_statistics' => 'Estadístiques dels Llistats', + 'reports_status' => 'Estat dels Llistats', + 'report_punchcard' => 'Avaluació Puntual de Llistat', + 'report_stats' => 'Estadístiques de Llistats', + 'stats_not_setup' => 'Configuració incomplerta de les estadístiques', + 'time_range_1' => '1 Mes', + 'time_range_2' => '3 Mesos', + 'time_range_3' => '6 Mesos', + 'time_range_all' => 'Tots', + 'unapproved' => 'No Aprovat', + 'unique_visitors' => 'Visitants Unics', + 'unique_visitors_description' => 'Nombre de visites individuals al site; determinats utilitzant les cookies. En el cas que un dels visitants no tingui les cookies habilitades, se l`identifica mitjançant l`adreça IP, la resolució, el navegador, els plug-ins, el sistema operatiu, etc.', + 'unverified' => 'No Verificat', + 'verified' => 'Verificat', + 'visitor_summary' => 'Resum de Visitants', + 'visits' => 'Visites', + 'visits_description' => 'Una `visita` és un registre d`un únic visitant que fa més de 30 minuts que no ha estat en aquest site', +); diff --git a/application/i18n/ca_ES/tooltips.php b/application/i18n/ca_ES/tooltips.php new file mode 100644 index 0000000000..7b0f14b344 --- /dev/null +++ b/application/i18n/ca_ES/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => 'Aquesta acció afegeix la informació reportada a categories addicionals. Si seleccioneu Categoria 1 i la informació reportada ja està vinculada a Categoria 2, la informació reportada tindrà Categoria 1 i Categoria 2 alhora.', + 'approve' => 'Aprova un informe o no. Si s\'aprova, es mostrarà públicament.', + 'assign_badge' => 'Podeu assignar un medalla a l`usuari que llença l`alerta. Seleccioneu aquí la medalla que voleu concedir.', + 'between_times' => 'Aquest és el rang d`hores i/o minuts entre dos horaris en format de 24 hores. Si indiqueu un valor inferior al segon camp de temps, s`intercanviarà amb el primer. Aquests horaris han d`estar dins el mateix dia. Aquest temps també es compara amb l`horari configurat en el site (en la configuració del site i NO necessàriament en la zona horària amb que l`usuari ha interactuat en l`instal.lació). Deixeu aquest camp de 00:00 a 00:00 per ignorar aquest rang.', + 'category' => 'Si només voleu activar alertes quan s`utilitza una certa categoria, ho podeu fer aquí. Això permetrà activar una alerta si només s`utilitza una de les categories. Per exemple, si seleccioneu aquí Categoria 1 i Categoria 2, i una informació reportada està presentada utilitzant Categoria 2 i Categoria 3, passarà el test.', + 'days_of_the_week' => 'Si aquestes accions pasen en determinat dia de la setmana. Recordeu que el dia és determinat per la configuració de la zona horària de l`instal.lació. Premeu shift -majúscules- or control per seleccionar múltiples dies.', + 'email_body' => 'Cos del missatge que s`enviarà.', + 'email_subject' => 'Subjecte del missatge que s`enviarà.', + 'feed_id' => 'El feed pot ser de tots els serveis o un feed específic. Si només voleu feeds específics per activar un disparador, haureu de seleccionar-los aquí. En cas contrari, haureu de deixar-ho com "tots"', + 'from' => 'Nom d\'usuari de Twitter (o més noms d\'usuari separats per comes). Si voleu activar disparadors només per als missatges de Twitter d\'un usuari en particular, escriviu el seu nom d\'usuari aquí (sense incloure @)', + 'keywords' => 'Podeu deixar aquest camp en blanc si no voleu cercar per paraules clau. Si afegiu més d`una paraula, necessitareu separar-les amb una coma (,). Per exemple, si voleu activar una alerta quan algú mencioni "amor" o "pau" al seu missatge, haureu d`afegir "amor,pau" a la caixa de les paraules clau.', + 'location' => 'També podeu seleccionar qualsevol lloc o una ubicació específica. Si seleccioneu una ubicació concreta, s`us demanarà que dibuixeu un rectangle al voltant de l`àrea on s`examina l`acció. Per exemple, si voleu activar aquesta alerta quan algú presenti una informació reportada de l`Empordà, haureu de seleccionar "ubicació concreta" i després dibuixar un rectangle al voltant de l`Empordà. Podeu fer aquests rectangles tant petites o grans com vulgueu. També podeu dibuixar múltiples rectangles.', + 'on_specific_count' => 'Aquest classificador activarà l`alerta de l`enèssim comptador tant per la base col.lectiva d`usuaris com per cada usuari individual. Deixeu-ho en blanc per ignorar-ho.', + 'report_title' => 'Aquest és el títol predeterminat per afegir a l\'informe.', + 'response' => 'Si es passen tots els classificadors anteriors, l`alarma iniciarà una resposta. Aquesta pot abastar des de aprovar una informació reportada, a enviar un missatge a un usuari. Seleccioneu la resposta aquí per a activar opcions addicionals per a les respostes concretes.', + 'send_to' => 'Si seleccioneu "Alerta d`Usuari", s`enviarà el correu a l`usuari que ha realitzat l`acció. Si seleccioneu el radio button proper a la caixa d`entrada de dades, podreu entrar una adreça de correu personalitzada. Això és útil si creeu alertes per notificar a la gent quan s`estan veient informacions reportades en certes parts del mapa, registres a qualsevol altra activitat.', + 'specific_days' => 'Aquí podeu seleccionar múltiples dies. Les dates estan determinades per la zona horària de l`instal.lació.No seleccioneu cap data si voleu aplicar les dates per defecte.', + 'trigger' => 'L`alarma és el component central de les Accions d`Alarmes. Aquí és on determinareu si voleu que passi alguna cosa quan algú reporti, registri, etc. Al seleccionar-ne una, podreu filtrar les respostes a aquestes accions.', + 'user' => 'L`usuari pot ser qualsevol o un d`específic. Si només voleu permetre que determinats usuaris activin alarmes, haureu de seleccionar-los aquí. D`altra forma, haureu de deixar-ho amb l`indicació "qualsevol", doncs la majoria de les alarmes estan habilitades perquè tots els usuaris interactuin amb el sistema.', + 'verify' => 'Marca una informació reportada com a verificada o no.', + ) , + 'change_picture' => 'Les pàgines de perfil d`aquest site fan servir Gravatar. Clicant sobre la vostra imatge, anireu al site de Gravatar on podreu canviar la vostra imatge de perfil.', + 'default_value' => 'Separeu cada valor amb una coma p.ex. valor1, valor2', + 'radio_choices' => 'Separeu cada valor amb una coma, per exemple, valor1, valor2. En cas que desitgeu establir un valor per defecte, poseu fi a la seva llista d\'opcions amb :: per exemple, si vol fer valor3 el valor per defecte, serà valor1, valor2, valor3 :: valor3', + 'dropdown_choices' => 'Separeu cada opció amb una coma p.ex. Opció 1, Opció 2, etc', + 'private_to' => 'Comenceu a teclejar la llista de membres', + 'private_subject' => 'Títol del missatge privat', + 'private_message' => 'Missatge privat', + 'profile_color' => 'Podeu seleccionar un color que es mostrarà a sota de la vostra imatge de perfil al vostre perfil públic. Aquest serà el color també del punt que mostrarà sobre el mapa els vostres registres.', + 'profile_email' => 'La vostra adreça de correu electrònic', + 'profile_name' => 'Aquesta és una de les formes amb les que esteu identificats al site. Recordeu que es públic!', + 'profile_new_password' => 'Si ho marqueu, aquest serà el vostre nou password. Deixeu-ho en blanc si voleu mantenir el password actual', + 'profile_new_users_password' => 'Aquest camp és obligatori quan es crea un nou usuari, ja que serà el nou password de l`usuari. Heu d`indicar al nou usuari que haurà de canviar el seu password després d`accedir per primer cop.', + 'profile_notify' => 'Seleccionant SI podreu rebre alertes per correu electrònic quan es publiquin noves informacions reportades o es facin comentaris al site', + 'profile_password' => 'Obliguem a entrar el password per a prevenir canvis no autoritzats al vostre compte.', + 'profile_public' => 'Si marqueu aquesta opció, el vostre perfil pot ser vist per qualsevol a Internet. Aquesta es també la forma més senzilla per mostrar informacions que heu reportat, els vostres registres, medalles, etc., tot en una sola pàgina.', + 'profile_public_url' => 'Aquesta és l`adreça on es pot trobar el vostre perfil públic.', + 'profile_username' => 'El vostre nom d`usuari no es pot canviar', + 'settings_access_level' => 'Els "Nivells d`Accés" es fan servir per a restringir l`accés a camps de dades específics. Els nivells d`accés més alts poden accedir als camps dels nivells inferiors. El Superadmin té el nivell d`accés més alt - 100. Les dades públiques es mostren al nivell més baix - 0.', + 'settings_alert_email' => 'Aquesta es l`adreça de correu electrònic que es farà servir per enviar alertes per correu electrònic.', + 'settings_allow_alerts' => 'Permet els usuaris subscriure`s a les alertes a través de la web.', + 'settings_allow_clustering' => 'Aquesta opció permet agrupacions de informacions reportades similars en un únic punt del mapa', + 'settings_allow_comments' => 'Permet als usuaris comentar sobre informacions reportades al site principal.', + 'settings_allow_feed' => 'Aquesta opció permet mostrar feeds de notícies RSS al site principal.', + 'settings_allow_reports' => 'Permet als usuaris reportar informació a través d`un formulari web.', + 'settings_api_default_record_limit' => 'Nombre predeterminat de registres retornats en cada crida a l`API', + 'settings_api_max_record_limit' => 'Nombre màxim de registres retornats en cada crida a l`API', + 'settings_api_max_requests_per_ip' => 'Nombre màxim de crides a l`API per adreça IP', + 'settings_banner' => 'El banner del site apareixerà a dalt del front-end del site, si el tema que utilitzeu ho suporta. La mida recomanda del banner dependrà del tema emprat. Tingueu en compte que això reemplaçarà el títol del site i la línia present a dalt de la pàgina.', + 'settings_blocks_per_row' => 'Nombre de blocs de columnes que es mostraran en cada filera', + 'settings_cache_pages' => 'Habilita o deshabilita el paginat de catxé. això accelera la càrrega de la pàgina, reduint els temps de resposta. Recomanem fer servir aquesta catxé en sites amb alt trànsit. **Recordeu que les informacions reportades es carregaran en el front-end en base al temps que es fixa més avall (temps de vida de la catxé).', + 'settings_cache_pages_lifetime' => 'Fixa el temps de vida de la catxé.', + 'settings_checkins' => 'Aquesta opció habilita registres a la vostra instal.lació. Aquest és un tipus d`informació reportada simplificada que no està moderada abans d`anar a la homepage i requereix que el vostre site estigui configurat d`una determinada manera. Quan habiliteu aquesta característica, assegureu-vos que la zona horària està fixada a UTC i que el vostre tema suporta registres. Quan ho habiliteu, registreu només temes que siguin habilitables a través de la pàgina de configuració per addons i temes.', + 'settings_configure_map' => 'Fixa el mapa per cobrir una ubicació concreta ', + 'settings_default_category_colors' => 'Fixa un codi de color per totes les categories del site', + 'settings_default_category_icons' => 'Establiu una icona per a totes les categories del lloc.', + 'settings_default_location' => 'País on es site està funcionant', + 'settings_display_contact' => 'Posa la llegüeta de Contacte On o Off al site principal.', + 'settings_display_howtohelp' => 'Posa la llegüeta de Com Ajudar On o Off al site principal.', + 'settings_display_items_per_page' => 'Nombre d`informació reportada que es mostra per pàgina al site principal.', + 'settings_display_items_per_page_admin' => 'Nombre d`informació reportada que es mostra per pàgina al back-end d`administració.', + 'settings_flsms_download' => 'Concentrador pels missatges entrants', + 'settings_flsms_synchronize' => 'Sincronitza els missatges del concentrador amb la plataforma Ushahidi', + 'settings_flsms_text_1' => 'Números de telèfon per on es reben els missatges de text', + 'settings_google_analytics' => 'Seguiment dels visitants del site. Obteniu estadístiques detallades dels visitants', + 'settings_locale' => 'Fixa l`idioma que s`utilitza en aquest site.', + 'settings_manually_approve_users' => 'Si poseu aquesta opció a SI, haureu d`autoritzar cada usuari que crei un compte en aquest site, assignant-li rols (p.ex. Membre, Admin, Superadmin).', + 'settings_map_provider' => 'Aquesta opció defineix el mapa que utilitzarà el site', + 'settings_map_timeline' => 'Això mostra la línia de temps sobre la base de la data i l\'hora en les que es van presentar els informes', + 'settings_private_deployment' => 'Fixant aquest valor a Veritable o Si convertirà la vostra instal.lació en privada i així només els usuaris dels comptes que especifiqueu podran accedir a aquest desenvolupament.', + 'settings_require_email_confirmation' => 'Si està fixat a Si, als usuaris se`ls enviarà un enllaç de confirmació per correu electrònic abans de permetres entrar. Si abiliteu aquesta opció després d`acceptar usuaris, se`ls demanarà que confirmin el seu compte abans de permetre`ls continuar utilitzant-lo.', + 'settings_server_host' => 'Aquest és el host on resideixen els correus electrònics', + 'settings_server_password' => 'Aquest és el password de l`adreça de correu electrònic que rep els informes reportats', + 'settings_server_port' => 'Port obligatori per acceptar connexions entrants des de l`adreça de correu electrònic', + 'settings_server_ssl_support' => 'Obligatori per permetre una connexió segura', + 'settings_server_type' => 'Obligatori per recuperar correus electrònics del servidor host', + 'settings_server_username' => 'Aquest és el nom de l`adreça de correu electrònic que rep els informes reportats', + 'settings_share_site_stats' => 'Les estadístiques de visites son enmagatzemades en un servidor control.lat per l`Ushahidi. Habilitant aquesta opció, podreu veure les estadístiques directament al panell d`administració. Deshabilitant-la, deixareu de veure les estadístiques de tràfic.', + 'settings_site_copyright_statement' => 'Doneu a tercers drets de republicació de text, imatges, video i/o disseny que vosaltres o els vostres usuaris han creat? Aneu a https://creativecommons.org/choose/ si esteu interessats en detallar el que altres poden fer amb el vostre treball. I recordeu ser concrets sobre quines elements del vostre site esteu licenciant!', + 'settings_site_email' => 'Adreça de correu electrònic que rebrà els correus electrònics amb els informes reportats i els formularis de contacte.', + 'settings_site_message' => 'Aquest és el text que apareixerà sobre el mapa de la homepage. És molt útil per a donar als visitants del site informació important. Per eliminar la caixa de text, simplement esborreu aquest text.', + 'settings_site_name' => 'Aquest és el nom del site que apareixerà a la part superior del site principal.', + 'settings_site_submit_report_message' => 'Aquest és el missatge que es mostrarà en la pàgina d`enviament d`informes reportats. Això és bó per renúncies o més instruccions pels visitants que estan informant.', + 'settings_site_tagline' => 'Expliqueu, en poques paraules, que es tracta en aquest site.', + 'settings_site_timezone' => 'Aquesta es la zona horària sobre la que operarà aquest site. Això té un impacte en qualsevol acció que es duu a terme i que utilitzi hora i data, i també en l`hora per defecte de l`enviament d`informes al front i al back-end del site.', + 'settings_twitter_configuration' => 'Configura el hashtag de twitter que es farà servir als tweets', +); diff --git a/application/i18n/ca_ES/ui_admin.php b/application/i18n/ca_ES/ui_admin.php new file mode 100644 index 0000000000..776b500d63 --- /dev/null +++ b/application/i18n/ca_ES/ui_admin.php @@ -0,0 +1,319 @@ + 'Accés denegat. Les credentials no són vàlides o la petició s`ha refusat', + 'access_denied_others' => 'Accés denegat. La petició s`ha entès, però s`ha denegat per superar límits com ara els de temps. Proveu-ho altra cop més tard', + 'access_level' => 'Nivell d`Accés', + 'actions' => 'Accions', + 'add_to_category' => 'Afegir a Categoria', + 'added' => 'afegit', + 'added_edited' => 'afegit/editat', + 'addons' => 'Afegits', + 'admin_role' => 'Admin', + 'alerts' => 'Alertes', + 'alerts_received' => 'Alertes Rebudes', + 'all' => 'Tot', + 'am' => 'AM', + 'anonymous' => 'Anònims', + 'anyone_role' => 'Qualsevol', + 'anywhere' => 'On sigui', + 'api_banned' => 'API Bloquejada', + 'api_logs' => 'Logs d`API', + 'api_settings' => 'Configuració d`API', + 'api_unban' => 'DESBLOQUEJAR', + 'api_unban_all' => 'DESBLOQUEJAR-HO TOT', + 'approved' => 'aprovat', + 'approve_auto' => 'Auto Aprovat', + 'approve_manual' => 'Aprovat Manual', + 'archived' => 'Arxivat', + 'are_you_sure_you_want_to' => 'Esteu segur que voleu', + 'are_you_sure_you_want_to_delete_this_item' => 'Esteu segur que voleu esborrar aquest item', + 'are_you_sure_you_want_to_delete_this_photo' => 'Esteu segur que voleu esborrar aquesta foto', + 'are_you_sure_you_want_to_switch_forms' => 'Esteu segur que voleu conmutar formularis', + 'assign' => 'Assignar', + 'assignments' => 'Assignaments', + 'assign_badge' => 'Medalla Assignada', + 'author' => 'Autor', + 'author_email' => 'Correu electrònic de l`autor', + 'back' => 'Tornar', + 'banip_action' => 'Bloquejar IP', + 'between_times' => 'Entre Hores', + 'blocks' => 'Bloquejos', + 'body' => 'Cos', + 'cancel' => 'Cancel.lar', + 'categories' => 'Categories', + 'chart_display_error' => 'Error mostrant el gràfic', + 'check_message_valid' => 'Si us plau, assegureu-vos que el missatge és vàlid', + 'check_number' => 'Si us plau, assegureu-vos que el número és vàlid', + 'check_sms_settings' => 'Si us plau, reviseu la configuració del SMS!', + 'checkin_details' => 'Detalls de Registre', + 'checkins' => 'Registres', + 'cities_loaded' => 'Ciutats carregades', + 'code' => 'codi', + 'code_out_of_sync' => 'Versió de codi sense sincronitzar.', + 'color' => 'Color', + 'comments' => 'Comentaris', + 'confirmation_code' => 'El vostre codi de confirmació d`alertes és: ', + 'confirm_msg' => 'L`Usuari Ha Estat', + 'count' => 'Contar', + 'country_not_found' => 'País No Trobat', + 'created_edited' => 'creat/editat', + 'create_report' => 'Crear un Informe', + 'critical_upgrade' => 'Actualització Crítica', + 'csv' => 'CSV', + 'currently_active' => 'Actualment Actiu', + 'currently_inactive' => 'Actualment Inactiu', + 'custom_forms_insufficient_permissions' => 'No teniu suficients permisos per editar els camps següents.', + 'daily' => 'Diàriament', + 'dashboard' => 'Tauler', + 'database' => 'base de dades', + 'date_time' => 'Data & Hora', + 'date_added' => 'Data Afegida', + 'date_modified' => 'Data Modificada', + 'days_of_the_week' => 'Dies de la setmana', + 'db_out_of_sync' => 'Versió de la Base de Dades sense sincronitzar.', + 'deleted' => 'esborrat', + 'delete_action' => 'Esborrar', + 'delete_badge' => 'Esborrar Medalla', + 'demo' => 'Demo', + 'description' => 'Descripció', + 'disabled' => 'Deshabilitat', + 'divider_start_field' => 'Inici de Divisor', + 'divider_end_field' => 'Final de Divisor', + 'divider_class' => 'divisor de class', + 'download_reports' => 'Descarregar Informes Reportats', + 'dropdown_choices' => 'Opcions Desplegables', + 'edited' => 'EDITAT', + 'edited_by' => 'Editat Per', + 'edit_action' => 'Editar', + 'edit_log' => 'Editar Log', + 'email' => 'Correu Electrònic', + 'entire_collective' => 'Col.lectiu Sencer', + 'error_geocoding' => 'Error en geocoding! error HTTP', + 'error_imap' => 'La llibreria IMAP PHP no està instal.lada', + 'error_msg' => 'Error', + 'error_post_incident' => 'Error, incapaç de publicar incident', + 'every_six_hours' => 'Cada Sis Hores', + 'every_twelve_hours' => 'Cada Dotze Hores', + 'experimental' => 'Experimental', + 'faqs' => 'PMF\'s', + 'feed' => 'feed', + 'feedback' => 'Feedback', + 'feeds' => 'feeds', + 'field_choices' => 'Llista d`Opcions', + 'field_default' => 'Valor per Defecte', + 'field_datatype' => 'Tipus de Dades', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Marcat', + 'field_datatype_numeric' => 'Numeric', + 'field_datatype_text' => 'Text Lliure', + 'field_height' => 'Alçada (En Fileres)', + 'field_hidden' => 'Camp Amagat', + 'field_maxlength' => 'Màxima Longitud de Caracter', + 'field_name' => 'Nom de Camp', + 'field_toggle' => 'Toggle', + 'field_toggle_no' => 'No', + 'field_toggle_yes_close' => 'Si, Tancat per defecte', + 'field_toggle_yes_open' => 'Si, Obert per defecte', + 'file_not_found_upload' => 'No pot trobar el fitxer pujat', + 'file_open_error' => 'No pot obrir el fitxer per lectura', + 'form_not_exists' => 'Aquest Formulari No Existeix!', + 'forum' => 'Fòrum', + 'free_text_field' => 'Camp d`Àrea de Text (Text Lliure)', + 'date_field' => 'Camp de Data', + 'radio_field' => 'Camp Radio Buttons', + 'checkbox_field' => 'Camp Checkboxes', + 'dropdown_field' => 'Camp Desplegable', + 'from' => 'Des de', + 'from_date' => 'Des de', + 'geonames_timeout' => 'Error de Timeout en connexió a Geonames', + 'get_help' => 'Obteniu Ajut', + 'get_more_themes' => 'Obtenir més temes', + 'get_more_plugins' => 'Obtenir més plugiins', + 'header_actions' => 'Accions', + 'header_add_edit' => 'AfegirEditar', + 'header_email' => 'Email', + 'header_manage_users' => 'Administrar Usuaris', + 'header_role' => 'Rol', + 'header_user' => 'Usuari', + 'help' => 'ajut', + 'hourly' => 'Horàriament', + 'incident_feed' => 'Feed d`incidents', + 'installer_info' => 'La carpeta d\'instal·lació encara existeix. Elimineu la carpeta d\'instal·lació. Es tracta d\'una potencial vulnerabilitat de la seguretat.', + 'instance' => 'Instància', + 'instances' => 'Instàncies', + 'instance_details' => 'Detalls d`Instància', + 'invalid_parameter' => 'Paràmetre Invàlid', + 'ip_address' => 'Adreça IP', + 'is_date' => 'És aquest un Camp de Data?', + 'ispublic_visible' => 'Quí Pot Veure Respostes', + 'ispublic_submit' => 'Quí Pot Enviar Respostes', + 'keyword' => 'Paraula Clau', + 'keywords' => 'Paraules Clau', + 'label_email' => 'Adreça de Correu Electrònic:', + 'label_full_name' => 'Nom Sencer:', + 'label_password' => 'Password:', + 'label_role' => 'Rol:', + 'label_username' => 'Nom d`Usuari:', + 'layers' => 'Capes', + 'login_role' => 'Moderador', + 'logout' => 'Logout', + 'logs' => 'Logs', + 'manage' => 'Administrar', + 'manage_roles' => 'Administrar Rols & Permisos', + 'manage_users' => 'Veure Usuaris', + 'manage_users_edit' => 'Afegir/Editar Usuaris', + 'manage_public_listing' => 'Gestionar la llista pública', + 'mark_as' => 'Marcar Com', + 'marked_as_not_spam' => 'marcat com a no spam', + 'marked_as_spam' => 'marcat com a spam', + 'match_no_documents' => 'no coincideixen cap document', + 'message' => 'Missatge', + 'messages' => 'Missatges', + 'messages_laconica' => 'Missatges Laconica', + 'messages_twitter' => 'Missatges Twitter', + 'message_sent' => 'El vostre missatge s`ha enviat!', + 'mhi' => 'MHI', + 'minute' => 'Minut', + 'minutes' => 'Minuts', + 'missing_parameter' => 'Falta un Paràmetre', + 'moderator' => 'Moderador', + 'modified' => 'modificat', + 'modify_timezone' => 'Modificar Configuració de la Zona Horària', + 'move_down_action' => 'moure avall', + 'move_up_action' => 'moure amunt', + 'multiple_hosted_instances' => 'Múltiples Instàncies Hostatjades', + 'my_alerts' => 'Les Meves Alertes', + 'my_checkins' => 'Els Meus Registres', + 'my_profile' => 'El Meu Perfil', + 'my_reports' => 'Els Meus Informes', + 'my_votes' => 'Vots Emesos', + 'my_votes_up' => 'Positiu', + 'my_votes_down' => 'Negatiu', + 'name' => 'Nom', + 'new_alert' => 'Crear Nova Alerta', + 'new_private' => 'Crear Nou Missatge', + 'new_password' => 'Nou Password', + 'no' => 'No', + 'none_category_explanation' => 'Aquesta és una categoria especial que no es mostrarà en el formulari de presentació d\'informes pels usuaris que envien informes. S\'utilitza per mantenir els informes pujats sense categories (informes no categoritzats) com a resultat de la supressió categoria.', + 'notification' => 'Notificació', + 'not_case_sensitive' => 'No distingeix entre majúscules i minúscules.', + 'not_found' => 'No es troba', + 'no_data' => 'No hi ha dades. No hi ha resultats a ensenyar.', + 'no_error' => 'No hi ha hagut errors', + 'no_result_display_msg' => 'No hi ha resultats a mostrar!', + 'of' => 'de', + 'on_specific_count' => 'Sobre un Comptador Concret', + 'openids' => 'OpenID\'s', + 'page' => 'pàgina', + 'pages' => 'pàgines', + 'page_not_found' => 'Pàgina No Trobada', + 'page_not_found_message_with_contact' => 'Ho sentim, la pàgina que està intentant veure no és aquí.

Heu seguit un enllaç des d\'un altre lloc a aquest site?
Si vau arribar a aquesta pàgina des d\'una altra part del nostre lloc, si us plau poseu-vos en contacte amb nosaltres perquè puguem corregir el nostre error.

Heu seguit un enllaç des d\'un altre lloc?
Els enllaços des d\'altres llocs poden estar, de vegades, desactualitzast o mal escrits.
Explica\'ns d\'on véns i podrem intentar posar-nos en contacte amb l\'altre site per tal de solucionar el problema.

Heu escrit vosaltres mateixos la URL?
És possible que hagueu escrit l\'adreça (URL) incorrectament. Assegureu-vos de la grafia correctament, incloses les majúscules i altres detalls ortogràfics', + 'page_not_found_message' => 'Ho sentim, la pàgina que està intentant veure no és aquí.', + 'parameters_used' => 'Paràmetres Utilitzats', + 'password' => 'Password', + 'password_reset' => 'Restabliment de Password ', + 'password_reset_message_line_1' => 'Benvolgu-t/da', + 'password_reset_message_line_2' => 'Hem rebut un petició per resetejar el password de', + 'password_reset_message_line_3' => 'Per canviar el vostre password, si us plau, cliqueu al link següent (o copieu i exganxeu-lo al vostre navegador).', + 'password_reset_message_line_4' => 'Tal i com heu sol.licitat, el vostre password ha estat resetejat. Els vostres nous detalls són els següents', + 'password_reset_subject' => 'Restabliment del Password Ushahidi', + 'phone' => 'Telèfon', + 'please_select' => 'Si us plau, seleccioneu', + 'pm' => 'PM', + 'post_method_not_used' => 'Les Dades no s`han enviat per métode post', + 'preview' => 'Vista Prèvia', + 'private_message' => 'Missatge', + 'private_messages' => 'Missatges Privats', + 'private_sent' => 'Missatges Privats Enviats', + 'private_subject' => 'Títol', + 'private_to' => 'A', + 'public_listing' => 'Llista Pública', + 'qualifiers' => 'Classificació', + 'read' => 'llegir', + 'relevance' => 'Rellevància', + 'report_title' => 'Títol de l\'informe', + 'report_date' => 'Data de l\'Informe', + 'reporters' => 'Reporters', + 'reporter_levels' => 'Nivells de Reporter', + 'reports' => 'Informes Reportats', + 'reputation' => 'Puntuació de Reputació', + 'required' => 'Obligatori', + 'reset' => 'Reset', + 'response' => 'Resposta', + 'results' => 'Resultats', + 'revoke' => 'Revocar', + 'riverid_exists_admin' => 'Aquest correu electrònic ja té un compte administrat pel CrowdmapID. L\'usuari haurà d\'utilitzar la seva contrasenya a Crowdmap per iniciar sessió.', + 'save_settings' => 'Guardar Configuració', + 'search' => 'Cercar', + 'search_reports' => 'Reerca d´Informes', + 'searching_for' => 'cercant per', + 'security_info_encryption_key' => 'La clau de xifrat està encara establerta en el valor predeterminat. Això és insegur i ha de ser canviat.', + 'security_info_https' => 'Aquest lloc respon a través d\'HTTP. Caldria canviar-ho a HTTPS per millorar-ne la seguretat.', + 'security_info_instructions' => 'Les instruccions estan disponibles al wiki:', + 'select_download_format' => 'Seleccioneu el format de llistat desitjat:-', + 'select_field_type' => '--- Seleccioneu un Tipus de Camp ---', + 'select_item' => 'Si us plau, seleccioneu un item', + 'select_trigger_before_response' => 'Heu de seleccionar una Alarma abans de poder seleccionar una Resposta.', + 'select_trigger_before_qualifiers' => 'Heu de seleccionar una Alarma abans de poder definir Classificacions.', + 'sender' => 'Remitent', + 'send_to' => 'Enviar A', + 'sent_from_website' => 'Aquest missatge s`ha enviat des del vostre website a ', + 'server_time' => 'Hora del Servidor', + 'settings' => 'Configuració', + 'showing_page' => 'Mostrant pàgina', + 'showing_results' => 'Mostrant resultats', + 'shown' => 'mostrat/s', + 'special_category' => 'Categoria Especial', + 'special_category_explanation' => 'Aquesta és una categoria especial que no es mostrarà al formulari per reportar informació pels usuaris que reportin. Es fa servir conjuntament amb la característica "Reportadors de Confiança".', + 'specific_area' => 'Àrea Específica', + 'state' => 'Estat', + 'statistics' => 'Estadístiques', + 'stats' => 'Estadístiques', + 'stats_collection_error' => 'Col.lecció d`estadístiques fallada! Si us plau, proveu-ho altra cop més tard.', + 'stats_collection_error_short' => 'Col.lecció d`estadístiques fallada!', + 'specific_days' => 'Dies Concrets', + 'subject' => 'Títol', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Tasca que es realitza', + 'text_field' => 'Camp de Text', + 'theme_name' => 'Nom', + 'title' => 'Administrar Usuaris', + 'timeout' => 'Error de Timeout', + 'to' => 'a', + 'total_records' => 'Total de Registres', + 'to_date' => 'a', + 'translate_reports' => 'Traduïr Reports', + 'trigger' => 'Trigger', + 'triggering_user' => 'Usuari Triggering', + 'triggers' => 'Alarmes', + 'unapproved' => 'no aprovat', + 'unknown' => 'Desconegut', + 'unknown_failure' => 'Error Desconegut', + 'unread' => 'no llegit', + 'unsubscribe_message' => 'No rebreu més alertes des de', + 'update_link' => ' Cliqueu aquí per actualitzar ara', + 'upgrade_ushahidi' => 'Actualitzar l`Ushahidi', + 'upgrade_ushahidi_status' => 'Estat de l`Actualització de l`Ushahidi', + 'upload_reports' => 'Pujar Reports', + 'user' => 'Usuari', + 'users' => 'Usuaris', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificat/Desverificat', + 'verify_unverify' => 'Verificat/Desverifica', + 'version' => 'Versió', + 'version_available' => ' és disponible per a actualitzar.', + 'video_encoding' => 'Codificació de Video', + 'view_private' => 'Missatges Provats', + 'view_site' => 'Veure Site', + 'view_report' => 'Veure Report', + 'welcome' => 'Benvingut, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Si', + 'your_search_for' => 'La vostra recerca de', +); diff --git a/application/i18n/ca_ES/ui_main.php b/application/i18n/ca_ES/ui_main.php new file mode 100644 index 0000000000..a0115c2fc7 --- /dev/null +++ b/application/i18n/ca_ES/ui_main.php @@ -0,0 +1,588 @@ + 'About', + 'access' => 'Accés', + 'access_limits' => 'Límits d`Accés', + 'account_name' => 'Nom del Compte', + 'actions' => 'Accions', + 'action_confirm' => 'Aquesta acció no es pot desfer. Esteu segurs de voler continuar?', + 'activate' => 'Activar', + 'active' => 'Actiu', + 'add' => 'Afegir', + 'added_by' => 'Afegit per', + 'additional_data' => 'Dades Addicionals', + 'additional_reports' => 'Reports Addicionals', + 'add_edit' => 'Afegir/Editar', + 'add_field' => 'Afegir un Camp', + 'add_language' => 'Afegir un Idioma', + 'add_new' => 'Afegir Nou', + 'add_new_category' => 'Afegir Nova Categoria', + 'add_translation' => 'Afegir Traducció', + 'admin' => 'Administració', + 'alerts' => 'Rebre Alertes', + 'alerts_alert_me' => 'AViseu-me si s`omple un informe o similar:', + 'alerts_btn_send' => 'Enregistrar la Meva Alerta', + 'alerts_email' => 'Adreça de Correu Electrònic per l`Alerta:', + 'alerts_enter_email' => 'entreu adreça de correu electrònic', + 'alerts_enter_mobile' => 'entreu número de mòbil amb el codi de país', + 'alerts_get' => 'Rebre Alertes', + 'alert_has_been' => 'L´alerta ha estat', + 'alerts_mobile_phone' => 'Telèfon mòbil:', + 'alerts_place_spot' => 'O, marqui un punt al mapa següent, i l`avisarem quan s`envii un informe en 20 kilómetres al voltant.', + 'alerts_place_spot2' => 'Si no podeu trobar la vostra ubicació, si us plau, cliqueu al mapa per marcar la localització correcta.', + 'alerts_rss' => 'Feeds de RSS Feeds (copieu l`url següent)', + 'alerts_select_city' => 'Seleccioneu una ciutat', + 'alerts_step1_select_city' => 'Pas 1: Seleccioneu la vostra ciutat o ubicació:', + 'alerts_step2_send_alerts' => 'Pas 2: Envieu alertes a:', + 'alerts_step3_select_catgories' => 'Pas 3 (Optional): Seleccioneu Categories', + 'alert_confirm_previous' => 'Confirmeu una Petició Prèvia d`Alerta', + 'alert_saved' => 'La Vostra Alerta s`ha Guardat!', + 'all' => 'Tot', + 'allowed' => 'Permés', + 'all_categories' => 'Totes les Categories', + 'all_time' => 'Totes les Hores', + 'and' => 'i', + 'api' => 'API', + 'approve' => 'Aprovar', + 'approved' => 'Aprovat', + 'approved_reports' => 'Reports Aprovats', + 'approve_this_report' => 'Aprovar aquest Report', + 'approximate' => 'Aproximat', + 'archive' => 'Arxiu', + 'archived' => 'Arxivat', + 'at' => 'a', + 'author' => 'Autor', + 'auto_checkin' => 'Auto Registre', + 'avg_reports_per_day' => 'Mitjana de Reports Diaris', + 'awaiting_approval' => 'Esperant Aprovació', + 'awaiting_verification' => 'Esperant Verificació', + 'badge' => 'Emblema', + 'badges' => 'Emblemess', + 'badge_image' => 'Imatge d`Emblema', + 'badge_image_upload_your_own' => 'O, en el seu lloc, podeu pujar la vostra pròpia imatge d`Emblema', + 'badge_pack' => 'Paquet d`Emblemes', + 'badge_select' => 'Seleccioneu una Emblema', + 'blog' => 'Blog', + 'browse_profiles' => 'Veure perfils', + 'cancel' => 'Cancel.lar', + 'categories' => 'Categories', + 'category' => 'Categoria', + 'category_filter' => 'Filtre de Categoria', + 'category_has_been' => 'La categoria ha estat ', + 'category_name' => 'Nom de la Categoria', + 'change_date_range' => 'Canviar Marge de Dates', + 'change_password' => 'Canviar Password', + 'change_picture' => 'Canviar la Meva Imatge', + 'choose' => 'Trieu un', + 'choose_data_points' => 'Trieu els punts de dades a descarregar', + 'choose_date_range' => 'O trieu el vostre propi marge de dates', + 'choose_field_type' => 'Trieue el tipus de camp', + 'cleanurl' => 'Neteja URLs', + 'clear' => 'Netejar', + 'clear_map' => 'Neteja Mapa', + 'close' => 'Tancar', + 'clusters' => 'grups', + 'color' => 'Color', + 'comment' => 'Comentari', + 'comments' => 'Comentaris', + 'comment_details' => 'Detalls del Comentari', + 'configuration_saved' => 'La Vostra Configuració s`ha Guardat!', + 'configure' => 'Configurar', + 'confirm_email_successful' => 'Heu confirmat exitosament la vostra adreça de correu electrònic! Si us plau, entreu a continuació.', + 'confirm_email_failed' => 'Ha fallat l\'email de confirmació !! Podeu sol·licitar una nova confirmació per correu electrònic a continuació.', + 'contact' => 'Contacteu-nos', + 'contact_code' => 'Codi de Seguretat', + 'contact_email' => 'La Vostra Adreça de Correu Electrònic', + 'contact_message' => 'Missatge', + 'contact_message_has_send' => 'El Vostre Missatge s`ha Enviat!', + 'contact_name' => 'El Vostre Nom', + 'contact_phone' => 'El Vostre Número de Telèfon', + 'contact_send' => 'Enviar Missatge', + 'contact_subject' => 'Títol del Missatge', + 'copyright' => 'Copyright ©', + 'create' => 'Crear', + 'create_edit' => 'Crear/Editar', + 'create_new' => 'Crear Nou', + 'create_new_password' => 'Crear Nou Password', + 'create_report' => 'Crear Report', + 'credibility' => 'Credibilitat', + 'current_password' => 'Password Actual', + 'custom_fields' => 'Camps Addicionals', + 'data' => 'Informació', + 'date' => 'Data', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => 'Dia & Hora', + 'day' => 'dia', + 'deactivate' => 'Desactivar', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Esborrar', + 'deleted' => 'Esborrat', + 'deletes' => 'Esborrat/s', + 'delete_disabled' => 'Deshabilitat Esborrat', + 'delete_last' => 'Esborrar Últim', + 'delete_report' => 'Esborrar aquest Report', + 'delete_selected' => 'Esborrar Seleccionat', + 'delete_spam' => 'Esborrar Spam', + 'demo' => 'Demo', + 'description' => 'Descripció', + 'detailed_location_example' => 'Exemple: Cantonada Passeig de Gràcia & Carrer Aragó, Barcelona', + 'details' => 'Detalls', + 'direct_report' => 'Report Directe', + 'disabled' => 'Deshabilitat', + 'disapprove' => 'Desaprovar', + 'download_reports' => 'Descarregar Reports', + 'download' => 'Descarregar', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar Camps del Formulari', + 'edit_report' => 'Editar Report', + 'email' => 'Correu Electrònic', + 'email_address' => 'Adreça de Correu Electrònic', + 'email_configuration' => 'Configuració del Servidor de Correu Electrònic', + 'email_server_host' => 'Adreça del Servidor', + 'email_server_password' => 'Password del Servidor', + 'email_server_port' => 'Port del Servidor de Correu Electrònic', + 'email_server_ssl_support' => 'Suport per a connexions SSL', + 'email_server_type' => 'Tipus de Servidor de Correu Electrònic', + 'email_server_username' => 'Nom d`Usuari del Servidor', + 'email_settings_comment_0' => 'd`aquesta manera la vostra configuració s`ha associat a aquesta adreça de correu electrònic', + 'email_settings_comment_00' => 'Per tal de rebre els informes reportats per correu electrònic, si us plau, entreu a continuació la vostra configuració del compte de correu electrònci. Els correus electrònics seran rebuts a', + 'email_settings_comment_1' => 'Alguns servidors necessiten l`adreça complerta de correu electrònic', + 'email_settings_comment_2' => 'Password del compte de correu', + 'email_settings_comment_3' => 'Ports comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Exemples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Exemples: pop3, imap', + 'email_settings_comment_6' => 'Habilitat or deshabilita connexions SSL', + 'empty' => '---BUIT---', + 'end_point' => 'a', + 'error' => 'Error!', + 'example' => 'Exemple', + 'example_country' => 'Kenya', + 'external_apps' => 'Apps Externes', + 'external_video_link' => 'Enllaç de Video Extern', + 'feed' => 'Feed', + 'feedback' => 'Feedback', + 'feeds' => 'Feeds', + 'feed_has_been' => 'El feed ha estat', + 'feed_items' => 'Items del Feed', + 'feed_name' => 'Nom del Feed', + 'feed_url' => 'URL del Feed', + 'field_unused' => 'Camp Sense Ús', + 'file' => 'Fitxer', + 'file_over_max_allowed' => 'El vostre fitxer sobrepassa la mida de fitxer màxim permés.', + 'filters' => 'Filtres', + 'filter_reports' => 'Filtrar Reports', + 'filter_reports_by' => 'Filtrar Reports Per', + 'filter_reports_contain' => 'Filtrar reports que contenen', + 'find' => 'Cercar', + 'find_location' => 'Cercar Ubicació', + 'first_name' => 'Nom', + 'force_run_scheduler' => 'Forçar l`Execució del Planificador', + 'forgot_password' => 'Heu oblidat el vostre password?', + 'form' => 'Formulari', + 'forms' => 'Formularis', + 'form_description' => 'Descripció del Formulari', + 'form_edit' => 'Editar aquest Formulari', + 'form_has_been' => 'El formulari ha estat', + 'form_title' => 'Títol del Formulari', + 'from' => 'Des de', + 'full_name' => 'Nom Complert', + 'geolocation_available' => 'GeoLocalització Disponible', + 'geometry_color' => 'Color', + 'geometry_comments' => 'Comentaris', + 'geometry_label' => 'Etiqueta', + 'geometry_strokewidth' => 'Amplada del Traç', + 'go' => 'Anar', + 'hashtag' => 'Hashtag', + 'has_been' => 'Ha Estat', + 'help' => 'Com Ajudar', + 'hidden' => 'Amagat', + 'hide' => 'Amagar', + 'hide_this_message' => 'amagar aquest missatge', + 'home' => 'Inici', + 'how_to_report' => 'Com Reportar', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Usat per identificar-vos a altres usuaris al site.', + 'image' => 'Imatge', + 'images' => 'Imatges', + 'image_icon' => 'Imatge/Icona', + 'inactive' => 'Inactiu', + 'inbox' => 'Missatges Entrants', + 'incident' => 'Incidència', + 'incidents_nearby' => 'Incidents Propers', + 'incident_location' => 'Localització de l`Incident', + 'include' => 'Incluore', + 'include_categories' => 'Incloure Categories', + 'include_custom_fields' => 'Incloure Camps Addicionals', + 'include_description' => 'Incloure Descripció', + 'include_detail' => 'Incluore tant detall com sigui possible', + 'include_latitude' => 'Incloure Latitud', + 'include_location_information' => 'Incloure Informació d`Ubicació', + 'include_longitude' => 'Incloure Longitud', + 'incoming_media' => 'Fotos/Videos Entrants', + 'information_evaluation' => 'Avaluació de la Informació', + 'input_location' => 'Entreu la vostra ubicació precisa', + 'insufficient_role' => 'El vostre compte no té els permisos addients per logar-se totalment. Si us plau, contacteu amb l`administrador.', + 'in_response_to' => 'En resposta a', + 'ip_address' => 'Adreça IP', + 'is_this_your_profile' => 'Es aquest el teu perfil?', + 'item' => 'article', + 'items' => 'articles', + 'item_details' => 'detalls de l`item', + 'item_title' => 'Títol de l`Item', + 'key' => 'Clau', + 'kml_kmz_file' => 'Fitxer KMZ/KML', + 'kml_kmz_upload' => 'Pujar fitxer KMZ/KML', + 'kml_url' => 'URL del fitxer KML', + 'laconica' => 'Laconica', + 'language' => 'Idioma', + 'last' => 'Darrer', + 'last_month' => 'Darrer Mes', + 'last_name' => 'Darrer Nom', + 'last_year' => 'Darrer Any', + 'latitude' => 'Latitud', + 'layers' => 'Capes', + 'layers_filter' => 'Altres Capes', + 'layer_has_been' => 'La Capa Ha Estat', + 'layer_name' => 'Nom de la Capa', + 'layer_url' => 'URL de la Capa', + 'leave_a_comment' => 'Deixar un Comentari', + 'less_information' => 'Menys Informació', + 'level' => 'Nivell', + 'level_has_been' => 'Aquest nivell ha estat', + 'level_name' => 'Nom del Nivell', + 'limited' => 'Limitat', + 'link' => 'Enllaç', + 'list' => 'Llista', + 'loading_reports' => 'Carregant Reports', + 'location' => 'Ubicació', + 'locations' => 'Ubicacions', + 'location_example' => 'Ciutat, Comarca, Província i/o País', + 'login' => 'Login', + 'login_account_creation_successful' => 'Compte creat satisfactòriament. Ara ja podeu entrar.', + 'login_confirmation_sent' => 'S`ha enviat una confirmació a la vostra adreça de correu electrònic.', + 'login_email_doesnt_exist' => 'Aquest correu electrònic no existeix. Proveu una adreça diferent o creeu un compte.', + 'login_select_openid' => 'Si us plau, cliqueu el vostre proveïdor del compte', + 'login_with' => 'Login amb', + 'login_userpass' => 'Email i Password', + 'login_openid' => 'OpenID', + 'login_signup' => 'Registre', + 'login_signup_click' => 'Creeu un Compte', + 'login_signup_confirmation_subject' => 'Confirmació de Registre', + 'login_signup_text' => 'Creeu un compte ara per prendre avantatge de més característiques d`aquest site.', + 'longitude' => 'Longitud', + 'map' => 'Mapa', + 'mark_read' => 'Marqueu com a Llegit', + 'mark_unread' => 'Marqueu com a No Llegit', + 'maximum_filesize' => 'Mida Màxima de fitxer', + 'media' => 'Mitjans de Comunicació', + 'media_filter' => 'Filtre de Media', + 'members' => 'Membres', + 'manage_your_account' => 'Gestioneu el Vostre Compte', + 'message' => 'Missatge', + 'messages' => 'Missatges', + 'message_details' => 'Detalls del Missatge', + 'message_non_numeric_source' => 'Missatge des d`una font no-numérica:', + 'mobile' => 'Mòbil', + 'modify' => 'Modificar', + 'modify_date' => 'Modificar Date', + 'month' => 'mes', + 'more' => 'Més', + 'more_information' => 'Més Informació', + 'multi_country_instance' => 'Aquesta instal.lació de l`Ushahidi, ¿Abasta Multiples Països?', + 'must_confirm_email_address' => 'Heu de confirmar la vostra adreça de correu electrònic per accedir a aquesta instal.lació. Si perdeu el vostre correu electrònic de confirmació, en podeu demanar un altre aquí sota.', + 'name' => 'Nom', + 'nearby_report' => 'Report Proper', + 'new' => 'Noticia', + 'news' => 'Notícies', + 'news_feeds' => 'Feeds de Notícies', + 'news_source' => 'Font de Notícies', + 'new_category' => 'Nova Categoria', + 'new_password' => 'Nou Password', + 'new_report' => 'Nou Report', + 'next' => 'Següent', + 'no' => 'No', + 'no_checkins' => 'No hi ha registres per ensenyar.', + 'no_data' => 'No hi ha dades', + 'none' => 'Cap', + 'notices' => 'Notícies', + 'not_approved' => 'No Aprovat', + 'not_approved_singular' => 'No Aprovat', + 'not_selected' => '---No Seleccionat---', + 'not_spam' => 'no spam', + 'not_specified' => 'No Especificat', + 'no_reports' => 'No hi ha reports', + 'no_results' => 'No hi ha resultats', + 'off' => 'Off', + 'official_news' => 'Font Principal de Notícies', + 'on' => 'On', + 'option' => 'Opció', + 'optional' => 'Opcional', + 'options' => 'Opcions', + 'organization' => 'Organització', + 'organizations' => 'Organitzacions', + 'organization_description' => 'Descripció de l`Organització', + 'organization_email' => 'Correu Electrònic de l`Organització', + 'organization_has_been' => 'L`Organització Ha Estat', + 'organization_name' => 'Nom de l`Organització', + 'organization_phone_1' => 'Telèfon 1 de l`Organització', + 'organization_phone_2' => 'Telèfon 2 de l`Organització', + 'organization_website' => 'Website de l`Organització', + 'original' => 'Original', + 'original_description' => 'Descripció Original', + 'original_title' => 'Títol Original', + 'other_ushahidi_instances' => 'Altres Instal.lacions', + 'outbox' => 'Missatges Sortints', + 'outgoing' => 'Sortint', + 'page' => 'Pàgina', + 'pages' => 'Pàgines', + 'page_description' => 'Descripció de la Pàgina', + 'page_has_been' => 'La Pàgina Ha Estat', + 'page_tab_name' => 'Etiqueta', + 'page_title' => 'Títol de la Pàgina', + 'parent_category' => 'Categoria Superior', + 'password' => 'Password', + 'password_again' => 'Verificar Password', + 'password_changed_successfully' => 'El Password ha canviat correctament! Entreu a continuació.', + 'password_forgot' => 'Heu oblidat el vostre password?', + 'password_reset_confirm' => 'Reviseu el vostre correu electrònic pel nou password.', + 'password_save' => 'Voleu romandre logat en aquest ordinador?', + 'past_month' => 'Mes Passat', + 'past_year' => 'Any Passat', + 'pending' => 'Pendent', + 'per' => 'per', + 'personal_information' => 'Informació Personal Opcional.', + 'phone' => 'Telèfon', + 'photos' => 'Fotos', + 'pictures' => 'Imatge', + 'pictures_and_videos' => 'Imatges i Videos', + 'pinpoint_location' => '* Cerqueu la vostre ubicació fent servir un nom de localització de coordinades latitud i longitud (format: 38.19,-85.61), o cliqueu al mapa per marcar la vostra actual ubicació', + 'play' => 'Començar', + 'please_note' => 'Atenció', + 'plugins' => 'Plugins', + 'plugin_url' => 'Plugin Website', + 'public_profile' => 'Perfil Públic', + 'public_profile_url' => 'URL pel Perfil Públic', + 'preview' => 'Vista Prèvia', + 'preview_item' => 'Vista Prèvia de l`Item', + 'preview_message' => 'Vista Prèvia del Missatge', + 'previous' => 'Previ', + 'private' => 'Privat', + 'profile_color' => 'Perfil de Color', + 'profile_saved' => 'El Vostre Perfil s`ha Guardat', + 'quick_stats' => 'Estadístiques', + 'rating' => 'Calificació', + 'read' => 'Llegit', + 'receive' => 'Rebre', + 'receive_from' => 'Rebre des de', + 'receive_notifications' => 'Rebre Notificacions', + 'recent_reports' => 'Reports Recents', + 'refresh_news_feeds' => 'Actualitzar Feeds de Notícies', + 'registered_email' => 'Correu Electrònic Registrat', + 'remove' => 'Treure', + 'reply' => 'Contestar', + 'report' => 'Informe', + 'reports_listed' => 'Reports (des del mapa, llistats en ordre cronològic)', + 'reporter' => 'Informador', + 'reporters' => 'Informadors', + 'reporter_date' => 'Data', + 'reporter_email' => 'Correu Electrònic', + 'reporter_first_name' => 'Nom de l`Informador', + 'reporter_has_been' => 'L`Informador Ha Estat', + 'reporter_ip' => 'Adreça IP de l`Informador', + 'reporter_last_name' => 'Cognom de l`Informador', + 'reporter_level' => 'Nivell de l`Informador', + 'reporter_levels' => 'Nivells', + 'reporter_phone' => 'Telèfon', + 'reports' => 'Informes', + 'reports_btn_browse' => 'Navegar', + 'reports_btn_submit' => 'Enviar', + 'reports_by_this_user' => 'Reports Per Aquest Usuari', + 'reports_categories' => 'Categories', + 'reports_count' => '%d Informes', + 'reports_date' => 'Data', + 'reports_description' => 'Descripció', + 'reports_download_csv' => 'Els Reports es descarregaran en format CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Característiques', + 'reports_find_location' => 'Trobeu una ubicació prop vostre', + 'reports_first' => 'Nom', + 'reports_last' => 'Cognom', + 'reports_location_name' => 'Ubicació Precisa', + 'reports_news' => 'Enllaç a Font de Notícies', + 'reports_optional' => 'Informació Opcional', + 'reports_photos' => 'Pujar Fotos', + 'reports_return' => 'Torneu a la pàgina de reports', + 'reports_select_city' => 'Seleccioneu una Ciutat', + 'reports_submitted' => 'La informació que heu reportat ha estat enviada i serà revisada. Contactarem amb vostè en cas que sigui necessari.', + 'reports_submit_new' => 'Envieu un Nou Report', + 'reports_time' => 'Temps', + 'reports_timeline' => 'Línia de Temps', + 'reports_title' => 'Títol de l`Informe Reportat', + 'reports_video' => 'Enllaç de Video', + 'report_an_incident' => 'Reportar un Incident', + 'report_details' => 'Detalls del Report', + 'report_option_1' => 'Enviant un missatge a', + 'report_option_2' => 'Enviant un correu electrònic', + 'report_option_3' => 'Enviant un Tweet amb el/s hashtag/s', + 'report_option_4' => 'Omplenant aquest formulari a la nostra web', + 'report_option_external_apps' => 'Utilitzant una aplicació', + 'report_saved' => 'El Seu Informe s`ha Guardat', + 'report_title' => 'Títol de l`Informe', + 'request_information' => 'Sol.licitar més informació', + 'request_location' => 'Sol.licitat ubicació', + 'required' => 'Obligatori', + 'requirements' => 'Requeriments', + 'resend_confirm_email' => 'Reenvia Correu Electrònic de Confirmació', + 'reset' => 'Reset', + 'reset_all_filters' => 'Neteja tots els flitres', + 'reset_password' => 'Canvia el Password', + 'retrieve_city_names' => 'Recupera els noms de ciutats del país seleccionat', + 'riverid_information' => 'Comptes gestionats pel servei %s.', + 'role' => 'Rol', + 'rss' => 'RSS', + 'save' => 'Desa', + 'saved' => 'Guardat', + 'save_add_new' => 'Desa & Afegeix Nou', + 'save_close' => 'Desa & Tanca', + 'save_report' => 'Desa Informe', + 'schedule' => 'Calendari', + 'scheduler' => 'Programador', + 'scheduler_day' => 'Dia', + 'scheduler_hour' => 'Hora', + 'scheduler_log' => 'Log del Programador', + 'scheduler_minute' => 'Minut', + 'scheduler_weekday' => 'Dia de la setmana', + 'search' => 'CERCA', + 'search_results' => 'Resultats de la Cerca', + 'security_code' => 'Codi de Seguretat', + 'select_all' => 'Selecciona-ho Tot', + 'select_field_type' => 'Seleccioneu un Tipus de Camp', + 'select_form_type' => 'Seleccioneu un Tipus de Formulari', + 'select_in_map' => 'Seleccioneu al Mapa', + 'select_multiple' => 'Seleccioneu tants com calgui', + 'select_one' => 'Si us plau, comproveu que heu marcat un item', + 'select_theme' => 'Seleccioneu Tema', + 'send' => 'Envia', + 'send_confirmation' => 'Envia Confirmació', + 'sending_to' => 'Enviant A', + 'sent' => 'Enviat', + 'sent_by' => 'Enviat Per', + 'server_address' => 'Adreça del Server', + 'server_type' => 'Tipus de Server', + 'service' => 'Servei', + 'service_username' => 'Nom d`usuari del Servei', + 'service_user_id' => 'ID d`Usuari de Servei', + 'share' => 'Compartir', + 'shared_data' => 'Dades Compartides', + 'share_has_been' => 'La compartició ha estat', + 'sharing' => 'Compartint', + 'shorter_map' => 'Mapa Petit', + 'show' => 'Mostra', + 'show_all' => 'Mostra`ls Tots', + 'show_messages' => 'Mostra els Missatges', + 'site' => 'Website', + 'site_email_address' => 'adreça de correu electrònic del site', + 'site_url' => 'URL del Site', + 'smaller_map' => 'Mapa Més Petit', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Perdoenu, no teniu cal emblema.', + 'source' => 'Font', + 'source_name' => 'Nom de la Font', + 'source_url' => 'URL de la Font', + 'spam' => 'Spam', + 'ssl_support' => 'Suport SSL?', + 'start_point' => 'Des de', + 'step' => 'Pas', + 'submit' => 'Enviar un Informe', + 'submit_sms' => 'Enviat via SMS', + 'submit_sms1' => 'Enviar el vostre SMS a', + 'submit_sms2' => 'al vostre telèfon', + 'success' => 'Èxit!', + 'successfuly_imported' => 'Importat Exitosament', + 'surname' => 'Cognoms', + 'survey' => 'Enquesta', + 'system' => 'Sistema', + 'taller_map' => 'Mapa Més Gran', + 'tcp_port' => 'Port TCP', + 'themes' => 'Temes', + 'theme_default' => 'Tema Predeterminat de l`Ushahidi', + 'theme_settings' => 'Configuració del Tema', + 'this' => 'Aquest', + 'this_day' => 'Avui', + 'this_month' => 'Aquest Mes', + 'this_week' => 'Aquesta Setmana', + 'this_year' => 'Aquest Any', + 'this_is_your_profile' => 'Aquest és el seu perfil.', + 'time' => 'Temps', + 'title' => 'Títol ', + 'to' => 'a', + 'today' => 'Avui', + 'today_at' => 'Avui a les', + 'token' => 'Mostra', + 'total_reports' => 'Informes Totals', + 'translated' => 'Traduït', + 'translated_description' => 'Descripció Traduïda', + 'translated_title' => 'Títol Traduït', + 'translate_to' => 'Traduït a', + 'translation' => 'Traducció', + 'translation_saved' => 'La traducció s`ha guardat', + 'trusted' => 'De Confiança', + 'type' => 'Tipus', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Incapaç d`enviar el correu electrònic.', + 'uncategorized_reports' => 'Informes No Classificats', + 'unread' => 'No llegit', + 'unverified' => 'No verificat', + 'update_feeds' => 'Feeds actualitzats', + 'upload' => 'Pujada', + 'upload_file' => 'Fitxer per pujar', + 'upload_reports' => 'Pujar Informes', + 'upload_reports_detail_1' => 'Amb el següent formulari, podeu importar els incidents al motor de l`Ushahidi', + 'upload_reports_detail_4' => 'Ha de contenir, pel cap baix, el Títol de l`Incident i la Data de l`Incident', + 'upload_reports_detail_4b' => 'Si no es subministren les coordenades de latitud i longitud, l`ubicació serà geolocalitzada amb el Google Geocoder', + 'upload_reports_detail_5' => 'Una ostra de l`Informe CSV', + 'upload_reports_detail_6' => '#,TÍTOL DE L`INCIDENT, DATA DE L`INCIDENT,LOCATITZACIÓ,DESCRIPCIÓ,CATEGORIA,APROVAT,VERIFICAT,LATITUD,LONGITUD
"1","Sospitós mort a Nairobi","2009-05-15 01:06:00","Nairobi","S`han confirmat tres casos a C.del Uruguay","MORTS, CIVILS, ",SI,SI,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Saqueig","2009-03-18 10:10:00","Accra","Hi ha saquejos per tot arreu","DISTURBIS, MORTS, PÈRDUA DE PROPIETATS, ",SI,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Pujada Exitosa', + 'upload_video' => 'Pujar Video', + 'url' => 'URL', + 'user' => 'Usuari', + 'username' => 'Nom d`Usuari', + 'ushahidi_admin' => 'Admin de l`Ushahidi', + 'verification' => 'Verificació', + 'verified' => 'Verificat', + 'verified_reports' => 'Informes Verificats', + 'verify' => 'Verificar', + 'verify_this_report' => 'Verificar aquest Informe', + 'version' => 'Versió', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Vista', + 'views' => 'Vistes', + 'view_all' => 'Veure`ls Tots', + 'view_all_feeds' => 'Veure tots els feeds', + 'view_all_reports' => 'Veure tots els informes', + 'view_items' => 'Veure Items', + 'view_more' => 'Veure`n Més', + 'view_public_profile' => 'Veure el Perfil Públic', + 'view_report' => 'Veure Informe', + 'view_reports' => 'Veure Informes', + 'visible' => 'Visible', + 'waiting_approval' => 'Esperant Aprovació', + 'waiting_verification' => 'Esperant Verificació', + 'wider_map' => 'Mapa Gran', + 'web_form' => 'Formulari Web', + 'weight' => 'Pes', + 'yes' => 'Si', + 'yesterday' => 'Ahir', + 'your_dashboard' => 'El vostre Taulell', + 'your_file' => 'El vostre fitxer', + 'zoom_in' => 'Apropar', + 'zoom_out' => 'Allunyar', +); diff --git a/application/i18n/ca_ES/upgrade.php b/application/i18n/ca_ES/upgrade.php new file mode 100644 index 0000000000..fc875125f1 --- /dev/null +++ b/application/i18n/ca_ES/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Dada introduida no vàlida. Pot ser 0 per No i 1 per Si.', + ) , + 'upgrade_automatic' => 'Actualització automàtica', + 'upgrade_available' => 'Actualització disponible', + 'upgrade_continue_btn_text' => 'Continuar', + 'upgrade_db_btn_text' => 'Actualitzar', + 'upgrade_db_text_1' => 'Procedeixo a actualitzar la base de dades des de la versió', + 'upgrade_db_text_2' => 'a la nova versió de la base de dades', + 'upgrade_db_text_3' => 'Cliqueu sobre el botó "Actualitzar" i relaxeu-vos mentre faig la màgia.', + 'upgrade_db_text_4' => 'Oh, i si també voleu fer un backup de la vostra base de dades, marqueu el checkbox de sota i ho faré en un instant.', + 'upgrade_db_text_5' => 'Faig un backup de la base de dades abans d`actualitzar? (Altament Recomanable)', + 'upgrade_db_title' => 'Actualització de la base de dades de l`Ushahidi', + 'upgrade_db_info' => 'L´Ushahidi ha estat actualitzat! Abans de continuar, cal actualitzar la base de dades a la nova versió (%s).', + 'upgrade_db_up_to_date' => 'La versió de base de dades està actualitzada.', + 'upgrade_failed' => 'L`actualització ha fallat en algun punt', + 'upgrade_manual' => 'Actualització Manual', + 'upgrade_status' => 'Estat de l`actualització de l`Ushahidi', + 'upgrade_text_1' => 'Les següents instruccions us guiaran per a actualitzar manualment l`Ushahidi', + 'upgrade_text_2' => 'Pas 1: Descarregueu la versió més recent d`Ushahidi des de http://download.ushahidi.com', + 'upgrade_text_3' => 'Pas 2: Depenent del sistema operatiu del servidor web, feu servir el vostre métode preferit (p.ex.: telnet, ftp, ssh) per entrar al servidor web i reemplaçar els continguts de totes les carpetes amb els de la darrera versió. TOTS EXCEPTE:', + 'upgrade_text_4' => 'Pas 3: Cliqueu el botó "Continuar" per a actualitzar les taules necessàries.', + 'upgrade_tables' => 'Pas 3: Mira a l\'interior de la carpeta sql.Executa manualment l\'actualització -. L´arxiu sql a partir de la versió de base de dades actual de la teva instal.lació fins al fitxer sql actualitzat final.', + 'upgrade_text_5' => 'Per a una actualització automàtica, cliqueu al botó de sota.', + 'upgrade_text_6' => 'Per a l\'actualització automàtica, feu clic al botó de sota.', + 'upgrade_title_text' => 'Esteu fent servir l\' Ushahidi v%1$s amb la Base de dades versió %2$d corrent sobre %3$s', + 'upgrading' => 'Actualitzant', + 'upgrade_ftp_text' => 'Per continuar amb l\'actualització senzilla, el servidor FTP requereix la següent informació de la web on està allotjat.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Exemple: "localhost"', + 'upgrade_ftp_password' => 'FTP Password:', + 'upgrade_ftp_username' => 'FTP Nom d´Usuari:', + 'upgrade_status_info' => 'Teniu l\'última versió de Ushahidi.', + 'upgrade_status_info_2' => 'No cal actualitzar.', + 'upgrade_db_version' => 'Versió de la Base de Dades: %d', + 'upgrade_warning_software_version' => 'Avís: la versió de programari de version.php i la base de dades no coincideixen.', + 'upgrade_warning_db_version' => 'Avís: la versió base de dades de version.php i la base de dades no coincideixen.', + 'upgrade_database' => 'Base de Dades:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Descarregant la darrera versió de Ushahidi ...', + 'log_file' => 'Fitxer de Log', + 'successfully_downloaded' => 'Descarrega exitosa. Descomprimint....', + 'failed_downloading' => 'No s\'ha pogut descarregar.', + 'successfully_unpacked' => 'Descomprimits correctament. Copiant fitxers....', + 'failed_unpacking' => 'No s\'ha pogut descomprimir', + 'successfully_copied' => 'Copiats correctament. Actualitzant la Base de Dades.....', + 'failed_copying' => 'No s\'han pogut copiar els fitxers.', + 'backup_success' => 'Backup de la Base de Dades i actualització correctes.', + 'backup_failed' => 'No s\'ha pogut fer el Backup de la Base de Dades.', + 'dbupgrade_success' => 'Actualització de la Base de Dades correcta.', + 'deleting_files' => 'Esborrant fitxers descarregats...', + 'upgrade_success' => 'ACTUALITZACIÓ CORRECTA. Veieu el Fitxer de Logs', +); diff --git a/application/i18n/cs_CZ/alerts.php b/application/i18n/cs_CZ/alerts.php new file mode 100755 index 0000000000..7754568827 --- /dev/null +++ b/application/i18n/cs_CZ/alerts.php @@ -0,0 +1,50 @@ + array( + 'email' => 'Uvedl/a jste správně emailovou adresu?', + 'email_check' => 'Tato emailová adresa už je zaregistrována k odběru novinek z této oblasti na mapě', + 'length' => 'Emailová adresa může obsahovat od 4 do 64 znaků.', + 'required' => 'Zadejte emailovou adresu.', + ) , + 'alert_lat' => array( + 'between' => ' Nevybral/a jste platnou lokalitu na mapě.', + 'required' => 'Nevybral/a jste platnou lokalitu na mapě.', + ) , + 'alert_lon' => array( + 'between' => 'Nevybral/a jste platnou lokalitu na mapě.', + 'required' => 'Nevybral/a jste platnou lokalitu na mapě.', + ) , + 'alert_mobile' => array( + 'mobile_check' => 'That Mobile Phone Number has already been registered to receive alerts for that location', + 'one_required' => 'Musíte zadat buď číslo svého mobilního telefonu, nebo e-mailovou adresu.', + 'required' => 'Pole mobilní telefon je povinné v případě, že je zaškrtnut.', + ) , + 'alert_radius' => array( + 'in_array' => 'Nevymezil/a jste okruh, který Vás zajímá.', + 'required' => 'Nevymezil/a jste oblast, který Vás zajímá.', + ) , + 'alert_recipient' => array( + 'required' => 'Nenastavili jste příjemce pro zasílání upozornění.', + ) , + 'code_already_verified' => 'Tento kód už byl potvrzen!', + 'code_not_found' => 'Tento potvrzovací kód nebyl nalezen! Prosím, uveďte správnou adresu.', + 'code_verified' => ' Váš kód byl potvrzen. Na Vaši adresu budou zasílány upozornění o nových zprávách na mapě.', + 'confirm_request' => 'Pro potvrzení, klikněte prosím na odkaz ', + 'create_more_alerts' => 'Vraťte se zpět, pokud máte zájem nastavit zasílání novinek z dalších oblastí.', + 'email_alert_request_created' => 'Byl odeslán email na adresu ', + 'email_code' => 'Zadejte, prosím, kód, který jste obdrželi, pro potvrzení registrace: ', + 'email_error_head' => ' Vaše žádost o zasílání novinek z mapy nebyla uložena!', + 'email_ok_head' => 'Vaše žádost o zasílání novinek z mapy byla uložena!', + 'error' => 'Systém nebyl schopen zpracovat Vaši žádost o potvrzení odběru zpráv!', + 'settings_error' => 'Chyba nastavení - není možné zasílat novinky', + 'unsubscribe' => 'Zasílání novinek z mapy zrušíte tak, že zkopírujete následující internetovou adresu do nového okna prohlížeče: ', + 'unsubscribed' => 'Už nebudete dostávat novinky z ', + 'unsubscribe_failed' => 'Odhlášení se nezdařilo. Zkontrolujte, že jste správně zadali internetovou adresu.', + 'verification_email_subject' => '- potvrzení o zasílání novinek z mapy', + 'verify_code' => ' Novinky Vám začnou chodit až po potvrzení Vaší žádosti.', +); diff --git a/application/i18n/cs_CZ/auth.php b/application/i18n/cs_CZ/auth.php new file mode 100755 index 0000000000..38011ae0b6 --- /dev/null +++ b/application/i18n/cs_CZ/auth.php @@ -0,0 +1,70 @@ + array( + 'email' => 'Emailová adresa nejspíše není ve správném formátu', + 'exists' => 'Je nám líto, uživatelský účet už pro tuto emailovou adresu existuje', + 'length' => 'Emailová adresa musí mít ne méně než 4 znaky a ne více než 64 znaků', + 'required' => 'Emailová adresa je povinná položka', + ) , + 'name' => array( + 'length' => 'Políčko se jménem musí mít ne méně než 3 znaky a ne více než 100 znaků', + 'required' => 'Políčko se jménem je povinná položka', + 'standard_text' => 'Uživatelský login obsahuje nepovolené znaky', + ) , + 'current_password' => array( + 'length' => 'Heslo musí být alespoň 8 znaků dlouhé.', + 'login error' => 'Zkontrolujte prosím, zda jste zadali správný e-mail a heslo.', + 'matches' => 'Prosím, zadejte do obou polí pro heslo stejné heslo.', + 'required' => 'Heslo je vyžadováno.', + 'alpha_dash' => 'Heslo musí obsahovat pouze abecední znaky, #, @, číslice, podtržítka a pomlčky ', + 'incorrect' => 'Aktuální heslo, které jste zadali pro váš účet je nesprávné. Prosím, zkuste to znovu.', + ) , + 'new_password' => array( + 'length' => 'Heslo musí být alespoň 8 znaků dlouhé.', + 'login error' => 'Zkontrolujte prosím, zda jste zadali správný e-mail a heslo.', + 'matches' => 'Prosím, zadejte do obou polí pro heslo stejné heslo.', + 'required' => 'Heslo je vyžadováno.', + 'alpha_dash' => 'Heslo musí obsahovat pouze abecední znaky, #, @, číslice, podtržítka a pomlčky', + ) , + 'password' => array( + 'default' => 'Došlo k chybě při pokusu o vaše přihlášení.', + 'length' => 'Heslo musí mít ne méně 5 a ne více než 16 znaků', + 'login error' => 'Please check that you entered the correct password.', + 'matches' => 'Vložte stejné heslo v obou políčkách pro zadání hesla', + 'required' => 'Heslo je povinné položka', + 'riverid server down' => 'Ověřovací server je vypnut. Prosím, zkuste to znovu později.', + 'alpha_dash' => 'Heslo musí obsahovat pouze abecední znaky, #, @, číslice, podtržítka a pomlčky', + ) , + 'password_confirm' => array( + 'matches' => 'Hesla se musí shodovat', + ) , + 'resetemail' => array( + 'email' => 'Je emailová adresa zadaná ve správném formátu?', + 'invalid' => 'Je nám líto, Vaše adresa nebyla rozpoznána', + 'required' => 'Emailová adresa je povinná položka', + ) , + 'role' => array( + 'superadmin_modify' => 'Jen superadmin může změnit superadmina, nebo povýšit uživatele na admina.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Neplatný formát role', + 'length' => 'Políčko role musí mít ne méně než 5 a ne více než 30 znaků', + 'required' => 'Je třeba definoval alespoň jednu roli', + 'values' => 'Je třeba vybrat buď ADMIN anebo USER (uživatelskou) roli', + ) , + 'username' => array( + 'admin' => 'Role admina není možné upravit', + 'alpha_numeric' => 'URL pole veřejného profilu musí obsahovat pouze čísla a písmena.', + 'exists' => 'Je nám líto, tento login už používá jiný uživatel/ka', + 'length' => 'Položka uživatelský login musí mít méně než 2 a více než 16 znaků', + 'login error' => 'Please check that you entered the correct username.', + 'required' => 'Políčko s uživatelským jménem je povinná položka', + 'superadmin' => 'Roli super admina není možné upravit', + 'csrf' => 'Možný CSRF útok. Opravdu jste zamýšlely vytvořit, nebo upravit uživatele?', + ) , +); diff --git a/application/i18n/cs_CZ/bug.php b/application/i18n/cs_CZ/bug.php new file mode 100755 index 0000000000..0620c9e174 --- /dev/null +++ b/application/i18n/cs_CZ/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Vložte platný potvrzovací kód', + 'required' => 'Vložte potvrzovací kód', + ) , + 'email' => array( + 'email' => 'Zadali jste emailovou adresu ve správném formátu?', + 'length' => 'Emailová adresa musí obsahovat ne méně než 4 a ne více než 64 znaků', + 'required' => 'Emailová adresa se vyžaduje, když se vyžaduje', + ) , + 'error' => array( + 'required' => 'Je třeba vyplnit políčko, kde se ukazuje chyba', + ) , + 'subject' => array( + 'length' => 'Pole předmět musí mít alespoň 3 znaky', + 'required' => 'Pole předmět je povinná položka', + ) , + 'yourname' => array( + 'length' => 'Pole se jménem musí mít alespoň 3 znaky', + 'required' => 'Pole se jménem je povinná položka', + ) , +); diff --git a/application/i18n/cs_CZ/category.php b/application/i18n/cs_CZ/category.php new file mode 100755 index 0000000000..59b6fd1c91 --- /dev/null +++ b/application/i18n/cs_CZ/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Políčko s barvou musí mít 6 znaků', + 'required' => 'Barva je povinná položka', + ) , + 'category_description' => array( + 'required' => 'Políčko popis je povinná položka', + ) , + 'category_image' => array( + 'size' => 'Ujistěte se, že obrázky mají méně než 50KB.', + 'type' => 'Obrázek není ve správném formátu; nahrát je možné obrázky ve formátu .JPG, .PNG a .GIF.', + 'valid' => 'Obrázek není ve správném formátu', + ) , + 'category_title' => array( + 'length' => 'Název musí mít ne méně než 3 a ne více než 80 znaků', + 'required' => 'Políčko název je povinná položka', + ) , + 'parent_id' => array( + 'already_parent' => 'Nemůžete podkategorizovat kategorii s podkategorií.', + 'exists' => 'Nadřazená kategorie neexistuje.', + 'numeric' => 'Nadřazená kategorie musí být v číselném tvaru.', + 'parent_trusted' => 'Rodič kategorie nemůže být zvláštní kategorie', + 'required' => 'Políčko nadřazená kategorie je povinná položka.', + 'same' => 'Kategorie a nadřazená kategorie nemůže být stejná.', + 'special' => 'Zvláštní kategorie nelze podkategorizovat', + ) , +); diff --git a/application/i18n/cs_CZ/comments.php b/application/i18n/cs_CZ/comments.php new file mode 100755 index 0000000000..e0c6e67e87 --- /dev/null +++ b/application/i18n/cs_CZ/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Vložte platný ověřovací kód', + 'required' => 'Opište ověřovací kód', + 'valid' => 'Zadali jste nesprávný bezpečnostní kód.', + ) , + 'comment_author' => array( + 'length' => 'Jméno má mít alespoň tři znaky.', + 'required' => 'Vyplňte jméno.', + ) , + 'comment_description' => array( + 'required' => 'Vyplňte komentář.', + ) , + 'comment_email' => array( + 'email' => 'Emailová adresa není ve správném formátu', + 'length' => 'Emailová adresa má mít minimálně 4 a maximálně 64 znaků.', + 'required' => 'Vyplňte Váš email.', + ) , +); diff --git a/application/i18n/cs_CZ/contact.php b/application/i18n/cs_CZ/contact.php new file mode 100755 index 0000000000..6f2df0ec5b --- /dev/null +++ b/application/i18n/cs_CZ/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Vložte platný ověřovací kód', + 'valid' => 'Zadejte prosím platný bezpečnostní kód.', + 'required' => 'Napište zde ověřovací kód', + ) , + 'contact_email' => array( + 'email' => 'Emailová adresa není ve správném formátu', + 'length' => 'Emailová adresa má mít minimálně 4 a maximálně 64 znaků.', + 'required' => 'Vyplňte Váš email.', + ) , + 'contact_message' => array( + 'required' => 'Vyplňte vaši zprávu.', + ) , + 'contact_name' => array( + 'length' => 'Jméno má mít alespoň tři znaky.', + 'required' => 'Vyplňte vaše jméno.', + ) , + 'contact_subject' => array( + 'length' => 'Předmět zprávy má mít alespoň tři znaky.', + 'required' => 'Vyplňte předmět zprávy.', + ) , + 'email_send' => array( + 'failed' => 'Došlo k chybě při odesílání zprávy.', + ) , +); diff --git a/application/i18n/cs_CZ/core.php b/application/i18n/cs_CZ/core.php new file mode 100755 index 0000000000..ed4830133e --- /dev/null +++ b/application/i18n/cs_CZ/core.php @@ -0,0 +1,25 @@ + 'konfigurační soubor', + 'controller' => 'řadič', + 'driver' => 'ovladač', + 'driver_implements' => 'The %s driver for the %s library must implement the %s interface', + 'driver_not_found' => 'The %s driver for the %s library could not be found', + 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file', + 'library' => 'knihovna', + 'log_dir_unwritable' => 'Adresář pro logy není zapisovatelný: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi nebyl schopen určit řadič pro zpracování tohoto požadaveku: %s', + 'no_default_route' => 'Prosím nastavte výchozí trasu do souboru config/routes.php', + 'page_not_found' => 'Stránka, kterou požadujete, %s, nemohla být nalezena.', + 'report_bug' => 'Oznámení tohoto problému Ushahidi', + 'resource_not_found' => 'The requested %s, %s, could not be found', + 'stack_trace' => 'Zísobník trasování', + 'there_can_be_only_one' => 'There can be only one instance of Ushahidi per page request', + 'view_set_filename' => 'You must set the the view filename before calling render', +); diff --git a/application/i18n/cs_CZ/database.php b/application/i18n/cs_CZ/database.php new file mode 100755 index 0000000000..a1dbcb64a6 --- /dev/null +++ b/application/i18n/cs_CZ/database.php @@ -0,0 +1,10 @@ + 'Chyba databáze: %s', + 'table_not_found' => 'Tabulka "%s" nebyla v databázi nalezena. Ujistěte se, že používáte nejnovější verzi databáze této verze Ushahidi.', +); diff --git a/application/i18n/cs_CZ/datetime.php b/application/i18n/cs_CZ/datetime.php new file mode 100755 index 0000000000..fb91c74918 --- /dev/null +++ b/application/i18n/cs_CZ/datetime.php @@ -0,0 +1,86 @@ + 'dop.', + 'friday' => array( + 'abbv' => 'Pá', + 'full' => 'Pátek', + ) , + 'monday' => array( + 'abbv' => 'Po', + 'full' => 'Pondělí', + ) , + 'pm' => 'odp.', + 'saturday' => array( + 'abbv' => 'So', + 'full' => 'Sobota', + ) , + 'sunday' => array( + 'abbv' => 'Ne', + 'full' => 'Neděle', + ) , + 'thursday' => array( + 'abbv' => 'Čt', + 'full' => 'Čtvrtek', + ) , + 'tuesday' => array( + 'abbv' => 'Út', + 'full' => 'Úterý', + ) , + 'wednesday' => array( + 'abbv' => 'Stř', + 'full' => 'Středa', + ) , + 'january' => array( + 'abbv' => 'Led', + 'full' => 'Leden', + ) , + 'february' => array( + 'abbv' => 'Úno', + 'full' => 'Únor', + ) , + 'march' => array( + 'abbv' => 'Bře', + 'full' => 'Březen', + ) , + 'april' => array( + 'abbv' => 'Dub', + 'full' => 'Duben', + ) , + 'may' => array( + 'abbv' => 'Kvě', + 'full' => 'Květen', + ) , + 'june' => array( + 'abbv' => 'Červen', + 'full' => 'Červen', + ) , + 'july' => array( + 'abbv' => 'Červenec', + 'full' => 'Červenec', + ) , + 'august' => array( + 'abbv' => 'Srp', + 'full' => 'Srpen', + ) , + 'september' => array( + 'abbv' => 'Zář', + 'full' => 'Září', + ) , + 'october' => array( + 'abbv' => 'Říj', + 'full' => 'Říjen', + ) , + 'november' => array( + 'abbv' => 'Říj', + 'full' => 'Říjen', + ) , + 'december' => array( + 'abbv' => 'Pro', + 'full' => 'Prosinec', + ) , +); diff --git a/application/i18n/cs_CZ/feeds.php b/application/i18n/cs_CZ/feeds.php new file mode 100755 index 0000000000..ea89abb479 --- /dev/null +++ b/application/i18n/cs_CZ/feeds.php @@ -0,0 +1,19 @@ + 'DATUM', + 'feed_name' => array( + 'length' => 'Název informačního kanálu musí mít nejméně 3 a ne více než 70 znaků.', + 'required' => 'Vložte název informačního kanálu.', + ) , + 'feed_url' => array( + 'required' => 'Vložte URL informačního kanálu.', + 'url' => 'Vložte platnou adresu URL, např. http://www.ushahidi.com', + ) , + 'source' => 'ZDROJ', + 'title' => 'NÁZEV', +); diff --git a/application/i18n/cs_CZ/footer.php b/application/i18n/cs_CZ/footer.php new file mode 100755 index 0000000000..4b1c8a8a43 --- /dev/null +++ b/application/i18n/cs_CZ/footer.php @@ -0,0 +1,9 @@ + 'php5-curl není v systému nainstalováno', +); diff --git a/application/i18n/cs_CZ/form.php b/application/i18n/cs_CZ/form.php new file mode 100755 index 0000000000..176ecf144e --- /dev/null +++ b/application/i18n/cs_CZ/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Výchozí hodnota, kterou jste v poli poskytli je neplatná.', + 'length' => 'Název pole musí mít nejméně 3 znaky a ne více než 200 znaků.', + ) , + 'field_height' => array( + 'between' => 'Vložte hodnotu 0 až 50 pro udání výšky pole.', + ) , + 'field_isdate' => array( + 'between' => 'Vložil jste neplatnou hodnotu pro datové pole (date field)', + 'required' => 'Zvolte "Ano" nebo "Ne" pro datové pole (date field)', + ) , + 'field_name' => array( + 'length' => 'Název pole musí mít ne méně než 3 znaky a ne více než 100 znaků.', + 'required' => 'Vpište název pole.', + 'duplicate' => 'Název, který jste zadali, v tomto formuláři již existuje. Prosím zadejte jiný.', + ) , + 'field_required' => array( + 'between' => 'Vložil jste neplatnou hodnotu pro dané pole.', + 'required' => 'Zvolte "Ano" nebo "Ne" pro dané pole', + ) , + 'field_type' => array( + 'numeric' => 'Zvolte platný typ pole', + 'required' => 'Zvolte typ pole.', + ) , + 'field_width' => array( + 'between' => 'Vložte hodnotu 0 až 300 pro udání šířky pole.', + ) , + 'form_description' => array( + 'required' => 'Napište popis formuláře.', + ) , + 'form_id' => array( + 'default' => 'Předem zadaný formulář (default form) není možné smazat.', + 'numeric' => 'Zvolte, jaký formulář je třeba přidat k tomuto poli.', + 'required' => 'Zvolte, jaký formulář je třeba přidat k tomuto poli.', + ) , + 'form_title' => array( + 'length' => 'Pole názvu formuláře (the form name field) musí mít ne méně než 3 a ne více než 100 znaků.', + 'required' => 'Napište název formuláře.', + 'exists' => 'Formulář s tímto názvem již existuje. Prosím, vyberte si jiný.', + ) , +); diff --git a/application/i18n/cs_CZ/imap.php b/application/i18n/cs_CZ/imap.php new file mode 100755 index 0000000000..f4303b8e05 --- /dev/null +++ b/application/i18n/cs_CZ/imap.php @@ -0,0 +1,10 @@ + 'Nebylo možné otevřít "IMAP stream"', + 'unsupported_service' => 'Emailová služba není podporována', +); diff --git a/application/i18n/cs_CZ/installer.php b/application/i18n/cs_CZ/installer.php new file mode 100755 index 0000000000..2212d7608c --- /dev/null +++ b/application/i18n/cs_CZ/installer.php @@ -0,0 +1,84 @@ + 'Základní cesta', + 'database' => 'Databáze', + 'database_host' => 'Hostitel databáze', + 'database_host_description' => 'If you are running Ushahidi on your own computer, this will more than likely be "localhost". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider', + 'database_name' => 'Jméno databáze', + 'database_name_description' => 'Název databáze, ve které chcete spustit Ushahidi', + 'db_information_link' => 'For more information, please check out this article on the wiki that talks about databases in more detail', + 'default_language' => 'Výchozí jazyk (Národní prostředí)', + 'default_language_description' => 'Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own', + 'disable' => 'Zakázat', + 'enable' => 'Povolit', + 'error_summary' => 'Listed below is a summary of the errors we encountered', + 'files_location_text' => 'The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory', + 'finished' => 'Dokončeno', + 'general' => 'Obecné', + 'google_key' => 'Google API klíč', + 'google_key_description' => 'Každý se může dostat API klíč. Získat klíč', + 'go_back' => 'Vrátit se', + 'index' => array( + 'advanced' => 'POKROČILÁ INSTALACE', + 'advanced_installation_description' => 'Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details', + 'basic_installation' => 'ZÁKLADNÍ INSTALACE', + 'basic_installation_description' => 'Simple and fast. All you need is your website\'s root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later', + 'proceed' => 'Pokračovat', + 'welcome' => 'Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below', + ) , + 'installation_successful' => 'Instalace Úspěšná', + 'mail_server' => 'Mail Server', + 'mail_server_host' => 'Hostitel Mail Serveru', + 'mail_server_host_description' => 'Příklady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Hselo k Mail Serveru', + 'mail_server_password_description' => 'Heslo, které běžně používáte pro přihlášení k e-mailu', + 'mail_server_port' => 'Port Mail Serveru', + 'mail_server_port_description' => 'Běžné Porty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Typ Mail Serveru', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP), nebo Post Office Protocol (POP). Jaký je rozdíl? ', + 'mail_server_username' => 'Uživatelské jméno k Mail serveru', + 'mail_server_username_description' => 'If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username', + 'map' => 'Mapa', + 'map_provider' => 'Poskytovatel mapy', + 'map_provider_description' => 'Ushahidi works equally well with any of these four mapping providers: Google, Bing, Yahoo or Open Street Map. Choose the one that has the most detail in your area', + 'other_steps' => 'Ostatní kroky...', + 'password' => 'Heslo', + 'password_description' => 'Váše heslo k databázi', + 'previous' => 'Předchozí', + 'restart_apache' => 'Prosím, restartujte Apache server', + 'select_mail_server_ssl' => 'Povolit nebo zakázat SSL', + 'select_mail_server_ssl_description' => 'Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security', + 'setup_sms' => 'Setup your SMS server', + 'site_email' => 'E-mailová aderesa stránky', + 'site_email_alerts' => 'E-mailová adresa stránky pro upozornění', + 'site_email_alerts_description' => 'When your site visitors sign up for email alerts, they will recieve emails from this address. This email address does not have to be the same as the Site Email Address', + 'site_email_description' => 'E-mailová adresa stránky, přes kterou bude proudit širší komunikace', + 'site_name' => 'Nízev stránky', + 'site_name_description' => 'Název vaší stránky', + 'site_tagline' => 'Slogan stránky', + 'site_tagline_description' => 'Váš slogan', + 'summary' => array( + 'text_1' => 'The files and folders listed below need to be writable by your webserver', + 'text_2' => '

Here are instructions for changing file permissions:

+ ', + 'text_3' => 'Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions', + 'text_4' => 'For the installation process, please have the following bits of information on hand', + ) , + 'table_prefix' => 'Předpona tabulky', + 'table_prefix_description' => 'Normally you would not change the table prefix. However, If you want to run multiple Ushahidi installations from a single database you can do that by changing the prefix here', + 'title' => 'Název', + 'to_login' => 'Pro přihlášení, přejít na', + 'upload_data' => 'Nahrát data hlášení', + 'username' => 'Uživatelské jméno', + 'username_description' => 'Vaše uživatelské jméno k databázi', + 'use_credentials' => 'a použijte následující údaje', + 'view_site' => 'Zobrazit váš web', +); diff --git a/application/i18n/cs_CZ/layer.php b/application/i18n/cs_CZ/layer.php new file mode 100755 index 0000000000..c66bbeffae --- /dev/null +++ b/application/i18n/cs_CZ/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Políčko barvy musí mít 6 znaků.', + 'required' => 'Políčko barva je povinná položka.', + ) , + 'layer_file' => array( + 'type' => 'Políčko souboru neobsahuje platný soubor. Je možné použít pouze formáty .KMZ, .KML.', + 'valid' => 'Políčko souboru neobsahuje platný soubor', + ) , + 'layer_name' => array( + 'length' => 'Políčko se jménem musí mít alespoň 3 a ne více než 80 znaků.', + 'required' => 'Políčko se jménem je povinná položka.', + ) , + 'layer_url' => array( + 'atleast' => 'Je nutné použít buď URL adresu KLM nebo soubor KLM', + 'both' => 'Není možné zadat KML zároveň jako soubor i url adresu', + 'url' => 'Vložte platnou URL adresu. Např. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/cs_CZ/libraries.php b/application/i18n/cs_CZ/libraries.php new file mode 100755 index 0000000000..e62419cd6d --- /dev/null +++ b/application/i18n/cs_CZ/libraries.php @@ -0,0 +1,27 @@ + 'Could not connect to akismet server', + 'akismet_cannot_retrieve' => 'The response from Akismet could not be retrieved', + 'api_library_not_found' => 'The API library: %s, for the %s class could not be found. Please check your API task routing table.', + 'askimet_invalid_apikey' => 'Your Akismet API key is not valid', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2', + 'clickatell_message_too_long' => 'Your unicode message is too long! (Current lenght=', + 'clickatell_no_destination_address' => 'Zadejte cílovou adresu (KOMU)!', + 'clickatell_no_sender_address' => 'Zadejte cílovou adresu (OD)!', + 'clickatell_unicode_message_too_long' => 'Your unicode message is too long! (Current lenght=', + 'clickatell_unsupported_method' => 'Nepodporovaný způsob odeslání!', + 'invalid_api_library' => 'The API library %s is invalid. All API libraries must be subclasses of %s', + 'upgrade_directory_not_deleted' => 'Directory %s could not be deleted', + 'upgrade_extracting_error' => 'Chyba při extrahování: %s', + 'upgrade_failed' => 'Downloading the latest ushahidi failed. HTTP status code', + 'upgrade_file_not_copied' => 'File %s could not be copied', + 'upgrade_file_not_deleted' => 'File %s could not be deleted', + 'upgrade_title' => 'Aktualizační skript Ushahidi', + 'upgrade_zip_error' => 'The downloaded ushahidi zip file %s, could not be written', + 'riverid_variable_not_available' => '%s není k dispozici v RiverID třídě.', +); diff --git a/application/i18n/cs_CZ/maintenance.php b/application/i18n/cs_CZ/maintenance.php new file mode 100644 index 0000000000..5754460035 --- /dev/null +++ b/application/i18n/cs_CZ/maintenance.php @@ -0,0 +1,9 @@ + 'Je nám líto, ale naše stránky jsou v současné době nefunkční z důvodu údržby. Zkuste to prosím znovu za několik minut.', +); diff --git a/application/i18n/cs_CZ/message.php b/application/i18n/cs_CZ/message.php new file mode 100755 index 0000000000..3edff9576b --- /dev/null +++ b/application/i18n/cs_CZ/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Zadejte, prosím, platný ověřovací kód', + 'required' => 'Vložte ověřovací kód', + ) , + 'email' => array( + 'email' => 'Je emailová adresa zadána ve správném formátu?', + 'length' => 'Emailová adresa musí mít ne méně než 4 a ne více než 64 znaků.', + 'required' => 'Emailová adresa se vyžaduje, když je zatrhnutý zaškrtávací rámeček.', + ) , + 'message' => array( + 'required' => 'Políčko s komentářem je vyžadováno.', + ) , + 'name' => array( + 'length' => 'Políčko se jménem musí obsahovat alespoň 3 znaky.', + 'required' => 'Políčko se jménem je povinná položka.', + ) , + 'phone' => array( + 'length' => 'Políčko s telefonním číslem je neplatné.', + ) , +); diff --git a/application/i18n/cs_CZ/mhi.php b/application/i18n/cs_CZ/mhi.php new file mode 100755 index 0000000000..53102468cf --- /dev/null +++ b/application/i18n/cs_CZ/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Vložte, prosím, platný ověřovací kód.', + 'required' => 'Vložte, prosím, ověřovací kód.', + ) , + 'contact_email' => array( + 'email' => 'Zadali jste správnou emailovou adresu?', + 'required' => 'Zadejte platnou emailovou adresu', + ) , + 'contact_message' => array( + 'required' => 'Políčko se zprávou je povinná položka.', + ) , + 'contact_subject' => array( + 'length' => 'Políčko předmět musí mít alespoň tři znaky.', + 'required' => 'Políčko předmět je povinnou položkou.', + ) , +); diff --git a/application/i18n/cs_CZ/notifications.php b/application/i18n/cs_CZ/notifications.php new file mode 100755 index 0000000000..e5d16ea840 --- /dev/null +++ b/application/i18n/cs_CZ/notifications.php @@ -0,0 +1,26 @@ + 'Z vašeho webu byla zaslána tato zpráva', + 'admin_login_url' => 'Login admina', + 'admin_new_comment' => array( + 'message' => 'Na webu byl zadán nový komentář v odpověď na:', + 'subject' => 'Nový komentář', + ) , + 'admin_new_email' => array( + 'message' => 'Na web byla zaslána nová emailová zpráva', + 'subject' => 'Nová emailová zpráva', + ) , + 'admin_new_report' => array( + 'message' => 'Nová zpráva byla zadána přes webové rozhraní', + 'subject' => 'Nová zpráva', + ) , + 'admin_new_sms' => array( + 'message' => 'Na web byla zaslána nová sms zpráva.', + 'subject' => 'Nová sms zpráva', + ) , +); diff --git a/application/i18n/cs_CZ/page.php b/application/i18n/cs_CZ/page.php new file mode 100644 index 0000000000..524a6d934e --- /dev/null +++ b/application/i18n/cs_CZ/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Zadejte prosím název stránky.', + 'length' => 'Název stránky musí být nejméně 3 a ne více než 150 znaků dlouhý.', + ) , + 'page_tab' => array( + 'required' => 'Zadejte prosím jméno tabulky stránky.', + ) , + 'page_description' => array( + 'required' => 'Zadejte prosím popis stránky.', + ) , +); diff --git a/application/i18n/cs_CZ/permissions.php b/application/i18n/cs_CZ/permissions.php new file mode 100644 index 0000000000..6dbdb0b8af --- /dev/null +++ b/application/i18n/cs_CZ/permissions.php @@ -0,0 +1,24 @@ + 'Zobrazit zprávy', + 'reports_edit' => 'Vytvořit/Upravit/Odstranit zprávy', + 'reports_approve' => 'Schválit zprávy', + 'reports_verify' => 'Ověřit zprávy', + 'reports_comments' => 'Správa komentářů zpráv', + 'reports_download' => 'Stáhnout zprávy', + 'reports_upload' => 'Nahrát zprávy', + 'messages' => 'Spravovat Příspěvky', + 'messages_reporters' => 'Sparavovat Příspěvky reportérů', + 'stats' => 'Ukázat statistiku', + 'settings' => 'Upravit nastavení', + 'manage' => 'Spravovat panel', + 'users' => 'Spravovat uživatele', + 'manage_roles' => 'Spravovat role', + 'admin_ui' => 'Přístup správce UI', + 'member_ui' => 'Přístup uživatelů UI', +); diff --git a/application/i18n/cs_CZ/private_message.php b/application/i18n/cs_CZ/private_message.php new file mode 100644 index 0000000000..4e5e9ac619 --- /dev/null +++ b/application/i18n/cs_CZ/private_message.php @@ -0,0 +1,18 @@ + array( + 'numeric' => 'Zdrojové ID musí být číslo', + ) , + 'private_subject' => array( + 'required' => 'Pole předmět je vyžadováno', + 'length' => 'Předmět musí mít mezi 3 a 150 znaky', + ) , + 'private_message' => array( + 'required' => 'Pole zprávy je vyžadováno', + ) , +); diff --git a/application/i18n/cs_CZ/report.php b/application/i18n/cs_CZ/report.php new file mode 100755 index 0000000000..1b952924ab --- /dev/null +++ b/application/i18n/cs_CZ/report.php @@ -0,0 +1,75 @@ + 'chyba!', + 'country_name' => array( + 'single_country' => 'Toto nasazení pokrývá hlášení pouze v rámci jedné země. Prosím, ujistěte se, že je umístění zprávy v rámci země %s.', + ) , + 'custom_field' => array( + 'required' => 'Je nutné vyplnit povinné pole "%s".', + ) , + 'incident_category' => array( + 'required' => 'Je třeba zaškrtnout jednu nebo více kategorií.', + ) , + 'incident_date' => array( + 'required' => 'Pole datum je povinné.', + ) , + 'incident_description' => array( + 'required' => 'Chybí popis události.', + ) , + 'incident_hour' => array( + 'required' => 'Pole hodina je povinné.', + ) , + 'incident_minute' => array( + 'required' => 'Pole minuta je povinné.', + ) , + 'incident_news' => array( + 'url' => 'Odkaz není ve správném formátu?', + ) , + 'incident_photo' => array( + 'size' => 'Prosím, zkontrolujte, že soubory s fotografiemi nemají více než 2MB.', + 'type' => 'Soubor s fotkou/obrázkem musí být ve formátu .JPG, .PNG a .GIF.', + 'valid' => 'Soubor s fotkou/obrázkem není platným souborem', + ) , + 'incident_title' => array( + 'length' => 'Název má mít minimálně 3 a maximálně 100 znaků.', + 'required' => 'Chybí název události.', + ) , + 'incident_verified' => array( + 'between' => 'Zadejte prosím platnou hodnotu pro Ověřit toto hlášení.', + 'required' => 'Zadejte prosím platnou hodnotu pro Ověřit toto hlášení.', + ) , + 'incident_video' => array( + 'url' => 'Odkaz není ve správném formátu?', + ) , + 'latitude' => array( + 'between' => 'Je zempisná šířka ve správném formátu?', + 'required' => 'Je třeba vyplnit zeměpisnou šířku. Klikněte na správné místo na mapě pro určení polohy.', + ) , + 'locale' => array( + 'exists' => 'Toto hlášení již má překlad pro tento jazyk.', + 'required' => 'Lokalita je vyžadována.', + ) , + 'location_name' => array( + 'length' => 'Položka "Název lokality" má mít minimálně 3 a maximálně 200 znaků.', + 'required' => 'Je třeba vyplnit položku "Názav lokality".', + ) , + 'longitude' => array( + 'between' => 'Nezdá se, že pole zeměpisná délak obsahuje platnou zeměpisnou délku.', + 'required' => 'Pole zeměpisná délka je povinné. Prosím, klikněte na mapě a určite umístění.', + ) , + 'person_email' => array( + 'email' => 'Nezdá se, že pole e-mail obsahuje platnou e-mailovou adresu.', + 'length' => 'Email má mít minimálně 4 a maximálně 64 znaků.', + ) , + 'person_first' => array( + 'length' => 'Jméno má mít minimálně 3 a maximálně 100 znaků.', + ) , + 'person_last' => array( + 'length' => 'Příjmení má mít minimálně 3 a maximálně 100 znaků.', + ) , +); diff --git a/application/i18n/cs_CZ/reporters.php b/application/i18n/cs_CZ/reporters.php new file mode 100755 index 0000000000..07456364dc --- /dev/null +++ b/application/i18n/cs_CZ/reporters.php @@ -0,0 +1,19 @@ + array( + 'between' => 'The latitude field does not appear to contain a valid latitude?', + 'required' => 'Pole zeměpisná šířka je povinné. Prosím, klikněte do mapy a určete polohu.', + ) , + 'level_id' => array( + 'numeric' => 'The Reporter Level field does not appear to contain a valid Level?', + 'required' => 'The Reporter Level field does not appear to contain a valid Level?', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude?', + ) , +); diff --git a/application/i18n/cs_CZ/reports.php b/application/i18n/cs_CZ/reports.php new file mode 100644 index 0000000000..95e4c6ed59 --- /dev/null +++ b/application/i18n/cs_CZ/reports.php @@ -0,0 +1,16 @@ + array( + 'required' => 'Ověřte prosím, že jste položku zkontrolovali', + 'numeric' => 'Ověřte prosím, že jste položku zkontrolovali', + 'categories_required' => 'Hlášení musí být ketegorizovány před tím, než mohou být schváleny', + ) , + 'action' => array( + 'permission' => 'Nemáte oprávnění k provedení této akce', + ) , +); diff --git a/application/i18n/cs_CZ/roles.php b/application/i18n/cs_CZ/roles.php new file mode 100755 index 0000000000..86530dcc93 --- /dev/null +++ b/application/i18n/cs_CZ/roles.php @@ -0,0 +1,18 @@ + array( + 'length' => 'Popis pole musí být nejméně 3 a ne více než 100 znaků dlouhý.', + 'required' => 'Popis pole je povinný.', + ) , + 'name' => array( + 'alpha_numeric' => 'Název pole musí obsahovat pouze písmena nebo číslice.', + 'length' => 'Název pole musí být nejméně 2 a ne více než 30 znaků dlouhý.', + 'nomodify' => 'Superadmin Role nelze změnit.', + 'required' => 'Název pole je povinný.', + ) , +); diff --git a/application/i18n/cs_CZ/settings.php b/application/i18n/cs_CZ/settings.php new file mode 100755 index 0000000000..17e2c06abd --- /dev/null +++ b/application/i18n/cs_CZ/settings.php @@ -0,0 +1,157 @@ + array( + 'between' => 'The allow comments field does not appear to contain a valid value?', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value?', + ) , + 'allow_reports' => array( + 'between' => 'The allow reports field does not appear to contain a valid value?', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value?', + ) , + 'api' => array( + 'default_record_limit' => 'Default no. of records to be fetched per API request', + 'maximum_record_limit' => 'Maximum no. of records to be fetched per API request', + 'maximum_requests_per_ip_address' => 'Maximum no. of API requests per IP address', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value?', + 'length' => 'The Akismet field does not appear to contain a valid value?', + ) , + 'cache_pages' => array( + 'required' => 'The cache pages field does not appear to contain a valid value?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'The cache pages lifetime field does not appear to contain a valid value?', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs. Without "index.php" in the URL.', + ) , + 'configure_map' => 'Konfigurace Mapy', + 'default_location' => 'Výchozí místo', + 'default_map_all' => array( + 'alpha_numeric' => 'The color feed field does not appear to contain a valid value?', + 'length' => 'Pole Barva nesmí mít víc než 6 znaků.', + 'required' => 'Pole barva je vyžadováno.', + ) , + 'default_map_view' => 'Výchozí zobrazení mapy', + 'default_zoom_level' => 'Výchozí úroveň přiblížení', + 'download_city_list' => 'Načíst města z Geonames', + 'email_host' => array( + 'length' => 'The Mail server port field is too long', + 'numeric' => 'Pole portu Mail serveru by mělo obsahovat pouze čísla.', + ) , + 'email_password' => array( + 'required' => 'Pole Heslo pro Mail server je vyžadováno.', + ) , + 'email_port' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'email_servertype' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'facebook' => array( + 'title' => 'Nastavení možností - Facebook', + 'description' => 'To get the information below you will need to create a new facebook application at', + 'app_id' => 'Facebook App ID', + ) , + 'https' => array( + 'enable_https' => 'Povolit HTTPS', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value?', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value?', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'zoom' => 'Úroveň přiblížení', + ) , + 'map_provider' => array( + 'choose' => 'Vbrat poskytovatele map', + 'enter_api' => 'Zadat nový API klíč', + 'get_api' => 'Získat API klíč', + 'info' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'name' => 'Poskytovatel map', + ) , + 'map_settings' => 'Nastavení map', + 'multiple_countries' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'select_default_location' => 'Prosím vyberte výchozí zemi', + 'site' => array( + 'allow_feed' => 'Zahrnout RSS News Feed do webových stránek', + 'allow_reports' => 'Povolit uživatelům odeslat Hlášení', + 'api_akismet' => 'Akismet klíč', + 'banner' => 'Baner stránky', + 'checkins' => 'Checkins', + 'default_category_colors' => 'Výchozí barva pro všechny kategorie', + 'default_category_icons' => 'Výchozí ikona pro všechny kategorie', + 'delete_banner_image' => 'Odstarnit banerový obrázek', + 'delete_default_map_all_icon' => 'Odstranit výchozí ikonu', + 'display_contact_page' => 'Zobrazit kontaktní stránku', + 'display_howtohelp_page' => 'Zobrazit stránku "Jak pomoci"', + 'email_alerts' => 'E-mailová adresa pro upozornění', + 'email_site' => 'E-mailová adresa stránky', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'language' => 'Jazyk stránky', + 'manually_approve_users' => 'Ručně schválovat uživatele', + 'message' => 'Zpráva stránky', + 'name' => 'Název stránky', + 'private_deployment' => 'Soukromé nasazení', + 'require_email_confirmation' => 'Požadovat od uživatele e-mailové potvrzení', + 'submit_report_message' => 'Odeslat zprávu s hlášením', + 'share_site_stats' => 'Povolit Statistiky (uložené na serveru Ushahidi)', + 'tagline' => 'Slogan stránky', + 'timezone' => 'Časové pásmo', + 'title' => 'Nastavení stránky', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address?', + 'length' => 'Pole e-mail musí být nejméně 4 a ne více 100 znaků dlouhé.', + ) , + 'site_name' => array( + 'length' => 'Pole název stránky musí být nejméně 3 a ne více 50 znaků dlouhé.', + 'required' => 'Pole název stránky je vyžadované.', + ) , + 'site_tagline' => array( + 'length' => 'Pole slogan musí být nejméně 3 a ne více 100 znaků dlouhé.', + 'required' => 'Pole slogan je povinné.', + ) , + 'sms' => array( + 'clickatell_api' => 'Vaše číslo pro Clickatell API', + 'clickatell_check_balance' => 'Zkontrolujte, jaký je váš zůstatek kreditu na Clickatell ', + 'clickatell_load_balance' => 'Načíst zůstatek kreditu', + 'clickatell_password' => 'Vače heslo pro Clickatell', + 'clickatell_text_1' => 'Pro zaregistrování služeb Clickatellsklikněte zde', + 'clickatell_text_2' => 'Níže zadejte vaše přístupové informace pro Clikatell', + 'clickatell_username' => 'Vaše uživatelské jméno pro Clickatell', + 'flsms_text_1' => 'Níže zadejte v poli(ích) telefonní číslo(a) připojené k Frontline SMS', + 'flsms_text_2' => 'Níže zadejte číslo bez + nebo pomlček', + 'option_1' => 'Možnost 1: Použít Frontline SMS', + 'option_2' => 'Možnost 2: Použít globální SMS bránu', + 'title' => 'Možnosti nastavení SMS', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value?', + 'numeric' => 'Pole telefon 1 by mělo obsahovat pouze čísla.', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long', + 'numeric' => 'Pole telefon 2 by mělo obsahovat pouze čísla.', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long', + 'numeric' => 'Pole telefon 3 by mělo obsahovat pouze čísla.', + ) , +); diff --git a/application/i18n/cs_CZ/sharing.php b/application/i18n/cs_CZ/sharing.php new file mode 100755 index 0000000000..ae1c078abb --- /dev/null +++ b/application/i18n/cs_CZ/sharing.php @@ -0,0 +1,24 @@ + 'Datum přidání', + 'last_access' => 'Poslední přístup', + 'sharing_color' => array( + 'length' => 'Barva musí být 6 znaků dlouhá.', + 'required' => 'Pole barva je povinné.', + ) , + 'sharing_name' => array( + 'length' => 'The Sharing name does not appear to be valid?', + 'required' => 'Jméno sdílení je povinné.', + ) , + 'sharing_url' => array( + 'exists' => 'The site url already exists', + 'length' => 'The site url does not appear to be valid?', + 'required' => 'The site url is required.', + 'url' => 'The site url field does not appear to contain a valid URL?', + ) , +); diff --git a/application/i18n/cs_CZ/stats.php b/application/i18n/cs_CZ/stats.php new file mode 100755 index 0000000000..fc1723ae49 --- /dev/null +++ b/application/i18n/cs_CZ/stats.php @@ -0,0 +1,42 @@ + 'Schválené', + 'categories' => 'Kategorie', + 'category_impact' => 'Kategorie dopadů', + 'category_impact_description' => 'Tento graf podává přehled o zprávách v čase podle jejich zařazení v dané kategorii. Pohybujte se zleva doprava, abyste mohli porovnat různé kategorie. Přejeďte myší po grafu, abyste získali podrobnější informace.', + 'choose_date_range' => 'Vyberte časové období.', + 'countries' => 'Země', + 'country' => 'Země', + 'country_breakdown' => 'Přehled podle zemí', + 'description' => 'Vítejte, toto je sekce se statistikami. Obecné informace se zde objeví v blízké budoucnosti. Prozatím si tuto část můžete prohlednout (tím, že použijete odkazy na podkategorie).', + 'error' => 'Chyba', + 'glossary' => 'Slovníček', + 'hit_summary' => 'Počet odkliků', + 'legend' => 'Legenda', + 'pageviews' => 'Zobrazení stránky', + 'pageviews_description' => 'Celkový počet stran, které si návštěvníci prohlédli na vašem webu', + 'reports' => 'Zprávy', + 'reports_categories' => 'Kategorie zpráv', + 'reports_statistics' => 'Statistiky zpráv', + 'reports_status' => 'Status zpráv', + 'report_punchcard' => 'Přehled zpráv (punchcard)', + 'report_stats' => 'Statistika zpráv', + 'stats_not_setup' => 'Statistika není nastavena', + 'time_range_1' => '1 měsíc', + 'time_range_2' => '3 měsíce', + 'time_range_3' => '6 měsíců', + 'time_range_all' => 'Vše', + 'unapproved' => 'Neschválené', + 'unique_visitors' => 'Unikátní návštěvy', + 'unique_visitors_description' => 'Počet jednotlivců, kteří navštívili váš web; unikátní návštěvy se určují podle cookies. Pokud nemá internetový prohlížeč návštěvníka nastavené ukládání cookies, unikátní návštěvy se určují podle jednoduché heuristické metody (bere se v potaz IP adresa, rozlišení, prohlížeč, pluginy, operační systém, atd.) ', + 'unverified' => 'Neprověřené', + 'verified' => 'Prověřené', + 'visitor_summary' => 'Shrnutí návštěv', + 'visits' => 'Počet návštěv', + 'visits_description' => 'Návštěva se chápe jako unikátní návštěva na webu po uplynutí 30 minut po posledním prohlížení webu tímto návštěvníkem.', +); diff --git a/application/i18n/cs_CZ/tooltips.php b/application/i18n/cs_CZ/tooltips.php new file mode 100755 index 0000000000..dd10e9d566 --- /dev/null +++ b/application/i18n/cs_CZ/tooltips.php @@ -0,0 +1,47 @@ + array( + 'between_times' => 'This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and NOT necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier.', + 'days_of_the_week' => 'If these actions happen on certain days of the week. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or shift for multiple day selection.', + 'email_body' => 'Tělo e-mailu, který bude odeslán.', + 'email_subject' => 'Předmět e-mailu, který bude odeslán.', + 'specific_days' => 'You can select multiple days here. Dates are determined by your deployment timezone setting. Do not select any dates in order to default to all dates.', + ) , + 'default_value' => 'Separate each value with a comma e.g value1, value2', + 'dropdown_choices' => 'Separate each choice item with a comma e.g. Item 1, Item 2 etc', + 'private_to' => 'Start typing to list members', + 'private_subject' => 'Předmět soukromé zprávy', + 'private_message' => 'Soukromá zpráva', + 'profile_email' => 'Vše e-mailová dresa', + 'profile_name' => 'Your full name', + 'profile_notify' => 'Selecting YES lets you get alerts via email when new reports or comments are posted on your website', + 'profile_password' => 'Your password. Leave this field blank if you wish to keep your current password', + 'profile_public_url' => 'Toto je adresa, kde lze nalézt váš veřejný profil.', + 'profile_username' => 'Your username cannot be changed', + 'settings_access_level' => 'Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level - 100. Public data is displayed at the lowest access level - 0.', + 'settings_api_default_record_limit' => 'Default no. of records to be fetched per API request', + 'settings_api_max_record_limit' => 'Maximum no. of records to be fetched per API request', + 'settings_api_max_requests_per_ip' => 'Maximum no. of API requests per IP Address', + 'settings_banner' => 'The site banner shows up at the top of the front end of your website, if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind, this will replace the site title and tagline from showing up at the top of the page.', + 'settings_blocks_per_row' => 'Number of Block columns that will be displayed on each row', + 'settings_checkins' => 'This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin only themes will become enabled under your addons/themes settings page.', + 'settings_configure_map' => 'Set the map to cover a specific location ', + 'settings_default_category_colors' => 'Set one color code for all the categories on the site', + 'settings_default_location' => 'This is the country the site is being deployed', + 'settings_flsms_download' => 'This is the hub for incoming messages', + 'settings_flsms_synchronize' => 'This synchronizes the messages in the hub with the Ushahidi platform', + 'settings_flsms_text_1' => 'Phone numbers through which the text messages are received', + 'settings_google_analytics' => 'Tracks visitors of your site. Get detailed visitor statistics', + 'settings_map_provider' => 'This defines which map is to be used on the site', + 'settings_server_password' => 'This is the password for the email address that receives reports', + 'settings_server_port' => 'This is required to accept incoming connections from the email address', + 'settings_server_ssl_support' => 'This is required to enhance a secure connection', + 'settings_server_type' => 'This is required to retrieve e-mails from the host server', + 'settings_server_username' => 'This is the email address that receives reports', + 'settings_site_copyright_statement' => 'It is always a good idea to claim copyright on your work. For help in determining the right license for your needs, visit http://creativecommons.org/choose/.', +); diff --git a/application/i18n/cs_CZ/ui_admin.php b/application/i18n/cs_CZ/ui_admin.php new file mode 100755 index 0000000000..b470954578 --- /dev/null +++ b/application/i18n/cs_CZ/ui_admin.php @@ -0,0 +1,226 @@ + 'Přístup zamítnut. Buď jste nezadal správné ověřovací údaje anebo došlo k zamítnutí Vaší žádosti. ', + 'access_denied_others' => 'Přístup zamítnut. Váš požadavek byl systémem pochopen, ale zamítnut kvůli přístupovým omezením (např. časovým).', + 'access_level' => 'Úroveň přístupu', + 'actions' => 'Akce', + 'add_to_category' => 'Přidat do kategorie', + 'added' => 'Přidané', + 'added_edited' => 'Přidané/upravené', + 'addons' => 'doplňky', + 'admin_role' => 'Admin', + 'alerts' => 'Upozornění', + 'alerts_received' => 'Odeslat upozornění', + 'am' => 'dopoledne', + 'anonymous' => 'anonymní', + 'anyone_role' => 'Každý', + 'anywhere' => 'Kdekoli', + 'api_banned' => 'zakázaný', + 'api_logs' => 'API Logs/záznamy', + 'api_settings' => 'Nastavení API', + 'api_unban' => 'UNBAN (nezakázat)', + 'api_unban_all' => 'UNBAN ALL (nezakázat vše)', + 'approved' => 'schválené', + 'approve_auto' => 'schválené automaticky', + 'approve_manual' => 'schválené manuálně', + 'archived' => 'archivované', + 'are_you_sure_you_want_to' => 'Jste si jisti, že to chcete', + 'are_you_sure_you_want_to_delete_this_item' => 'Are you sure you want to delete this item', + 'are_you_sure_you_want_to_delete_this_photo' => 'Are you sure you want to delete this photo', + 'are_you_sure_you_want_to_switch_forms' => 'Are you sure you want to switch forms', + 'author' => 'autor', + 'author_email' => 'emailová adresa autora', + 'back' => 'zpět', + 'banip_action' => 'Ban IP', + 'cancel' => 'zrušit', + 'categories' => 'Kategorie', + 'chart_display_error' => 'Chyba zobrazení (Error displaying chart)', + 'check_message_valid' => 'Ujistěte se, že je vaše zpráva platná', + 'check_number' => 'Ujistěte se, že je zadané číslo platné', + 'check_sms_settings' => 'Zkontrolujte nastavení SMS', + 'cities_loaded' => 'Nahraná města', + 'code' => 'kód', + 'color' => 'Barva', + 'comments' => 'Komentáře', + 'confirmation_code' => 'Potvrzující kód k zasílání novinek:', + 'confirm_msg' => 'Uživatel byl:', + 'country_not_found' => 'Země nebyla nalezena', + 'created_edited' => 'vytvořené/upravené', + 'create_report' => 'Nová zpráva', + 'critical_upgrade' => 'Kritický upgrade', + 'csv' => 'CSV', + 'currently_active' => 'V současné době Aktivní', + 'currently_inactive' => 'V současné době Neaktivní', + 'custom_forms_insufficient_permissions' => 'Nemáte dostatečná oprávnění k úpravám těchto uživatelských polí.', + 'daily' => 'Denně', + 'dashboard' => 'Aktuálně', + 'database' => 'databáze', + 'date_time' => 'Datum a čas', + 'days_of_the_week' => 'Dny v týdnu', + 'deleted' => 'smazáno', + 'delete_action' => 'Smazat', + 'demo' => 'Demo', + 'description' => 'Popis', + 'disabled' => 'Zakázáno', + 'download_reports' => 'Stáhnout zprávy', + 'edited_by' => 'Editoval', + 'edit_action' => 'Editovat', + 'email' => 'Email', + 'error_imap' => 'Není instalovaná knihovna IMAP PHP', + 'error_msg' => 'Chyba', + 'error_post_incident' => 'Chyba, zprávu není možné publikovat', + 'every_six_hours' => 'každých šest hodin', + 'every_twelve_hours' => 'každých dvanáct hodin', + 'experimental' => 'Experimentální', + 'feed' => 'informační kanál', + 'feedback' => 'Zpětná vazba', + 'feeds' => 'Monitoring tisku (rss kanály)', + 'field_default' => 'předem nastavená hodnota (default value)', + 'field_datatype_javascript' => 'Javascript', + 'field_height' => 'Výška (v řádcích)', + 'field_maxlength' => 'Maximální počet písmen', + 'field_name' => 'Název políčka', + 'field_toggle_yes_close' => 'Ano, Zavřeno ve výchozím nastavení', + 'field_toggle_yes_open' => 'Ano, Otevřeno ve výchozím nastavení', + 'file_not_found_upload' => 'Nebyl nalezen nahraný soubor', + 'file_open_error' => 'Není možné otevřít soubor na čtení', + 'form_not_exists' => 'Tento formulář neexistuje! (That Form Does Not Exist!)', + 'forum' => 'Fórum', + 'free_text_field' => 'Místo pro text (Text Area Field - Free Text)', + 'from' => 'z', + 'from_date' => 'od', + 'get_help' => 'Nápověda', + 'header_actions' => 'Akce', + 'header_add_edit' => 'Přidat/upravit', + 'header_email' => 'E-mail', + 'header_manage_users' => 'Administrace uživatelů webu', + 'header_role' => 'Oprávnění', + 'header_user' => 'Uživatel', + 'help' => 'Nápověda', + 'hourly' => 'Každou hodinu', + 'incident_feed' => 'Kanál zpráv pro (incident feed for)', + 'installer_info' => 'Instalační složka stále existuje. Odstraňte instalační složku. Je to potenciální chyba v zabezpečení.', + 'instance' => 'Případ (instance)', + 'instances' => 'Případy (instances)', + 'instance_details' => 'Detaily případu (instance details)', + 'invalid_parameter' => 'Neplatný parametr', + 'ip_address' => 'IP adresa', + 'is_date' => 'Jedná se o políčko pro vyplnění data?', + 'ispublic_visible' => 'Kdo může zobrazit odpovědi', + 'ispublic_submit' => 'Kdo může podat odpovědi', + 'keyword' => 'Klíčové slovo', + 'keywords' => 'Klíčová slova', + 'label_email' => 'Emailová adresa', + 'label_full_name' => 'Jméno a příjmení', + 'label_password' => 'Heslo', + 'label_role' => 'Role', + 'label_username' => 'Login', + 'layers' => 'Vrstvy', + 'login_role' => 'Moderátor', + 'logout' => 'Odhlásit se', + 'logs' => 'Logs (protokoly)', + 'manage' => 'Upravit části webu', + 'manage_roles' => 'Nastavit role a oprávnění', + 'manage_users' => 'Zobrazit uživatele', + 'manage_users_edit' => 'Přidat/upravit uživatele', + 'marked_as_not_spam' => 'Označeno, že se nejedná o spam', + 'marked_as_spam' => 'Označeno jako spam', + 'match_no_documents' => 'jsme nenašli žádnou stránku.', + 'message' => 'Zpráva', + 'messages' => 'Vzkazy', + 'messages_laconica' => 'Vzkazy z Laconica', + 'messages_twitter' => 'Vzkazy z twitteru', + 'message_sent' => 'Zpráva byla odeslána!', + 'mhi' => 'MHI', + 'minutes' => 'schválené automaticky', + 'missing_parameter' => 'Chybí parametr', + 'moderator' => 'Moderátor', + 'modified' => 'pozměněné', + 'modify_timezone' => 'Upravit nastavení časového pásma', + 'move_down_action' => 'posunout dolů', + 'move_up_action' => 'posunout nahoru', + 'my_profile' => 'Můj profil', + 'new_password' => 'Nové heslo', + 'no' => 'Ne', + 'notification' => 'Oznámení', + 'not_case_sensitive' => 'Tato část není citlivá na velikost písmen.', + 'not_found' => 'Nenalezeno', + 'no_error' => 'Žádná chyba', + 'no_result_display_msg' => 'Žádné výsledky k zobrazení!', + 'of' => 'z', + 'openids' => 'OpenID', + 'page' => 'strana', + 'pages' => 'stran', + 'page_not_found' => 'Stránka nenalezena', + 'parameters_used' => 'Použité parametry', + 'password' => 'Heslo', + 'password_reset' => 'Resetovat heslo', + 'password_reset_message_line_1' => 'Dobrý den.', + 'password_reset_message_line_2' => 'Obdrželi jsme požadavek na resetování heslo pro ', + 'password_reset_message_line_3' => 'Pro změnu hesla, prosím, klikněte na odkaz níže anebo ho zkopírujte do nového okna prohlížeče.', + 'password_reset_message_line_4' => 'Heslo bylo resetováno. Vaše údaje jsou následující', + 'password_reset_subject' => 'Resetování hesla Ushahidi', + 'phone' => 'Telefon', + 'please_select' => 'Prosím, vyberte', + 'pm' => 'odpoledne', + 'preview' => 'Náhled', + 'private_message' => 'Zpráva', + 'private_messages' => 'Soukromé zprávy', + 'private_sent' => 'Odeslat soukromé zprávy', + 'private_subject' => 'Předmět', + 'private_to' => 'Komu', + 'public_listing' => 'Veřejný výpis', + 'read' => 'Přečíst/přečteno', + 'reporters' => 'Zpravodajové', + 'reporter_levels' => 'Úrovně zpravodaje', + 'reports' => 'Admin zpráv', + 'required' => 'Vyžadované', + 'reset' => 'Resetovat', + 'results' => 'Výsledky', + 'save_settings' => 'Uložit nastavení', + 'search' => 'Vyhledat', + 'search_reports' => 'Vyhledat hlášení', + 'searching_for' => 'vyhledání', + 'security_info_encryption_key' => 'Šifrovací klíč je stále nastavena na výchozí hodnotu. To je nebezpečné a je třeba ho změnit.', + 'security_info_instructions' => 'Pokyny jsou k dispozici na wiki:', + 'select_field_type' => ' --- Zvolte typ pole --- ', + 'select_item' => 'Zvolte položku', + 'sender' => 'Odesílatel', + 'sent_from_website' => 'Tato zpráva byla poslána z vašeho webu v', + 'settings' => 'Základní nastavení', + 'showing_page' => 'Strana', + 'showing_results' => 'Výsledky vyhledávání', + 'statistics' => 'Statistika webu', + 'stats' => 'Statistika webu', + 'stats_collection_error' => 'Chyba sběru statistiky webu! Buď nefunguje náš stats server nebo je problém ve vašem nastavení Ushahidi. Zkuste znovu později, jestli už je server funkční. Pokud chcete manuálně resetovat statistiky vašeho webu, změňte stat_id (nastavte na "null") a stat_key (nastavte na 0) v tabulce nastavení vaší databáze. Upozornění: přijdete o všechny dosavadní statistiky webu!', + 'stats_collection_error_short' => 'Sběr statistiky byl neúspěšný!', + 'superadmin_role' => 'Superadmin', + 'task_performed' => 'Úkol proveden', + 'text_field' => 'Textové pole', + 'theme_name' => 'Jméno', + 'title' => 'Nastavení uživatelů', + 'to' => 'do', + 'total_records' => 'Celkový počet záznamů', + 'to_date' => 'do', + 'translate_reports' => 'Přeložit zprávy', + 'unapproved' => 'neschválené', + 'unknown' => 'Neznámý', + 'unread' => 'Nepřečtené', + 'update_link' => 'Klikněte zde pro upgrade', + 'upload_reports' => 'Nahrát zprávy (upload)', + 'users' => 'Uživatelé', + 'ushahidi' => 'Ushahidi', + 'version' => 'Verzi', + 'version_available' => 'je možné nahradit zdokonalenou verzí programu (upgrade).', + 'view_private' => 'Soukromé zprávy', + 'view_site' => 'Zobrazit web', + 'welcome' => 'Vítejte, ', + 'wiki' => 'Wiki', + 'yes' => 'Ano', + 'your_search_for' => 'Na váš dotaz', +); diff --git a/application/i18n/cs_CZ/ui_main.php b/application/i18n/cs_CZ/ui_main.php new file mode 100755 index 0000000000..513f14d45c --- /dev/null +++ b/application/i18n/cs_CZ/ui_main.php @@ -0,0 +1,602 @@ + 'O nás', + 'access' => 'Přístup', + 'access_limits' => 'Omezení přístupu', + 'account_name' => 'Název účtu', + 'actions' => 'Opatření', + 'action_confirm' => 'Tuto akci není možné vrátit zpět. Opravdu chcete pokračovat?', + 'activate' => 'Aktivovat', + 'active' => 'Aktivní', + 'add' => 'Přidat', + 'added_by' => 'Přidal', + 'additional_data' => 'Další informace', + 'additional_reports' => 'Další události', + 'add_edit' => 'Přidat/upravit', + 'add_field' => 'Přidat pole', + 'add_language' => 'Přidat jazyk', + 'add_new' => 'Přidat nový', + 'add_new_category' => 'Přidat novou kategorii', + 'add_translation' => 'Přidat překlad', + 'admin' => 'Administrace', + 'alerts' => 'Zasílání novinek', + 'alerts_alert_me' => 'Zaslat upozornění, když se objeví v okolí této oblasti:', + 'alerts_btn_send' => 'Uložit', + 'alerts_email' => ' E-mailová adresa:', + 'alerts_enter_email' => 'vložte emailovou adresu', + 'alerts_enter_mobile' => 'vložte číslo mobilního telefonu spolu s mezinárodní předvolbou', + 'alerts_get' => 'Zasílání novinek', + 'alert_has_been' => 'Upozornění bylo', + 'alerts_mobile_phone' => 'Mobilní telefon:', + 'alerts_place_spot' => 'Zadejte pouze Vaši emailovou adresu, chcete-li dostávat jednou denně zprávy (ve 24:00) o nových událostech na mapě. Anebo vyberte níže konkrétní oblast, která Vás zajímá. Táhlem pod mapou můžete upřesnit i její velikost.', + 'alerts_place_spot2' => 'Nemůžete-li nalézt vaši adresu, označte ji na mapě špendlíkem', + 'alerts_rss' => ' RSS kanály (zkopírujte adresu)', + 'alerts_select_city' => 'Vyberte město', + 'alerts_step1_select_city' => '1) Zasílání novinek z mapy', + 'alerts_step2_send_alerts' => 'Zasílat upozornění na emailovou adresu:', + 'alerts_step3_select_catgories' => 'Vyberte kategorie', + 'alert_confirm_previous' => ' Potvrdit předešlý požadavek na upozornění', + 'alert_saved' => 'Nastavení zasílání upozornění bylo uloženo!', + 'all' => 'Všechny', + 'allowed' => 'Povoleno', + 'all_categories' => 'všechny kategorie', + 'all_time' => 'Kdykoliv', + 'and' => 'a', + 'api' => 'API', + 'approve' => 'Schválit', + 'approved' => 'Schváleno', + 'approved_reports' => 'Schválené události', + 'approve_this_report' => 'Schválit tuto událost', + 'approximate' => 'Přibližný', + 'archive' => 'archiv', + 'archived' => 'archivované', + 'ascending' => 'Vzestupně', + 'at' => 'u', + 'author' => 'autor', + 'auto_checkin' => 'Automatická kontrola', + 'avg_reports_per_day' => 'Průměr zpráv za den', + 'awaiting_approval' => 'Ke schválení', + 'awaiting_verification' => 'K ověření', + 'badge' => 'Značka', + 'badges' => 'Značky', + 'badge_image' => 'Obrázek značky', + 'badge_image_upload_your_own' => 'Nebo si můžete místo toho nahrát svůj vlastní obrázek značky.', + 'badge_pack' => 'Balíček značek', + 'badge_select' => 'Vybrat zančku', + 'blog' => 'Blog', + 'browse_profiles' => 'Prohlížet profily', + 'cancel' => 'Zrušit', + 'categories' => 'Kategorie', + 'category' => 'Kategorie', + 'category_filter' => 'Filtr kategorie', + 'category_has_been' => 'Kategorie byla ', + 'category_name' => 'Název kategorie', + 'change_date_range' => 'Změna časového období', + 'change_password' => 'Změnit heslo', + 'change_picture' => 'Změnit můj obrázek', + 'choose' => 'Vybrat', + 'choose_data_points' => 'Vybrat data na nahrání', + 'choose_date_range' => 'Nebo si zvolte své vlastní časové období', + 'choose_field_type' => 'Vyberte typ pole', + 'cleanurl' => 'Čisté url adresy', + 'clear' => 'Vyčistit', + 'clear_map' => 'Vyčistit mapu', + 'close' => 'Zavřít', + 'clusters' => 'shluky', + 'color' => 'Barva', + 'comment' => 'Komentář', + 'comments' => 'Komentáře', + 'comment_details' => 'Detaily komentáře', + 'configuration_saved' => 'Vaše nastavení bylo uloženo!', + 'configure' => 'Konfigurovat', + 'confirm_email_successful' => 'Úspěšně jste potvrdil svou e-mailovou adresu! Prosím, přihlaš te se.', + 'confirm_email_failed' => 'Potvrzení e-mailem se nezdařilo! Níže můžete požádat o nové e-mailové potvrzení.', + 'contact' => 'Kontakt', + 'contact_code' => 'Přepište kód', + 'contact_email' => 'Váš E-mail', + 'contact_message' => 'Vzkaz', + 'contact_message_has_send' => 'Váš vzkaz byl odeslán!', + 'contact_name' => 'Vaše jméno', + 'contact_phone' => 'Váš telefon', + 'contact_send' => 'Poslat vzkaz', + 'contact_subject' => 'Předmět', + 'copyright' => 'Copyright (c) 2010 Ushahidi.com. Všechna práva vyhrazena.', + 'create' => 'Vytvořit', + 'create_edit' => 'Vytvořit/upravit', + 'create_new' => 'Vytvořit novou', + 'create_new_password' => 'Vytvořit nové heslo', + 'create_report' => 'Nová zpráva', + 'credibility' => 'Důvěryhodnost', + 'current_password' => 'Současné heslo', + 'custom_fields' => 'Vlastní pole', + 'data' => 'Informace', + 'date' => 'Datum', + 'date_format' => '(měsíc/den/rok v číslicích)', + 'date_time' => 'Datum & čas', + 'day' => 'den', + 'deactivate' => 'Deaktivovat', + 'default_location_name' => 'Praha, Česká republika', + 'delete' => 'Smazat', + 'deleted' => 'Smazáno', + 'deletes' => 'Vymazané', + 'delete_disabled' => 'Odstranění zakázáno', + 'delete_last' => 'Smazat poslední', + 'delete_report' => 'Smazat tuto zprávu', + 'delete_selected' => 'Smazat vybrané', + 'delete_spam' => 'Smazaný spam', + 'demo' => 'Demo', + 'description' => 'Popis', + 'descending' => 'Sestupně', + 'detailed_location_example' => 'Například: roh ulic Lipanská a Seifertova, Praha', + 'details' => 'Detaily', + 'direct_report' => 'Přímá zpráva', + 'disabled' => 'Zakázáno', + 'disapprove' => 'Neschválit', + 'download_reports' => 'Stáhnout zprávy', + 'download' => 'Stáhnout', + 'edit' => 'Upravit', + 'edit_form_fields' => 'Upravit pole formuláře', + 'edit_report' => 'Upravit zprávu', + 'email' => 'Email', + 'email_address' => 'Emailová adresa', + 'email_configuration' => 'Mail Server Settings (nastavení mailového serveru)', + 'email_server_host' => 'Mail Server Host (hostitel mailového serveru)', + 'email_server_password' => 'Mail Server Password (heslo)', + 'email_server_port' => 'Mail Server Port', + 'email_server_ssl_support' => 'Mail Server SSL support (SSL podpora)', + 'email_server_type' => 'Mail Server Type (typ mailového serveru)', + 'email_server_username' => 'Mail Server Username (login mailového serveru)', + 'email_settings_comment_0' => 'je třeba, abyste uvedli nastavení odpovídající Vaší emailové schránce', + 'email_settings_comment_00' => 'Pro zasílání událostí emailem, zadejte níže informace o Vaší emailové schránce. Vzhledem k tomu, že emaily budou chodit na Vaši emailovou adresu', + 'email_settings_comment_1' => 'Některé servery vyžadují úplnou emailovou adresu', + 'email_settings_comment_2' => 'Heslo emailového účtu', + 'email_settings_comment_3' => 'Common ports (společné porty): 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Příklady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Příklady: pop3, imap', + 'email_settings_comment_6' => 'Umožnit nebo znemožnit SSL spojení', + 'empty' => '--- PRÁZDNÉ ---', + 'end_point' => 'do', + 'error' => 'Chyba!', + 'example' => 'Příklad', + 'example_country' => 'Česká republika', + 'external_apps' => 'Externí Aplikace', + 'external_video_link' => 'Externí video odkaz', + 'facebook' => 'Facebook', + 'feed' => 'Zdroj', + 'feedback' => 'Provide feedback', + 'feeds' => 'Zdroje', + 'feed_has_been' => 'Zdroj byl', + 'feed_items' => 'Položky zdroje', + 'feed_name' => 'Jméno zdroje', + 'feed_url' => 'URL zdroje', + 'field_unused' => 'Nevyužitá pole', + 'file' => 'Soubor', + 'file_over_max_allowed' => 'Váš soubor má velikost přes maximální povolenou hodnotu.', + 'filters' => 'Filtry', + 'filter_reports' => 'Filtr zpráv', + 'filter_reports_by' => 'Filtrovat zprávy od', + 'filter_reports_contain' => 'Filtrujte události obsahující', + 'find' => 'Najít', + 'find_location' => 'Vyhledejte adresu', + 'first_name' => 'Jméno', + 'force_run_scheduler' => 'Spustit cron', + 'forgot_password' => 'Zapomněl/a jste heslo?', + 'form' => 'Formulář', + 'forms' => 'Formuláře', + 'form_description' => 'Popis formuláře', + 'form_edit' => 'Upravit tento formulář', + 'form_has_been' => 'Tento formulář byl', + 'form_title' => 'Nadpis formuláře', + 'from' => 'Od', + 'full_name' => 'Celé jméno', + 'geolocation_available' => 'Dostupná GeoLocation', + 'geometry_color' => 'Barva', + 'geometry_comments' => 'Komentáře', + 'geometry_label' => 'Štítek', + 'go' => 'Jdi', + 'hashtag' => 'Hashtag', + 'has_been' => 'bylo', + 'help' => 'Občanské iniciativy', + 'hidden' => 'Skrytá', + 'hide' => 'skrýt', + 'hide_this_message' => 'schovat tuto zprávu', + 'home' => 'Úvod', + 'how_to_report' => 'Jak přidat', + 'https' => 'HTTPS', + 'id' => 'ID', + 'image' => 'Obrázek', + 'images' => 'Obrázky', + 'image_icon' => 'Obrázek/ikonka', + 'inactive' => 'Neaktivní', + 'inbox' => 'Doručená pošta', + 'incident' => 'Událost', + 'incidents_nearby' => 'Blízké události', + 'incident_location' => 'Poloha události', + 'include' => 'Zahrnout', + 'include_categories' => 'Zahrnout kategorie', + 'include_custom_fields' => 'Zahrnout vlastní pole', + 'include_description' => 'Zahrnout popis', + 'include_detail' => 'Poskytnout co nejvíce detailů', + 'include_latitude' => 'Zahrnout zeměpisnou šířku', + 'include_location_information' => 'Zahrnout informace o poloze', + 'include_longitude' => 'Zahrnout zeměpisnou délku', + 'include_personal_info' => 'Vložení osobních informací', + 'incoming_media' => 'Z médií', + 'information_evaluation' => 'Vyhodnocení informace', + 'input_location' => 'Zadat přesnou polohu', + 'insufficient_role' => 'Váš účet nemá dostatečná práva, pro plné přihlášení, kontaktujte prosím správce.', + 'in_response_to' => 'V odpovědi na', + 'ip_address' => 'IP adresa', + 'is_this_your_profile' => 'Je to váš profil?', + 'item' => 'položka', + 'items' => 'položky', + 'item_details' => 'detaily položky', + 'item_title' => 'Název položky', + 'key' => 'klíč', + 'keywords' => 'Klíčová slova', + 'kml_kmz_file' => 'soubor KMZ/KML', + 'kml_kmz_upload' => 'Nahrát soubor KMZ/KML', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Jazyk', + 'last' => 'Minulý', + 'last_month' => 'Minulý měsíc', + 'last_name' => 'Příjmení', + 'last_year' => 'Minulý rok', + 'latitude' => 'Zeměpisná šířka', + 'layers' => 'Vrstvy', + 'layers_filter' => 'Další vrstvy', + 'layer_has_been' => 'Vrstva byla', + 'layer_name' => 'Název vrstvy', + 'layer_url' => 'Adresa URL vrstvy', + 'leave_a_comment' => 'Přidejte komentář', + 'less_information' => 'Méně informací', + 'level' => 'Úroveň', + 'level_has_been' => 'Tato úroveň byla', + 'level_name' => 'Název úrovně', + 'limited' => 'Omezené', + 'link' => 'Odkaz', + 'list' => 'Seznam', + 'loading_reports' => 'Nahrávám události', + 'location' => 'Poloha', + 'locations' => 'Polohy', + 'location_example' => 'Modrava, Czech republic', + 'login' => 'Přihlášení', + 'login_account_creation_successful' => 'Účet byl úspěšně vytvořen. Můžete se nyní přihlásit.', + 'login_confirmation_sent' => 'Potvrzení bylo zasláno na váš email.', + 'login_email_doesnt_exist' => 'E-mailová adresa neexistuje. Zkuste jinou adresu, nebo vytvořite účet.', + 'login_select_openid' => 'Klikněte prosím na váš účet', + 'login_with' => 'Přihlašte se', + 'login_userpass' => 'Email a heslo', + 'login_openid' => 'OpenID', + 'login_signup' => 'Registrace', + 'login_signup_click' => 'zaregistrujte se', + 'login_signup_confirmation_subject' => 'Potvrzení registrace', + 'login_signup_admin_approval_subject' => 'Schválení nového uživatele', + 'login_signup_approval_subject' => 'Uživatelský účet byl schválen', + 'login_signup_text' => 'Nemáte-li účet případně nechcete-li použít pro přihlášení některou z výše uvedených služeb', + 'longitude' => 'Zeměpisná délka', + 'map' => 'Mapa', + 'mark_read' => 'Označ jako přečtené', + 'mark_unread' => 'Označ jako nepřečtené', + 'maximum_filesize' => 'Maximální velikost souboru', + 'media' => 'Média', + 'media_filter' => 'Filtr médií', + 'members' => 'Členové', + 'manage_your_account' => 'Nastavení vašeho účtu', + 'message' => 'Zpráva', + 'messages' => 'Zprávy', + 'message_details' => 'Detaily zprávy', + 'message_non_numeric_source' => 'Zpráva z nečíselného zdroje:', + 'mobile' => 'Mobilní', + 'modify' => 'Upravit', + 'modify_date' => 'Upravit datum', + 'month' => 'měsíc', + 'more' => 'Více', + 'more_information' => 'Více informací', + 'must_confirm_email_address' => 'Pro přístup musíte potvrdit svou e-mailovou adresu. Pokud jste ztratili svůj potvrzovací e-mail, můžete požádat níže o nový.', + 'name' => 'Jméno', + 'nearby_report' => 'Nedaleká událost', + 'new' => 'Nový', + 'news' => 'Novinky', + 'news_feeds' => 'Zprávy z médií', + 'news_source' => 'Zdroje', + 'new_category' => 'Nová kategorie', + 'new_password' => 'Nové heslo', + 'new_report' => 'Nová událost', + 'next' => 'Další', + 'no' => 'Ne', + 'no_checkins' => 'Nezobrazovat žádné kontroly', + 'no_data' => 'Žádná data', + 'none' => 'Žádné', + 'notices' => 'Upozornění', + 'not_approved' => 'Neschváleno', + 'not_approved_singular' => 'Neschváleno', + 'not_selected' => '--- Nevybráno ---', + 'not_spam' => 'Nejedná se o spam', + 'not_specified' => 'Neuvedeno', + 'no_reports' => 'Nejsou žádné události', + 'no_results' => 'Nenalezen žádný záznam', + 'off' => 'Vyp.', + 'official_news' => 'Monitoring tisku', + 'on' => 'Zap.', + 'option' => 'Možnost', + 'optional' => 'Volitelný', + 'options' => 'Možnosti', + 'organization' => 'Organizace', + 'organizations' => 'Organizace', + 'organization_description' => 'Popis organizace', + 'organization_email' => 'Email organizace', + 'organization_has_been' => 'Organizace byla', + 'organization_name' => 'Název organizace', + 'organization_phone_1' => 'Telefonní číslo organizace 1', + 'organization_phone_2' => 'Telefonní číslo 2', + 'organization_website' => 'Internetová stránka organizace', + 'original' => 'Původní', + 'original_description' => 'Původní popis', + 'original_title' => 'Původní název', + 'other_ushahidi_instances' => 'Ostatní nasazení', + 'outbox' => 'Odeslaná pošta', + 'outgoing' => 'Odchozí', + 'page' => 'Stránka', + 'pages' => 'Stránky', + 'page_description' => 'Popis stránky', + 'page_has_been' => 'Stránka byla', + 'page_tab_name' => 'Název tabu stránky', + 'page_title' => 'Název stránky', + 'parent_category' => 'Hlavní kategorie', + 'password' => 'Heslo', + 'password_again' => 'Vepište znovu heslo', + 'password_changed_successfully' => 'Heslo bylo úspěšně změněno ! Přihlašte se.', + 'password_forgot' => 'Zapomněli jste heslo?', + 'password_reset_confirm' => 'Vyzvedněte si nové heslo ve Vaší poště.', + 'password_save' => 'Zůstat nalogovaný na tomto počítačí?', + 'past_month' => 'Minulý měsíc', + 'past_year' => 'Minulý rok', + 'pending' => 'Čekající na schválení', + 'per' => 'na', + 'personal_information' => 'Osobní informace Optional.', + 'phone' => 'Telefon', + 'photos' => 'Fotografie', + 'pictures' => 'Obrázky', + 'pictures_and_videos' => 'Obrázky a videa', + 'pinpoint_location' => '* Vyhledejte polohu na mapě zadáním zeměpisné šířky a délky (formát: 38.19,-85.61) anebo klikněte na dané místo přímo na mapě', + 'play' => 'Přehrát', + 'please_note' => 'Všimněte si, prosím', + 'plugins' => 'Pluginy', + 'plugin_url' => 'Webová stránka Pluginů', + 'public_profile' => 'Veřejný profil', + 'public_profile_url' => 'URL veřejného profilu', + 'preview' => 'Náhled', + 'preview_item' => 'Jednotlivý náhled', + 'preview_message' => 'Zpráva o náhledu', + 'previous' => 'Předchozí', + 'private' => 'Soukromý', + 'profile_color' => 'Barva profilu', + 'profile_saved' => 'Váš profil byl uložen', + 'quick_stats' => 'Základní statistiky', + 'rating' => 'Hodnocení', + 'read' => 'Číst', + 'receive' => 'Obdržet', + 'receive_from' => 'Obdržet od', + 'receive_notifications' => 'Obdržet upozornění', + 'recent_reports' => 'Nedávno přidané události', + 'refresh_news_feeds' => 'Načíst znovu zpravodajské kanály', + 'registered_email' => 'Registrovaný Email', + 'remove' => 'Odstranit', + 'reply' => 'Odpovědět', + 'report' => 'Událost', + 'reporter' => 'Autor zprávy', + 'reporters' => 'autoři zprávy', + 'reporter_date' => 'Datum', + 'reporter_email' => 'Email autora zprávy', + 'reporter_first_name' => 'Jméno autora zprávy', + 'reporter_has_been' => 'Zpravodaj byl', + 'reporter_ip' => 'IP adresa autora zprávy', + 'reporter_last_name' => 'Příjmení autora zprávy', + 'reporter_level' => 'Úroveň zpravodaje', + 'reporter_levels' => 'Úrovně zpravodaje', + 'reporter_phone' => 'Telefonní číslo autora zprávy', + 'reports' => 'Události', + 'reports_btn_browse' => 'Prohlížet', + 'reports_btn_submit' => 'Přidat', + 'reports_by_this_user' => 'Události od tohoto uživatele', + 'reports_categories' => 'Kategorie', + 'reports_count' => '%d Zprávy', + 'reports_date' => 'Datum', + 'reports_description' => 'Popis', + 'reports_download_csv' => 'Události se nahrají ve formátu CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Možnosti', + 'reports_find_location' => 'Najít polohu', + 'reports_first' => 'Jméno', + 'reports_last' => 'Příjmení', + 'reports_location_name' => 'Upřesnění místa (pokud neexistuje přesná adresa)', + 'reports_news' => 'Odkaz na zdroje', + 'reports_optional' => 'Volitelné informace', + 'reports_photos' => 'Nahrát fotky/obrázky', + 'reports_return' => 'Zpět na přehled událostí', + 'reports_select_city' => 'Vybrat město', + 'reports_submitted' => 'Vaše zpráva byla odeslána. Děkujeme.', + 'reports_submit_new' => 'Přidat událost', + 'reports_time' => 'Čas', + 'reports_timeline' => 'Časová přímka', + 'reports_title' => 'Název', + 'reports_video' => 'Odkaz na video', + 'report_an_incident' => 'Přidat událost', + 'report_details' => 'Podrobnosti o zprávě', + 'report_option_1' => 'Zasláním zprávy na ', + 'report_option_2' => 'Mailem na ', + 'report_option_3' => 'Odesláním tweetu s hashtagem/y', + 'report_option_4' => 'Vyplněním formuláře ', + 'report_option_external_apps' => 'Pomocí aplikace', + 'report_saved' => 'Vaše zpráva se uložila', + 'report_title' => 'Název', + 'request_information' => 'Žádost o více informací', + 'request_location' => 'Vyžádat si polohu', + 'required' => 'Požadováno', + 'requirements' => 'Požadavky', + 'resend_confirm_email' => 'Znovu poslat potvrzovací e-mail', + 'reset' => 'Obnovit', + 'reset_all_filters' => 'Smazat všechny filtry', + 'reset_password' => 'Resetovat heslo', + 'retrieve_city_names' => 'Získat názvy měst pro vybranou zemi', + 'riverid_information' => 'Účty sparavuje %s služba.', + 'role' => 'Role', + 'rss' => 'RSS', + 'save' => 'Uložit', + 'saved' => 'Uloženo', + 'save_add_new' => 'Uložit & Přidat nový', + 'save_close' => 'Uložit & zavřít', + 'save_report' => 'Uložit událost', + 'schedule' => 'Rozvrh', + 'scheduler' => 'Tvůrce rozvrhu', + 'scheduler_day' => 'Den', + 'scheduler_hour' => 'Hodina', + 'scheduler_log' => 'Záznam tvůrce rozvrhu', + 'scheduler_minute' => 'Minuta', + 'scheduler_weekday' => 'Den v týdnu', + 'search' => 'Hledat', + 'search_results' => 'Výsledky vyhledávání', + 'security_code' => 'Bezpečnostní kód', + 'select_all' => 'Vybrat vše', + 'select_field_type' => 'Vybrat druh pole', + 'select_form_type' => 'Vybrat druh formuláře', + 'select_in_map' => 'Vybrat na mapě', + 'select_multiple' => 'Vybrat tolik, kolik je třeba', + 'select_one' => 'Prosím, zkontrolujte si, že jste zkontrolovali položku', + 'select_theme' => 'Vybrat téma', + 'send' => 'Zaslat', + 'send_confirmation' => 'Odeslat Potvrzení', + 'sending_to' => 'Zasílané komu', + 'sent' => 'Zasláno', + 'sent_by' => 'Zasláno', + 'server_address' => 'Adresa serveru', + 'server_type' => 'Typ serveru', + 'service' => 'Služba', + 'service_username' => 'Uživatelské jméno služby', + 'service_user_id' => 'Uživatelské ID služby', + 'share' => 'Sdílet', + 'shared_data' => 'Sdílená data', + 'sharing' => 'Sdílení', + 'shorter_map' => 'Kratší mapa', + 'show' => 'Ukázat', + 'show_all' => 'Ukázat vše', + 'show_messages' => 'Ukázat zprávy', + 'site' => 'Webová stránka', + 'site_email_address' => 'kontakt na administrátora', + 'site_url' => 'URL internetové stránky', + 'smaller_map' => 'Menší mapa', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Je nám líto, nemáte žádné značky.', + 'source' => 'Zdroj', + 'source_name' => 'Název zdroje', + 'sort' => 'Seřadit', + 'sort_by' => 'Seřadit podle', + 'source_url' => 'Zdrojové URL', + 'spam' => 'Spam', + 'ssl_support' => 'Podpora SSL?', + 'start_point' => 'Od', + 'step' => 'Krok', + 'submit' => 'Přidat událost', + 'submit_sms' => 'Odeslat pomocí SMS', + 'submit_sms1' => 'Odeslat SMS na', + 'submit_sms2' => 'na telefonu', + 'success' => 'Úspěch!', + 'successfuly_imported' => 'Import proběhl úspěšně', + 'surname' => 'Příjmení', + 'survey' => 'Prozkoumat', + 'system' => 'Systém', + 'taller_map' => 'Vyšší Mapa', + 'tcp_port' => 'TCP Port', + 'themes' => 'Témata', + 'theme_default' => 'Předem nastavené Ushahidi téma', + 'theme_settings' => 'Nastavení tématu', + 'this' => 'Tento', + 'this_day' => 'dnes', + 'this_month' => 'Tento měsíc', + 'this_week' => 'Tento týden', + 'this_year' => 'Tento rok', + 'this_is_your_profile' => 'Toto je váš profil.', + 'time' => 'čas', + 'title' => 'NÁZEV ', + 'to' => 'do', + 'today' => 'Dnes', + 'today_at' => 'Dnes v', + 'token' => 'Token', + 'total_reports' => 'Celkem událostí', + 'translated' => 'Přeloženo', + 'translated_description' => 'Přeložený popis', + 'translated_title' => 'Přeložený název', + 'translate_to' => 'Přeložit do', + 'translation' => 'Překlad', + 'translation_saved' => 'Překlad byl uložen', + 'trusted' => 'Důvěryhodné', + 'type' => 'Typ', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Nelze odeslat e-mail.', + 'uncategorized_reports' => 'Nezařazené Hlášení', + 'unread' => 'nepřečteno', + 'unverified' => 'Neověřeno', + 'update_feeds' => 'Aktualizovat zpravodajské kanály', + 'upload' => 'Nahrát', + 'upload_docs_1' => 'Průvodce nahráním XML', + 'upload_docs_2' => 'Průvodce nahráním CSV', + 'upload_file' => 'Soubor na nahrání', + 'upload_reports' => 'Nahrát zprávy', + 'upload_reports_detail_1' => 'Pomocí níže umístěného formuláře můžete nahrát zprávy (into the Ushahidi engine)', + 'upload_reports_detail_2' => 'Hlášení musí být nahráno buď v CSV, nebo XML formátu.', + 'upload_reports_detail_3' => 'Pokud již ID incidentu v databázi existuje, bude záznam v CSV / XML souboru ignorován.', + 'upload_reports_detail_4' => 'Musí obsahovat alespoň název a datum incidentu.', + 'upload_reports_detail_4b' => 'Pokud nejsou zadány sloupce pro zeměpisnou šířku a délku, lze umístit geokódování pomocí Google Geocoder.', + 'upload_reports_detail_4c' => 'Pokud importujete další informace, tj. osobní údaje a/nebo vlastní pole formuláře', + 'upload_reports_detail_4d' => 'Nejméně jedeno z osobních informačních polí (jméno, příjmení, e-mail) položky MUSÍ existovat. Prázdné záznamy nebudou importovány', + 'upload_reports_detail_4f' => 'Zaškrtávacího políčka jsou odděleny čárkou, např. pokud si vyberete volby z ovoce - jablka, manga a hrozny, měl by váš záznam být "jablka, manga, hrozny"', + 'upload_reports_detail_4g' => 'Hodnoty polí Datum jsou v následujícím formátu: mm/dd/rrrr, např. 3. Října 2012 = 10.03.2012', + 'upload_reports_detail_5' => 'Ukázka hlášení přes CVS', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Nahrání proběhlo úspěšně', + 'upload_video' => 'Nahrát Video', + 'url' => 'URL', + 'user' => 'Uživatel', + 'username' => 'Přihlašovací jméno', + 'ushahidi_admin' => 'Ushahidi Správce', + 'verification' => 'Ověření', + 'verified' => 'Ověřeno', + 'verified_reports' => 'Ověřené události', + 'verify' => 'Ověřit', + 'verify_this_report' => 'Ověřit tuto událost', + 'version' => 'Verze', + 'via' => 'přes', + 'video' => 'Video', + 'view' => 'Zobrazit', + 'views' => 'Zobrazení', + 'view_all' => 'Zobrazit vše', + 'view_all_feeds' => 'Zobrazit všechny kanály', + 'view_all_reports' => 'Zobrazit všechny události', + 'view_items' => 'Zobrazit položky', + 'view_more' => 'Více', + 'view_public_profile' => 'Zobrazit veřejný profil', + 'view_report' => 'Zobrazit událost', + 'view_reports' => 'Zobrazit události', + 'view_video' => 'Zobrazit video', + 'visible' => 'Viditelný', + 'waiting_approval' => 'Čeká na schválení', + 'waiting_verification' => 'Čeká na ověření', + 'wider_map' => 'Širší mapa', + 'web_form' => 'Webový formulář', + 'web' => 'Web', + 'weight' => 'Význam', + 'yes' => 'Ano', + 'yesterday' => 'Včera', + 'your_dashboard' => 'Váš panel', + 'your_file' => 'Váš profil', + 'zoom_in' => 'přiblížit', + 'zoom_out' => 'oddálit', +); diff --git a/application/i18n/cs_CZ/upgrade.php b/application/i18n/cs_CZ/upgrade.php new file mode 100755 index 0000000000..47ad15ab2d --- /dev/null +++ b/application/i18n/cs_CZ/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Invalid input data. It can either be 0 for No and 1 for Yes.', + ) , + 'upgrade_automatic' => 'Automatická aktualizace', + 'upgrade_available' => 'Dostupné aktualizace', + 'upgrade_continue_btn_text' => 'Pokračovat', + 'upgrade_db_btn_text' => 'Aktualizovat', + 'upgrade_db_text_1' => 'Chystáte se aktualizovat databázi z verze', + 'upgrade_db_text_2' => 'na nejnovější verzi', + 'upgrade_db_text_3' => 'Klikněte na tlačítko Aktualizovat a počkejte až se aktualizace provede.', + 'upgrade_db_text_4' => 'Přejete-li si zálohovat databázi, zaškrtněte příslušné políčko.', + 'upgrade_db_text_5' => 'Zálohovat databázi před aktualizací? (Silně doporučujeme!)', + 'upgrade_db_title' => 'Databáze aktualizována', + 'upgrade_db_info' => 'Ushahidi bylo aktualizováno! Než budete pokračovat, budete muset zaktualizovat databázi na nejnovější verzi (%s).', + 'upgrade_db_up_to_date' => 'Vaše verze databáze aktuální.', + 'upgrade_failed' => 'Aktualizace selhala', + 'upgrade_manual' => 'Manuální aktualizace', + 'upgrade_status' => 'Průběh aktualizace', + 'upgrade_text_1' => 'Následující instrukce popisují, jak manuálně aktualizovat Váš systém Ushahidi', + 'upgrade_text_2' => 'en_US: Krok 1: Stáhněte si poslední sestavení Ushahidi na stránkách http://download.ushahidi.com', + 'upgrade_text_3' => 'Krok 2: Vyberte si mód, v jakém se připojíte k Vašemu webovému serveru (telnet, ftp, ssh) a nahraďte obsah složek soubory z nejnovějšího sestavení. Všechny KROMĚ:', + 'upgrade_text_4' => 'Krok 4: Klikněte na tlačítko "Pokračovat" pro aktualizaci nezbytných tabulek.', + 'upgrade_tables' => ' Krok 3: Podívejte se dovnitř sql složky. Manuall run the upgrade-.sql soubory od aktuální verze db vaší instalace, až po finální aktualizační SQL soubor.', + 'upgrade_text_5' => 'Pro automatickou aktualizaci klikněte na tlačítko níže', + 'upgrade_text_6' => 'Pro automatickou aktualizaci, klikněte na níže uvedené tlačítko.', + 'upgrade_title_text' => 'V současné době používáte Ushahidi v%1$s na databázi verze %2$d běžící na %3$s', + 'upgrading' => 'Aktualizuji', + 'upgrade_ftp_text' => 'Chcete-li pokračovat v jednoduché aktualizaci, jsou potřebné následující informace pro FTP server, kde je váš web umístěn.', + 'upgrade_ftp_hostname' => 'FTP jméno hsotitele:', + 'upgrade_ftp_password' => 'FTP heslo:', + 'upgrade_ftp_username' => 'FTP uživatelské jméno:', + 'upgrade_status_info' => 'Máte nejnovější verzi Ushahidi.', + 'upgrade_status_info_2' => 'Nemusíte aktualizovat.', + 'upgrade_db_version' => 'Verze databáze: %d', + 'upgrade_warning_software_version' => 'Upozornění: Verze softwaru ve version.php a v databázi se neshodují.', + 'upgrade_warning_db_version' => 'Upozornění: Verze databáze ve version.php a databáze se neshodují.', + 'upgrade_database' => 'Databáze:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Stahování nejnovější verze Ushahidi ...', + 'log_file' => 'Soubor Logu', + 'successfully_downloaded' => 'Úspěšně Staženo. Rozbalování ...', + 'failed_downloading' => 'Stahování se nezdařilo.', + 'successfully_unpacked' => 'Úspěšně Rozbaleno. Kopírování souborů ...', + 'failed_unpacking' => 'Rozbalování se nezdařilo.', + 'successfully_copied' => 'Úspěšně zkopírováno. Aktualizace databáze ...', + 'failed_copying' => 'Kopírování souborů se nezdařilo.', + 'backup_success' => 'Úspěšná záloha a aktualizace databáze.', + 'backup_failed' => 'Záloha databáze se nezdařila.', + 'dbupgrade_success' => 'Úspěšní aktualizace databáze.', + 'deleting_files' => 'Mazání stažených souborů ...', + 'upgrade_success' => 'AKTUALIZACE ÚSPĚŠNÁ. Zobrazit Soubor Logu', +); diff --git a/application/i18n/cy/alerts.php b/application/i18n/cy/alerts.php new file mode 100644 index 0000000000..2af43689ca --- /dev/null +++ b/application/i18n/cy/alerts.php @@ -0,0 +1,7 @@ + array( + 'abbv' => 'Gwe', + 'full' => 'Gwener', + ) , + 'monday' => array( + 'abbv' => 'Llun', + 'full' => 'Llun', + ) , + 'saturday' => array( + 'abbv' => 'Sad', + 'full' => 'Sadwrn', + ) , + 'sunday' => array( + 'abbv' => 'Sul', + 'full' => 'Sul', + ) , + 'thursday' => array( + 'abbv' => 'Iau', + 'full' => 'Iau', + ) , + 'tuesday' => array( + 'abbv' => 'Maw', + 'full' => 'Mawrth', + ) , + 'january' => array( + 'abbv' => 'Ion', + 'full' => 'Ionawr', + ) , + 'february' => array( + 'abbv' => 'Chw', + 'full' => 'Chwefror', + ) , + 'march' => array( + 'abbv' => 'Maw', + 'full' => 'Mawrth', + ) , + 'april' => array( + 'abbv' => 'Ebr', + 'full' => 'Ebrill', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Mai', + ) , + 'june' => array( + 'abbv' => 'Meh', + 'full' => 'Mehefin', + ) , + 'july' => array( + 'abbv' => 'Gor', + 'full' => 'Gorffennaf', + ) , + 'august' => array( + 'abbv' => 'Awst', + 'full' => 'Awst', + ) , + 'september' => array( + 'abbv' => 'Medi', + 'full' => 'Medi', + ) , + 'october' => array( + 'abbv' => 'Hyd', + 'full' => 'Hydref', + ) , + 'november' => array( + 'abbv' => 'Tach', + 'full' => 'Tachwedd', + ) , + 'december' => array( + 'abbv' => 'Rhag', + 'full' => 'Rhagfyr', + ) , +); diff --git a/application/i18n/cy_GB/feeds.php b/application/i18n/cy_GB/feeds.php new file mode 100644 index 0000000000..97a73f3a48 --- /dev/null +++ b/application/i18n/cy_GB/feeds.php @@ -0,0 +1,7 @@ + 'Am y wefan ', + 'access' => 'Mynediad', + 'access_limits' => 'Terfynau Mynediad', + 'account_name' => 'Enw Cyfrif', + 'actions' => 'Gweithredoedd', + 'action_confirm' => 'Nid yw’n bosib dadwneud y weithred hon. Ydych chi’n siwr eich bod am barhau?', + 'activate' => 'Gweithredu', + 'active' => 'Gweithredol', + 'add' => 'Ychwanegu', + 'added_by' => 'Ychwanegwyd Gan', + 'additional_data' => 'Data Ychwanegol', + 'additional_reports' => 'Adroddiadau Ychwanegol', + 'add_edit' => 'Ychwanegu/Golygu', + 'add_field' => 'Ychwanegu Maes', + 'add_language' => 'Ychwanegu Iaith', + 'add_new' => 'Ychwanegu', + 'add_new_category' => 'Ychwanegu Categori Newydd', + 'add_translation' => 'Ychwanegu Cyfieithiad Newydd', + 'admin' => 'Gweinyddu', + 'alerts' => 'Derbyn diweddariadau', + 'alerts_alert_me' => 'Anfonwch ddiweddariad i mi os caiff adroddiad ei gofnodi yn, neu yn agos at:', + 'alerts_btn_send' => 'Cadw fy niweddariad', + 'alerts_email' => 'Cyfeiriad E-bost:', + 'alerts_enter_email' => 'gosodwch eich cyfeiriad E-bost', + 'alerts_enter_mobile' => 'gosodwch eich rhif ffôn gyda chôd y wlad', + 'alerts_get' => 'Derbyn Diweddariadau', + 'alerts_mobile_phone' => 'Ffôn Symudol:', + 'alerts_place_spot' => 'Neu, gosodwch ddot ar y map isod, a byddwn yn anfon neges atoch chi pan fyddwn yn derbyn adroddiad sydd o fewn 20 cilomedr i chi.', + 'alerts_place_spot2' => 'Os na allwch ddod o hyd i’ch lleoliad, yna cliciwch ar y map i nodi\'r lleoliad cywir.', + 'alerts_rss' => 'Ffrwd RSS (copiwch yr url isod)', + 'alerts_select_city' => 'Dewiswch ddinas', + 'alerts_step1_select_city' => 'Cam 1: Dewiswch eich dinas neu leoliad:', + 'alerts_step2_send_alerts' => 'Cam 2: Anfon neges rybuddio i’m:', + 'alerts_step3_select_catgories' => 'Cam 3 (Optional): Dewis Categoriau', + 'alert_confirm_previous' => 'Cadarnhau Cais Blaenorol am Neges Ddiweddaru', + 'alert_saved' => 'Cafodd Eich Cais ei Gadw!', + 'all' => 'Pob Un', + 'allowed' => 'Wedi’u Caniatau', + 'all_categories' => 'Pob Categori', + 'all_time' => 'Cyfnod Cyfan', + 'and' => 'ac', + 'approve' => 'Derbyn', + 'approved' => 'Derbyniwyd', + 'approved_reports' => 'Adroddiadau a Dderbyniwyd', + 'approve_this_report' => 'Derbyn yr Adroddiad hwn', + 'approximate' => 'Tua', + 'archive' => 'Archif', + 'archived' => 'Archifwyd', + 'at' => 'am', + 'author' => 'Awdur', + 'auto_checkin' => 'Nodi Lle Awtomatig', + 'avg_reports_per_day' => 'Cyfartaledd Adroddiadau y Dydd', + 'awaiting_approval' => 'Aros i gael ei Dderbyn', + 'awaiting_verification' => 'Aros i gael ei Wirio', + 'badge' => 'Bathodyn', + 'badges' => 'Bathodynnau', + 'badge_image' => 'Delwedd Bathodyn', + 'badge_image_upload_your_own' => 'Neu gallwch lwytho eich delwedd bathodyn eich hun i fyny yn lle', + 'badge_pack' => 'Pecyn Bathodynnau', + 'badge_select' => 'Dewiswch Fathodyn', + 'browse_profiles' => 'Pori Proffiliau', + 'cancel' => 'Canslo', + 'categories' => 'Categorïau', + 'category' => 'Categori', + 'category_filter' => 'Hidlydd Categorïau', + 'category_has_been' => 'Cafodd y categori hwn ei ', + 'category_name' => 'Enw Categori', + 'change_date_range' => 'Newid Ystod Dyddiadau', + 'change_password' => 'Newid Cyfrinair', + 'change_picture' => 'Newid Fy Llun', + 'choose' => 'Dewiswch', + 'choose_data_points' => 'Dewiswch bwyntiau data i’w lawrlwytho', + 'choose_date_range' => 'Neu dewiswch eich ystod dyddiadau eich hunan', + 'choose_field_type' => 'Dewiswch y math o faes', + 'cleanurl' => 'URLau Glân', + 'clear' => 'Clirio', + 'clear_map' => 'Clirio Map', + 'close' => 'Cau', + 'clusters' => 'clystyrau', + 'color' => 'Lliw', + 'comment' => 'Rhowch Sylw', + 'comments' => 'Sylwadau', + 'comment_details' => 'Manylion y Sylw', + 'configuration_saved' => 'Cadwyd Eich Gosodiadau!', + 'configure' => 'Addasu', + 'confirm_email_successful' => 'Rydych chi wedi llwyddo i gadarnhau eich cyfeiriad e-bost! Mewngofnodwch isod.', + 'contact' => 'Cysylltwch â Ni', + 'contact_code' => 'Cod Diogelwch', + 'contact_email' => 'Eich E-bost', + 'contact_message' => 'Neges', + 'contact_message_has_send' => 'Anfonwyd Eich Neges!', + 'contact_name' => 'Eich Enw', + 'contact_phone' => 'Eich Rhif Ffôn', + 'contact_send' => 'Anfon Neges', + 'contact_subject' => 'Pwnc y Neges', + 'copyright' => 'Hawlfraint ©', + 'create' => 'Creu', + 'create_edit' => 'Creu/Golygu', + 'create_new' => 'Creu un Newydd', + 'create_new_password' => 'Creu Cyfrinair Newydd', + 'create_report' => 'Creu Adroddiad', + 'credibility' => 'Credadwyedd', + 'current_password' => 'Cyfrinair Cyfredol', + 'custom_fields' => 'Meysydd Cyfaddas', + 'data' => 'Gwybodaeth', + 'date' => 'Dyddiad', + 'date_format' => '(mm/dd/bbbb)', + 'date_time' => 'Dyddiad ac Amser', + 'day' => 'dydd', + 'deactivate' => 'Dadweithredu', + 'default_location_name' => 'Aberystwyth, Cymru', + 'delete' => 'Dileu', + 'deleted' => 'Dilëwyd', + 'deletes' => 'Dileadau', + 'delete_disabled' => 'Analluogi Dileu', + 'delete_last' => 'Dileu y Diwethaf', + 'delete_report' => 'Dileu yr Adroddiad Hwn', + 'delete_selected' => 'Dileu\'r rhai a Ddewiswyd ', + 'delete_spam' => 'Dileu Sbam', + 'description' => 'Disgrifiad', + 'detailed_location_example' => 'Enghraifft: Gyferbyn â\'r stadiwm, Stryd Westgate, Caerdydd', + 'details' => 'Manylion', + 'direct_report' => 'Adroddiad Uniongyrchol', + 'disabled' => 'Analluogwyd', + 'disapprove' => 'Dad-dderbyn', + 'download_reports' => 'Lawrlwytho Adroddiadau', + 'edit' => 'Golygu', + 'edit_form_fields' => 'Golygu Maesydd y Ffurflen', + 'edit_report' => 'Golygu Adroddiad', + 'email' => 'E-bost', + 'email_address' => 'Cyfeiriad E-bost', + 'email_configuration' => 'Gosodiadau Gweinydd E-bost', + 'email_server_host' => 'Gwesteiwr y Gweinydd E-bost', + 'email_server_password' => 'Cyfrinair y Gweinydd E-bost', + 'email_server_port' => 'Porth y Gweinydd E-bost', + 'email_server_ssl_support' => 'Cefnogaeth SSL y Gweinydd E-bost', + 'email_server_type' => 'Math o Weinydd E-bost', + 'email_server_username' => 'Enw Defnyddiwr y Gweinydd E-bost', + 'email_settings_comment_0' => 'felly rhaid i’ch gosodiadau gael eu cysylltu gyda’r cyfeiriad E-bost hwn', + 'email_settings_comment_00' => 'Er mwyn derbyn adroddiadau drwy E-bost, rhowch fanylion eich cyfrif E-bost isod. Noder y byddwch yn derbyn E-bost yn eich', + 'email_settings_comment_1' => 'Mae angen cyfeiriad E-bost cyflawn ar rai gweinyddion', + 'email_settings_comment_2' => 'Cyfrinair cyfrif E-bost', + 'email_settings_comment_3' => 'Pyrth cyffredin: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Engh: mail.dywefan.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Enghreifftiau: pop3, imap', + 'email_settings_comment_6' => 'Galluogi neu analluogi cysylltiadau SSL', + 'empty' => '---GWAG---', + 'end_point' => 'at', + 'error' => 'Gwall!', + 'example' => 'Esiampl', + 'example_country' => 'Cymru', + 'external_apps' => 'Apiau Allanol', + 'external_video_link' => 'Dolen i Fideo Allanol', + 'feed' => 'Ffrwd', + 'feedback' => 'Anfon Adborth', + 'feeds' => 'Ffrydiau', + 'feed_has_been' => 'Mae’r ffrwd wedi cael ei', + 'feed_items' => 'Eitemau’r Ffrwd', + 'feed_name' => 'Enw’r Ffrwd', + 'feed_url' => 'URL y Ffrwd', + 'field_unused' => 'Maes gwag', + 'file' => 'Ffeil', + 'file_over_max_allowed' => 'Mae eich ffeil yn rhy fawr. Mae’n fwy na’r maint mwyaf posibl', + 'filters' => 'Hidlau', + 'filter_reports' => 'Hidlo adroddiadau', + 'filter_reports_by' => 'Hidlo adroddiadau trwy', + 'filter_reports_contain' => 'Hidlo adroddiadau gyda', + 'find' => 'Chwilio', + 'find_location' => 'Chwilio am Leoliad', + 'first_name' => 'Enw Cyntaf', + 'force_run_scheduler' => 'Gorfodi i Redeg y Amserlennydd', + 'forgot_password' => 'Wedi anghofio dy gyfrinair?', + 'form' => 'Ffurflen', + 'forms' => 'Ffurflenni', + 'form_description' => 'Disgrifiad y Ffurflen', + 'form_edit' => 'Golygwch y Ffurflen', + 'form_has_been' => 'Mae eich ffurflen wedi cael ei', + 'form_title' => 'Teitl y Ffurflen', + 'from' => 'Oddi Wrth', + 'full_name' => 'Enw Llawn', + 'geolocation_available' => 'GeoLeoliad Ar Gael', + 'geometry_color' => 'Lliw', + 'geometry_comments' => 'Sylwadau', + 'geometry_strokewidth' => 'Lled Strôc', + 'go' => 'Mynd', + 'hashtag' => 'Tag Hash', + 'has_been' => 'Wedi Cael ei', + 'help' => 'Sut i Helpu', + 'hidden' => 'Cudd', + 'hide' => 'Cuddio', + 'hide_this_message' => 'cuddio’r neges hon', + 'home' => 'Adref', + 'how_to_report' => 'Sut i Anfon Adroddiad', + 'identify_you' => 'Defnyddir fel y gall defnyddwyr eraill y wefan yn eich adnabod.', + 'image' => 'Delwedd', + 'images' => 'Delweddau', + 'image_icon' => 'Delwedd/Eicon', + 'inactive' => 'Heb ei Alluogi', + 'inbox' => 'Mewnflwch', + 'incident' => 'Digwyddiad', + 'incidents_nearby' => 'Digwyddiadau Cyfagos', + 'incident_location' => 'Lleoliad Digwyddiad', + 'include' => 'Cynnwys', + 'include_categories' => 'Cynnwys Categorïau', + 'include_custom_fields' => 'Cynnwys Meysydd Cyfaddas', + 'include_description' => 'Cynnwys Disgrifiad', + 'include_detail' => 'Rhowch gymaint o fanylion â sy’n bosibl', + 'include_latitude' => 'Cynnwys Lledred', + 'include_location_information' => 'Cynnwys Gwybodaeth am Leoliad', + 'include_longitude' => 'Cynnwys Hydred', + 'incoming_media' => 'Cyfryngau Sy’n Dod Mewn', + 'information_evaluation' => 'Asesu Gwybodaeth', + 'input_location' => 'Rhowch eich lleoliad yn fanwl gywir', + 'insufficient_role' => 'Nid oes gan eich cyfrif yr hawliau cywir i’ch mewngofnodi. Cysylltwch â’r gweinyddwr.', + 'in_response_to' => 'Mewn ymateb i', + 'ip_address' => 'Cyfeiriad IP', + 'is_this_your_profile' => 'Ai hwn yw eich proffil?', + 'item' => 'eitem', + 'items' => 'eitemau', + 'item_details' => 'manylion eitem', + 'item_title' => 'Teitl Eitem', + 'key' => 'Allwedd', + 'kml_kmz_file' => 'Ffeil KMZ/KML', + 'kml_kmz_upload' => 'Llwytho Ffeil KMZ/KML', + 'language' => 'Iaith', + 'last' => 'Blaenorol', + 'last_month' => 'Mis Blaenorol', + 'last_name' => 'Cyfenw', + 'last_year' => 'Blwyddyn Flaenorol', + 'latitude' => 'Lledred', + 'layers' => 'Haenau', + 'layers_filter' => 'Haenau arall', + 'layer_has_been' => 'Mae’r Haen Wedi Cael Ei', + 'layer_name' => 'Enw haen', + 'layer_url' => 'URL Haen', + 'leave_a_comment' => 'Gwnewch Sylw', + 'less_information' => 'Llai o Wybodaeth', + 'level' => 'Lefel', + 'level_has_been' => 'Mae’r lefel hwn wedi cael ei', + 'level_name' => 'Enw Lefel', + 'limited' => 'Cyfyngedig', + 'link' => 'Dolen', + 'list' => 'Rhestr', + 'loading_reports' => 'Wrthi’n Llwytho Adroddiadau', + 'location' => 'Lleoliad', + 'locations' => 'Lleoliadau', + 'location_example' => 'Tref, Sir a/neu Wlad', + 'login' => 'Mewngofnodi', + 'login_account_creation_successful' => 'Crëwyd y Cyfrif yn llwyddiannus. Fe allwch chi fewngofnodi nawr.', + 'login_confirmation_sent' => 'Mae neges gadarnhau wedi ei danfon i’ch cyfeiriad E-bost.', + 'login_email_doesnt_exist' => 'Nid yw’r cyfeiriad E-bost hwnnw’n bodoli. Darparwch gyfeiriad arall neu crëwch gyfrif', + 'login_select_openid' => 'Cliciwch ar ddarparwr eich cyfrif', + 'login_with' => 'Mewngofnodi gyda', + 'login_userpass' => 'E-bost a Chyfrinair', + 'login_signup' => 'Cofrestru', + 'login_signup_click' => 'Creu Cyfrif', + 'login_signup_confirmation_subject' => 'Cadarnhad Cofrestru', + 'login_signup_text' => 'Crëwch gyfrif nawr i fanteisio ar fwy o nodweddion y wefan hon.', + 'longitude' => 'Hydred', + 'mark_read' => 'Nodi fel Darllenwyd', + 'mark_unread' => 'Nodi fel heb ei ddarllen', + 'maximum_filesize' => 'Uchafswm maint ffeil', + 'media' => 'Cyfryngau', + 'media_filter' => 'Hidlydd Cyfryngau', + 'members' => 'Aelodau', + 'manage_your_account' => 'Rheoli Eich Cyfrif', + 'message' => 'Neges', + 'messages' => 'Negeseuon', + 'message_details' => 'Manylion y Neges', + 'message_non_numeric_source' => 'Neges o ffynhonnell an-rhifol:', + 'mobile' => 'Symudol', + 'modify' => 'Newid', + 'modify_date' => 'Newid Dyddiad', + 'month' => 'mis', + 'more' => 'Mwy', + 'more_information' => 'Mwy o Wybodaeth', + 'multi_country_instance' => 'Ydi’r Gosodiad Ushahidi Hwn yn Pontio Nifer o Wledydd', + 'must_confirm_email_address' => 'Rhaid i chi gadarnhau eich cyfeiriad E-bost i cael mynediad i’r system hwn. Os ydych chi wedi colli eich E-bost cadarnhau, fe allwch chi ofyn am un arall isod.', + 'name' => 'Enw', + 'nearby_report' => 'Adroddiad Cyfagos', + 'new' => 'Newydd', + 'news' => 'Newyddion', + 'news_feeds' => 'Ffrydiau Newyddion', + 'news_source' => 'Ffynhonnell Newyddion', + 'new_category' => 'Categori Newydd', + 'new_password' => 'Cyfrinair Newydd', + 'new_report' => 'Adroddiad Newydd', + 'next' => 'Nesaf', + 'no' => 'Na', + 'no_checkins' => 'Dim nodau lle i’w dangos.', + 'no_data' => 'Dim data', + 'none' => 'Dim byd', + 'notices' => 'Hysbysiadau', + 'not_approved' => 'Heb ei Gymeradwyo', + 'not_approved_singular' => 'Heb ei Gymeradwyo', + 'not_selected' => '---Heb ei Ddewis---', + 'not_spam' => 'nid sbam', + 'not_specified' => 'Heb ei Benodi', + 'no_reports' => 'Nid oes adroddiadau', + 'no_results' => 'Nid oes canlyniadau', + 'off' => 'I Ffwrdd', + 'official_news' => 'Newyddion Swyddogol & Prif-ffrwd', + 'on' => 'Ymlaen', + 'option' => 'Dewis', + 'optional' => 'Dewisol', + 'options' => 'Dewisiadau', + 'organization' => 'Sefydliad', + 'organizations' => 'Sefydliad', + 'organization_description' => 'Disgrifiad Sefydliad', + 'organization_email' => 'E-bost Sefydliad', + 'organization_has_been' => 'Mae’r Sefydliad wedi', + 'organization_name' => 'Enw’r Sefydliad', + 'organization_phone_1' => 'Rhif ffôn Sefydliad 1', + 'organization_phone_2' => 'Rhif ffôn Sefydliad 2', + 'organization_website' => 'Gwefan y Sefydliad', + 'original' => 'Gwreiddiol', + 'original_description' => 'Disgrifiad Gwreiddiol', + 'original_title' => 'Teitl Gwreiddiol', + 'other_ushahidi_instances' => 'Gosodiad Arall', + 'outbox' => 'Blwch allan', + 'outgoing' => 'I’w Danfon', + 'page' => 'Tudalen', + 'pages' => 'Tudalennau', + 'page_description' => 'Disgrifiad Tudalen', + 'page_has_been' => 'Mae’r Dudalen Wedi Cael Ei', + 'page_tab_name' => 'Enw Tab Tudalen', + 'page_title' => 'Teitl Tudalen', + 'parent_category' => 'Categori Rhiant', + 'password' => 'Cyfrinair', + 'password_again' => 'Gwirio Cyfrinair', + 'password_changed_successfully' => 'Newidwyd y cyfrinair yn llwyddiannus! Mewngofnodwch isod.', + 'password_forgot' => 'Wedi anghofio’ch cyfrinair?', + 'password_reset_confirm' => 'Edrychwch am E-bost yn cynnwys eich cyfrinair newydd.', + 'password_save' => 'Cadw wedi mewngofnodi ar y cyfrifiadur hwn?', + 'past_month' => 'Mis Diwethaf', + 'past_year' => 'Blwyddyn Diwethaf', + 'pending' => 'Yn disgwyl', + 'per' => 'yr', + 'personal_information' => 'Gwybodaeth Bersonol Dewisol.', + 'phone' => 'Ffôn', + 'photos' => 'Ffotograffau', + 'pictures' => 'Lluniau', + 'pictures_and_videos' => 'Lluniau a Fideos', + 'pinpoint_location' => '* Chwiliwch am eich lleoliad drwy ddefnyddio enw lleoliad o gyfesurynnau lledred, hydred (fformat: 38.19,-85.61), neu cliciwch ar y map i nodi eich lleoliad cywir', + 'play' => 'Chwarae', + 'please_note' => 'Nodwch', + 'plugins' => 'Ategion', + 'plugin_url' => 'Gwefan Ategion', + 'public_profile' => 'Proffil Cyhoeddus', + 'public_profile_url' => 'URL Proffil Cyhoeddus', + 'preview' => 'Rhagolwg', + 'preview_item' => 'Rhagolwg Eitem', + 'preview_message' => 'Rhagolwg Neges', + 'previous' => 'Blaenorol', + 'private' => 'Preifat', + 'profile_color' => 'Lliw Proffil', + 'profile_saved' => 'Mae’ch Proffil wedi ei gadw', + 'quick_stats' => 'Ystadegau Cyflym', + 'rating' => 'Graddiad', + 'read' => 'Darllen', + 'receive' => 'Derbyn', + 'receive_from' => 'Derbyn oddi wrth', + 'receive_notifications' => 'Derbyn Hysbysiadau', + 'recent_reports' => 'Adroddiadau Diweddar', + 'refresh_news_feeds' => 'Adnewyddu Ffrydiau Newyddion', + 'registered_email' => 'E-bost Cofrestredig', + 'remove' => 'Dileu', + 'reply' => 'Ymateb', + 'report' => 'Adrodd', + 'reports_listed' => 'Adroddiadau (o’r map, wedi eu rhestru yn nhrefn amser)', + 'reporter' => 'Adroddwr', + 'reporters' => 'Adroddwyr', + 'reporter_date' => 'Dyddiad Adroddwr', + 'reporter_email' => 'E-bost Adroddwr', + 'reporter_first_name' => 'Enw Cyntaf Adroddwr', + 'reporter_has_been' => 'Mae’r Adroddwr Wedi Bod', + 'reporter_ip' => 'Cyfeiriad IP Adroddwr', + 'reporter_last_name' => 'Cyfenw Adroddwr', + 'reporter_level' => 'Lefel Adroddwr', + 'reporter_levels' => 'Lefelau Adroddwr', + 'reporter_phone' => 'Ffôn Adroddwr', + 'reports' => 'Adroddiadau', + 'reports_btn_browse' => 'Pori', + 'reports_btn_submit' => 'Cyflwyno', + 'reports_by_this_user' => 'Adroddiadau Gan y Defnyddiwr Hwn', + 'reports_categories' => 'Categorïau', + 'reports_date' => 'Dyddiad', + 'reports_description' => 'Disgrifiad', + 'reports_download_csv' => 'Mi fydd Adroddiadau yn cael eu llwytho lawr mewn fformat CSV', + 'reports_email' => 'E-bost', + 'reports_features' => 'Nodweddion', + 'reports_find_location' => 'Canfod lleoliad sy’n agos i chi', + 'reports_first' => 'Enw Cyntaf', + 'reports_last' => 'Cyfenw', + 'reports_location_name' => 'Mireinio Enw Lleoliad', + 'reports_news' => 'Dolen Ffynhonnell Newyddion', + 'reports_optional' => 'Gwybodaeth Dewisol', + 'reports_photos' => 'Llwytho fyny Lluniau', + 'reports_return' => 'Dychwelyd i’r dudalen adroddiadau', + 'reports_select_city' => 'Dewiswch Dref', + 'reports_submitted' => 'Mae eich Adroddiad wedi ei ddanfon i’n staff i’w adolygu. Mi fyddwn yn ymateb cyn bo hir os oes angen.', + 'reports_submit_new' => 'Danfon Adroddiad Newydd', + 'reports_time' => 'Amser', + 'reports_timeline' => 'Llinell amser', + 'reports_title' => 'Teitl Adroddiad', + 'reports_video' => 'Dolen fideo', + 'report_an_incident' => 'Adrodd am Ddigwyddiad', + 'report_details' => 'Manylion Adroddiad', + 'report_option_1' => 'Drwy anfon neges at', + 'report_option_2' => 'Drwy anfon E-bost at', + 'report_option_3' => 'Drwy anfon trydariad gyda’r tag/tagiau hash', + 'report_option_4' => 'Drwy lenwi’r ffurflen hon ar ein gwefan.', + 'report_option_external_apps' => 'Drwy ddefnydio ap', + 'report_saved' => 'Mae eich Adroddiad wedi ei gadw', + 'report_title' => 'Teitl Adroddiad', + 'request_information' => 'Cais am fwy o wybodaeth', + 'request_location' => 'Cais am leoliad', + 'required' => 'Gofynnol', + 'requirements' => 'Gofynion', + 'resend_confirm_email' => 'Ail-anfon E-bost Cadarnhau', + 'reset' => 'Ail-osod', + 'reset_all_filters' => 'Ail-osod pob hidlydd', + 'reset_password' => 'Ail-osod Cyfrinair', + 'retrieve_city_names' => 'Gofyn am enwau trefi i’r wlad ddewisol', + 'riverid_information' => 'Cyfrifon rheolir gan y gwasanaeth %s.', + 'role' => 'Rôl', + 'save' => 'Cadw', + 'saved' => 'Cadwyd', + 'save_add_new' => 'Cadwyd & Ychwanegu Newydd', + 'save_close' => 'Cadw a Chau', + 'save_report' => 'Cadw Adroddiad', + 'schedule' => 'Amserlen', + 'scheduler' => 'Amserlenydd', + 'scheduler_day' => 'Diwrnod', + 'scheduler_hour' => 'Awr', + 'scheduler_log' => 'Cofnod Amserlenydd', + 'scheduler_minute' => 'Munud', + 'scheduler_weekday' => 'Diwrnod yr Wythnos', + 'search' => 'CHWILIO', + 'search_results' => 'Canlyniadau Chwilio', + 'security_code' => 'Côd Diogelwch', + 'select_all' => 'Dewis Popeth', + 'select_field_type' => 'Dewiswch Math o Faes', + 'select_form_type' => 'Dewiswch Math o Ffurflen', + 'select_in_map' => 'Dewiswch yn y map', + 'select_multiple' => 'Dewiswch gymaint â sydd angen', + 'select_one' => 'Gwnewch yn siwr eich bod wedi dewis eitem', + 'select_theme' => 'Dewiswch Thema', + 'send' => 'Anfon', + 'send_confirmation' => 'Anfon Cadarnhad', + 'sending_to' => 'Yn Anfon At', + 'sent' => 'Anfonwyd', + 'sent_by' => 'Anfonwyd gan', + 'server_address' => 'Cyfeiriad gweinydd', + 'server_type' => 'Math gweinydd', + 'service' => 'Gwasanaeth', + 'service_username' => 'Enw defnyddiwr Gwasanaeth', + 'service_user_id' => 'Rhif defnyddiwr Gwasanaeth', + 'share' => 'Rhannu', + 'shared_data' => 'Data wedi’i rannu', + 'share_has_been' => 'Cafodd y rhannu ei', + 'sharing' => 'Rhannu', + 'show' => 'Dangos', + 'show_all' => 'Dangos popeth', + 'show_messages' => 'Dangos Negeseuon', + 'site' => 'Gwefan', + 'site_email_address' => 'cyfeiriad E-bost gwefan', + 'site_url' => 'URL Gwefan', + 'sorry_no_badges' => 'Sori, ond does gennych chi ddim bathodynnau.', + 'source' => 'Ffynhonnell', + 'source_name' => 'Enw ffynhonnell', + 'source_url' => 'URL ffynhonnell ', + 'spam' => 'Sbam', + 'ssl_support' => 'Cefnogaeth SSL?', + 'start_point' => 'Oddi Wrth', + 'step' => 'Cam', + 'submit' => 'Anfon Adroddiad', + 'submit_sms' => 'Anfon drwy SMS', + 'submit_sms1' => 'Anfon drwy SMS at', + 'submit_sms2' => 'ar eich ffôn', + 'success' => 'Llwyddiant!', + 'successfuly_imported' => 'Wedi’i fewnforio yn llwyddiannus', + 'surname' => 'Cyfenw', + 'survey' => 'Arolwg', + 'tcp_port' => 'Porth TCP', + 'themes' => 'Themau', + 'theme_default' => 'Thema Ushahidi Diofyn', + 'theme_settings' => 'Gosodiadau Thema', + 'this' => 'Hwn', + 'this_day' => 'Heddiw', + 'this_month' => 'Mis Yma', + 'this_week' => 'Wythnos Yma', + 'this_year' => 'Blwyddyn Yma', + 'this_is_your_profile' => 'Dyma eich proffil.', + 'time' => 'Amser', + 'title' => 'Teitl ', + 'to' => 'i', + 'today' => 'Heddiw', + 'today_at' => 'Heddiw am', + 'token' => 'Tocyn', + 'total_reports' => 'Cyfanswm Adroddiadau', + 'translated' => 'Cyfieithwyd', + 'translated_description' => 'Disgrifiad wedi eu gyfieithu', + 'translated_title' => 'Teitl wedi eu gyfieithu', + 'translate_to' => 'Cyfieithu i', + 'translation' => 'Cyfieithiad', + 'translation_saved' => 'Cyfieithiad wedi eu gadw', + 'type' => 'Math', + 'unable_send_email' => 'Methwyd anfon yr E-bost.', + 'unread' => 'heb ei ddarllen', + 'unverified' => 'Heb ei wirio', + 'update_feeds' => 'Diweddaru ffrydiau', + 'upload' => 'Llwytho i fyny', + 'upload_file' => 'Ffeil i’w lwytho', + 'upload_reports' => 'Llwytho Adroddiadau', + 'upload_reports_detail_1' => 'Gyda’r ffurflen isod, gallwch chi fewnforio digwyddiadau i’r peiriant Ushahidi', + 'upload_reports_detail_4' => 'Rhaid iddo gynnwys o leiaf Teitl Digwyddiad a Dyddiad Digwyddiad', + 'upload_reports_detail_4b' => 'Os na ddarperir colofnau lledred a hydred yna bydd yn cael ei geogôdio gyda Google Geocoder', + 'upload_reports_detail_5' => 'Sampl o Adroddiad CSV', + 'upload_reports_detail_6' => '#,TEITL DIGWYDDIAD,DYDDIAD DIGWYDDIAD,LLEOLIAD,DISGRIFIAD,CATEGORI,CADARNHAWYD,GWIRIWYD,LLEDRED,HYDRED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_successful' => 'Wedi Llwytho’n Llwyddiannus', + 'upload_video' => 'Llwytho Fideo', + 'user' => 'Defnyddiwr', + 'username' => 'Enw Defnyddiwr', + 'ushahidi_admin' => 'Gweinyddu Ushahidi', + 'verification' => 'Gwirio', + 'verified' => 'Wedi’u Gwirio', + 'verified_reports' => 'Adroddiadau wedi’u Gwirio', + 'verify' => 'Gwirio', + 'verify_this_report' => 'Gwirio’r Adroddiad', + 'version' => 'Fersiwn', + 'via' => 'trwy', + 'video' => 'Fideo', + 'view' => 'Wedi Gweld', + 'views' => 'Wedi Gweld', + 'view_all' => 'Gweld i Gyd', + 'view_all_feeds' => 'Gweld holl ffrydiau', + 'view_all_reports' => 'Gweld holl adroddiadau', + 'view_items' => 'Gweld Eitemau', + 'view_more' => 'Gweld Mwy', + 'view_public_profile' => 'Gweld Proffil Cyhoeddus', + 'view_report' => 'Gweld Adroddiad', + 'view_reports' => 'Gweld Adroddiadau', + 'visible' => 'Gweladwy', + 'waiting_approval' => 'Disgwyl ei Awdurdodi', + 'waiting_verification' => 'Disgwyl ei Wirio', + 'web_form' => 'Ffurflen We', + 'weight' => 'Pwysau', + 'yes' => 'Ydw', + 'yesterday' => 'Ddoe', + 'your_dashboard' => 'Dy Fwrdd Gwaith', + 'your_file' => 'Dy ffeil', + 'zoom_in' => 'Zoom Mewn', + 'zoom_out' => 'Zoom Allan', +); diff --git a/application/i18n/cy_GB/upgrade.php b/application/i18n/cy_GB/upgrade.php new file mode 100644 index 0000000000..2a6e2a7c31 --- /dev/null +++ b/application/i18n/cy_GB/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'E-mail-feltet ser ikke ud til at indeholde en valid e-mail-adresse?', + ) , + 'alert_lat' => array( + 'between' => 'Du har valgt en ikke valid lokalitet på kortet.', + 'required' => 'Du har valgt en ikke valid lokalitet på kortet.', + ) , + 'alert_lon' => array( + 'between' => 'Du har valgt en ikke valid lokalitet på kortet.', + 'required' => 'Du har valgt en ikke valid lokalitet på kortet.', + ) , + 'email_ok_head' => 'Din e-mail advarsel er blevet gemt!', +); diff --git a/application/i18n/da/auth.php b/application/i18n/da/auth.php new file mode 100644 index 0000000000..3663d41948 --- /dev/null +++ b/application/i18n/da/auth.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Angiv en valid sikkerhedskode.', + 'required' => 'Angiv sikkerhedskoden.', + ) , + 'email' => array( + 'email' => 'E-mail-feltet ser ikke ud til at indeholde en valid e-mail-adresse?', + 'length' => 'E-mail feltet skal mindst være på 4 tegn og max. 64 tegn langt.', + 'required' => 'E-mail feltet er påkrævet hvis tjekboksen er afkrydset.', + ) , + 'error' => array( + 'required' => 'Fejlfeltet skal angives.', + ) , + 'subject' => array( + 'length' => 'Emnefeltet skal være mindst 3 tegn langt.', + 'required' => 'Emnefeltet skal angives.', + ) , + 'yourname' => array( + 'length' => 'Navnefeltet skal være på mindst 3 tegn.', + 'required' => 'Navnefeltet skal angives.', + ) , +); diff --git a/application/i18n/da/category.php b/application/i18n/da/category.php new file mode 100644 index 0000000000..54a26f61d8 --- /dev/null +++ b/application/i18n/da/category.php @@ -0,0 +1,24 @@ + array( + 'length' => 'Farvefeltet skal være på 6 tegn.', + 'required' => 'Farvefeltet skal angives.', + ) , + 'category_description' => array( + 'required' => 'Beskrivelsesfeltet skal angives', + ) , + 'category_image' => array( + 'type' => 'Billedefeltet indeholder ikke en valid fil. De eneste accepterede formater er .JPG, .PNG eller .GIF', + ) , + 'category_title' => array( + 'required' => 'Titelfeltet skal angives.', + ) , + 'parent_id' => array( + 'exists' => 'Forældre kategorien finde ikke.', + ) , +); diff --git a/application/i18n/da/comments.php b/application/i18n/da/comments.php new file mode 100644 index 0000000000..3663d41948 --- /dev/null +++ b/application/i18n/da/comments.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Angiv en valid sikkerhedskode.', + 'valid' => 'Angiv en valid sikkerhedskode.', + 'required' => 'Angiv en sikkerhedskode.', + ) , + 'contact_email' => array( + 'email' => 'Denne e-mail ser ikke ud til at indholde en valid e-mail-adresse.', + 'length' => 'E-mail feltet skal mindst være på 4 tegn og max. 64 tegn langt.', + 'required' => 'E-mail feltet er påkrævet hvis tjekboksen er afkrydset.', + ) , + 'contact_message' => array( + 'required' => 'Beskedfeltet skal angives.', + ) , + 'contact_name' => array( + 'length' => 'Navnefeltet skal være på mindst 3 tegn.', + 'required' => 'Navnefeltet skal angives.', + ) , + 'contact_subject' => array( + 'length' => 'Emnefeltet skal være mindst 3 tegn langt.', + 'required' => 'Emnefeltet skal angives.', + ) , + 'email_send' => array( + 'failed' => 'Der skete en fejl ved afsendelse af din besked.', + ) , +); diff --git a/application/i18n/da/core.php b/application/i18n/da/core.php new file mode 100644 index 0000000000..daac541965 --- /dev/null +++ b/application/i18n/da/core.php @@ -0,0 +1,21 @@ + 'Konfigurationsfil', + 'controller' => 'Kontroller', + 'driver' => 'Driver', + 'driver_implements' => 'Denne %s driver til %s biblioteket må implementere %s grænsefladen.', + 'driver_not_found' => '%s driveren til %s biblioteket kunne ikke findes.', + 'errors_disabled' => 'Du kan gå til hjemmeside eller prøv igen.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Kan ikke gennemføre forespørgslen', + 'helper' => 'Hjælper', + 'invalid_filetype' => 'Denne ønskede filtype .%s er ikke tilladt i din vis konfigurationsfil.', + 'invalid_method' => 'Invalid metode %s med kald i %s', + 'library' => 'bibliotek', + 'view' => 'Kig', +); diff --git a/application/i18n/da/database.php b/application/i18n/da/database.php new file mode 100644 index 0000000000..188b99dca3 --- /dev/null +++ b/application/i18n/da/database.php @@ -0,0 +1,10 @@ + 'Database fejl: %s', + 'table_not_found' => 'Tabel "%s" kan ikke findes i databasen. Vær sikker på at du bruger den seneste version af databasen for denne version af Ushadidi.', +); diff --git a/application/i18n/da/datetime.php b/application/i18n/da/datetime.php new file mode 100644 index 0000000000..c2a89e7415 --- /dev/null +++ b/application/i18n/da/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Fre', + 'full' => 'Fredag', + ) , + 'monday' => array( + 'abbv' => 'Man', + 'full' => 'Mandag', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Lør', + 'full' => 'Lørdag', + ) , + 'sunday' => array( + 'abbv' => 'Søn', + 'full' => 'Søndag', + ) , + 'thursday' => array( + 'abbv' => 'Tor', + 'full' => 'Torsdag', + ) , + 'tuesday' => array( + 'abbv' => 'Tir', + 'full' => 'Tirsdag', + ) , + 'wednesday' => array( + 'abbv' => 'Ons', + 'full' => 'Onsdag', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Januar', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februar', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marts', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'Maj', + 'full' => 'Maj', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juni', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juli', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'August', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Oktober', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'December', + ) , +); diff --git a/application/i18n/da/feeds.php b/application/i18n/da/feeds.php new file mode 100644 index 0000000000..7babd2232b --- /dev/null +++ b/application/i18n/da/feeds.php @@ -0,0 +1,14 @@ + 'DATO', + 'feed_url' => array( + 'required' => 'Angiv URL til feed.', + ) , + 'source' => 'KILDE', + 'title' => 'Titel', +); diff --git a/application/i18n/da/footer.php b/application/i18n/da/footer.php new file mode 100644 index 0000000000..15ad0d46aa --- /dev/null +++ b/application/i18n/da/footer.php @@ -0,0 +1,9 @@ + 'php5-curl er ikke installeret på dette her system.', +); diff --git a/application/i18n/da/form.php b/application/i18n/da/form.php new file mode 100644 index 0000000000..3663d41948 --- /dev/null +++ b/application/i18n/da/form.php @@ -0,0 +1,7 @@ + 'Kunne ikke åbne IMAP.', + 'unsupported_service' => 'Denne e-mail service understøttes ikke', +); diff --git a/application/i18n/da/installer.php b/application/i18n/da/installer.php new file mode 100644 index 0000000000..090f8feb41 --- /dev/null +++ b/application/i18n/da/installer.php @@ -0,0 +1,12 @@ + 'Titel', + 'username' => 'Brugernavn', + 'username_description' => 'Dit database brugernavn', + 'view_site' => 'Vis din hjemmeside', +); diff --git a/application/i18n/da/layer.php b/application/i18n/da/layer.php new file mode 100644 index 0000000000..86bbe02c21 --- /dev/null +++ b/application/i18n/da/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Farvefeltet skal være på 6 tegn.', + 'required' => 'Farvefeltet skal angives.', + ) , + 'layer_file' => array( + 'type' => 'Filfeltet indeholder ikke en valid fil. De eneste accepterede formater er .KMZ elle .KML.', + 'valid' => 'Filfeltet indeholder ikke en valid fil', + ) , + 'layer_name' => array( + 'length' => 'Navnefeltet skal være på mindst 3 tegn og på max. 80 tegn.', + 'required' => 'Navnefeltet skal angives.', + ) , + 'layer_url' => array( + 'atleast' => 'Enten skal en KMLs URL eller en KML fil angives.', + 'both' => 'Du kan ikke have en KML fil og en URL på samme tid.', + 'url' => 'Angiv en valid URL, fx http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/da/libraries.php b/application/i18n/da/libraries.php new file mode 100644 index 0000000000..efb5557c5b --- /dev/null +++ b/application/i18n/da/libraries.php @@ -0,0 +1,16 @@ + 'Kunne ikke få forbindelse til Akismet sereren.', + 'akismet_cannot_retrieve' => 'Ingen respons fra Akismet kunne modtages.', + 'clickatell_unicode_message_too_long' => 'Din unicode besked er for lang! (længde lige nu=', + 'clickatell_unsupported_method' => 'Understøtter ikke denne afsendelsesmetode!', + 'upgrade_failed' => 'Download af seneste Ushadidi mislykkes. HTTP statuskode', + 'upgrade_file_not_copied' => 'Fil %s kunne ikke kopieres.', + 'upgrade_file_not_deleted' => 'Fil %s kunne ikke slettes.', + 'upgrade_title' => 'Ushahidi opgraderingsscript', +); diff --git a/application/i18n/da/maintenance.php b/application/i18n/da/maintenance.php new file mode 100644 index 0000000000..0f3d5fa4e8 --- /dev/null +++ b/application/i18n/da/maintenance.php @@ -0,0 +1,9 @@ + 'Vi undskylder meget! vores hjemmeside er nede for at blive vedligeholdt. Prøv igen om et par minutter.', +); diff --git a/application/i18n/da/message.php b/application/i18n/da/message.php new file mode 100644 index 0000000000..6e7a7dd12d --- /dev/null +++ b/application/i18n/da/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Angiv en valid sikkerhedskode.', + 'required' => 'Angiv en sikkerhedskode.', + ) , + 'email' => array( + 'email' => 'E-mail feltet ser ikke ud til at indholde en valid e-mail-adresse.', + 'length' => 'E-mail feltet skal mindst være på 4 tegn og max. 64 tegn langt.', + 'required' => 'E-mail feltet er påkrævet hvis tjekboksen er afkrydset.', + ) , + 'message' => array( + 'required' => 'Kommentarfeltet skal angives.', + ) , + 'name' => array( + 'length' => 'Navnefeltet skal være på mindst 3 tegn.', + 'required' => 'Navnefeltet skal angives.', + ) , + 'phone' => array( + 'length' => 'Telefonfeltet er ikke valid.', + ) , +); diff --git a/application/i18n/da/mhi.php b/application/i18n/da/mhi.php new file mode 100644 index 0000000000..78e1d28d79 --- /dev/null +++ b/application/i18n/da/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Angiv en valid sikkerhedskode.', + 'required' => 'Angive sikkerhedskoden.', + ) , + 'contact_email' => array( + 'email' => 'E-mail feltet ser ikke ud til at indholde en valid e-mail-adresse.', + 'required' => 'Angiv venligst en valid e-mail-adresse.', + ) , + 'contact_message' => array( + 'required' => 'Beskedfeltet skal angives.', + ) , + 'contact_subject' => array( + 'length' => 'Emnefeltet skal være mindst 3 tegn langt.', + 'required' => 'Emnefeltet skal angives.', + ) , +); diff --git a/application/i18n/da/notifications.php b/application/i18n/da/notifications.php new file mode 100644 index 0000000000..faff80e73d --- /dev/null +++ b/application/i18n/da/notifications.php @@ -0,0 +1,35 @@ + 'Denne besked fra sendt fra din hjemmeside.', + 'admin_login_url' => 'Administrator login', + 'admin_new_comment' => array( + 'message' => 'En ny kommentar er blevet sendt til din hjemmeside som svar på:', + 'subject' => 'Ny kommentar', + ) , + 'admin_new_email' => array( + 'message' => 'En ny e-mail besked er blevet sendt til din hjemmeside.', + 'subject' => 'Ny e-mail besked', + ) , + 'admin_new_report' => array( + 'message' => 'En ny rapport er blevet sendt til din hjemmeside.', + 'subject' => 'Ny rapport', + ) , + 'admin_new_sms' => array( + 'message' => 'En ny tekstbesked er blevet sendt til din hjemmeside.', + 'subject' => 'Ny tekstbesked', + ) , + 'member_new_alert' => array( + 'message' => 'Du har modtaget en ny advarsel', + 'subject' => 'Ny advarsel!', + ) , + 'member_new_message' => array( + 'message' => 'Du har modtaget en privat besked', + 'subject' => 'Ny privat besked', + 'footer' => 'For at svare gå venligst til:', + ) , +); diff --git a/application/i18n/da/page.php b/application/i18n/da/page.php new file mode 100644 index 0000000000..f2e4770634 --- /dev/null +++ b/application/i18n/da/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Angiv en sidetitel', + 'length' => 'Sidens titel skal være mindst 3 tegn og max. 150 tegn lang.', + ) , + 'page_tab' => array( + 'required' => 'Angiv en side Tab navn', + ) , + 'page_description' => array( + 'required' => 'Angiv en beskrivelse om siden', + ) , +); diff --git a/application/i18n/da/permissions.php b/application/i18n/da/permissions.php new file mode 100644 index 0000000000..4734e59801 --- /dev/null +++ b/application/i18n/da/permissions.php @@ -0,0 +1,26 @@ + 'Vis rapporter', + 'reports_edit' => 'Lav/Ret/Slet rapporter', + 'reports_approve' => 'Godkend rapporter', + 'reports_verify' => 'Bekræft rapporter', + 'reports_comments' => 'Administrer rapport kommentarer', + 'reports_download' => 'Download rapporter', + 'reports_upload' => 'Opload rapporter', + 'messages' => 'Administrer beskeder', + 'messages_reporters' => 'Administrer besked rapportørerne', + 'stats' => 'Vis statistik', + 'settings' => 'Rediger indstillinger', + 'manage' => 'Administrer panel', + 'users' => 'Administrer brugere', + 'manage_roles' => 'Administrer roller', + 'checkin' => 'Kan tjekke-ind', + 'checkin_admin' => 'Administrer tjek-inds', + 'admin_ui' => 'Adgang Admin UI', + 'member_ui' => 'Adgang medlemer UI', +); diff --git a/application/i18n/da/private_message.php b/application/i18n/da/private_message.php new file mode 100644 index 0000000000..41e5464865 --- /dev/null +++ b/application/i18n/da/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Forældre ID skal være nummerisk', + ) , + 'private_to' => array( + 'required' => 'Feltet Til skal angives', + 'exists' => 'Brugeren du prøver at sende en besked til findes ikke', + ) , + 'private_subject' => array( + 'required' => 'Emnefeltet skal angives', + 'length' => 'Emnefeltet skal være mellem 3 og 150 tegn', + ) , + 'private_message' => array( + 'required' => 'Beskedfeltet skal angives', + ) , +); diff --git a/application/i18n/da/report.php b/application/i18n/da/report.php new file mode 100644 index 0000000000..3663d41948 --- /dev/null +++ b/application/i18n/da/report.php @@ -0,0 +1,7 @@ + array( + 'between' => 'Breddegrad feltet indeholder ikke en valid breddegrad.', + ) , +); diff --git a/application/i18n/da/reports.php b/application/i18n/da/reports.php new file mode 100644 index 0000000000..f8c8a31fe2 --- /dev/null +++ b/application/i18n/da/reports.php @@ -0,0 +1,19 @@ + array( + 'required' => 'Verificere lige om du har afkrydset en post', + ) , + 'action' => array( + 'permission' => 'Du har ikke tilladelse til at udføre denne handling', + ) , + 'uploadfile' => array( + 'required' => 'Du skal vælge en fil for at oploade', + 'type' => 'En fil skal være af typen .csv eller .xml format for at kunne oploades.', + 'valid' => 'Fil-oploadet feltet ser ikke ud til at indeholde en valid fil', + ) , +); diff --git a/application/i18n/da/roles.php b/application/i18n/da/roles.php new file mode 100644 index 0000000000..6b418d9f52 --- /dev/null +++ b/application/i18n/da/roles.php @@ -0,0 +1,18 @@ + array( + 'length' => 'Beskrivelsesfeltet skal være på mindst 3 tegn og på max. 100 tegn.', + 'required' => 'Beskrivelsesfeltet skal angives', + ) , + 'name' => array( + 'alpha_numeric' => 'Navnetfeltet må kun indeholde bogstaver eller numre.', + 'length' => 'Navnefeltet skal være på mindst 2 tegn og på max. 30 tegn.', + 'nomodify' => 'SuperAdmin rollen kan ikke ændres.', + 'required' => 'Navnefeltet skal angives.', + ) , +); diff --git a/application/i18n/da/settings.php b/application/i18n/da/settings.php new file mode 100644 index 0000000000..028b29fda8 --- /dev/null +++ b/application/i18n/da/settings.php @@ -0,0 +1,19 @@ + array( + 'required' => 'Farvefeltet skal angives.', + ) , + 'download_city_list' => 'Modtag bynavne fra Geonames', + 'site' => array( + 'api_akismet' => 'Akismet nøgle', + 'timezone' => 'Tidszone', + ) , + 'sms' => array( + 'title' => 'Testindstillinger', + ) , +); diff --git a/application/i18n/da/sharing.php b/application/i18n/da/sharing.php new file mode 100644 index 0000000000..3663d41948 --- /dev/null +++ b/application/i18n/da/sharing.php @@ -0,0 +1,7 @@ + 'Godkendt', + 'categories' => 'Kategorier', + 'countries' => 'Lande', + 'country' => 'Land', + 'error' => 'Fejl', + 'pageviews' => 'Sidevisninger', + 'reports' => 'Rapporter', + 'reports_categories' => 'Rapport kategorier', + 'time_range_1' => '1 måned', + 'time_range_2' => '3 måneder', + 'time_range_3' => '6 måneder', + 'time_range_all' => 'Alle', + 'visits' => 'Antal besøg', +); diff --git a/application/i18n/da/tooltips.php b/application/i18n/da/tooltips.php new file mode 100644 index 0000000000..38258e3829 --- /dev/null +++ b/application/i18n/da/tooltips.php @@ -0,0 +1,11 @@ + 'Privat besked', + 'profile_email' => 'Din e-mail-adresse', + 'settings_twitter_configuration' => 'Indstil Twitter hashtag som vil blive brugt i et tweet', +); diff --git a/application/i18n/da/ui_admin.php b/application/i18n/da/ui_admin.php new file mode 100644 index 0000000000..3663d41948 --- /dev/null +++ b/application/i18n/da/ui_admin.php @@ -0,0 +1,7 @@ + 'Om', + 'access' => 'Adgang', + 'access_limits' => 'Adgangsbegræsning', + 'account_name' => 'Kontonavn', + 'actions' => 'Aktioner', + 'action_confirm' => 'Denne handling kan ikke fortrydes. Er du sikker på du vil fortsætte?', + 'activate' => 'Aktivere', + 'active' => 'Aktiv', + 'add' => 'Tilføj', + 'added_by' => 'Tilføjet af', + 'add_edit' => 'Tilføj/Ret', + 'add_field' => 'Tilføj et felt', + 'add_language' => 'Tilføj sprog', + 'add_new' => 'Tilføj ny', + 'add_new_category' => 'Tilføj ny kategori', + 'add_translation' => 'Tilføj overstættelse', + 'admin' => 'Administration', + 'alerts' => 'Modtag nye beskeder', + 'alerts_select_city' => 'Vælg en by', + 'all' => 'Alle', + 'allowed' => 'Tilladt', + 'allowed_tags' => 'Tilladte HTML tags: "%s".', + 'all_categories' => 'Alle kategorier', + 'all_time' => 'Altid', + 'and' => 'og', + 'api' => 'API', + 'approve' => 'Godkende', + 'approved' => 'Godkendt', + 'author' => 'Forfatter', + 'auto_checkin' => 'Auto tjek-in', + 'blog' => 'Blog', + 'browse_profiles' => 'Browse i profiler', + 'cancel' => 'Fortryd', + 'categories' => 'Kategorier', + 'category' => 'Kategori', + 'category_filter' => 'Kategorifilter', + 'category_name' => 'Kategorinavn', + 'change_date_range' => 'Ændre et datointerval', + 'change_password' => 'Ændre adgangskode', + 'change_picture' => 'Ændre mit profilbillede', + 'choose' => 'Vælg en', + 'close' => 'Luk', + 'clusters' => 'Klynger', + 'color' => 'Farve', + 'comment' => 'Kommentar', + 'comments' => 'Kommentarer', + 'contact' => 'Kontakt os', + 'contact_code' => 'Sikkerhedskode', + 'contact_send' => 'Send beskred', + 'contact_subject' => 'Emnebesked', + 'copyright' => 'Copyright ©', + 'create' => 'Lav', + 'create_edit' => 'Lav/Ret', + 'create_new' => 'Lav ny', + 'create_new_password' => 'Lav ny adgangskode', + 'create_report' => 'Lav rapport', + 'data' => 'Information', + 'date' => 'Dato', + 'date_format' => '(mm/dd/åååå)', + 'date_time' => 'Dato & Tid', + 'day' => 'Dag', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Slet', + 'deleted' => 'Slettet', + 'deletes' => 'Sletninger', + 'delete_spam' => 'Slet spam', + 'demo' => 'Demo', + 'description' => 'Beskrivelse', + 'edit' => 'Ret', + 'end_point' => 'til', + 'error' => 'Fejl!', + 'example' => 'Eksempel', + 'example_country' => 'Kenya', + 'facebook' => 'Facebook', + 'file' => 'Fil', + 'find' => 'Søg', + 'find_location' => 'Søg lokalitet', + 'first_name' => 'Fornavn', + 'geometry_color' => 'Farve', + 'geometry_comments' => 'Kommentarer', + 'go' => 'Gå', + 'hashtag' => 'Hashtag', + 'hide' => 'Skjul', + 'hide_this_message' => 'Skjul denne besked', + 'home' => 'Hjem', + 'https' => 'HTTPS', + 'id' => 'ID', + 'image' => 'Billede', + 'images' => 'Billeder', + 'image_icon' => 'Billede/Ikon', + 'ip_address' => 'IP adresse', + 'is_this_your_profile' => 'Er dette din profil?', + 'kml_kmz_file' => 'KMZ/KML fil', + 'last_name' => 'Efternavn', + 'last_year' => 'Sidste år', + 'layers' => 'Lag', + 'layers_filter' => 'Andre lag', + 'layer_url' => 'Lag URL', + 'leave_a_comment' => 'Skriv en kommentar', + 'less_information' => 'Mindre information', + 'link' => 'Link', + 'list' => 'Liste', + 'map' => 'Kort', + 'maximum_filesize' => 'Maksium filstørrelse', + 'media' => 'Medie', + 'media_filter' => 'Medie filter', + 'members' => 'Medlemmer', + 'more' => 'Mere', + 'more_information' => 'Mere information', + 'name' => 'Navn', + 'new' => 'Ny', + 'news' => 'Nyheder', + 'news_feeds' => 'Nyheds feeds', + 'news_source' => 'Nyhedskilde', + 'new_category' => 'Ny kategori', + 'new_password' => 'Ny adgangskode', + 'new_report' => 'Ny rapport', + 'next' => 'Næste', + 'no' => 'Nej', + 'no_checkins' => 'Ingen tjek-ind at vise.', + 'no_data' => 'Ingen data', + 'none' => 'Ingen', + 'not_approved' => 'Ikke godkendt', + 'not_approved_singular' => 'Ikke godkendt', + 'page_title' => 'Titel på side', + 'phone' => 'Telefon', + 'photos' => 'Billeder', + 'play' => 'Afspil', + 'read' => 'Læs', + 'remove' => 'Fjern', + 'reply' => 'Besvar', + 'report' => 'Rapport', + 'reports_btn_submit' => 'Send', + 'reports_date' => 'Dato', + 'reports_description' => 'Beskrivelse', + 'rss' => 'RSS', + 'save' => 'Gem', + 'saved' => 'Gemt', + 'save_add_new' => 'Gem & tilføj ny', + 'save_close' => 'Gem & luk', + 'save_report' => 'Gem rapport', + 'scheduler_day' => 'Dag', + 'scheduler_hour' => 'Time', + 'search' => 'Søg', + 'select_all' => 'Vælg alle', + 'send' => 'Send', + 'service' => 'Service', + 'share' => 'Del', + 'shared_data' => 'Del data', + 'shorter_map' => 'Kortere kort', + 'smaller_map' => 'Mindre kort', + 'sms' => 'SMS', + 'start_point' => 'Fra', + 'step' => 'Trin', + 'taller_map' => 'Højere kort', + 'this_day' => 'I dag', + 'this_month' => 'Denne måned', + 'this_week' => 'Denne uge', + 'this_year' => 'Dette år', + 'this_is_your_profile' => 'Dette er din profil.', + 'to' => 'til', + 'today' => 'I dag', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Er ikke i stand til at sende e-mail.', + 'url' => 'URL', + 'user' => 'Bruger', + 'username' => 'Brugernavn', + 'version' => 'Version', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Se', + 'view_video' => 'Vis video', + 'wider_map' => 'Breddere kort', + 'yes' => 'Ja', + 'yesterday' => 'I går', +); diff --git a/application/i18n/da/upgrade.php b/application/i18n/da/upgrade.php new file mode 100644 index 0000000000..3d73335956 --- /dev/null +++ b/application/i18n/da/upgrade.php @@ -0,0 +1,33 @@ + array( + 'between' => 'Ugyldig input data. Det kan kun være et 0 for Nej eller 1 for Ja.', + ) , + 'upgrade_automatic' => 'Automatisk opgradering', + 'upgrade_available' => 'Tilgængelige opdateringer', + 'upgrade_continue_btn_text' => 'Fortsæt', + 'upgrade_db_btn_text' => 'Opgrader', + 'upgrade_db_text_1' => 'Så jeg vil nu opgradere din database fra version', + 'upgrade_db_text_2' => 'til den nyeste database version', + 'upgrade_db_text_3' => 'Klik på "Opgrader" knappen og slap helt roligt af mens jeg laver lidt magi.', + 'upgrade_manual' => 'Manuelt opgradering', + 'upgrade_ftp_username' => 'FTP brugernavn:', + 'upgrade_status_info' => 'Du har den seneste udgave af Ushahidi.', + 'upgrade_status_info_2' => 'Du behøver ikke at opgradere.', + 'upgrade_db_version' => 'Database version: %d', + 'upgrade_database' => 'Database:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Downloader den seneste version af Ushahidi...', + 'log_file' => 'Logfil', + 'failed_downloading' => 'Mislykket downloading.', + 'failed_unpacking' => 'Mislykket udpakning.', + 'backup_failed' => 'Mislykket backup af database.', + 'dbupgrade_success' => 'Succes med database opgraderingen. ', + 'deleting_files' => 'Sletter downloades filer...', +); diff --git a/application/i18n/de_DE/alerts.php b/application/i18n/de_DE/alerts.php new file mode 100755 index 0000000000..d2b1017bf0 --- /dev/null +++ b/application/i18n/de_DE/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Ist Deine angegebene E-Mail-Adresse korrekt?', + 'email_check' => 'Diese E-Mail-Adresse ist bereits für Meldungen von diesem Ort registriert.', + 'length' => 'Die E-Mail-Adresse darf nicht weniger als 4 und mehr als 64 Zeichen lang sein.', + 'required' => 'Das E-Mail-Feld muss ausgefüllt sein, wenn das Kästchen angehakt wurde.', + ) , + 'alert_country' => array( + 'single_country' => 'Diese Installation erstreckt sich nur über ein Land. Bitte stelle sicher, dass sich der Ort der Meldung nur innerhalb des Landes %s bewegt.', + ) , + 'alert_lat' => array( + 'between' => 'Du hast einen ungültigen Ort ausgewählt.', + 'required' => 'Du hast einen ungültigen Ort ausgewählt.', + ) , + 'alert_lon' => array( + 'between' => 'Du hast einen ungültigen Ort ausgewählt.', + 'required' => 'Du hast einen ungültigen Ort ausgewählt.', + ) , + 'alert_mobile' => array( + 'length' => 'Das Feld für die Handynummer scheint eine falsche Anzahl von Nummern zu beinhalten.', + 'mobile_check' => 'Diese Handynummer wurde bereits für Benachrichtigungen zu diesem Ort registriert.', + 'numeric' => 'Die Handynummer scheint nicht gültig zu sein. Bitte füge der Nummer nur das Länderpräfix an.', + 'one_required' => 'Du musst entweder Deine Handynummer oder Deine E-Mail-Adresse eingeben.', + 'required' => 'Du musst Deine Handynummer angeben, wenn das Kästchen angehakt wurde.', + ) , + 'alert_radius' => array( + 'in_array' => 'Du hast einen ungültigen Radius gewählt.', + 'required' => 'Du hast keinen Radius auf der Karte gewählt.', + ) , + 'alert_recipient' => array( + 'required' => 'Du hast keinen Empfänger für die Meldungen angegeben.', + ) , + 'alerts_subscribed' => 'Du hast die folgenden Kategorien abonniert.', + 'code_already_verified' => 'Dieser Schlüssel wurde schon einmal verwendet!', + 'code_not_found' => 'Dieser Verifizierungsschlüssel wurde nicht gefunden! Bitte überprüfe, ob Du die richtige URL angegeben haben.', + 'code_verified' => 'Dein Schlüssel wurde erfolgreich verifiziert. Du erhälst nun aktuelle Meldungen.', + 'confirm_request' => 'Um DeineAnfrage zu bestätigen, gehe bitte zu', + 'create_more_alerts' => 'Zurück zur Benachrichtigungsseite gehen, um weitere Meldungen zu abonnieren ', + 'email_alert_request_created' => 'Deine Anfrage wurde erstellt. Eine Verifizierungs-eMail wurde geschickt an ', + 'email_code' => 'Bitte gib unten den E-Mail-Bestätigungscode ein', + 'email_error_head' => 'Deine Anfrage wurde NICHT gespeichert!', + 'email_ok_head' => 'Deine Anfrage wurde erfolgreich gespeichert!', + 'error' => 'Das System konnte den Bestätigungsvorgang nicht vollenden.', + 'mobile_alert_request_created' => 'Deine Meldungsanforderung via Mobiltelefon wurde bearbeitet und wurde gesendet an:', + 'mobile_code' => 'Bitte gib den SMS-Bestätigungscode ein, den Du per SMS empfangen hast.', + 'mobile_error_head' => 'Deine Meldungsanforderung via Mobiltelefon wurde NICHT gespeichert.', + 'mobile_ok_head' => 'Deine Anforderung für mobile Meldungen wurde gespeichert!', + 'settings_error' => 'Fehler in den Einstellungen. Meldungen können nicht korrekt ausgeführt werden.', + 'unsubscribe' => 'Du erhälst diese eMail aufgrund Deiner Anmeldung zum Erhalt aktueller Meldungen. Wenn Du keine weiteren Meldungen mehr erhalten möchtest, gehe bitte zu', + 'unsubscribed' => 'Du wirst keine weiteren Meldungen erhalten von', + 'unsubscribe_failed' => 'Wir konnten Dich nicht abmelden. Bitte überprüfe, ob Du die korrekte URL angegeben hast.', + 'verification_email_subject' => 'Erhalte Meldungen - Bestätigung', + 'verify_code' => 'Du musst Deine Anfrage bestätigen, um Meldungen für diesen Ort zu erhalten.', +); diff --git a/application/i18n/de_DE/auth.php b/application/i18n/de_DE/auth.php new file mode 100755 index 0000000000..2ad1b2691d --- /dev/null +++ b/application/i18n/de_DE/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Das E-Mail-Feld enthält eine ungültige Mailadresse.', + 'exists' => 'Sorry, diese E-Mailadresse ist bereits einem Konto zugeordnet.', + 'length' => 'Die E-Mail-Adresse muss zwischen 4 und 64 Zeichen lang sein.', + 'required' => 'Die E-Mail-Adresse ist ein Pflichtfeld', + ) , + 'name' => array( + 'length' => 'Die E-Mail-Adresse muss zwischen 3 und 100 Zeichen lang sein.', + 'required' => 'Der vollständige Name ist notwendig.', + 'standard_text' => 'Der Benutzername enthält nicht erlaubte Zeichen', + ) , + 'current_password' => array( + 'length' => 'Das Passwort muss mindestens 8 Zeichen lang sein.', + 'login error' => 'Bitte überprüfe, ob Du die korrekte E-Mail Adresse und das richtige Passwort eingegeben hast.', + 'matches' => 'Bitte gib in beiden Felder das gleiche Passwort ein.', + 'required' => 'Das Passwort wird benötigt.', + 'alpha_dash' => 'Das Passwort darf nur aus Buchstaben, den # und @ Symbolen, Nummern, Unter- und Bindestrichen bestehen.', + 'incorrect' => 'Das eingegebene Passwort ist nicht korrekt. Bitte versuche es noch einmal.', + ) , + 'new_password' => array( + 'length' => 'Das Passwort muss mindestens 8 Zeichen lang sein.', + 'login error' => 'Bitte überprüfe, ob Du die korrekte E-Mail Adresse und das richtige Passwort eingegeben hast.', + 'matches' => 'Bitte gib in beiden Felder das gleiche Passwort ein.', + 'required' => 'Das Passwort wird benötigt.', + 'alpha_dash' => 'Das Passwort darf nur aus Buchstaben, den # und @ Symbolen, Nummern, Unter- und Bindestrichen bestehen.', + ) , + 'password' => array( + 'default' => 'Es gab einen Fehler bei der Anmeldung.', + 'length' => 'Das Passwort muss zwischen 5 und 16 Zeichen lang sein', + 'login error' => 'Bitte überprüfe, ob Du die richtige E-Mail-Adresse und das richtige Passwort eingegeben hast.', + 'matches' => 'Bitte gib das gleiche Passwort zwei Mal ein.', + 'required' => 'Das Passwortfeld ist notwendig.', + 'riverid server down' => 'Der Anmeldeserver ist nicht verfügbar. Bitte versuche es später noch einmal.', + 'riverid' => '%s', + 'alpha_dash' => 'Das Passwort darf nur aus Buchstaben, den # und @ Symbolen, Nummern, Unter- und Bindestrichen bestehen.', + ) , + 'password_confirm' => array( + 'matches' => 'Beide eingegeben Passwörter müssen übereinstimmen.', + ) , + 'resetemail' => array( + 'email' => 'Die E-Mail-Adresse ist ungültig.', + 'invalid' => 'Entschuldigung, wir können Deine E-Mail-Adresse nicht zuordnen.', + 'required' => 'Die E-Mail-Adresse ist notwendig.', + ) , + 'role' => array( + 'superadmin_modify' => 'Nur ein Superadmin darf einen anderen Superadmin einstellen oder einen bestehenden Benutzer zum Admin ernennen.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Ungültiges Rollen-Format', + 'length' => 'Die Feldlänge von ROLLE muss zwischen 5 und 30 Zeichen lang sein.', + 'required' => 'Du musst min. eine Rolle festgelegen', + 'values' => 'Du musst entweder ADMIN oder USER wählen.', + ) , + 'token' => array( + 'invalid' => 'Das vergessene Passwortzeichen ist ungültig.', + 'required' => 'Das Zeichen für das vergessen Passwort wird benötigt.', + ) , + 'username' => array( + 'admin' => 'Die Admin-Rolle kann nicht verändert werden.', + 'alpha_numeric' => 'Das öffentliche Profil darf nur aus Nummern und Buchstaben bestehen.', + 'exists' => 'Sorry, der Benutzername ist bereits vergeben.', + 'length' => 'Der Benutzername muss zwischen 2 und 16 Zeichen lang sein.', + 'login error' => 'Bitte überprüfe, ob Du die korrekte URL für das öffentliche Profil eingegeben hast.', + 'required' => 'Der Benutzname ist ein Pflichtfeld.', + 'superadmin' => 'Die Super-Admin-Rolle kann nicht verändert werden.', + 'csrf' => 'Mögliche CSRF Attacke. Willst Du wirklich einen Benutzer neu erstellen/bearbeiten?', + ) , +); diff --git a/application/i18n/de_DE/bug.php b/application/i18n/de_DE/bug.php new file mode 100755 index 0000000000..9bf657674d --- /dev/null +++ b/application/i18n/de_DE/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Bitte gib einen gültigen Sicherheitscode ein.', + 'required' => 'Bitte gib den Sicherheitscode ein.', + ) , + 'email' => array( + 'email' => 'Das E-Mail-Feld scheint keine gültige E-Mailadresse zu enthalten.', + 'length' => 'Das E-Mail-Feld muss mindestens 4 und höchstens 64 Zeichen lang sein.', + 'required' => 'Das E-Mail-Feld ist erforderlich, wenn das Kästchen angehakt wurde.', + ) , + 'error' => array( + 'required' => 'Das Fehlerfeld ist notwendig.', + ) , + 'subject' => array( + 'length' => 'Das Betreffeld muss mindestens 3 Zeichen lang sein.', + 'required' => 'Das Betreff-Feld ist notwendig.', + ) , + 'yourname' => array( + 'length' => 'Das Namensfeld muss mindestens 3 Zeichen lang sein.', + 'required' => 'Das Namensfeld ist notwendig.', + ) , +); diff --git a/application/i18n/de_DE/category.php b/application/i18n/de_DE/category.php new file mode 100755 index 0000000000..6895a4a0d1 --- /dev/null +++ b/application/i18n/de_DE/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Das Farbfeld darf nur 6 Zeichen lang sein.', + 'required' => 'Die Angabe der Farbe ist notwendig.', + ) , + 'category_description' => array( + 'required' => 'Das Feld mit der Beschreibung muss ausgefüllt werden.', + ) , + 'category_image' => array( + 'size' => 'Beachte bitte, dass die Größe für hochgeladene Bilder auf 50KB beschränkt ist.', + 'type' => 'Das Bild scheint ein ungültiges Format zu haben. Die akzeptierten Formate sind: .JPG, .PNG und .GIF.', + 'valid' => 'Das Bilderfeld enthält eine ungültige Datei.', + ) , + 'category_title' => array( + 'length' => 'Das Titelfeld muss mindestens 3 und darf höchstens 80 Zeichen lang sein.', + 'required' => 'Das Titelfeld ist notwendig.', + ) , + 'parent_id' => array( + 'already_parent' => 'Unterkategorien können nicht weiter unterteilt werden.', + 'exists' => 'Die übergeordnete Kategorie existiert nicht.', + 'numeric' => 'Das Feld für die übergeordnete Kategorie darf nur Zahlen enthalten.', + 'parent_trusted' => 'Die übergeordnete Kategorie kann keine Spezialkategorie sein.', + 'required' => 'Die übergeordnete Kategorie ist erforderlich.', + 'same' => 'Die Kategorie und die übergeordnete Kategorie können nicht gleich sein.', + 'special' => 'Spezialkategorien können nicht weiter unterteilt werden.', + ) , +); diff --git a/application/i18n/de_DE/comments.php b/application/i18n/de_DE/comments.php new file mode 100755 index 0000000000..89c07362f4 --- /dev/null +++ b/application/i18n/de_DE/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Bitte gib einen gültigen Sicherheitscode ein.', + 'required' => 'Bitte gib den Sicherheitscode ein.', + 'valid' => 'Du hast den falschen Sicherheitscode eingegeben.', + ) , + 'comment_author' => array( + 'length' => 'Das Namensfeld muss min 3 Zeichen lang sein.', + 'required' => 'Das Namensfeld ist notwendig', + ) , + 'comment_description' => array( + 'required' => 'Das Kommentarfeld ist notwendig', + ) , + 'comment_email' => array( + 'email' => 'Das E-Mail-Feld scheint eine ungültige Adresse zu enthalten.', + 'length' => 'Die E-Mail-Adresse muss zwischen 4 und 64 Zeichen lang sein.', + 'required' => 'Das eMailfeld ist notwendig wenn die Box angekreuzt ist', + ) , +); diff --git a/application/i18n/de_DE/contact.php b/application/i18n/de_DE/contact.php new file mode 100755 index 0000000000..90ab845d4e --- /dev/null +++ b/application/i18n/de_DE/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Bitte gib einen gültigen Sicherheitscode ein.', + 'valid' => 'Bitte gib einen gültigen Sicherheitscode ein.', + 'required' => 'Bitte gib den Sicherheitscode ein.', + ) , + 'contact_email' => array( + 'email' => 'Die E-Mail-Adresse scheint ungültig zu sein.', + 'length' => 'Die E-Mail-Adresse muss mindestens 4 und maximal 64 Zeichen lang sein.', + 'required' => 'Bitte geben Sie eine gültige E-Mail-Adresse ein.', + ) , + 'contact_message' => array( + 'required' => 'Das Feld NACHRICHT muss ausgefüllt werden.', + ) , + 'contact_name' => array( + 'length' => 'Das Feld NAME muss mindestens 3 Zeichen lang sein.', + 'required' => 'Das Feld NAME muss ausgefüllt werden.', + ) , + 'contact_subject' => array( + 'length' => 'Das BETREFF Feld muss mindestens 3 Zeichen lang sein.', + 'required' => 'Das BETREFF Feld muss ausgefüllt werden.', + ) , + 'email_send' => array( + 'failed' => 'Es gab einen Fehler beim Verschicken Deiner Nachricht.', + ) , +); diff --git a/application/i18n/de_DE/core.php b/application/i18n/de_DE/core.php new file mode 100755 index 0000000000..4a6989d1cd --- /dev/null +++ b/application/i18n/de_DE/core.php @@ -0,0 +1,35 @@ + 'Konfigurationsdatei', + 'controller' => 'controller', + 'driver' => 'Treiber', + 'driver_implements' => 'The %s driver for the %s library must implement the %s interface', + 'driver_not_found' => 'The %s driver for the %s library could not be found', + 'errors_disabled' => 'Du kannst auf die home page gehen oder es erneut versuchen.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Konnte die Anforderung nicht erfüllen', + 'helper' => 'helper', + 'invalid_filetype' => 'Der angeforderte Dateityp, .%s, ist nicht erlaubt entsprechend Ihren Einstellungen', + 'invalid_method' => 'Ungültige Methode %s called in %s', + 'invalid_property' => 'Die %s property existiert nicht in der %s class.', + 'library' => 'library', + 'log_dir_unwritable' => 'Das Log-Verzeichnis ist nicht beschreibbar: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi war nicht in der Lage, den Controller für diese Anforderung zu bestimmen: %s', + 'no_default_route' => 'Bitte setze eine Standardroute in config/routes.php', + 'page_not_found' => 'Die angeforderte Seite, %s, konnte nicht gefunden werden.', + 'report_bug' => 'Berichte diesen Punkt an Ushahidi', + 'resource_not_found' => 'Die Anforderung %s, %s, konnte nicht gefunden werden', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Geladen in {execution_time} Sekunden, Speicherplatz {memory_usage}. Erzeugt von Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Es kann nur eine Ushahidi Instanz geben pro Seitenanforderung.', + 'uncaught_exception' => 'Uncaught %s: %s in Datei %s in Linie %s', + 'view' => 'Zeige', + 'view_set_filename' => 'Du musst den Dateinamen festlegen bevor der Render aufgerufen wird.', +); diff --git a/application/i18n/de_DE/database.php b/application/i18n/de_DE/database.php new file mode 100755 index 0000000000..8d74471162 --- /dev/null +++ b/application/i18n/de_DE/database.php @@ -0,0 +1,10 @@ + 'Datenbank Fehler: %s', + 'table_not_found' => 'Tabelle "%s" konnte in der Datenbank nicht gefunden werden. Bitte stelle sicher, dass Du die aktuellste Datenbankversion für diese Ushahidi-Version verwendest.', +); diff --git a/application/i18n/de_DE/datetime.php b/application/i18n/de_DE/datetime.php new file mode 100755 index 0000000000..8766fc03ef --- /dev/null +++ b/application/i18n/de_DE/datetime.php @@ -0,0 +1,86 @@ + 'vormittag', + 'friday' => array( + 'abbv' => 'FR', + 'full' => 'Freitag', + ) , + 'monday' => array( + 'abbv' => 'MO', + 'full' => 'Montag', + ) , + 'pm' => 'nachmittag', + 'saturday' => array( + 'abbv' => 'SA', + 'full' => 'Samstag', + ) , + 'sunday' => array( + 'abbv' => 'SO', + 'full' => 'Sonntag', + ) , + 'thursday' => array( + 'abbv' => 'DO', + 'full' => 'Donnerstag', + ) , + 'tuesday' => array( + 'abbv' => 'DI', + 'full' => 'Dienstag', + ) , + 'wednesday' => array( + 'abbv' => 'MI', + 'full' => 'Mittwoch', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Januar', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februar', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'März', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Mai', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juni', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juli', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'August', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Oktober', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dez', + 'full' => 'Dezember', + ) , +); diff --git a/application/i18n/de_DE/feeds.php b/application/i18n/de_DE/feeds.php new file mode 100755 index 0000000000..89c0346d7b --- /dev/null +++ b/application/i18n/de_DE/feeds.php @@ -0,0 +1,19 @@ + 'Datum', + 'feed_name' => array( + 'length' => 'Der Name muss zwischen 3 und 70 Zeichen lang sein.', + 'required' => 'Bitte gib den Feed Namen ein.', + ) , + 'feed_url' => array( + 'required' => 'Bitte URL eingeben.', + 'url' => 'Bitte gültige Adresse eingeben. z.B. http://www.ushahidi.com.', + ) , + 'source' => 'Quelle', + 'title' => 'Titel', +); diff --git a/application/i18n/de_DE/footer.php b/application/i18n/de_DE/footer.php new file mode 100755 index 0000000000..6f69c9681c --- /dev/null +++ b/application/i18n/de_DE/footer.php @@ -0,0 +1,9 @@ + 'php5-curl ist auf diesem System nicht installiert.', +); diff --git a/application/i18n/de_DE/form.php b/application/i18n/de_DE/form.php new file mode 100755 index 0000000000..3c92062378 --- /dev/null +++ b/application/i18n/de_DE/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Der eingetragene Standardwert ist ungültig.', + 'length' => 'Der Feldname muss zwischen 3 und 200 Zeichen lang sein.', + ) , + 'field_height' => array( + 'between' => 'Bitte wähle einen Wert zwischen 0 und 50 für die Feldhöhe.', + ) , + 'field_isdate' => array( + 'between' => 'Du hast einen ungültigen Wert für das Datumsfeld eingegeben.', + 'required' => 'Bitte gib an, ob das Datumsfeld erforderlich ist oder nicht.', + ) , + 'field_name' => array( + 'length' => 'Der Feldname muss zwischen 3 und 100 Zeichen lang sein.', + 'required' => 'Bitte gib den Feldnamen ein.', + 'duplicate' => 'Bitte einen anderen Namen für dieses Feld eingeben. Der gewählte Feldname wird schon verwendet.', + ) , + 'field_required' => array( + 'between' => 'Du hast einen ungültigen Wert für das Feld PFLICHT eingegeben.', + 'required' => 'Wähle ob das Feld ein Pflichtfeld ist oder nicht.', + ) , + 'field_type' => array( + 'numeric' => 'Bitte wähle einen gültigen Feldtypus.', + 'required' => 'Wähle einen Feldtypus aus.', + ) , + 'field_width' => array( + 'between' => 'Bitte wähle einen Wert zwischen 0 und 300 für die Feldbreite.', + ) , + 'form_description' => array( + 'required' => 'Bitte gib eine Beschreibung der Form ein.', + ) , + 'form_id' => array( + 'default' => 'Die Standardform kann nicht gelöscht werden.', + 'numeric' => 'Bitte wähle aus zu welcher Form das Feld hinzugefügt werden soll.', + 'required' => 'Bitte wähle aus zu welcher Form das Feld hinzugefügt werden soll.', + ) , + 'form_title' => array( + 'length' => 'Das Formfeld muss zwischen 3 und 100 Zeichen lang sein.', + 'required' => 'Bitte gib den Namen der Form ein.', + 'exists' => 'Ein Formular mit dieser Bezeichnung existiert bereits. Bitte eine andere Bezeichnung verwenden.', + ) , +); diff --git a/application/i18n/de_DE/imap.php b/application/i18n/de_DE/imap.php new file mode 100755 index 0000000000..3c408d3e2f --- /dev/null +++ b/application/i18n/de_DE/imap.php @@ -0,0 +1,10 @@ + 'Kann IMAP Verbindung nicht öffnen', + 'unsupported_service' => 'Dieser E-Mail-Dienst wird nicht unterstützt.', +); diff --git a/application/i18n/de_DE/installer.php b/application/i18n/de_DE/installer.php new file mode 100755 index 0000000000..52471d8cc3 --- /dev/null +++ b/application/i18n/de_DE/installer.php @@ -0,0 +1,84 @@ + 'Base Path', + 'database' => 'Datenbank', + 'database_host' => 'Datenbank Host', + 'database_host_description' => 'Wenn Du Ushahidi auf Deinem Computer installiert hast, ist es höchstwahrscheinlich "localhost". Wenn Du Ushahidi auf einem entfernten Webserver laufen lässt, kannst Du Deinen Hosting-Anbieter nach den entsprechenden Informatione fragen', + 'database_name' => 'Datenbankname', + 'database_name_description' => 'Der Name der Datenbank in der Du Ushahidi installieren möchtest', + 'db_information_link' => 'Für mehr Informationen zu Datenbanken siehe diesen Beitrag im Ushahidi-Wiki.', + 'default_language' => 'Standardsprache (Gebietsschema)', + 'default_language_description' => 'Jedes Ushahidi-Paket hat bereits einige Übersetzungen eingebaut. Du kannst aber auch Deine eigene hinzufügen.', + 'disable' => 'Deaktivieren', + 'enable' => 'Aktivieren', + 'error_summary' => 'Unten siehst Du eine Liste der Fehler die wir gefunden haben', + 'files_location_text' => 'Der Ort auf Deinem Server an dem Du Deine Ushahidi-Dateien abgelegt hast. Wir haben diesen Wert automatisch berechnet, stelle sicher ob er korrekt ist. Wenn das Feld leer ist, keine Bange. Es bedeutet nur, dass Ushahidi im obersten Verzeichnis installiert ist. ', + 'finished' => 'Beendet', + 'general' => 'Allgemein', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Jeder kann einen API-Schlüssel bekommen. Besorg\' Dir Deinen jetzt', + 'go_back' => 'Zurück', + 'index' => array( + 'advanced' => 'EXPERTEN INSTALLATION', + 'advanced_installation_description' => 'In diesen 5-Schritten werden alle grundlegenden Einstellungen, d.h. Server, Karte, Seitenname und Kontaktdetails, erledigt.', + 'basic_installation' => 'Standard INSTALLATION', + 'basic_installation_description' => 'Einfach und schnell. Alles was Du brauchst ist das root-Verzeichnis Deiner Website und die Datenbankinformationen. Wähle diese Möglichkeit wenn Du schnell fertig werden willst. Alles Weitere kannst Du später noch konfigurieren.', + 'proceed' => 'Fortfahren', + 'welcome' => 'Willkommen zum Ushahidi-Server Installationsprozess. Wähle unten die Art der Installation.', + ) , + 'installation_successful' => 'Installation erfolgreich.', + 'mail_server' => 'Mail Server', + 'mail_server_host' => 'Mail Server Host', + 'mail_server_host_description' => 'Beispiele: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mail Server Passwort', + 'mail_server_password_description' => 'Das Passwort, das Du normalerweise benutzt um Dich in Deinen eMail-Konto einzuloggen.', + 'mail_server_port' => 'Mail Server Port', + 'mail_server_port_description' => 'Standard Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Mail Server Typ', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). Was ist der Unterschied (in Englisch)?', + 'mail_server_username' => 'Mail Server Benutzername', + 'mail_server_username_description' => 'Wenn Du Gmail, Hotmail, oder Yahoo Mail verwendest, gib die volle eMailadresse als Benutzernamen ein.', + 'map' => 'Karte', + 'map_provider' => 'Kartenanbieter', + 'map_provider_description' => 'Ushahidi funktioniert mit allen dieser vier Anbieter einwandfrei: Google, Bing, Yahoo oder Open Street Map. Wähle am Besten denjenigen, der die genauesten Karten für Deine Gegend hat.', + 'other_steps' => 'Weitere Schritte...', + 'password' => 'Passwort', + 'password_description' => 'Datenbank Passwort', + 'previous' => 'Zurück', + 'restart_apache' => 'Bitte starte Deinen Apache-Server neu', + 'select_mail_server_ssl' => 'Aktiviere oder deaktiviere SSL', + 'select_mail_server_ssl_description' => 'Einige Mail-Server geben Dir die Möglichkeit beim Herstellen einer Verbindung SSL zu nutzen. SSL ist empfohlen da es für zusätzliche Sicherheit sorgt.', + 'setup_sms' => 'Setup your SMS server', + 'site_email' => 'Hauptemailadresse', + 'site_email_alerts' => 'Site Alert eMail-Adresse', + 'site_email_alerts_description' => 'Wenn Deine Besucher eMail-Benachrichtigungen abonnieren, ist dies die Absenderadresse. Diese Adresse muss nicht identisch mit der Site eMail-Adresse sein.', + 'site_email_description' => 'Die seitenweite eMail-Kommunikation wird über diese Adresse abgewickelt. ', + 'site_name' => 'Seitenname', + 'site_name_description' => 'Name Deiner Seite', + 'site_tagline' => 'Untertitel der Seite', + 'site_tagline_description' => 'Dein Untertitel', + 'summary' => array( + 'text_1' => 'Die unten gelisteten DAteien und Ordner müssen vom Webserver beschreibbar sein.', + 'text_2' => '

Anweisungen wie man die Daterechte ändert:

+ ', + 'text_3' => 'Bevor to anfängst solltest to sicherstellen, dass folgende Dateien und Ordner für Deinen Webserver beschreibbar sind. Das bedeutet auch die Dateiberechtigungen zu ändern.', + 'text_4' => 'Für den Installationsprozess brauchst Du folgende Informationen', + ) , + 'table_prefix' => 'Tabellen Präfix', + 'table_prefix_description' => 'Normalerweise brauchst Du das Präfix nicht zu ändern. Wenn Du allerdings mehrere Ushahidi-Installationen in derselben Datenbanken installieren willst, kannst Du das Präfix hier ändern.', + 'title' => 'Titel', + 'to_login' => 'Um Dich einzuloggen, gehe zu', + 'upload_data' => 'Hochladen von Berichtsdaten', + 'username' => 'Benutzername', + 'username_description' => 'Dein Datenbankbenutzername', + 'use_credentials' => 'und verwende die folgenden Zugangsdaten', + 'view_site' => 'Website ansehen', +); diff --git a/application/i18n/de_DE/layer.php b/application/i18n/de_DE/layer.php new file mode 100755 index 0000000000..e3022daaa0 --- /dev/null +++ b/application/i18n/de_DE/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Angabe der Farbe im Hex-Code (6 Zeichen).', + 'required' => 'Die Farbeinstellung muss angegeben werden.', + ) , + 'layer_file' => array( + 'type' => 'Das Dateifeld enthält eine ungültige Datei. Erlaubte Formate sind .KMZ, .KML.', + 'valid' => 'Das Dateifeld enthält eine ungültige Datei.', + ) , + 'layer_name' => array( + 'length' => 'Das Namensfeld muss mindestens 3 und darf höchstens 80 Zeichen lang sein.', + 'required' => 'Das Namensfeld muss ausgefüllt sein.', + ) , + 'layer_url' => array( + 'atleast' => 'Entweder muss eine KML-URL oder eine KML-Datei angegeben werden.', + 'both' => 'Beides geht nicht: Entweder Datei oder URL.', + 'url' => 'Bitte gib eine gültige URL an, bspw. http://www.ushahidi.com/layerl.kml.', + ) , +); diff --git a/application/i18n/de_DE/libraries.php b/application/i18n/de_DE/libraries.php new file mode 100755 index 0000000000..cbe14d0f71 --- /dev/null +++ b/application/i18n/de_DE/libraries.php @@ -0,0 +1,27 @@ + 'Keine Verbindung zum Akismet Server möglich.', + 'akismet_cannot_retrieve' => 'Die Antwort von Akismet wurde nicht empfangen.', + 'api_library_not_found' => 'Die API Bibliothek %s für die %s Klasse wurde nicht gefunden. Bitte kontrolliere die API task routing Tabelle.', + 'askimet_invalid_apikey' => 'Dein Akismet API Schlüssel ist nicht gültig.', + 'clickatell_fopen_error' => 'Fehler beim Ausführen der fopen Sendemethode!
Kontroliere ob PHP OpenSSL unterstützt und ob die PHP Version größer ist als 5.2', + 'clickatell_message_too_long' => 'Deine unicode Nachricht ist zu lang! (Aktuelle Länge=', + 'clickatell_no_destination_address' => 'Bitte spezifiziere die Zieladresse (NACH)!', + 'clickatell_no_sender_address' => 'Bitte spezifiziere die Quelladresse (VON)!', + 'clickatell_unicode_message_too_long' => 'Deine unicode Nachricht ist zu lang! (Aktuelle Länge=', + 'clickatell_unsupported_method' => 'Nicht unterstützte Methode zum Senden!', + 'invalid_api_library' => 'Die API-Bibliothek %s ist ungültig. Alle API-Bibliotheken müssen Unterklassen sein von %s', + 'upgrade_directory_not_deleted' => 'Verzeichnis %s kann nicht gelöscht werden.', + 'upgrade_extracting_error' => 'Fehler beim Auspacken: %s', + 'upgrade_failed' => 'Herunterladen der Aktualisierung fehlgeschlagen. HTTP Status Code', + 'upgrade_file_not_copied' => 'Datei %s konnte nicht kopiert werden.', + 'upgrade_file_not_deleted' => 'Datei %s konnte nicht gelöscht werden.', + 'upgrade_title' => 'Ushahidi Aktualisierungsscript', + 'upgrade_zip_error' => 'Die heruntergeladene Ushahidi zip-Datei %s, konnte nicht geschrieben werden.', + 'riverid_variable_not_available' => '%s ist in der RiverID Klasse nicht verfügbar.', +); diff --git a/application/i18n/de_DE/maintenance.php b/application/i18n/de_DE/maintenance.php new file mode 100644 index 0000000000..545195e3d0 --- /dev/null +++ b/application/i18n/de_DE/maintenance.php @@ -0,0 +1,9 @@ + 'Entschuldigung, unsere Seite ist derzeit offline und im Wartungsbetrieb. Bitte versuchen Sie es in ein paar Minuten erneut.', +); diff --git a/application/i18n/de_DE/message.php b/application/i18n/de_DE/message.php new file mode 100755 index 0000000000..261d9e94fb --- /dev/null +++ b/application/i18n/de_DE/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Bitte gib einen gültigen Sicherheitscode ein.', + 'required' => 'Bitte gib den Sicherheitscode ein.', + ) , + 'email' => array( + 'email' => 'Das E-Mail-Feld scheint keine gültige Mailadresse zu enthalten.', + 'length' => 'Das E-Mail-Feld muss zwischen 4 und 64 Zeichen lang sein.', + 'required' => 'Das E-Mail-Feld ist erforderlich, wenn die Box angehakt wurde. ', + ) , + 'message' => array( + 'required' => 'Das Kommentarfeld ist notwendig.', + ) , + 'name' => array( + 'length' => 'Das Namensfeld muss min. 3 Zeichen lang sein.', + 'required' => 'Das Namensfeld ist notwendig.', + ) , + 'phone' => array( + 'length' => 'Das Telefonfeld ist nicht gültig.', + ) , +); diff --git a/application/i18n/de_DE/mhi.php b/application/i18n/de_DE/mhi.php new file mode 100755 index 0000000000..20ce2a37af --- /dev/null +++ b/application/i18n/de_DE/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Bitte gib einen gültigen Sicherheitscode ein.', + 'required' => 'Bitte gib den Sicherheitscode ein.', + ) , + 'contact_email' => array( + 'email' => 'Das eMail-Feld scheint keine gültige eMail-Adresse zu enthalten.', + 'required' => 'Bitte gib eine gültige eMailadresse ein.', + ) , + 'contact_message' => array( + 'required' => 'Das Nachrichtenfeld muss Text enthalten.', + ) , + 'contact_subject' => array( + 'length' => 'Die Betreffzeile muss min. 3 Zeichen lang sein.', + 'required' => 'Die Betreffzeile muss Text enthalten.', + ) , +); diff --git a/application/i18n/de_DE/notifications.php b/application/i18n/de_DE/notifications.php new file mode 100755 index 0000000000..5450ea3cf7 --- /dev/null +++ b/application/i18n/de_DE/notifications.php @@ -0,0 +1,35 @@ + 'Diese Nachricht wurde von Deiner Webseite geschickt.', + 'admin_login_url' => 'Administrator Login', + 'admin_new_comment' => array( + 'message' => 'Ein neuer Kommentar wurde eingereicht bezogen auf:', + 'subject' => 'Neuer Kommentar', + ) , + 'admin_new_email' => array( + 'message' => 'Eine neue eMail wurde an Deine Website geschickt.', + 'subject' => 'Neue eMail.', + ) , + 'admin_new_report' => array( + 'message' => 'Ein neuer Bericht wurde auf Deiner Website eingereicht.', + 'subject' => 'Neuer Bericht', + ) , + 'admin_new_sms' => array( + 'message' => 'Eine neue Textnachricht wurde an Deine Website geschickt.', + 'subject' => 'Neue Textnachricht', + ) , + 'member_new_alert' => array( + 'message' => 'Du hast eine neue Meldung bekommen.', + 'subject' => 'Neue Meldung!', + ) , + 'member_new_message' => array( + 'message' => 'Du hast eine private Nachricht erhalten', + 'subject' => 'Neue private Nachricht', + 'footer' => 'Für eine Antwort klicke bitte auf:', + ) , +); diff --git a/application/i18n/de_DE/page.php b/application/i18n/de_DE/page.php new file mode 100644 index 0000000000..9f588d28f3 --- /dev/null +++ b/application/i18n/de_DE/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Bitte gib einen Seitentitel an.', + 'length' => 'Der Seitentitel muss mindestens 3 bis maximal 150 Zeichen lang sein.', + ) , + 'page_tab' => array( + 'required' => 'Bitte gib einen Seitentab Namen an.', + ) , + 'page_description' => array( + 'required' => 'Bitte gib eine Seitenbeschreibung an.', + ) , +); diff --git a/application/i18n/de_DE/permissions.php b/application/i18n/de_DE/permissions.php new file mode 100644 index 0000000000..76bc4278fe --- /dev/null +++ b/application/i18n/de_DE/permissions.php @@ -0,0 +1,27 @@ + 'Berichte anzeigen', + 'reports_edit' => 'Berichte erstellen/bearbeiten/löschen', + 'reports_approve' => 'Berichte bestätigen', + 'reports_verify' => 'Berichte beglaubigen', + 'reports_comments' => 'Kommentare zu Berichten verwalten', + 'reports_download' => 'Berichte herunterladen', + 'reports_upload' => 'Berichte hochladen', + 'messages' => 'Berichte verwalten', + 'messages_reporters' => 'Verwalte Berichterstatter', + 'stats' => 'Betrachte Statistiken', + 'settings' => 'Einstellungen verändern', + 'manage' => 'Panel verwalten', + 'users' => 'Benutzer verwalten', + 'manage_roles' => 'Rollenverteilung verwalten', + 'checkin' => 'Kann einchecken', + 'checkin_admin' => 'Checkins verwalten', + 'admin_ui' => 'Zugang Administrationsoberfläche', + 'member_ui' => 'Zugang Benutzeroberfläche', + 'delete_all_reports' => 'Alle Berichte löschen', +); diff --git a/application/i18n/de_DE/private_message.php b/application/i18n/de_DE/private_message.php new file mode 100644 index 0000000000..6dc39c688b --- /dev/null +++ b/application/i18n/de_DE/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Übergeordnete ID muss nummerisch sein', + ) , + 'private_to' => array( + 'required' => 'Empfänger wird benötigt', + 'exists' => 'Der Empfänger existiert nicht', + ) , + 'private_subject' => array( + 'required' => 'Die Betreffzeile wird benötigt', + 'length' => 'Die Betreffzeile muss mindestens 3 bis 150 Zeichen lang sein', + ) , + 'private_message' => array( + 'required' => 'Das Benachrichtungsfeld ist notwendig', + ) , +); diff --git a/application/i18n/de_DE/report.php b/application/i18n/de_DE/report.php new file mode 100755 index 0000000000..2616a8672a --- /dev/null +++ b/application/i18n/de_DE/report.php @@ -0,0 +1,139 @@ + 'Fehler!', + 'country_name' => array( + 'single_country' => 'Diese Installation erstreckt sich nur über ein Land. Bitte stelle sicher, dass sich der Ort des Berichts nur auf das Land %s bezieht.', + ) , + 'custom_field' => array( + 'values' => 'Bitte geben Sie einen gültigen Wert für "%s" ein. ', + 'numeric' => 'Das Feld "%s" darf nur Zahlen enthalten.', + 'required' => 'Das Feld "%s" wird benötigt.', + 'not_exist' => 'Das feld "%s" existiert nicht.', + 'permission' => 'Das Feld "%s" kann nicht von ihrem Profil aus bearbeitet werden.', + 'email' => 'Das Feld "%s" muss eine gültige E-Mail Adresse enthalten.', + 'phone' => 'Das Feld "%s" muss eine gültige Telefonnummer enthalten.', + 'date_mmddyyyy' => 'Das Feld "%s" muss ein gültiges Datum enthalten (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'Das Feld "%s" muss ein gültiges Datum enthalten (MM/DD/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Bitte wähle einen gültigen Eintrag aus für den Download.', + 'numeric' => 'Bitte wähle einen gültigen Eintrag aus für den Download.', + ) , + 'data_active' => array( + 'between' => 'Bitte wähle "unbestätigte Berichte" oder "bestätigte Berichte" oder Beides. ', + 'numeric' => 'Bitte wähle "unbestätigte Berichte" oder "bestätigte Berichte" oder Beides.', + 'required' => 'Bitte wähle "unbestätigte Berichte" oder "bestätigte Berichte" oder Beides.', + ) , + 'data_verified' => array( + 'between' => 'Bitte wähle "unbestätigte Berichte" oder "bestätigte Berichte" oder Beides.', + 'numeric' => 'Bitte wähle "unbestätigte Berichte" oder "bestätigte Berichte" oder Beides.', + 'required' => 'Bitte wähle "unbestätigte Berichte" oder "bestätigte Berichte" oder Beides.', + ) , + 'data_point' => array( + 'between' => 'Bitte wähle einen gültigen Bericht aus für den Download', + 'numeric' => 'Bitte wähle einen gültigen Bericht aus für den Download', + 'required' => 'Bitte wähle einen gültigen Bericht aus für den Download', + ) , + 'format' => array( + 'required' => 'Für das Herunterladen muss zwischen dem CSV oder XML Format ausgewählt werden.', + 'valid' => 'Bitte wähle ein Format zum Herunterladen Deiner Berichte', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Das Feld VON scheint ungültig zu sein.', + 'range' => 'Bitte geben Sie ein VON Datum ein. Es kann nicht größer sein als das heutige', + ) , + 'incident_active' => array( + 'between' => 'Gib einen gültigen Wert ein, um diesen Bericht zu bestätigen.', + 'required' => 'Gib einen gültigen Wert ein, um diesen Bericht zu bestätigen.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Das am/pm Feld scheint ungültig zu sein.', + ) , + 'incident_category' => array( + 'numeric' => 'Das Kategoriefeld scheint keinen gültigen Wert zu beinhalten.', + 'required' => 'Das Kategoriefeld ist ein Pflichtfeld.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Das Datumsfeld scheint keinen gültigen Wert zu beinhalten.', + 'date_mmddyyyy' => 'Das Datumsfeld scheint keinen gültigen Wert zu beinhalten.', + 'required' => 'Das Datumsfeld ist ein Pflichtfeld.', + ) , + 'incident_description' => array( + 'required' => 'Das Beschreibungsfeld ist notwendig.', + ) , + 'incident_hour' => array( + 'between' => 'Das Stundenfeld scheint keinen gültigen Wert zu beinhalten.', + 'required' => 'Das Stundenfeld ist ein Pflichtfeld.', + ) , + 'incident_information' => array( + 'alpha' => 'Bitte gib einen gültigen Wert ein für die Wahrscheinlichkeit der Information.', + 'length' => 'Bitte gib einen gültigen Wert ein für die Wahrscheinlichkeit der Information.', + ) , + 'incident_minute' => array( + 'between' => 'Das Minutenfeld scheint keinen gültigen Wert zu beinhalten.', + 'required' => 'Das Minutenfeld ist ein Pflichtfeld.', + ) , + 'incident_news' => array( + 'url' => 'Das Feld für die Nachrichtenquelle scheint keine gültige URL zu beinhalten.', + ) , + 'incident_photo' => array( + 'size' => 'Foto-Uploads sind in der Grösse begrenzt auf 2MB.', + 'type' => 'Das Fotoformat scheint ungültig zu sein. Akzeptierte Formate sind .JPG, .PNG and .GIF.', + 'valid' => 'Die hochzuladene Datei scheint fehlerhaft zu sein.', + ) , + 'incident_source' => array( + 'alpha' => 'Bitte gib einen gültigen Wert ein für die Verlässlichkeit der Quelle', + 'length' => 'Bitte gib einen gültigen Wert ein für die Verlässlichkeit der Quelle', + ) , + 'incident_title' => array( + 'length' => 'Das Titelfeld muss zwischen 3 und 200 Zeichen lang sein.', + 'required' => 'Das Titelfeld ist notwendig.', + 'csrf' => 'Mögliche CSRF Attacke. Möchtest du wirklich einen Bericht erstellen/bearbeiten?', + ) , + 'incident_verified' => array( + 'between' => 'Bitte gib einen gültigen Wert ein für die Verifizierung des Berichts', + 'required' => 'Bitte gib einen gültigen Wert ein für die Verifizierung des Berichts', + ) , + 'incident_video' => array( + 'url' => 'Der Video-Link scheint ungültig zu sein.', + ) , + 'latitude' => array( + 'between' => 'Der Längengrad ist ungültig.', + 'required' => 'Der Längengrad ist notwendig. Bitte klicke auf die Karte um einen auszuwählen.', + ) , + 'locale' => array( + 'alpha_dash' => 'Das Ortsfeld ist ungültig. ', + 'exists' => 'Der Bericht hat bereits eine Übersetzung.', + 'length' => 'Das Ortsfeld ist ungültig.', + 'locale' => 'Original und Übersetzung haben die gleiche Sprache.', + 'required' => 'Der Ort ist notwendig.', + ) , + 'location_name' => array( + 'length' => 'Der Ort muss zwischen 3 und 200 Zeichen lang sein.', + 'required' => 'Das Feld Ort ist notwendig.', + ) , + 'longitude' => array( + 'between' => 'Der Längengrad scheint ungültig zu sein?', + 'required' => 'Der Längengrad ist notwendig. Bitte klicke auf einen Punkt in der Karte.', + ) , + 'person_email' => array( + 'email' => 'Die E-Mail-Adresse scheint ungültig zu sein.', + 'length' => 'Das Feld muss eine Länge zwischen 4 und 64 Zeichen haben.', + ) , + 'person_first' => array( + 'length' => 'Das Feld muss eine Länge zwischen 3 und 100 Zeichen haben.', + ) , + 'person_last' => array( + 'length' => 'Das Feld muss eine Länge zwischen 3 und 100 Zeichen haben.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Das BIS Datum scheint keinen gültigen Wert zu enthalten.', + 'range' => 'Bitte geben Sie ein gültiges BIS-Datum ein. Es kann nicht größer sein als HEUTE.', + 'range_greater' => 'Dein VON Datum kann nicht größer sein als das BIS Datum.', + ) , +); diff --git a/application/i18n/de_DE/reporters.php b/application/i18n/de_DE/reporters.php new file mode 100755 index 0000000000..4786481496 --- /dev/null +++ b/application/i18n/de_DE/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Das Feld \'Breitengrad\' enthält einen ungültigen Wert.', + 'required' => 'Das Feld \'Breitengrad\' ist notwendig. Klicke auf die Karte, um eine Position auszuwählen.', + ) , + 'level_id' => array( + 'numeric' => 'Das Reporterlevel scheint ungültig zu sein.', + 'required' => 'Das Reporterlevel scheint ungültig zu sein.', + ) , + 'location_name' => array( + 'length' => 'Das Feld \'Name\' des Ortes muss zwischen 3 und 200 Zeichen lang sein.', + 'required' => 'Die Ortsbezeichnung ist ein Pflichtfeld.', + ) , + 'longitude' => array( + 'between' => 'Das Feld \'Längengrad\' enthält einen ungültigen Wert.', + 'required' => 'Das Feld \'Längengrad\' ist notwendig. Klicke auf die Karte, um eine Position auszuwählen.', + ) , + 'reporter_id' => array( + 'numeric' => 'Ungültiger Reporter', + 'required' => 'Ungültiger Reporter', + ) , +); diff --git a/application/i18n/de_DE/reports.php b/application/i18n/de_DE/reports.php new file mode 100644 index 0000000000..07a0c1c80f --- /dev/null +++ b/application/i18n/de_DE/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Bitte bestätige, dass Du ein Element ausgewählt hast', + 'numeric' => 'Bitte bestätige, dass Du ein Element ausgewählt hast', + 'categories_required' => 'Berichte müssen kategorisiert werden, bevor sie bestätigt werden können', + ) , + 'action' => array( + 'permission' => 'Du verfügst nicht über die nötigen Rechte, um diese Aktion durchzuführen', + ) , + 'uploadfile' => array( + 'required' => 'Du musst ein Feld zum Hochladen auswählen.', + 'type' => 'Die hochzuladende Datei muss entweder im .csv oder .xml Format vorliegen.', + 'valid' => 'Die hochzulandende Datei ist ungültig.', + ) , +); diff --git a/application/i18n/de_DE/roles.php b/application/i18n/de_DE/roles.php new file mode 100755 index 0000000000..1226d5a63a --- /dev/null +++ b/application/i18n/de_DE/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Das Feld \'Beschreibung\' muss zwischen 3 und 100 Zeichen lang sein.', + 'required' => 'Das Feld \'Beschreibung\' ist notwendig.', + ) , + 'name' => array( + 'alpha_numeric' => 'Das Namensfeld darf nur Zeichen oder Zahlen beinhalten.', + 'length' => 'Das Namensfeld muss zwischen 2 und 30 Zeichen lang sein.', + 'nomodify' => 'Die Rolle SuperAdmin kann nicht verändert werden.', + 'required' => 'Das Feld Name ist notwendig.', + ) , + 'access_level' => array( + 'numeric' => 'Für die Zugangsebene muss eine Nummer zwischen 0 und 100 ausgewählt werden.', + 'required' => 'Für die Zugangsebene muss eine Nummer zwischen 0 und 100 ausgewählt werden.', + ) , + 'permissions' => array( + 'numeric' => 'Für die Zugangsebene muss eine Nummer zwischen 0 und 100 ausgewählt werden.', + ) , +); diff --git a/application/i18n/de_DE/settings.php b/application/i18n/de_DE/settings.php new file mode 100755 index 0000000000..ff209cb607 --- /dev/null +++ b/application/i18n/de_DE/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'Das "Kommentare erlauben"-Feld scheint keinen gültigen Wert zu haben.', + 'required' => 'Das "Kommentare erlauben"-Feld wird benötigt.', + ) , + 'allow_feed' => array( + 'between' => 'Das "Beinhalte Feed"-Feld scheint keinen gültigen Wert zu haben.', + 'required' => 'Das "Feeds beinhalten"-Feld wird benötigt.', + ) , + 'allow_feed_category' => array( + 'between' => 'Die Feld für die Feed-Kategorie hat anscheinend keinen korrekten Wert.', + 'required' => 'Die Angaben für die Feed-Kategorie werden benötigt.', + ) , + 'allow_alerts' => array( + 'between' => 'Das "Erlaube Alarme"-Feld beinhaltet keinen Wert.', + 'required' => 'Das "Erlaube-Alarme"-Feld wird benötigt.', + ) , + 'allow_reports' => array( + 'between' => 'Das "Erlaube Berichte"-Feld scheint keinen gültigen Wert zu haben.', + 'required' => 'Das "Erlaube Berichte"-Feld wird benötigt.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Das "Stats teilen"-Feld scheint keinen gültigen Wert zu haben.', + 'required' => 'Das "Stat teilen"-Feld wird benötigt.', + ) , + 'api' => array( + 'default_record_limit' => 'Standardanzahl von Records der API-Anforderung', + 'maximum_record_limit' => 'Maximale Anzahl an Records die pro API-Anfrage geholt werden.', + 'maximum_requests_per_ip_address' => 'Maximale Anzahl an API-Anfragen durch pro IP-Adresse', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Das "Akismet"-Feld scheint keinen gültigen Wert zu haben.', + 'length' => 'Das "Akismet"-Feld scheint keinen gültigen Wert zu haben.', + ) , + 'banner_image' => array( + 'type' => 'Der Banner scheint ein ungültiges Format zu haben. Die akzeptierten Formate sind: .JPG, .PNG und .GIF.', + 'size' => 'Bitte stellen Sie sicher, dass "Bilderfeld" die Größe von weniger als 250 KB hat.', + 'valid' => 'Das Bilderfeld enthält eine ungültige Datei.', + ) , + 'cache_pages' => array( + 'between' => 'Das Cache Feld ist notwendig.', + 'required' => 'Das Cache Feld ist ungültig', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Das Cache Feld ist ungültig', + 'required' => 'Das Cache Feld ist notwendig.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Es scheint, dass Dein Server keine sauberen URLs generieren kann. Du musst also erst die Konfiguration Deines Servers ändern, damit er saubere URLs (clean URLs) anbieten kann. Eine Hilfe zur Aktivierung sauberer URLs steht im Forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs. Without "index.php" in the URL.', + 'enable_clean_url' => 'Erlaube saubere URLs', + 'title' => 'Saubere URLs', + ) , + 'clickatell_api' => array( + 'length' => 'Das Clickatell API Nummernfeld darf nicht länger als 20 Zeichen sein.', + 'required' => 'Das Clickatell API Nummernfeld wird benötigt. ', + ) , + 'clickatell_password' => array( + 'length' => 'Das Clickatell Passwort Feld muss mindestens 5 bis maximal 50 Zeichen lang sein.', + 'required' => 'Das Clickatell Passwort Feld wird benötigt.', + ) , + 'clickatell_username' => array( + 'length' => 'Das Clickatell Benutzernamen Feld darf nicht länger als 50 Zeichen sein. ', + 'required' => 'Das Clickatell Benutzernamen Feld wird benötigt.', + ) , + 'configure_map' => 'Konfiguriere Karte', + 'default_location' => 'Standardposition', + 'default_map_all' => array( + 'alpha_numeric' => 'Das "Farbe des Feeds"-Feld scheint keinen gültigen Wert zu haben.', + 'length' => 'Die Angabe darf nicht länger als 6 Zeichen lang sein.', + 'required' => 'Die Angabe der Farbe wird benötigt.', + ) , + 'default_map_view' => 'Standard Kartenansicht', + 'default_zoom_level' => 'Standard Zoom Level', + 'download_city_list' => 'Empfange Staedte von Geonames', + 'email_host' => array( + 'length' => 'Die Angaben beim Mailserver Port sind zu lang.', + 'numeric' => 'Die Portangabe für den Mailserver darf nur Nummern beinhalten.', + ) , + 'email_password' => array( + 'length' => 'Das Mailserver Passwort muss mindest 5 bis maximal 50 Zeichen lang sein.', + 'required' => 'Das Mailserver Passwort wird benötigt.', + ) , + 'email_port' => array( + 'length' => 'Die Angaben beim Server Port sind zu lang.', + 'numeric' => 'Der Port für den Mailserver wird benötigt.', + ) , + 'email_servertype' => array( + 'length' => 'Die Angaben beim Server Port sind zu lang.', + 'required' => 'Der Mailserver Typ wird benötigt.', + ) , + 'email_username' => array( + 'length' => 'Der Benutzername für den Mailserver darf nicht länger als 50 Zeichen sein.', + 'required' => 'Der Benutzername für den Mailserver wird benötigt.', + ) , + 'facebook' => array( + 'title' => 'Facebook Einstellungsoptionen', + 'description' => 'Für die unten stehenden Informationen musst Du eine neue Facebook Anwendung einrichten bei', + 'description_2' => 'Diese Einstellungen ermöglichen es Benutzern, sich über Facebook anzumelden, tut dies nicht erstellen Sie eine Facebook-Anwendung für die Bereitstellung ', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Für die Google Analytics Funkion muss die Web Property ID im Format UA-XXXXX-XX vorliegen.', + ) , + 'https' => array( + 'enable_https' => 'HTTPS erlauben', + 'https_disabled' => 'Diese Option erlaubt den unsicheren Zugang zu Ushahidi; ohne "https://" im URL Prefix', + 'https_enabled' => 'Diese Option erlaubt den sicheren Zugang zu Ushahid; mit https im URL Prefix', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value?', + 'required' => 'Die Angabe zu den Elementen auf der Seite (im Frontend) wird benötigt.', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value?', + 'required' => 'Die Angabe zu den Elementen auf der Seite (als Admin) wird benötigt.', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'zoom' => 'Zoom Level', + ) , + 'map_provider' => array( + 'choose' => 'Wählen Sie einen Kartenanbieter', + 'enter_api' => 'Eingabe des API Key', + 'get_api' => 'Fordern Sie einen API Key an', + 'info' => 'Die Auswahl des Kartenanbieters ist ein ganz geradliniger Prozess. Wähle einen Anbieter aus, beantrage dort einen sog. "API key" und trage diesen API key hier ein.', + 'name' => 'Kartenanbieter', + ) , + 'map_timeline' => 'Kartenhistorie', + 'map_settings' => 'Karteneinstellungen', + 'multiple_countries' => 'Umspannt diese Ushahidi Installation mehrere Länder?', + 'select_default_location' => 'Bitte wählen sie ihr Standardland', + 'set_location' => 'Klicken Sie auf die Karte, um Ihre exakte Position zu setzen.', + 'site' => array( + 'allow_clustering' => 'Cluster Reports auf der Karte', + 'allow_comments' => 'Erlaube Benutzern, Kommentare zu Berichten abzugeben', + 'allow_feed' => 'Erlaube den RSS News Feed auf der Website', + 'allow_feed_category' => 'Erzeuge neue Kategorie aus Feeds', + 'allow_alerts' => 'Erlaube Benutzern, Alarme zu abonnieren', + 'allow_reports' => 'Erlaube Nutzern, Meldungen zu erzeugen.', + 'api_akismet' => 'Akismet Schlüssel', + 'banner' => 'Seitenbanner', + 'blocks_per_row' => 'Blöcke pro Reihe', + 'cache_pages' => 'Cache Seiten', + 'cache_pages_lifetime' => 'Seitencache Lebenszeit', + 'checkins' => 'Erlaube Checkins', + 'copyright_statement' => 'Copyright Statement', + 'default_category_colors' => 'Standardfarbe für alle Kategorien', + 'default_category_icons' => 'Default Icon für alle Kategorien', + 'delete_banner_image' => 'Lösche das Bannerbild', + 'delete_default_map_all_icon' => 'Lösche das Default Icon', + 'display_contact_page' => 'Zeige Kontaktseite', + 'display_howtohelp_page' => 'Zeige "Hilfe" Seite', + 'email_alerts' => 'Email Addresse fuer Alarme', + 'email_notice' => 'Zum Empfangen von Mails muessen Sie Ihre Email-Einstellungen konfigurieren.', + 'email_site' => 'Seite Emailaddresse', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Eintraege pro Seite - Front End', + 'items_per_page_admin' => 'Eintraege pro Seite - Admin', + 'kismet_notice' => 'Verhindere Kommentarspam durch den Gebrauch von Akismet, von Automattic.
Du kannst einen kostenlosen API Akismet key bekommen, indem Du bei WordPress.com ein Benutzerkonto anlegst ', + 'laconica_configuration' => 'Laconica Benutzerkennung', + 'laconica_site' => 'Laconica Seite', + 'language' => 'Sprache der Seite', + 'manually_approve_users' => 'Manuell bestätigte Benutzer', + 'message' => 'Seiten Nachricht', + 'name' => 'Seitenname', + 'private_deployment' => 'Private Deployment', + 'require_email_confirmation' => 'Benötige Benutzermailbestätigung', + 'submit_report_message' => 'Schicke Bericht', + 'share_site_stats' => 'Share Site Statistics in API', + 'tagline' => 'Seiten Untertitel', + 'timezone' => 'Zeitzone', + 'title' => 'Seiteneinstellungen', + 'twitter_configuration' => 'Twitter Credentials', + 'twitter_hashtags' => 'Hashtags - trennen durch Kommas ', + 'feed_geolocation_user' => 'Feeds Ortsangaben - Ortsnamen Benutzername', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address?', + 'length' => 'Die E-Mail Adresse für die Website muss mindestens 4 bis maximal 100 Zeichen lang sein.', + ) , + 'site_name' => array( + 'length' => 'Der Seitentitel muss mindestens 3 bis maximal 50 Zeichen lang sein.', + 'required' => 'Der Seitentitel wird benötigt.', + ) , + 'site_tagline' => array( + 'length' => 'Die Tagline muss mindestens 3 bis maximal 100 Zeichen lang sein.', + 'required' => 'Eine Tagline wird benötigt.', + ) , + 'sms' => array( + 'clickatell_api' => 'Ihre Clickatell API Nummer', + 'clickatell_check_balance' => 'Checken Sie Ihr Clickatell Buthaben', + 'clickatell_load_balance' => 'Lade Guthaben', + 'clickatell_password' => 'Ihr Clickatell Passwort', + 'clickatell_text_1' => 'Registriere Dich beim Clickatell Dienst indem Du hier klickst', + 'clickatell_text_2' => 'Geben Sie Ihre Clickatell Zugangsdaten ein.', + 'clickatell_username' => 'Ihr Clickatell Benutzername', + 'flsms_description' => 'FrontlineSMS ist eine freie Open Source Software, die einen Laptop und ein Mobilfunkgerät in einen zentralen Kommunikationshub verwandelt. Einmal installiert erlaubt das Programm den Benutzern, Textnachrichten über Mobilfunkgeräte an große Benutzergruppen zu schicken und von diesen zu empfangen. Klicke auf die graue Box, um einen Download von FrontlineSMS.com anzufordern.', + 'flsms_download' => 'FrontlineSMS herunterladen und installieren', + 'flsms_instructions' => 'Detaillierte Anweisungen zum Senden von SMS aus der FronlineSMS-Installation finden Siehier. Zum einrichten der Synchronisierung mit FrontlineSMS sind die URL und der API-Schlüssel erforderlich. ', + 'flsms_link' => 'Kopieren und fügen Sie diese in das FrontlineSMS Feld "Adresse"', + 'flsms_key' => 'Kopieren und fügen Sie diese in das FrontlineSMS Feld "Ushahidi API Schlüssel"', + 'flsms_synchronize' => 'FrontlineSMS zu diesem Ereignis-Einsatz verbinden ', + 'flsms_text_1' => 'Gib die Telefonnummer für die Verbindung zu Frontline SMS ein.', + 'flsms_text_2' => 'Gib die Nummer ohne + oder Striche ein.', + 'option_1' => 'Option 1: Nutze Frontline SMS', + 'option_2' => 'Option 2: Nutze ein globales SMS Gateway', + 'title' => 'SMS Setup Optionen', + ) , + 'sms_no1' => array( + 'length' => 'Das Telefonfeld 1 ist ungültig.', + 'numeric' => 'Das Telefonfeld 1 sollte nur Nummern enthalten.', + ) , + 'sms_no2' => array( + 'length' => 'Das Telefonfeld 2 ist zu lang.', + 'numeric' => 'Das Telefonfeld 2 sollte nur Nummern enthalten.', + ) , + 'sms_no3' => array( + 'length' => 'Das Telefonfeld 3 ist zu lang.', + 'numeric' => 'Das Telefonfeld darf nur Nummern enthalten', + ) , + 'twitter' => array( + 'title' => 'Twitter Setup Optionen', + 'description' => 'Für die unten stehenden Informationen musst Du eine neue Twitter Anwendung einrichten bei', + 'api_key' => 'Konsumenten Schlüssel', + 'api_key_secret' => 'Komsumenten Geheimnis ', + 'token' => 'Zugriffstoken ', + 'token_secret' => 'Zugriffstoken Geheim', + ) , + 'test_settings' => 'Test einstellungen', +); diff --git a/application/i18n/de_DE/sharing.php b/application/i18n/de_DE/sharing.php new file mode 100755 index 0000000000..7e73b73411 --- /dev/null +++ b/application/i18n/de_DE/sharing.php @@ -0,0 +1,25 @@ + 'Eintrittsdatum', + 'date_added' => 'Datum hinzugefügt', + 'last_access' => 'Letzter Zugriff', + 'sharing_color' => array( + 'length' => 'Das Farbfeld muss 6 Zeichen lang sein (Hex-Code)', + 'required' => 'Die Farbangabe ist notwendig.', + ) , + 'sharing_name' => array( + 'length' => 'Der SHARING-NAME ist ungültig', + 'required' => 'Ein SHARING Name ist notwendig.', + ) , + 'sharing_url' => array( + 'exists' => 'Die Seiten URL existiert bereits.', + 'length' => 'Die URL scheint ungültig zu sein.', + 'required' => 'Die Seiten URL ist notwendig.', + 'url' => 'Das URL Feld scheint keine gültige URL zu beinhalten.', + ) , +); diff --git a/application/i18n/de_DE/stats.php b/application/i18n/de_DE/stats.php new file mode 100755 index 0000000000..7070fbae76 --- /dev/null +++ b/application/i18n/de_DE/stats.php @@ -0,0 +1,42 @@ + 'Kontrolliert', + 'categories' => 'Kategorien', + 'category_impact' => 'Betroffene Kategorien', + 'category_impact_description' => 'Diese Grafik gibt Dir einen Überblick der Meldungen über die Zeitspanne. Scrolle von links nach rechts um die verschiedenen Kategorien zu sehen. Bewege die Maus über die Grafik für mehr Details.', + 'choose_date_range' => 'Datumsbereich wählen', + 'countries' => 'Länder', + 'country' => 'Land', + 'country_breakdown' => 'Benutzerländer', + 'description' => 'Hier ist der Statistikbereich. Nutze die Links und Untermenüs oben.', + 'error' => 'Fehler', + 'glossary' => 'Glossar', + 'hit_summary' => 'Trefferaufstellung', + 'legend' => 'Legende', + 'pageviews' => 'Seitenaufrufe', + 'pageviews_description' => 'Gesamtsumme der Seitenaufrufe der Seite.', + 'reports' => 'Berichte', + 'reports_categories' => 'Meldungs-Kategorie', + 'reports_statistics' => 'Statistik der Meldungen', + 'reports_status' => 'Meldungsstatus', + 'report_punchcard' => 'Report Lochkarte', + 'report_stats' => 'Report Statistik', + 'stats_not_setup' => 'Statistik noch nicht eingestellt.', + 'time_range_1' => '1 Monat', + 'time_range_2' => '3 Monate', + 'time_range_3' => '6 Monate', + 'time_range_all' => 'Alle', + 'unapproved' => 'Nicht kontrolliert', + 'unique_visitors' => 'Besucher', + 'unique_visitors_description' => 'Anzahl der Benutzer, welche das System besuchen. Die Identifizierung erfolgt über Cookies. Im Fall das der Besucher Cookies gespert hat, erfolgt die Identifizierung über IP-Adresse, Auflösung, Browser, Plugins, Betriebssystem etc.', + 'unverified' => 'Ungeprüft', + 'verified' => 'Geprüft', + 'visitor_summary' => 'Besucherübersicht', + 'visits' => 'Besuche', + 'visits_description' => 'Ein Besuch wird gezählt wenn ein Besucher mindestens 30 Minuten vorher die Seite nicht besucht hat.', +); diff --git a/application/i18n/de_DE/tooltips.php b/application/i18n/de_DE/tooltips.php new file mode 100755 index 0000000000..a9dd13e3ab --- /dev/null +++ b/application/i18n/de_DE/tooltips.php @@ -0,0 +1,97 @@ + array( + 'add_to_category' => 'Dies fügt den Bericht zu weiteren Kategorien hinzu. Wenn Du Kategorie 1 ausgewählt hast und der Bericht bereits mit Kategorie 2 verbunden ist, wird der Bericht beiden Kategorien 1 und 2 zugeordnet.', + 'approve' => 'Bestätigt einen Bericht oder nicht. Falls bestätigt, wird der Bericht veröffentlicht.', + 'assign_badge' => 'Du wirst die Möglichkeit haben, einem auslösendem Benutzer ein Abzeichen zu vergeben. Wähle ein Abzeichen aus, das hier angezeigt wird.', + 'between_times' => 'Dies ist ein Zeitraum aus Stunden und/oder Minuten zwischen zwei Zeiten, im 24h Format. Wenn Du eine frühere Zeit in das zweite Feld eingibst, wird es mit dem Wert aus dem ersten Feld ersetzt. Diese Zeiten müssen beide innerhalb eines Tages liegen. Ebenso wird der Zeitraum mit der Serverzeit verglichen und nicht notwendigerweise mit der Zeitzone des Benutzers, der Deine Ushahidi Installaion verwendet. Lass diesen Wert auf 00:00 bis 00:00 um dieses Kriterium zu deaktivieren.', + 'category' => 'Wenn Du bestimmte Auslöser so verwenden möchtest, wenn eine bestimmte Kategorie verwendet wird, kannst Du dies hier einstellen. Dadurch wird der Auslöser nur dann aktiviert, wenn eine bestimmte Kategorie verwendet wird. Wenn Du zum Beispiel Kategorie 1 und Kategorie 2 auswählst und ein eingehender Bericht mit den Kategorien 2 und 3 reinkommt, wird diese Funktion ausgelöst.', + 'days_of_the_week' => 'Falls diese Aktionen an einem bestimmten Wochentag stattfinden, kannst Du dies hier einstellen. Der Wochentag wird über die Einstellung der Zeitzone auf dem Server bestimmt. Drücke Shift, Command oder Strg um mehrere Tage auszuwählen.', + 'email_body' => 'Text der E-Mail, die verschickt werden soll.', + 'email_subject' => 'Betreffzeile der E-Mail, die verschickt werden soll.', + 'feed_id' => 'Der Feed kann alle Feed beinhalten oder nur einen bestimmten. Wenn nur ein bestimmter Feed als Auslöser dienen soll, muss er hier ausgewählt werden. Andernfalls kann die Einstellung auf "alle" gelassen werden.', + 'from' => 'Twitter Benutzernamen (oder mehrere Benutzernamen, getrennt über Kommatas). Wenn nur für die Tweets eines bestimmten Benutzernamens die Auslöser funktionieren sollen, muss der jeweilige Benutzername hier (ohne @) eingegeben werden.', + 'keywords' => 'Du kannst dieses Feld leer lassen wenn Du nicht nach Schlüsselwörtern überprüfen lassen möchtest. Wenn Du hier Wörter hinzufügst, musst Du sie mit einem Komma (,) voneinander abtrenen. Wenn Du zum Beispiel einen Auslöser aktivieren möchtest, bei dem jemand die Worte "Liebe" oder "Frieden" in der Nachricht erwähnt, müssen diese beiden Worte "Liebe, Frieden" in dieser Form eingetragen werden.', + 'location' => 'Du kannst entweder "überall" oder einen bestimmten Ort angeben. Wenn Du einen bestimmten Ort auswählst, wirst Du vom System danach gefragt, eine Box um das Zielgebiet zu setzen. Wenn Du beispielsweise einen Auslöser für das Land Brasilien erstellen möchtest, musst Du "genauen Ort" ("specific area") auswählen und eine Box um Brasilien zeichnen. Du kannst diese Boxen klein oder so groß machen wie Du möchtest. Du kannst auch mehrere Kästchen zeichnen.', + 'on_specific_count' => 'Dieses Kriterium aktiviert den Auslöser für den n-ten Zähler für die gesamte Benutzerdatenbank oder für jeden einzelnen Benutzer. Lass dieses Feld frei um es nicht zu benutzen.', + 'report_title' => 'Dies ist der Standardtitel für den Bericht.', + 'response' => 'Wenn alle Abfagekriterien abgearbeitet sind, wird der Auslöser eine Antwort initiieren. Diese variert von der bloßen Berichtsbestätitung bis hin zu Bestätigungsemails an den Benutzer. Wähle die mögliche Antwortvariante hier aus um weitere Optionen für genauere Antworten zu ermöglichen.', + 'send_to' => 'Wenn Du "auslösender Benutzer" auswählst, wird die E-Mail an den Benutzer geschickt, der den Bericht eingereicht hat. Wenn Du den Knopf neben dem Eingabefeld auswählst, kannst Du eine eigene E-Mail Adresse eingeben. Dies ist bei der Erstellung von Auslösern hilfreich, die bestimmte Aktivitäten auf der Karte verfolgen.', + 'specific_days' => 'Du kannst hier mehrere Tage auswählen. Die Daten werden von der Installation und der verbundenen Zeitzone bestimmt. Um alle Tagezeiten zu aktivieren, gib kein Datum ein.', + 'trigger' => 'Der Auslöser ist die Hauptkomponente des Systems und bestimmt die weitere Handlung. Wenn jemand z.B. einen Bericht einreicht, kann dieser Bericht nach verschiedenen Kriterien gefiltert werden und weitere Handlungsschritte auslösen.', + 'user' => 'Der Benutzer kann jederman oder ein ganz bestimmter Benutzer sein. Wenn nur ein bestimmter Benutzer einen Auslöser starten soll, kannst Du ihn hier bestimmen. Andernfalls ist das Feld frei zu lassen ("niemand") - auch weil die meisten Auslöser auf alle Benutzereingaben reagieren.', + 'verify' => 'Markiert einen Bericht als bestätigt oder unbestätigt.', + ) , + 'change_picture' => 'Die Profilseiten verwenden Gravatar. Beim Klicken auf das Bild wirst Du auf die Gravatar Website weitergeleitet, wo Du Dein Profilbild verändern kannst.', + 'default_value' => 'Unterteile jeden Wert mit einem Komma, z.B. Wert1, Wert2.', + 'radio_choices' => 'Unterteile jeden Eintrag mit einem Komma, z.B. Wert1, Wert2. Wenn Du einen Standardeintrag erstellen möchtest, beende Deine Auflistung mit :: z.B. falls Wert3 der Standardeintrag sein soll, schreibe Wert1, Wert2, Wert3::Wert3.', + 'dropdown_choices' => 'Unterteile jede Auswahl mit einem Komma, z.B. Wert 1, Wert 2 etc.', + 'private_to' => 'Tippe hier zur Anzeige der Mitglieder.', + 'private_subject' => 'Betreffzeile der privaten Nachricht', + 'private_message' => 'Private Nachricht', + 'profile_color' => 'Du kannst eine Farbe auswählen, die unterhalb Deines öffentlichen Profilbildes erscheinen soll. Diese Farbe wird auch für Deine Checkins auf der Karte verwendet.', + 'profile_email' => 'Deine Email-Adresse', + 'profile_name' => 'Dein vollständiger Name', + 'profile_new_password' => 'Falls ausgewählt, wird dies Dein neues Passwort. Lasse dieses Feld leer, wenn Du Dein aktuelles Passwort behalten möchtest.', + 'profile_new_users_password' => 'Dies ist eine Voraussetzung bei der Erstellung eines neuen Benutzers und wird das neue Benutzerpasswort. Du solltest Deinen neuen Benutzer informieren, dass er direkt nach dem ersten Login sein Passwort verändert.', + 'profile_notify' => 'Wenn Du JA wählst, bekommst Du eine Information wenn neue Kommentare oder Ereignisse auf Deiner Seite gemeldet werden.', + 'profile_password' => 'Dein Passwort. Lass das Feld leer, wenn Du Dein jetziges Passwort beibehalten möchtest.', + 'profile_public' => 'Dein Profil kann von jedem im Internet angeschaut werden wenn Du diese Option aktivierst. Dies ist auch die einfachste Methode, um Deine eingereichten Berichte, Deine Checkins, Deine Badges, usw. auf einer Seite aufzulisten.', + 'profile_public_url' => 'Hier wird die Adresse zu Deinem öffentlichen Profil stehen.', + 'profile_username' => 'Dein Benutzername kann nicht geändert werden.', + 'settings_access_level' => 'Zugangsebenen werden verwendet, damit der Zugang zu Benutzerdateneingaben kontrolliert werden kann. Höhere Zugangsebenen können die Daten niedrigerer Zugangsebenen einsehen. Der Superadmin hat den höchsten Zugangslevel (100). Öffentliche Daten haben den niedrigsten Level von (0). Einfache Mitglieder haben den Level 10, Administratoren haben den Zugangslevelwert 90.', + 'settings_alert_email' => 'Diese Mailadresse wird genutzt um Dir Meldungen zuzustellen.', + 'settings_allow_alerts' => 'Erlaube Benutzern, Ereignisse über das Web zu abonnieren.', + 'settings_allow_clustering' => 'Dies erlaubt das Bündeln von gleichen/ähnlichen Berichten in einem Punkt auf der Karte.', + 'settings_allow_comments' => 'Erlaubt Nutzern das Kommentieren von Meldungen auf der Hauptseite.', + 'settings_allow_feed' => 'Erlaubt die Anzeige von RSS Feeds auf der Hauptseite.', + 'settings_allow_feed_category' => 'Diese Einstellung erstellt eine neue Kategorie aus RSS Nachrichten Feeds.', + 'settings_allow_reports' => 'Erlaubt Nutzern die Übermittlung von Informationen via Web-Formular.', + 'settings_api_default_record_limit' => 'Standardanzahl an Records die pro API-Anfrage geholt werden.', + 'settings_api_max_record_limit' => 'Maximale Anzahl an Records die pro API-Anfrage geholt werden.', + 'settings_api_max_requests_per_ip' => 'Maximale Anzahl an API Anfragen per IP-Adresse.', + 'settings_banner' => 'Der Seitenbanner wird oben auf der Seite angezeigt, sofern das verwendete Layouttheme dies unterstützt. Die empfohlene Größe für diesen Banner hängt vom verwendeten Theme ab. Bitte beachte, dass der Banner den Seitentitel und die Tagline ersetzt.', + 'settings_blocks_per_row' => 'Nummer von Blöcken, die in jeder Zeile angezeigt werden.', + 'settings_cache_pages' => 'Erlaube oder verbiete das Zwischenspeichern der Seite. Dies verbessert die Geschwindigkeit beim Seitenaufbau.Wir empfehlen dies bei Seiten die häufig genutzt werden.** Denke daran, dass Meldungen entsprechend Deiner Einstellung hier im Frontend veröffentlicht werden.', + 'settings_cache_pages_lifetime' => 'Setzen der Cache-Zeit.', + 'settings_checkins' => 'Diese Einstellung erlaubt Check-Ins auf Deiner Installation. Dies ist ein vereinfachter Report-Typ, der nicht moderiert wird bevor er online geht und benötigt einen sicheren Weg. Wenn Du dies ankreuzt, stelle sicher, dass Deine Zeitzone auf UTC eingestellt ist und das Dein Theme Check-Ins erlaubt. ', + 'settings_configure_map' => 'Setze die Karte, um einen spezifischen Ort zu überwachen.', + 'settings_default_category_colors' => 'Lege eine Farbe fest für alle Kategorien auf der Seite.', + 'settings_default_category_icons' => 'Setze ein Icon für alle Kategorien auf der Webseite.', + 'settings_default_location' => 'Das ist das Land, in dem die Seite veröffentlicht wird.', + 'settings_display_contact' => 'Ein oder Ausschalten der Kontakt-Seite', + 'settings_display_howtohelp' => 'Ein oder Ausschalten der Hilfe Seite auf der Hauptseite.', + 'settings_display_items_per_page' => 'Dies ist die Anzahl von Meldungen, die auf der Hauptseite angezeigt werden.', + 'settings_display_items_per_page_admin' => 'Dies ist die Anzahl der Berichte, die im Back-End angezeigt werden.', + 'settings_flsms_download' => 'Dies ist der Hub für eingehende Nachrichten.', + 'settings_flsms_synchronize' => 'Dieses synchronisiert die Nachrichten im Hub mit der Ushahidi Plattform.', + 'settings_flsms_text_1' => 'Telefonnummern, um die Textnachrichten zu empfangen.', + 'settings_google_analytics' => 'Dokumentiert die Besucher Deiner Seite um eine Statistik zu erstellen.', + 'settings_locale' => 'Stellt die Sprache der Seite ein.', + 'settings_manually_approve_users' => 'Wenn Du diese Option aktivierst, musst Du jeden Benutzer auf der Seite einzeln aktivieren und ihm Benutzerrollen bzw. Zugangsebenen zuweisen (z.B. Mitglied, Administrator, Superadmin).', + 'settings_map_provider' => 'Legt die Karte fest, die Du nutzt.', + 'settings_map_timeline' => 'Dies stellt die Timeline so ein, dass Einträge bzw. Ereignisse chronologisch sortiert aufgelistet werden.', + 'settings_private_deployment' => 'Die Aktivierung dieser Einstellung führt dazu, dass diese Ushahidi Installation nur für ausgewählte Benutzer mit Benutzerkonten erreichbar ist.', + 'settings_require_email_confirmation' => 'Nach Aktivierung dieser Option wird den Benutzern eine E-Mail mit einem Bestätigungslink geschickt, den sie zuerst anklicken müssen bevor sie sich ins System einloggen können. Wenn Du diese Funktion erst nach der Registrierung von Benutzern aktivierst, müssen sie ihr Benutzerkonto erst bestätigen, bevor sie wie gewohnt weiterarbeiten können.', + 'settings_server_host' => 'Hier wird der Speicherort der E-Mails festgelegt.', + 'settings_server_password' => 'Das ist das Passwort für die Emailadresse, welche die Meldungen empfängt.', + 'settings_server_port' => 'Dies ist notwendig, um eingehende Verbindungen von der Mailadresse zu akzeptieren.', + 'settings_server_ssl_support' => 'Dies ist notwendig zum Aufbau einer sicheren Verbindung.', + 'settings_server_type' => 'Dies ist notwendig, um Mails vom Server zu empfangen.', + 'settings_server_username' => 'Diese Emailadresse empfängt die Meldungen.', + 'settings_share_site_stats' => 'Dies ermöglicht den Zugriff auf die Statistik mit der API.', + 'settings_site_copyright_statement' => 'Es ist immer eine gute Idee, das Copyright für seine Arbeit zu sichern. Um auch die richtiges Rechte zu bestimmen, besuche https://creativecommons.org/choose/ und beachte, welche Elemte Deiner Seite Du damit lizensierst!', + 'settings_site_email' => 'Das ist die Mailadresse zum Empfang von Eingaben aus dem Kontaktformular.', + 'settings_site_message' => 'Dies ist der Text, der oberhalb der Karte auf der Homepage erscheint. Dies ist hilfreich, um wichtige Informationen an die Besucher der Seite weiterzugeben. Um die Box zu löschen, entferne einfach den Text.', + 'settings_site_name' => 'Das ist der Seitenname, der ganz oben auf der Seite erscheint.', + 'settings_site_submit_report_message' => 'Dies ist eine Meldung, die auf der Eingabeseite erscheinen wird. Sie eignet sich gut für Haftungsbeschränkungen oder weitere Anleitungen für die Benutzer, die gerade einen Bericht ausfüllen.', + 'settings_site_tagline' => 'Erläutere in wenigen Worten das Ziel der Seite.', + 'settings_site_timezone' => 'Dies ist die Zeitzone, in der die Website aktiv sein soll. Sie hat Auswirkungen auf alle Aktionen, die sich nach der Uhrzeit oder einem Datum richten. Dies beinhaltet auch die Standardzeit für Berichte auf dem Front- und Backend dieser Website.', + 'settings_twitter_configuration' => 'Bestimme den Twitter hashtag der für die Tweets verwendet werden soll.', + 'feed_geolocation_user' => 'Falls Du Deine Feed-Eingabe georeferenzieren möchtest, registriere einen Benutzername bei http://geonames.org, aktiviere dort die freien Webservices und gibt diese hier ein. Oder leer lassen, um diese Funktion zu deaktiveren.

Beachte die Benutzungsbeschränkungen!', +); diff --git a/application/i18n/de_DE/ui_admin.php b/application/i18n/de_DE/ui_admin.php new file mode 100755 index 0000000000..60b6eb3139 --- /dev/null +++ b/application/i18n/de_DE/ui_admin.php @@ -0,0 +1,329 @@ + 'Zugriff verweigert. Entweder Deine Anmeldedaten sind nicht gültig oder Deine Anforderung wurde zurückgewiesen.', + 'access_denied_others' => 'Zugriff verweigert. Deine Anforderung wurde verstanden, aber verweigert wegen Zeitüberschreitung. Probiere es später erneut.', + 'access_level' => 'Zugangslevel', + 'actions' => 'Aktionen', + 'add_to_category' => 'Zur Kategorie hinzufügen', + 'added' => 'hinzugefügt', + 'added_edited' => 'Hinzugefügt/Bearbeitet', + 'addons' => 'Erweiterungen', + 'admin_role' => 'Admin', + 'alerts' => 'Meldungen', + 'alerts_received' => 'Empfangene Meldungen', + 'all' => 'Alle', + 'am' => 'AM', + 'anonymous' => 'Anonym', + 'anyone_role' => 'Jeder', + 'anywhere' => 'Überall', + 'api_banned' => 'API gesperrt', + 'api_logs' => 'API Logs', + 'api_settings' => 'API Einstellungen', + 'api_unban' => 'entsperren', + 'api_unban_all' => 'UNBAN Alle', + 'approved' => 'geprüft', + 'approve_auto' => 'Automatische Prüfung', + 'approve_manual' => 'Manuelle Prüfung', + 'archived' => 'Archiviert', + 'are_you_sure_you_want_to' => 'Bist Du sicher, dass Du', + 'are_you_sure_you_want_to_delete_this_item' => 'Bist Du sicher, dass Du diesen Eintrag löschen möchtest?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Bist Du Dir sicher, dass Du dieses Foto löschen möchtest?', + 'are_you_sure_you_want_to_switch_forms' => 'Bist Du Dir sicher, dass Du die Formulare austauschen willst?', + 'assign' => 'Anweisen', + 'assignments' => 'Anweisungen ', + 'assign_badge' => 'Badge anweisen', + 'author' => 'Autor', + 'author_email' => 'Email des Verfassers', + 'back' => 'Zurück', + 'banip_action' => 'BAN IP', + 'between_times' => 'Zwischen den Zeiten', + 'blocks' => 'Blocks', + 'body' => 'Body', + 'cancel' => 'Abbrechen', + 'categories' => 'Kategorien', + 'chart_display_error' => 'Fehler bei der Anzeige des Charts', + 'check_message_valid' => 'Bitte stelle sicher, dass Deine Nachricht gültig ist.', + 'check_number' => 'Bitte stelle sicher, dass die Nummer richtig ist.', + 'check_sms_settings' => 'Kontrolliere Dein SMS-Einstellungen!', + 'checkin_details' => 'Checkin Details', + 'checkins' => 'Checkins', + 'cities_loaded' => 'Städte geladen', + 'code' => 'Code', + 'code_out_of_sync' => 'Code Version nicht synchronisiert.', + 'color' => 'Farbe', + 'comments' => 'Kommentare', + 'confirmation_code' => 'Code zur Bestätigung der Meldung ist: ', + 'confirm_msg' => 'Der Benutzer hat', + 'count' => 'Zähler', + 'country_not_found' => 'Land nicht gefunden', + 'created_edited' => 'bearbeitet', + 'create_report' => 'Erstelle eine Meldung', + 'critical_upgrade' => 'Kritisches Update', + 'csv' => 'CSV', + 'currently_active' => 'Derzeit aktiv', + 'currently_inactive' => 'Derzeit inaktiv', + 'custom_forms_insufficient_permissions' => 'Du hast nicht die vollen Rechte, um die folgenden Felder zu bearbeiten.', + 'daily' => 'Täglich', + 'dashboard' => 'Kontrollmonitor', + 'database' => 'Datenbank', + 'date_time' => 'Datum + Zeit', + 'date_added' => 'hinzugefügt am', + 'date_modified' => 'verändert am', + 'days_of_the_week' => 'Tage der Woche', + 'db_out_of_sync' => 'DB Version nicht synchronisiert.', + 'deleted' => 'gelöscht', + 'delete_action' => 'Löschen', + 'delete_all' => 'Alle Berichte löschen', + 'delete_badge' => 'Emblem löschen', + 'demo' => 'Demo', + 'description' => 'Beschreibung', + 'disabled' => 'Ausgeschaltet', + 'divider_start_field' => 'Divider Start', + 'divider_end_field' => 'Divider End', + 'divider_class' => 'div class', + 'download_reports' => 'Download Meldungen', + 'dropdown_choices' => 'Dropdown Auswahl', + 'edited' => 'Bearbeitet', + 'edited_by' => 'Bearbeitet von', + 'edit_action' => 'Bearbeiten', + 'edit_log' => 'Bearbeitungs-Log', + 'email' => 'E-Mail', + 'entire_collective' => 'Gesamte Kollektion', + 'error_geocoding' => 'Fehler in Geocoding! HTTP Fehler', + 'error_imap' => 'IMAP PHP Bibliothek ist nicht installiert', + 'error_twitter' => 'Falsche Benutzerkennung', + 'error_msg' => 'Fehler', + 'error_post_incident' => 'Fehler, Veröffentlichung des Ereignisses nicht möglich!', + 'every_six_hours' => 'Alle 6 Stunden', + 'every_twelve_hours' => 'Alle 12 Stunden', + 'experimental' => 'Experimental', + 'faqs' => 'Häufige Fragen', + 'feed' => 'Feed', + 'feedback' => 'Rückmeldung', + 'feeds' => 'Feeds', + 'field_choices' => 'Auswahlmöglichkeiten', + 'field_default' => 'Standardwert', + 'field_datatype' => 'Datentyp', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numerisch', + 'field_datatype_text' => 'Freier Text', + 'field_height' => 'Höhe (In Zeilen)', + 'field_hidden' => 'Verstecktes Feld', + 'field_maxlength' => 'Maximale Zeichenlänge', + 'field_name' => 'Feldname', + 'field_toggle' => 'umschalten', + 'field_toggle_no' => 'Nein', + 'field_toggle_yes_close' => 'Ja, immer geschlossen', + 'field_toggle_yes_open' => 'Ja, immer geöffnet', + 'file_not_found_upload' => 'Datei zum Hochladen nicht gefunden', + 'file_open_error' => 'Datei kann nicht zum Lesen geöffnet werden.', + 'form_not_exists' => 'Dieses Formular existiert nicht!', + 'forum' => 'Forum', + 'free_text_field' => 'Textfeld (Freitext)', + 'date_field' => 'Datumsfeld', + 'radio_field' => 'Radio Buttons Felder', + 'checkbox_field' => 'Checkbox Felder', + 'dropdown_field' => 'Dropdown Felder', + 'from' => 'Von', + 'from_date' => 'Vom', + 'geonames_timeout' => 'Geonames Zeitüberschreitungsfehler', + 'get_help' => 'Hilfe', + 'get_more_themes' => 'Mehr Themes', + 'get_more_plugins' => 'Mehr Plugins', + 'header_actions' => 'Aktionen', + 'header_add_edit' => 'Hinzufügen/Bearbeiten', + 'header_email' => 'E-Mail', + 'header_manage_users' => 'Benutzerverwaltung', + 'header_role' => 'Rolle', + 'header_user' => 'Benutzer', + 'help' => 'Hilfe', + 'hourly' => 'Stündlich', + 'incident_feed' => 'Ereignis Feed für', + 'installer_info' => 'Der Installationsordner existiert noch. Bitte lösche den Installationsordner. Er ist ein potentielles Sicherheitsrisiko.', + 'instance' => 'Vorgang/Fall', + 'instances' => 'Vorgänge/Fälle', + 'instance_details' => 'Falldetails', + 'invalid_parameter' => 'Ungültige Parameter', + 'ip_address' => 'IP Addresse', + 'is_date' => 'Ist dies ein Datumsfeld?', + 'ispublic_visible' => 'Wer kann Antworten sehen', + 'ispublic_submit' => 'Wer kann Antwort einreichen', + 'keyword' => 'Schlüsselwort', + 'keywords' => 'Schlüsselwörter', + 'label_email' => 'Email Adresse:', + 'label_full_name' => 'Vollständiger Name:', + 'label_password' => 'Passwort:', + 'label_role' => 'Rolle:', + 'label_username' => 'Benutzername:', + 'layers' => 'Ebenen', + 'login_role' => 'Moderator', + 'logout' => 'Abmeldung', + 'logs' => 'Logdateien', + 'manage' => 'Verwaltung', + 'manage_roles' => 'Verwalte Rollen + Zugriffsrechte', + 'manage_users' => 'Benutzerverwaltung', + 'manage_users_edit' => 'Hinzufügen/Bearbeiten von Benutzern', + 'manage_public_listing' => 'Die öffentlichen Listing verwalten', + 'mark_as' => 'Markieren als', + 'marked_as_not_spam' => 'Markiert als kein Spam', + 'marked_as_spam' => 'Markiert als Spam', + 'match_no_documents' => 'keine Übereinstimmung mit einem Dokument', + 'message' => 'Nachrichten', + 'messages' => 'Nachrichten', + 'messages_laconica' => 'Laconica Nachrichten', + 'messages_twitter' => 'Twitter Nachrichten', + 'message_sent' => 'Ihre Nachricht wurde gesendet!', + 'mhi' => 'MHI', + 'minute' => 'Minute', + 'minutes' => 'Minuten', + 'missing_parameter' => 'Fehlende Parameter', + 'moderator' => 'Moderator', + 'modified' => 'aktualisiert', + 'modify_timezone' => 'Zeitzone verändern', + 'move_down_action' => 'nach unten', + 'move_up_action' => 'nach oben', + 'multiple_hosted_instances' => 'Mehrfach gehostete Ereignisse.', + 'my_alerts' => 'Meine Meldungen', + 'my_checkins' => 'Meine Checkins', + 'my_profile' => 'Mein Profil', + 'my_reports' => 'Meine Berichte', + 'my_votes' => 'gezählte Stimmen', + 'my_votes_up' => 'positiv', + 'my_votes_down' => 'negativ', + 'name' => 'Name', + 'new_alert' => 'Neue Melgung hinzufügen', + 'new_private' => 'Neue Nachricht erstellen', + 'new_password' => 'Neues Passwort', + 'no' => 'Nein', + 'none_category_explanation' => 'Dies ist eine spezielle Kategorie, die nicht in den eingereichten Berichten erscheinen wird. Hier werden diejenigen Berichte gespeichert, die (bisher) keiner Kategorie zugeordnet werden konnten weil die ursprüngliche Kategorie gelöscht wurde.', + 'notification' => 'Benachrichtigung', + 'not_case_sensitive' => 'Groß- / Kleinschreibung wird nicht berücksichtigt.', + 'not_found' => 'Nicht gefunden', + 'no_data' => 'Keine Daten. Nichts anzuzeigen.', + 'no_error' => 'Kein Fehler', + 'no_result_display_msg' => 'Keine Ergebnisse zum Anzeigen!', + 'of' => 'von', + 'on_specific_count' => 'Genaue Zählung', + 'openids' => 'OpenID\'s', + 'page' => 'Seite', + 'pages' => 'Seiten', + 'page_not_found' => 'Seite nicht gefunden', + 'page_not_found_message_with_contact' => 'Tut uns leid, die Seite existiert nicht.

Bist Du einem Link von unserer Seite gefolgt?
Wenn Du einem internen Link gefolgt bist, bitte kontaktiere uns damit wir den Fehler beheben können.

Bist Du von einer externen Seite gekommen?
Links von anderen Seiten sind manchmal veraltet oder falsch. Teile uns mit von welcher Seite Du gekommen bist damit wir auch hier ggf. den Fehler korrigieren können

Hast Du die URL eingegeben?
Vielleicht war die (URL) falsch. Kontrolliere die richtige Schreibweise, etc.

', + 'page_not_found_message' => 'Entschuldigung, diese Seite ist nicht verfügbar.', + 'parameters_used' => 'genutzte Parameters', + 'password' => 'Passwort', + 'password_reset' => 'Passwort zurücksetzen', + 'password_reset_message_line_1' => 'Sehr geehrte Damen und Herren', + 'password_reset_message_line_2' => 'wir haben einen Anforderung erhalten, dass Passwort zurückzusetzen für', + 'password_reset_message_line_3' => 'Um Ihr Passwort zu erneuern klicken Sie bitte auf untenstehenden Link (oder kopieren Sie ihn in die Adresszeile Ihres Browsers)', + 'password_reset_message_line_4' => 'Dein Passwort wurde zurückgesetzt. Die neuen Login-Daten sind:', + 'password_reset_subject' => 'Ushahidi Passwort zurücksetzen', + 'phone' => 'Telefon', + 'please_select' => 'Bitte auswählen', + 'pm' => 'PM', + 'post_method_not_used' => 'Daten wurden nicht gesendet durch post Methode', + 'preview' => 'Vorschau', + 'private_message' => 'Nachricht', + 'private_messages' => 'Private Nachricht', + 'private_sent' => 'Private Nachricht gesendet', + 'private_subject' => 'Betreff', + 'private_to' => 'An', + 'public_listing' => 'öffentliche Liste', + 'qualifiers' => 'Abfragekriterium', + 'read' => 'gelesen', + 'relevance' => 'Relevanz', + 'report_title' => 'Berichtstitel', + 'report_date' => 'Berichtet am', + 'reporters' => 'Reporter', + 'reporter_levels' => 'Reporter Stufe', + 'reports' => 'Berichte', + 'reputation' => 'Reputationswert', + 'required' => 'Erforderlich', + 'reset' => 'Zurücksetzen', + 'response' => 'Antwort', + 'results' => 'Ergebnisse', + 'revoke' => 'Aufheben', + 'riverid_exists_admin' => 'Diese E-Mail Adresse ist bereits mit einer CrowdmapID verbunden. Der Benutzer muss sein bereits existierendes Crowdmap Passwort benutzen.', + 'save_settings' => 'Speichereinstellungen', + 'search' => 'Suche', + 'search_reports' => 'Suche Berichte', + 'searching_for' => 'suchen nach', + 'security_info_encryption_key' => 'Der Verschlüsselungsschlüssel wurde noch nicht verändert. Dies ist unsicher und sollte bald geändert werden.', + 'security_info_https' => 'Diese Seite wird über HTTP ausgeliefert. Die Einstellung sollte auf HTPPS verändert werden, um eine erhöhte Sicherheit zu gewährleisten.', + 'security_info_instructions' => 'Anleitungen sind im Wiki verfügbar:', + 'select_download_format' => 'Wähle Dein gewünschtes Format für den Bericht aus:-', + 'select_field_type' => '--- Wählen Sie einen Feldtyp ---', + 'select_item' => 'Wähle einen Eintrag', + 'select_trigger_before_response' => 'Du must zuerst einen Auslöser auswählen bevor Du eine Antwort auswählen kannst.', + 'select_trigger_before_qualifiers' => 'Du musst zuerst einen Auslöser auswählen bevor Du ein Abfragekriterium auswählen kannst.', + 'sender' => 'Absender', + 'send_to' => 'Senden an', + 'sent_from_website' => 'Diese Nachricht wurde von Deiner Webseite gesendet am', + 'server_time' => 'Serverzeit', + 'settings' => 'Einstellungen', + 'showing_page' => 'Zeige Seite', + 'showing_results' => 'Zeige Ergebnisse', + 'shown' => 'gezeigt', + 'special_category' => 'Spezialkategorie', + 'special_category_explanation' => 'Dies ist eine spezielle Kategorie, die nicht in den eingereichten Berichten erscheinen wird. Dies wird in Kombination mit den "Vertrauten Berichterstattern" verwendet.', + 'specific_area' => 'Genauer Bereich', + 'state' => 'Staat', + 'statistics' => 'Statistik', + 'stats' => 'Statistik', + 'stats_collection_error' => 'Sammeln der Statistik fehlgeschlagen! Entweder der Server ist aus, oder in Deiner Ushahidi Konfiguration stimmt etwas nicht. Siehe bitte nach ob der Server erreichbar ist. Um die Statistik manuell zurückzusetzen, verändere stat_id (auf Null setzen) und stat_key (auf 0 setzen) in den Einstellungen Deiner Datenbank. WARNUNG: Bei diesem Vorgehen verlierst Du den Zugang zu Deinen Statistiken!', + 'stats_collection_error_short' => 'Sammeln der Statistik fehlgeschlagen!', + 'specific_days' => 'genaue Tage', + 'subject' => 'Betreff', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Aufgabe ausgeführt', + 'text_field' => 'Textfeld', + 'theme_name' => 'Name', + 'title' => 'Verwalte Benutzer', + 'timeout' => 'Zeitüberschreitungsfehler', + 'to' => 'zu', + 'total_records' => 'Summe Datensätze', + 'to_date' => 'Bis', + 'translate_reports' => 'Übersetze Berichte', + 'trigger' => 'Auslöser', + 'triggering_user' => 'auslösender Benutzer', + 'triggers' => 'Auslöser', + 'unapproved' => 'Ungeprüft', + 'unknown' => 'Unbekannt', + 'unknown_failure' => 'unbekannter Fehler', + 'unread' => 'Ungelesen', + 'unsubscribe_message' => 'Du wirst keine weiteren Meldungen bekommen von', + 'update_link' => 'Klick hier zum Update', + 'upgrade_ushahidi' => 'Ushahidi aktualisieren', + 'upgrade_ushahidi_status' => 'Ushahidi Status aktualisieren', + 'upload_reports' => 'Berichte hochladen', + 'user' => 'Benutzer', + 'users' => 'Benutzer', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Bestätigt/Unbestätigt', + 'verify_unverify' => 'Bestätigen/Unbestätigen', + 'version' => 'Version', + 'version_available' => 'ist verfügbar für Update.', + 'video_encoding' => 'Videoverschlüsselung', + 'view_private' => 'Private Nachricht', + 'view_site' => 'Zeige Seite', + 'view_report' => 'Berichte anschauen', + 'welcome' => 'Willkommen, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Ja', + 'your_search_for' => 'Suche nach', + 'delete_all_instructions' => 'Bei Betätigung des Knopfes weiter unten werden alle Beiträge aus der Datenbank gelöscht. Du solltest Dir das genau überlegen, da dieser Schritt nicht rückgängig gemacht werden kann.', + 'delete_all_backup' => 'Wir empfehlen Dir, eine Sicherung Deiner Datenbank durchzuführen, bevor Du weitermachst.', + 'delete_all_button' => 'Ich bin mir sicher, dass ich alle %s Einträge in der Datenbank löschen möchte.', + 'delete_all_confirm' => 'Sind Sie sicher, dass Sie alle Berichte löschen möchten?', + 'delete_all_no_reports' => 'Keine Berichte zum Löschen vorhanden. ', + 'user_no_logins' => 'Anzahl der Logins', + 'user_last_login' => 'Letzter Login', + 'user_confirmed_account' => 'Bestätigtes Benutzerkonto?', +); diff --git a/application/i18n/de_DE/ui_main.php b/application/i18n/de_DE/ui_main.php new file mode 100755 index 0000000000..ec7f3e5d49 --- /dev/null +++ b/application/i18n/de_DE/ui_main.php @@ -0,0 +1,627 @@ + 'Über', + 'access' => 'Zugang', + 'access_limits' => 'Zugangsbeschränkung', + 'account_name' => 'Kontoname', + 'actions' => 'Aktionen', + 'action_confirm' => 'Diese Aktion kann nicht rückgängig gemacht werden. Bist Du Dir sicher, dass Du damit fortfahren möchtest?', + 'activate' => 'Aktivieren', + 'active' => 'Aktiv', + 'add' => 'Hinzufügen', + 'added_by' => 'Hinzugefügt durch', + 'additional_data' => 'weitere Daten', + 'additional_reports' => 'Weitere Meldungen', + 'add_edit' => 'Bearbeiten', + 'add_field' => 'Feld hinzufügen', + 'add_language' => 'Sprache hinzufügen', + 'add_new' => 'Neu', + 'add_new_category' => 'Neue Kategorie', + 'add_translation' => 'Übersetzung hinzufügen', + 'admin' => 'Verwaltung', + 'alerts' => 'Alarme', + 'alerts_alert_me' => 'Alarmiere mich, wenn eine Meldung in der Umgebung eingeht.', + 'alerts_btn_send' => 'Speichere meine Meldung', + 'alerts_email' => 'E-Mail Addresse:', + 'alerts_enter_email' => 'Eingeben der E-Mailaddresse', + 'alerts_enter_mobile' => 'Eingabe der Mobilnummer mit Landescode', + 'alerts_get' => 'Empfange Alarme', + 'alert_has_been' => 'Meldung wurde', + 'alerts_mobile_phone' => 'Mobiltelefon:', + 'alerts_place_spot' => 'oder positioniere einen Spot auf der Karte um Alarme zu empfangen, wenn sich im Umkreis des eingestellten Bereiches etwas ereignet.', + 'alerts_place_spot2' => 'Wenn Du Deinen genauen Ort nicht finden kannst, klicke auf die Karte und bestimme dort Deinen Ort.', + 'alerts_rss' => 'RSS Feeds (kopiere die URL unten)', + 'alerts_select_city' => 'Wähle eine Stadt', + 'alerts_step1_select_city' => 'Schritt 1: Standort oder Stadt auswählen:', + 'alerts_step2_send_alerts' => 'Schritt 2: Sende Meldungen an:', + 'alerts_step3_select_catgories' => 'Schritt 3 (optional): Kategorie auswählen', + 'alert_confirm_previous' => 'Bestätigen Sie einen vorher angeforderten Meldung', + 'alert_saved' => 'Die Alarmierung wurde gespeichert!', + 'all' => 'Alle', + 'allowed' => 'Erlaubt', + 'allowed_tags' => 'Ertlaubte HTML tags: "%s".', + 'allowed_iframes' => 'Iframes sind nur erlaubt aus: %s.', + 'all_categories' => 'Alle Kategorien', + 'all_time' => 'Jederzeit', + 'and' => 'und', + 'api' => 'API', + 'approve' => 'Prüfen', + 'approved' => 'Geprüft', + 'approved_reports' => 'Geprüfte Berichte', + 'approve_this_report' => 'Wurde diese Bericht geprüft?', + 'approximate' => 'Geschätzt', + 'archive' => 'Archiv', + 'archived' => 'archiviert', + 'ascending' => 'Aufsteigend', + 'at' => 'um ', + 'author' => 'Autor', + 'auto_checkin' => 'Auto Checkin', + 'Auto' => 'Auto', + 'avg_reports_per_day' => 'durschnittliche Berichte pro Tag', + 'awaiting_approval' => 'Wartet auf Prüfung ', + 'awaiting_verification' => 'Wartet auf Bestätigung', + 'badge' => 'Abzeichen', + 'badges' => 'Abzeichen', + 'badge_image' => 'Abzeichen Bild', + 'badge_image_upload_your_own' => 'Oder lade Dein eigenes Abzeichen hoch', + 'badge_pack' => 'Abzeichen Packet', + 'badge_select' => 'Abzeichen auswählen', + 'blog' => 'Blog', + 'browse_profiles' => 'Profile durchstöbern', + 'cancel' => 'Abbrechen', + 'categories' => 'Kategorien', + 'category' => 'Kategorie', + 'category_filter' => 'Kategorie-Filter', + 'category_has_been' => 'Die Kategorie wurde ', + 'category_name' => 'Name der Kategorie ', + 'change_date_range' => 'Datumsbereich ändern', + 'change_password' => 'Passwort ändern', + 'change_picture' => 'Bild ändern', + 'choose' => 'Wähle', + 'choose_data_points' => 'Wähle Daten zum Download', + 'choose_date_range' => 'Oder wählen Sie einen Datumsbereich aus', + 'choose_field_type' => 'Wähle Feldtyp', + 'cleanurl' => 'Säubere URLs', + 'clear' => 'Löschen', + 'clear_map' => 'Karte zurücksetzen', + 'close' => 'Schließen', + 'clusters' => 'Clusters', + 'color' => 'Farbe', + 'comment' => 'Kommentar', + 'comments' => 'Kommentare', + 'comment_details' => 'Details', + 'configuration_saved' => 'Ihre Einstellungen wurden gespeichert!', + 'configure' => 'Konfiguriere', + 'confirm_email_successful' => 'Du hast Deine E-Mail Adresse erfolgreich bestätigt! Bitte melde Dich jetzt an.', + 'confirm_email_successful_and_approval' => 'Sie haben Ihre Email-Adresse erfolgreich bestätigt! Ein Administrator muss ihren Account noch freischalten, bevor Sie sich einloggen können. ', + 'confirm_email_failed' => 'E-Mail Bestätigung nicht erfolgreich! Du kannst eine neue E-Mailbestätigung weiter unten beantragen.', + 'contact' => 'Kontakt', + 'contact_code' => 'Sicherheitscode', + 'contact_email' => 'Deine E-Mail Adresse', + 'contact_message' => 'Nachricht', + 'contact_message_has_send' => 'Deine Nachricht wurde verschickt!', + 'contact_name' => 'Dein Name', + 'contact_phone' => 'Deine Telefonnummer', + 'contact_send' => 'Nachricht verschicken', + 'contact_subject' => 'Betreff', + 'copyright' => 'Copyright © ', + 'create' => 'Neu...', + 'create_edit' => 'Erstellen/Bearbeiten', + 'create_new' => 'neu erstellen', + 'create_new_password' => 'Neues Passwort erstellen', + 'create_report' => 'Meldung erzeugen', + 'credibility' => 'Glaubwürdigkeit', + 'current_password' => 'Derzeitiges Passwort', + 'custom_fields' => 'Eigene Felder', + 'data' => 'Information', + 'date' => 'Datum', + 'date_format' => '(MM/TT/JJJJ)', + 'date_time' => 'Datum & Zeit', + 'day' => 'Tag', + 'Daily' => 'Täglich', + 'deactivate' => 'Deaktiviere', + 'default_location_name' => 'Berlin, Germany', + 'delete' => 'Löschen', + 'deleted' => 'Gelöscht', + 'deletes' => 'Gelöschte', + 'delete_disabled' => 'Löschen gesperrt', + 'delete_last' => 'letzten löschen', + 'delete_report' => 'Löschen der Meldung', + 'delete_selected' => 'ausgewählten löschen', + 'delete_spam' => 'Löschen Spam', + 'demo' => 'Demo', + 'description' => 'Beschreibung', + 'descending' => 'Absteigend', + 'detailed_location_example' => 'Bsp: Ecke Kaufhaus, Hauptstr Kreuzung, Berlin', + 'details' => 'Details', + 'direct_report' => 'Direktmeldung', + 'disabled' => 'Gesperrt', + 'disapprove' => 'Ungeprüft', + 'download_reports' => 'Download Berichte', + 'download' => 'Herunterladen', + 'edit' => 'Bearbeiten', + 'edit_form_fields' => 'Bearbeite Formularfelder', + 'edit_report' => 'Meldungen bearbeiten', + 'email' => 'E-Mail', + 'email_address' => 'Email Addresse', + 'email_configuration' => 'Mail Server Einstellungen', + 'email_server_host' => 'Mail Server Host', + 'email_server_password' => 'Mail Server Passwort', + 'email_server_port' => 'Mail Server Port', + 'email_server_ssl_support' => 'Mail Server SSL Unterstützung', + 'email_server_type' => 'Mail Server Typ', + 'email_server_username' => 'Mail Server Benutzername', + 'email_settings_comment_0' => 'Ihre Einstellungen müssen im Zusammenhang stehen mit Ihrer E-Mail-Adresse.', + 'email_settings_comment_00' => 'Um Berichte per Mail zu empfangen, geben Sie bitte Ihre Account-Einstellungen unten ein. Beachten Sie das Ihre E-Mails empfangen werden von: ', + 'email_settings_comment_1' => 'Einige Server benötigen eine komplette E-Mail Adresse', + 'email_settings_comment_2' => 'Passwort des E-Mailkontos', + 'email_settings_comment_3' => 'Normale Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Beispiele: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Beispiele: pop3, imap', + 'email_settings_comment_6' => 'Erlaube oder verbiete SSL Verbindungen', + 'empty' => '--LEER--', + 'end_point' => 'zu', + 'error' => 'Fehler!', + 'example' => 'Beispiel', + 'example_country' => 'Germany', + 'external_apps' => 'externe Apps', + 'external_video_link' => 'externer Videolink', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Feedback abgeben', + 'feedback_reports' => 'Bitte gib uns eine Rückmeldung zu Deinen bisherigen Erfahrungen und schreibe eine E-Mail an', + 'feeds' => 'Feeds', + 'feed_has_been' => 'Der Feed wurde', + 'feed_items' => 'Feed-Elemente', + 'feed_name' => 'Feed Name', + 'feed_url' => 'Feed URL', + 'field_unused' => 'Unbenutztes Feld', + 'file' => 'Datei', + 'file_over_max_allowed' => 'Die Datei ist größer als die maximal erlaubte Dateigröße.', + 'filters' => 'Filter', + 'filter_reports' => 'Berichte filtern', + 'filter_reports_by' => 'Berichte filtern nach', + 'filter_reports_contain' => 'Berichte filtern die folgendes beinhalten', + 'find' => 'Finde', + 'find_location' => 'Finde Standort', + 'first_name' => 'Vorname', + 'force_run_scheduler' => 'Force Run Planer', + 'forgot_password' => 'Passwort vergessen?', + 'form' => 'Formular', + 'forms' => 'Formulare', + 'form_description' => 'Formularbeschreibung', + 'form_edit' => 'Bearbeite dieses Formular', + 'form_has_been' => 'Das Formular ist', + 'form_title' => 'Formulartitel', + 'from' => 'Von', + 'full_name' => 'Name', + 'geolocation_available' => 'Geo-Location verfügbar', + 'geometry_color' => 'Farbe', + 'geometry_comments' => 'Kommentare', + 'geometry_label' => 'Label', + 'geometry_strokewidth' => 'Strichstärke', + 'go' => 'Go', + 'hashtag' => 'Hashtag', + 'has_been' => 'wurde', + 'help' => 'Hilfe', + 'hidden' => 'Versteckt', + 'hide' => 'verstecken', + 'hide_this_message' => 'verberge diese Nachricht', + 'home' => 'Startseite', + 'Hourly' => 'Stündlich', + 'how_to_report' => 'Meldewege', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Wird verwendet um Dich auf der Seite zu identifizieren.', + 'image' => 'Bild', + 'images' => 'Bilder', + 'image_icon' => 'Bild/Icon', + 'inactive' => 'Inaktive', + 'inbox' => 'Eingang', + 'incident' => 'Unglück/Einsatz', + 'incidents_nearby' => 'Einsätze in der Nähe', + 'incident_location' => 'Einsatzort', + 'include' => 'Eingeschlossen', + 'include_categories' => 'Mit Kategorien', + 'include_custom_fields' => 'Eigene Felder hinzufügen', + 'include_description' => 'Mit Beschreibungen', + 'include_detail' => 'Soviele Details wie möglich', + 'include_latitude' => 'Mit Breitengrad', + 'include_location_information' => 'Mit Standortinformationen', + 'include_longitude' => 'Mit Längengrad', + 'include_personal_info' => 'Erfasse persönliche Daten', + 'incoming_media' => 'Eingehende Medien', + 'information_evaluation' => 'Bewertung der Informationen', + 'input_location' => 'Gib Deine genaue Position an', + 'insufficient_role' => 'Dein Konto hat leider nicht die richtigen Rechte für die Anmeldung. Bitte den Administrator kontaktieren.', + 'interval' => 'Interval', + 'in_response_to' => 'Als Antwort auf', + 'ip_address' => 'IP Addresse', + 'is_this_your_profile' => 'Ist das Dein Profil?', + 'item' => 'Eintrag', + 'items' => 'Einträge', + 'item_details' => 'Details der Einträge', + 'item_title' => 'Titel des Eintrages', + 'key' => 'Schlüssel', + 'keywords' => 'Stichwörter', + 'kml_kmz_file' => 'KMZ/KML Datei', + 'kml_kmz_upload' => 'KKMZ/KML Datei hochladen', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Sprache', + 'last' => 'Letzte', + 'last_month' => 'Letzter Monat', + 'last_name' => 'Nachname', + 'last_year' => 'Letztes Jahr', + 'latitude' => 'Breite', + 'layers' => 'Layer', + 'layers_filter' => 'Andere Layer', + 'layer_has_been' => 'Der Layer wurde', + 'layer_name' => 'Layer Name', + 'layer_url' => 'Layer URL', + 'leave_a_comment' => 'Geben Sie einen Kommentar', + 'less_information' => 'weniger Information', + 'level' => 'Level', + 'level_has_been' => 'Dieses Level wurde', + 'level_name' => 'Level Name', + 'limited' => 'begrenzt', + 'link' => 'Link', + 'list' => 'Liste', + 'loading_reports' => 'Berichte laden', + 'location' => 'Standort', + 'locations' => 'Standorte', + 'location_example' => 'Stadt Staat und/oder Land', + 'login' => 'Einloggen', + 'login_account_creation_successful' => 'Konto wurde erfolgreich erstellt. Du kannst Dich jetzt einloggen.', + 'login_confirmation_sent' => 'Eine Bestätigung wurde jetzt jetzt an Deine E-Mail Adresse verschickt.', + 'login_approval_required' => 'Das Konto wurde erstellt und muss von einem Administrator freigeschaltet werden, bevor Du Dich einloggen kannst.', + 'login_email_doesnt_exist' => 'Die E-Mail Adresse existiert nicht. Bitte verwende Deine andere Adresse oder erstelle ein Konto.', + 'login_select_openid' => 'Bitte Kontoprovider auswählen', + 'login_with' => 'Einloggen mit', + 'login_userpass' => 'E-Mail und Passwort', + 'login_openid' => 'OpenID', + 'login_signup' => 'Anmelden', + 'login_signup_click' => 'Konto erstellen', + 'login_signup_confirmation_message' => 'Danke für die Registrierung bei %1$s. Um ihre E-Mail-Adresse zu bestätigen, besuchen Sie bitte die URL: %2$s', + 'login_signup_confirmation_subject' => 'Anmeldebestätigung', + 'login_signup_admin_approval_message' => 'Ein neuer Benutzer hat sich bei %1$s registriert. Um die Registrierung freizuschalten, gehe bitte auf die folgende URL: %2$s.', + 'login_signup_admin_approval_subject' => 'Freischaltung neuer Benutzer', + 'login_signup_approval_message' => 'Dein Benutzerkonto für %1$s wurde freigeschaltet. Gehe bitte zum Login auf die URL: %2$s', + 'login_signup_approval_subject' => 'Ihr Account wurde freigeschaltet. ', + 'login_signup_text' => 'Erstelle ein Benutzerkonto, um weitere Vorteile dieser Website nutzen zu können.', + 'longitude' => 'Länge', + 'map' => 'Karte', + 'mark_read' => 'Markiere als gelesen', + 'mark_unread' => 'Markiere als ungelesen', + 'maximum_filesize' => 'Maximale Dateigröße', + 'media' => 'Medien', + 'media_filter' => 'Medienfilter', + 'members' => 'Mitglieder', + 'manage_your_account' => 'Konto verwalten', + 'message' => 'Nachricht', + 'messages' => 'Nachrichten', + 'message_details' => 'Nachrichten Details', + 'message_non_numeric_source' => 'Nachricht aus einer nicht-nummerischen Quelle:', + 'mobile' => 'Mobil', + 'modify' => 'Korrigiere', + 'modify_date' => 'Korrigiere Datum', + 'month' => 'Monat', + 'Monthly' => 'Monatlich', + 'more' => 'Mehr', + 'more_information' => 'Mehr Informationen', + 'multi_country_instance' => 'Umfasst diese Ushahidi Deployment mehrere Länder', + 'must_confirm_email_address' => 'Du muss Deine E-Mail Adresse bestätigen. Falls Du die Anmeldebestätigungs-Email verloren hast, kannst Du hier eine weitere beantragen.', + 'name' => 'Name', + 'nearby_report' => 'Benachbarter Bericht', + 'new' => 'Neu', + 'news' => 'Nachrichten', + 'news_feeds' => 'Nachrichten Feeds', + 'news_source' => 'News Quelle', + 'new_category' => 'Neue Kategorie', + 'new_password' => 'Neues Passwort', + 'new_report' => 'Neue Meldung', + 'next' => 'Weiter', + 'no' => 'Nein', + 'no_checkins' => 'Kein Checkin zur Anzeige.', + 'no_data' => 'Keine Daten', + 'none' => 'Nichts', + 'notices' => 'Notizen', + 'not_approved' => 'Ungeprüft', + 'not_approved_singular' => 'Ungeprüft', + 'not_selected' => '---Nicht ausgewählt---', + 'not_spam' => 'kein Spam', + 'not_specified' => 'nicht festgelegt', + 'no_reports' => 'Es gibt keine Berichte', + 'no_results' => 'Keine Ergebnisse', + 'off' => 'Aus', + 'official_news' => 'Offizielle Nachrichten & Meldungen', + 'on' => 'An', + 'option' => 'Option', + 'optional' => 'Optional', + 'options' => 'Optionen', + 'organization' => 'Organisation', + 'organizations' => 'Organisationen', + 'organization_description' => 'Organisations-Beschreibung', + 'organization_email' => 'Organisations-Email', + 'organization_has_been' => 'Die Organisation wurde', + 'organization_name' => 'Organisationsname', + 'organization_phone_1' => 'Organisation Telefon 1', + 'organization_phone_2' => 'Organisation Telefon 2', + 'organization_website' => 'Organisation Website', + 'original' => 'Original', + 'original_description' => 'Original Beschreibung', + 'original_title' => 'Original Titel', + 'other_ushahidi_instances' => 'Andere Ushahidi Installationen', + 'outbox' => 'Ausgang', + 'outgoing' => 'Ausgehend', + 'page' => 'Seite', + 'pages' => 'Seiten', + 'page_description' => 'Seitenbeschreibung', + 'page_has_been' => 'Die Seite wurde', + 'page_tab_name' => 'Seiten Tab Name', + 'page_title' => 'Seitentitel', + 'parent_category' => 'Übergeordnete Kategorie', + 'password' => 'Passwort', + 'password_again' => 'Passwort erneut eingeben', + 'password_changed_successfully' => 'Passwort erfolgreich verändert! Anmelden weiter unten.', + 'password_forgot' => 'Passwort vergessen?', + 'password_reset_confirm' => 'Kontrolliere Deine E-Mails für das neue Passwort.', + 'password_save' => 'Eingeloggt bleiben an diesem PC?', + 'past_month' => 'Letzter Monat', + 'past_year' => 'Letztes Jahr', + 'pending' => 'unerledigt', + 'per' => 'per', + 'personal_information' => 'Angaben zur Person Optional.', + 'phone' => 'Telefon', + 'photos' => 'Fotos', + 'pictures' => 'Bilder', + 'pictures_and_videos' => 'Bilder und Videos', + 'pinpoint_location' => '* Suche nach Deinem Standort auf der Karte oder über den Längen- und Breitengrad (Format: 38.19, 85.61).', + 'play' => 'Abspielen', + 'please_note' => 'Bitte beachten', + 'plugins' => 'Plugins', + 'plugin_url' => 'Plugins Webseite', + 'public_profile' => 'öffentliches Profil', + 'public_profile_url' => 'URL des öffentlichen Profils', + 'preview' => 'Vorschau', + 'preview_item' => 'Vorschau Eintrag', + 'preview_message' => 'Nachrichtenvorschau', + 'previous' => 'Vorher', + 'private' => 'Privat', + 'profile_color' => 'Farbe des Profils', + 'profile_saved' => 'Dein Profil wurde gespeichert', + 'quick_stats' => 'Kurzstatistik', + 'rating' => 'Bewertung', + 'read' => 'Lese', + 'receive' => 'Empfang', + 'receive_from' => 'Empfangen von', + 'receive_notifications' => 'Empfange Notifications', + 'recent_reports' => 'Neueste Meldungen', + 'refresh_news_feeds' => 'Erneuere News Feeds', + 'registered_email' => 'Registrierte E-Mail Adresse', + 'remove' => 'Entfernen', + 'reply' => 'Antwort', + 'report' => 'Report1', + 'reports_listed' => 'Berichte (aus der Karte, in chronologischer Reihenfolge)', + 'reporter' => 'Berichterstatter', + 'reporters' => 'Melder', + 'reporter_date' => 'Berichterstatter Datum', + 'reporter_email' => 'Melder Email', + 'reporter_first_name' => 'Vorname des Melder', + 'reporter_has_been' => 'Der Reporter Has Been', + 'reporter_ip' => 'IP Addresse des Melder', + 'reporter_last_name' => 'Nachname des Melder', + 'reporter_level' => 'Berichterstatter Ebene', + 'reporter_levels' => 'Berichterstatter Ebenen', + 'reporter_phone' => 'Melder Telefonnummer', + 'reports' => 'Meldungen', + 'reports_btn_browse' => 'Durchstöbern', + 'reports_btn_submit' => 'Übertragen', + 'reports_by_this_user' => 'Berichte dieses Benutzers', + 'reports_categories' => 'Kategorien', + 'reports_count' => '%d Berichte', + 'reports_date' => 'Datum', + 'reports_description' => 'Beschreibungen', + 'reports_download_csv' => 'Meldungen werden im CSV Format exportiert', + 'reports_email' => 'E-Mail', + 'reports_features' => 'Features', + 'reports_find_location' => 'Finde Standort in der Nähe', + 'reports_first' => 'Vorname', + 'reports_last' => 'Nachname', + 'reports_location_name' => 'Exakte Standortbeschreibung', + 'reports_news' => 'Quellen-Link', + 'reports_optional' => 'Optionale Informationen', + 'reports_photos' => 'Upload Fotos', + 'reports_return' => 'Zurück zu den Meldungen', + 'reports_select_city' => 'Wähle eine Stadt', + 'reports_submitted' => 'Deine Meldung wurde übertragen. Wir melden uns zeitnah bei Rückfragen.', + 'reports_submit_new' => 'Neue Meldung', + 'reports_time' => 'Zeit', + 'reports_timeline' => 'Zeitschiene', + 'reports_title' => 'Meldungs-Title', + 'reports_video' => 'Videolink', + 'report_an_incident' => 'Melden Sie ein Ereignis', + 'report_details' => 'Meldungsdetails', + 'report_option_1' => 'Senden einer Nachricht an ', + 'report_option_2' => 'Senden einer E-Mail an ', + 'report_option_3' => 'Senden eines Tweed mit folgenden Hashtag/s', + 'report_option_4' => 'Ausfüllen dieses Formulars ', + 'report_option_external_apps' => 'Bei der Verwendung einer App', + 'report_saved' => 'Ihre Meldung wurde gespeichert', + 'report_title' => 'Titel der Meldung', + 'request_information' => 'Request weitere Informationen', + 'request_location' => 'Request Standort', + 'required' => 'Benötigt', + 'requirements' => 'Bedingungen', + 'resend_confirm_email' => 'Bestätigungsmail erneut versenden', + 'reset' => 'Reset', + 'reset_all_filters' => 'Alle Filter zurücksetzen', + 'reset_password' => 'Reset Passwort', + 'retrieve_city_names' => 'Empfange Stadtnamen für das gewählte Land', + 'riverid_information' => 'Konten verwaltet vom %s Dienst.', + 'riverid_exists_login' => 'Du hast bereits ein Konto mit CrowdmapID! Bitte versuche, Deine CrowdmapID E-Mail Adresse und das zugehörige Passwort zu verwenden.', + 'role' => 'Rolle', + 'rss' => 'RSS', + 'save' => 'Speichern', + 'saved' => 'Gespeichert', + 'save_add_new' => 'Speichern & neu hinzufügen', + 'save_close' => 'Speichern + Schliessen', + 'save_report' => 'Speichern', + 'schedule' => 'Planen', + 'scheduler' => 'Terminplaner', + 'scheduler_day' => 'Tag', + 'scheduler_hour' => 'Stunde', + 'scheduler_log' => 'Terminplaner Log', + 'scheduler_minute' => 'Minute', + 'scheduler_weekday' => 'Wochentag', + 'search' => 'SUCHE', + 'search_results' => 'Suchergebnisse', + 'security_code' => 'Sicherheitscode', + 'select_all' => 'Selektiere Alle', + 'select_field_type' => 'Wähle einen Feldtyp', + 'select_form_type' => 'Wähle einen Formulartyp', + 'select_in_map' => 'Wähle in der Karte', + 'select_multiple' => 'Wählen Sie soviele aus wie notwendig', + 'select_one' => 'Kontrollieren Sie ob ein Eintrag ausgewählt ist', + 'select_theme' => 'Wähle Thema', + 'send' => 'Senden', + 'send_confirmation' => 'Bestätigung senden', + 'sending_to' => 'Senden an', + 'sent' => 'Gesendet', + 'sent_by' => 'Gesendet von', + 'server_address' => 'Serveradresse', + 'server_type' => 'Servertyp', + 'service' => 'Dienst', + 'service_username' => 'Dienst Benutzername', + 'service_user_id' => 'Dienst Benutzer ID', + 'share' => 'Teilen', + 'shared_data' => 'Daten teilen', + 'share_has_been' => 'Die Mitteilung wurde', + 'sharing' => 'Teilen', + 'shorter_map' => 'kürzere Karte', + 'show' => 'Zeige', + 'show_all' => 'Zeige Alle', + 'show_messages' => 'Nachricht zeigen', + 'showing_reports_from' => 'Zeige Berichte von %1$s bis %2$s', + 'site' => 'Webseite', + 'site_email_address' => 'Seiten E-Mailadresse', + 'site_url' => 'Seiten URL', + 'smaller_map' => 'kleinere Karte', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Entschuldigung, Sie haben keine Badges.', + 'source' => 'Quelle', + 'source_name' => 'Quellenname', + 'sort' => 'Sortieren', + 'sort_by' => 'Sortieren nach', + 'source_url' => 'URL der Quelle', + 'spam' => 'Spam', + 'ssl_support' => 'SSL Unterstützung?', + 'start_point' => 'Von', + 'step' => 'Schritt', + 'submit' => 'Ereignis-Meldung', + 'submitted_by' => 'Gesendet von %1$s über %2$s', + 'submit_sms' => 'Gemeldet via SMS', + 'submit_sms1' => 'Sende die SMS an', + 'submit_sms2' => 'auf Ihr Telefon', + 'success' => 'Erfolgreich!', + 'successfuly_imported' => 'Erfolgreich importiert', + 'surname' => 'Nachname', + 'survey' => 'Erfassung', + 'system' => 'System', + 'taller_map' => 'Größere Karte', + 'tcp_port' => 'TCP Port', + 'themes' => 'Gestaltungsvarianten', + 'theme_default' => 'Standard Ushahidi Theme', + 'theme_settings' => 'Einstellungen des Layouts', + 'this' => 'Diese', + 'this_day' => 'Heute', + 'this_month' => 'Aktueller Monat', + 'this_week' => 'Diese Woche', + 'this_year' => 'Aktuelles Jahr', + 'this_is_your_profile' => 'Dies ist Ihr Profil', + 'time' => 'Zeit', + 'title' => 'Titel', + 'to' => 'Bis', + 'today' => 'Heute', + 'today_at' => 'Heute um', + 'token' => 'Token', + 'total_reports' => 'Gesamte Berichte', + 'translated' => 'Übersetzt', + 'translated_description' => 'Übersetzte Beschreibung', + 'translated_title' => 'Übersetzter Titel', + 'translate_to' => 'Übersetzen nach', + 'translation' => 'Übersetzung', + 'translation_saved' => 'Übersetzung wurde gespeichert', + 'trusted' => 'Vertraut', + 'type' => 'Tippen', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Kann keine E-Mails verschicken', + 'uncategorized_reports' => 'Nicht kategorisierte Berichte', + 'unread' => 'ungelesen', + 'unverified' => 'unkontrolliert', + 'update_feeds' => 'Feeds auffrischen', + 'upload' => 'Hochladen', + 'upload_guide' => 'Schau Dir unsere Anleitungen zum Hochladen von Berichten an:-', + 'upload_docs_1' => 'XML Anleitung zum Hochladen', + 'upload_docs_2' => 'CSV Anleitung zum Hochladen', + 'upload_file' => 'Datei zum Upload', + 'upload_reports' => 'Berichte hochladen', + 'upload_reports_custom_forms' => 'Benutzerdefiniertes Felder müssen mit dem numerischen Wert ihrer form_id ergänzt werden. Also z. B. das Feld "Test" mit seiner form_id = 1 wird zu "Test-1". Stelle während des Imports von solchen eigenen Feldern sollte sichergestellt sein, dass', + 'upload_reports_detail_1' => 'Mit diesem Formular kannst Du Ereignisse/Meldungen in das System importieren', + 'upload_reports_detail_2' => 'Berichte müssen entweder im CSV oder XML Format hochgeladen werden.', + 'upload_reports_detail_3' => 'Wenn die Ereignis ID schon in der Datenbank vorhanden ist, wird der Eintrag in der CSV Datei ignoriert.', + 'upload_reports_detail_4' => 'Es müssen der Ereignistitel und das Datum enthalten sein.', + 'upload_reports_detail_4b' => 'Falls keine Längen- und Breitengradkolumnen verfügbar sind, wird der Ort über den Google Geocoder lokalisiert.', + 'upload_reports_detail_4c' => 'Wenn weitere Daten wie z.B. persönliche Informationen und/oder eigene Formulare importiert werden sollen', + 'upload_reports_detail_4d' => 'Mindestens ein Feld bei den persönlichen Daten (Vorname, Nachname, E-Mail Adresse) muss ausgefüllt werden. Leere Einträge werden nicht importiert', + 'upload_reports_detail_4e' => 'Deine Einträge für die Auswahlmenüs, Auswahlknöpfe und Checkboxen entsprechend den Optionen, die in dem custom field Deiner Crowdmap Installation angegeben wurden', + 'upload_reports_detail_4f' => 'Die Eingaben für die Checkboxen werden durch ein Komma und ohne Leerzeichen getrennt. In der Beispielauswahl Äpfel, Mangos und Weintrauben wird "Äpfel,Mangos,Weintrauben".', + 'upload_reports_detail_4g' => 'Datumsangabe erfolgen im folgenden Format: MM/TT/JJJJ, also z.B. 3. Oktober 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Beispiel für CSV-Datei', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Upload erfolgreich', + 'upload_video' => 'Video hochladen', + 'url' => 'URL', + 'user' => 'Benutzer', + 'username' => 'Benutzername', + 'ushahidi_admin' => 'Ushahidi Admin', + 'verification' => 'Bestätitgung', + 'verified' => 'Bestätigt', + 'verified_reports' => 'Bestätigte Meldungen', + 'verify' => 'Bestätigt', + 'verify_this_report' => 'Können Sie diese Information bestätigen? ', + 'version' => 'Version', + 'via' => 'über', + 'video' => 'Video', + 'view' => 'Zeige', + 'views' => 'Views', + 'view_all' => 'Zeige Alle', + 'view_all_feeds' => 'Zeige alle Feeds', + 'view_all_reports' => 'Zeige alle Berichte', + 'view_items' => 'Zeige Einträge', + 'view_more' => 'Zeige mehr', + 'view_public_profile' => 'Öffentliches Profil einsehen', + 'view_report' => 'Zeige Meldunng', + 'view_reports' => 'Zeige Meldungen', + 'view_video' => 'Zeige Video', + 'visible' => 'Sichtbar', + 'waiting_approval' => 'Warten auf Bestätigung', + 'waiting_verification' => 'Warten auf Kontrolle', + 'wider_map' => 'Größere Karte', + 'web_form' => 'Webformular', + 'web' => 'Web', + 'weight' => 'Gewicht', + 'Weekly' => 'Wöchentlich', + 'yes' => 'Ja', + 'yesterday' => 'Gestern', + 'your_dashboard' => 'Dein Benutzermenü', + 'your_file' => 'Deine Datei', + 'zoom_in' => 'Vergrößern', + 'zoom_out' => 'Verkleinern', +); diff --git a/application/i18n/de_DE/upgrade.php b/application/i18n/de_DE/upgrade.php new file mode 100755 index 0000000000..9ebcce60c6 --- /dev/null +++ b/application/i18n/de_DE/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Ungültige Eingabe. Enweder 1 für Ja oder 0 für Nein.', + ) , + 'upgrade_automatic' => 'Automatisches Update', + 'upgrade_available' => 'Verfügbare Updates', + 'upgrade_continue_btn_text' => 'Fortfahren', + 'upgrade_db_btn_text' => 'Aktualisieren', + 'upgrade_db_text_1' => 'So, die Datenbank wird jetzt aktualisiert von Version', + 'upgrade_db_text_2' => 'auf die neueste Datenbank Version', + 'upgrade_db_text_3' => 'Klicke auf den Update Button und relax während ich das Wunder vollbringe.', + 'upgrade_db_text_4' => 'Wen ich das Backup machen soll, musst Du auf den Button klicken und ich werde mein Bestes geben :-).', + 'upgrade_db_text_5' => 'Backup machen vor dem Update? (Sehr zu empfehlen!!)', + 'upgrade_db_title' => 'Ushahidi Datenbank Aktualisierung', + 'upgrade_db_info' => 'Ushahidi wurde aktualisiert! Bevor Du weitermachen kannst, musst Du die Datenbank auf die neueste Version aktualisieren (%s).', + 'upgrade_db_up_to_date' => 'Deine Datenbankversion ist aktuell.', + 'upgrade_failed' => 'Aktualisierung fehlgeschlagen', + 'upgrade_manual' => 'Manuelles Update', + 'upgrade_status' => 'Ushahidi Aktualisierungsstatus', + 'upgrade_text_1' => 'Untenstehend ist erklärt, wie Du Deine Ushahidi-Instanz manuell aktualisieren kannst', + 'upgrade_text_2' => '
Herunterladen
', + 'upgrade_text_3' => '
- Lade die letzte Ushahidi Version herunter von', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Nur für den Fall dass etwas schief gehen könnte, erstelle bitte vorher ein Backup Deiner kompletten Ushahidi Installation
Kopiere Dateien
- Entpacke die heruntergeladene ZIP Datei
- Abhängig vom verwendeten Betriebssystem auf dem Server, kannst Du Dein bevorzugtest Tool (z.B. Telnet, FTP, SSH) zum Einloggen auf dem Server verwenden und alle alten Dateien mit neuen ersetzen.
Aktualisiere Datenbank
- Bestimme zuerst die Version des Datenbank Schemas über den db_version Wert in der Einstellungstablle oder schaue nach der Ushahidi Aktualisierunginfo ganz oben auf dieser Seite
- Wenn Du bei Version 25 bist, musst schrittweise upgraden, also von 25-26, 26-27, 27-28 und so weiter bis zur letzten SQL Datei in Deinem/sql Verzeichnis.
- Mit Deinem Datenbank Programm aktualisierst Du die Datenbank, indem Du den zugehörigen upgradex-x.sql Befehl in der Datei ausführst.
', + 'upgrade_tables' => 'Schritt 3: Schau in den sql Ordner. Führe das Upgrade manuell durch-.sql Datei, ausgehend von der derzeitigen Datenbankversion Deiner Installation bis zur finalen sql Upgradedatei.', + 'upgrade_text_5' => 'Für ein automatisches Update, klicke bitte auf die Schaltfläche unten.', + 'upgrade_text_6' => 'Für ein automatisches Upgrade, klicke bitte auf den unten stehenden Knopf.', + 'upgrade_title_text' => 'Du verwendest derzeit Ushahidi v%1$s mit der Datenbank Version %2$d läuft auf %3$s', + 'upgrading' => 'Updating...', + 'upgrade_ftp_text' => 'Um mit dem einfachen Upgrade weiterzumachen, werden die folgenden Informationen für den FTP Server benötigt, auf dem die Website gehostet ist.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Example: "localhost"', + 'upgrade_ftp_password' => 'FTP Passwort:', + 'upgrade_ftp_username' => 'FTP Benutzername:', + 'upgrade_status_info' => 'Du verwendest die neueste Version von Ushahidi.', + 'upgrade_status_info_2' => 'Du brauchst nicht zu aktualisieren.', + 'upgrade_db_version' => 'Datenbankversion: %d', + 'upgrade_warning_software_version' => 'Achtung: Die Software Version in der Datei version.php und in der Datenbank stimmen nicht überein.', + 'upgrade_warning_db_version' => 'Achtung: Die Software Version in der Datei version.php und in der Datenbank stimmen nicht überein.', + 'upgrade_database' => 'Datenbank:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Herunterladen der neuesten Version von Ushahidi...', + 'log_file' => 'Log Datei', + 'successfully_downloaded' => 'Erfolgreich heruntergeladen. Entpacke...', + 'failed_downloading' => 'Fehler beim Herunterladen.', + 'successfully_unpacked' => 'Erfolgreich entpackt. Kopiere Dateien..', + 'failed_unpacking' => 'Fehler beim Entpacken.', + 'successfully_copied' => 'Erfolgreich kopiert. Upgrae Datenbank...', + 'failed_copying' => 'Fehler beim Kopieren der Dateien.', + 'backup_success' => 'Datenbankbackup und -upgrade erfolgreich.', + 'backup_failed' => 'Fehler beim Backup der Datenbank.', + 'dbupgrade_success' => 'Datenbank Upgrade erfolgreich.', + 'deleting_files' => 'Löschen heruntergeladener Dateien...', + 'upgrade_success' => 'UPGRADE ERFOLGREICH. Zeige die Log Datei an', +); diff --git a/application/i18n/dv/alerts.php b/application/i18n/dv/alerts.php new file mode 100644 index 0000000000..946d27e28a --- /dev/null +++ b/application/i18n/dv/alerts.php @@ -0,0 +1,12 @@ + array( + 'email' => 'އީމެއިލް ފީލްޑްގައި ރަގަޅު އީމެއިލްއެއް ޖައްސަވާ', + 'email_check' => 'read', + ) , +); diff --git a/application/i18n/dv/auth.php b/application/i18n/dv/auth.php new file mode 100644 index 0000000000..ad8f59a64f --- /dev/null +++ b/application/i18n/dv/auth.php @@ -0,0 +1,7 @@ + 'ފިޔަވަޅުތައް', + 'added' => 'އިތުރުކޮއްފި', + 'admin_role' => 'އިދާރީ', + 'alerts' => 'އިންޒާރުތައް', + 'alerts_received' => 'ލިބިފައިވާ އިންޒާރުތައް', + 'anonymous' => 'ނަން ހާމަކުރަން ބޭނުންނުވާ', + 'anyone_role' => 'ކޮންމެ މީލަކު ވިޔަސް', + 'anywhere' => 'ކޮންމެ ތާކު', + 'api_banned' => 'އޭ ޕީ އައި މަނާކޮއްފަ', + 'api_logs' => 'އޭ ޕީ އައިގެ ލިޔެކިޔުން', + 'approved' => 'ހުއްދަ ލިބިފައަ', + 'archived' => 'ރައްކާކުރުން', + 'color' => 'ކުލަ', +); diff --git a/application/i18n/dv/ui_main.php b/application/i18n/dv/ui_main.php new file mode 100644 index 0000000000..74e52bf94e --- /dev/null +++ b/application/i18n/dv/ui_main.php @@ -0,0 +1,27 @@ + 'އަބައުޓް', + 'access' => 'އެކްސެސް', + 'account_name' => 'އެކައުންޓްގެ ވެރިފަރާތުގެ ނަން', + 'activate' => 'އެކްޓިވޭޓް', + 'confirm_email_successful' => 'ތިޔަ ބޭފުޅާގެ އީމެއިލް ކޮންފާރމް ކުރެވިއްޖެއެވެ. އަވަހަށް ލޮގްއިން ވާށެވެ', + 'contact' => 'އަހަރަމެންނާއި ގުޅުމަށް', + 'contact_message_has_send' => 'ތިޔަބޭފުޅާގެ މެސެޖް ފޮނުވިއްޖެއެވެ', + 'contact_name' => 'ނަން', + 'contact_phone' => 'ގުޅޭނެ ނަންބަރު', + 'contact_send' => 'މެސެޖް ފޮނުއްވާ', + 'create_new_password' => 'އާޕާސްވާރޑެއް އުފައްދަވާ', + 'create_report' => 'ރިޕޯޓެއް އުފައްދަވާ', + 'date' => 'ތާރީޚް', + 'date_format' => '(މމ/ދދ/އއއއ)', + 'date_time' => 'ދުވަހާއި ވަގުތު', + 'day' => 'ދުވަސް', + 'email' => 'އީމެއިލް', + 'email_address' => 'އީމެއިލް އެޑްރެސް', + 'email_settings_comment_2' => 'އީމެއިލް އެކައުންޓްގެ ޕާސްވާރޑް ޖައްސަވާ', +); diff --git a/application/i18n/el/alerts.php b/application/i18n/el/alerts.php new file mode 100644 index 0000000000..2284c1d8dd --- /dev/null +++ b/application/i18n/el/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου φαίνεται να μην περιέχει μια έγκυρη διεύθυνση e-mail;', + 'email_check' => 'Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου έχει ήδη εγγραφεί για να λαμβάνει ειδοποιήσεις για την εν λόγω περιοχή.', + 'length' => 'Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου πρέπει να έχει μήκος τουλάχιστον 4 και όχι περισσότερο απο 64 χαρακτήρες.', + 'required' => 'Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου είναι υποχρεωτικό εάν το checkbox είναι επιλεγμένο.', + ) , + 'alert_country' => array( + 'single_country' => 'Αυτή η εγκατάσταση αφορά μία μόνο χώρα. Παρακαλώ βεβαιωθείτε ότι η τοποθεσία για τις ειδοποιήσεις βρίσκεται εντός της χώρας %s.', + ) , + 'alert_lat' => array( + 'between' => 'Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη.', + 'required' => 'Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη.', + ) , + 'alert_lon' => array( + 'between' => 'Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη.', + 'required' => 'Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη.', + ) , + 'alert_mobile' => array( + 'length' => 'Το πεδίο της κινητής τηλεφωνίας δεν φαίνεται να περιέχει τον σωστό αριθμό ψηφίων.', + 'mobile_check' => 'Αυτός ο αριθμός κινητού τηλεφώνου έχει ήδη εγγραφεί για να λαμβάνει ειδοποιήσεις για την εν λόγω περιοχή.', + 'numeric' => 'Το πεδίο του κινητού τηλεφώνου δεν φαίνεται να περιέχει ένα έγκυρο τηλέφωνο. Παρακαλούμε εισάγετε μόνο αριθμούς μαζί με τον κωδικό χώρας.', + 'one_required' => 'Πρέπει να εισάγετε είτε τον αριθμό κινητού τηλεφώνου σας, είτε τη διεύθυνση Email σας.', + 'required' => 'Το πεδίο "κινητό τηλέφωνο" είναι απαραίτητο εάν το checkbox είναι επιλεγμένο.', + ) , + 'alert_radius' => array( + 'in_array' => 'Δεν έχετε ορίσει μια έγκυρη ακτίνα στο χάρτη.', + 'required' => 'Δεν έχετε ρυθμίσει ακτίνα σας στο χάρτη.', + ) , + 'alert_recipient' => array( + 'required' => 'Δεν έχετε ορίσει παραλήπτη για τις ειδοποιήσεις.', + ) , + 'alerts_subscribed' => 'Έχετε εγγραφεί για ειδοποιήσεις για τις ακόλουθες κατηγορίες', + 'code_already_verified' => 'Αυτός ο κώδικας έχει ήδη χρησιμοποιηθεί!', + 'code_not_found' => 'Ο κωδικός επαλήθευσης δεν βρέθηκε! Επιβεβαιώστε ότι έχετε τη σωστή διεύθυνση URL.', + 'code_verified' => 'Ο κωδικός σας επαληθεύτηκε ορθά. Θα λάβετε ειδοποιήσεις σχετικά με τα περιστατικά καθώς αυτά συμβαίνουν.', + 'confirm_request' => 'Για να επιβεβαιώσετε το αίτημά ειδοποίησης, παρακαλώ πηγαίνετε στο', + 'create_more_alerts' => 'Επιστροφή στην σελίδα με τις ειδοποιήσεις για την δημιουργία περισσότερων', + 'email_alert_request_created' => 'Το αίτημά σας έχει για ειδοποιήσεις μέσω email έχει δημιουργηθεί και το μήνυμα επαλήθευσης έχει σταλεί στο', + 'email_code' => 'Παρακαλώ εισάγετε τον κωδικό επιβεβαίωσης ηλεκτρονικού ταχυδρομείου που λάβατε:', + 'email_error_head' => 'Η Αίτηση σας για ειδοποιήσεις μεσώ email ΔΕΝ έχει αποθηκευτεί!', + 'email_ok_head' => 'Η Αίτηση σας για ειδοποιήσεις μεσώ email έχει αποθηκευτεί!', + 'error' => 'Το σύστημα δεν ήταν σε θέση να επεξεργαστούμε το αίτημά επιβεβαίωσής σας !', + 'mobile_alert_request_created' => 'Το αίτημά σας έχει για ειδοποιήσεις μέσω κινητού έχει δημιουργηθεί και το μήνυμα επαλήθευσης έχει σταλεί στο', + 'mobile_code' => 'Παρακαλώ εισάγετε τον κωδικό επιβεβαίωσης SMS που λάβατε στο κινητό σας:', + 'mobile_error_head' => 'Η αίτηση σας για ειδοποιήσεις στο κινητό σας ΔΕΝ έχει αποθηκευτεί!', + 'mobile_ok_head' => 'Η αίτηση σας για ειδοποιήσεις στο κινητό σας έχει αποθηκευτεί!', + 'settings_error' => 'Αυτή η εγκατάσταση δεν έχει παραμετροποιηθεί ώστε να επεξεργάζεται σωστά ειδοποιήσεις', + 'unsubscribe' => 'Έχετε λάβει αυτό το μήνυμα επειδή έχετε εγγραφεί για να λαμβάνετε ειδοποιήσεις. Εάν δεν επιθυμείτε να λαμβάνετε στο μέλλον ειδοποιήσεις πηγαίνετε στο', + 'unsubscribed' => 'Δεν θα λαμβάνετε πλέον ειδοποιήσεις από', + 'unsubscribe_failed' => 'Δεν ήμασταν σε θέση να σας διαγράψουμε. Επιβεβαιώστε ότι έχετε τη σωστή διεύθυνση URL.', + 'verification_email_subject' => 'ειδοποιήσεις - επαλήθευση', + 'verify_code' => 'Δεν θα λαμβάνετε ειδοποιήσεις για αυτήν τη περιοχή μέχρι να επιβεβαιώσετε το αίτημά σας', +); diff --git a/application/i18n/el/auth.php b/application/i18n/el/auth.php new file mode 100644 index 0000000000..76abc37943 --- /dev/null +++ b/application/i18n/el/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Το email που έδωσες δεν έχει έγκυρη διεύθυνση email', + 'exists' => 'Συγγνώμη, υπάρχει ήδη λογαριασμός χρήστη με αυτό το email.', + 'length' => 'Το email πρέπει να περιέχει τουλάχιστον 4 και το πολύ 64 χαρακτήρες', + 'required' => 'Το email απαιτείται', + ) , + 'name' => array( + 'length' => 'Το όνομα πρέπει να περιέχει τουλάχιστον 3 και το πολύ 100 χαρακτήρες.', + 'required' => 'Το όνομα απαιτείται', + 'standard_text' => 'Το όνομα χρήστη περιέχει μη επιτρεπτούς χαρακτήρες', + ) , + 'current_password' => array( + 'length' => 'Ο κωδικός πρέπει να είναι τουλάχιστον 8 χαρακτήρες', + 'login error' => 'Παρακαλώ έλεγξε ότι έβαλες τη σωστή διεύθυνση email και το σωστό κωδικό', + 'matches' => 'Παρακαλώ βάλε τον ίδιο κωδικό στα δύο πεδία', + 'required' => 'Ο κωδικός απαιτείται', + 'alpha_dash' => 'Ο κωδικός μπορεί να περιέχει μόνο αλφαρηθμητικούς χαρακτήρες, τα σύμβολα # και @, αριθμούς, παύλα και κάτω παύλα', + 'incorrect' => 'Ο κωδικός που έδωσες δεν είναι σωστός. Παρακαλώ προσπάθησε ξανά.', + ) , + 'new_password' => array( + 'length' => 'Ο κωδικός πρέπει να είναι τουλάχιστον 8 χαρακτήρες.', + 'login error' => 'Παρακαλώ έλεγξε ότι έβαλες τη σωστή διεύθυνση email και το σωστό κωδικό', + 'matches' => 'Παρακαλώ βάλε τον ίδιο κωδικό στα δύο πεδία', + 'required' => 'Ο κωδικός απαιτείται', + 'alpha_dash' => 'Ο κωδικός μπορεί να περιέχει μόνο αλφαρηθμητικούς χαρακτήρες, τα σύμβολα # και @, αριθμούς, παύλα και κάτω παύλα', + ) , + 'password' => array( + 'default' => 'Υπήρξε κάποιο σφάλμα στην προσπάθεια εισόδου στο σύστημα.', + 'length' => 'Ο κωδικός πρέπει να είναι τουλάχιστον 8 χαρακτήρες.', + 'login error' => 'Παρακαλώ έλεγξε ότι έβαλες τη σωστή διεύθυνση email και το σωστό κωδικό', + 'matches' => 'Παρακαλώ βάλε τον ίδιο κωδικό στα δύο πεδία', + 'required' => 'Ο κωδικός απαιτείται', + 'riverid server down' => 'Ο server πιστοποίησης είναι πεσμένος. Παρακαλώ προσπάθησε ξανά αργότερα.', + 'riverid' => '%s', + 'alpha_dash' => 'Ο κωδικός μπορεί να περιέχει μόνο αλφαρηθμητικούς χαρακτήρες, τα σύμβολα # και @, αριθμούς, παύλα και κάτω παύλα', + ) , + 'password_confirm' => array( + 'matches' => 'Το πεδίο επιβεβαίωση κωδικού πρέπει να περιέχει την ίδια τιμή με το πεδίο κωδικός', + ) , + 'resetemail' => array( + 'email' => 'Το email που έβαλες δεν είναι έγκυρο.', + 'invalid' => 'Συγγνώμη, δεν έχουμε τη διεύθυνση του email σου.', + 'required' => 'Το email απαιτείται.', + ) , + 'role' => array( + 'superadmin_modify' => 'Μόνο ο superadmin μπορεί να τροποποιήσει τις ρυθμίσεις ενός superadmin ή να προβιβάσει ένα χρήστη σε διαχειριστή.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Μη αποδεκτή μορφή ρόλου.', + 'length' => 'Ο ρόλος πρέπει να περιέχει τουλάχιστον 5 και όχι περισσότερους από 30 χαρακτήρες.', + 'required' => 'Πρέπει να ορίσεις τουλάχιστον ένα ρόλο.', + 'values' => 'Πρέπει να επιλέξεις ρόλο είτε ADMIN είτε USER.', + ) , + 'token' => array( + 'invalid' => 'Το token ξεχασμένου κωδικού δεν είναι έγκυρο.', + 'required' => 'Το token ξεχασμένου κωδικού απαιτείται.', + ) , + 'username' => array( + 'admin' => 'Ο ρόλος του admin δεν μπορεί να τροποποιηθεί.', + 'alpha_numeric' => 'Το URL του δημόσιου προφίλ πρέπει να περιέχει μόνο γράμματα και αριθμούς.', + 'exists' => 'Συγγνώμη, αυτό το URL δημόσιου προφίλ χρησιμοποιείται ήδη.', + 'length' => 'Το URL του δημόσιου προφίλ πρέπει να περιέχει τουλάχιστον 2 και όχι περισσότερους από 100 χαρακτήρες.', + 'login error' => 'Παρακαλώ έλεγξε ότι έχεις εισάγει το σωστό URL του δημόσιου προφίλ.', + 'required' => 'Το URL του δημόσιου προφίλ απαιτείται.', + 'superadmin' => 'Ο ρόλος του super admin δεν μπορεί να τροποποιηθεί.', + 'csrf' => 'Πιθανή επίθεση CSRF. Ήθελες όντως να δημιουργήσεις / διορθώσεις ένα χρήστη;', + ) , +); diff --git a/application/i18n/el/bug.php b/application/i18n/el/bug.php new file mode 100644 index 0000000000..085285204e --- /dev/null +++ b/application/i18n/el/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας.', + 'required' => 'Παρακαλώ εισάγετε τον κωδικό ασφαλείας.', + ) , + 'email' => array( + 'email' => 'Το πεδίο e-mail δεν φαίνεται να περιέχει μια έγκυρη διεύθυνση e-mail;', + 'length' => 'Το πεδίο Email πρέπει να έχει μήκος τουλάχιστον 4 και όχι περισσότερο απο 64 χαρακτήρες', + 'required' => 'Το πεδίο Email είναι υποχρεωτικό εάν η επιλογή είναι επιλεγμένη.', + ) , + 'error' => array( + 'required' => 'Το πεδίο "σφάλμα" είναι υποχρεωτικό', + ) , + 'subject' => array( + 'length' => 'Το πεδίο "Θέμα" πρέπει να είναι τουλάχιστον 3 χαρακτήρες.', + 'required' => 'Το πεδίο "Θέμα" είναι υποχρεωτικό', + ) , + 'yourname' => array( + 'length' => 'Το πεδίο "Όνομα" πρέπει να είναι τουλάχιστον 3 χαρακτήρες.', + 'required' => 'Το πεδίο "Όνομα" είναι υποχρεωτικό', + ) , +); diff --git a/application/i18n/el/category.php b/application/i18n/el/category.php new file mode 100644 index 0000000000..d8c6064f76 --- /dev/null +++ b/application/i18n/el/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Το πεδίο Χρώμα πρέπει να έίναι 6 χαρακτήρων.', + 'required' => 'Το πεδίο Χρώμα απαιτείται.', + ) , + 'category_description' => array( + 'required' => 'Το πεδίο Περιγραφή απαιτείται.', + ) , + 'category_image' => array( + 'size' => 'Παρακαλώ βεβαιωθείτε ότι το μέγεθος των φωτογραφιών δεν υπερβαίνει τα 50KB.', + 'type' => 'Το πεδίο Εικόνα δεν περιλαμβάνει έγκυρο αρχείο εικόνας. Τα μοναδικά αποδεκτά αρχεία είναι .JPG, .PNG και .GIF.', + 'valid' => 'Το πεδίο Εικόνα δεν περιλαμβάνει έγκυρο αρχείο εικόνας.', + ) , + 'category_title' => array( + 'length' => 'Το πεδίο Τίτλος πρέπει να είναι από 3 εώς 80 χαρακτήρες.', + 'required' => 'Το πεδίο Τίτλος απαιτείται.', + ) , + 'parent_id' => array( + 'already_parent' => 'Δεν μπορείς να κάνεις υποκατηγορία μια κατηγορία που έχει υποκατηγορίες.', + 'exists' => 'Η γονική κατηγορία δεν υπάρχει', + 'numeric' => 'Το πεδίο της γονικής κατηγορίας πρέπει να είναι αριθμητικό', + 'parent_trusted' => 'Η γονική κατηγορία δεν μπορεί να είναι ειδική κατηγορία', + 'required' => 'Το πεδίο γονικής κατηγορίας είναι προαπαιτούμενο', + 'same' => 'Η κατηγορία δεν μπορεί να είναι ίδια με τη γονική της', + 'special' => 'Ειδικές κατηγορίες δεν μπορούν να ενταχθούν στις υποκατηγορίες.', + ) , +); diff --git a/application/i18n/el/comments.php b/application/i18n/el/comments.php new file mode 100644 index 0000000000..983499528c --- /dev/null +++ b/application/i18n/el/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας.', + 'required' => 'Παρακαλώ εισάγετε τον κωδικό ασφαλείας.', + 'valid' => 'Εισάγατε λανθασμένο κωδικό ασφαλείας.', + ) , + 'comment_author' => array( + 'length' => 'Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 3 χαρακτήρων.', + 'required' => 'Το πεδίο Όνομα απαιτείται.', + ) , + 'comment_description' => array( + 'required' => 'Το πεδίο Σχόλια απαιτείται.', + ) , + 'comment_email' => array( + 'email' => 'Στο πεδίο Ηλεκτρονική Διεύθυνση δεν εμφανίζεται έγκυρη ηλεκτρονική διεύθυνση.', + 'length' => 'Το πεδίο Ηλεκτρονική Διεύθυνση πρέπει να είναι από 4 εώς 64 χαρακτήρες.', + 'required' => 'Το πεδίο Ηλεκτρονική Διεύθυνση απαιτείται αν το κουτάκι επιλογής είναι επιλεγμένο.', + ) , +); diff --git a/application/i18n/el/contact.php b/application/i18n/el/contact.php new file mode 100644 index 0000000000..42b4cc159e --- /dev/null +++ b/application/i18n/el/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας.', + 'valid' => 'Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας.', + 'required' => 'Παρακαλώ εισάγετε τον κωδικό ασφαλείας.', + ) , + 'contact_email' => array( + 'email' => 'Το πεδίο Ηλεκτρονική Διεύθυνση δεν περιλαμβάνει έγκυρη ηλεκτρονική διεύθυνση.', + 'length' => 'Το πεδίο Ηλεκτρονικής Διεύθυνσης πρέπει να έιναι από 4 εως 64 χαρακτήρες.', + 'required' => 'Το πεδίο Ηλεκτρονικής Διεύθυνσης είναι απαραίτητο αν το κουτάκι επιλογής είναι επιλεγμένο.', + ) , + 'contact_message' => array( + 'required' => 'Το πεδίο Μήνυμα απαιτείται.', + ) , + 'contact_name' => array( + 'length' => 'Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 3 χαρακτήρων.', + 'required' => 'Το πεδίο Όνομα απαιτείται.', + ) , + 'contact_subject' => array( + 'length' => 'Το πεδίο Θέμα πρέπει να είναι τουλάχιστον 3 χαρακτήρων.', + 'required' => 'Το πεδίο Θέμα απαιτείται.', + ) , + 'email_send' => array( + 'failed' => 'Υπήρξε πρόβλημα στην αποστολή του μηνύματός σας.', + ) , +); diff --git a/application/i18n/el/core.php b/application/i18n/el/core.php new file mode 100644 index 0000000000..5fc50c8199 --- /dev/null +++ b/application/i18n/el/core.php @@ -0,0 +1,35 @@ + 'config file', + 'controller' => 'controller', + 'driver' => 'driver', + 'driver_implements' => 'Ο %s driver της %s βιβλιοθήκης πρέπει να χρησιμοποιήσει το %s interface.', + 'driver_not_found' => 'Ο %s driver της %s βιβλιοθήκης δεν βρέθηκε.', + 'errors_disabled' => 'Μπορείς να πας στην αρχική σελίδα ή να δοκιμάσεις ξανά.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Δεν μπόρεσα να ολοκληρώσω το αίτημα.', + 'helper' => 'helper', + 'invalid_filetype' => 'Ο τύπος αρχείου που ζητάς, .%s, δεν επιτρέπεται στο view configuration αρχείο.', + 'invalid_method' => 'Μη έγκυρη μέθοδος %s κλήθηκε στο %s', + 'invalid_property' => 'Η ιδιότητα %s δεν υπάρχει στην %s class.', + 'library' => 'βιβλιοθήκη', + 'log_dir_unwritable' => 'Ο φάκελος log δεν είναι εγγράψιμος: %s', + 'model' => 'μοντέλο', + 'no_controller' => 'Το Ushahidi δεν μπόρεσε να καθορίσει τον controller για την επεξεργασία αυτού του αιτήματος: %s', + 'no_default_route' => 'Παρακαλώ όρισε μια προκαθορισμένη διαδρομή στο config/routes.php', + 'page_not_found' => 'Η σελίδα που ζήτησες, %s, δεν μπόρεσε να βρεθεί.', + 'report_bug' => 'Ανάφερε αυτό το θέμα στο Ushahidi', + 'resource_not_found' => 'Το ζητούμενο %s, %s, δεν ήταν δυνατόν να βρεθεί.', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Φορτώθηκε σε {execution_time} δευτερόλεπτα, χρησιμοποιώντας {memory_usage} μνήμης. Παράχθηκε από το Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Μόνο ένα Ushahidi instance μπορεί να υπάρχει σε κάθε αίτημα σελίδας.', + 'uncaught_exception' => 'Uncaught %s: %s in file %s on line %s', + 'view' => 'view', + 'view_set_filename' => 'Πρέπει να ορίσεις το view filename πριν καλέσεις το render.', +); diff --git a/application/i18n/el/database.php b/application/i18n/el/database.php new file mode 100644 index 0000000000..34c0622c53 --- /dev/null +++ b/application/i18n/el/database.php @@ -0,0 +1,10 @@ + 'Σφάλμα βάσης δεδομένων: %s', + 'table_not_found' => 'Ο πίνακας "%s" δεν μπορεί να βρεθεί στη βάση δεδομένων. Παρακαλώ επιβεβαίωσε ότι χρησιμοποιείς την τελευταία έκδοση της βάσης δεδομένων για αυτή την έκδοση του Ushahidi.', +); diff --git a/application/i18n/el/datetime.php b/application/i18n/el/datetime.php new file mode 100644 index 0000000000..6660d209b5 --- /dev/null +++ b/application/i18n/el/datetime.php @@ -0,0 +1,86 @@ + 'πμ', + 'friday' => array( + 'abbv' => 'Παρ', + 'full' => 'Παρασκευή', + ) , + 'monday' => array( + 'abbv' => 'Δευτ', + 'full' => 'Δευτέρα', + ) , + 'pm' => 'μμ', + 'saturday' => array( + 'abbv' => 'Σαβ', + 'full' => 'Σάββατο', + ) , + 'sunday' => array( + 'abbv' => 'Κυρ', + 'full' => 'Κυριακή', + ) , + 'thursday' => array( + 'abbv' => 'Πεμ', + 'full' => 'Πέμπτη', + ) , + 'tuesday' => array( + 'abbv' => 'Τρ', + 'full' => 'Τρίτη', + ) , + 'wednesday' => array( + 'abbv' => 'Τετ', + 'full' => 'Τετάρτη', + ) , + 'january' => array( + 'abbv' => 'Ιαν', + 'full' => 'Ιανουάριος', + ) , + 'february' => array( + 'abbv' => 'Φεβ', + 'full' => 'Φεβρουάριος', + ) , + 'march' => array( + 'abbv' => 'Μαρ', + 'full' => 'Μάρτιος', + ) , + 'april' => array( + 'abbv' => 'Απρ', + 'full' => 'Απρίλιος', + ) , + 'may' => array( + 'abbv' => 'Μάιος', + 'full' => 'Μάιος', + ) , + 'june' => array( + 'abbv' => 'Ιουν', + 'full' => 'Ιούνιος', + ) , + 'july' => array( + 'abbv' => 'Ιουλ', + 'full' => 'Ιούλιος', + ) , + 'august' => array( + 'abbv' => 'Αυγ', + 'full' => 'Αύγουστος', + ) , + 'september' => array( + 'abbv' => 'Σεπ', + 'full' => 'Σεπτέμβριος', + ) , + 'october' => array( + 'abbv' => 'Οκτ', + 'full' => 'Οκτώβριος', + ) , + 'november' => array( + 'abbv' => 'Νοβ', + 'full' => 'Νοέμβριος', + ) , + 'december' => array( + 'abbv' => 'Δεκ', + 'full' => 'Δεκέμβριος', + ) , +); diff --git a/application/i18n/el/feeds.php b/application/i18n/el/feeds.php new file mode 100644 index 0000000000..ce70832527 --- /dev/null +++ b/application/i18n/el/feeds.php @@ -0,0 +1,19 @@ + 'Ημερομηνία ', + 'feed_name' => array( + 'length' => 'Το πεδίο ροής πρέπει να είναι τουλάχιστον 3 και όχι παραπάνω από 70 χαρακτήρες.', + 'required' => 'Παρακαλώ εισάγετε το όνομα της ροής', + ) , + 'feed_url' => array( + 'required' => 'Παρακαλώ εισάγετε το URL της ροής.', + 'url' => 'Παρακαλώ εισάγετε μια έγκυρη διεύθυνση URL, π.χ. http://www.ushahidi.com', + ) , + 'source' => 'Πηγή', + 'title' => 'Τίτλος', +); diff --git a/application/i18n/el/footer.php b/application/i18n/el/footer.php new file mode 100644 index 0000000000..9999fa5ed6 --- /dev/null +++ b/application/i18n/el/footer.php @@ -0,0 +1,9 @@ + 'Το php5-curl δεν είναι εγκατεστημένο σε αυτό το σύστημα', +); diff --git a/application/i18n/el/form.php b/application/i18n/el/form.php new file mode 100644 index 0000000000..8b6b8cb720 --- /dev/null +++ b/application/i18n/el/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Η προκαθορισμένη τιμή που έχεις δώσει για το πεδίο δεν είναι έγκυρη.', + 'length' => 'Το πεδίο Όνομα πρέπει να είναι από 3 και μέχρι 200 χαρακτήρες.', + ) , + 'field_height' => array( + 'between' => 'Παρακαλώ επιλέξτε μια αξία από 0 εώς 50 για το πεδίο Ύψος.', + ) , + 'field_isdate' => array( + 'between' => 'Έχετε εισάγει μη αποδεκτή αξία στο πεδίο ημερομηνία.', + 'required' => 'Παρακαλώ επιλέξτε Ναί ή Όχι στο πεδίο ημερομηνία.', + ) , + 'field_name' => array( + 'length' => 'Στο πεδίο όνομα συμπληρώνουμε από 3 και μέχρι 100 χαρακτήρες.', + 'required' => 'Παρακαλώ συμπληρώστε το πεδίο Όνομα.', + 'duplicate' => 'Το όνομα πεδίου που έδωσες υπάρχει ήδη στη φόρμα αυτή. Παρακαλώ δώσε ένα νέο όνομα.', + ) , + 'field_required' => array( + 'between' => 'Έχεις εισάγει μη έγκυρη τιμή για το απαιτούμενο πεδίο.', + 'required' => 'Παρακαλώ επίλεξε Ναι ή Όχι για το απαιτούμενο πεδίο.', + ) , + 'field_type' => array( + 'numeric' => 'Παρακαλώ επίλεξε ένα έγκυρο τύπο για το πεδίο.', + 'required' => 'Παρακαλώ επίλεξε ένα τύπο πεδίου', + ) , + 'field_width' => array( + 'between' => 'Παρακαλώ επιλέξτε μια αξία από 0 εώς 300 για το πεδίο Πλάτος.', + ) , + 'form_description' => array( + 'required' => 'Παρακαλώ γράψε την περιγραφή της φόρμας.', + ) , + 'form_id' => array( + 'default' => 'Η προκαθορισμένη φόρμα δεν μπορεί να διαγραφεί.', + 'numeric' => 'Παρακαλώ επίλεξε σε ποια φόρμα θα προστεθεί αυτό το πεδίο.', + 'required' => 'Παρακαλώ επίλεξε σε ποια φόρμα θα προστεθεί αυτό το πεδίο.', + ) , + 'form_title' => array( + 'length' => 'Το πεδίο ονόματος της φόρμας θα πρέπει να έχει τουλάχιστον 3 και όχι περισσότερους από 100 χαρακτήρες.', + 'required' => 'Παρακαλώ δώσε το όνομα της φόρμας.', + 'exists' => 'Αίτηση με αυτό τον τίτλο υπάρχει ήδη. Παρακαλώ επιλέξτε άλλο.', + ) , +); diff --git a/application/i18n/el/imap.php b/application/i18n/el/imap.php new file mode 100644 index 0000000000..cb44a2233e --- /dev/null +++ b/application/i18n/el/imap.php @@ -0,0 +1,10 @@ + 'Η ροή IMAP δεν ήταν δυνατό να ενεργοποιηθεί', + 'unsupported_service' => 'Η υπηρεσία ηλεκτρονικής διεύθυνσης δεν υποστηρίζεται.', +); diff --git a/application/i18n/el/installer.php b/application/i18n/el/installer.php new file mode 100644 index 0000000000..edf25b236d --- /dev/null +++ b/application/i18n/el/installer.php @@ -0,0 +1,80 @@ + 'Μονοπάτι βάσης', + 'database' => 'Βάση δεδομένων', + 'database_host' => 'Εξυπηρετητής βάσης δεδομένων (Database Host)', + 'database_host_description' => 'Εάν τρέχεις το Ushahidi στο δικό σου υπολογιστή, αυτό θα είναι πιθανότατα το "localhost". Εάν το τρέχεις σε κάποιο web server, θα πάρεις τις πληροφορίες για τον εξυπηρετητή (host) από τον πάροχό σου.', + 'database_name' => 'Όνομα βάσης δεδομένων', + 'database_name_description' => 'Το όνομα της βάσης δεδομένων στην οποία θέλεις να τρέχει το Ushahidi', + 'db_information_link' => 'Για περισσότερες πληροφορίες παρακαλώ κοίταξε σε αυτό το άρθρο, στο wiki που μιλάει με περισσότερες λεπτομέρειες για βάσεις δεδομένων.', + 'default_language' => 'Προεπιλεγμένη γλώσσα (γεωγραφική επιλογή)', + 'default_language_description' => 'Κάθε εγκατάσταση του Ushahidi έρχεται με ένα σετ από προεγκατεστημένες μεταφράσεις σε διάφορες γλώσσες. Μπορείς επίσης να προσθέσεις και τη δική σου.', + 'disable' => 'Απενεργοποίηση', + 'enable' => 'Ενεργοποίηση', + 'error_summary' => 'Παρακάτω παρατίθεται μια λίστα με τα σφάλματα που εντοπίσαμε.', + 'files_location_text' => 'Η τοποθεσία του εξυπηρετητή, στον οποίο εγκατέστησες τα αρχεία του Ushahidi. Έχουμε εντοπίσει αυτή την τιμή αυτόματα, παρακαλούμε επιβεβαίωσε ότι είναι σωστή Εάν το πεδίο είναι άδειο, μην ανησυχείς, σημαίνει ότι το Ushahidi έχει εγκατασταθεί στο φάκελο του ανώτατου επιπέδου (top level folder).', + 'finished' => 'Ολοκληρώθηκε', + 'general' => 'Γενικά', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Ο οποιοσδήποτε μπορεί να δημιουργήσει ένα κλειδί API. Φτιάξε τώρα το δικό σου', + 'go_back' => 'Προηγούμενο', + 'index' => array( + 'advanced' => 'ΠΡΟΧΩΡΗΜΕΝΗ ΕΓΚΑΤΑΣΤΑΣΗ', + 'advanced_installation_description' => 'Ολοκλήρωσε όλες τις βασικές ρυθμίσεις μέσω αυτής της διαδικασίας 5 βημάτων. Αυτή συμπεριλαμβάνει τον εξυπηρετητή, το χάρτη, το όνομα του site και τις λεπτομέρειες επικοινωνίας.', + 'basic_installation' => 'ΒΑΣΙΚΗ ΕΓΚΑΤΑΣΤΑΣΗ', + 'basic_installation_description' => 'Απλή και γρήγορη. Χρειάζεσαι μόνο το ριζικό φάκελο (root directory) του site σου και τις πληροφορίες για τη βάση δεδομένων. Επίλεξε αυτή την επιλογή εάν θέλεις να στήσεις γρήγορα το Ushahidi σου. Μπορείς να αλλάξεις τις ρυθμίσεις αργότερα.', + 'proceed' => 'Συνέχισε', + 'welcome' => 'Καλώς ήλθες στη διαδικασία εγκατάστασης του Ushahidi. Διάλεξε παρακάτω ένα τύπο εγκατάστασης.', + ) , + 'installation_successful' => 'Επιτυχής εγκατάσταση', + 'mail_server' => 'Διακομιστής αλληλογραφίας', + 'mail_server_host' => 'Εξυπηρετητής αλληλογραφίας', + 'mail_server_host_description' => 'Παραδείγματα: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Κωδικός εξυπηρετητή αλληλογραφίας', + 'mail_server_password_description' => 'Ο κωδικός που χρησιμοποιείς συνήθως για να μπεις στο email σου', + 'mail_server_port' => 'Θύρα εξυπηρετητή αλληλογραφίας', + 'mail_server_port_description' => 'Κοινές θύρες: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Τύπος εξυπηρετητή αλληλογραφίας', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). Ποια είναι η διαφορά?', + 'mail_server_username' => 'Όνομα χρήστη εξυπηρετητή αλληλογραφίας', + 'mail_server_username_description' => 'Εάν χρησιμοποιείς Gmail, Hotmail, ή Yahoo Mail, χρησιμοποίησε την πλήρη διεύθυνση email ως όνομα χρήστη', + 'map' => 'Χάρτης', + 'map_provider' => 'Πάροχος χάρτη', + 'map_provider_description' => 'Το Ushahidi αποδίδει εξίσου με οποιοδήποτε πάροχο χαρτογράφησης από τους τρεις: Google, Bing ή Open Street Map. Επίλεξε εκείνον που έχει την περισσότερη λεπτομέρεια για την περιοχή που σε ενδιαφέρει.', + 'other_steps' => 'Λοιπά βήματα...', + 'password' => 'Κωδικός πρόσβασης', + 'password_description' => 'Ο κωδικός της βάσης δεδομένων', + 'previous' => 'Προηγούμενο', + 'restart_apache' => 'Επανεκκίνηση του Apache Server', + 'select_mail_server_ssl' => 'Ενεργοποίηση ή Απενεργοποίηση SSL', + 'select_mail_server_ssl_description' => 'Μερικοί εξυπηρετητές αλληλογραφίας παρέχουν την επιλογή για χρήση SSL κατά τη σύνδεση. Η χρήση SSL προτείνεται, καθώς σου παρέχει επιπλέον ασφάλεια.', + 'setup_sms' => 'Ρύθμισε τον εξυπηρετητή SMS', + 'site_email' => 'Διεύθυνση email του site.', + 'site_email_alerts' => 'Διεύθυνση email για τις ειδοποιήσεις του site', + 'site_email_alerts_description' => 'Όταν οι επισκέπτες του site σου εγγραφούν για "ειδοποίηση" μέσω email θα αρχίσουν να λαμβάνουν email από αυτή τη διεύθυνση. Αυτή η διεύθυνση email δεν είναι απαραίτητο να είναι η ίδια με εκείνη του site.', + 'site_email_description' => 'Όλη η επικοινωνία που αφορά στο site θα μεταδίδεται μέσω αυτού του email.', + 'site_name' => 'Τίτλος site.', + 'site_name_description' => 'Ο τίτλος του site.', + 'site_tagline' => 'Γραμμή ετικέτα (επεξηγηματική φράση του site).', + 'site_tagline_description' => 'Η γραμμή-ετικέτα σου.', + 'summary' => array( + 'text_1' => 'Τα αρχεία και οι φακέλοι που αναφέρονται ακολούθως πρέπει να είναι εγγράψιμα από το webserver σου.', + 'text_2' => '

Ακολουθούν οι οδηγίες για την αλλαγή περιορισμών προσβασιμότητας των αρχείων

', + 'text_3' => 'Πριν ξεκινήσεις θα χρειαστεί να επιβεβαιώσεις ότι τα ακόλουθα αρχεία και φάκελοι είναι εγγράψιμα από το webserver σου. Ίσως χρειαστεί να αλλάξεις τους περιορισμούς προσβασιμότητας των αρχείων.', + 'text_4' => 'Για τη διαδικασία εγκατάστασης, παρακαλώ να έχεις έτοιμες τις παρακάτω πληροφορίες.', + ) , + 'table_prefix' => 'Πρόθεμα πίνακα', + 'table_prefix_description' => 'Κανονικά δε θα χρειαστεί να αλλάξεις το πρόθεμα του πίνακα. Ωστόσο, εάν θέλεις να τρέξεις πολλούς χάρτες Ushahidi από μία εγκατάσταση, μπορείς να το κάνεις αλλάζοντας το πρόθεμα εδώ.', + 'title' => 'Τίτλος', + 'to_login' => 'Για να συνδεθείς, πήγαινε', + 'upload_data' => 'Ανέβασε δεδομένα Αναφοράς', + 'username' => 'Όνομα χρήστη', + 'username_description' => 'Το όνομα χρήστη για τη βάση δεδομένων', + 'use_credentials' => 'και χρησιμοποίησε τα ακόλουθα στοιχεία πρόσβασης', + 'view_site' => 'Δες το website σου', +); diff --git a/application/i18n/el/layer.php b/application/i18n/el/layer.php new file mode 100644 index 0000000000..42afd51280 --- /dev/null +++ b/application/i18n/el/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Το πεδίο "χρώμα" πρέπει να είναι 6 χαρακτήρες.', + 'required' => 'Το πεδίο "χρώμα" είναι υποχρεωτικό', + ) , + 'layer_file' => array( + 'type' => 'Το πεδίο αρχείο δεν φαίνεται να περιέχει ένα έγκυρο αρχείο. Οι μόνες αποδεκτές μορφές είναι .KMZ και .KML', + 'valid' => 'Το πεδίο "αρχείο" δεν μοιάζει να περιέχει ένα έγκυρο αρχείο', + ) , + 'layer_name' => array( + 'length' => 'Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 3 και όχι περισσότερο από 80 χαρακτήρες', + 'required' => 'Το πεδίο "Όνομα" είναι υποχρεωτικό', + ) , + 'layer_url' => array( + 'atleast' => 'Απαιτείται είτε ένα KML URL είτε ένα αρχείο.', + 'both' => 'Δεν μπορείς να έχετε ταυτόχρονα και ένα αρχείο KML και μια διεύθυνση URL.', + 'url' => 'Παρακαλώ εισάγετε μια έγκυρη διεύθυνση URL, π.χ. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/el/libraries.php b/application/i18n/el/libraries.php new file mode 100644 index 0000000000..2c962741c8 --- /dev/null +++ b/application/i18n/el/libraries.php @@ -0,0 +1,27 @@ + 'Δεν μπόρεσα να συνδεθώ στον Akismet server.', + 'akismet_cannot_retrieve' => 'Η απόκριση από το Akismet ήταν αδύνατο να ανακτηθεί.', + 'api_library_not_found' => 'Η βιβλιοθήκη API: %sγια την%s class δεν ήταν δυνατό να βρεθεί. Παρακαλώ έλεγξε το API task routing table.', + 'askimet_invalid_apikey' => 'Το κλειδί Akismet API δεν είναι έγκυρο.', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2.', + 'clickatell_message_too_long' => 'Το μήνυμα unicode είναι πολύ μεγάλο! (Τρέχον μήκος=', + 'clickatell_no_destination_address' => 'Παρακαλώ προσδιόρισε μια διεύθυνση προορισμού (Προς)!', + 'clickatell_no_sender_address' => 'Παρακαλώ προσδιόρισε μια διεύθυνση πηγής (ΑΠΟ)!', + 'clickatell_unicode_message_too_long' => 'Το μήνυμα unicode είναι πολύ μεγάλο! (Τρέχον μήκος=', + 'clickatell_unsupported_method' => 'Μη υποστηριζόμενη μέθοδος αποστολής!', + 'invalid_api_library' => 'Η βιβλιοθήκη API %s δεν είναι έγκυρη. Όλες οι βιβλιοθήκες API πρέπει να είναι subclasses του %s.', + 'upgrade_directory_not_deleted' => 'Ο φάκελος %s δεν μπόρεσε να σβηστεί.', + 'upgrade_extracting_error' => 'Σφάλμα κατά την εξαγωγή: %s', + 'upgrade_failed' => 'Αποτυχία μεταφόρτωσης του τελευταίου Ushahidi. HTTP status code', + 'upgrade_file_not_copied' => 'Το αρχείο %s δεν μπόρεσε να αντιγραφεί.', + 'upgrade_file_not_deleted' => 'Το αρχείο %s δεν μπόρεσε να διαγραφεί.', + 'upgrade_title' => 'Ushahidi upgrade script', + 'upgrade_zip_error' => 'Το μεταφορτωμένο συμπιεσμένο αρχείο Ushahidi %s δεν μπόρεσε να εγγραφεί.', + 'riverid_variable_not_available' => '%s is not available in the RiverID class.', +); diff --git a/application/i18n/el/maintenance.php b/application/i18n/el/maintenance.php new file mode 100644 index 0000000000..cde0c0d921 --- /dev/null +++ b/application/i18n/el/maintenance.php @@ -0,0 +1,9 @@ + 'Λυπούμαστε, το site μας αυτή τη στιγμή βρίσκεται εκτός λειτουργίας για λόγους συντήρησης. Παρακαλώ δοκιμάστε ξανά σε λίγα λεπτά.', +); diff --git a/application/i18n/el/message.php b/application/i18n/el/message.php new file mode 100644 index 0000000000..84cff08fa5 --- /dev/null +++ b/application/i18n/el/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας.', + 'required' => 'Παρακαλώ εισάγετε τον κωδικό ασφαλείας.', + ) , + 'email' => array( + 'email' => 'Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου φαίνεται να μην περιέχει μια έγκυρη διεύθυνση e-mail;', + 'length' => 'Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου πρέπει να έχει μήκος τουλάχιστον 4 και όχι περισσότερο απο 64 χαρακτήρες.', + 'required' => 'Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου είναι υποχρεωτικό εάν το checkbox είναι επιλεγμένο.', + ) , + 'message' => array( + 'required' => 'Το πεδίο "Σχόλια" είναι υποχρεωτικό.', + ) , + 'name' => array( + 'length' => 'Το πεδίο "Όνομα" πρέπει να είναι τουλάχιστον 3 χαρακτήρες.', + 'required' => 'Το πεδίο "Όνομα" είναι υποχρεωτικό', + ) , + 'phone' => array( + 'length' => 'Το πεδίο "Τηλέφωνο" είναι υποχρεωτικό', + ) , +); diff --git a/application/i18n/el/mhi.php b/application/i18n/el/mhi.php new file mode 100644 index 0000000000..8f5e2007e7 --- /dev/null +++ b/application/i18n/el/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Παρακαλώ εισάγετε έναν έγκυρο κωδικό ασφαλείας.', + 'required' => 'Παρακαλώ εισάγετε τον κωδικό ασφαλείας.', + ) , + 'contact_email' => array( + 'email' => 'Το πεδίο Ηλεκτρονική Διεύθυνση δεν περιέχει έγκυρη ηλεκτρονική διεύθυνση.', + 'required' => 'Παρακαλώ εισάγετε μια έγκυρη ηλεκτρονική διεύθυνση.', + ) , + 'contact_message' => array( + 'required' => 'Το πεδίο Μήνυμα απαιτείται.', + ) , + 'contact_subject' => array( + 'length' => 'Το πεδίο Θέμα πρέπει να είναι τουλάχιστον 3 χαρακτήρων.', + 'required' => 'Το πεδίο Θέμα απαιτείται.', + ) , +); diff --git a/application/i18n/el/notifications.php b/application/i18n/el/notifications.php new file mode 100644 index 0000000000..3b9d1f8039 --- /dev/null +++ b/application/i18n/el/notifications.php @@ -0,0 +1,35 @@ + 'Αυτό το μήνυμα έχει σταλθεί από την ιστοσελίδα σας.', + 'admin_login_url' => 'Σύνδεση διαχειριστή.', + 'admin_new_comment' => array( + 'message' => 'Ένα νέο σχόλιο έχει υποβληθεί στην ιστοσελίδας σας σε απάντηση του:', + 'subject' => 'Νέο σχόλιο', + ) , + 'admin_new_email' => array( + 'message' => 'Ένα νέο ηλεκτρονικό μήνυμα έχει υποβληθεί στην ιστοσελίδα σας.', + 'subject' => 'Νέο ηλεκτρονικό μήνυμα', + ) , + 'admin_new_report' => array( + 'message' => 'Μια νέα αναφορά έχει υποβληθεί στην ιστοσελίδα σας.', + 'subject' => 'Νέα αναφορά', + ) , + 'admin_new_sms' => array( + 'message' => 'Ένα νέο γραπτό μήνυμα έχει υποβληθεί στην ιστοσελίδα σας.', + 'subject' => 'Νέο γραπτό μήνυμα', + ) , + 'member_new_alert' => array( + 'message' => 'Λάβατε νέα προειδοποιήσει ', + 'subject' => 'Νέα προειδοποιήσει', + ) , + 'member_new_message' => array( + 'message' => 'Λάβατε ένα προσωπικό μήνυμα', + 'subject' => 'Νέο προσωπικό μήνυμα', + 'footer' => 'Για απάντηση παρακαλώ πηγαίνετε στο:', + ) , +); diff --git a/application/i18n/el/page.php b/application/i18n/el/page.php new file mode 100644 index 0000000000..0ddc940f38 --- /dev/null +++ b/application/i18n/el/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Παρακαλώ εισάγετε έναν τίτλο σελίδας.', + 'length' => 'Ο Τίτλος σελίδας θα πρέπει να είναι τουλάχιστον 3 και όχι περισσότερο από 150 χαρακτήρες.', + ) , + 'page_tab' => array( + 'required' => 'Παρακαλώ εισάγετε ένα όνομα Tab.', + ) , + 'page_description' => array( + 'required' => 'Παρακαλώ εισάγετε μια περιγραφή σελίδας', + ) , +); diff --git a/application/i18n/el/permissions.php b/application/i18n/el/permissions.php new file mode 100644 index 0000000000..744b88955a --- /dev/null +++ b/application/i18n/el/permissions.php @@ -0,0 +1,26 @@ + 'Επισκόπηση Αναφορών', + 'reports_edit' => 'Δημιουργία/Επεξεργασία/Διαγραφή αναφορών', + 'reports_approve' => 'Έγκριση αναφορών.', + 'reports_verify' => 'Επαλήθευση αναφορών.', + 'reports_comments' => 'Διαχείριση σχολίων σε Αναφορές', + 'reports_download' => 'Μεταφόρτωση Αναφορών', + 'reports_upload' => 'Ανέβασμα Αναφορών', + 'messages' => 'Διαχείρηση μηνυμάτων.', + 'messages_reporters' => 'Διαχείριση ανταποκριτών μηνυμάτων', + 'stats' => 'Επισκόπηση στατιστικών', + 'settings' => 'Τροποποίηση ρυθμίσεων', + 'manage' => 'Διαχείριση πάνελ', + 'users' => 'Διαχείριση χρηστών', + 'manage_roles' => 'Διαχείριση ρόλων', + 'checkin' => 'Μπορεί να κάνει check in', + 'checkin_admin' => 'Διαχείριση των check in', + 'admin_ui' => 'Πρόσβαση στο χώρο διαχείρισης', + 'member_ui' => 'Πρόσβαση στο χώρο μελών', +); diff --git a/application/i18n/el/private_message.php b/application/i18n/el/private_message.php new file mode 100644 index 0000000000..1c460eafbb --- /dev/null +++ b/application/i18n/el/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Το ID γονέα πρέπει να είναι αριθμητικό', + ) , + 'private_to' => array( + 'required' => 'Το πεδίο "προς" είναι υποχρεωτικό', + 'exists' => 'Ο χρήστης που προσπαθείτε να στείλετε ένα μήνυμα δεν υπάρχει', + ) , + 'private_subject' => array( + 'required' => 'Το πεδίο "θέμα" είναι υποχρεωτικό', + 'length' => 'Το θέμα πρέπει να έχει μήκος μεταξύ 3 και 150 χαρακτήρων', + ) , + 'private_message' => array( + 'required' => 'Το πεδίο μήνυμα είναι απαραίτητο', + ) , +); diff --git a/application/i18n/el/report.php b/application/i18n/el/report.php new file mode 100644 index 0000000000..ae7d3509df --- /dev/null +++ b/application/i18n/el/report.php @@ -0,0 +1,138 @@ + 'Σφάλμα', + 'country_name' => array( + 'single_country' => 'Αυτή η εγκατάσταση αναφέρεται μόνο σε μια χώρα. Παρακαλώ επιβεβαίωσε ότι η τοποθεσία της αναφοράς βρίσκεται μέσα στη χώρα %s.', + ) , + 'custom_field' => array( + 'numeric' => 'Το πεδίο "%s" πρέπει να είναι αριθμητικό.', + 'required' => 'Το πεδίο "%s" είναι υποχρεωτικό.', + 'not_exist' => ' Το πεδίο "%s" δεν υπάρχει.', + 'permission' => 'Το πεδίο "%s" δεν μπορεί να επεξεργαστεί από το λογαριασμό σας.', + 'email' => 'Το πεδίο "%s" πρέπει να περιέχει μια έγκυρη email διεύθυνση.', + 'phone' => 'Το πεδίο "%s" πρέπει να περιέχει έναν έγκυρο αριθμό τηλεφώνου.', + 'date_mmddyyyy' => 'Το πεδίο "%s" πρέπει να περιέχει μια έγκυρη ημερομηνία (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'Το πεδίο "%s" πρέπει να περιέχει μια έγκυρη ημερομηνία (DD/MM/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Παρακαλώ διάλεξε ένα έγκυρο αντικείμενο για να συμπεριληφθεί στην λήψη.', + 'numeric' => 'Παρακαλώ διάλεξε ένα έγκυρο αντικείμενο για να συμπεριληφθεί στην λήψη.', + ) , + 'data_active' => array( + 'between' => 'Παρακαλώ επίλεξε "Αναφορές εν αναμονή έγκρισης" ή "Εγκεκριμένες Αναφορές" ή και τα δύο.', + 'numeric' => 'Παρακαλώ επίλεξε "Αναφορές εν αναμονή έγκρισης" ή "Εγκεκριμένες Αναφορές" ή και τα δύο.', + 'required' => 'Παρακαλώ επίλεξε "Αναφορές εν αναμονή έγκρισης" ή "Εγκεκριμένες Αναφορές" ή και τα δύο.', + ) , + 'data_verified' => array( + 'between' => 'Παρακαλώ επίλεξε "Αναφορές εν αναμονή επαλήθευσης" ή "Επαληθευμένες Αναφορές" ή και τα δύο.', + 'numeric' => 'Παρακαλώ επίλεξε "Αναφορές εν αναμονή επαλήθευσης" ή "Επαληθευμένες Αναφορές" ή και τα δύο.', + 'required' => 'Παρακαλώ επίλεξε "Αναφορές εν αναμονή επαλήθευσης" ή "Επαληθευμένες Αναφορές" ή και τα δύο.', + ) , + 'data_point' => array( + 'between' => 'Παρακαλώ διάλεξε ένα έγκυρο τύπο για να συμπεριληφθεί στην λήψη.', + 'numeric' => 'Παρακαλώ διάλεξε ένα έγκυρο τύπο για να συμπεριληφθεί στην λήψη.', + 'required' => 'Παρακαλώ επίλεξε ένα έγκυρο τύπο αναφοράς για μεταφόρτωση.', + ) , + 'format' => array( + 'required' => 'Πρέπει να επιλέξεις μια μορφή μεταφόρτωσης. Επίλεξε είτε CSV, είτε XML.', + 'valid' => 'Παρακαλώ επίλεξε μια έγκυρη μορφή για τη μεταφόρτωση των αναφορών σου.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Το πεδίο ΑΠΟ δεν περιλαμβάνει έγκυρη ημερομηνία', + 'range' => 'Παρακαλώ εισήγαγε έγκυρη ημερομηνία στο πεδιο ΑΠΟ.Δεν μπορει να ειναι μεγαλυτερο απο σημερα.', + ) , + 'incident_active' => array( + 'between' => 'Το πεδίο ΕΓΚΡΙΣΗ ΑΥΤΗΣ ΤΗΣ ΑΝΑΦΟΡΑΣ δεν ειναι έγκυρο', + 'required' => 'Το πεδίο ΕΓΚΡΙΣΗ ΑΥΤΗΣ ΤΗΣ ΑΝΑΦΟΡΑΣ δεν ειναι έγκυρο', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Το πεδίο πμ/μμ δεν ειναι έγκυρο', + ) , + 'incident_category' => array( + 'numeric' => 'Το πεδίο "Κατηγορίες" δε φαίνεται να περιέχει κάποια έγκυρη κατηγορία.', + 'required' => 'Το πεδίο "Κατηγορίες" είναι προαπαιτούμενο.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Το πεδίο ημερομηνίας δεν ειναι έγκυρο', + 'date_mmddyyyy' => 'Το πεδίο ημερομηνίας δεν ειναι έγκυρο', + 'required' => 'Ημερομηνία απαιτείται', + ) , + 'incident_description' => array( + 'required' => 'Το πεδίο ΠΕΡΙΓΡΑΦΗ απαιτείται', + ) , + 'incident_hour' => array( + 'between' => 'Το πεδίο ΩΡΑ δεν ειναι έγκυρο', + 'required' => 'Το πεδίο ΩΡΑ δεν ειναι έγκυρο', + ) , + 'incident_information' => array( + 'alpha' => 'Παρακαλώ δωσε μια έγκυρη τιμή για την πιθανότητα της πληροφορίας.', + 'length' => 'Παρακαλώ δωσε μια έγκυρη τιμή για την πιθανότητα της πληροφορίας.', + ) , + 'incident_minute' => array( + 'between' => 'Το πεδίο ΛΕΠΤΑ δεν ειναι έγκυρο', + 'required' => 'Το πεδίο ΛΕΠΤΑ απαιτείται', + ) , + 'incident_news' => array( + 'url' => 'Το πεδίο εισαγωγής ηλεκτρονικής διεύθυνσης νέων δε φαίνεται να περιέχει κάποια έγκυρη διεύθυνση URL. ', + ) , + 'incident_photo' => array( + 'size' => 'Παρακαλώ εξασφάλισε ότι η φωτογραφίες που ανεβάζεις δεν ξεπερνούν σε μέγεθος τα 2MB.', + 'type' => 'Το πεδίο "Ανέβασε φωτογραφίες" δεν περιέχει κάποια έγκυρη εικόνα. Οι τύποι αρχείου που γίνονται αποδεκτοί από το σύστημα είναι .jpg, .png και .gif.', + 'valid' => 'Το πεδίο "Ανέβασε φωτογραφίες" δεν περιέχει έγκυρο αρχείο.', + ) , + 'incident_source' => array( + 'alpha' => 'Παρακαλώ δώσε μια έγκυρη τιμή για την Αξιοπιστία της Πηγής.', + 'length' => 'Παρακαλώ δώσε μια έγκυρη τιμή για την Αξιοπιστία της Πηγής.', + ) , + 'incident_title' => array( + 'length' => 'Το πεδίοι "Τίτλος αναφοράς" πρέπει να έχει τουλάχιστον 3 χαρακτήρες και όχι περισσότερους από 200.', + 'required' => 'Το πεδίο "Τίτλος αναφοράς" είναι προαπαιτούμενο.', + 'csrf' => 'Πιθανή επίθεση CSRF. Ήθελες όντως να δημιουργήσεις / διορθώσεις κάποια αναφορά;', + ) , + 'incident_verified' => array( + 'between' => 'Παρακαλώ δώσε μια έγκυρη τιμή για το πεδίο "Επιβεβαίωσε αυτή την Αναφορά"', + 'required' => 'Παρακαλώ δώσε μια έγκυρη τιμή για το πεδίο "Επιβεβαίωσε αυτή την Αναφορά"', + ) , + 'incident_video' => array( + 'url' => 'Το πεδίο σύνδεσμου video δεν περιέχει σωστό URL.', + ) , + 'latitude' => array( + 'between' => 'Το πεδίο γεωγραφικού πλάτους δεν περιέχει έγκυρη τιμή.', + 'required' => 'Το πεδίο γεωγραφικού πλάτους είναι προαπαιτούμενο. Παρακαλώ κάνε κλικ στο χάρτη για να υποδείξεις την τοποθεσία.', + ) , + 'locale' => array( + 'alpha_dash' => 'Το πεδίο γεωγραφικoύ προσδιορισμού έχει μη έγκυρη τιμή.', + 'exists' => 'Αυτή η αναφορά διαθέτει ήδη μετάφραση σε αυτή τη γλώσσα.', + 'length' => 'Το πεδίο γεωγραφικoύ προσδιορισμού έχει μη έγκυρη τιμή.', + 'locale' => 'Η αρχική αναφορά και η μετάφραση έχουν την ίδια τιμή γεωγραφικoύ προσδιορισμού (γλώσσα).', + 'required' => 'Η τιμή γεωγραφικoύ προσδιορισμού είναι προαπαιτούμενη.', + ) , + 'location_name' => array( + 'length' => 'Το πεδίο "Όνομα τοποθεσίας" πρέπει να έχει τουλάχιστον 3 χαρακτήρες και όχι περισσότερους από 200.', + 'required' => 'Το πεδίο "Όνομα τοποθεσίας" είναι προαπαιτούμενο.', + ) , + 'longitude' => array( + 'between' => 'Το πεδίο γεωγραφικού μήκους δεν περιέχει έγκυρη τιμή.', + 'required' => 'Το πεδίο γεωγραφικού μήκους είναι προαπαιτούμενο. Παρακαλώ κάνε κλικ στο χάρτη για να υποδείξεις την τοποθεσία.', + ) , + 'person_email' => array( + 'email' => 'Το πεδίο διεύθυνσης ηλεκτρονικού ταχυδρομείου δεν περιέχει έγκυρη διεύθυνση.', + 'length' => 'Το πεδίο διεύθυνσης ηλεκτρονικού ταχυδρομείου πρέπει να περιέχει μεταξύ 4 και 64 χαρακτήρες.', + ) , + 'person_first' => array( + 'length' => 'Το πεδίο "Όνομα" πρέπει να περιέχει μεταξύ 3 και 100 χαρακτήρες.', + ) , + 'person_last' => array( + 'length' => 'Το πεδίο "Επώνυμο" πρέπει να περιέχει μεταξύ 3 και 100 χαρακτήρες.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Το πεδίο ημερομηνίας ΜΕΧΡΙ δεν περιέχει έγκυρη ημερομηνία.', + 'range' => 'Παρακαλώ δώσε μια έγκυρη ημερομηνία ΜΕΧΡΙ. Η ημερομηνία αυτή δεν μπορεί να είναι μεγαλύτερη από τη σημερινή.', + 'range_greater' => 'Η ημερομηνία ΑΠΟ δεν μπορεί να είναι ύστερα από την ημερομηνία ΜΕΧΡΙ.', + ) , +); diff --git a/application/i18n/el/reporters.php b/application/i18n/el/reporters.php new file mode 100644 index 0000000000..0946e53dda --- /dev/null +++ b/application/i18n/el/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Το πεδίο Γεωγραφικό Πλάτος φαίνεται να μην περιλαμβάνει έγκυρο γεωγραφικό πλάτος.', + 'required' => 'Το γεωγραφικό πλάτος απαιτείται. Παρακαλώ κάνε κλικ στο χάρτη για να ορίσεις μια περιοχή.', + ) , + 'level_id' => array( + 'numeric' => 'Το πεδίο "Επίπεδο Ανταποκριτή" δεν περιέχει έγκυρη τιμή.', + 'required' => 'Το πεδίο "Επίπεδο Ανταποκριτή" δεν περιέχει έγκυρη τιμή.', + ) , + 'location_name' => array( + 'length' => 'Το πεδίο Όνομα Τοποθεσίας πρέπει να είναι τουλάχιστον 3 και μέχρι 200 χαρακτήρες.', + 'required' => 'Το πεδίο Όνομα Τοποθεσίας απαιτείται.', + ) , + 'longitude' => array( + 'between' => 'Το πεδίο Γεωγραφικό Μήκος φαίνεται να μην περιλαμβάνει έγκυρο γεωγραφικό μήκος.', + 'required' => 'Το γεωγραφικό μήκος απαιτείτε. Παρακαλώ κάντε κλικ στον χάρτη για να ορίσετε μια περιοχή.', + ) , + 'reporter_id' => array( + 'numeric' => 'Μη έγκυρος Ανταποκριτής', + 'required' => 'Μη έγκυρος Ανταποκριτής', + ) , +); diff --git a/application/i18n/el/reports.php b/application/i18n/el/reports.php new file mode 100644 index 0000000000..f12bd9755c --- /dev/null +++ b/application/i18n/el/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Παρακαλώ βεβαιωθείτε ότι έχετε επιλέξει ένα αντικείμενο', + 'numeric' => 'Παρακαλώ βεβαιωθείτε ότι έχετε επιλέξει ένα αντικείμενο', + 'categories_required' => 'Οι αναφορές θα πρέπει να ταξινομηθούν πριν μπορέσουν να εγκριθούν', + ) , + 'action' => array( + 'permission' => 'Δεν έχετε δικαίωμα να εκτελέσετε αυτή την ενέργεια', + ) , + 'uploadfile' => array( + 'required' => 'Πρέπει να επιλέξετε το αρχείο που θα ανεβάσετε.', + 'type' => 'Το αρχείο που θα ανεβάσετε των θα πρέπει να είναι είτε μορφής Csv ή. Xml ', + 'valid' => 'Το πεδίο "ανέβασμα αρχείου" δεν μοιάζει να περιέχει ένα έγκυρο αρχείο', + ) , +); diff --git a/application/i18n/el/roles.php b/application/i18n/el/roles.php new file mode 100644 index 0000000000..72eb77d180 --- /dev/null +++ b/application/i18n/el/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Το πεδίο Περιγραφή θα πρέπει να είναι τουλάχιστον 3 και όχι περισσότερο από 100 χαρακτήρες.', + 'required' => 'Το πεδίο Περιγραφή είναι απαραίτητο.', + ) , + 'name' => array( + 'alpha_numeric' => 'Το πεδίο Όνομα πρέπει να περιέχει μόνο γράμματα ή αριθμούς.', + 'length' => 'Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 2 και όχι περισσότερο από 30 χαρακτήρες', + 'nomodify' => 'Ο ρόλος Superadmin δεν μπορεί να τροποποιηθεί.', + 'required' => 'Το πεδίο Όνομα είναι απαραίτητο.', + ) , + 'access_level' => array( + 'numeric' => 'Το πεδίο Επίπεδο Πρόσβασης πρέπει να είναι ένας αριθμός μεταξύ 0 - 100.', + 'required' => 'Το πεδίο Επίπεδο Πρόσβασης πρέπει να είναι ένας αριθμός μεταξύ 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Το πεδίο Δικαιώματα πρέπει να είναι ένας αριθμός μεταξύ 0 - 100.', + ) , +); diff --git a/application/i18n/el/settings.php b/application/i18n/el/settings.php new file mode 100644 index 0000000000..369ed3132e --- /dev/null +++ b/application/i18n/el/settings.php @@ -0,0 +1,234 @@ + array( + 'between' => 'Το πεδίο "επιτρέπω " δεν περιέχουν έγκυρη αξία.', + 'required' => 'Το πεδίο "επιτρέπω μηνύματα" είναι υποχρεωτικό.', + ) , + 'allow_feed' => array( + 'between' => 'Το πεδίο "περιλαμβάνω" δεν περιέχει έγκυρη αξία.', + 'required' => 'Το πεδίο "περιλαμβάνω" είναι υποχρεωτικό.', + ) , + 'allow_alerts' => array( + 'between' => 'Το πεδίο "επίτρεψε ειδοποιήσεις" δεν περιέχει κάποια έγκυρη τιμή', + 'required' => 'Το πεδίο "επίτρεψε ειδοποιήσεις" απαιτείται.', + ) , + 'allow_reports' => array( + 'between' => 'Το πεδίο "επίτρεψε αναφορές" δεν περιέχει κάποια έγκυρη τιμή', + 'required' => 'Το πεδίο "επίτρεψε αναφορές" απαιτείται.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Το πεδίο "διαμοίραση στατιστικών" δεν περιέχει κάποια έγκυρη τιμή', + 'required' => 'Το πεδίο "διαμοίραση στατιστικών" απαιτείται.', + ) , + 'api' => array( + 'default_record_limit' => 'Προκαθορισμένος αριθμός εγγραφών που ανακαλούνται ανά αίτημα API', + 'maximum_record_limit' => 'Μέγιστος αριθμός εγγραφών που ανακαλούνται ανά αίτημα API', + 'maximum_requests_per_ip_address' => 'Μέγιστος αριθμός αιτημάτων API για κάθε διεύθυνση IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Το πεδίο Akismet δεν περιέχει κάποια έγκυρη τιμή', + 'length' => 'Το πεδίο Akismet δεν περιέχει κάποια έγκυρη τιμή', + ) , + 'banner_image' => array( + 'type' => 'Το πεδίο Banner ιστοσελίδας δεν φαίνεται να περιέχει μια έγκυρη εικόνα. Οι μόνες αποδεκτές μορφές είναι .JPG, .PNG και .GIF.', + 'size' => 'Παρακαλώ βεβαιωθείτε ότι το "Banner Image" μέγεθος είναι μικρότερο από 250 KB.', + 'valid' => 'Το "Image Banner" πεδίο δεν φαίνεται να περιέχει ένα έγκυρο αρχείο.', + ) , + 'cache_pages' => array( + 'between' => 'Το πεδίο cache pages απαιτείται', + 'required' => 'Το πεδίο cache pages δεν περιέχει έγκυρη τιμή', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Το πεδίο cache pages lifetime δεν περιέχει έγκυρη τιμή.', + 'required' => 'Το πεδίο cache pages lifetime απαιτείται.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Φαίνεται ότι ο εξυπηρετητής σου δεν είναι ρυθμισμένος να διαχειρίζεται clean URLs. Θα χρειαστεί να αλλάξεις τις σχετικές ρυθμίσεις ', + 'clean_url_enabled' => 'Αυτή η επιλογή ενεργοποιεί τα "clean" URLs για το Ushahidi (χωρίς το "index.php" στο URL)', + 'enable_clean_url' => 'Ενεργοποίηση των clean URLs', + 'title' => 'Clean URLs', + ) , + 'clickatell_api' => array( + 'length' => 'Το πεδίο Clickatell API number δεν πρέπει να ξεπερνάει τους 20 χαρακτήρες.', + 'required' => 'Το πεδίο Clickatell API number απαιτείται.', + ) , + 'clickatell_password' => array( + 'length' => 'Το πεδίο Κωδικός Clickatell πρέπει να περιέχει τουλάχιστον 5 και όχι περισσότερους από 50 χαρακτήρες.', + 'required' => 'Το πεδίο Κωδικός Clikcatell απαιτείται.', + ) , + 'clickatell_username' => array( + 'length' => 'Το πεδίο Όνομα Χρήστη Clickatell δεν πρέπει να είναι μεγαλύτερο από 50 χαρακτήρες.', + 'required' => 'Το πεδίο Όνομα Χρήστη Clickatell απαιτείται.', + ) , + 'configure_map' => 'Διαμόρφωση χάρτη', + 'default_location' => 'Προεπιλεγμένη τοποθεσία', + 'default_map_all' => array( + 'alpha_numeric' => 'Το πεδίο color feed δεν περιέχει έγκυρη τιμή.α', + 'length' => 'Το πεδίο Χρώμα δεν μπορεί να είναι μεγαλύτερο από 6 χαρακτήρες.', + 'required' => 'Το πεδίο Χρώμα απαιτείται.', + ) , + 'default_map_view' => 'Προεπιλεγμένη απεικόνιση χάρτη', + 'default_zoom_level' => 'Προεπιλεγμένο επίπεδο zoom', + 'download_city_list' => 'Ανάκτηση πόλεων από τα γεω-ονόματα', + 'email_host' => array( + 'length' => 'Το πεδίο Mail server port είναι πολύ μεγάλο', + 'numeric' => 'Το πεδίο Mail server port θα πρέπει να περιέχει μόνο αριθμούς.', + ) , + 'email_password' => array( + 'length' => 'Το πεδίο Κωδικός Mail server πρέπει να περιέχει τουλάχιστον 5 και το πολύ 50 χαρακτήρες.', + 'required' => 'Το πεδίο Κωδικός Mail server απαιτείται.', + ) , + 'email_port' => array( + 'length' => 'Το πεδίο Mail Server port είναι πολύ μεγάλο.', + 'numeric' => 'Το πεδίο Mail server port πρέπει να περιέχει μόνο αριθμούς.', + ) , + 'email_servertype' => array( + 'length' => 'Το πεδίο Mail server port είναι πολύ μεγάλο.', + 'required' => 'Το πεδίο Mail server type απαιτείται.', + ) , + 'email_username' => array( + 'length' => 'Το πεδίο Όνομα Χρήστη Mail server πρέπει να είναι μέχρι 50 χαρακτήρες.', + 'required' => 'Το πεδίο Όνομα Χρήστη Mail server απαιτείται.', + ) , + 'facebook' => array( + 'title' => 'Επιλογές ρύθμισης Facebook', + 'description' => 'Για να πάρεις τις παρακάτω πληροφορίες χρειάζεται να δημιουργήσεις μια νέα εφαρμογή Facebook στο', + 'description_2' => 'Οι ρυθμίσεις αυτές επιτρέπουν στους χρήστες να συνδεθουν μέσω του Facebook, αυτό δεν θα δημιουργήσει μια εφαρμογή στο Facebook για την ανάπτυξη σας', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Το πεδίο Google Analytics πρέπει να περιέχει μια έγκυρη τιμή Όνομα Χρήστη Mail server της μορφής UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Ενεργοποίηση HTTPS', + 'https_disabled' => 'Αυτή η επιλογή ενεργοποιεί τη μη ασφαλή πρόσβαση στο Ushahidi. χωρίς "https://" στο πρόθεμα του URL', + 'https_enabled' => 'Αυτή η επιλογή ενεργοποιεί την ασφαλή πρόσβαση στο Ushahidi. με https στο πρόθεμα του URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Το πεδίο αντικείμενα ανά σελίδα (frontend) δεν περιέχει έγκυρη τιμή.', + 'required' => 'Το πεδίο αντικείμενα ανά σελίδα (frontend) απαιτείται.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Το πεδίο αντικείμενα ανά σελίδα (Admin) δεν περιέχει έγκυρη τιμή.', + 'required' => 'Το πεδίο αντικείμενα ανά σελίδα (Admin) απαιτείται.', + ) , + 'map' => array( + 'default_location' => 'Η ρύθμιση του πάροχου χάρτη είναι μια απλή διαδικασία. Διάλεξε τον πάροχο, πάρε ένα API κλειδί από το site του και βάλε την τιμή του κλειδιού API.', + 'zoom' => 'Επίπεδο zoom.', + ) , + 'map_provider' => array( + 'choose' => 'Διάλεξε ένα πάροχο χάρτη', + 'enter_api' => 'Βάλε το νέο κλειδί API', + 'get_api' => 'Προμηθεύσου ένα κλειδί API', + 'info' => 'Η ρύθμιση του πάροχου χάρτη είναι μια απλή διαδικασία. Διάλεξε τον πάροχο, πάρε ένα API κλειδί από το site του και βάλε την τιμή του κλειδιού API.', + 'name' => 'Πάροχος χάρτη', + ) , + 'map_timeline' => 'Χρονογραμμή χάρτη', + 'map_settings' => 'Ρυθμίσεις χάρτη', + 'multiple_countries' => 'Αυτή η εγκατάσταση του Ushahidi αφορά σε περισσότερες από μία χώρες;', + 'select_default_location' => 'Παρακαλώ, διάλεξε μια προεπιλεγμένη χώρα', + 'set_location' => 'Κάνε κλικ και σύρε το χάρτη για να διαλέξεις την ακριβή τοποθεσία', + 'site' => array( + 'allow_clustering' => 'Απεικόνισε συγκεντρωμένες τις αναφορές στο χάρτη', + 'allow_comments' => 'Επίτρεψε στους χρήστες να μπορούν να υποβάλλουν σχόλια στις Αναφορές', + 'allow_feed' => 'Συμπεριέλαβε RSS News Feed στο site', + 'allow_alerts' => 'Επίτρεψε στους χρήστες να εγγράφονται για ειδοποιήσεις', + 'allow_reports' => 'Επίτρεψε στους χρήστες να υποβάλλουν Αναφορές', + 'api_akismet' => 'Akismet Key', + 'banner' => 'Site Banner', + 'blocks_per_row' => 'Blocks ανά γραμμή', + 'cache_pages' => 'Cache Pages', + 'cache_pages_lifetime' => 'Cache Pages Lifetime', + 'checkins' => 'Enable Checkins', + 'copyright_statement' => 'Δήλωση copyright του site', + 'default_category_colors' => 'Προεπιλεγμένο χρώμα για όλες τις κατηγορίες', + 'default_category_icons' => 'Προεπιλεγμένη εικόνα για όλες τις κατηγορίες', + 'delete_banner_image' => 'Σβήσε την εικόνα του banner', + 'delete_default_map_all_icon' => 'Σβήσε την προεπιλεγμένη εικόνα', + 'display_contact_page' => 'Απεικόνισε τη σελίδα επικοινωνίας', + 'display_howtohelp_page' => 'Απεικόνισε τη σελίδα "Πως να βοηθήσω"', + 'email_alerts' => 'Διεύθυνση email για τις ειδοποιήσεις', + 'email_notice' => 'προκειμένου να λαμβάνεις αναφορές μέσω email, παρακαλώ ρύθμισε το λογαριασμό email.', + 'email_site' => 'Λογαριασμός email του site', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Αντικείμενα ανά σελίδα - Front End', + 'items_per_page_admin' => 'Αντικείμενα ανά σελίδα - Admin', + 'kismet_notice' => 'Εμπόδισε τα κακόβουλα σχόλια χρησιμοποιώντας το Akismet από την Automattic.
Μπορείς να λάβεις ένα δωρεάν κλειδί API αν εγγραφείς στο WordPress.com', + 'laconica_configuration' => 'Laconica Credentials', + 'laconica_site' => 'Laconica Site ', + 'language' => 'Γλώσσα του site', + 'manually_approve_users' => 'Χειροκίνητη έγκριση χρηστών', + 'message' => 'Μήνυμα του site', + 'name' => 'Όνομα του site', + 'private_deployment' => 'Μη δημόσια εγκατάσταση', + 'require_email_confirmation' => 'Απαιτείται επιβεβαίωση του email του χρήστη', + 'submit_report_message' => 'Υποβολή μηνύματος Αναφοράς', + 'share_site_stats' => 'Ενεργοποίηση στατιστικών στοιχείων (αποθηκεύονται στο server του Ushahidi)', + 'tagline' => 'Φράση ταυτότητας (tagline) του site', + 'timezone' => 'Ζώνη ώρας', + 'title' => 'Ρυθμίσεις site', + 'twitter_configuration' => 'Όροι αναζήτησης twitter', + 'twitter_hashtags' => 'Hashtags - Διαχωρίζονται με κόμμα (χωρίς το σύμβολο #)', + ) , + 'site_email' => array( + 'email' => 'Το πεδίο site email δεν περιέχει έγκυρη διεύθυνση email.', + 'length' => 'Το πεδίο site email πρέπει να περιέχει τουλάχιστον 4 και όχι περισσότερους από 100 χαρακτήρες.', + ) , + 'site_name' => array( + 'length' => 'Το πεδίο όνομα site πρέπει να περιέχει τουλάχιστον 3 και όχι περισσότερους από 50 χαρακτήρες. ', + 'required' => 'Το πεδίο όνομα site απαιτείται.', + ) , + 'site_tagline' => array( + 'length' => 'Το πεδίο tagline πρέπει να περιέχει τουλάχιστον 3 και όχι περισσότερους από 100 χαρακτήρες. ', + 'required' => 'Το πεδίο tagline απαιτείται.', + ) , + 'sms' => array( + 'clickatell_api' => 'Your Clickatell API Number', + 'clickatell_check_balance' => 'Έλεγξε το ισοζύγιο μονάδων σου στο Clickatell', + 'clickatell_load_balance' => 'Load Credit Balance', + 'clickatell_password' => 'Ο κωδικός σου για το Clickatell', + 'clickatell_text_1' => 'Εγγράψου στην υπηρεσία Clickatells κάνοντας κλικ εδώ', + 'clickatell_text_2' => 'Βάλε παρακάτω τις πληροφορίες πρόσβασης στο λογαριασμό σου του Clickatell', + 'clickatell_username' => 'Το όνομα χρήστη για το Clickatell', + 'flsms_description' => 'Το FronlineSMS είναι ένα λογισμικό ανοιχτού κώδικα, το οποίο μετατρέπει έναν φορητο υπολογιστη και ένα κινητό τηλέφωνο σε κέντρο επικοινωνίας. Όταν εγκατασταθεί, το πρόγραμμα επιτρέπει στους χρήστες να στέλνουν και να λαμβάνουν μηνύματα κειμένου σε μεγάλες ομάδες ανθρώπων μέσω κινητού τηλεφώνου. Κάνε κλικ στο γκρι κουτί για να κατεβάσεις το πρόγραμμα από το FrontlineSMS.com', + 'flsms_download' => 'Λυψη και εγκατασταση του FrontlineSMS', + 'flsms_instructions' => 'Λεπτομερείς οδηγίες για το πώς να στείλθει SMS από την FronlineSMS εγκατάσταση είναι διαθέσιμες εδώ. Η διεύθυνση URL και το κλειδί API απαιτούνται για να δημιουργηθεί ο συγχρονισμός με το FrontlineSMS.', + 'flsms_link' => 'Αντιγράψτε και επικολλήστε αυτο στο FrontlineSMS πεδίο "Διευθυνση"', + 'flsms_key' => 'Αντιγράψτε και επικολλήστε αυτο στο FrontlineSMS πεδίο "Ushahidi API Κλειδι"', + 'flsms_synchronize' => 'Σύνδεση του FrontlineSMS σε αυτή την Ushahidi ανάπτυξη', + 'flsms_text_1' => 'Βάλε τον αριθμό του τηλεφώνου που είναι συνδεδεμένο στο Frontline SMS στο παρακάτω πεδίο.', + 'flsms_text_2' => 'Βάλε παρακάτω τον αριθμό χωρίς + ή παύλες', + 'option_1' => 'Επιλογή 1: Χρησιμοποίησε το Frontline SMS', + 'option_2' => 'Επιλογή 2: Χρησιμοποίησε ένα Global SMS Gateway', + 'title' => 'Επιλογές ρύθμισης SMS', + ) , + 'sms_no1' => array( + 'length' => 'Το πεδίο τηλέφωνο 1 δεν περιέχει έγκυρη τιμή.', + 'numeric' => 'Το πεδίο τηλέφωνο 1 θα πρέπει να περιέχει μόνο αριθμούς.', + ) , + 'sms_no2' => array( + 'length' => 'Το πεδίο τηλέφωνο 2 είναι πολύ μεγάλο.', + 'numeric' => 'Το πεδίο τηλέφωνο 2 θα πρέπει να περιέχει μόνο αριθμούς.', + ) , + 'sms_no3' => array( + 'length' => 'Το πεδίο τηλέφωνο 3 είναι πολύ μεγάλο.', + 'numeric' => 'Το πεδίο τηλέφωνο 3 θα πρέπει να περιέχει μόνο αριθμούς.', + ) , + 'twitter' => array( + 'title' => 'Επιλογές ρύθμισης του Twitter', + 'description' => 'Για να πάρεις τις παρακάτω πληροφορίες χρειάζεται να δημιουργήσεις μια νέα εφαρμογή Twitter στο', + 'api_key' => 'Κλειδί καταναλωτή ', + 'api_key_secret' => 'Μυστικό καταναλωτή ', + 'token' => 'Διακριτικό πρόσβασης ', + 'token_secret' => 'Μυστικο διακριτικό πρόσβασης ', + ) , + 'test_settings' => 'Δοκιμαστικες ρυθμισεις', +); diff --git a/application/i18n/el/sharing.php b/application/i18n/el/sharing.php new file mode 100644 index 0000000000..cd7447f772 --- /dev/null +++ b/application/i18n/el/sharing.php @@ -0,0 +1,25 @@ + 'ημερομηνία Εισόδου', + 'date_added' => 'Ημερομηνία προσθήκης', + 'last_access' => 'Τελευταία πρόσβαση', + 'sharing_color' => array( + 'length' => 'Το πεδίο "χρώμα" πρέπει να είναι 6 χαρακτήρες.', + 'required' => 'Το πεδίο "χρώμα" είναι υποχρεωτικό', + ) , + 'sharing_name' => array( + 'length' => 'Το όνομα κοινής χρήσης δεν φαίνεται να είναι έγκυρο.', + 'required' => 'Ένα όνομα κοινής χρήσης είναι υποχρεωτικό', + ) , + 'sharing_url' => array( + 'exists' => 'Η διεύθυνση URL υπάρχει ήδη.', + 'length' => 'Η διεύθυνση URL δεν φαίνεται να είναι έγκυρη.', + 'required' => 'Το πεδίο URL είναι υποχρεωτικό', + 'url' => 'Το πεδίο URL δεν φαίνεται να περιέχει μια έγκυρη διεύθυνση URL.', + ) , +); diff --git a/application/i18n/el/stats.php b/application/i18n/el/stats.php new file mode 100644 index 0000000000..9c376e0423 --- /dev/null +++ b/application/i18n/el/stats.php @@ -0,0 +1,42 @@ + 'Έγκριση', + 'categories' => 'Κατηγορίες', + 'category_impact' => 'Επίδραση κατηγορίας', + 'category_impact_description' => 'Αυτός ο πίνακας σου δίνει μια γραμμική απεικόνιση των αναφορών με βάση τις κατηγορίες στο χρόνο. | Κύλισε από αριστερά προς δεξιά για να δεις μια συγκριτική απεικόνιση των διαφόρων κατηγοριών. Βάλε το ποντίκι σου πάνω από το γράφημα για περισσότερες λεπτομέρειες.', + 'choose_date_range' => 'Επίλεξε ένα εύρος ημερομηνιών.', + 'countries' => 'Χώρες', + 'country' => 'Χώρα', + 'country_breakdown' => 'Απεικόνιση ανά χώρα.', + 'description' => 'Αυτός είναι ο τομέας των στατιστικών στοιχείων και σύντομα θα περιέχει μια γενική περιγραφή. Για την ώρα μπορείς να γνωρίσεις τα διάφορα στοιχεία του μέσω των παραπάνω links.', + 'error' => 'Σφάλμα', + 'glossary' => 'Γλωσσάριο', + 'hit_summary' => 'Κάνε κλικ στο Περίληψη', + 'legend' => 'Υπόμνημα', + 'pageviews' => 'Pageviews', + 'pageviews_description' => 'Ο συνολικός αριθμός σελίδων που έχουν δει οι επισκέπτες του site σου', + 'reports' => 'Αναφορές', + 'reports_categories' => 'Κατηγορίες αναφορών', + 'reports_statistics' => 'Στατιστικά Αναφορών', + 'reports_status' => 'Κατάσταση Αναφορών', + 'report_punchcard' => 'Punchcard Αναφορών', + 'report_stats' => 'Στατιστικά Αναφορών', + 'stats_not_setup' => 'Τα στατιστικά δεν έχουν ρυθμιστεί', + 'time_range_1' => '1 μήνας', + 'time_range_2' => '3 μήνες', + 'time_range_3' => '6 μήνες', + 'time_range_all' => 'Όλα', + 'unapproved' => 'Μη εγκεκριμένο', + 'unique_visitors' => 'Μοναδικοί επισκέπτες', + 'unique_visitors_description' => 'Ο αριθμός των ατόμων που επισκέπτονται το site σου. Οι μοναδικοί επισκέπτες ανιχνεύονται με τη χρήση cookies. Οι επισκέπτες που δεν έχουν ενεργοποιημένα τα cookies θα εντοπίζονται μέσω μιας απλής ευρετικής διαδικασίας που λαμβάνει υπόψη τη διεύθυνση IP, την ανάλυση της οθόνης, το browser που χρησιμοποιούν, τα πρόσθετα, το λειτουργικό σύστημα κλπ.', + 'unverified' => 'Μη επιβεβαιωμένο', + 'verified' => 'Επιβεβαιωμένο', + 'visitor_summary' => 'Περίληψη επισκεπτών', + 'visits' => 'Επισκέψεις', + 'visits_description' => 'Η επίσκεψη είναι μια εγγραφή ενός μοναδικού επισκέπτη που έρχεται στο site σε περισσότερα από 30 λεπτά από την τελευταία του επισκόπηση κάποια σελίδας.', +); diff --git a/application/i18n/el/tooltips.php b/application/i18n/el/tooltips.php new file mode 100644 index 0000000000..2f0acadbcb --- /dev/null +++ b/application/i18n/el/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => 'Αυτό προσθέτει την αναφορά σε επιπλέον κατηγορίες. Εάν επιλέξεις εδώ την Κατηγορία 1 και η αναφορά ανήκει ήδη στην Κατηγορία 2, η αναφορά θα καταλήξει να ανήκει και στις δύο Κατηγορίες.', + 'approve' => 'Εγκρίνει ή όχι μια αναφορά. Εάν η αναφορά εγκριθεί θα είναι ορατή δημόσια.', + 'assign_badge' => 'Θα μπορείς να αναθέτεις κάποιο σήμα στο χρήστη που έχει ενεργοποιήσει το γεγονός (triggering user). Διάλεξε εδώ το σήμα που θα ανατεθεί.', + 'between_times' => 'Αυτό είναι ένα χρονικό διάστημα σε ώρες ή/και λεπτά μεταξύ δύο ωρών σε μορφή 24ώρου. Εάν δώσεις προθύστερο χρόνο στο δεύτερο πεδίο, οι τιμές θα αντιστραφούν με το πρώτο. Το χρονικό διάστημα θα πρέπει να εμπίπτει σε μία ημέρα. Επίσης αυτό το χρονικό διάστημα ελέγχεται με το χρόνο που έχεις ρυθμίσει για το site σου στις "ρυθμίσεις του site" και όχι απαραίτητα με βάση τη ζώνη χρόνου του επισκέπτη του site σου. Άφησε τις προκαθορισμένες ρυθμίσεις για να αγνοήσεις αυτό τον qualifier.', + 'category' => 'Εάν θέλεις να ενεργοποιείται ένα γεγονός μόνο όταν χρησιμοποιείται μια συγκεκριμένη κατηγορία, μπορείς να το ρυθμίσεις εδώ. Αυτό θα επιτρέψει την ενεργοποίηση ενός γεγονότος μόνο όταν χρησιμοποιείται η συγκεκριμένη κατηγορία. Για παράδειγμα, εάν επιλέξεις εδώ τις Κατηγορίες 1 και 2 και η αναφορά που υποβάλλεται χρησιμοποιεί τις Κατηγορίες 2 και 3, θα γίνει η ενεργοποίηση του γεγονότος.', + 'days_of_the_week' => 'Εάν αυτές οι δράσεις συμβαίνουν σε συγκεκριμένες ημέρες της εβδομάδας, ρύθμισέ το εδώ. Έχε στο νου σου ότι η ημέρα καθορίζεται από τις ρυθμίσεις ζώνης χρόνου που έχεις κάνει στο site σου. Κράτησε πατημένο το shift, το command ή το control για περισσότερες επιλογές.', + 'email_body' => 'Το σώμα του email που θα αποσταλεί.', + 'email_subject' => 'Το θέμα του email που θα αποσταλεί.', + 'feed_id' => 'Το feed μπορεί να είναι γενικό ή να αφορά συγκεκριμένα feeds. Εάν επιθυμείς το trigger να ενεργοποιείται μόνο από συγκεκριμένα feeds θα πρέπει να τα επιλέξεις εδώ. Διαφορετικά άφησε την τιμή "όλα".', + 'from' => 'Όνομα χρήστη του twitter (ή πολλαπλά ονόματα χωριζόμενα με κόμμα). Εάν επιθυμείς το trigger να ενεργοποιείται μόνο για tweets συγκεκριμένων χρηστών, βάλε εδώ τα ονόματά τους (χωρίς το @).', + 'keywords' => 'Μπορείς να το αφήσεις κενό, εάν δε θέλεις να κάνεις κάποιο έλεγχο με βάση συγκεκριμένες λέξεις - κλειδιά. Εάν προσθέσεις κάποιες λέξεις εδώ, χώρισέ τις με κόμμα (,). Για παράδειγμα, εάν θέλεις να ενεργοποιήσεις ένα trigger όταν κάποιος αναφέρει τη λέξη "αγάπη" ή "ειρήνη" στο μήνυμά του, θα πρέπει να κάνεις την προσθήκη "αγάπη, ειρήνη" (χωρίς εισαγωγικά).', + 'location' => 'Μπορείς να επιλέξεις είτε "οπουδήποτε" ή κάποια συγκεκριμένη τοποθεσία. Εάν επιλέξεις μια συγκεκριμένη τοποθεσία θα σου ζητηθεί να σχηματίσεις ένα πλαίσιο γύρω από την περιοχή ενδιαφέροντος. Για παράδειγμα, εάν θέλεις να ενεργοποιηθεί ένα γεγονός όταν κάποιος υποβάλλει μια αναφορά στη Βραζιλία, θα πρέπει να επιλέξεις "συγκεκριμένη τοποθεσία" και να σχηματίσεις ένα πλαίσιο γύρω από τη Βραζιλία. Μπορείς να κάνεις αυτά τα πλαίσια όσο μεγάλα ή όσο μικρά επιθυμείς. Μπορείς επίσης να σχηματίσεις πολλαπλά πλαίσια.', + 'on_specific_count' => 'Αυτός ο qualifier θα ενεργοποιήσει κάποιο γεγονός τη ν-οστή φορά είτε για το συνολικό αριθμό αναφορών, είτε για κάποιο συγκεκριμένο χρήστη. Άφησέ το κενό για να την αγνοήσεις.', + 'report_title' => 'Αυτός είναι ο προκαθορισμένος τίτλος που θα μπαίνει στην αναφορά.', + 'response' => 'Εάν όλοι οι παραπάνω qualifiers επιτύχουν, θα ενεργοποιηθεί κάποια απόκριση. Αυτή μπορεί να είναι η έγκριση κάποιας αναφοράς ή η αποστολή email σε κάποιο χρήστη. Επίλεξε εδώ την απόκριση για να ενεργοποιήσεις περισσότερες επιλογές για τις συγκεκριμένες αποκρίσεις.', + 'send_to' => 'Εάν επιλέξεις "Triggering user" το email θα αποσταλεί στο χρήστη που έκανε τη δράση. Εάν επιλέξεις το κουμπί δίπλα από το κουτί καταχώρησης θα μπορείς να βάλεις μια προσαρμοσμένη διεύθυνση email. Αυτό είναι χρήσιμο εάν ρυθμίζεις κάποια triggers για να ειδοποιείς τους χρήστες σχετικά με αναφορές που γίνονται σε συγκεκριμένα σημεία του χάρτη, ή άλλες δραστηριότητες.', + 'specific_days' => 'Μπορείς να επιλέξεις πολλαπλές ημέρες εδώ. Οι ημερομηνίες καθορίζονται από τη ζώνη χρόνου του site σου. Για να αφήσεις τις προκαθορισμένες τιμές, μην επιλέξεις καμία ημερομηνία.', + 'trigger' => 'Το trigger είναι το βασικό στοιχείο της ρύθμισης των Action Triggers. Εδώ καθορίζεις εάν θέλεις να ενεργοποιείται ένα γεγονός όταν κάποιος υποβάλει μια αναφορά, μπαίνει στο σύστημα κλπ. Θα μπορείς να φιλτράρεις τις αποκρίσεις σε αυτές τις δράσεις μετά την επιλογή.', + 'user' => 'Ο χρήστης μπορεί να είναι οποιοσδήποτε ή κάποιος συγκεκριμένος. Εάν θέλεις να ενεργοποιείται το trigger μόνο από συγκεκριμένους χρήστες, θα πρέπει να τους επιλέξεις εδώ. Διαφορετικά μπορείς να αφήσεις την τιμή "οποιοσδήποτε", καθώς τα περισσότερα triggers αφορούν την αλληλεπίδραση οποιουδήποτε χρήστη με το σύστημα.', + 'verify' => 'Μαρκάρει μια αναφορά ως επιβεβαιωμένη ή όχι.', + ) , + 'change_picture' => 'Οι σελίδες προφίλ σε αυτό το site χρησιμοποιούν το Gravatar. Κάνοντας κλικ πάνω στην εικόνα σου θα μεταφερθείς στο site του Gravatar όπου μπορείς να αλλάξεις την εικόνα του προφίλ σου.', + 'default_value' => 'Χώρισε την κάθε τιμή με κόμμα, πχ τιμή1, τιμή2.', + 'radio_choices' => 'Χώρισε την κάθε τιμή με κόμμα, πχ τιμή1, τιμή2. Σε περίπτωση που θέλεις να ορίσεις μια προεπιλεγμένη τιμή, πρόσθεσε στο τέλος :: πχ εάν θέλεις να είναι η τιμή3 η προεπιλεγμένη θα βάλεις τιμή1, τιμή2, τιμή3::τιμή3', + 'dropdown_choices' => 'Χώρισε κάθε επιλογή με κόμμα, πχ Αντικείμενο 1, Αντικείμενο 2 κλπ', + 'private_to' => 'Ξεκίνα να πληκτρολογήσεις για να δεις τη λίστα με τα μέλη', + 'private_subject' => 'Θέμα ατομικού μηνύματος', + 'private_message' => 'Ατομικό μήνυμα', + 'profile_color' => 'Μπορείς να επιλέξεις το χρώμα που θα φαίνεται κάτω από τη φωτογραφία του προφίλ σου στη σελίδα "δημόσιο προφίλ". Αυτό το χρώμα θα είναι επίσης το χρώμα της κουκίδας που θα φαίνεται στο χάρτη για τα δικά σου chekcins.', + 'profile_email' => 'Η διεύθυνση email σου.', + 'profile_name' => 'Αυτός είναι ένας από τους τρόπους που προσδιορίζεσαι μέσα στο site. Έχε στο νου σου ότι φαίνεται δημόσια!', + 'profile_new_password' => 'Εάν βάλεις κάποια τιμή, αυτός θα είναι ο νέος σου κωδικός. Άφησέ το κενό εάν επιθυμείς να διατηρήσεις τον κωδικό σου.', + 'profile_new_users_password' => 'Αυτό απαιτείται όταν δημιουργείς ένα νέο χρήστη και θα είναι ο κωδικός του χρήστη. Θα πρέπει να ενημερώσεις το νέο χρήστη να αλλάξει τον κωδικό του όταν μπει στο σύστημα για πρώτη φορά.', + 'profile_notify' => 'Επιλέγοντας ΝΑΙ θα λαμβάνεις ειδοποιήσεις μέσω email όταν αναρτώνται νέα σχόλια ή αναφορές στο site σου.', + 'profile_password' => 'Ο τρέχων κωδικός σου. Απαιτείται προκειμένου να εμποδιστεί μη εγκεκριμένη απόπειρα αλλαγής του λογαριασμού σου.', + 'profile_public' => 'Εάν τσεκάρεις αυτή την επιλογή, το προφίλ σου θα είναι ορατό σε οποιονδήποτε στο διαδίκτυο. Αυτός είναι ο ευκολότερος τρόπος για να δημοσιοποιήσεις τις αναφορές που έχεις υποβάλει.', + 'profile_public_url' => 'Αυτή είναι η διεύθυνση στην οποία μπορεί να βρεθεί το δημόσιο προφίλ σου.', + 'profile_username' => 'Το όνομα χρήστη δεν μπορεί να αλλαχθεί.', + 'settings_access_level' => 'Τα επίπεδα πρόσβασης χρησιμοποιούνται για να περιορίσουν την πρόσβαση σε προσαρμοσμένα πεδία δεδομένων. Τα υψηλότερα επίπεδα πρόσβασης έχουν πρόσβαση σε πεδία που έχουν δημιουργηθεί από χαμηλότερα επίπεδα πρόσβασης. Ο Superadmin έχει το υψηλότερο επίπεδο πρόσβασης (100). Τα δημόσια δεδομένα απεικονίζονται με το χαμηλότερο επίπεδο πρόσβασης (0). Τα μέλη έχουν επίπεδο πρόσβασης 10. Ο διαχειριστής έχει προκαθορισμένο επίπεδο πρόσβασης 90.', + 'settings_alert_email' => 'Αυτή είναι η διεύθυνση email που θα χρησιμοποιηθεί για να αποστέλλονται οι ειδοποιήσεις μέσω email.', + 'settings_allow_alerts' => 'Ενεργοποίησε τη δυνατότητα για τους χρήστες να μπορούν να λαμβάνουν ειδοποιήσεις μέσω του διαδικτύου.', + 'settings_allow_clustering' => 'Αυτό επιτρέπει τη συγκέντρωση παρόμοιων αναφορών σε μία μόνο κουκκίδα στο χάρτη.', + 'settings_allow_comments' => 'Ενεργοποίησε τη δυνατότητα για τους χρήστες να μπορούν να σχολιάζουν τις αναφορές στο κεντρικό site.', + 'settings_allow_feed' => 'Αυτό επιτρέπει στα RSS News feeds να απεικονίζονται στο κεντρικό site.', + 'settings_allow_reports' => 'Ενεργοποίησε τη δυνατότητα για τους χρήστες να υποβάλλουν πληροφορίες μέσω της διαδικτυακής φόρμας.', + 'settings_api_default_record_limit' => 'Προκαθορισμένος αριθμός εγγραφών που θα λαμβάνονται για κάθε API request.', + 'settings_api_max_record_limit' => 'Μέγιστος αριθμός εγγραφών που θα λαμβάνονται για κάθε API request.', + 'settings_api_max_requests_per_ip' => 'Μέγιστος αριθμός API request ανά διεύθυνση IP.', + 'settings_banner' => 'To banner του site απεικονίζεται στην κορυφή της σελίδας του site σου, εάν υποστηρίζεται από το θέμα που χρησιμοποιείς. Το συνιστώμενο μέγεθος για το banner εξαρτάται από το εκάστοτε θέμα. Έχε στο νου σου ότι το banner θα αντικαταστήσει τον τίτλο του site και το tagline στην κορυφή της σελίδας.', + 'settings_blocks_per_row' => 'Ο αριθμός των στηλών block που θα απεικονίζονται σε κάθε σειρά.', + 'settings_cache_pages' => 'Ενεργοποίησε ή απενεργοποίησε το page caching. Αυτό θα κάνει τις σελίδες να απεικονίζονται ταχύτερα, μειώνοντας τους χρόνους απόκρισης. Συνιστούμε να χρησιμοποιείς caching σε site μεγάλης κυκλοφορίας. **Θυμήσου ότι οι αναφορές θα συμπληρώνονται πάνω στο site με βάση το χρονοδιάγραμμα που ορίζεις ακολούθως (Cache lifetime).', + 'settings_cache_pages_lifetime' => 'Όρισε το χρόνο ζωής του cache.', + 'settings_checkins' => 'Αυτή η ρύθμιση επιτρέπει την είσοδο χρηστών στο σύστημα. Αυτή είναι ένας απλοποιημένος τύπος αναφοράς, η οποία δεν ελέγχεται προτού δημοσιευτεί στην κεντρική σελίδα και απαιτεί συγκεκριμένες ρυθμίσεις για το site σου. Όταν το ενεργοποιήσεις, βεβαιώσου ότι η ζώνη ώρας είναι σε UTC και ότι το θέμα σου υποστηρίζει τα checkins. Όταν είναι ενεργοποιημένο θα μπορείς να βλέπεις μόνο τα θέματα που υποστηρίζουν checkins στη σελίδα addons/thems.', + 'settings_configure_map' => 'Όρισε συγκεκριμένη περιοχή για το χάρτη.', + 'settings_default_category_colors' => 'Όρισε συγκεκριμένο χρώμα για όλες τις κατηγορίες του χάρτη.', + 'settings_default_category_icons' => 'Όρισε ένα εικονίδιο για όλες τις κατηγορίες του χάρτη.', + 'settings_default_location' => 'Αυτή είναι η χώρα στην οποία είναι ενεργός αυτός ο χάρτης.', + 'settings_display_contact' => 'Ενεργοποίησε ή απενεργοποίησε τη φόρμα επικοινωνίας στο κεντρικό site.', + 'settings_display_howtohelp' => 'Ενεργοποίησε ή απενεργοποίησε το tab "How to help" στην κεντρική σελίδα.', + 'settings_display_items_per_page' => 'Αυτός είναι ο αριθμός των αναφορών που φαίνονται ανά σελίδα στο κεντρικό site.', + 'settings_display_items_per_page_admin' => 'Αυτός είναι ο αριθμός των αναφορών που φαίνονται ανά σελίδα στο χώρο διαχείρισης του site.', + 'settings_flsms_download' => 'Αυτό είναι το κεντρικό σημείο για τα εισερχόμενα μηνύματα.', + 'settings_flsms_synchronize' => 'Αυτό συγχρονίζει τα μηνύματα του κεντρικού σημείου με την πλατφόρμα Ushahidi.', + 'settings_flsms_text_1' => 'Αριθμοί τηλεφώνου μέσω των οποίων λαμβάνονται τα μηνύματα κειμένου.', + 'settings_google_analytics' => 'Ανίχνευσε τους επισκέπτες του site σου. Δες αναλυτικά στατιστικά για τους επισκέπτες.', + 'settings_locale' => 'Όρισε τη γλώσσα στην οποία θα χρησιμοποιείται αυτό το site.', + 'settings_manually_approve_users' => 'Εάν επιλέξεις ναι, θα πρέπει να εγκρίνεις κάθε χρήστη που δημιουργεί ένα λογαριασμό σε αυτό το site, δίνοντάς του κάποιο ρόλο (πχ Μέλος, Διαχειριστής, Υπερ-Διαχειριστής).', + 'settings_map_provider' => 'Αυτό καθορίζει ποιος χάρτης θα χρησιμοποιηθεί σε αυτό το site.', + 'settings_map_timeline' => 'Αυτό δείχνει το timeline με βάση την ημερομηνία και ώρα που δημιουργούνται οι αναφορές.', + 'settings_private_deployment' => 'Ορίζοντας αυτή την τιμή ως true ή ναι θα μετατρέψει το site σου σε μη δημόσιο, ώστε μόνο οι χρήστες με λογαριασμό που καθορίζεις εσύ να μπορούν να έχουν πρόσβαση.', + 'settings_require_email_confirmation' => 'Στους χρήστες θα αποστέλλεται ένα email επιβεβαίωσης με ένα σύνδεσμο που θα πρέπει να επισκεφτούν προτού τους επιτραπεί η δυνατότητα εισόδου στο σύστημα, εάν επιλέξεις "ναι". Εάν το επιλέξεις αφότου έχεις ήδη δεχτεί κάποιους χρήστες, θα σταλθεί και σε εκείνους κάποιο email επιβεβαίωσης.', + 'settings_server_host' => 'Εδώ βρίσκονται τα emails.', + 'settings_server_password' => 'Αυτός είναι ο κωδικός για τη διεύθυνση email που λαμβάνει τις αναφορές.', + 'settings_server_port' => 'Αυτό απαιτείται προκειμένου να γίνονται δεχτές οι συνδέσεις από τη διεύθυνση email.', + 'settings_server_ssl_support' => 'Αυτό απαιτείται για την ενίσχυση της ασφάλειας της σύνδεσης.', + 'settings_server_type' => 'Αυτό απαιτείται για να μπορεί το σύστημα να λαμβάνει emails από το host server.', + 'settings_server_username' => 'Αυτή είναι η διεύθυνση email που λαμβάνει τις αναφορές.', + 'settings_share_site_stats' => 'Τα στατιστικά των επισκέψεων διατηρούνται σε ένα διακομιστή που ελέγχεται από το Ushahidi. Ενεργοποιώντας αυτή την επιλογή μπορείς να δεις τα σχετικά στατιστικά στο admini panel. Απενεργοποιώντας την θα παύσει η συλλογή στατιστικών και δε θα μπορείς να τα ανακτήσεις για την περίοδο που είναι απενεργοποιημένη.', + 'settings_site_copyright_statement' => 'Έχουν άλλοι το δικαίωμα να αναδημοσιεύσουν κείμενο, φωτογραφίες, βίντεο ή/και σχεδιαστικά θέματα που φτιάχνεις εσύ και οι χρήστες σου; Πήγαινε στο https://creativecommons.org/choose/ εάν επιθυμείς να προσδιορίσεις τι μπορούν να κάνουν οι άλλοι με τη δουλειά σου. Και να θυμάσαι να είσαι συγκεκριμένος σε σχέση με το σε ποια στοιχεία του site σου αφορά η άδεια!', + 'settings_site_email' => 'Αυτή είναι η διεύθυνση email που θα λαμβάνει τις αναφορές μέσω email και τα μηνύματα από τη φόρμα επικοινωνίας.', + 'settings_site_message' => 'Αυτό είναι το κείμενο που θα εμφανίζεται πάνω από το χάρτη στην αρχική σελίδα. Είναι χρήσιμο για να δώσεις σημαντικές πληροφορίες στους επισκέπτες του site. Για να αφαιρέσεις το κουτί απλά διάγραψε το μήνυμα εδώ.', + 'settings_site_name' => 'Αυτό είναι το όνομα του site που εμφανίζεται στην κορυφή του κεντρικού site.', + 'settings_site_submit_report_message' => 'Αυτό είναι ένα μήνυμα που θα φαίνεται στη σελίδα υποβολής αναφοράς. Είναι χρήσιμο για disclaimers ή περαιτέρω οδηγίες για τους ανταποκριτές.', + 'settings_site_tagline' => 'Με λίγα λόγια εξήγησε το σκοπό αυτού του site.', + 'settings_site_timezone' => 'Αυτή είναι η ζώνη ώρας στην οποία θα λειτουργεί το site σου. Η ρύθμιση αυτή επιδρά σε τυχόν δράσεις που έχεις ρυθμίσει, οι οποίες χρησιμοποιούν ώρα και ημερομηνία, καθώς και στην προκαθορισμένη ώρα για τις αναφορές που υποβάλλονται.', + 'settings_twitter_configuration' => 'Όρισε το twitter hashtag που θα χρησιμοποιηθεί σε κάποιο tweet που αφορά σε αυτό το χάρτη.', +); diff --git a/application/i18n/el/ui_admin.php b/application/i18n/el/ui_admin.php new file mode 100644 index 0000000000..5725bede81 --- /dev/null +++ b/application/i18n/el/ui_admin.php @@ -0,0 +1,320 @@ + 'Απαγόρευση πρόσβασης. Είτε τα στοιχεία πρόσβασης δεν είναι έγκυρα, ή το αίτημά σου έχει απορριφθεί.', + 'access_denied_others' => 'Απαγόρευση πρόσβασης. Το αίτημά σου έγινε κατανοητό, αλλά απορρίφθηκε λόγω περιορισμών στο χρόνο πρόσβασης. Δοκίμασε ξανά αργότερα.', + 'access_level' => 'Επίπεδο πρόσβασης', + 'actions' => 'Δράσεις', + 'add_to_category' => 'Προσθήκη στην κατηγορία', + 'added' => 'Προστέθηκε', + 'added_edited' => 'Προσθήκη/επεξεργασία', + 'addons' => 'Πρόσθετα', + 'admin_role' => 'Διαχειριστής', + 'alerts' => 'Ειδοποιήσεις', + 'alerts_received' => 'Ληφθείσες ειδοποιήσεις', + 'all' => 'Όλα', + 'am' => 'ΑΜ', + 'anonymous' => 'Ανώνυμος', + 'anyone_role' => 'Οποιοσδήποτε', + 'anywhere' => 'Οπουδήποτε', + 'api_banned' => 'Απορριπτέο API', + 'api_logs' => 'Ημερολόγιο καταγραφής συμβάντων API', + 'api_settings' => 'Ρυθμίσεις API', + 'api_unban' => 'Αναίρεση κατάργησης', + 'api_unban_all' => 'Αναίρεση κατάργησης όλων ', + 'approved' => 'εγκεκριμένο', + 'approve_auto' => 'Αυτόματη Έγκριση', + 'approve_manual' => 'Χειροκίνητη εγκριση', + 'archived' => 'Αρχειοθετημένο', + 'are_you_sure_you_want_to' => 'Είστε σίγουρος ότι θέλετε να', + 'are_you_sure_you_want_to_delete_this_item' => 'Είστε σίγουρος ότι θέλετε να διαγράψετε αυτό το αντικείμενο;', + 'are_you_sure_you_want_to_delete_this_photo' => 'Είστε σίγουρος ότι θέλετε να διαγράψετε αυτή τη φωτογραφία;', + 'are_you_sure_you_want_to_switch_forms' => 'Είσαι σίγουρος ότι θέλεις να αλλάξεις φόρμες;', + 'assign' => 'Ανάθεσε', + 'assignments' => 'Αναθέσεις', + 'assign_badge' => 'Ανάθεσε σήμα', + 'author' => 'Συντάκτης', + 'author_email' => 'Συντάκτης email', + 'back' => 'Πίσω', + 'banip_action' => 'Κατάργηση IP', + 'between_times' => 'Μεταξύ χρονικών στιγμών', + 'blocks' => 'Blocks', + 'body' => 'Σώμα', + 'cancel' => 'Ακύρωση', + 'categories' => 'Κατηγορίες', + 'chart_display_error' => 'Πίνακας σφαλμάτων', + 'check_message_valid' => 'Παρακαλώ βεβαιωθείτε ότι το μήνυμά σας είναι έγκυρο.', + 'check_number' => 'Παρακαλώ βεβαιωθείτε ότι το νούμερο είναι έγκυρο.', + 'check_sms_settings' => 'Παρακαλώ ελέγξτε τις ρυθμίσεις των μηνυμάτων σας!', + 'checkin_details' => 'Λεπτομέρειες checkin', + 'checkins' => 'Checkins', + 'cities_loaded' => 'Οι πόλεις φορτώθηκαν', + 'code' => 'κωδικός', + 'code_out_of_sync' => 'Η έκδοση του κώδικα είναι εκτός συγχρονισμού', + 'color' => 'Χρώμα', + 'comments' => 'Σχόλια', + 'confirmation_code' => 'Ο κωδικός επιβεβαίωσης ειδοποιήσεων είναι: ', + 'confirm_msg' => 'Ο χρήστης έχει', + 'count' => 'Μετράω', + 'country_not_found' => 'Η χώρα δε βρέθηκε', + 'created_edited' => 'δημιουργήθηκε / διορθώθηκε', + 'create_report' => 'Φτιάξε μια Αναφορά', + 'critical_upgrade' => 'Κρίσιμη αναβάθμιση', + 'csv' => 'CSV', + 'currently_active' => 'Ενεργοποιημένα', + 'currently_inactive' => 'Ανενεργά', + 'custom_forms_insufficient_permissions' => 'Δεν έχεις επαρκή δικαιώματα για να διορθώσεις τα ακόλουθα προσαρμοσμένα πεδία.', + 'daily' => 'Καθημερινά', + 'dashboard' => 'Πίνακας ελέγχου', + 'database' => 'βάση δεδομένων', + 'date_time' => 'Ημερομηνία & Ώρα', + 'date_added' => 'Προστέθηκε η ημερομηνία', + 'date_modified' => 'Τροποποιήθηκε η ημερομηνία', + 'days_of_the_week' => 'Ημέρες της εβδομάδας', + 'db_out_of_sync' => 'Έκδοση βάσης δεδομένων εκτός συγχρονισμού', + 'deleted' => 'σβήστηκε', + 'delete_action' => 'Σβήσε', + 'delete_badge' => 'Σβήσε το σήμα', + 'demo' => 'Demo', + 'description' => 'Περιγραφή', + 'disabled' => 'Απενεργοποιήθηκε', + 'divider_start_field' => 'Αρχή διαχωριστικού', + 'divider_end_field' => 'Τέλος διαχωριστικού', + 'divider_class' => 'div class', + 'download_reports' => 'Κατέβασε τις Αναφορές', + 'dropdown_choices' => 'Επιλογές πτυσσόμενης λίστας', + 'edited' => 'ΔΙΟΡΘΩΘΗΚΕ', + 'edited_by' => 'Διορθώθηκε από τον/την', + 'edit_action' => 'Διόρθωσε', + 'edit_log' => 'Αρχείο καταγραφής συμβάντων διόρθωσης', + 'email' => 'Ηλεκτρονικό μήνυμα', + 'entire_collective' => 'Ολόκληρη η συλλογή', + 'error_geocoding' => 'Σφάλμα στην γεω-κωδικοποίηση. Σφάλμα HTTP', + 'error_imap' => 'Η βιβλιοθήκη IMAP PHP δεν έχει εγκατασταθεί.', + 'error_twitter' => 'Εσφαλμένες πιστοποιήσεις ', + 'error_msg' => 'Σφάλμα', + 'error_post_incident' => 'Σφάλμα, αδύνατη η δημοσίευση του γεγονότος', + 'every_six_hours' => 'Κάθε έξι ώρες', + 'every_twelve_hours' => 'Κάθε δώδεκα ώρες', + 'experimental' => 'Πειραματικό', + 'faqs' => 'Συχνές ερωτήσεις', + 'feed' => 'ροή πληροφοριών', + 'feedback' => 'Ανατροφοδότηση', + 'feeds' => 'ροές πληροφοριών', + 'field_choices' => 'Λίστα επιλογών', + 'field_default' => 'Προκαθορισμένη τιμή', + 'field_datatype' => 'Είδος δεδομένων', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Αριθμητικό', + 'field_datatype_text' => 'Ελεύθερο κείμενο', + 'field_height' => 'Ύψος (σε σειρές)', + 'field_hidden' => 'Κρυμμένο πεδίο', + 'field_maxlength' => 'Μέγιστο μήκος χαρακτήρων', + 'field_name' => 'Όνομα Πεδίου', + 'field_toggle' => 'Εναλλαγή', + 'field_toggle_no' => 'Όχι', + 'field_toggle_yes_close' => 'Ναι, προκαθορισμένη τιμή: κλειστό', + 'field_toggle_yes_open' => 'Ναι, προκαθορισμένη τιμή: ανοιχτό', + 'file_not_found_upload' => 'Δεν μπόρεσα να βρω το μεταφορτωμένο αρχείο', + 'file_open_error' => 'Δεν μπόρεσα να ανοίξω το αρχείο για ανάγνωση', + 'form_not_exists' => 'Αυτή η φόρμα δεν υπάρχει!', + 'forum' => 'Φόρουμ', + 'free_text_field' => 'Πεδίο περιοχής κειμένου (ελεύθερο κείμενο)', + 'date_field' => 'Πεδίο ημερομηνίας', + 'radio_field' => 'Πεδίο ραδιοφωνικών κουμπιών', + 'checkbox_field' => 'Πεδίο checkboxes', + 'dropdown_field' => 'Πεδίο πτυσσόμενης λίστας', + 'from' => 'Από', + 'from_date' => 'Από', + 'geonames_timeout' => 'Σφάλμα λήξης χρόνου γεω-ονομάτων', + 'get_help' => 'Αναζήτησε βοήθεια', + 'get_more_themes' => 'Κατέβασε περισσότερα θέματα', + 'get_more_plugins' => 'Κατέβασε περισσότερα πρόσθετα', + 'header_actions' => 'Δράσεις', + 'header_add_edit' => 'Προσθήκη / Διόρθωση', + 'header_email' => 'Email', + 'header_manage_users' => 'Διαχείριση χρηστών', + 'header_role' => 'Ρόλος', + 'header_user' => 'Χρήστης', + 'help' => 'βοήθεια', + 'hourly' => 'Ωριαίος', + 'incident_feed' => 'Ροή περιστατικού για', + 'installer_info' => 'Ο φάκελος εγκατάστασης υπάρχει ακόμα. Διάγραψέ τον. Αποτελεί πιθανό κίνδυνο ασφάλειας για το σύστημά σου.', + 'instance' => 'Instance', + 'instances' => 'Instances', + 'instance_details' => 'Λεπτομέρειες instance', + 'invalid_parameter' => 'Μη έγκυρη παράμετρος', + 'ip_address' => 'Διεύθυνση IP', + 'is_date' => 'Είναι αυτό ένα πεδίο ημερομηνίας;', + 'ispublic_visible' => 'Ποιος μπορεί να βλέπει τις απαντήσεις', + 'ispublic_submit' => 'Ποιος μπορεί να υποβάλλει απαντήσεις', + 'keyword' => 'Λέξη κλειδί', + 'keywords' => 'Λέξεις κλειδιά', + 'label_email' => 'Ηλεκτρονική Διεύθυνση', + 'label_full_name' => 'Πλήρες όνομα:', + 'label_password' => 'Κωδικός:', + 'label_role' => 'Ρόλος:', + 'label_username' => 'Όνομα χρήστη:', + 'layers' => 'Επίπεδα', + 'login_role' => 'Διαχειριστής', + 'logout' => 'Έξοδος από το σύστημα', + 'logs' => 'Αρχεία καταγραφής περιστατικών', + 'manage' => 'Διαχείρηση', + 'manage_roles' => 'Διαχείριση ρόλων & επιπέδων πρόσβασης', + 'manage_users' => 'Δες τους χρήστες', + 'manage_users_edit' => 'Προσθήκη/Επεξεργασία χρηστών', + 'manage_public_listing' => 'Διαχείριση της δημόσιας καταχώρησης του χάρτη σου', + 'mark_as' => 'Επισήμανε ως', + 'marked_as_not_spam' => 'επισήμανε ως μη κακόβουλο', + 'marked_as_spam' => 'επισημασμένο ως κακόβουλο', + 'match_no_documents' => 'δεν βρέθηκαν έγγραφα να ταιριάζουν', + 'message' => 'Μήνυμα', + 'messages' => 'Μηνύματα', + 'messages_laconica' => 'Μηνύματα laconica', + 'messages_twitter' => 'Μηνύματα twitter', + 'message_sent' => 'Το μήνυμα εστάλει!', + 'mhi' => 'MHI', + 'minute' => 'Λεπτό', + 'minutes' => 'Λεπτά', + 'missing_parameter' => 'Λείπει κάποια παράμετρος', + 'moderator' => 'Διαχειριστής', + 'modified' => 'τροποποιημένο', + 'modify_timezone' => 'Τροποποίησε τις ρυθμίσεις της ζώνης χρόνου', + 'move_down_action' => 'κινήσου προς τα κάτω', + 'move_up_action' => 'κινήσου προς τα πάνω', + 'multiple_hosted_instances' => 'Πολλαπλές εγκαταστάσεις', + 'my_alerts' => 'ΟΙ ειδοποιήσεις μου', + 'my_checkins' => 'Τα checkin μου', + 'my_profile' => 'Το προφίλ μου', + 'my_reports' => 'Οι αναφορές μου', + 'my_votes' => 'Ψήφοι που έχουν δοθεί', + 'my_votes_up' => 'Θετικό', + 'my_votes_down' => 'Αρνητικό', + 'name' => 'Όνομα', + 'new_alert' => 'Δημιουργία νέας ειδοποίησης', + 'new_private' => 'Δημιουργία νέου μηνήματος', + 'new_password' => 'Νέος κωδικός πρόσβασης', + 'no' => 'Όχι', + 'none_category_explanation' => 'Αυτή είναι μια ειδική κατηγορία η οποία δε θα φαίνεται στους χρήστες που θα συμπληρώνουν τη φόρμα υποβολής αναφοράς. Χρησιμοποιείται για να αρχειοθετούνται οι αναφορές που δεν έχουν κατηγορία (μη-κατηγοριοποιημένες αναφορές), το οποίο προκύπτει όταν σβηστεί κάποια κατηγορία.', + 'notification' => 'Ειδοποίηση', + 'not_case_sensitive' => 'Τα κεφαλαία και τα πεζά θεωρούνται τα ίδια.', + 'not_found' => 'Δε βρέθηκε', + 'no_data' => 'Δεν υπάρχουν δεδομένα. Δεν υπάρχουν αποτελέσματα προς απεικόνιση.', + 'no_error' => 'Δεν υπάρχει σφάλμα.', + 'no_result_display_msg' => 'Δεν υπάρχουν αποτελέσματα!', + 'of' => 'του', + 'on_specific_count' => 'On Specific Count', + 'openids' => 'OpenID\'s', + 'page' => 'σελίδα', + 'pages' => 'σελίδες', + 'page_not_found' => 'Η σελίδα δε βρέθηκε', + 'page_not_found_message_with_contact' => 'Συγγνώμη, η σελίδα που προσπαθείς να δεις δεν είναι εδώ.

Ακολούθησες κάποιο σύνδεσμο από κάποιο άλλο σημείο του site σου;
Εάν έφτασες εδώ από κάποιο άλλο σημείο του site σου, παρακαλούμε επικοινώνησε μαζί μας για να διορθώσουμε το σφάλμα.

Ακολούθησες κάποιο σύνδεσμο από ένα άλλο site;
Τα links από άλλα site μπορούν να είναι παρωχημένα ή να περιέχουν εσφαλμένη ορθογραφία Πες μας από που ήρθες και θα επικοινωνήσουμε μαζί τους για να διορθώσουν το πρόβλημα.

Πληκτρολόγησες τη διεύθυνση;
Μπορεί να έχεις πληκτρολογήσει λάθος διεύθυνση (URL). Κάνε έλεγχο για να βεβαιωθείς ότι η ορθογραφία, τα πεζά - κεφαλαία κλπ είναι σωστά.

', + 'page_not_found_message' => 'Συγγνώμη, η σελίδα που προσπαθείς να δεις δεν είναι εδώ.', + 'parameters_used' => 'Παράμετροι που έχουν χρησιμοποιηθεί', + 'password' => 'Κωδικός', + 'password_reset' => 'Αίτημα επανέκδοσης κωδικού', + 'password_reset_message_line_1' => 'Αγαπητέ/ή', + 'password_reset_message_line_2' => 'Λάβαμε ένα αίτημα επανέκδοσης κωδικού για', + 'password_reset_message_line_3' => 'Για να αλλάξεις τον κωδικό σου, παρακαλώ κάνε κλικ στον παρακάτω σύνδεσμο (ή ανέγραψε και επικόλλησέ τον στο browser σου).', + 'password_reset_message_line_4' => 'Σύμφωνα με το αίτημα που μας έστειλες, ο κωδικός σου έχει επανεκδοθεί. Τα νέα στοιχεία έχουν ως ακολούθως', + 'password_reset_subject' => 'Επανέκδοση κωδικού για το Ushahidi', + 'phone' => 'Τηλέφωνο', + 'please_select' => 'Παρακαλώ επίλεξε', + 'pm' => 'ΜΜ', + 'post_method_not_used' => 'Τα δεδομένα δε στάλθηκαν με τη μέθοδο post', + 'preview' => 'Προεσκόπιση', + 'private_message' => 'Μήνυμα', + 'private_messages' => 'Προσωπικό μήνυμα', + 'private_sent' => 'Αποστολή προσωπικού μηνύματος', + 'private_subject' => 'Θέμα', + 'private_to' => 'Στον', + 'public_listing' => 'Δημόσια καταχώρηση του site', + 'qualifiers' => 'Qualifiers', + 'read' => 'διάβασε', + 'relevance' => 'Σχετικότητα', + 'report_title' => 'Τίτλος αναφοράς', + 'report_date' => 'Ημερομηνία Αναφοράς', + 'reporters' => 'Ανταποκριτές', + 'reporter_levels' => 'Επίπεδα ανταποκριτών', + 'reports' => 'Αναφορές', + 'reputation' => 'Σκορ φήμης', + 'required' => 'Απαιτείται', + 'reset' => 'Μηδενισμός τιμής', + 'response' => 'Απόκριση', + 'results' => 'Αποτελέσματα', + 'revoke' => 'Ανάκληση', + 'riverid_exists_admin' => 'Αυτό το email αντιστοιχεί ήδη σε λογαριασμό, τον οποίο διαχειρίζεται το CrowdmapID. Ο χρήστης θα πρέπει να χρησιμοποιήσει τον υφιστάμενο κωδικό του για να μπει στο σύστημα.', + 'save_settings' => 'Αποθήκευση ρυθμίσεων', + 'search' => 'Αναζήτηση', + 'search_reports' => 'Αναζήτηση αναφορών', + 'searching_for' => 'Αναζήτηση για', + 'security_info_encryption_key' => 'Το κλειδί κρυπτογράφησης έχει ακόμα την προκαθορισμένη τιμή. Αυτό είναι μη ασφαλές και πρέπει να το αλλάξεις.', + 'security_info_https' => 'Το site αυτό χρησιμοποιεί HTTP. Θα πρέπει να το αλλάξεις σε HTTPS για αυξημένη ασφάλεια.', + 'security_info_instructions' => 'Θα βρεις οδηγίες στο wiki:', + 'select_download_format' => 'Επίλεξε την επιθυμητή μορφή για τη μεταφόρτωση των Αναφορών:', + 'select_field_type' => '--- Διάλεξε ένα τύπο πεδίου ---', + 'select_item' => 'Παρακαλώ επιλέξτε ένα αντικείμενο', + 'select_trigger_before_response' => 'Πρέπει να διαλέξεις ένα γεγονός πυροδότησης (trigger) προτού μπορέσεις να επιλέξεις την απόκριση.', + 'select_trigger_before_qualifiers' => 'Πρέπει να διαλέξεις ένα γεγονός πυροδότησης (trigger) προτού μπορέσεις να επιλέξεις τα qualifiers.', + 'sender' => 'Αποστολέας', + 'send_to' => 'Αποστολή στο', + 'sent_from_website' => 'Αυτό το μήνυμα εστάλει από την ιστοσελίδας σας, στο', + 'server_time' => 'Ώρα server.', + 'settings' => 'Ρυθμίσεις', + 'showing_page' => 'Βλέπεις τη σελίδα', + 'showing_results' => 'Βλέπεις τα αποτελέσματα', + 'shown' => 'έχουν βρεθεί', + 'special_category' => 'Ειδική κατηγορία', + 'special_category_explanation' => 'Αυτή είναι μια ειδική κατηγορία η οποία δε θα φαίνεται στους χρήστες όταν υποβάλουν μια Αναφορά. Χρησιμοποιείται σε συνδυασμό με το χαρακτηριστικό "Έμπιστος ανταποκριτής".', + 'specific_area' => 'Ειδική περιοχή', + 'state' => 'Πολιτεία', + 'statistics' => 'Στατιστικά', + 'stats' => 'Στατιστικά', + 'stats_collection_error' => 'Απέτυχε η συλλογή στατιστικών στοιχείων. Παρακαλώ προσπάθησε ξανά αργότερα.', + 'stats_collection_error_short' => 'Απέτυχε η συλλογή στατιστικών στοιχείων. ', + 'specific_days' => 'Συγκεκριμένες μέρες', + 'subject' => 'Θέμα', + 'superadmin_role' => 'Υπερ-Διαχειριστής', + 'task_performed' => 'Το έργο ολοκληρώθηκε', + 'text_field' => 'Πεδίο κειμένου', + 'theme_name' => 'Όνομα', + 'title' => 'Διαχείριση χρηστών', + 'timeout' => 'Σφάλμα τέλους χρόνου', + 'to' => 'σε', + 'total_records' => 'Σύνολο εγγραφών ', + 'to_date' => 'σε', + 'translate_reports' => 'Μετάφρασε Αναφορές', + 'trigger' => 'Γεγονός πυροδότησης', + 'triggering_user' => 'Χρήστης που ενεργοποιεί ένα γεγονός πυροδότησης', + 'triggers' => 'Γεγονότα πυροδότησης', + 'unapproved' => 'μη εγκεκριμένο', + 'unknown' => 'Άγνωστο', + 'unknown_failure' => 'Άγνωστο σφάλμα', + 'unread' => 'μη αναγνωσμένο', + 'unsubscribe_message' => 'Δε θα λαμβάνεις πλέον ειδοποιήσεις από', + 'update_link' => 'Κάνε κλικ εδώ για αναβάθμιση τώρα', + 'upgrade_ushahidi' => 'Αναβάθμισε το Ushahidi', + 'upgrade_ushahidi_status' => 'Κατάσταση αναβάθμισης Ushahidi', + 'upload_reports' => 'Ανέβασε Αναφορές', + 'user' => 'Χρήστης', + 'users' => 'Χρήστες', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Επιβεβαιωμένο / Μη επιβεβαιωμένο', + 'verify_unverify' => 'Επιβεβαίωσε / Ακύρωσε επιβεβαίωση', + 'version' => 'Έκδοση', + 'version_available' => 'είναι διαθέσιμο για αναβάθμιση.', + 'video_encoding' => 'Κωδικοποίηση βίντεο', + 'view_private' => 'Προσωπικό μήνυμα', + 'view_site' => 'Δες το site', + 'view_report' => 'Δες την Αναφορά', + 'welcome' => 'Καλώς όρισες,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Ναι', + 'your_search_for' => ' Η αναζήτηση σας για', +); diff --git a/application/i18n/el/ui_main.php b/application/i18n/el/ui_main.php new file mode 100644 index 0000000000..6a94ef20f5 --- /dev/null +++ b/application/i18n/el/ui_main.php @@ -0,0 +1,621 @@ + 'Περί', + 'access' => 'Πρόσβαση', + 'access_limits' => 'Περιορισμοί Πρόσβασης', + 'account_name' => 'Ονομα Λογαριασμού', + 'actions' => 'Ενέργειες', + 'action_confirm' => 'Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Είστε βέβαιοι ότι θέλετε να συνεχίσετε;', + 'activate' => 'Ενεργοποίηση', + 'active' => 'Ενεργό', + 'add' => 'Προσθήκη', + 'added_by' => 'Προσθήκη από', + 'additional_data' => 'Περισσότερα δεδομένα', + 'additional_reports' => 'Περισσότερες μαρτυρίες', + 'add_edit' => 'Προσθήκη / Επεξεργασία', + 'add_field' => 'Προσθήκη πεδίου', + 'add_language' => 'Προσθήκη γλώσσας', + 'add_new' => 'Προσθήκη νέου', + 'add_new_category' => 'Προσθήκη νέας κατηγορίας', + 'add_translation' => 'Προσθήκη Μετάφρασης', + 'admin' => 'Διαχείριση', + 'alerts' => 'Λήψη ειδοποιήσεων', + 'alerts_alert_me' => 'Ενημέρωσε με αν γίνει μια αναφορά στο ή γύρω από ', + 'alerts_btn_send' => 'Αποθήκευση της ειδοποίησης μου', + 'alerts_email' => 'Διεύθυνση ηλεκτρονικού ταχυδρομείου:', + 'alerts_enter_email' => 'Εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου', + 'alerts_enter_mobile' => 'Εισάγετε τον αριθμό του κινητού περιλαμβανομένου του κωδικού της χώρας', + 'alerts_get' => 'Λήψη ειδοποιήσεων', + 'alert_has_been' => 'Η ειδοποίηση έχει', + 'alerts_mobile_phone' => 'Κινητό τηλέφωνο:', + 'alerts_place_spot' => 'ή επιλέξτε ένα σημείο στο παρακάτω χάρτη, και εμείς θα σας ειδοποιήσουμε όταν μια αναφορά υποβάλλεται σε απόσταση 20 χιλιομέτρων.', + 'alerts_place_spot2' => 'Εάν δεν μπορείτε να βρείτε τη θέση σας, κάντε κλικ στο χάρτη για να εντοπίσετε τη σωστή θέση.', + 'alerts_rss' => 'RSS Feeds (αντιγράψτε την παρακάτω διεύθυνση URL)', + 'alerts_select_city' => 'Επιλέξτε μια πόλη', + 'alerts_step1_select_city' => ' Βήμα 1: Επιλέξτε πόλη ή την περιοχή σας:', + 'alerts_step2_send_alerts' => 'Βήμα 2: Αποστολή ειδοποιήσεων:', + 'alerts_step3_select_catgories' => 'Βήμα 3 (Προαιρετικό): Επιλογή Κατηγοριών', + 'alert_confirm_previous' => 'Επιβεβαιώσει προηγούμενο αιτήματος ειδοποίησης', + 'alert_saved' => 'Η ειδοποίησή σας έχει αποθηκευτεί!', + 'all' => 'Όλα', + 'allowed' => 'Επιτρεπόμενα', + 'allowed_tags' => 'Επιτρεπόμενες ετικέτες HTML: "%s".', + 'allowed_iframes' => 'Iframes επιτρέπονται μόνο από: %s. ', + 'all_categories' => 'Όλες οι κατηγορίες', + 'all_time' => 'Όλοι οι χρόνοι', + 'and' => 'Και', + 'api' => 'API', + 'approve' => 'Έγκριση', + 'approved' => 'Εγκεκριμένο', + 'approved_reports' => 'Εγκεκριμένες αναφορές', + 'approve_this_report' => 'Έγκριση αναφοράς', + 'approximate' => 'Κατά προσέγγιση', + 'archive' => 'Αρχείο', + 'archived' => 'Αρχειοθετημένο', + 'ascending' => 'Αύξουσα', + 'at' => 'στο', + 'author' => 'Συγγραφέας', + 'auto_checkin' => 'Auto Checkin', + 'avg_reports_per_day' => 'Μέσος αριθμός εκθέσεων ανά ημέρα', + 'awaiting_approval' => 'Εν αναμονή έγκρισης', + 'awaiting_verification' => 'Εν αναμονή επαλήθευσης', + 'badge' => 'Έμβλημα', + 'badges' => 'Εμβλήματα', + 'badge_image' => 'Εικόνα εμβλήματος', + 'badge_image_upload_your_own' => 'Ή μπορείτε να ανεβάσετε την δική σας εικόνα εμβλήματος.', + 'badge_pack' => 'Πακέτο εμβλημάτων', + 'badge_select' => 'Επιλογή εμβλήματος', + 'blog' => 'Blog', + 'browse_profiles' => 'Περιήγηση προφίλ', + 'cancel' => 'Ακύρωση', + 'categories' => 'Κατηγορίες', + 'category' => 'Κατηγορία', + 'category_filter' => 'Φίλτρο Κατηγοριών', + 'category_has_been' => 'Αυτή η κατηγορία έχει', + 'category_name' => 'Όνομα κατηγορίας', + 'change_date_range' => 'Αλλαγή εύρους ημ/νιας', + 'change_password' => 'Αλλαγή Password', + 'change_picture' => 'Αλλαγή της εικόνας μου', + 'choose' => 'Επιλέξτε ένα', + 'choose_data_points' => 'Επιλέξτε τα σημεία δεδομένων για κατέβασμα', + 'choose_date_range' => 'Ή επιλέξτε δικό σας εύρος ημερομηνιών', + 'choose_field_type' => 'Επιλέξτε τον τύπο πεδίου', + 'cleanurl' => 'Καθαρά URLs', + 'clear' => 'Καθαρισμός', + 'clear_map' => 'Καθαρισμός Χάρτη', + 'close' => 'Κλείσιμο', + 'clusters' => 'συστάδες', + 'color' => 'Χρώμα', + 'comment' => 'Σχόλιο', + 'comments' => 'Σχόλια', + 'comment_details' => 'Λεπτομέρειες Σχόλιο', + 'configuration_saved' => 'Οι ρυθμίσεις σας αποθηκεύτηκαν!', + 'configure' => 'Ρύθμιση', + 'confirm_email_successful' => 'Έχετε επιβεβαιώσει επιτυχώς τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας! Παρακαλούμε συνδεθείτε παρακάτω.', + 'confirm_email_successful_and_approval' => 'Έχετε επιβεβαιώσει επιτυχώς το email σας! Ένας διαχειριστής πρέπει να εγκρίνει τον λογαριασμό σας πριν μπορέσετε να συνδεθείτε', + 'confirm_email_failed' => 'Η επιβεβαίωσης του e-mail απέτυχε! Μπορείτε να ζητήσετε ένα νέο email επιβεβαίωσης.', + 'contact' => 'Επικοινωνήστε μαζί μας', + 'contact_code' => 'Κωδικός Ασφαλείας', + 'contact_email' => 'Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας', + 'contact_message' => 'Μήνυμα', + 'contact_message_has_send' => 'Το μήνυμά σας έχει σταλεί!', + 'contact_name' => 'Το όνομά σας', + 'contact_phone' => 'Ο αριθμός τηλεφώνου σας', + 'contact_send' => 'Αποστολή μηνύματος', + 'contact_subject' => 'Θέμα μηνύματος', + 'copyright' => 'Copyright © ', + 'create' => 'Δημιουργία', + 'create_edit' => 'Δημιουργία/Επεξεργασία', + 'create_new' => 'Δημιουργία νέου', + 'create_new_password' => 'Δημιουργία νέου Password', + 'create_report' => 'Δημιουργία Αναφοράς', + 'credibility' => 'αξιοπιστία', + 'current_password' => 'τρέχων Password', + 'custom_fields' => 'Προσαρμοσμένα πεδία', + 'data' => 'Πληροφορίες', + 'date' => 'ημερομηνία', + 'date_format' => '(ΜΜ/ΗΗ/ΕΕΕΕ)', + 'date_time' => 'Ημερομηνία & Ώρα', + 'day' => 'Ημέρα', + 'deactivate' => 'Απενεργοποίηση', + 'default_location_name' => 'Ναϊρόμπι, Κένυα', + 'delete' => 'Διαγραφή', + 'deleted' => 'Διαγραμμένο', + 'deletes' => 'Διαγράφει', + 'delete_disabled' => 'Απενεργοποίηση Διαγραφής', + 'delete_last' => 'Διαγραφή τελευταίου', + 'delete_report' => 'Διαγραφή της αναφοράς', + 'delete_selected' => 'Διαγραφή επιλεγμένου', + 'delete_spam' => 'Διαγραφή Spam', + 'demo' => 'Demo', + 'description' => 'Περιγραφή', + 'descending' => 'Φθίνουσα', + 'detailed_location_example' => 'Παράδειγμα: Γωνιά , Πατησίων και Δεριγνί, Αθήνα', + 'details' => 'Λεπτομέρειες', + 'direct_report' => 'Άμεση Αναφορά', + 'disabled' => 'Απενεργοποιημένο', + 'disapprove' => 'Ανάκληση έγκρισης', + 'download_reports' => 'Κατέβασμα Αναφορών', + 'download' => 'Κατέβασμα', + 'edit' => 'Επεξεργασία ', + 'edit_form_fields' => 'Επεξεργασία πεδίων φόρμας', + 'edit_report' => 'Επεξεργασία Αναφοράς', + 'email' => 'Διεύθυνση ηλεκτρονικού ταχυδρομείου', + 'email_address' => 'Διεύθυνση ηλεκτρονικού ταχυδρομείου', + 'email_configuration' => 'Ρυθμίσεις διακομιστή αλληλογραφίας', + 'email_server_host' => 'Mail Server Host', + 'email_server_password' => 'Mail Server Password', + 'email_server_port' => 'Mail Server Port', + 'email_server_ssl_support' => 'Υποστήριξη SSL στον Mail Server ', + 'email_server_type' => 'Τύπος Mail Server ', + 'email_server_username' => 'Mail Server Username', + 'email_settings_comment_0' => 'έτσι οι ρυθμίσεις σας πρέπει να σχετίζονται με αυτήν την ηλεκτρονική διεύθυνση', + 'email_settings_comment_00' => 'Για να λαμβάνετε αναφορές μέσω ηλεκτρονικού ταχυδρομείου, παρακαλώ εισάγετε τις ρυθμίσεις του λογαριασμού e-mail σας παρακάτω. Σημειώστε ότι τα μηνύματα θα λαμβάνονται στο', + 'email_settings_comment_1' => 'Ορισμένοι διακομιστές απαιτούν μια πλήρη διεύθυνση email', + 'email_settings_comment_2' => 'Password του λογαριασμού e-mail', + 'email_settings_comment_3' => 'Συχνές θύρες: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Παραδείγματα: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Παραδείγματα: pop3, imap', + 'email_settings_comment_6' => 'Ενεργοποίηση ή απενεργοποίηση συνδέσεων SSL', + 'empty' => '---KENO---', + 'end_point' => 'Προς', + 'error' => 'Σφάλμα', + 'example' => 'Παράδειγμα', + 'example_country' => 'Κένια', + 'external_apps' => 'Εξωτερικές Εφαρμογές', + 'external_video_link' => 'Εξωτερικό Link Βίντεο', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Υποβάλετε σχόλια', + 'feedback_reports' => 'Παρακαλούμε πείτε μας την γνώμη σας για την εμπειρία σας στέλνοντας ένα email στο', + 'feeds' => 'Feeds', + 'feed_has_been' => 'το feed έχει', + 'feed_items' => 'Feed αντικείμενα', + 'feed_name' => 'Όνομα feed', + 'feed_url' => 'Feed URL', + 'field_unused' => 'Αχρησιμοποίητο πεδίο', + 'file' => 'Αρχείο', + 'file_over_max_allowed' => 'Το αρχείο σας υπερβαίνει το μέγιστο επιτρεπόμενο μέγεθος αρχείου.', + 'filters' => 'Φίλτρα', + 'filter_reports' => 'Φιλτράρισμα Αναφορών', + 'filter_reports_by' => 'Φιλτράρισμα Αναφορών με', + 'filter_reports_contain' => 'Φιλτράρισμα Αναφορών που περιέχουν', + 'find' => 'Εύρεση', + 'find_location' => 'Εύρεση Τοποθεσίας', + 'first_name' => 'Το όνομά σας', + 'force_run_scheduler' => 'Force Run Scheduler', + 'forgot_password' => 'Ξεχάσατε τον password σας;', + 'form' => 'Φόρμα', + 'forms' => 'Φόρμες', + 'form_description' => 'Περιγραφή φόρμας', + 'form_edit' => 'Επεξεργασία αυτής της φόρμας', + 'form_has_been' => 'Η φόρμα έχει', + 'form_title' => 'Τίτλος φόρμας', + 'from' => 'Από', + 'full_name' => 'Πλήρες όνομα', + 'geolocation_available' => 'Γεωαναφορά Διαθέσιμη', + 'geometry_color' => 'Χρώμα', + 'geometry_comments' => 'Σχόλια', + 'geometry_label' => 'Ετικέτα', + 'geometry_strokewidth' => 'Πλάτος γραφής', + 'go' => 'Έναρξη', + 'hashtag' => 'Hashtag', + 'has_been' => 'Έχει', + 'help' => 'Πώς μπορείτε να βοηθήσετε', + 'hidden' => 'Κρυφό', + 'hide' => 'Απόκρυψη', + 'hide_this_message' => 'Απόκρυψη αυτού του μηνύματος', + 'home' => 'Αρχική', + 'how_to_report' => 'Πώς αναφέρω', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Χρησιμοποιείται στην ιστοσελίδα για την αναγνώριση σας από άλλους χρήστες .', + 'image' => 'Εικόνα', + 'images' => 'Εικόνες', + 'image_icon' => 'Εικόνα/Εικονίδιο', + 'inactive' => 'Ανενεργό', + 'inbox' => 'Εισερχόμενα', + 'incident' => 'Περιστατικό', + 'incidents_nearby' => 'Περιστατικά κοντά', + 'incident_location' => 'Τοποθεσία Περιστατικού', + 'include' => 'Συμπερίληψη', + 'include_categories' => 'Συμπεριλάβετε Κατηγορίες', + 'include_custom_fields' => 'Συμπεριλάβετε προσαρμοζόμενα πεδία', + 'include_description' => 'Συμπεριλάβετε περιγραφή', + 'include_detail' => 'Συμπεριλάβετε όσο το δυνατόν περισσότερες λεπτομέρειες', + 'include_latitude' => 'Συμπεριλάβετε γεωγραφικό πλάτος', + 'include_location_information' => 'Συμπεριλάβετε πληροφορίες θέσης', + 'include_longitude' => 'Συμπεριλάβετε γεωγραφικό μήκος', + 'include_personal_info' => 'Περιέλαβε προσωπικές πληροφορίες', + 'incoming_media' => 'Εισερχόμενα πολυμέσα', + 'information_evaluation' => 'Αξιολόγηση πληροφορίας ', + 'input_location' => 'Εισάγετε την ακριβή τοποθεσία σας', + 'insufficient_role' => 'Ο λογαριασμός σας δεν έχει τα κατάλληλη δικαιώματά για να συνδεθείτε πλήρως. Παρακαλούμε επικοινωνήστε με τον διαχειριστή.', + 'in_response_to' => 'Σε απάντηση του', + 'ip_address' => 'Διεύθυνση IP', + 'is_this_your_profile' => 'Είναι αυτό το προφίλ σας;', + 'item' => 'Αντικείμενο', + 'items' => 'Αντικείμενα', + 'item_details' => 'item_details', + 'item_title' => 'Τίτλος Αντικειμένου', + 'key' => 'Κλειδί', + 'keywords' => 'Λέξεις κλειδιά', + 'kml_kmz_file' => 'KMZ / KML αρχείο', + 'kml_kmz_upload' => 'Ανέβασμα αρχείο KMZ / KML ', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Γλώσσα', + 'last' => 'Τελευταίο', + 'last_month' => 'Τελευταίος μήνας', + 'last_name' => 'Επώνυμο', + 'last_year' => 'Πέρυσι', + 'latitude' => 'γεωγραφικό πλάτος', + 'layers' => 'Στρώματα', + 'layers_filter' => 'Άλλα Στρώματα', + 'layer_has_been' => 'Το στρώμα έχει', + 'layer_name' => 'Όνομα Στρώματος', + 'layer_url' => 'URL Στρώματος', + 'leave_a_comment' => 'Αφήστε ένα σχόλιο', + 'less_information' => 'Λιγότερες Πληροφορίες', + 'level' => 'Επίπεδο', + 'level_has_been' => 'Αυτό το επίπεδο έχει', + 'level_name' => 'Όνομα επιπέδου', + 'limited' => 'Περιορισμένο', + 'link' => 'Σύνδεσμος', + 'list' => 'Κατάλογος', + 'loading_reports' => 'Φόρτωση Αναφορών', + 'location' => 'Τοποθεσία', + 'locations' => 'Τοποθεσίες', + 'location_example' => 'Πόλη, Πολιτεία και / ή Χώρα', + 'login' => 'Σύνδεση', + 'login_account_creation_successful' => 'Ο λογαριασμός δημιουργήθηκε με επιτυχία. Μπορείτε να συνδεθείτε τώρα.', + 'login_confirmation_sent' => 'Μια επιβεβαίωση έχει σταλεί στη διεύθυνση ηλεκτρονικού ταχυδρομείου σας.', + 'login_approval_required' => 'Ο λογαριασμός σας δημιουργήθηκε. Ο λογαριασμός σας πρέπει να εγκριθεί πρώτα από έναν διαχειριστή πριν μπορέσετε να συνδεθείτε.', + 'login_email_doesnt_exist' => 'Η διεύθυνση e-mail δεν υπάρχει. Δοκιμάστε μια διαφορετική διεύθυνση ή δημιουργήσετε λογαριασμό', + 'login_select_openid' => 'Παρακαλώ κάντε κλικ τον πάροχο του λογαριασμού σας', + 'login_with' => 'Σύνδεση με', + 'login_userpass' => 'e-mail και κωδικός πρόσβασης', + 'login_openid' => 'OpenID', + 'login_signup' => 'Εγγραφή', + 'login_signup_click' => 'Δημιουργία Λογαριασμού', + 'login_signup_confirmation_message' => 'Σας ευχαριστούμε για την εγγραφή στο %1$s. Για να επιβεβαιώσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας, παρακαλούμε επισκεφθείτε την παρακάτω διεύθυνση URL: %2$s', + 'login_signup_confirmation_subject' => 'Επιβεβαίωση Εγγραφής', + 'login_signup_admin_approval_message' => 'Ένας νέος χρήστης έχει γραφτεί στο %1$s. Για να εγκρίνετε την αίτηση εγγραφής του παρακαλούμε ακολουθήστε τον παρακάτω σύνδεσμο: %2$s', + 'login_signup_admin_approval_subject' => 'Έγκριση Νέου Χρήστη', + 'login_signup_approval_message' => 'Ο λογαριασμός χρήστη σας έχει εγκριθεί για %1$s. Για να συνδεθείτε ακολουθήστε τον παρακάτω σύνδεσμο: %2$s', + 'login_signup_approval_subject' => 'Ο λογαριασμός χρήστη εγκρίθηκε', + 'login_signup_text' => 'Δημιουργήστε ένα λογαριασμό για να αποκτήστε περισσότερες δυνατότητες στο σύστημα.', + 'longitude' => 'γεωγραφικό μήκος', + 'map' => 'Χάρτης', + 'mark_read' => 'Σήμανση ως αναγνωσμένο', + 'mark_unread' => 'Σήμανση ως μη αναγνωσμένο', + 'maximum_filesize' => 'Μέγιστο μέγεθος αρχείου', + 'media' => 'Μέσα', + 'media_filter' => 'Φίλτρο μέσων', + 'members' => 'Μέλη', + 'manage_your_account' => 'Διαχείρηση του Λογαριασμού σου', + 'message' => 'Μήνυμα', + 'messages' => 'Μηνύματα', + 'message_details' => 'Λεπτομέρειες μηνύματος', + 'message_non_numeric_source' => 'Μήνυμα από μη νουμερική πηγή', + 'mobile' => 'Κινητό', + 'modify' => 'Τροποποίηση', + 'modify_date' => 'Τροποποίηση Ημερομηνίας', + 'month' => 'Μήνας', + 'more' => 'Περισσότερα', + 'more_information' => 'Περισσότερες Πληροφορίες', + 'multi_country_instance' => 'Αφορά αυτός ο χάρτης πολλές χώρες', + 'must_confirm_email_address' => 'Πρέπει να επιβεβαιώσετε την ηλεκτρονική σας διεύθυνση για να έχετε πρόσβαση σε αυτή τη πλατφόρμα. Αν χάσατε το μήνυμα επιβεβαίωσης μπορείτε να ζητήσετε ένα καινούριο παρακάτω', + 'name' => 'Όνομα', + 'nearby_report' => 'Πλησιέστερη αναφορά', + 'new' => 'Νέο', + 'news' => 'Νέα', + 'news_feeds' => 'Τροφοδότηση Νέων', + 'news_source' => 'Πηγή Νέων', + 'new_category' => 'Νέα Κατηγορία', + 'new_password' => 'Νέος Κωδικός ', + 'new_report' => 'Νέα Αναφορά', + 'next' => 'Επόμενο', + 'no' => 'Όχι', + 'no_checkins' => 'Δεν υπάρχουν checkins', + 'no_data' => 'Δεν υπάρχουν δεδομένα', + 'none' => 'Κανένα', + 'notices' => 'Ειδοποιήσεις', + 'not_approved' => 'Μη Εγκεκριμένο', + 'not_approved_singular' => 'Μη Εγκεκριμένο', + 'not_selected' => '---Μη επιλεγμένο---', + 'not_spam' => 'δεν είναι spam', + 'not_specified' => 'Δεν έχει προσδιοριστεί', + 'no_reports' => 'Δεν υπάρχουν αναφορές', + 'no_results' => 'Δεν υπάρχουν αποτελέσματα', + 'off' => 'Κλειστό', + 'official_news' => 'Νέα από επίσημες & κεντρικές πηγές', + 'on' => 'Ανοιχτό', + 'option' => 'Επιλογή', + 'optional' => 'Προεραιτικό', + 'options' => 'Προερατικά', + 'organization' => 'Οργάνωση', + 'organizations' => 'Οργανώσεις', + 'organization_description' => 'Περιγραφή Οργάνωσης', + 'organization_email' => 'Ηλεκτρονική Διεύθυνση Οργάνωσης', + 'organization_has_been' => 'Η οργάνωση έχει', + 'organization_name' => 'Όνομα Οργάνωσης', + 'organization_phone_1' => 'Τηλέφωνο Οργάνωσης 1', + 'organization_phone_2' => 'Τηλέφωνο Οργάνωσης 2', + 'organization_website' => 'Ιστοσελίδα Οργάνωσης', + 'original' => 'Αρχικός / -ή', + 'original_description' => 'Αρχική περιγραφή', + 'original_title' => 'Πρωτότυπος Τίτλος', + 'other_ushahidi_instances' => 'Άλλοι χάρτες', + 'outbox' => 'Απεσταλμένα', + 'outgoing' => 'Εξερχόμενο', + 'page' => 'Σελίδα', + 'pages' => 'Σελίδες', + 'page_description' => 'Περιγραφή σελίδας', + 'page_has_been' => 'Η σελίδα έχει', + 'page_tab_name' => 'Όνομα page tab', + 'page_title' => 'Όνομα σελίδας', + 'parent_category' => 'Υπο-κατηγορία του', + 'password' => 'Κωδικός Πρόσβασης', + 'password_again' => 'Επιβεβαίωση κωδικού πρόσβασης', + 'password_changed_successfully' => 'Ο κωδικός σας έχει αλλάξει επιτυχώς! Συνδεθείτε.', + 'password_forgot' => 'Ξεχάσατε τον κωδικό σας;', + 'password_reset_confirm' => 'Έλεγξε το email σου για το νέο κωδικό', + 'password_save' => 'Παρέμεινε συνδεδεμένος σε αυτόν τον υπολογιστή.', + 'past_month' => 'Προηγούμενος μήνας', + 'past_year' => 'Προηγούμενος χρόνος', + 'pending' => 'Σε αναμονή', + 'per' => 'ανά', + 'personal_information' => 'Προσωπικές πληροφορίες Προαιρετικά', + 'phone' => 'Τηλέφωνο', + 'photos' => 'Φωτογραφίες', + 'pictures' => 'Εικόνες', + 'pictures_and_videos' => 'Εικόνες και Βίντεο', + 'pinpoint_location' => '* Αναζήτησε την τοποθεσία σου χρησιμοποιώντας όνομα τοποθεσίας ή συντεταγμένες - γεωγραφικό πλάτος / μήκος - (μορφή: 38.19, 85.61), ή κάνε κλικ στο χάρτη για να υποδείξεις τη σωστή τοποθεσία.', + 'play' => 'Αναπαραγωγή', + 'please_note' => 'Σημείωσε', + 'plugins' => 'Plugins', + 'plugin_url' => 'Ιστοσελίδα για plugin', + 'public_profile' => 'Δημόσιο προφίλ', + 'public_profile_url' => 'Διεύθυνση URL του δημόσιου προφίλ', + 'preview' => 'Προεπισκόπηση', + 'preview_item' => 'Προεπισκόπηση', + 'preview_message' => 'Προεπισκόπηση μηνύματος', + 'previous' => 'Προηγούμενο', + 'private' => 'Απόρρητο', + 'profile_color' => 'Χρώμα Προφίλ', + 'profile_saved' => 'Το Προφίλ σας έχει αποθηκευτεί', + 'quick_stats' => 'Γρήγορα στατιστικά', + 'rating' => 'Βαθμολόγηση', + 'read' => 'Ανάγνωση', + 'receive' => 'Λήψη', + 'receive_from' => 'Λήψη από', + 'receive_notifications' => 'Λήψη ειδοποιήσεων', + 'recent_reports' => 'Πρόσφατες αναφορές', + 'refresh_news_feeds' => 'Ανανέωση της ροής ειδήσεων', + 'registered_email' => 'Καταχωρημένο email', + 'remove' => 'Αφαίρεση', + 'reply' => 'Απάντηση', + 'report' => 'Αναφορά', + 'reports_listed' => 'Αναφορές (από το χάρτη σε χρονολογική σειρά)', + 'reporter' => 'Ανταποκριτής', + 'reporters' => 'Ανταποκριτές', + 'reporter_date' => 'Ημερομηνία ανταποκριτή', + 'reporter_email' => 'Email ανταποκριτή', + 'reporter_first_name' => 'Όνομα ανταποκριτή', + 'reporter_has_been' => 'Ο ανταποκριτής έχει ', + 'reporter_ip' => 'IP Address ανταποκριτή', + 'reporter_last_name' => 'Επώνυμο ανταποκριτή', + 'reporter_level' => 'Επίπεδο ανταποκριτή', + 'reporter_levels' => 'Επίπεδα ανταποκριτή', + 'reporter_phone' => 'Τηλέφωνο ανταποκριτή', + 'reports' => 'Αναφορές', + 'reports_btn_browse' => 'Περιήγηση', + 'reports_btn_submit' => 'Υποβολή', + 'reports_by_this_user' => 'Αναφορές από αυτό το χρήστη', + 'reports_categories' => 'Κατηγορίες', + 'reports_count' => '%d Αναφορές', + 'reports_date' => 'Ημερομηνία', + 'reports_description' => 'Περιγραφή', + 'reports_download_csv' => 'Οι αναφορές θα μεταφορτωθούν σε μορφή CSV', + 'reports_email' => 'Ηλεκτρονική διεύθυνση', + 'reports_features' => 'Χαρακτηριστικά', + 'reports_find_location' => 'Εντόπισε μια τοποθεσία κοντά σου', + 'reports_first' => 'Όνομα', + 'reports_last' => 'Επίθετο', + 'reports_location_name' => 'Όνομα τοποθεσίας', + 'reports_news' => 'Σύνδεσμος πηγής είδησης', + 'reports_optional' => 'Προαιρετικές πληροφορίες', + 'reports_photos' => 'Μεταφόρτωση φωτογραφιών', + 'reports_return' => 'Επιστροφή στη σελίδα Αναφορών', + 'reports_select_city' => 'Διάλεξε μια Πόλη', + 'reports_submitted' => 'Η αναφορά σας έχει προωθηθεί στο προσωπικό μας για ανασκόπηση. Θα σας απαντήσουμε σύντομα αν κριθεί απαραίτητο.', + 'reports_submit_new' => 'Υποβολή νέας Αναφοράς', + 'reports_time' => 'Ώρα', + 'reports_timeline' => 'Χρονολόγιο Αναφορών ', + 'reports_title' => 'Τίτλος Αναφοράς', + 'reports_video' => 'Σύνδεσμος video', + 'report_an_incident' => 'Ανάφερε κάποιο περιστατικό', + 'report_details' => 'Λεπτομέρειες Αναφοράς', + 'report_option_1' => 'Στέλνωντας μήνυμα στο', + 'report_option_2' => 'Στέλνωντας ένα ηλεκτρονικό μήνυμα', + 'report_option_3' => 'Στέλνοντας ένα tweet με το hashtag/s', + 'report_option_4' => 'Συμπληρώνοντας αυτή την αίτσησ στην ιστοσελίδα μας.', + 'report_option_external_apps' => 'Χρησιμοποιώντας μια εφαρμογή', + 'report_saved' => 'Η Αναφορά σου έχει αποθηκευτεί', + 'report_title' => 'Τίτλος Αναφοράς', + 'request_information' => 'Αίτημα για περισσότερες πληροφορίες', + 'request_location' => 'Αίτημα τοποθεσίας', + 'required' => 'Προαπαιτούμενο', + 'requirements' => 'Απαιτήσεις', + 'resend_confirm_email' => 'Ξαναστείλε το email επιβεβαίωσης', + 'reset' => 'Επαναφορά', + 'reset_all_filters' => 'Επαναφορά όλων των φίλτρων', + 'reset_password' => 'Επανεκίνηση Κωδικού Πρόσβασης', + 'retrieve_city_names' => 'Ανάκτηση ονομάτων πόλεων για την επιλεγμένη χώρα', + 'riverid_information' => 'Λογαριασμοί που διαχειρίζεται η %s υπηρεσία.', + 'riverid_exists_login' => 'Έχετε ήδη ένα λογαριασμό που διαχειρίζεται η CrowdmapID! Δοκιμάστε να χρησιμοποιήσετε CrowdmapID e-mail και τον κωδικό πρόσβασης σας για να συνδεθείτε.', + 'role' => 'Ρόλος', + 'rss' => 'RSS', + 'save' => 'Αποθήκευση', + 'saved' => 'Αποθηκευμένα', + 'save_add_new' => 'Αποθήκευση & Νέα Προσθήκη', + 'save_close' => 'Αποθήκευση & Κλείσιμο', + 'save_report' => 'Αποθήκευση Αναφοράς', + 'schedule' => 'Χρονοπρογραμματισμός', + 'scheduler' => 'Εργαλείο χρονοπρογραμματισμού', + 'scheduler_day' => 'Ημέρα', + 'scheduler_hour' => 'Ώρα', + 'scheduler_log' => 'Καταγραφή χρονοπρογραμματισμού', + 'scheduler_minute' => 'Λεπτό', + 'scheduler_weekday' => 'Ημέρα της εβδομάδας', + 'search' => 'Αναζήτηση', + 'search_results' => 'Αποτελέσματα Αναζήτησης', + 'security_code' => 'Κωδικός Ασφαλείας', + 'select_all' => 'Επιλογή όλων', + 'select_field_type' => 'Επίλεξε το είδος πεδίου', + 'select_form_type' => 'Επίλεξε το είδος φόρμας', + 'select_in_map' => 'Επιλογή στο χάρτη', + 'select_multiple' => 'Πολλαπλή επιλογή', + 'select_one' => 'Παρακαλώ επιβεβαιώστε ότι έχετε επιλέξει ένα αντικείμενο', + 'select_theme' => 'Διαλέξτε θέμα', + 'send' => 'Αποστολή', + 'send_confirmation' => 'Αποστολή Επιβεβαίωσης', + 'sending_to' => 'Αποστολή στο', + 'sent' => 'Αποστολή', + 'sent_by' => 'Αποστολέας', + 'server_address' => 'Διεύνση του εξυπηρετητή', + 'server_type' => 'Είδος εξυπηρετητή', + 'service' => 'Υπηρεσία', + 'service_username' => 'Όνομα χρήστη υπηρεσίας', + 'service_user_id' => 'ID χρήστη υπηρεσίας', + 'share' => 'Μοιράσου', + 'shared_data' => 'Διαμοιραζόμενα δεδομένα', + 'share_has_been' => 'Το διαμοιραζόμενο αρχείο έχει', + 'sharing' => 'Μοιράζομαι', + 'shorter_map' => 'Κοντύτερος Χάρτης', + 'show' => 'Εμφάνιση', + 'show_all' => 'Εμφάνιση όλων', + 'show_messages' => 'Εμφάνιση μηνύματος', + 'showing_reports_from' => 'Εμφάνιση Αναφορων Από %1$s εως %2$s ', + 'site' => 'Ιστοσελίδα', + 'site_email_address' => 'διεύθυνση email του site', + 'site_url' => 'Διεύθυνση Site', + 'smaller_map' => 'Μικρότερος Χάρτης', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Μας συγχωρείς. δεν έχεις κανένα εύσημο.', + 'source' => 'Πηγή', + 'source_name' => 'Όνομα πηγής', + 'sort' => 'Ταξινόμηση', + 'sort_by' => 'Ταξινόμηση με', + 'source_url' => 'Ηλεκτρονική διεύθυνση πηγής ', + 'spam' => 'Ενοχλητικά μηνύματα', + 'ssl_support' => 'Υποστήριξη SSL?', + 'start_point' => 'Από', + 'step' => 'Βήμα', + 'submit' => 'Υπόβαλλε μια Αναφορά', + 'submitted_by' => 'Υποβλήθηκε από %1$s μέσω %2$s', + 'submit_sms' => 'Υποβολή μέσω SMS', + 'submit_sms1' => 'Στείλε το SMS σου στο', + 'submit_sms2' => 'στο τηλέφωνό σου', + 'success' => 'Επιτυχία!', + 'successfuly_imported' => 'Εισήχθηκε επιτυχώς', + 'surname' => 'Επίθετο', + 'survey' => 'Έρευνα', + 'system' => 'Σύστημα', + 'taller_map' => 'Ψηλότερος Χάρτης', + 'tcp_port' => 'TCP Port', + 'themes' => 'Θέματα', + 'theme_default' => 'Προεπιλεγμένο θέμα Ushahidi', + 'theme_settings' => 'Ρυθμίσεις θέματος', + 'this' => 'Αυτό', + 'this_day' => 'Σήμερα', + 'this_month' => 'Αυτό το μήνα', + 'this_week' => 'Αυτή την εβδομάδα', + 'this_year' => 'Φέτος', + 'this_is_your_profile' => 'Αυτό είναι το προφίλ σου.', + 'time' => 'Χρόνος', + 'title' => 'Τίτλος', + 'to' => 'σε', + 'today' => 'Σήμερα', + 'today_at' => 'Σήμερα στις', + 'token' => 'Ένδειξη', + 'total_reports' => 'Συνολικές αναφορές', + 'translated' => 'Μεταφρασμένο', + 'translated_description' => 'Μεταφρασμένη περιγραφή', + 'translated_title' => 'Μεταφρασμένος Τίτλος', + 'translate_to' => 'Μετάφρασε σε', + 'translation' => 'Μετάφραση', + 'translation_saved' => 'Η μετάφραση έχει αποθηκευτεί', + 'trusted' => 'έμπιστος', + 'type' => 'Τύπος', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Το email δεν μπόρεσε να αποσταλεί', + 'uncategorized_reports' => 'Μη κατηγοριοποιημένες αναφορές', + 'unread' => 'Μη αναγνωσμένο', + 'unverified' => 'Ανεπιβεβαίωτο', + 'update_feeds' => 'Ανέβασμα feeds', + 'upload' => 'Ανέβασμα', + 'upload_guide' => 'Δείτε τους οδηγούς υποβολής αναφοράς', + 'upload_docs_1' => 'Οδηγός Αποστολής με XML ', + 'upload_docs_2' => 'Οδηγός Αποστολής με CSV', + 'upload_file' => 'Αρχείο για ανέβασμα', + 'upload_reports' => 'Ανεβάστε Αναφορές', + 'upload_reports_custom_forms' => 'Οι στήλες Προσαρμοσμένων πεδίων πρέπει να έχουν επισυναπτόμενο το form_id τους σε αυτά. π.χ. Αν το παιδιο ονομαζεται Test, και για την προεπιλεγμένη φόρμα, η ταυτότητα του είναι 1, θα είναι Test-1. Κατά τη διάρκεια της εισαγωγής έθιμο πεδίο φόρμας, βεβαιωθείτε ότι', + 'upload_reports_detail_1' => 'Με την παρακάτω φόρμα, μπορείτε να εισαγάγετε τα περιστατικά στη μηχανή Ushahidi.', + 'upload_reports_detail_2' => 'Οι αναφορές θα πρέπει να υποβάλλονται σε μορφή CSV ή XML.', + 'upload_reports_detail_3' => 'Αν το ID του περιστατικού υπάρχει ήδη στη βάση δεδομένων, η εγγραφή του CSV / XML αρχείο θα αγνοηθεί.', + 'upload_reports_detail_4' => 'Θα πρέπει να περιέχει τουλάχιστον Τίτλο και Ημερομηνία Περιστατικού.', + 'upload_reports_detail_4b' => 'Αν το γεωγραφικό πλάτος και μήκος στήλες δεν παρέχονται, η τοποθεσία θα προσεγγιστεί γεωγραφικά με τη χρήση του Google Geocoder.', + 'upload_reports_detail_4c' => 'Αν γίνεται εισαγωγή επιπλέον πληροφοριών όπως προσωπικές πληροφορίες και / ή προσαρμοσμένα πεδία φόρμας', + 'upload_reports_detail_4d' => 'Τουλάχιστον ένα από τα πεδία προσωπικών πληροφοριών (όνομα, επώνυμο, e-mail) πρέπει να υπάρχει. Άδειες έγγραφες δεν θα εισαχθούν', + 'upload_reports_detail_4e' => 'Οι καταχωρίσεις σας για dropdown fields, radio buttons και checkboxes ταιριάζουν με τις επιλογές που παρέχονται στο προσαρμοσμένο πεδίο στο παράδειγμα σας', + 'upload_reports_detail_4f' => 'Οι επιλογές των checkboxes χωρίζονται από ένα κόμμα, π.χ. αν η επιλογή σας είναι ανάμεσα σε μήλα, σταφύλια και μάνγκο, θα πρέπει να είναι "τα μήλα, τα μάνγκο, τα σταφύλια"', + 'upload_reports_detail_4g' => 'Οι Ημερομηνίες είναι στην ακόλουθη μορφή: ΗΗ/ΜΜ/ΕΕΕΕ π.χ. 3 Οκτωβρίου 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Ένα δείγμα αναφοράς με CSV ', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2", "λεηλασία", "03/18/2009 10:10:00", "Άκρα", "λεηλασία συμβαίνει παντού", "ταραχές, θάνατοι, απώλεια περιουσίας,", ΝΑΙ, ΟΧΙ, "5,55", "-0,2166667 "', + 'upload_successful' => 'Ανέβασμα ολοκληρώθηκε ', + 'upload_video' => 'Ανεβάστε Βίντεο', + 'url' => 'URL', + 'user' => 'χρήστης', + 'username' => 'Όνομα χρήστη', + 'ushahidi_admin' => 'Ushahidi Διαχειριστής', + 'verification' => 'Επιβεβαίωση', + 'verified' => 'Επιβεβαιωμένες ', + 'verified_reports' => 'Επιβεβαιωμένες εκθέσεις', + 'verify' => 'Επιβεβαιώστε', + 'verify_this_report' => 'Επιβεβαιώστε την παρούσα έκθεση', + 'version' => 'Έκδοση', + 'via' => 'μέσω', + 'video' => 'Βίντεο', + 'view' => 'Όψη', + 'views' => 'Όψεις', + 'view_all' => 'Προβολή όλων', + 'view_all_feeds' => 'Προβολή όλων των feeds', + 'view_all_reports' => 'Προβολή όλων των αναφορών', + 'view_items' => 'Προβολή Αντικειμένων', + 'view_more' => 'Προβολή περισσότερων', + 'view_public_profile' => 'Προβολή Δημόσιου Προφίλ', + 'view_report' => 'Προβολή Αναφοράς', + 'view_reports' => 'Προβολή Αναφορών', + 'view_video' => 'Δείτε το βίντεο', + 'visible' => 'Ορατό', + 'waiting_approval' => 'Αναμονή έγκρισης', + 'waiting_verification' => 'Αναμονή επαλήθευσης', + 'wider_map' => 'Ευρύτερος Χάρτης', + 'web_form' => 'Φόρμα web', + 'web' => 'Web', + 'weight' => 'Βάρος', + 'yes' => 'Ναι', + 'yesterday' => 'Χτες', + 'your_dashboard' => 'Το ταμπλό σας', + 'your_file' => 'Το αρχείο σας', + 'zoom_in' => 'Μεγέθυνση', + 'zoom_out' => 'Σμίκρυνση', +); diff --git a/application/i18n/el/upgrade.php b/application/i18n/el/upgrade.php new file mode 100644 index 0000000000..74730cb3cf --- /dev/null +++ b/application/i18n/el/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Μη έγκυρη εισαγωγή δεδομένων. Μπορεί να είναι είτε 0 για ΟΧΙ, είτε 1 για ΝΑΙ.', + ) , + 'upgrade_automatic' => 'Αυτόματη αναβάθμιση', + 'upgrade_available' => 'Διαθέσιμες ενημερώσεις.', + 'upgrade_continue_btn_text' => 'Συνέχεια', + 'upgrade_db_btn_text' => 'Αναβάθμιση', + 'upgrade_db_text_1' => 'Θα αναβαθμήσω την βάση δεδομένων σου από την έκδοση', + 'upgrade_db_text_2' => 'στην πιο πρόσφατη έκδοση', + 'upgrade_db_text_3' => 'Κάνε κλίκ στο κουμπί "Αναβάθμιση" και χαλάρωσε όσο κάνω τα υπόλοιπα.', + 'upgrade_db_text_4' => 'Ακόμα, αν θέλεις αντίγραφο ασφαλείας της βάσης δεδομένων σου, απλά τσέκαρε το παρακάτω κουτάκι και θα το κάνω για σένα στο λεπτό.', + 'upgrade_db_text_5' => 'Να φτιάξω αντίγραφο της βάσης δεδομένων πριν την αναβάθμιση; (Συστήνεται εμφατικά!)', + 'upgrade_db_title' => 'Αναβάθμιση της βάσης δεδομένων του Ushahidi', + 'upgrade_db_info' => 'Το Ushahidi αναβαθμίστηκε! Πριν συνεχίσεις, χρειάζεται να αναβαθμίσεις τη βάση δεδομένων στη νεότερη έκδοση (%s).', + 'upgrade_db_up_to_date' => 'Η βάση δεδομένων σου βρίσκεται στην τελευταία έκδοση.', + 'upgrade_failed' => 'Η αναβάθμιση απέτυχε στην πορεία', + 'upgrade_manual' => 'Χειροκίνητη αναβάθμιση', + 'upgrade_status' => 'Κατάσταση αναβάθμισης Ushahidi', + 'upgrade_text_1' => 'Οι παρακάτω οδηγίες αναλύουν πως να κάνεις χειροκίνητα την αναβάθμιση του Ushahidi σου!', + 'upgrade_text_2' => '
Μεταφόρτωση
', + 'upgrade_text_3' => '
-Μεταφόρτωσε την πιο πρόσφατη έκδοση του Ushahidi από', + 'upgrade_text_4' => 'dt>Δημιουργία αντιγράφου ασφαλείας
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Σε περίπτωση που κάτι πάει στραβά, συστήνεται να κάνεις ένα πλήρες αντίγραφο ασφαλείας του Ushahidi σου.
Αντιγραφή αρχείων
- Εξαγωγή του μεταφορτωμένου συμπιεσμένου αρχείου
- Ανάλογα με το λειτουργικό σύστημα που τρέχει ο εξυπηρετητής web, χρησιμοποίησε το εργαλείο που προτιμάς (πχ Telnet, FPT, SSH) για να μπεις στον εξυπηρετητή και να αντικαταστήσεις το περιεχόμενο όλων των φακέλων με τα νεότερα αρχεία από την πρόσφατη αναβάθμιση.
Αναβάθμιση βάσης δεδομένων
- Πρώτα εντόπισε την έκδοση της βάσης δεδομένων σου κοιτάζοντας στην τιμή της μεταβλητής db_version στον πίνακα με τις ρυθμίσεις ή κοίτα στις πληροφορίες αναβάθμισης του Ushahidi στην κορυφή αυτής της σελίδας
- Εάν είσαι στην έκδοση 25, πρέπει να αναβαθμίσεις από τις 25-26, 26-27, 27-28 κλπ μέχρι το πιο πρόσφατο αρχείο SQL στο φάκελο /sql.
- Με το πρόγραμμα επεξεργασίας βάσης δεδομένων που επιθυμείς αναβάθμισε τη βάση δεδομένων εκτελώντας το κατάλληλο upgradex-x.sql αρχείο.
', + 'upgrade_tables' => 'Βήμα 3: Κοίτα μέσα στο φάκελο sql. Εκτέλεσε χειροκίνητα το αρχείο upgrade-.sql ξεκινώντας από την τρέχουσα έκδοση της βδ της εγκατάστασής σου, μέχρι το τελικό αρχείο αναβάθμισης της sql.', + 'upgrade_text_5' => 'Βήμα 4: Κάνε κλίκ στο κουμπί "Συνέχεια" για να αναβαθμίσεις τους απαραίτητους πίνακες.', + 'upgrade_text_6' => 'Για αυτόματη αναβάθμιση, πάτησε το παρακάτω κουμπί.', + 'upgrade_title_text' => 'Χρησιμοποιείς το Ushahidi v%1$s με έκδοση βάσης δεδομένων %2$d η οποία τρέχει σε %3$s', + 'upgrading' => 'Αναβαθμίζεται', + 'upgrade_ftp_text' => 'Για να συνεχίσεις με την εύκολη αναβάθμιση απαιτούνται οι ακόλουθες πληροφορίες για τον εξυπηρετητή FTP, πάνω στον οποίο φιλοξενείται το site σου.', + 'upgrade_ftp_hostname' => 'Όνομα διακομιστή FTP: Παράδειγμα: "localhost"', + 'upgrade_ftp_password' => 'FTP κωδικός πρόσβασης:', + 'upgrade_ftp_username' => 'FTP όνομα χρήστη:', + 'upgrade_status_info' => 'Έχετε την τελευταία έκδοση του Ushahidi.', + 'upgrade_status_info_2' => 'Δεν χρειάζεσαι αναβάθμιση.', + 'upgrade_db_version' => 'Έκδοση βάσης δεδομένων: %d', + 'upgrade_warning_software_version' => 'Προσοχή: η έκδοση λογισμικού στο version.php και στη βάση δεδομένων δεν είναι συμβατή.', + 'upgrade_warning_db_version' => 'Προσοχή: η έκδοση βάσης δεδομένων στο version.php και στη βάση δεδομένων δεν είναι συμβατή', + 'upgrade_database' => 'Βάση δεδομένων', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Μεταφορτώνεται η τελευταία έκδοση του ushahidi...', + 'log_file' => 'Μεγάλο αρχείο.', + 'successfully_downloaded' => 'Επιτυχής μεταφόρτωση. Αποσυμπιέζω...', + 'failed_downloading' => 'Αποτυχία μεταφόρτωσης.', + 'successfully_unpacked' => 'Επιτυχής αποσυμπίεση των αρχείων. Αντιγράφω τα αρχεία...', + 'failed_unpacking' => 'Απέτυχε η αποσυμπίεση.', + 'successfully_copied' => 'Επιτυχής αντιγραφή αρχείων. Αναβαθμίζω τη βάση δεδομένων...', + 'failed_copying' => 'Αποτυχία αντιγραφής αρχείων.', + 'backup_success' => 'Επιτυχής αναβάθμιση και αντιγραφή ασφαλείας της βάσης δεδομένων.', + 'backup_failed' => 'Αποτυχής αναβάθμιση της βάσης δεδομένων.', + 'dbupgrade_success' => 'Επιτυχής αναβάθμιση της βάσης δεδομένων.', + 'deleting_files' => 'Διαγραφή μεταφορτωμένων αρχείων...', + 'upgrade_success' => 'Η ΑΝΑΒΑΘΜΙΣΗ ΗΤΑΝ ΕΠΙΤΥΧΗΣ. Δες το Αρχείο καταγραφής συμβάντων', +); diff --git a/application/i18n/en_GB/alerts.php b/application/i18n/en_GB/alerts.php new file mode 100644 index 0000000000..cce700f04c --- /dev/null +++ b/application/i18n/en_GB/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'email_check' => 'That Email address has already been registered to receive alerts for that location.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'alert_country' => array( + 'single_country' => 'This deployment spans within one country only. Please make sure the alert location is within the country %s.', + ) , + 'alert_lat' => array( + 'between' => 'You have not selected a valid location on the map.', + 'required' => 'You have not selected a valid location on the map.', + ) , + 'alert_lon' => array( + 'between' => 'You have not selected a valid location on the map.', + 'required' => 'You have not selected a valid location on the map.', + ) , + 'alert_mobile' => array( + 'length' => 'The Mobile Phone field does not seem to contain the right amount of digits.', + 'mobile_check' => 'That Mobile Phone Number has already been registered to receive alerts for that location.', + 'numeric' => 'The Mobile Phone field does not appear to contain a valid phone. Please input numbers only including Country Code.', + 'one_required' => 'You must enter either your Mobile Phone Number or your Email Address.', + 'required' => 'The Mobile Phone field is required if the checkbox is checked.', + ) , + 'alert_radius' => array( + 'in_array' => 'You have not set a valid radius on the map.', + 'required' => 'You have not set your radius on the map.', + ) , + 'alert_recipient' => array( + 'required' => 'You have not set a recipient for alerts.', + ) , + 'alerts_subscribed' => 'You have subscribed for alerts with the following categories', + 'code_already_verified' => 'This code has been verified before!', + 'code_not_found' => 'This verification code was not found! Please confirm that you have the correct URL.', + 'code_verified' => ' Your code was verified correctly. You will now receive alerts about incidents as they happen.', + 'confirm_request' => 'To confirm your alert request, please go to ', + 'create_more_alerts' => 'Return to the Alerts page to create more alerts', + 'email_alert_request_created' => 'Your Email Alert request has been created and verification message has been sent to ', + 'email_code' => 'Please enter the Email confirmation code you received below: ', + 'email_error_head' => 'Your Email Alert Request Has NOT Been Saved!', + 'email_ok_head' => 'Your Email Alert Request Has Been Saved!', + 'error' => 'The system was not able to process your confirmation request!', + 'mobile_alert_request_created' => 'Your Mobile Alert request has been created and verification message has been sent to ', + 'mobile_code' => 'Please enter the SMS confirmation code you received on your mobile phone below: ', + 'mobile_error_head' => 'Your Mobile Alert Request Has NOT Been Saved!', + 'mobile_ok_head' => 'Your Mobile Alert Request Has Been Saved!', + 'settings_error' => 'This deployment is not set up to correctly process alerts', + 'unsubscribe' => 'You have received this email because you subscribed to receive alerts. If you do not wish to receive future alerts go to ', + 'unsubscribed' => 'You will no longer receive alerts from ', + 'unsubscribe_failed' => 'We were not able to unsubscribe you. Please confirm that you have the correct URL.', + 'verification_email_subject' => 'alerts - verification', + 'verify_code' => 'You will not receive alerts on this location until you confirm your request.', +); diff --git a/application/i18n/en_GB/auth.php b/application/i18n/en_GB/auth.php new file mode 100644 index 0000000000..19b3de809c --- /dev/null +++ b/application/i18n/en_GB/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'The email you entered is not a valid email address.', + 'exists' => 'Sorry, a user account already exists for this email address.', + 'length' => 'The email field must be at least 4 and no more 64 characters long.', + 'required' => 'The email field is required.', + ) , + 'name' => array( + 'length' => 'The name field must be at least 3 and no more 100 characters long.', + 'required' => 'The name field is required.', + 'standard_text' => 'The username field contains disallowed characters.', + ) , + 'current_password' => array( + 'length' => 'The password field must be at least 8 characters long.', + 'login error' => 'Please check that you entered the correct email and password.', + 'matches' => 'Please enter the same password in the two password fields.', + 'required' => 'The password field is required.', + 'alpha_dash' => 'The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only', + 'incorrect' => 'The current password you entered for your account is incorrect. Please try again.', + ) , + 'new_password' => array( + 'length' => 'The password field must be at least 8 characters long.', + 'login error' => 'Please check that you entered the correct email and password.', + 'matches' => 'Please enter the same password in the two password fields.', + 'required' => 'The password field is required.', + 'alpha_dash' => 'The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only', + ) , + 'password' => array( + 'default' => 'There has been an error attempting to log you in.', + 'length' => 'The password field must be at least 8 characters long.', + 'login error' => 'Please check that you entered the correct email and password.', + 'matches' => 'Please enter the same password in the two password fields.', + 'required' => 'The password field is required.', + 'riverid server down' => 'The authentication server is down. Please try again later.', + 'riverid' => '%s', + 'alpha_dash' => 'The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only', + ) , + 'password_confirm' => array( + 'matches' => 'The password confirmation field must match the password field.', + ) , + 'resetemail' => array( + 'email' => 'The email you entered is not a valid email address.', + 'invalid' => 'Sorry, we do not have your email address', + 'required' => 'The email field is required.', + ) , + 'role' => array( + 'superadmin_modify' => 'Only a superadmin may modify a superadmin or upgrade a user to admin.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Invalid role format.', + 'length' => 'The role field must be at least 5 and no more than 30 characters long.', + 'required' => 'You must define at least one role.', + 'values' => 'You must select either ADMIN or USER role.', + ) , + 'token' => array( + 'invalid' => 'The forgotten password token is invalid', + 'required' => 'Forgotten password token was required', + ) , + 'username' => array( + 'admin' => 'The admin user role cannot be modified.', + 'alpha_numeric' => 'The public profile URL field must only contain numbers and letters.', + 'exists' => 'Sorry, this public profile URL is already in use.', + 'length' => 'The public profile URL field must be at least 2 and no more 100 characters long.', + 'login error' => 'Please check that you entered the correct public profile URL.', + 'required' => 'The public profile URL field is required.', + 'superadmin' => 'The super admin role cannot be modified.', + 'csrf' => 'Possible CSRF attack. Did you really mean to create/edit a user?', + ) , +); diff --git a/application/i18n/en_GB/bug.php b/application/i18n/en_GB/bug.php new file mode 100644 index 0000000000..df76dfb2c1 --- /dev/null +++ b/application/i18n/en_GB/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'error' => array( + 'required' => 'The error field is required.', + ) , + 'subject' => array( + 'length' => 'The subject field must be at least 3 characters long.', + 'required' => 'The subject field is required.', + ) , + 'yourname' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) , +); diff --git a/application/i18n/en_GB/category.php b/application/i18n/en_GB/category.php new file mode 100644 index 0000000000..313f5d1931 --- /dev/null +++ b/application/i18n/en_GB/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'The colour field must be 6 characters long.', + 'required' => 'The colour field is required.', + ) , + 'category_description' => array( + 'required' => 'The description field is required.', + ) , + 'category_image' => array( + 'size' => 'Please ensure that image uploads sizes are limited to 50KB.', + 'type' => 'The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF.', + 'valid' => 'The image field does not appear to contain a valid file', + ) , + 'category_title' => array( + 'length' => 'The title field must be at least 3 and no more 80 characters long.', + 'required' => 'The title field is required.', + ) , + 'parent_id' => array( + 'already_parent' => 'You cannot subcategorise a category with subcategories.', + 'exists' => 'The parent category does not exist.', + 'numeric' => 'The parent category field must be numeric.', + 'parent_trusted' => 'The parent category cannot be a special category', + 'required' => 'The parent category field is required.', + 'same' => 'The category and the parent category cannot be the same.', + 'special' => 'Special categories cannot be subcategorised.', + ) , +); diff --git a/application/i18n/en_GB/comments.php b/application/i18n/en_GB/comments.php new file mode 100644 index 0000000000..ca666b9f44 --- /dev/null +++ b/application/i18n/en_GB/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + 'valid' => 'You entered the wrong security code.', + ) , + 'comment_author' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) , + 'comment_description' => array( + 'required' => 'The comments field is required.', + ) , + 'comment_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , +); diff --git a/application/i18n/en_GB/contact.php b/application/i18n/en_GB/contact.php new file mode 100644 index 0000000000..751a84257e --- /dev/null +++ b/application/i18n/en_GB/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Please enter a valid security code.', + 'valid' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'contact_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'contact_message' => array( + 'required' => 'The message field is required.', + ) , + 'contact_name' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) , + 'contact_subject' => array( + 'length' => 'The subject field must be at least 3 characters long.', + 'required' => 'The subject field is required.', + ) , + 'email_send' => array( + 'failed' => 'There was an error sending your message.', + ) , +); diff --git a/application/i18n/en_GB/core.php b/application/i18n/en_GB/core.php new file mode 100644 index 0000000000..b5f2e73d58 --- /dev/null +++ b/application/i18n/en_GB/core.php @@ -0,0 +1,35 @@ + 'config file', + 'controller' => 'controller', + 'driver' => 'driver', + 'driver_implements' => 'The %s driver for the %s library must implement the %s interface.', + 'driver_not_found' => 'The %s driver for the %s library could not be found.', + 'errors_disabled' => 'You can go to the home page or try again.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Unable to Complete Request', + 'helper' => 'helper', + 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file.', + 'invalid_method' => 'Invalid method %s called in %s', + 'invalid_property' => 'The %s property does not exist in the %s class.', + 'library' => 'library', + 'log_dir_unwritable' => 'The log directory is not writable: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi was not able to determine a controller to process this request: %s', + 'no_default_route' => 'Please set a default route in config/routes.php', + 'page_not_found' => 'The page you requested, %s, could not be found.', + 'report_bug' => 'Report This Issue To Ushahidi', + 'resource_not_found' => 'The requested %s, %s, could not be found.', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'There can be only one instance of Ushahidi per page request.', + 'uncaught_exception' => 'Uncaught %s: %s in file %s on line %s', + 'view' => 'view', + 'view_set_filename' => 'You must set the the view filename before calling render.', +); diff --git a/application/i18n/en_GB/database.php b/application/i18n/en_GB/database.php new file mode 100644 index 0000000000..fbcd9add38 --- /dev/null +++ b/application/i18n/en_GB/database.php @@ -0,0 +1,10 @@ + 'Database error: %s', + 'table_not_found' => 'Table "%s" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi.', +); diff --git a/application/i18n/en_GB/datetime.php b/application/i18n/en_GB/datetime.php new file mode 100644 index 0000000000..b02eaee7cc --- /dev/null +++ b/application/i18n/en_GB/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Fri', + 'full' => 'Friday', + ) , + 'monday' => array( + 'abbv' => 'Mon', + 'full' => 'Monday', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sat', + 'full' => 'Saturday', + ) , + 'sunday' => array( + 'abbv' => 'Sun', + 'full' => 'Sunday', + ) , + 'thursday' => array( + 'abbv' => 'Thu', + 'full' => 'Thursday', + ) , + 'tuesday' => array( + 'abbv' => 'Tue', + 'full' => 'Tuesday', + ) , + 'wednesday' => array( + 'abbv' => 'Wed', + 'full' => 'Wednesday', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'January', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'February', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'March', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'May', + 'full' => 'May', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'June', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'July', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'August', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'October', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'December', + ) , +); diff --git a/application/i18n/en_GB/feeds.php b/application/i18n/en_GB/feeds.php new file mode 100644 index 0000000000..6a59b65e5f --- /dev/null +++ b/application/i18n/en_GB/feeds.php @@ -0,0 +1,20 @@ + 'DATE', + 'feed_name' => array( + 'length' => 'The feed name field must be at least 3 and no more + 70 characters long.', + 'required' => 'Please enter the name of the feed.', + ) , + 'feed_url' => array( + 'required' => 'Please enter feed\'s URL.', + 'url' => 'Please enter a valid URL, e.g. http://www.ushahidi.com', + ) , + 'source' => 'SOURCE', + 'title' => 'Title', +); diff --git a/application/i18n/en_GB/footer.php b/application/i18n/en_GB/footer.php new file mode 100644 index 0000000000..c50e2bd015 --- /dev/null +++ b/application/i18n/en_GB/footer.php @@ -0,0 +1,9 @@ + 'php5-curl is not installed on this system.', +); diff --git a/application/i18n/en_GB/form.php b/application/i18n/en_GB/form.php new file mode 100644 index 0000000000..54e57a9ce8 --- /dev/null +++ b/application/i18n/en_GB/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'The default value you have provided for the field is invalid.', + 'length' => 'The Field Name must be at least 3 and no more than 200 characters long.', + ) , + 'field_height' => array( + 'between' => 'Please enter a value 0 to 50 for the Field Height.', + ) , + 'field_isdate' => array( + 'between' => 'You have entered an invalid value for Date Field.', + 'required' => 'Please select Yes or No for the Date Field.', + ) , + 'field_name' => array( + 'length' => 'The Field Name must be at least 3 and no more than 100 characters long.', + 'required' => 'Please enter Field Name.', + 'duplicate' => 'The field name you entered already exists on this form. Please enter another one.', + ) , + 'field_required' => array( + 'between' => 'You have entered an invalid value for Field Required.', + 'required' => 'Please select Yes or No for Field Required.', + ) , + 'field_type' => array( + 'numeric' => 'Please select a valid Field Type.', + 'required' => 'Please select a Field Type.', + ) , + 'field_width' => array( + 'between' => 'Please enter a value 0 to 300 for the Field Width.', + ) , + 'form_description' => array( + 'required' => 'Please enter form\'s Description.', + ) , + 'form_id' => array( + 'default' => 'The default form cannot be deleted.', + 'numeric' => 'Please select which form to add this field to.', + 'required' => 'Please select which form to add this field to.', + ) , + 'form_title' => array( + 'length' => 'The form name field must be at least 3 and no more than 100 characters long.', + 'required' => 'Please enter the name of the form.', + 'exists' => 'A form with that title already exists. Please choose another.', + ) , +); diff --git a/application/i18n/en_GB/imap.php b/application/i18n/en_GB/imap.php new file mode 100644 index 0000000000..174d77bc35 --- /dev/null +++ b/application/i18n/en_GB/imap.php @@ -0,0 +1,10 @@ + 'Could not open IMAP stream.', + 'unsupported_service' => 'The email service is not supported.', +); diff --git a/application/i18n/en_GB/installer.php b/application/i18n/en_GB/installer.php new file mode 100644 index 0000000000..33e9174a3e --- /dev/null +++ b/application/i18n/en_GB/installer.php @@ -0,0 +1,84 @@ + 'Base Path', + 'database' => 'Database', + 'database_host' => 'Database Host', + 'database_host_description' => 'If you are running Ushahidi on your own computer, this will more than likely be "localhost". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider.', + 'database_name' => 'Database Name', + 'database_name_description' => 'The name of the database you want to run Ushahidi in', + 'db_information_link' => 'For more information, please check out this article on the wiki that talks about databases in more detail.', + 'default_language' => 'Default Language (Locale)', + 'default_language_description' => 'Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own.', + 'disable' => 'Disable', + 'enable' => 'Enable', + 'error_summary' => 'Listed below is a summary of the errors we encountered.', + 'files_location_text' => 'The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means Ushahidi is installed at the top level directory.', + 'finished' => 'Finished', + 'general' => 'General', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Anyone can get an API key. Get yours now', + 'go_back' => 'Go Back', + 'index' => array( + 'advanced' => 'ADVANCED INSTALLATION', + 'advanced_installation_description' => 'Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details.', + 'basic_installation' => 'BASIC INSTALLATION', + 'basic_installation_description' => 'Simple and fast. All you need is your website\'s root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later.', + 'proceed' => 'Proceed', + 'welcome' => 'Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below.', + ) , + 'installation_successful' => 'Installation Successful', + 'mail_server' => 'Mail Server', + 'mail_server_host' => 'Mail Server Host', + 'mail_server_host_description' => 'Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mail Server Password', + 'mail_server_password_description' => 'The password you normally use to login in to your email', + 'mail_server_port' => 'Mail Server Port', + 'mail_server_port_description' => 'Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Mail Server Type', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?', + 'mail_server_username' => 'Mail Server Username', + 'mail_server_username_description' => 'If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username.', + 'map' => 'Map', + 'map_provider' => 'Map Provider', + 'map_provider_description' => 'Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area.', + 'other_steps' => 'Other steps...', + 'password' => 'Password', + 'password_description' => 'Your database password', + 'previous' => 'Previous', + 'restart_apache' => 'Please restart your Apache Server', + 'select_mail_server_ssl' => 'Enable or disable SSL', + 'select_mail_server_ssl_description' => 'Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security.', + 'setup_sms' => 'Set up your SMS server', + 'site_email' => 'Site Email Address', + 'site_email_alerts' => 'Site Alert Email Address', + 'site_email_alerts_description' => 'When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address.', + 'site_email_description' => 'Site wide email communication will be funnelled through this address', + 'site_name' => 'Site Name', + 'site_name_description' => 'The name of your site', + 'site_tagline' => 'Site Tagline', + 'site_tagline_description' => 'Your tagline', + 'summary' => array( + 'text_1' => 'The files and folders listed below need to be writable by your webserver.', + 'text_2' => '

Here are instructions for changing file permissions:

+ ', + 'text_3' => 'Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions.', + 'text_4' => 'For the installation process, please have the following bits of information on hand.', + ) , + 'table_prefix' => 'Table Prefix', + 'table_prefix_description' => 'Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here.', + 'title' => 'Title', + 'to_login' => 'To login, go to', + 'upload_data' => 'Upload report data', + 'username' => 'Username', + 'username_description' => 'Your database username', + 'use_credentials' => 'and use the following credentials', + 'view_site' => 'View your website', +); diff --git a/application/i18n/en_GB/layer.php b/application/i18n/en_GB/layer.php new file mode 100644 index 0000000000..c879089f25 --- /dev/null +++ b/application/i18n/en_GB/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'The colour field must be 6 characters long.', + 'required' => 'The colour field is required.', + ) , + 'layer_file' => array( + 'type' => 'The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML.', + 'valid' => 'The file field does not appear to contain a valid file', + ) , + 'layer_name' => array( + 'length' => 'The name field must be at least 3 and no more 80 characters long.', + 'required' => 'The name field is required.', + ) , + 'layer_url' => array( + 'atleast' => 'Either a KML URL or File is required.', + 'both' => 'You cannot have both a KML file and a URL.', + 'url' => 'Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/en_GB/libraries.php b/application/i18n/en_GB/libraries.php new file mode 100644 index 0000000000..5b78339c29 --- /dev/null +++ b/application/i18n/en_GB/libraries.php @@ -0,0 +1,27 @@ + 'Could not connect to Akismet server.', + 'akismet_cannot_retrieve' => 'The response from Akismet could not be retrieved.', + 'api_library_not_found' => 'The API library: %s for the %s class could not be found. Please check your API task routing table.', + 'askimet_invalid_apikey' => 'Your Akismet API key is not valid.', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2.', + 'clickatell_message_too_long' => 'Your Unicode message is too long! (Current length=', + 'clickatell_no_destination_address' => 'Please specify a destination address (TO)!', + 'clickatell_no_sender_address' => 'Please specify source address (FROM)!', + 'clickatell_unicode_message_too_long' => 'Your Unicode message is too long! (Current length=', + 'clickatell_unsupported_method' => 'Unsupported sending method!', + 'invalid_api_library' => 'The API library %s is invalid. All API libraries must be subclasses of %s.', + 'upgrade_directory_not_deleted' => 'Directory %s could not be deleted.', + 'upgrade_extracting_error' => 'Error while extracting: %s', + 'upgrade_failed' => 'Downloading the latest Ushahidi failed. HTTP status code', + 'upgrade_file_not_copied' => 'File %s could not be copied.', + 'upgrade_file_not_deleted' => 'File %s could not be deleted.', + 'upgrade_title' => 'Ushahidi upgrade script', + 'upgrade_zip_error' => 'The downloaded Ushahidi zip file %s, could not be written.', + 'riverid_variable_not_available' => '%s is not available in the RiverID class.', +); diff --git a/application/i18n/en_GB/maintenance.php b/application/i18n/en_GB/maintenance.php new file mode 100644 index 0000000000..e063307039 --- /dev/null +++ b/application/i18n/en_GB/maintenance.php @@ -0,0 +1,9 @@ + 'Sorry, our site is currently down for maintenance. Please try again in a few minutes.', +); diff --git a/application/i18n/en_GB/message.php b/application/i18n/en_GB/message.php new file mode 100644 index 0000000000..4262917235 --- /dev/null +++ b/application/i18n/en_GB/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'message' => array( + 'required' => 'The comments field is required.', + ) , + 'name' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) , + 'phone' => array( + 'length' => 'The phone field is not valid.', + ) , +); diff --git a/application/i18n/en_GB/mhi.php b/application/i18n/en_GB/mhi.php new file mode 100644 index 0000000000..c7a358ae1b --- /dev/null +++ b/application/i18n/en_GB/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'contact_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'required' => 'Please provide a valid email address.', + ) , + 'contact_message' => array( + 'required' => 'The message field is required.', + ) , + 'contact_subject' => array( + 'length' => 'The subject field must be at least 3 characters long.', + 'required' => 'The subject field is required.', + ) , +); diff --git a/application/i18n/en_GB/notifications.php b/application/i18n/en_GB/notifications.php new file mode 100644 index 0000000000..e9562d0575 --- /dev/null +++ b/application/i18n/en_GB/notifications.php @@ -0,0 +1,35 @@ + 'This message was sent from your website.', + 'admin_login_url' => 'Administrator Login', + 'admin_new_comment' => array( + 'message' => 'A new comment has been submitted to your website in response to:', + 'subject' => 'New Comment', + ) , + 'admin_new_email' => array( + 'message' => 'A new email message has been submitted to your website.', + 'subject' => 'New Email Message', + ) , + 'admin_new_report' => array( + 'message' => 'A new report has been submitted to your website.', + 'subject' => 'New Report', + ) , + 'admin_new_sms' => array( + 'message' => 'A new text message has been submitted to your website.', + 'subject' => 'New Text Message', + ) , + 'member_new_alert' => array( + 'message' => 'You Have Received a New Alert', + 'subject' => 'New Alert!', + ) , + 'member_new_message' => array( + 'message' => 'You Have Received a Private Message', + 'subject' => 'New Private Message', + 'footer' => 'To Reply Please Go To: ', + ) , +); diff --git a/application/i18n/en_GB/page.php b/application/i18n/en_GB/page.php new file mode 100644 index 0000000000..28b7f4b1f1 --- /dev/null +++ b/application/i18n/en_GB/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Please enter a Page Title.', + 'length' => 'Page Title must be at least 3 and no more than 150 characters long.', + ) , + 'page_tab' => array( + 'required' => 'Please enter a Page Tab Name.', + ) , + 'page_description' => array( + 'required' => 'Please enter a Page Description.', + ) , +); diff --git a/application/i18n/en_GB/permissions.php b/application/i18n/en_GB/permissions.php new file mode 100644 index 0000000000..2dff01c873 --- /dev/null +++ b/application/i18n/en_GB/permissions.php @@ -0,0 +1,27 @@ + 'View Reports', + 'reports_edit' => 'Create/Edit/Delete Reports', + 'reports_approve' => 'Approve Reports', + 'reports_verify' => 'Verify Reports', + 'reports_comments' => 'Manage Report Comments', + 'reports_download' => 'Download Reports', + 'reports_upload' => 'Upload Reports', + 'messages' => 'Manage Messages', + 'messages_reporters' => 'Manage Message Reporters', + 'stats' => 'View Stats', + 'settings' => 'Modify Settings', + 'manage' => 'Manage Panel', + 'users' => 'Manage Users', + 'manage_roles' => 'Manage Roles', + 'checkin' => 'Can checkin', + 'checkin_admin' => 'Manage checkins', + 'admin_ui' => 'Access Admin UI', + 'member_ui' => 'Access Members UI', + 'delete_all_reports' => 'Delete all reports', +); diff --git a/application/i18n/en_GB/private_message.php b/application/i18n/en_GB/private_message.php new file mode 100644 index 0000000000..5365bc57bb --- /dev/null +++ b/application/i18n/en_GB/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Parent ID must be numeric', + ) , + 'private_to' => array( + 'required' => 'The To field is required', + 'exists' => 'The user you are try to send a message to does not exist', + ) , + 'private_subject' => array( + 'required' => 'The subject field is required', + 'length' => 'Subject must be between 3 and 150 characters', + ) , + 'private_message' => array( + 'required' => 'The message field is required', + ) , +); diff --git a/application/i18n/en_GB/report.php b/application/i18n/en_GB/report.php new file mode 100644 index 0000000000..70cc658ea0 --- /dev/null +++ b/application/i18n/en_GB/report.php @@ -0,0 +1,139 @@ + 'error!', + 'country_name' => array( + 'single_country' => 'This deployment spans within one country only. Please make sure the report location is within the country %s.', + ) , + 'custom_field' => array( + 'values' => 'Please enter a valid value for the "%s" field.', + 'numeric' => 'The "%s" field must be numeric.', + 'required' => 'The "%s" field is required.', + 'not_exist' => 'The "%s" field is does not exist.', + 'permission' => 'The "%s" field cannot be edited by your account.', + 'email' => 'The "%s" field must contain a valid email address.', + 'phone' => 'The "%s" field must contain a valid phone number.', + 'date_mmddyyyy' => 'The "%s" field must contain a valid date (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'The "%s" field must contain a valid date (DD/MM/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Please select a valid item to include in the download.', + 'numeric' => 'Please select a valid item to include in the download.', + ) , + 'data_active' => array( + 'between' => 'Please select "Reports Awaiting Approval" or "Approved Reports" or both.', + 'numeric' => 'Please select "Reports Awaiting Approval" or "Approved Reports" or both.', + 'required' => 'Please select "Reports Awaiting Approval" or "Approved Reports" or both.', + ) , + 'data_verified' => array( + 'between' => 'Please select "Reports Awaiting Verification" or "Verified Reports" or both.', + 'numeric' => 'Please select "Reports Awaiting Verification" or "Verified Reports" or both.', + 'required' => 'Please select "Reports Awaiting Verification" or "Verified Reports" or both.', + ) , + 'data_point' => array( + 'between' => 'Please select a valid type of report to download.', + 'numeric' => 'Please select a valid type of report to download.', + 'required' => 'Please select a valid type of report to download.', + ) , + 'format' => array( + 'required' => 'You must select a download format. Select either CSV or XML.', + 'valid' => 'Please select a valid format to download your reports in', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'The FROM date field does not appear to contain a valid date.', + 'range' => 'Please enter a valid FROM date. It cannot be greater than today.', + ) , + 'incident_active' => array( + 'between' => 'Please enter a valid value for Approve This Report', + 'required' => 'Please enter a valid value for Approve This Report', + ) , + 'incident_ampm' => array( + 'validvalues' => 'The am/pm field does not appear to contain a valid value.', + ) , + 'incident_category' => array( + 'numeric' => 'The "Categories" field does not appear to contain a valid category.', + 'required' => 'The "Categories" field is required.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'The date field does not appear to contain a valid date.', + 'date_mmddyyyy' => 'The date field does not appear to contain a valid date.', + 'required' => 'The date field is required.', + ) , + 'incident_description' => array( + 'required' => 'The "Description" field is required.', + ) , + 'incident_hour' => array( + 'between' => 'The hour field does not appear to contain a valid hour.', + 'required' => 'The hour field is required.', + ) , + 'incident_information' => array( + 'alpha' => 'Please enter a valid value for Information Probability.', + 'length' => 'Please enter a valid value for Information Probability.', + ) , + 'incident_minute' => array( + 'between' => 'The minute field does not appear to contain a valid value.', + 'required' => 'The minute field is required.', + ) , + 'incident_news' => array( + 'url' => 'The news source links field does not appear to contain a valid URL.', + ) , + 'incident_photo' => array( + 'size' => 'Please ensure that photo upload sizes are limited to 2MB.', + 'type' => 'The Upload Photos field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF.', + 'valid' => 'The Upload Photos field does not appear to contain a valid file.', + ) , + 'incident_source' => array( + 'alpha' => 'Please enter a valid value for Source Reliability.', + 'length' => 'Please enter a valid value for Source Reliability.', + ) , + 'incident_title' => array( + 'length' => 'The "Report Title" field must be at least 3 and no more 200 characters long.', + 'required' => 'The "Report Title" field is required.', + 'csrf' => 'Possible CSRF attack. Did you really mean to create/edit a report?', + ) , + 'incident_verified' => array( + 'between' => 'Please enter a valid value for Verify This Report.', + 'required' => 'Please enter a valid value for Verify This Report.', + ) , + 'incident_video' => array( + 'url' => 'The video links field does not appear to contain a valid URL.', + ) , + 'latitude' => array( + 'between' => 'The latitude field does not appear to contain a valid latitude.', + 'required' => 'The latitude field is required. Please click on the map to pinpoint a location.', + ) , + 'locale' => array( + 'alpha_dash' => 'The locale field has an incorrect value. ', + 'exists' => 'This report already has a translation for this language.', + 'length' => 'The locale field has an incorrect value. ', + 'locale' => 'The Original Report and the Translation have the same locale (language).', + 'required' => 'The locale is required.', + ) , + 'location_name' => array( + 'length' => 'The "Location Name" field must be at least 3 and no more 200 characters long.', + 'required' => 'The "Location Name" field is required.', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude.', + 'required' => 'The longitude field is required. Please click on the map to pinpoint a location.', + ) , + 'person_email' => array( + 'email' => 'The email field does not appear to contain a valid email address.', + 'length' => 'The email field must be at least 4 and no more 64 characters long.', + ) , + 'person_first' => array( + 'length' => 'The first name field must be at least 3 and no more 100 characters long.', + ) , + 'person_last' => array( + 'length' => 'The last name field must be at least 2 and no more 100 characters long.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'The TO date field does not appear to contain a valid date.', + 'range' => 'Please enter a valid TO date. It cannot be greater than today.', + 'range_greater' => 'Your FROM date cannot be greater than your TO date.', + ) , +); diff --git a/application/i18n/en_GB/reporters.php b/application/i18n/en_GB/reporters.php new file mode 100644 index 0000000000..f9467fed77 --- /dev/null +++ b/application/i18n/en_GB/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'The latitude field does not appear to contain a valid latitude.', + 'required' => 'The latitude field is required. Please click on the map to pinpoint a location.', + ) , + 'level_id' => array( + 'numeric' => 'The Reporter Level field does not appear to contain a valid Level.', + 'required' => 'The Reporter Level field does not appear to contain a valid Level.', + ) , + 'location_name' => array( + 'length' => 'The location name field must be at least 3 and no more 200 characters long.', + 'required' => 'The location name field is required.', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude.', + 'required' => 'The longitude field is required. Please click on the map to pinpoint a location.', + ) , + 'reporter_id' => array( + 'numeric' => 'Invalid Reporter', + 'required' => 'Invalid Reporter', + ) , +); diff --git a/application/i18n/en_GB/reports.php b/application/i18n/en_GB/reports.php new file mode 100644 index 0000000000..188379fbc7 --- /dev/null +++ b/application/i18n/en_GB/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Please verify that you have checked an item', + 'numeric' => 'Please verify that you have checked an item', + 'categories_required' => 'Reports must be categorised before they can be approved', + ) , + 'action' => array( + 'permission' => 'You do not have permission to perform this action', + ) , + 'uploadfile' => array( + 'required' => 'You must select a file to upload', + 'type' => 'The upload file must either be of .csv or .xml format', + 'valid' => 'The file upload field does not seem to contain a valid file', + ) , +); diff --git a/application/i18n/en_GB/roles.php b/application/i18n/en_GB/roles.php new file mode 100644 index 0000000000..0c0b04b3b6 --- /dev/null +++ b/application/i18n/en_GB/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'The Description field must be at least 3 and no more 100 characters long.', + 'required' => 'The Description field is required.', + ) , + 'name' => array( + 'alpha_numeric' => 'The Name field must only contain letters or numbers.', + 'length' => 'The Name field must be at least 2 and no more than 30 characters long.', + 'nomodify' => 'SuperAdmin Role Cannot Be Modified.', + 'required' => 'The Name field is required.', + ) , + 'access_level' => array( + 'numeric' => 'Access Level field must be a number between 0 - 100.', + 'required' => 'Access Level field must be a number between 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Permissions field must be a number between 0 - 100.', + ) , +); diff --git a/application/i18n/en_GB/settings.php b/application/i18n/en_GB/settings.php new file mode 100644 index 0000000000..0e696b1dbf --- /dev/null +++ b/application/i18n/en_GB/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'The allow comments field does not appear to contain a valid value.', + 'required' => 'The allow comments field is required.', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value.', + 'required' => 'The include feed field is required.', + ) , + 'allow_feed_category' => array( + 'between' => 'The include feed category field does not appear to contain a valid value.', + 'required' => 'The include feed category field is required.', + ) , + 'allow_alerts' => array( + 'between' => 'The allow alerts field does not appear to contain a valid value.', + 'required' => 'The allow alerts field is required.', + ) , + 'allow_reports' => array( + 'between' => 'The allow reports field does not appear to contain a valid value.', + 'required' => 'The allow reports field is required.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value.', + 'required' => 'The stat sharing field is required.', + ) , + 'api' => array( + 'default_record_limit' => 'Default number of records to be fetched per API request', + 'maximum_record_limit' => 'Maximum number of records to be fetched per API request', + 'maximum_requests_per_ip_address' => 'Maximum number of API requests per IP address', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value.', + 'length' => 'The Akismet field does not appear to contain a valid value.', + ) , + 'banner_image' => array( + 'type' => 'The Site Banner field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF.', + 'size' => 'Please ensure that "Banner Image" size is less than 250 KB.', + 'valid' => 'The "Banner Image" field does not appear to contain a valid file.', + ) , + 'cache_pages' => array( + 'between' => 'The cache pages field is required.', + 'required' => 'The cache pages field does not appear to contain a valid value.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'The cache pages lifetime field does not appear to contain a valid value.', + 'required' => 'The cache pages lifetime field is required.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs (without "index.php" in the URL).', + 'enable_clean_url' => 'Enable Clean URLs', + 'title' => 'Clean URLs', + ) , + 'clickatell_api' => array( + 'length' => 'The Clickatell API number field must be no more 20 characters long.', + 'required' => 'The Clickatell API number field is required.', + ) , + 'clickatell_password' => array( + 'length' => 'The Clickatell Password field must be at least 5 and no more 50 characters long.', + 'required' => 'The Clickatell Password field is required.', + ) , + 'clickatell_username' => array( + 'length' => 'The Clickatell Username field must be no more 50 characters long.', + 'required' => 'The Clickatell Username field is required.', + ) , + 'configure_map' => 'Configure Map', + 'default_location' => 'Default Location', + 'default_map_all' => array( + 'alpha_numeric' => 'The colour feed field does not appear to contain a valid value.', + 'length' => 'The colour field must be no more 6 characters long.', + 'required' => 'The colour field is required.', + ) , + 'default_map_view' => 'Default Map View', + 'default_zoom_level' => 'Default Zoom Level', + 'download_city_list' => 'Retrieve Cities From Geonames', + 'email_host' => array( + 'length' => 'The Mail server port field is too long.', + 'numeric' => 'The Mail server port field should contain numbers only.', + ) , + 'email_password' => array( + 'length' => 'The Mail Server Password field must be at least 5 and no more 50 characters long.', + 'required' => 'The Mail Server Password field is required.', + ) , + 'email_port' => array( + 'length' => 'The Mail server port field is too long.', + 'numeric' => 'The Mail server port field should contain numbers only.', + ) , + 'email_servertype' => array( + 'length' => 'The Mail server port field is too long.', + 'required' => 'The Mail Server Type field is required.', + ) , + 'email_username' => array( + 'length' => 'The Mail Server Username field must be no more 50 characters long.', + 'required' => 'The Mail Server Username field is required.', + ) , + 'facebook' => array( + 'title' => 'Facebook Setup Options', + 'description' => 'To get the information below you will need to create a new Facebook application at', + 'description_2' => 'These settings allow users to login via Facebook, this does not create a facebook application for your deployment', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'The Google Analytics field must contain a valid Web Property ID in the format UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Enable HTTPS', + 'https_disabled' => 'This option makes Ushahidi be accessed in unsecure mode; without "https://" in the URL prefix', + 'https_enabled' => 'This option makes Ushahidi be accessed in secure mode; with https in the URL prefix', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value.', + 'required' => 'The items per page (Frontend) field is required.', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value.', + 'required' => 'The items per page (Admin) field is required.', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key.', + 'zoom' => 'Zoom Level', + ) , + 'map_provider' => array( + 'choose' => 'Select a Map Provider', + 'enter_api' => 'Enter the new API Key', + 'get_api' => 'Get an API Key', + 'info' => 'Setting up your map provider is a straight-forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key.', + 'name' => 'Map provider', + ) , + 'map_timeline' => 'Map Timeline', + 'map_settings' => 'Map Settings', + 'multiple_countries' => 'Does this Ushahidi Deployment span multiple countries?', + 'select_default_location' => 'Please select a default country', + 'set_location' => 'Click and drag the map to set your exact location', + 'site' => array( + 'allow_clustering' => 'Cluster Reports on Map', + 'allow_comments' => 'Allow Users to Submit Comments to Reports', + 'allow_feed' => 'Include RSS News Feed on Website', + 'allow_feed_category' => 'Create New Category from Feeds', + 'allow_alerts' => 'Allow Users To Subscribe For Alerts', + 'allow_reports' => 'Allow Users To Submit Reports', + 'api_akismet' => 'Akismet Key', + 'banner' => 'Site Banner', + 'blocks_per_row' => 'Blocks Per Row', + 'cache_pages' => 'Cache Pages', + 'cache_pages_lifetime' => 'Cache Pages Lifetime', + 'checkins' => 'Enable Checkins', + 'copyright_statement' => 'Site Copyright Statement', + 'default_category_colors' => 'Default Colour For All Categories', + 'default_category_icons' => 'Default Icon For All Categories', + 'delete_banner_image' => 'Delete Banner Image', + 'delete_default_map_all_icon' => 'Delete Default Icon', + 'display_contact_page' => 'Display Contact Page', + 'display_howtohelp_page' => 'Display "How to Help" Page', + 'email_alerts' => 'Alerts Email Address', + 'email_notice' => 'In order to receive reports by email, please configure your email account settings.', + 'email_site' => 'Site Email Address', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Items Per Page - Front End', + 'items_per_page_admin' => 'Items Per Page - Admin', + 'kismet_notice' => 'Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account', + 'laconica_configuration' => 'Laconica Credentials', + 'laconica_site' => 'Laconica Site ', + 'language' => 'Site Language', + 'manually_approve_users' => 'Manually Approve Users', + 'message' => 'Site Message', + 'name' => 'Site Name', + 'private_deployment' => 'Private Deployment', + 'require_email_confirmation' => 'Require User Email Confirmation', + 'submit_report_message' => 'Submit Report Message', + 'share_site_stats' => 'Enable Statistics (Stored on Ushahidi\'s server)', + 'tagline' => 'Site Tagline', + 'timezone' => 'Timezone', + 'title' => 'Site Settings', + 'twitter_configuration' => 'Twitter Search Terms', + 'twitter_hashtags' => 'Hashtags - Separate with commas ', + 'feed_geolocation_user' => 'Feeds geolocation - Geonames username', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address.', + 'length' => 'The site email field must be at least 4 and no more 100 characters long.', + ) , + 'site_name' => array( + 'length' => 'The site name field must be at least 3 and no more 50 characters long.', + 'required' => 'The site name field is required.', + ) , + 'site_tagline' => array( + 'length' => 'The tagline field must be at least 3 and no more 100 characters long.', + 'required' => 'The tagline field is required.', + ) , + 'sms' => array( + 'clickatell_api' => 'Your Clickatell API Number', + 'clickatell_check_balance' => 'Check Your Clickatell Credit Balance', + 'clickatell_load_balance' => 'Load Credit Balance', + 'clickatell_password' => 'Your Clickatell Password', + 'clickatell_text_1' => 'Sign up for Clickatells service by clicking here', + 'clickatell_text_2' => 'Enter your Clickatell access information below', + 'clickatell_username' => 'Your Clickatell User Name', + 'flsms_description' => 'FrontlineSMS is free and open source software that enables users to send and receive text messages with large groups of people through mobile phones. Click on the box below to download the latest version from FrontlineSMS.com.', + 'flsms_download' => 'Download and install FrontlineSMS', + 'flsms_instructions' => 'Detailed instructions on how to send SMS from your FronlineSMS installation are available here. The URL and API Key below are required to set up the sync with FrontlineSMS.', + 'flsms_link' => 'Copy and paste this into the FrontlineSMS "Address" field', + 'flsms_key' => 'Copy and paste this into the FrontlineSMS "Ushahidi API Key" field', + 'flsms_synchronize' => 'Connecting FrontlineSMS to this Ushahidi deployment', + 'flsms_text_1' => 'Enter phone number(s) connected to Frontline SMS in the field(s) below', + 'flsms_text_2' => 'Enter the number without any + or dashes below', + 'option_1' => 'Option 1: Use Frontline SMS', + 'option_2' => 'Option 2: Use a Global SMS Gateway', + 'title' => 'SMS Setup Options', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value.', + 'numeric' => 'The phone 1 field should contain numbers only.', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long.', + 'numeric' => 'The phone 2 field should contain numbers only.', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long.', + 'numeric' => 'The phone 3 field should contain numbers only.', + ) , + 'twitter' => array( + 'title' => 'Twitter Setup Options', + 'description' => 'To get the information below, set up your deployment as a new Twitter application at', + 'api_key' => 'Consumer Key', + 'api_key_secret' => 'Consumer secret', + 'token' => 'Access Token', + 'token_secret' => 'Access Token Secret', + ) , + 'test_settings' => 'Test settings', +); diff --git a/application/i18n/en_GB/sharing.php b/application/i18n/en_GB/sharing.php new file mode 100644 index 0000000000..f6a6f85315 --- /dev/null +++ b/application/i18n/en_GB/sharing.php @@ -0,0 +1,25 @@ + 'Ingress date', + 'date_added' => 'Date Added', + 'last_access' => 'Last Access', + 'sharing_color' => array( + 'length' => 'The colour field must be 6 characters long.', + 'required' => 'The colour field is required.', + ) , + 'sharing_name' => array( + 'length' => 'The Sharing name does not appear to be valid.', + 'required' => 'A Sharing name is required.', + ) , + 'sharing_url' => array( + 'exists' => 'The site URL already exists.', + 'length' => 'The site URL does not appear to be valid.', + 'required' => 'The site URL is required.', + 'url' => 'The site URL field does not appear to contain a valid URL.', + ) , +); diff --git a/application/i18n/en_GB/stats.php b/application/i18n/en_GB/stats.php new file mode 100644 index 0000000000..3b96ccf0cf --- /dev/null +++ b/application/i18n/en_GB/stats.php @@ -0,0 +1,42 @@ + 'Approved', + 'categories' => 'Categories', + 'category_impact' => 'Category Impact', + 'category_impact_description' => 'This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details.', + 'choose_date_range' => 'Choose a date range.', + 'countries' => 'Countries', + 'country' => 'Country', + 'country_breakdown' => 'Country Breakdown', + 'description' => 'This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above.', + 'error' => 'Error', + 'glossary' => 'Glossary', + 'hit_summary' => 'Hit Summary', + 'legend' => 'Legend', + 'pageviews' => 'Pageviews', + 'pageviews_description' => 'The total number of pages that visitors have viewed on your site', + 'reports' => 'Reports', + 'reports_categories' => 'Reports Categories', + 'reports_statistics' => 'Reports Statistics', + 'reports_status' => 'Reports Status', + 'report_punchcard' => 'Report Punchcard', + 'report_stats' => 'Report Stats', + 'stats_not_setup' => 'Stats Not Set Up', + 'time_range_1' => '1 Month', + 'time_range_2' => '3 Months', + 'time_range_3' => '6 Months', + 'time_range_all' => 'All', + 'unapproved' => 'Unapproved', + 'unique_visitors' => 'Unique Visitors', + 'unique_visitors_description' => 'The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plug-ins, OS, etc.', + 'unverified' => 'Unverified', + 'verified' => 'Verified', + 'visitor_summary' => 'Visitor Summary', + 'visits' => 'Visits', + 'visits_description' => 'A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview.', +); diff --git a/application/i18n/en_GB/tooltips.php b/application/i18n/en_GB/tooltips.php new file mode 100644 index 0000000000..b4a209a2ea --- /dev/null +++ b/application/i18n/en_GB/tooltips.php @@ -0,0 +1,97 @@ + array( + 'add_to_category' => 'This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2.', + 'approve' => 'Approves a report or not. If approved, it will show up publicly.', + 'assign_badge' => 'You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here.', + 'between_times' => 'This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier.', + 'category' => 'If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instance, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test.', + 'days_of_the_week' => 'If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection.', + 'email_body' => 'Body of the email that will be sent.', + 'email_subject' => 'Subject of email that will be sent.', + 'feed_id' => 'The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "all"', + 'from' => 'Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for Twitter messages from a particular user, enter their username here (not including @)', + 'keywords' => 'You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions "love" or "peace" in their message, you will want to add "love, peace" in the keywords box.', + 'location' => 'You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select "specific area" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes.', + 'on_specific_count' => 'This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it.', + 'report_title' => 'This is the default title to add to the report.', + 'response' => 'If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses.', + 'send_to' => 'If you select "Triggering User", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity.', + 'specific_days' => 'You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates.', + 'trigger' => 'The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one.', + 'user' => 'The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "anyone" since most triggers are set up for all users interacting with the system', + 'verify' => 'Marks a report as verified or not.', + ) , + 'change_picture' => 'Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture.', + 'default_value' => 'Separate each value with a comma, e.g. value1, value2.', + 'radio_choices' => 'Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3', + 'dropdown_choices' => 'Separate each choice item with a comma, e.g. Item 1, Item 2 etc.', + 'private_to' => 'Start typing to list members.', + 'private_subject' => 'Private message subject', + 'private_message' => 'Private message', + 'profile_color' => 'You can select a colour that will show up under your profile picture on your public profile. This colour will also be the colour dot that shows up on the map for your check-ins.', + 'profile_email' => 'Your email address', + 'profile_name' => 'This is one of the ways that you are identified on the website. Keep in mind that this is public!', + 'profile_new_password' => 'If set, this will be your new password. Leave this field blank if you wish to keep your current password.', + 'profile_new_users_password' => 'This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time.', + 'profile_notify' => 'Selecting YES lets you get alerts via email when new reports or comments are posted on your website.', + 'profile_password' => 'Your current password. We require you enter your password to prevent any unauthorised changes to your account.', + 'profile_public' => 'Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you\'ve submitted, your check-ins, badges, etc all on one page.', + 'profile_public_url' => 'This is the address where your public profile can be found.', + 'profile_username' => 'Your username cannot be changed.', + 'settings_access_level' => 'Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default.', + 'settings_alert_email' => 'This is the email address that will be used to send email alerts.', + 'settings_allow_alerts' => 'Allow users to subscribe for alerts via the web.', + 'settings_allow_clustering' => 'This allows bundling of similar reports into a single dot on the map', + 'settings_allow_comments' => 'Allow users to comment on reports on the main site.', + 'settings_allow_feed' => 'This allows RSS News feeds to be displayed on the main site.', + 'settings_allow_feed_category' => 'This allows creating new Category from RSS News feeds.', + 'settings_allow_reports' => 'Allow users to submit information via the web form.', + 'settings_api_default_record_limit' => 'Default number of records to be fetched per API request', + 'settings_api_max_record_limit' => 'Maximum number of records to be fetched per API request', + 'settings_api_max_requests_per_ip' => 'Maximum number of API requests per IP address', + 'settings_banner' => 'The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page.', + 'settings_blocks_per_row' => 'Number of Block columns that will be displayed on each row.', + 'settings_cache_pages' => 'Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime).', + 'settings_cache_pages_lifetime' => 'Set the lifetime of the cache.', + 'settings_checkins' => 'This setting enables check-ins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page.', + 'settings_configure_map' => 'Set the map to cover a specific location.', + 'settings_default_category_colors' => 'Set one colour code for all the categories on the site.', + 'settings_default_category_icons' => 'Set one icon for all the categories on the site.', + 'settings_default_location' => 'This is the country the site is being deployed.', + 'settings_display_contact' => 'Turn the Contact Tab on or off on the main site.', + 'settings_display_howtohelp' => 'Turn the How to Help Tab on or off on the main site.', + 'settings_display_items_per_page' => 'This is the number of reports displayed per page on the main site.', + 'settings_display_items_per_page_admin' => 'This is the number of reports displayed per page on the admin Back End.', + 'settings_flsms_download' => 'This is the hub for incoming messages.', + 'settings_flsms_synchronize' => 'This synchronises the messages in the hub with the Ushahidi platform.', + 'settings_flsms_text_1' => 'Phone numbers through which the text messages are received.', + 'settings_google_analytics' => 'Tracks visitors of your site. Get detailed visitor statistics.', + 'settings_locale' => 'Sets the language that will be used in the site.', + 'settings_manually_approve_users' => 'If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin).', + 'settings_map_provider' => 'This defines which map is to be used on the site.', + 'settings_map_timeline' => 'This shows the timeline based on the date and time reports were submitted', + 'settings_private_deployment' => 'Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment.', + 'settings_require_email_confirmation' => 'Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it.', + 'settings_server_host' => 'This is where the emails reside', + 'settings_server_password' => 'This is the password for the email address that receives reports.', + 'settings_server_port' => 'This is required to accept incoming connections from the email address.', + 'settings_server_ssl_support' => 'This is required to enhance a secure connection.', + 'settings_server_type' => 'This is required to retrieve e-mails from the host server.', + 'settings_server_username' => 'This is the email address that receives reports.', + 'settings_share_site_stats' => 'Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off.', + 'settings_site_copyright_statement' => 'Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!', + 'settings_site_email' => 'This is the email address that will receive email reports and messages from the contact form.', + 'settings_site_message' => 'This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here.', + 'settings_site_name' => 'This is the name of the site that appears at the top of the main site.', + 'settings_site_submit_report_message' => 'This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting.', + 'settings_site_tagline' => 'In a few words, explain what this site is about.', + 'settings_site_timezone' => 'This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilise time and date, as well as the default current time for reports on the front and back end of the site.', + 'settings_twitter_configuration' => 'Set the Twitter hashtag that will be used on a tweet', + 'feed_geolocation_user' => 'If you want to geocode your feed entries, grab a user http://geonames.org, enable the free webservices and enter it here. Leave empty to disable this function.

Beware of the the use limits!', +); diff --git a/application/i18n/en_GB/ui_admin.php b/application/i18n/en_GB/ui_admin.php new file mode 100644 index 0000000000..99b7ef72aa --- /dev/null +++ b/application/i18n/en_GB/ui_admin.php @@ -0,0 +1,329 @@ + 'Access denied. Either your credentials are not valid or your request has been refused.', + 'access_denied_others' => 'Access denied. Your request has been understood, but denied due to access limits like time. Try back later.', + 'access_level' => 'Access Level', + 'actions' => 'Actions', + 'add_to_category' => 'Add to Category', + 'added' => 'added', + 'added_edited' => 'added/edited', + 'addons' => 'Addons', + 'admin_role' => 'Admin', + 'alerts' => 'Alerts', + 'alerts_received' => 'Alerts Received', + 'all' => 'All', + 'am' => 'AM', + 'anonymous' => 'Anonymous', + 'anyone_role' => 'Anyone', + 'anywhere' => 'Anywhere', + 'api_banned' => 'API Banned', + 'api_logs' => 'API Logs', + 'api_settings' => 'API Settings', + 'api_unban' => 'UNBAN', + 'api_unban_all' => 'UNBAN ALL', + 'approved' => 'approved', + 'approve_auto' => 'Auto Approve', + 'approve_manual' => 'Manually Approve', + 'archived' => 'Archived', + 'are_you_sure_you_want_to' => 'Are you sure you want to', + 'are_you_sure_you_want_to_delete_this_item' => 'Are you sure you want to delete this item?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Are you sure you want to delete this photo?', + 'are_you_sure_you_want_to_switch_forms' => 'Are you sure you want to switch forms?', + 'assign' => 'Assign', + 'assignments' => 'Assignments', + 'assign_badge' => 'Assign Badge', + 'author' => 'Author', + 'author_email' => 'Author email', + 'back' => 'Back', + 'banip_action' => 'Ban IP', + 'between_times' => 'Between Times', + 'blocks' => 'Blocks', + 'body' => 'Body', + 'cancel' => 'Cancel', + 'categories' => 'Categories', + 'chart_display_error' => 'Error displaying chart', + 'check_message_valid' => 'Please make sure your message is valid.', + 'check_number' => 'Please make sure the number is valid.', + 'check_sms_settings' => 'Please check your SMS settings!', + 'checkin_details' => 'Checkin Details', + 'checkins' => 'Checkins', + 'cities_loaded' => 'Cities loaded', + 'code' => 'code', + 'code_out_of_sync' => 'Code version out of sync.', + 'color' => 'Colour', + 'comments' => 'Comments', + 'confirmation_code' => 'Your alerts confirmation code is: ', + 'confirm_msg' => 'The User Has Been', + 'count' => 'Count', + 'country_not_found' => 'Country Not Found', + 'created_edited' => 'created/edited', + 'create_report' => 'Create a Report', + 'critical_upgrade' => 'Critical Upgrade', + 'csv' => 'CSV', + 'currently_active' => 'Currently Active', + 'currently_inactive' => 'Currently Inactive', + 'custom_forms_insufficient_permissions' => 'You do not have sufficient permissions to edit the following custom fields.', + 'daily' => 'Daily', + 'dashboard' => 'Dashboard', + 'database' => 'database', + 'date_time' => 'Date & Time', + 'date_added' => 'Date Added', + 'date_modified' => 'Date Modified', + 'days_of_the_week' => 'Days of the week', + 'db_out_of_sync' => 'DB version out of sync.', + 'deleted' => 'deleted', + 'delete_action' => 'Delete', + 'delete_all' => 'Delete all reports', + 'delete_badge' => 'Delete Badge', + 'demo' => 'Demo', + 'description' => 'Description', + 'disabled' => 'Disabled', + 'divider_start_field' => 'Divider Start', + 'divider_end_field' => 'Divider End', + 'divider_class' => 'div class', + 'download_reports' => 'Download Reports', + 'dropdown_choices' => 'Dropdown Choices', + 'edited' => 'EDITED', + 'edited_by' => 'Edited By', + 'edit_action' => 'Edit', + 'edit_log' => 'Edit Log', + 'email' => 'Email', + 'entire_collective' => 'Entire Collective', + 'error_geocoding' => 'Error in geocoding! HTTP error', + 'error_imap' => 'IMAP PHP Library is not installed', + 'error_twitter' => 'Incorrect Credentials', + 'error_msg' => 'Error', + 'error_post_incident' => 'Error, unable to post incident', + 'every_six_hours' => 'Every Six Hours', + 'every_twelve_hours' => 'Every Twelve Hours', + 'experimental' => 'Experimental', + 'faqs' => 'FAQs', + 'feed' => 'feed', + 'feedback' => 'Feedback', + 'feeds' => 'feeds', + 'field_choices' => 'List of Choices', + 'field_default' => 'Default Value', + 'field_datatype' => 'Data Type', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numeric', + 'field_datatype_text' => 'Free Text', + 'field_height' => 'Height (In Rows)', + 'field_hidden' => 'Hidden Field', + 'field_maxlength' => 'Maximum Character Length', + 'field_name' => 'Field Name', + 'field_toggle' => 'Toggle', + 'field_toggle_no' => 'No', + 'field_toggle_yes_close' => 'Yes, Closed by default', + 'field_toggle_yes_open' => 'Yes, Open by default', + 'file_not_found_upload' => 'Could not find uploaded file', + 'file_open_error' => 'Could not open file for reading', + 'form_not_exists' => 'That Form Does Not Exist!', + 'forum' => 'Forum', + 'free_text_field' => 'Text Area Field (Free Text)', + 'date_field' => 'Date Field', + 'radio_field' => 'Radio Buttons Field', + 'checkbox_field' => 'Checkboxes Field', + 'dropdown_field' => 'Dropdown Field', + 'from' => 'From', + 'from_date' => 'From', + 'geonames_timeout' => 'Geonames Timeout Error', + 'get_help' => 'Get Help', + 'get_more_themes' => 'Get more themes', + 'get_more_plugins' => 'Get more plug-ins', + 'header_actions' => 'Actions', + 'header_add_edit' => 'Add/Edit', + 'header_email' => 'Email', + 'header_manage_users' => 'Manage Users', + 'header_role' => 'Role', + 'header_user' => 'User', + 'help' => 'help', + 'hourly' => 'Hourly', + 'incident_feed' => 'Incident feed for', + 'installer_info' => 'The installer folder still exists. Delete the installer folder. It is a potential security vulnerability.', + 'instance' => 'Instance', + 'instances' => 'Instances', + 'instance_details' => 'Instance Details', + 'invalid_parameter' => 'Invalid Parameter', + 'ip_address' => 'IP Address', + 'is_date' => 'Is this a Date Field?', + 'ispublic_visible' => 'Who Can View Answers', + 'ispublic_submit' => 'Who Can Submit Answers', + 'keyword' => 'Keyword', + 'keywords' => 'Keywords', + 'label_email' => 'Email Address:', + 'label_full_name' => 'Full Name:', + 'label_password' => 'Password:', + 'label_role' => 'Role:', + 'label_username' => 'Username:', + 'layers' => 'Layers', + 'login_role' => 'Moderator', + 'logout' => 'Logout', + 'logs' => 'Logs', + 'manage' => 'Manage', + 'manage_roles' => 'Manage Roles & Permissions', + 'manage_users' => 'View Users', + 'manage_users_edit' => 'Add/Edit Users', + 'manage_public_listing' => 'Manage Your Public Listing', + 'mark_as' => 'Mark As', + 'marked_as_not_spam' => 'marked as not spam', + 'marked_as_spam' => 'marked as spam', + 'match_no_documents' => 'did not match any documents', + 'message' => 'Message', + 'messages' => 'Messages', + 'messages_laconica' => 'Laconica Messages', + 'messages_twitter' => 'Twitter Messages', + 'message_sent' => 'Your message has been sent!', + 'mhi' => 'MHI', + 'minute' => 'Minute', + 'minutes' => 'Minutes', + 'missing_parameter' => 'Missing Parameter', + 'moderator' => 'Moderator', + 'modified' => 'modified', + 'modify_timezone' => 'Modify Timezone Setting', + 'move_down_action' => 'move down', + 'move_up_action' => 'move up', + 'multiple_hosted_instances' => 'Multiple Hosted Instances', + 'my_alerts' => 'My Alerts', + 'my_checkins' => 'My Check-ins', + 'my_profile' => 'My Profile', + 'my_reports' => 'My Reports', + 'my_votes' => 'Votes Cast', + 'my_votes_up' => 'Positive', + 'my_votes_down' => 'Negative', + 'name' => 'Name', + 'new_alert' => 'Create New Alert', + 'new_private' => 'Create New Message', + 'new_password' => 'New Password', + 'no' => 'No', + 'none_category_explanation' => 'This is a special category that will not show up on the report submission form for users submitting reports. This is used to hold reports left without categories(uncategorised reports) as a result of category deletion.', + 'notification' => 'Notification', + 'not_case_sensitive' => 'This is not case sensitive.', + 'not_found' => 'Not Found', + 'no_data' => 'No data. There are no results to show.', + 'no_error' => 'No Error', + 'no_result_display_msg' => 'No Results To Display!', + 'of' => 'of', + 'on_specific_count' => 'On Specific Count', + 'openids' => 'OpenID\'s', + 'page' => 'page', + 'pages' => 'pages', + 'page_not_found' => 'Page Not Found', + 'page_not_found_message_with_contact' => 'Sorry, the page you are trying to view is not here.

Did you follow a link from somewhere else on our site?
If you reached this page from another part of our site, please contact us so that we can correct our mistake.

Did you follow a link from another site?
Links from other sites can sometimes be outdated or misspelled. Tell us where you came from and we can try to contact the other site in order to fix the problem.

Did you type the URL?
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalisation, etc.

', + 'page_not_found_message' => 'Sorry, the page you are trying to view is not here.', + 'parameters_used' => 'Parameters Used', + 'password' => 'Password', + 'password_reset' => 'Password Reset', + 'password_reset_message_line_1' => 'Dear', + 'password_reset_message_line_2' => 'We received a request to reset the password for', + 'password_reset_message_line_3' => 'To change your password, please click on the link below (or copy and paste it into your browser).', + 'password_reset_message_line_4' => 'As you requested, your password has now been reset. Your new details are as follows', + 'password_reset_subject' => 'Ushahidi password reset', + 'phone' => 'Phone', + 'please_select' => 'Please Select', + 'pm' => 'PM', + 'post_method_not_used' => 'Data was not sent by post method', + 'preview' => 'Preview', + 'private_message' => 'Message', + 'private_messages' => 'Private Messages', + 'private_sent' => 'Private Message Sent', + 'private_subject' => 'Subject', + 'private_to' => 'To', + 'public_listing' => 'Public Listing', + 'qualifiers' => 'Qualifiers', + 'read' => 'read', + 'relevance' => 'Relevance', + 'report_title' => 'Report Title', + 'report_date' => 'Report Date', + 'reporters' => 'Reporters', + 'reporter_levels' => 'Reporter Levels', + 'reports' => 'Reports', + 'reputation' => 'Reputation Score', + 'required' => 'Required', + 'reset' => 'Reset', + 'response' => 'Response', + 'results' => 'Results', + 'revoke' => 'Revoke', + 'riverid_exists_admin' => 'This email already has an account managed by CrowdmapID. The user will need to use their existing Crowdmap password to login.', + 'save_settings' => 'Save Settings', + 'search' => 'Search', + 'search_reports' => 'Search Reports', + 'searching_for' => 'searching for', + 'security_info_encryption_key' => 'The encryption key is still set to the default value. This is insecure and must be changed.', + 'security_info_https' => 'This site being served over HTTP. This should be set to HTTPS for increased security.', + 'security_info_instructions' => 'Instructions are available on the wiki: ', + 'select_download_format' => 'Select your desired reports download format:-', + 'select_field_type' => '--- Select A Field Type ---', + 'select_item' => 'Please select an item', + 'select_trigger_before_response' => 'You must select a Trigger before you can select a Response.', + 'select_trigger_before_qualifiers' => 'You must select a Trigger before you can define Qualifiers.', + 'sender' => 'Sender', + 'send_to' => 'Send To', + 'sent_from_website' => 'This message was sent from your website at ', + 'server_time' => 'Server Time', + 'settings' => 'Settings', + 'showing_page' => 'Showing page', + 'showing_results' => 'Showing results', + 'shown' => 'shown', + 'special_category' => 'Special Category', + 'special_category_explanation' => 'This is a special category that will not show up on the report submission form for users submitting reports. This is used in conjunction with the "Trusted Reporters" feature.', + 'specific_area' => 'Specific Area', + 'state' => 'State', + 'statistics' => 'Statistics', + 'stats' => 'Stats', + 'stats_collection_error' => 'Stat collection failed! Please try again later.', + 'stats_collection_error_short' => 'Stat Collection Failed!', + 'specific_days' => 'Specific Days', + 'subject' => 'Subject', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Task Performed', + 'text_field' => 'Text Field', + 'theme_name' => 'Name', + 'title' => 'Manage Users', + 'timeout' => 'Timeout Error', + 'to' => 'to', + 'total_records' => 'Total Records', + 'to_date' => 'to', + 'translate_reports' => 'Translate Reports', + 'trigger' => 'Trigger', + 'triggering_user' => 'Triggering User', + 'triggers' => 'Triggers', + 'unapproved' => 'unapproved', + 'unknown' => 'Unknown', + 'unknown_failure' => 'Unknown Failure', + 'unread' => 'unread', + 'unsubscribe_message' => 'You will no longer receive alerts from', + 'update_link' => ' Click here to upgrade now', + 'upgrade_ushahidi' => 'Upgrade Ushahidi', + 'upgrade_ushahidi_status' => 'Upgrade Ushahidi Status', + 'upload_reports' => 'Upload Reports', + 'user' => 'User', + 'users' => 'Users', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verified/Unverified', + 'verify_unverify' => 'Verify/Unverify', + 'version' => 'Version', + 'version_available' => ' is available for upgrade.', + 'video_encoding' => 'Video Encoding', + 'view_private' => 'Private Messages', + 'view_site' => 'View Site', + 'view_report' => 'View Report', + 'welcome' => 'Welcome, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Yes', + 'your_search_for' => 'Your search for', + 'delete_all_instructions' => 'Clicking the button below will delete ALL reports on the database. You should use this with caution as this operation cannot be undone.', + 'delete_all_backup' => 'We recommend you backup your database before proceeding', + 'delete_all_button' => 'I\'m sure I want to delete all %s report(s) from the database.', + 'delete_all_confirm' => 'Are you sure you want to delete all reports?', + 'delete_all_no_reports' => 'There are no reports to be deleted.', + 'user_no_logins' => 'Number of logins', + 'user_last_login' => 'Last login', + 'user_confirmed_account' => 'Confirmed account?', +); diff --git a/application/i18n/en_GB/ui_main.php b/application/i18n/en_GB/ui_main.php new file mode 100644 index 0000000000..6e21d7579e --- /dev/null +++ b/application/i18n/en_GB/ui_main.php @@ -0,0 +1,627 @@ + 'About ', + 'access' => 'Access', + 'access_limits' => 'Access Limits', + 'account_name' => 'Account Name', + 'actions' => 'Actions', + 'action_confirm' => 'This action cannot be undone. Are you sure you want to continue?', + 'activate' => 'Activate', + 'active' => 'Active', + 'add' => 'Add', + 'added_by' => 'Added By', + 'additional_data' => 'Additional Data', + 'additional_reports' => 'Additional Reports', + 'add_edit' => 'Add/Edit', + 'add_field' => 'Add a Field', + 'add_language' => 'Add Language', + 'add_new' => 'Add New', + 'add_new_category' => 'Add New Category', + 'add_translation' => 'Add Translation', + 'admin' => 'Administration', + 'alerts' => 'Get Alerts', + 'alerts_alert_me' => 'Alert me if a report is filed in, or around:', + 'alerts_btn_send' => 'Save My Alert', + 'alerts_email' => 'Email address:', + 'alerts_enter_email' => 'enter email address', + 'alerts_enter_mobile' => 'enter mobile number with country code', + 'alerts_get' => 'Get Alerts', + 'alert_has_been' => 'Alert has been', + 'alerts_mobile_phone' => 'Mobile phone:', + 'alerts_place_spot' => 'Or place a spot on the map below, and we will alert you when a report is submitted within 20 kilometres.', + 'alerts_place_spot2' => 'If you cannot find your location, please click on the map to pinpoint the correct location.', + 'alerts_rss' => 'RSS Feeds (copy the URL below)', + 'alerts_select_city' => 'Select a city', + 'alerts_step1_select_city' => 'Step 1: Select your city or location:', + 'alerts_step2_send_alerts' => 'Step 2: Send alerts to my:', + 'alerts_step3_select_catgories' => 'Step 3 (Optional): Select Categories', + 'alert_confirm_previous' => 'Confirm A Previous Alert Request', + 'alert_saved' => 'Your Alert Has Been Saved!', + 'all' => 'All', + 'allowed' => 'Allowed', + 'allowed_tags' => 'Allowed HTML tags: "%s".', + 'allowed_iframes' => 'Iframes are only allowed from: %s.', + 'all_categories' => 'All Categories', + 'all_time' => 'All Time', + 'and' => 'and', + 'api' => 'API', + 'approve' => 'Approve', + 'approved' => 'Approved', + 'approved_reports' => 'Approved Reports', + 'approve_this_report' => 'Approve this Report', + 'approximate' => 'Approximate', + 'archive' => 'Archive', + 'archived' => 'Archived', + 'ascending' => 'Ascending', + 'at' => 'at', + 'author' => 'Author', + 'auto_checkin' => 'Auto Checkin', + 'Auto' => 'Auto', + 'avg_reports_per_day' => 'Avg Reports Per Day', + 'awaiting_approval' => 'Awaiting Approval', + 'awaiting_verification' => 'Awaiting Verification', + 'badge' => 'Badge', + 'badges' => 'Badges', + 'badge_image' => 'Badge Image', + 'badge_image_upload_your_own' => 'Or you can upload your own badge image instead.', + 'badge_pack' => 'Badge Pack', + 'badge_select' => 'Select a Badge', + 'blog' => 'Blog', + 'browse_profiles' => 'Browse Profiles', + 'cancel' => 'Cancel', + 'categories' => 'Categories', + 'category' => 'Category', + 'category_filter' => 'Category Filter', + 'category_has_been' => 'The category has been ', + 'category_name' => 'Category Name', + 'change_date_range' => 'Change Date Range', + 'change_password' => 'Change Password', + 'change_picture' => 'Change My Picture', + 'choose' => 'Choose a', + 'choose_data_points' => 'Choose data points to download', + 'choose_date_range' => 'Or choose your own date range', + 'choose_field_type' => 'Choose field type', + 'cleanurl' => 'Clean URLs', + 'clear' => 'Clear', + 'clear_map' => 'Clear Map', + 'close' => 'Close', + 'clusters' => 'clusters', + 'color' => 'Colour', + 'comment' => 'Comment', + 'comments' => 'Comments', + 'comment_details' => 'Comment Details', + 'configuration_saved' => 'Your Settings Have Been Saved!', + 'configure' => 'Configure', + 'confirm_email_successful' => 'You have successfully confirmed your email address! Please login below.', + 'confirm_email_successful_and_approval' => 'You have successfully confirmed your email address! An administrator must approve your account before you login', + 'confirm_email_failed' => 'Email confirmation failed! You can request a new email confirmation below.', + 'contact' => 'Contact Us', + 'contact_code' => 'Security Code', + 'contact_email' => 'Your Email Address', + 'contact_message' => 'Message', + 'contact_message_has_send' => 'Your Message Has Been Sent!', + 'contact_name' => 'Your Name', + 'contact_phone' => 'Your Phone Number', + 'contact_send' => 'Send Message', + 'contact_subject' => 'Message Subject', + 'copyright' => 'Copyright ©', + 'create' => 'Create', + 'create_edit' => 'Create/Edit', + 'create_new' => 'Create New', + 'create_new_password' => 'Create New Password', + 'create_report' => 'Create Report', + 'credibility' => 'Credibility', + 'current_password' => 'Current Password', + 'custom_fields' => 'Custom Fields', + 'data' => 'Information', + 'date' => 'Date', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => 'Date & Time', + 'day' => 'day', + 'Daily' => 'Daily', + 'deactivate' => 'Deactivate', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Delete', + 'deleted' => 'Deleted', + 'deletes' => 'Deletes', + 'delete_disabled' => 'Delete Disabled', + 'delete_last' => 'Delete Last', + 'delete_report' => 'Delete this Report', + 'delete_selected' => 'Delete Selected', + 'delete_spam' => 'Delete Spam', + 'demo' => 'Demo', + 'description' => 'Description', + 'descending' => 'Descending', + 'detailed_location_example' => 'Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg', + 'details' => 'Details', + 'direct_report' => 'Direct Report', + 'disabled' => 'Disabled', + 'disapprove' => 'Unapprove', + 'download_reports' => 'Download Reports', + 'download' => 'Download', + 'edit' => 'Edit', + 'edit_form_fields' => 'Edit Form Fields', + 'edit_report' => 'Edit Report', + 'email' => 'Email', + 'email_address' => 'Email Address', + 'email_configuration' => 'Mail Server Settings', + 'email_server_host' => 'Mail Server Host', + 'email_server_password' => 'Mail Server Password', + 'email_server_port' => 'Mail Server Port', + 'email_server_ssl_support' => 'Mail Server SSL support', + 'email_server_type' => 'Mail Server Type', + 'email_server_username' => 'Mail Server Username', + 'email_settings_comment_0' => 'so your settings have to be associated with this email address', + 'email_settings_comment_00' => 'In order to receive reports by email, please input your email account settings below. Please note that emails will be received at your', + 'email_settings_comment_1' => 'Some servers require a complete email address', + 'email_settings_comment_2' => 'Email account password', + 'email_settings_comment_3' => 'Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Examples: pop3, imap', + 'email_settings_comment_6' => 'Enable or disable SSL connections', + 'empty' => '---EMPTY---', + 'end_point' => 'to', + 'error' => 'Error!', + 'example' => 'Example', + 'example_country' => 'Kenya', + 'external_apps' => 'External Apps', + 'external_video_link' => 'External Video Link', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Provide Feedback', + 'feedback_reports' => 'Please give us feedback about your experience by sending an email to ', + 'feeds' => 'Feeds', + 'feed_has_been' => 'The feed has been', + 'feed_items' => 'Feed Items', + 'feed_name' => 'Feed Name', + 'feed_url' => 'Feed URL', + 'field_unused' => 'Unused field', + 'file' => 'File', + 'file_over_max_allowed' => 'Your file is over the maximum allowed filesize.', + 'filters' => 'Filters', + 'filter_reports' => 'Filter Reports', + 'filter_reports_by' => 'Filter Reports By', + 'filter_reports_contain' => 'Filter reports that contain', + 'find' => 'Find', + 'find_location' => 'Find Location', + 'first_name' => 'First Name', + 'force_run_scheduler' => 'Force Run Scheduler', + 'forgot_password' => 'Forgot your password?', + 'form' => 'Form', + 'forms' => 'Forms', + 'form_description' => 'Form Description', + 'form_edit' => 'Edit this Form', + 'form_has_been' => 'The form has been', + 'form_title' => 'Form Title', + 'from' => 'From', + 'full_name' => 'Full Name', + 'geolocation_available' => 'GeoLocation Available', + 'geometry_color' => 'Colour', + 'geometry_comments' => 'Comments', + 'geometry_label' => 'Label', + 'geometry_strokewidth' => 'Stroke Width', + 'go' => 'Go', + 'hashtag' => 'Hashtag', + 'has_been' => 'Has Been', + 'help' => 'How to Help', + 'hidden' => 'Hidden', + 'hide' => 'Hide', + 'hide_this_message' => 'hide this message', + 'home' => 'Home', + 'Hourly' => 'Hourly', + 'how_to_report' => 'How to Report', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Used to identify you on the site to other users.', + 'image' => 'Image', + 'images' => 'Images', + 'image_icon' => 'Image/Icon', + 'inactive' => 'Inactive', + 'inbox' => 'Inbox', + 'incident' => 'Incident', + 'incidents_nearby' => 'Incidents Nearby', + 'incident_location' => 'Incident Location', + 'include' => 'Include', + 'include_categories' => 'Include Categories', + 'include_custom_fields' => 'Include Custom Fields', + 'include_description' => 'Include Description', + 'include_detail' => 'Include as much detail as possible', + 'include_latitude' => 'Include Latitude', + 'include_location_information' => 'Include Location Information', + 'include_longitude' => 'Include Longitude', + 'include_personal_info' => 'Include Personal Information', + 'incoming_media' => 'Incoming Media', + 'information_evaluation' => 'Information Evaluation', + 'input_location' => 'Enter your precise location', + 'insufficient_role' => 'Your account doesn\'t have the proper permission to fully log you in. Please contact the administrator.', + 'interval' => 'Interval', + 'in_response_to' => 'In response to', + 'ip_address' => 'IP Address', + 'is_this_your_profile' => 'Is this your profile?', + 'item' => 'item', + 'items' => 'items', + 'item_details' => 'item_details', + 'item_title' => 'Item Title', + 'key' => 'Key', + 'keywords' => 'Keywords', + 'kml_kmz_file' => 'KMZ/KML File', + 'kml_kmz_upload' => 'Upload KMZ/KML File', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Language', + 'last' => 'Last', + 'last_month' => 'Last Month', + 'last_name' => 'Last Name', + 'last_year' => 'Last Year', + 'latitude' => 'Latitude', + 'layers' => 'Layers', + 'layers_filter' => 'Other Layers', + 'layer_has_been' => 'The Layer Has Been', + 'layer_name' => 'Layer Name', + 'layer_url' => 'Layer URL', + 'leave_a_comment' => 'Leave a Comment', + 'less_information' => 'Less Information', + 'level' => 'Level', + 'level_has_been' => 'This level has been', + 'level_name' => 'Level Name', + 'limited' => 'Limited', + 'link' => 'Link', + 'list' => 'List', + 'loading_reports' => 'Loading Reports', + 'location' => 'Location', + 'locations' => 'Locations', + 'location_example' => 'City, State and/or Country', + 'login' => 'Login', + 'login_account_creation_successful' => 'Account created successfully. You may log in now.', + 'login_confirmation_sent' => 'A confirmation has been sent to your email address.', + 'login_approval_required' => 'Account created. Your account must be approved by an admin before you can login.', + 'login_email_doesnt_exist' => 'Email address doesn\'t exist. Try a different address or create an account.', + 'login_select_openid' => 'Please click your account provider', + 'login_with' => 'Login with', + 'login_userpass' => 'Email and Password', + 'login_openid' => 'OpenID', + 'login_signup' => 'Sign Up', + 'login_signup_click' => 'Create an Account', + 'login_signup_confirmation_message' => 'Thank you for signing up at %1$s. To confirm your email address, please go to the following URL: %2$s', + 'login_signup_confirmation_subject' => 'Signup Confirmation', + 'login_signup_admin_approval_message' => 'An new user has signed up at %1$s. To approve their registration please go to the following URL: %2$s', + 'login_signup_admin_approval_subject' => 'New User Approval', + 'login_signup_approval_message' => 'Your user account has been approved for %1$s. To login go to the following URL: %2$s', + 'login_signup_approval_subject' => 'User account approved', + 'login_signup_text' => 'Create an account now to take advantage of more features on the site.', + 'longitude' => 'Longitude', + 'map' => 'Map', + 'mark_read' => 'Mark as Read', + 'mark_unread' => 'Mark as Unread', + 'maximum_filesize' => 'Maximum filesize', + 'media' => 'Media', + 'media_filter' => 'Media Filter', + 'members' => 'Members', + 'manage_your_account' => 'Manage Your Account', + 'message' => 'Message', + 'messages' => 'Messages', + 'message_details' => 'Message Details', + 'message_non_numeric_source' => 'Message from a non-numeric source:', + 'mobile' => 'Mobile', + 'modify' => 'Modify', + 'modify_date' => 'Modify Date', + 'month' => 'month', + 'Monthly' => 'Monthly', + 'more' => 'More', + 'more_information' => 'More Information', + 'multi_country_instance' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'must_confirm_email_address' => 'You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below.', + 'name' => 'Name', + 'nearby_report' => 'Nearby Report', + 'new' => 'New', + 'news' => 'News', + 'news_feeds' => 'News Feeds', + 'news_source' => 'News Source', + 'new_category' => 'New Category', + 'new_password' => 'New Password', + 'new_report' => 'New Report', + 'next' => 'Next', + 'no' => 'No', + 'no_checkins' => 'No checkins to display.', + 'no_data' => 'No data', + 'none' => 'None', + 'notices' => 'Notices', + 'not_approved' => 'Not Approved', + 'not_approved_singular' => 'Not Approved', + 'not_selected' => '---Not Selected---', + 'not_spam' => 'not spam', + 'not_specified' => 'Not Specified', + 'no_reports' => 'There are no reports', + 'no_results' => 'There are no results', + 'off' => 'Off', + 'official_news' => 'Official & mainstream news', + 'on' => 'On', + 'option' => 'Option', + 'optional' => 'Optional', + 'options' => 'Options', + 'organization' => 'Organisation', + 'organizations' => 'Organisations', + 'organization_description' => 'Organisation Description', + 'organization_email' => 'Organisation Email', + 'organization_has_been' => 'The Organisation Has Been', + 'organization_name' => 'Organisation Name', + 'organization_phone_1' => 'Organisation Phone 1', + 'organization_phone_2' => 'Organisation Phone 2', + 'organization_website' => 'Organisation Website', + 'original' => 'Original', + 'original_description' => 'Original Description', + 'original_title' => 'Original Title', + 'other_ushahidi_instances' => 'Other Deployments', + 'outbox' => 'Outbox', + 'outgoing' => 'Outgoing', + 'page' => 'Page', + 'pages' => 'Pages', + 'page_description' => 'Page Description', + 'page_has_been' => 'The Page Has Been', + 'page_tab_name' => 'Page Tab Name', + 'page_title' => 'Page Title', + 'parent_category' => 'Parent Category', + 'password' => 'Password', + 'password_again' => 'Verify Password', + 'password_changed_successfully' => 'Password changed successfully! Login below.', + 'password_forgot' => 'Forgot your password?', + 'password_reset_confirm' => 'Check your email for the new password.', + 'password_save' => 'Stay logged in on this computer?', + 'past_month' => 'Past Month', + 'past_year' => 'Past Year', + 'pending' => 'Pending', + 'per' => 'per', + 'personal_information' => 'Personal Information Optional.', + 'phone' => 'Phone', + 'photos' => 'Photos', + 'pictures' => 'Pictures', + 'pictures_and_videos' => 'Pictures and Videos', + 'pinpoint_location' => '* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location.', + 'play' => 'Play', + 'please_note' => 'Please Note', + 'plugins' => 'Plugins', + 'plugin_url' => 'Plugin Website', + 'public_profile' => 'Public Profile', + 'public_profile_url' => 'Public Profile URL', + 'preview' => 'Preview', + 'preview_item' => 'Preview Item', + 'preview_message' => 'Preview Message', + 'previous' => 'Previous', + 'private' => 'Private', + 'profile_color' => 'Profile Colour', + 'profile_saved' => 'Your Profile Has Been Saved', + 'quick_stats' => 'Quick Stats', + 'rating' => 'Rating', + 'read' => 'Read', + 'receive' => 'Receive', + 'receive_from' => 'Receive from', + 'receive_notifications' => 'Receive Notifications', + 'recent_reports' => 'Recent Reports', + 'refresh_news_feeds' => 'Refresh News Feeds', + 'registered_email' => 'Registered Email', + 'remove' => 'Remove', + 'reply' => 'Reply', + 'report' => 'Report', + 'reports_listed' => 'Reports (from the map, listed in chronological order)', + 'reporter' => 'Reporter', + 'reporters' => 'Reporters', + 'reporter_date' => 'Reporter Date', + 'reporter_email' => 'Reporter Email', + 'reporter_first_name' => 'Reporter First Name', + 'reporter_has_been' => 'The Reporter Has Been', + 'reporter_ip' => 'Reporter IP Address', + 'reporter_last_name' => 'Reporter Last Name', + 'reporter_level' => 'Reporter Level', + 'reporter_levels' => 'Reporter Levels', + 'reporter_phone' => 'Reporter Phone', + 'reports' => 'Reports', + 'reports_btn_browse' => 'Browse', + 'reports_btn_submit' => 'Submit', + 'reports_by_this_user' => 'Reports By This User', + 'reports_categories' => 'Categories', + 'reports_count' => '%d Reports', + 'reports_date' => 'Date', + 'reports_description' => 'Description', + 'reports_download_csv' => 'Reports will be downloaded in CSV format', + 'reports_email' => 'Email', + 'reports_features' => 'Features', + 'reports_find_location' => 'Find a location near you', + 'reports_first' => 'First Name', + 'reports_last' => 'Last Name', + 'reports_location_name' => 'Location Name', + 'reports_news' => 'News Source Link', + 'reports_optional' => 'Optional Information', + 'reports_photos' => 'Upload Photos', + 'reports_return' => 'Return to the reports page', + 'reports_select_city' => 'Select a City', + 'reports_submitted' => 'Your Report has been submitted to our staff for review. We will get back to you shortly if necessary.', + 'reports_submit_new' => 'Submit a New Report', + 'reports_time' => 'Time', + 'reports_timeline' => 'Reports Timeline', + 'reports_title' => 'Report Title', + 'reports_video' => 'Video link', + 'report_an_incident' => 'Report an Incident', + 'report_details' => 'Report Details', + 'report_option_1' => 'By sending a message to', + 'report_option_2' => 'By sending an email', + 'report_option_3' => 'By sending a tweet with the hashtag/s', + 'report_option_4' => 'By filling this form on our website.', + 'report_option_external_apps' => 'By using an app', + 'report_saved' => 'Your Report Has Been Saved', + 'report_title' => 'Report Title', + 'request_information' => 'Request more information', + 'request_location' => 'Request location', + 'required' => 'Required', + 'requirements' => 'Requirements', + 'resend_confirm_email' => 'Resend Confirmation Email', + 'reset' => 'Reset', + 'reset_all_filters' => 'Reset all filters', + 'reset_password' => 'Reset Password', + 'retrieve_city_names' => 'Retrieve city names for the selected country', + 'riverid_information' => 'Accounts managed by the %s service.', + 'riverid_exists_login' => 'You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login.', + 'role' => 'Role', + 'rss' => 'RSS', + 'save' => 'Save', + 'saved' => 'Saved', + 'save_add_new' => 'Save & Add New', + 'save_close' => 'Save & Close', + 'save_report' => 'Save Report', + 'schedule' => 'Schedule', + 'scheduler' => 'Scheduler', + 'scheduler_day' => 'Day', + 'scheduler_hour' => 'Hour', + 'scheduler_log' => 'Scheduler Log', + 'scheduler_minute' => 'Minute', + 'scheduler_weekday' => 'Day of the Week', + 'search' => 'Search', + 'search_results' => 'Search Results', + 'security_code' => 'Security Code', + 'select_all' => 'Select All', + 'select_field_type' => 'Select a Field Type', + 'select_form_type' => 'Select A Form Type', + 'select_in_map' => 'Select in the map', + 'select_multiple' => 'Select as many as needed', + 'select_one' => 'Please verify that you have checked an item', + 'select_theme' => 'Select Theme', + 'send' => 'Send', + 'send_confirmation' => 'Send Confirmation', + 'sending_to' => 'Sending To', + 'sent' => 'Sent', + 'sent_by' => 'Sent by', + 'server_address' => 'Server address', + 'server_type' => 'Server type', + 'service' => 'Service', + 'service_username' => 'Service Username', + 'service_user_id' => 'Service User ID', + 'share' => 'Share', + 'shared_data' => 'Shared data', + 'share_has_been' => 'The share has been', + 'sharing' => 'Sharing', + 'shorter_map' => 'Shorter Map', + 'show' => 'Show', + 'show_all' => 'Show all', + 'show_messages' => 'Show Messages', + 'showing_reports_from' => 'Showing Reports From %1$s to %2$s', + 'site' => 'Website', + 'site_email_address' => 'site email address', + 'site_url' => 'Site URL', + 'smaller_map' => 'Smaller Map', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Sorry, you do not have any badges.', + 'source' => 'Source', + 'source_name' => 'Source name', + 'sort' => 'Sort', + 'sort_by' => 'Sort By', + 'source_url' => 'Source URL', + 'spam' => 'Spam', + 'ssl_support' => 'SSL Support?', + 'start_point' => 'From', + 'step' => 'Step', + 'submit' => 'Submit a Report', + 'submitted_by' => 'Submitted by %1$s via %2$s', + 'submit_sms' => 'Submit via SMS', + 'submit_sms1' => 'Send your SMS to', + 'submit_sms2' => 'on your phone', + 'success' => 'Success!', + 'successfuly_imported' => 'Succesfully imported', + 'surname' => 'Surname', + 'survey' => 'Survey', + 'system' => 'System', + 'taller_map' => 'Taller Map', + 'tcp_port' => 'TCP Port', + 'themes' => 'Themes', + 'theme_default' => 'Default Ushahidi Theme', + 'theme_settings' => 'Theme Settings', + 'this' => 'This', + 'this_day' => 'Today', + 'this_month' => 'This Month', + 'this_week' => 'This Week', + 'this_year' => 'This Year', + 'this_is_your_profile' => 'This is your profile.', + 'time' => 'Time', + 'title' => 'Title ', + 'to' => 'to', + 'today' => 'Today', + 'today_at' => 'Today at', + 'token' => 'Token', + 'total_reports' => 'Total Reports', + 'translated' => 'Translated', + 'translated_description' => 'Translated Description', + 'translated_title' => 'Translated Title', + 'translate_to' => 'Translate to', + 'translation' => 'Translation', + 'translation_saved' => 'Translation has been saved', + 'trusted' => 'Trusted', + 'type' => 'Type', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Unable to send email.', + 'uncategorized_reports' => 'Uncategorised Reports', + 'unread' => 'unread', + 'unverified' => 'Unverified', + 'update_feeds' => 'Update feeds', + 'upload' => 'Upload', + 'upload_guide' => 'View our report upload guides:-', + 'upload_docs_1' => 'XML Upload guide', + 'upload_docs_2' => 'CSV Upload guide', + 'upload_file' => 'File to upload', + 'upload_reports' => 'Upload Reports', + 'upload_reports_custom_forms' => 'Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that', + 'upload_reports_detail_1' => 'With the form below, you can import incidents into the Ushahidi engine.', + 'upload_reports_detail_2' => 'Reports must be uploaded in either CSV or XML format.', + 'upload_reports_detail_3' => 'When incident ID already exists in the database, the entry in the CSV/XML file will be ignored.', + 'upload_reports_detail_4' => 'It must contain at least Incident Title and Incident Date.', + 'upload_reports_detail_4b' => 'If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder.', + 'upload_reports_detail_4c' => 'If importing additional info i.e personal information and/or custom form fields', + 'upload_reports_detail_4d' => 'At least one of the personal information fields(name, surname,email) entries MUST exist. Empty records will not be imported', + 'upload_reports_detail_4e' => 'Your entries for dropdown fields, radio buttons and checkboxes match the options provided for the custom field on your instance', + 'upload_reports_detail_4f' => 'Checkbox options are separated by a comma e.g if your selected choice of fruits is apples,mangoes and grapes, your entry for this should be "apples,mangoes,grapes"', + 'upload_reports_detail_4g' => 'Date field values are in the following format: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'A Sample CSV Report', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Upload Successful', + 'upload_video' => 'Upload Video', + 'url' => 'URL', + 'user' => 'User', + 'username' => 'Username', + 'ushahidi_admin' => 'Ushahidi Admin', + 'verification' => 'Verification', + 'verified' => 'Verified', + 'verified_reports' => 'Verified Reports', + 'verify' => 'Verify', + 'verify_this_report' => 'Verify this Report', + 'version' => 'Version', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'View', + 'views' => 'Views', + 'view_all' => 'View All', + 'view_all_feeds' => 'View all feeds', + 'view_all_reports' => 'View all reports', + 'view_items' => 'View Items', + 'view_more' => 'View More', + 'view_public_profile' => 'View Public Profile', + 'view_report' => 'View Report', + 'view_reports' => 'View Reports', + 'view_video' => 'View Video', + 'visible' => 'Visible', + 'waiting_approval' => 'Waiting Approval', + 'waiting_verification' => 'Waiting Verification', + 'wider_map' => 'Wider Map', + 'web_form' => 'Web Form', + 'web' => 'Web', + 'weight' => 'Weight', + 'Weekly' => 'Weekly', + 'yes' => 'Yes', + 'yesterday' => 'Yesterday', + 'your_dashboard' => 'Your Dashboard', + 'your_file' => 'Your file', + 'zoom_in' => 'Zoom In', + 'zoom_out' => 'Zoom Out', +); diff --git a/application/i18n/en_GB/upgrade.php b/application/i18n/en_GB/upgrade.php new file mode 100644 index 0000000000..7618316486 --- /dev/null +++ b/application/i18n/en_GB/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Invalid input data. It can either be 0 for No or 1 for Yes.', + ) , + 'upgrade_automatic' => 'Automatic Upgrade', + 'upgrade_available' => 'Available Updates', + 'upgrade_continue_btn_text' => 'Continue', + 'upgrade_db_btn_text' => 'Upgrade', + 'upgrade_db_text_1' => 'So, I\'m going to upgrade your database from version', + 'upgrade_db_text_2' => 'to the newest database version', + 'upgrade_db_text_3' => 'Click on the "Upgrade" button and just chillax as I perform the magic.', + 'upgrade_db_text_4' => 'Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze.', + 'upgrade_db_text_5' => 'Backup database before upgrade? (Highly recommended)', + 'upgrade_db_title' => 'Ushahidi database upgrade', + 'upgrade_db_info' => 'Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s).', + 'upgrade_db_up_to_date' => 'Your database version is up to date.', + 'upgrade_failed' => 'Upgrade failed at some point', + 'upgrade_manual' => 'Manual Upgrade', + 'upgrade_status' => 'Ushahidi upgrade status', + 'upgrade_text_1' => 'The instructions below detail how to manually upgrade your Ushahidi deploymentl', + 'upgrade_text_2' => '
Download
', + 'upgrade_text_3' => '
- Download the most recent Ushahidi build from', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it\'s recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
', + 'upgrade_tables' => 'Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current DB version of your install through to the final SQL upgrade file.', + 'upgrade_text_5' => 'Step 4: Click on the "Continue" button to upgrade the necessary tables.', + 'upgrade_text_6' => 'For automatic upgrade, click on the button below.', + 'upgrade_title_text' => 'You are currently using Ushahidi v%1$s with database version %2$d running on %3$s', + 'upgrading' => 'Upgrading', + 'upgrade_ftp_text' => 'To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Example: "localhost"', + 'upgrade_ftp_password' => 'FTP Password:', + 'upgrade_ftp_username' => 'FTP User Name:', + 'upgrade_status_info' => 'You have the latest version of Ushahidi.', + 'upgrade_status_info_2' => 'You do not need to upgrade.', + 'upgrade_db_version' => 'Database version: %d', + 'upgrade_warning_software_version' => 'Warning: Software version in version.php and database do not match.', + 'upgrade_warning_db_version' => 'Warning: Database version in version.php and database do not match.', + 'upgrade_database' => 'Database:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Downloading latest version of ushahidi...', + 'log_file' => 'Log File', + 'successfully_downloaded' => 'Successfully Downloaded. Unpacking...', + 'failed_downloading' => 'Failed downloading.', + 'successfully_unpacked' => 'Successfully Unpacked. Copying files...', + 'failed_unpacking' => 'Failed unpacking.', + 'successfully_copied' => 'Successfully Copied. Upgrading Database...', + 'failed_copying' => 'Failed copying files.', + 'backup_success' => 'Database backup and upgrade successful.', + 'backup_failed' => 'Failed backing up database.', + 'dbupgrade_success' => 'Database upgrade successful.', + 'deleting_files' => 'Deleting downloaded files...', + 'upgrade_success' => 'UPGRADE SUCCESSFUL. View Log File', +); diff --git a/application/i18n/en_US/alerts.php b/application/i18n/en_US/alerts.php new file mode 100755 index 0000000000..9b94d834e5 --- /dev/null +++ b/application/i18n/en_US/alerts.php @@ -0,0 +1,56 @@ + array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'email_check' => 'That Email address has already been registered to receive alerts for that location.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'alert_country' => array( + 'single_country' => 'This deployment spans within one country only. Please make sure the alert location is within the country %s.', + ) , + 'alert_lat' => array( + 'between' => 'You have not selected a valid location on the map.', + 'required' => 'You have not selected a valid location on the map.', + ) , + 'alert_lon' => array( + 'between' => 'You have not selected a valid location on the map.', + 'required' => 'You have not selected a valid location on the map.', + ) , + 'alert_mobile' => array( + 'length' => 'The Mobile Phone field does not seem to contain the right amount of digits.', + 'mobile_check' => 'That Mobile Phone Number has already been registered to receive alerts for that location.', + 'numeric' => 'The Mobile Phone field does not appear to contain a valid phone. Please input numbers only including Country Code.', + 'one_required' => 'You must enter either your Mobile Phone Number or your Email Address.', + 'required' => 'The Mobile Phone field is required if the checkbox is checked.', + ) , + 'alert_radius' => array( + 'in_array' => 'You have not set a valid radius on the map.', + 'required' => 'You have not set your radius on the map.', + ) , + 'alert_recipient' => array( + 'required' => 'You have not set a recipient for alerts.', + ) , + 'alerts_subscribed' => 'You have subscribed for alerts with the following categories', + 'code_already_verified' => 'This code has been verified before!', + 'code_not_found' => 'This verification code was not found! Please confirm that you have the correct URL.', + 'code_verified' => ' Your code was verified correctly. You will now receive alerts about incidents as they happen.', + 'confirm_request' => 'To confirm your alert request, please go to ', + 'create_more_alerts' => 'Return to the Alerts page to create more alerts', + 'email_alert_request_created' => 'Your Email Alert request has been created and verification message has been sent to ', + 'email_code' => 'Please enter the Email confirmation code you received below: ', + 'email_error_head' => 'Your Email Alert Request Has NOT Been Saved!', + 'email_ok_head' => 'Your Email Alert Request Has Been Saved!', + 'error' => 'The system was not able to process your confirmation request!', + 'mobile_alert_request_created' => 'Your Mobile Alert request has been created and verification message has been sent to ', + 'mobile_code' => 'Please enter the SMS confirmation code you received on your mobile phone below: ', + 'mobile_error_head' => 'Your Mobile Alert Request Has NOT Been Saved!', + 'mobile_ok_head' => 'Your Mobile Alert Request Has Been Saved!', + 'settings_error' => 'This deployment is not set up to correctly process alerts', + 'unsubscribe' => 'You have received this email because you subscribed to receive alerts. If you do not wish to receive future alerts go to ', + 'unsubscribed' => 'You will no longer receive alerts from ', + 'unsubscribe_failed' => 'We were not able to unsubscribe you. Please confirm that you have the correct URL.', + 'verification_email_subject' => 'alerts - verification', + 'verify_code' => 'You will not receive alerts on this location until you confirm your request.', +); +?> diff --git a/application/i18n/en_US/auth.php b/application/i18n/en_US/auth.php new file mode 100755 index 0000000000..0a81839230 --- /dev/null +++ b/application/i18n/en_US/auth.php @@ -0,0 +1,71 @@ + array( + 'email' => 'The email you entered is not a valid email address.', + 'exists' => 'Sorry, a user account already exists for this email address.', + 'length' => 'The email field must be at least 4 and no more 64 characters long.', + 'required' => 'The email field is required.', + ) , + 'name' => array( + 'length' => 'The name field must be at least 3 and no more 100 characters long.', + 'required' => 'The name field is required.', + 'standard_text' => 'The username field contains disallowed characters.', + ) , + 'current_password' => array( + 'length' => 'The password field must be at least 8 characters long.', + 'login error' => 'Please check that you entered the correct email and password.', + 'matches' => 'Please enter the same password in the two password fields.', + 'required' => 'The password field is required.', + 'alpha_dash' => 'The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only', + 'incorrect' => 'The current password you entered for your account is incorrect. Please try again.', + ) , + 'new_password' => array( + 'length' => 'The password field must be at least 8 characters long.', + 'login error' => 'Please check that you entered the correct email and password.', + 'matches' => 'Please enter the same password in the two password fields.', + 'required' => 'The password field is required.', + 'alpha_dash' => 'The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only', + ) , + 'password' => array( + 'default' => 'There has been an error attempting to log you in.', + 'length' => 'The password field must be at least 8 characters long.', + 'login error' => 'Please check that you entered the correct email and password.', + 'matches' => 'Please enter the same password in the two password fields.', + 'required' => 'The password field is required.', + 'riverid server down' => 'The authentication server is down. Please try again later.', + 'riverid' => '%s', + 'alpha_dash' => 'The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only', + ) , + 'password_confirm' => array( + 'matches' => 'The password confirmation field must match the password field.', + ) , + 'resetemail' => array( + 'email' => 'The email you entered is not a valid email address.', + 'invalid' => 'Sorry, we don\'t have your email address', + 'required' => 'The email field is required.', + ) , + 'role' => array( + 'superadmin_modify' => 'Only a superadmin may modify a superadmin or upgrade a user to admin.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Invalid role format.', + 'length' => 'The role field must be at least 5 and no more than 30 characters long.', + 'required' => 'You must define at least one role.', + 'values' => 'You must select either ADMIN or USER role.', + ) , + 'token' => array( + 'invalid' => 'The forgotten password token is invalid', + 'required' => 'Forgotten password token was required' + ), + 'username' => array( + 'admin' => 'The admin user role cannot be modified.', + 'alpha_numeric' => 'The public profile URL field must only contain numbers and letters.', + 'exists' => 'Sorry, this public profile URL is already in use.', + 'length' => 'The public profile URL field must be at least 2 and no more 100 characters long.', + 'login error' => 'Please check that you entered the correct public profile URL.', + 'required' => 'The public profile URL field is required.', + 'superadmin' => 'The super admin role cannot be modified.', + 'csrf' => 'Possible CSRF attack. Did you really mean to create/edit a user?', + ) +); +?> diff --git a/application/i18n/en_US/bug.php b/application/i18n/en_US/bug.php new file mode 100755 index 0000000000..38d34be1ba --- /dev/null +++ b/application/i18n/en_US/bug.php @@ -0,0 +1,24 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'error' => array( + 'required' => 'The error field is required.', + ) , + 'subject' => array( + 'length' => 'The subject field must be at least 3 characters long.', + 'required' => 'The subject field is required.', + ) , + 'yourname' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) +); +?> diff --git a/application/i18n/en_US/category.php b/application/i18n/en_US/category.php new file mode 100755 index 0000000000..86a6284153 --- /dev/null +++ b/application/i18n/en_US/category.php @@ -0,0 +1,29 @@ + array( + 'length' => 'The color field must be 6 characters long.', + 'required' => 'The color field is required.', + ) , + 'category_description' => array( + 'required' => 'The description field is required.', + ) , + 'category_image' => array( + 'size' => 'Please ensure that image uploads sizes are limited to 50KB.', + 'type' => 'The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF.', + 'valid' => 'The image field does not appear to contain a valid file', + ) , + 'category_title' => array( + 'length' => 'The title field must be at least 3 and no more 80 characters long.', + 'required' => 'The title field is required.', + ) , + 'parent_id' => array( + 'already_parent' => 'You cannot subcategorize a category with subcategories.', + 'exists' => 'The parent category does not exist.', + 'numeric' => 'The parent category field must be numeric.', + 'parent_trusted' => 'The parent category cannot be a special category', + 'required' => 'The parent category field is required.', + 'same' => 'The category and the parent category cannot be the same.', + 'special' => 'Special categories cannot be subcategorised.', + ) +); +?> diff --git a/application/i18n/en_US/comments.php b/application/i18n/en_US/comments.php new file mode 100755 index 0000000000..8570097ac9 --- /dev/null +++ b/application/i18n/en_US/comments.php @@ -0,0 +1,21 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + 'valid' => 'You entered the wrong security code.', + ) , + 'comment_author' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) , + 'comment_description' => array( + 'required' => 'The comments field is required.', + ) , + 'comment_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) +); +?> diff --git a/application/i18n/en_US/contact.php b/application/i18n/en_US/contact.php new file mode 100755 index 0000000000..28f43956ad --- /dev/null +++ b/application/i18n/en_US/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Please enter a valid security code.', + 'valid' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'contact_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'contact_message' => array( + 'required' => 'The message field is required.', + ) , + 'contact_name' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) , + 'contact_subject' => array( + 'length' => 'The subject field must be at least 3 characters long.', + 'required' => 'The subject field is required.', + ) , + 'email_send' => array( + 'failed' => 'There was an error sending your message.', + ) , +); +?> diff --git a/application/i18n/en_US/core.php b/application/i18n/en_US/core.php new file mode 100755 index 0000000000..c7e3763b92 --- /dev/null +++ b/application/i18n/en_US/core.php @@ -0,0 +1,31 @@ + 'config file', + 'controller' => 'controller', + 'driver' => 'driver', + 'driver_implements' => 'The %s driver for the %s library must implement the %s interface.', + 'driver_not_found' => 'The %s driver for the %s library could not be found.', + 'errors_disabled' => 'You can go to the home page or try again.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Unable to Complete Request', + 'helper' => 'helper', + 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file.', + 'invalid_method' => 'Invalid method %s called in %s', + 'invalid_property' => 'The %s property does not exist in the %s class.', + 'library' => 'library', + 'log_dir_unwritable' => 'The log directory is not writable: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi was not able to determine a controller to process this request: %s', + 'no_default_route' => 'Please set a default route in config/routes.php', + 'page_not_found' => 'The page you requested, %s, could not be found.', + 'report_bug' => 'Report This Issue To Ushahidi', + 'resource_not_found' => 'The requested %s, %s, could not be found.', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'There can be only one instance of Ushahidi per page request.', + 'uncaught_exception' => 'Uncaught %s: %s in file %s on line %s', + 'view' => 'view', + 'view_set_filename' => 'You must set the the view filename before calling render.', +); +?> diff --git a/application/i18n/en_US/database.php b/application/i18n/en_US/database.php new file mode 100755 index 0000000000..d643eb8c21 --- /dev/null +++ b/application/i18n/en_US/database.php @@ -0,0 +1,6 @@ + 'Database error: %s', + 'table_not_found' => 'Table "%s" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi.', +); +?> diff --git a/application/i18n/en_US/datetime.php b/application/i18n/en_US/datetime.php new file mode 100755 index 0000000000..4049c5a687 --- /dev/null +++ b/application/i18n/en_US/datetime.php @@ -0,0 +1,82 @@ + 'am', + 'friday' => array( + 'abbv' => 'Fri', + 'full' => 'Friday', + ) , + 'monday' => array( + 'abbv' => 'Mon', + 'full' => 'Monday', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sat', + 'full' => 'Saturday', + ) , + 'sunday' => array( + 'abbv' => 'Sun', + 'full' => 'Sunday', + ) , + 'thursday' => array( + 'abbv' => 'Thu', + 'full' => 'Thursday', + ) , + 'tuesday' => array( + 'abbv' => 'Tue', + 'full' => 'Tuesday', + ) , + 'wednesday' => array( + 'abbv' => 'Wed', + 'full' => 'Wednesday', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'January', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'February', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'March', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'May', + 'full' => 'May', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'June', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'July', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'August', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'October', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'December', + ) +); +?> diff --git a/application/i18n/en_US/feeds.php b/application/i18n/en_US/feeds.php new file mode 100755 index 0000000000..1879e95570 --- /dev/null +++ b/application/i18n/en_US/feeds.php @@ -0,0 +1,16 @@ + 'DATE', + 'feed_name' => array( + 'length' => 'The feed name field must be at least 3 and no more + 70 characters long.', + 'required' => 'Please enter the name of the feed.', + ) , + 'feed_url' => array( + 'required' => 'Please enter feed\'s URL.', + 'url' => 'Please enter a valid URL, e.g. http://www.ushahidi.com', + ) , + 'source' => 'SOURCE', + 'title' => 'Title', +); +?> diff --git a/application/i18n/en_US/footer.php b/application/i18n/en_US/footer.php new file mode 100755 index 0000000000..3a6c56257b --- /dev/null +++ b/application/i18n/en_US/footer.php @@ -0,0 +1,5 @@ + 'php5-curl is not installed on this system.', +); +?> diff --git a/application/i18n/en_US/form.php b/application/i18n/en_US/form.php new file mode 100755 index 0000000000..505fa63443 --- /dev/null +++ b/application/i18n/en_US/form.php @@ -0,0 +1,44 @@ + array( + 'default' => 'The default value you have provided for the field is invalid.', + 'length' => 'The Field Name must be at least 3 and no more than 200 characters long.', + ) , + 'field_height' => array( + 'between' => 'Please enter a value 0 to 50 for the Field Height.', + ) , + 'field_isdate' => array( + 'between' => 'You have entered an invalid value for Date Field.', + 'required' => 'Please select Yes or No for the Date Field.', + ) , + 'field_name' => array( + 'length' => 'The Field Name must be at least 3 and no more than 100 characters long.', + 'required' => 'Please enter Field Name.', + 'duplicate' => 'The field name you entered already exists on this form. Please enter another one.', + ) , + 'field_required' => array( + 'between' => 'You have entered an invalid value for Field Required.', + 'required' => 'Please select Yes or No for Field Required.', + ) , + 'field_type' => array( + 'numeric' => 'Please select a valid Field Type.', + 'required' => 'Please select a Field Type.', + ) , + 'field_width' => array( + 'between' => 'Please enter a value 0 to 300 for the Field Width.', + ) , + 'form_description' => array( + 'required' => 'Please enter form\'s Description.', + ) , + 'form_id' => array( + 'default' => 'The default form cannot be deleted.', + 'numeric' => 'Please select which form to add this field to.', + 'required' => 'Please select which form to add this field to.', + ) , + 'form_title' => array( + 'length' => 'The form name field must be at least 3 and no more than 100 characters long.', + 'required' => 'Please enter the name of the form.', + 'exists' => 'A form with that title already exists. Please choose another.', + ) +); +?> diff --git a/application/i18n/en_US/imap.php b/application/i18n/en_US/imap.php new file mode 100755 index 0000000000..ae7836a82b --- /dev/null +++ b/application/i18n/en_US/imap.php @@ -0,0 +1,6 @@ + 'Could not open IMAP stream.', + 'unsupported_service' => 'The email service is not supported.', +); +?> diff --git a/application/i18n/en_US/import.php b/application/i18n/en_US/import.php new file mode 100644 index 0000000000..622ef29673 --- /dev/null +++ b/application/i18n/en_US/import.php @@ -0,0 +1,35 @@ + array( + 'approved' => 'APPROVED must be either YES or NO on line ', + 'required_column' => 'CSV file is missing required column', + 'verified' => 'VERIFIED must be either YES or NO on line ', + ), + 'incident_exists' => 'Incident already exists for ID #', + 'incident_date' => 'Could not parse incident date on report # ', + 'new_category' => 'New category added to database: ', + 'xml' => array( + 'category_error' => 'The category title and category description fields are required. XML Import failed for category #', + 'field_datatype' => 'Field datatype option added for field ', + 'field_default' => 'Default values are required for radio, checkbox and dropdown fields for the following field on form ', + 'field_error' => 'Custom field name missing/field type not allowed. Import failed for the following field on form ', + 'field_hidden' => 'Field hidden option added for field ', + 'file_empty' => 'Import failed. The file you have uploaded is empty.', + 'form_field_no_match' => 'The following field does not exist on the form listed in report #', + 'incident_title_date' =>'Both Report Title and Report Date are required for incident #', + 'invalid_response' => 'Invalid field response for the following field on report #', + 'missing_elements' => 'XML file selected for import must have at least one of the following: Categories, Custom forms or Reports', + 'missing_form_title' => 'Form title must be provided for form #', + 'missing_localization' => 'Could not import empty category translation for localization for category #', + 'new_field' => 'New field added to database: ', + 'new_form' => 'New form added to database: ', + 'no_categories' => 'There are no categories to import', + 'no_category_exists' => 'The following category does not exist, listed in report #', + 'no_custom_forms' => 'There are no custom forms to import.', + 'no_form_exists' => 'The following form does not exist, listed on report #', + 'no_reports' => 'There are no reports to import.', + 'translation_title' => 'Category translation import failed. Missing category title for the following localization on category #', + 'translation_added' => 'Category translation added: Localization ', + ), +); +?> \ No newline at end of file diff --git a/application/i18n/en_US/installer.php b/application/i18n/en_US/installer.php new file mode 100755 index 0000000000..ee453587b1 --- /dev/null +++ b/application/i18n/en_US/installer.php @@ -0,0 +1,80 @@ + 'Base Path', + 'database' => 'Database', + 'database_host' => 'Database Host', + 'database_host_description' => 'If you are running Ushahidi on your own computer, this will more than likely be "localhost". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider.', + 'database_name' => 'Database Name', + 'database_name_description' => 'The name of the database you want to run Ushahidi in', + 'db_information_link' => 'For more information, please check out this article on the wiki that talks about databases in more detail.', + 'default_language' => 'Default Language (Locale)', + 'default_language_description' => 'Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own.', + 'disable' => 'Disable', + 'enable' => 'Enable', + 'error_summary' => 'Listed below is a summary of the errors we encountered.', + 'files_location_text' => 'The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory.', + 'finished' => 'Finished', + 'general' => 'General', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Anyone can get an api key. Get yours now', + 'go_back' => 'Go Back', + 'index' => array( + 'advanced' => 'ADVANCED INSTALLATION', + 'advanced_installation_description' => 'Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details.', + 'basic_installation' => 'BASIC INSTALLATION', + 'basic_installation_description' => 'Simple and fast. All you need is your website\'s root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later.', + 'proceed' => 'Proceed', + 'welcome' => 'Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below.', + ) , + 'installation_successful' => 'Installation Successful', + 'mail_server' => 'Mail Server', + 'mail_server_host' => 'Mail Server Host', + 'mail_server_host_description' => 'Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mail Server Password', + 'mail_server_password_description' => 'The password you normally use to login in to your email', + 'mail_server_port' => 'Mail Server Port', + 'mail_server_port_description' => 'Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Mail Server Type', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?', + 'mail_server_username' => 'Mail Server Username', + 'mail_server_username_description' => 'If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username.', + 'map' => 'Map', + 'map_provider' => 'Map Provider', + 'map_provider_description' => 'Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area.', + 'other_steps' => 'Other steps...', + 'password' => 'Password', + 'password_description' => 'Your database password', + 'previous' => 'Previous', + 'restart_apache' => 'Please restart your Apache Server', + 'select_mail_server_ssl' => 'Enable or disable SSL', + 'select_mail_server_ssl_description' => 'Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security.', + 'setup_sms' => 'Set up your SMS server', + 'site_email' => 'Site Email Address', + 'site_email_alerts' => 'Site Alert Email Address', + 'site_email_alerts_description' => 'When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address.', + 'site_email_description' => 'Site wide email communication will be funneled through this address', + 'site_name' => 'Site Name', + 'site_name_description' => 'The name of your site', + 'site_tagline' => 'Site Tagline', + 'site_tagline_description' => 'Your tagline', + 'summary' => array( + 'text_1' => 'The files and folders listed below need to be writable by your webserver.', + 'text_2' => '

Here are instructions for changing file permissions:

+ ', + 'text_3' => 'Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions.', + 'text_4' => 'For the installation process, please have the following bits of information on hand.', + ) , + 'table_prefix' => 'Table Prefix', + 'table_prefix_description' => 'Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here.', + 'title' => 'Title', + 'to_login' => 'To login, go to', + 'upload_data' => 'Upload report data', + 'username' => 'Username', + 'username_description' => 'Your database username', + 'use_credentials' => 'and use the following credentials', + 'view_site' => 'View your website', +); +?> diff --git a/application/i18n/en_US/layer.php b/application/i18n/en_US/layer.php new file mode 100755 index 0000000000..4df346bd3d --- /dev/null +++ b/application/i18n/en_US/layer.php @@ -0,0 +1,21 @@ + array( + 'length' => 'The color field must be 6 characters long.', + 'required' => 'The color field is required.', + ) , + 'layer_file' => array( + 'type' => 'The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML.', + 'valid' => 'The file field does not appear to contain a valid file', + ) , + 'layer_name' => array( + 'length' => 'The name field must be at least 3 and no more 80 characters long.', + 'required' => 'The name field is required.', + ) , + 'layer_url' => array( + 'atleast' => 'Either a KML URL or File is required.', + 'both' => 'You can\'t have both a KML file and a URL.', + 'url' => 'Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml', + ) +); +?> diff --git a/application/i18n/en_US/libraries.php b/application/i18n/en_US/libraries.php new file mode 100755 index 0000000000..0551889d57 --- /dev/null +++ b/application/i18n/en_US/libraries.php @@ -0,0 +1,23 @@ + 'Could not connect to Akismet server.', + 'akismet_cannot_retrieve' => 'The response from Akismet could not be retrieved.', + 'api_library_not_found' => 'The API library: %s for the %s class could not be found. Please check your API task routing table.', + 'askimet_invalid_apikey' => 'Your Akismet API key is not valid.', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2.', + 'clickatell_message_too_long' => 'Your unicode message is too long! (Current length=', + 'clickatell_no_destination_address' => 'Please specify a destination address (TO)!', + 'clickatell_no_sender_address' => 'Please specify source address (FROM)!', + 'clickatell_unicode_message_too_long' => 'Your unicode message is too long! (Current length=', + 'clickatell_unsupported_method' => 'Unsupported sending method!', + 'invalid_api_library' => 'The API library %s is invalid. All API libraries must be subclasses of %s.', + 'upgrade_directory_not_deleted' => 'Directory %s could not be deleted.', + 'upgrade_extracting_error' => 'Error while extracting: %s', + 'upgrade_failed' => 'Downloading the latest Ushahidi failed. HTTP status code', + 'upgrade_file_not_copied' => 'File %s could not be copied.', + 'upgrade_file_not_deleted' => 'File %s could not be deleted.', + 'upgrade_title' => 'Ushahidi upgrade script', + 'upgrade_zip_error' => 'The downloaded Ushahidi zip file %s, could not be written.', + 'riverid_variable_not_available' => '%s is not available in the RiverID class.', +); +?> diff --git a/application/i18n/en_US/maintenance.php b/application/i18n/en_US/maintenance.php new file mode 100644 index 0000000000..16ce7c2979 --- /dev/null +++ b/application/i18n/en_US/maintenance.php @@ -0,0 +1,5 @@ + 'Sorry, our site is currently down for maintenance. Please try again in a few minutes.', +); +?> diff --git a/application/i18n/en_US/message.php b/application/i18n/en_US/message.php new file mode 100755 index 0000000000..872500d72e --- /dev/null +++ b/application/i18n/en_US/message.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'length' => 'The Email field must be at least 4 and no more 64 characters long.', + 'required' => 'The Email field is required if the checkbox is checked.', + ) , + 'message' => array( + 'required' => 'The comments field is required.', + ) , + 'name' => array( + 'length' => 'The name field must be at least 3 characters long.', + 'required' => 'The name field is required.', + ) , + 'phone' => array( + 'length' => 'The phone field is not valid.', + ) +); +?> diff --git a/application/i18n/en_US/mhi.php b/application/i18n/en_US/mhi.php new file mode 100755 index 0000000000..a0783579f8 --- /dev/null +++ b/application/i18n/en_US/mhi.php @@ -0,0 +1,19 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Please enter the security code.', + ) , + 'contact_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address.', + 'required' => 'Please provide a valid email address.', + ) , + 'contact_message' => array( + 'required' => 'The message field is required.', + ) , + 'contact_subject' => array( + 'length' => 'The subject field must be at least 3 characters long.', + 'required' => 'The subject field is required.', + ) +); +?> diff --git a/application/i18n/en_US/notifications.php b/application/i18n/en_US/notifications.php new file mode 100755 index 0000000000..6aaac329dd --- /dev/null +++ b/application/i18n/en_US/notifications.php @@ -0,0 +1,31 @@ + 'This message was sent from your website.', + 'admin_login_url' => 'Administrator Login', + 'admin_new_comment' => array( + 'message' => 'A new comment has been submitted to your website in response to:', + 'subject' => 'New Comment', + ) , + 'admin_new_email' => array( + 'message' => 'A new email message has been submitted to your website.', + 'subject' => 'New Email Message', + ) , + 'admin_new_report' => array( + 'message' => 'A new report has been submitted to your website.', + 'subject' => 'New Report', + ) , + 'admin_new_sms' => array( + 'message' => 'A new text message has been submitted to your website.', + 'subject' => 'New Text Message', + ) , + 'member_new_alert' => array( + 'message' => 'You Have Received a New Alert', + 'subject' => 'New Alert!', + ) , + 'member_new_message' => array( + 'message' => 'You Have Received a Private Message', + 'subject' => 'New Private Message', + 'footer' => 'To Reply Please Go To: ', + ) +); +?> diff --git a/application/i18n/en_US/page.php b/application/i18n/en_US/page.php new file mode 100644 index 0000000000..f994cdc7b7 --- /dev/null +++ b/application/i18n/en_US/page.php @@ -0,0 +1,14 @@ + array( + 'required' => 'Please enter a Page Title.', + 'length' => 'Page Title must be at least 3 and no more than 150 characters long.', + ) , + 'page_tab' => array( + 'required' => 'Please enter a Page Tab Name.', + ) , + 'page_description' => array( + 'required' => 'Please enter a Page Description.', + ) +); +?> diff --git a/application/i18n/en_US/permissions.php b/application/i18n/en_US/permissions.php new file mode 100644 index 0000000000..5dc4bac93f --- /dev/null +++ b/application/i18n/en_US/permissions.php @@ -0,0 +1,22 @@ + "View Reports", + "reports_edit" => "Create/Edit/Delete Reports", + "reports_approve" => "Approve Reports", + "reports_verify" => "Verify Reports", + "reports_comments" => "Manage Report Comments", + "reports_download" => "Download Reports", + "reports_upload" => "Upload Reports", + "messages" => "Manage Messages", + "messages_reporters" => "Manage Message Reporters", + "stats" => "View Stats", + "settings" => "Modify Settings", + "manage" => "Manage Panel", + "users" => "Manage Users", + "manage_roles" => "Manage Roles", + "checkin" => "Can checkin", + "checkin_admin" => "Manage checkins", + "admin_ui" => "Access Admin UI", + "member_ui" => "Access Members UI", + "delete_all_reports" => "Delete all reports" +); diff --git a/application/i18n/en_US/private_message.php b/application/i18n/en_US/private_message.php new file mode 100644 index 0000000000..9d62a4650f --- /dev/null +++ b/application/i18n/en_US/private_message.php @@ -0,0 +1,17 @@ + array( + 'numeric' => 'Parent ID must be numeric', + ) , + 'private_to' => array( + 'required' => 'The To field is required', + 'exists' => 'The user you are try to send a message to does not exist', + ) , + 'private_subject' => array( + 'required' => 'The subject field is required', + 'length' => 'Subject must be between 3 and 150 characters' + ) , + 'private_message' => array( + 'required' => 'The message field is required', + ) , +); diff --git a/application/i18n/en_US/report.php b/application/i18n/en_US/report.php new file mode 100755 index 0000000000..d73f352b20 --- /dev/null +++ b/application/i18n/en_US/report.php @@ -0,0 +1,135 @@ + 'error!', + 'country_name' => array( + 'single_country' => 'This deployment spans within one country only. Please make sure the report location is within the country %s.', + ) , + 'custom_field' => array( + 'values' => 'Please enter a valid value for the "%s" field.', + 'numeric' => 'The "%s" field must be numeric.', + 'required' => 'The "%s" field is required.', + 'not_exist' => 'The "%s" field is does not exist.', + 'permission' => 'The "%s" field cannot be edited by your account.', + 'email' => 'The "%s" field must contain a valid email address.', + 'phone' => 'The "%s" field must contain a valid phone number.', + 'date_mmddyyyy' => 'The "%s" field must contain a valid date (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'The "%s" field must contain a valid date (DD/MM/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Please select a valid item to include in the download.', + 'numeric' => 'Please select a valid item to include in the download.', + ) , + 'data_active' => array( + 'between' => 'Please select "Reports Awaiting Approval" or "Approved Reports" or both.', + 'numeric' => 'Please select "Reports Awaiting Approval" or "Approved Reports" or both.', + 'required' => 'Please select "Reports Awaiting Approval" or "Approved Reports" or both.', + ) , + 'data_verified' => array( + 'between' => 'Please select "Reports Awaiting Verification" or "Verified Reports" or both.', + 'numeric' => 'Please select "Reports Awaiting Verification" or "Verified Reports" or both.', + 'required' => 'Please select "Reports Awaiting Verification" or "Verified Reports" or both.', + ) , + 'data_point' => array( + 'between' => 'Please select a valid type of report to download.', + 'numeric' => 'Please select a valid type of report to download.', + 'required' => 'Please select a valid type of report to download.', + ) , + 'format' => array( + 'required' => 'You must select a download format. Select either CSV or XML.', + 'valid' => 'Please select a valid format to download your reports in', + ), + 'from_date' => array( + 'date_mmddyyyy' => 'The FROM date field does not appear to contain a valid date.', + 'range' => 'Please enter a valid FROM date. It cannot be greater than today.', + ) , + 'incident_active' => array( + 'between' => 'Please enter a valid value for Approve This Report', + 'required' => 'Please enter a valid value for Approve This Report', + ) , + 'incident_ampm' => array( + 'validvalues' => 'The am/pm field does not appear to contain a valid value.', + ) , + 'incident_category' => array( + 'numeric' => 'The "Categories" field does not appear to contain a valid category.', + 'required' => 'The "Categories" field is required.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'The date field does not appear to contain a valid date.', + 'date_mmddyyyy' => 'The date field does not appear to contain a valid date.', + 'required' => 'The date field is required.', + ) , + 'incident_description' => array( + 'required' => 'The "Description" field is required.', + ) , + 'incident_hour' => array( + 'between' => 'The hour field does not appear to contain a valid hour.', + 'required' => 'The hour field is required.', + ) , + 'incident_information' => array( + 'alpha' => 'Please enter a valid value for Information Probability.', + 'length' => 'Please enter a valid value for Information Probability.', + ) , + 'incident_minute' => array( + 'between' => 'The minute field does not appear to contain a valid value.', + 'required' => 'The minute field is required.', + ) , + 'incident_news' => array( + 'url' => 'The news source links field does not appear to contain a valid URL.', + ) , + 'incident_photo' => array( + 'size' => 'Please ensure that photo upload sizes are limited to 2MB.', + 'type' => 'The Upload Photos field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF.', + 'valid' => 'The Upload Photos field does not appear to contain a valid file.', + ) , + 'incident_source' => array( + 'alpha' => 'Please enter a valid value for Source Reliability.', + 'length' => 'Please enter a valid value for Source Reliability.', + ) , + 'incident_title' => array( + 'length' => 'The "Report Title" field must be at least 3 and no more 200 characters long.', + 'required' => 'The "Report Title" field is required.', + 'csrf' => 'Possible CSRF attack. Did you really mean to create/edit a report?', + ) , + 'incident_verified' => array( + 'between' => 'Please enter a valid value for Verify This Report.', + 'required' => 'Please enter a valid value for Verify This Report.', + ) , + 'incident_video' => array( + 'url' => 'The video links field does not appear to contain a valid URL.', + ) , + 'latitude' => array( + 'between' => 'The latitude field does not appear to contain a valid latitude.', + 'required' => 'The latitude field is required. Please click on the map to pinpoint a location.', + ) , + 'locale' => array( + 'alpha_dash' => 'The locale field has an incorrect value. ', + 'exists' => 'This report already has a translation for this language.', + 'length' => 'The locale field has an incorrect value. ', + 'locale' => 'The Original Report and the Translation have the same locale (language).', + 'required' => 'The locale is required.', + ) , + 'location_name' => array( + 'length' => 'The "Location Name" field must be at least 3 and no more 200 characters long.', + 'required' => 'The "Location Name" field is required.', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude.', + 'required' => 'The longitude field is required. Please click on the map to pinpoint a location.', + ) , + 'person_email' => array( + 'email' => 'The email field does not appear to contain a valid email address.', + 'length' => 'The email field must be at least 4 and no more 64 characters long.', + ) , + 'person_first' => array( + 'length' => 'The first name field must be at least 3 and no more 100 characters long.', + ) , + 'person_last' => array( + 'length' => 'The last name field must be at least 2 and no more 100 characters long.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'The TO date field does not appear to contain a valid date.', + 'range' => 'Please enter a valid TO date. It cannot be greater than today.', + 'range_greater' => 'Your FROM date cannot be greater than your TO date.', + ) +); +?> diff --git a/application/i18n/en_US/reporters.php b/application/i18n/en_US/reporters.php new file mode 100755 index 0000000000..9525ac6750 --- /dev/null +++ b/application/i18n/en_US/reporters.php @@ -0,0 +1,24 @@ + array( + 'between' => 'The latitude field does not appear to contain a valid latitude.', + 'required' => 'The latitude field is required. Please click on the map to pinpoint a location.', + ) , + 'level_id' => array( + 'numeric' => 'The Reporter Level field does not appear to contain a valid Level.', + 'required' => 'The Reporter Level field does not appear to contain a valid Level.', + ) , + 'location_name' => array( + 'length' => 'The location name field must be at least 3 and no more 200 characters long.', + 'required' => 'The location name field is required.', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude.', + 'required' => 'The longitude field is required. Please click on the map to pinpoint a location.', + ) , + 'reporter_id' => array( + 'numeric' => 'Invalid Reporter', + 'required' => 'Invalid Reporter', + ) +); +?> diff --git a/application/i18n/en_US/reports.php b/application/i18n/en_US/reports.php new file mode 100644 index 0000000000..0b2d3621d0 --- /dev/null +++ b/application/i18n/en_US/reports.php @@ -0,0 +1,16 @@ + array( + 'required' => 'Please verify that you have checked an item', + 'numeric' => 'Please verify that you have checked an item', + 'categories_required' => 'Reports must be categorized before they can be approved' + ) , + 'action' => array( + 'permission' => 'You don\'t have permission to perform this action', + ) , + 'uploadfile' => array( + 'required' => 'You must select a file to upload', + 'type' => 'The upload file must either be of .csv or .xml format', + 'valid' => 'The file upload field does not seem to contain a valid file', + ), +); diff --git a/application/i18n/en_US/roles.php b/application/i18n/en_US/roles.php new file mode 100755 index 0000000000..fd1d45bfd5 --- /dev/null +++ b/application/i18n/en_US/roles.php @@ -0,0 +1,21 @@ + array( + 'length' => 'The Description field must be at least 3 and no more 100 characters long.', + 'required' => 'The Description field is required.', + ) , + 'name' => array( + 'alpha_numeric' => 'The Name field must only contain letters or numbers.', + 'length' => 'The Name field must be at least 2 and no more than 30 characters long.', + 'nomodify' => 'SuperAdmin Role Cannot Be Modified.', + 'required' => 'The Name field is required.', + ) , + 'access_level' => array( + 'numeric' => 'Access Level field must be a number between 0 - 100.', + 'required' => 'Access Level field must be a number between 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Permissions field must be a number between 0 - 100.', + ) +); +?> diff --git a/application/i18n/en_US/settings.php b/application/i18n/en_US/settings.php new file mode 100644 index 0000000000..3588f8d548 --- /dev/null +++ b/application/i18n/en_US/settings.php @@ -0,0 +1,241 @@ + array( + 'between' => 'The allow comments field does not appear to contain a valid value.', + 'required' => 'The allow comments field is required.', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value.', + 'required' => 'The include feed field is required.', + ) , + 'allow_feed_category' => array( + 'between' => 'The include feed category field does not appear to contain a valid value.', + 'required' => 'The include feed category field is required.', + ) , + 'allow_alerts' => array( + 'between' => 'The allow alerts field does not appear to contain a valid value.', + 'required' => 'The allow alerts field is required.', + ) , + 'allow_reports' => array( + 'between' => 'The allow reports field does not appear to contain a valid value.', + 'required' => 'The allow reports field is required.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value.', + 'required' => 'The stat sharing field is required.', + ) , + 'api' => array( + 'default_record_limit' => 'Default number of records to be fetched per API request', + 'maximum_record_limit' => 'Maximum number of records to be fetched per API request', + 'maximum_requests_per_ip_address' => 'Maximum number of API requests per IP address', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value.', + 'length' => 'The Akismet field does not appear to contain a valid value.', + ) , + 'banner_image' => array( + 'default' => 'Something went wrong with your banner image upload.', + 'size' => 'The size of your banner exceeds the size limit for this upload.', + ) , + 'cache_pages' => array( + 'between' => 'The cache pages field is required.', + 'required' => 'The cache pages field does not appear to contain a valid value.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'The cache pages lifetime field does not appear to contain a valid value.', + 'required' => 'The cache pages lifetime field is required.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs (without "index.php" in the URL).', + 'enable_clean_url' => 'Enable Clean URLs', + 'title' => 'Clean URLs', + ) , + 'clickatell_api' => array( + 'length' => 'The Clickatell API number field must be no more 20 characters long.', + 'required' => 'The Clickatell API number field is required.', + ) , + 'clickatell_password' => array( + 'length' => 'The Clickatell Password field must be at least 5 and no more 50 characters long.', + 'required' => 'The Clickatell Password field is required.', + ) , + 'clickatell_username' => array( + 'length' => 'The Clickatell Username field must be no more 50 characters long.', + 'required' => 'The Clickatell Username field is required.', + ) , + 'configure_map' => 'Configure Map', + 'default_location' => 'Default Location', + 'default_map_all' => array( + 'alpha_numeric' => 'The color feed field does not appear to contain a valid value.', + 'length' => 'The color field must be no more 6 characters long.', + 'required' => 'The color field is required.', + ) , + 'default_map_view' => 'Default Map View', + 'default_zoom_level' => 'Default Zoom Level', + 'download_city_list' => 'Retrieve Cities From Geonames', + 'email_host' => array( + 'length' => 'The Mail server port field is too long.', + 'numeric' => 'The Mail server port field should contain numbers only.', + ) , + 'email_password' => array( + 'length' => 'The Mail Server Password field must be at least 5 and no more 50 characters long.', + 'required' => 'The Mail Server Password field is required.', + ) , + 'email_port' => array( + 'length' => 'The Mail server port field is too long.', + 'numeric' => 'The Mail server port field should contain numbers only.', + ) , + 'email_servertype' => array( + 'length' => 'The Mail server port field is too long.', + 'required' => 'The Mail Server Type field is required.', + ) , + 'email_username' => array( + 'length' => 'The Mail Server Username field must be no more 50 characters long.', + 'required' => 'The Mail Server Username field is required.', + ) , + 'facebook' => array( + 'title' => 'Facebook Setup Options', + 'description' => 'To get the information below you will need to create a new Facebook application at', + 'description_2' => 'These settings allow users to login via Facebook, this does not create a facebook application for your deployment', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'The Google Analytics field must contain a valid Web Property ID in the format UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Enable HTTPS', + 'https_disabled' => 'This option makes Ushahidi be accessed in unsecure mode; without "https://" in the URL prefix', + 'https_enabled' => 'This option makes Ushahidi be accessed in secure mode; with https in the URL prefix', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value.', + 'required' => 'The items per page (Frontend) field is required.', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value.', + 'required' => 'The items per page (Admin) field is required.', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key.', + 'zoom' => 'Zoom Level', + ) , + 'map_provider' => array( + 'choose' => 'Select a Map Provider', + 'enter_api' => 'Enter the new API Key', + 'get_api' => 'Get an API Key', + 'info' => 'Setting up your map provider is a straight-forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key.', + 'name' => 'Map provider', + ) , + 'map_timeline' => 'Map Timeline', + 'map_settings' => 'Map Settings', + 'multiple_countries' => 'Does this Ushahidi Deployment span multiple countries?', + 'select_default_location' => 'Please select a default country', + 'set_location' => 'Click and drag the map to set your exact location', + 'site' => array( + 'allow_clustering' => 'Cluster Reports on Map', + 'allow_comments' => 'Allow Users to Submit Comments to Reports', + 'allow_feed' => 'Include RSS News Feed on Website', + 'allow_feed_category' => 'Create New Category from Feeds', + 'allow_alerts' => 'Allow Users To Subscribe For Alerts', + 'allow_reports' => 'Allow Users To Submit Reports', + 'api_akismet' => 'Akismet Key', + 'banner' => 'Site Banner', + 'blocks_per_row' => 'Blocks Per Row', + 'cache_pages' => 'Cache Pages', + 'cache_pages_lifetime' => 'Cache Pages Lifetime', + 'checkins' => 'Enable Checkins', + 'copyright_statement' => 'Site Copyright Statement', + 'default_category_colors' => 'Default Color For All Categories', + 'default_category_icons' => 'Default Icon For All Categories', + 'delete_banner_image' => 'Delete Banner Image', + 'delete_default_map_all_icon' => 'Delete Default Icon', + 'display_contact_page' => 'Display Contact Page', + 'display_howtohelp_page' => 'Display "How to Help" Page', + 'email_alerts' => 'Alerts Email Address', + 'email_notice' => 'In order to receive reports by email, please configure your email account settings.', + 'email_site' => 'Site Email Address', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Items Per Page - Front End', + 'items_per_page_admin' => 'Items Per Page - Admin', + 'kismet_notice' => 'Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account', + 'laconica_configuration' => 'Laconica Credentials', + 'laconica_site' => 'Laconica Site ', + 'language' => 'Site Language', + 'manually_approve_users' => 'Manually Approve Users', + 'message' => 'Site Message', + 'name' => 'Site Name', + 'private_deployment' => 'Private Deployment', + 'require_email_confirmation' => 'Require User Email Confirmation', + 'submit_report_message' => 'Submit Report Message', + 'share_site_stats' => 'Enable Statistics (Stored on Ushahidi\'s server)', + 'tagline' => 'Site Tagline', + 'timezone' => 'Timezone', + 'title' => 'Site Settings', + 'twitter_configuration' => 'Twitter Search Terms', + 'twitter_hashtags' => 'Hashtags - Separate with commas ', + 'feed_geolocation_user' => 'Feeds geolocation - Geonames username' + ) , + 'banner_image' => array( + 'type' => 'The Site Banner field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF.', + 'size' => 'Please ensure that "Banner Image" size is less than 250 KB.', + 'valid' => 'The "Banner Image" field does not appear to contain a valid file.', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address.', + 'length' => 'The site email field must be at least 4 and no more 100 characters long.', + ) , + 'site_name' => array( + 'length' => 'The site name field must be at least 3 and no more 50 characters long.', + 'required' => 'The site name field is required.', + ) , + 'site_tagline' => array( + 'length' => 'The tagline field must be at least 3 and no more 100 characters long.', + 'required' => 'The tagline field is required.', + ) , + 'sms' => array( + 'clickatell_api' => 'Your Clickatell API Number', + 'clickatell_check_balance' => 'Check Your Clickatell Credit Balance', + 'clickatell_load_balance' => 'Load Credit Balance', + 'clickatell_password' => 'Your Clickatell Password', + 'clickatell_text_1' => 'Sign up for Clickatells service by clicking here', + 'clickatell_text_2' => 'Enter your Clickatell access information below', + 'clickatell_username' => 'Your Clickatell User Name', + 'flsms_description' => 'FrontlineSMS is free and open source software that enables users to send and receive text messages with large groups of people through mobile phones. Click on the box below to download the latest version from FrontlineSMS.com.', + 'flsms_download' => 'Download and install FrontlineSMS', + 'flsms_instructions' => 'Detailed instructions on how to send SMS from your FronlineSMS installation are available here. The URL and API Key below are required to set up the sync with FrontlineSMS.', + 'flsms_link' => 'Copy and paste this into the FrontlineSMS "Address" field', + 'flsms_key' => 'Copy and paste this into the FrontlineSMS "Ushahidi API Key" field', + 'flsms_synchronize' => 'Connecting FrontlineSMS to this Ushahidi deployment', + 'flsms_text_1' => 'Enter phone number(s) connected to Frontline SMS in the field(s) below', + 'flsms_text_2' => 'Enter the number without any + or dashes below', + 'option_1' => 'Option 1: Use Frontline SMS', + 'option_2' => 'Option 2: Use a Global SMS Gateway', + 'title' => 'SMS Setup Options', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value.', + 'numeric' => 'The phone 1 field should contain numbers only.', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long.', + 'numeric' => 'The phone 2 field should contain numbers only.', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long.', + 'numeric' => 'The phone 3 field should contain numbers only.', + ), + 'twitter' => array( + 'title' => 'Twitter Setup Options', + 'description' => 'To get the information below, set up your deployment as a new Twitter application at', + 'api_key' => 'Consumer Key', + 'api_key_secret' => 'Consumer secret', + 'token' => 'Access Token', + 'token_secret' => 'Access Token Secret', + ), + 'test_settings' => 'Test settings' + +); +?> diff --git a/application/i18n/en_US/sharing.php b/application/i18n/en_US/sharing.php new file mode 100755 index 0000000000..a23fe19453 --- /dev/null +++ b/application/i18n/en_US/sharing.php @@ -0,0 +1,20 @@ + 'Ingress date', + 'date_added' => 'Date Added', + 'last_access' => 'Last Access', + 'sharing_color' => array( + 'length' => 'The color field must be 6 characters long.', + 'required' => 'The color field is required.', + ), + 'sharing_name' => array( + 'length' => 'The Sharing name does not appear to be valid.', + 'required' => 'A Sharing name is required.', + ), + 'sharing_url' => array( + 'exists' => 'The site URL already exists.', + 'length' => 'The site URL does not appear to be valid.', + 'required' => 'The site URL is required.', + 'url' => 'The site URL field does not appear to contain a valid URL.', + )); +?> diff --git a/application/i18n/en_US/stats.php b/application/i18n/en_US/stats.php new file mode 100755 index 0000000000..2e5f5bc5a4 --- /dev/null +++ b/application/i18n/en_US/stats.php @@ -0,0 +1,38 @@ + 'Approved', + 'categories' => 'Categories', + 'category_impact' => 'Category Impact', + 'category_impact_description' => 'This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details.', + 'choose_date_range' => 'Choose a date range.', + 'countries' => 'Countries', + 'country' => 'Country', + 'country_breakdown' => 'Country Breakdown', + 'description' => 'This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above.', + 'error' => 'Error', + 'glossary' => 'Glossary', + 'hit_summary' => 'Hit Summary', + 'legend' => 'Legend', + 'pageviews' => 'Pageviews', + 'pageviews_description' => 'The total number of pages that visitors have viewed on your site', + 'reports' => 'Reports', + 'reports_categories' => 'Reports Categories', + 'reports_statistics' => 'Reports Statistics', + 'reports_status' => 'Reports Status', + 'report_punchcard' => 'Report Punchcard', + 'report_stats' => 'Report Stats', + 'stats_not_setup' => 'Stats Not Set Up', + 'time_range_1' => '1 Month', + 'time_range_2' => '3 Months', + 'time_range_3' => '6 Months', + 'time_range_all' => 'All', + 'unapproved' => 'Unapproved', + 'unique_visitors' => 'Unique Visitors', + 'unique_visitors_description' => 'The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc.', + 'unverified' => 'Unverified', + 'verified' => 'Verified', + 'visitor_summary' => 'Visitor Summary', + 'visits' => 'Visits', + 'visits_description' => 'A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview.', +); +?> diff --git a/application/i18n/en_US/tooltips.php b/application/i18n/en_US/tooltips.php new file mode 100755 index 0000000000..f682a6c073 --- /dev/null +++ b/application/i18n/en_US/tooltips.php @@ -0,0 +1,93 @@ + array( + 'add_to_category' => 'This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2.', + 'approve' => 'Approves a report or not. If approved, it will show up publicly.', + 'assign_badge' => 'You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here.', + 'between_times' => 'This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier.', + 'category' => 'If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test.', + 'days_of_the_week' => 'If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection.', + 'email_body' => 'Body of the email that will be sent.', + 'email_subject' => 'Subject of email that will be sent.', + 'feed_id' => 'The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "all"', + 'from' => 'Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for twitter messages from a particular user, enter their username here (not including @)', + 'keywords' => 'You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions "love" or "peace" in their message, you will want to add "love, peace" in the keywords box.', + 'location' => 'You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select "specific area" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes.', + 'on_specific_count' => 'This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it.', + 'report_title' => 'This is the default title to add to the report.', + 'response' => 'If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses.', + 'send_to' => 'If you select "Triggering User", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity.', + 'specific_days' => 'You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates.', + 'trigger' => 'The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one.', + 'user' => 'The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "anyone" since most triggers are set up for all users interacting with the system', + 'verify' => 'Marks a report as verified or not.', + ) , + 'change_picture' => 'Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture.', + 'default_value' => 'Separate each value with a comma, e.g. value1, value2.', + 'radio_choices' => 'Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3', + 'dropdown_choices' => 'Separate each choice item with a comma, e.g. Item 1, Item 2 etc.', + 'private_to' => 'Start typing to list members.', + 'private_subject' => 'Private message subject', + 'private_message' => 'Private message', + 'profile_color' => 'You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins.', + 'profile_email' => 'Your email address', + 'profile_name' => 'This is one of the ways that you are identified on the website. Keep in mind that this is public!', + 'profile_new_password' => 'If set, this will be your new password. Leave this field blank if you wish to keep your current password.', + 'profile_new_users_password' => 'This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time.', + 'profile_notify' => 'Selecting YES lets you get alerts via email when new reports or comments are posted on your website.', + 'profile_password' => 'Your current password. We require you enter your password to prevent any unauthorized changes to your account.', + 'profile_public' => 'Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you\'ve submitted, your checkins, badges, etc all on one page.', + 'profile_public_url' => 'This is the address where your public profile can be found.', + 'profile_username' => 'Your username cannot be changed.', + 'settings_access_level' => 'Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default.', + 'settings_alert_email' => 'This is the email address that will be used to send email alerts.', + 'settings_allow_alerts' => 'Allow users to subscribe for alerts via the web.', + 'settings_allow_clustering' => 'This allows bundling of similar reports into a single dot on the map', + 'settings_allow_comments' => 'Allow users to comment on reports on the main site.', + 'settings_allow_feed' => 'This allows RSS News feeds to be displayed on the main site.', + 'settings_allow_feed_category' => 'This allows creating new Category from RSS News feeds.', + 'settings_allow_reports' => 'Allow users to submit information via the web form.', + 'settings_api_default_record_limit' => 'Default number of records to be fetched per API request', + 'settings_api_max_record_limit' => 'Maximum number of records to be fetched per API request', + 'settings_api_max_requests_per_ip' => 'Maximum number of API requests per IP address', + 'settings_banner' => 'The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page.', + 'settings_blocks_per_row' => 'Number of Block columns that will be displayed on each row.', + 'settings_cache_pages' => 'Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime).', + 'settings_cache_pages_lifetime' => 'Set the lifetime of the cache.', + 'settings_checkins' => 'This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page.', + 'settings_configure_map' => 'Set the map to cover a specific location.', + 'settings_default_category_colors' => 'Set one color code for all the categories on the site.', + 'settings_default_category_icons' => 'Set one icon for all the categories on the site.', + 'settings_default_location' => 'This is the country the site is being deployed.', + 'settings_display_contact' => 'Turn the Contact Tab on or off on the main site.', + 'settings_display_howtohelp' => 'Turn the How to Help Tab on or off on the main site.', + 'settings_display_items_per_page' => 'This is the number of reports displayed per page on the main site.', + 'settings_display_items_per_page_admin' => 'This is the number of reports displayed per page on the admin Back End.', + 'settings_flsms_download' => 'This is the hub for incoming messages.', + 'settings_flsms_synchronize' => 'This synchronizes the messages in the hub with the Ushahidi platform.', + 'settings_flsms_text_1' => 'Phone numbers through which the text messages are received.', + 'settings_google_analytics' => 'Tracks visitors of your site. Get detailed visitor statistics.', + 'settings_locale' => 'Sets the language that will be used in the site.', + 'settings_manually_approve_users' => 'If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin).', + 'settings_map_provider' => 'This defines which map is to be used on the site.', + 'settings_map_timeline' => 'This shows the timeline based on the date and time reports were submitted', + 'settings_private_deployment' => 'Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment.', + 'settings_require_email_confirmation' => 'Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it.', + 'settings_server_host' => 'This is where the emails reside', + 'settings_server_password' => 'This is the password for the email address that receives reports.', + 'settings_server_port' => 'This is required to accept incoming connections from the email address.', + 'settings_server_ssl_support' => 'This is required to enhance a secure connection.', + 'settings_server_type' => 'This is required to retrieve e-mails from the host server.', + 'settings_server_username' => 'This is the email address that receives reports.', + 'settings_share_site_stats' => 'Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off.', + 'settings_site_copyright_statement' => 'Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!', + 'settings_site_email' => 'This is the email address that will receive email reports and messages from the contact form.', + 'settings_site_message' => 'This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here.', + 'settings_site_name' => 'This is the name of the site that appears at the top of the main site.', + 'settings_site_submit_report_message' => 'This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting.', + 'settings_site_tagline' => 'In a few words, explain what this site is about.', + 'settings_site_timezone' => 'This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site.', + 'settings_twitter_configuration' => 'Set the twitter hashtag that will be used on a tweet', + 'feed_geolocation_user' => "If you want to geocode your feed entries, grab a user http://geonames.org, enable the free webservices and enter it here. Leave empty to disable this function.

Beware of the the use limits!" +); +?> diff --git a/application/i18n/en_US/ui_admin.php b/application/i18n/en_US/ui_admin.php new file mode 100755 index 0000000000..ec5160ee27 --- /dev/null +++ b/application/i18n/en_US/ui_admin.php @@ -0,0 +1,326 @@ + 'Access denied. Either your credentials are not valid or your request has been refused.', + 'access_denied_others' => 'Access denied. Your request has been understood, but denied due to access limits like time. Try back later.', + 'access_level' => 'Access Level', + 'actions' => 'Actions', + 'add_to_category' => 'Add to Category', + 'added' => 'added', + 'added_edited' => 'added/edited', + 'addons' => 'Addons', + 'admin_role' => 'Admin', + 'alerts' => 'Alerts', + 'alerts_received' => 'Alerts Received', + 'all' => 'All', + 'am' => 'AM', + 'anonymous' => 'Anonymous', + 'anyone_role' => 'Anyone', + 'anywhere' => 'Anywhere', + 'api_banned' => 'API Banned', + 'api_logs' => 'API Logs', + 'api_settings' => 'API Settings', + 'api_unban' => 'UNBAN', + 'api_unban_all' => 'UNBAN ALL', + 'approved' => 'approved', + 'approve_auto' => 'Auto Approve', + 'approve_manual' => 'Manually Approve', + 'archived' => 'Archived', + 'are_you_sure_you_want_to' => 'Are you sure you want to', + 'are_you_sure_you_want_to_delete_this_item' => 'Are you sure you want to delete this item?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Are you sure you want to delete this photo?', + 'are_you_sure_you_want_to_switch_forms' => 'Are you sure you want to switch forms?', + 'assign' => 'Assign', + 'assignments' => 'Assignments', + 'assign_badge' => 'Assign Badge', + 'author' => 'Author', + 'author_email' => 'Author email', + 'back' => 'Back', + 'banip_action' => 'Ban IP', + 'between_times' => 'Between Times', + 'blocks' => 'Blocks', + 'body' => 'Body', + 'cancel' => 'Cancel', + 'categories' => 'Categories', + 'chart_display_error' => 'Error displaying chart', + 'check_message_valid' => 'Please make sure your message is valid.', + 'check_number' => 'Please make sure the number is valid.', + 'check_sms_settings' => 'Please check your SMS settings!', + 'checkin_details' => 'Checkin Details', + 'checkins' => 'Checkins', + 'cities_loaded' => 'Cities loaded', + 'code' => 'code', + 'code_out_of_sync' => 'Code version out of sync.', + 'color' => 'Color', + 'comments' => 'Comments', + 'confirmation_code' => 'Your alerts confirmation code is: ', + 'confirm_msg' => 'The User Has Been', + 'count' => 'Count', + 'country_not_found' => 'Country Not Found', + 'created_edited' => 'created/edited', + 'create_report' => 'Create a Report', + 'critical_upgrade' => 'Critical Upgrade', + 'csv' => 'CSV', + 'currently_active' => 'Currently Active', + 'currently_inactive' => 'Currently Inactive', + 'custom_forms_insufficient_permissions' => 'You don\'t have sufficient permissions to edit the following custom fields.', + 'daily' => 'Daily', + 'dashboard' => 'Dashboard', + 'database' => 'database', + 'date_time' => 'Date & Time', + 'date_added' => 'Date Added', + 'date_modified' => 'Date Modified', + 'days_of_the_week' => 'Days of the week', + 'db_out_of_sync' => 'DB version out of sync.', + 'deleted' => 'deleted', + 'delete_action' => 'Delete', + 'delete_all' => 'Delete All', + 'delete_badge' => 'Delete Badge', + 'demo' => 'Demo', + 'description' => 'Description', + 'disabled' => 'Disabled', + 'divider_start_field' => 'Divider Start', + 'divider_end_field' => 'Divider End', + 'divider_class' => 'div class', + 'download_reports' => 'Download Reports', + 'dropdown_choices' => 'Dropdown Choices', + 'edited' => 'EDITED', + 'edited_by' => 'Edited By', + 'edit_action' => 'Edit', + 'edit_log' => 'Edit Log', + 'email' => 'Email', + 'entire_collective' => 'Entire Collective', + 'error_geocoding' => 'Error in geocoding! HTTP error', + 'error_imap' => 'IMAP PHP Library is not installed', + 'error_twitter' => 'Incorrect Credentials', + 'error_msg' => 'Error', + 'error_post_incident' => 'Error, unable to post incident', + 'every_six_hours' => 'Every Six Hours', + 'every_twelve_hours' => 'Every Twelve Hours', + 'experimental' => 'Experimental', + 'faqs' => 'FAQ\'s', + 'feed' => 'feed', + 'feedback' => 'Feedback', + 'feeds' => 'feeds', + 'field_choices' => 'List of Choices', + 'field_default' => 'Default Value', + 'field_datatype' => 'Data Type', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numeric', + 'field_datatype_text' => 'Free Text', + 'field_height' => 'Height (In Rows)', + 'field_hidden' => 'Hidden Field', + 'field_maxlength' => 'Maximum Character Length', + 'field_name' => 'Field Name', + 'field_toggle' => 'Toggle', + 'field_toggle_no' => 'No', + 'field_toggle_yes_close' => 'Yes, Closed by default', + 'field_toggle_yes_open' => 'Yes, Open by default', + 'file_not_found_upload' => 'Could not find uploaded file', + 'file_open_error' => 'Could not open file for reading', + 'form_not_exists' => 'That Form Does Not Exist!', + 'forum' => 'Forum', + 'free_text_field' => 'Text Area Field (Free Text)', + 'date_field' => 'Date Field', + 'radio_field' => 'Radio Buttons Field', + 'checkbox_field' => 'Checkboxes Field', + 'dropdown_field' => 'Dropdown Field', + 'from' => 'From', + 'from_date' => 'From', + 'geonames_timeout' => 'Geonames Timeout Error', + 'get_help' => 'Get Help', + 'get_more_themes' => 'Get more themes', + 'get_more_plugins' => 'Get more plugins', + 'header_actions' => 'Actions', + 'header_add_edit' => 'Add/Edit', + 'header_email' => 'Email', + 'header_manage_users' => 'Manage Users', + 'header_role' => 'Role', + 'header_user' => 'User', + 'help' => 'help', + 'hourly' => 'Hourly', + 'incident_feed' => 'Incident feed for', + 'installer_info' => 'The installer folder still exists. Delete the installer folder. It is a potential security vulnerability.', + 'instance' => 'Instance', + 'instances' => 'Instances', + 'instance_details' => 'Instance Details', + 'invalid_parameter' => 'Invalid Parameter', + 'ip_address' => 'IP Address', + 'is_date' => 'Is this a Date Field?', + 'ispublic_visible' => 'Who Can View Answers', + 'ispublic_submit' => 'Who Can Submit Answers', + 'keyword' => 'Keyword', + 'keywords' => 'Keywords', + 'label_email' => 'Email Address:', + 'label_full_name' => 'Full Name:', + 'label_password' => 'Password:', + 'label_role' => 'Role:', + 'label_username' => 'Username:', + 'layers' => 'Layers', + 'login_role' => 'Moderator', + 'logout' => 'Logout', + 'logs' => 'Logs', + 'manage' => 'Manage', + 'manage_roles' => 'Manage Roles & Permissions', + 'manage_users' => 'View Users', + 'manage_users_edit' => 'Add/Edit Users', + 'manage_public_listing' => 'Manage Your Public Listing', + 'mark_as' => 'Mark As', + 'marked_as_not_spam' => 'marked as not spam', + 'marked_as_spam' => 'marked as spam', + 'match_no_documents' => 'did not match any documents', + 'message' => 'Message', + 'messages' => 'Messages', + 'messages_laconica' => 'Laconica Messages', + 'messages_twitter' => 'Twitter Messages', + 'message_sent' => 'Your message has been sent!', + 'mhi' => 'MHI', + 'minute' => 'Minute', + 'minutes' => 'Minutes', + 'missing_parameter' => 'Missing Parameter', + 'moderator' => 'Moderator', + 'modified' => 'modified', + 'modify_timezone' => 'Modify Timezone Setting', + 'move_down_action' => 'move down', + 'move_up_action' => 'move up', + 'multiple_hosted_instances' => 'Multiple Hosted Instances', + 'my_alerts' => 'My Alerts', + 'my_checkins' => 'My Checkins', + 'my_profile' => 'My Profile', + 'my_reports' => 'My Reports', + 'my_votes' => 'Votes Cast', + 'my_votes_up' => 'Positive', + 'my_votes_down' => 'Negative', + 'name' => 'Name', + 'new_alert' => 'Create New Alert', + 'new_private' => 'Create New Message', + 'new_password' => 'New Password', + 'no' => 'No', + 'none_category_explanation' => 'This is a special category that will not show up on the report submission form for users submitting reports. This is used to hold reports left without categories(uncategorized reports) as a result of category deletion.', + 'notification' => 'Notification', + 'not_case_sensitive' => 'This is not case sensitive.', + 'not_found' => 'Not Found', + 'no_data' => 'No data. There are no results to show.', + 'no_error' => 'No Error', + 'no_result_display_msg' => 'No Results To Display!', + 'of' => 'of', + 'on_specific_count' => 'On Specific Count', + 'openids' => 'OpenID\'s', + 'page' => 'page', + 'pages' => 'pages', + 'page_not_found' => 'Page Not Found', + 'page_not_found_message_with_contact' => 'Sorry, the page you are trying to view is not here.

Did you follow a link from somewhere else on our site?
If you reached this page from another part of our site, please contact us so that we can correct our mistake.

Did you follow a link from another site?
Links from other sites can sometimes be outdated or misspelled. Tell us where you came from and we can try to contact the other site in order to fix the problem.

Did you type the URL?
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalization, etc.

', + 'page_not_found_message' => 'Sorry, the page you are trying to view is not here.', + 'parameters_used' => 'Parameters Used', + 'password' => 'Password', + 'password_reset' => 'Password Reset', + 'password_reset_message_line_1' => 'Dear', + 'password_reset_message_line_2' => 'We received a request to reset the password for', + 'password_reset_message_line_3' => 'To change your password, please click on the link below (or copy and paste it into your browser).', + 'password_reset_message_line_4' => 'As you requested, your password has now been reset. Your new details are as follows', + 'password_reset_subject' => 'Ushahidi password reset', + 'phone' => 'Phone', + 'please_select' => 'Please Select', + 'pm' => 'PM', + 'post_method_not_used' => 'Data was not sent by post method', + 'preview' => 'Preview', + 'private_message' => 'Message', + 'private_messages' => 'Private Messages', + 'private_sent' => 'Private Message Sent', + 'private_subject' => 'Subject', + 'private_to' => 'To', + 'public_listing' => 'Public Listing', + 'qualifiers' => 'Qualifiers', + 'read' => 'read', + 'relevance' => 'Relevance', + 'report_title' => 'Report Title', + 'report_date' => 'Report Date', + 'reporters' => 'Reporters', + 'reporter_levels' => 'Reporter Levels', + 'reports' => 'Reports', + 'reputation' => 'Reputation Score', + 'required' => 'Required', + 'reset' => 'Reset', + 'response' => 'Response', + 'results' => 'Results', + 'revoke' => 'Revoke', + 'riverid_exists_admin' => 'This email already has an account managed by CrowdmapID. The user will need to use their existing Crowdmap password to login.', + 'save_settings' => 'Save Settings', + 'search' => 'Search', + 'search_reports' => 'Search Reports', + 'searching_for' => 'searching for', + 'security_info_encryption_key' => 'The encryption key is still set to the default value. This is insecure and must be changed.', + 'security_info_https' => 'This site being served over HTTP. This should be set to HTTPS for increased security.', + 'security_info_instructions' => 'Instructions are available on the wiki: ', + 'select_download_format' => 'Select your desired reports download format:-', + 'select_field_type' => '--- Select A Field Type ---', + 'select_item' => 'Please select an item', + 'select_trigger_before_response' => 'You must select a Trigger before you can select a Response.', + 'select_trigger_before_qualifiers' => 'You must select a Trigger before you can define Qualifiers.', + 'sender' => 'Sender', + 'send_to' => 'Send To', + 'sent_from_website' => 'This message was sent from your website at ', + 'server_time' => 'Server Time', + 'settings' => 'Settings', + 'showing_page' => 'Showing page', + 'showing_results' => 'Showing results', + 'shown' => 'shown', + 'special_category' => 'Special Category', + 'special_category_explanation' => 'This is a special category that will not show up on the report submission form for users submitting reports. This is used in conjunction with the "Trusted Reporters" feature.', + 'specific_area' => 'Specific Area', + 'state' => 'State', + 'statistics' => 'Statistics', + 'stats' => 'Stats', + 'stats_collection_error' => 'Stat collection failed! Please try again later.', + 'stats_collection_error_short' => 'Stat Collection Failed!', + 'specific_days' => 'Specific Days', + 'subject' => 'Subject', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Task Performed', + 'text_field' => 'Text Field', + 'theme_name' => 'Name', + 'title' => 'Manage Users', + 'timeout' => 'Timeout Error', + 'to' => 'to', + 'total_records' => 'Total Records', + 'to_date' => 'to', + 'translate_reports' => 'Translate Reports', + 'trigger' => 'Trigger', + 'triggering_user' => 'Triggering User', + 'triggers' => 'Triggers', + 'unapproved' => 'unapproved', + 'unknown' => 'Unknown', + 'unknown_failure' => 'Unknown Failure', + 'unread' => 'unread', + 'unsubscribe_message' => 'You will no longer receive alerts from', + 'update_link' => ' Click here to upgrade now', + 'upgrade_ushahidi' => 'Upgrade Ushahidi', + 'upgrade_ushahidi_status' => 'Upgrade Ushahidi Status', + 'upload_reports' => 'Upload Reports', + 'user' => 'User', + 'users' => 'Users', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verified/Unverified', + 'verify_unverify' => 'Verify/Unverify', + 'version' => 'Version', + 'version_available' => ' is available for upgrade.', + 'video_encoding' => 'Video Encoding', + 'view_private' => 'Private Messages', + 'view_site' => 'View Site', + 'view_report' => 'View Report', + 'welcome' => 'Welcome, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Yes', + 'your_search_for' => 'Your search for', + 'delete_all' => "Delete all reports", + 'delete_all_instructions' => "Clicking the button below will delete ALL reports on the database. You should use this with caution as this operation cannot be undone.", + 'delete_all_backup' => "We recommend you backup your database before proceeding", + 'delete_all_button' => "I'm sure I want to delete all %s report(s) from the database.", + 'delete_all_confirm' => "Are you sure you want to delete all reports?", + 'delete_all_no_reports' => "There are no reports to be deleted.", + 'user_no_logins' => 'Number of logins', + 'user_last_login' => 'Last login', + 'user_confirmed_account' => 'Confirmed account?' +); +?> diff --git a/application/i18n/en_US/ui_main.php b/application/i18n/en_US/ui_main.php new file mode 100755 index 0000000000..f880016cca --- /dev/null +++ b/application/i18n/en_US/ui_main.php @@ -0,0 +1,623 @@ + 'About ', + 'access' => 'Access', + 'access_limits' => 'Access Limits', + 'account_name' => 'Account Name', + 'actions' => 'Actions', + 'action_confirm' => 'This action cannot be undone. Are you sure you want to continue?', + 'activate' => 'Activate', + 'active' => 'Active', + 'add' => 'Add', + 'added_by' => 'Added By', + 'additional_data' => 'Additional Data', + 'additional_reports' => 'Additional Reports', + 'add_edit' => 'Add/Edit', + 'add_field' => 'Add a Field', + 'add_language' => 'Add Language', + 'add_new' => 'Add New', + 'add_new_category' => 'Add New Category', + 'add_translation' => 'Add Translation', + 'admin' => 'Administration', + 'alerts' => 'Get Alerts', + 'alerts_alert_me' => 'Alert me if a report is filed in, or around:', + 'alerts_btn_send' => 'Save My Alert', + 'alerts_email' => 'Email address:', + 'alerts_enter_email' => 'enter email address', + 'alerts_enter_mobile' => 'enter mobile number with country code', + 'alerts_get' => 'Get Alerts', + 'alert_has_been' => 'Alert has been', + 'alerts_mobile_phone' => 'Mobile phone:', + 'alerts_place_spot' => 'Or place a spot on the map below, and we will alert you when a report is submitted within 20 kilometers.', + 'alerts_place_spot2' => 'If you can\'t find your location, please click on the map to pinpoint the correct location.', + 'alerts_rss' => 'RSS Feeds (copy the URL below)', + 'alerts_select_city' => 'Select a city', + 'alerts_step1_select_city' => 'Step 1: Select your city or location:', + 'alerts_step2_send_alerts' => 'Step 2: Send alerts to my:', + 'alerts_step3_select_catgories' => 'Step 3 (Optional): Select Categories', + 'alert_confirm_previous' => 'Confirm A Previous Alert Request', + 'alert_saved' => 'Your Alert Has Been Saved!', + 'all' => 'All', + 'allowed' => 'Allowed', + 'allowed_tags' => 'Allowed HTML tags: "%s".', + 'allowed_iframes' => 'Iframes are only allowed from: %s.', + 'all_categories' => 'All Categories', + 'all_time' => 'All Time', + 'and' => 'and', + 'api' => 'API', + 'approve' => 'Approve', + 'approved' => 'Approved', + 'approved_reports' => 'Approved Reports', + 'approve_this_report' => 'Approve this Report', + 'approximate' => 'Approximate', + 'archive' => 'Archive', + 'archived' => 'Archived', + 'ascending' => 'Ascending', + 'at' => 'at', + 'author' => 'Author', + 'auto_checkin' => 'Auto Checkin', + 'Auto' => 'Auto', + 'avg_reports_per_day' => 'Avg Reports Per Day', + 'awaiting_approval' => 'Awaiting Approval', + 'awaiting_verification' => 'Awaiting Verification', + 'badge' => 'Badge', + 'badges' => 'Badges', + 'badge_image' => 'Badge Image', + 'badge_image_upload_your_own' => 'Or you can upload your own badge image instead.', + 'badge_pack' => 'Badge Pack', + 'badge_select' => 'Select a Badge', + 'blog' => 'Blog', + 'browse_profiles' => 'Browse Profiles', + 'cancel' => 'Cancel', + 'categories' => 'Categories', + 'category' => 'Category', + 'category_filter' => 'Category Filter', + 'category_has_been' => 'The category has been ', + 'category_name' => 'Category Name', + 'change_date_range' => 'Change Date Range', + 'change_password' => 'Change Password', + 'change_picture' => 'Change My Picture', + 'choose' => 'Choose a', + 'choose_data_points' => 'Choose data points to download', + 'choose_date_range' => 'Or choose your own date range', + 'choose_field_type' => 'Choose field type', + 'cleanurl' => 'Clean URLs', + 'clear' => 'Clear', + 'clear_map' => 'Clear Map', + 'close' => 'Close', + 'clusters' => 'clusters', + 'color' => 'Color', + 'comment' => 'Comment', + 'comments' => 'Comments', + 'comment_details' => 'Comment Details', + 'configuration_saved' => 'Your Settings Have Been Saved!', + 'configure' => 'Configure', + 'confirm_email_successful' => 'You have successfully confirmed your email address! Please login below.', + 'confirm_email_successful_and_approval' => 'You have successfully confirmed your email address! An administrator must approve your account before you login', + 'confirm_email_failed' => 'Email confirmation failed! You can request a new email confirmation below.', + 'contact' => 'Contact Us', + 'contact_code' => 'Security Code', + 'contact_email' => 'Your Email Address', + 'contact_message' => 'Message', + 'contact_message_has_send' => 'Your Message Has Been Sent!', + 'contact_name' => 'Your Name', + 'contact_phone' => 'Your Phone Number', + 'contact_send' => 'Send Message', + 'contact_subject' => 'Message Subject', + 'copyright' => 'Copyright ©', + 'create' => 'Create', + 'create_edit' => 'Create/Edit', + 'create_new' => 'Create New', + 'create_new_password' => 'Create New Password', + 'create_report' => 'Create Report', + 'credibility' => 'Credibility', + 'current_password' => 'Current Password', + 'custom_fields' => 'Custom Fields', + 'data' => 'Information', + 'date' => 'Date', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => 'Date & Time', + 'day' => 'day', + 'Daily' => 'Daily', + 'deactivate' => 'Deactivate', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Delete', + 'deleted' => 'Deleted', + 'deletes' => 'Deletes', + 'delete_disabled' => 'Delete Disabled', + 'delete_last' => 'Delete Last', + 'delete_report' => 'Delete this Report', + 'delete_selected' => 'Delete Selected', + 'delete_spam' => 'Delete Spam', + 'demo' => 'Demo', + 'description' => 'Description', + 'descending' => 'Descending', + 'detailed_location_example' => 'Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg', + 'details' => 'Details', + 'direct_report' => 'Direct Report', + 'disabled' => 'Disabled', + 'disapprove' => 'Unapprove', + 'download_reports' => 'Download Reports', + 'download' => 'Download', + 'edit' => 'Edit', + 'edit_form_fields' => 'Edit Form Fields', + 'edit_report' => 'Edit Report', + 'email' => 'Email', + 'email_address' => 'Email Address', + 'email_configuration' => 'Mail Server Settings', + 'email_server_host' => 'Mail Server Host', + 'email_server_password' => 'Mail Server Password', + 'email_server_port' => 'Mail Server Port', + 'email_server_ssl_support' => 'Mail Server SSL support', + 'email_server_type' => 'Mail Server Type', + 'email_server_username' => 'Mail Server Username', + 'email_settings_comment_0' => 'so your settings have to be associated with this email address', + 'email_settings_comment_00' => 'In order to receive reports by email, please input your email account settings below. Please note that emails will be received at your', + 'email_settings_comment_1' => 'Some servers require a complete email address', + 'email_settings_comment_2' => 'Email account password', + 'email_settings_comment_3' => 'Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Examples: pop3, imap', + 'email_settings_comment_6' => 'Enable or disable SSL connections', + 'empty' => '---EMPTY---', + 'end_point' => 'to', + 'error' => 'Error!', + 'example' => 'Example', + 'example_country' => 'Kenya', + 'external_apps' => 'External Apps', + 'external_video_link' => 'External Video Link', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Provide Feedback', + 'feedback_reports' => 'Please give us feedback about your experience by sending an email to ', + 'feeds' => 'Feeds', + 'feed_has_been' => 'The feed has been', + 'feed_items' => 'Feed Items', + 'feed_name' => 'Feed Name', + 'feed_url' => 'Feed URL', + 'field_unused' => 'Unused field', + 'file' => 'File', + 'file_over_max_allowed' => 'Your file is over the maximum allowed filesize.', + 'filters' => 'Filters', + 'filter_reports' => 'Filter Reports', + 'filter_reports_by' => 'Filter Reports By', + 'filter_reports_contain' => 'Filter reports that contain', + 'find' => 'Find', + 'find_location' => 'Find Location', + 'first_name' => 'First Name', + 'force_run_scheduler' => 'Force Run Scheduler', + 'forgot_password' => 'Forgot your password?', + 'form' => 'Form', + 'forms' => 'Forms', + 'form_description' => 'Form Description', + 'form_edit' => 'Edit this Form', + 'form_has_been' => 'The form has been', + 'form_title' => 'Form Title', + 'from' => 'From', + 'full_name' => 'Full Name', + 'geolocation_available' => 'GeoLocation Available', + 'geometry_color' => 'Color', + 'geometry_comments' => 'Comments', + 'geometry_label' => 'Label', + 'geometry_strokewidth' => 'Stroke Width', + 'go' => 'Go', + 'hashtag' => 'Hashtag', + 'has_been' => 'Has Been', + 'help' => 'How to Help', + 'hidden' => 'Hidden', + 'hide' => 'Hide', + 'hide_this_message' => 'hide this message', + 'home' => 'Home', + 'Hourly' => 'Hourly', + 'how_to_report' => 'How to Report', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Used to identify you on the site to other users.', + 'image' => 'Image', + 'images' => 'Images', + 'image_icon' => 'Image/Icon', + 'inactive' => 'Inactive', + 'inbox' => 'Inbox', + 'incident' => 'Incident', + 'incidents_nearby' => 'Incidents Nearby', + 'incident_location' => 'Incident Location', + 'include' => 'Include', + 'include_categories' => 'Include Categories', + 'include_custom_fields' => 'Include Custom Fields', + 'include_description' => 'Include Description', + 'include_detail' => 'Include as much detail as possible', + 'include_latitude' => 'Include Latitude', + 'include_location_information' => 'Include Location Information', + 'include_longitude' => 'Include Longitude', + 'include_personal_info' => 'Include Personal Information', + 'incoming_media' => 'Incoming Media', + 'information_evaluation' => 'Information Evaluation', + 'input_location' => 'Enter your precise location', + 'insufficient_role' => 'Your account doesn\'t have the proper permission to fully log you in. Please contact the administrator.', + 'interval' => 'Interval', + 'in_response_to' => 'In response to', + 'ip_address' => 'IP Address', + 'is_this_your_profile' => 'Is this your profile?', + 'item' => 'item', + 'items' => 'items', + 'item_details' => 'item_details', + 'item_title' => 'Item Title', + 'key' => 'Key', + 'keywords' => 'Keywords', + 'kml_kmz_file' => 'KMZ/KML File', + 'kml_kmz_upload' => 'Upload KMZ/KML File', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Language', + 'last' => 'Last', + 'last_month' => 'Last Month', + 'last_name' => 'Last Name', + 'last_year' => 'Last Year', + 'latitude' => 'Latitude', + 'layers' => 'Layers', + 'layers_filter' => 'Other Layers', + 'layer_has_been' => 'The Layer Has Been', + 'layer_name' => 'Layer Name', + 'layer_url' => 'Layer URL', + 'leave_a_comment' => 'Leave a Comment', + 'less_information' => 'Less Information', + 'level' => 'Level', + 'level_has_been' => 'This level has been', + 'level_name' => 'Level Name', + 'limited' => 'Limited', + 'link' => 'Link', + 'list' => 'List', + 'loading_reports' => 'Loading Reports', + 'location' => 'Location', + 'locations' => 'Locations', + 'location_example' => 'City, State and/or Country', + 'login' => 'Login', + 'login_account_creation_successful' => 'Account created successfully. You may log in now.', + 'login_confirmation_sent' => 'A confirmation has been sent to your email address.', + 'login_approval_required' => 'Account created. Your account must be approved by an admin before you can login.', + 'login_email_doesnt_exist' => 'Email address doesn\'t exist. Try a different address or create an account.', + 'login_select_openid' => 'Please click your account provider', + 'login_with' => 'Login with', + 'login_userpass' => 'Email and Password', + 'login_openid' => 'OpenID', + 'login_signup' => 'Sign Up', + 'login_signup_click' => 'Create an Account', + 'login_signup_confirmation_message' => 'Thank you for signing up at %1$s. To confirm your email address, please go to the following URL: %2$s', + 'login_signup_confirmation_subject' => 'Signup Confirmation', + 'login_signup_admin_approval_message' => 'An new user has signed up at %1$s. To approve their registration please go to the following URL: %2$s', + 'login_signup_admin_approval_subject' => 'New User Approval', + 'login_signup_approval_message' => 'Your user account has been approved for %1$s. To login go to the following URL: %2$s', + 'login_signup_approval_subject' => 'User account approved', + 'login_signup_text' => 'Create an account now to take advantage of more features on the site.', + 'longitude' => 'Longitude', + 'map' => 'Map', + 'mark_read' => 'Mark as Read', + 'mark_unread' => 'Mark as Unread', + 'maximum_filesize' => 'Maximum filesize', + 'media' => 'Media', + 'media_filter' => 'Media Filter', + 'members' => 'Members', + 'manage_your_account' => 'Manage Your Account', + 'message' => 'Message', + 'messages' => 'Messages', + 'message_details' => 'Message Details', + 'message_non_numeric_source' => "Message from a non-numeric source:", + 'mobile' => 'Mobile', + 'modify' => 'Modify', + 'modify_date' => 'Modify Date', + 'month' => 'month', + 'Monthly' => 'Monthly', + 'more' => 'More', + 'more_information' => 'More Information', + 'multi_country_instance' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'must_confirm_email_address' => 'You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below.', + 'name' => 'Name', + 'nearby_report' => 'Nearby Report', + 'new' => 'New', + 'news' => 'News', + 'news_feeds' => 'News Feeds', + 'news_source' => 'News Source', + 'new_category' => 'New Category', + 'new_password' => 'New Password', + 'new_report' => 'New Report', + 'next' => 'Next', + 'no' => 'No', + 'no_checkins' => 'No checkins to display.', + 'no_data' => 'No data', + 'none' => 'None', + 'notices' => 'Notices', + 'not_approved' => 'Not Approved', + 'not_approved_singular' => 'Not Approved', + 'not_selected' => '---Not Selected---', + 'not_spam' => 'not spam', + 'not_specified' => 'Not Specified', + 'no_reports' => 'There are no reports', + 'no_results' => 'There are no results', + 'off' => 'Off', + 'official_news' => 'Official & mainstream news', + 'on' => 'On', + 'option' => 'Option', + 'optional' => 'Optional', + 'options' => 'Options', + 'organization' => 'Organization', + 'organizations' => 'Organizations', + 'organization_description' => 'Organization Description', + 'organization_email' => 'Organization Email', + 'organization_has_been' => 'The Organization Has Been', + 'organization_name' => 'Organization Name', + 'organization_phone_1' => 'Organization Phone 1', + 'organization_phone_2' => 'Organization Phone 2', + 'organization_website' => 'Organization Website', + 'original' => 'Original', + 'original_description' => 'Original Description', + 'original_title' => 'Original Title', + 'other_ushahidi_instances' => 'Other Deployments', + 'outbox' => 'Outbox', + 'outgoing' => 'Outgoing', + 'page' => 'Page', + 'pages' => 'Pages', + 'page_description' => 'Page Description', + 'page_has_been' => 'The Page Has Been', + 'page_tab_name' => 'Page Tab Name', + 'page_title' => 'Page Title', + 'parent_category' => 'Parent Category', + 'password' => 'Password', + 'password_again' => 'Verify Password', + 'password_changed_successfully' => 'Password changed successfully! Login below.', + 'password_forgot' => 'Forgot your password?', + 'password_reset_confirm' => 'Check your email for the new password.', + 'password_save' => 'Stay logged in on this computer?', + 'past_month' => 'Past Month', + 'past_year' => 'Past Year', + 'pending' => 'Pending', + 'per' => 'per', + 'personal_information' => 'Personal Information Optional.', + 'phone' => 'Phone', + 'photos' => 'Photos', + 'pictures' => 'Pictures', + 'pictures_and_videos' => 'Pictures and Videos', + 'pinpoint_location' => '* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location.', + 'play' => 'Play', + 'please_note' => 'Please Note', + 'plugins' => 'Plugins', + 'plugin_url' => 'Plugin Website', + 'public_profile' => 'Public Profile', + 'public_profile_url' => 'Public Profile URL', + 'preview' => 'Preview', + 'preview_item' => 'Preview Item', + 'preview_message' => 'Preview Message', + 'previous' => 'Previous', + 'private' => 'Private', + 'profile_color' => 'Profile Color', + 'profile_saved' => 'Your Profile Has Been Saved', + 'quick_stats' => 'Quick Stats', + 'rating' => 'Rating', + 'read' => 'Read', + 'receive' => 'Receive', + 'receive_from' => 'Receive from', + 'receive_notifications' => 'Receive Notifications', + 'recent_reports' => 'Recent Reports', + 'refresh_news_feeds' => 'Refresh News Feeds', + 'registered_email' => 'Registered Email', + 'remove' => 'Remove', + 'reply' => 'Reply', + 'report' => 'Report', + 'reports_listed' => 'Reports (from the map, listed in chronological order)', + 'reporter' => 'Reporter', + 'reporters' => 'Reporters', + 'reporter_date' => 'Reporter Date', + 'reporter_email' => 'Reporter Email', + 'reporter_first_name' => 'Reporter First Name', + 'reporter_has_been' => 'The Reporter Has Been', + 'reporter_ip' => 'Reporter IP Address', + 'reporter_last_name' => 'Reporter Last Name', + 'reporter_level' => 'Reporter Level', + 'reporter_levels' => 'Reporter Levels', + 'reporter_phone' => 'Reporter Phone', + 'reports' => 'Reports', + 'reports_btn_browse' => 'Browse', + 'reports_btn_submit' => 'Submit', + 'reports_by_this_user' => 'Reports By This User', + 'reports_categories' => 'Categories', + 'reports_count' => '%d Reports', + 'reports_date' => 'Date', + 'reports_description' => 'Description', + 'reports_download_csv' => 'Reports will be downloaded in CSV format', + 'reports_email' => 'Email', + 'reports_features' => 'Features', + 'reports_find_location' => 'Find a location near you', + 'reports_first' => 'First Name', + 'reports_last' => 'Last Name', + 'reports_location_name' => 'Location Name', + 'reports_news' => 'News Source Link', + 'reports_optional' => 'Optional Information', + 'reports_photos' => 'Upload Photos', + 'reports_return' => 'Return to the reports page', + 'reports_select_city' => 'Select a City', + 'reports_submitted' => 'Your Report has been submitted to our staff for review. We will get back to you shortly if necessary.', + 'reports_submit_new' => 'Submit a New Report', + 'reports_time' => 'Time', + 'reports_timeline' => 'Reports Timeline', + 'reports_title' => 'Report Title', + 'reports_video' => 'Video link', + 'report_an_incident' => 'Report an Incident', + 'report_details' => 'Report Details', + 'report_option_1' => 'By sending a message to', + 'report_option_2' => 'By sending an email', + 'report_option_3' => 'By sending a tweet with the hashtag/s', + 'report_option_4' => 'By filling this form on our website.', + 'report_option_external_apps' => 'By using an app', + 'report_saved' => 'Your Report Has Been Saved', + 'report_title' => 'Report Title', + 'request_information' => 'Request more information', + 'request_location' => 'Request location', + 'required' => 'Required', + 'requirements' => 'Requirements', + 'resend_confirm_email' => 'Resend Confirmation Email', + 'reset' => 'Reset', + 'reset_all_filters' => 'Reset all filters', + 'reset_password' => 'Reset Password', + 'retrieve_city_names' => 'Retrieve city names for the selected country', + 'riverid_information' => 'Accounts managed by the %s service.', + 'riverid_exists_login' => 'You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login.', + 'role' => 'Role', + 'rss' => 'RSS', + 'save' => 'Save', + 'saved' => 'Saved', + 'save_add_new' => 'Save & Add New', + 'save_close' => 'Save & Close', + 'save_report' => 'Save Report', + 'schedule' => 'Schedule', + 'scheduler' => 'Scheduler', + 'scheduler_day' => 'Day', + 'scheduler_hour' => 'Hour', + 'scheduler_log' => 'Scheduler Log', + 'scheduler_minute' => 'Minute', + 'scheduler_weekday' => 'Day of the Week', + 'search' => 'Search', + 'search_results' => 'Search Results', + 'security_code' => 'Security Code', + 'select_all' => 'Select All', + 'select_field_type' => 'Select a Field Type', + 'select_form_type' => 'Select A Form Type', + 'select_in_map' => 'Select in the map', + 'select_multiple' => 'Select as many as needed', + 'select_one' => 'Please verify that you have checked an item', + 'select_theme' => 'Select Theme', + 'send' => 'Send', + 'send_confirmation' => 'Send Confirmation', + 'sending_to' => 'Sending To', + 'sent' => 'Sent', + 'sent_by' => 'Sent by', + 'server_address' => 'Server address', + 'server_type' => 'Server type', + 'service' => 'Service', + 'service_username' => 'Service Username', + 'service_user_id' => 'Service User ID', + 'share' => 'Share', + 'shared_data' => 'Shared data', + 'share_has_been' => 'The share has been', + 'sharing' => 'Sharing', + 'shorter_map' => 'Shorter Map', + 'show' => 'Show', + 'show_all' => 'Show all', + 'show_messages' => 'Show Messages', + 'showing_reports_from' => 'Showing Reports From %1$s to %2$s', + 'site' => 'Website', + 'site_email_address' => 'site email address', + 'site_url' => 'Site URL', + 'smaller_map' => 'Smaller Map', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Sorry, you do not have any badges.', + 'source' => 'Source', + 'source_name' => 'Source name', + 'sort' => 'Sort', + 'sort_by' => 'Sort By', + 'source_url' => 'Source URL', + 'spam' => 'Spam', + 'ssl_support' => 'SSL Support?', + 'start_point' => 'From', + 'step' => 'Step', + 'submit' => 'Submit a Report', + 'submitted_by' => 'Submitted by %1$s via %2$s', + 'submit_sms' => 'Submit via SMS', + 'submit_sms1' => 'Send your SMS to', + 'submit_sms2' => 'on your phone', + 'success' => 'Success!', + 'successfuly_imported' => 'Succesfully imported', + 'surname' => 'Surname', + 'survey' => 'Survey', + 'system' => 'System', + 'taller_map' => 'Taller Map', + 'tcp_port' => 'TCP Port', + 'themes' => 'Themes', + 'theme_default' => 'Default Ushahidi Theme', + 'theme_settings' => 'Theme Settings', + 'this' => 'This', + 'this_day' => 'Today', + 'this_month' => 'This Month', + 'this_week' => 'This Week', + 'this_year' => 'This Year', + 'this_is_your_profile' => 'This is your profile.', + 'time' => 'Time', + 'title' => 'Title ', + 'to' => 'to', + 'today' => 'Today', + 'today_at' => 'Today at', + 'token' => 'Token', + 'total_reports' => 'Total Reports', + 'translated' => 'Translated', + 'translated_description' => 'Translated Description', + 'translated_title' => 'Translated Title', + 'translate_to' => 'Translate to', + 'translation' => 'Translation', + 'translation_saved' => 'Translation has been saved', + 'trusted' => 'Trusted', + 'type' => 'Type', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Unable to send email.', + 'uncategorized_reports' => 'Uncategorized Reports', + 'unread' => 'unread', + 'unverified' => 'Unverified', + 'update_feeds' => 'Update feeds', + 'upload' => 'Upload', + 'upload_guide' => 'View our report upload guides:-', + 'upload_docs_1' => 'XML Upload guide', + 'upload_docs_2' => 'CSV Upload guide', + 'upload_file' => 'File to upload', + 'upload_reports' => 'Upload Reports', + 'upload_reports_custom_forms' => 'Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that', + 'upload_reports_detail_1' => 'With the form below, you can import incidents into the Ushahidi engine.', + 'upload_reports_detail_2' => 'Reports must be uploaded in either CSV or XML format.', + 'upload_reports_detail_3' => 'When incident ID already exists in the database, the entry in the CSV/XML file will be ignored.', + 'upload_reports_detail_4' => 'It must contain at least Incident Title and Incident Date.', + 'upload_reports_detail_4b' => 'If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder.', + 'upload_reports_detail_4c' => 'If importing additional info i.e personal information and/or custom form fields', + 'upload_reports_detail_4d' => 'At least one of the personal information fields(name, surname,email) entries MUST exist. Empty records will not be imported', + 'upload_reports_detail_4e' => 'Your entries for dropdown fields, radio buttons and checkboxes match the options provided for the custom field on your instance', + 'upload_reports_detail_4f' =>'Checkbox options are separated by a comma e.g if your selected choice of fruits is apples,mangoes and grapes, your entry for this should be "apples,mangoes,grapes"', + 'upload_reports_detail_4g' =>'Date field values are in the following format: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'A Sample CSV Report', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Upload Successful', + 'upload_video' => 'Upload Video', + 'url' => 'URL', + 'user' => 'User', + 'username' => 'Username', + 'ushahidi_admin' => 'Ushahidi Admin', + 'verification' => 'Verification', + 'verified' => 'Verified', + 'verified_reports' => 'Verified Reports', + 'verify' => 'Verify', + 'verify_this_report' => 'Verify this Report', + 'version' => 'Version', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'View', + 'views' => 'Views', + 'view_all' => 'View All', + 'view_all_feeds' => 'View all feeds', + 'view_all_reports' => 'View all reports', + 'view_items' => 'View Items', + 'view_more' => 'View More', + 'view_public_profile' => 'View Public Profile', + 'view_report' => 'View Report', + 'view_reports' => 'View Reports', + 'view_video' => 'View Video', + 'visible' => 'Visible', + 'waiting_approval' => 'Waiting Approval', + 'waiting_verification' => 'Waiting Verification', + 'wider_map' => 'Wider Map', + 'web_form' => 'Web Form', + 'web' => 'Web', + 'weight' => 'Weight', + 'Weekly' => 'Weekly', + 'yes' => 'Yes', + 'yesterday' => 'Yesterday', + 'your_dashboard' => 'Your Dashboard', + 'your_file' => 'Your file', + 'zoom_in' => 'Zoom In', + 'zoom_out' => 'Zoom Out', +); +?> diff --git a/application/i18n/en_US/upgrade.php b/application/i18n/en_US/upgrade.php new file mode 100755 index 0000000000..4803389b64 --- /dev/null +++ b/application/i18n/en_US/upgrade.php @@ -0,0 +1,55 @@ + array( + 'between' => 'Invalid input data. It can either be 0 for No or 1 for Yes.', + ) , + 'upgrade_automatic' => 'Automatic Upgrade', + 'upgrade_available' => 'Available Updates', + 'upgrade_continue_btn_text' => 'Continue', + 'upgrade_db_btn_text' => 'Upgrade', + 'upgrade_db_text_1' => 'So, I\'m going to upgrade your database from version', + 'upgrade_db_text_2' => 'to the newest database version', + 'upgrade_db_text_3' => 'Click on the "Upgrade" button and just chillax as I perform the magic.', + 'upgrade_db_text_4' => 'Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze.', + 'upgrade_db_text_5' => 'Backup database before upgrade? (Highly recommended)', + 'upgrade_db_title' => 'Ushahidi database upgrade', + 'upgrade_db_info' => 'Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s).', + 'upgrade_db_up_to_date' => 'Your database version is up to date.', + 'upgrade_failed' => 'Upgrade failed at some point', + 'upgrade_manual' => 'Manual Upgrade', + 'upgrade_status' => 'Ushahidi upgrade status', + 'upgrade_text_1' => 'The instructions below detail how to manually upgrade your Ushahidi deploymentl', + 'upgrade_text_2' => '
Download
', + 'upgrade_text_3' => '
- Download the most recent Ushahidi build from', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it\'s recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
', + 'upgrade_tables' => 'Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file.', + 'upgrade_text_5' => 'Step 4: Click on the "Continue" button to upgrade the necessary tables.', + 'upgrade_text_6' => 'For automatic upgrade, click on the button below.', + 'upgrade_title_text' => 'You are currently using Ushahidi v%1$s with database version %2$d running on %3$s', + 'upgrading' => 'Upgrading', + 'upgrade_ftp_text' => 'To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Example: "localhost"', + 'upgrade_ftp_password' => 'FTP Password:', + 'upgrade_ftp_username' => 'FTP User Name:', + 'upgrade_status_info' => 'You have the latest version of Ushahidi.', + 'upgrade_status_info_2' => 'You do not need to upgrade.', + 'upgrade_db_version' => 'Database version: %d', + 'upgrade_warning_software_version' => 'Warning: Software version in version.php and database do not match.', + 'upgrade_warning_db_version' => 'Warning: Database version in version.php and database do not match.', + 'upgrade_database' => 'Database:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Downloading latest version of ushahidi...', + 'log_file' => 'Log File', + 'successfully_downloaded' => 'Successfully Downloaded. Unpacking...', + 'failed_downloading' => 'Failed downloading.', + 'successfully_unpacked' => 'Successfully Unpacked. Copying files...', + 'failed_unpacking' => 'Failed unpacking.', + 'successfully_copied' => 'Successfully Copied. Upgrading Database...', + 'failed_copying' => 'Failed copying files.', + 'backup_success' => "Database backup and upgrade successful.", + 'backup_failed' => "Failed backing up database.", + 'dbupgrade_success' => "Database upgrade successful.", + 'deleting_files' => "Deleting downloaded files...", + 'upgrade_success' => 'UPGRADE SUCCESSFUL. View Log File', +); diff --git a/application/i18n/es_AR/alerts.php b/application/i18n/es_AR/alerts.php new file mode 100755 index 0000000000..7b2187963f --- /dev/null +++ b/application/i18n/es_AR/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'El campo correo electrónico parece no tener una dirección de correo electrónica valida.', + 'email_check' => 'Ese correo electrónico ya esta registrado para recibir alertas para esa ubicación', + 'length' => 'El campo correo electrónico debe tener entre 4 y 64 caracteres.', + 'required' => 'El campo correo electrónico es obligatorio si el checkbox está marcado.', + ) , + 'alert_country' => array( + 'single_country' => 'Por favor seleccione una ubicación dentro de %s.', + ) , + 'alert_lat' => array( + 'between' => 'No ha seleccionado una ubicación valida en el mapa.', + 'required' => 'No ha seleccionado una ubicación valida en el mapa.', + ) , + 'alert_lon' => array( + 'between' => 'No ha seleccionado una ubicación valida en el mapa.', + 'required' => 'No ha seleccionado una ubicación valida en el mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'El campo teléfono móvil parece no contener la correcta cantidad de dígitos.', + 'mobile_check' => 'Ese numero de teléfono móvil ya esta registrado para recibir alertas en esa ubicación', + 'numeric' => 'El campo teléfono móvil no parece contener un numero valido. Por favor ingrese los números solo incluyendo el código del paí­s.', + 'one_required' => 'Usted debe ingresar su número de teléfono móvil o su dirección de correo electrónico.', + 'required' => 'El campo teléfono móvil es obligatorio si el checkbox está marcado.', + ) , + 'alert_radius' => array( + 'in_array' => 'No ha seleccionado un radio válido en el mapa.', + 'required' => 'No ha configurado su radio en el mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'No tiene suscriptores con alertas', + ) , + 'alerts_subscribed' => 'Está subscripto a las alertas para las categorías siguientes', + 'code_already_verified' => '¡Este código ya ha sido verificado anteriormente!', + 'code_not_found' => '¡Este código de verificación no ha sido encontrado! Por favor confirme que lo ha ingresado correctamente. Puede usar el formulario que está mas abajo para re-ingresar su código de verificación:', + 'code_verified' => 'Su código fue verificado correctamente. Ahora usted va a recibir alertas sobre incidentes que vayan sucediendo.', + 'confirm_request' => 'Para confirmar su solicitud de alerta, por favor vaya a', + 'create_more_alerts' => 'Regrese a la página de alertas para crear más alertas', + 'email_alert_request_created' => 'Su pedido de alerta por correo electrónico ha sido creado y el mensaje de verificación ha sido enviado a ', + 'email_code' => 'Por favor ingrese el código de confirmación que recibió por correo electrónico:', + 'email_error_head' => '¡Su pedido de alerta por correo electrónico NO ha sido guardado!', + 'email_ok_head' => '¡Su pedido de alerta por correo electrónico ha sido guardado!', + 'error' => '¡El sistema no pudo procesar su solicitud de confirmación!', + 'mobile_alert_request_created' => 'Su pedido de alerta móvil ha sido creado y el mensaje de verificación fue enviado a ', + 'mobile_code' => 'Por favor ingrese a continuación el código de confirmación SMS que recibió en su teléfono: ', + 'mobile_error_head' => '¡Su pedido de alerta móvil NO ha sido guardada!', + 'mobile_ok_head' => '¡Su pedido de alerta móvil ha sido guardada!', + 'settings_error' => 'Este servidor no está configurado para procesar correctamente las alertas', + 'unsubscribe' => 'Usted ha recibido este correo electrónico porque está suscrito para recibir alertas. Si no quiere seguir recibiendo alertas vaya a', + 'unsubscribed' => 'Ya no recibirá alertas de ', + 'unsubscribe_failed' => 'No pudimos eliminar su suscripción. Por favor confirme que tiene la URL correcta.', + 'verification_email_subject' => 'alertas - verificación', + 'verify_code' => 'Usted no va a recibir alertas en esta ubicación hasta que confirme su pedido.', +); diff --git a/application/i18n/es_AR/auth.php b/application/i18n/es_AR/auth.php new file mode 100755 index 0000000000..970140cd51 --- /dev/null +++ b/application/i18n/es_AR/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'El campo correo electrónico parece no contener una dirección de correo electrónico válida.', + 'exists' => 'Lo siento, ya existe una cuenta de usuario que usa ese correo electrónico.', + 'length' => 'El campo correo electrónico debe tener por lo menos 4 y no mas de 64 caracteres.', + 'required' => 'El campo correo electrónico es obligatorio.', + ) , + 'name' => array( + 'length' => 'El campo nombre completo debe tener por lo menos 3 y no mas de 100 caracteres.', + 'required' => 'El campo nombre completo es obligatorio.', + 'standard_text' => 'El campo nombre de usuario contiene caracteres no permitidos.', + ) , + 'current_password' => array( + 'length' => 'La contraseña debe tener al menos ocho caracteres', + 'login error' => 'Combinación de nombre y contraseña incorrecta', + 'matches' => 'Ingrese la misma contraseña en ambos campos', + 'required' => 'El campo contraseña es obligatorio', + 'alpha_dash' => 'El campo contraseña acepta caracteres alfanuméricaos, además de #, @, _ y -', + 'incorrect' => 'La contraseña ingresada es incorrecta', + ) , + 'new_password' => array( + 'length' => 'La contraseña debe tener al menos ocho caracteres', + 'login error' => 'Combinación de nombre y contraseña incorrecta', + 'matches' => 'Ingrese la misma contraseña en ambos campos', + 'required' => 'El campo contraseña es obligatorio', + 'alpha_dash' => 'El campo contraseña acepta caracteres alfanuméricaos, además de #, @, _ y -', + ) , + 'password' => array( + 'default' => 'Error al intentar validar la contraseña', + 'length' => 'El campo clave debe tener por lo menos 5 y no mas de 16 caracteres de largo.', + 'login error' => 'Por favor revise que ha ingresado la clave correcta.', + 'matches' => 'Por favor ingrese la misma clave en ambos campos.', + 'required' => 'El campo clave es obligatorio.', + 'riverid server down' => 'No se puede contactar el servidor de autenticación', + 'riverid' => '%s', + 'alpha_dash' => 'El campo contraseña acepta caracteres alfanuméricaos, además de #, @, _ y -', + ) , + 'password_confirm' => array( + 'matches' => 'El campo confirmación de la clave debe ser igual al campo clave.', + ) , + 'resetemail' => array( + 'email' => 'El campo correo electrónico parece no contener una dirección de correo electrónico valida.', + 'invalid' => 'Lo siento, no tenemos su dirección de correo electrónico', + 'required' => 'El campo correo electrónico es obligatorio.', + ) , + 'role' => array( + 'superadmin_modify' => 'Solo el administrador general puede editar o crear otros administradores', + ) , + 'roles' => array( + 'alpha_numeric' => 'El formato del rol es inválido.', + 'length' => 'El campo rol debe tener al menos 5 y no más de 30 caracteres de largo.', + 'required' => 'Usted debe definir al menos un rol.', + 'values' => 'Usted debe seleccionar el rol ADMIN o USUARIO.', + ) , + 'token' => array( + 'invalid' => 'El indicio de contraseña olvidada es inválido', + 'required' => 'Indicio de contraseña olvidada requerido', + ) , + 'username' => array( + 'admin' => 'El rol del usuario administrador no puede ser modificado.', + 'alpha_numeric' => 'La URL sólo puede incluir números y letras', + 'exists' => 'Lo siento, este nombre de usuario ya está siendo usado.', + 'length' => 'El campo nombre de usuario debe tener por lo menos 2 y no más de 16 caracteres.', + 'login error' => 'Por favor revise que ingreso el nombre de usuario correcto.', + 'required' => 'El campo nombre de usuario es obligatorio.', + 'superadmin' => 'El rol del usuario super-administrador no puede ser modificado.', + 'csrf' => 'Está intentando crear o editar un usuario? (Posible ataque CSRF)', + ) , +); diff --git a/application/i18n/es_AR/bug.php b/application/i18n/es_AR/bug.php new file mode 100755 index 0000000000..7c28b24db9 --- /dev/null +++ b/application/i18n/es_AR/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + ) , + 'email' => array( + 'email' => 'El campo correo electrónico no contiene una dirección de correo electrónico válida', + 'length' => 'El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo.', + 'required' => 'El campo correo electrónico es requerido si el checkbox está seleccionado.', + ) , + 'error' => array( + 'required' => 'El campo error es requerido.', + ) , + 'subject' => array( + 'length' => 'El campo asunto debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo asunto es requerido.', + ) , + 'yourname' => array( + 'length' => 'El campo nombre debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es requerido.', + ) , +); diff --git a/application/i18n/es_AR/category.php b/application/i18n/es_AR/category.php new file mode 100755 index 0000000000..ff015eda2f --- /dev/null +++ b/application/i18n/es_AR/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'El campo color debe ser de largo 6 caracteres.', + 'required' => 'El campo color es obligatorio.', + ) , + 'category_description' => array( + 'required' => 'El campo descripción es obligatorio.', + ) , + 'category_image' => array( + 'size' => 'Por favor asegúrese que los tamaños de carga de imágenes están limitados a 50KB.', + 'type' => 'El campo imagen parece no contener una imagen válida.Los únicos formatos aceptados son .jpg, .png y .gif.', + 'valid' => 'El campo imagen parece no contener un archivo válido', + ) , + 'category_title' => array( + 'length' => 'El campo título debe tener por lo menos 3 y no mas de 80 caracteres de largo.', + 'required' => 'El campo título es obligatorio.', + ) , + 'parent_id' => array( + 'already_parent' => 'Esta categoría ya tiene sub-categorías.', + 'exists' => 'La categoría padre no existe.', + 'numeric' => 'El campo categoría padre debe ser un número.', + 'parent_trusted' => 'No puede utilizar una categoría especial como nivel superior', + 'required' => 'El campo categoría padre es obligatorio.', + 'same' => 'La categoría y la categoría padre no pueden ser iguales.', + 'special' => 'Las categorías especial no pueden tener sub-categorías', + ) , +); diff --git a/application/i18n/es_AR/comments.php b/application/i18n/es_AR/comments.php new file mode 100755 index 0000000000..704e334966 --- /dev/null +++ b/application/i18n/es_AR/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + 'valid' => 'Has introducido un código de seguridad incorrecto', + ) , + 'comment_author' => array( + 'length' => 'El campo nombre debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'comment_description' => array( + 'required' => 'El campo comentarios es obligatorio.', + ) , + 'comment_email' => array( + 'email' => 'El campo correo electrónico parece no tener una dirección de correo electrónico válida.', + 'length' => 'El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo.', + 'required' => 'El campo correo electrónico es obligatorio si el checkbox está marcado.', + ) , +); diff --git a/application/i18n/es_AR/contact.php b/application/i18n/es_AR/contact.php new file mode 100755 index 0000000000..b10c34e18c --- /dev/null +++ b/application/i18n/es_AR/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'valid' => 'Por favor introduce un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + ) , + 'contact_email' => array( + 'email' => 'El campo correo electrónico no contiene una dirección de correo electrónico válida.', + 'length' => 'El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo.', + 'required' => 'El campo correo electrónico es obligatorio si el checkbox está marcado.', + ) , + 'contact_message' => array( + 'required' => 'El campo mensaje es obligatorio.', + ) , + 'contact_name' => array( + 'length' => 'El campo nombre tiene que tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'contact_subject' => array( + 'length' => 'El campo asunto tiene que tener al menos 3 caracteres de largo.', + 'required' => 'El campo asunto es obligatorio.', + ) , + 'email_send' => array( + 'failed' => 'Hubo un error al enviar tu mensaje', + ) , +); diff --git a/application/i18n/es_AR/core.php b/application/i18n/es_AR/core.php new file mode 100755 index 0000000000..40bfc7e5af --- /dev/null +++ b/application/i18n/es_AR/core.php @@ -0,0 +1,34 @@ + 'archivo de configuración', + 'controller' => 'controlador (controller)', + 'driver' => 'controlador (driver)', + 'driver_implements' => 'El driver %s para la biblioteca %s debe implementar la interfaz %s', + 'driver_not_found' => 'El driver %s para la biblioteca %s no puede ser encontrado', + 'errors_disabled' => 'Puede ir a la página principal o intentar de nuevo.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'No es posible completar este pedido', + 'helper' => 'ayudante (helper)', + 'invalid_filetype' => 'El tipo de archivo solicitado, .%s, no está permitido por el archivo de configuración', + 'invalid_method' => 'Método inválido %s llamado en %s', + 'invalid_property' => 'La propiedad %s no existe en la clase %s.', + 'library' => 'biblioteca (library)', + 'log_dir_unwritable' => 'El directorio de log no se puede escribir: %s ', + 'model' => 'modelo (model)', + 'no_controller' => 'Ushahidi no pudo encontrar un controlador para ejecutar este pedido: %s', + 'no_default_route' => 'Por favor seleccione una ruta predeterminada en config/routes.php', + 'page_not_found' => 'La página solicitada, %s, no fue encontrada.', + 'report_bug' => 'Reporte esto a Ushahidi', + 'resource_not_found' => 'El %s solicitado, %s, no fue encontrado', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Cargado en {execution_time} segundos, utilizando {memory_usage} de memoria. Generado por Ushahidi v%s.', + 'there_can_be_only_one' => 'Sólo puede haber una instancia de Ushahidi por cada pedido de página', + 'uncaught_exception' => 'Excepción no atrapada %: %s en el archivo %s en la línea %s', + 'view' => 'vista (view)', + 'view_set_filename' => 'Debe seleccionar el archivo de vistas antes de llamar al render', +); diff --git a/application/i18n/es_AR/database.php b/application/i18n/es_AR/database.php new file mode 100755 index 0000000000..38f2397c41 --- /dev/null +++ b/application/i18n/es_AR/database.php @@ -0,0 +1,10 @@ + 'Error en la Base de Datos: %s', + 'table_not_found' => 'Table "%s" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi', +); diff --git a/application/i18n/es_AR/datetime.php b/application/i18n/es_AR/datetime.php new file mode 100755 index 0000000000..480f360de2 --- /dev/null +++ b/application/i18n/es_AR/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Vie', + 'full' => 'Viernes', + ) , + 'monday' => array( + 'abbv' => 'Lun', + 'full' => 'Lunes', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sáb', + 'full' => 'Sábado', + ) , + 'sunday' => array( + 'abbv' => 'Dom', + 'full' => 'Domingo', + ) , + 'thursday' => array( + 'abbv' => 'Jue', + 'full' => 'Jueves', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => 'Martes', + ) , + 'wednesday' => array( + 'abbv' => 'Mié', + 'full' => 'Miércoles', + ) , + 'january' => array( + 'abbv' => 'Ene', + 'full' => 'Enero', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Febrero', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marzo', + ) , + 'april' => array( + 'abbv' => 'Abr', + 'full' => 'Abril', + ) , + 'may' => array( + 'abbv' => 'May', + 'full' => 'Mayo', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Junio', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Julio', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agosto', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'Septiembre', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'Octubre', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Noviembre', + ) , + 'december' => array( + 'abbv' => 'Dic', + 'full' => 'Diciembre', + ) , +); diff --git a/application/i18n/es_AR/feeds.php b/application/i18n/es_AR/feeds.php new file mode 100755 index 0000000000..050407e824 --- /dev/null +++ b/application/i18n/es_AR/feeds.php @@ -0,0 +1,19 @@ + 'FECHA', + 'feed_name' => array( + 'length' => 'El campo nombre de feed debe tener por lo menos y no más de 70 caracteres de largo.', + 'required' => 'Por favor ingrese el nombre del feed.', + ) , + 'feed_url' => array( + 'required' => 'Por favor ingrese la URL del feed.', + 'url' => 'Por favor ingrese una URL válida. Ej: http://www.ushahidi.com', + ) , + 'source' => 'FUENTE', + 'title' => 'Título', +); diff --git a/application/i18n/es_AR/footer.php b/application/i18n/es_AR/footer.php new file mode 100755 index 0000000000..b1c109804b --- /dev/null +++ b/application/i18n/es_AR/footer.php @@ -0,0 +1,9 @@ + 'php5-curl is not installed on this system', +); diff --git a/application/i18n/es_AR/form.php b/application/i18n/es_AR/form.php new file mode 100755 index 0000000000..f65ad4ac28 --- /dev/null +++ b/application/i18n/es_AR/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'El valor default no es válido', + 'length' => 'El Nombre de Campo debe tener al menos 3 y no más de 200 caracteres de largo.', + ) , + 'field_height' => array( + 'between' => 'Por favor ingrese un valor entre 0 y 50 para Alto de Campo', + ) , + 'field_isdate' => array( + 'between' => 'Usted ha ingresado un valor no valido para Campo Fecha', + 'required' => 'Por favor seleccione Si ó³ No para Campo Fecha', + ) , + 'field_name' => array( + 'length' => 'El Nombre de Campo debe tener por lo menos 3 y no más de 100 caracteres de largo.', + 'required' => 'Por favor ingrese un Nombre de Campo.', + 'duplicate' => 'El nombre de campo que ha entrado ya existe en este formulario. Por favor, ingrese uno distinto.', + ) , + 'field_required' => array( + 'between' => 'Usted ha ingresado un valor no válido para Campo Obligatorio', + 'required' => 'Por favor seleccione Si ó No para el Campo Obligatorio', + ) , + 'field_type' => array( + 'numeric' => 'Por favor seleccione un Tipo de Campo Válido.', + 'required' => 'Por favor seleccione un Tipo de Campo.', + ) , + 'field_width' => array( + 'between' => 'Por favor ingrese un valor entre 0 y 200 para Ancho de Campo', + ) , + 'form_description' => array( + 'required' => 'Por favor ingrese la descripción del formulario.', + ) , + 'form_id' => array( + 'default' => 'El formulario por defecto no puede ser eliminado.', + 'numeric' => 'Por favor seleccione a cual formulario hay que agregarle este campo.', + 'required' => 'Por favor seleccione a cual formulario hay que agregarle este campo.', + ) , + 'form_title' => array( + 'length' => 'El campo nombre de formulario debe tener al menos 3 y no más de 100 caracteres de largo.', + 'required' => 'Por favor ingrese el nombre del formulario.', + 'exists' => 'Ya existe un formulario con este título. Por favor, escoja otro. ', + ) , +); diff --git a/application/i18n/es_AR/imap.php b/application/i18n/es_AR/imap.php new file mode 100755 index 0000000000..4720b7439f --- /dev/null +++ b/application/i18n/es_AR/imap.php @@ -0,0 +1,10 @@ + 'No se pudo abrir el stream IMAP', + 'unsupported_service' => 'El servicio de correo electrónico no está soportado', +); diff --git a/application/i18n/es_AR/installer.php b/application/i18n/es_AR/installer.php new file mode 100755 index 0000000000..0b337ca484 --- /dev/null +++ b/application/i18n/es_AR/installer.php @@ -0,0 +1,84 @@ + 'Directorio base', + 'database' => 'Base de datos', + 'database_host' => 'Dirección del servidor de base de datos', + 'database_host_description' => 'Si esta utilizando Ushahidi en su propio computador, esta dirección deberá ser "localhost". Si lo está utilizando en un servidor externo, deberá obtener esta información del proovedor del servidor', + 'database_name' => 'Nombre de la base de datos', + 'database_name_description' => 'El nombre de la base de datos que utilizará Ushahidi', + 'db_information_link' => 'Para más información vea este artículo en nuestro wiki, que describe bases de datos en más detalle', + 'default_language' => 'Idioma', + 'default_language_description' => 'Cada instancia de Ushahidi posee algunos idiomas. Ud también puede agreagar otros', + 'disable' => 'Deshabilitar', + 'enable' => 'Habilitar', + 'error_summary' => 'Esta es una lista de los errores que encontramos', + 'files_location_text' => 'El directorio en su servidor donde se han copiado los archivos de Ushahidi. Esta valor fue deetectado automáticamente, por favor verifique que sea correcto. Si este campo está vacío, significa que Ushahidi está instalado en el directorio raíz', + 'finished' => 'Terminado', + 'general' => 'General', + 'google_key' => 'Llave del API de Google', + 'google_key_description' => 'Obtenga su llave del API de Google. aquí', + 'go_back' => 'Retroceder', + 'index' => array( + 'advanced' => 'INSTALACIÓN AVANZADA', + 'advanced_installation_description' => 'Obtiene toda la información para la instalación por medio de un proceso de cinco pasos, incluyendo servidor, mapar, nombre del sitio y detalles de contacto', + 'basic_installation' => 'INSTALACIÓN BÁSICA', + 'basic_installation_description' => 'Simple y rápida. Todo lo que necesita es el nombre del directorio raíz del servidor web y la información de la base de datos. Elija esta opción para realizar una instalación rápida. Luego de la instalación, puede completar la configuración del sistema en otro momento', + 'proceed' => 'Proceder', + 'welcome' => 'Bienvenido al proceso de instalación de Ushahidi. Escoja que tipo de instalación le gustaría realizar', + ) , + 'installation_successful' => 'Instalación Exitosa', + 'mail_server' => 'Servidor de Correo', + 'mail_server_host' => 'Servidor de email', + 'mail_server_host_description' => 'Ejemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Contraseña', + 'mail_server_password_description' => 'La contraseña de la cuenta de correo', + 'mail_server_port' => 'Puerto TCP del servidor de email', + 'mail_server_port_description' => 'Puertos comunes: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tipo de servidor de email', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). Cuál es la diferencia?', + 'mail_server_username' => 'Usuario del servidor de email', + 'mail_server_username_description' => 'Si utiliza una cuenta de Gmail, Hotmail, o Yahoo Mail, use la direeción de email completa para el nombre de usuario', + 'map' => 'Mapa', + 'map_provider' => 'Proveedor de Mapas', + 'map_provider_description' => 'Ushahidi puede utilizar los siguientes proveedores de mapas: Google, Bing, Yahoo or Open Street Map. Escoja el que posea mayor nivel de detalle para el área que le interese', + 'other_steps' => 'Otros pasos...', + 'password' => 'Contraseña', + 'password_description' => 'Contraseña de la base de datos', + 'previous' => 'Anterior', + 'restart_apache' => 'Por favor reinicie Apache', + 'select_mail_server_ssl' => 'Habilita o deshabilita conexiones seguras', + 'select_mail_server_ssl_description' => 'Algunos servidores de email tienen la opción de utilizar SSL al establecer una conexión. Se recomienda utilizar SSL ya que provee mayor seguridad al encriptar las comunicaciones', + 'setup_sms' => 'Configure un servidor SMS', + 'site_email' => 'Dirección de email del sistema', + 'site_email_alerts' => 'Dirección de email para alertas', + 'site_email_alerts_description' => 'Dirección de email para enviar alertas a los usuarios que lo soliciten. Esta dirección debe ser distinta a la dirección de email del sistema', + 'site_email_description' => 'Todos los mensajes del sitio utilizarán esta dirección', + 'site_name' => 'Nombre del sitio', + 'site_name_description' => 'El nombre que desea utilizar para este sitio web', + 'site_tagline' => 'Subtítulo', + 'site_tagline_description' => 'El subtítulo del sitio', + 'summary' => array( + 'text_1' => 'El servidor web debe tener permiso de escritura a los siguientes archivos y directorios', + 'text_2' => '

Puede encontrar más información en cómo administrar permisos en:

+ ', + 'text_3' => 'Antes de comezar asegurese que el servidor web tenga permiso de escritura a los siguientes archivos y directorios. Puede ser necesario cambiar los permisos en forma manual', + 'text_4' => 'La siguiente información será necesaria para el proceso de instalación', + ) , + 'table_prefix' => 'Prefijo para las tablas', + 'table_prefix_description' => 'Usualmente no se utiliza ningún prefijo. Sin embargo, si se utilizan múltiples instancias del sistema en la misma base de datos, se debe colocar un prefijo para cada una', + 'title' => 'Título', + 'to_login' => 'Para ingresar, vaya a', + 'upload_data' => 'Subir reportes', + 'username' => 'Usuario', + 'username_description' => 'El usuario de la base de datos', + 'use_credentials' => 'y utilice este usuario y contraseña', + 'view_site' => 'Vea su sitio web', +); diff --git a/application/i18n/es_AR/layer.php b/application/i18n/es_AR/layer.php new file mode 100755 index 0000000000..75508faf61 --- /dev/null +++ b/application/i18n/es_AR/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El color seleccionado debe tenere seis caracteres', + 'required' => 'Se requiere un color', + ) , + 'layer_file' => array( + 'type' => 'El archivo especificado no es v', + 'valid' => 'El archivo especificado no es v', + ) , + 'layer_name' => array( + 'length' => 'El nombre debe tener entre tres y 80 caracteres', + 'required' => 'Se requiere un nombre', + ) , + 'layer_url' => array( + 'atleast' => 'Se requier un archivo o un URL de un KML', + 'both' => 'No se puede especificar un URL y un archivo KML. Utilize solamente uno', + 'url' => 'Por favor ingrese un URL v', + ) , +); diff --git a/application/i18n/es_AR/libraries.php b/application/i18n/es_AR/libraries.php new file mode 100755 index 0000000000..8b7a990f52 --- /dev/null +++ b/application/i18n/es_AR/libraries.php @@ -0,0 +1,27 @@ + 'No es posible conectarse al servidor de Akismet', + 'akismet_cannot_retrieve' => 'No es posible recibir una respuesta de Akismet', + 'api_library_not_found' => 'El API: %s para la clase %s no se encuentra. Verifique la tabla de ruteo del API.', + 'askimet_invalid_apikey' => 'La llave API de Akismet no es válida', + 'clickatell_fopen_error' => 'Error intentando realizar un fopen al enviar.
Verifique que PHP soporta OpenSSL y que la versión de PHP es mayor a 5.2', + 'clickatell_message_too_long' => 'El mensaje es demasiado largo. (Largo actual=', + 'clickatell_no_destination_address' => 'Debe especificar una dirección de destino (A)', + 'clickatell_no_sender_address' => 'Debe especificar una dirección de origen (DE)', + 'clickatell_unicode_message_too_long' => 'El mensaje en Unicode es demasiado largo. (Largo actual=', + 'clickatell_unsupported_method' => 'Método de envío no soportado', + 'invalid_api_library' => 'La librería de API %s no es válida. Todas las librerías de API deben ser subclases de %s', + 'upgrade_directory_not_deleted' => 'El directorio %s no puede ser borrado', + 'upgrade_extracting_error' => 'Error cuando se extraía: %s', + 'upgrade_failed' => 'La descarga de la última versión de Ushahidi falló. Código HTTP', + 'upgrade_file_not_copied' => 'El archivo %s no puede ser copiado', + 'upgrade_file_not_deleted' => 'El archivo %s no puede ser borrado', + 'upgrade_title' => 'Programa para la actualización de Ushahidi', + 'upgrade_zip_error' => 'El archivo comprimido %s, no puede ser escrito', + 'riverid_variable_not_available' => '%s no está disponible en la clase RiverID.', +); diff --git a/application/i18n/es_AR/maintenance.php b/application/i18n/es_AR/maintenance.php new file mode 100755 index 0000000000..581b6508e1 --- /dev/null +++ b/application/i18n/es_AR/maintenance.php @@ -0,0 +1,9 @@ + 'Lo sentimos, estamos en mantenimiento. Por favor intenta de nuevo en algunos minutos. Gracias.', +); diff --git a/application/i18n/es_AR/message.php b/application/i18n/es_AR/message.php new file mode 100755 index 0000000000..134c8662eb --- /dev/null +++ b/application/i18n/es_AR/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + ) , + 'email' => array( + 'email' => 'El campo Email parece no tener una dirección de email válida?', + 'length' => 'El campo Email debe tener al menos 4 y no más de 64 caracteres de largo.', + 'required' => 'El campo Email es obligatorio cuando el checkbox está marcado..', + ) , + 'message' => array( + 'required' => 'El campo comentarios es obligatorio.', + ) , + 'name' => array( + 'length' => 'El campo nombre debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'phone' => array( + 'length' => 'El campo teléfono no es válido.', + ) , +); diff --git a/application/i18n/es_AR/mhi.php b/application/i18n/es_AR/mhi.php new file mode 100755 index 0000000000..bc53be7c2a --- /dev/null +++ b/application/i18n/es_AR/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido.', + 'required' => 'Por favor ingrese el código de seguridad.', + ) , + 'contact_email' => array( + 'email' => 'El campo correo electrónico no contiene una dirección de correo electrónico válida.', + 'required' => 'Por favor ingrese una dirección de correo electrónico válida.', + ) , + 'contact_message' => array( + 'required' => 'El campo mensaje es requerido.', + ) , + 'contact_subject' => array( + 'length' => 'El campo asunto debe tener al menos 3 caracteres.', + 'required' => 'El campo asunto es requerido.', + ) , +); diff --git a/application/i18n/es_AR/notifications.php b/application/i18n/es_AR/notifications.php new file mode 100755 index 0000000000..076400dea2 --- /dev/null +++ b/application/i18n/es_AR/notifications.php @@ -0,0 +1,35 @@ + 'Este mensaje ha sido enviado desde su página web.', + 'admin_login_url' => 'Login Administrador', + 'admin_new_comment' => array( + 'message' => 'Un nuevo comentario ha sido publicado en su página web en respuesta a: ', + 'subject' => 'Nuevo Comentario', + ) , + 'admin_new_email' => array( + 'message' => 'Un nuevo email ha sido publicado en su página web', + 'subject' => 'Nuevo mensaje email', + ) , + 'admin_new_report' => array( + 'message' => 'Su sitio ha recibido un nuevo reporte', + 'subject' => 'Nuevo reporte', + ) , + 'admin_new_sms' => array( + 'message' => 'Un nuevo mensaje de texto ha sido publicado en su página web', + 'subject' => 'Nuevo mensaje de texto', + ) , + 'member_new_alert' => array( + 'message' => 'Ha recibido una alerta.', + 'subject' => 'Nueva alerta.', + ) , + 'member_new_message' => array( + 'message' => 'Ha recibido un mensaje privado', + 'subject' => 'Nuevo mensaje privado', + 'footer' => 'Para responder diríjase a: ', + ) , +); diff --git a/application/i18n/es_AR/page.php b/application/i18n/es_AR/page.php new file mode 100755 index 0000000000..4239c04250 --- /dev/null +++ b/application/i18n/es_AR/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Por favor introduce un Título de Página', + 'length' => 'El Título de la página debe tener entre 3 y 150 caracteres', + ) , + 'page_tab' => array( + 'required' => 'Por favor introduce una etiqueta para la página', + ) , + 'page_description' => array( + 'required' => 'Por favor introduce una descripción para la página', + ) , +); diff --git a/application/i18n/es_AR/permissions.php b/application/i18n/es_AR/permissions.php new file mode 100755 index 0000000000..b5f42fc4ca --- /dev/null +++ b/application/i18n/es_AR/permissions.php @@ -0,0 +1,26 @@ + 'Ver Reportes', + 'reports_edit' => 'Crear/Editar Reportes', + 'reports_approve' => 'Aprobar Reportes', + 'reports_verify' => 'Verificar Reportes', + 'reports_comments' => 'Administrar Comentarios', + 'reports_download' => 'Descargar Reportes', + 'reports_upload' => 'Subir Reportes', + 'messages' => 'Administrar Mensajes', + 'messages_reporters' => 'Administrar Informantes', + 'stats' => 'Ver Estadísticas', + 'settings' => 'Modificar Configuración', + 'manage' => 'Administrar Panel', + 'users' => 'Administrar Usuarios', + 'manage_roles' => 'Administrar Roles', + 'checkin' => 'Ver Checkins', + 'checkin_admin' => 'Administrar Checkins', + 'admin_ui' => 'Acceso Administración', + 'member_ui' => 'Acceso Miembros', +); diff --git a/application/i18n/es_AR/private_message.php b/application/i18n/es_AR/private_message.php new file mode 100644 index 0000000000..977f718762 --- /dev/null +++ b/application/i18n/es_AR/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'El Parent ID debe ser numérico', + ) , + 'private_to' => array( + 'required' => 'El campo "A:" es obligatorio', + 'exists' => 'El usuario al que deseas hacer el envío, no existe', + ) , + 'private_subject' => array( + 'required' => 'El campo "Asunto" es obligatorio.', + 'length' => 'El Asunto debe tener entre 3 y 150 caracteres en total', + ) , + 'private_message' => array( + 'required' => 'El campo "Mensaje" es obligatorio', + ) , +); diff --git a/application/i18n/es_AR/report.php b/application/i18n/es_AR/report.php new file mode 100755 index 0000000000..cbea0b0cba --- /dev/null +++ b/application/i18n/es_AR/report.php @@ -0,0 +1,139 @@ + '¡Hubo un error!', + 'country_name' => array( + 'single_country' => 'La ubicación del reporte debe estar dentro del país seleccionado en la configuración del sistema %s.', + ) , + 'custom_field' => array( + 'values' => 'Por favor, introduzca un valor válido para el campo "% s".', + 'numeric' => 'El campo "%s" debe ser numérico', + 'required' => 'El campo "%s" es requerido.', + 'not_exist' => 'El campo "%s" no existe.', + 'permission' => 'El campo "%s" no puede ser editado por su cuenta.', + 'email' => 'El campo "%s" debe conterner una dirección de correo electrónico válida.', + 'phone' => 'El campo "%s" debe contener un número de teléfono válido', + 'date_mmddyyyy' => 'El campo "%s" debe contener una fécha válida (MM/DD/YYYY)', + 'date_ddmmyyyy' => 'El campo "%s" debe contener una fecha válida (DD/MM/YYYY)', + ) , + 'data_include' => array( + 'between' => 'Por favor seleccionar un item válido para incluir en la descarga', + 'numeric' => 'Por favor seleccionar un item válido para incluir en la descarga', + ) , + 'data_active' => array( + 'between' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + 'numeric' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + 'required' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + ) , + 'data_verified' => array( + 'between' => 'Por favor seleccione "Reportes Esperando Verificación" o "Reportes Verificados" o ambos.', + 'numeric' => 'Por favor seleccione "Reportes Esperando Verificación" o "Reportes Verificados" o ambos.', + 'required' => 'Por favor seleccione "Reportes Esperando Verificación" o "Reportes Verificados" o ambos.', + ) , + 'data_point' => array( + 'between' => 'Por favor seleccionar un tipo válido de informe a descargar', + 'numeric' => 'Por favor seleccionar un tipo válido de informe a descargar', + 'required' => 'Por favor seleccionar un tipo válido de informe a descargar', + ) , + 'format' => array( + 'required' => 'Debe seleccionar un formato de descarga. Seleccione CSV o XML', + 'valid' => 'Por favor, seleccione un formato válido para descargar sus reportes.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'El campo fecha DESDE parece no contener una fecha válida?', + 'range' => 'Por favor ingrese una fecha DESDE válida. No puede ser mayor al día de hoy.', + ) , + 'incident_active' => array( + 'between' => 'Por favor ingrese un valor válido para Aprobar Este Informe', + 'required' => 'Por favor ingrese un valor válido para Aprobar Este Informe', + ) , + 'incident_ampm' => array( + 'validvalues' => 'El campo am/pm parece no contener un valor válido?', + ) , + 'incident_category' => array( + 'numeric' => 'El campo categoría parece no contener una categoría válida?', + 'required' => 'El campo categoría es obligatorio.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'El campo fecha parece no contener una fecha válida?', + 'date_mmddyyyy' => 'El campo fecha parece no contener una fecha válida?', + 'required' => 'El campo fecha es obligatorio.', + ) , + 'incident_description' => array( + 'required' => 'El campo descripción es obligatorio.', + ) , + 'incident_hour' => array( + 'between' => 'El campo hora parece no contener una hora válida?', + 'required' => 'El campo hora es obligatorio.', + ) , + 'incident_information' => array( + 'alpha' => 'Por favor ingrese un valor válido para Information Probability', + 'length' => 'Por favor ingrese un valor válido para Information Probability', + ) , + 'incident_minute' => array( + 'between' => 'El campo hora parece no contener una hora válida?', + 'required' => 'El campo hora es obligatorio.', + ) , + 'incident_news' => array( + 'url' => 'El campo enlaces a fuentes de noticias parece no contener una URL válida?', + ) , + 'incident_photo' => array( + 'size' => 'Por favor que los tamaños de las fotos subidas no tienen más de 2MB.', + 'type' => 'El campo Subir Fotos parece no contener una imágen válida. Los únicos formatos aceptados son .JPG, .PNG y .GIF.', + 'valid' => 'El campo Subir Fotos parece no contener un campo válido', + ) , + 'incident_source' => array( + 'alpha' => 'Por favor ingrese un valor válido para Source Reliability', + 'length' => 'Por favor ingrese un valor válido para Source Reliability', + ) , + 'incident_title' => array( + 'length' => 'El campo titulo debe tener al menos 3 y no más de 200 caracteres de largo.', + 'required' => 'El campo titulo es obligatorio.', + 'csrf' => 'Posible ataque CSRF. ¿Realmente quiere crear/editar un reporte?', + ) , + 'incident_verified' => array( + 'between' => 'Por favor ingrese un valor válido para Verificar Este Informe', + 'required' => 'Por favor ingrese un valor válido para Verificar Este Informe', + ) , + 'incident_video' => array( + 'url' => 'El campo enlaces a vídeo parece no contener una URL válida?', + ) , + 'latitude' => array( + 'between' => 'The latitude field does not appear to contain a valid latitude?', + 'required' => 'The latitude field is required.', + ) , + 'locale' => array( + 'alpha_dash' => 'El campo locale tiene un valor incorrecto. ', + 'exists' => 'Este informe ya tiene una traducción para ese idioma', + 'length' => 'El campo locale tiene un valor incorrecto. ', + 'locale' => 'El Informe Original y la Traducción tienen el mismo locale (idioma)', + 'required' => 'El locale es obligatorio.', + ) , + 'location_name' => array( + 'length' => 'El campo nombre de lugar debe tener al menos 3 y no más de 200 caracteres de largo.', + 'required' => 'El campo nombre de lugar es obligatorio.', + ) , + 'longitude' => array( + 'between' => 'El campo longitud parece no contener una longitud válida?', + 'required' => 'El campo longitud es obligatorio.', + ) , + 'person_email' => array( + 'email' => 'El campo email parece no contener una dirección de email válida?', + 'length' => 'El campo email debe tener al menos 4 y no más de 64 caracteres de largo.', + ) , + 'person_first' => array( + 'length' => 'El campo nombre debe tener al menos 3 y no más de 100 caracteres de largo.', + ) , + 'person_last' => array( + 'length' => 'El campo apellido debe tener al menos 3 y no más de 100 caracteres de largo.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'El campo fecha HASTA parece no contener una fecha válida?', + 'range' => 'Por favor ingrese una fecha HASTA válida. No puede ser mayor al día de hoy.', + 'range_greater' => 'Su fecha DESDE no puede ser mayor a su fecha HASTA.', + ) , +); diff --git a/application/i18n/es_AR/reporters.php b/application/i18n/es_AR/reporters.php new file mode 100755 index 0000000000..274e2be2ec --- /dev/null +++ b/application/i18n/es_AR/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'El campo latitud parece no contener una latitud válida.', + 'required' => 'El campo latitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación.', + ) , + 'level_id' => array( + 'numeric' => 'El campo Nivel de Reporte parece no contener una nivel válido.', + 'required' => 'El campo "Informante" no parece ser válido', + ) , + 'location_name' => array( + 'length' => 'El campo nombre de ubicación debe tener al menos 3 y no más de 200 caracteres de largo.', + 'required' => 'El campo ubicación es requerido.', + ) , + 'longitude' => array( + 'between' => 'El campo longitud parece no contener una longitud válida.', + 'required' => 'El campo longitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación.', + ) , + 'reporter_id' => array( + 'numeric' => 'Informante no válido', + 'required' => 'nformante no válido', + ) , +); diff --git a/application/i18n/es_AR/reports.php b/application/i18n/es_AR/reports.php new file mode 100644 index 0000000000..a85de255b5 --- /dev/null +++ b/application/i18n/es_AR/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Por favor verifica que has seleccionado un ítem.', + 'numeric' => 'Por favor verifica que has seleccionado un ítem.', + 'categories_required' => 'Los reportes deben ser categorizados antes de ser aprobados.', + ) , + 'action' => array( + 'permission' => 'No tienes permisos para realizar esta acción.', + ) , + 'uploadfile' => array( + 'required' => 'Debes seleccionar un archivo para cargar', + 'type' => 'El archivo a subir debe ser del formato .csv o .xml', + 'valid' => 'El campo Carga de Archivos no parece contener un archivo válido', + ) , +); diff --git a/application/i18n/es_AR/roles.php b/application/i18n/es_AR/roles.php new file mode 100755 index 0000000000..edc5e48038 --- /dev/null +++ b/application/i18n/es_AR/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El campo descripción debe tener al menos 3 y no más de 100 caracteres.', + 'required' => 'El campo descripción es requerido.', + ) , + 'name' => array( + 'alpha_numeric' => 'El campo nombre debe contener solo números y letras.', + 'length' => 'El campo nombre debe tener al menos 2 y no más de 30 caracteres.', + 'nomodify' => 'El rol de SuperAdmin no puede ser modificado.', + 'required' => 'El campo nombre es requerido.', + ) , + 'access_level' => array( + 'numeric' => 'Nivel de accesso debe ser un número entre 0 y 100', + 'required' => 'Nivel de accesso debe ser un número entre 0 y 100', + ) , + 'permissions' => array( + 'numeric' => 'Los permisos del campo deberá ser un número entre 0 - 100.', + ) , +); diff --git a/application/i18n/es_AR/settings.php b/application/i18n/es_AR/settings.php new file mode 100755 index 0000000000..332d45466a --- /dev/null +++ b/application/i18n/es_AR/settings.php @@ -0,0 +1,231 @@ + array( + 'between' => 'El campo comentarios permitidos no contiene un valor válido.', + 'required' => 'El campo comentarios permitidos es obligatorio.', + ) , + 'allow_feed' => array( + 'between' => 'El campo incluir feed no contiene un valor válido?', + 'required' => 'El campo incluir feed es obligatorio.', + ) , + 'allow_feed_category' => array( + 'required' => 'El campo incluir feed es obligatorio.', + ) , + 'allow_alerts' => array( + 'between' => 'El campo Permitir Alertas no contiene un valor válido.', + 'required' => 'Es campo Permitir Alertas es obligatorio.', + ) , + 'allow_reports' => array( + 'between' => 'El campo informes permitidos no contiene un valor válido.', + 'required' => 'El campo informes permitidos es obligatorio.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'El campo Compartir Estadísticas no contiene un valor válido.', + 'required' => 'El campo Compartir Estadísticas es obligatorio.', + ) , + 'api' => array( + 'default_record_limit' => 'Número de registros a obtener en cada llamada al API', + 'maximum_record_limit' => 'Máximo número de registros a obtener en cada llamada al API', + 'maximum_requests_per_ip_address' => 'Máximo número de llamadas al API por cada dirección IP cliente', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'El campo Akismet no contiene un valor válido.', + 'length' => 'El campo Akismet no contiene un valor válido.', + ) , + 'banner_image' => array( + 'type' => 'El campo Banner del Sitio parece contener una imagen no válida. Los únicos formatos aceptados son . JPG,. PNG y. GIF.', + 'size' => 'Por favor, asegúrese de que el tamaño de la imagen del banner es menor que 250 KB.', + 'valid' => 'El campo "imagen de banner" no contiene un archivo válido.', + ) , + 'cache_pages' => array( + 'between' => 'El campo Páginas de Caché es obligatorio.', + 'required' => 'El campo Páginas de Caché no contiene un valor válido.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'El campo Duración de Páginas en Caché no contiene un valor válido.', + 'required' => 'El campo Duración de Páginas en Caché es obligatorio.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Parece que su servidor no está configurado para soportar URLs limpias. Es necesario que cambie la configuración de su servidor antes de que pueda habilitar las URLs limpias. Vea más información sobre cómo habilitar URLs limpias en este mensaje (en inglés)', + 'clean_url_enabled' => 'Esta opción permite que se pueda acceder a Ushahidi via URLs "limpias", es decir sin "index.php" en la URL.', + 'enable_clean_url' => 'Habilitar URLs limpias.', + 'title' => 'URLs limpias.', + ) , + 'clickatell_api' => array( + 'length' => 'El campo número de API Clickatell debe tener a lo más 20 caracteres de largo.', + 'required' => 'El campo número de API Clickatell es obligatorio.', + ) , + 'clickatell_password' => array( + 'length' => 'El campo clave de Clickatell debe tener al menos 5 y no más de 50 caracteres de largo.', + 'required' => 'El campo clave de Clickatell es obligatorio.', + ) , + 'clickatell_username' => array( + 'length' => 'El campo nombre de usuario Clickatell debe tener a lo más 50 caracteres de largo.', + 'required' => 'El campo nombre de usuario Clickatell es obligatorio.', + ) , + 'configure_map' => 'Configure el Mapa', + 'default_location' => 'Ubicación Predeterminada', + 'default_map_all' => array( + 'alpha_numeric' => 'El campo color del feed no contiene un valor válido.', + 'length' => 'El campo color debe tener a lo más 6 caracteres.', + 'required' => 'El campo color es obligatorio.', + ) , + 'default_map_view' => 'Vista predeterminada', + 'default_zoom_level' => 'Nivel de detalle predeterminado', + 'download_city_list' => 'Descargar lista de ciudades', + 'email_host' => array( + 'length' => 'El puerto del servidor de correo es demasiado largo', + 'numeric' => 'El puerto del servidor de correo debe ser un número.', + ) , + 'email_password' => array( + 'length' => 'La contraseña del servidor de correo debe tener al menos 5 y no más de 50 caracteres de largo.', + 'required' => 'La contraseña del servidor de correo es obligatoria.', + ) , + 'email_port' => array( + 'length' => 'El puerto del servidor de correo es demasiado largo', + 'numeric' => 'El puerto del servidor de correo debe ser un número.', + ) , + 'email_servertype' => array( + 'length' => 'El campo Tipo de Servidor de Correo excede la longitud máxima.', + 'required' => 'El campo Tipo de Servidor de Correo es obligatorio', + ) , + 'email_username' => array( + 'length' => 'El campo Usuario de Servidor de Correo excede la longitud máxima (50).', + 'required' => 'El campo Usuario de Servidor de Correo es obligatorio.', + ) , + 'facebook' => array( + 'title' => 'Opciones de configuración de Facebook', + 'description' => 'Para obtener esta información deberá crear una nueva apliçación en', + 'app_id' => 'ID de Aplicación de Facebook', + 'app_secret' => 'Secreto de Aplicación de Facebook', + ) , + 'google_analytics' => array( + 'length' => 'El campo Google Analytics debe contener un ID Web Property válido en el formato UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'habilitar HTTPS', + 'https_disabled' => 'Esta opción permite transmisión de datos sin cifrado (protocolo HTTP)', + 'https_enabled' => 'Esta opción permite transmisión de datos cifrados (protocolo HTTPS) y brinda mayor seguridad', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'El campo items por página (Frontend) parece no contiene un valor válido.', + 'required' => 'El campo items por página (Frontend) es obligatorio.', + ) , + 'items_per_page_admin' => array( + 'between' => 'El campo items por página (Admin) no contiene un valor válido.', + 'required' => 'El campo items por página (Admin) es obligatorio.', + ) , + 'map' => array( + 'default_location' => 'Ingrese la información de configuración del proveedor de servicios de mapeo', + 'zoom' => 'Nivel de zoom', + ) , + 'map_provider' => array( + 'choose' => 'Escoja un proveedor', + 'enter_api' => 'Ingrese la llave del API', + 'get_api' => 'Obtenga la llave del API', + 'info' => 'Ingrese la información de configuración del proveedor de servicios de mapeo', + 'name' => 'Proveedor de Mapas', + ) , + 'map_timeline' => 'Línea de Tiempo', + 'map_settings' => 'Configuración del Mapa', + 'multiple_countries' => '¿Este sistema se utiliza en múltiples países?', + 'select_default_location' => 'Por favor escoja el país predeterminado', + 'set_location' => 'Seleccione la ubicación exacta en el mapa', + 'site' => array( + 'allow_clustering' => 'Agrupar los reportes en el mapa', + 'allow_comments' => 'Cualquiera puede agregar información a los reportes', + 'allow_feed' => 'Incluir noticias?', + 'allow_feed_category' => 'Crear nueva Categoría desde feeds', + 'allow_alerts' => 'Permitir que los usuarios se suscriban a las alertas', + 'allow_reports' => 'Permitir a los usuarios a enviar reportes', + 'api_akismet' => 'Llave API de Akismet', + 'banner' => 'Cartel en la página principal', + 'blocks_per_row' => 'Bloques por fila', + 'cache_pages' => 'Páginas de caché', + 'cache_pages_lifetime' => 'Duración de las páginas de caché', + 'checkins' => 'Habilitar Checkins', + 'copyright_statement' => 'Mensaje de derechos de autor', + 'default_category_colors' => 'Colores predeterminados para las categorías', + 'default_category_icons' => 'Icono predeterminado para todas las categorías', + 'delete_banner_image' => 'Borrar el cartel de la página principal', + 'delete_default_map_all_icon' => 'Borrar ícono predeterminado', + 'display_contact_page' => 'Mostrar página de contactos', + 'display_howtohelp_page' => 'Muestra página "Cómo Ayudar"', + 'email_alerts' => 'Dirección de correo electrónico para las alertas', + 'email_notice' => 'Para recibir reportes por correo electrónico, por favor configure su cuenta de correo electrónico.', + 'email_site' => 'Dirección de correo electrónico del sistema', + 'google_analytics' => 'Servicio de estadísticas de Google (Google Analytics)', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Items por Página - Página Inicial', + 'items_per_page_admin' => 'Items por Página - Administración', + 'kismet_notice' => 'Evite recibir correo basura utilizando Akismet.
Puede obtener una llave gratuita registrando una cuenta de WordPress.com', + 'laconica_configuration' => 'Configuración de Laconica', + 'laconica_site' => 'Website Laconica', + 'language' => 'Idioma del sitio', + 'manually_approve_users' => 'Aprobar nuevos usuarios manualmente', + 'message' => 'Mensaje en página principal', + 'name' => 'Nombre del sitio', + 'private_deployment' => 'Sitio privado', + 'require_email_confirmation' => 'Verificar la dirección de correo de los usuarios', + 'submit_report_message' => 'Enviar un mensaje con el reporte', + 'share_site_stats' => 'Compartir las estadísticas del sitio', + 'tagline' => 'Subtítulo', + 'timezone' => 'Zona horaria', + 'title' => 'Configuración del Sistema', + 'twitter_configuration' => 'Configuración de Twitter', + 'twitter_hashtags' => 'Hashtags (Separar con comas)', + ) , + 'site_email' => array( + 'email' => 'El campo email del sitio parece no contener una dirección de email válida?', + 'length' => 'El campo email del sitio debe tener al menos 4 y no más de 100 caracteres de largo.', + ) , + 'site_name' => array( + 'length' => 'El campo nombre del sitio debe tener al menos tres y no más de 50 caracteres de largo.', + 'required' => 'El campo nombre del sitio es obligatorio.', + ) , + 'site_tagline' => array( + 'length' => 'El campo tagline debe tener al menos 3 y no más de 100 caracteres de largo.', + 'required' => 'El campo tagline es obligatorio.', + ) , + 'sms' => array( + 'clickatell_api' => 'Clave del API', + 'clickatell_check_balance' => 'Saldo de Cuenta', + 'clickatell_load_balance' => 'Cargar Saldo', + 'clickatell_password' => 'Clave', + 'clickatell_text_1' => 'Asociése al servicio Clickatells seleccionando aquí', + 'clickatell_text_2' => 'Ingrese su información de cuenta de Clickatell', + 'clickatell_username' => 'Usuario', + 'flsms_download' => 'Descargar e instalar FrontlineSMS', + 'flsms_text_1' => 'Ingrese el número telefónico para ingreso a Frontline SMS', + 'flsms_text_2' => 'Ingrese el número sin "+" ni guiones', + 'option_1' => 'Opción 1: Use Frontline SMS', + 'option_2' => 'Opción 2: Use un sistema SMS externo', + 'title' => 'Opciones de Configuración SMS', + ) , + 'sms_no1' => array( + 'length' => 'El campo teléfono 1 no es válido.', + 'numeric' => 'El campo teléfono 1 debe contener sólo números.', + ) , + 'sms_no2' => array( + 'length' => 'El campo teléfono 2 es demasiado largo', + 'numeric' => 'El campo teléfono 2 debe contener sólo números.', + ) , + 'sms_no3' => array( + 'length' => 'El campo teléfono 3 es demasiado largo', + 'numeric' => 'El campo teléfono 3 debe contener sólo números.', + ) , + 'twitter' => array( + 'title' => 'Opciones de configuración de Twitter', + 'description' => 'Para obtener la información a continuación, configura el sitio como una nueva aplicación de Twitter en', + 'api_key_secret' => 'Llave de seguridad', + 'token' => 'Token de acceso', + 'token_secret' => 'Clave de Token de Acceso', + ) , + 'test_settings' => 'Probar la configuración', +); diff --git a/application/i18n/es_AR/sharing.php b/application/i18n/es_AR/sharing.php new file mode 100755 index 0000000000..9b10bc55bd --- /dev/null +++ b/application/i18n/es_AR/sharing.php @@ -0,0 +1,25 @@ + 'Fecha de ingreso', + 'date_added' => 'Agregado el', + 'last_access' => 'Último acceso', + 'sharing_color' => array( + 'length' => 'El campo color debe tener 6 caracteres de largo.', + 'required' => 'El campo color es obligatorio.', + ) , + 'sharing_name' => array( + 'length' => 'El nombre para Compartir no parece ser válido.', + 'required' => 'Un nombre para Compartir es requerido.', + ) , + 'sharing_url' => array( + 'exists' => 'The site url already exists', + 'length' => 'La URL del sitio no es válida.', + 'required' => 'La URL del sitio es obligatoria.', + 'url' => 'The site url field does not appear to contain a valid URL?', + ) , +); diff --git a/application/i18n/es_AR/stats.php b/application/i18n/es_AR/stats.php new file mode 100755 index 0000000000..5487100441 --- /dev/null +++ b/application/i18n/es_AR/stats.php @@ -0,0 +1,42 @@ + 'Aprobado', + 'categories' => 'Categorías', + 'category_impact' => 'Por Categorías', + 'category_impact_description' => 'Este gráfico presenta una vista linear de los reportes, clasificados por categoría. Desplácese de un lado a otro para comparar las diferentes categorías. Mueva el puntero sobre el gráfico para más detalles', + 'choose_date_range' => 'Escoja un rango de fechas', + 'countries' => 'Países', + 'country' => 'País', + 'country_breakdown' => 'Por País', + 'description' => 'Esta es la sección de estadísticas. Use los enlaces para obtener diferentes vistas de la información recolectada', + 'error' => 'Error', + 'glossary' => 'Glosario', + 'hit_summary' => 'Conexiones', + 'legend' => 'Códigos', + 'pageviews' => 'Número de páginas visitadas', + 'pageviews_description' => 'El número total de páginas que los visitantes han mirado en este sitio', + 'reports' => 'Reportes', + 'reports_categories' => 'Categorías de Reportes', + 'reports_statistics' => 'Estadísticas de Reportes', + 'reports_status' => 'Estado de los Reportes', + 'report_punchcard' => 'Incidencia Hora/Día', + 'report_stats' => 'Estadísticas de Reportes', + 'stats_not_setup' => 'La configuración de estadísticas no esta completa', + 'time_range_1' => '1 Mes', + 'time_range_2' => '3 Meses', + 'time_range_3' => '6 Meses', + 'time_range_all' => 'Todos', + 'unapproved' => 'No Aprobado', + 'unique_visitors' => 'Visitantes', + 'unique_visitors_description' => 'Es la cantidad de personas que han visitado este sitio, y se determina utilizando cookies. Si el navegador del visitante no acepta cookies, la visita es registrada utilizando su dirección de IP, el navegador, plugins instalados, sistema operativo, etc.', + 'unverified' => 'No Verificados', + 'verified' => 'Verificado', + 'visitor_summary' => 'Visitantes', + 'visits' => 'Visitas', + 'visits_description' => 'Una "visita" es un visitante al sitio que hace al menos 30 minutos que no mira una página de esta sitio', +); diff --git a/application/i18n/es_AR/tooltips.php b/application/i18n/es_AR/tooltips.php new file mode 100755 index 0000000000..4fc6d3c8eb --- /dev/null +++ b/application/i18n/es_AR/tooltips.php @@ -0,0 +1,76 @@ + array( + 'add_to_category' => 'Esto agrega el reporte a categorías adicional. Si aquí selecciona Categoría 1 y el reporte ya tiene Categoría 2 agregado a él, el reporte entonces tendrá Categoría 1 y Categoría 2.', + 'approve' => 'Aprueba un reporte o no. Zi aprueba, ', + 'assign_badge' => 'Será capaz de asignar una medalla al usuario siendo activado. Indique la medalla que será asignada aquí.', + 'between_times' => 'Este es un rango de horas y/o minutos entre dos tiempos en format 24 horas. Si ingresa un tiempo anterior en el segundo campo, este será intercambiado con el primero. Este tiempo deberá estar en un simple día. Además, este tiempo es chequeado nuevamente la veces que haya configurado en el área de ajustes de su sitio y no necesariamente la zona horaria del usuario interactuando con su instalación. Dejar esto en 00:00 a 00:00 para ignorar este cualificador.', + 'category' => 'Si desea que los disparadores se activen solamente cuando se está utilizando una determinada categoría, esto puede definirse aquí. Esto permitirá que un disparador sea activado sólo si se utiliza una de las categorías predefinidas. Por ejemplo, si se ha seleccionado "categoría 1 y categoría 2" y luego un informe es remitido utilizando las categorías 2 y 3, pasará la prueba.', + 'days_of_the_week' => 'Si estas acciones ocurren en ciertos días de la semana, configure aquí esa información. Tenga en cuenta la fecha que se determina según la zona horaria configurada en la implementación. Mantenga pulsado SHIFT, comando, o control para la selección de varios días.', + 'email_body' => 'El cuerpo del email que será enviado.', + 'email_subject' => 'Título del email que será enviado.', + 'report_title' => 'Este es el título por defecto para agregar al reporte.', + 'specific_days' => 'Aquí pueden seleccionarse varios días. Las fechas son determinadas por el huso horario configurado en su implementación. Si no se selecciona ninguna fecha, el sistema mostrará por defecto todas las fechas.', + 'verify' => 'Marque un reporte como verificado o no.', + ) , + 'default_value' => 'Separe cada valor con una coma. Ejemplo: valor1, valor2.', + 'radio_choices' => 'Separe cada valor con una coma. Ejemplo: valor1, valor2. En caso que quiera establecer una valor por defecto, finalice la lista de opciones con ::. Ejemplo: Si quiere hacer valor3 el valor por defecto, entonces deberá ser: valor1, valor2, valor3::valor3', + 'dropdown_choices' => 'Serpare cada item de elección con coma. Ejemplo Item 1, Item 2, etc.', + 'private_to' => 'Comenzar escribiendo la lista de miembros.', + 'private_subject' => 'Título del mensaje privado', + 'private_message' => 'Mensaje Privado', + 'profile_color' => 'Puede seleccionar un color que aparecerá bajo la imagen de perfil de su perfil público. Este color será también el que aparecerá en el mapa en sus registros', + 'profile_email' => 'Su dirección de correo electrónico', + 'profile_name' => 'Su nombre completo', + 'profile_notify' => 'Seleccionado YES le permite recibir alertas por correo electrónico cuando nuevos reportes o comentarios sean publicados en su sitio web', + 'profile_password' => 'Su contraseña. Deje este campo en blanco si desea mantener su contraseña actual', + 'profile_public_url' => 'Esta es la dirección donde su perfil público puede ser encontrado.', + 'profile_username' => 'Su nombre de usuario no puede ser modificado', + 'settings_alert_email' => 'Esta es la dirección de correo electrónico que será usada para enviar alertas.', + 'settings_allow_alerts' => 'Permite a los usuarios suscribirse a alertas vía la web.', + 'settings_allow_clustering' => 'Esto permite agrupar reportes similares en un único punto en el mapa', + 'settings_allow_comments' => 'Permite a los usuarios comentar en los reportes del sitio principal', + 'settings_allow_feed' => 'Permite mostrar feeds de noticias RSS en el sitio principal ', + 'settings_allow_reports' => 'Permite a los usuarios enviar información a través de un formulario web.', + 'settings_api_default_record_limit' => 'Número predeterminado de registros que serán devueltos en cada llamado a la API ', + 'settings_api_max_record_limit' => 'Número máximo de registros que serán devueltos en cada llamado a la API ', + 'settings_api_max_requests_per_ip' => 'Número máximo de llamados a la API por dirección IP', + 'settings_blocks_per_row' => 'Número de columnas Bloques que será desplegado en cada fila.', + 'settings_cache_pages' => 'Habilita o deshabilita el caché. Esto acelera la carga de página reduciendo los tiempos de respuesta. Recomendamos usar caché en sitios con alto tráfico. **Recuerde que los reportes serán cargados en el front end en base al tiempo que fije más abajo (Tiempo de vida del caché)', + 'settings_cache_pages_lifetime' => 'Configura el tiempo de vida del caché.', + 'settings_configure_map' => 'Configura el mapa para cubrir un lugar en particular', + 'settings_default_category_colors' => 'Establecer un código de color para todas las categorías en el sitio.', + 'settings_default_category_icons' => 'Establecer un ícono para todas las categorías en el sitio.', + 'settings_default_location' => 'País en que el sitio está funcionando', + 'settings_display_contact' => 'Muestra o no la pestaña de Contacto en el sitio principal.', + 'settings_display_howtohelp' => 'Muestra o no la pestaña de Ayuda en el sitio principal.', + 'settings_display_items_per_page' => 'Número de reportes mostrados por página en el sitio principal.', + 'settings_display_items_per_page_admin' => 'Número de reportes mostrados por página en el Back End de administración.', + 'settings_flsms_download' => 'Este es el hub para mensajes entrantes.', + 'settings_flsms_synchronize' => 'Sincroniza los mensajes en el hub con la plataforma Ushahidi.', + 'settings_flsms_text_1' => 'Números de teléfonos donde los mensajes de texto son recibidos.', + 'settings_google_analytics' => 'Sigue a los visitantes de su sitio. Obtenga estadísticas detalladas de los visitantes', + 'settings_locale' => 'Configura el idioma que será usado en el sitio.', + 'settings_map_provider' => 'Define qué mapa será usado en el sitio', + 'settings_map_timeline' => 'Muestra la línea de tiempo basada en la fecha y hora en que los reportes fueron entregados.', + 'settings_private_deployment' => 'Configurando este valor como true o yes hará que el sitio sea privado, de manera que sólo usuarios con cuentas podrán acceder al sitio.', + 'settings_server_host' => 'Esto es donde los e-mails residen.', + 'settings_server_password' => 'Contraseña de la dirección de correo electrónico que recibe los reportes', + 'settings_server_port' => 'Requerido para poder aceptar conexiones entrantes desde la dirección de correo electrónico', + 'settings_server_ssl_support' => 'Requerido para permitir una conexión segura', + 'settings_server_type' => 'Esto es requerido para recibir e-mails desde el servidor.', + 'settings_server_username' => 'Dirección de correo electrónico que recibe los reportes', + 'settings_share_site_stats' => 'Las estadísticas de visitas son almacenadas en un servidor controlado por Ushahidi. Al habilitar esta opción, usted podrá ver las estadísticas directamente en el panel de administración. Deshabilitándola, dejará de poder ver las estadísticas de tráfico.', + 'settings_site_copyright_statement' => 'Siempre es una buena idea reclamar derechos de autor sobre su trabajo. Visite http://creativecommons.org/choose/ para determinar la licencia adecuada.', + 'settings_site_email' => 'Dirección de correo electrónico que recibirá los reportes y los mensajes del formulario de contacto.', + 'settings_site_message' => 'Texto que aparecerá sobre el mapa en la página de inicio. Esto es útil para entregar información importante a los visitantes del sitio. Para eliminar la caja, simplemente borre este mensaje.', + 'settings_site_name' => 'Este es el nombre del sitio que aparece en la parte superior del sitio principal', + 'settings_site_tagline' => 'Explique en pocas palabras de que se trata este sitio.', + 'settings_site_timezone' => 'Esta es la zona horaria con la que funcionará su sitio. Esto tendrá un impacto en las acciones que haya configurado que requieran hora y fecha, así como en los informes por defecto de la hora actualizada en el frente y parte trasera del sitio.', + 'settings_twitter_configuration' => 'Configure el hashtag de twitter que será usado en los tweets', +); diff --git a/application/i18n/es_AR/ui_admin.php b/application/i18n/es_AR/ui_admin.php new file mode 100755 index 0000000000..f35c9167a7 --- /dev/null +++ b/application/i18n/es_AR/ui_admin.php @@ -0,0 +1,320 @@ + 'Acceso denegado. Las credenciales no son válidas o el pedido ha sido denegado', + 'access_denied_others' => 'Acceso denegado. El pedido fue recibido, pero denegado. Intente más tarde', + 'access_level' => 'Nivel de acceso', + 'actions' => 'Acciones', + 'add_to_category' => 'Agregar a categoría', + 'added' => 'agregado', + 'added_edited' => 'agregado/editado', + 'addons' => 'Extensiones', + 'admin_role' => 'Administrador', + 'alerts' => 'Alertas', + 'alerts_received' => 'Alertas Recibidas', + 'all' => 'Todos', + 'am' => 'AM', + 'anonymous' => 'Anónimo', + 'anyone_role' => 'Todos', + 'anywhere' => 'Todo Lugar', + 'api_banned' => 'API Bloqueadas', + 'api_logs' => 'Registros del API', + 'api_settings' => 'Configuración API', + 'api_unban' => 'DESBLOQUEAR', + 'api_unban_all' => 'DESBLOQUEAR TODOS', + 'approved' => 'aprobado', + 'approve_auto' => 'Aprobar automáticamente', + 'approve_manual' => 'Aprobar manualmente', + 'archived' => 'Archivado', + 'are_you_sure_you_want_to' => 'Está seguro que quiere', + 'are_you_sure_you_want_to_delete_this_item' => 'Está seguro que quiere eliminar este item', + 'are_you_sure_you_want_to_delete_this_photo' => 'Está seguro que quiere eliminar esta foto', + 'are_you_sure_you_want_to_switch_forms' => 'Confirme cambio de formulario', + 'assign' => 'Assignar', + 'assignments' => 'Asignaciones', + 'assign_badge' => 'Assignar Distintivo', + 'author' => 'Autor', + 'author_email' => 'Correo electrónico del autor', + 'back' => 'Volver', + 'banip_action' => 'Bloquear IP', + 'between_times' => 'Entre horas', + 'blocks' => 'Bloques', + 'body' => 'Cuerpo', + 'cancel' => 'Cancelar', + 'categories' => 'Categorías', + 'chart_display_error' => 'Error al mostrar el gráfico', + 'check_message_valid' => 'Mensaje no válido', + 'check_number' => 'Verifique el número de destino', + 'check_sms_settings' => 'Revise la configuración de SMS', + 'checkin_details' => 'Detalles de Checkin', + 'checkins' => 'Checkins', + 'cities_loaded' => 'Ciudades cargadas', + 'code' => 'Sistema', + 'code_out_of_sync' => 'Versión del sistema fuera de syncronización', + 'color' => 'Color', + 'comments' => 'Comentarios', + 'confirmation_code' => 'Su código de verificación es: ', + 'confirm_msg' => 'El usuario ha sido', + 'count' => 'Conteo', + 'country_not_found' => 'No se encuentra el país', + 'created_edited' => 'creado/editado', + 'create_report' => 'Crear un Reporte', + 'critical_upgrade' => 'Actualización crítica', + 'csv' => 'CSV', + 'currently_active' => 'Actualmente active', + 'currently_inactive' => 'Actualmente inactivo', + 'custom_forms_insufficient_permissions' => 'No posee permiso para editar estos campos.', + 'daily' => 'Cada día', + 'dashboard' => 'Tablero de Control', + 'database' => 'Base de datos', + 'date_time' => 'Fecha y Hora', + 'date_added' => 'Fecha (agregado)', + 'date_modified' => 'Fecha (modificado)', + 'days_of_the_week' => 'Días de la semana', + 'db_out_of_sync' => 'La versión de la base de datos está desincronizada', + 'deleted' => 'borrado', + 'delete_action' => 'Borrar', + 'delete_badge' => 'Borrar Distintivo', + 'demo' => 'Demostración', + 'description' => 'Descripción', + 'disabled' => 'Deshabilitado', + 'divider_start_field' => 'Comienza Divisor', + 'divider_end_field' => 'Finaliza Divisor', + 'divider_class' => 'div class', + 'download_reports' => 'Descargar Reportes', + 'dropdown_choices' => 'Opciones del menú', + 'edited' => 'EDITADO', + 'edited_by' => 'Editado por', + 'edit_action' => 'Editar', + 'edit_log' => 'Registro de ediciones', + 'email' => 'Email', + 'entire_collective' => 'Todos', + 'error_geocoding' => 'Error en la geocodificación', + 'error_imap' => 'La librería IMAP PHP no está instalada', + 'error_twitter' => 'Credenciales incorrectas', + 'error_msg' => 'Error', + 'error_post_incident' => 'Error, no se pudo publicar el incidente', + 'every_six_hours' => 'Cada seis horas', + 'every_twelve_hours' => 'Cada 12 horas', + 'experimental' => 'Experimental', + 'faqs' => 'Preguntas Frecuentes', + 'feed' => 'Boletín', + 'feedback' => 'Feedback', + 'feeds' => 'Boletines', + 'field_choices' => 'Lista de opciones', + 'field_default' => 'Valor predeterminado', + 'field_datatype' => 'Tipo de dato', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numerico', + 'field_datatype_text' => 'Texto libre', + 'field_height' => 'Altura (en líneas)', + 'field_hidden' => 'Campo oculto', + 'field_maxlength' => 'Longitud en caracteres', + 'field_name' => 'Nombre del campo', + 'field_toggle' => 'Invertir', + 'field_toggle_no' => 'No', + 'field_toggle_yes_close' => 'Si, cerrado por omisión', + 'field_toggle_yes_open' => 'Si, abierto por omisión', + 'file_not_found_upload' => 'No se encuentra el archivo cargado', + 'file_open_error' => 'No se puede leer el archivo', + 'form_not_exists' => 'Ese formulario no existe', + 'forum' => 'Foro', + 'free_text_field' => 'Campo de texto libre', + 'date_field' => 'Campo fecha', + 'radio_field' => 'Opciones excluyentes', + 'checkbox_field' => 'Opciones combinadas', + 'dropdown_field' => 'Lista de opciones', + 'from' => 'De', + 'from_date' => 'De', + 'geonames_timeout' => 'Error de Geonames', + 'get_help' => 'Obtener ayuda', + 'get_more_themes' => 'Obtener más temas', + 'get_more_plugins' => 'Obtener más plugins', + 'header_actions' => 'Acciones', + 'header_add_edit' => 'Agregar/Editar', + 'header_email' => 'Email', + 'header_manage_users' => 'Administrar usuarios', + 'header_role' => 'Rol', + 'header_user' => 'Usuario', + 'help' => 'ayuda', + 'hourly' => 'por hora', + 'incident_feed' => 'Suscripción de reportes por', + 'installer_info' => 'La carpeta installer todavía existe. Borre la carpeta installer. Esto es una vulnerabilidad potencial de seguridad.', + 'instance' => 'Instancia', + 'instances' => 'Instancias', + 'instance_details' => 'Detalles de la instancia', + 'invalid_parameter' => 'Parámetro inválido', + 'ip_address' => 'Dirección IP', + 'is_date' => 'Es un campo de fecha?', + 'ispublic_visible' => 'Visible para', + 'ispublic_submit' => 'Editable para', + 'keyword' => 'Palabra clave', + 'keywords' => 'Palabras clave', + 'label_email' => 'Dirección de email:', + 'label_full_name' => 'Nombre completo:', + 'label_password' => 'Contraseña:', + 'label_role' => 'Rol:', + 'label_username' => 'Usuario:', + 'layers' => 'Capas', + 'login_role' => 'Moderador', + 'logout' => 'Salir', + 'logs' => 'Bitácora', + 'manage' => 'Administrar', + 'manage_roles' => 'Administrar Roles y Permisos', + 'manage_users' => 'Ver Usuarios', + 'manage_users_edit' => 'Agregar/Editar Usuarios', + 'manage_public_listing' => 'Administrar Vista Pública', + 'mark_as' => 'Marcar como', + 'marked_as_not_spam' => 'marcar como mensaje válido', + 'marked_as_spam' => 'marcar como correo basura', + 'match_no_documents' => 'no se encontraron documentos', + 'message' => 'Mensaje', + 'messages' => 'Mensajes', + 'messages_laconica' => 'Mensajes de Laconica', + 'messages_twitter' => 'Tweets', + 'message_sent' => 'Mensaje enviado', + 'mhi' => 'MHI', + 'minute' => 'Minuto', + 'minutes' => 'Minutos', + 'missing_parameter' => 'Falta un parámetro', + 'moderator' => 'Moderador', + 'modified' => 'modificado', + 'modify_timezone' => 'Modificar zona horaria', + 'move_down_action' => 'mover hacia abajo', + 'move_up_action' => 'mover hacia arriba', + 'multiple_hosted_instances' => 'Múltiples instancias', + 'my_alerts' => 'MisAlertas', + 'my_checkins' => 'Mis Checkins', + 'my_profile' => 'Mi Perfil', + 'my_reports' => 'Mis Reportes', + 'my_votes' => 'Votos', + 'my_votes_up' => 'Positivo', + 'my_votes_down' => 'Negativo', + 'name' => 'Nombre', + 'new_alert' => 'Crear una alerta', + 'new_private' => 'Crear un mensaje', + 'new_password' => 'Nueva contraseña', + 'no' => 'No', + 'none_category_explanation' => 'Categoría especial que se asigna a los reportes cuando su categoría principal es eliminada.', + 'notification' => 'Notificación', + 'not_case_sensitive' => 'No hay proceso clasificado', + 'not_found' => 'No encontrado', + 'no_data' => 'Sin datos, no hay resultados para mostrar.', + 'no_error' => 'Sin error', + 'no_result_display_msg' => 'No hay resultados para mostrar.', + 'of' => 'de', + 'on_specific_count' => 'Sobre Conteo Específico', + 'openids' => 'OpenID\'s', + 'page' => 'página', + 'pages' => 'páginas', + 'page_not_found' => 'página no encontrada ', + 'page_not_found_message_with_contact' => 'Lamentablemente, la página a la que estás intentando acceder no está aquí.

¿Hiciste clic en un vínculo de alguna página de nuestro sitio?
Si llegaste a esta página desde otra parte de nuestro sitio, comunícate con nosotros para que podamos resolverlo.

¿Usaste un vínculo de otro sitio?
Los vínculos de otros sitios puedes estar desactualizados o incluir errores tipográficos. Indícanos de dónde provienes para que intentemos comunicarnos con el otro sitio y resolver el problema.

¿Escribiste la URL?
Es posible que hayas escrito incorrectamente la dirección (URL). Verifica que la hayas escrito sin errores tipográficos y que hayas usado correctamente las mayúsculas y minúsculas, etc.

', + 'page_not_found_message' => 'Lamentablemente, la página a la que está intentando acceder no está aquí.', + 'parameters_used' => 'Parámetros utilizados', + 'password' => 'Contraseña', + 'password_reset' => 'Reiniciar contraseña', + 'password_reset_message_line_1' => 'Sr/Sra', + 'password_reset_message_line_2' => 'Hemos recibido un pedido para cambiar la contraseña de', + 'password_reset_message_line_3' => 'Para cambiar su contraseña, por favor seleccione el enlace siguiente (o copielo y péguelo en la barra de de direcciones de su navegador).', + 'password_reset_message_line_4' => 'Como lo ha solicitado, su contraseña a sido cambiada. El usuario y contraseña son ahora estos', + 'password_reset_subject' => 'Pedido de nueva contraseña', + 'phone' => 'Teléfono', + 'please_select' => 'Escoja', + 'pm' => 'PM', + 'post_method_not_used' => 'Los datos no fueron enviados como post', + 'preview' => 'Vista previa', + 'private_message' => 'Mensaje', + 'private_messages' => 'Mensajes privados', + 'private_sent' => 'Mensaje privado enviado', + 'private_subject' => 'Sujeto', + 'private_to' => 'a', + 'public_listing' => 'Vista Pública', + 'qualifiers' => 'Calificadores', + 'read' => 'leer', + 'relevance' => 'Relevancia', + 'report_title' => 'Denunciar título', + 'report_date' => 'Fecha del informe', + 'reporters' => 'Reporteros', + 'reporter_levels' => 'Niveles de denuncia', + 'reports' => 'Reportes', + 'reputation' => 'Nivel de Reputación', + 'required' => 'Requerido', + 'reset' => 'Reset', + 'response' => 'Respuesta', + 'results' => 'Resultado', + 'revoke' => 'Revocar', + 'riverid_exists_admin' => 'Este correo electrónico ya tiene una cuenta administrada por CrowdmapID. El usuario necesitará usar su contraseña existente de Crowmap para iniciar sesión.', + 'save_settings' => 'Guardar Configuración', + 'search' => 'Buscar', + 'search_reports' => 'Buscar Reportes', + 'searching_for' => 'Buscando', + 'security_info_encryption_key' => 'La clave de encriptación será establecido al valor por defecto. Esto es inseguro y deberá ser cambiada.', + 'security_info_https' => 'Este sitio está siendo servido sobre HTTP. Debería ser puesto a HTTPS para incrementar la seguridad.', + 'security_info_instructions' => 'Las instrucciones están disponibles en el Wiki', + 'select_download_format' => 'Seleccione el formato de informe que desea usar para descargarlo:', + 'select_field_type' => '--- Seleccione un tipo de campo ---', + 'select_item' => 'Por favor selecciona un ítem', + 'select_trigger_before_response' => 'Deberá seleccionar un Trigger antes que pueda seleccionar una Respuesta.', + 'select_trigger_before_qualifiers' => 'Deberá seleccionar un Trigger antes que pueda definir Calificadores.', + 'sender' => 'Remitente', + 'send_to' => 'Enviar a', + 'sent_from_website' => 'Este mensaje fue enviado desde su sitio web en ', + 'server_time' => 'Hora del servidor', + 'settings' => 'Configuración', + 'showing_page' => 'Mostrando página', + 'showing_results' => 'Mostrando resultados', + 'shown' => 'Mostrando', + 'special_category' => 'Categoría especial', + 'special_category_explanation' => 'Categoría especial que se utiliza para clasificar reportes aprobados automáticamente', + 'specific_area' => 'Area específica', + 'state' => 'Estado', + 'statistics' => 'Estadísticas', + 'stats' => 'Estadísticas', + 'stats_collection_error' => 'No se pudieron obtener estadísticas. Reintente luego.', + 'stats_collection_error_short' => 'No se pudieron obtener estadísticas', + 'specific_days' => 'Días específicos', + 'subject' => 'Tema', + 'superadmin_role' => 'Super Administrador', + 'task_performed' => 'Tarea realizada', + 'text_field' => 'Campo de texto', + 'theme_name' => 'Nombre', + 'title' => 'Administrar usuarios', + 'timeout' => 'Error de tiempo de espera', + 'to' => 'a', + 'total_records' => 'Registros', + 'to_date' => 'a', + 'translate_reports' => 'Traducir reportes', + 'trigger' => 'Disparador', + 'triggering_user' => 'Usuario disparados', + 'triggers' => 'Disparadores', + 'unapproved' => 'no approbado', + 'unknown' => 'Desconocido', + 'unknown_failure' => 'Falla desconocida', + 'unread' => 'no leído', + 'unsubscribe_message' => 'Ya no recibirá alertas de', + 'update_link' => ' Presione aquí para realizar la actualización', + 'upgrade_ushahidi' => 'Actualizar el sistema', + 'upgrade_ushahidi_status' => 'Estado de la actualización del sistema', + 'upload_reports' => 'Subir reportes', + 'user' => 'Usuario', + 'users' => 'Usuarios', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificado/No Verificado', + 'verify_unverify' => '(Des)Verificar', + 'version' => 'Versión', + 'version_available' => ' dispone de una actualización.', + 'video_encoding' => 'Formato de video', + 'view_private' => 'Mensajes privados', + 'view_site' => 'Ver el sitio', + 'view_report' => 'Ver el reporte', + 'welcome' => 'Bienvenido, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Si', + 'your_search_for' => 'Su búsqueda de', +); diff --git a/application/i18n/es_AR/ui_main.php b/application/i18n/es_AR/ui_main.php new file mode 100755 index 0000000000..417342fba5 --- /dev/null +++ b/application/i18n/es_AR/ui_main.php @@ -0,0 +1,605 @@ + 'Acerca de ', + 'access' => 'Acceso', + 'access_limits' => 'Limites de Acceso', + 'account_name' => 'Nombre de la Cuenta', + 'actions' => 'Acciones', + 'action_confirm' => 'Esta acción no se puede revertir. ¿Está seguro que quiere continuar?', + 'activate' => 'Activar', + 'active' => 'Activo', + 'add' => 'Agregar', + 'added_by' => 'Ingresado por', + 'additional_data' => 'Información Adicional', + 'additional_reports' => 'Reportes Adicionales', + 'add_edit' => 'Agregar/Editar', + 'add_field' => 'Agregar un Campo', + 'add_language' => 'Agregar Idioma', + 'add_new' => 'Agregar Nuevo', + 'add_new_category' => 'Agregar nueva categoría', + 'add_translation' => 'Traducir', + 'admin' => 'Administrar', + 'alerts' => 'Recibir Alertas', + 'alerts_alert_me' => 'Aviseme si un reporte ha sido llenado en, o alrededor:', + 'alerts_btn_send' => 'Enviar', + 'alerts_email' => 'Dirección de correo electrónico:', + 'alerts_enter_email' => 'ingrese dirección de correo electrónico', + 'alerts_enter_mobile' => 'ingrese el número móvil con el código de país', + 'alerts_get' => 'Recibir Alertas', + 'alert_has_been' => 'La alerta ha sido', + 'alerts_mobile_phone' => 'Teléfono Móvil:', + 'alerts_place_spot' => 'O, ubique un lugar en el mapa siguiente, y vamos a avisarle cuando un reporte ha sido enviado en 20 kilómetros a la redonda', + 'alerts_place_spot2' => 'Si no puede encontrar su ubicación, por favor haga click en el mapa para seleccionar la ubicación correcta.', + 'alerts_rss' => 'Boletines RSS (copie la siguiente URL)', + 'alerts_select_city' => 'Seleccionar una ciudad', + 'alerts_step1_select_city' => 'Paso 1: Seleccione su ciudad o ubicación:', + 'alerts_step2_send_alerts' => 'Paso 2: Enviar alertas a mi:', + 'alerts_step3_select_catgories' => 'Paso 3 (Opcional): Seleccione categorías', + 'alert_confirm_previous' => 'Confirmar un pedido de alertas', + 'alert_saved' => 'El alerta ha sido guardada', + 'all' => 'Todo', + 'allowed' => 'Permitido', + 'all_categories' => 'Todas las Categorías', + 'all_time' => 'Todo el tiempo', + 'and' => 'y', + 'api' => 'API', + 'approve' => 'Aprobar', + 'approved' => 'Aprobados', + 'approved_reports' => 'Reportes Aprobados', + 'approve_this_report' => 'Aprobar este Reporte', + 'approximate' => 'Aproximada/o', + 'archive' => 'Archivo', + 'archived' => 'Archivado', + 'ascending' => 'Ascendiente', + 'at' => 'a', + 'author' => 'Autor', + 'auto_checkin' => 'Auto Checkin', + 'avg_reports_per_day' => 'Reportes promedios por día', + 'awaiting_approval' => 'Esperando Aprobación', + 'awaiting_verification' => 'Esperando Verificación', + 'badge' => 'Distintivo', + 'badges' => 'Distintivos', + 'badge_image' => 'Imagen del distintivo', + 'badge_image_upload_your_own' => 'o puede cargar una imagen personalizada para este distintivo', + 'badge_pack' => 'Paquete de distintivos', + 'badge_select' => 'Elija un distintivo', + 'blog' => 'Blog', + 'browse_profiles' => 'Ver perfiles', + 'cancel' => 'Cancelar', + 'categories' => 'Categorías', + 'category' => 'Categoría', + 'category_filter' => 'Filtro de Categorías', + 'category_has_been' => 'La categoría ha sido ', + 'category_name' => 'Nombre', + 'change_date_range' => 'Cambiar rango de fechas', + 'change_password' => 'Cambiar contraseña', + 'change_picture' => 'Cambiar foto', + 'choose' => 'Escoja un', + 'choose_data_points' => 'Elija los datos a descargar', + 'choose_date_range' => 'o escoja un rango de fechas', + 'choose_field_type' => 'Elija el Tipo de Campo', + 'cleanurl' => 'URLs limpias', + 'clear' => 'Quitar', + 'clear_map' => 'Limpiar Mapa', + 'close' => 'Cerrar', + 'clusters' => 'Grupos de reportes', + 'color' => 'Color', + 'comment' => 'Comentario', + 'comments' => 'Comentarios', + 'comment_details' => 'Ver Comentario', + 'configuration_saved' => 'La configuración fue guardada', + 'configure' => 'Configurar', + 'confirm_email_successful' => 'Ha confirmado su dirección de correo. Puede acceder al sistema.', + 'confirm_email_failed' => 'Confirmación de email fallida. Puede pedir una nueva confirmación de email bajo.', + 'contact' => 'Contacto', + 'contact_code' => 'Código de seguridad', + 'contact_email' => 'Su dirección de correo electrónico', + 'contact_message' => 'Mensaje', + 'contact_message_has_send' => 'Su mensaje ha sido enviado.', + 'contact_name' => 'Su nombre', + 'contact_phone' => 'Su número de teléfono', + 'contact_send' => 'Enviar mensaje', + 'contact_subject' => 'Asunto del mensaje', + 'copyright' => 'Copyright 2010 Ushahidi.com. Todos Los Derechos Reservados.', + 'create' => 'Crear', + 'create_edit' => 'Crear/Editar', + 'create_new' => 'Crear Nuevo', + 'create_new_password' => 'Crear nueva contraseña', + 'create_report' => 'Crear Reporte', + 'credibility' => 'Credibilidad', + 'current_password' => 'Contraseña actual', + 'custom_fields' => 'Campos Adicionales', + 'data' => 'Información', + 'date' => 'Fecha', + 'date_format' => '(dd/mm/aaaa)', + 'date_time' => 'Fecha y Hora', + 'day' => 'día', + 'deactivate' => 'Desactivar', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Borrar', + 'deleted' => 'Borrado', + 'deletes' => 'Borrado/s', + 'delete_disabled' => 'Borrar Deshabilitado', + 'delete_last' => 'Borrar último', + 'delete_report' => 'Borrar este Reporte', + 'delete_selected' => 'Borrar seleccionado', + 'delete_spam' => 'Borrar Correo Basura', + 'demo' => 'Demostración', + 'description' => 'Descripción', + 'descending' => 'Descendiente', + 'detailed_location_example' => 'Ej: Piso, nro. de puerta, referencia, etc', + 'details' => 'Detalles', + 'direct_report' => 'Reporte Directo', + 'disabled' => 'Deshabilitada/o', + 'disapprove' => 'Desaprobar', + 'download_reports' => 'Descargar Reportes', + 'download' => 'Descargar', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar los campos del formulario', + 'edit_report' => 'Editar Reporte', + 'email' => 'Correo Electrónico', + 'email_address' => 'Dirección de Correo Electrónico', + 'email_configuration' => 'Configuración de Correo Electrónico', + 'email_server_host' => 'Dirección del Servidor', + 'email_server_password' => 'Contraseña', + 'email_server_port' => 'Puerto del servidor de correo', + 'email_server_ssl_support' => 'Soporte para conexiones SSL', + 'email_server_type' => 'Tipo de Servidor de correo', + 'email_server_username' => 'Nombre de Usuario', + 'email_settings_comment_0' => 'por lo que esta es la configuración para esa dirección de correo electrónico', + 'email_settings_comment_00' => 'Para recibir reportes por email, por favor ingrese su configuración de email en esta página. Los emails serán enviados a la', + 'email_settings_comment_1' => 'Algunos servidores requieren la dirección de correo completa', + 'email_settings_comment_2' => 'Clave de la cuenta de correo', + 'email_settings_comment_3' => 'Puertos comunes: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Ejemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Ejemplos: pop3, imap', + 'email_settings_comment_6' => 'Habilita o deshabilita conexiones SSL', + 'empty' => '---VACIO---', + 'end_point' => 'Hasta', + 'error' => '¡Error!', + 'example' => 'Ejemplo', + 'example_country' => 'Kenya', + 'external_apps' => 'Otras Applicaciones', + 'external_video_link' => 'URL de video', + 'facebook' => 'Facebook', + 'feed' => 'Boletín', + 'feedback' => 'Contáctenos', + 'feedback_reports' => 'Por favor cuéntanos tu experiencia, envíanos un correo a ', + 'feeds' => 'Boletines', + 'feed_has_been' => 'Este boletín ha sido', + 'feed_items' => 'Boletines', + 'feed_name' => 'Nombre del Boletín', + 'feed_url' => 'URL del Boletín', + 'field_unused' => 'Campo Sin Uso', + 'file' => 'Archivo', + 'file_over_max_allowed' => 'El archivo es más grande que el límite permitido.', + 'filters' => 'Filtros', + 'filter_reports' => 'Filtrar Reportes', + 'filter_reports_by' => 'Filtros Disponibles', + 'filter_reports_contain' => 'Filtrar reportes que contengan', + 'find' => 'Encontrar', + 'find_location' => 'Encontrar ubicación', + 'first_name' => 'Nombre', + 'force_run_scheduler' => 'Ejecutar tareas programadas', + 'forgot_password' => 'Olvidó su contraseña?', + 'form' => 'Formulario', + 'forms' => 'Formularios', + 'form_description' => 'Descripción del Formulario', + 'form_edit' => 'Editar el Formulario', + 'form_has_been' => 'El Formulario ha Sido', + 'form_title' => 'Título del Formulario', + 'from' => 'De', + 'full_name' => 'Nombre Completo', + 'geolocation_available' => 'Información geográfica disponible', + 'geometry_color' => 'Color', + 'geometry_comments' => 'Comentarios', + 'geometry_label' => 'Etiqueta', + 'geometry_strokewidth' => 'Trazo', + 'go' => 'Comenzar', + 'hashtag' => 'Hashtag', + 'has_been' => 'Ha Sido', + 'help' => 'Cómo Ayudar', + 'hidden' => 'Oculto', + 'hide' => 'Ocultar', + 'hide_this_message' => 'ocultar este mensaje', + 'home' => 'Inicio', + 'how_to_report' => 'Cómo Crear un Reporte', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Así lo verán otros usuarios del sitio.', + 'image' => 'Imagen', + 'images' => 'Imágenes', + 'image_icon' => 'Imagen/Icono', + 'inactive' => 'Inactivo', + 'inbox' => 'Mensajes Entrantes', + 'incident' => 'Reporte', + 'incidents_nearby' => 'Reportes Cercanos', + 'incident_location' => 'Ubicación del Incidente', + 'include' => 'Incluir', + 'include_categories' => 'Incluir Categorías', + 'include_custom_fields' => 'Incluir Campos Adicionales', + 'include_description' => 'Incluir Descripción', + 'include_detail' => 'Incluya tanto detalle como sea posible', + 'include_latitude' => 'Incluir Latitud', + 'include_location_information' => 'Incluir ubicación', + 'include_longitude' => 'Incluir Longitud', + 'include_personal_info' => 'Incluir información personal', + 'incoming_media' => 'Fotos/Vídeos Entrantes', + 'information_evaluation' => 'Calidad de la Información', + 'input_location' => 'Ingrese una ubicación precisa', + 'insufficient_role' => 'Este cuenta no le permite acceder al sitio.', + 'in_response_to' => 'En respuesta a', + 'ip_address' => 'Dirección IP', + 'is_this_your_profile' => '¿es este su perfil?', + 'item' => 'artículo', + 'items' => 'artículos', + 'item_details' => 'detalles del ítem', + 'item_title' => 'Título', + 'key' => 'Llave', + 'keywords' => 'Palabras clave', + 'kml_kmz_file' => 'Archivo KMZ/KML', + 'kml_kmz_upload' => 'Subir archivo KMZ/KML', + 'kml_url' => 'URL del archivo KML', + 'laconica' => 'Laconica', + 'language' => 'Idioma', + 'last' => 'Último', + 'last_month' => 'Último Mes', + 'last_name' => 'Apellido', + 'last_year' => 'Último Año', + 'latitude' => 'Latitud', + 'layers' => 'Capas', + 'layers_filter' => 'Otras capas ', + 'layer_has_been' => 'La capa ha sido', + 'layer_name' => 'Nombre de la capa', + 'layer_url' => 'URL de la capa', + 'leave_a_comment' => 'Deje un comentario', + 'less_information' => 'Menos información', + 'level' => 'Nivel', + 'level_has_been' => 'Este Nivel ha Sido', + 'level_name' => 'Nombre del Nivel', + 'limited' => 'Limitado', + 'link' => 'Enlace', + 'list' => 'Lista', + 'loading_reports' => 'Cargando reportes', + 'location' => 'Ubicación', + 'locations' => 'Ubicaciones', + 'location_example' => 'Ciudad, Estado y/o País.', + 'login' => 'Ingresar', + 'login_account_creation_successful' => 'Cuenta creada exitosamente.', + 'login_confirmation_sent' => 'Un correo de confirmación se envió a su dirección', + 'login_email_doesnt_exist' => 'Esa dirección de correo no existe. Corríjala, o cree una nueva cuenta', + 'login_select_openid' => 'Seleccione su proveedor de acceso', + 'login_with' => 'Conectarse con', + 'login_userpass' => 'Email y contraseña', + 'login_openid' => 'OpenID', + 'login_signup' => 'Crear una cuenta', + 'login_signup_click' => 'Crear una cuenta', + 'login_signup_confirmation_subject' => 'Confirmación', + 'login_signup_text' => 'Cree una cuenta para tener acceso a más funciones', + 'longitude' => 'Longitud', + 'map' => 'Mapa', + 'mark_read' => 'Marcar como Leído', + 'mark_unread' => 'Marcar como No Leído', + 'maximum_filesize' => 'Tamaño máximo de archivo', + 'media' => 'Fotos y Vídeos', + 'media_filter' => 'Filtro', + 'members' => 'Miembros', + 'manage_your_account' => 'Administrar Cuenta', + 'message' => 'Mensaje', + 'messages' => 'Mensajes', + 'message_details' => 'Ver Mensaje', + 'message_non_numeric_source' => 'Mensaje:', + 'mobile' => 'Móvil', + 'modify' => 'Modificar', + 'modify_date' => 'Modificar Fecha', + 'month' => 'mes', + 'more' => 'Más', + 'more_information' => 'Más información', + 'multi_country_instance' => 'Este sistema colecta reportes para más de un país', + 'must_confirm_email_address' => 'Su dirección de email debe estar verificada para que pueda ingresar. Si no encuentra el email de verifición, puede pedir uno nuevo.', + 'name' => 'Nombre', + 'nearby_report' => 'Reporte Cercano', + 'new' => 'Nuevo', + 'news' => 'Noticias', + 'news_feeds' => 'Boletines', + 'news_source' => 'Fuente de Noticias', + 'new_category' => 'Nueva Categoría', + 'new_password' => 'Nueva Contraseña', + 'new_report' => 'Nuevo Reporte', + 'next' => 'Próximo', + 'no' => 'No ', + 'no_checkins' => 'No hay checkins para mostrar', + 'no_data' => 'No hay datos', + 'none' => 'Ninguno', + 'notices' => 'Advertencias', + 'not_approved' => 'No Aprobados', + 'not_approved_singular' => 'No Aprobado', + 'not_selected' => '---No Seleccionado---', + 'not_spam' => 'No es Spam', + 'not_specified' => 'No especificado', + 'no_reports' => 'No hay reportes', + 'no_results' => 'No hay resultados', + 'off' => 'Apagado', + 'official_news' => 'Noticias', + 'on' => 'Encendido', + 'option' => 'Opción', + 'optional' => 'Opcional', + 'options' => 'Opciones', + 'organization' => 'Organización', + 'organizations' => 'Organizaciones', + 'organization_description' => 'Descripción', + 'organization_email' => 'Email', + 'organization_has_been' => 'La organización ha sido', + 'organization_name' => 'Nombre de la Organización', + 'organization_phone_1' => 'Teléfono 1', + 'organization_phone_2' => 'Teléfono 2', + 'organization_website' => 'Sitio Web', + 'original' => 'Original', + 'original_description' => 'Descripción Original', + 'original_title' => 'Título original', + 'other_ushahidi_instances' => 'Otros Sistemas', + 'outbox' => 'Mensajes Salientes', + 'outgoing' => 'Saliente', + 'page' => 'Página', + 'pages' => 'Páginas', + 'page_description' => 'Descripción', + 'page_has_been' => 'La página ha sido', + 'page_tab_name' => 'Etiqueta', + 'page_title' => 'Título', + 'parent_category' => 'Categoría Superior', + 'password' => 'Clave', + 'password_again' => 'Reingrese la Contraseña', + 'password_changed_successfully' => 'Se ha cambiado la contraseña', + 'password_forgot' => 'Olvidó su Clave?', + 'password_reset_confirm' => 'Mire su e-mail por una nueva clave.', + 'password_save' => 'Mantener la sesión abierta', + 'past_month' => 'Mes Pasado', + 'past_year' => 'Año Pasado', + 'pending' => 'Pendientes', + 'per' => 'por', + 'personal_information' => 'Información Personal Opcional.', + 'phone' => 'Teléfono', + 'photos' => 'Fotos', + 'pictures' => 'Fotos', + 'pictures_and_videos' => 'Fotos y Vídeos', + 'pinpoint_location' => '* Busque la ubicación, o seleccione una ubicación en el mapa', + 'play' => 'Comenzar', + 'please_note' => 'Atención', + 'plugins' => 'Extensiones', + 'plugin_url' => 'URL de la extensión', + 'public_profile' => 'Perfil público', + 'public_profile_url' => 'URL del perfil público', + 'preview' => 'Vista previa', + 'preview_item' => 'Vista previa del ítem', + 'preview_message' => 'Vista previa del mensaje', + 'previous' => 'Anterior', + 'private' => 'Privado', + 'profile_color' => 'Color del perfil', + 'profile_saved' => 'Su perfil ha sido guardado', + 'quick_stats' => 'Estadísticas', + 'rating' => 'Calificación', + 'read' => 'Leído', + 'receive' => 'Recibir', + 'receive_from' => 'Recibir de', + 'receive_notifications' => 'Recibir Notificaciones', + 'recent_reports' => 'Reportes Recientes', + 'refresh_news_feeds' => 'Actualizar Boletines', + 'registered_email' => 'Email registrado', + 'remove' => 'quitar', + 'reply' => 'Responder', + 'report' => 'Reporte', + 'reports_listed' => 'Reportes (tomados del mapa, en order cronológico)', + 'reporter' => 'Informante', + 'reporters' => 'Informantes', + 'reporter_date' => 'Fecha', + 'reporter_email' => 'Email', + 'reporter_first_name' => 'Nombre del Informante', + 'reporter_has_been' => 'El informante ha sido', + 'reporter_ip' => 'Dirección IP', + 'reporter_last_name' => 'Apellido', + 'reporter_level' => 'Nivel del Informante', + 'reporter_levels' => 'Niveles del Informante', + 'reporter_phone' => 'Teléfono', + 'reports' => 'Reportes', + 'reports_btn_browse' => 'Navegar', + 'reports_btn_submit' => 'Enviar', + 'reports_by_this_user' => 'Reportes de este usuario', + 'reports_categories' => 'Categorías', + 'reports_count' => '%d Reportes', + 'reports_date' => 'Fecha', + 'reports_description' => 'Descripción', + 'reports_download_csv' => 'Los reportes serán descargados en formato CSV', + 'reports_email' => 'Correo Electrónico', + 'reports_features' => 'Características', + 'reports_find_location' => 'Encuentre una ubicación cerca de usted', + 'reports_first' => 'Nombre', + 'reports_last' => 'Apellido', + 'reports_location_name' => 'Ubicación precisa', + 'reports_news' => 'Enlace a fuente de Noticias', + 'reports_optional' => 'Información Opcional', + 'reports_photos' => 'Subir Fotos', + 'reports_return' => 'Retornar a la página de reportes', + 'reports_select_city' => 'Seleccionar una Ciudad', + 'reports_submitted' => 'El reporte ha sido enviado y será revisado. Lo contactaremos de ser necesario.', + 'reports_submit_new' => 'Nuevo Reporte', + 'reports_time' => 'Hora', + 'reports_timeline' => 'Línea de Tiempo', + 'reports_title' => 'Título del Reporte', + 'reports_video' => 'Enlace a Video', + 'report_an_incident' => 'Reportar un Reporte', + 'report_details' => 'Detalles del Reporte', + 'report_option_1' => 'Enviando un Mensaje al Teléfono', + 'report_option_2' => 'Enviando un Correo Electrónico a', + 'report_option_3' => 'Enviando un Tweet con el/los hashtag/s', + 'report_option_4' => 'Completando un Formulario', + 'report_option_external_apps' => 'Con la Aplicación Móvil', + 'report_saved' => 'El reporte ha sido guardado', + 'report_title' => 'Título', + 'request_information' => 'Solicitar Más Información', + 'request_location' => 'Solicitar Ubicación', + 'required' => 'Requerido', + 'requirements' => 'Requerimientos', + 'resend_confirm_email' => 'Reenviar email de confirmación', + 'reset' => 'Reiniciar', + 'reset_all_filters' => 'Desactivar filtros', + 'reset_password' => 'Nueva Contraseña', + 'retrieve_city_names' => 'Completar automáticamente la lista de ciudades para el país seleccionado', + 'riverid_information' => 'Administrada por el servicio %s', + 'role' => 'Rol', + 'rss' => 'Boletín RSS', + 'save' => 'Guardar', + 'saved' => 'Guardado', + 'save_add_new' => 'Guardar y Crear Otro', + 'save_close' => 'Guardar y Cerrar', + 'save_report' => 'Guardar Reporte', + 'schedule' => 'Programa', + 'scheduler' => 'Acciones Programadas', + 'scheduler_day' => 'Día', + 'scheduler_hour' => 'Hora', + 'scheduler_log' => 'Bitácora de acciones programadas', + 'scheduler_minute' => 'Minuto', + 'scheduler_weekday' => 'Día de la semana', + 'search' => 'BUSCAR', + 'search_results' => 'Resultados de la Búsqueda', + 'security_code' => 'Código de Seguridad', + 'select_all' => 'Seleccionar Todos', + 'select_field_type' => 'Elija un tipo de campo', + 'select_form_type' => 'Elija un tipo de formulario', + 'select_in_map' => 'Seleccione en el Mapa', + 'select_multiple' => 'Selecciones todas las necesarias', + 'select_one' => 'Por favor seleccion algún item', + 'select_theme' => 'Escoja un Estilo', + 'send' => 'Enviar', + 'send_confirmation' => 'Enviar confirmación', + 'sending_to' => 'Enviar a', + 'sent' => 'Enviado', + 'sent_by' => 'Enviado por', + 'server_address' => 'Dirección del servidor', + 'server_type' => 'Tipo de Servidor', + 'service' => 'Servicio', + 'service_username' => 'Usuario del servicio', + 'service_user_id' => 'ID del usuario del servicio', + 'share' => 'Vínculo de intercambio de datos', + 'shared_data' => 'Información Compartida', + 'share_has_been' => 'El vínculo de intercambio de datos ha sido', + 'sharing' => 'Compartir Datos', + 'shorter_map' => 'Mapa más cprto', + 'show' => 'Mostrar', + 'show_all' => 'Mostrar Todos/as', + 'show_messages' => 'Mostrar mensajes', + 'site' => 'Sitio Web', + 'site_email_address' => 'dirección de email del sitio web', + 'site_url' => 'URL del sitio web', + 'smaller_map' => 'Mapa más pequeño', + 'sms' => 'SMS', + 'sorry_no_badges' => 'No tiene ningún distintivo asignado', + 'source' => 'Fuente', + 'source_name' => 'Nombre de la Fuente', + 'sort' => 'Ordenar', + 'sort_by' => 'Ordenar por', + 'source_url' => 'URL de la Fuente', + 'spam' => 'Correo basura', + 'ssl_support' => 'Soporta SSL?', + 'start_point' => 'Desde', + 'step' => 'Paso', + 'submit' => 'Nuevo Reporte', + 'submitted_by' => 'Enviado por %1$s via %2$s', + 'submit_sms' => 'Enviar vía SMS', + 'submit_sms1' => 'Enviar su SMS a ', + 'submit_sms2' => 'en su teléfono', + 'success' => 'Funcionó!', + 'successfuly_imported' => 'Se han importado exitosamente', + 'surname' => 'apellido', + 'survey' => 'Encuesta', + 'system' => 'Sistema', + 'taller_map' => 'Mapa más alto', + 'tcp_port' => 'Puerto TCP', + 'themes' => 'Estilos', + 'theme_default' => 'Estilo Preconfigurado', + 'theme_settings' => 'Configuración de Estilos', + 'this' => 'Este', + 'this_day' => 'Hoy', + 'this_month' => 'Este Mes', + 'this_week' => 'Esta Semana', + 'this_year' => 'Este Año', + 'this_is_your_profile' => 'Este es su perfil', + 'time' => 'Hora', + 'title' => 'Título ', + 'to' => 'Para', + 'today' => 'Hoy', + 'today_at' => 'Hoy a las', + 'token' => 'Ficha', + 'total_reports' => 'Total de reportes', + 'translated' => 'Traducido', + 'translated_description' => 'Traducción de la Descripción', + 'translated_title' => 'Traducción del Título', + 'translate_to' => 'Traducir a', + 'translation' => 'Traducción', + 'translation_saved' => 'La Traducción ha sido Guardada', + 'trusted' => 'Confiable', + 'type' => 'Tipo', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Imposible enviar un email.', + 'uncategorized_reports' => 'Reportes sin categorizar', + 'unread' => 'No Leído', + 'unverified' => 'No verificado', + 'update_feeds' => 'Actualizar Boletines', + 'upload' => 'Subir', + 'upload_guide' => 'Vea las guías para la carga de informes.', + 'upload_docs_1' => 'XML: Guía de carga', + 'upload_docs_2' => 'CSV: Guía de carga', + 'upload_file' => 'Archivo a subir', + 'upload_reports' => 'Subir Reportes', + 'upload_reports_detail_1' => 'En esta página es posible importar reportes al sistema', + 'upload_reports_detail_2' => 'Los informes deben ser cargados en formato CSV o XML.', + 'upload_reports_detail_4' => 'Título y Fecha (incident_title, incident_date) son campos obligatorios', + 'upload_reports_detail_4b' => 'Si no hay latitud o longitud, la localización será asignada usando Google Geocoder', + 'upload_reports_detail_4d' => 'Al menos debe ingresar información en uno de los campos de información personal (nombre, apellido, correo electrónico). Registros vacíos no serán importados.', + 'upload_reports_detail_4g' => 'Valores del campo fecha deben ser ingresados en el siguiente formato: mm/dd/aaaa ejemplo: 3 de Octubre de 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Archivo CSV de ejemplo. La primera linea son los encabezados, las siguientes dos líneas representa un reporte cada uno. Las categorías se ingresan por nombre, y puede haber más de una', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Amenazas en Parque Hernandez","2009-05-15 01:06:00","Santa Tecla","Amenazas a comerciantes, etc, etc","AMENAZAS",YES,YES', + 'upload_reports_detail_7' => '"2","Robo seguido de muerte","2009-03-18 10:10:00","San Salvador","Robo de un TV","ROBO, HOMICIDIO",YES,NO', + 'upload_successful' => 'Carga Exitosa', + 'upload_video' => 'Subir Video', + 'url' => 'URL', + 'user' => 'Usuario', + 'username' => 'Usuario', + 'ushahidi_admin' => 'Administrador del sistema', + 'verification' => 'Verificados', + 'verified' => 'Verificado', + 'verified_reports' => 'Reportes Verificados', + 'verify' => 'Verificar', + 'verify_this_report' => 'Verificar este Reporte', + 'version' => 'Versión', + 'via' => 'vía', + 'video' => 'Vídeo', + 'view' => 'Ver', + 'views' => 'Vistas', + 'view_all' => 'Ver Todos/as', + 'view_all_feeds' => 'Ver Todos los Boletines', + 'view_all_reports' => 'Ver Todos los Reportes', + 'view_items' => 'Ver Items', + 'view_more' => 'Ver más', + 'view_public_profile' => 'Perfil público', + 'view_report' => 'Ver reporte', + 'view_reports' => 'Ver reportes', + 'view_video' => 'Ver video', + 'visible' => 'Visible', + 'waiting_approval' => 'Esperando Aprobación', + 'waiting_verification' => 'Esperando Verificación', + 'wider_map' => 'Mapa más ancho', + 'web_form' => 'Formulario Web', + 'web' => 'Web', + 'weight' => 'Peso', + 'yes' => 'Sí', + 'yesterday' => 'Ayer', + 'your_dashboard' => 'Tablero de control', + 'your_file' => 'Su archivo', + 'zoom_in' => 'Acercar', + 'zoom_out' => 'Alejar', +); diff --git a/application/i18n/es_AR/upgrade.php b/application/i18n/es_AR/upgrade.php new file mode 100755 index 0000000000..7afc3ebd30 --- /dev/null +++ b/application/i18n/es_AR/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Dato de entrada inválido. Puede ser 0 para No o 1 para Si.', + ) , + 'upgrade_automatic' => 'Actualización automática', + 'upgrade_available' => 'Actualizaciones disponibles', + 'upgrade_continue_btn_text' => 'Continuar', + 'upgrade_db_btn_text' => 'Actualizar', + 'upgrade_db_text_1' => 'Voy a actualizar su base de datos desde la versión', + 'upgrade_db_text_2' => 'a la nueva versión de la base de datos.', + 'upgrade_db_text_3' => 'Haga click en el botón "Actualizar" y solo relajese mientras realizo la magia.', + 'upgrade_db_text_4' => 'Adicionalmente, si quiere respaladr su base de datos, marque el checkbox de abajo y yo lo haré en un instante.', + 'upgrade_db_text_5' => '¿Respaldar base de datos antes de la actualización? (Altamente recomendado)', + 'upgrade_db_title' => 'Upgrade de base de datos Ushahidi', + 'upgrade_db_info' => 'Ushahidi ha sido actualizado! Antes de continuar, necesita actualizar su base de datos a la versión más nueva (%s).', + 'upgrade_db_up_to_date' => 'La versión de su base de datos está actualizada.', + 'upgrade_failed' => 'La actualización fallo en algún punto', + 'upgrade_manual' => 'Actualización manual', + 'upgrade_status' => 'Estado de upgrade de Ushahidi', + 'upgrade_text_1' => 'Estas instrucciones lo guiarán para actualizar manualmente Ushahidi', + 'upgrade_text_2' => 'Paso 1: Descargue la última versión de Ushahidi desde http://download.ushahidi.com', + 'upgrade_text_3' => 'Paso 2: Dependiendo del sistema operativo en que corre el servidor web, use su método preferido para ingresar al servidor (i.e: telnet, ftp, ssh) y reemplace el contenido de todos los directorios con los de la última versión. Todos EXCEPTO:', + 'upgrade_text_4' => 'Paso 3: Utilizando un cliente de MySQL (ejemplo: phpMyAdmin) ejecute upgrade.sql. Este programa actualizar', + 'upgrade_tables' => 'Paso 3: Fijarse en la carpeta sql. Ejecute manualmente el archivo upgrade-.sql iniciando desde el actual versión de la base de datos de su instalación hasta el archivo final de upgrade sql.', + 'upgrade_text_5' => 'Para una actualización automática, haga click en el botón de abajo.', + 'upgrade_text_6' => 'Para upgrade automática, click en el botón de abajo.', + 'upgrade_title_text' => 'Está usando actualmente Usahidi v%1$s, base de datos versión %2$d ejecutando %3$s', + 'upgrading' => 'Actualizando', + 'upgrade_ftp_text' => 'Para continuar con el upgrade sencillo, la siguiente información es requerida para el servidor FTP que su sitio web posee.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Ejemplo: "localhost"', + 'upgrade_ftp_password' => 'Contraseña FTP:', + 'upgrade_ftp_username' => 'Nombre de ususario FTP:', + 'upgrade_status_info' => 'Tiene la última versión de Ushahidi.', + 'upgrade_status_info_2' => 'No necesita upgrade.', + 'upgrade_db_version' => 'Versión de la base de datos: %d', + 'upgrade_warning_software_version' => 'Atención: La versión del software en version.php y la base de datos no coinciden.', + 'upgrade_warning_db_version' => 'Atención: La versión de la base de datos en version.php y la base de datos no coinciden.', + 'upgrade_database' => 'Base de datos:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Baje la última versión de ushahidi...', + 'log_file' => 'Archivo de Log', + 'successfully_downloaded' => 'Descarga exitosa. Descomprimiendo...', + 'failed_downloading' => 'Falla en la bajada.', + 'successfully_unpacked' => 'Exitosamente Descomprimido. Copiando archivos....', + 'failed_unpacking' => 'Falla en descompresión.', + 'successfully_copied' => 'Exitosamente copiado. Iniciando upgrade de la Base de datos...', + 'failed_copying' => 'Falla en la copia de archivos.', + 'backup_success' => 'Backup de Base de datos y upgrade exitosos.', + 'backup_failed' => 'Falla en el backup de la Base de datos.', + 'dbupgrade_success' => 'Upgrade de base de datos exitoso.', + 'deleting_files' => 'Borrano archivos bajados...', + 'upgrade_success' => 'UPGRADE EXITOSO. Ver Archivo de Log', +); diff --git a/application/i18n/es_CL/alerts.php b/application/i18n/es_CL/alerts.php new file mode 100644 index 0000000000..d214605fc5 --- /dev/null +++ b/application/i18n/es_CL/alerts.php @@ -0,0 +1,7 @@ + 'Mirar reportes', + 'reports_edit' => 'Crear/Editar/Borrar reportes', + 'reports_approve' => 'Aprovar reportes', + 'reports_verify' => 'Verificar reportes', + 'reports_comments' => 'Gestionar comentarios de reporte', + 'reports_download' => 'Descargar reportes', + 'reports_upload' => 'Subir reportes', + 'messages' => 'Gestionar mensajes', + 'messages_reporters' => 'Gestionar reportadores de mensajes', + 'stats' => 'Mirar estadísticas', + 'settings' => 'Modificar ajustes', + 'manage' => 'Gestionar panel', + 'users' => 'Gestionar usuarios', + 'manage_roles' => 'Gestionar roles', + 'checkin' => 'Puede facturar', + 'checkin_admin' => 'Administrar facturas', + 'admin_ui' => 'Acceder a la interfaz de administrador', + 'member_ui' => 'Acceder a la interfaz de los miembros', +); diff --git a/application/i18n/es_CL/private_message.php b/application/i18n/es_CL/private_message.php new file mode 100644 index 0000000000..d214605fc5 --- /dev/null +++ b/application/i18n/es_CL/private_message.php @@ -0,0 +1,7 @@ + array( + 'required' => 'Por favor verifique que ha revisado un articulo', + 'numeric' => 'Por favor verifique que ha revisado un articulo', + 'categories_required' => 'Los reportes deben ser categorizados antes de que puedan ser aprovados', + ) , + 'action' => array( + 'permission' => 'No tienes los permisos para ejecutar esta accion', + ) , + 'uploadfile' => array( + 'required' => 'Debes seleccionar un archivo para subir', + 'type' => 'El archivo de subida debe ser en formato .csv o .xml', + 'valid' => 'El campo de subida del archivo parece no contener un archivo válido', + ) , +); diff --git a/application/i18n/es_CL/roles.php b/application/i18n/es_CL/roles.php new file mode 100644 index 0000000000..d214605fc5 --- /dev/null +++ b/application/i18n/es_CL/roles.php @@ -0,0 +1,7 @@ + array( + 'email' => 'El campo de correo electrónico parece que no contiene una dirección válida.', + 'email_check' => 'Esa dirección de correo electrónico ya está registrada para recibir alertas de esa ubicación.', + 'length' => 'El campo de correo electrónico debe tener entre 4 y 64 caracteres.', + 'required' => 'El campo de correo electrónico es obligatorio si la casilla está marcada.', + ) , + 'alert_country' => array( + 'single_country' => 'Este despliegue afecta únicamente a un país. Asegúrese de que la ubicación de alerta está dentro de %s.', + ) , + 'alert_lat' => array( + 'between' => 'No ha seleccionado una ubicación válida en el mapa.', + 'required' => 'No ha seleccionado una ubicación válida en el mapa.', + ) , + 'alert_lon' => array( + 'between' => 'No ha seleccionado una ubicación válida en el mapa.', + 'required' => 'No ha seleccionado una ubicación válida en el mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'El campo de teléfono móvil no parece tener la longitud correcta.', + 'mobile_check' => 'Ese teléfono móvil ya ha sido registrado para recibir alertas desde esa ubicación.', + 'numeric' => 'El campo de teléfono móvil no parece contener un número válido. Introduzca únicamente números que incluyan el prefijo internacional.', + 'one_required' => 'Es obligatorio introducir su teléfono móvil o su dirección de correo electrónico.', + 'required' => 'El campo de teléfono móvil es obligatorio si la casilla está marcada.', + ) , + 'alert_radius' => array( + 'in_array' => 'No ha fijado un radio válido en el mapa.', + 'required' => 'No ha fijado su radio en el mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'No ha fijado un receptor de las alertas.', + ) , + 'alerts_subscribed' => 'Se ha suscrito a alertas de las siguientes categorías', + 'code_already_verified' => 'Este código ya ha sido verificado.', + 'code_not_found' => 'No se ha encontrado el código de verificación. Confirme que la URL es correcta.', + 'code_verified' => 'El código se ha verificado correctamente. A partir de ahora recibirá alertas sobre incidentes en tiempo real.', + 'confirm_request' => 'Para confirmar su solicitud de alerta, visite', + 'create_more_alerts' => 'Volver a la página de Alertas para crear más alertas', + 'email_alert_request_created' => 'Su solicitud de alerta por correo electrónico ha sido registrada y se ha enviado una verificación a', + 'email_code' => 'Introduzca a continuación el código de verificación de correo electrónico:', + 'email_error_head' => 'Su solicitud de alerta por correo electrónico NO se ha registrado.', + 'email_ok_head' => 'Su solicitud de alerta por correo electrónico se ha registrado.', + 'error' => 'El sistema no ha podido procesar la solicitud de confirmación.', + 'mobile_alert_request_created' => 'Su solicitud de alerta por teléfono móvil ha sido registrada y se ha enviado una verificación a', + 'mobile_code' => 'Introduzca a continuación el código de verificación de SMS:', + 'mobile_error_head' => 'Su solicitud de alerta por teléfono móvil NO se ha registrado.', + 'mobile_ok_head' => 'Su solicitud de alerta por teléfono móvil se ha registrado.', + 'settings_error' => 'Este despliegue no está configurado para procesar alertas correctamente', + 'unsubscribe' => 'Ha recibido este correo electrónico porque se ha suscrito para recibir alertas. Si no desea recibir alertas futuras, visite', + 'unsubscribed' => 'No recibirá más alertas de', + 'unsubscribe_failed' => 'No hemos podido cancelar la suscripción. Compruebe que la URL es correcta.', + 'verification_email_subject' => 'alertas - verificación', + 'verify_code' => 'No recibirá alertas de esta ubicación hasta que confirme la solicitud.', +); diff --git a/application/i18n/es_ES/auth.php b/application/i18n/es_ES/auth.php new file mode 100644 index 0000000000..0eae4cb618 --- /dev/null +++ b/application/i18n/es_ES/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'El correo introducido no es válido.', + 'exists' => 'Lo sentimos, ya existe una cuenta registrada con ese correo electrónico.', + 'length' => 'El campo de correo electrónico debe tener entre 4 y 64 caracteres.', + 'required' => 'El campo de correo electrónico es obligatorio.', + ) , + 'name' => array( + 'length' => 'El campo de nombre debe tener una longitud entre 3 y 100 carecteres', + 'required' => 'El campo Nombre es obligatorio.', + 'standard_text' => 'El campo Usuario tiene caracteres no permitidos.', + ) , + 'current_password' => array( + 'length' => 'La contraseña debe contener al menos 8 caracteres.', + 'login error' => 'Compruebe que a escrito correctamente el correo electrónico y la contraseña.', + 'matches' => 'Por favor, escriba la misma contraseña en los dos compos de contraseña.', + 'required' => 'La contraseña es obligatorio.', + 'alpha_dash' => 'La contraseña debe contener caracter alfabéticos, los símbolos # y @, numeros, guiones bajos y guiones.', + 'incorrect' => 'La contraseña que ha escrito es incorrecta. Vuelva a intentarlo.', + ) , + 'new_password' => array( + 'length' => 'La contraseña debe tener al menos 8 caracteres de longitud.', + 'login error' => 'Por favor compruebe que ha introducido correctamente el correo electrónico y la contraseña.', + 'matches' => 'Por favor escribe la misma contraseña en los dos campos de contraseña.', + 'required' => 'La contraseña es obligatoria.', + 'alpha_dash' => 'La contraseña debe contener caracter alfabéticos, los símbolos # y @, numeros, guiones bajos y guiones.', + ) , + 'password' => array( + 'default' => 'Hubo un error en el acceso.', + 'length' => 'La contraseña debe contener al menos 8 caracteres.', + 'login error' => 'Por favor compruebe que ha escrito correctamente el correo electrónico y la contraseña.', + 'matches' => 'Por favor, escribe la misma contraseña en los dos campos de contraseña.', + 'required' => 'La contraseña es obligatoria.', + 'riverid server down' => 'El servidor de acceso no está operativo. Por favor, vuelva a intentarlo.', + 'riverid' => '%s', + 'alpha_dash' => 'La contraseña debe contener caracter alfabéticos, los símbolos # y @, numeros, guiones bajos y guiones.', + ) , + 'password_confirm' => array( + 'matches' => 'El campo de confirmación de contraseña debe coincidir con el campo de la contraseña.', + ) , + 'resetemail' => array( + 'email' => 'El correo electrónico que has escrito no es válido.', + 'invalid' => 'Perdón, pero no tenemos tu correo electrónico.', + 'required' => 'El correo electrónico es obligatorio.', + ) , + 'role' => array( + 'superadmin_modify' => 'Solo un superadministrador puede modificar a una superadministrador o actualizar a un usuario a administrador.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Formato de papel inválido.', + 'length' => 'El papel tiene que tener entre 5 y 30 caracteres.', + 'required' => 'Debe de definir al menos un papel.', + 'values' => 'Debe seleccionar ADMINISTRADOR o USUARIO.', + ) , + 'token' => array( + 'invalid' => 'El token de contraseña obligatoria no es válido.', + 'required' => 'El token de contraseña olvidada es obligatorio.', + ) , + 'username' => array( + 'admin' => 'El papel de administrador no puede ser modificado.', + 'alpha_numeric' => 'URL publica del perfil solo puede contener números y letras.', + 'exists' => 'Perdón, URL pública en uso.', + 'length' => 'La URL pública del perfil tiene que tener entre 2 y 100 caracteres de largo.', + 'login error' => 'Compruebe que a escrito correctamente la URL publica de perfil.', + 'required' => 'La URL pública de perfil es obligatoria.', + 'superadmin' => 'El papel de superadministrador no puede ser modificado.', + 'csrf' => 'Posible ataque CSRF. ¿De verdad quieres crear/editar un usuario?', + ) , +); diff --git a/application/i18n/es_ES/bug.php b/application/i18n/es_ES/bug.php new file mode 100644 index 0000000000..6b178428a9 --- /dev/null +++ b/application/i18n/es_ES/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Introduce un código de seguridad válido.', + 'required' => 'Introduce el código de seguridad.', + ) , + 'email' => array( + 'email' => 'La dirección escrita en el campo Correo Electrónico es incorrecta.', + 'length' => 'El campo Correo Electrónico debe tener una longitud de 4-64 caracteres.', + 'required' => 'El campo Correo Electrónico es obligatorio si la casilla de verificación está marcada.', + ) , + 'error' => array( + 'required' => 'El campo Error es obligatorio.', + ) , + 'subject' => array( + 'length' => 'El campo Asunto debe contener al menos 3 caracteres.', + 'required' => 'El campo Asunto es obligatorio.', + ) , + 'yourname' => array( + 'length' => 'El campo Nombre debe contener al menos 3 caracteres.', + 'required' => 'El campo Nombre es obligatorio.', + ) , +); diff --git a/application/i18n/es_ES/category.php b/application/i18n/es_ES/category.php new file mode 100644 index 0000000000..e3b8d61c38 --- /dev/null +++ b/application/i18n/es_ES/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'El campo de color debe tener 6 caracteres.', + 'required' => 'El campo de color es obligatorio.', + ) , + 'category_description' => array( + 'required' => 'El campo de descripción es obligatorio.', + ) , + 'category_image' => array( + 'size' => 'Asegúrese de que las imágenes subidas ocupan un máximo de 50KB.', + 'type' => 'El campo de imagen no contiene una imagen válida. Los formatos admitidos son .JPG, .PNG y .GIF.', + 'valid' => 'El campo de imagen no contiene un archivo válido', + ) , + 'category_title' => array( + 'length' => 'El campo de título debe tener entre 3 y 80 caracteres.', + 'required' => 'El campo de título es obligatorio.', + ) , + 'parent_id' => array( + 'already_parent' => 'No se puede subcategorizar una categoría con subcategorías.', + 'exists' => 'La categoría superior no existe.', + 'numeric' => 'El campo de categoría superior debe de ser numérico.', + 'parent_trusted' => 'El campo de categoría superior no puede ser una categoría especial.', + 'required' => 'El campo de categoría superior es obligatorio.', + 'same' => 'La categoría y la categoría superior no pueden ser la misma.', + 'special' => 'Las categorías especiales no pueden contener subcategorías.', + ) , +); diff --git a/application/i18n/es_ES/comments.php b/application/i18n/es_ES/comments.php new file mode 100644 index 0000000000..906f5856c3 --- /dev/null +++ b/application/i18n/es_ES/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Introduce un código de seguridad válido.', + 'required' => 'Introduce el código de seguridad.', + 'valid' => 'El código de seguridad es incorrecto.', + ) , + 'comment_author' => array( + 'length' => 'El campo Nombre debe contener al menos 3 caracteres.', + 'required' => 'El campo Nombre es obligatorio.', + ) , + 'comment_description' => array( + 'required' => 'El campo Comentarios es obligatorio.', + ) , + 'comment_email' => array( + 'email' => 'La dirección escrita en el campo Correo Electrónico es incorrecta.', + 'length' => 'El campo de correo electrónico debe tener entre 4 y 64 caracteres.', + 'required' => 'El campo de correo electrónico es obligatorio si la casilla está marcada.', + ) , +); diff --git a/application/i18n/es_ES/contact.php b/application/i18n/es_ES/contact.php new file mode 100644 index 0000000000..71bca136d4 --- /dev/null +++ b/application/i18n/es_ES/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Introduce un código de seguridad válido.', + 'valid' => 'Introduce un código de seguridad válido.', + 'required' => 'Introduce el código de seguridad.', + ) , + 'contact_email' => array( + 'email' => 'La dirección escrita en el campo Correo Electrónico es incorrecta.', + 'length' => 'El campo Correo Electrónico debe tener una longitud de 4-64 caracteres.', + 'required' => 'El campo Correo Electrónico es obligatorio si la casilla de verificación está marcada.', + ) , + 'contact_message' => array( + 'required' => 'El campo Mensaje es obligatorio.', + ) , + 'contact_name' => array( + 'length' => 'El campo Nombre debe contener al menos 3 caracteres.', + 'required' => 'El campo Nombre es obligatorio.', + ) , + 'contact_subject' => array( + 'length' => 'El campo Asunto debe contener al menos 3 caracteres.', + 'required' => 'El campo Asunto es obligatorio.', + ) , + 'email_send' => array( + 'failed' => 'Se ha producido un error al enviar el mensaje.', + ) , +); diff --git a/application/i18n/es_ES/core.php b/application/i18n/es_ES/core.php new file mode 100644 index 0000000000..3fd3354777 --- /dev/null +++ b/application/i18n/es_ES/core.php @@ -0,0 +1,35 @@ + 'fichero de configuracion', + 'controller' => 'controlador', + 'driver' => 'driver', + 'driver_implements' => 'El %s driver para la %s libreria debe añadirse en el %s interfaz.', + 'driver_not_found' => 'EL %s driver para la %s librería no ha sido encontrado.', + 'errors_disabled' => 'Puedes ir a inicio o vuelve a intentarlo.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Imposible competar su solicitud.', + 'helper' => 'ayudante', + 'invalid_filetype' => 'El tipo de archivo solicitado, .%s, no está permitido en el archivo de configuración.', + 'invalid_method' => 'Método inválido %s llamado en %s', + 'invalid_property' => 'La propiedad %s no existe en la clase %s', + 'library' => 'librería', + 'log_dir_unwritable' => 'El directorio del log no es escribible: %s', + 'model' => 'modelo', + 'no_controller' => 'Ushahidi no pudo determinar un controlador para procesar esa solicitud: %s', + 'no_default_route' => 'Por favor escribe una ruta por defecto en config/routes.php', + 'page_not_found' => 'La página que ha solicitado, %s, no ha sido encontrada.', + 'report_bug' => 'Informar de este echo a Ushahidi', + 'resource_not_found' => 'La solicitud %s, %s, no ha sido encontrada.', + 'stack_trace' => 'Espacio de pila', + 'stats_footer' => 'Cargado en {execution_time} segundos, usando {memory_usage} de memoria. Generado por Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Solo puede haber una instancia de ushahidi por solicitud de página.', + 'uncaught_exception' => 'No detectado %s: %s en el archivo %s en la linea %s', + 'view' => 'ver', + 'view_set_filename' => 'Debe establecer el nombre del archivo de la vista antes de renderizar .', +); diff --git a/application/i18n/es_ES/database.php b/application/i18n/es_ES/database.php new file mode 100644 index 0000000000..6d493de884 --- /dev/null +++ b/application/i18n/es_ES/database.php @@ -0,0 +1,10 @@ + 'Error de la base de datos: %s', + 'table_not_found' => 'La tabla "%s" no ha sido encontrada en la base de datos. Por favor, asegúrate de que estás utilizando la última versión de la base de datos para esta versión de Ushahidi.', +); diff --git a/application/i18n/es_ES/datetime.php b/application/i18n/es_ES/datetime.php new file mode 100644 index 0000000000..11d2f0514f --- /dev/null +++ b/application/i18n/es_ES/datetime.php @@ -0,0 +1,86 @@ + 'a.m.', + 'friday' => array( + 'abbv' => 'Vie', + 'full' => 'Viernes', + ) , + 'monday' => array( + 'abbv' => 'Lun', + 'full' => 'Lunes', + ) , + 'pm' => 'p.m.', + 'saturday' => array( + 'abbv' => 'Sab', + 'full' => 'Sabado', + ) , + 'sunday' => array( + 'abbv' => 'Dom', + 'full' => 'Domingo', + ) , + 'thursday' => array( + 'abbv' => 'Jue', + 'full' => 'Jueves', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => 'Martes', + ) , + 'wednesday' => array( + 'abbv' => 'Mie', + 'full' => 'Miércoles', + ) , + 'january' => array( + 'abbv' => 'Ene', + 'full' => 'Enero', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Febrero', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marzo', + ) , + 'april' => array( + 'abbv' => 'Abr', + 'full' => 'Abril', + ) , + 'may' => array( + 'abbv' => 'May', + 'full' => 'Mayo', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Junio', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Julio', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agosto', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'Septiembre', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'Octubre', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Noviembre', + ) , + 'december' => array( + 'abbv' => 'Dic', + 'full' => 'Diciembre', + ) , +); diff --git a/application/i18n/es_ES/feeds.php b/application/i18n/es_ES/feeds.php new file mode 100644 index 0000000000..57246fb8d2 --- /dev/null +++ b/application/i18n/es_ES/feeds.php @@ -0,0 +1,19 @@ + 'FECHA', + 'feed_name' => array( + 'length' => 'El nombre del feed debe tener por lo menos 3 caracteres y no más de 70 caracteres de largo.', + 'required' => 'Por favor, escribe el nombre del feed', + ) , + 'feed_url' => array( + 'required' => 'Escribe la URL del feed', + 'url' => 'Escribe una URL válida, ejemplo http://www.ushahidi.com', + ) , + 'source' => 'Fuente', + 'title' => 'Titulo', +); diff --git a/application/i18n/es_ES/footer.php b/application/i18n/es_ES/footer.php new file mode 100644 index 0000000000..b9264620df --- /dev/null +++ b/application/i18n/es_ES/footer.php @@ -0,0 +1,9 @@ + 'php5-curl no está instalado en este sistema.', +); diff --git a/application/i18n/es_ES/form.php b/application/i18n/es_ES/form.php new file mode 100644 index 0000000000..0264000a52 --- /dev/null +++ b/application/i18n/es_ES/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'El valor por defecto que has introducido para el campo es inválido.', + 'length' => 'El campo de nombre debe tener una longitud entre 3 y 200 carecteres', + ) , + 'field_height' => array( + 'between' => 'Por favor escribe un valor entre 0y 50 en el campo de Altura', + ) , + 'field_isdate' => array( + 'between' => 'Fecha inválida.', + 'required' => 'Por favor, seleccione Si o No en el campo Fecha', + ) , + 'field_name' => array( + 'length' => 'El campo de nombre debe tener una longitud entre 3 y 100 carecteres', + 'required' => 'Por favor escriba el campo nombre.', + 'duplicate' => 'El nombre de campo ya existe en este formulario, prueba con otro.', + ) , + 'field_required' => array( + 'between' => 'Valor inválido para un campo requerido.', + 'required' => 'Por favor seleccione Si o No para el campo requerido.', + ) , + 'field_type' => array( + 'numeric' => 'Por favor, seleccione un tipo de campo.', + 'required' => 'Seleccionar un tipo de campo', + ) , + 'field_width' => array( + 'between' => 'Por favor, selecciona un valor entre 0 y 300 para el campo Ancho', + ) , + 'form_description' => array( + 'required' => 'Introduzca la descripción del formulario', + ) , + 'form_id' => array( + 'default' => 'El formulario por defecto no se puede eliminar.', + 'numeric' => 'Por favor, selecciona a que formulario añadir este campo.', + 'required' => 'Selecciona a que formulario le vas a añadir este campo.', + ) , + 'form_title' => array( + 'length' => 'El campo de nombre debe tener una longitud entre 3 y 100 carecteres', + 'required' => 'Por favor, escribe el nombre del formulario.', + 'exists' => 'Un formulario con ese título ya existe, prueba con otro.', + ) , +); diff --git a/application/i18n/es_ES/imap.php b/application/i18n/es_ES/imap.php new file mode 100644 index 0000000000..00b86acfec --- /dev/null +++ b/application/i18n/es_ES/imap.php @@ -0,0 +1,10 @@ + 'No se pudo abrir el flujo IMAP.', + 'unsupported_service' => 'El servicio de correo electrónico no es soportado', +); diff --git a/application/i18n/es_ES/layer.php b/application/i18n/es_ES/layer.php new file mode 100644 index 0000000000..3454034bf6 --- /dev/null +++ b/application/i18n/es_ES/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El campo Color debe contener al menos 6 caracteres.', + 'required' => 'El campo Color es obligatorio.', + ) , + 'layer_file' => array( + 'type' => 'El campo fichero no parece contener un fichero válido. Los únicos formatos aceptados son .KMZ y .KML.', + 'valid' => 'El campo fichero no parece contener un fichero válido', + ) , + 'layer_name' => array( + 'length' => 'El nombre de campo debe tener una longitud entre 3 y 80 carecteres', + 'required' => 'El campo nombre es necesario.', + ) , + 'layer_url' => array( + 'atleast' => 'Es necesario una URL KML o Fichero.', + 'both' => 'No puede tener un fichero KML y una URL.', + 'url' => 'Por favor, introduzca una URL válida, ej. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/es_ES/maintenance.php b/application/i18n/es_ES/maintenance.php new file mode 100644 index 0000000000..7accb314d8 --- /dev/null +++ b/application/i18n/es_ES/maintenance.php @@ -0,0 +1,9 @@ + 'Este sitio está cerrado por mantenimiento. Vuelva a intentarlo pasados unos minutos.', +); diff --git a/application/i18n/es_ES/message.php b/application/i18n/es_ES/message.php new file mode 100644 index 0000000000..8744411c5c --- /dev/null +++ b/application/i18n/es_ES/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Por favor, introduzca un código de seguridad válido.', + 'required' => 'Por favor, introduzca el código de seguridad.', + ) , + 'email' => array( + 'email' => 'El campo de correo electrónico parece no contener una dirección no válida.', + 'length' => 'El campo de correo electrónico debe tener entre 4 y 64 caracteres.', + 'required' => 'El campo de correo electrónico es obligatorio si la casilla está marcada.', + ) , + 'message' => array( + 'required' => 'El campo de comentarios es obligatorio.', + ) , + 'name' => array( + 'length' => 'El campo Nombre debe contener al menos 3 caracteres.', + 'required' => 'El campo Nombre es obligatorio.', + ) , + 'phone' => array( + 'length' => 'El campo Teléfono no es válido.', + ) , +); diff --git a/application/i18n/es_ES/mhi.php b/application/i18n/es_ES/mhi.php new file mode 100644 index 0000000000..96ddd8c3db --- /dev/null +++ b/application/i18n/es_ES/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Introduce un código de seguridad válido.', + 'required' => 'Introduce el código de seguridad.', + ) , + 'contact_email' => array( + 'email' => 'La dirección escrita en el campo Correo Electrónico es incorrecta.', + 'required' => 'Introduce una dirección de correo electrónico válida.', + ) , + 'contact_message' => array( + 'required' => 'El campo Mensaje es obligatorio.', + ) , + 'contact_subject' => array( + 'length' => 'El campo Asunto debe contener al menos 3 caracteres.', + 'required' => 'El campo Asunto es obligatorio.', + ) , +); diff --git a/application/i18n/es_ES/notifications.php b/application/i18n/es_ES/notifications.php new file mode 100644 index 0000000000..13de3ba850 --- /dev/null +++ b/application/i18n/es_ES/notifications.php @@ -0,0 +1,35 @@ + 'Este mensaje fue enviado desde tu sitio web.', + 'admin_login_url' => 'Iniciar sesión del administrador', + 'admin_new_comment' => array( + 'message' => 'Un nuevo comentario ha sido enviado a tu sitio web en respuesta de:', + 'subject' => 'Nuevo Comentario', + ) , + 'admin_new_email' => array( + 'message' => 'Un nuevo correo electrónico ha sido enviado a tu sitio web.', + 'subject' => 'Nuevo mensaje', + ) , + 'admin_new_report' => array( + 'message' => 'Un nuevo reporte ha sido enviado a tu sitio web.', + 'subject' => 'Nuevo Reporte', + ) , + 'admin_new_sms' => array( + 'message' => 'Un nuevo mensaje de texto ha siado enviado a tu sitio web.', + 'subject' => 'Nuevo mensaje de Texto.', + ) , + 'member_new_alert' => array( + 'message' => 'Has recibido una Nueva Alerta', + 'subject' => '¡Nueva Alerta!', + ) , + 'member_new_message' => array( + 'message' => 'Has recibido un Mensaje Privado', + 'subject' => 'Nuevo Mensaje Privado', + 'footer' => 'Para Responder por favor Ir a:', + ) , +); diff --git a/application/i18n/es_ES/page.php b/application/i18n/es_ES/page.php new file mode 100644 index 0000000000..dc0b5643ba --- /dev/null +++ b/application/i18n/es_ES/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Introduzca el título de la página.', + 'length' => 'El título de la página debe tener entre 3 y 150 caracteres.', + ) , + 'page_tab' => array( + 'required' => 'Introduzca el nombre de la pestaña.', + ) , + 'page_description' => array( + 'required' => 'Introduzca la descripción de la página.', + ) , +); diff --git a/application/i18n/es_ES/permissions.php b/application/i18n/es_ES/permissions.php new file mode 100644 index 0000000000..214b60d5c1 --- /dev/null +++ b/application/i18n/es_ES/permissions.php @@ -0,0 +1,27 @@ + 'Ver informes', + 'reports_edit' => 'Crear/Editar/Eliminar informes', + 'reports_approve' => 'Aprobar informes', + 'reports_verify' => 'Verificar informes', + 'reports_comments' => 'Gestionar comentarios', + 'reports_download' => 'Descargar informes', + 'reports_upload' => 'Subir informes', + 'messages' => 'Gestionar mensajes', + 'messages_reporters' => 'Gestionar mensajes de los reporteros.', + 'stats' => 'Ver estadísticas.', + 'settings' => 'Modificar los ajustes', + 'manage' => 'Gestionar el panel', + 'users' => 'Gestionar usuarios', + 'manage_roles' => 'Gestionar Roles', + 'checkin' => 'Puede comprobar', + 'checkin_admin' => 'Gestionar comprobaciones', + 'admin_ui' => 'Acceder a la interfaz de administrador.', + 'member_ui' => 'Acceder a la interfaz de miembro.', + 'delete_all_reports' => 'Borrar todos los informes.', +); diff --git a/application/i18n/es_ES/private_message.php b/application/i18n/es_ES/private_message.php new file mode 100644 index 0000000000..b6a2c406ab --- /dev/null +++ b/application/i18n/es_ES/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'El ID debe ser numérico', + ) , + 'private_to' => array( + 'required' => 'El campo Para es obligatorio', + 'exists' => 'El usuario al que está intentando enviar el mensaje no existe', + ) , + 'private_subject' => array( + 'required' => 'La campo Asunto es obligatorio', + 'length' => 'El asunto debe tener entre 3 y 150 caracteres', + ) , + 'private_message' => array( + 'required' => 'El campo Mensaje es obligatorio', + ) , +); diff --git a/application/i18n/es_ES/report.php b/application/i18n/es_ES/report.php new file mode 100644 index 0000000000..e0dc2b8f9e --- /dev/null +++ b/application/i18n/es_ES/report.php @@ -0,0 +1,139 @@ + '¡error!', + 'country_name' => array( + 'single_country' => 'Este despliegue se extiende dentro de un solo país. Por favor, asegúrese de que la ubicación de informe se encuentra dentro del país %s.', + ) , + 'custom_field' => array( + 'values' => 'Por favor escribe un valor válido para el campo "%s".', + 'numeric' => 'El campo "%s" tiene que ser numérico.', + 'required' => 'El campo "%s" es obligatorio.', + 'not_exist' => 'El campo "%s" no existe.', + 'permission' => 'El campo "%s" no puede ser editado por tu cuenta.', + 'email' => 'El campo "%s" tiene que contener un correo electrónico válido.', + 'phone' => 'El campo "%s" tiene que contener un número de teléfono válido.', + 'date_mmddyyyy' => 'El campo "%s" debe contener una fecha válida (MM/DD/YYYY)', + 'date_ddmmyyyy' => 'El campo "%s" debe contener una fecha válida (MM/DD/YYYY)', + ) , + 'data_include' => array( + 'between' => 'Por favor seleccione un item válido para incluiro en la descarga', + 'numeric' => 'Por favor seleccione un item válido para incluiro en la descarga', + ) , + 'data_active' => array( + 'between' => 'Por favor, selecciona "Informes esperando aprobación" , "Informes aprobados" o ambos.', + 'numeric' => 'Por favor, selecciona "Informes esperando aprobación" , "Informes aprobados" o ambos.', + 'required' => 'Por favor, selecciona "Informes esperando aprobación" , "Informes aprobados" o ambos.', + ) , + 'data_verified' => array( + 'between' => 'Por favor, selecciona "Informes esperando aprobación" , "Informes aprobados" o ambos.', + 'numeric' => 'Por favor, selecciona "Informes esperando aprobación" , "Informes aprobados" o ambos.', + 'required' => 'Por favor, selecciona "Informes esperando aprobación" , "Informes aprobados" o ambos.', + ) , + 'data_point' => array( + 'between' => 'Por favor, selecciona un tipo de informe válido para descargar.', + 'numeric' => 'Por favor, selecciona un tipo de informe válido para descargar.', + 'required' => 'Por favor, selecciona un tipo de informe válido para descargar.', + ) , + 'format' => array( + 'required' => 'Selecciona un formato de descarga, CSV o XML.', + 'valid' => 'Por favor, selecciona un formato válido para descargar tus informes en ', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'El campo fecha DESDE no contiene un dato válido', + 'range' => 'Por favor escribe una fecha DESDE válida. No puede ser superior a hoy.', + ) , + 'incident_active' => array( + 'between' => 'Por favor escribe un valor válido para Aprovar este informe.', + 'required' => 'Por favor escribe un valor válido para Aprovar este informe.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'El campo am/pm parece que no contiene un valor válido.', + ) , + 'incident_category' => array( + 'numeric' => 'El campo "Categorías" no contiene una categoría válida', + 'required' => 'La categoría es obligatoria.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'La fecha parece que no es válida.', + 'date_mmddyyyy' => 'La fecha parece que no es válida.', + 'required' => 'La fecha es obligatoria.', + ) , + 'incident_description' => array( + 'required' => 'La descripción es obligatoria', + ) , + 'incident_hour' => array( + 'between' => 'La hora parece que no es válida.', + 'required' => 'La hora es obligatoria.', + ) , + 'incident_information' => array( + 'alpha' => 'Por favor escribe un valor válido para la Probabilidad de la Información.', + 'length' => 'Por favor escribe un valor válido para la Probabilidad de la Información.', + ) , + 'incident_minute' => array( + 'between' => 'El campo minutos parece que contiene un valor inválido.', + 'required' => 'Los minutos son obligatorios.', + ) , + 'incident_news' => array( + 'url' => 'La URL del campo de fuente de noticias parece no ser válida.', + ) , + 'incident_photo' => array( + 'size' => 'El tamaño máximo de las imágenes es 2MB.', + 'type' => 'Solo se aceptan los formatos de imagen .JPG, .PNG y .GIF. Comprueba el formato de la imagen que quieres subir.', + 'valid' => 'Las imágenes no son válidas.', + ) , + 'incident_source' => array( + 'alpha' => 'Escribe un valor válido para la Fiabilidad de la fuente.', + 'length' => 'Escribe un valor válido para la Fiabilidad de la fuente.', + ) , + 'incident_title' => array( + 'length' => 'El "Titulo del informe" debe de tener entre 3 y 200 caracteres.', + 'required' => 'El título es obligatorio.', + 'csrf' => 'Posible ataque CSRF. ¿Realmente quieres crear/editar un informe?', + ) , + 'incident_verified' => array( + 'between' => 'Por favor, escribe un valor válido para Verificar este informe.', + 'required' => 'Por favor, escribe un valor válido para Verificar este informe.', + ) , + 'incident_video' => array( + 'url' => 'El enlace al vídeo no es válido', + ) , + 'latitude' => array( + 'between' => 'La latitud no es válida.', + 'required' => 'La latitud es obligatoria. Haz clic en el mapa para seleccionar una.', + ) , + 'locale' => array( + 'alpha_dash' => 'La ubicación es incorrecta.', + 'exists' => 'Este informe ya esta traducido a este idioma.', + 'length' => 'La ubicación es incorrecta.', + 'locale' => 'El informe original y la traducción tienen el mismo idioma seleccionado (localización).', + 'required' => 'El idioma es obligatorio.', + ) , + 'location_name' => array( + 'length' => 'La ubicación no puede tener más de 200 caracteres ni menos de 3', + 'required' => 'La ubicación es obligatoria.', + ) , + 'longitude' => array( + 'between' => 'La longitud no es válida', + 'required' => 'La longitud es obligatoria. Haz clic en el mapa para seleccionar una.', + ) , + 'person_email' => array( + 'email' => 'El correo electrónico no es válido.', + 'length' => 'El campo de correo electrónico debe tener entre 4 y 64 caracteres.', + ) , + 'person_first' => array( + 'length' => 'El campo de nombre debe tener una longitud entre 3 y 100 carecteres', + ) , + 'person_last' => array( + 'length' => 'El campo de apellido debe tener una longitud entre 2 y 100 carecteres', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'La campo fecha HASTA no contiene una fecha válida.', + 'range' => 'Por favor, escribe una fecha HASTA válida. No puede ser superior a hoy.', + 'range_greater' => 'El DESDE no puede ser superior al HASTA.', + ) , +); diff --git a/application/i18n/es_ES/reporters.php b/application/i18n/es_ES/reporters.php new file mode 100644 index 0000000000..bbb37f065e --- /dev/null +++ b/application/i18n/es_ES/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'El campo latitud parece que no tiene una latitud válida.', + 'required' => 'La latitud es obligatoria. Haz clic en el mapa para seleccionar una', + ) , + 'level_id' => array( + 'numeric' => 'El campo de nivel de reportero parece que contiene un valor inválido', + 'required' => 'El campo de nivel de reportero parece que contiene un valor inválido', + ) , + 'location_name' => array( + 'length' => 'La ubicación tiene que tener entre 3 y 200 caracteres.', + 'required' => 'La ubicación es obligatoria.', + ) , + 'longitude' => array( + 'between' => 'El campo de longitud parace que no contiene una longitud válida.', + 'required' => 'La longitud es obligatoria. Haz clic en el mapa para seleccionar una.', + ) , + 'reporter_id' => array( + 'numeric' => 'Reportero inválido', + 'required' => 'Reportero inválido', + ) , +); diff --git a/application/i18n/es_ES/reports.php b/application/i18n/es_ES/reports.php new file mode 100644 index 0000000000..8e1b31064c --- /dev/null +++ b/application/i18n/es_ES/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Por favor, verificar que ha marcado un elemento', + 'numeric' => 'Por favor, verificar que ha marcado un elemento', + 'categories_required' => 'Los informes deben pertenecer a una categoría antes de ser aprovados.', + ) , + 'action' => array( + 'permission' => 'No tienes permiso para realizar esa acción', + ) , + 'uploadfile' => array( + 'required' => 'Tienes que seleccionar un archivo para subir', + 'type' => 'El archivo tiene que ser .csv o .xml', + 'valid' => 'Parece que el archivo no es válido', + ) , +); diff --git a/application/i18n/es_ES/roles.php b/application/i18n/es_ES/roles.php new file mode 100644 index 0000000000..72877d0d6e --- /dev/null +++ b/application/i18n/es_ES/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El campo Descripción debe contener 3-100 caracteres.', + 'required' => 'El campo Descripción es obligatorio.', + ) , + 'name' => array( + 'alpha_numeric' => 'El campo Nombre solo puede contener letras o números.', + 'length' => 'El campo Nombre debe contener 2-30 caracteres.', + 'nomodify' => 'No se puede modificar el rol SuperAdmin.', + 'required' => 'El campo Nombre es obligatorio.', + ) , + 'access_level' => array( + 'numeric' => 'El campo Nivel de Acceso debe contener un número entre 0 y 100.', + 'required' => 'El campo Nivel de Acceso debe contener un número entre 0 y 100.', + ) , + 'permissions' => array( + 'numeric' => 'El campo Permisos debe contener un número entre 0 y 100.', + ) , +); diff --git a/application/i18n/es_ES/settings.php b/application/i18n/es_ES/settings.php new file mode 100644 index 0000000000..8e3a3707ff --- /dev/null +++ b/application/i18n/es_ES/settings.php @@ -0,0 +1,103 @@ + array( + 'between' => 'El campo de permitir comentarios no parece que contenga un valor válido,', + 'required' => 'El campo de permitir comentarios es obligatorio.', + ) , + 'allow_feed' => array( + 'between' => 'El campo de incluir feed no parece que contenga un valor válido.', + 'required' => 'El campo de incluir feed es obligatorio.', + ) , + 'allow_alerts' => array( + 'between' => 'El campo de permitir alertas no contiene un valor válido.', + 'required' => 'El campo de permitir alertas es obligatorio.', + ) , + 'allow_reports' => array( + 'between' => 'El campo Reportes Permitidos no contiene un valor correcto.', + 'required' => 'El campo Reportes Permitidos es requerido.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'El campo compartir parece que contiene un valor inválido.', + 'required' => 'El campo de compartir estadísticas es obligatorio.', + ) , + 'api' => array( + 'default_record_limit' => 'Numero de registos para mostrar en una solicitud de API por defecto.', + 'maximum_record_limit' => 'Numero de registos para mostrar en una solicitud de API.', + 'maximum_requests_per_ip_address' => 'Máximo numero de solicitudes de APi por IP.', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'El campo de Askimet no contiene un dato válido.', + 'length' => 'El campo de Askimet no contiene un dato válido.', + ) , + 'cache_pages' => array( + 'between' => 'El campo de Caché e página es obligatorio.', + 'required' => 'El campo de caché parece que no contiene un valor válido.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'La duración de la caché de las páginas contiene un dato inválido.', + 'required' => 'La duración de la caché es obligatoria.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Parece que tu servidor no está configurado para utilizar URLs limpias. Tienes que configurar tu servidor antes de poder activar las URLs limpias. Más información sombre como activar las URLs limpias en este post', + 'clean_url_enabled' => 'Esta opción hace que Ushahidi pueda acceder via URLs limpiar (sin "index.php" en la URL)', + 'enable_clean_url' => 'Activar URL limpias', + 'title' => 'URLs limpias.', + ) , + 'clickatell_api' => array( + 'length' => 'La API de Clickatell no puede tener más de 20 caracteres.', + 'required' => 'La API de clickatell es obligatoria.', + ) , + 'clickatell_password' => array( + 'length' => 'La contraseña de Clickatell tiene que tener entre 5 y 50 caracteres.', + 'required' => 'La contraseña de Clickatell es obligatorio.', + ) , + 'facebook' => array( + 'description_2' => 'Esta configuración permite a los usuarios entrar mediante Facebook, this no crea una aplicación de facebook para su despliegue', + ) , + 'site' => array( + 'default_category_colors' => 'Color Por Defecto Para Todas las Categorías', + 'default_category_icons' => 'Icono Por Defecto Para Todas Las Categorías', + 'delete_default_map_all_icon' => 'Eliminar Icono Por Defecto', + 'display_contact_page' => 'Mostrar Página De Contacto', + 'email_alerts' => 'Dirección de Correo Electrónico de Alertas', + 'email_notice' => 'Para recibir reportes por correo electrónico, por favor configure los datos de su cuenta de correo electrónico', + 'email_site' => 'Dirección de Correo Electrónico del Sitio', + 'google_analytics' => 'Google Analytics', + 'language' => 'Idioma del Sitio', + 'message' => 'Mensaje del Sitio', + 'name' => 'Nombre del Sitio', + 'private_deployment' => 'Despliegue Privado', + 'require_email_confirmation' => 'Requiere Confirmación por Correo Electrónico del Usuario', + 'share_site_stats' => 'Habilitar Estadísticas (Se almacenarán en el servidor de Ushahidi)', + 'twitter_configuration' => 'Términos de Búsqueda de Twitter', + ) , + 'site_email' => array( + 'email' => 'El campo de correo electrónico del sitio no parece contenter una dirección de correo válida.', + 'length' => 'El campo de correo electrónico del sitio debe tener entre 4 y 100 caracteres de longitud.', + ) , + 'site_name' => array( + 'length' => 'El campo del nombre del sitio debe tener entre 3 y 50 caracteres de longitud.', + 'required' => 'El campo de nombre del sitio es obligatorio', + ) , + 'sms' => array( + 'flsms_download' => 'Descargar e Instalar FrontlineSMS', + ) , + 'sms_no1' => array( + 'length' => 'El campo teléfono 1 no parece tener un valor válido.', + 'numeric' => 'El campo teléfono 1 debe contener sólo números.', + ) , + 'sms_no2' => array( + 'length' => 'El campo teléfono 2 es demasiado largo', + 'numeric' => 'El campo teléfono 2 debe contener sólo números.', + ) , + 'sms_no3' => array( + 'length' => 'El campo teléfono 3 es demasiado largo', + 'numeric' => 'El campo teléfono 3 debe contener sólo números.', + ) , + 'test_settings' => 'Probar configuración', +); diff --git a/application/i18n/es_ES/stats.php b/application/i18n/es_ES/stats.php new file mode 100644 index 0000000000..77fe883092 --- /dev/null +++ b/application/i18n/es_ES/stats.php @@ -0,0 +1,42 @@ + 'Aprobado', + 'categories' => 'Categorías', + 'category_impact' => 'Impacto de la categoría', + 'category_impact_description' => 'Este gráfico ofrece una visión lineal de los informes por categoría en el tiempo. Desplazar de izquierda a derecha pata ver una vista comparativa de diferentes categorías. Pasar el puntero sobre el gráfico para más detalles.', + 'choose_date_range' => 'Elegir un rango de fechas', + 'countries' => 'Países', + 'country' => 'País', + 'country_breakdown' => 'Desglose por países', + 'description' => 'Esta es la sección de estadísticas y contendrá una descripción general pronto. Por ahora, navegar usando los enlaces de sub categoría de arriba.', + 'error' => 'Error', + 'glossary' => 'Glosario', + 'hit_summary' => 'Sumario de aciertos', + 'legend' => 'Leyenda', + 'pageviews' => 'Vistas de página', + 'pageviews_description' => 'El número total de páginas que los visitantes han visto en tu sitio', + 'reports' => 'Informes', + 'reports_categories' => 'Categorías de informe', + 'reports_statistics' => 'Estadísticas de informe', + 'reports_status' => 'Informes de estado', + 'report_punchcard' => 'Informe de tarjeta perforada', + 'report_stats' => 'Estadísticas de informes', + 'stats_not_setup' => 'Estadísticas no establecidas', + 'time_range_1' => '1 mes', + 'time_range_2' => '3 meses', + 'time_range_3' => '6 meses', + 'time_range_all' => 'Todos', + 'unapproved' => 'No aprobado', + 'unique_visitors' => 'Visitantes únicos', + 'unique_visitors_description' => 'El número de individuos que vienen a tu implementación. Los visitantes únicos se determinan utilizando cookies. Los visitantes que no tienen las cookies activas serán identificados utilizando una heurística simple teniendo en cuenta su dirección IP, resolución, navegador, plugins, SO, etc.', + 'unverified' => 'No comprobado', + 'verified' => 'Comprobado', + 'visitor_summary' => 'Resumen de visitantes', + 'visits' => 'Visitas', + 'visits_description' => 'Una visita es un registro de un visitante único que viene al sitio más de 30 minutos después de su última vista de página.', +); diff --git a/application/i18n/es_ES/tooltips.php b/application/i18n/es_ES/tooltips.php new file mode 100644 index 0000000000..4947a40df7 --- /dev/null +++ b/application/i18n/es_ES/tooltips.php @@ -0,0 +1,15 @@ + array( + 'add_to_category' => 'Esto agrega el informe a categorías adicionales. Si selecciona la categoría 1 y el informe ya tiene la categoría 2, entonces se le asignarán las categorías 1 y 2.', + 'approve' => 'Aprueba un informe o no. Si se aprueba, se mostrará públicamente.', + 'assign_badge' => 'Usted será capaz de asignar una tarjeta de identificación para la activación del usuario. Elija la tarjeta de identificación que se asigna aquí.', + 'email_body' => 'Contenido del correo electrónico que será enviado.', + 'email_subject' => 'Asunto del correo electrónico que será enviado.', + ) , +); diff --git a/application/i18n/es_ES/ui_admin.php b/application/i18n/es_ES/ui_admin.php new file mode 100644 index 0000000000..6d2f690c4d --- /dev/null +++ b/application/i18n/es_ES/ui_admin.php @@ -0,0 +1,329 @@ + 'Acceso denegado. Sus credenciales no son válidas o su petición ha sido denegada.', + 'access_denied_others' => 'Acceso denegado. Su petición ha sido recibida correctamente, pero denegada debido a límites de acceso como el tiempo. Inténtelo de nuevo más tarde.', + 'access_level' => 'Nivel de acceso', + 'actions' => 'Acciones', + 'add_to_category' => 'Añadir a la Categoría', + 'added' => 'añadido', + 'added_edited' => 'añadido/editado', + 'addons' => 'Complementos', + 'admin_role' => 'Administrador', + 'alerts' => 'Alertas', + 'alerts_received' => 'Alertas Recibidas', + 'all' => 'Todo', + 'am' => 'AM', + 'anonymous' => 'Anónimo', + 'anyone_role' => 'Cualquiera', + 'anywhere' => 'En cualquier sitio', + 'api_banned' => 'API prohibida', + 'api_logs' => 'Logs API', + 'api_settings' => 'Configuración API', + 'api_unban' => 'DESBLOQUEAR', + 'api_unban_all' => 'DESBLOQUEAR TODOS', + 'approved' => 'aprobado', + 'approve_auto' => 'Aprobar automáticamente', + 'approve_manual' => 'Aprobar Manualmente', + 'archived' => 'Archivado', + 'are_you_sure_you_want_to' => 'Está seguro de que quiere', + 'are_you_sure_you_want_to_delete_this_item' => '¿Está seguro de que quiere eliminar este elemento?', + 'are_you_sure_you_want_to_delete_this_photo' => '¿Está seguro de que quiere eliminar esta foto?', + 'are_you_sure_you_want_to_switch_forms' => '¿Está seguro de que quiere cambiar formularios?', + 'assign' => 'Asignar', + 'assignments' => 'Asignaciones', + 'assign_badge' => 'Asignar insignia', + 'author' => 'Autor', + 'author_email' => 'Email del autor', + 'back' => 'Atrás', + 'banip_action' => 'Bloquear IP', + 'between_times' => 'Entre horas', + 'blocks' => 'Bloques', + 'body' => 'Cuerpo', + 'cancel' => 'Cancelar', + 'categories' => 'Categorías', + 'chart_display_error' => 'Error mostrando la gráfica', + 'check_message_valid' => 'Por favor, asegúrese que su mensaje es válido', + 'check_number' => 'Por favor, asegúrese de que el número es válido.', + 'check_sms_settings' => 'Por favor revise su configuración de SMS', + 'checkin_details' => 'Detalles de registro', + 'checkins' => 'Registros', + 'cities_loaded' => 'Ciudades cargadas', + 'code' => 'código', + 'code_out_of_sync' => 'Versión de código fuera de sincronización.', + 'color' => 'Color', + 'comments' => 'Comentarios', + 'confirmation_code' => 'Su código de confirmación de alertas es:', + 'confirm_msg' => 'El Usuario Ha Sido', + 'count' => 'Cuenta', + 'country_not_found' => 'País no encontrado', + 'created_edited' => 'creado/editado', + 'create_report' => 'Crear Reporte', + 'critical_upgrade' => 'Actualización Crítica', + 'csv' => 'CSV', + 'currently_active' => 'Actualmente Activa', + 'currently_inactive' => 'Actualmente Inactiva', + 'custom_forms_insufficient_permissions' => 'No tiene permisos suficientes para editar los siguientes campos personalizados.', + 'daily' => 'Diariamente', + 'dashboard' => 'Tablero', + 'database' => 'base de datos', + 'date_time' => 'Fecha y Hora', + 'date_added' => 'Fecha Añadida', + 'date_modified' => 'Fecha Modificada', + 'days_of_the_week' => 'Días de la semana', + 'db_out_of_sync' => 'Versión DB no sincronizada.', + 'deleted' => 'borrado', + 'delete_action' => 'Borrar', + 'delete_all' => 'Borrar todos los informes', + 'delete_badge' => 'Borrar insignia', + 'demo' => 'Demostración', + 'description' => 'Descripción', + 'disabled' => 'Deshabilitado', + 'divider_start_field' => 'Separador Inicial', + 'divider_end_field' => 'Separador Final', + 'divider_class' => 'div class', + 'download_reports' => 'Informes de descarga', + 'dropdown_choices' => 'Opciones desplegables', + 'edited' => 'EDITADO', + 'edited_by' => 'Editado Por', + 'edit_action' => 'Editar', + 'edit_log' => 'Editar log', + 'email' => 'Correo electrónico', + 'entire_collective' => 'Colectivo completo', + 'error_geocoding' => '¡Error en la geocodificación! Error HTTP', + 'error_imap' => 'La librería IMAP de PHP no está instalada', + 'error_twitter' => 'Credenciales Incorrectas', + 'error_msg' => 'Error', + 'error_post_incident' => 'Error, imposible publicar incidente', + 'every_six_hours' => 'Cada Seis Horas', + 'every_twelve_hours' => 'Cada Doce Horas', + 'experimental' => 'Experimental', + 'faqs' => 'Preguntas Frecuentes', + 'feed' => 'alimentar', + 'feedback' => 'Retroalimentación', + 'feeds' => 'Flujos', + 'field_choices' => 'Lista de Opciones', + 'field_default' => 'Valor por defecto', + 'field_datatype' => 'Tipo de Dato', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Marcador', + 'field_datatype_numeric' => 'Numérico', + 'field_datatype_text' => 'Texto libre', + 'field_height' => 'Altura (En Filas)', + 'field_hidden' => 'Campo Oculto', + 'field_maxlength' => 'Longitud de Caracteres Máxima', + 'field_name' => 'Nombre del Campo', + 'field_toggle' => 'Alternar', + 'field_toggle_no' => 'No', + 'field_toggle_yes_close' => 'Sí, Cerrado por defecto', + 'field_toggle_yes_open' => 'Sí, Abierto por defecto', + 'file_not_found_upload' => 'No puede encontrarse el fichero subido', + 'file_open_error' => 'No pudo abrirse el fichero para lectura', + 'form_not_exists' => '¡Ese Formulario No Existe!', + 'forum' => 'Foro', + 'free_text_field' => 'Campo Área de Texto (Texto Libre)', + 'date_field' => 'Campo de Fecha', + 'radio_field' => 'Campos radio boton', + 'checkbox_field' => 'Campos de verificación', + 'dropdown_field' => 'Campo desplegable', + 'from' => 'De', + 'from_date' => 'De', + 'geonames_timeout' => 'Error de tiempo expirado en Geonombres', + 'get_help' => 'Obtener Ayuda', + 'get_more_themes' => 'Obtener más temas', + 'get_more_plugins' => 'Obtener más complementos', + 'header_actions' => 'Acciones', + 'header_add_edit' => 'Añadir/Editar', + 'header_email' => 'Correo electrónico', + 'header_manage_users' => 'Administrar Usuarios', + 'header_role' => 'Rol', + 'header_user' => 'Usuario', + 'help' => 'ayuda', + 'hourly' => 'Cada hora', + 'incident_feed' => 'Alimentación de incidente para', + 'installer_info' => 'La carpeta de instalación todavía existe. Borre la carpeta de instalación. Se trata de una vulnerabilidad de seguridad potencial.', + 'instance' => 'Instancia', + 'instances' => 'Instancias', + 'instance_details' => 'Detalles de la Instancia', + 'invalid_parameter' => 'Parámetro Inválido', + 'ip_address' => 'Dirección IP', + 'is_date' => '¿Es un campo de Fecha?', + 'ispublic_visible' => 'Quién Pude Ver las Respuestas', + 'ispublic_submit' => 'Quién Puede Enviar Respuestas', + 'keyword' => 'Palabra clave', + 'keywords' => 'Palabras clave', + 'label_email' => 'Dirección de correo electrónico:', + 'label_full_name' => 'Nombre Completo:', + 'label_password' => 'Contraseña:', + 'label_role' => 'Rol:', + 'label_username' => 'Nombre de usuario:', + 'layers' => 'Capas', + 'login_role' => 'Moderador', + 'logout' => 'Desconectar', + 'logs' => 'Logs', + 'manage' => 'Administrar', + 'manage_roles' => 'Administrar Roles y Permisos', + 'manage_users' => 'Ver usuarios', + 'manage_users_edit' => 'Añadir/Editar Usuarios', + 'manage_public_listing' => 'Administrar tu Listado Público', + 'mark_as' => 'Marcar como', + 'marked_as_not_spam' => 'marcado como no spam', + 'marked_as_spam' => 'marcado como spam', + 'match_no_documents' => 'no coincide con ningún documento', + 'message' => 'Mensaje', + 'messages' => 'Mensajes', + 'messages_laconica' => 'Mensajes Lacónica', + 'messages_twitter' => 'Mensajes de Twitter', + 'message_sent' => 'Su mensaje ha sido enviado!', + 'mhi' => 'MHI', + 'minute' => 'Minuto', + 'minutes' => 'Minutos', + 'missing_parameter' => 'Falta parámetros', + 'moderator' => 'Moderador', + 'modified' => 'modificado', + 'modify_timezone' => 'Modificar Configuración Horaria', + 'move_down_action' => 'mover abajo', + 'move_up_action' => 'mover arriba', + 'multiple_hosted_instances' => 'Múltiples Instancias Alojadas', + 'my_alerts' => 'Mis Alertas', + 'my_checkins' => 'Mis registros', + 'my_profile' => 'Mi Perfil', + 'my_reports' => 'Mis Reportes', + 'my_votes' => 'Votos Emitidos', + 'my_votes_up' => 'Positivo', + 'my_votes_down' => 'Negativo', + 'name' => 'Nombre', + 'new_alert' => 'Crear Nueva Alerta', + 'new_private' => 'Crear Nuevo Mensaje', + 'new_password' => 'Nueva Contraseña', + 'no' => 'No', + 'none_category_explanation' => 'Esta es una categoría especial que no se mostrará en el formulario de envío de reportes a los usuarios. Esta categoría será usada para mantener los informes que se han quedado sin categoría (informes no categorizados) como resultado del borrado de una categoría.', + 'notification' => 'Notificación', + 'not_case_sensitive' => 'No sensible a mayúsculas/minúsculas', + 'not_found' => 'No encontrado', + 'no_data' => 'Sin datos. No hay resultados que mostrar.', + 'no_error' => 'Sin Error', + 'no_result_display_msg' => 'No Hay Resultados Que Mostrar!', + 'of' => 'de', + 'on_specific_count' => 'En cuenta específica', + 'openids' => 'OpenID\'s', + 'page' => 'página', + 'pages' => 'páginas', + 'page_not_found' => 'Página No Encontrada', + 'page_not_found_message_with_contact' => 'Lo sentimos, la página que está intentando ver no está aquí.

¿Ha seguido un enlace desde otro sitio en nuestro sitio?
Si llegó a esta página desde otra parte de nuestro sitio , por favor contáctanos para que podamos corregir nuestro error. ¿Ha seguido un enlace desde otro sitio?
Enlaces desde otros sitios a veces pueden ser obsoletos o mal escritos.
Cuéntanos de donde vienes y nosotros trataremos de ponernos en contacto con el otro sitio con el fin de solucionar el problema. ¿Escribiste el URL?
Es posible que haya escrito la dirección (URL) incorrectamente. Asegúrese de que usted tiene la ortografía exacta, mayúsculas, etc ', + 'page_not_found_message' => 'Lo sentimos, la página que está intentando ver no está aquí.', + 'parameters_used' => 'Parámetros Utilizados', + 'password' => 'Contraseña', + 'password_reset' => 'Restablecer Contraseña', + 'password_reset_message_line_1' => 'Estimado', + 'password_reset_message_line_2' => 'Hemos recibido una solicitud para restablecer la contraseña de', + 'password_reset_message_line_3' => 'Para modificar su contraseña, por favor pulse sobre el enlace inferior (o cópielo y péguelo en su navegador).', + 'password_reset_message_line_4' => 'Tal y como ha solicitado, su contraseña ha sido restaurada. Los nuevos detalles son los siguientes', + 'password_reset_subject' => 'Restablecer contraseña de Ushahidi', + 'phone' => 'Teléfono', + 'please_select' => 'Por favor, Seleccione', + 'pm' => 'PM', + 'post_method_not_used' => 'Datos no enviados por método Post', + 'preview' => 'Vista previa', + 'private_message' => 'Mensaje', + 'private_messages' => 'Mensajes Privados', + 'private_sent' => 'Mensaje Privado Enviado', + 'private_subject' => 'Asunto', + 'private_to' => 'Para', + 'public_listing' => 'Listado Público', + 'qualifiers' => 'Clasificación', + 'read' => 'leer', + 'relevance' => 'Relevancia', + 'report_title' => 'Título del Reporte', + 'report_date' => 'Fecha del Reporte', + 'reporters' => 'Reporteros', + 'reporter_levels' => 'Niveles Reportero', + 'reports' => 'Reportes', + 'reputation' => 'Puntuación de Reputación', + 'required' => 'Obligatorio', + 'reset' => 'Restaurar', + 'response' => 'Responder', + 'results' => 'Resultados', + 'revoke' => 'Revocar', + 'riverid_exists_admin' => 'Esta dirección de correo electrónico ya tiene una cuenta administrada por CrowdmapID. El usuario deberá utilizar su contraseña de Crowdmap para entrar.', + 'save_settings' => 'Guardar Configuración', + 'search' => 'Buscar', + 'search_reports' => 'Buscar Reportes', + 'searching_for' => 'buscando', + 'security_info_encryption_key' => 'La clave de encriptación todavía tiene el valor por defecto. Esto es inseguro y debe cambiarse.', + 'security_info_https' => 'Este sitio está siendo servido sobre HTTP. Debería establecerse HTTPS para mayor seguridad', + 'security_info_instructions' => 'Las instrucciones están disponibles en la wiki:', + 'select_download_format' => 'Seleccione el formato para la descarga de informes:-', + 'select_field_type' => '--- Seleccione un Tipo de Campo ---', + 'select_item' => 'Por favor, seleccione un elemento', + 'select_trigger_before_response' => 'Debe seleccionar un disparador antes de seleccionar una respuesta.', + 'select_trigger_before_qualifiers' => 'Debe seleccionar un disparador antes de definir una clasificación.', + 'sender' => 'Remitente', + 'send_to' => 'Enviar A', + 'sent_from_website' => 'Este mensaje fue enviado desde su sitio web en', + 'server_time' => 'Hora del Servidor', + 'settings' => 'Configuración', + 'showing_page' => 'Mostrando página', + 'showing_results' => 'Mostrando resultados', + 'shown' => 'mostrado', + 'special_category' => 'Categoría Especial', + 'special_category_explanation' => 'Esta es una categoría especial que no se mostrará en el informe de formulario de envío para los usuarios que envían informes. Esto se utiliza en conjunción con la característica de "Los reporteros de confianza".', + 'specific_area' => 'Área Específica', + 'state' => 'Estado', + 'statistics' => 'Estadísticas', + 'stats' => 'Estadísticas', + 'stats_collection_error' => 'Falló la obtención de estadísticas! Por favor, inténtelo de nuevo más tarde.', + 'stats_collection_error_short' => 'Falló la obtención de estadísticas!', + 'specific_days' => 'Días Específicos', + 'subject' => 'Asunto', + 'superadmin_role' => 'Super Administrador', + 'task_performed' => 'Tarea Realizada', + 'text_field' => 'Campo de Texto', + 'theme_name' => 'Nombre', + 'title' => 'Administrar Usuarios', + 'timeout' => 'Error por tiempo agotado', + 'to' => 'Para', + 'total_records' => 'Registros totales', + 'to_date' => 'Para', + 'translate_reports' => 'Traducir Reportes', + 'trigger' => 'Disparador', + 'triggering_user' => 'Activación del Usuario', + 'triggers' => 'Disparadores', + 'unapproved' => 'no aprovado', + 'unknown' => 'Desconocido', + 'unknown_failure' => 'Fallo Desconocido', + 'unread' => 'no leído', + 'unsubscribe_message' => 'No recibirá más alertas de', + 'update_link' => 'Pulse aquí para actualizar ahora', + 'upgrade_ushahidi' => 'Actualizar Ushahidi', + 'upgrade_ushahidi_status' => 'Actualizar el Estado de Ushahidi', + 'upload_reports' => 'Subir Reportes', + 'user' => 'Usuario', + 'users' => 'Usuarios', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificado/No Verificado', + 'verify_unverify' => 'Verificar/No Verificar', + 'version' => 'Versión', + 'version_available' => 'está disponible para actualización.', + 'video_encoding' => 'Codificación de Vídeo', + 'view_private' => 'Mensajes Privados', + 'view_site' => 'Ver Sitio', + 'view_report' => 'Ver Reporte', + 'welcome' => 'Bienvenido,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Si', + 'your_search_for' => 'Su búsqueda de', + 'delete_all_instructions' => 'Haciendo clic en el boton inferior, borrarás TODOS los informes de la base de datos. Ten cuidado, esta operación no puede ser deshecha.', + 'delete_all_backup' => 'Recomendamos hacer una copia de seguridad de la base de datos antes de proceder', + 'delete_all_button' => 'Estoy seguro, quiero borrar %s informe(s) de la base de datos', + 'delete_all_confirm' => '¿Está seguro de que quiere borrar todos los informes?', + 'delete_all_no_reports' => 'No hay informes para borarr.', + 'user_no_logins' => 'Numero de accesos.', + 'user_last_login' => 'Último acceso', + 'user_confirmed_account' => '¿Cuenta confirmada?', +); diff --git a/application/i18n/es_ES/ui_main.php b/application/i18n/es_ES/ui_main.php new file mode 100644 index 0000000000..91c2e1d290 --- /dev/null +++ b/application/i18n/es_ES/ui_main.php @@ -0,0 +1,621 @@ + 'Acerca de', + 'access' => 'Acceso', + 'access_limits' => 'Límites de acceso', + 'account_name' => 'Nombre de la cuenta', + 'actions' => 'Acciones', + 'action_confirm' => 'Esta acción no se puede deshacer. ¿Desea continuar?', + 'activate' => 'Activar', + 'active' => 'Activado', + 'add' => 'Añadir', + 'added_by' => 'Añadido por', + 'additional_data' => 'Información adicional', + 'additional_reports' => 'Informes adicionales', + 'add_edit' => 'Añadir/Editar', + 'add_field' => 'Añadir un campo', + 'add_language' => 'Añadir idioma', + 'add_new' => 'Añadir nuevo', + 'add_new_category' => 'Añadir categoría nueva', + 'add_translation' => 'Añadir traducción', + 'admin' => 'Administración', + 'alerts' => 'Recibir alertas', + 'alerts_alert_me' => 'Alertarme si se registra un informe:', + 'alerts_btn_send' => 'Guardar mi alerta', + 'alerts_email' => 'Correo electrónico:', + 'alerts_enter_email' => 'introducir dirección de correo electrónico', + 'alerts_enter_mobile' => 'introducir número de teléfono móvil con prefijo internacional', + 'alerts_get' => 'Recibir alertas', + 'alert_has_been' => 'La alerta ha sido', + 'alerts_mobile_phone' => 'Teléfono móvil:', + 'alerts_place_spot' => 'O indique un punto en el siguiente mapa y le enviaremos una alerta cuando se registre un informe en un radio de 20 kilómetros.', + 'alerts_place_spot2' => 'Si no encuentra una ubicación, selecciónela en el mapa.', + 'alerts_rss' => 'RSS (copiar la siguiente URL)', + 'alerts_select_city' => 'Seleccionar una ciudad', + 'alerts_step1_select_city' => 'Paso 1: Seleccione su ciudad o ubicación:', + 'alerts_step2_send_alerts' => 'Paso 2: Enviar alertas a mi:', + 'alerts_step3_select_catgories' => 'Paso 3 (opcional): Seleccionar categorías', + 'alert_confirm_previous' => 'Confirmar una solicitud de alerta anterior', + 'alert_saved' => 'Se ha guardado la alerta.', + 'all' => 'Todos', + 'allowed' => 'Permitido', + 'allowed_tags' => 'Etiquetas HTML permitidas: "%s".', + 'allowed_iframes' => 'Los Iframes sólo son permitidos de: %s.', + 'all_categories' => 'Todas las categorías', + 'all_time' => 'Siempre', + 'and' => 'y', + 'api' => 'API', + 'approve' => 'Aprobar', + 'approved' => 'Aprobado', + 'approved_reports' => 'Informes aprobados', + 'approve_this_report' => 'Aprobar este informe', + 'approximate' => 'Aproximado', + 'archive' => 'Archivaar', + 'archived' => 'Archivado', + 'ascending' => 'Subiendo', + 'at' => 'en', + 'author' => 'Autor', + 'auto_checkin' => 'Registro automático', + 'avg_reports_per_day' => 'Media de informes por día', + 'awaiting_approval' => 'Esperando aprobación', + 'awaiting_verification' => 'Esperando verificación', + 'badge' => 'Insignia', + 'badges' => 'Insignias', + 'badge_image' => 'Imagen de la insignia', + 'badge_image_upload_your_own' => 'O puede subir su propia imagen para la insignia.', + 'badge_pack' => 'Grupo de insignias', + 'badge_select' => 'Seleccione una insignia', + 'blog' => 'Blog', + 'browse_profiles' => 'Explorar perfiles', + 'cancel' => 'Cancelar', + 'categories' => 'Categorías', + 'category' => 'Categoría', + 'category_filter' => 'Filtro de categorías', + 'category_has_been' => 'Esta categoría ha sido', + 'category_name' => 'Nombre de la categoría', + 'change_date_range' => 'Cambiar rango de fechas', + 'change_password' => 'Cambiar contraseña', + 'change_picture' => 'Cambiar mi imagen', + 'choose' => 'Elegir un', + 'choose_data_points' => 'Elegir puntos de datos para descargar', + 'choose_date_range' => 'O elegir su propio rango de fechas', + 'choose_field_type' => 'Elegir tipo de campo', + 'cleanurl' => 'Limpiar URLs', + 'clear' => 'Limpiar', + 'clear_map' => 'Limpiar mapa', + 'close' => 'Cerrar', + 'clusters' => 'grupos', + 'color' => 'Color', + 'comment' => 'Comentario', + 'comments' => 'Comentarios', + 'comment_details' => 'Detalles del comentario', + 'configuration_saved' => 'Se han guardado las preferencias.', + 'configure' => 'Configurar', + 'confirm_email_successful' => 'Ha confirmado correctamente su dirección de correo electrónico. Puede acceder a continuación.', + 'confirm_email_successful_and_approval' => '¡Ha confirmado satisfactoriamente su dirección de correo electrónico! Su cuenta tiene que ser aprobada por el administrador para poder acceder.', + 'confirm_email_failed' => '¡Ha fallado la confirmación de e-mail! Puede solicitar una nueva confirmación más abajo.', + 'contact' => 'Contacte con nosotros', + 'contact_code' => 'Código de seguridad', + 'contact_email' => 'Su correo electrónico', + 'contact_message' => 'Mensaje', + 'contact_message_has_send' => 'Se ha enviado el mensaje.', + 'contact_name' => 'Su nombre', + 'contact_phone' => 'Su teléfono', + 'contact_send' => 'Enviar mensaje', + 'contact_subject' => 'Asunto del mensaje', + 'copyright' => 'Copyright ©', + 'create' => 'Crear', + 'create_edit' => 'Crear/Editar', + 'create_new' => 'Crear nuevo', + 'create_new_password' => 'Crear nueva contraseña', + 'create_report' => 'Crear informe', + 'credibility' => 'Credibilidad', + 'current_password' => 'Contraseña actual', + 'custom_fields' => 'Campos propios', + 'data' => 'Información', + 'date' => 'Fecha', + 'date_format' => '(mm/dd/aaaa)', + 'date_time' => 'Fecha y hora', + 'day' => 'día', + 'deactivate' => 'Desactiar', + 'default_location_name' => 'Nairobi, Kenia', + 'delete' => 'Eliminar', + 'deleted' => 'Eliminado', + 'deletes' => 'Eliminados', + 'delete_disabled' => 'Eliminar desactivado', + 'delete_last' => 'Elimina último', + 'delete_report' => 'Eliminar este informe', + 'delete_selected' => 'Eliminar seleccionados', + 'delete_spam' => 'Eliminar spam', + 'demo' => 'Demo', + 'description' => 'Descripción', + 'descending' => 'Bajando', + 'detailed_location_example' => 'Ejemplo: Cruce de City Market, 5th Street y 4th Avenue, Johanesburgo', + 'details' => 'Detalles', + 'direct_report' => 'Informe directo', + 'disabled' => 'Desactivavo', + 'disapprove' => 'Desaprobar', + 'download_reports' => 'Descargar informes', + 'download' => 'Descargar', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar campos', + 'edit_report' => 'Editar informe', + 'email' => 'Correo electrónico', + 'email_address' => 'Correo electrónico', + 'email_configuration' => 'Preferencias del servidor de correo', + 'email_server_host' => 'Servidor de correo', + 'email_server_password' => 'Contraseña del servidor', + 'email_server_port' => 'Puerto del servidor', + 'email_server_ssl_support' => 'Soporte SSL', + 'email_server_type' => 'Tipo del servidor', + 'email_server_username' => 'Usuario del servidor', + 'email_settings_comment_0' => 'para que sus preferencias queden asociadas a esta dirección de correo electrónico', + 'email_settings_comment_00' => 'Para recibir informes, por favor introduzca a continuación la información de su cuenta de correo electrónico. Tenga en cuenta que recibirá los correos en su', + 'email_settings_comment_1' => 'Algunos servidores requieren la dirección completa', + 'email_settings_comment_2' => 'Contraseña de la cuenta de correo', + 'email_settings_comment_3' => 'Puertos habituales: 25, 110, 995 (GMail POP3 SSL), 993 (GMail IMAP SSL)', + 'email_settings_comment_4' => 'Ejemplos: correo.supaginaweb.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Ejemplos: pop3, imap', + 'email_settings_comment_6' => 'Activar o desactivar conexiones SSL', + 'empty' => '---VACÍO---', + 'end_point' => 'para', + 'error' => 'Error', + 'example' => 'Ejemplo', + 'example_country' => 'Kenia', + 'external_apps' => 'Aplicaciones externas', + 'external_video_link' => 'Enlace de vídeo externo', + 'facebook' => 'Facebook', + 'feed' => 'Flujo', + 'feedback' => 'Opinar', + 'feedback_reports' => 'Por favor, danos tu opinión sobre tu experiencia enviando un correo electrónico a ', + 'feeds' => 'Flujos', + 'feed_has_been' => 'Este flujo ha sido', + 'feed_items' => 'Elementos del flujo', + 'feed_name' => 'Nombre del flujo', + 'feed_url' => 'URL del flujo', + 'field_unused' => 'Campo no utilizado', + 'file' => 'Archivo', + 'file_over_max_allowed' => 'El archivo supera el tamaño máximo.', + 'filters' => 'Filtros', + 'filter_reports' => 'Filtrar informes', + 'filter_reports_by' => 'Filtrar informes por', + 'filter_reports_contain' => 'Filtrar informes que contengan', + 'find' => 'Buscar', + 'find_location' => 'Buscar ubicación', + 'first_name' => 'Nombre', + 'force_run_scheduler' => 'Forzar ejecución programada', + 'forgot_password' => '¿Ha olvidado su contraseña?', + 'form' => 'Formulario', + 'forms' => 'Formularios', + 'form_description' => 'Descripción del formulario', + 'form_edit' => 'Editar este formulario', + 'form_has_been' => 'Este formulario ha sido', + 'form_title' => 'Título del formulario', + 'from' => 'Desde', + 'full_name' => 'Nombre completo', + 'geolocation_available' => 'Geolocalización disponible', + 'geometry_color' => 'Color', + 'geometry_comments' => 'Comentarios', + 'geometry_label' => 'Etiqueta', + 'geometry_strokewidth' => 'Grosor del trazo', + 'go' => 'Ir', + 'hashtag' => 'Etiqueta', + 'has_been' => 'Ha sido', + 'help' => 'Cómo ayudar', + 'hidden' => 'Oculto', + 'hide' => 'Ocultar', + 'hide_this_message' => 'ocultar este mensaje', + 'home' => 'Inicio', + 'how_to_report' => 'Cómo enviar un informe', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Utilizado para identificarte ante otros usuarios de la página.', + 'image' => 'Imagen', + 'images' => 'Imágenes', + 'image_icon' => 'Imagen/Icono', + 'inactive' => 'Inactivo', + 'inbox' => 'Bandeja de entrada', + 'incident' => 'Incidente', + 'incidents_nearby' => 'Incidentes cercanos', + 'incident_location' => 'Ubicación del incidente', + 'include' => 'Incluir', + 'include_categories' => 'Incluir categorías', + 'include_custom_fields' => 'Incluir campos personalizados', + 'include_description' => 'Incluir descripción', + 'include_detail' => 'Incluir todos los detalles posibles', + 'include_latitude' => 'Incluir latitud', + 'include_location_information' => 'Incluir información de la ubicación', + 'include_longitude' => 'Incluir longitud', + 'include_personal_info' => 'Incluir información personal', + 'incoming_media' => 'Medios de Entrada', + 'information_evaluation' => 'Evaluación de la información', + 'input_location' => 'Introduce tu ubicación exacta', + 'insufficient_role' => 'Tu cuenta no tiene los permisos necesarios para iniciar sesión. Contacta con el administrador.', + 'in_response_to' => 'En respuesta a', + 'ip_address' => 'Dirección IP', + 'is_this_your_profile' => '¿Es este tu perfil?', + 'item' => 'elemento', + 'items' => 'elementos', + 'item_details' => 'detalles_elemento', + 'item_title' => 'Titulo del Elemento', + 'key' => 'Clave', + 'keywords' => 'Palabras clave', + 'kml_kmz_file' => 'Archivo KMZ/KML', + 'kml_kmz_upload' => 'Subir archivo KMZ/KML', + 'kml_url' => 'URL KML', + 'laconica' => 'Laconica', + 'language' => 'Idioma', + 'last' => 'Último', + 'last_month' => 'Último mes', + 'last_name' => 'Apellidos', + 'last_year' => 'Último año', + 'latitude' => 'Latitud', + 'layers' => 'Capas', + 'layers_filter' => 'Otras capas', + 'layer_has_been' => 'La capa ha sido', + 'layer_name' => 'Nombre de la capa', + 'layer_url' => 'URL de la capa', + 'leave_a_comment' => 'Deja un comentario', + 'less_information' => 'Menos información', + 'level' => 'Nivel', + 'level_has_been' => 'El nivel ha sido', + 'level_name' => 'Nombre del nivel', + 'limited' => 'Limitado', + 'link' => 'Enlace', + 'list' => 'Lista', + 'loading_reports' => 'Cargando informes', + 'location' => 'Ubicación', + 'locations' => 'Ubicaciones', + 'location_example' => 'Ciudad, estado y/o país', + 'login' => 'Iniciar sesión', + 'login_account_creation_successful' => 'Has creado tu cuenta. Inicia sesión.', + 'login_confirmation_sent' => 'Se ha enviado un mensaje de confirmación a tu correo electrónico.', + 'login_approval_required' => 'Cuenta creada. Tiene que ser aprobada por un administrador antes de poder acceder.', + 'login_email_doesnt_exist' => 'La cuenta de correo electrónico no existe. Prueba con una diferente o crea una nueva.', + 'login_select_openid' => 'Elige tu proveedor', + 'login_with' => 'Iniciar sesión con', + 'login_userpass' => 'Correo electrónico y contraseña', + 'login_openid' => 'OpenID', + 'login_signup' => 'Registrarse', + 'login_signup_click' => 'Crear una cuenta', + 'login_signup_confirmation_message' => 'Gracias por registrarte en %1$s. Para confirmar tu dirección de correo electrónico ve a la siguiente URL: %2$s', + 'login_signup_confirmation_subject' => 'Confirmación de registro', + 'login_signup_admin_approval_message' => 'Un nuevo usuario a accedido en %1$s. Para aprovarlo vaya a esta URL: %2$s', + 'login_signup_admin_approval_subject' => 'Aprovación de un nuevo usuario.', + 'login_signup_approval_message' => 'Su cuenta de usuario a sido aprobada para %1$s. Puede acceder en la siguiente URL: %2$s', + 'login_signup_approval_subject' => 'Cuenta de usuaio aprobada.', + 'login_signup_text' => 'Crea una cuenta para disfrutar de más opciones.', + 'longitude' => 'Longitud', + 'map' => 'Mapa', + 'mark_read' => 'Marcar como leído', + 'mark_unread' => 'Marcar como no leído', + 'maximum_filesize' => 'Tamaño máximo del archivo', + 'media' => 'Multimedia', + 'media_filter' => 'Filtro multimedia', + 'members' => 'Miembros', + 'manage_your_account' => 'Gestione su Cuenta', + 'message' => 'Mensaje', + 'messages' => 'Mensajes', + 'message_details' => 'Detalles del mensaje', + 'message_non_numeric_source' => 'Mensaje de una fuente no numérica:', + 'mobile' => 'Móvil', + 'modify' => 'Modificar', + 'modify_date' => 'Modificar fecha', + 'month' => 'mes', + 'more' => 'Más', + 'more_information' => 'Más información', + 'multi_country_instance' => 'Abarca este despliegue de Ushahidi varios países', + 'must_confirm_email_address' => 'Debe confirmar su dirección e-mail para acceder a este despliegue. Si pierde su e-mail de confirmación, puede solicitar otro nuevo abajo.', + 'name' => 'Nombre', + 'nearby_report' => 'Informe cercano', + 'new' => 'Nuevo', + 'news' => 'Noticias', + 'news_feeds' => 'Canales de noticias', + 'news_source' => 'Fuentes de Noticias', + 'new_category' => 'Nueva categoría', + 'new_password' => 'Nueva contraseña', + 'new_report' => 'Nuevo informe', + 'next' => 'Siguiente', + 'no' => 'No', + 'no_checkins' => 'No hay confirmaciones para mostrar.', + 'no_data' => 'No hay datos', + 'none' => 'Ninguno', + 'notices' => 'Avisos', + 'not_approved' => 'No aprobado', + 'not_approved_singular' => 'No aprobado', + 'not_selected' => '---Elige---', + 'not_spam' => 'no es spam', + 'not_specified' => 'No especificado', + 'no_reports' => 'No hay informes', + 'no_results' => 'No hay resultados', + 'off' => 'Apagado', + 'official_news' => 'Noticias Oficiales & principales', + 'on' => 'Encendido', + 'option' => 'Opción', + 'optional' => 'Opcional', + 'options' => 'Opciones', + 'organization' => 'Organización', + 'organizations' => 'Organizaciones', + 'organization_description' => 'Descripción de la organización', + 'organization_email' => 'Correo electrónico de la organización', + 'organization_has_been' => 'La organización ha sido', + 'organization_name' => 'Nombre de la organización', + 'organization_phone_1' => 'Teléfono de la organización 1', + 'organization_phone_2' => 'Teléfono de la organización 2', + 'organization_website' => 'Página web de la organización', + 'original' => 'Original', + 'original_description' => 'Descripción original', + 'original_title' => 'Título original', + 'other_ushahidi_instances' => 'Otras implementaciones', + 'outbox' => 'Bandeja de salida', + 'outgoing' => 'Salida', + 'page' => 'Página', + 'pages' => 'Páginas', + 'page_description' => 'Descripción de la página', + 'page_has_been' => 'La página ha sido', + 'page_tab_name' => 'Nombre de pestaña', + 'page_title' => 'Título de la página', + 'parent_category' => 'Categoria Padre', + 'password' => 'Contraseña', + 'password_again' => 'Verificar contraseña', + 'password_changed_successfully' => 'Contraseña cambiada correctamente! Inicie sesión abajo.', + 'password_forgot' => '¿Ha olvidado su contraseña?', + 'password_reset_confirm' => 'Compruebe su e-mail para la nueva contraseña.', + 'password_save' => '¿Permanecer logado en este ordenador?', + 'past_month' => 'Mes pasado', + 'past_year' => 'Año pasado', + 'pending' => 'Pendiente', + 'per' => 'por', + 'personal_information' => 'Información personal Opcional.', + 'phone' => 'Teléfono', + 'photos' => 'Fotografías', + 'pictures' => 'Imágenes', + 'pictures_and_videos' => 'Imágenes y Vídeos', + 'pinpoint_location' => '* Buscar su ubicación utilizando un nombre de ubicación O coordenadas de latitud, longitud (formato: 38.19, 85.61), O pinchar en el mapa para localizar la ubicación correcta', + 'play' => 'Empezar', + 'please_note' => 'Tenga en cuenta', + 'plugins' => 'Plugins', + 'plugin_url' => 'Website plugin', + 'public_profile' => 'Perfil Publico', + 'public_profile_url' => 'URL del Perfil Publico', + 'preview' => 'Vista previa', + 'preview_item' => 'Previsualizar elemento', + 'preview_message' => 'Vista previa del mensaje', + 'previous' => 'Previo', + 'private' => 'Privado', + 'profile_color' => 'Color del perfil', + 'profile_saved' => 'Se ha guardado tu perfil', + 'quick_stats' => 'Estadísticas', + 'rating' => 'Puntuación', + 'read' => 'Leer', + 'receive' => 'Recibir', + 'receive_from' => 'Recibir de', + 'receive_notifications' => 'Recibir notificaciones', + 'recent_reports' => 'Informes recientes', + 'refresh_news_feeds' => 'Refrescar canales de noticias', + 'registered_email' => 'Correo electrónico registrado', + 'remove' => 'Eliminar', + 'reply' => 'Responder', + 'report' => 'Aviso', + 'reports_listed' => 'Avisos(extraídos del mapa y en orden cronológico)', + 'reporter' => 'Avisa', + 'reporters' => 'Periodistas', + 'reporter_date' => 'Fecha del Reporte', + 'reporter_email' => 'Correo electrónico de la persona que avisa', + 'reporter_first_name' => 'Nombre de la persona que avisa', + 'reporter_has_been' => 'La persona que ha dado el aviso ha sido', + 'reporter_ip' => 'Dirección IP de la persona que avisa', + 'reporter_last_name' => 'Apellido de la persona que avisa', + 'reporter_level' => 'Nivel del Reporte', + 'reporter_levels' => 'Niveles del Reporte', + 'reporter_phone' => 'Teléfono de la persona que avisa', + 'reports' => 'Avisos', + 'reports_btn_browse' => 'Buscar', + 'reports_btn_submit' => 'Enviar', + 'reports_by_this_user' => 'Avisos de este usuario', + 'reports_categories' => 'Categorías', + 'reports_count' => '%d avisos', + 'reports_date' => 'Fecha', + 'reports_description' => 'Descripción', + 'reports_download_csv' => 'Los avisos se descargarán en formato CSV', + 'reports_email' => 'Correo electrónico', + 'reports_features' => 'Características', + 'reports_find_location' => 'Encuentra una ubicación cerca de ti', + 'reports_first' => 'Nombre', + 'reports_last' => 'Apellidos', + 'reports_location_name' => 'Ubicación', + 'reports_news' => 'Enlace de fuente de noticias', + 'reports_optional' => 'Información opcional', + 'reports_photos' => 'Subir fotografías', + 'reports_return' => 'Volver a la página de avisos', + 'reports_select_city' => 'Elige una ciudad', + 'reports_submitted' => 'Tu aviso ha sido enviado a nuestro equipo para que lo revise. Nos pondremos en contacto contigo en breve si fuera necesario.', + 'reports_submit_new' => 'Enviar nuevo aviso', + 'reports_time' => 'Hora', + 'reports_timeline' => 'Cronología de informes', + 'reports_title' => 'Título del aviso', + 'reports_video' => 'Enlace a video', + 'report_an_incident' => 'Avisar de un incidente', + 'report_details' => 'Detalles del informe', + 'report_option_1' => 'Enviando un mensaje a', + 'report_option_2' => 'Enviando un e-mail a', + 'report_option_3' => 'Enviando un tweet con el hashtag/s', + 'report_option_4' => 'Rellenando este formulario en nuestro sitio web.', + 'report_option_external_apps' => 'Usando una app', + 'report_saved' => 'Su informe ha sido guardado', + 'report_title' => 'Titulo de informe', + 'request_information' => 'Solicitar más información', + 'request_location' => 'Solicitar ubicación', + 'required' => 'Requerido', + 'requirements' => 'Requisitos', + 'resend_confirm_email' => 'Volver a enviar e-mail de confirmación', + 'reset' => 'Resetear', + 'reset_all_filters' => 'Resetear todos los filtros', + 'reset_password' => 'Resetear password', + 'retrieve_city_names' => 'Obtener los nombres de ciudades del país seleccionado', + 'riverid_information' => 'Cuentas gestionadas por el servicio %s.', + 'riverid_exists_login' => 'Ya tiene una cuenta gestionada por CrowdmapID! Intente usar su e-mail CrowdmapID y password para logar.', + 'role' => 'Rol', + 'rss' => 'RSS', + 'save' => 'Guardar', + 'saved' => 'Guardado', + 'save_add_new' => 'Guardar & Añadir Nuevo', + 'save_close' => 'Guardar & Cerrar', + 'save_report' => 'Guardar Informe', + 'schedule' => 'Planificar', + 'scheduler' => 'Planificador', + 'scheduler_day' => 'Día', + 'scheduler_hour' => 'Hora', + 'scheduler_log' => 'Log del planificador', + 'scheduler_minute' => 'Minuto', + 'scheduler_weekday' => 'Dia de la Semana', + 'search' => 'Buscar', + 'search_results' => 'Resultados de búsqueda', + 'security_code' => 'Código de seguridad', + 'select_all' => 'Seleccionar todo', + 'select_field_type' => 'Seleccionar un tipo de campo', + 'select_form_type' => 'Seleccionar un tipo de formulario', + 'select_in_map' => 'Seleccionar en el mapa', + 'select_multiple' => 'Seleccionar tantas como se necesite', + 'select_one' => 'Por favor, verificar que ha marcado un elemento', + 'select_theme' => 'Seleccionar tema', + 'send' => 'Enviar', + 'send_confirmation' => 'Enviar confirmación', + 'sending_to' => 'Enviar a', + 'sent' => 'Enviado', + 'sent_by' => 'Enviado por', + 'server_address' => 'Dirección del servidor', + 'server_type' => 'Tipo de servidor', + 'service' => 'Servicio', + 'service_username' => 'Nombre de usuario del servicio', + 'service_user_id' => 'ID del usuario del servicio', + 'share' => 'Compartir', + 'shared_data' => 'Datos compartidos', + 'share_has_been' => 'La participación ha sido', + 'sharing' => 'Compartiendo', + 'shorter_map' => 'Mapa más corto', + 'show' => 'Mostrar', + 'show_all' => 'Mostrar todo', + 'show_messages' => 'Mostrar mensajes', + 'showing_reports_from' => 'Viendo informes de %1$s a %2$s', + 'site' => 'Sitio web', + 'site_email_address' => 'Dirección del sitio web', + 'site_url' => 'Url del site', + 'smaller_map' => 'Mapa más pequeño', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Lo siento, no tiene ninguna insignia', + 'source' => 'Fuente', + 'source_name' => 'Nombre de la fuente', + 'sort' => 'Ordenar', + 'sort_by' => 'Ordenar por', + 'source_url' => 'URL de la fuente', + 'spam' => 'Spam', + 'ssl_support' => 'Soporte SSL?', + 'start_point' => 'De:', + 'step' => 'Paso', + 'submit' => 'Enviar un informe', + 'submitted_by' => 'Enviado por %1$s via %2$s', + 'submit_sms' => 'Enviar via SMS', + 'submit_sms1' => 'Enviar su SMS a', + 'submit_sms2' => 'en su telefono', + 'success' => 'Exito!', + 'successfuly_imported' => 'Importado correctamente', + 'surname' => 'Apellido', + 'survey' => 'Encuesta', + 'system' => 'Sistema', + 'taller_map' => 'Mapa más grande', + 'tcp_port' => 'Puerto TCP', + 'themes' => 'Themas', + 'theme_default' => 'Tema Ushahidi por defecto', + 'theme_settings' => 'Configuración de temas', + 'this' => 'Este', + 'this_day' => 'Hoy', + 'this_month' => 'Este mes', + 'this_week' => 'Esta semana', + 'this_year' => 'Este año', + 'this_is_your_profile' => 'Este es su perfil.', + 'time' => 'Hora', + 'title' => 'Titulo', + 'to' => 'a', + 'today' => 'Hoy', + 'today_at' => 'Hoy a', + 'token' => 'Token', + 'total_reports' => 'Informes totales', + 'translated' => 'Traducido', + 'translated_description' => 'Descripción traducida', + 'translated_title' => 'Titulo traducido', + 'translate_to' => 'Traducido a', + 'translation' => 'Traducción', + 'translation_saved' => 'La traducción ha sido guardada', + 'trusted' => 'Confiado', + 'type' => 'Tipo', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Imposible enviar e-mail.', + 'uncategorized_reports' => 'Informes no categorizados', + 'unread' => 'no leído', + 'unverified' => 'No verificado', + 'update_feeds' => 'Actualizar canales', + 'upload' => 'Cargar', + 'upload_guide' => 'Ver nuestras guias de carga de informes:-', + 'upload_docs_1' => 'Guia de carga XML', + 'upload_docs_2' => 'Guía de Subida por CSV', + 'upload_file' => 'Fichero a cargar', + 'upload_reports' => 'Informes de carga', + 'upload_reports_custom_forms' => 'Los campos personalizados deben tener su form_id adjunto a ellos, ej el campo personalizado Test, en el formulario por defecto, cuyo id es 1, debe ser Test-1. Durante la importación de los campos personalizados, asegurese de que', + 'upload_reports_detail_1' => 'Con el formulario a continuación, puede importar incidentes al motor Ushahidi', + 'upload_reports_detail_2' => 'Los informes deben ser subidos en formato CSV o XML', + 'upload_reports_detail_3' => 'Cuando el ID de incidencia ya exista en la base de datos, la entrada en el CSV/XML será ignorada.', + 'upload_reports_detail_4' => 'Debe contener al menos Titulo del Incidente y Fecha del Incidente', + 'upload_reports_detail_4b' => 'si no se proporciona las columnas latitud y longitud, la ubicación será geocodificada utilizando Google Geodecoder.', + 'upload_reports_detail_4c' => 'Si importa información adicional, p.ej. información personal y/o campos de formulario personalizados', + 'upload_reports_detail_4d' => 'Por lo menos uno de los campos de información personal (nombre, apellido, e-mail) DEBE existir. Los registros vacíos no serán importados', + 'upload_reports_detail_4e' => 'Sus entradas para campos desplegables, botones de selección y cajas de verificación concuerdan con las opciones proporcionadas para el campo personalizado en su instancia', + 'upload_reports_detail_4f' => 'Las opciones de selección se separan por comas, p.ej. si su selección de frutas es manzanas, mangos y uvas, su entrada para esto debería ser "manzanas,mangos,uvas"', + 'upload_reports_detail_4g' => 'Los valores de campo tienen el siguiente formato: mm/ddd/yyyy ej. 3 de Octubre de 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Un ejemplo de informe CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Presunta muerte en Nairobi","2009-05-15 01:06:00","Nairobi","Tres casos han sido confirmados en C. del Uruguay","MUERTES, CIUDADANOS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Saqueo","2009-03-18 10:10:00","Accra","Saqueo sucediendo en todas partes","MOTINES, MUERTES, PÉRDIDA DE PROPIEDAD, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Carga realizada correctamente', + 'upload_video' => 'Cargar video', + 'url' => 'URL', + 'user' => 'Usuario', + 'username' => 'Nombre de usuario', + 'ushahidi_admin' => 'Administrador Ushahidi', + 'verification' => 'Verificación', + 'verified' => 'Verificado', + 'verified_reports' => 'Informes verificados', + 'verify' => 'Verificar', + 'verify_this_report' => 'Verificar este informe', + 'version' => 'Versión', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Ver', + 'views' => 'Vistas', + 'view_all' => 'Ver todo', + 'view_all_feeds' => 'Ver todos los canales', + 'view_all_reports' => 'Ver todos los informes', + 'view_items' => 'Ver elementos', + 'view_more' => 'Ver más', + 'view_public_profile' => 'Ver perfil público', + 'view_report' => 'Ver informe', + 'view_reports' => 'Ver informes', + 'view_video' => 'Ver Video', + 'visible' => 'Visible', + 'waiting_approval' => 'Esperando aprobación', + 'waiting_verification' => 'Esperando verificación', + 'wider_map' => 'Mapa más amplio', + 'web_form' => 'Formulario Web', + 'web' => 'Web', + 'weight' => 'Peso', + 'yes' => 'Si', + 'yesterday' => 'Ayer', + 'your_dashboard' => 'Su tablero', + 'your_file' => 'Su fichero', + 'zoom_in' => 'Acercar', + 'zoom_out' => 'Alejar', +); diff --git a/application/i18n/es_ES/upgrade.php b/application/i18n/es_ES/upgrade.php new file mode 100644 index 0000000000..89dcc51366 --- /dev/null +++ b/application/i18n/es_ES/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Datos de entrada no válidos. Puede ser 0 para No o 1 para Si', + ) , + 'upgrade_automatic' => 'Actualización automática', + 'upgrade_available' => 'Actualizaciones Disponibles', + 'upgrade_continue_btn_text' => 'Continuar', + 'upgrade_db_btn_text' => 'Actualizar', + 'upgrade_db_text_1' => 'Voy a actualizar tu base de datos de la version', + 'upgrade_db_text_2' => 'a la nueva versión de la base de datos ', + 'upgrade_db_text_3' => 'Click en el botón "Actualizar" y relajate mientras hago la magia.', + 'upgrade_db_text_4' => 'Asi que quieres que yo actualice tu base de datos, marca la casilla de verificacion de abajo y lo haré en un momento.', + 'upgrade_db_text_5' => '¿Hacer un respaldo de la base de datos antes de actualizar? (Muy recomendado)', + 'upgrade_db_title' => 'Actualización de la base de datos de Ushahidi', + 'upgrade_db_info' => '¡Ushahidi ha sido actualizado! Antes de continuar, necesitas actualizar la base de datos a la última versión (%s).', + 'upgrade_db_up_to_date' => 'Tu base de datos está actualizada.', + 'upgrade_failed' => 'La actualización falló en algun punto', + 'upgrade_manual' => 'Actualización manual', + 'upgrade_status' => 'Estado de la actualización de Ushahidi', + 'upgrade_text_1' => 'Las instrucciones de abajo detallan como actualizar manualmente tu implementacion de Ushahidi', + 'upgrade_text_2' => '

Descargar
', + 'upgrade_text_3' => '
- Descarga la versión más reciente de Ushahidi desde', + 'upgrade_text_4' => '
Respaldo
- .htaccess, ./applications/config/config.php, ./applications/config/database.php y ./applications/config/auth.php files.
- Por si algo sale mal, es recomendable que hagas un respaldo completo de tu implementacion de Ushahidi.
Copiar archivos
- Extraer el zip descargado
- Dependiendo del sistema operativo de tu servidor, usa tu herramienta o modo favorito (p.e. Telnet, FTP, SSH) para entrar en el servidor y reemplazar los contenidos de todas las carpetas con los ficheros de la compilación más reciente.
Actualizar Base de datos
- Primero determina la version del esquema de tu base de datos mirando el valor db_version en la tabla de configuración o mira en la información de la actualización de Ushahidi al principio de esta página.
- Si tienes la version 25, necesitas actualizar de 25-26, 26-27, 27-28 y así sucesivamente hasta el último archivo SQL en el directorio /sql.
- Con tu cliente de base de datos, actualiza la base de datos ejecutando el archivo upgradex-x.sql apropiado.
', + 'upgrade_tables' => 'Paso 3: Mira en el directorio sql. Ejecuta manualmente el fichero de actualización upgrade-.sql empezando desde la versión actual de tu instalación hasta el ultimo fichero sql de actualización.', + 'upgrade_text_5' => 'Paso 4: Click en el botón "Continuar" para actualizar las tablas necesarias.', + 'upgrade_text_6' => 'Para actualizaciones automaticas, haz clic en el botón de abajo.', + 'upgrade_title_text' => 'Estás usando Ushahidi v%1$s con la versión de la base de datos %2$d ejecutándose en %3$s', + 'upgrading' => 'Actualizando', + 'upgrade_ftp_text' => 'Para continuar con la actualización fácil, es necesario saber en que servidor FTP esta alojada tu web.', + 'upgrade_ftp_hostname' => 'Servidor FTP: Ejemplo: "localhost"', + 'upgrade_ftp_password' => 'Contraseña de FTP:', + 'upgrade_ftp_username' => 'Usuario FTP:', + 'upgrade_status_info' => 'Tienes la última versión de Ushahidi.', + 'upgrade_status_info_2' => 'No necesitas actualizar.', + 'upgrade_db_version' => 'Version de la Base de datos: %d', + 'upgrade_warning_software_version' => 'Aviso: La versión del software en version.php y en la base de datos no concuerda.', + 'upgrade_warning_db_version' => 'Aviso: La version de la base de datos en version.php y la base de datos no concuerda.', + 'upgrade_database' => 'Base de datos:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => '¡BETA!', + 'download' => 'Descargando la última versión de ushahidi...', + 'log_file' => 'Fichero de logs', + 'successfully_downloaded' => 'Bajado correctamente. Descomprimiendo...', + 'failed_downloading' => 'Error descargando.', + 'successfully_unpacked' => 'Descomprimido correctamente. Copiando Archivos...', + 'failed_unpacking' => 'Error al descomprimir.', + 'successfully_copied' => 'Copiado correctamente. Actualizando Base de datos...', + 'failed_copying' => 'Error copiando los archivos.', + 'backup_success' => 'Respaldo de la base de datos y actualización correctas.', + 'backup_failed' => 'Error al respaldar la base de datos.', + 'dbupgrade_success' => 'Actualización de la base de datos correcta.', + 'deleting_files' => 'Borrando los archivos descargados...', + 'upgrade_success' => 'ACTUALIZACIÓN CORRECTA. Ver archivo de log', +); diff --git a/application/i18n/es_PE/alerts.php b/application/i18n/es_PE/alerts.php new file mode 100644 index 0000000000..0227040dfa --- /dev/null +++ b/application/i18n/es_PE/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'El campo correo electrónico parece no tener una dirección de correo electrónica valida.', + 'email_check' => 'Ese correo electrónico ya esta registrado para recibir alertas para esa ubicación', + 'length' => 'El campo correo electrónico debe tener entre 4 y 64 caracteres.', + 'required' => 'El campo correo electrónico es obligatorio si el checkbox está marcado.', + ) , + 'alert_country' => array( + 'single_country' => 'Por favor seleccione una ubicación dentro de %s.', + ) , + 'alert_lat' => array( + 'between' => 'No ha seleccionado una ubicación valida en el mapa.', + 'required' => 'No ha seleccionado una ubicación valida en el mapa.', + ) , + 'alert_lon' => array( + 'between' => 'No ha seleccionado una ubicación valida en el mapa.', + 'required' => 'No ha seleccionado una ubicación valida en el mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'El campo teléfono móvil parece no contener la correcta cantidad de dígitos.', + 'mobile_check' => 'Ese numero de teléfono móvil ya esta registrado para recibir alertas en esa ubicación', + 'numeric' => 'El campo teléfono móvil no parece contener un numero valido. Por favor ingrese los números solo incluyendo el código del paí­s.', + 'one_required' => 'Usted debe ingresar su número de teléfono móvil o su dirección de correo electrónico.', + 'required' => 'El campo teléfono móvil es obligatorio si el checkbox está marcado.', + ) , + 'alert_radius' => array( + 'in_array' => 'No ha seleccionado un radio válido en el mapa.', + 'required' => 'No ha seleccionado un radio válido en el mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'No tiene suscriptores con alertas', + ) , + 'alerts_subscribed' => 'Está subscripto a las alertas para las categorías siguientes', + 'code_already_verified' => '¡Este código ya ha sido verificado anteriormente!', + 'code_not_found' => '¡Este código de verificación no ha sido encontrado! Por favor confirme que lo ha ingresado correctamente. Puede usar el formulario que está mas abajo para re-ingresar su código de verificación:', + 'code_verified' => 'Su código fue verificado correctamente. Ahora usted va a recibir alertas sobre incidentes que vayan sucediendo.', + 'confirm_request' => 'Para confirmar su solicitud de alerta, por favor vaya a', + 'create_more_alerts' => 'Regrese a la página de alertas para crear más alertas', + 'email_alert_request_created' => 'Su pedido de alerta por correo electrónico ha sido creado y el mensaje de verificación ha sido enviado a ', + 'email_code' => 'Por favor ingrese el código de confirmación que recibió por correo electrónico:', + 'email_error_head' => '¡Su pedido de alerta por correo electrónico NO ha sido guardado!', + 'email_ok_head' => '¡Su pedido de alerta por correo electrónico ha sido guardado!', + 'error' => '¡El sistema no pudo procesar su solicitud de confirmación!', + 'mobile_alert_request_created' => 'Su pedido de alerta móvil ha sido creado y el mensaje de verificación fue enviado a ', + 'mobile_code' => 'Por favor ingrese a continuación el código de confirmación SMS que recibió en su teléfono: ', + 'mobile_error_head' => '¡Su pedido de alerta móvil NO ha sido guardado!', + 'mobile_ok_head' => '¡Su pedido de alerta móvil ha sido guardado!', + 'settings_error' => 'Este servidor no está configurado para procesar correctamente las alertas', + 'unsubscribe' => 'Usted ha recibido este correo electrónico porque está suscrito para recibir alertas. Si no desea seguir recibiendo alertas vaya a', + 'unsubscribed' => 'Ya no recibirá alertas de ', + 'unsubscribe_failed' => 'No pudimos eliminar su suscripción. Por favor confirme que tiene la URL correcta.', + 'verification_email_subject' => 'alertas - verificación', + 'verify_code' => 'Usted no va a recibir alertas en esta ubicación hasta que confirme su pedido.', +); diff --git a/application/i18n/es_PE/auth.php b/application/i18n/es_PE/auth.php new file mode 100644 index 0000000000..1482c6eb38 --- /dev/null +++ b/application/i18n/es_PE/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'El campo correo electrónico parece no contener una dirección de correo electrónico válida.', + 'exists' => 'Lo siento, ya existe una cuenta de usuario con ese correo electrónico.', + 'length' => 'El campo correo electrónico debe tener por lo menos 4 y no mas de 64 caracteres.', + 'required' => 'El campo correo electrónico es obligatorio.', + ) , + 'name' => array( + 'length' => 'El campo nombre completo debe tener por lo menos 3 y no mas de 100 caracteres.', + 'required' => 'El campo nombre completo es obligatorio.', + 'standard_text' => 'El campo nombre de usuario contiene caracteres no permitidos.', + ) , + 'current_password' => array( + 'length' => 'La contraseña debe tener al menos ocho caracteres', + 'login error' => 'Combinación de nombre y contraseña incorrecta', + 'matches' => 'Ingrese la misma contraseña en ambos campos', + 'required' => 'El campo contraseña es obligatorio', + 'alpha_dash' => 'El campo contraseña acepta caracteres alfanuméricos, además de #, @, _ y -', + 'incorrect' => 'La contraseña ingresada es incorrecta. Por favor intente nuevamente', + ) , + 'new_password' => array( + 'length' => 'La contraseña debe tener al menos ocho caracteres', + 'login error' => 'Combinación de nombre y contraseña incorrecta. Por favor verifique', + 'matches' => 'Ingrese la misma contraseña en ambos campos', + 'required' => 'El campo contraseña es obligatorio', + 'alpha_dash' => 'El campo contraseña acepta caracteres alfanuméricos, además de #, @, _ y -', + ) , + 'password' => array( + 'default' => 'Error al intentar validar la contraseña', + 'length' => 'El campo contraseña debe tener por lo menos 8 caracteres de longitud.', + 'login error' => 'Por favor revise que ha ingresado el correo electrónico y la clave correcta.', + 'matches' => 'Por favor ingrese la misma contraseña en ambos campos.', + 'required' => 'El campo contraseña es obligatorio.', + 'riverid server down' => 'No se puede contactar el servidor de autenticación. Por favor intente más tarde', + 'riverid' => '%s', + 'alpha_dash' => 'El campo contraseña acepta caracteres alfanuméricos, además de #, @, _ y -', + ) , + 'password_confirm' => array( + 'matches' => 'El campo confirmación de la contraseña debe ser igual al campo contraseña.', + ) , + 'resetemail' => array( + 'email' => 'El campo correo electrónico parece no contener una dirección de correo electrónico valida.', + 'invalid' => 'Lo siento, no tenemos su dirección de correo electrónico', + 'required' => 'El campo correo electrónico es obligatorio.', + ) , + 'role' => array( + 'superadmin_modify' => 'Solo el administrador general puede editar o crear otros administradores', + ) , + 'roles' => array( + 'alpha_numeric' => 'El formato del rol es inválido.', + 'length' => 'El campo rol debe tener al menos 5 y no más de 30 caracteres de largo.', + 'required' => 'Usted debe definir al menos un rol.', + 'values' => 'Usted debe seleccionar el rol ADMIN o USUARIO.', + ) , + 'token' => array( + 'invalid' => 'El indicio de contraseña olvidada es inválido', + 'required' => 'Indicio de contraseña olvidada es obligatorio', + ) , + 'username' => array( + 'admin' => 'El rol del usuario administrador no puede ser modificado.', + 'alpha_numeric' => 'La URL sólo puede incluir números y letras', + 'exists' => 'Lo siento, este nombre de usuario ya está siendo usado.', + 'length' => 'El campo nombre de usuario debe tener por lo menos 2 y no más de 100 caracteres.', + 'login error' => 'Por favor revise que ingreso el nombre de usuario correcto.', + 'required' => 'El campo nombre de usuario es obligatorio.', + 'superadmin' => 'El rol del usuario super-administrador no puede ser modificado.', + 'csrf' => 'Está intentando crear o editar un usuario? (Posible ataque CSRF)', + ) , +); diff --git a/application/i18n/es_PE/bug.php b/application/i18n/es_PE/bug.php new file mode 100644 index 0000000000..c281ee6431 --- /dev/null +++ b/application/i18n/es_PE/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + ) , + 'email' => array( + 'email' => 'El campo correo electrónico no contiene una dirección de correo electrónico válida', + 'length' => 'El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo.', + 'required' => 'El campo correo electrónico es requerido si el checkbox está seleccionado.', + ) , + 'error' => array( + 'required' => 'El campo error es obligatorio.', + ) , + 'subject' => array( + 'length' => 'El campo asunto debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo asunto es obligatorio.', + ) , + 'yourname' => array( + 'length' => 'El campo nombre debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , +); diff --git a/application/i18n/es_PE/category.php b/application/i18n/es_PE/category.php new file mode 100644 index 0000000000..532dbed9bb --- /dev/null +++ b/application/i18n/es_PE/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'El campo color debe tener al menos 6 caracteres de largo.', + 'required' => 'El campo color es obligatorio.', + ) , + 'category_description' => array( + 'required' => 'El campo descripción es obligatorio.', + ) , + 'category_image' => array( + 'size' => 'Por favor asegúrese que los tamaños de carga de imágenes están limitados a 50KB.', + 'type' => 'El campo imagen parece no contener una imagen válida.Los únicos formatos aceptados son .jpg, .png y .gif.', + 'valid' => 'El campo imagen parece no contener un archivo válido', + ) , + 'category_title' => array( + 'length' => 'El campo título debe tener por lo menos 3 y no mas de 80 caracteres de largo.', + 'required' => 'El campo título es obligatorio.', + ) , + 'parent_id' => array( + 'already_parent' => 'Esta categoría ya tiene sub-categorías.', + 'exists' => 'La categoría padre no existe.', + 'numeric' => 'El campo categoría padre debe ser un número.', + 'parent_trusted' => 'No puede utilizar una categoría especial como nivel superior', + 'required' => 'El campo categoría padre es obligatorio.', + 'same' => 'La categoría y la categoría padre no pueden ser iguales.', + 'special' => 'Las categorías especial no pueden tener sub-categorías', + ) , +); diff --git a/application/i18n/es_PE/comments.php b/application/i18n/es_PE/comments.php new file mode 100644 index 0000000000..58c0ff6314 --- /dev/null +++ b/application/i18n/es_PE/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + 'valid' => 'Has introducido un código de seguridad incorrecto', + ) , + 'comment_author' => array( + 'length' => 'El campo nombre debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'comment_description' => array( + 'required' => 'El campo comentarios es obligatorio.', + ) , + 'comment_email' => array( + 'email' => 'El campo correo electrónico parece no tener una dirección de correo electrónico válida.', + 'length' => 'El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo.', + 'required' => 'El campo correo electrónico es obligatorio si el checkbox está marcado.', + ) , +); diff --git a/application/i18n/es_PE/contact.php b/application/i18n/es_PE/contact.php new file mode 100644 index 0000000000..190ae94029 --- /dev/null +++ b/application/i18n/es_PE/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'valid' => 'Por favor introduce un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + ) , + 'contact_email' => array( + 'email' => 'El campo correo electrónico no contiene una dirección de correo electrónico válida.', + 'length' => 'El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo.', + 'required' => 'El campo correo electrónico es obligatorio si el checkbox está marcado.', + ) , + 'contact_message' => array( + 'required' => 'El campo mensaje es obligatorio.', + ) , + 'contact_name' => array( + 'length' => 'El campo nombre debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'contact_subject' => array( + 'length' => 'El campo asunto debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo Asunto es obligatorio.', + ) , + 'email_send' => array( + 'failed' => 'Ocurrió un error al enviar su mensaje', + ) , +); diff --git a/application/i18n/es_PE/core.php b/application/i18n/es_PE/core.php new file mode 100644 index 0000000000..d4362c235f --- /dev/null +++ b/application/i18n/es_PE/core.php @@ -0,0 +1,35 @@ + 'archivo de configuración', + 'controller' => 'controlador (controller)', + 'driver' => 'controlador (driver)', + 'driver_implements' => 'El driver %s para la biblioteca %s debe implementar la interfaz %s', + 'driver_not_found' => 'El driver %s para la biblioteca %s no puede ser encontrado', + 'errors_disabled' => 'Puede ir a la página principal o intentar de nuevo.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'No es posible completar este pedido', + 'helper' => 'ayudante (helper)', + 'invalid_filetype' => 'El tipo de archivo solicitado, .%s, no está permitido por el archivo de configuración', + 'invalid_method' => 'Método inválido %s llamado en %s', + 'invalid_property' => 'La propiedad %s no existe en la clase %s.', + 'library' => 'biblioteca (library)', + 'log_dir_unwritable' => 'El directorio de log no se puede escribir: %s ', + 'model' => 'modelo', + 'no_controller' => 'Ushahidi no pudo encontrar un controlador para ejecutar este pedido: %s', + 'no_default_route' => 'Por favor seleccione una ruta predeterminada en config/routes.php', + 'page_not_found' => 'La página solicitada, %s, no fue encontrada.', + 'report_bug' => 'Reporte esto a Ushahidi', + 'resource_not_found' => 'El %s solicitado, %s, no fue encontrado', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Cargado en {execution_time} segundos, utilizando {memory_usage} de memoria. Generado por Ushahidi v%s.', + 'text_direction' => 'izquierda-a-derecha', + 'there_can_be_only_one' => 'Sólo puede haber una instancia de Ushahidi por cada pedido de página', + 'uncaught_exception' => 'Excepción no atrapada %s: %s en el archivo %s en la línea %s', + 'view' => 'vista (view)', + 'view_set_filename' => 'Debe seleccionar el archivo de vistas antes de llamar al render', +); diff --git a/application/i18n/es_PE/database.php b/application/i18n/es_PE/database.php new file mode 100644 index 0000000000..20934ce78b --- /dev/null +++ b/application/i18n/es_PE/database.php @@ -0,0 +1,10 @@ + 'Error en la Base de Datos: %s', + 'table_not_found' => 'No se puede encontrar la Tabla "%s" en la base de datos. Por favor asegúrese que esta utilizando la base de datos más reciente para esta versión de Ushahidi.', +); diff --git a/application/i18n/es_PE/datetime.php b/application/i18n/es_PE/datetime.php new file mode 100644 index 0000000000..cb8e21bfb9 --- /dev/null +++ b/application/i18n/es_PE/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Vie', + 'full' => 'Viernes', + ) , + 'monday' => array( + 'abbv' => 'Lun', + 'full' => 'Lunes', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sab', + 'full' => 'Sabado', + ) , + 'sunday' => array( + 'abbv' => 'Dom', + 'full' => 'Domingo', + ) , + 'thursday' => array( + 'abbv' => 'Jue', + 'full' => 'Jueves', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => 'Martes', + ) , + 'wednesday' => array( + 'abbv' => 'Mie', + 'full' => 'Miércoles', + ) , + 'january' => array( + 'abbv' => 'Ene', + 'full' => 'Enero', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Febrero', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marzo', + ) , + 'april' => array( + 'abbv' => 'Abr', + 'full' => 'Abril', + ) , + 'may' => array( + 'abbv' => 'May', + 'full' => 'Mayo', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Junio', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Julio', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agosto', + ) , + 'september' => array( + 'abbv' => 'Set', + 'full' => 'Setiembre', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'Octubre', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Noviembre', + ) , + 'december' => array( + 'abbv' => 'Dic', + 'full' => 'Diciembre', + ) , +); diff --git a/application/i18n/es_PE/feeds.php b/application/i18n/es_PE/feeds.php new file mode 100644 index 0000000000..8671a12d44 --- /dev/null +++ b/application/i18n/es_PE/feeds.php @@ -0,0 +1,19 @@ + 'FECHA', + 'feed_name' => array( + 'length' => 'El campo nombre de feed debe tener por lo menos 3 y no más de 70 caracteres de largo.', + 'required' => 'Por favor ingrese el nombre del feed.', + ) , + 'feed_url' => array( + 'required' => 'Por favor ingrese la URL del feed.', + 'url' => 'Por favor ingrese una URL válida. Ej: http://www.ushahidi.com', + ) , + 'source' => 'ORIGEN', + 'title' => 'Titulo', +); diff --git a/application/i18n/es_PE/footer.php b/application/i18n/es_PE/footer.php new file mode 100644 index 0000000000..16a225981b --- /dev/null +++ b/application/i18n/es_PE/footer.php @@ -0,0 +1,9 @@ + 'php5-curl no esta instalado en este servidor', +); diff --git a/application/i18n/es_PE/form.php b/application/i18n/es_PE/form.php new file mode 100644 index 0000000000..e4896de567 --- /dev/null +++ b/application/i18n/es_PE/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'El valor default no es válido', + 'length' => 'El Nombre de Campo debe tener al menos 3 y no más de 200 caracteres de largo.', + ) , + 'field_height' => array( + 'between' => 'Por favor ingrese un valor entre 0 y 50 para Alto de Campo', + ) , + 'field_isdate' => array( + 'between' => 'Usted ha ingresado un valor no valido para Campo Fecha', + 'required' => 'Por favor seleccione "Si" o "No" para Campo Fecha', + ) , + 'field_name' => array( + 'length' => 'El Nombre de Campo debe tener por lo menos 3 y no más de 100 caracteres de largo.', + 'required' => 'Por favor ingrese un Nombre de Campo.', + 'duplicate' => 'El nombre de campo que ha registrado ya existe en este formulario. Por favor, ingrese uno distinto.', + ) , + 'field_required' => array( + 'between' => 'Usted ha ingresado un valor no válido para Campo Obligatorio', + 'required' => 'Por favor seleccione Si ó No para el Campo Obligatorio', + ) , + 'field_type' => array( + 'numeric' => 'Por favor seleccione un Tipo de Campo Válido.', + 'required' => 'Por favor seleccione un Tipo de Campo.', + ) , + 'field_width' => array( + 'between' => 'Por favor ingrese un valor entre 0 y 200 para Ancho de Campo', + ) , + 'form_description' => array( + 'required' => 'Por favor ingrese la descripción del formulario.', + ) , + 'form_id' => array( + 'default' => 'El formulario por defecto no puede ser eliminado.', + 'numeric' => 'Por favor seleccione a cual formulario hay que agregarle este campo.', + 'required' => 'Por favor seleccione a cual formulario hay que agregarle este campo.', + ) , + 'form_title' => array( + 'length' => 'El campo nombre de formulario debe tener al menos 3 y no más de 100 caracteres de largo.', + 'required' => 'Por favor ingrese el nombre del formulario.', + 'exists' => 'Ya existe un formulario con este título. Por favor, escoja otro. ', + ) , +); diff --git a/application/i18n/es_PE/imap.php b/application/i18n/es_PE/imap.php new file mode 100644 index 0000000000..e2d74611fc --- /dev/null +++ b/application/i18n/es_PE/imap.php @@ -0,0 +1,10 @@ + 'No se pudo abrir el stream IMAP', + 'unsupported_service' => 'El servicio de correo electrónico no está soportado', +); diff --git a/application/i18n/es_PE/installer.php b/application/i18n/es_PE/installer.php new file mode 100644 index 0000000000..94df4d89a0 --- /dev/null +++ b/application/i18n/es_PE/installer.php @@ -0,0 +1,84 @@ + 'Directorio base', + 'database' => 'Base de datos', + 'database_host' => 'Dirección del servidor de base de datos', + 'database_host_description' => 'Si esta utilizando Ushahidi en su propio computador, esta dirección deberá ser "localhost". Si lo está utilizando en un servidor externo, deberá obtener esta información del proovedor del servidor', + 'database_name' => 'Nombre de la base de datos', + 'database_name_description' => 'El nombre de la base de datos que utilizará Ushahidi', + 'db_information_link' => 'Para más información vea este artículo en nuestro wiki, que describe bases de datos en más detalle', + 'default_language' => 'Idioma', + 'default_language_description' => 'Cada instancia de Ushahidi posee algunos idiomas. Ud también puede agregar otros', + 'disable' => 'Deshabilitar', + 'enable' => 'Habilitar', + 'error_summary' => 'Esta es una lista de los errores que encontramos', + 'files_location_text' => 'El directorio en su servidor donde se han copiado los archivos de Ushahidi. Este valor fue detectado automáticamente, por favor verifique que sea correcto. Si este campo está vacío, significa que Ushahidi está instalado en el directorio raíz', + 'finished' => 'Terminado', + 'general' => 'General', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Obtenga su llave del API de Google. aquí', + 'go_back' => 'Retroceder', + 'index' => array( + 'advanced' => 'INSTALACIÓN AVANZADA', + 'advanced_installation_description' => 'Obtiene toda la información para la instalación por medio de un proceso de cinco pasos, incluyendo servidor, mapa, nombre del sitio y detalles de contacto', + 'basic_installation' => 'INSTALACION BASICA', + 'basic_installation_description' => 'Simple y rápida. Todo lo que necesita es el nombre del directorio raíz del servidor web y la información de la base de datos. Elija esta opción para realizar una instalación rápida. Luego de la instalación, puede completar la configuración del sistema en otro momento', + 'proceed' => 'Proceder', + 'welcome' => 'Bienvenido al proceso de instalación de Ushahidi. Seleccione que tipo de instalación le gustaría realizar', + ) , + 'installation_successful' => 'Instalación exitosa', + 'mail_server' => 'Servidor de Correo', + 'mail_server_host' => 'Servidor de correo', + 'mail_server_host_description' => 'Ejemplos: email.susitioweb.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Contraseña del servidor de correo', + 'mail_server_password_description' => 'La contraseña de la cuenta de correo', + 'mail_server_port' => 'Puerto TCP del servidor de correo', + 'mail_server_port_description' => 'Puertos comunes: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tipo de servidor de correo', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). ¿Cuál es la diferencia?', + 'mail_server_username' => 'Usuario del servidor de correo', + 'mail_server_username_description' => 'Si utiliza una cuenta de Gmail, Hotmail, o Yahoo Mail, use la direeción de correo electrónico completa para el nombre de usuario', + 'map' => 'Mapa', + 'map_provider' => 'Proveedor de Mapas', + 'map_provider_description' => 'Ushahidi puede utilizar los siguientes proveedores de mapas: Google, Bing, Yahoo u Open Street Map. Escoja el que posea mayor nivel de detalle para el área que le interese', + 'other_steps' => 'Otros pasos...', + 'password' => 'Contraseña', + 'password_description' => 'Contraseña de la base de datos', + 'previous' => 'Anterior', + 'restart_apache' => 'Por favor reinicie el Servidor Apache', + 'select_mail_server_ssl' => 'Habilita o deshabilita conexiones seguras (SSL)', + 'select_mail_server_ssl_description' => 'Algunos servidores de correo tienen la opción de utilizar SSL al establecer una conexión. Se recomienda utilizar SSL ya que provee mayor seguridad al encriptar las comunicaciones', + 'setup_sms' => 'Configure su servidor SMS', + 'site_email' => 'Dirección de correo del sistema', + 'site_email_alerts' => 'Dirección de correo para alertas', + 'site_email_alerts_description' => 'Dirección de correo para enviar alertas a los usuarios que lo soliciten. Esta dirección debe ser distinta a la dirección de correo del sistema', + 'site_email_description' => 'Todos los mensajes del sitio utilizarán esta dirección', + 'site_name' => 'Nombre del Sitio', + 'site_name_description' => 'El nombre de su sitio', + 'site_tagline' => 'Subtítulo', + 'site_tagline_description' => 'El subtítulo del sitio', + 'summary' => array( + 'text_1' => 'El servidor web debe tener permiso de escritura a los siguientes archivos y directorios', + 'text_2' => '

Puede encontrar más información en cómo administrar permisos en:

+ ', + 'text_3' => 'Antes de comezar asegurese que el servidor web tenga permiso de escritura para los siguientes archivos y directorios. Puede ser necesario cambiar los permisos en forma manual', + 'text_4' => 'La siguiente información será necesaria para el proceso de instalación', + ) , + 'table_prefix' => 'Prefijo para las tablas', + 'table_prefix_description' => 'Usualmente no se utiliza ningún prefijo. Sin embargo, si se utilizan múltiples instancias del sistema en la misma base de datos, se debe colocar un prefijo para cada una', + 'title' => 'Titulo', + 'to_login' => 'Para ingresar, vaya a', + 'upload_data' => 'Subir reportes', + 'username' => 'Nombre de usuario:', + 'username_description' => 'El usuario de la base de datos', + 'use_credentials' => 'y utilice este usuario y contraseña', + 'view_site' => 'Vea su sitio web', +); diff --git a/application/i18n/es_PE/layer.php b/application/i18n/es_PE/layer.php new file mode 100644 index 0000000000..84b12d4966 --- /dev/null +++ b/application/i18n/es_PE/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El campo color debe tener al menos 6 caracteres de largo.', + 'required' => 'El campo color es obligatorio.', + ) , + 'layer_file' => array( + 'type' => 'El campo Archivo parece no contener un archivo válido. Los únicos formatos aceptados son .KMZ y .KML', + 'valid' => 'El campo Archivo parece no contener un archivo válido', + ) , + 'layer_name' => array( + 'length' => 'El nombre del campo debe tener por lo menos 3 y no mas de 80 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'layer_url' => array( + 'atleast' => 'Se requiere un archivo o un URL de un KML', + 'both' => 'No se puede especificar un URL y un archivo KML. Utilice solamente uno.', + 'url' => 'Por favor ingrese una URL válida. Ej: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/es_PE/libraries.php b/application/i18n/es_PE/libraries.php new file mode 100644 index 0000000000..0aa309bf80 --- /dev/null +++ b/application/i18n/es_PE/libraries.php @@ -0,0 +1,27 @@ + 'No es posible conectarse al servidor de Akismet', + 'akismet_cannot_retrieve' => 'No es posible recibir una respuesta de Akismet', + 'api_library_not_found' => 'El API: %s para la clase %s no se encuentra. Verifique la tabla de ruteo del API.', + 'askimet_invalid_apikey' => 'La llave API de Akismet no es válida', + 'clickatell_fopen_error' => 'Error intentando realizar un fopen al enviar.
Verifique que PHP soporta OpenSSL y que la versión de PHP es mayor a 5.2', + 'clickatell_message_too_long' => 'El mensaje es demasiado largo. (Largo actual=', + 'clickatell_no_destination_address' => 'Debe especificar una dirección de destino (A)', + 'clickatell_no_sender_address' => 'Debe especificar una dirección de origen (DE)', + 'clickatell_unicode_message_too_long' => 'El mensaje en Unicode es demasiado largo. (Largo actual=', + 'clickatell_unsupported_method' => 'Método de envío no soportado', + 'invalid_api_library' => 'La librería de API %s no es válida. Todas las librerías de API deben ser subclases de %s', + 'upgrade_directory_not_deleted' => 'El directorio %s no puede ser borrado', + 'upgrade_extracting_error' => 'Error cuando se extraía: %s', + 'upgrade_failed' => 'La descarga de la última versión de Ushahidi falló. Código HTTP', + 'upgrade_file_not_copied' => 'El archivo %s no puede ser copiado', + 'upgrade_file_not_deleted' => 'El archivo %s no puede ser borrado', + 'upgrade_title' => 'Programa para la actualización de Ushahidi', + 'upgrade_zip_error' => 'El archivo comprimido descargado %s, no puede ser escrito', + 'riverid_variable_not_available' => '%s no está disponible en la clase RiverID.', +); diff --git a/application/i18n/es_PE/maintenance.php b/application/i18n/es_PE/maintenance.php new file mode 100644 index 0000000000..19f0ab0b2f --- /dev/null +++ b/application/i18n/es_PE/maintenance.php @@ -0,0 +1,9 @@ + 'Lo sentimos, estamos en mantenimiento. Por favor intenta de nuevo en algunos minutos. Gracias.', +); diff --git a/application/i18n/es_PE/message.php b/application/i18n/es_PE/message.php new file mode 100644 index 0000000000..84adf5e937 --- /dev/null +++ b/application/i18n/es_PE/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'required' => 'Por favor ingrese un código de seguridad', + ) , + 'email' => array( + 'email' => 'El campo correo electrónico parece no tener una dirección de correo electrónica valida.', + 'length' => 'El campo correo electrónico debe tener entre 4 y 64 caracteres.', + 'required' => 'El campo correo electrónico es obligatorio si el checkbox está marcado.', + ) , + 'message' => array( + 'required' => 'El campo comentarios es obligatorio.', + ) , + 'name' => array( + 'length' => 'El campo nombre debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'phone' => array( + 'length' => 'El campo telefono no es válido.', + ) , +); diff --git a/application/i18n/es_PE/mhi.php b/application/i18n/es_PE/mhi.php new file mode 100644 index 0000000000..6154d0640a --- /dev/null +++ b/application/i18n/es_PE/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Por favor ingrese un código de seguridad válido', + 'required' => 'Por favor ingrese el código de seguridad', + ) , + 'contact_email' => array( + 'email' => 'El campo correo electrónico no contiene una dirección de correo electrónico válida.', + 'required' => 'Ingrese una dirección de correo electrónico válida', + ) , + 'contact_message' => array( + 'required' => 'El campo mensaje es obligatorio.', + ) , + 'contact_subject' => array( + 'length' => 'El campo asunto debe tener al menos 3 caracteres de largo.', + 'required' => 'El campo asunto es obligatorio.', + ) , +); diff --git a/application/i18n/es_PE/notifications.php b/application/i18n/es_PE/notifications.php new file mode 100644 index 0000000000..1355894ae2 --- /dev/null +++ b/application/i18n/es_PE/notifications.php @@ -0,0 +1,35 @@ + 'Este mensaje ha sido enviado desde su página web.', + 'admin_login_url' => 'Acceso Administrador', + 'admin_new_comment' => array( + 'message' => 'Un nuevo comentario ha sido publicado en su página web en respuesta a: ', + 'subject' => 'Nuevo Comentario', + ) , + 'admin_new_email' => array( + 'message' => 'Un nuevo correo ha sido publicado en su página web', + 'subject' => 'Nuevo mensaje de correo', + ) , + 'admin_new_report' => array( + 'message' => 'Su sitio ha recibido un nuevo reporte', + 'subject' => 'Nuevo reporte', + ) , + 'admin_new_sms' => array( + 'message' => 'Un nuevo mensaje de texto ha sido publicado en su página web', + 'subject' => 'Nuevo mensaje de texto', + ) , + 'member_new_alert' => array( + 'message' => 'Ha recibido una alerta.', + 'subject' => 'Nueva alerta', + ) , + 'member_new_message' => array( + 'message' => 'Ha recibido un mensaje privado', + 'subject' => 'Nuevo mensaje privado', + 'footer' => 'Para responder diríjase a: ', + ) , +); diff --git a/application/i18n/es_PE/page.php b/application/i18n/es_PE/page.php new file mode 100644 index 0000000000..9c5a26337b --- /dev/null +++ b/application/i18n/es_PE/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Por favor ingrese un Título de Página', + 'length' => 'El Título de la página debe tener entre 3 y 150 caracteres', + ) , + 'page_tab' => array( + 'required' => 'Por favor introduce una etiqueta para la página', + ) , + 'page_description' => array( + 'required' => 'Por favor añada una descripción de la página', + ) , +); diff --git a/application/i18n/es_PE/permissions.php b/application/i18n/es_PE/permissions.php new file mode 100644 index 0000000000..724f2424c3 --- /dev/null +++ b/application/i18n/es_PE/permissions.php @@ -0,0 +1,27 @@ + 'Ver reportes', + 'reports_edit' => 'Crear/Editar/Borrar reportes', + 'reports_approve' => 'Aprobar reportes', + 'reports_verify' => 'Verificar Reportes', + 'reports_comments' => 'Administrar comentario y reportes', + 'reports_download' => 'Descargar reportes', + 'reports_upload' => 'Subir reportes', + 'messages' => 'Administrar mensajes', + 'messages_reporters' => 'Administrar informantes', + 'stats' => 'Ver estadísticas', + 'settings' => 'Modificar configuración', + 'manage' => 'Administrar panel', + 'users' => 'Administrar usuarios', + 'manage_roles' => 'Administrar roles', + 'checkin' => 'Ver verificaciones', + 'checkin_admin' => 'Administrar verificaciones', + 'admin_ui' => 'Acceso administración', + 'member_ui' => 'Acceso a miembros', + 'delete_all_reports' => 'Eliminar todos los reportes', +); diff --git a/application/i18n/es_PE/private_message.php b/application/i18n/es_PE/private_message.php new file mode 100644 index 0000000000..66afde13aa --- /dev/null +++ b/application/i18n/es_PE/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'El Parent ID debe ser numérico', + ) , + 'private_to' => array( + 'required' => 'El campo "A:" es obligatorio', + 'exists' => 'El usuario al que deseas enviar el mensaje, no existe', + ) , + 'private_subject' => array( + 'required' => 'El campo "Asunto" es obligatorio.', + 'length' => 'El Asunto debe tener entre 3 y 150 caracteres', + ) , + 'private_message' => array( + 'required' => 'El campo "Mensaje" es obligatorio', + ) , +); diff --git a/application/i18n/es_PE/report.php b/application/i18n/es_PE/report.php new file mode 100644 index 0000000000..9bdfd6c0d1 --- /dev/null +++ b/application/i18n/es_PE/report.php @@ -0,0 +1,139 @@ + '¡Error!', + 'country_name' => array( + 'single_country' => 'La ubicación del reporte debe estar dentro del país seleccionado en la configuración del sistema %s.', + ) , + 'custom_field' => array( + 'values' => 'Por favor ingrese un valor válido para el "%s" campo.', + 'numeric' => 'El campo "%s" debe ser numérico', + 'required' => 'El campo "%s" es requerido.', + 'not_exist' => 'El campo "%s" no existe.', + 'permission' => 'El campo "%s" no puede ser editado por su cuenta.', + 'email' => 'El campo "%s" debe contener una dirección de correo electrónico válida.', + 'phone' => 'El campo "%s" debe contener un número de teléfono válido', + 'date_mmddyyyy' => 'El campo "%s" debe contener una fécha válida (MM/DD/YYYY)', + 'date_ddmmyyyy' => 'El campo "%s" debe contener una fecha válida (DD/MM/YYYY)', + ) , + 'data_include' => array( + 'between' => 'Por favor seleccionar un item válido para incluir en la descarga', + 'numeric' => 'Por favor seleccionar un item válido para incluir en la descarga', + ) , + 'data_active' => array( + 'between' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + 'numeric' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + 'required' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + ) , + 'data_verified' => array( + 'between' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + 'numeric' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + 'required' => 'Por favor seleccione "Reportes Esperando Aprobación" o "Reportes Aprobados" o ambos.', + ) , + 'data_point' => array( + 'between' => 'Por favor seleccionar un tipo válido de informe a descargar', + 'numeric' => 'Por favor seleccionar un tipo válido de informe a descargar', + 'required' => 'Por favor seleccionar un tipo válido de informe a descargar', + ) , + 'format' => array( + 'required' => 'Debe seleccionar un formato de descarga. Seleccione CSV o XML', + 'valid' => 'Por favor, seleccione un formato válido para descargar sus reportes.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'El campo fecha DESDE parece no contener una fecha válida.', + 'range' => 'Por favor ingrese una fecha DESDE válida. No puede ser mayor al día de hoy.', + ) , + 'incident_active' => array( + 'between' => 'Por favor ingrese un valor válido para Aprobar Este Informe', + 'required' => 'Por favor ingrese un valor válido para Aprobar Este Informe', + ) , + 'incident_ampm' => array( + 'validvalues' => 'El campo am/pm parece no contener un valor válido', + ) , + 'incident_category' => array( + 'numeric' => 'El campo Categorías parece no contener una categoría válida', + 'required' => 'El campo Categorías es obligatorio.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'El campo fecha parece no contener una fecha válida.', + 'date_mmddyyyy' => 'El campo fecha parece no contener una fecha válida?', + 'required' => 'El campo fecha es obligatorio', + ) , + 'incident_description' => array( + 'required' => 'El campo descripción es obligatorio.', + ) , + 'incident_hour' => array( + 'between' => 'El campo hora parece no contener una hora válida', + 'required' => 'El campo hora es obligatorio.', + ) , + 'incident_information' => array( + 'alpha' => 'Por favor ingrese un valor válido para Probabilidad de Información', + 'length' => 'Por favor ingrese un valor válido para Probabilidad de Información', + ) , + 'incident_minute' => array( + 'between' => 'El campo minuto parece no contener un valor válido', + 'required' => 'El campo minuto es obligatorio.', + ) , + 'incident_news' => array( + 'url' => 'El campo enlaces a fuentes de noticias parece no contener una URL válida', + ) , + 'incident_photo' => array( + 'size' => 'Por favor asegurese que los tamaños de las fotos subidas no tengan más de 2MB.', + 'type' => 'El campo Imagen Subida parece no contener una imagen válida. Los únicos formatos aceptados son .jpg, .png y .gif.', + 'valid' => 'El campo Imagen subida parece no contener un archivo válido', + ) , + 'incident_source' => array( + 'alpha' => 'Por favor ingrese un valor válido para Confiabilidad de la fuente', + 'length' => 'Por favor ingrese un valor válido para Confiabilidad de la fuente', + ) , + 'incident_title' => array( + 'length' => 'El campo "Titulo de Reporte" debe tener al menos 3 y no más de 200 caracteres de largo.', + 'required' => 'El campo "Título de Reporte" es obligatorio.', + 'csrf' => 'Posible ataque CSRF. ¿Realmente quiere crear/editar un reporte?', + ) , + 'incident_verified' => array( + 'between' => 'Por favor ingrese un valor válido para Verificar Este Informe', + 'required' => 'Por favor ingrese un valor válido para Verificar Este Informe', + ) , + 'incident_video' => array( + 'url' => 'El campo enlaces a vídeo parece no contener una URL válida', + ) , + 'latitude' => array( + 'between' => 'El campo latitud parece no contener una latitud válida.', + 'required' => 'El campo latitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación.', + ) , + 'locale' => array( + 'alpha_dash' => 'El campo "local" tiene un valor incorrecto. ', + 'exists' => 'Este informe ya tiene una traducción para ese idioma', + 'length' => 'El campo local tiene un valor incorrecto. ', + 'locale' => 'El Informe Original y la Traducción tienen el mismo idioma local (idioma)', + 'required' => 'El idioma es obligatorio', + ) , + 'location_name' => array( + 'length' => 'El campo nombre de ubicación debe tener al menos 3 y no más de 200 caracteres de largo.', + 'required' => 'El campo "Nombre de Ubicación" es requerido.', + ) , + 'longitude' => array( + 'between' => 'El campo longitud parece no contener una longitud válida.', + 'required' => 'El campo longitud es obligatorio. Por favor haga click en el mapa para seleccionar una ubicación.', + ) , + 'person_email' => array( + 'email' => 'El campo correo electrónico parece no tener una dirección de correo electrónica valida.', + 'length' => 'El campo correo electrónico debe tener por lo menos 4 y no mas de 64 caracteres.', + ) , + 'person_first' => array( + 'length' => 'El campo nombre completo debe tener por lo menos 3 y no mas de 100 caracteres.', + ) , + 'person_last' => array( + 'length' => 'El campo Apellido debe tener por lo menos 2 y no mas de 100 caracteres.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'El campo fecha HASTA parece no contener una fecha válida', + 'range' => 'Por favor ingrese una fecha HASTA válida. No puede ser mayor al día de hoy.', + 'range_greater' => 'Su fecha DESDE no puede ser mayor a su fecha HASTA.', + ) , +); diff --git a/application/i18n/es_PE/reporters.php b/application/i18n/es_PE/reporters.php new file mode 100644 index 0000000000..0ef757e43d --- /dev/null +++ b/application/i18n/es_PE/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'El campo latitud parece no contener una latitud válida.', + 'required' => 'El campo latitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación.', + ) , + 'level_id' => array( + 'numeric' => 'El campo Nivel de Reporte parece no contener una nivel válido.', + 'required' => 'El campo Nivel de Reporte parece no contener una nivel válido.', + ) , + 'location_name' => array( + 'length' => 'El campo nombre de ubicación debe tener al menos 3 y no más de 200 caracteres de largo.', + 'required' => 'El campo ubicación es requerido.', + ) , + 'longitude' => array( + 'between' => 'El campo longitud parece no contener una longitud válida.', + 'required' => 'El campo longitud es obligatorio. Por favor haga click en el mapa para seleccionar una ubicación.', + ) , + 'reporter_id' => array( + 'numeric' => 'Informante no válido', + 'required' => 'Informante no válido', + ) , +); diff --git a/application/i18n/es_PE/reports.php b/application/i18n/es_PE/reports.php new file mode 100644 index 0000000000..45cb020be8 --- /dev/null +++ b/application/i18n/es_PE/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Por favor verifica que has seleccionado un ítem.', + 'numeric' => 'Por favor verifica que has seleccionado un ítem.', + 'categories_required' => 'Los reportes deben ser categorizados antes de ser aprobados', + ) , + 'action' => array( + 'permission' => 'No tiene permisos para realizar esta acción', + ) , + 'uploadfile' => array( + 'required' => 'Debe seleccionar un archivo para subir', + 'type' => 'El archivo a subir debe ser del formato .csv o .xml', + 'valid' => 'El campo Carga de Archivos no parece contener un archivo válido', + ) , +); diff --git a/application/i18n/es_PE/roles.php b/application/i18n/es_PE/roles.php new file mode 100644 index 0000000000..469f6dccf0 --- /dev/null +++ b/application/i18n/es_PE/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'El campo descripción debe tener al menos 3 y no más de 100 caracteres.', + 'required' => 'El campo descripción es requerido.', + ) , + 'name' => array( + 'alpha_numeric' => 'El campo Nombre debe contener solo números y letras.', + 'length' => 'El campo nombre debe tener al menos 2 y no más de 30 caracteres.', + 'nomodify' => 'El rol de SuperAdmin no puede ser modificado.', + 'required' => 'El campo nombre es obligatorio.', + ) , + 'access_level' => array( + 'numeric' => 'Nivel de acceso debe ser un número entre 0 y 100', + 'required' => 'Nivel de acceso debe ser un número entre 0 y 100', + ) , + 'permissions' => array( + 'numeric' => 'Los permisos del campo deberá ser un número entre 0 - 100.', + ) , +); diff --git a/application/i18n/es_PE/settings.php b/application/i18n/es_PE/settings.php new file mode 100644 index 0000000000..2c0677786d --- /dev/null +++ b/application/i18n/es_PE/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'El campo de permitir comentarios no parece que contenga un valor válido.', + 'required' => 'El campo de permitir comentarios es requerido.', + ) , + 'allow_feed' => array( + 'between' => 'El campo incluir feed no parece tener un valor válido.', + 'required' => 'El campo incluir feed es obligatorio.', + ) , + 'allow_feed_category' => array( + 'between' => 'El campo Incluir categoría de feed no parece contener un valor válido.', + 'required' => 'El campo incluir feed es obligatorio.', + ) , + 'allow_alerts' => array( + 'between' => 'El campo permitir alertas no parece contener un valor válido.', + 'required' => 'El campo de permitir alertas es requerido', + ) , + 'allow_reports' => array( + 'between' => 'El campo de permitir reportes no parece contener un valor válido.', + 'required' => 'El campo de permitir reportes es requerido', + ) , + 'allow_stat_sharing' => array( + 'between' => 'El campo para compartir estadísticas parece no contener un valor válido.', + 'required' => 'El campo compartir estadísticas es obligatorio', + ) , + 'api' => array( + 'default_record_limit' => 'Número de registros predefinidos a obtener en cada llamada API', + 'maximum_record_limit' => 'Máximo número de registros a obtener en una llamada API', + 'maximum_requests_per_ip_address' => 'Máximo número de registros por llamada API por dirección IP cliente', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'El campo Akismet no parece contener un valor válido.', + 'length' => 'El campo Akismet no parece contener un valor válido.', + ) , + 'banner_image' => array( + 'type' => 'El campo Imagen del Sitio parece contener una imagen no válida. Los formatos aceptados son .JPG .PNG y .GIF.', + 'size' => 'Por favor, asegúrate que el peso de "imagen del banner" sea menor a 250 KB.', + 'valid' => 'El campo "Imagen de banner" parece no contener un archivo válido.', + ) , + 'cache_pages' => array( + 'between' => 'El campo de cache de páginas es requerido.', + 'required' => 'El campo páginas de cache no parece contener un valor válido.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'El campo Duración de Páginas en Caché no contiene un valor válido.', + 'required' => 'El campo Duración de Páginas en Caché es obligatorio.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Al parecer tu servidor no está configurado para manejar URLs limpias. Necesitas cambiar la configuración de tu servidor antes de que actives las URLs limpias. Puedes ver más información sobre cómo activar las URLs limpias en este foro', + 'clean_url_enabled' => 'Esta opción permite que se pueda acceder a Ushahidi via URLs "limpias", (es decir sin "index.php" en la URL).', + 'enable_clean_url' => 'Permitir URLs limpias', + 'title' => 'URLs limpias', + ) , + 'clickatell_api' => array( + 'length' => 'El campo número de API Clickatell debe tener a lo más 20 caracteres de largo.', + 'required' => 'El campo número de API Clickatell es obligatorio.', + ) , + 'clickatell_password' => array( + 'length' => 'El campo clave de Clickatell debe tener al menos 5 y no más de 50 caracteres de largo.', + 'required' => 'El campo Constraseña de Clickatell es obligatorio', + ) , + 'clickatell_username' => array( + 'length' => 'El campo Usuario de Clickatell no debe contener más de 50 caracteres de largo.', + 'required' => 'El campo Usuario de Clickatell es obligatorio.', + ) , + 'configure_map' => 'Configurar mapa', + 'default_location' => 'Ubicación predeterminada', + 'default_map_all' => array( + 'alpha_numeric' => 'El campo color de feed no parece contener un valor válido.', + 'length' => 'El campo color no debe contener más de 6 caracteres de largo.', + 'required' => 'El campo color es obligatorio.', + ) , + 'default_map_view' => 'Vista de mapa predeterminada', + 'default_zoom_level' => 'Nivel de zoom predeterminado', + 'download_city_list' => 'Descargar lista de ciudades desde Geonames', + 'email_host' => array( + 'length' => 'El puerto del servidor de correo es demasiado largo.', + 'numeric' => 'El campo puerto del servidor de correo debe contener únicamente números.', + ) , + 'email_password' => array( + 'length' => 'El campo Contraseña del Puerto del Servidor de Correo debe contener no menos de 5 ni más de 50 caracteres de largo.', + 'required' => 'El campo Contraseña del Servidor de Correo es obligatorio.', + ) , + 'email_port' => array( + 'length' => 'El campo puerto de servidor de correo es demasiado largo.', + 'numeric' => 'El campo Puerto del Servidor de Correo debe contener únicamente números.', + ) , + 'email_servertype' => array( + 'length' => 'El campo puerto de servidor de correos es demasiado largo.', + 'required' => 'El campo Tipo de servidor de correo es obligatorio.', + ) , + 'email_username' => array( + 'length' => 'El campo Usuario del Servidor de Correo no debe contener más de 50 caracteres de largo.', + 'required' => 'El campo Nombre de usuario para el servidor de correo es obligatorio.', + ) , + 'facebook' => array( + 'title' => 'Opciones de configuración de Facebook', + 'description' => 'Para obtener esta información deberá crear una nueva aplicación de Facebook en', + 'description_2' => 'Estas opciones permiten a sus usuarios acceder a través de facebook, esto no crea una aplicación de facebook para tu Ushahidi.', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'App Secreta de Facebook', + ) , + 'google_analytics' => array( + 'length' => 'El campo Google Analytics debe contener una Web Property ID válida, en formato UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Habilitar HTTPS', + 'https_disabled' => 'Esta opción hace que se pueda acceder Ushahidi en modo inseguro; sin "https://" el el prefijo de la URL', + 'https_enabled' => 'Esta opción hace que Ushahidi puede ser accedido de modo seguro; con https en el prefijo de la URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'El campo Elementos por página (Frontend) no parece contener un valor válido.', + 'required' => 'El campo Elementos por página (Frontend) es obligatorio.', + ) , + 'items_per_page_admin' => array( + 'between' => 'El campo Elementos por página (Administración) parece no contener un valor válido.', + 'required' => 'El campo Elementos por página (Administración) es requerido', + ) , + 'map' => array( + 'default_location' => 'Configura tu proveedor de mapas en u proceso sencillo. Selecciona un proveedor, obtén una llave API desde el sitio del proveedor e introduce la llave API.', + 'zoom' => 'Nivel de zoom', + ) , + 'map_provider' => array( + 'choose' => 'Seleccionar proveedor de mapas', + 'enter_api' => 'Introduce una nueva clave de API', + 'get_api' => 'Obtén una clave API', + 'info' => 'Configura tu proveedor de mapas en u proceso sencillo. Selecciona un proveedor, obtén una llave API desde el sitio del proveedor e introduce la llave API.', + 'name' => 'Proveedor de Mapas', + ) , + 'map_timeline' => 'Cronología del mapa', + 'map_settings' => 'Configuración del Mapa', + 'multiple_countries' => '¿Este Ushahidi abarca a múltiples países? ', + 'select_default_location' => 'Por favor selecciona un país predeterminado', + 'set_location' => 'Haz clic y señala en el mapa tu ubicación exacta', + 'site' => array( + 'allow_clustering' => 'Agrupar los reportes en el mapa', + 'allow_comments' => 'Permitir a los usuarios hacer comentarios a los reportes', + 'allow_feed' => 'Incluir feed de Noticias en tu sitio web', + 'allow_feed_category' => 'Crear nuevas categorías desde los boletines', + 'allow_alerts' => 'Permitir a los usuarios suscribirse para recibir alertas', + 'allow_reports' => 'Permitir a los usuarios generar reportes', + 'api_akismet' => 'Clave Akismet', + 'banner' => 'Baner del sitio', + 'blocks_per_row' => 'Bloques por fila', + 'cache_pages' => 'Caché de las páginas ', + 'cache_pages_lifetime' => 'Tiempo de vida de la caché de las páginas', + 'checkins' => 'Registros habilitados', + 'copyright_statement' => 'Declaración del copyright del sitio', + 'default_category_colors' => 'Color predeterminado para todas las categorías', + 'default_category_icons' => 'Icono predeterminado para todas las categorías', + 'delete_banner_image' => 'Eliminar imagen de baner', + 'delete_default_map_all_icon' => 'Eliminar icono predeterminado', + 'display_contact_page' => 'Mostrar página de contacto', + 'display_howtohelp_page' => 'Mostra página "Cómo ayudar"', + 'email_alerts' => 'Dirección de correo para alertas', + 'email_notice' => 'A fin de recibir reportes vía correo electrónico, por favor, configura tu cuenta de correo en la configuración.', + 'email_site' => 'Dirección de correo electrónico del sitio', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Ítems por página - Front end', + 'items_per_page_admin' => 'Ítems por páginas - Administración', + 'kismet_notice' => 'Puedes prevenir el spam usando Akismet.
Puedes obtener una llave API gratuita con tu cuenta de WordPress.com', + 'laconica_configuration' => 'Credenciales de Laconica', + 'laconica_site' => 'Sitio Laconica ', + 'language' => 'Idioma del sitio', + 'manually_approve_users' => 'Aprobar usuarios manualmente', + 'message' => 'Mensaje del sitio', + 'name' => 'Nombre del Sitio', + 'private_deployment' => 'Implementación Privada', + 'require_email_confirmation' => 'Se requiere la confirmación del correo electrónico', + 'submit_report_message' => 'Enviar un reporte', + 'share_site_stats' => 'Activar Estadísticas (Almacenada en los servidores de Ushahidi)', + 'tagline' => 'Subtítulo del sitio', + 'timezone' => 'Zona horaria', + 'title' => 'Configuración del sistema', + 'twitter_configuration' => 'Términos de búsqueda en Twitter', + 'twitter_hashtags' => 'Hashtags - Separados por comas', + 'feed_geolocation_user' => 'Feeds geolocalización - Nombre de usuario de Geonames', + ) , + 'site_email' => array( + 'email' => 'El campo Dirección de correo para no contener una dirección de correo válida.', + 'length' => 'El campo Email del sitio debe ser de al menos 4 y no más de 100 caracteres.', + ) , + 'site_name' => array( + 'length' => 'El campo Nombre del sitio debe contener al menos 3 y no más de 50 caracteres.', + 'required' => 'El campo Nombre del sitio es obligatorio.', + ) , + 'site_tagline' => array( + 'length' => 'El campo Subtítulo del sitio debe tener al menos 3 y no más de 100 caracteres.', + 'required' => 'El campo Subtítulo del sitio es obligatorio.', + ) , + 'sms' => array( + 'clickatell_api' => 'Tu número de API Clickatell', + 'clickatell_check_balance' => 'Revisa tu Balance de Crédito Clickatell', + 'clickatell_load_balance' => 'Cargar Balance de Crédito', + 'clickatell_password' => 'Tu contraseña de Clickatell', + 'clickatell_text_1' => 'Regístrate por el servicio Clickatells haciendo click aquí', + 'clickatell_text_2' => 'Ingresa tu información de acceso a Clickatell abajo', + 'clickatell_username' => 'Tu nombre de usuario de Clickatell', + 'flsms_description' => 'FrontlineSMS es software gratis, libre y de código abierto que permite a sus usuarios enviar y recibir mensajes de textos con grandes grupos de personas a través de teléfonos móviles. Haz click en la caja de debajo para descargar la última versión desde FrontlineSMS.com.', + 'flsms_download' => 'Descargar e instalar FrontlineSMS', + 'flsms_instructions' => 'Instrucciones detalladas sobre cómo enviar SMS desde tu instlación de FronlineSMS installation están disponibles aquí. La URL y la llave API de abajo son obligatorias para activar la sincronización con FrontlineSMS.', + 'flsms_link' => 'Copia y pega esto en el campo "Dirección" de FrontlineSMS', + 'flsms_key' => 'Copia y pega esto en el campo "Ushahidi llave API" en FrontlineSMS', + 'flsms_synchronize' => 'Conectando FrontelineSMS a este Ushahidi', + 'flsms_text_1' => 'Introduzca el/los número(s) teléfónico(s) conectados a FrontlinesSMS en el/los campo(s) de abajo', + 'flsms_text_2' => 'Introduzca el número sin ningún + o guiones debajo', + 'option_1' => 'Opción 1: Usar Frontline SMS', + 'option_2' => 'Opción 2: Usar un puerto SMS global', + 'title' => 'Opciones de configuración de SMS', + ) , + 'sms_no1' => array( + 'length' => 'El campo Teléfono 1 parece no contener un valor válido.', + 'numeric' => 'El campo Teléfono 1 debe contener únicamente números', + ) , + 'sms_no2' => array( + 'length' => 'El campo Teléfono 2 es muy largo.', + 'numeric' => 'El campo Teléfono 2 debe contener únicamente números.', + ) , + 'sms_no3' => array( + 'length' => 'El campo teléfono 3 es demasiado largo', + 'numeric' => 'El campo teléfono 3 debe contener únicamente números.', + ) , + 'twitter' => array( + 'title' => 'Opciones de configuración de Twitter', + 'description' => 'Obtén la información siguiente, configurando tu Ushahidi como una aplicación de Twitter nueva.', + 'api_key' => '"Consumer Key" Llave de consumidor', + 'api_key_secret' => '"Consumer secret" Secreto de consumidor', + 'token' => 'Token de acceso', + 'token_secret' => 'Acceso secreto Token', + ) , + 'test_settings' => 'Probar la configuración', +); diff --git a/application/i18n/es_PE/sharing.php b/application/i18n/es_PE/sharing.php new file mode 100644 index 0000000000..5747b9e2d0 --- /dev/null +++ b/application/i18n/es_PE/sharing.php @@ -0,0 +1,25 @@ + 'Fecha de ingreso', + 'date_added' => 'Agregado el', + 'last_access' => 'Último acceso', + 'sharing_color' => array( + 'length' => 'El campo color debe tener 6 caracteres de largo.', + 'required' => 'El campo color es obligatorio.', + ) , + 'sharing_name' => array( + 'length' => 'El nombre para Compartir no parece ser válido.', + 'required' => 'Un nombre para Compartir es requerido.', + ) , + 'sharing_url' => array( + 'exists' => 'La dirección URL del sitio ya existe', + 'length' => 'El sitio URL parace no ser válido', + 'required' => 'Dirección URL del sitio es obligatoria', + 'url' => 'El campo URL parece no contener una URL valida ', + ) , +); diff --git a/application/i18n/es_PE/stats.php b/application/i18n/es_PE/stats.php new file mode 100644 index 0000000000..fdd091f9ed --- /dev/null +++ b/application/i18n/es_PE/stats.php @@ -0,0 +1,42 @@ + 'aprobado', + 'categories' => 'Categorias', + 'category_impact' => 'Impacto de la categoría ', + 'category_impact_description' => 'Este gráfico ofrece una visión lineal de los informes por categoría en el tiempo. Desplazar de izquierda a derecha pata ver una vista comparativa de diferentes categorías. Pasar el puntero sobre el gráfico para más detalles.', + 'choose_date_range' => 'Elegir un rango de fechas', + 'countries' => 'Países', + 'country' => 'País ', + 'country_breakdown' => 'Desglose por países', + 'description' => 'Esta es la sección de estadísticas y contendrá una descripción general pronto. Por ahora, navegar usando los enlaces de sub categorías de arriba. ', + 'error' => 'Error', + 'glossary' => 'Glosario', + 'hit_summary' => 'Resumen de impacto', + 'legend' => 'Leyenda', + 'pageviews' => 'Vistas de página', + 'pageviews_description' => 'EL número total de páginas que los visitantes han visto en tu sitio', + 'reports' => 'Reportes', + 'reports_categories' => 'Categorías de reportes', + 'reports_statistics' => 'Estadísticas de reportes', + 'reports_status' => 'Estatus de reportes', + 'report_punchcard' => 'Informe tipo tarjeta perforada', + 'report_stats' => 'Estadística del reporte', + 'stats_not_setup' => 'Estadísticas no establecidas', + 'time_range_1' => '1 mes', + 'time_range_2' => '3 meses', + 'time_range_3' => '6 meses', + 'time_range_all' => 'Todo', + 'unapproved' => 'No aprobado', + 'unique_visitors' => 'Visitantes únicos', + 'unique_visitors_description' => 'El número de individuos que vienen a tu implementación. Los visitantes únicos se determinan utilizando cookies. Los visitantes que no tienen las cookies activas serán identificados utilizando una heurística simple teniendo en cuenta su dirección IP, resolución, navegador, plugins, SO, etc.', + 'unverified' => 'No verificado', + 'verified' => 'Verificado', + 'visitor_summary' => 'Resumen de visitantes', + 'visits' => 'Visitas', + 'visits_description' => 'Una visita es un registro de un visitante único que viene al sitio más de 30 minutos después de su última vista de página.', +); diff --git a/application/i18n/es_PE/tooltips.php b/application/i18n/es_PE/tooltips.php new file mode 100644 index 0000000000..e949ffac87 --- /dev/null +++ b/application/i18n/es_PE/tooltips.php @@ -0,0 +1,97 @@ + array( + 'add_to_category' => 'Esto agrega categorías adicionales al reporte. Si aquí seleccionas Categoría 1 y el reporte ya tiene Categoría 2, el reporte entonces tendrá ambas, Categoría 1 y Categoría 2.', + 'approve' => 'Aprueba un reporte o no. Si es aprobado, entonces se mostrará públicamente', + 'assign_badge' => 'Podrás asignarle una insignia al usuario disparador. Escoja la insignia aquí.', + 'between_times' => 'Este es un rango de horas y/o minutos entre dos tiempos en formato de 24 horas. Si ingresa una hora anterior en el segundo campo, este será intercambiado con el primero. Estas horas deberán estar en un día simple. Además, esta hora es chequeada con la hora que hayas configurado en el área de ajustes del sitio y no necesariamente con la zona horaria del usuario, interactuando con tu instalación. Dejar esto en 00:00 a 00:00 para ignorar este indicador.', + 'category' => 'Si deseas que los disparadores se activen solamente cuando se está usando una determinada categoría, puedes configurarlo aquí. Esto permitirá que un disparador sea activado sólo si se utiliza una de las categorías predefinidas. Por ejemplo, si se ha seleccionado "categoría 1 y categoría 2" y luego un informe es remitido utilizando las categorías 2 y 3, pasará la prueba.', + 'days_of_the_week' => 'Si estas acciones ocurren en ciertos días de la semana, configura aquí esa información. Tenga en cuenta que la fecha es determinada según la zona horaria configurada en la implementación. Mantenga pulsado SHIFT, comando, o control para la selección de varios días.', + 'email_body' => 'Cuerpo del correo a enviarse', + 'email_subject' => 'Título del correo electrónico a enviarse', + 'feed_id' => 'La feed puede ser una específica o todas en conjunto. Si tu quieres una feed específica para activar el disparador, puedes seleccionarlas aquí. De lo contrario, puedes dejarlas como "todas"', + 'from' => 'Nombre de usuario del autor en twitter (o múltiples nombres de usuario separados por comas). Si quieres activar disparadores solo para mensajes de un usuario particular de twitter, introduce su nombre de usuario aquí (sin incluir la @)', + 'keywords' => 'Separe cada elemento de elección con coma. Ejemplo elemnto1, elemento2, etc.', + 'location' => 'Puedes seleccionar cualquier lugar o una ubicación específica. Si selecciona una ubicación específica, se le pedirá que dibuje un cuadro alrededor del área que califica una acción. Por ejemplo, si deseas que este disparador se active cuando alguien presenta un informe en Ayacucho, tendrás que elegir "área específica" y luego dibujar la caja alrededor de Ayacucho. Puedes hacer estos cuadros tan pequeño o tan grande como quieras. También puedes dibujar múltiples cajas.', + 'on_specific_count' => 'Este calificador activará el disparador en el número N ya sea para toda la base de usuarios o para cada usuario individual. Dejar en blanco para ignorarlo.', + 'report_title' => 'Este es el asunto por defecto para agregar al reporte', + 'response' => 'Si todas las cualificaciones anteriores se pasan, el disparador se iniciará una respuesta. Esto puede ir desde la aprobación de un reporte de un usuario enviado por correo electrónico. Seleccione la respuesta aquí para activar opciones adicionales para las respuestas específicas.', + 'send_to' => 'Si selecciona "Usuario Disparador", el correo electrónico se enviará al usuario que realizó la acción. Si selecciona el botón de opción situado junto al cuadro de entrada, serás capaz de introducir una dirección de correo electrónico personalizado. Esto es útil si está configurando disparadores para notificar a las personas cuando ciertas partes del mapa están recibiendo reportes, registros de entrada o alguna otra actividad.', + 'specific_days' => 'Puede seleccionar varios días aquí. Las fechas se determina por la zona horaria en la configuración de este proyecto. Para seleccionar todas las fechas, no seleccione ninguna.', + 'trigger' => 'El disparador es el componente principal de la configuración de tu Acción de Disparadores. Aquí es donde se determina si deseas que algo suceda cuando alguien presenta un informe, realiza una comprobación, un registro, etc. Serás capaz de filtrar las respuestas a estas acciones una vez seleccionadas.', + 'user' => 'El usuario puede ser cualquiera o una específico. Si quieres únicamente uno específico para activar el disparador debes seleccionarlo aquí. Por lo contrario, tendrás que dejar esto como "cualquiera", ya que la mayoría de los disparadores se establecen para todos los usuarios que interactúan con el sistema', + 'verify' => 'Marcas un reporte como verificado o no.', + ) , + 'change_picture' => 'La página de perfil en este sitio usa Gravatar. Clickando sobre tu imagen, irás a la web de Gravatar donde tu puedes cambiar tu imagen de perfil.', + 'default_value' => 'Separa cada valor con una coma, p.e. valor1, valor2.', + 'radio_choices' => 'Separe cada valor con una coma. Ejemplo: valor1, valor2. En caso que quiera establecer un valor como predeterminado, finalice la lista de opciones con ::. Ejemplo: Si quiere hacer valor3 el valor por defecto, entonces deberá ser: valor1, valor2, valor3::valor3', + 'dropdown_choices' => 'Separe con comas cada elemento de elección, por ejemplo, elemento 1, elemento 2, etc', + 'private_to' => 'Comenzar escribiendo a la lista de miembros', + 'private_subject' => 'Asunto del mensaje privado', + 'private_message' => 'Mensajes privados', + 'profile_color' => 'Puedes seleccionar un color que se mostrará bajo tu imagen de perfil en tu perfil público. Este color será también el de tu reportes registrados en el mapa.', + 'profile_email' => 'Tu dirección de correo electrónico', + 'profile_name' => 'Esta es una de las formas que te identificarán en la web. ¡Ten en cuenta que es público!', + 'profile_new_password' => 'Si se establece, esta será su nueva contraseña. Deje este campo en blanco si desea mantener su contraseña actual.', + 'profile_new_users_password' => 'Esto es un requerimiento cuando se crea un nuevo usuario y su contraseña. Debes informar al nuevo usuario que debe cambiar su contraseña después de ingresar por primera vez.', + 'profile_notify' => 'Seleccionando SÍ recibirás alertas vía correo electrónico cuando se registren nuevos reportes o comentarios en tu sitio web.', + 'profile_password' => 'Tu contraseña actual. Necesitamos que introduzcas tu contraseña para prevenir cualquier cambio no autorizado en tu cuenta.', + 'profile_public' => 'Tu perfil podrá ser visto por cualquiera en internet si habilitas esta opción. Esta es también la manera más fácil de mostrar los informes que nos has enviado, tus checkins, insignias, etc todo en una página.', + 'profile_public_url' => 'Esta es la dirección donde tu perfil público puede ser encontrado.', + 'profile_username' => 'Tu nombre de usuario no puede ser modificado', + 'settings_access_level' => 'Los niveles de acceso se utilizan para restringir el acceso a los campos de formulario personalizado. Niveles de acceso más altos pueden acceder a los campos de los niveles más bajos. Superadmin tiene el nivel de acceso más alto (100). Los datos públicos se visualizan en el nivel de acceso más bajo (0). Los miembros tienen nivel de acceso 10. Administración es el nivel de acceso 90 predefinido.', + 'settings_alert_email' => 'Esta es la dirección de correo que será usada para enviar correos de alerta.', + 'settings_allow_alerts' => 'Permitir a los usuarios suscribirse para recibir alertas vía web.', + 'settings_allow_clustering' => 'Esto permite la agrupación de informes similares en un único punto en el mapa', + 'settings_allow_comments' => 'Permitir a los usuarios comentar los reportes en la página principal del sitio.', + 'settings_allow_feed' => 'Esto permite que las Noticias de boletines RSS se muestren en la página principal del sitio.', + 'settings_allow_feed_category' => 'Esto permite crear nuevas categorias a partir de las Noticias de los boletines RSS.', + 'settings_allow_reports' => 'Permitir a los usuarios enviar información vía el formulario web.', + 'settings_api_default_record_limit' => 'Número predeterminado de registros que serán devueltos en cada llamada a la API', + 'settings_api_max_record_limit' => 'Número máximo de registros que serán devueltos en cada llamada a la API', + 'settings_api_max_requests_per_ip' => 'Número máximo de llamadas a la API por dirección IP', + 'settings_banner' => 'La imagen (banner) del sitio aparecerá en la parte superior de la página de inicio de tu web si el tema que estás utilizando es compatible con ella. El tamaño recomendado para esta imagen dependerá del tema que estés usando. Ten en cuenta que esto va a reemplazar el título del sitio y el subtítulo en la parte superior de la página.', + 'settings_blocks_per_row' => 'Número de bloques de columnas que serán mostrados en cada fila.', + 'settings_cache_pages' => 'Activar o desactivar la caché de páginas. Esto hace que las páginas se muestran más rápido mediante la reducción de los tiempos de respuesta. Le recomendamos que utilice el almacenamiento en caché de los sitios de alto tráfico. ** Recuerde que los informes se rellenarán en la parte pública de la web en base a la programación que ha configurado a continuación (Duración en caché).', + 'settings_cache_pages_lifetime' => 'Configura el tiempo de vida de la caché', + 'settings_checkins' => 'Esta configuración permite checkins en tu Ushahidi. Se trata de un tipo de informe simplificado que no está moderado antes de que entre en la página principal y requiere que tu sitio esté configurado de cierta manera. Cuando se activa esta opción, asegúrate de que la configuración de zona horaria está en hora UTC y su tema es compatible con checkins. Cuando se activa esta opción, temas únicamente para checkin podrán ser activados en la página de configuración de addons/themes.', + 'settings_configure_map' => 'Configura el mapa para cubrir una ubicación específica', + 'settings_default_category_colors' => 'Configura un código de color para todas las categorías en este sitio', + 'settings_default_category_icons' => 'Configura un icono para todas las categorías en este sitio', + 'settings_default_location' => 'Este es el país en el que este sitio web está funcionando', + 'settings_display_contact' => 'Muestra o no la pestaña de Contacto en la página principal', + 'settings_display_howtohelp' => 'Muestra o no la pestaña de Ayuda en la página principal', + 'settings_display_items_per_page' => 'Este es el número de reportes mostrados en la página principal de este sitio', + 'settings_display_items_per_page_admin' => 'Este es el número de reportes mostrados en la página en el Back End de administración', + 'settings_flsms_download' => 'Este es el hub para los mensajes entrantes', + 'settings_flsms_synchronize' => 'Esto sincroniza los mensajes en el conector con la plataforma Ushahidi.', + 'settings_flsms_text_1' => 'Los números de teléfono a través de los cuales se reciben los mensajes de texto.', + 'settings_google_analytics' => 'Sigue a los visitantes de tu sitio. Obtén estadísticas detalladas de los visitantes', + 'settings_locale' => 'Establece el idioma que se utilizará en el sitio.', + 'settings_manually_approve_users' => 'Si configuras esta opción como Sí, deberás aprobar cada usuario individualmente en tu sitio web, asignándoles algún rol (ejemplo: Miembro, Administrador, Superadministrador).', + 'settings_map_provider' => 'Esto define qué mapa se utilizará en el sitio.', + 'settings_map_timeline' => 'Esto muestra la línea de tiempo basada en la fecha y hora de los reportes registrados. ', + 'settings_private_deployment' => 'Al establecer este valor en verdadero "true" o sí "yes" hará que tu ushahidi sea una implementación privada de modo que sólo los usuarios con cuentas específicas serán capaces de acceder a la implementación.', + 'settings_require_email_confirmation' => 'Los usuarios recibirán un correo electrónico con un enlace de confirmación que deberá ser usado antes de que se les permita ingresar a la implementación de ushahidi si se configura en Sí. Si habilitas esto una vez que los usuarios de la implementación han sido aceptados, se les solicitará que confirmen su cuenta antes de que se les permitirá seguir utilizándola.', + 'settings_server_host' => 'Esto es dónde los emails residen', + 'settings_server_password' => 'Esta es la contraseña para la dirección de correo electrónico donde se reciben los reportes.', + 'settings_server_port' => 'Esto es requerido para aceptar conexiones desde la dirección de correo electrónico', + 'settings_server_ssl_support' => 'Esto es necesario para mejorar una conexión segura.', + 'settings_server_type' => 'Esto es necesario para recuperar mensajes de correo electrónico desde el servidor host.', + 'settings_server_username' => 'Esta es la dirección de correo electrónico que recibe los reportes.', + 'settings_share_site_stats' => 'Las estadísticas de ataque se almacenan en un servidor controlado por Ushahidi. Al activar esta opción, tendrás acceso a acceder a las estadísticas directamente en tu panel de administración. Con su desactivación, se detiene la recopilación de estadísticas y no serás capaz de recuperar las estadísticas de tráfico recogidas mientras estuvo desactivado.', + 'settings_site_copyright_statement' => '¿Otras personas tienen derecho de publicar los textos, imágenes, vídeos y/o diseños de temas que tú y tus usuarios a crearon? ve a https://creativecommons.org/choose/ si estás interesado en especificar qué cosas se pueden hacer con tu trabajo. Y recuerda ser específico acerca de qué elementos del sitio web están bajo esa licencia!', + 'settings_site_email' => 'Esta es la dirección de correo que recibirá los reportes y mensajes que se envíen desde el formulario de Contacto.', + 'settings_site_message' => 'Este es el texto que aparecerá sobre el mapa en la página de inicio. Esto es usado para dar información importante a los visitantes del sitio. Para quitar la caja del mensaje simplemente elimine el mensaje aquí. ', + 'settings_site_name' => 'Este es el nombre del sitio que aparecerá en la parte superior de la página principal.', + 'settings_site_submit_report_message' => 'Este es el mensaje que se mostrará en la página de Envía un reporte. Esto se puede aprovechar para señalar excepciones de responsabilidad o instrucciones para tus visitantes que publican reportes. ', + 'settings_site_tagline' => 'En pocas palabras, explica sobre qué es este sitio', + 'settings_site_timezone' => 'Esta es la zona horaria en que tu sitio funcionará. Esto tiene un impacto en cualquier acción que haya configurado que utilizan la fecha y hora, así como la hora actual por defecto para informes sobre el lado visible, frente, y parte no visible, trasera, de tu web.', + 'settings_twitter_configuration' => 'Establece el hashtag de Twitter que será usado en un tweet', + 'feed_geolocation_user' => 'Si quieres geocodificar el feed de tus entradas, consigue un usuario en http://geonames.org, activa los servicios web libres e introdúcelo allí. Déjalo vacio para desactivar esta función.

Ten cuidado con los límites de uso! ', +); diff --git a/application/i18n/es_PE/ui_admin.php b/application/i18n/es_PE/ui_admin.php new file mode 100644 index 0000000000..bf1f999bd9 --- /dev/null +++ b/application/i18n/es_PE/ui_admin.php @@ -0,0 +1,329 @@ + 'Acceso denegado. Sus credenciales no son válidas o se ha denegado su petición. ', + 'access_denied_others' => 'Acceso denegado. El pedido fue recibido, pero denegado. Intente más tarde', + 'access_level' => 'Nivel de acceso', + 'actions' => 'Acciones', + 'add_to_category' => 'Añadir a categoría ', + 'added' => 'Añadido', + 'added_edited' => 'Añadido/editado', + 'addons' => 'Extensiones', + 'admin_role' => 'Administrador', + 'alerts' => 'Alertas', + 'alerts_received' => 'Alertas recibidas', + 'all' => 'Todo', + 'am' => 'AM', + 'anonymous' => 'Anonimo', + 'anyone_role' => 'Todos', + 'anywhere' => 'Todo Lugar', + 'api_banned' => 'API Bloqueadas', + 'api_logs' => 'Registros del API', + 'api_settings' => 'Configuraciones de API', + 'api_unban' => 'DESBLOQUEAR', + 'api_unban_all' => 'DESBLOQUEAR TODO', + 'approved' => 'aprobado', + 'approve_auto' => 'Auto aprobado', + 'approve_manual' => 'Aprobar manualmente', + 'archived' => 'Archivado', + 'are_you_sure_you_want_to' => 'Está seguro que quiere', + 'are_you_sure_you_want_to_delete_this_item' => '¿Está seguro que quiere borrar este item?', + 'are_you_sure_you_want_to_delete_this_photo' => '¿Esta seguro que desea borrar esta foto?', + 'are_you_sure_you_want_to_switch_forms' => 'Confirme cambio de formulario', + 'assign' => 'Asignar', + 'assignments' => 'Asignaciones', + 'assign_badge' => 'Asignar Distintivo', + 'author' => 'Autor', + 'author_email' => 'Correo electrónico del autor', + 'back' => 'Volver', + 'banip_action' => 'Bloquear IP', + 'between_times' => 'Entre horas', + 'blocks' => 'Bloques', + 'body' => 'Cuerpo', + 'cancel' => 'Cancelar', + 'categories' => 'Categorias', + 'chart_display_error' => 'Error al mostrar el gráfico', + 'check_message_valid' => 'Mensaje no válido', + 'check_number' => 'Verifique el número de destino', + 'check_sms_settings' => 'Revise la configuración de SMS', + 'checkin_details' => 'Detalles de Checkin', + 'checkins' => 'Checkins', + 'cities_loaded' => 'Ciudades cargadas', + 'code' => 'Sistema', + 'code_out_of_sync' => 'Versión del sistema fuera de syncronización', + 'color' => 'Color', + 'comments' => 'Comentarios', + 'confirmation_code' => 'Su código de verificación es: ', + 'confirm_msg' => 'El Usuario ha sido bloqueado', + 'count' => 'Conteo', + 'country_not_found' => 'No se encuentra el país', + 'created_edited' => 'creado/editado', + 'create_report' => 'Crear un Reporte', + 'critical_upgrade' => 'Actualización crítica', + 'csv' => 'CSV', + 'currently_active' => 'Actualmente activo', + 'currently_inactive' => 'Actualmente inactivo', + 'custom_forms_insufficient_permissions' => 'No posee permiso para editar estos campos.', + 'daily' => 'Diariamente', + 'dashboard' => 'Tablero de Control', + 'database' => 'Base de datos', + 'date_time' => 'Fecha y Hora', + 'date_added' => 'Fecha añadida', + 'date_modified' => 'Fecha Modificada', + 'days_of_the_week' => 'Días de la semana', + 'db_out_of_sync' => 'La versión de la base de datos está desincronizada', + 'deleted' => 'Borrado', + 'delete_action' => 'Borrar', + 'delete_all' => 'Eliminar todos los reportes', + 'delete_badge' => 'Borrar Distintivo', + 'demo' => 'Demo', + 'description' => 'Descripción', + 'disabled' => 'Deshabilitado', + 'divider_start_field' => 'Comienza Divisor', + 'divider_end_field' => 'Finaliza Divisor', + 'divider_class' => 'div class', + 'download_reports' => 'Descargar Reportes', + 'dropdown_choices' => 'Opciones del menú', + 'edited' => 'EDITADO', + 'edited_by' => 'Editado por', + 'edit_action' => 'Editar', + 'edit_log' => 'Editar Registro', + 'email' => 'Correo electrónico', + 'entire_collective' => 'Todos', + 'error_geocoding' => 'Error en la geocodificación', + 'error_imap' => 'La librería IMAP PHP no está instalada', + 'error_twitter' => 'Credenciales incorrectas', + 'error_msg' => 'Error', + 'error_post_incident' => 'Error, no se pudo publicar el incidente', + 'every_six_hours' => 'Cada seis horas', + 'every_twelve_hours' => 'Cada doce horas', + 'experimental' => 'Experimental', + 'faqs' => 'Preguntas frecuentes', + 'feed' => 'Boletín', + 'feedback' => 'Feedback', + 'feeds' => 'Boletines', + 'field_choices' => 'Lista de opciones', + 'field_default' => 'Valor predeterminado', + 'field_datatype' => 'Tipo de dato', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numerico', + 'field_datatype_text' => 'Texto libre', + 'field_height' => 'Altura (en líneas)', + 'field_hidden' => 'Campo oculto', + 'field_maxlength' => 'Longitud en caracteres', + 'field_name' => 'Nombre del campo', + 'field_toggle' => 'Invertir', + 'field_toggle_no' => 'No', + 'field_toggle_yes_close' => 'Si, cerrado por omisión', + 'field_toggle_yes_open' => 'Si, abierto por omisión', + 'file_not_found_upload' => 'No se encuentra el archivo cargado', + 'file_open_error' => 'No se puede leer el archivo', + 'form_not_exists' => 'Ese formulario no existe', + 'forum' => 'Foro', + 'free_text_field' => 'Campo de texto libre', + 'date_field' => 'Campo fecha', + 'radio_field' => 'Opciones excluyentes', + 'checkbox_field' => 'Opciones combinadas', + 'dropdown_field' => 'Lista de opciones', + 'from' => 'De', + 'from_date' => 'De', + 'geonames_timeout' => 'Error de Geonames', + 'get_help' => 'Obtener ayuda', + 'get_more_themes' => 'Obtener más temas', + 'get_more_plugins' => 'Obtener más plugins', + 'header_actions' => 'Acciones', + 'header_add_edit' => 'Agregar/Editar', + 'header_email' => 'Correo electrónico', + 'header_manage_users' => 'Administrar usuarios', + 'header_role' => 'Roles', + 'header_user' => 'Usuario', + 'help' => 'Ayuda', + 'hourly' => 'Horario', + 'incident_feed' => 'Suscripción de reportes por', + 'installer_info' => 'La carpeta de instalación todavía existe. Borre la carpeta installer. Esto es una vulnerabilidad potencial de seguridad.', + 'instance' => 'Instancia', + 'instances' => 'Instancias', + 'instance_details' => 'Instancia Detalles', + 'invalid_parameter' => 'Parámetro inválido', + 'ip_address' => 'Dirección IP', + 'is_date' => '¿Es un campo de fecha?', + 'ispublic_visible' => 'Visible para', + 'ispublic_submit' => 'Editable para', + 'keyword' => 'Palabra clave', + 'keywords' => 'Palabras clave', + 'label_email' => 'Dirección de correo electrónico:', + 'label_full_name' => 'Nombre completo:', + 'label_password' => 'Contraseña:', + 'label_role' => 'Rol:', + 'label_username' => 'Nombre de usuario:', + 'layers' => 'Capas', + 'login_role' => 'Moderador', + 'logout' => 'Salir', + 'logs' => 'Bitácora', + 'manage' => 'Administrar', + 'manage_roles' => 'Administrar Roles y Permisos', + 'manage_users' => 'Ver Usuarios', + 'manage_users_edit' => 'Agregar/Editar Usuarios', + 'manage_public_listing' => 'Administrar Vista Pública', + 'mark_as' => 'Marcar como', + 'marked_as_not_spam' => 'marcar como mensaje válido', + 'marked_as_spam' => 'marcar como correo basura', + 'match_no_documents' => 'no se encontraron documentos', + 'message' => 'Mensaje', + 'messages' => 'Mensajes', + 'messages_laconica' => 'Mensajes de Laconica', + 'messages_twitter' => 'Tweets', + 'message_sent' => 'Mensaje enviado', + 'mhi' => 'MHI', + 'minute' => 'Minuto', + 'minutes' => 'Minutos', + 'missing_parameter' => 'Falta un parámetro', + 'moderator' => 'Moderador', + 'modified' => 'modificado', + 'modify_timezone' => 'Modificar zona horaria', + 'move_down_action' => 'mover hacia abajo', + 'move_up_action' => 'mover hacia arriba', + 'multiple_hosted_instances' => 'Múltiples instancias', + 'my_alerts' => 'Mis Alertas', + 'my_checkins' => 'Mis Checkins', + 'my_profile' => 'Mi Perfil', + 'my_reports' => 'Mis Reportes', + 'my_votes' => 'Votos', + 'my_votes_up' => 'Positivo', + 'my_votes_down' => 'Negativo', + 'name' => 'Nombre', + 'new_alert' => 'Crear una alerta', + 'new_private' => 'Crear un mensaje', + 'new_password' => 'Nueva contraseña', + 'no' => 'No', + 'none_category_explanation' => 'Categoría especial que se asigna a los reportes cuando su categoría principal es eliminada.', + 'notification' => 'Notificación', + 'not_case_sensitive' => 'No hay proceso clasificado', + 'not_found' => 'No encontrado', + 'no_data' => 'Sin datos, no hay resultados para mostrar.', + 'no_error' => 'Sin error', + 'no_result_display_msg' => 'No hay resultados para mostrar.', + 'of' => 'de', + 'on_specific_count' => 'Sobre Conteo Específico', + 'openids' => 'OpenID\'s', + 'page' => 'página', + 'pages' => 'páginas', + 'page_not_found' => 'Página No Encontrada', + 'page_not_found_message_with_contact' => 'Lamentablemente, la página a la que estás intentando acceder no está aquí.

¿Hiciste clic en un vínculo de alguna página de nuestro sitio?
Si llegaste a esta página desde otra parte de nuestro sitio, comunícate con nosotros para que podamos resolverlo.

¿Usaste un vínculo de otro sitio?
Los vínculos de otros sitios puedes estar desactualizados o incluir errores tipográficos. Indícanos de dónde provienes para que intentemos comunicarnos con el otro sitio y resolver el problema.

¿Escribiste la URL?
Es posible que hayas escrito incorrectamente la dirección (URL). Verifica que la hayas escrito sin errores tipográficos y que hayas usado correctamente las mayúsculas y minúsculas, etc.

', + 'page_not_found_message' => 'Lamentablemente, la página a la que está intentando acceder no está aquí.', + 'parameters_used' => 'Parámetros utilizados', + 'password' => 'Contraseña', + 'password_reset' => 'Reiniciar contraseña', + 'password_reset_message_line_1' => 'Sr/Sra', + 'password_reset_message_line_2' => 'Hemos recibido un pedido para cambiar la contraseña de', + 'password_reset_message_line_3' => 'Para cambiar su contraseña, por favor seleccione el enlace siguiente (o copielo y péguelo en la barra de de direcciones de su navegador).', + 'password_reset_message_line_4' => 'Como lo ha solicitado, su contraseña a sido cambiada. El usuario y contraseña son ahora estos', + 'password_reset_subject' => 'Pedido de nueva contraseña', + 'phone' => 'Teléfono', + 'please_select' => 'Escoja', + 'pm' => 'PM', + 'post_method_not_used' => 'Los datos no fueron enviados como post', + 'preview' => 'Vista previa', + 'private_message' => 'Mensaje', + 'private_messages' => 'Mensajes privados', + 'private_sent' => 'Mensaje privado enviado', + 'private_subject' => 'Sujeto', + 'private_to' => 'A', + 'public_listing' => 'Vista Pública', + 'qualifiers' => 'Calificadores', + 'read' => 'leer', + 'relevance' => 'Relevancia', + 'report_title' => 'Denunciar título', + 'report_date' => 'Fecha del informe', + 'reporters' => 'Reporteros', + 'reporter_levels' => 'Niveles de denuncia', + 'reports' => 'Reportes', + 'reputation' => 'Nivel de Reputación', + 'required' => 'Requerido', + 'reset' => 'Reset', + 'response' => 'Respuesta', + 'results' => 'Resultado', + 'revoke' => 'Revocar', + 'riverid_exists_admin' => 'Este correo electrónico ya tiene una cuenta administrada por CrowdmapID. El usuario necesitará usar su contraseña existente de Crowdmap para iniciar sesión.', + 'save_settings' => 'Guardar Configuración', + 'search' => 'Buscar', + 'search_reports' => 'Buscar Reportes', + 'searching_for' => 'Buscando', + 'security_info_encryption_key' => 'La clave de encriptación será establecida al valor por defecto. Esto es inseguro y deberá ser cambiada.', + 'security_info_https' => 'Este sitio está siendo servido sobre HTTP. Debería ser puesto a HTTPS para incrementar la seguridad.', + 'security_info_instructions' => 'Las instrucciones están disponibles en el Wiki', + 'select_download_format' => 'Seleccione el formato de informe que desea usar para descargarlo:', + 'select_field_type' => '--- Seleccione un tipo de campo ---', + 'select_item' => 'Por favor selecciona un ítem', + 'select_trigger_before_response' => 'Deberá seleccionar un Trigger antes que pueda seleccionar una Respuesta.', + 'select_trigger_before_qualifiers' => 'Deberá seleccionar un Trigger antes que pueda definir Calificadores.', + 'sender' => 'Remitente', + 'send_to' => 'Enviar a', + 'sent_from_website' => 'Este mensaje fue enviado desde su sitio web en ', + 'server_time' => 'Hora del servidor', + 'settings' => 'Configuración', + 'showing_page' => 'Mostrando página', + 'showing_results' => 'Mostrando resultados', + 'shown' => 'Mostrando', + 'special_category' => 'Categoría especial', + 'special_category_explanation' => 'Categoría especial que se utiliza para clasificar reportes aprobados automáticamente. Es utilizada junto con la característica "Reportes Verificados"', + 'specific_area' => 'Area específica', + 'state' => 'Estado', + 'statistics' => 'Estadísticas', + 'stats' => 'Estadísticas', + 'stats_collection_error' => 'No se pudieron obtener estadísticas. Reintente luego.', + 'stats_collection_error_short' => 'No se pudieron obtener estadísticas', + 'specific_days' => 'Días específicos', + 'subject' => 'Tema', + 'superadmin_role' => 'Super Administrador', + 'task_performed' => 'Tarea realizada', + 'text_field' => 'Campo de texto', + 'theme_name' => 'Nombre', + 'title' => 'Administrar usuarios', + 'timeout' => 'Error de tiempo de espera', + 'to' => 'A', + 'total_records' => 'Registros', + 'to_date' => 'A', + 'translate_reports' => 'Traducir reportes', + 'trigger' => 'Disparador', + 'triggering_user' => 'Usuario disparadores', + 'triggers' => 'Disparadores', + 'unapproved' => 'no aprobado', + 'unknown' => 'Desconocido', + 'unknown_failure' => 'Falla desconocida', + 'unread' => 'no leído', + 'unsubscribe_message' => 'Ya no recibirá alertas de', + 'update_link' => ' Presione aquí para realizar la actualización', + 'upgrade_ushahidi' => 'Actualizar el sistema', + 'upgrade_ushahidi_status' => 'Estado de la actualización del sistema', + 'upload_reports' => 'Subir reportes', + 'user' => 'Usuario', + 'users' => 'Usuarios', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificado/No Verificado', + 'verify_unverify' => 'Verificar/No Verificar', + 'version' => 'Versión', + 'version_available' => ' dispone de una actualización.', + 'video_encoding' => 'Formato de video', + 'view_private' => 'Mensajes privados', + 'view_site' => 'Ver el sitio', + 'view_report' => 'Ver el reporte', + 'welcome' => 'Bienvenido, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Si', + 'your_search_for' => 'Su búsqueda de', + 'delete_all_instructions' => 'Clicando el botón de debajo eliminarás TODOS los reportes en la base de datos. Debes usar esto con precaución ya que esta operación no puede deshacerse. ', + 'delete_all_backup' => 'Te recomendamos que hagas una copia de tu base de datos antes de proceder.', + 'delete_all_button' => 'Estoy seguro, quiero eliminar el/los %s reporte(s) desde la base de datos.', + 'delete_all_confirm' => 'Está seguro que desea eliminar todos los reportes?', + 'delete_all_no_reports' => 'No hay reportes para ser eliminados', + 'user_no_logins' => 'Número de ingresos', + 'user_last_login' => 'Último ingreso', + 'user_confirmed_account' => '¿Cuenta confirmada?', +); diff --git a/application/i18n/es_PE/ui_main.php b/application/i18n/es_PE/ui_main.php new file mode 100644 index 0000000000..57b66b9580 --- /dev/null +++ b/application/i18n/es_PE/ui_main.php @@ -0,0 +1,627 @@ + 'Acerca de', + 'access' => 'Acceso', + 'access_limits' => 'Límites de acceso', + 'account_name' => 'Nombre de cuenta', + 'actions' => 'Acciones', + 'action_confirm' => 'Esta acción no puede deshacerse. ¿Estás seguro de querer continuar?', + 'activate' => 'Activar', + 'active' => 'Activo', + 'add' => 'Agregar', + 'added_by' => 'Agregado por', + 'additional_data' => 'Data adicional', + 'additional_reports' => 'Reportes adicionales', + 'add_edit' => 'Agregar/Editar', + 'add_field' => 'Agregar un campo', + 'add_language' => 'Agregar un idioma', + 'add_new' => 'Agregar nuevo', + 'add_new_category' => 'Agregar nueva categoria', + 'add_translation' => 'Agregar traducción', + 'admin' => 'Administración', + 'alerts' => 'Recibe alertas', + 'alerts_alert_me' => 'Alertarme si se registra un reporte en, o cerca a:', + 'alerts_btn_send' => 'Guardar mi alerta', + 'alerts_email' => 'Dirección de correo electrónico:', + 'alerts_enter_email' => 'Introducir dirección de correo electrónico', + 'alerts_enter_mobile' => 'Introducir número de teléfono con el código de país ', + 'alerts_get' => 'Recibe alertas', + 'alert_has_been' => 'La alerta ha sido', + 'alerts_mobile_phone' => 'Teléfono móvil', + 'alerts_place_spot' => 'O indique un punto en el siguiente mapa y le enviaremos una alerta cuando se registre un reporte en un radio de 20 kilómetros.', + 'alerts_place_spot2' => 'Si no puedes encontrar tu ubicación, por favor, haz clic sobre el mapa para ubicar la localización correcta.', + 'alerts_rss' => 'RSS (copia la siguiente dirección)', + 'alerts_select_city' => 'Seleccione una ciudad', + 'alerts_step1_select_city' => 'Paso 1: Selecciona tu ciudad o ubicación:', + 'alerts_step2_send_alerts' => 'Paso 2: Enviar alertas a mi:', + 'alerts_step3_select_catgories' => 'Paso 3 (Opcional): Selecciona categorías', + 'alert_confirm_previous' => 'Confirmar una solicitud de alerta anterior', + 'alert_saved' => '¡Tu alerta ha sido guardada!', + 'all' => 'Todas', + 'allowed' => 'Permitido', + 'allowed_tags' => 'Habilitar etiquetas HTML: "%s".', + 'allowed_iframes' => 'Los Iframes sólo son permitidos de: %s.', + 'all_categories' => 'Todas las categorías', + 'all_time' => 'Siempre', + 'and' => 'y', + 'api' => 'API', + 'approve' => 'Aprobar', + 'approved' => 'Aprobado', + 'approved_reports' => 'Reportes aprobados ', + 'approve_this_report' => 'Aprobar este reporte', + 'approximate' => 'Aproximado', + 'archive' => 'Archivar', + 'archived' => 'Archivado', + 'ascending' => 'Ascendente ', + 'at' => 'en', + 'author' => 'Autor', + 'auto_checkin' => 'Registro automático', + 'Auto' => 'Auto', + 'avg_reports_per_day' => 'Media de reportes por día', + 'awaiting_approval' => 'Esperando aprobación', + 'awaiting_verification' => 'Esperando verificación', + 'badge' => 'Insignia ', + 'badges' => 'Insignias', + 'badge_image' => 'Imagen de la insignia ', + 'badge_image_upload_your_own' => 'O puedes subir tu propia imagen para la insignia.', + 'badge_pack' => 'Grupo de insignias', + 'badge_select' => 'Selecciona una insignia', + 'blog' => 'Blog', + 'browse_profiles' => 'Explorar perfiles', + 'cancel' => 'Cancelar', + 'categories' => 'Categorias', + 'category' => 'Categoría', + 'category_filter' => 'Filtro de categorías', + 'category_has_been' => 'La categoría fue', + 'category_name' => 'Nombre de la categoría', + 'change_date_range' => 'Cambiar rango de fechas', + 'change_password' => 'Cambiar contraseña', + 'change_picture' => 'Cambiar mi foto', + 'choose' => 'Elegir un', + 'choose_data_points' => 'Elegir puntos de datos para descargar', + 'choose_date_range' => 'O elegir tu propio rango de fechas', + 'choose_field_type' => 'Elegir tipo de campo', + 'cleanurl' => 'URLs limpias', + 'clear' => 'Limpiar', + 'clear_map' => 'Limpiar mapa', + 'close' => 'Cerrar', + 'clusters' => 'grupos', + 'color' => 'Color', + 'comment' => 'Comentario', + 'comments' => 'Comentarios', + 'comment_details' => 'Detalles del comentario', + 'configuration_saved' => '¡Tus preferencias han sido guardadas!', + 'configure' => 'Configurar', + 'confirm_email_successful' => 'Ha confirmado correctamente su dirección de correo electrónico. Puede acceder a continuación.', + 'confirm_email_successful_and_approval' => '¡Ha confirmado satisfactoriamente su dirección de correo electrónico! Su cuenta tiene que ser aprobada por el administrador para poder acceder.', + 'confirm_email_failed' => '¡Ha fallado la confirmación del correo electrónico! Solicita una nueva confirmación más abajo.', + 'contact' => 'Contacta con nosotros', + 'contact_code' => 'Código de seguridad', + 'contact_email' => 'Tu dirección de correo electrónico', + 'contact_message' => 'Mensaje', + 'contact_message_has_send' => 'Tu mensaje fue enviado', + 'contact_name' => 'Tu nombre', + 'contact_phone' => 'Tu número de teléfono', + 'contact_send' => 'Enviar mensaje', + 'contact_subject' => 'Asunto del mensaje', + 'copyright' => 'Copyright ©', + 'create' => 'Crear', + 'create_edit' => 'Crear/editar', + 'create_new' => 'Crear nuevo', + 'create_new_password' => 'Crear nueva contraseña', + 'create_report' => 'Crear reporte', + 'credibility' => 'Credibilidad', + 'current_password' => 'Contraseña actual', + 'custom_fields' => 'Campos propios', + 'data' => 'Información', + 'date' => 'Fecha', + 'date_format' => '(mm/dd/aaaa)', + 'date_time' => 'Fecha y hora', + 'day' => 'día', + 'Daily' => 'Diario', + 'deactivate' => 'Desactivar', + 'default_location_name' => 'Nairobi, Kenia', + 'delete' => 'Eliminar', + 'deleted' => 'Eliminado', + 'deletes' => 'Eliminados', + 'delete_disabled' => 'Eliminar desactivado', + 'delete_last' => 'Elimina último', + 'delete_report' => 'Eliminar este reporte', + 'delete_selected' => 'Eliminar seleccionados', + 'delete_spam' => 'Eliminar spam', + 'demo' => 'Demo', + 'description' => 'Descripción', + 'descending' => 'Descendente', + 'detailed_location_example' => 'Ejemplo: Esquina de jirón de la Unión y avenida Tacna cuadra 5. Centro de Lima.', + 'details' => 'Detalles', + 'direct_report' => 'Reporte directo', + 'disabled' => 'Desactivado', + 'disapprove' => 'Desaprobar', + 'download_reports' => 'Reportes desaprobados', + 'download' => 'Descargar', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar campos', + 'edit_report' => 'Editar reportes', + 'email' => 'Correo electrónico', + 'email_address' => 'Dirección de correo electrónico:', + 'email_configuration' => 'Preferencias de servidor de correo', + 'email_server_host' => 'Servidor de correo', + 'email_server_password' => 'contraseña del servidor de correo', + 'email_server_port' => 'Puerto del servidor de correo', + 'email_server_ssl_support' => 'Soporte SSL del servidor de correo', + 'email_server_type' => 'Tipo de servidor de correo', + 'email_server_username' => 'Usuario del servidor de correo', + 'email_settings_comment_0' => 'Por lo que esta configuración está asociada a esta dirección de correo electrónico', + 'email_settings_comment_00' => 'Para recibir informes, por favor introduzca a continuación la información de su cuenta de correo electrónico. Tenga en cuenta que recibirá los correos en su', + 'email_settings_comment_1' => 'Algunos servidores requieren la dirección completa', + 'email_settings_comment_2' => 'Contraseña de la cuenta de correo', + 'email_settings_comment_3' => 'Puertos habituales: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Ejemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Ejemplos: pop3, imap', + 'email_settings_comment_6' => 'Habilitar o deshabilitar conexiones SSL', + 'empty' => '---VACIO---', + 'end_point' => 'para', + 'error' => '¡Error!', + 'example' => 'Ejemplo', + 'example_country' => 'Kenia', + 'external_apps' => 'Aplicaciones externas', + 'external_video_link' => 'Enlace de vídeo externo', + 'facebook' => 'Facebook', + 'feed' => 'Boletín', + 'feedback' => 'Danos tu opinión', + 'feedback_reports' => 'Por favor, danos tu opinión sobre tu experiencia enviado un correo electrónico a', + 'feeds' => 'Boletines', + 'feed_has_been' => 'El boletín ha sido', + 'feed_items' => 'Elementos del boletín', + 'feed_name' => 'Nombre del boletín', + 'feed_url' => 'URL del boletín', + 'field_unused' => 'Campo no utilizado', + 'file' => 'Archivo', + 'file_over_max_allowed' => 'Tu archivo supera el tamaño máximo permitido', + 'filters' => 'Filtros', + 'filter_reports' => 'Filtrar reportes', + 'filter_reports_by' => 'Filtrar reportes por', + 'filter_reports_contain' => 'Filtrar reportes que contengan', + 'find' => 'Buscar', + 'find_location' => 'Buscar ubicación', + 'first_name' => 'Nombre', + 'force_run_scheduler' => 'Forzar ejecución programada', + 'forgot_password' => '¿Olvidaste tu contraseña?', + 'form' => 'Formulario', + 'forms' => 'Formularios', + 'form_description' => 'Descripción del formulario', + 'form_edit' => 'Editar este formulario', + 'form_has_been' => 'EL formulario ha sido', + 'form_title' => 'Título del formulario', + 'from' => 'Desde', + 'full_name' => 'Nombre completo', + 'geolocation_available' => 'Geolocalización disponible', + 'geometry_color' => 'Color', + 'geometry_comments' => 'Comentarios', + 'geometry_label' => 'Etiqueta', + 'geometry_strokewidth' => 'Grosor del trazo', + 'go' => 'Ir', + 'hashtag' => 'Hashtag', + 'has_been' => 'Ha sido', + 'help' => 'Cómo ayudar', + 'hidden' => 'Oculto', + 'hide' => 'Ocultar', + 'hide_this_message' => 'Ocultar este mensaje', + 'home' => 'Inicio', + 'Hourly' => 'A cada hora', + 'how_to_report' => 'Cómo hacer un reporte', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Usado para identificarte ante otros usuarios de este sitio.', + 'image' => 'Imagen', + 'images' => 'Imágenes', + 'image_icon' => 'Imagen/icono', + 'inactive' => 'Inactivo', + 'inbox' => 'Bandeja de entrada', + 'incident' => 'Incidente', + 'incidents_nearby' => 'Incidentes cercanos', + 'incident_location' => 'Localización del incidente', + 'include' => 'Incluir', + 'include_categories' => 'Incluir categorías', + 'include_custom_fields' => 'Incluir campos propios', + 'include_description' => 'Incluir descripción', + 'include_detail' => 'Incluir todos los detalles posibles', + 'include_latitude' => 'Incluir latitud', + 'include_location_information' => 'Incluir información sobre la localización', + 'include_longitude' => 'Incluir longitud', + 'include_personal_info' => 'Incluir información personal', + 'incoming_media' => 'Fotos y vídeos entrantes', + 'information_evaluation' => 'Evaluación de la información', + 'input_location' => 'Introduce tu ubicación exacta', + 'insufficient_role' => 'Tu cuenta no tiene los permisos necesarios para iniciar sesión. Contacta con el administrador.', + 'interval' => 'Intervalo', + 'in_response_to' => 'En respuesta a', + 'ip_address' => 'Dirección IP', + 'is_this_your_profile' => '¿Es este tu perfil?', + 'item' => 'elemento', + 'items' => 'elementos', + 'item_details' => 'detalles_elementos', + 'item_title' => 'Título del elemento', + 'key' => 'Clave', + 'keywords' => 'Palabras clave', + 'kml_kmz_file' => 'Archivo KMZ/KML ', + 'kml_kmz_upload' => 'subir archivo KMZ/KML', + 'kml_url' => 'URL KML ', + 'laconica' => 'Laconica', + 'language' => 'Idioma', + 'last' => 'Último', + 'last_month' => 'Último mes', + 'last_name' => 'Apellidos', + 'last_year' => 'Último año', + 'latitude' => 'Latitud', + 'layers' => 'Capas', + 'layers_filter' => 'Otras capas', + 'layer_has_been' => 'La capa ha sido', + 'layer_name' => 'Nombre de la capa', + 'layer_url' => 'URL de la capa', + 'leave_a_comment' => 'Dejas un comentario', + 'less_information' => 'Menos información', + 'level' => 'Nivel', + 'level_has_been' => 'Este nivel ha sido', + 'level_name' => 'Nombre de nivel', + 'limited' => 'Limitado', + 'link' => 'Enlace', + 'list' => 'Lista', + 'loading_reports' => 'Cargando reportes', + 'location' => 'Ubicación', + 'locations' => 'Ubicaciones', + 'location_example' => 'Ciudad, Región y/o País', + 'login' => 'Entrar', + 'login_account_creation_successful' => 'Cuenta creada con éxito, ahora puedes iniciar sesión', + 'login_confirmation_sent' => 'Una conformación ha sido enviada a tu dirección de correo electrónico', + 'login_approval_required' => 'Cuenta creada. Tiene que ser aprobada por un administrador antes de poder acceder.', + 'login_email_doesnt_exist' => 'La dirección de correo no existe. Prueba con una diferente o crea una nueva', + 'login_select_openid' => 'Elige tu proveedor', + 'login_with' => 'Entrar con', + 'login_userpass' => 'Correo y contraseña', + 'login_openid' => 'OpenID', + 'login_signup' => 'Regístrate ', + 'login_signup_click' => 'Crear una cuenta', + 'login_signup_confirmation_message' => 'Gracias por registrarte en %1$s. Para confirmar tu correo electrónico ve a la siguiente URL: %2$s', + 'login_signup_confirmation_subject' => 'Confirmación de registro', + 'login_signup_admin_approval_message' => 'Un nuevo usuario a accedido en %1$s. Para aprobarlo vaya a esta URL: %2$s', + 'login_signup_admin_approval_subject' => 'Aprobación de nuevo usuario', + 'login_signup_approval_message' => 'Tu cuenta de usuario ha sido aprobada por %1$s. Para entrar ve a la siguiente URL: %2$s', + 'login_signup_approval_subject' => 'Cuenta de usuario aprobada', + 'login_signup_text' => 'Crear una cuenta para disfrutar de más opciones en este sitio.', + 'longitude' => 'Longitud', + 'map' => 'Mapa', + 'mark_read' => 'Marcar como leído', + 'mark_unread' => 'Marcar como no leído', + 'maximum_filesize' => 'Tamaño máximo del archivo', + 'media' => 'Multimedia', + 'media_filter' => 'Filtro de multimedia', + 'members' => 'Miembros', + 'manage_your_account' => 'Gestiona tu cuenta', + 'message' => 'Mensaje', + 'messages' => 'Mensajes', + 'message_details' => 'Detalles del mensaje', + 'message_non_numeric_source' => 'Mensaje de una fuente no numérica:', + 'mobile' => 'Móvil', + 'modify' => 'Modificar', + 'modify_date' => 'Modificar fecha', + 'month' => 'mes', + 'Monthly' => 'Mensual', + 'more' => 'Más', + 'more_information' => 'Más información', + 'multi_country_instance' => '¿Este Ushahidi abarca varios países?', + 'must_confirm_email_address' => 'Debe confirmar su dirección de correo para acceder a este despliegue. Si pierde su de correo de confirmación, puede solicitar otro nuevo abajo.', + 'name' => 'Nombre', + 'nearby_report' => 'Reporte cercano', + 'new' => 'Nuevo', + 'news' => 'Nuevos', + 'news_feeds' => 'Canales de noticias', + 'news_source' => 'Fuente de noticias', + 'new_category' => 'Nueva categoría', + 'new_password' => 'Nueva contraseña', + 'new_report' => 'Nuevo reporte', + 'next' => 'Siguiente', + 'no' => 'No', + 'no_checkins' => 'No hay registros para mostrar', + 'no_data' => 'No hay data', + 'none' => 'Ninguno', + 'notices' => 'Avisos', + 'not_approved' => 'No aprobado', + 'not_approved_singular' => 'No aprobado', + 'not_selected' => '---No seleccionado---', + 'not_spam' => 'no es spam', + 'not_specified' => 'No especificado', + 'no_reports' => 'No hay reportes', + 'no_results' => 'No hay resultados', + 'off' => 'Apagado', + 'official_news' => 'Noticias oficiales & noticias principales', + 'on' => 'Encendido', + 'option' => 'Opción', + 'optional' => 'Opcional', + 'options' => 'Opciones', + 'organization' => 'Organización', + 'organizations' => 'Organizaciones', + 'organization_description' => 'Descripción de la organización', + 'organization_email' => 'Correo electrónico de la organización', + 'organization_has_been' => 'La organización ha sido', + 'organization_name' => 'Nombre de la organizción', + 'organization_phone_1' => 'Teléfono 1 de la organización', + 'organization_phone_2' => 'Teléfono 2 de la organización', + 'organization_website' => 'Sitio web de la organización', + 'original' => 'Original', + 'original_description' => 'Descripción original ', + 'original_title' => 'Título original', + 'other_ushahidi_instances' => 'Otros despliegues', + 'outbox' => 'Bandeja de salida', + 'outgoing' => 'Salida', + 'page' => 'Página', + 'pages' => 'Páginas', + 'page_description' => 'Descripción de la página', + 'page_has_been' => 'La página ha sido', + 'page_tab_name' => 'Nombre de pestaña', + 'page_title' => 'Título de la página', + 'parent_category' => 'Categoría madre', + 'password' => 'Contraseña', + 'password_again' => 'Verificar contraseña', + 'password_changed_successfully' => '¡Contraseña cambiada con éxito! inicia sesión', + 'password_forgot' => '¿Olvidaste tu contraseña?', + 'password_reset_confirm' => 'Comprueba tu dirección de correo para la nueva contraseña', + 'password_save' => '¿Permanecer logeado en esta computadora?', + 'past_month' => 'Mes pasado', + 'past_year' => 'Año pasado', + 'pending' => 'Pendiente', + 'per' => 'por', + 'personal_information' => 'Información personal Opcional.', + 'phone' => 'Teléfono', + 'photos' => 'Fotos', + 'pictures' => 'Imágenes', + 'pictures_and_videos' => 'Imágenes y vídeos ', + 'pinpoint_location' => '* Busca una ubicación usando el nombre del lugar o las coordenadas de latitud, longitud (formato: 38.19, 85.61), o haciendo click en el mapa para señalar la ubicación correcta.', + 'play' => 'Empezar', + 'please_note' => 'Tenga en cuenta', + 'plugins' => 'Plugins', + 'plugin_url' => 'Sitio web del plugin ', + 'public_profile' => 'Perfil público', + 'public_profile_url' => 'URL del perfil público', + 'preview' => 'Vista previa', + 'preview_item' => 'Previsualizar Elemento', + 'preview_message' => 'Previsualizar mensaje', + 'previous' => 'Previo', + 'private' => 'Privado', + 'profile_color' => 'Color de perfil', + 'profile_saved' => 'Tu perfil ha sido guardado', + 'quick_stats' => 'Estadísticas', + 'rating' => 'Puntuación', + 'read' => 'Leer', + 'receive' => 'Recibir', + 'receive_from' => 'Recibir de', + 'receive_notifications' => 'Recibir notificaciones', + 'recent_reports' => 'Reportes recientes', + 'refresh_news_feeds' => 'Refrescar canales de noticias', + 'registered_email' => 'Correo electrónico registrado', + 'remove' => 'Remover', + 'reply' => 'Responder', + 'report' => 'Reporte', + 'reports_listed' => 'Reportes (del mapa, listados en orden cronológico)', + 'reporter' => 'Informante', + 'reporters' => 'Informantes', + 'reporter_date' => 'Fecha del reporte', + 'reporter_email' => 'Correo electrónico del informante', + 'reporter_first_name' => 'Nombre del informante', + 'reporter_has_been' => 'El informante ha sido', + 'reporter_ip' => 'Dirección IP del informante', + 'reporter_last_name' => 'Apellidos del informante', + 'reporter_level' => 'Nivel del informante', + 'reporter_levels' => 'Etiquetas del informante', + 'reporter_phone' => 'Teléfono del informante', + 'reports' => 'Reportes', + 'reports_btn_browse' => 'Navegar', + 'reports_btn_submit' => 'Enviar', + 'reports_by_this_user' => 'Reportes de este usuario', + 'reports_categories' => 'Categorías', + 'reports_count' => '%d Reportes', + 'reports_date' => 'Fecha', + 'reports_description' => 'Descripción', + 'reports_download_csv' => 'Los reportes serán descargado en formato CSV', + 'reports_email' => 'Correo electrónico', + 'reports_features' => 'Características', + 'reports_find_location' => 'Encuentra una ubicación cerca a ti', + 'reports_first' => 'Nombre', + 'reports_last' => 'Apellidos', + 'reports_location_name' => 'Ubicación', + 'reports_news' => 'Enlace a fuente de noticias', + 'reports_optional' => 'Información opcional', + 'reports_photos' => 'Subir fotos', + 'reports_return' => 'Volver a la página de reportes', + 'reports_select_city' => 'Elige una ciudad', + 'reports_submitted' => 'Tu reporte ha sido enviado a nuestro equipo para que lo revise. Si fuera necesario nos pondremos en contacto contigo en breve.', + 'reports_submit_new' => 'Enviar un reporte nuevo', + 'reports_time' => 'Hora', + 'reports_timeline' => 'Cronología de reportes', + 'reports_title' => 'Título del reporte', + 'reports_video' => 'Enlace a vídeo', + 'report_an_incident' => 'Reportar un incidente', + 'report_details' => 'Detalles del reporte', + 'report_option_1' => 'Enviando un SMS al teléfono', + 'report_option_2' => 'Enviando un correo electrónico a', + 'report_option_3' => 'Enviando un tweet con el/los hashtag/s', + 'report_option_4' => 'Completando un formulario', + 'report_option_external_apps' => 'Con aplicación externa', + 'report_saved' => 'Tu reporte ha sido guardado', + 'report_title' => 'Titulo del reporte', + 'request_information' => 'Solicitar más información', + 'request_location' => 'Solicitar ubicación', + 'required' => 'Requerido', + 'requirements' => 'Requerimientos', + 'resend_confirm_email' => 'Reenviar confirmación de correo electrónico', + 'reset' => 'Resetear', + 'reset_all_filters' => 'Resetear todos los filtros', + 'reset_password' => 'Resetear contraseña', + 'retrieve_city_names' => 'Obtén los nombres de las ciudades del país seleccionado', + 'riverid_information' => 'Cuentas gestionadas por el servicio %s', + 'riverid_exists_login' => 'Ya tiene una cuenta gestionada por CrowdmapID! Intente usar su correo electrónico o CrowdmapID y su contraseña para entrar.', + 'role' => 'Rol', + 'rss' => 'RSS', + 'save' => 'Guardar', + 'saved' => 'Guardado', + 'save_add_new' => 'Guardar y agregar nuevo', + 'save_close' => 'Guardar y cerrar', + 'save_report' => 'Guardar reporte', + 'schedule' => 'Programar', + 'scheduler' => 'Programador', + 'scheduler_day' => 'Día', + 'scheduler_hour' => 'Hora', + 'scheduler_log' => 'Log del programador', + 'scheduler_minute' => 'Minuto', + 'scheduler_weekday' => 'Día de la semana', + 'search' => 'Buscar', + 'search_results' => 'Resultados de búsqueda', + 'security_code' => 'Código de seguridad', + 'select_all' => 'Seleccionar todo', + 'select_field_type' => 'Selecciona un tipo de campo', + 'select_form_type' => 'Selecciona un tipo de formulario', + 'select_in_map' => 'Selecciona en el mapa', + 'select_multiple' => 'Selecciona todo cuento necesites', + 'select_one' => 'Por favor, verifica que has marcado un elemento', + 'select_theme' => 'Selecciona un tema', + 'send' => 'Enviar', + 'send_confirmation' => 'Enviar confirmación', + 'sending_to' => 'Enviar a ', + 'sent' => 'Enviado', + 'sent_by' => 'Enviado por', + 'server_address' => 'Dirección del servidor', + 'server_type' => 'Tipo de servidor', + 'service' => 'Servicio', + 'service_username' => 'Nombre de usuario del servicio', + 'service_user_id' => 'Id del usuario del servicio', + 'share' => 'Compartir', + 'shared_data' => 'Data compartida', + 'share_has_been' => 'El vínculo de intercambio de datos ha sido', + 'sharing' => 'Compartiendo', + 'shorter_map' => 'Mapa más corto', + 'show' => 'Mostrar', + 'show_all' => 'Mostrar todo', + 'show_messages' => 'Mostrar mensajes', + 'showing_reports_from' => 'Mostrando los reportes de %1$s a %2$s', + 'site' => 'Sitio web', + 'site_email_address' => 'Dirección de correo electrónico del sitio ', + 'site_url' => 'URL del sitio', + 'smaller_map' => 'Mapa pequeño', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Lo sentimos, tú no tienes ninguna insignia', + 'source' => 'Fuente', + 'source_name' => 'Nombre de fuente', + 'sort' => 'Ordenar', + 'sort_by' => 'Ordenar por', + 'source_url' => 'URL de la fuente', + 'spam' => 'Spam', + 'ssl_support' => '¿Soporte SSL?', + 'start_point' => 'De', + 'step' => 'Paso', + 'submit' => 'Enviar un reporte', + 'submitted_by' => 'Enviado por %1$s vía %2$s', + 'submit_sms' => 'Enviar vía SMS ', + 'submit_sms1' => 'Envía tu SMS a ', + 'submit_sms2' => 'en tu teléfono', + 'success' => '¡Éxito! ', + 'successfuly_imported' => 'Importado exitosamente', + 'surname' => 'Apellido', + 'survey' => 'Encuesta', + 'system' => 'Sistema', + 'taller_map' => 'Mapa más alto', + 'tcp_port' => 'Puerto TCP', + 'themes' => 'Temas', + 'theme_default' => 'Tema por defecto para Ushahidi', + 'theme_settings' => 'Configuración de temas', + 'this' => 'Este', + 'this_day' => 'Hoy', + 'this_month' => 'Este mes', + 'this_week' => 'Esta semana', + 'this_year' => 'Este año', + 'this_is_your_profile' => 'Este es tu perfil', + 'time' => 'Hora', + 'title' => 'Título', + 'to' => 'para', + 'today' => 'Hoy', + 'today_at' => 'Hoy en', + 'token' => 'Token', + 'total_reports' => 'Reportes totales', + 'translated' => 'Traducidos', + 'translated_description' => 'Descripción traducida', + 'translated_title' => 'Título traducido', + 'translate_to' => 'Traducido a', + 'translation' => 'Traducción', + 'translation_saved' => 'La traducción ha sido guardada', + 'trusted' => 'Confiable', + 'type' => 'Tipo', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Inhabilitado para enviar correos', + 'uncategorized_reports' => 'Reportes sin categorías', + 'unread' => 'No leído', + 'unverified' => 'No verificado', + 'update_feeds' => 'Actualizar canales', + 'upload' => 'Subir', + 'upload_guide' => 'Ver nuestras guías para subir reportes', + 'upload_docs_1' => 'Guía para subir XML', + 'upload_docs_2' => 'Guía para subir CSV', + 'upload_file' => 'Fichero a subir', + 'upload_reports' => 'Reportes subidos', + 'upload_reports_custom_forms' => 'Los campos personalizados deben tener su form_id adjunto a ellos, ej el campo personalizado Test, en el formulario por defecto, cuyo id es 1, debe ser Test-1. Durante la importación de los campos personalizados, asegura esto', + 'upload_reports_detail_1' => 'Con el siguiente formulario, tú puedes importar incidentes al sistema', + 'upload_reports_detail_2' => 'Los reportes deben ser subidos en formato CSV o XML.', + 'upload_reports_detail_3' => 'Cuando el ID de incidencia ya existe en la base de datos, la entrada en el CSV/XML será ignorada.', + 'upload_reports_detail_4' => 'Debe contener al menos Título y Fecha del incidente', + 'upload_reports_detail_4b' => 'Si no hay latitud o longitud, la ubicación será asignada usando Google Geocoder', + 'upload_reports_detail_4c' => 'Si importas información adicional, p.e. información personal y/o campos de formulario personalizados', + 'upload_reports_detail_4d' => 'Al menos debe ingresar información en uno de los campos de información personal (nombre, apellido, correo electrónico). Registros vacíos no serán importados.', + 'upload_reports_detail_4e' => 'Sus entradas para campos desplegables, botones de selección y cajas de verificación concuerdan con las opciones proporcionadas para el campo personalizado en su caso', + 'upload_reports_detail_4f' => 'Las opciones de selección se separan por comas, p.e. si su selección de frutas es manzanas, mangos y uvas, su entrada para esto debería ser "manzanas,mangos,uvas"', + 'upload_reports_detail_4g' => 'Los valores del campo fecha deben ser ingresados en el siguiente formato: mm/dd/aaaa ejemplo: 31 de Agosto de 2012 = 31/08/2012', + 'upload_reports_detail_5' => 'Reporte CSV de ejemplo. La primera linea son los encabezados, las siguientes dos líneas representa un reporte cada uno. Las categorías se ingresan por nombre, y puede haber más de una', + 'upload_reports_detail_6' => '#,TÍTULO DEL INCIDENTE,FECHA DEL INCIDENTE,UBICACIÓN,DESCRIPCIÓN,CATEGORÍA,APROBADO,VERIFICADO,LATITUD,LONGITUD
"1","Contaminación en Loreto","2009-05-15 01:06:00","Loreto","Tres casos confirmados en río Corrientes","MUERTES, CIVILES, ",SI,SI,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Saqueo","2009-03-18 10:10:00","Puno","Saqueo sucediendo en todas partes","MUERTES, PÉRDIDAS MATERIALES, ",SI,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Subida exitosa ', + 'upload_video' => 'Subir vídeo ', + 'url' => 'URL', + 'user' => 'Usuario', + 'username' => 'Nombre de usuario', + 'ushahidi_admin' => 'Administrador del ushahidi', + 'verification' => 'Verificación', + 'verified' => 'Verificado', + 'verified_reports' => 'Reportes verificados', + 'verify' => 'Verificar', + 'verify_this_report' => 'Verificar este reporte', + 'version' => 'Versión', + 'via' => 'vía', + 'video' => 'Vídeo', + 'view' => 'Vista', + 'views' => 'Vistas', + 'view_all' => 'Ver todo', + 'view_all_feeds' => 'Ver todos los boletines', + 'view_all_reports' => 'Ver todos los reportes', + 'view_items' => 'Ver elementos', + 'view_more' => 'Ver más', + 'view_public_profile' => 'Ver perfil público', + 'view_report' => 'Ver reporte', + 'view_reports' => 'Ver reportes', + 'view_video' => 'Ver vídeo', + 'visible' => 'Visible', + 'waiting_approval' => 'Esperando aprobación', + 'waiting_verification' => 'Esperando verificación', + 'wider_map' => 'Mapa más amplio', + 'web_form' => 'Formulario web', + 'web' => 'Web', + 'weight' => 'Peso', + 'Weekly' => 'Semanal', + 'yes' => 'Si', + 'yesterday' => 'Ayer', + 'your_dashboard' => 'Tu escritorio', + 'your_file' => 'Tu fichero', + 'zoom_in' => 'Acercar', + 'zoom_out' => 'Alejar', +); diff --git a/application/i18n/es_PE/upgrade.php b/application/i18n/es_PE/upgrade.php new file mode 100644 index 0000000000..c94ffc6edc --- /dev/null +++ b/application/i18n/es_PE/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Dato de entrada inválido. Puede ser 0 para No o 1 para Si.', + ) , + 'upgrade_automatic' => 'Actualización automática', + 'upgrade_available' => 'Actualizaciones disponibles', + 'upgrade_continue_btn_text' => 'Continuar', + 'upgrade_db_btn_text' => 'Actualizar', + 'upgrade_db_text_1' => 'Entonces, voy a actualizar su base de datos desde la versión', + 'upgrade_db_text_2' => 'para la nueva versión de la base de datos', + 'upgrade_db_text_3' => 'Haga click en el botón "Actualizar" y solo relájate mientras realizo la magia.', + 'upgrade_db_text_4' => 'Adicionalmente, si quieres respaldar tu base de datos, marca el checkbox de abajo y yo lo haré en un instante.', + 'upgrade_db_text_5' => '¿Respaldar base de datos antes de la actualización? (Altamente recomendado)', + 'upgrade_db_title' => 'Base de datos de Ushahidi actualizada', + 'upgrade_db_info' => 'Ushahidi ha sido actualizado! Antes de continuar, necesitas actualizar tu base de datos a la nueva versión (%s).', + 'upgrade_db_up_to_date' => 'Tu versión de base de datos está actualizada', + 'upgrade_failed' => 'La actualización ha fallado en algún punto', + 'upgrade_manual' => 'Actualización manual', + 'upgrade_status' => 'Estatus de actualización de Ushahidi', + 'upgrade_text_1' => 'Estas instrucciones lo guiarán para actualizar manualmente Ushahidi', + 'upgrade_text_2' => '
Descarga
', + 'upgrade_text_3' => '
- Descarga la más reciente versión de Ushahidi desde ', + 'upgrade_text_4' => '
Respaldo
- .htaccess, ./applications/config/config.php, ./applications/config/database.php y ./applications/config/auth.php files.
- Por si algo sale mal, es recomendable que hagas un respaldo completo de tu implementacion de Ushahidi.
Copiar archivos
- Extraer el zip descargado
- Dependiendo del sistema operativo de tu servidor, usa tu herramienta o modo favorito (p.e. Telnet, FTP, SSH) para entrar en el servidor y reemplazar los contenidos de todas las carpetas con los ficheros de la compilación más reciente.
Actualizar Base de datos
- Primero determina la version del esquema de tu base de datos mirando el valor db_version en la tabla de configuración o mira en la información de la actualización de Ushahidi al principio de esta página.
- Si tienes la version 25, necesitas actualizar de 25-26, 26-27, 27-28 y así sucesivamente hasta el último archivo SQL en el directorio /sql.
- Con tu cliente de base de datos, actualiza la base de datos ejecutando el archivo upgradex-x.sql apropiado.
', + 'upgrade_tables' => 'Paso 3: Mira dentro de la carpeta sql. Ejecuta manualmente el archivo-.sql iniciando desde el actual versión de la base de datos de su instalación hasta el archivo final de upgrade sql.', + 'upgrade_text_5' => 'Paso 4: Click en "Continuar" botón para actualizar las tablas necesarias.', + 'upgrade_text_6' => 'Para una actualización automática, click en el siguiente botón', + 'upgrade_title_text' => 'Actualmente estás usando Ushahidi v%1$s con una versión de base de datos %2$d corriendo en %3$s', + 'upgrading' => 'Actualizando', + 'upgrade_ftp_text' => 'Para continuar con la actualización sencilla, la siguiente información es requerida para el servidor FTP que su sitio web posee.', + 'upgrade_ftp_hostname' => 'Nombre del host FTP: Ejemplo: "localhost"', + 'upgrade_ftp_password' => 'Contraseña de FTP', + 'upgrade_ftp_username' => 'Nombre de usuario FTP', + 'upgrade_status_info' => 'Tienes la última versión de Ushahidi', + 'upgrade_status_info_2' => 'No necesitas actualizar', + 'upgrade_db_version' => 'Versión de base de datos: %d', + 'upgrade_warning_software_version' => 'Atención: La versión del software en version.php y la base de datos no coinciden.', + 'upgrade_warning_db_version' => 'Atención: La versión de la base de datos en version.php y la base de datos no coinciden.', + 'upgrade_database' => 'Base de datos:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => '¡BETA!', + 'download' => 'Descargando la última versión de Ushahidi...', + 'log_file' => 'Log File', + 'successfully_downloaded' => 'Descarga exitosa, desempaquetando...', + 'failed_downloading' => 'Error mientras se descargaba', + 'successfully_unpacked' => 'Desempaquetado con éxito. Copiando archivos...', + 'failed_unpacking' => 'Error mientras se desempaquetaba', + 'successfully_copied' => 'Copia exitosa, actualizando la base de datos...', + 'failed_copying' => 'Error copiando archivos', + 'backup_success' => 'El backup y actualización de la base de datos ha sido exitosa.', + 'backup_failed' => 'Falla en el backup de la Base de datos.', + 'dbupgrade_success' => 'Base de datos actualizada exitosamente ', + 'deleting_files' => 'Eliminando archivos descargados', + 'upgrade_success' => 'ACTUALIZACIÓN EXITOSA. Ver Log File', +); diff --git a/application/i18n/es_VE/alerts.php b/application/i18n/es_VE/alerts.php new file mode 100644 index 0000000000..591a880778 --- /dev/null +++ b/application/i18n/es_VE/alerts.php @@ -0,0 +1,41 @@ + array( + 'email' => 'El campo Email no parece contener una dirección email válida', + 'email_check' => 'Esa dirección Email ya está registrada para recibir alertas para esa ubicación.', + 'length' => 'El campo Email debe tener entre 4 y 64 caracteres de longitud.', + 'required' => 'El campo Email es obligatorio si la casilla de verificación está activa.', + ) , + 'alert_country' => array( + 'single_country' => 'Esta implementación se extiende dentro de un único país. Por favor, asegúrese de que la alerta se encuentra dentro del país %s.', + ) , + 'alert_lat' => array( + 'between' => 'No ha seleccionado una ubicación válida dentro del mapa.', + 'required' => 'No ha seleccionado una ubicación válida dentro del mapa.', + ) , + 'alert_lon' => array( + 'between' => 'No ha seleccionado una ubicación válida dentro del mapa.', + 'required' => 'No ha seleccionado una ubicación válida dentro del mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'El campo Mobile Phone para no contener la cantidad correcta de dígitos.', + 'mobile_check' => 'Ese número de Celular ya está registrado para recibir alertas para esa ubicación.', + 'numeric' => 'El campo Mobile Phone para no contener un teléfono válido. Por favor, introduzca solo dígitos incluyendo el código del país.', + 'one_required' => 'Deberías ingresar tu número celular o tu dirección Email.', + 'required' => 'El campo Celular es obligatorio si la casilla de verificación está activa.', + ) , + 'alert_radius' => array( + 'in_array' => 'No has seleccionado un radio válido dentro del mapa.', + 'required' => 'No has configurado tu radio dentro del mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'No se ha establecido un receptor para las alertas.', + ) , + 'alerts_subscribed' => 'Te has suscrito para recibir alertas dentro de las siguientes categorías', + 'code_already_verified' => '¡Este código ha sido verificado antes!', +); diff --git a/application/i18n/es_VE/auth.php b/application/i18n/es_VE/auth.php new file mode 100644 index 0000000000..f1c198865e --- /dev/null +++ b/application/i18n/es_VE/auth.php @@ -0,0 +1,7 @@ + 'Ver Reportes', + 'reports_edit' => 'Crear/Editar/Borrar Reportes', + 'reports_approve' => 'Aprobar Reportes', + 'reports_verify' => 'Verificar Reportes', + 'reports_comments' => 'Administrar Comentarios de los Reportes', + 'reports_download' => 'Descargar Reportes', + 'reports_upload' => 'Subir Reportes', + 'messages' => 'Administrar Mensajes', + 'messages_reporters' => 'Administrar Mensajes de los Informantes', + 'stats' => 'Ver Estadísticas', + 'settings' => 'Modificar Configuraciones', + 'manage' => 'Administrar Panel', + 'users' => 'Administrar Usuarios', + 'manage_roles' => 'Administrar Roles', + 'checkin' => 'Puede Registrar', + 'checkin_admin' => 'Administrar registros', + 'admin_ui' => 'Acceso como Administrador', + 'member_ui' => 'Acceso como Miembro', +); diff --git a/application/i18n/es_VE/private_message.php b/application/i18n/es_VE/private_message.php new file mode 100644 index 0000000000..f1c198865e --- /dev/null +++ b/application/i18n/es_VE/private_message.php @@ -0,0 +1,7 @@ + array( + 'required' => 'Por favor verifica que has seleccionado un ítem', + 'numeric' => 'Por favor verifica que has seleccionado un ítem', + 'categories_required' => 'Los reportes deben ser categorizados antes de ser aprobados', + ) , + 'action' => array( + 'permission' => 'No tienes permiso para realizar esta acción', + ) , + 'uploadfile' => array( + 'required' => 'Debes seleccionar un archivo a subir', + 'type' => 'El archivo a subir debe ser del formato .csv o .xml', + 'valid' => 'El campo Archivo a Subir no parece contener un archivo válido', + ) , +); diff --git a/application/i18n/es_VE/roles.php b/application/i18n/es_VE/roles.php new file mode 100644 index 0000000000..f1c198865e --- /dev/null +++ b/application/i18n/es_VE/roles.php @@ -0,0 +1,7 @@ + 'Acerca de', + 'access' => 'Acceso', + 'access_limits' => 'Limites de Acceso', + 'account_name' => 'Nombre de la Cuenta', + 'actions' => 'Acciones', + 'action_confirm' => 'Esta acción no se puede deshacer. ¿Está seguro que desea continuar?', + 'activate' => 'Activar', + 'active' => 'Activo', + 'add' => 'Agregar', + 'added_by' => 'Agregado Por', + 'additional_data' => 'Información Adicional', + 'additional_reports' => 'Reportes Adicionales', + 'add_edit' => 'Agregar/Editar', + 'add_field' => 'Agregar un Campo', + 'add_language' => 'Agregar Idioma', + 'add_new' => 'Agregar Nuevo', + 'add_new_category' => 'Agregar Nueva Categoría', + 'add_translation' => 'Agregar Traducción', + 'admin' => 'Administración', + 'alerts' => 'Recibir Alertas', + 'alerts_alert_me' => 'Alértame si un reporte ha sido llenado en, o alrededor:', + 'alerts_btn_send' => 'Guardar Mi Alerta', + 'alerts_email' => 'Dirección de correo electrónico:', + 'alerts_enter_email' => 'ingrese dirección de correo electrónico', + 'alerts_enter_mobile' => 'ingrese el número móvil con el código de país', + 'alerts_get' => 'Recibir Alertas', + 'alerts_mobile_phone' => 'Teléfono Móvil:', + 'alerts_place_spot' => 'O indique un lugar en el siguiente mapa y le enviaremos una alerta cuando se registre un informe en un radio de 20 kilómetros.', + 'alerts_place_spot2' => 'Si no puede encontrar su ubicación, por favor haga clic en el mapa para seleccionar la ubicación correcta.', + 'alerts_rss' => 'RSS (copie la siguiente URL)', + 'alerts_select_city' => 'Seleccionar una ciudad', + 'alerts_step1_select_city' => 'Paso 1: Seleccione su ciudad o ubicación:', + 'alerts_step2_send_alerts' => 'Paso 2: Enviar alertas a mi:', + 'alerts_step3_select_catgories' => 'Paso 3 (Opcional): Seleccione Categorías', + 'alert_confirm_previous' => 'Confirmar una solicitud de Alerta anterior', + 'alert_saved' => '¡Tu Alerta ha sido Guardada!', + 'all' => 'Todo', + 'allowed' => 'Permitido', + 'all_categories' => 'Todas las Categorías', + 'all_time' => 'Todo el tiempo', + 'and' => 'y', + 'api' => 'API', + 'approve' => 'Aprobar', + 'approved' => 'Aprobado', + 'approved_reports' => 'Reportes Aprobados', + 'approve_this_report' => 'Aprobar este Reporte', + 'approximate' => 'Aproximado', + 'archive' => 'Archivo', + 'archived' => 'Archivado', + 'at' => 'en', + 'author' => 'Autor', + 'auto_checkin' => 'Registro automático', + 'avg_reports_per_day' => 'Promedio de Reportes por Día', + 'awaiting_approval' => 'Esperando Aprobación', + 'awaiting_verification' => 'Esperando Verificación', + 'badge' => 'Insignia', + 'badges' => 'Insignias', + 'badge_image' => 'Imagen de la Insignia', + 'badge_image_upload_your_own' => 'O puede subir una imagen personalizada para esta insignia.', + 'badge_pack' => 'Paquete de Insignias', + 'badge_select' => 'Seleccione una Insignia', + 'blog' => 'Blog', + 'browse_profiles' => 'Explorar Perfiles', + 'cancel' => 'Cancelar', + 'categories' => 'Categorías', + 'category' => 'Categoría', + 'category_filter' => 'Filtro de Categoría', + 'category_has_been' => 'La categoría ha sido', + 'category_name' => 'Nombre de la Categoría', + 'change_date_range' => 'Cambiar Rango de Fechas', + 'change_password' => 'Cambiar Contraseña', + 'change_picture' => 'Cambiar Mi Foto', + 'choose' => 'Elija un', + 'choose_data_points' => 'Elija los puntos de datos para descargar', + 'choose_date_range' => 'O elija su propio rango de fechas', + 'choose_field_type' => 'Elija el tipo del campo', + 'cleanurl' => 'URLs limpias', + 'clear' => 'Limpiar', + 'clear_map' => 'Limpiar Mapa', + 'close' => 'Cerrar', + 'clusters' => 'grupos', + 'color' => 'Color', + 'comment' => 'Comentario', + 'comments' => 'Comentarios', + 'comment_details' => 'Detalles del Comentario', + 'configuration_saved' => '¡Tus Configuraciones han sido Guardadas!', + 'configure' => 'Configurar', + 'confirm_email_successful' => 'Ha confirmado correctamente su dirección de correo electrónico. Puede acceder a continuación.', + 'contact' => 'Contáctanos', + 'contact_code' => 'Código de Seguridad', + 'contact_email' => 'Tu Dirección de correo electrónico', + 'contact_message' => 'Mensaje', + 'contact_message_has_send' => '¡Tu Mensaje ha sido enviado!', + 'contact_name' => 'Tu Nombre', + 'contact_phone' => 'Tu Número Telefónico', + 'contact_send' => 'Enviar Mensaje', + 'contact_subject' => 'Título del Mensaje', + 'copyright' => 'Copyright ©', + 'create' => 'Crear', + 'create_edit' => 'Crear/Editar', + 'create_new' => 'Crear Nuevo', + 'create_new_password' => 'Crear Nueva Contraseña', + 'create_report' => 'Crear Reporte', + 'credibility' => 'Credibilidad', + 'current_password' => 'Contraseña Actual', + 'custom_fields' => 'Campos Personalizados', + 'data' => 'Información', + 'date' => 'Fecha', + 'date_format' => '(mm/dd/aaaa)', + 'date_time' => 'Fecha y Hora', + 'day' => 'día', + 'deactivate' => 'Desactivar', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Eliminar', + 'deleted' => 'Eliminado', + 'deletes' => 'Eliminados', + 'delete_disabled' => 'Eliminar Desactivado', + 'delete_last' => 'Eliminar Último', + 'delete_report' => 'Eliminar este Reporte', + 'delete_selected' => 'Eliminar Seleccionados', + 'delete_spam' => 'Eliminar Spam', + 'demo' => 'Demostración', + 'description' => 'Descripción', + 'detailed_location_example' => 'Ejemplo: Equina de City Market, 5th Street & 4th Avenue, Johannesburg', + 'details' => 'Detalles', + 'direct_report' => 'Reporte Directo', + 'disabled' => 'Desactivado', + 'disapprove' => 'Desaprobar', + 'download_reports' => 'Descargar Reportes', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar los Campos del Formulario', + 'edit_report' => 'Editar Reporte', + 'email' => 'Correo Electrónico', + 'email_address' => 'Dirección de correo electrónico', + 'email_configuration' => 'Configuración del Servidor de Correo Electrónico', +); diff --git a/application/i18n/es_VE/upgrade.php b/application/i18n/es_VE/upgrade.php new file mode 100644 index 0000000000..f1c198865e --- /dev/null +++ b/application/i18n/es_VE/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Email eremuak ez du baliozko email helbiderik', + 'email_check' => 'Email hori dagoeneko kokaleku horretako alertak jasotzeko erregistratua izan da.', + 'length' => 'Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki', + 'required' => 'email eremua beharrezkoa da kontrol-laukia hautatuta badago', + ) , + 'alert_country' => array( + 'single_country' => 'Hedaketa hau herrialde baterako bakarrik balio du. Ziurtatu berri emandako lekua herrialde %s barnean dagoela.', + ) , + 'alert_lat' => array( + 'between' => 'Ez duzu baliodun kokalekurik hautatu mapan', + 'required' => 'Ez duzu mapan baliozko kokalekurik aukeratu.', + ) , + 'alert_lon' => array( + 'between' => 'Ez duzu mapan baliozko kokalekurik aukeratu.', + 'required' => 'Ez duzu mapan baliozko kokalekurik aukeratu.', + ) , + 'alert_mobile' => array( + 'length' => 'Badirudi Sakelako telefonoa eremuak ez duela behar besteko digitu kopurua', + 'mobile_check' => 'Sakelako telefono zenbaki hori dagoeneko erregistratuta dago kokaleku horretako alertak jasotzeko', + 'numeric' => 'Sakelako telefonoa eremuak ez du baliozko telefonoa. Mesedez, idatzi Herrialdeko Kodea baino ez duten zenbakiak', + 'one_required' => 'Mugikor zenbakia edo Email helbidea sartzea beharrezkoa da.', + 'required' => 'Sakelako Telefonoa eremua beharrezkoa da kontrol-laukia hautatuta badago', + ) , + 'alert_radius' => array( + 'in_array' => 'Ez duzu baliodun erradioa hautatu mapan', + 'required' => 'Ez duzu baliodun erradioa hautatu mapan', + ) , + 'alert_recipient' => array( + 'required' => 'Ez duzu ezarri alertentzako hartzailerik.', + ) , + 'alerts_subscribed' => 'Honako kategorietako alertetan harpidetu zara', + 'code_already_verified' => 'Kode hori aldez aurretik egiaztatu dute!', + 'code_not_found' => 'Egiaztapen-kode hau ez da aurkitu! Mesedez, baieztatu URL zuzena duzula.', + 'code_verified' => 'Zure kodea ongi egiaztatu da. Orain, alertak jasoko dituzu gorabeherak gertatu ahala.', + 'confirm_request' => 'Alerta eskaera berresteko, mesedez, joan hona', + 'create_more_alerts' => 'Bueltatu Alerta orrira alerta berriak sortzeko', + 'email_alert_request_created' => 'Zure e-posta alerta eskaera sortu da eta egiaztapen mezua bidali da', + 'email_code' => 'Idatzi behean e-postaz jaso duzun berrespen-kodea:', + 'email_error_head' => 'Zure e-posta alerta eskaera ez da gorde!', + 'email_ok_head' => 'Zure e-posta alerta eskaera gorde da!', + 'error' => 'Sistema ez da gai izan zure konfirmazioa eskaera tramitatzeko!', + 'mobile_alert_request_created' => 'Zure mugikor alerta eskaera sortu da eta egiaztapen mezua bidali da', + 'mobile_code' => 'Idatzi zure mugikorrean jaso duzun SMS baieztapen kodea:', + 'mobile_error_head' => 'Zure mugikorreko alerta eskaera ez da gorde!', + 'mobile_ok_head' => 'Zure mugikorreko alerta eskaera gorde da!', + 'settings_error' => 'Hedapen hau ez da sortu behar bezala alertak prozesatzeko', + 'unsubscribe' => 'E-posta hau jaso duzu alertak jasotzeko harpidetu zarekako. Ez baduzu alerta gehiago jaso nahi joan', + 'unsubscribed' => 'Aurrerantzean ez duzualertarik jasoko hemendik', + 'unsubscribe_failed' => 'Ezin izan dugu harpidetza eten. Mesedez, baieztatu URL zuzena duzula.', + 'verification_email_subject' => 'alertak - egiaztapena', + 'verify_code' => 'Ez duzu kokapena honetatik alertarik jasoko zure eskaera berretsi arte.', +); diff --git a/application/i18n/eu/auth.php b/application/i18n/eu/auth.php new file mode 100644 index 0000000000..d71d930c88 --- /dev/null +++ b/application/i18n/eu/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Sartutako posta ez da baliozko posta', + 'exists' => 'Barkatu, helbide posta honen erabiltzaile-kontua existitzen da jada', + 'length' => 'Postaren eremuak gutxienez 4 eta gehienez 64 karaktere izan behar ditu.', + 'required' => 'Postaren eremua betetzea beharrezkoa da.', + ) , + 'name' => array( + 'length' => 'Izenaren eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu.', + 'required' => 'Izenaren eremua betetzea beharrezkoa da.', + 'standard_text' => 'Erabiltzaile-izenaren eremuak debekatutako karaktereak dauzka.', + ) , + 'current_password' => array( + 'length' => 'Pasahitzaren eremuak gutxienez 8 karaktere izan behar ditu.', + 'login error' => 'Mesedez, ziurtatu sartutako posta eta pasahitza egokiak direla.', + 'matches' => 'Mesedez, pasahitz berdina sartu bi pasahitz eremuetan.', + 'required' => 'Pasahitzaren eremua betetzea beharrezkoa da.', + 'alpha_dash' => 'Pasahitza eremuak alfabetoaren karaktereak, # eta @ ikurrak, zenbakiak, azpimarrak eta marratxoak bakarrik eduki behar ditu', + 'incorrect' => 'Sartu duzun pasahitza okerra da. Mesedez, saiatu berriz.', + ) , + 'new_password' => array( + 'length' => 'Pasahitzaren eremuak gutxienez 8 karaktere izan behar ditu.', + 'login error' => 'Mesedez, ziurtatu sartutako posta eta pasahitza egokiak direla.', + 'matches' => 'Mesedez, pasahitz berdina sartu bi pasahitz eremuetan.', + 'required' => 'Pasahitzaren eremua betetzea beharrezkoa da.', + 'alpha_dash' => 'Pasahitza eremuak alfabetoaren karaktereak, # eta @ ikurrak, zenbakiak, azpimarrak eta marratxoak bakarrik eduki behar ditu', + ) , + 'password' => array( + 'default' => 'Saioa hasterakoan errore bat egon da.', + 'length' => 'Pasahitzaren eremuak gutxienez 8 karaktere izan behar ditu.', + 'login error' => 'Mesedez, ziurtatu sartutako posta eta pasahitza egokiak direla.', + 'matches' => 'Mesedez, pasahitz berdina sartu bi pasahitz eremuetan.', + 'required' => 'Pasahitzaren eremua betetzea beharrezkoa da.', + 'riverid server down' => 'Autentikazio zerbitzaria erorita dago. Saiatu berriro beranduago.', + 'riverid' => '%s', + 'alpha_dash' => 'Pasahitza eremuak alfabetoaren karaktereak, # eta @ ikurrak, zenbakiak, azpimarrak eta marratxoak bakarrik eduki behar ditu', + ) , + 'password_confirm' => array( + 'matches' => 'Pasahitza berrespena eremuak eta pasahitza eremuak berdinak izan behar dute.', + ) , + 'resetemail' => array( + 'email' => 'Sartutako posta ez da baliozko posta', + 'invalid' => 'Barkatu, ez daukagu zure e-posta helbidea', + 'required' => 'Postaren eremua betetzea beharrezkoa da.', + ) , + 'role' => array( + 'superadmin_modify' => 'Bakarrik superadmin erabiltzaileak alda dezake superadmin erabiltzailea edo erabiltzaile bat superadmin bihutu.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Rol formatu baliogabea.', + 'length' => 'Rol eremuak gutxienez 5 eta gehienez 30 karaktere izan behar ditu.', + 'required' => 'Gutxienez rol bat definitu behar duzu.', + 'values' => 'ADMIN edo USER rola aukeratu behar duzu.', + ) , + 'token' => array( + 'invalid' => 'Ahaztutako pasahitz tokena baliogabea da', + 'required' => 'Ahaztuta pasahitz tokena beharrezkoa da', + ) , + 'username' => array( + 'admin' => 'Admin rola ezin da editatu.', + 'alpha_numeric' => 'Profil Publiko URL eremuak zenbakiak eta letrak bakarrik eduki behar ditu.', + 'exists' => 'Barkatu, profil publiko URL hau dagoeneko erabiltzen da.', + 'length' => 'Profil publiko URL eremuak gutxienez 2 eta gehienez 100 karaktere izan behar ditu.', + 'login error' => 'Mesedez, ziurtatu profil publiko URL zuzena sartu duzula.', + 'required' => 'Profil publiko URL eremua beharrezkoa da.', + 'superadmin' => 'Super Admin rola ezin da editatu.', + 'csrf' => 'CSRF eraso posible bat. Seguru hau sortu/editatu nahi duzula?', + ) , +); diff --git a/application/i18n/eu/bug.php b/application/i18n/eu/bug.php new file mode 100644 index 0000000000..705b7b69dc --- /dev/null +++ b/application/i18n/eu/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Sartu baliozko segurtasun kodea mesedez', + 'required' => 'Sartu segurtasun kodea mesedez', + ) , + 'email' => array( + 'email' => 'Email eremuak ez du baliozko email helbiderik duenik ematen', + 'length' => 'Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki', + 'required' => 'Email eremua beharrezkoa da laukitxoa hautatuta badago.', + ) , + 'error' => array( + 'required' => 'Akatsaren eremua betetzea beharrezkoa da.', + ) , + 'subject' => array( + 'length' => 'Gaiaren eremuak gutxienez 3 karaktere izan behar ditu.', + 'required' => 'Gaiaren eremua betetzea beharrezkoa da.', + ) , + 'yourname' => array( + 'length' => 'Izenaren eremuak gutxienez 3 karaktere izan behar ditu.', + 'required' => 'Izenaren eremua betetzea beharrezkoa da.', + ) , +); diff --git a/application/i18n/eu/category.php b/application/i18n/eu/category.php new file mode 100644 index 0000000000..01dfbe6343 --- /dev/null +++ b/application/i18n/eu/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Koloredun eremuak 6 karaktere izan behar ditu.', + 'required' => 'Kolore eremua beharrezkoa da', + ) , + 'category_description' => array( + 'required' => 'Deskribapen eremua beharrezkoa da', + ) , + 'category_image' => array( + 'size' => 'Mesedez ziurtatu irudiaren tamaina 50 KBkoa dela.', + 'type' => 'Ez dirudi irudi eremuak baliozko fitxategirik duenik. JPG, PNG eta GIF formatuak bakarrik onartzen dira.', + 'valid' => 'Ez dirudi irudi eremuak baliozko fitxategirik duenik', + ) , + 'category_title' => array( + 'length' => 'Izenburu eremuak gutxienez 3 karaktere eta gehienez 80 izan ditzake.', + 'required' => 'Izenburu eremua beharrezkoa da.', + ) , + 'parent_id' => array( + 'already_parent' => 'Ezin duzu azpikategoriak dituen kategoria bat azpikategorietan sartu.', + 'exists' => 'Azpikategoria ez da existitzen.', + 'numeric' => 'Azpikategoria numerikoa izan behar da.', + 'parent_trusted' => 'Azpikategoria ezin da kategoria berezia izan', + 'required' => 'Azpikategoria eremua beharrezkoa da.', + 'same' => 'Kategoria eta azpikategoria ezin dira berdinak izan.', + 'special' => 'Kategoria bereziak ezin dira azpikategorietan sartu.', + ) , +); diff --git a/application/i18n/eu/comments.php b/application/i18n/eu/comments.php new file mode 100644 index 0000000000..fcd9e42dfb --- /dev/null +++ b/application/i18n/eu/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Sartu baliozko segurtasun kodea, mesedez', + 'required' => 'Sartu segurtasun kodea, mesedez', + 'valid' => 'Segurtasun kode okerra sartu duzu.', + ) , + 'comment_author' => array( + 'length' => 'Izenaren eremuak gutxienez 3 karaktere izan behar ditu', + 'required' => 'Izenaren eremua beharrezkoa da.', + ) , + 'comment_description' => array( + 'required' => 'Iruzkin eremua beharrezkoa da', + ) , + 'comment_email' => array( + 'email' => 'Email eremuak ez du baliozko email helbiderik', + 'length' => 'Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki', + 'required' => 'Email eremua beharrezkoa da kontrol-laukia hautatuta badago', + ) , +); diff --git a/application/i18n/eu/contact.php b/application/i18n/eu/contact.php new file mode 100644 index 0000000000..5eb3b5badf --- /dev/null +++ b/application/i18n/eu/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Sartu baliozko segurtasun kodea mesedez', + 'valid' => 'Sartu baliozko segurtasun kodea mesedez', + 'required' => 'Sar ezazu segurtasun kodea, mesedez.', + ) , + 'contact_email' => array( + 'email' => 'Ez du ematen e-posta eremuak e-posta helbide baliagarria duenik.', + 'length' => 'Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki', + 'required' => 'Email eremua beharrezkoa da kontrol-laukia hautatuta badago', + ) , + 'contact_message' => array( + 'required' => 'Mezu eremua beharrezkoa da', + ) , + 'contact_name' => array( + 'length' => 'Izenaren eremuak gutxienez 3 karaktere izan behar ditu', + 'required' => 'Izena eremua beharrezkoa da', + ) , + 'contact_subject' => array( + 'length' => 'Gaiaren eremuak gutxienez 3 karaktere izan behar ditu luzeran.', + 'required' => 'Gaiaren eremua beharrezkoa da.', + ) , + 'email_send' => array( + 'failed' => 'Errore bat egon da zure mezua bidaltzean.', + ) , +); diff --git a/application/i18n/eu/core.php b/application/i18n/eu/core.php new file mode 100644 index 0000000000..27f12a15c7 --- /dev/null +++ b/application/i18n/eu/core.php @@ -0,0 +1,35 @@ + 'konfigurazio fitxategia', + 'controller' => 'kontrolatzailea', + 'driver' => 'kontrolatzailea', + 'driver_implements' => '%s liburutegiarentzako %s kontrolatzaileak %s interfazea ezarri beharko luke.', + 'driver_not_found' => '%s liburutegiarentzako %s kontrolatzailea ezin izan da aurkitu.', + 'errors_disabled' => 'hasiera orrira joan zintezke edo berriz saiatu.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Ezin da eskaera bete', + 'helper' => 'laguntzailea', + 'invalid_filetype' => 'Zure ikusteko konfigurazioak ez du %s, eskatutako fitxategi mota onartzen', + 'invalid_method' => '%s baliogabeko methodoak %s-ra deitu du', + 'invalid_property' => '%s propietatea ez da existitzen %s klasean', + 'library' => 'liburutegi', + 'log_dir_unwritable' => '"log" direktorioa ez da idazgarria. %s', + 'model' => 'eredua', + 'no_controller' => 'Ushahidi ez da gai izan kontrolatzaileari eskaera hau prozesatu dezan determinatzeko: %s', + 'no_default_route' => 'Mesedez zehaztu berezko ruta config/routes.php fitxategian', + 'page_not_found' => 'Eskatu duzun orria, %s, ezin izan da aurkitu.', + 'report_bug' => 'Ushahidiri arazoaren berri eman', + 'resource_not_found' => 'Eskatutako %s, %s, ezin izan da aurkitu.', + 'stack_trace' => 'Aztarna pilaketa', + 'stats_footer' => '{execution_time} segundutan kargatua, {memory_usage} memoria erabiliaz. Ushahidik sortua v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Ushahidi istantzia bat bakarrik egon daiteke orri eskaera bakoitzeko.', + 'uncaught_exception' => 'Detektatu gabeko %s: %s %s fitxategian %s lerroan', + 'view' => 'ikusi', + 'view_set_filename' => 'Bistaren fitxategi izena jarri behar duzu renderizatu aurretik.', +); diff --git a/application/i18n/eu/database.php b/application/i18n/eu/database.php new file mode 100644 index 0000000000..fa89a5b06d --- /dev/null +++ b/application/i18n/eu/database.php @@ -0,0 +1,10 @@ + 'Datu basearen errorea: %s', + 'table_not_found' => '"%s" taula ezin da aurkitu datu basean. mesedez, zihurtatu Ushahidi bertsio honetarako azken datu base bertsioa erabiltzen duzula.', +); diff --git a/application/i18n/eu/datetime.php b/application/i18n/eu/datetime.php new file mode 100644 index 0000000000..5137dd59c7 --- /dev/null +++ b/application/i18n/eu/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Os2', + 'full' => 'Ostirala', + ) , + 'monday' => array( + 'abbv' => 'As1', + 'full' => 'Astelehena', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Lar', + 'full' => 'Larunbata', + ) , + 'sunday' => array( + 'abbv' => 'Iga', + 'full' => 'Igandea', + ) , + 'thursday' => array( + 'abbv' => 'Os1', + 'full' => 'Osteguna', + ) , + 'tuesday' => array( + 'abbv' => 'As2', + 'full' => 'Asteartea', + ) , + 'wednesday' => array( + 'abbv' => 'As3', + 'full' => 'Asteazkena', + ) , + 'january' => array( + 'abbv' => 'Urt', + 'full' => 'Urtarrila', + ) , + 'february' => array( + 'abbv' => 'Ots', + 'full' => 'Otsaila', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Martxoa', + ) , + 'april' => array( + 'abbv' => 'Api', + 'full' => 'Apirila', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Maiatza', + ) , + 'june' => array( + 'abbv' => 'Eka', + 'full' => 'Ekaina', + ) , + 'july' => array( + 'abbv' => 'Uzt', + 'full' => 'Uztaila', + ) , + 'august' => array( + 'abbv' => 'Abu', + 'full' => 'Abuztua', + ) , + 'september' => array( + 'abbv' => 'Ira', + 'full' => 'Iraila', + ) , + 'october' => array( + 'abbv' => 'Urr', + 'full' => 'Urria', + ) , + 'november' => array( + 'abbv' => 'Aza', + 'full' => 'Azaroa', + ) , + 'december' => array( + 'abbv' => 'Abe', + 'full' => 'Abendua', + ) , +); diff --git a/application/i18n/eu/feeds.php b/application/i18n/eu/feeds.php new file mode 100644 index 0000000000..c45216df50 --- /dev/null +++ b/application/i18n/eu/feeds.php @@ -0,0 +1,20 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'Iturriaren izenak gutxienez 3 eta gehienez ⏎ +⇥⇥⇥70 karaktere izan bear ditu.', + 'required' => 'Sar ezazu, mesedez, iturriaren izena.', + ) , + 'feed_url' => array( + 'required' => 'Sartu mesedez iturriaren URLa.', + 'url' => 'Sar ezazu, mesedez, URL baliagarri bat, adb. http://www.ushahidi.com', + ) , + 'source' => 'JATORRIA', + 'title' => 'Izenburua', +); diff --git a/application/i18n/eu/footer.php b/application/i18n/eu/footer.php new file mode 100644 index 0000000000..28eaaeb2e4 --- /dev/null +++ b/application/i18n/eu/footer.php @@ -0,0 +1,9 @@ + 'php5-curl ez dago sisteman instalatua', +); diff --git a/application/i18n/eu/form.php b/application/i18n/eu/form.php new file mode 100644 index 0000000000..0db83b08ac --- /dev/null +++ b/application/i18n/eu/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Eremuarentzat emandako balio lehenetsia baliogabea da', + 'length' => 'Eremuaren izenak 3 hizki baino gehiago izan behar ditu eta 200 baino gutxiago', + ) , + 'field_height' => array( + 'between' => '0 eta 50 bitarteko balore bat sartu eremuaren altuerarentzat, mesedez', + ) , + 'field_isdate' => array( + 'between' => 'Data eremuarentzat balore baliogabea sartu duzu', + 'required' => 'aukeratu Bai edo Ez data eremuetan', + ) , + 'field_name' => array( + 'length' => 'Eremuaren izenak 3 hizki baino gehiago izan behar ditu eta 100 baino gutxiago', + 'required' => 'Sartu eremuaren izena, mesedez', + 'duplicate' => 'Sartu duzun eremu izena badago formulario honetan, Aukeratu beste bat, mesedez', + ) , + 'field_required' => array( + 'between' => 'Beharrezko eremuarentzat balore baliogabea sartu duzu', + 'required' => 'aukeratu Bai edo Ez beharrezko eremuetan', + ) , + 'field_type' => array( + 'numeric' => 'Aukeratu baliozko eremu mota, mesedez', + 'required' => 'Aukeratu eremu mota, mesedez', + ) , + 'field_width' => array( + 'between' => '0 eta 300 bitarteko balore bat sartu eremuaren zabalerarentzat, mesedez', + ) , + 'form_description' => array( + 'required' => 'Sartu formularioaren deskribapena, mesedez', + ) , + 'form_id' => array( + 'default' => 'Lehenetsitako formularioa ezaba ezina da.', + 'numeric' => 'Aukeratu zein formulariotara gehituko den eremu hau.', + 'required' => 'Aukeratu zein formulariotara gehituko den eremu hau.', + ) , + 'form_title' => array( + 'length' => 'Formularioaren eremuaren izenak 3 hizki baino gehiago izan behar ditu eta 100 baino gutxiago', + 'required' => 'Sartu formularioaren izena, mesedez', + 'exists' => 'Dagoeneko titulu hau duen formularioa badago. Beste bat aukeratu mesedez', + ) , +); diff --git a/application/i18n/eu/imap.php b/application/i18n/eu/imap.php new file mode 100644 index 0000000000..666fe3fc75 --- /dev/null +++ b/application/i18n/eu/imap.php @@ -0,0 +1,10 @@ + 'Ezin da ireki IMAP jarioa.', + 'unsupported_service' => 'E-posta zerbitzua ez dago baimendua.', +); diff --git a/application/i18n/eu/installer.php b/application/i18n/eu/installer.php new file mode 100644 index 0000000000..39bbb6a955 --- /dev/null +++ b/application/i18n/eu/installer.php @@ -0,0 +1,58 @@ + 'Basearen bidea', + 'database' => 'Datu basea', + 'database_host' => 'Datu Basearen ostalaria', + 'database_host_description' => 'Ushahidi zure ordenagailuan erabiltzen ari bazara, "localhost" bezala agertuko da. Web-zerbitzari batetik ari bazara, zure ostalariaren informazioa lortuko duzu zure web hornitzailearengandik.', + 'database_name' => 'Datu Basearen izena', + 'database_name_description' => 'Ushaidik erabiliko duen Datu Basearen izena', + 'db_information_link' => 'Info gehiagorako, mesedez ikustatu ezazu artikulu hau datu baseak zehaztasun handiagorekin jorratzen dituen wikian.', + 'default_language' => 'Lehenetsitako hizkuntza(Lokala)', + 'disable' => 'Desgaitua', + 'enable' => 'Gaitua', + 'error_summary' => 'Beheko zerrenda aurkitu diren akatsen laburpena da', + 'finished' => 'Amaiturik', + 'general' => 'Orokorra', + 'google_key' => 'Google API Gakoa', + 'go_back' => 'Atzera joan', + 'index' => array( + 'advanced' => 'INSTALAZIO AURRERATUA', + 'basic_installation' => 'OINARRIZKO INSTALAZIOA', + 'proceed' => 'Jarraitu', + 'welcome' => 'Ongi etorri Ushahidi-ren zerbitzari instalazio prosesura. Auikeratu zein instalazio mota erabili nahi duzun.', + ) , + 'installation_successful' => 'Instalazio arrakastasua', + 'mail_server' => 'Postaren zerbitzaria', + 'mail_server_host' => 'Posta zerbitzariaren host-a', + 'mail_server_host_description' => 'Adibideak: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Postaren zerbitzariaren pasahitza', + 'mail_server_password_description' => 'Zure postan normalean sartzeko erabilitako pasahitza', + 'mail_server_port' => 'Posta zerbitzariaren ataka', + 'mail_server_port_description' => 'Ohiko portuak: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Posta zerbitzariaren mota', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) edo Post Office Protocol (POP). Zein da ezberdintasuna?', + 'mail_server_username' => 'Posta zerbitzariaren erabiltzailea', + 'mail_server_username_description' => 'Gmail, Hotmail, edo Yahoo Mail erabiltzen bazaude, sartu zure email helbide osoa erabiltzaile izen moduan.', + 'map' => 'Mapa', + 'map_provider' => 'Maparen hornitzailea', + 'map_provider_description' => 'Ushahidik mapa hornitzaile ezberdin hauekin berdin egiten du lan: Google, Bing edo Open Street Map. Aukeratu zure inguruko xehetasun handiena duena.', + 'other_steps' => 'Beste pausuak...', + 'password' => 'Pasahitza', + 'password_description' => 'Zure datu baseko paasahitza.', + 'previous' => 'Aurrekoa', + 'restart_apache' => 'Berrabiarasi zure Apache Zerbitzaria, mesedez', + 'select_mail_server_ssl' => 'SSL gaitu edo desgaitu', + 'select_mail_server_ssl_description' => 'Posta zerbitzari batzuk konexioa egiterakoan SSL erabiltzeko aukera ematen dizute. SSL erabiltzea gomendagarria da segurtasun maila gehitzen diolako.', + 'setup_sms' => 'SMS zerbitzaria ezarri', + 'site_email' => 'Guneko email helbidea', + 'site_email_alerts' => 'Guneko email alerten helbidea', + 'title' => 'Izenburua', + 'username' => 'Erabiltzaile-izena', + 'username_description' => 'Datu Baseko erabiltzaile-izena', + 'view_site' => 'Zure webgunea ikusi', +); diff --git a/application/i18n/eu/layer.php b/application/i18n/eu/layer.php new file mode 100644 index 0000000000..8cab24cf6c --- /dev/null +++ b/application/i18n/eu/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Koloredun eremuak 6 karaktere izan behar ditu.', + 'required' => 'Koloredun eremua beharrezkoa da', + ) , + 'layer_file' => array( + 'type' => 'Badirudi fitxategi eremuan ez dagoela fitxategi egokirik . Onartzen diren formatuak .KMZ eta .KML dira soilik.', + 'valid' => 'Badirudi fitxategi eremuan ez dagoela fitxategi egokirik', + ) , + 'layer_name' => array( + 'length' => 'Izen eremuak gutxienez 3 eta gehienez 80 karaktere izan behar ditu.', + 'required' => 'Izena eremua beharrezkoa da', + ) , + 'layer_url' => array( + 'atleast' => 'KML URL edo Fitxategia beharrezkoak dira', + 'both' => 'Ezin dituzu KML fitxategia eta URL-a batera izan', + 'url' => 'Sar ezazu, mesedez, URL egoki bat, adb. http://www.ushahidi.com', + ) , +); diff --git a/application/i18n/eu/libraries.php b/application/i18n/eu/libraries.php new file mode 100644 index 0000000000..5a85234ba6 --- /dev/null +++ b/application/i18n/eu/libraries.php @@ -0,0 +1,27 @@ + 'Ezin da konektatu Akismet zerbitzarira.', + 'akismet_cannot_retrieve' => 'Akismet-en erantzuna ezin da berreskuratu.', + 'api_library_not_found' => '%s API liburutegia ezin izan da bilatu %s klaserako. Mesedez begiratu zure APIko ataza bideratze taula.', + 'askimet_invalid_apikey' => 'Zure Akismet API giltza ez da baliozkoa.', + 'clickatell_fopen_error' => 'Errorea fopen bidalketa metodoa exekutatzean!
Mesedez begiratu zure PHPk OpenSSL onartzen duen edota PHP bertsioa 5.2 baino handiagoa den.', + 'clickatell_message_too_long' => 'Zure unicode mezua luzeegia da! (Momentuko luzera=', + 'clickatell_no_destination_address' => 'Mesedez zehaztu hartzaile helbidea (Nora)!', + 'clickatell_no_sender_address' => 'Mesedez zehaztu igorlearen helbidea (Nondik)!', + 'clickatell_unicode_message_too_long' => 'Zure unicode mezua luzeegia da! (Momentuko luzera=', + 'clickatell_unsupported_method' => 'Ez onartutako bidaltzeko era!', + 'invalid_api_library' => '%s API liburutegia ez da baliozkoa. API liburutegi guztiak %s-ren azpi-klaseak izan behar dute.', + 'upgrade_directory_not_deleted' => '%s direktorioa ezin izan da ezabatu.', + 'upgrade_extracting_error' => 'Errorea erauzketan: %s', + 'upgrade_failed' => 'Azken Ushahidi deskargatzean akatsa. HTTP egoera kodea', + 'upgrade_file_not_copied' => '%s fitxategia ezin izan da kopiatu.', + 'upgrade_file_not_deleted' => '%s fitxategia ezin izan da ezabatu.', + 'upgrade_title' => 'Ushahidi eguneraketa scripta', + 'upgrade_zip_error' => 'Deskargatutako Ushahidi %s zip fitxategia, ezin da idatzi.', + 'riverid_variable_not_available' => '%s ez dago erabilgarri RiverID kasean.', +); diff --git a/application/i18n/eu/maintenance.php b/application/i18n/eu/maintenance.php new file mode 100644 index 0000000000..9c27bc2fe3 --- /dev/null +++ b/application/i18n/eu/maintenance.php @@ -0,0 +1,9 @@ + 'Barkatu baina gure gunea mantentze lanetan dago. Saiatu berriz minutu gutxi batzu barru.', +); diff --git a/application/i18n/eu/message.php b/application/i18n/eu/message.php new file mode 100644 index 0000000000..fa8c53723f --- /dev/null +++ b/application/i18n/eu/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Sartu baliozko segurtasun kodea, mesedez', + 'required' => 'Sartu segurtasun kodea, mesedez', + ) , + 'email' => array( + 'email' => 'Email eremuak ez du baliozko email helbiderik', + 'length' => 'Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki', + 'required' => 'email eremua beharrezkoa da kontrol-laukia hautatuta badago', + ) , + 'message' => array( + 'required' => 'Iruzkin eremua beharrezkoa da', + ) , + 'name' => array( + 'length' => 'Izenaren eremuak gutxienez 3 karaktere izan behar ditu', + 'required' => 'Izen eremua beharrezkoa da', + ) , + 'phone' => array( + 'length' => 'Telefonoaren eremua ez da baliozkoa', + ) , +); diff --git a/application/i18n/eu/mhi.php b/application/i18n/eu/mhi.php new file mode 100644 index 0000000000..bd60e99646 --- /dev/null +++ b/application/i18n/eu/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Sar ezazu, mesedez, segurtasun kode baliagarri bat.', + 'required' => 'Sar ezazu segurtasun kodea, mesedez.', + ) , + 'contact_email' => array( + 'email' => 'Ez du ematen e-posta eremuak e-posta helbide baliagarria duenik.', + 'required' => 'Sar ezazu e-posta helbide baliagarri bat.', + ) , + 'contact_message' => array( + 'required' => 'Mezuaren eremua nahitaezkoa da.', + ) , + 'contact_subject' => array( + 'length' => 'Gaiaren eremuak gutxienez 3 karaktere izan behar ditu luzeran.', + 'required' => 'Gaiaren eremua beharrezkoa da.', + ) , +); diff --git a/application/i18n/eu/notifications.php b/application/i18n/eu/notifications.php new file mode 100644 index 0000000000..89a0ec4f39 --- /dev/null +++ b/application/i18n/eu/notifications.php @@ -0,0 +1,35 @@ + 'Mezu hau zure webgunetik bidalia izan da', + 'admin_login_url' => 'Administratzaile saioa hasi', + 'admin_new_comment' => array( + 'message' => 'Iruzkin berria bidali da zure webgunera, honakoari erantzunez:', + 'subject' => 'Iruzkin berria', + ) , + 'admin_new_email' => array( + 'message' => 'E-posta mezu berria bidali da zure webgunera.', + 'subject' => 'E-posta mezu berria', + ) , + 'admin_new_report' => array( + 'message' => 'Txosten berria bidali da zure webgunera', + 'subject' => 'Txosten berria', + ) , + 'admin_new_sms' => array( + 'message' => 'Testu mezu berria bidalia izan da zure webgunera.', + 'subject' => 'Textu mezu berria', + ) , + 'member_new_alert' => array( + 'message' => 'Alerta berria jaso duzu', + 'subject' => 'Alerta berria!', + ) , + 'member_new_message' => array( + 'message' => 'Mezu pribatu bat jaso duzu', + 'subject' => 'Mezu pribatu berria', + 'footer' => 'Erantzuteko, mesedez, joan hona:', + ) , +); diff --git a/application/i18n/eu/page.php b/application/i18n/eu/page.php new file mode 100644 index 0000000000..0036649f97 --- /dev/null +++ b/application/i18n/eu/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Sartu orrialdearen izenburua, mesedez.', + 'length' => 'Orrialdearen izenburuak gutxienez 3 eta gehienez 150 karaktere izan behar ditu luzeran.', + ) , + 'page_tab' => array( + 'required' => 'Mesedez, idatzi orrialde leihotxoaren izena.', + ) , + 'page_description' => array( + 'required' => 'Mesedez, sar ezazu orrialde deskribapena.', + ) , +); diff --git a/application/i18n/eu/permissions.php b/application/i18n/eu/permissions.php new file mode 100644 index 0000000000..4e37f80ad1 --- /dev/null +++ b/application/i18n/eu/permissions.php @@ -0,0 +1,26 @@ + 'Txostenak ikusi', + 'reports_edit' => 'Txostenak sortu/ezabatu/editatu', + 'reports_approve' => 'Txostenak onartu', + 'reports_verify' => 'Txostenak egiaztatu', + 'reports_comments' => 'Kudeatu txostenen iruzkinak', + 'reports_download' => 'Txostenak jaitsi', + 'reports_upload' => 'Txostenak kargatu', + 'messages' => 'Mezuak kudeatu', + 'messages_reporters' => 'Kudeatu mezu bidaltzaileak', + 'stats' => 'Estatistiken txostena', + 'settings' => 'Ezarpenak aldatu', + 'manage' => 'Kudeatzaile panela', + 'users' => 'Kudeatu erabiltzaileak', + 'manage_roles' => 'Kudeatu rolak', + 'checkin' => 'Erregistratu daiteke', + 'checkin_admin' => 'Kudeatu erregistroak', + 'admin_ui' => 'Admin interfaze sarrera', + 'member_ui' => 'Kide interfaze sarrera', +); diff --git a/application/i18n/eu/private_message.php b/application/i18n/eu/private_message.php new file mode 100644 index 0000000000..af6ebc510f --- /dev/null +++ b/application/i18n/eu/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'ID nagusia zenbakia izan behar du', + ) , + 'private_to' => array( + 'required' => 'Izena eremua beharrezkoa da', + 'exists' => 'Mezua bidali nahi diozun erabiltzailea ez da existitzen', + ) , + 'private_subject' => array( + 'required' => 'Gaiaren eremua beharrezkoa da.', + 'length' => 'Orrialdearen izenburuak gutxienez 3 eta gehienez 150 karaktere izan behar ditu luzeran.', + ) , + 'private_message' => array( + 'required' => 'Mezu eremua beharrezkoa da', + ) , +); diff --git a/application/i18n/eu/report.php b/application/i18n/eu/report.php new file mode 100644 index 0000000000..7b6c31bed3 --- /dev/null +++ b/application/i18n/eu/report.php @@ -0,0 +1,138 @@ + 'Akatsa!', + 'country_name' => array( + 'single_country' => 'Hedaketa hau herrialde baterako bakarrik balio du. Ziurtatu berri emandako lekua herrialde %s barnean dagoela.', + ) , + 'custom_field' => array( + 'numeric' => '"%s"(e)k zenbakia izan behar du.', + 'required' => '"%s" eremua betetzea beharrezkoa da.', + 'not_exist' => 'Badirudi "%s" eremua ez dela existizen.', + 'permission' => 'Zure kontuak ezin du "%s" eremua editatu.', + 'email' => '"%s" eremuak baliozko e-posta helbidea izan behar du.', + 'phone' => '"%s" eremual baliozko telefono zenbakia izan behar du.', + 'date_mmddyyyy' => '"%s" eremuak baliozko data formatua izan behar du (YYYY/MM/DD).', + 'date_ddmmyyyy' => '"%s" eremuak baliozko data (YYYY/MM/DD) izan behar du.', + ) , + 'data_include' => array( + 'between' => 'Aukeratu ezazu baliozkoa den gai bat deskargan biltzeko.', + 'numeric' => 'Aukeratu ezazu baliozkoa den gai bat deskargan biltzeko.', + ) , + 'data_active' => array( + 'between' => 'Mesedez aukeratu "Txostenak onarpenaren zain" edo "onartutakoa txostenak", edo biak.', + 'numeric' => 'Mesedez aukeratu "Txostenak onarpenaren zain" edo "onartutakoa txostenak", edo biak.', + 'required' => 'Mesedez aukeratu "Txostenak onarpenaren zain" edo "onartutakoa txostenak", edo biak.', + ) , + 'data_verified' => array( + 'between' => 'Mesedez aukeratu "Txostenak onarpenaren zain" edo "onartutakoa txostenak", edo biak.', + 'numeric' => 'Mesedez aukeratu "Txostenak onarpenaren zain" edo "onartutakoa txostenak", edo biak.', + 'required' => 'Mesedez aukeratu "Txostenak onarpenaren zain" edo "onartutakoa txostenak", edo biak.', + ) , + 'data_point' => array( + 'between' => 'Aukeratu ezazu baliozko txosten mota deskargatzeko.', + 'numeric' => 'Aukeratu ezazu baliozko txosten mota deskargatzeko.', + 'required' => 'Aukeratu ezazu baliozko txosten mota deskargatzeko.', + ) , + 'format' => array( + 'required' => 'Deskarga formatu bat aukeratu behar duzu. CSV edo XML izan daiteke.', + 'valid' => 'Aukeratu ezazu baliozko txosten formatua deskargatzeko.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Ez dirudi NOIZTIK data eremuak baliozko datarik duenik.', + 'range' => 'Aukeratu ezazu data baliagarri bat. Ezin du izan gaur baino handiagoa.', + ) , + 'incident_active' => array( + 'between' => 'Mesedez, sartu baliozko balio bat Txostena Onartu balioarentzako', + 'required' => 'Sartu baliozko balioa Txosten hau Onestu eremuarentzako mesedez', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Ez dirudi irudi am/pm eremuak baliozko baliorik duenik', + ) , + 'incident_category' => array( + 'numeric' => 'Badirudi "Kategoriak" eremuak ez duela baliozko kategoria ', + 'required' => '"Kategoriak" eremua beharrezkoa da.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Ez du ematen data eremuak data baliagarria duenik.', + 'date_mmddyyyy' => 'Ez dirudi data eremuak baliozko datarik duenik', + 'required' => 'Dataren eremua betetzea beharrezkoa da.', + ) , + 'incident_description' => array( + 'required' => '"Deskribapena" eremua beharrezkoa da.', + ) , + 'incident_hour' => array( + 'between' => 'Badirudi ordua eremuak ez duela balio egokirik.', + 'required' => 'Orduaren eremua betetzea beharrezkoa da.', + ) , + 'incident_information' => array( + 'alpha' => 'Mesedez, sartu Informazioa Probabilitatearen baliozko balioa.', + 'length' => 'Sartu baliozko Informazio Probabilitate balioa mesedez.', + ) , + 'incident_minute' => array( + 'between' => 'Ez dirudi irudi minutu eremuak baliozko baliorik duenik', + 'required' => 'Minutuaren eremua betetzea beharrezkoa da.', + ) , + 'incident_news' => array( + 'url' => 'Badirudi iturburu lotura eremuak ez duela baliozko URLrik.', + ) , + 'incident_photo' => array( + 'size' => 'Mesedez ziurtatu argazkien tamaina 2 MBkoa dela.', + 'type' => 'Ez dirudi argazki eremuak baliozko fitxategirik duenik. JPG, PNG eta GIF formatuak bakarrik onartzen dira.', + 'valid' => 'Badirudi Argazkiak Igo eremuaa ez duela fitxategi egokirik.', + ) , + 'incident_source' => array( + 'alpha' => 'Sartu Iturri Fidagarritasun eremuaren baliozko balioa mesedez.', + 'length' => 'Sartu baliozko Informazio Probabilitate balioa mesedez.', + ) , + 'incident_title' => array( + 'length' => '"Txosten titulo" eremuak gutxienez 3 eta gehienez 200 karaktere izan behar ditu.', + 'required' => '\'\'Iruzkinaren izenburua\'\' eremua betetzea beharrezkoa da.', + 'csrf' => 'CSRF eraso posible bat. Seguru hau sortu/editatu nahi duzula?', + ) , + 'incident_verified' => array( + 'between' => 'Mesedez, sartu baliozko balio bat Txostena Egiaztatu balioarentzako.', + 'required' => 'Mesedez, sartu baliozko balio bat Txostena Egiaztatu balioarentzako.', + ) , + 'incident_video' => array( + 'url' => 'Badirudi bideo lotura eremuak ez duela baliozko URLrik.', + ) , + 'latitude' => array( + 'between' => 'Badirudi latitude eremuan ez dagoela latitude egokirik.', + 'required' => 'Latitude eremua beharrezkoa da. Mesedez klikatu mapa kokapena markatzeko.', + ) , + 'locale' => array( + 'alpha_dash' => 'Lokalizazio eremuak balio okerra dauka.', + 'exists' => 'Txostenak dagoeneko badu hizkuntza horretarako itzulpen bat.', + 'length' => 'Kokapen eremuak balore okerra dauka.', + 'locale' => 'Jatorrizko Txostenak eta Itzulpenak lokalizazio (hizkuntza) berdina dute.', + 'required' => 'Lokalizazioa beharrezkoa da.', + ) , + 'location_name' => array( + 'length' => '"Lokalizazio izena" eremuak gutxienez 3 eta gehienez 200 karaktere izan behar ditu.', + 'required' => '"Kokapen izena" eremua beharrezkoa da.', + ) , + 'longitude' => array( + 'between' => 'Badirudi longitude eremuko balioa ez dela zuzena.', + 'required' => 'Longitude eremua beharrezkoa da. Egun klik mapan kokapena zehazteko.', + ) , + 'person_email' => array( + 'email' => 'Ez du ematen e-posta eremuak e-posta helbide baliagarria duenik.', + 'length' => 'Postaren eremuak gutxienez 4 eta gehienez 64 karaktere izan behar ditu.', + ) , + 'person_first' => array( + 'length' => 'Izenaren eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu.', + ) , + 'person_last' => array( + 'length' => 'Abizenaren eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Ez dirudi NORARTE data eremuak baliozko datarik duenik.', + 'range' => 'Aukeratu ezazu NOIZ-ARTE data baliagarri bat. Ezin du izan gaur baino handiagoa.', + 'range_greater' => 'Zure NOIZTIK data ermuak ezindu izan NOIZ-ARTE baina handiagoa.', + ) , +); diff --git a/application/i18n/eu/reporters.php b/application/i18n/eu/reporters.php new file mode 100644 index 0000000000..30d88b56b9 --- /dev/null +++ b/application/i18n/eu/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Badirudi latitude eremuan ez dagoela latitude egokirik.', + 'required' => 'Latitude eremua beharrezkoa da. Mesedez klikatu mapa kokapena markatzeko.', + ) , + 'level_id' => array( + 'numeric' => 'Badirudi txosten egile maila eremuak maila egokirik ez duela.', + 'required' => 'Badirudi txosten egile maila eremuak maila egokirik ez duela.', + ) , + 'location_name' => array( + 'length' => 'Kokapen izenaren eremuak gutxienez 3 eta gehienez 200 karaktere izan behar ditu.', + 'required' => 'Kokapen izenaren eremua beharrezkoa da.', + ) , + 'longitude' => array( + 'between' => 'Badirudi longitude eremuan ez dagoela longitude egokirik.', + 'required' => 'Longitude eremua beharrezkoa da. Mesedez klikatu mapa kokapena markatzeko.', + ) , + 'reporter_id' => array( + 'numeric' => 'Txosten egile baliogabea', + 'required' => 'Txosten egile baliogabea', + ) , +); diff --git a/application/i18n/eu/reports.php b/application/i18n/eu/reports.php new file mode 100644 index 0000000000..f812ac5fff --- /dev/null +++ b/application/i18n/eu/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Mesedez ziurtatu gaia egiaztatu izana', + 'numeric' => 'Mesedez ziurtatu gaia egiaztatu izana', + 'categories_required' => 'Informeak kategorizatuak izan behar dira onartu ahal izateko', + ) , + 'action' => array( + 'permission' => 'Akzio hau burutzeko baimenik ez duzu', + ) , + 'uploadfile' => array( + 'required' => 'Deskargatzeko artxiboa aukeratu behar duzu', + 'type' => 'Fitxategiak .csv edo .xml formatua izan behar du', + 'valid' => 'Ez dirudi fitxategi eremuak baliozko fitxategirik duenik', + ) , +); diff --git a/application/i18n/eu/roles.php b/application/i18n/eu/roles.php new file mode 100644 index 0000000000..c87ce2511a --- /dev/null +++ b/application/i18n/eu/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Deskribapen eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu.', + 'required' => 'Deskribapen eremua beharrezkoa da', + ) , + 'name' => array( + 'alpha_numeric' => 'Izenaren eremuak letra eta zenbakiak bakarrik eduki behar ditu.', + 'length' => 'Izen eremuak gutxienez 2 eta gehienez 30 karaktere izan behar ditu.', + 'nomodify' => 'SuperAdmin rola ezin da editatu.', + 'required' => 'Izena eremua beharrezkoa da', + ) , + 'access_level' => array( + 'numeric' => 'Sarbide mailako eremuak 0 eta 100 bitarteko zenbakia izan behar du.', + 'required' => 'Sarbide mailako eremuak 0 eta 100 bitarteko zenbakia izan behar du.', + ) , + 'permissions' => array( + 'numeric' => 'Baimenen eremuak 0 eta 100 bitarteko zenbakia izan behar du.', + ) , +); diff --git a/application/i18n/eu/settings.php b/application/i18n/eu/settings.php new file mode 100644 index 0000000000..5675e221f1 --- /dev/null +++ b/application/i18n/eu/settings.php @@ -0,0 +1,127 @@ + array( + 'between' => 'Email eremuak ez du baliozko helbiderik.', + 'required' => 'Mezu eremua beharrezkoa da.', + ) , + 'allow_feed' => array( + 'between' => 'Badirudi feed-a sartu eremuan balio egokirik ez duela.', + 'required' => 'Feed-a sartu eremua beharrezkoa da.', + ) , + 'allow_alerts' => array( + 'between' => 'Badirudi abisuak baimendu eremuak ez duela balio egokirik.', + 'required' => 'Abisuak baimendu eremua beharrezkoa da.', + ) , + 'allow_reports' => array( + 'between' => 'Badirudi txostenak baimendu eremuak balio egokirik ez duela', + 'required' => 'Txostenak baimendu eremua beharrezkoa da.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Badirudi \'estatistikak elkarbanatu\' eremuak ez du balio egokirik.', + 'required' => 'Estatistitak elkarbanatu eremua nahitaezkoa da.', + ) , + 'cache_pages' => array( + 'between' => 'Cache orrialdeen eremua', + ) , + 'cleanurl' => array( + 'enable_clean_url' => 'Aukera eman URLak garbitzeko', + 'title' => 'Garbitu URLak', + ) , + 'configure_map' => 'Mapa konfiguratu', + 'default_location' => 'Berezko kokapena', + 'default_map_all' => array( + 'alpha_numeric' => 'Badirudi feed-a sartu eremuan balio egokirik ez duela', + 'length' => 'Koloredun eremuak 6 karaktere izan behar ditu.', + 'required' => 'Kolore eremua beharrezkoa da', + ) , + 'default_map_view' => 'Berezko mapa ikuskera', + 'default_zoom_level' => 'Berezko zoom maila', + 'download_city_list' => 'Eskuratu hiriak Geonames-etik', + 'email_host' => array( + 'length' => 'Mail serbitzariaren portuaren eremua luzeegia da.', + 'numeric' => 'Mail serbitzariaren portuaren eremuak bakarrik zenbakiak eduki beharko lituzke.', + ) , + 'email_password' => array( + 'required' => 'Mail serbitzariaren pasahitzaren eremua betetzea beharrezkoa da.', + ) , + 'email_port' => array( + 'length' => 'Mail serbitzariaren portuaren eremua luzeegia da.', + 'numeric' => 'Mail serbitzariaren portuaren eremuak bakarrik zenbakiak eduki beharko lituzke.', + ) , + 'email_servertype' => array( + 'length' => 'Mail serbitzariaren portuaren eremua luzeegia da. ', + ) , + 'email_username' => array( + 'length' => 'Mail serbitzariaren erabiltzaile izenaren eremuak 50 karaktere baino gutxiago izan behar ditu.', + 'required' => 'Mail serbitzariaren erabiltzaile izenaren eremua betetzea beharrezkoa da.', + ) , + 'facebook' => array( + 'title' => 'Facebook Konfigurazio aukerak', + 'app_id' => 'Facebook erabiltzailea', + ) , + 'https' => array( + 'enable_https' => 'Gaitu HTTPS', + 'title' => 'HTTPS', + ) , + 'map' => array( + 'zoom' => 'Zoom maila', + ) , + 'map_provider' => array( + 'choose' => 'Mapa hornitzailea aukeratu', + 'enter_api' => 'API gako berria sartu', + 'get_api' => 'API gakoa lortu', + 'name' => 'Maparen hornitzailea', + ) , + 'map_timeline' => 'Maparen denbora lerroa', + 'map_settings' => 'Maparen ezarpenak', + 'multiple_countries' => 'Ushahidi instalazio honek herrialde anitz onartzen ditu?', + 'select_default_location' => 'Mesedez, lehenetsitako herria aukeratu', + 'set_location' => 'Klik egin eta arrastatu, mapan zure kokapen zehatza ezartzeko.', + 'site' => array( + 'banner' => 'Lekuko bannerra', + 'blocks_per_row' => 'Blokeak ilarako', + 'cache_pages' => 'Cache orriak', + 'checkins' => 'Gaitu egiaztapenak', + 'default_category_colors' => 'Lehenetsitako koloreak kategori guztientzat', + 'default_category_icons' => 'Lehenetsitako ikonoak kategori guztientzat', + 'delete_banner_image' => 'Banner irudia ezabatu', + 'delete_default_map_all_icon' => 'Lehenetsitako ikonoa ezabatu', + 'display_contact_page' => 'Kontaktu orria erakutsi', + 'display_howtohelp_page' => '"Nola lagundu" orria erakutsi', + 'email_site' => 'Guneko email helbidea', + 'google_analytics' => 'Google Analytics', + 'items_per_page' => 'Elementuak orriko - Front End', + 'items_per_page_admin' => 'Elementuak orriko _ Administrazioa', + 'language' => 'Guneko hizkuntza', + 'manually_approve_users' => 'Erabiltzaileak eskuz onartu', + 'message' => 'Gunearen mezua', + 'name' => 'Gunearen izena', + 'private_deployment' => 'Hedapen pribatuak', + 'require_email_confirmation' => 'Erabiltzailearen email baieztapena beharrezkoa da.', + 'submit_report_message' => 'Bidali txosten mezua', + 'timezone' => 'Ordu gunea', + 'title' => 'Gunearen ezarpenak', + 'twitter_configuration' => 'Twitterren bilaketa zehaztapenak', + 'twitter_hashtags' => 'Hashtag - komekin banandu', + ) , + 'site_email' => array( + 'email' => 'Guneko emailaren eremuak ez du baliozko email helbidea', + 'length' => 'Gunearen email eremuak gutxienez 4 eta gehienez 64 karaktere izan behar ditu.', + ) , + 'site_name' => array( + 'length' => 'Gune honetako izen eremuak gutxienez 3 eta gehienez 50 karaktere izan behar ditu.', + 'required' => 'Gunearen izen eremua beharrezkoa da', + ) , + 'sms' => array( + 'title' => 'SMS Konfigurazio aukerak', + ) , + 'twitter' => array( + 'title' => 'Twitter Konfigurazio aukerak', + ) , + 'test_settings' => 'testaren ezarpenak', +); diff --git a/application/i18n/eu/sharing.php b/application/i18n/eu/sharing.php new file mode 100644 index 0000000000..e2b76658b5 --- /dev/null +++ b/application/i18n/eu/sharing.php @@ -0,0 +1,25 @@ + 'sarrera data', + 'date_added' => 'Gehitutako data', + 'last_access' => 'Azken sarrera', + 'sharing_color' => array( + 'length' => 'Koloredun eremuak 6 karaktere izan behar ditu.', + 'required' => 'Kolore eremua beharrezkoa da', + ) , + 'sharing_name' => array( + 'length' => 'Elkarbanatze izenak ez dirudi egokia denik', + 'required' => 'Elkarbanatze izena beharrezkoa da.', + ) , + 'sharing_url' => array( + 'exists' => 'URL hori dagoeneko existitzen da.', + 'length' => 'URL horrek ez dirudi zuzena denik.', + 'required' => 'URLa ezartzea beharrezkoa da.', + 'url' => 'Badirudi URL eremuan ez dagoela baliozko URLrik.', + ) , +); diff --git a/application/i18n/eu/stats.php b/application/i18n/eu/stats.php new file mode 100644 index 0000000000..ac85c23df4 --- /dev/null +++ b/application/i18n/eu/stats.php @@ -0,0 +1,42 @@ + 'Onartua', + 'categories' => 'Kategoriak', + 'category_impact' => 'Kategoria arrakasta', + 'category_impact_description' => 'Estatistika honetan txostenen lerro ikuspegia duzu denboran zehar. Mugi sagua ezkerretik eskubira ikuspegi konparatiboa eskuratzeko kategoria ezberdinetan. Sagua grafikoaren gainean detaile gehiago lortzeko.', + 'choose_date_range' => 'Aukeratu denbora tarte bat.', + 'countries' => 'Herriak', + 'country' => 'Herria', + 'country_breakdown' => 'Herri matxura', + 'description' => 'Hau estatistiken sekzioa da eta deskribapen orokorra izango du laster. Momentuz nabigatzen has zaitezke gainean dauden azpi kategoriak erabiltzen.', + 'error' => 'Akatza', + 'glossary' => 'Hiztegia', + 'hit_summary' => 'Ikustaldi laburpena', + 'legend' => 'Legenda', + 'pageviews' => 'Bisitaldiak', + 'pageviews_description' => 'Zure orrialdeko bisitariek ikusi dituzten orrialdeen kopurua', + 'reports' => 'Txostenak', + 'reports_categories' => 'Txosten kategoriak', + 'reports_statistics' => 'Txostenen estatistikak', + 'reports_status' => 'Txostenen egoera', + 'report_punchcard' => 'Orri zulatu txostena', + 'report_stats' => 'Estatistiken txostena', + 'stats_not_setup' => 'Estatistikak ez dira ezarri', + 'time_range_1' => 'Hilabete 1', + 'time_range_2' => '3 hilabete', + 'time_range_3' => '6 hilabete', + 'time_range_all' => 'Denak', + 'unapproved' => 'Aprobatu gabeak', + 'unique_visitors' => 'Bisitari bakarrak', + 'unique_visitors_description' => 'Zure hedapenera etorritako banakakoen kopurua. Bisitari bakarrak "cookie"-en bidez zehazten dira. "Cookie"-ak aktibaturik ez dituzten bisitariak identifikatzeko haien IP helbide, ebazpen, nabigatzaile, plugin, SO eta abarretik egindako heuristiko soil bat erabiliko da.', + 'unverified' => 'Ziurtatu gabeak', + 'verified' => 'Ziurtatua', + 'visitor_summary' => 'Bisitarien laburpena', + 'visits' => 'Bisitak', + 'visits_description' => 'Bisitaldi bat bisitari batek azken orrialde ikusitik gutxienez 30 minutu pasa direnean gordetzen da.', +); diff --git a/application/i18n/eu/tooltips.php b/application/i18n/eu/tooltips.php new file mode 100644 index 0000000000..55d55f243b --- /dev/null +++ b/application/i18n/eu/tooltips.php @@ -0,0 +1,25 @@ + array( + 'email_body' => 'Bialduko den emailaren gorputza', + 'email_subject' => 'Bialduko den emailaren gaia', + 'report_title' => 'Txostenera gehituko den lehenetsitako izenburua da hau', + ) , + 'default_value' => 'Bereiztu balio bakoitza komaz, adib. 1 balioa, 2 balioa, eta abar.', + 'dropdown_choices' => 'Bereiztu aukerautako elementu bakoitza komaz, adib. 1 elementua, 2 elementua, eta abar.', + 'private_to' => 'Hasi zerrendako bazkideei idazten.', + 'private_subject' => 'Mezu pribatuaren subjektua', + 'private_message' => 'Mezu pribatua', + 'profile_email' => 'Zure posta helbidea', + 'profile_public_url' => 'Helbide honetan zure profil publikoa aurkitu daiteke.', + 'profile_username' => 'Zure erabiltzailearen izena ezin izan da aldatu.', + 'settings_alert_email' => 'Helbide posta hau mezu alertak bidaltzeko erabiliko da.', + 'settings_configure_map' => 'kokapen egokia erakusteko mapa ezarri', + 'settings_default_category_colors' => 'Guneko kategoria guztientzako kolore kodea ezarri', + 'settings_default_category_icons' => 'Guneko kategoria guztientzako ikono bat ezarri', +); diff --git a/application/i18n/eu/ui_admin.php b/application/i18n/eu/ui_admin.php new file mode 100644 index 0000000000..30a87cab22 --- /dev/null +++ b/application/i18n/eu/ui_admin.php @@ -0,0 +1,319 @@ + 'Sarbidea eragotzita. Zure ziurtagiria ez da baliozkoa edo zure eskakisuna ukatu egin da.', + 'access_denied_others' => 'Sarbidea eragotzita. Zure eskakisuna ulertua, baina denbora moduko sarbide mugen ondorioz eragotzita. Saiatu berriz geroago', + 'access_level' => 'Sarbide maila', + 'actions' => 'Ekintzak', + 'add_to_category' => 'Kategoriara gehitu', + 'added' => 'gehitua', + 'added_edited' => 'gehitua/zuzendua', + 'addons' => 'Gehigarriak', + 'admin_role' => 'Administraria', + 'alerts' => 'Alertak', + 'alerts_received' => 'Jasotako alertak', + 'all' => 'Guztia', + 'am' => 'AM', + 'anonymous' => 'Ezezaguna', + 'anyone_role' => 'Edozein', + 'anywhere' => 'Edozein lekutan', + 'api_banned' => 'API debekatua', + 'api_logs' => 'API Saioak', + 'api_settings' => 'API Ezarpenak', + 'api_unban' => 'DEBEKUA KENDU', + 'api_unban_all' => 'DEBEKUA KENDU DENEI', + 'approved' => 'onartuta', + 'approve_auto' => 'auto onartu', + 'approve_manual' => 'eskuz onartu', + 'archived' => 'Artxibatu', + 'are_you_sure_you_want_to' => 'Ziur al zaude', + 'are_you_sure_you_want_to_delete_this_item' => 'Ziur al zaude elementua ezabatu nahi duzula?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Zihur zaude argazki hau ezabatu nahi duzula?', + 'are_you_sure_you_want_to_switch_forms' => 'Ziur zaude formularioak aldatu nahi dituzula?', + 'assign' => 'Esleitu', + 'assignments' => 'Zereginak', + 'assign_badge' => 'Badge-a esleitu', + 'author' => 'Egilea', + 'author_email' => 'Egilearen email-a', + 'back' => 'Atzera', + 'banip_action' => 'Debekatu IP-a', + 'between_times' => 'Denboren artea', + 'blocks' => 'Blokeak', + 'body' => 'Gorputza', + 'cancel' => 'Ezeztatu', + 'categories' => 'Kategoriak', + 'chart_display_error' => 'Erakusketa grafikoen akatsa', + 'check_message_valid' => 'Ziurtatu zure mezua baliozkoa dela, mesedez', + 'check_number' => 'Ziurtatu zenbakia baliozkoa dela, mesedez', + 'check_sms_settings' => 'Egiaztatu zure SMS ezarpenak, mesedez', + 'checkin_details' => 'Egiaztaturiko xehetasunak', + 'checkins' => 'Egiaztapenak', + 'cities_loaded' => 'Hiriak kargatuta', + 'code' => 'kodea', + 'code_out_of_sync' => 'Kode bertsioa sinkronizaziotik kanpo', + 'color' => 'Kolorea', + 'comments' => 'Iruzkinak', + 'confirmation_code' => 'Zure alertaren baieztapen kodea:', + 'confirm_msg' => 'Erabiltzailea izan da', + 'count' => 'Zenbatu', + 'country_not_found' => 'Herrialdea ez da aurkitu', + 'created_edited' => 'Sortu/Editatu', + 'create_report' => 'Txostena sortu', + 'critical_upgrade' => 'Berritze kritikoa', + 'csv' => 'CSV', + 'currently_active' => 'Aktiboa orain', + 'currently_inactive' => 'desaktiboa orain', + 'custom_forms_insufficient_permissions' => 'Ez daukazu behar beste baimen hurrengo eremu pertsonalizatuak editatzeko.', + 'daily' => 'Egunero', + 'dashboard' => 'Arbela', + 'database' => 'Datu basea', + 'date_time' => 'Data eta ordua', + 'date_added' => 'Gehitutako data', + 'date_modified' => 'Aldatze-data', + 'days_of_the_week' => 'Asteko eguna', + 'db_out_of_sync' => 'DB bertsioa sinkronizaziotik kanpo.', + 'deleted' => 'Ezabatua', + 'delete_action' => 'Ezabatu', + 'delete_badge' => 'Bereizgarria ezabatuta', + 'demo' => 'Demo', + 'description' => 'Deskribapena', + 'disabled' => 'Desgaitua', + 'divider_start_field' => 'Banatzailea hasi', + 'divider_end_field' => 'Banatzailea bukatu', + 'divider_class' => 'div class', + 'download_reports' => 'Txostenak jaitsi', + 'dropdown_choices' => 'Goitibeherako aukerak', + 'edited' => 'EDITATUA', + 'edited_by' => '-k editatua', + 'edit_action' => 'Editatu', + 'edit_log' => 'Saioa editatu', + 'email' => 'Email', + 'entire_collective' => 'Kolektibo osoa', + 'error_geocoding' => 'Geokodifikatze errorea! HTTP errorea', + 'error_imap' => 'IMAP PHP liburutegia ez da instalatu', + 'error_twitter' => 'Okerreko Kredentzialak', + 'error_msg' => 'Akatsa', + 'error_post_incident' => 'Ohiko galderak', + 'every_six_hours' => 'Sei orduro', + 'every_twelve_hours' => 'Hamabi orduro', + 'experimental' => 'Esperimentala', + 'faqs' => 'Ohiko galderak', + 'feed' => 'jarioa', + 'feedback' => 'Feedback', + 'feeds' => 'jarioak', + 'field_choices' => 'Aukeren lista', + 'field_default' => 'Balio lehenetsia', + 'field_datatype' => 'Datu mota', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markaduna', + 'field_datatype_numeric' => 'Zenbakizkoa', + 'field_datatype_text' => 'Testu librea', + 'field_height' => 'Altuera (ilaretan)', + 'field_hidden' => 'ezkutuko eremua', + 'field_maxlength' => 'Gehienezko hizkien luzera', + 'field_name' => 'Eremu izena', + 'field_toggle' => 'Ezkutatu', + 'field_toggle_no' => 'Ez', + 'field_toggle_yes_close' => 'Bai, Itxita lehenetsita', + 'field_toggle_yes_open' => 'Bai, Irekita lehenetsita', + 'file_not_found_upload' => 'Ezin da igotako fitxategia aurkitu', + 'file_open_error' => 'Ezin da fitxategia irakurtzeko zabaldu', + 'form_not_exists' => 'Formulario hau ez da existitzen!', + 'forum' => 'Foroa', + 'free_text_field' => 'Text Area eremua (testu librea)', + 'date_field' => 'Datu eremua', + 'radio_field' => 'Radio Button eremua', + 'checkbox_field' => 'Checkbox eremua', + 'dropdown_field' => 'Goitibeherako eremua', + 'from' => 'Nondik', + 'from_date' => 'Nondik', + 'geonames_timeout' => 'Geoizenen denbora-muga errorea', + 'get_help' => 'Laguntza lortu', + 'get_more_themes' => 'Gai gehiago eskuratu', + 'get_more_plugins' => 'Plugin gehiago eskuratu', + 'header_actions' => 'Ekintzak', + 'header_add_edit' => 'Gehitu/Aldatu', + 'header_email' => 'Email', + 'header_manage_users' => 'Kudeatu erabiltzaileak', + 'header_role' => 'Rola', + 'header_user' => 'Erabiltzailea', + 'help' => 'laguntza', + 'hourly' => 'Orduro', + 'incident_feed' => 'Jario-iturria honentzako', + 'installer_info' => 'Instalatzaile karpeta existitzen da oraindik. Instalatzaile karpeta ezabatu. Segurtasun ahultasun potentziala da.', + 'instance' => 'Instantzia', + 'instances' => 'Instantziak', + 'instance_details' => 'Instantzia xehetasunak', + 'invalid_parameter' => 'Baliogabeko parametroa', + 'ip_address' => 'IP helbidea', + 'is_date' => 'Hau datu eremua da?', + 'ispublic_visible' => 'Nork ikusi dezake erantzunak', + 'ispublic_submit' => 'Nork eman dezake erantzunak', + 'keyword' => 'Gakoa', + 'keywords' => 'Gakoak', + 'label_email' => 'Email helbidea:', + 'label_full_name' => 'Izen-abizenak', + 'label_password' => 'Pasahitza', + 'label_role' => 'Rola:', + 'label_username' => 'Erabiltzaile-izena', + 'layers' => 'Geruzak', + 'login_role' => 'Moderatzailea', + 'logout' => 'Saiotik irten', + 'logs' => 'Saioak', + 'manage' => 'Kudeatu', + 'manage_roles' => 'Rolak eta baimenak kudeautu', + 'manage_users' => 'Erabiltzaileak erakutsi', + 'manage_users_edit' => 'Erabiltzaileak gehitu/aldatu', + 'manage_public_listing' => 'Zure zerrenda publikoa kudeatu', + 'mark_as' => 'Markatu honela', + 'marked_as_not_spam' => 'ez spam moduan markatu', + 'marked_as_spam' => 'spam moduan markatu', + 'match_no_documents' => 'Ez zen aurkitu dokumenturik', + 'message' => 'Mezua', + 'messages' => 'Mezuak', + 'messages_laconica' => 'Laronica mezuak', + 'messages_twitter' => 'Twitter mezuak', + 'message_sent' => 'Zure mezua bidalia izan da!', + 'mhi' => 'MHI', + 'minute' => 'Minutu', + 'minutes' => 'Minutuak', + 'missing_parameter' => 'Galdutako parametroa', + 'moderator' => 'Moderatzailea', + 'modified' => 'zuzenduta', + 'modify_timezone' => 'Denbora eremu ezarpenak', + 'move_down_action' => 'behera mugitu', + 'move_up_action' => 'gora mugitu', + 'multiple_hosted_instances' => 'Instantzia anitzak ostatuta', + 'my_alerts' => 'Nire alertak', + 'my_checkins' => 'Nire egiaztapenak', + 'my_profile' => 'Nire profila', + 'my_reports' => 'Nire txostenak', + 'my_votes' => 'Botoen', + 'my_votes_up' => 'Positiboa', + 'my_votes_down' => 'negatiboa', + 'name' => 'Izena', + 'new_alert' => 'Alerta berria sortu', + 'new_private' => 'Mezu berria sortu', + 'new_password' => 'Pasahitz berria', + 'no' => 'Ez', + 'none_category_explanation' => 'Kategoria berezia da hau, txostenak bidaltzen dituzten erabiltzaileei ez zaie agertuko txostenak bidaltzeko formularioan. Hau erabiltzen da kategoria bat ezabatzen denean asignatzeko (kategoria gabeko txostenak)', + 'notification' => 'Jakinarazpena', + 'not_case_sensitive' => 'Ez ditu maiuskula eta miniskulak bereizten', + 'not_found' => 'Ez da aurkitu', + 'no_data' => 'Ez dago daturik. Ez dago emaitzik erakusteko.', + 'no_error' => 'Ez dago akatsik', + 'no_result_display_msg' => 'Emaitzik ez erakusteko!', + 'on_specific_count' => 'Kontaketa espezifikoa', + 'openids' => 'OpenID-ak', + 'page' => 'orria', + 'pages' => 'orriak', + 'page_not_found' => 'Orria ez da aurkitu', + 'page_not_found_message_with_contact' => 'Sentitzen dut, ikusten saiatzen ari zaren orria ez dago hemen.

Gure webgunetik kanpoko lotura bat jarraitu duzu?
Orri honetara guneko beste toki batetik iritsi bazata, mesedez jarri gurekin harremanetan, akatsa zuzendu dezagun.

Beste webgune bateko lotura jarraitu duzu?
Beste guneetako loturak batzuetan zaharkituta egon daitezke edo gaizki idatziak.Esaiguzu non zegoen eta saiatu gara beste gunearekin harremanetan jartzen arazoa konpontzeko.

Zuk idatzi duzu URLa?
Baliteke (URL) helbidea gaizki idatzia izana. Ziurtatu ongi idatzia dagoela, ortografia, maisukulak, eta abar.

', + 'page_not_found_message' => 'Barkatu, ikusi nahi duzun orrialdia ez da hemen aurkitzen', + 'parameters_used' => 'Erabilitako parametroak', + 'password' => 'Pasahitza', + 'password_reset' => 'Pasahitza berrezarri', + 'password_reset_message_line_1' => 'Adiskide', + 'password_reset_message_line_2' => 'Pasahitza berrezartzeko eskaera jaso dugu', + 'password_reset_message_line_3' => 'Pasahitza aldatzeko, mesedez klik egin azpiko estekan (bestenaz kopiatu eta zure nabigatzailean itsasi).', + 'password_reset_message_line_4' => 'Zuk eskatu bezala, zure pasahitza berrezarri da. Zure xehetasun berriak honako hauek dira', + 'password_reset_subject' => 'Ushahidi pasahitza berrezartu', + 'phone' => 'Telefonoa', + 'please_select' => 'Mesedez aukeratu', + 'pm' => 'PM', + 'post_method_not_used' => 'Datuak ez dira post metodoaz bidali', + 'preview' => 'Aurreikusi', + 'private_message' => 'Mezua', + 'private_messages' => 'Mezu pribatuak', + 'private_sent' => 'Mezu pribatua bidalia', + 'private_subject' => 'Gaia', + 'private_to' => 'Nori', + 'public_listing' => 'Zerrenda publikoak', + 'qualifiers' => 'Sailkatze', + 'read' => 'irakurri', + 'relevance' => 'Garrantzia', + 'report_title' => 'Txosten Titulua', + 'report_date' => 'Txosten Data', + 'reporters' => 'Txosten egileak', + 'reporter_levels' => 'Txosten-egile mailak', + 'reports' => 'Txostenak', + 'reputation' => 'Ospe puntuazioa', + 'required' => 'Nahitaezkoa', + 'reset' => 'Berrabiarazi', + 'response' => 'Erantzuna', + 'results' => 'Emaitzak', + 'revoke' => 'Ezeztatu', + 'riverid_exists_admin' => 'E-posta horrek badu CrowdmapID-k kudeatutako kontua! Erabiltzaileak lehendik duen Crowdmap pasahitza erabili behar du saioa hasteko.', + 'save_settings' => 'Ezarpenak gorde', + 'search' => 'Bilatu', + 'search_reports' => 'Txostenak bilatu', + 'searching_for' => 'honen bila', + 'security_info_encryption_key' => 'Enkriptatze gakoak oraindik ere balio lehenetsia du. Hau da, ez da ziurra eta aldatu egin behar da.', + 'security_info_https' => 'Gune hau HTTP bidez hornitzen da. Segurtasuna handitzeko HTTPS ezarri behar da.', + 'security_info_instructions' => 'Argibideak wikian daude eskuragarri:', + 'select_download_format' => 'Aukeratu txostenak deskargatzeko nahi duzun formatua: -', + 'select_field_type' => '--- Aukeratu eremu mota ---', + 'select_item' => 'Aukeratu elementua mesedez', + 'select_trigger_before_response' => 'Abiarazle bat hautatu behar duzu erantzun bat hautatu aurretik.', + 'select_trigger_before_qualifiers' => 'Abiarazle bat hautatu behar duzu sailkatzea definitu ahal izateko.', + 'sender' => 'Bidaltzailea', + 'send_to' => 'Honi bidali', + 'sent_from_website' => 'Mezu hau zure webgunetik bidalia izan da ordu honetan ', + 'server_time' => 'Zerbitzari ordua', + 'settings' => 'Ezarpenak', + 'showing_page' => 'Orria erakusten', + 'showing_results' => 'Emaitzak erakusten', + 'shown' => 'lagina', + 'special_category' => 'Kategoria berezia', + 'special_category_explanation' => 'Kategoria berezia da hau, txostenak bidaltzen dituzten erabiltzaileei ez zaie agertuko txostenak bidaltzeko formularioan. "Erreportari fidagarriak" ezaugarriarekin batera erabiltzen da.', + 'specific_area' => 'Arlo jakina', + 'state' => 'Rango', + 'statistics' => 'Estatistikak', + 'stats' => 'Estatistikak', + 'stats_collection_error' => 'Statistika bilketak huts egin du! Mesedez, saiatu berriro beranduago.', + 'stats_collection_error_short' => 'Statistika bilketak huts egin du!', + 'specific_days' => 'Egun jakinak', + 'subject' => 'Gaia', + 'superadmin_role' => 'Super Administraria', + 'task_performed' => 'Zeregina burutua', + 'text_field' => 'Textu eremua', + 'theme_name' => 'Izena', + 'title' => 'Kudeatu erabiltzaileak', + 'timeout' => 'Denbora-muga akatsa', + 'to' => 'nori', + 'total_records' => 'Erregistroen totala', + 'to_date' => 'nori', + 'translate_reports' => 'Txostenak itzuli', + 'trigger' => 'Aktibatzailea', + 'triggering_user' => 'Erabiltzaile aktibatzailea', + 'triggers' => 'Aktibatzaileak', + 'unapproved' => 'Aprobatu gabeak', + 'unknown' => 'Ez-jakina', + 'unknown_failure' => 'Akats ezezaguna', + 'unread' => 'Irakurri gabe', + 'unsubscribe_message' => 'Aurrerantzean ez duzualertarik jasoko hemendik', + 'update_link' => 'Egin klik hemen orain eguneratzeko', + 'upgrade_ushahidi' => 'Ushahidi eguneratu', + 'upgrade_ushahidi_status' => 'Ushahidi egoeraren eguneraketa', + 'upload_reports' => 'Txostenak kargatu', + 'user' => 'Erabiltzailea', + 'users' => 'Erabiltzaileak', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Egiaztatua/Egiaztatu gabea', + 'verify_unverify' => 'Egiaztatu/Egiaztatu gabe', + 'version' => 'Bertsioa', + 'version_available' => 'eguneraketa eskuragarri dago.', + 'video_encoding' => 'Bideo kodeketa', + 'view_private' => 'Mezu pribatuak', + 'view_site' => 'Gunea ikusi', + 'view_report' => 'Txostena ikusi', + 'welcome' => 'Ongi etorri,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Bai', + 'your_search_for' => 'Zure bilaketa', +); diff --git a/application/i18n/eu/ui_main.php b/application/i18n/eu/ui_main.php new file mode 100644 index 0000000000..e9f7f7d51e --- /dev/null +++ b/application/i18n/eu/ui_main.php @@ -0,0 +1,616 @@ + 'Honi buruz', + 'access' => 'Sarbidea', + 'access_limits' => 'Sarrera mugak', + 'account_name' => 'Kontuaren izena', + 'actions' => 'Ekintzak', + 'action_confirm' => 'Ekintza hau ezin da desegin. Ziur zaude jarraitu nahi duzula?', + 'activate' => 'Aktibatu', + 'active' => 'Aktiboa', + 'add' => 'Gehitu', + 'added_by' => 'Gehitu duena', + 'additional_data' => 'Datu gehigarriak', + 'additional_reports' => 'Txosten gehigarriak', + 'add_edit' => 'Gehitu/Aldatu', + 'add_field' => 'Eremu bat gehitu', + 'add_language' => 'Hizkuntza gehitu', + 'add_new' => 'Gehitu berria', + 'add_new_category' => 'Kategoria berria gehitu', + 'add_translation' => 'Itzulpena gehitu', + 'admin' => 'Kudeaketa', + 'alerts' => 'Alertak eskuratu', + 'alerts_alert_me' => 'Alerta bidalidazu txosten bat betetzen bada, edo gutxi gora behera:', + 'alerts_btn_send' => 'Nire alarta gorde', + 'alerts_email' => 'E-posta helbidea:', + 'alerts_enter_email' => 'e-posta helbidea sartu', + 'alerts_enter_mobile' => 'Sartu mugikor zenbakia herrialde kodearekin', + 'alerts_get' => 'Alertak lortu', + 'alert_has_been' => 'Alerta izan da', + 'alerts_mobile_phone' => 'Mugikor zenbakia:', + 'alerts_place_spot' => 'Edo gehitu kokapena beheko mapan eta jakinaraziko dizugu berri bat zugandik 20 kilometro edo gutxiagora bidaltzen denean', + 'alerts_place_spot2' => 'Ezin baduzu zure kokapena aurkitu, klikatu mapan kokapen egokia markatzeko.', + 'alerts_rss' => 'RSS jarioak (kopiatu beheko URLa)', + 'alerts_select_city' => 'Herria aukeratu', + 'alerts_step1_select_city' => 'Bat: Herria aukeratu:', + 'alerts_step2_send_alerts' => 'Bi: Bidali alertak hona:', + 'alerts_step3_select_catgories' => 'Hiru (hautazkoa): Kategoriak aukeratu', + 'alert_confirm_previous' => 'Konfirmatu alerta eskakizuna', + 'alert_saved' => 'Zure alerta gorde da!', + 'all' => 'Denak', + 'allowed' => 'Baimenduta', + 'allowed_tags' => 'Onartutako HTML ekiketak: "%s".', + 'allowed_iframes' => '%s-eko Iframeak bakarrik daude baimenduak.', + 'all_categories' => 'Kategoria guztiak', + 'all_time' => 'Denbora guztia', + 'and' => 'eta', + 'api' => 'API', + 'approve' => 'Onartu', + 'approved' => 'Onartua', + 'approved_reports' => 'Onartutako alertak', + 'approve_this_report' => 'Onartu alerta hau', + 'approximate' => 'Gerturatu', + 'archive' => 'Artxibatu', + 'archived' => 'Artxibatua', + 'ascending' => 'Goruntz', + 'at' => 'lekua', + 'author' => 'Sortzailea', + 'auto_checkin' => 'Sarrera automatikoa', + 'avg_reports_per_day' => 'Txostenak batazbeste eguneko', + 'awaiting_approval' => 'Onartzearen zain', + 'awaiting_verification' => 'Bereifikazioaren zain', + 'badge' => 'Ikurra', + 'badges' => 'Ikurrak', + 'badge_image' => 'Ikurraren irudia', + 'badge_image_upload_your_own' => 'Zure ikur propioa igo dezakezu.', + 'badge_pack' => 'Ikur paketea', + 'badge_select' => 'Ikurra aukeratu', + 'blog' => 'Bloga', + 'browse_profiles' => 'Profilak nabigatu', + 'cancel' => 'Ezeztatu', + 'categories' => 'Kategoriak', + 'category' => 'Kategoria', + 'category_filter' => 'Kategoria filtroa', + 'category_has_been' => 'Kategoria izan da', + 'category_name' => 'Kategoria izena', + 'change_date_range' => 'Data eremua aldatu', + 'change_password' => 'aldatu pasahitza', + 'change_picture' => 'Irudia aldatu', + 'choose' => 'Aukeratu', + 'choose_data_points' => 'Aukeratu datu puntuak deskargatzeko', + 'choose_date_range' => 'Edo zure data eremua aldatu', + 'choose_field_type' => 'Aukeratu datu mota', + 'cleanurl' => 'URL garbiak', + 'clear' => 'Garbitu', + 'clear_map' => 'Mapa garbitu', + 'close' => 'Gorde', + 'clusters' => 'klusterrak', + 'color' => 'Kolorea', + 'comment' => 'Iruzkina', + 'comments' => 'Iruzkinak', + 'comment_details' => 'Iruzkinaren zehetasunak', + 'configuration_saved' => 'Zure aukerak gorde dira!', + 'configure' => 'Konfiguratu', + 'confirm_email_successful' => 'Ondi baieztatu duzu zure e-posta! Saioa hasi behean.', + 'confirm_email_failed' => 'E-posta konfirmazioan huts! konfirmazio e-post berria eska dezakezu behean.', + 'contact' => 'Kontaktatu', + 'contact_code' => 'Segurtasun kodea', + 'contact_email' => 'E-posta helbidea:', + 'contact_message' => 'Mezua', + 'contact_message_has_send' => 'Zure mezua bidali da!', + 'contact_name' => 'Zure izena', + 'contact_phone' => 'Zure telefono zenbakia', + 'contact_send' => 'Mezua bidali', + 'contact_subject' => 'Mezuaren izenburua', + 'copyright' => 'Copyleft ©', + 'create' => 'Sortu', + 'create_edit' => 'Sortu/Editatu', + 'create_new' => 'Berria sortu', + 'create_new_password' => 'Pasahitz berria sortu', + 'create_report' => 'Txostena sortu', + 'credibility' => 'Sinesgarritasuna', + 'current_password' => 'Egungo pasahitza', + 'custom_fields' => 'Eremu pertsonalizatuak', + 'data' => 'informazioa', + 'date' => 'Data', + 'date_format' => '(hh/ee/uuuu)', + 'date_time' => 'Data eta ordua', + 'day' => 'eguna', + 'deactivate' => 'Ez-aktibo', + 'default_location_name' => 'Nairobi, Kenia', + 'delete' => 'Ezabatu', + 'deleted' => 'Ezabatua', + 'deletes' => 'Ezabatuak', + 'delete_disabled' => 'Ezabatzea desgaitua', + 'delete_last' => 'Azkena ezabatu', + 'delete_report' => 'Txosten hau ezabatu', + 'delete_selected' => 'Aukeratutako ezabatu', + 'delete_spam' => 'Spam-a ezabatu', + 'demo' => 'Demo', + 'description' => 'Deskribapena', + 'descending' => 'Beheruntz', + 'detailed_location_example' => 'Adibidez: Corner of City Market, 5th Street & 4th Avenue, Johannesburg', + 'details' => 'Xehetasunak', + 'direct_report' => 'Zuzeneko txostena', + 'disabled' => 'Desgaitua', + 'disapprove' => 'Aprobatu gabeak', + 'download_reports' => 'Txostenak jaitsi', + 'download' => 'Jeitsi', + 'edit' => 'Editatu', + 'edit_form_fields' => 'Editatu formularioaren eremuak', + 'edit_report' => 'Editatu txostenak', + 'email' => 'E-posta', + 'email_address' => 'E-posta helbidea:', + 'email_configuration' => 'Posta zerbitzariaren ezarpenak', + 'email_server_host' => 'Posta zerbitzariaren host-a', + 'email_server_password' => 'Posta zerbitzariaren pasahitza', + 'email_server_port' => 'Posta zerbitzariaren ataka', + 'email_server_ssl_support' => 'Posta zerbitzarian SSL onartu', + 'email_server_type' => 'Posta zerbitzariaren mota', + 'email_server_username' => 'Posta zerbitzariaren erabiltzailea', + 'email_settings_comment_0' => 'beraz zure ezarpenak e-posta honekin erlazionatu behar dira', + 'email_settings_comment_00' => 'Txostenak emailez jasotzeko, mesedez ezarri zure e-posta kontuaren ezarpenak behean. Gogoan izan e-posta hauek zure', + 'email_settings_comment_1' => 'Zenbait zerbitzari e-posta helbide osoa eskatzen dute', + 'email_settings_comment_2' => 'E-posta pasahitza', + 'email_settings_comment_3' => 'Ohiko portuak: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Adibidez: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Adibideak: pop3, imap', + 'email_settings_comment_6' => 'SSL konexioak gaitu edo desgaitu', + 'empty' => '--HUTSIK---', + 'end_point' => 'honi', + 'error' => 'Akatsa', + 'example' => 'Adibidea', + 'example_country' => 'Kenia', + 'external_apps' => 'Kanpo aplikazioak', + 'external_video_link' => 'Kanpo bideo esteka', + 'facebook' => 'Facebook', + 'feed' => 'Jarioa', + 'feedback' => 'Eman Feedback-a', + 'feeds' => 'Jarioak', + 'feed_has_been' => 'Jario iturria izan da', + 'feed_items' => 'Jario iturri artikuluak', + 'feed_name' => 'Jario izena', + 'feed_url' => 'Jario URLa', + 'field_unused' => 'Erabili gabeko kolumna', + 'file' => 'Fitxategia', + 'file_over_max_allowed' => 'Ahalmendutako tamaina maximotik goragokoa da zure fitxategia', + 'filters' => 'Iragazkiak', + 'filter_reports' => 'Iragazi txostenak', + 'filter_reports_by' => 'Iragazi txostenak honen arabera', + 'filter_reports_contain' => 'Ondokoa duten txostenak iragazi', + 'find' => 'Bilatu', + 'find_location' => 'Bilatu kokapena', + 'first_name' => 'Izena', + 'force_run_scheduler' => 'Ordutegia abiaraztea behartu', + 'forgot_password' => 'Pasahitza ahaztu duzu?', + 'form' => 'Inprimakia', + 'forms' => 'Inprimakiak', + 'form_description' => 'Inprimakiaren deskribapena', + 'form_edit' => 'Editatu inprimakia', + 'form_has_been' => 'Formularioarekin gertatu dena', + 'form_title' => 'Inprimakiaren izenburua', + 'from' => 'Nondik', + 'full_name' => 'Izen-abizenak', + 'geolocation_available' => 'GeoLokalizazioa eskuragarri', + 'geometry_color' => 'Kolorea', + 'geometry_comments' => 'Iruzkinak', + 'geometry_label' => 'Etiketa', + 'geometry_strokewidth' => 'Zabalera tartea', + 'go' => 'Joan', + 'hashtag' => 'Traola', + 'has_been' => 'Izan da', + 'help' => 'Nola lagundu', + 'hidden' => 'Ezkutuan', + 'hide' => 'Ezkutatu', + 'hide_this_message' => 'ezkutatu mezu hau', + 'home' => 'Hasiera', + 'how_to_report' => 'Txostena nola egin', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Gune honetan zu beste erabiltzaile batzuen aurrean identifikatzeko erabilia.', + 'image' => 'Irudia', + 'images' => 'Irudiak', + 'image_icon' => 'Irudia/Ikonoa', + 'inactive' => 'Ez-aktiboa', + 'inbox' => 'Sarrera-ontzia', + 'incident' => 'Gertakaria', + 'incidents_nearby' => 'Gertakariak hurbil', + 'incident_location' => 'Gertakariaren kokapena', + 'include' => 'Erantsi', + 'include_categories' => 'Erantsi kategoriak', + 'include_custom_fields' => 'Erantsi eremu pertsonalizatuak', + 'include_description' => 'Erantsi deskribapena', + 'include_detail' => 'Erantsi ahalik eta zehaztapen handienarekin', + 'include_latitude' => 'Erantsi latitudea', + 'include_location_information' => 'Erantsi kokapen-informazioa', + 'include_longitude' => 'Erantsi longitudea', + 'include_personal_info' => 'Informazio pertsona gehitu', + 'incoming_media' => 'Sarrerako multimedia', + 'information_evaluation' => 'Informazioaren ebaluazioa', + 'input_location' => 'Sartu zure kokapen zehatza', + 'insufficient_role' => 'Zure kontuak ez du baimen egokirik saioa hasteko. Mesedez jarri harremanetan administratzailearekin.', + 'in_response_to' => 'Erantzunez', + 'ip_address' => 'IP helbidea', + 'is_this_your_profile' => 'Hau al da zure profila?', + 'item' => 'elementua', + 'items' => 'elementuak', + 'item_details' => 'elementu_detaileak', + 'item_title' => 'Elementu Izenburua', + 'key' => 'Giltza', + 'keywords' => 'Gakoak', + 'kml_kmz_file' => 'KMZ/KML fitxategia', + 'kml_kmz_upload' => 'Igo KMZ/KML fitxategia', + 'kml_url' => 'KML URLa', + 'laconica' => 'Laconica', + 'language' => 'Hizkuntza', + 'last' => 'Azken', + 'last_month' => 'Azken hilabetea', + 'last_name' => 'Abizena', + 'last_year' => 'Azken urtea', + 'latitude' => 'Latitudea', + 'layers' => 'Geruzak', + 'layers_filter' => 'Beste geruzak', + 'layer_has_been' => 'Geruza izan da', + 'layer_name' => 'Geruza izena', + 'layer_url' => 'Geruza URLa', + 'leave_a_comment' => 'Utzi iruzkina', + 'less_information' => 'Informazio gutxiago', + 'level' => 'Maila', + 'level_has_been' => 'Maila izan da', + 'level_name' => 'Maila izena', + 'limited' => 'Limitatua', + 'link' => 'Lotura', + 'list' => 'Zerrenda', + 'loading_reports' => 'Txostenak kargatzen', + 'location' => 'Kokapena', + 'locations' => 'Kokapenak', + 'location_example' => 'Hiria, lurraldea edota herrialdea', + 'login' => 'Saio-hasiera', + 'login_account_creation_successful' => 'Kontua ondo sortu da. Saioa hasi dezakezu.', + 'login_confirmation_sent' => 'Baieztapena zure e-posta helbidera bidali da.', + 'login_email_doesnt_exist' => 'E-posta helbidea ez da existitzen. Sartu beste helbide bat edo sortu kontu bat.', + 'login_select_openid' => 'Egin klik zure kontu-hornitzailean', + 'login_with' => 'Hasi hasi honekin', + 'login_userpass' => 'E-posta eta pasahitza', + 'login_openid' => 'OpenID', + 'login_signup' => 'Eman izena', + 'login_signup_click' => 'Sortu kontua', + 'login_signup_confirmation_message' => 'Eskerrik asko erregistratzeagatik %1$s (e)an. Zure e-posta helbidea egiaztatzeko, mesedez, ondorengo URLra joan: %2$s', + 'login_signup_confirmation_subject' => 'Baieztapen harpidetzea', + 'login_signup_admin_approval_subject' => 'Erabiltzaile Berriaran Onarpena', + 'login_signup_approval_subject' => 'Erabiltzaile kontua onartua izan da', + 'login_signup_text' => 'Sortu orain kontu bat eta aprobetxatu guneko ezaugarri gehiagoz.', + 'longitude' => 'Longitudea', + 'map' => 'Mapa', + 'mark_read' => 'Markatu irakurritako gisa', + 'mark_unread' => 'Markatu ez-irakurri gisa', + 'maximum_filesize' => 'Fitxategi-tamaina maximoa', + 'media' => 'Multimedia', + 'media_filter' => 'Multimedia iragazkia', + 'members' => 'Bazkideak', + 'manage_your_account' => 'Kudeatu zure kontua', + 'message' => 'Mezua', + 'messages' => 'Mezuak', + 'message_details' => 'Mezuaren xehetasunak', + 'message_non_numeric_source' => 'Ez zenbakizko iturburu batetik mezua:', + 'mobile' => 'Mugikorra', + 'modify' => 'Aldatu', + 'modify_date' => 'Data aldatu', + 'month' => 'hilabetea', + 'more' => 'Gehiago', + 'more_information' => 'Informazio gehiago', + 'multi_country_instance' => 'Ushahidi instalazio honek herrialde anitz onartzen ditu?', + 'must_confirm_email_address' => 'Zure e-posta helbidea baieztatu behar duzu hedapena honetan sartzeko. Zure baieztapen e-posta galdu baduzu, berri bat eskatu ahal izango duzu azpian.', + 'name' => 'Izena', + 'nearby_report' => 'Hurbileko txostena', + 'new' => 'Berria', + 'news' => 'Berriak', + 'news_feeds' => 'Berri-jarioa', + 'news_source' => 'Berriaren iturria', + 'new_category' => 'Kategoria berria', + 'new_password' => 'Pasahitz berria', + 'new_report' => 'Txosten berria', + 'next' => 'Hurrengoa', + 'no' => 'Ez', + 'no_checkins' => 'Azterketarik ez erakusteko', + 'no_data' => 'Daturik ez', + 'none' => 'Ezer ez', + 'notices' => 'Jakinarazpenak', + 'not_approved' => 'Ez onartua', + 'not_approved_singular' => 'Ez onartua', + 'not_selected' => '---Aukeratu gabe---', + 'not_spam' => 'Ez da spam', + 'not_specified' => 'Zehaztu gabea', + 'no_reports' => 'Ez dago txostenik', + 'no_results' => 'Ez dago emaitzarik', + 'off' => 'Itzalita', + 'official_news' => 'Berri ofizial & mainstream-ak', + 'on' => 'Piztuta', + 'option' => 'Aukera', + 'optional' => 'Hautazkoa', + 'options' => 'Aukerak', + 'organization' => 'Erakundea', + 'organizations' => 'Erakundeak', + 'organization_description' => 'Erakundearen deskribapena', + 'organization_email' => 'Erakundearen e-posta', + 'organization_has_been' => 'Organizazioa izan da', + 'organization_name' => 'Erakundearen izena', + 'organization_phone_1' => 'Erakundearen Telefonoa 1', + 'organization_phone_2' => 'Erakundearen Telefonoa 2', + 'organization_website' => 'Erakundearen Webgunea', + 'original' => 'Jatorrizkoa', + 'original_description' => 'Jatorrizko deskribapena', + 'original_title' => 'Jatorrizko izenburua', + 'other_ushahidi_instances' => 'Beste Hedapenak', + 'outbox' => 'Irteerako erretila', + 'outgoing' => 'Bidaltzekoa', + 'page' => 'Orria', + 'pages' => 'Orriak', + 'page_description' => 'Orriaren deskribapena', + 'page_has_been' => 'Orrialdea Izan Da', + 'page_tab_name' => 'Orrialde leihotxoaren izena', + 'page_title' => 'Orriaren Izenburua', + 'parent_category' => 'Kategoria nagusia', + 'password' => 'Pasahitza', + 'password_again' => 'Pasahitza egiaztatu', + 'password_changed_successfully' => 'Pasahitza ongi aldatu da. Hasi saioa behean.', + 'password_forgot' => 'Pasahitza ahaztu duzu?', + 'password_reset_confirm' => 'Begiratu zure emaila pasahitz berria eskuratzeko.', + 'password_save' => 'Konektatua egon ordenagailu honetan?', + 'past_month' => 'Aurreko hilabetea', + 'past_year' => 'Aurreko urtea', + 'pending' => 'Egiteke', + 'per' => 'per', + 'personal_information' => 'Informazio pertsonala Hautazkoa.', + 'phone' => 'Telefonoa', + 'photos' => 'Argazkiak', + 'pictures' => 'Irudiak', + 'pictures_and_videos' => 'Irudi eta bideoak', + 'pinpoint_location' => '*Bilatu zure kokapena toki-izen bat erabiliz EDO latitude, longitude koordenadak (formatua: 38.19,85.61), EDO egin klik mapan kokapen egokia seinalatzeko.', + 'play' => 'Hasi', + 'please_note' => 'Mesedez kontuan izan', + 'plugins' => 'Gehigarriak', + 'plugin_url' => 'Gehigarrien webgunea', + 'public_profile' => 'Profil publikoa', + 'public_profile_url' => 'Profil publikoaren URL', + 'preview' => 'Aurreikusi', + 'preview_item' => 'Aurreikusi elementua', + 'preview_message' => 'Aurreikusi mezua', + 'previous' => 'Aurrekoa', + 'private' => 'Pribatua', + 'profile_color' => 'Profil Kolorea', + 'profile_saved' => 'Zure profila gorde da', + 'quick_stats' => 'Estatistika laburrak', + 'rating' => 'Balorazioa', + 'read' => 'Irakurri', + 'receive' => 'Jaso', + 'receive_from' => 'Nondik jasoa', + 'receive_notifications' => 'Jakinarazpenak jaso', + 'recent_reports' => 'Azken txostenak', + 'refresh_news_feeds' => 'Berri-jarioa eguneratu', + 'registered_email' => 'Erregistratutako emaila', + 'remove' => 'Ezabatu', + 'reply' => 'Erantzun', + 'report' => 'Txostena', + 'reports_listed' => 'Txostenak(maparenak, ordena kronologikoan ordenatua)', + 'reporter' => 'Txosten egilea', + 'reporters' => 'Txosten egileak', + 'reporter_date' => 'Txosten Data', + 'reporter_email' => 'Txosten-egile posta-e', + 'reporter_first_name' => 'Txosten-egile Izena', + 'reporter_has_been' => 'Txosten-egile Izan Da', + 'reporter_ip' => 'Txosten-egile IP Helbidea', + 'reporter_last_name' => 'Txosten-egile Abizena', + 'reporter_level' => 'Txosten-egile maila', + 'reporter_levels' => 'Txosten-egile mailak', + 'reporter_phone' => 'Txosten-egile telefonoa', + 'reports' => 'Txostenak', + 'reports_btn_browse' => 'Nabigatu', + 'reports_btn_submit' => 'Bidali', + 'reports_by_this_user' => 'Erabiltzaile Honen Txostenak', + 'reports_categories' => 'Kategoriak', + 'reports_count' => '%d Txosten', + 'reports_date' => 'Data', + 'reports_description' => 'Deskribapena', + 'reports_download_csv' => 'Txostenak CSV formatuan deskargatuko dira', + 'reports_email' => 'E-posta', + 'reports_features' => 'Ezaugarriak', + 'reports_find_location' => 'Aurkitu zugandik hurbil dagoen kokapen bat', + 'reports_first' => 'Izena', + 'reports_last' => 'Abizena', + 'reports_location_name' => 'Kokapenaren izena', + 'reports_news' => 'Berrien Iturriaren Esteka', + 'reports_optional' => 'Hautazko informazioa', + 'reports_photos' => 'Argazkiak igo', + 'reports_return' => 'Txostenen orrira bueltatu', + 'reports_select_city' => 'Hiria aukeratu', + 'reports_submitted' => 'Zure Txostena gure taldera bidali da berrikusteko. Bueltan bidaliko dizugu ahalik eta laisterren.', + 'reports_submit_new' => 'Bidali Txosten Berri bat.', + 'reports_time' => 'Denbora', + 'reports_timeline' => 'Denbora-lerroaren txostenak', + 'reports_title' => 'Txosten Titulua', + 'reports_video' => 'Bideo esteka', + 'report_an_incident' => 'Gertaera baten Txostena egin.', + 'report_details' => 'Txostenaren Zehaztasunak', + 'report_option_1' => 'Mezu bat hona bidaliz', + 'report_option_2' => 'E-posta bat bidaliz', + 'report_option_3' => 'Txio bat bidaliz Traolekin:', + 'report_option_4' => 'Formulario hau betez gure webgunean.', + 'report_option_external_apps' => 'App bat erabiliz', + 'report_saved' => 'Zure Txostena gorde da', + 'report_title' => 'Txosten Titulua', + 'request_information' => 'Informazio geihago eskatu', + 'request_location' => 'Kokapena eskatu', + 'required' => 'Beharrezkoa', + 'requirements' => 'Beharrezkoak', + 'resend_confirm_email' => 'Konfirmazio e-posta berbidali', + 'reset' => 'Berrabiarazi', + 'reset_all_filters' => 'Iragazki guztiak Berrabiarazi', + 'reset_password' => 'Gakoa Berrabiarazi', + 'retrieve_city_names' => 'Aukeratutako nazioaren hiriburuak eskuratu', + 'riverid_information' => '%s zerbitzuak kudeatutako kontuak', + 'riverid_exists_login' => 'Dagoeneko baduzu CrowdmapID-k kudeatzen kontua! Saiatu zure CrowdmapID e-posta eta pasahitza erabiliz saioa hasten.', + 'role' => 'Rola', + 'rss' => 'RSS', + 'save' => 'Gorde', + 'saved' => 'Gordeta', + 'save_add_new' => 'Gorde eta berria', + 'save_close' => 'Gorde eta itxi', + 'save_report' => 'Txostena gorde', + 'schedule' => 'Planifikazioa', + 'scheduler' => 'Planifikatzailea', + 'scheduler_day' => 'Eguna', + 'scheduler_hour' => 'Ordua', + 'scheduler_log' => 'Planifikazio loga', + 'scheduler_minute' => 'Minutu', + 'scheduler_weekday' => 'Asteko eguna', + 'search' => 'Bilatu', + 'search_results' => 'Bilaketaren emaitzak', + 'security_code' => 'Segurtasun kodea', + 'select_all' => 'Guztia aukeratu', + 'select_field_type' => 'Aukeratu Eremu Tipoa', + 'select_form_type' => 'Aukeratu Eremu Tipoa', + 'select_in_map' => 'Mapan aukeratu', + 'select_multiple' => 'Aukeratu behar beste', + 'select_one' => 'Mesedez ziurtatu gaia egiaztatu izana', + 'select_theme' => 'Txantiloia aukeratu', + 'send' => 'Bidali', + 'send_confirmation' => 'Baieztapena bidali', + 'sending_to' => 'Honi bidaltzen', + 'sent' => 'Bidali', + 'sent_by' => 'Honek bidalia', + 'server_address' => 'Zerbitzariaren helbidea', + 'server_type' => 'Zerbitzari mota', + 'service' => 'Zerbitzua', + 'service_username' => 'Zerbitzuaren erabiltzaile-izena', + 'service_user_id' => 'Erabiltzaile ID zerbitzua', + 'share' => 'Elkarbanatu', + 'shared_data' => 'Elkarbanatze data', + 'share_has_been' => 'Elkarbanatu da', + 'sharing' => 'Elkarbanatzen', + 'shorter_map' => 'Mapa laburragoa', + 'show' => 'Ikusi', + 'show_all' => 'Guztiak ikusi', + 'show_messages' => 'Mezuak ikusi', + 'showing_reports_from' => '%1$s (e)tik %2$s rainoko txostenak erakusten', + 'site' => 'Webgunea', + 'site_email_address' => 'gunearen posta helbidea', + 'site_url' => 'Gunearen URLa', + 'smaller_map' => 'Mapa txiliagoa', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Barkatu, ez duzu ikurrik', + 'source' => 'Iturria', + 'source_name' => 'Iturburu izena', + 'sort' => 'Ordenatu', + 'sort_by' => 'Honekin ordenatu', + 'source_url' => 'Iturburu URL', + 'spam' => 'Spama', + 'ssl_support' => 'SSL euskarria?', + 'start_point' => 'Nondik', + 'step' => 'Pauso', + 'submit' => 'Bidali txostena', + 'submitted_by' => '%1$s (e)k bidalia %2$s bitartez', + 'submit_sms' => 'SMS bidez bidali', + 'submit_sms1' => 'Bidali zure SMSa honi', + 'submit_sms2' => 'zure mugikorrean', + 'success' => 'Arrakasta!', + 'successfuly_imported' => 'Inportazioak arrakasta izan du', + 'surname' => 'Abizena', + 'survey' => 'Inkesta', + 'system' => 'Sistema', + 'taller_map' => 'Mapa tailerra', + 'tcp_port' => 'TCP portua', + 'themes' => 'Gaiak', + 'theme_default' => 'Ushahidi gai lehenetsia', + 'theme_settings' => 'Gaiaren ezarpenak', + 'this' => 'Hau', + 'this_day' => 'Gaur', + 'this_month' => 'Hilabete hau', + 'this_week' => 'Aste hau', + 'this_year' => 'Urte hau', + 'this_is_your_profile' => 'Hau da zure profila', + 'time' => 'Ordua', + 'title' => 'Izenburua', + 'to' => 'nori', + 'today' => 'Gaur', + 'today_at' => 'Gaur', + 'token' => 'Token', + 'total_reports' => 'Txostenen totala', + 'translated' => 'Itzulita', + 'translated_description' => 'Itzulitako deskribapena', + 'translated_title' => 'Itzulitako izenburua', + 'translate_to' => 'Itzuli', + 'translation' => 'Itzulpena', + 'translation_saved' => 'Itzulketa gorde da', + 'trusted' => 'Egiaztatua', + 'type' => 'Mota', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Ezinezkoa da e-posta bidaltzea.', + 'uncategorized_reports' => 'Kategoriarik gabeko txostenak', + 'unread' => 'Irakurri gabe', + 'unverified' => 'Ziurtatu gabeak', + 'update_feeds' => 'Jario-iturriak eguneratu', + 'upload' => 'Igo', + 'upload_guide' => 'Ikusi gure txosten Igoera gidak: -', + 'upload_docs_1' => 'XML igoera gida', + 'upload_docs_2' => 'CSV igoera gida', + 'upload_file' => 'Igotzeko fitxategia', + 'upload_reports' => 'Txostenak kargatu', + 'upload_reports_custom_forms' => 'Eremu pertsonalizatuak diren zutabeek beraien form_id erantsita izan behar dute, adibidez Test eremu pertsonalizatua jatorrizko formarioren ID-a 1 bada orduan Test-1 izango da. Formulario pertsonalizatuen inportazioetan gogoan izan hau.', + 'upload_reports_detail_1' => 'Beheko formularioarekin, gertakariak inporta ditzakezu Ushahidiren motorrera.', + 'upload_reports_detail_2' => 'Txostenak CSV edo XML formatuan igo behar dira.', + 'upload_reports_detail_3' => 'Istilu ID bat dagoeneko datu-basean badago, CSV/XML fitxategiko sarrera horri ez ikusia egingo zaio.', + 'upload_reports_detail_4' => 'Gutxienez Gertaeran izenburua eta Gertaeraren data behar dira', + 'upload_reports_detail_4b' => 'Ez badira latitude eta longitude kolimnak zehazten, kokapena Google Geocoder erabiliz egingo da.', + 'upload_reports_detail_4c' => 'informazio gehiago inportatzen ari bazara, informazio pertsonala adibidez edo/eta inprimaki-eremu pertsonalizatuak', + 'upload_reports_detail_4d' => 'Gutxienez informazio pertsonal eremu bat (izena, abizenak, helbide elektronikoa) BEHARREZKOA da. Hutsik dauden erregistroak ez dira inportatuko', + 'upload_reports_detail_4e' => 'Zure sarrerak goitibeherako eremuarentzako, irrati botoientzako eta kontrol-laukientzako bat datoz eremu pertsonalizatuan emandako instantziarekin', + 'upload_reports_detail_4f' => 'Kontrol-lauki aukerak koma batez bereiztuak daude, adibidez, zure aukera sagar, mahats eta mango fruituen hautaketa bada, sarrerak honela izan behar du "sagarrak, mahatsa, mangoak"', + 'upload_reports_detail_4g' => 'Data eremuan balioak honako formatua izan behar du: yyyy/mm/dd adibidez, 2012ko Urriak 3 = 2012/10/03', + 'upload_reports_detail_5' => 'CSV txosten adibidea', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Ongi ingo da', + 'upload_video' => 'Bideoa igo', + 'url' => 'URL', + 'user' => 'Erabiltzailea', + 'username' => 'Erabiltzaile-izena', + 'ushahidi_admin' => 'Ushahidi Administraria', + 'verification' => 'Egiaztepena', + 'verified' => 'Ziurtatua', + 'verified_reports' => 'Ziurtatutako txostenak', + 'verify' => 'Ziurtatu', + 'verify_this_report' => 'Ziurtatu txosten hau', + 'version' => 'Bertsioa', + 'via' => 'erabiliz', + 'video' => 'Bideoa', + 'view' => 'Ikusi', + 'views' => 'Ikuspenak', + 'view_all' => 'Guztia ikusi', + 'view_all_feeds' => 'Ikusi jario-iturri guztiak', + 'view_all_reports' => 'Ikusi txosten guztiak', + 'view_items' => 'Elementuak ikusi', + 'view_more' => 'Ikus gehiago', + 'view_public_profile' => 'Ikusi profil publikoa', + 'view_report' => 'Txostena ikusi', + 'view_reports' => 'Txostenak ikusi', + 'view_video' => 'Bideoa ikusi', + 'visible' => 'Ikusgai', + 'waiting_approval' => 'Onartzearen zain', + 'waiting_verification' => 'Bereifikazioaren zain', + 'wider_map' => 'Mapa zabalagoa', + 'web_form' => 'Web inprimakia', + 'web' => 'Webgunea', + 'weight' => 'Pisua', + 'yes' => 'Bai', + 'yesterday' => 'Atzo', + 'your_dashboard' => 'Zure Arbela', + 'your_file' => 'Zure fitxategia', + 'zoom_in' => 'Zooma gerturatu', + 'zoom_out' => 'Zooma urrundu', +); diff --git a/application/i18n/eu/upgrade.php b/application/i18n/eu/upgrade.php new file mode 100644 index 0000000000..1486eaec3b --- /dev/null +++ b/application/i18n/eu/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Data eremu baliogabea. 0 balioa Ez, 1 balioa, Bai', + ) , + 'upgrade_automatic' => 'Eguneraketa automatikoa', + 'upgrade_available' => 'Eskuragarri dauden eguneraketak', + 'upgrade_continue_btn_text' => 'Jarraitu', + 'upgrade_db_btn_text' => 'Eguneratu', + 'upgrade_db_text_1' => 'Ongi da, zure datu basea eguneratuko da bertsiotik', + 'upgrade_db_text_2' => 'datu base bertsiorik berriena', + 'upgrade_db_text_3' => 'Egin klik "Eguneratu" botoian eta erlaxatu magia egiten dudan bitartean.', + 'upgrade_db_text_4' => 'Oh, eta gainera nik zure datu basea eguneratzea nahi baduzu, hautatu azpian aukera eta momentu batean burutuko dut.', + 'upgrade_db_text_5' => 'Eguneratu aurretik datu basearen kopia egin? (gomendagarria oso)', + 'upgrade_db_title' => 'Ushahidi datu basea eguneratuta', + 'upgrade_db_info' => 'Ushahidi eguneratua izan da! Jarraitu aurretik, zure base datua eguneratu behar duzu bertsio berrienera (%s).', + 'upgrade_db_up_to_date' => 'Zure datu base bertsioa eguneratuta dago.', + 'upgrade_failed' => 'Eguneraketa punturen baten huts egin du', + 'upgrade_manual' => 'Eskuzko eguneraketa', + 'upgrade_status' => 'Ushahidi eguneraketa egoera', + 'upgrade_text_1' => 'Beheko nola demontreak zure Ushahidi instalazioa nola eguneratu azaltzen du!', + 'upgrade_text_2' => '
Jaitsi
', + 'upgrade_text_3' => '
- Deskargatu Ushadidi-ren bertsio berriena hemendik', + 'upgrade_text_4' => '
Segurtasun kopia
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Zerbait oker joaten bada ere, gomendagarria da Ushadidi-ren segurtasun kopia izatea.
Fitxategiak kopiatu
- Deskargatutako zip fitxategia deskonprimitu
- Zerbitzariaren sistema eragilearen arabera, erabili zure gustuko aplikazioa (adib. Telnet, FTP, SSH) web zerbitzarira konektatzeko eta aldatu karpeta guztietako fitxategiak berriengatik.
Datu basea eguneratu
- Lehenbizi begiratu zure datu basearen eskema bertsioa, ezarpen taularen db_version balioa begiratuz edo begiratu Ushadidi-ren eguneraketa informazioan web gune honen goikaldean.
- Zure bertsioa 25 bada, eguneraketak burutu behar dituzu 25etik-26ra, 26etik-27ra, 27etik-28ra eta horrela azken SQL fitxategirarte zure /sql karpetan.
- Zure base datu bezeroarekin, eguneratu datu basea egokia den upgradex-x.sql ftxategia erabiliz.
', + 'upgrade_tables' => '3: pausua Begiratu sql karpetan. Eskuz exekutatu -.sql eguneraketa fitxategia, zure datu base bertsiotik hasita, azken eguneraketa sql fitxategirarte.', + 'upgrade_text_5' => '4 pausua: Egin klik "Jarraitu" botoian beharrezkoak diren taulak eguneratzeko.', + 'upgrade_text_6' => 'Eguneraketa automatikoak egiteko, klik egin beheko botian', + 'upgrade_title_text' => 'Ushahidi v%1$s erabiltzen ari zara %2$d base datu bertsioarekin %3$s zerbitzarian', + 'upgrading' => 'Eguneratzen', + 'upgrade_ftp_text' => 'Eguneraketa errazarekin jarraitzeko, beharrezkoak dira zure webgunea dagoen zerbitzariaren hurrengo FTP datuak.', + 'upgrade_ftp_hostname' => 'FTP host izena: Adibidez: "localhost"', + 'upgrade_ftp_password' => 'FTP pasahitza:', + 'upgrade_ftp_username' => 'FTP erabiltzaile izena:', + 'upgrade_status_info' => 'Ushahidi azken bertsioa duzu', + 'upgrade_status_info_2' => 'Ez duzu eguneraketarik egin behar.', + 'upgrade_db_version' => 'Datu basearen bertsioa: %d', + 'upgrade_warning_software_version' => 'Erne: Software bertsioa version.php fitxategian eta datu basea ez datoz bat.', + 'upgrade_warning_db_version' => 'Erne: Datu base bertsioa version.php fitxategian eta datu basea ez datoz bat.', + 'upgrade_database' => 'Datu basea', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Ushahidiren azken bertsioa jaisten', + 'log_file' => 'Errore fitxategia', + 'successfully_downloaded' => 'Ongi jaitsia. Erauzten...', + 'failed_downloading' => 'Jaisterakoan huts egin du.', + 'successfully_unpacked' => 'Ondo erauzia. Fitxategiak kopiatzen...', + 'failed_unpacking' => 'Fitxategia erauzten.', + 'successfully_copied' => 'Ongi kopiatua. Datu basea eguneratzen...', + 'failed_copying' => 'Fitxategien kopiak huts egin du.', + 'backup_success' => 'Datu basearen segurtasun kopia eta eguneraketa ondo burutu dira.', + 'backup_failed' => 'Datu basearen segurtasun kopia egitean huts egin du.', + 'dbupgrade_success' => 'Datu basearen eguneraketa ongi burutu da.', + 'deleting_files' => 'Jaitsitako fitxategiak ezabatzen...', + 'upgrade_success' => 'ONGI EGUNERATUA. Ikuso Log fitxategia', +); diff --git a/application/i18n/fa/alerts.php b/application/i18n/fa/alerts.php new file mode 100644 index 0000000000..5ffddb6046 --- /dev/null +++ b/application/i18n/fa/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'نشانی صحیحی در بخش فیلد ایمیل وارد نشده است.', + 'email_check' => 'این ایمیل قبلا برای دریاقت هشدار برای مکان منظور ثبت شده است.', + 'length' => 'فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد.', + 'required' => 'اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود.', + ) , + 'alert_country' => array( + 'single_country' => 'این پیاده سازی تنها در یک کشور قابل به کارگیری است. لطفا از صدق مکان خود در کشور%s اطمینان حاصل کنید.', + ) , + 'alert_lat' => array( + 'between' => 'مکان معتبری را بر روی نقشه انتخاب نکرده اید.', + 'required' => 'مکان معتبری را بر روی نقشه انتخاب نکرده اید.', + ) , + 'alert_lon' => array( + 'between' => 'مکان معتبری را بر روی نقشه انتخاب نکرده اید.', + 'required' => 'مکان معتبری را بر روی نقشه انتخاب نکرده اید.', + ) , + 'alert_mobile' => array( + 'length' => 'فیلد تلفن همراه شامل تعداد کافی شماره نمی باشد.', + 'mobile_check' => 'این شماره تلفن همراه قبلا برای دریاقت هشدار برای مکان منظور ثبت شده است.', + 'numeric' => 'فیلد تلقن همراه دارای شناره صحیح نمی باشد. لطفا تنها شماره هایی را وارد کنید که شامل کد کشوراست.', + 'one_required' => 'شماره تلفن همراه یا آدرس ایمیل خود را وارد کنید.', + 'required' => 'اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد شماره تلفن همراه را پر کنید.', + ) , + 'alert_radius' => array( + 'in_array' => 'شعاع معتبری بر روی نقشه انتخاب نشده است.', + 'required' => 'مکان خود را روی نقشه صحیح انتخاب نکرده اید.', + ) , + 'alert_recipient' => array( + 'required' => 'دریافت کننده هشدار را تعیین نکرده اید.', + ) , + 'alerts_subscribed' => 'شما مشترک دریافت این دسته هشدارها شده اید.', + 'code_already_verified' => 'این کد پیشتر تایید شده است.', + 'code_not_found' => 'کد تایید کننده یافت نشد! لطفا از صحت نشانی URL خود اطمینان حاصل کنید.', + 'code_verified' => 'کد تایید شد. شما از هم اکنون شما هشدار در مورد وقایع روز دریافت می کنید.', + 'confirm_request' => 'برای تایید درخواست هشدار،‌لطفا مراجعه کنید به', + 'create_more_alerts' => 'برای ایجاد هشدارهای بیشتر به صفحه هشدارها مراجعه کنید.', + 'email_alert_request_created' => 'ایمیل هشدار شما ایجاد و پیغام تایید کننده فرستاده شد.', + 'email_code' => 'لطفا کد تایید را که از طریق ایمیل دریافت کرده اید را در زیر وارد کنید.', + 'email_error_head' => 'درخواست شما برای ایمیل هشدارذخیره نشده است.', + 'email_ok_head' => 'درخواست شما برای ایمیل هشدارذخیره شد.', + 'error' => 'سامانه قادر به پردازش درخواست شما نیست.', + 'mobile_alert_request_created' => 'ایمیل هشدار شما ایجاد و پیغام تایید کننده فرستاده شد.', + 'mobile_code' => 'لطفا کد SMS تایید کننده را که از طریق تلفن همراه دریافت کرده اید را در زیر وارد کنید.', + 'mobile_error_head' => 'درخواست شما برای هشدارتلفنی ذخیره نشده است.', + 'mobile_ok_head' => 'درخواست شما برای هشدارتلفنی ذخیره شد.', + 'settings_error' => ' تنظیمات این پیاده سازی دریافت هشدارها صحیح نمی باشد.', + 'unsubscribe' => 'شما به علت مشترک دریافت هشدار بودن این ایمیل را دریافت کرده اید. در صورت عدم تمایل به دریافت ایمیل هایی از این دست مراجعه کنید به', + 'unsubscribed' => 'شما دیگر هشدار دریافت نمی‌کنید از', + 'unsubscribe_failed' => ' قادر به غیرفعال سازی اشتراک شما نبودیم. لطفا از صحت آدرس URL خود اطمینان حاصل کنید.', + 'verification_email_subject' => 'هشدارها- تایید', + 'verify_code' => 'شما تنها در صورت تایید درخواست خود، در این مکان هشدار دریافت خواهید کرد.', +); diff --git a/application/i18n/fa/auth.php b/application/i18n/fa/auth.php new file mode 100644 index 0000000000..a8e089f44f --- /dev/null +++ b/application/i18n/fa/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'نشانی ایمیل وارد شده یک نشانی ایمیل معتبر نمی باشد.', + 'exists' => 'با عرض پوزش یک حساب کاربری به نام این نشانی ایمیل از قبل ایجاد شده است.', + 'length' => 'فیلد ایمیل باید حداقل 4 و حداکثر 64 کاراکتر داشته باشد.', + 'required' => 'فیلد ایمیل باید پر شود.', + ) , + 'name' => array( + 'length' => 'فیلد نام باید حداقل 3 و حداکثر 100 نویسه باشد.', + 'required' => 'فیلد نام باید پُر شود.', + 'standard_text' => 'فیلد نام کاربری شامل نویسه های غیر مجاز می باشد.', + ) , + 'current_password' => array( + 'length' => 'طول فیلد گذرواژه باید حداکثر 8 نویسه باشد.', + 'login error' => 'لطفا چک کنید که ایمیل و گذرواژه صحیحی وارد کرده اید.', + 'matches' => 'لطفا در هر دو فیلد گذرواژه ی یکسانی وارد کنید.', + 'required' => 'فیلد گذرواژه باید پر شود.', + 'alpha_dash' => 'فیلد گذرواژه باید تنها شامل نویسه های الفبایی، نماد های # و @ ، اعداد و خط فاصله باشد.', + 'incorrect' => 'گذرواژه ای که برای حساب کاربریتان وارد کرده اید صحیح نمی باشد. لطفا دوباره امتحان کنید.', + ) , + 'new_password' => array( + 'length' => 'طول فیلد گذرواژه باید حداکثر 8 نویسه باشد.', + 'login error' => 'لطفا چک کنید که نشانی ایمیل و گذرواژه ی صحیحی وارد کرده اید.', + 'matches' => 'لطفا در هر دو فیلد گذرواژه ی یکسانی وارد کنید.', + 'required' => 'فیلد گذرواژه باید پر شود.', + 'alpha_dash' => 'فیلد گذرواژه باید تنها شامل نویسه های الفبایی، نماد های # و @ ، اعداد و خط فاصله باشد.', + ) , + 'password' => array( + 'default' => 'هنگام ورود شما به سایت خطایی رخ داده است.', + 'length' => 'طول فیلد گذرواژه باید حداقل 8 نویسه باشد.', + 'login error' => 'لطفا چک کنید که نشانی ایمیل و گذرواژه ی صحیحی وارد کرده اید.', + 'matches' => 'لطفا در هر دو فیلد گذرواژه ی یکسانی وارد کنید.', + 'required' => 'فیلد گذرواژه باید پر شود.', + 'riverid server down' => 'سرور تصدیق کننده از کار افتاده است . لطفا دوباره امتحان کنید. ', + 'riverid' => '%s', + 'alpha_dash' => 'فیلد گذرواژه باید تنها شامل نویسه های الفبایی، نماد های # و @ ، اعداد و خط فاصله باشد.', + ) , + 'password_confirm' => array( + 'matches' => 'فیلد تایید گذرواژه باید با فیلد گذرواژه همخوانی داشته باشد.', + ) , + 'resetemail' => array( + 'email' => 'نشانی ایمیل وارد شده یک نشانی ایمیل معتبر نمی باشد.', + 'invalid' => 'با عرض پوزش ما نشانی ایمیل شما را نداریم.', + 'required' => 'فیلد ایمیل باید پر شود.', + ) , + 'role' => array( + 'superadmin_modify' => 'تنها یک مدیر ویژه می تواند مدیر ویژه را تغییر دهد یا یک کاربر را به ادمین ارتقا دهد.', + ) , + 'roles' => array( + 'alpha_numeric' => 'قالب نقش نامعتبر', + 'length' => 'فیلد نقش باید حداقل 5 و حداکثر 30 نویسه باشد.', + 'required' => 'باید حداقل یک نقش تعریف کنید.', + 'values' => 'باید یکی از نقش های ادمین یا کاربر را انتخاب کنید.', + ) , + 'token' => array( + 'invalid' => 'رمز گذرواژه ی فراموش شده معتبر نیست.', + 'required' => 'رمز گذرواژه ی فراموش شده اجباری است.', + ) , + 'username' => array( + 'admin' => 'نقش مدیرویژه قابل اصلاح نیست.', + 'alpha_numeric' => 'فیلد URL پروفایل همگانی فقط می تواند شامل اعداد و حروف الفبا باشد.', + 'exists' => 'با عرض پوزش این URL پروفایل همگانی در حال استفاده است.', + 'length' => 'فیلد URL پروفایل همگانی باید حداقل 2 و حداکثر 100 نویسه باشد.', + 'login error' => 'لطفا چک کنید که URL پروفایل همگانی صحیحی وارد کرده اید.', + 'required' => 'فیلد URL پروفایل همگانی باید پر شود.', + 'superadmin' => 'نقش مدیرویژه قابل اصلاح نیست.', + 'csrf' => 'حمله ی احتمالی CSRF. آیا واقعا قصد ایجاد یا تغییر یک کاربر را دارید؟', + ) , +); diff --git a/application/i18n/fa/bug.php b/application/i18n/fa/bug.php new file mode 100644 index 0000000000..aab8c6b8ca --- /dev/null +++ b/application/i18n/fa/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'لطفا یک کد امنیتی معتبر وارد کنید.', + 'required' => 'لطفا کد امنیتی معتبر را وارد کنید.', + ) , + 'email' => array( + 'email' => 'ایمیل وارد شده، یک ایمیل قابل قبول به نظر نمی رسد.', + 'length' => 'فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد.', + 'required' => 'اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود.', + ) , + 'error' => array( + 'required' => 'فیلد خطا باید پُر شود.', + ) , + 'subject' => array( + 'length' => 'طول فیلد موضوع باید حداقل ۳ کاراکتر باشد.', + 'required' => 'فیلد موضوع باید پُر شود.', + ) , + 'yourname' => array( + 'length' => 'طول فیلد نام باید حداقل سه کاراکتر باشد.', + 'required' => 'فیلد نام باید پُر شود.', + ) , +); diff --git a/application/i18n/fa/category.php b/application/i18n/fa/category.php new file mode 100644 index 0000000000..0e20b00414 --- /dev/null +++ b/application/i18n/fa/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'طول فیلد رنگ باید ۶ کاراکتر باشد.', + 'required' => 'فیلد رنگ باید پُر شود.', + ) , + 'category_description' => array( + 'required' => 'فیلد شرح باید پُر شود.', + ) , + 'category_image' => array( + 'size' => 'لطفاً مطمئن شو که اندازه‌ی تصویر بارگذاری‌شده حداکثر ۵۰کیلوبایت است.', + 'type' => 'فیلد تصویربنظر شامل یک فایل معتبر نیست. تنها فرمتهای قابل قبول JPG، PNG و GIF هستند', + 'valid' => 'فیلد تصویربنظر شامل یک فایل معتبر نیست', + ) , + 'category_title' => array( + 'length' => 'فیلد عنوان باید حداقل ۳ و حداکثر ۸۰ نویسه باشد', + 'required' => 'فیلد عنوان باید پر شود. ', + ) , + 'parent_id' => array( + 'already_parent' => 'شما نمیتوانید یک طبقه که خود شامل زیر طبقه است را تبدیل به زیرطبقه کنید', + 'exists' => 'رده مادر مورد نظر وجود ندارد', + 'numeric' => 'رده اصلی (مادر) باید عددی باشد.', + 'parent_trusted' => 'رده اصلی (مادر) نمیتواند یک رده خاص باشد', + 'required' => 'فیلد رده مادر باید پر شود', + 'same' => 'رده و رده بالایی (مادر) نباید یکی باشند', + 'special' => 'رده های (طبقه های) خاص نمیتوانند تبدیل به زیر رده (طبقه) شوند', + ) , +); diff --git a/application/i18n/fa/comments.php b/application/i18n/fa/comments.php new file mode 100644 index 0000000000..b69af348eb --- /dev/null +++ b/application/i18n/fa/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'لطفاً یک کد معتبر امنیتی وارد کنید.', + 'required' => 'لطفاً کد امنیتی را وارد کنید.', + 'valid' => 'شما کد امنیتی اشتباهی را وارد کردید.', + ) , + 'comment_author' => array( + 'length' => 'طول فیلد نام باید حداقل ۳ کاراکتر باشد.', + 'required' => 'فیلد نام باید پُر شود.', + ) , + 'comment_description' => array( + 'required' => 'فیلد نظرات باید پُر شود.', + ) , + 'comment_email' => array( + 'email' => 'ظاهراً یک نشانی ایمیل معتبر در بخش فیلد ایمیل وارد نشده است.', + 'length' => 'فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد.', + 'required' => 'اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود.', + ) , +); diff --git a/application/i18n/fa/contact.php b/application/i18n/fa/contact.php new file mode 100644 index 0000000000..10a36a8f6c --- /dev/null +++ b/application/i18n/fa/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'لطفاً یک کد امنیتی معتبر را وارد کن.', + 'valid' => 'لطفاً یک کد معتبر امنیتی وارد کن.', + 'required' => 'لطفاً کد معتبر امنیتی را وارد کن.', + ) , + 'contact_email' => array( + 'email' => 'ظاهراً یک نشانی ایمیل معتبر در بخش فیلد ایمیل وارد نشده است.', + 'length' => 'فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد.', + 'required' => 'اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود.', + ) , + 'contact_message' => array( + 'required' => 'فیلد پیغام باید پُر شود.', + ) , + 'contact_name' => array( + 'length' => 'طول نام فیلد باید حداقل ۳ کاراکتر باشد.', + 'required' => 'فیلد نام باید پُر شود.', + ) , + 'contact_subject' => array( + 'length' => 'طول فیلد موضوع باید حداقل ۳ کاراکتر باشد.', + 'required' => 'فیلد موضوع باید پُر شود.', + ) , + 'email_send' => array( + 'failed' => 'خطایی در فرستادن پیغام‌ات به‌وجود آمد.', + ) , +); diff --git a/application/i18n/fa/core.php b/application/i18n/fa/core.php new file mode 100644 index 0000000000..2b5520ee8b --- /dev/null +++ b/application/i18n/fa/core.php @@ -0,0 +1,35 @@ + 'پرونده تنظیمات', + 'controller' => 'کنترل‌کننده', + 'driver' => 'گرداننده', + 'driver_implements' => '%s گرداننده برای %s کتابخانه باید %s واسط کاربررا پیاده کند.', + 'driver_not_found' => '%s گرداننده برای %s کتابخانه پیدا نمی‌شود.', + 'errors_disabled' => 'می‌توانید به صفحه‌ی آغازه بروید یا دوباره سعی کنید.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'قادر به کامل کردن درخواست شما نیستیم.', + 'helper' => 'کمک‌رسان (helper)', + 'invalid_filetype' => 'نوع فایل درخواست‌شده، .%s، در نمای تنظیمات فایل شما مجاز نیست.', + 'invalid_method' => 'روش نامعتبر %s% s را صدا زد.', + 'invalid_property' => 'ویژگی %s در کلاس %s وجود ندارد.', + 'library' => 'کتابخانه', + 'log_dir_unwritable' => 'شاخه‌ی لاگ قابل نوشتن نیست: %s', + 'model' => 'مدل', + 'no_controller' => 'یوشهیدی قادر به پیدا کردن کنترل‌کننده برای پردازش این درخواست نیست: %s', + 'no_default_route' => 'لطفاً مسیر(route) پیش‌فرض را در config/routes.php تنظیم کنید.', + 'page_not_found' => 'صفحه‌ای که تقاضا کردید، %s، پیدا نشد.', + 'report_bug' => 'مشکل را به یوشهیدی گزارش کنید.', + 'resource_not_found' => '%s در خواست‌شده، %s، پیدا نمی‌شود.', + 'stack_trace' => 'پشته اثر (stack trace) ', + 'stats_footer' => 'بارگیری‌شده در {execution_time} ثانیه، با استفاده از {memory_usage} حافظه. تولید شده توسط یوشهیدی v%s.', + 'text_direction' => 'rtl', + 'there_can_be_only_one' => 'در هر تقاضای صفحه فقط یک نمونه از یوشهیدی می‌تواند وجود داشته باشد.', + 'uncaught_exception' => '%s گرفته نشده: %s در پرونده‌ی %s در خط %s.', + 'view' => 'نما', + 'view_set_filename' => 'باید نام پرونده ی نمایش را پیش از فراخوانی رندر تنظیم کنید. ', +); diff --git a/application/i18n/fa/database.php b/application/i18n/fa/database.php new file mode 100644 index 0000000000..1c5d1c2382 --- /dev/null +++ b/application/i18n/fa/database.php @@ -0,0 +1,10 @@ + 'خطای پایگاه داده: %s', + 'table_not_found' => 'جدول "%s" در پایگاه داده پیدا نشد. لطفاً مطمئن شو که آخرین نسخه‌ی پایگاه داده برای این نسخه‌ی یوشهیدی را داری.', +); diff --git a/application/i18n/fa/datetime.php b/application/i18n/fa/datetime.php new file mode 100644 index 0000000000..57b1a6545f --- /dev/null +++ b/application/i18n/fa/datetime.php @@ -0,0 +1,86 @@ + 'صبح', + 'friday' => array( + 'abbv' => 'جمعه', + 'full' => 'جمعه', + ) , + 'monday' => array( + 'abbv' => 'دوشنبه', + 'full' => 'دوشنبه', + ) , + 'pm' => 'بعدازظهر', + 'saturday' => array( + 'abbv' => 'شنبه', + 'full' => 'شنبه', + ) , + 'sunday' => array( + 'abbv' => 'یکشنبه', + 'full' => 'یکشنبه', + ) , + 'thursday' => array( + 'abbv' => 'پنجشنبه', + 'full' => 'پنجشنبه', + ) , + 'tuesday' => array( + 'abbv' => 'سه‌شنبه', + 'full' => 'سه‌شنبه', + ) , + 'wednesday' => array( + 'abbv' => 'چهارشنبه', + 'full' => 'چهارشنبه', + ) , + 'january' => array( + 'abbv' => 'ژانویه', + 'full' => 'ژانویه', + ) , + 'february' => array( + 'abbv' => 'فوریه', + 'full' => 'فوریه', + ) , + 'march' => array( + 'abbv' => 'مارس', + 'full' => 'مارس', + ) , + 'april' => array( + 'abbv' => 'آوریل', + 'full' => 'آوریل', + ) , + 'may' => array( + 'abbv' => 'مِی', + 'full' => 'مِی', + ) , + 'june' => array( + 'abbv' => 'ٓژوئن', + 'full' => 'ٓژوئن', + ) , + 'july' => array( + 'abbv' => 'ٓژوئیه', + 'full' => 'ژوئیه', + ) , + 'august' => array( + 'abbv' => 'اوت', + 'full' => 'اوت', + ) , + 'september' => array( + 'abbv' => 'سپتامبر', + 'full' => 'سپتامبر', + ) , + 'october' => array( + 'abbv' => 'اکتبر', + 'full' => 'اکتبر', + ) , + 'november' => array( + 'abbv' => 'نوامبر', + 'full' => 'نوامبر', + ) , + 'december' => array( + 'abbv' => 'دسامبر', + 'full' => 'دسامبر', + ) , +); diff --git a/application/i18n/fa/feeds.php b/application/i18n/fa/feeds.php new file mode 100644 index 0000000000..1428d44136 --- /dev/null +++ b/application/i18n/fa/feeds.php @@ -0,0 +1,19 @@ + 'تاریخ', + 'feed_name' => array( + 'length' => 'فیلد نام فید باید حداقل ۳ کاراکتر و نه بیش از ۷۰ کاراکتر باشد.', + 'required' => 'لطفا نام فید را وارد کنند.', + ) , + 'feed_url' => array( + 'required' => 'لطفا آدرس اینترنتی فید را وارد کنید.', + 'url' => 'لطفا یک آدرس اینترنتی معتبر وارد کنید. برای مثال: http://www.ushahidi.com', + ) , + 'source' => 'منبع', + 'title' => 'عنوان', +); diff --git a/application/i18n/fa/footer.php b/application/i18n/fa/footer.php new file mode 100644 index 0000000000..aa2ecdcc30 --- /dev/null +++ b/application/i18n/fa/footer.php @@ -0,0 +1,9 @@ + 'php5-curl روی این سیستم نصب نشده‌است.', +); diff --git a/application/i18n/fa/form.php b/application/i18n/fa/form.php new file mode 100644 index 0000000000..42b49237fc --- /dev/null +++ b/application/i18n/fa/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'مقدار پیش‌فرضی که برای این فیلد وارد کردید قابل قبول نیست.', + 'length' => 'نام فیلد باید به طول حداقل سه (۳) و حداکثر دویست (۲۰۰) نویسه باشد.', + ) , + 'field_height' => array( + 'between' => 'لطفاً مقداری بین صفر و پنجاه (۵۰) برای ارتفاع فیلد وارد کنید.', + ) , + 'field_isdate' => array( + 'between' => 'مقدار وارد شده برای فیلد تاریخ قابل قبول نیست.', + 'required' => 'لطفاً «بلی» یا «خیر» را برای فیلد تاریخ انتخاب کنید.', + ) , + 'field_name' => array( + 'length' => 'نام فیلد باید به طول حداقل سه (۳) و حداکثر صد (۱۰۰) نویسه باشد.', + 'required' => 'لطفاً نام فیلد را وارد کنید.', + 'duplicate' => 'نام فیلدی که شما انتخاب کردید قبلا انتخاب شده لطفا نام دیگری انتخاب کنید', + ) , + 'field_required' => array( + 'between' => 'مقدار واردشده برای اجباری‌بودن فیلد قابل قبول نیست.', + 'required' => 'لطفاً «بلی» یا «خیر» را برای فیلد تاریخ انتخاب کنید.', + ) , + 'field_type' => array( + 'numeric' => 'لطفا یک نوع معتبر برای فیلد انتخاب کنید', + 'required' => 'لطفا برای فیلد یک نوع انتخاب کنید', + ) , + 'field_width' => array( + 'between' => 'لطفاً مقداری بین صفر و پنجاه (۵۰) برای عرض فیلد وارد کنید.', + ) , + 'form_description' => array( + 'required' => 'طلفاً توضیحات فرم را وارد کنید.', + ) , + 'form_id' => array( + 'default' => 'فرم پیش فرض قابل پاک شدن نیست', + 'numeric' => 'لطفا تعین کنید این فیلد باید به کدام فرم اضا فه شود', + 'required' => 'لطفا تعین کنید این فیلد باید به کدام فرم اضافه شود', + ) , + 'form_title' => array( + 'length' => 'فیلد نام فرم باید حداقل ۳ و حداکثر ۱۰۰ نویسه باشد', + 'required' => 'لطفاً نام فرم را وارد کنید.', + 'exists' => 'فرمی با این عنوان در سیستم وجود دارد. لطفاً فرم دیگری انتخاب کنید.', + ) , +); diff --git a/application/i18n/fa/imap.php b/application/i18n/fa/imap.php new file mode 100644 index 0000000000..9cb5de97f5 --- /dev/null +++ b/application/i18n/fa/imap.php @@ -0,0 +1,10 @@ + 'امکان بازکردن جریان IMAP وجود ندارد.', + 'unsupported_service' => 'سرویس ایمیل پشتیبانی نمی‌شود.', +); diff --git a/application/i18n/fa/installer.php b/application/i18n/fa/installer.php new file mode 100644 index 0000000000..59b63ec010 --- /dev/null +++ b/application/i18n/fa/installer.php @@ -0,0 +1,80 @@ + 'مسیر پایه', + 'database' => 'پایگاه داده', + 'database_host' => 'میزبان پایگاه داده', + 'database_host_description' => 'اگر یوشهیدی را در کامپیوتر خود اجرا می‌کنید، این به احتمال زیاد «localhost» است. اگر یوشهیدی را از یک کارگزار وب (web server) اجرا می‌کنید، اطلاعات مربوط به میزبان خود را از ارائه‌دهنده‌ی خدمات وِب خود می‌توانید دریافت کنید.', + 'database_name' => 'نام پایگاه داده', + 'database_name_description' => 'نام پایگاه داده‌ای که می‌خواهید یوشهیدی را در آن اجرا کنید', + 'db_information_link' => 'برای اطلاعات بیشتر، لطفاً به this این مقاله که در مورد پایگاه داده‌ها شرح بیشتری داده است سر بزنید.', + 'default_language' => 'زبان پیش‌فرض (محلی)', + 'default_language_description' => 'هر پیاده‌سازی یوشهیدی با یک مجموعه از زبان‌ها می‌آید. در ضمن می‌توانید زبان مورد نظر خود را اضافه کنید.', + 'disable' => 'از کار انداختن', + 'enable' => 'به کار انداختن', + 'error_summary' => 'فهرست زیر خلاصه‌ی خطاهایی که ایجاد شده را نشان می‌دهد.', + 'files_location_text' => 'نشانی مکانی که پرونده های یوشهیدی خود را آنجا روی سرورتان قرار داده اید. ما به طور خودکار این مکان را شناسایی کرده ایم، لطفا از صحت آن اطمینان یابید . . اگر این فیلد خالی است نگران نباشید، این بدین معنی است که یوشهیدی در لایه بالایی پوشه ی شما نصب شده است.', + 'finished' => 'تمام شده', + 'general' => 'عمومی', + 'google_key' => 'گوگل API کلید', + 'google_key_description' => 'هر کس می تواند یک کلید API بگیرد. کلید خود را هم اکنون دریافت کنید. ', + 'go_back' => 'برگرد به عقب', + 'index' => array( + 'advanced' => 'نصب پیشرفته', + 'advanced_installation_description' => 'تمام تنظیمات پایه را با دنبال کردن این فرآیند 5 مرحله ای تمام کنید. این تنظیمات شامل سرور، نقشه، نام سایت و جزئیات ارتباط می باشد.', + 'basic_installation' => 'نصب ابتدایی', + 'basic_installation_description' => 'ساده وسریع. تنها چیزی که احتیاج دارید، مسیر ریشه ی وبسایت و اطلاعات پایگاه داده است. اگر می خواهید سریع همه چیز را به کار بیندازید این گزینه را انتخاب کنید. می توانید بعدا چیزهای دیگر را تنظیم کنید.', + 'proceed' => 'ادامه', + 'welcome' => 'به فرآیند نصب سرور یوشهیدی خوش آمدید. لطفا نوع نصب مورد نظر خود را در پایین انتخاب کنید.', + ) , + 'installation_successful' => 'نصب با موفقیت انجام شد', + 'mail_server' => 'سرور ایمیل', + 'mail_server_host' => 'سرور میزبان ایمیل', + 'mail_server_host_description' => 'مثال: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'گذرواژه ی سرویس ایمیل', + 'mail_server_password_description' => 'گذرواژه ای که معمولا برای ورود به ایمیل خود از آن استفاده می کنید', + 'mail_server_port' => 'درگاه سرور ایمیل', + 'mail_server_port_description' => 'درگاه های رایج: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'نوع سرور ایمیل', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). تفاوتشان چیست؟ ', + 'mail_server_username' => 'نام کاربری سرور ایمیل', + 'mail_server_username_description' => 'اگز از Gmail یا Hotmail یا Yahoo Mail استفاده می کنید، نشانی ایمیل کامل خود را به عنوان نام کاربری وارد کنید.', + 'map' => 'نقشه', + 'map_provider' => 'تامین کننده نقشه', + 'map_provider_description' => 'یوشهیدی با هرکدام از این تامین کننده های نقشه خوب کار می کند: Google, Bing,Open Street Map. هرکدام را که در منطقه ی شما شامل جزئیات بیشتری است انتخاب کنید.', + 'other_steps' => 'مراحل دیگر ...', + 'password' => 'گذرواژه', + 'password_description' => 'گذرواژه دیتابیس شما', + 'previous' => 'قبلی', + 'restart_apache' => 'لطفا سرور Apache خود را مجددا راه اندازی کنید.', + 'select_mail_server_ssl' => 'فعال سازی یا از کار اندازی SSL', + 'select_mail_server_ssl_description' => 'بعضی سرورهای ایمیل به شما امکان استفاده از SSL در هنگام ایجاد ارتباط را می دهند. استفاده از SSL توصیه می شود چون باعث بالا بردن امنیت است.', + 'setup_sms' => 'تنظیم سرور SMS', + 'site_email' => 'نشانی ایمیل وبسایت', + 'site_email_alerts' => 'آدرس ایمیل هشدار سایت', + 'site_email_alerts_description' => 'وقتی بازدیدکنندگان سایت شما برای دریافت هشدارهای ایمیلی ثبت نام می کنند، از طرف این آدرس ایمیل دریافت می کنند. لزومی ندارد این آدرس ایمیل با آدرس ایمیل سایت یکسان باشد.', + 'site_email_description' => 'ارتباطات ایمیلی کل سایت از درون این آدرس رد می شوند.', + 'site_name' => 'نام سایت', + 'site_name_description' => 'نام سایت شما', + 'site_tagline' => 'برچسب سایت', + 'site_tagline_description' => 'برچسب شما', + 'summary' => array( + 'text_1' => 'پوشه ها و پرونده هایی که در پایین لیست شده اند باید از طرف وب سرور شما قابل نوشتن باشند.', + 'text_2' => '

در اینجا می توانید دستورالعمل های لازم برای تغییر اجازه ی دسترسی به فایل ها را بیابید:

', + 'text_3' => 'پیش از شروع، باید مطمئن شوید که پوشه ها و پرونده های زیر از طرف وب سرور شما قابل نوشتن هستند. برای اینکار باید اجازه ی دسترسی به پوشه ها را تغییر دهید.', + 'text_4' => 'برای فرآیند نصب لطفا اطلاعات زیر را در دست داشته باشید.', + ) , + 'table_prefix' => 'پیشوند جدول', + 'table_prefix_description' => 'معمولا شما احتیاجی به تغییر پسوند جدول ندارید. اما، اگر می خواهید نصب های متعددی از یوشهیدی را از روی یک پایگاه داده اجرا کنید، می توانید پسوند را اینجا تغییر دهید.', + 'title' => 'عنوان', + 'to_login' => 'برای ورود بروید به', + 'upload_data' => 'بارگذاری داده های گزارش', + 'username' => 'نام کاربری', + 'username_description' => 'نام کاربری دیتابیس شما', + 'use_credentials' => 'و از اعتبارهای زیر استفاده کنید.', + 'view_site' => 'نمایش وبسایت شما', +); diff --git a/application/i18n/fa/layer.php b/application/i18n/fa/layer.php new file mode 100644 index 0000000000..05dd46bf5a --- /dev/null +++ b/application/i18n/fa/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'طول فیلد رنگ باید ۶ کاراکتر باشد.', + 'required' => 'فیلد رنگ باید پُر شود.', + ) , + 'layer_file' => array( + 'type' => 'فیلد فایل بنظرشامل یک فایل معتبر نیست. تنها فرمتهای KMZ و KML قابل قبول هستند ', + 'valid' => 'فیلد فایل شامل یک فایل معتبر نیست', + ) , + 'layer_name' => array( + 'length' => 'فیلد نام باید حداقل ۳ و حداکثر ۸۰ نویسه باشد', + 'required' => 'فیلد نام باید پُر شود.', + ) , + 'layer_url' => array( + 'atleast' => 'یک فایل یا ادرس اینترنتی به فرمت KML لازم است', + 'both' => 'داشتن یک فایل KML و یک ادرس الکترونیکی KML بطور همزمان ممکن نیست ', + 'url' => 'لطفا یک آدرس اینترنتی معتبر وارد کنید. برای مثال: http://www.ushahidi.com', + ) , +); diff --git a/application/i18n/fa/libraries.php b/application/i18n/fa/libraries.php new file mode 100644 index 0000000000..e951ad83a4 --- /dev/null +++ b/application/i18n/fa/libraries.php @@ -0,0 +1,27 @@ + 'امکان اتصال به سرور Akismet وجود ندارد.', + 'akismet_cannot_retrieve' => 'امکان بازیابی پاسخ سرور Akismet وجود ندارد.', + 'api_library_not_found' => 'کتابخانه ی API به نام %s برای رده ی %s پیدا نشد. لظفا جدول مسیریابی امور API خود را چک کنید.', + 'askimet_invalid_apikey' => 'کلید API Akismet شما معتبر نیست.', + 'clickatell_fopen_error' => 'خطا هنگام اجرای متد ارسال fopen ! لطفا چک کنید که PHP پشتیبانی OpenSSL دارد و نسخه ی PHP جدیدتر از 5.2 است.', + 'clickatell_message_too_long' => 'پیام unicode شما بیش از حد طولانی است. ( طول فعلی = ', + 'clickatell_no_destination_address' => 'لطفا نشانی مقصد را تعیین کنید (به) !', + 'clickatell_no_sender_address' => 'لطفا نشانی مبدا را تعیین کنید ( از) !', + 'clickatell_unicode_message_too_long' => 'پیام unicode شما بیش از حد طولانی است. ( طول فعلی = ', + 'clickatell_unsupported_method' => 'این روش ارسال پشتیبانی نشده است!', + 'invalid_api_library' => 'کتابخانه ی API %s نامعتبر است. تمامی کتابخانه های API باید زیررده ی %s باشند.', + 'upgrade_directory_not_deleted' => 'امکان پاک کردن فهرست %s وجود ندارد.', + 'upgrade_extracting_error' => 'خطا به هنگام بازکردن : %s', + 'upgrade_failed' => 'بارگیری آخرین نسخه یوشهیدی نا موفق بود. وضعیت کد HTTP', + 'upgrade_file_not_copied' => 'امکان کپی کردن پرونده ی %s وجود ندارد.', + 'upgrade_file_not_deleted' => 'امکان پاک کردن پرونده ی %s وجود ندارد.', + 'upgrade_title' => 'متن به روزرسانی یوشهیدی', + 'upgrade_zip_error' => 'امکان ثبت پرونده ی فشرده شده ی دریافتی یوشهیدی %s، وجود ندارد.', + 'riverid_variable_not_available' => '%s در رده ی RiverID موجود نیست.', +); diff --git a/application/i18n/fa/maintenance.php b/application/i18n/fa/maintenance.php new file mode 100644 index 0000000000..a19392101e --- /dev/null +++ b/application/i18n/fa/maintenance.php @@ -0,0 +1,9 @@ + 'متاسفیم. وبسایت ما در حال حاضر به دلیل نگه‌داری فعال نیست. لطفا پس از چند دقیقه دوباره امتحان کنید.', +); diff --git a/application/i18n/fa/message.php b/application/i18n/fa/message.php new file mode 100644 index 0000000000..cbb56144ec --- /dev/null +++ b/application/i18n/fa/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'لطفا یک کد امنیتی معتبر وارد کنید.', + 'required' => 'لطفا کد امنیتی معتبر را وارد کنید.', + ) , + 'email' => array( + 'email' => 'ایمیل وارد شده، یک ایمیل قابل قبول به نظر نمی رسد.', + 'length' => 'فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد.', + 'required' => 'اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود.', + ) , + 'message' => array( + 'required' => 'فیلد نظرات باید پُر شود.', + ) , + 'name' => array( + 'length' => 'طول فیلد نام باید حداقل ۳ کاراکتر باشد.', + 'required' => 'فیلد نام باید پُر شود.', + ) , + 'phone' => array( + 'length' => 'تلفن وارد شده معتبر نمی باشد.', + ) , +); diff --git a/application/i18n/fa/mhi.php b/application/i18n/fa/mhi.php new file mode 100644 index 0000000000..f643948afe --- /dev/null +++ b/application/i18n/fa/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'لطفا یک کد امنیتی معتبر وارد کنید.', + 'required' => 'لطفا کد امنیتی معتبر را وارد کنید.', + ) , + 'contact_email' => array( + 'email' => 'ایمیل وارد شده، یک ایمیل قابل قبول به نظر نمی رسد.', + 'required' => 'لطفا یک ایمیل معتبر وارد کنید.', + ) , + 'contact_message' => array( + 'required' => 'فیلد پیغام باید پُر شود.', + ) , + 'contact_subject' => array( + 'length' => 'طول فیلد موضوع باید حداقل ۳ کاراکتر باشد.', + 'required' => 'فیلد موضوع باید پُر شود.', + ) , +); diff --git a/application/i18n/fa/notifications.php b/application/i18n/fa/notifications.php new file mode 100644 index 0000000000..bde08ce119 --- /dev/null +++ b/application/i18n/fa/notifications.php @@ -0,0 +1,35 @@ + 'این پیغام از وبسایت شما فرستاده شده است.', + 'admin_login_url' => 'ورود مدیر', + 'admin_new_comment' => array( + 'message' => 'یک نظر جدید به وبسایت شما ارسال شده است. در پاسخ به:', + 'subject' => 'نظر جدید', + ) , + 'admin_new_email' => array( + 'message' => 'یک پیغام ایمیل به وبسایت شما ارسال شده است.', + 'subject' => 'پیغام ایمیل جدید', + ) , + 'admin_new_report' => array( + 'message' => 'یک گزارش جدید به وبسایت شما ارسال شده است.', + 'subject' => 'گزارش جدید', + ) , + 'admin_new_sms' => array( + 'message' => 'یک متن پیغام جدید به وبسایت شما ارسال شده است.', + 'subject' => 'متن پیغام جدید', + ) , + 'member_new_alert' => array( + 'message' => 'شما یک هشدار جدید دریافت کرده اید.', + 'subject' => 'هشدار جدید!', + ) , + 'member_new_message' => array( + 'message' => 'شما یک پیغام خصوصی دریافت کرده اید.', + 'subject' => 'پیغام خصوصی جدید', + 'footer' => 'جهت ارسال پاسخ لطفا به اینجا مراجعه کنید:', + ) , +); diff --git a/application/i18n/fa/page.php b/application/i18n/fa/page.php new file mode 100644 index 0000000000..728b8ce171 --- /dev/null +++ b/application/i18n/fa/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'لطفاً عنوان صفحه را وارد کنید.', + 'length' => 'عنوان صفحه حداقل باید ۳ حرف و حداکثر ۱۵۰ حرف داشته باشد.', + ) , + 'page_tab' => array( + 'required' => 'لطفاً یک اسم برای زبانه‌ی صفحه وارد کن.', + ) , + 'page_description' => array( + 'required' => 'لطفاً شرح صفحه را وارد کن.', + ) , +); diff --git a/application/i18n/fa/permissions.php b/application/i18n/fa/permissions.php new file mode 100644 index 0000000000..f81d5cde60 --- /dev/null +++ b/application/i18n/fa/permissions.php @@ -0,0 +1,26 @@ + 'دیدن گزارش‌ها', + 'reports_edit' => 'ایجاد/اصلاح/حذف گزارشات', + 'reports_approve' => 'تایید گزارشات', + 'reports_verify' => 'صحت گذاری گزارشات', + 'reports_comments' => 'مدیریت نظرات گزارشات', + 'reports_download' => 'دانلود گزارش‌ها', + 'reports_upload' => 'بارگذاری گزارش‌ها', + 'messages' => 'مدیریت پیغام ها', + 'messages_reporters' => 'مدیریت گزارش کننده های پیغام ها', + 'stats' => 'مشاهده ی آمار', + 'settings' => 'اصلاح تنظیمات', + 'manage' => 'مدیریت پَنِل', + 'users' => 'مدیریت کاربرها', + 'manage_roles' => 'مدیریت نقش ها', + 'checkin' => 'اجازی ورود کد', + 'checkin_admin' => 'مدیریت ورودی های کد', + 'admin_ui' => 'دسترسی به واسط کاربریِ مدیر', + 'member_ui' => 'دسترسی به واسطِ کاربریِ کاربران', +); diff --git a/application/i18n/fa/private_message.php b/application/i18n/fa/private_message.php new file mode 100644 index 0000000000..3ea64871e5 --- /dev/null +++ b/application/i18n/fa/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'شناسه‌ی مادر باید عددی باشد.', + ) , + 'private_to' => array( + 'required' => 'فیلد «به» باید پُر شود.', + 'exists' => 'کاربری که می‌خواهید به اون پیغام بفرستید وجود ندارد.', + ) , + 'private_subject' => array( + 'required' => 'فیلد موضوع باید پُر شود.', + 'length' => 'موضوع باید بین ۳ تا ۱۵۰ کاراکتر باشد.', + ) , + 'private_message' => array( + 'required' => 'فیلد پیغام باید پُر شود.', + ) , +); diff --git a/application/i18n/fa/report.php b/application/i18n/fa/report.php new file mode 100644 index 0000000000..40ad824735 --- /dev/null +++ b/application/i18n/fa/report.php @@ -0,0 +1,128 @@ + 'خطا!', + 'country_name' => array( + 'single_country' => 'این پیاده سازی تنها شامل یک کشور خواهد شد. لطفا اطمینان داشته باشید که محل وقوع گزارش در کشور %s است.', + ) , + 'data_include' => array( + 'between' => 'لطفا یک مورد معتبر جهت شامل شدن در بارگیری انتخاب کنید.', + 'numeric' => 'لطفا یک مورد معتبر جهت شامل شدن در بارگیری انتخاب کنید.', + ) , + 'data_active' => array( + 'between' => 'لطفا "گزارش منتطر تایید می باشد" یا "گزارش های تایید شده" یا هر دو را انتخاب کنید.', + 'numeric' => 'لطفا "گزارش منتطر تایید می باشد" یا "گزارش های تایید شده" یا هر دو را انتخاب کنید.', + 'required' => 'لطفا "گزارش منتطر تایید می باشد" یا "گزارش های تایید شده" یا هر دو را انتخاب کنید.', + ) , + 'data_verified' => array( + 'between' => 'لطفا "گزارش منتظر صحت گذاری می باشد" یا "گزارش های صحت گذاری شده" یا هر دو را انتخاب کنید.', + 'numeric' => 'لطفا "گزارش منتظر صحت گذاری می باشد" یا "گزارش های صحت گذاری شده" یا هر دو را انتخاب کنید.', + 'required' => 'لطفا "گزارش منتظر صحت گذاری می باشد" یا "گزارش های صحت گذاری شده" یا هر دو را انتخاب کنید.', + ) , + 'data_point' => array( + 'between' => 'لطفا یک نوع گزارش معتبر جهت بارگیری انتخاب کنید.', + 'numeric' => 'لطفا یک نوع گزارش معتبر جهت بارگیری انتخاب کنید.', + 'required' => 'لطفا یک نوع گزارش معتبر جهت بارگیری انتخاب کنید.', + ) , + 'format' => array( + 'required' => 'باید یک نوع فایل جهت بارگیری انتخاب کنید. لطفا یا CSV و یا XML را انتخاب کنید.', + 'valid' => 'لطفا یک نوعِ فایلِ معتبر برای بارگیری گزارش ها انتخاب کنید.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'فیلد "از تاریخ" به نظر شامل یک تاریخ معتبر نمی باشد.', + 'range' => 'لطفا در فیلد "از تاریخ" یک تاریخ معتبر وارد نمایید. این تاریخ نباید از تاریخ امروز بزرگتر باشد.', + ) , + 'incident_active' => array( + 'between' => 'لطفا یک مقدار معتبر برای "این گزارش را تایید کنید" وارد نمایید.', + 'required' => 'لطفا یک مقدار معتبر برای "این گزارش را تایید کنید" وارد نمایید.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'فیلد am/pm به نظر شامل یک مقدار معتبر باشد.', + ) , + 'incident_category' => array( + 'numeric' => 'فیلد "رده ها" به نظر شامل یک رده ی معتبر نمی باشد.', + 'required' => 'فیلد "رده ها" باید پر شود.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'فیلد تاریخ به نظر شامل یک تاریخ معتبر نمی باشد.', + 'date_mmddyyyy' => 'فیلد تاریخ به نظر شامل یک تاریخ معتبر نمی باشد.', + 'required' => 'فیلد تاریخ باید پر شود.', + ) , + 'incident_description' => array( + 'required' => 'فیلد شرح باید پُر شود.', + ) , + 'incident_hour' => array( + 'between' => 'فیلد ساعت به نظر شامل یک ساعت معتبر نمی باشد.', + 'required' => 'فیلد ساعت باید پر شود.', + ) , + 'incident_information' => array( + 'alpha' => 'لطفا یک مقدار معتبر جهت "احتمال اطلاعات" وارد نمایید.', + 'length' => 'لطفا یک مقدار معتبر جهت "احتمال اطلاعات" وارد نمایید.', + ) , + 'incident_minute' => array( + 'between' => 'فیلد دقیقه به نظر شامل یک مقدار معتبر نمی باشد.', + 'required' => 'فیلد دقیقه باید پر شود.', + ) , + 'incident_news' => array( + 'url' => 'فیلد "پیوندهای منبع خبر" به نظر شامل یک آدرس اینترنتی معتبر نمی باشد.', + ) , + 'incident_photo' => array( + 'size' => 'لطفا اطمینان حاصل کنید که تصویر بارگذاری شده از ۲ مگابایت بزرگتر نباشد.', + 'type' => 'فیلد "بارگذاری تصاویر" به نظر شامل یک فایل تصویر معتبر نیست. تنها فرمتهای قابل قبول JPG، PNG و GIF هستند', + 'valid' => 'فیلد "بارگذاری تصاویر" به نظر شامل یک فایل معتبر نمی باشد.', + ) , + 'incident_source' => array( + 'alpha' => 'لطفا یک مقدار معتبر جهت "میزان قابل اعتماد بودن منبع" وارد کنید.', + 'length' => 'لطفا یک مقدار معتبر جهت "میزان قابل اعتماد بودن منبع" وارد کنید.', + ) , + 'incident_title' => array( + 'length' => 'طول فیلد «عنوان گزارش» باید حداقل ۳ وحداکثر ۲۰۰ نویسه باشد.', + 'required' => 'فیلد «عنوان گزارش» باید پُر شود.', + 'csrf' => 'حمله ی CSRF احتمالی. آیا واقعا قصد ایجاد یا اصلاح یک گزارش را داشتید؟', + ) , + 'incident_verified' => array( + 'between' => 'لطفا یک مقدار معتبر برای "این گزارش را صحت گذاری کنید" وارد نمایید.', + 'required' => 'لطفا یک مقدار معتبر برای "این گزارش را صحت گذاری کنید" وارد نمایید.', + ) , + 'incident_video' => array( + 'url' => 'فیلد پیوندهای ویدیو به نظر شامل یک آدرس اینترنتی معتبر نمی باشد.', + ) , + 'latitude' => array( + 'between' => 'فیلد "عرض جغرافیایی" به نظر شامل یک عرض جغرافیایی معتبر نمی باشد.', + 'required' => 'فیلد "عرض جغرافیایی" باید پر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید.', + ) , + 'locale' => array( + 'alpha_dash' => 'فیلد "زبان محلی" شامل یک مقدار غیر صحیح است.', + 'exists' => 'این گزارش پیش از این به این زبان ترجمه شده است.', + 'length' => 'فیلد "زبان محلی" شامل یک مقدار غیر صحیح است.', + 'locale' => '"گزارش اصلی" و "ترجمه" هر دو یک زبان محلی را دارا می باشند.', + 'required' => '"زبان محلی" باید پُر شود.', + ) , + 'location_name' => array( + 'length' => 'فیلد "نام منطقه" باید حداقل ۳ و حداکثر ۲۰۰ کاراکتر باشد.', + 'required' => 'فیلد "نام منطقه" باید پُر شود.', + ) , + 'longitude' => array( + 'between' => 'فیلد "طول جغرافیایی" به نظر شامل یک طول جغرافیایی معتبر نمی باشد.', + 'required' => 'فیلد "طول جغرافیایی" باید پُر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید.', + ) , + 'person_email' => array( + 'email' => 'ظاهراً یک نشانی ایمیل معتبر در بخش فیلد ایمیل وارد نشده است.', + 'length' => 'فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد.', + ) , + 'person_first' => array( + 'length' => 'فیلد نام باید حداقل دارای ۳ و حداکثر ۱۰‬۰‬ کاراکتر باشد.', + ) , + 'person_last' => array( + 'length' => 'فیلد نام خانوادگی باید حداقل دارای ۲ و حداکثر ۱۰‬۰‬ کاراکتر باشد.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'فیلد "تا تاریخ" به نظر شامل یک تاریخ معتبر نمی باشد.', + 'range' => 'لطفا در فیلد "تا تاریخ" یک تاریخ معتبر وارد نمایید. این تاریخ نباید از تاریخ امروز بزرگتر باشد.', + 'range_greater' => 'مقدار فیلد "از تاریخ" نمی تواند از مقدار "تا تاریخ" بزرگتر باشد.', + ) , +); diff --git a/application/i18n/fa/reporters.php b/application/i18n/fa/reporters.php new file mode 100644 index 0000000000..9f26b8a4f5 --- /dev/null +++ b/application/i18n/fa/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'فیلد "عرض جغرافیایی" به نظر شامل یک عرض جغرافیایی معتبر نمی باشد.', + 'required' => 'فیلد "عرض جغرافیایی" باید پر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید.', + ) , + 'level_id' => array( + 'numeric' => 'ظاهرا فیلد سطح گزارشگر یک سطح معتبر ندارد.', + 'required' => 'ظاهرا فیلد سطح گزارشگر یک سطح معتبر ندارد.', + ) , + 'location_name' => array( + 'length' => 'فیلد "نام منطقه" باید حداقل ۳ و حداکثر ۲۰۰ کاراکتر باشد.', + 'required' => 'فیلد نام محل باید پُر شود. ', + ) , + 'longitude' => array( + 'between' => 'فیلد "طول جغرافیایی" به نظر شامل یک طول جغرافیایی معتبر نمی باشد.', + 'required' => 'فیلد "طول جغرافیایی" باید پُر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید.', + ) , + 'reporter_id' => array( + 'numeric' => 'گزارشگر نامعتبر', + 'required' => 'گزارشگر نامعتبر', + ) , +); diff --git a/application/i18n/fa/reports.php b/application/i18n/fa/reports.php new file mode 100644 index 0000000000..f0c4dd42c7 --- /dev/null +++ b/application/i18n/fa/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'لطفا تایید کنید که یک مورد را چک کرده‌اید.', + 'numeric' => 'لطفا تایید کنید که یک مورد را چک کرده‌اید.', + 'categories_required' => 'گزارش‌ها پیش از تایید باید طبقه‌بندی شوند.', + ) , + 'action' => array( + 'permission' => 'شما اجازه انجام دادن این عمل را ندارید.', + ) , + 'uploadfile' => array( + 'required' => 'باید یک فایل برای بارگذاری انتخاب کنید.', + 'type' => 'فایل مورد بارگذاری باید یا به نوع CSV و یا به نوع XML باشد.', + 'valid' => 'فیلد "بارگذاری فایل" به نظر شامل یک مقدار معتبر نمی باشد.', + ) , +); diff --git a/application/i18n/fa/roles.php b/application/i18n/fa/roles.php new file mode 100644 index 0000000000..4b95ba125d --- /dev/null +++ b/application/i18n/fa/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'فیلد شرح باید حداقل سه نویسه و حداکثر ۱۰۰ نویسه باشد.', + 'required' => 'فیلد شرح باید پُر شود.', + ) , + 'name' => array( + 'alpha_numeric' => 'فیلد «نام» تنها می‌تواند شامل حروف یا اعداد باشد.', + 'length' => 'فیلد نام باید حداقل ۳ و حداکثر ۸۰ نویسه باشد', + 'nomodify' => 'نقش مدیرویژه قابل اصلاح نیست.', + 'required' => 'فیلد نام باید پُر شود.', + ) , + 'access_level' => array( + 'numeric' => 'فیلد سطح دسترسی باید عددی بین ۰ تا ۱۰۰ باشد.', + 'required' => 'فیلد سطح دسترسی باید عددی بین ۰ تا ۱۰۰ باشد.', + ) , + 'permissions' => array( + 'numeric' => 'فیلد مجوز باید عددی بین ۰ تا ۱۰۰ باشد.', + ) , +); diff --git a/application/i18n/fa/settings.php b/application/i18n/fa/settings.php new file mode 100644 index 0000000000..ffdf5eb754 --- /dev/null +++ b/application/i18n/fa/settings.php @@ -0,0 +1,213 @@ + array( + 'between' => 'فیلد "قبول نظرات" به نظر شامل یک مقدار معتبر نمی باشد.', + 'required' => 'فیلد "قبول نظرات" باید پُر شود.', + ) , + 'allow_feed' => array( + 'between' => 'فیلد "فید را شامل شو" به نظر شامل یک مقدار معتبر نمی باشد.', + 'required' => 'فیلد "فید را شامل شو" باید پُر شود.', + ) , + 'allow_alerts' => array( + 'between' => 'فیلد "قبول هشدارها" به نظر شامل یک مقدار معتبر نمی باشد.', + 'required' => 'فیلد "قبول هشدارها" باید پُر شود.', + ) , + 'allow_reports' => array( + 'between' => 'فیلد "قبول گزارش ها" به نظر شامل یک مقدار معتبر نمی باشد.', + 'required' => 'فیلد "قبول گزارشات" باید پُر شود.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'فیلد "اشتراک گذاری آمار" به نظر شامل یک مقدار معتبر نمی باشد.', + 'required' => 'فیلد "اشتراک گذاری آمار" باید پُر شود.', + ) , + 'api' => array( + 'default_record_limit' => 'پیش فرض تعداد رکوردی که با هر درخواست API آورده می شود', + 'maximum_record_limit' => 'حداکثر تعداد رکوردی که با هر درخواست API آورده می شود', + 'maximum_requests_per_ip_address' => 'حداکثر تعداد درخواست های API برای هر آدرس API', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'ظاهرا فیلد Akismet شامل یک مقدار معتبر نمی باشد.', + 'length' => 'ظاهرا فیلد Akismet شامل یک مقدار معتبر نمی باشد.', + ) , + 'cache_pages' => array( + 'between' => 'فیلد صفحات مخزن باید پر شود.', + 'required' => 'ظاهرا فیلد صفحات مخزن شامل مقدار معتبری نمی باشد.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'ظاهرا فیلد طول عمر صفحات مخزن شامل یک مقدار معتبر نمی باشد.', + 'required' => 'فیلد طول عمر صفحات مخزن باید پر شود.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'به نظر می رسد سرور شما برای به کار بردن URL های پاک تنظیم نشده است. باید تنظیمات سرور خود را تغییر دهید تا URL های پاک را فعال کنید. برای دریافت اطلاعات بیشتر از چگونگی فعال سازی URL های پاک به این پست رجوع کنید. ', + 'clean_url_enabled' => 'این گزینه امکان دسترسی به یوشهیدی توسط URL های پاک را فعال می کند (بدون "index.php" در URL)', + 'enable_clean_url' => 'فعال کردن URL های پاک', + 'title' => 'URL های پاک', + ) , + 'clickatell_api' => array( + 'length' => 'فیلد شماره ی API Clickatell نباید بیشتر از 20 نویسه باشد.', + 'required' => 'فیلد شماره Clickatell API باید پر شود.', + ) , + 'clickatell_password' => array( + 'length' => 'فیلد گذرواژه Clickatell باید حداقل 5 و حداکثر 50 نویسه باشد.', + 'required' => 'فیلد نام کاربری Clickatell باید پر شود.', + ) , + 'clickatell_username' => array( + 'length' => 'فیلد نام کاربری Clickatells نباید بیشتر از 50 نویسه باشد.', + 'required' => 'فیلد نام کاربری Clickatell باید پر شود. ', + ) , + 'configure_map' => 'تنظیم نقشه', + 'default_location' => 'مکان پیش فرض', + 'default_map_all' => array( + 'alpha_numeric' => 'ظاهرا فیلد رنگ شامل یک مقدار معتبر نمی باشد.', + 'length' => 'فیلد رنگ نباید بیشتر از 6 نویسه باشد.', + 'required' => 'فیلد رنگ باید پر شود.', + ) , + 'default_map_view' => 'نمای پیش فرض نقشه', + 'default_zoom_level' => 'رده ی زوم پیش فرض', + 'download_city_list' => 'بازیابی شهرها از نام جغرافیایی ', + 'email_host' => array( + 'length' => 'فیلد سرور ایمیل بیش از حد طولانی است.', + 'numeric' => 'فیلد درگاه سرور ایمیل فقط می تواند شامل عدد باشد.', + ) , + 'email_password' => array( + 'length' => 'گذرواژه سرور ایمیل باید حداقل 5 و حداکثر 50 نویسه باشد.', + 'required' => 'گذرواژه ی سرور ایمیل باید پر شود.', + ) , + 'email_port' => array( + 'length' => 'فیلد درگاه سرور ایمیل بیش از حد طولانی است.', + 'numeric' => 'فیلد درگاه سرور ایمیل باید فقط شامل کاراکتر عدد باشد.', + ) , + 'email_servertype' => array( + 'length' => 'فیلد درگاه سرور ایمیل بیش از حد طولانی است.', + 'required' => 'فیلد نوع سرور ایمیل باید پر شود.', + ) , + 'email_username' => array( + 'length' => 'فیلد نام کاربری سرور ایمیل باید حداکثر 50 نویسه باشد.', + 'required' => 'نام کاربری سرور ایمیل باید پر شود.', + ) , + 'facebook' => array( + 'title' => 'گزینه های تنظیم فیس بوک', + 'description' => 'برای دریافت اطلاعات زیر باید یک درخواست فیس بوک جدید ایجاد کنید. ', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'فیلد Google Analytics باید شامل یک Web Property ID معتبر در قالب UA-XXXXX-XX باشد.', + ) , + 'https' => array( + 'enable_https' => 'فعال سازی HTTPS', + 'https_disabled' => 'این گزینه امکان دسترسی به یوشهیدی در حالت ناامن را فعال می کند; بدون ورود https پیش از URL', + 'https_enabled' => 'این گزینه امکان دسترسی به یوشهیدی در حالت امن را فعال می کند; با ورود https پیش از URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'ظاهرا فیلد موارد در صفحه (Frontend) شامل مقدار معتبر نمی باشد.', + 'required' => 'فیلد موارد در صفحه (Frontend) باید پر شود.', + ) , + 'items_per_page_admin' => array( + 'between' => 'ظاهرا فیلد موارد در صفحه (ادمین) شامل یک مقدار معتبر نمی باشد. ', + 'required' => 'فیلد موارد در هر صفحه (ادمین) باید پر شود.', + ) , + 'map' => array( + 'default_location' => 'تنظیم تامین کننده ی نقشه فرآیند آسانی است. یک تامین کننده انتخاب کنید، از سایت تامین کننده یک کلید API بگیرید و کلید API خود را وارد کنید. ', + 'zoom' => 'رده ی زوم', + ) , + 'map_provider' => array( + 'choose' => 'یک تامین کننده نقشه انتخاب کنید.', + 'enter_api' => 'وارد کردن کلید API', + 'get_api' => 'دریافت کلید API ', + 'info' => 'تنظیم تامین کننده ی نقشه فرآیند آسانی است. یک تامین کننده انتخاب کنید، از سایت تامین کننده یک کلید API بگیرید و کلید API خود را وارد کنید. ', + 'name' => 'تامین کننده نقشه', + ) , + 'map_timeline' => 'محور زمانی نقشه ', + 'map_settings' => 'تنظیمات نقشه', + 'multiple_countries' => 'آیا این گسترش یوشهیدی شامل چند کشور می‌شود؟', + 'select_default_location' => 'کشور پیش فرض خود را انتخاب کنید', + 'set_location' => 'بر روی نقشه کلیک کرده و بکشید تا مکان دقیق خود را مشخص کنید.', + 'site' => array( + 'allow_clustering' => 'گزارش های خوشه ای روی نقشه ', + 'allow_comments' => 'اجازه ی ثبت نظر بر گزارش به کاربرها', + 'allow_feed' => 'شامل کردن فید اخبار RSS در سایت', + 'allow_alerts' => 'اجازه ی اشتراک برای دریافت هشدار ها به کاربرها', + 'allow_reports' => 'اجازه ی ثبت گزارش به کاربرها', + 'api_akismet' => 'کلید Akismet', + 'banner' => 'برنمای سایت', + 'blocks_per_row' => 'بلوک ها در هر ردیف', + 'cache_pages' => 'صفحات مخزن', + 'cache_pages_lifetime' => 'طول عمر صفحات مخزن', + 'checkins' => 'فعال کردن ورودها', + 'copyright_statement' => 'بیانیه ی حق نسخه برداری سایت', + 'default_category_colors' => 'رنگ پیش فرض برای تمام دسته ها', + 'default_category_icons' => 'نمایه ی پیش فرض برای تمام دسته ها ', + 'delete_banner_image' => 'پاک کردن تصویر برنما', + 'delete_default_map_all_icon' => 'پاک کردن نمایه ی پیش فرض', + 'display_contact_page' => 'نمایش صفحه ی ارتباط', + 'display_howtohelp_page' => 'نمایش صفحه " چگونگی کمک"', + 'email_alerts' => 'هشدار های نشانی ایمیل', + 'email_notice' => ' برای دریافت گزارش توسط ایمیل، لطفا تنظیمات حساب کاربری ایمیل خود را تغییر دهید.', + 'email_site' => 'نشانی ایمیل سایت', + 'google_analytics' => 'آمار تحلیلی گوگل', + 'google_analytics_example' => 'Web Property ID در قالب : UA-XXXXX-XX', + 'items_per_page' => 'تعداد موارد در صفحه - Front End', + 'items_per_page_admin' => 'تعداد موارد در صفحه - ادمین', + 'kismet_notice' => 'از نظرات جفنگ توسط Akismet از Automattic جلوگیری کنید.
با ایجاد حساب کاربری در WordPress.com می توانید کلید مجانی API دریافت کنید. ', + 'laconica_configuration' => 'اعتبار نامه Laconia', + 'laconica_site' => ' سایت Laconia', + 'language' => 'زبان سایت', + 'manually_approve_users' => 'تایید دستی کاربرها', + 'message' => 'پیغام سایت', + 'name' => 'نام سایت', + 'private_deployment' => 'پیاده سازی شخصی ', + 'require_email_confirmation' => 'درخواست تایید ایمیل کاربر', + 'submit_report_message' => 'ثبت گزارش', + 'share_site_stats' => 'آمار (ذخیره شده بر روی سرور یوشهیدی) را فعال کنید', + 'tagline' => 'برچسب سایت', + 'timezone' => 'منطقه ی زمانی', + 'title' => 'تنظیمات سایت', + 'twitter_configuration' => 'گزاره های جستجوی توییتر', + 'twitter_hashtags' => 'هشتگ ها باید با ویرگول جدا شوند. ', + ) , + 'site_email' => array( + 'email' => 'ظاهرا یک نشانی معتبر در فیلد ایمیل سایت وارد نشده است.', + 'length' => 'فیلد ایمیل سایت باید حداقل 4 و حداکثر 100 نویسه باشد.', + ) , + 'site_name' => array( + 'length' => 'فیلد نام مکان باید حداقل 3 و حداکثر 50 نویسه باشد', + 'required' => 'فیلد نام سایت باید پر شود.', + ) , + 'site_tagline' => array( + 'length' => 'فیلد برچسب باید حداقل 3 و حداکثر 100 نویسه باشد.', + 'required' => 'فیلد برچسب باید پر شود. ', + ) , + 'sms' => array( + 'clickatell_api' => 'شماره ی Clickatell API شما', + 'clickatell_check_balance' => 'میزان اعتبار Clickatel تان را چک کنید.', + 'clickatell_load_balance' => 'بارگذاری میزان اعتبار ', + 'clickatell_password' => 'گذرواژه Clickatell شما', + 'clickatell_text_1' => 'برای ثبت نام در خدمات Clickatells در اینجا کلیک کنید.', + 'clickatell_text_2' => 'اطلاعات دسترسی Clickatell خود را اینجا وارد کنید.', + 'clickatell_username' => 'نام کاربری Clickatell شما', + 'flsms_text_1' => 'شماره تلفن (های) متصل به Frontline SMS را در فیلد (های) زیر وارد کنید.', + 'flsms_text_2' => 'عدد مورد نظر را بدون علامت + یا خط فاصله وارد کنید.', + 'option_1' => 'گزینه 1: استفاده از Frontline SMS', + 'option_2' => 'گزینه 2: استفاده از دروازه جهانی sms', + 'title' => 'گزینه های تنظیم sms', + ) , + 'sms_no1' => array( + 'length' => 'ظاهر در ا فیلد تلفن 1 مقدار معتبری وارد نشده است. ', + 'numeric' => 'فیلد تلفن 1 فقط می تواند شامل کاراکتر عدد باشد.', + ) , + 'sms_no2' => array( + 'length' => 'فیلد تلفن 2 بیش از حد طولانی است.', + 'numeric' => 'فیلد تلفن 2 فقط می تواند شامل کاراکتر عدد باشد.', + ) , + 'sms_no3' => array( + 'length' => 'فیلد تلفن 3 بیش از حد طولانی است.', + 'numeric' => 'فیلد تلفن 3 فقط می تواند شامل کاراکتر عدد باشد.', + ) , +); diff --git a/application/i18n/fa/sharing.php b/application/i18n/fa/sharing.php new file mode 100644 index 0000000000..cea85d93aa --- /dev/null +++ b/application/i18n/fa/sharing.php @@ -0,0 +1,25 @@ + 'تاریخ ورودی', + 'date_added' => 'تاریخ اضافه شد.', + 'last_access' => 'آخرین دسترسی', + 'sharing_color' => array( + 'length' => 'طول کاراکتر فیلد رنگ باید ۶ باشد.', + 'required' => 'فیلد رنگ باید پُر شود.', + ) , + 'sharing_name' => array( + 'length' => 'نامی که برای اشتراک‌گذاری انتخاب شده معتبر نیست.', + 'required' => 'نام اشتراک‌گذاری لازم است.', + ) , + 'sharing_url' => array( + 'exists' => 'نشانی وب‌سایت وجود دارد.', + 'length' => 'نشانی وب‌سایت معتبر نیست.', + 'required' => 'نشانی وب‌سایت لازم است.', + 'url' => 'آدرس اینترنتی وبسایت به نظر شامل یک آدرس اینترنتی معتبر نمی باشد.', + ) , +); diff --git a/application/i18n/fa/stats.php b/application/i18n/fa/stats.php new file mode 100644 index 0000000000..e89ad4eadb --- /dev/null +++ b/application/i18n/fa/stats.php @@ -0,0 +1,42 @@ + 'تأیید‌ شده', + 'categories' => 'دسته‌ها', + 'category_impact' => 'میزان تاثیر دسته', + 'category_impact_description' => 'این جدول یه شما یک دید خطی از دسته های مختلف گزارش ها در طول زمان می دهد. از چپ به راست حرکت کنید تا یک نمای تطبیقی از دسته های مختلف داشته باشید. موشواره را روی نمودار ببرید تا جزئیات بیشتری ببینید.', + 'choose_date_range' => 'بازه ی تاریخ را انتخاب کنید.', + 'countries' => 'کشور ها', + 'country' => 'کشور', + 'country_breakdown' => 'تفکیک کشور', + 'description' => 'بخش آمار به زودی دارای شرح کلی ای خواهد شد. فعلا توسط این پیوند های زیر دسته ای جستجو کنید.', + 'error' => 'خطا', + 'glossary' => 'واژه نامه', + 'hit_summary' => 'خلاصه نمایش', + 'legend' => 'شرح', + 'pageviews' => 'تعداد بازدید صفحه', + 'pageviews_description' => 'تعداد کل صفحاتی که مراجعه کنندگان روی سایت شما بازدید کرده اند.', + 'reports' => 'گزارش‌ها', + 'reports_categories' => 'دسته های گزارش ها', + 'reports_statistics' => 'آمار گزارش ها', + 'reports_status' => 'وضعیت گزارش ها', + 'report_punchcard' => 'پانچ کارت گزارش', + 'report_stats' => 'آمار گزارش ها', + 'stats_not_setup' => 'آمار تنظیم نشده است', + 'time_range_1' => '1 ماه', + 'time_range_2' => '3 ماه', + 'time_range_3' => '6 ماه', + 'time_range_all' => 'همه', + 'unapproved' => 'تأیید نشده', + 'unique_visitors' => 'بازدید کننده های منحصر به فرد', + 'unique_visitors_description' => 'تعداد افرادی که به گستره ی شما رجوع کرده اند. بازدید کنندگان منحصر به فرد توسط cookie ها شناسایی می شوند. بازدید کننده هایی که cookie های خود را فعال نکرده اند توسط آدرس IP ، تفکیک پذیری، جستجو گر ، پلاگین، سیستم عامل و غیره شناسایی می شوند. ', + 'unverified' => 'صحت گذاری نشده', + 'verified' => 'صحت‌گذاری‌شده', + 'visitor_summary' => 'خلاصه بازدید ها', + 'visits' => 'بازدید ها', + 'visits_description' => 'یک "بازدید" رکوردی از یک مراجعه کننده منحصر به فرد است که بیش از 30 دقیقه پس از آخرین بازدید خود به سایت مراجعه کرده است.', +); diff --git a/application/i18n/fa/tooltips.php b/application/i18n/fa/tooltips.php new file mode 100644 index 0000000000..501a9358fc --- /dev/null +++ b/application/i18n/fa/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'در اینجا می توانید گزارش را به دسته های دیگری هم اضافه کنید. مثلا اگر گزارش شما از قبل در دسته ی 2 بوده باشد و شما اینجا دسته ی 1 را انتخاب کنید، گزارش در هر دو دسته ی 1 و 2 قرار خواهد گرفت. ', + 'approve' => 'در اینجا می توانید یک گزارش را قبول یا رد کنید. در صورت قبول، گزارش به صورت عمومی نشان داده خواهد شد.', + 'assign_badge' => 'شما می توانید یک نشان به هر کاربر تریگر اختصاص دهید. نشان مورد نظر را اینجا انتخاب کنید.', + 'between_times' => 'این یک بازه‌ی زمانی بین دو زمان داده شده با فرمت 24 ساعته است. اگر زمانی که در فیلد دوم وارد می‌کنید زودتر از فیلد اول باشد، این دو مقدار با هم جابه‌جا خواهند شد. این زمان‌ها باید در یک روز باشند. همچنین، این زمان‌ با زمانی که شما در بخش تنظیمات سایت برای سایت‌تان پیکربندی کرده‌اید و نه لزوماً در برابر موقعیت زمانی کاربر چک خواهد شد. برای نادیده گرفته شدن این توصیف‌گر، مقدار 00:00 تا 00:00 را نگه‌دارید.', + 'category' => 'اگر دوست دارید تریگرها تنها زمانی که یک دسته ی خاص در حال استفاده است فعال کردد، می توانید آن را اینجا تنظیم کنید. این کار تریگر را واردار می کند وقتی تنها یکی از دسته ها در حال استفاده است فعال شود. برای مثال اگر دسته ی 1 و 2 را اینجا انتخاب کنید و یک گزارش در دسته ی 2 و 3 ثبت شود، تریگر فعال خواهد شد.', + 'days_of_the_week' => 'در صورتیکه این فعالیتها در روزهای خاصی از هفته اتفاق بیفتد، آن را اینجا تنظیم کنید. دقت کنید که روز از زوی منطقه زمانی که روی گسترش شما تنظیم شده است تعیین می گردد. کلید شیفت و کامند یا کنترل را نگه دارید تا بتواند روزهای متعددی انتخاب کنید.', + 'email_body' => 'متن ایمیلی که ارسال خواهد شد.', + 'email_subject' => 'موضوع ایمیلی که ارسال خواهد شد.', + 'feed_id' => 'فید می تواند تمام فیدها یا چند فید خاص باشد. اگر مایلید تنها چند فید خاص تریگر را فعال کنند، باید آنها را اینجا انتخاب کنید. در غیر این صورت می توانید اینجا همان گزینه ی "همه" را بزنید.', + 'from' => 'نام کاربر توئییتر (یا نام چندین کاربر توئییتر که با ویرگول از هم جدا شده اند). اگر می خواهید تریگر را تنها برای پیام های توئییتر یک کاربر خاص فعال کنید، نام کاربری آنها را اینجا وارد کنید. (بدون علامت @).', + 'keywords' => 'اگر نمی خواهید مقایسه با کلمات کلیدی انجام شود، می توانید اینجا را خالی بگذارید. ولی اگر اینجا کلمه اضافه کنید، باید آنها را با ویرگول (،) از هم جدا کنید. برای مثال اگر می خواهید هرگاه کسی کلمات "عشق" یا "صلح" را در پیام خود به کار برد ماشه یا Trigger فعال شود، باید در جعبه کلمات کلیدی بنویسید "عشق ، صلح".', + 'location' => 'شما می‌توانید یا «هر جا» و یا «یک مکان مشخص» را انتخاب کنید. اگر یک مکان مشخص را انتخاب کنید، از شما خواسته خواهد شد که مستطیلی دور منطقه‌ای که یک کنش را توصیف می‌کند بکشید. برای نمونه، اگر می‌خواهید که این تریگر وقتی که کاربری گزارشی در برزیل ارسال می‌کند فعال شود، «یک مکان مشخص» را انتخاب کنید و مستطیل را دور برزیل بکشید. شما می‌توانید این مستطیل‌ها را هر مقدار که بخواهید کوچک یا بزرگ بکشید. همچنین، می‌توانید بیش از یک مستطیل‌ بکشید.', + 'on_specific_count' => 'این توصیف‌گر تریگر را وقتی فعال می‌کند که تعداد یا برای کل مجموعه و یا برای هر کاربری به N برسد. برای نادیده گرفته شدن خالی بگذارید.', + 'report_title' => 'این عنوان پیش‌فرض است که می‌توانید به گزارش اضافه کنید.', + 'response' => 'اگر همه‌ی توصیف‌گرهای بالا درست باشند، تریگر شروع به پاسخ می‌کند. این پاسخ می‌تواند چیزی مانند تأیید یک گزارش یا ایمیل زدن به یک کاربر باشد. در این‌جا نوع پاسخ را انتخاب کنید تا گزینه‌های بیشتر در باره‌ی این پاسخ فعال شوند.', + 'send_to' => 'اگر «تریگر کردن کاربر»‌ را انتخاب کنید، ایمیل به کاربری که کنش مربوطه را انجام داده است فرستاده خواهد شد. اگر رادیو باتن کنار قسمت ورودی را انتخاب کنید، از شما خواسته خواهد شد که یک آدرس ایمیل وارد کنید. این برای وقتی مفید است که می‌خواهید تریگرهایی تنظیم کنید که وقتی گزارش، اعلام ورود، یا کنش‌های دیگر برای منطقه‌ی خاصی روی نقشه دریافت شود افراد خاصی را مطلع کنند.', + 'specific_days' => 'شما در این‌جا می‌توانید بیش از یک روز را انتخاب کنید. تاریخ‌ها با تنظیمات منطقه‌ی زمانی مکانی که سایت برای آن‌جا گسترش داده شده است تعیین می‌شوند. برای این که همه‌ی تاریخ‌ها را به عنوان پیش‌فرض داشته باشید، هیچ تاریخی را انتخاب نکنید.', + 'trigger' => 'این تریگر بخش اصلی تنظیم کردن تریگرهای کنش‌تان است. این‌جا جایی است که باید تعیین کنید که آیا می‌خواهید مثلاً وقتی کسی گزارشی می‌فرستد یا اعلام ورود می‌کند اتفاق خاصی بیفتد. بعد از انتخاب، شما خواهید توانست پاسخ‌های به این کنش‌ها را فیلتر کنید.', + 'user' => 'کاربر می‌تواند یا هر کس و یا یک کاربر خاص باشد. اگر شما فقط می‌خواهید که کاربرهای خاصی بتوانند تریگری را فعال کنند، باید این کاربرها را این‌جا انتخاب کنید. در غیر این صورت، باید گزینه‌ی «هر کس» را در این‌جا نگه‌دارید، چون بیشتر تریگرها برای همه‌ی کاربرهایی که با سیستم کار می‌کنند تنظیم می‌شوند.', + 'verify' => 'گزارش را به عنوان اعتبارسنجی شده یا اعتبارسنجی نشده علامت‌گذاری کنید.', + ) , + 'change_picture' => 'صفحه‌های پروفایل این سایت از Gravatar استفاده می‌کنند. می‌توانید با کلیک کردن روی تصویرتان، به سایت Gravatar بروید و تصویر پروفایل‌تان را تغییر دهید.', + 'default_value' => 'مقدارها را با ویرگول از هم جدا کنید، برای نمونه مقدار1، مقدار 2.', + 'radio_choices' => 'مقدارها را با ویرگول از هم جدا کنید، برای نمونه مقدار‌1، مقدار 2. در صورتی که می‌خواهید مقداری را به عنوان پیش‌فرض قرار دهید، لیست گزینه‌ها را با :: تمام کنید. برای نمونه اگر می‌خواهید مقدار 3 پیش‌فرض باشد، بنویسید مقدار 1، مقدار 2، مقدار 3::مقدار 3', + 'dropdown_choices' => 'انتخاب‌ها را با ویرگول از هم جدا کنید، برای نمونه مورد 1، مورد 2.', + 'private_to' => 'فهرست اعضا را تایپ کنید.', + 'private_subject' => 'موضوع پیغام خصوصی', + 'private_message' => 'پیغام خصوصی', + 'profile_color' => 'شما می توانید رنگی که در زیر عکس پروفایل شما در پروفایلتان ظاهر می شود را انتخاب کنید. این رنگ ضمنا رنگ نقطه ای خواهد بود که روی نقشه در هنگام ورود شما ظاهر می شود.', + 'profile_email' => 'آدرس ایمیل شما', + 'profile_name' => 'این یکی از راه هایی است که شما روی وبسایت شناخته می شوید. دقت کنید که این اطلاعات عمومی است!', + 'profile_new_password' => 'اگر این گزینه تنظیم شود، این گذرواژه ی جدید شما خواهد بود. اگر می خواهید گذزواژه ی فعلی خود را نگه دارید، اینجا را خالی بگذارید.', + 'profile_new_users_password' => 'این برای ایجاد کاربر جدید ضروری است و گذرواژه کاربرها خواهد بود. شما باید از کاربر خود بخواهید پس از ورود برای بار اول گذرواژه خود را عوض کند.', + 'profile_notify' => 'با انتخاب "بلی" می توانید وقتی گزارش ها یا نظرات جدید در وبسایت پست شد، از طریق ایمیل هشدار دریافت کنید.', + 'profile_password' => 'گذرواژه ی فعلی شما. ار شما می خواهیم که گذرواژه ی خود را وارد کنید تا از هر تغییر عیر مجاز در حساب کاربری شما جلوگیری شود.', + 'profile_public' => 'اکر این گزینه را انتخاب کنید هرکسی روی اینترنت می تواند پروفایل شما را ببیند. همچنین این راحت ترین راه برای نمایش گزارش هایی که ثبت کرده اید و ورودها و نشان ها و ... شما همه در یک صفحه می باشد.', + 'profile_public_url' => 'این آدرسی است که پروفایل عمومی شما در آنجا قرار گرفته.', + 'profile_username' => 'نام کاربری شما قابل تغییر نمی باشد.', + 'settings_access_level' => 'رده های دسترسی برای محدود کردن میزان دسترسی به داده های درون فیلدهای فرم دلخواه استفاده می شوند. رده های دسترسی بالا می توانند به فیلدهای رده های دسترسی پایین تر دسترسی پیدا کنند. مدیر ویژه بالاترین رده ی دسترسی را دارد (100). داده های عمومی با پایین ترین رده ی دسترسی نمایش داده می شوند (0). اعضا دارای رده ی دسترسی 10 هستند. مدید به صورت پیش فرض دارای رده دسترسی 90 می باشد.', + 'settings_alert_email' => 'این نشانی ایمیلی است که هشدارهای ایمیلی از آن ارسال می شوند.', + 'settings_allow_alerts' => 'دادن اجازه به کاربرها برای اشتراک برای دریافت هشدارها از طریق اینترنت.', + 'settings_allow_clustering' => 'این گزینه امکان دسته بندی خبرهای مشابه را به صورت یک نقطه روی نقشه می دهد.', + 'settings_allow_comments' => 'دادن اجازه به کاربر برای نظردهی روی گزارش های سایت اصلی', + 'settings_allow_feed' => 'این گزینه به فیدهای خبری RSS اجازه می دهد که در سایت اصلی شان داده شوند.', + 'settings_allow_feed_category' => 'این گزینه امکان ایجاد یک شاخه از فید خبری RSS را می‌دهد.', + 'settings_allow_reports' => 'دادن اجازه به کاربرها برای ثبت اطلاعات از طریق فرم اینترنتی.', + 'settings_api_default_record_limit' => ' پیش فرض تعداد رکوردهایی که با هر درخواست API آورده می شوند', + 'settings_api_max_record_limit' => 'حداکثر تعداد رکوردی که با هر درخواست API آورده می شود', + 'settings_api_max_requests_per_ip' => 'حداکثر تعداد درخواست های API به ازای هر آدرس IP', + 'settings_banner' => 'اگر تمی که از آن استفاده می کنید برنما را پشتیبانی کند، برنمای سایت در بالای وبسایت شما در طرف کاربر نمایش داده خواهد شد. سایز پیشنهادی برای این برنما به تم انتخابی شما بستگی دارد. به خاطر داشته باشید که این برنما عنوان و برچسب سایت در بالای صفحه را جایگزین خواهد کرد.', + 'settings_blocks_per_row' => 'تعداد ستون های بلوکی که در هر ردیف نمایش داده خواهد شد.', + 'settings_cache_pages' => 'نگه داری صفحه در حافظه‌ی پنهان را فعال یا غیرفعال کنید. این باعث می‌شود که زمان پاسخ کم‌تر شود و صفحه سریع‌تر نمایش داده شود. توصیه‌ی ما این است که برای سایت‌های با ترافیک بالا این گزینه را فعال کنید. ** به یاد داشته باشید که گزارش‌ها گزارش‌ها در فرانت‌اند بر اساس زمان‌بندی‌ای که در پایین تعیین می‌کنید (مدت زنده بودن حافظه‌ی پنهان) پر می‌شوند.', + 'settings_cache_pages_lifetime' => 'طول عمر مخزن را تعیین کنید.', + 'settings_checkins' => 'این تنظیم اعلام ورود را روی گسترش شما فعال می‌کند. اعلام ورود یک نوع ساده‌ی گزارش است که بدون نظارت بر صفحه‌ی اصلی نمایش داده می‌شود و لازم است که سایت‌تان به صورت خاصی پیکربندی شده باشد. وقتی که این گزینه را فعال می‌کنید، مطمئن شوید که منطقه‌ی زمانی به UTC تنظیم شده است و تم سایت اعلام ورود را پشتیبانی می‌کند. وقتی که این گزینه را فعال می‌کنید، تم‌هایی که فقط اعلام ورود را پشتیبانی می‌کنند در قسمت تنظیمات افزودنی‌ها/تم‌ها فعال می‌شوند.', + 'settings_configure_map' => 'نتظیم نقشه برای پوشش دهی یک مکان خاص.', + 'settings_default_category_colors' => 'برای همه‌ی رده‌های روی سایت یک کدبندی رنگی تعیین کنید.', + 'settings_default_category_icons' => 'یک نقشک برای رده‌های روی سایت تعیین کنید.', + 'settings_default_location' => 'این، کشوری است که سایت برای آن گسترش یافته است.', + 'settings_display_contact' => 'باریکه‌ی کانتکت‌ها را روی وب‌سایت اصلی نمایش دهید یا مخفی کنید.', + 'settings_display_howtohelp' => 'برگه ی چگونگی کمک کردن را روی وب‌سایت اصلی نمایش دهید یا مخفی کنید.', + 'settings_display_items_per_page' => 'این تعداد گزارش هایی هست که در هر صفحه در سایت اصلی نمایش داده خواهد شد.', + 'settings_display_items_per_page_admin' => 'این تعداد گزارش هایی هست که در هر صفحه در طرف مدیر نمایش داده خواهد شد.', + 'settings_flsms_download' => 'اینجا قطب پیامهای دریافتی است.', + 'settings_flsms_synchronize' => 'اینجا پیام های قطب با بستر نرم افزاری یوشهیدی همگام می شوند.', + 'settings_flsms_text_1' => 'شماره تلفنی که پیامک ها از طریق آن دریافت می شوند.', + 'settings_google_analytics' => 'بازدیدکنندگان سایتتان را پیگیری کنید. می توانید آمار دقیقی از بازدیدکننده ها داشته باشید.', + 'settings_locale' => 'زبانی که در سایت استفاده خواهد شد را تنظیم کنید.', + 'settings_manually_approve_users' => 'اگر این گزینه را به بلی تغییر دهید، باید هر کاربر جدیدی را که در سایتتان حساب کاربری می سازد تایید کنید و به آنها نقش اختصاص دهید. (مثل عضو، مدیر، مدیر ویژه).', + 'settings_map_provider' => 'اینجا می توانید تعیین کنید که کدام نقشه در سایت استفاده شود.', + 'settings_map_timeline' => 'اینجا محور زمانی ای بر اساس زمان و تاریخی که گزارش ها ثبت شده اند نشان داده می شود.', + 'settings_private_deployment' => 'اگر این گزینه را به بلی تغییر دهید، گستره ی شما خصوصی خواهد شد و تنها کاربران با حساب های خاصی که شما مشخص می کنید می توانند به آن دسترسی پیدا کنند.', + 'settings_require_email_confirmation' => 'اگر این گزینه را به بلی تغییر دهید، یک پیوند تایید به کاربرها ایمیل خواهد شد که قبل از ورود به سایت باید آن را کلیک کنند. اگر این گزینه را پس از این که سایت شما کاربر پذیرفته فعال کنید، از کاربرها خواسته خواهد شد که حساب خود را تایید کنید پیش از آن که بتوانند به استفاده از آن ادامه دهند.', + 'settings_server_host' => 'این جایی است که ایمیل ها در آن قرار دارند.', + 'settings_server_password' => 'این گذرواژه ی آدرس ایمیلی است که گزارش ها را دریافت می کند.', + 'settings_server_port' => 'این برای قبول ارتباطات برقرار شده از آدرس ایمیل لازم است.', + 'settings_server_ssl_support' => 'این گزینه برای بهبود امنیت ارتباط لازم است.', + 'settings_server_type' => 'این برای بازیابی ایمیل ها از سرور میزبان لازم است.', + 'settings_server_username' => 'این آدرس ایمیلی است که گزارش ها را دریافت می کند.', + 'settings_share_site_stats' => 'آمار کلیک ها روی سروری که توسط یوشهیدی کنترل می شود، ذخیره خواهد شد. با فعال کردن این گزینه، شما به طور مستقیم به این آمار از روی پیشخوان مدیر دسترسی خواهید داشت. با غیر فعال کردن آن، شما دیگر آماری جمع آوری نخواهید کرد و نمی توانید هنگامی که این گزینه خاموش است، آمار رفت آمد های جمع آوری شده را بازیابی کنید.', + 'settings_site_copyright_statement' => 'آیا دیگران حق نشر مجدد نوشته ها، عکس ها، ویدئو ها و/یا طرح هایی که شما و کاربرانتان ایجاد کرده اید دارند؟ اگر مایلید مشخص کنید که دیگران با کارهای شما چه می توانند کنند به پیوند https://creativecommons.org/choose/ بروید و به فراموش نکنید که در مورد اینکه چه عناصری از سایت را پروانه دار می کنید دقیق باشید.', + 'settings_site_email' => 'این آدرس ایمیلی است که گزارش های ایمیلی و پیامهای فرم ارتباط را دریافت می کند.', + 'settings_site_message' => 'این نوشته ای است که بالای نقشه در صفحه ی خانه ی سایت نمایش داده می شود. می توانید از این برای دادن اطلاعات مهم به بازدیدکنندگان سایت استفاده کنید. برای پاک کردن جعبه، تنها کافی است پیام را اینجا پاک کنید. ', + 'settings_site_name' => 'این نام سایتی است که در بالای سایت اصلی نمایش داده می شود.', + 'settings_site_submit_report_message' => 'این پیغامی است که در صفحه ثبت گزارش نمایش داده خواهد شد. اینجا محل خوبی است برای نوشتن بیانیه رفع مسئولیت یا دستورالعمل های بیشتر برای بازدیدکنندگانی که گزارش خواهند کرد.', + 'settings_site_tagline' => 'در چند جمله کوتاه توضیح دهید این سایت درباره ی چیست.', + 'settings_site_timezone' => 'این محدوده ی زمانی ای است که سایت شما در آن کار خواهد کرد. تنظیم این بر هریک ار عملیاتی که تنظیم کرده اید و از زمان و تاریخ استفاده می کنند و نیزبر زمان پیش فرض گزارش ها در جلو و عقب وبسایت تاثیر خواهد داشت.', + 'settings_twitter_configuration' => 'تنظیم هشتگ توئییتری که در توئییت ها به کار برده خواهد شد.', +); diff --git a/application/i18n/fa/ui_admin.php b/application/i18n/fa/ui_admin.php new file mode 100644 index 0000000000..24f020f816 --- /dev/null +++ b/application/i18n/fa/ui_admin.php @@ -0,0 +1,320 @@ + 'اجازه‌ی دسترسی داده نشده است. یا اعتبارنامه‌ی شما معتبر نیست و یا درخواست شما رد شده است.', + 'access_denied_others' => 'اجازه‌ی دسترسی داده نشد. تقاضایتان دریافت شد اما به دلیل محدودیت‌های دسترسی مانند زمان اجازه‌ی دسترسی داده نشد. لطفاً دوباره دیرتر سعی کنید.', + 'access_level' => 'سطح دسترسی', + 'actions' => 'کنش‌ها', + 'add_to_category' => 'اضافه کن به دسته', + 'added' => 'اضافه شد', + 'added_edited' => 'اضافه شد/ویرایش شد', + 'addons' => 'افزونه‌ها', + 'admin_role' => 'مدیر', + 'alerts' => 'هشدارها', + 'alerts_received' => 'هشدارها دریافت شد', + 'all' => 'همه', + 'am' => 'صبح', + 'anonymous' => 'گمنام', + 'anyone_role' => 'هرکس', + 'anywhere' => 'هرکجا', + 'api_banned' => 'ای‌پی‌آی ممنوع شد', + 'api_logs' => 'لاگ‌های ای‌پی‌آی', + 'api_settings' => 'تنظیمات ای‌پی‌آی', + 'api_unban' => 'لغو ممنوعیت', + 'api_unban_all' => 'لغو ممنوعیت از همه', + 'approved' => 'تأیید‌شده', + 'approve_auto' => 'تأیید خودکار', + 'approve_manual' => 'تأیید دستی', + 'archived' => 'بایگانی‌شده', + 'are_you_sure_you_want_to' => 'آیا مطمئنی که می‌خواهی ', + 'are_you_sure_you_want_to_delete_this_item' => 'آیا مطمئنی که می‌خواهی این بخش را پاک کنی؟', + 'are_you_sure_you_want_to_delete_this_photo' => 'آیا مطمئنی که می‌خواهی این عکس را پاک کنی؟', + 'are_you_sure_you_want_to_switch_forms' => 'آیا مطمئنی که می‌خواهی فرم‌ها را جابه‌جا کنی؟', + 'assign' => 'تخصیص', + 'assignments' => 'کارها', + 'assign_badge' => 'تخصیص نشان', + 'author' => 'نویسنده', + 'author_email' => 'ایمیل نویسنده', + 'back' => 'قبلی', + 'banip_action' => 'آی‌پی را مسدود کن', + 'between_times' => 'بین زمان‌ها', + 'blocks' => 'بلوک ها', + 'body' => 'بدنه', + 'cancel' => 'لغو', + 'categories' => 'دسته‌ها', + 'chart_display_error' => 'خطا در نمایش نمودار', + 'check_message_valid' => 'لطفاً مطمئن شو که پیغام‌ات صحیح است.', + 'check_number' => 'لطفاً مطمئن شو که شماره صحیح است.', + 'check_sms_settings' => 'لطفاً تنظیمات اس‌ام‌اس‌ات را چک کن!', + 'checkin_details' => 'جزئیات ورود', + 'checkins' => 'ورودها', + 'cities_loaded' => 'شهرها بارگیری شدند.', + 'code' => 'کد', + 'code_out_of_sync' => 'نسخه‌ی کد همگام نیست.', + 'color' => 'رنگ', + 'comments' => 'نظرات', + 'confirmation_code' => 'کد تایید اخطارهای شما:', + 'confirm_msg' => 'کاربر', + 'count' => 'شماره', + 'country_not_found' => 'کشور پیدا نشد', + 'created_edited' => 'ایجاد/ویرایش شده', + 'create_report' => 'ایجاد گزارش', + 'critical_upgrade' => 'ارتقای بحرانی', + 'csv' => 'سی‌اس‌وی', + 'currently_active' => 'در حال حاضر فعال', + 'currently_inactive' => 'در حال حاضر غیرفعال', + 'custom_forms_insufficient_permissions' => 'شما اجازه کافی برای ویرایش موارد زیر را ندارید.', + 'daily' => 'روزانه', + 'dashboard' => 'پیشخوان', + 'database' => 'پایگاه داده‌ها', + 'date_time' => 'تاریخ و زمان', + 'date_added' => 'تاریخ اضافه شد', + 'date_modified' => 'تاریخ تغییر داده شد', + 'days_of_the_week' => 'روزهای هفته', + 'db_out_of_sync' => 'نسخه‌ی دیتابیس همگام نیست.', + 'deleted' => 'حذف‌شده', + 'delete_action' => 'حذف', + 'delete_badge' => 'حذف نشان', + 'demo' => 'نمایشی', + 'description' => 'توضیح', + 'disabled' => 'غیرفعال', + 'divider_start_field' => 'شروع دیوایدر', + 'divider_end_field' => 'پایان دیوایدر', + 'divider_class' => 'div class', + 'download_reports' => 'دانلود گزارش‌ها', + 'dropdown_choices' => 'انتخاب‌های دراپ‌داون', + 'edited' => 'ویرایش‌شده', + 'edited_by' => 'ویرایش‌شده توسط', + 'edit_action' => 'ویرایش', + 'edit_log' => 'ویرایش لاگ', + 'email' => 'ایمیل', + 'entire_collective' => 'Entire Collective', + 'error_geocoding' => 'خطا در کد کردن موقعیت جغرافیایی! خطای HTTP', + 'error_imap' => 'کتابخانه‌ی IMAP PHP نصب نشده است.', + 'error_twitter' => 'اعتبارنامه نادرست', + 'error_msg' => 'خطا', + 'error_post_incident' => 'خطا، نتوانستم رویداد را پست کنم.', + 'every_six_hours' => 'هر شش ساعت', + 'every_twelve_hours' => 'هر دوازده ساعت', + 'experimental' => 'آزمایشی', + 'faqs' => 'سؤالات متداول', + 'feed' => 'فید', + 'feedback' => 'بازخورد', + 'feeds' => 'فیدها', + 'field_choices' => 'لیست گزینه‌ها', + 'field_default' => 'مقدار پیش‌فرض', + 'field_datatype' => 'نوع داده', + 'field_datatype_javascript' => 'جاوااسکریپت', + 'field_datatype_markup' => 'نشانه گذاری', + 'field_datatype_numeric' => 'عددی', + 'field_datatype_text' => 'متن آزاد', + 'field_height' => 'ارتفاع (به تعداد سطرها)', + 'field_hidden' => 'فیلد پنهان', + 'field_maxlength' => 'بیشترین طول کاراکتر', + 'field_name' => 'نام فیلد', + 'field_toggle' => 'ضامن', + 'field_toggle_no' => 'نه', + 'field_toggle_yes_close' => 'بله، بر مبنای پیش‌فرض بسته است', + 'field_toggle_yes_open' => 'بله، بر مبنای پیش‌فرض باز است', + 'file_not_found_upload' => 'فایل فرستاده شده پیدا نشد', + 'file_open_error' => 'نتوانستم فایل را برای خواندن باز کنم', + 'form_not_exists' => 'فورم مورد نظر وجود ندارد!', + 'forum' => 'تالار گفتگو', + 'free_text_field' => 'فیلد متن آزاد', + 'date_field' => 'فیلد تاریخ', + 'radio_field' => 'فیلد رادیو باتن', + 'checkbox_field' => 'فیلد چک‌باکس', + 'dropdown_field' => 'فیلد دراپ‌داون', + 'from' => 'از', + 'from_date' => 'از', + 'geonames_timeout' => 'خطای تایم‌آوت نام‌های جغرافیایی', + 'get_help' => 'کمک بگیر', + 'get_more_themes' => 'دریافت تم‌های بیشتر', + 'get_more_plugins' => 'دریافت پلاگین‌های بیشتر', + 'header_actions' => 'کنش‌ها', + 'header_add_edit' => 'اضافه/ویرایش', + 'header_email' => 'ایمیل', + 'header_manage_users' => 'مدیریت کاربرها', + 'header_role' => 'نقش', + 'header_user' => 'کاربر', + 'help' => 'کمک', + 'hourly' => 'ساعتی', + 'incident_feed' => 'فید وقایع برای', + 'installer_info' => 'پوشه‌ی نصب هنوز وجود دارد. لطفاً این پوشه را حذف کنید. وجود این پوشه می‌تواند موجب آسیب‌پذیری امنیتی شود.', + 'instance' => 'نمونه', + 'instances' => 'نمونه‌ها', + 'instance_details' => 'شرح نمونه', + 'invalid_parameter' => 'پارامتر نامعتبر', + 'ip_address' => 'نشانی آی‌پی', + 'is_date' => 'آیا این فیلد دیتاست؟', + 'ispublic_visible' => 'چه کسی می‌تواند جواب‌ها را ببیند', + 'ispublic_submit' => 'چه کسی می‌تواند جواب بدهد', + 'keyword' => 'کلیدواژه', + 'keywords' => 'کلیدواژه‌ها', + 'label_email' => 'آدرس ایمیل:', + 'label_full_name' => 'نام کامل', + 'label_password' => 'گذرواژه:', + 'label_role' => 'نقش:', + 'label_username' => 'نام کاربری:', + 'layers' => 'لایه‌ها', + 'login_role' => 'مدیر', + 'logout' => 'خروج', + 'logs' => 'لاگ‌ها', + 'manage' => 'مدیریت', + 'manage_roles' => 'مدیریت نقش‌ها واجازه‌ها', + 'manage_users' => 'دیدن کاربرها', + 'manage_users_edit' => 'اضافه/ویرایش کردن کاربرها', + 'manage_public_listing' => 'اداره‌ی فهرست عمومی‌', + 'mark_as' => 'نشان‌گذاری کن به عنوان', + 'marked_as_not_spam' => 'نشان گذاشته به عنوان غیرهرزنامه', + 'marked_as_spam' => 'نشان گذاشته به عنوان هرزنامه', + 'match_no_documents' => 'با هیچ یک از متن‌ها مطابقت نداشت.', + 'message' => 'پیغام', + 'messages' => 'پیغام‌ها', + 'messages_laconica' => 'پیام‌های Laconica', + 'messages_twitter' => 'پیغام توییتر', + 'message_sent' => 'پیغام شما فرستاده شد!', + 'mhi' => 'MHI', + 'minute' => 'دقیقه', + 'minutes' => 'دقیقه', + 'missing_parameter' => 'پارامتر مفقود', + 'moderator' => 'مدیر', + 'modified' => 'تغییرداده‌شده', + 'modify_timezone' => 'تغییر تنظیمات تایم‌زون', + 'move_down_action' => 'جابه‌جایی به پایین', + 'move_up_action' => 'جابه‌جایی به بالا', + 'multiple_hosted_instances' => 'Multiple Hosted Instances', + 'my_alerts' => 'هشدارهای من', + 'my_checkins' => 'ورودهای من', + 'my_profile' => 'نمایه‌ی من', + 'my_reports' => 'گزارش‌های من', + 'my_votes' => 'رأی‌های داده‌شده', + 'my_votes_up' => 'مثبت', + 'my_votes_down' => 'منفی', + 'name' => 'نام‌', + 'new_alert' => 'ایجاد هشدار جدید', + 'new_private' => 'ایجاد پیغام جدید', + 'new_password' => 'گذرواژه‌ی جدید', + 'no' => 'نه', + 'none_category_explanation' => 'این یک رده‌ی خاص است که در فرمی که کاربران با استفاده از آن گزارش می‌فرستند نشان داده نمی‌شود. از این رده برای نگهداری گزارش‌هایی که به دلیل حذف رده‌ی مربوطه بدون رده مانده‌اند (گزارش‌های بدون رده‌بندی) استفاده می‌شود.', + 'notification' => 'اطلاع‌رسانی', + 'not_case_sensitive' => 'حروف بزرگ و کوچک در اینجا معادلند.', + 'not_found' => 'پیدا نشد', + 'no_data' => 'داده وجود ندارد. هیچ نتیجه‌ای برای نمایش وجود ندارد.', + 'no_error' => 'هیچ خطایی داده نشد', + 'no_result_display_msg' => 'هیچ نتیجه‌ای برای نمایش وجود ندارد!', + 'of' => 'از', + 'on_specific_count' => 'On Specific Count', + 'openids' => 'OpenID ها', + 'page' => 'صفحه', + 'pages' => 'صفحه‌ها', + 'page_not_found' => 'صفحه پیدا نشد', + 'page_not_found_message_with_contact' => 'متأسفانه صفحه‌ای که می‌خواهید مشاهده کنید وجود ندارد.

آیا با دنبال کردن از پیوندی از جای دیگری از این وبسایت به این‌جا رسیدید؟
اگر از طریق پیوندی از قسمت دیگری از وبسایت‌ ما به این‌جا رسیدید، لطفاً <"a href="%s>به ما اطلاع دهید که بتوانیم ایراد موجود را رفع کنیم.

آیا از طریق پیوندی از وب‌سایت دیگری به این‌جا رسیدید؟
پیوندهای وب‌سایت‌های دیگر ممکن است قدیمی یا اشتباه باشند. <"a href="%s>به ما اطلاع دهید که از کجا به این صفحه رسیدید و ما سعی خواهیم کرد که با وبسایت دیگر تماس بگیریم و ایراد را رفع کنیم.

آیا خودتان آدرس صفحه را تایپ کردید؟
ممکن است آدرس صفحه را اشتباه تایپ کرده باشید. لطفاً بررسی کنید که آدرس را حرف به حرف درست تایپ کرده باشید (از جمله بزرگ یا کوچک بودن حروف).

', + 'page_not_found_message' => 'متأسفانه صفحه‌ای که می‌خواهید مشاهده کنید پیدا نشد.', + 'parameters_used' => 'پارامترهای استفاده‌شده', + 'password' => 'گذرواژه', + 'password_reset' => 'راه‌اندازی مجدد گذرواژه', + 'password_reset_message_line_1' => 'عزیز', + 'password_reset_message_line_2' => 'ما یک تقاضا برای راه‌اندازی مججد گذرواژه دریافت کردیم برای', + 'password_reset_message_line_3' => 'برای تغییر گذرواژه‌ی خود لطفاً روی پیوند زیر بزنید (یا آن را کپی و در مرورگر خود بچسبانید).', + 'password_reset_message_line_4' => 'بر طبق درخواست شما، گذرواژه‌ی شما تغییر داده شد. جزئیات جدید اکانت شما به شرح زیر است', + 'password_reset_subject' => 'راه‌اندازی مجدد گذرواژه‌ی یوشهیدی', + 'phone' => 'تلفن', + 'please_select' => 'لطفاً انتخاب کن', + 'pm' => 'بعدازظهر', + 'post_method_not_used' => 'داده‌ها با روش post فرستاده نشدند', + 'preview' => 'پیش‌نمایش', + 'private_message' => 'پیغام', + 'private_messages' => 'پیغام خصوصی', + 'private_sent' => 'پیغام خصوصی فرستاده شد', + 'private_subject' => 'موضوع', + 'private_to' => 'به', + 'public_listing' => 'فهرست عمومی', + 'qualifiers' => 'توصیف کننده‌ها', + 'read' => 'بخوان', + 'relevance' => 'مرتبط بودن', + 'report_title' => 'عنوان گزارش', + 'report_date' => 'گزارش تاریخ', + 'reporters' => 'گزارشگرها', + 'reporter_levels' => 'رده ی گزارشگر', + 'reports' => 'گزارش‌ها', + 'reputation' => 'امتیاز اعتبار', + 'required' => 'اجباری', + 'reset' => 'راه‌اندازی مجدد', + 'response' => 'جواب', + 'results' => 'نتایج', + 'revoke' => 'پس بگیر', + 'riverid_exists_admin' => 'این ایمیل در حال حاضر اکانتی اداره شده توسط CrowdmapID دارد. کاربر باید از گذرواژه‌ی موجود خود در Crowdmap برای وارد شدن استفاده کند.', + 'save_settings' => 'ثبت تنظیمات', + 'search' => 'جستجو', + 'search_reports' => 'جستجوی گزارش‌ها', + 'searching_for' => 'در جستجوی ', + 'security_info_encryption_key' => 'کلید رمزگزاری هنوز مقدار پیش‌فرض را دارد. این امن نیست و باید تغییر داده شود.', + 'security_info_https' => 'این وبسایت با استفاده از پروتکل HTTP سرو می‌شود. برای امنیت بیشتر، باید از پروتکل HTTPS استفاده کنید.', + 'security_info_instructions' => 'دستورات روی ویکی در دسترس هستند:', + 'select_download_format' => 'فرمت مورد نظرتان برای بارگیری گزارش‌ها را انتخاب کنید:', + 'select_field_type' => '--- انتخاب نوع فیلد ---', + 'select_item' => 'لطفاً یک مورد را انتخاب کن', + 'select_trigger_before_response' => 'قبل از انتخاب پاسخ، باید یک تریگر را انتخاب کنید.', + 'select_trigger_before_qualifiers' => 'قبل از انتخاب توصیف‌کننده، باید یک تریگر انتخاب کنید.', + 'sender' => 'فرستندده', + 'send_to' => 'بفرست به', + 'sent_from_website' => 'این پیغام از وبسایت شما فرستاده شده است.', + 'server_time' => 'زمان سرور', + 'settings' => 'تنظیمات', + 'showing_page' => 'نمایش صفحه', + 'showing_results' => 'نمایش نتایج', + 'shown' => 'نمایش‌داده‌شده', + 'special_category' => 'دسته‌ی خاص', + 'special_category_explanation' => 'این یک رده‌ی خاص است که در فرمی که کاربران با استفاده از آن گزارش می‌فرستند نشان داده نمی‌شود. این رده در ترکیب با ویژگی «گزارش‌گران قابل اعتماد» استفاده می‌شود.', + 'specific_area' => 'محل خاص', + 'state' => 'استان (ایالت)', + 'statistics' => 'آمار', + 'stats' => 'آمار', + 'stats_collection_error' => 'جمع‌آوری آمار موفق نبود! لطفاً دیرتر دوباره سعی کنید.', + 'stats_collection_error_short' => 'جمع‌آوری آمار موفق نشد!', + 'specific_days' => 'روزهای مشخص', + 'subject' => 'موضوع', + 'superadmin_role' => 'مدیر ارشد', + 'task_performed' => 'کار انجام شد', + 'text_field' => 'فیلد متنی', + 'theme_name' => 'نام‌', + 'title' => 'مدیریت کاربرها', + 'timeout' => 'خطای تایم‌آوت', + 'to' => 'به', + 'total_records' => 'تعداد کل رکوردها', + 'to_date' => 'به', + 'translate_reports' => 'گزارش‌ها را ترجمه کن', + 'trigger' => 'تریگر', + 'triggering_user' => 'تریگر کردن کاربر', + 'triggers' => 'تریگرها', + 'unapproved' => 'تأییدنشده', + 'unknown' => 'نامعلوم', + 'unknown_failure' => 'خطای نامعلوم', + 'unread' => 'خوانده‌نشده', + 'unsubscribe_message' => 'شما دیگر هشدار دریافت نمی‌کنید از', + 'update_link' => 'برای آپگرید به نسخه‌ی بالاتر اینجا را کلیک کنید', + 'upgrade_ushahidi' => 'ارتقا یوشهیدی', + 'upgrade_ushahidi_status' => 'ارتقا وضعیت یوشهیدی', + 'upload_reports' => 'بارگذاری گزارش‌ها', + 'user' => 'کاربر', + 'users' => 'کاربرها', + 'ushahidi' => 'یوشهیدی', + 'verified_unverified' => 'اعتبارسنجی شده/اعتبارسنجی نشده', + 'verify_unverify' => 'تبدیل به اعتبارسنجی شده/اعتبارسنجی نشده', + 'version' => 'نسخه', + 'version_available' => 'برای آپگرید در دسترس است.', + 'video_encoding' => 'کدبندی ویدئو', + 'view_private' => 'پیغام خصوصی', + 'view_site' => 'مشاهده‌ی سایت', + 'view_report' => 'دیدن گزارش', + 'welcome' => 'خوش آمدی،', + 'wiki' => 'ویکی', + 'xml' => 'XML', + 'yes' => 'بله', + 'your_search_for' => 'جستجوی تو برای', +); diff --git a/application/i18n/fa/ui_main.php b/application/i18n/fa/ui_main.php new file mode 100644 index 0000000000..1bd05e1ac1 --- /dev/null +++ b/application/i18n/fa/ui_main.php @@ -0,0 +1,614 @@ + 'درباره', + 'access' => 'دسترسی', + 'access_limits' => 'محدودیت‌های دسترسی', + 'account_name' => 'شناسه‌ی کاربری', + 'actions' => 'کنش‌ها', + 'action_confirm' => 'این کنش برگشت‌ناپذیر است. آیا مطمئنی که می‌خواهی ادامه دهی؟', + 'activate' => 'فعال کن', + 'active' => 'فعال', + 'add' => 'اضافه کن', + 'added_by' => 'اضافه‌شده توسط', + 'additional_data' => 'داده‌های بیشتر', + 'additional_reports' => 'گزارش‌های بیشتر', + 'add_edit' => 'اضافه/ویرایش', + 'add_field' => 'یک بخش اضافه کن', + 'add_language' => 'اضافه‌کردن زبان', + 'add_new' => 'مورد جدید اضافه کن', + 'add_new_category' => 'دسته‌ی جدید اضافه کن', + 'add_translation' => 'اضافه‌کردن ترجمه', + 'admin' => 'مدیریت', + 'alerts' => 'دریافت هشدارها', + 'alerts_alert_me' => 'اگر گزارشی دقیقا در یا اطراف .... ثبت ش، به من خبر بده:', + 'alerts_btn_send' => 'هشدار من را ثبت کن', + 'alerts_email' => 'آدرس ایمیل', + 'alerts_enter_email' => 'آدرس ایمیل خود را وارد کن', + 'alerts_enter_mobile' => 'شماره‌ی تلفن همراه خود را با کد کشور وارد کن', + 'alerts_get' => 'دریافت هشدارها', + 'alert_has_been' => 'هشدار ', + 'alerts_mobile_phone' => 'تلفن همراه:', + 'alerts_place_spot' => 'یا نشانی روی نقشه زیر بگذارید و ما هنگامی که گزارشی در 20 کیلومتری این مکان ثبت شود شما را خبردار می کنیم.', + 'alerts_place_spot2' => 'اگر مکان خود را پیدا نمی کنید، لطفا روی نقشه کلیک کنید تا مکان صحیح را علامت گذاری کنید.', + 'alerts_rss' => 'آر‌اس‌اس (پیوند زیر را کپی کن)', + 'alerts_select_city' => 'یک شهر انتخاب کن', + 'alerts_step1_select_city' => 'مرحله‌ی ۱: شهر یا محل خود را انتخاب کن:', + 'alerts_step2_send_alerts' => 'مرحله‌ی ۲: هشدارها را به', + 'alerts_step3_select_catgories' => 'مرحله‌ی ۳ (اختیاری): دسته‌ها را انتخاب کن', + 'alert_confirm_previous' => 'تأیید درخواست هشدار قبلی', + 'alert_saved' => 'هشدار شما ذخیره شد!', + 'all' => 'همه', + 'allowed' => 'مجاز', + 'allowed_tags' => 'تگ‌های مجاز اچ‌تی‌ام‌ال: "%s".', + 'allowed_iframes' => 'Iframeها تنها از طریق %s اجازه دارند.', + 'all_categories' => 'تمام دسته‌ها', + 'all_time' => 'تمام زمان‌ها', + 'and' => 'و', + 'api' => 'رابط برنامه‌نویسی', + 'approve' => 'تأیید', + 'approved' => 'تأیید‌شده', + 'approved_reports' => 'گزارش‌های تأیید‌شده', + 'approve_this_report' => 'این گزارش را تأیید کن', + 'approximate' => 'تقریبی', + 'archive' => 'بایگانی', + 'archived' => 'بایگانی‌شده', + 'ascending' => 'سعودی', + 'at' => 'در', + 'author' => 'نویسنده', + 'auto_checkin' => 'ورود خودکار', + 'avg_reports_per_day' => 'متوسط گزارش‌ها در روز', + 'awaiting_approval' => 'در انتظار تأیید', + 'awaiting_verification' => 'در انتظار صحت‌گذاری', + 'badge' => 'نشان', + 'badges' => 'نشان‌ها', + 'badge_image' => 'تصویر نشان', + 'badge_image_upload_your_own' => 'یا می توانید تصویر نشان خود را به جای این بارگذاری کنید.', + 'badge_pack' => 'بسته‌ی نشان', + 'badge_select' => 'یک نشان انتخاب کن', + 'blog' => 'وبلاگ', + 'browse_profiles' => 'مرورنمایه', + 'cancel' => 'لغو', + 'categories' => 'دسته‌ها', + 'category' => 'دسته', + 'category_filter' => 'فیلتر دسته', + 'category_has_been' => 'دسته‌ی مورد نظر ', + 'category_name' => 'نام دسته', + 'change_date_range' => 'تغییر بازه‌ی تاریخ', + 'change_password' => 'تغییر گذرواژه', + 'change_picture' => 'تغییر عکس من', + 'choose' => 'انتخاب کن', + 'choose_data_points' => 'داده‌ها برای بارگیری را انتخاب کن', + 'choose_date_range' => 'یا بازه‌ی تاریخ خود را انتخاب کن', + 'choose_field_type' => 'نوع فیلد را انتخاب کنید', + 'cleanurl' => 'URL های پاک', + 'clear' => 'پاک کن', + 'clear_map' => 'نقشه را پاک کن', + 'close' => 'ببند', + 'clusters' => 'مجموعه', + 'color' => 'رنگ', + 'comment' => 'نظر', + 'comments' => 'نظرات', + 'comment_details' => 'جزئیات نظر', + 'configuration_saved' => 'تنظیمات‌ات ذخیره شد!', + 'configure' => 'تنظیم', + 'confirm_email_successful' => 'با موفقیت‌ات آدرس ایمیل‌ات را تأیید کردی! لطفاً وارد سیستم شو.', + 'confirm_email_failed' => 'ایمیل تایید نشد! شما می توانید اینجا یک امکان جدید تایید ایمیل درخواست کنید.', + 'contact' => 'تماس با ما', + 'contact_code' => 'کد امنیتی', + 'contact_email' => 'آدرس ایمیل شما', + 'contact_message' => 'پیغام', + 'contact_message_has_send' => 'پیغام‌ات فرستاده شد!', + 'contact_name' => 'نام‌', + 'contact_phone' => 'شماره‌ی تلفن‌', + 'contact_send' => 'پیغام بفرست', + 'contact_subject' => 'موضوع پیغام', + 'copyright' => 'حق نشر و تألیف', + 'create' => 'ایجاد', + 'create_edit' => 'ایجاد/ویرایش', + 'create_new' => 'ایجاد جدید', + 'create_new_password' => 'گذرواژه‌ی جدید ایجاد کن', + 'create_report' => 'ایجاد گزارش', + 'credibility' => 'اعتبار', + 'current_password' => 'گذرواژه‌ی فعلی', + 'custom_fields' => 'فیلد های دلخواه', + 'data' => 'اطلاعات', + 'date' => 'تاریخ', + 'date_format' => '(س‌س‌س‌س/رر/م‌م)', + 'date_time' => 'تاریخ و زمان', + 'day' => 'روز', + 'deactivate' => 'غیرفعال کن', + 'default_location_name' => 'نایروبی، کنیا', + 'delete' => 'حذف', + 'deleted' => 'حذف شد', + 'deletes' => 'حذف‌شده‌ها', + 'delete_disabled' => 'حذف غیرفعال‌ شده', + 'delete_last' => 'حذف آخرین', + 'delete_report' => 'این گزارش را پاک کن', + 'delete_selected' => 'انتخاب‌شده را پاک کن', + 'delete_spam' => 'حذف اِسپم', + 'demo' => 'نمایشی', + 'description' => 'شرح', + 'descending' => 'نزولی', + 'detailed_location_example' => 'مثال: یوسف آباد، خیابان بیستون، بین کوچه‌ی ۴ و ۵.', + 'details' => 'جزئیات', + 'direct_report' => 'گزارش مستقیم', + 'disabled' => 'غیرفعال', + 'disapprove' => 'تأیید نشده', + 'download_reports' => 'دانلود گزارش‌ها', + 'download' => 'دانلود', + 'edit' => 'ویرایش', + 'edit_form_fields' => 'ویرایش فیلد‌های فرم', + 'edit_report' => 'ویرایش گزارش', + 'email' => 'ایمیل', + 'email_address' => 'آدرس ایمیل', + 'email_configuration' => 'تنظیمات سرور ایمیل', + 'email_server_host' => 'میزبان سرور ایمیل', + 'email_server_password' => 'گذرواژه‌ی سرور ایمیل', + 'email_server_port' => 'درگاه سرور ایمیل', + 'email_server_ssl_support' => 'پشتیبانی اس‌اس‌ال برای سرور', + 'email_server_type' => 'نوع سرور ایمیل', + 'email_server_username' => 'نام کاربری سرور ایمیل', + 'email_settings_comment_0' => 'چون تنظیمات‌ات باید به این نشانی ایمیل مرتبط شود', + 'email_settings_comment_00' => 'اگر تمایل دارید گزارش ها را از طریق ایمیل دریافت کنید، لطفا تنظیمات حساب کاربری ایمیل خود را پایین وارد کنید. لطفا توجه داشته باشید که ایمیل ها به ..... ارسال خواهند شد', + 'email_settings_comment_1' => 'بعضی سرورها نشانی ایمیل کامل لازم دارند.', + 'email_settings_comment_2' => 'گذرواژه‌ی ایمیل حساب', + 'email_settings_comment_3' => 'درگاه های رایج : 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'مثال: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'مثال: pop3، imap', + 'email_settings_comment_6' => 'اتصال اس‌اس‌ال را فعال یا غیرفعال کن', + 'empty' => '---خالی---', + 'end_point' => 'به', + 'error' => 'خطا!', + 'example' => 'مثال', + 'example_country' => 'کنیا', + 'external_apps' => 'برنامه‌های خارجی', + 'external_video_link' => 'پیوند ویدئو به بیرون', + 'facebook' => 'فیس‌بوک', + 'feed' => 'فید', + 'feedback' => 'بازخورد بده', + 'feeds' => 'فیدها', + 'feed_has_been' => 'فید', + 'feed_items' => 'موارد فید', + 'feed_name' => 'نام فیلد', + 'feed_url' => 'URL فید', + 'field_unused' => 'فیلد استفاده نشده', + 'file' => 'پرونده', + 'file_over_max_allowed' => 'اندازه‌ی پرونده‌ات بیشتر از حد مجاز است.', + 'filters' => 'فیلترها', + 'filter_reports' => 'فیلترکردن گزارش‌ها', + 'filter_reports_by' => 'فیلترکردن گزارش‌ها', + 'filter_reports_contain' => 'فیلترکردن گزارش‌هایی که شامل', + 'find' => 'پیدا کن', + 'find_location' => 'پیدا کردن محل', + 'first_name' => 'نام', + 'force_run_scheduler' => 'اجرای اجباری زمان بند', + 'forgot_password' => 'گذرواژه‌ات را فراموش کردی؟', + 'form' => 'فرم', + 'forms' => 'فرم‌ها', + 'form_description' => 'شرح فرم', + 'form_edit' => 'ویرایش این فرم', + 'form_has_been' => 'فرم', + 'form_title' => 'موضوع فرم', + 'from' => 'از', + 'full_name' => 'نام کامل', + 'geolocation_available' => 'مکان جغرافیایی در دسترس', + 'geometry_color' => 'رنگ', + 'geometry_comments' => 'نظرات', + 'geometry_label' => 'برچسب', + 'geometry_strokewidth' => 'پهنای قلم', + 'go' => 'برو', + 'hashtag' => 'هشتگ', + 'has_been' => 'شده', + 'help' => 'چطور می‌توانم کمک کنم؟', + 'hidden' => 'پنهان', + 'hide' => 'پنهان', + 'hide_this_message' => 'این پیغام را پنهان کن', + 'home' => 'خانه', + 'how_to_report' => 'چگونگی گزارش', + 'https' => 'اچ‌تی‌تی‌پی‌اس (HTTPS)', + 'id' => 'شناسه', + 'identify_you' => 'برای شناسایی شما به دیگر کاربران سایت استفاده می شود.', + 'image' => 'تصویر', + 'images' => 'تصاویر', + 'image_icon' => 'تصویر/شمایل', + 'inactive' => 'غیرفعال', + 'inbox' => 'صندوق ورودی', + 'incident' => 'واقعه', + 'incidents_nearby' => 'وقایع نزدیک', + 'incident_location' => 'مکان واقعه', + 'include' => 'شامل', + 'include_categories' => 'اضافه کردن دسته ها', + 'include_custom_fields' => 'اضافه کردن فیلدهای دلخواه', + 'include_description' => 'شرح را نشان بده', + 'include_detail' => 'اضافه کردن جزئیات تا حد ممکن', + 'include_latitude' => 'اضافه کردن عرض جغرافیایی', + 'include_location_information' => 'اضافه کردن اطلاعات مکان', + 'include_longitude' => 'اضافه کردن طول جغرافیایی', + 'include_personal_info' => 'امکان شامل کردن اطلاعات شخصی ', + 'incoming_media' => 'رسانه‌ی ورودی', + 'information_evaluation' => 'ارزیابی اطلاعات', + 'input_location' => 'مکان دقیق خود را وارد کنید.', + 'insufficient_role' => 'حساب کاربری شما مجوز مناسب برای ورود کامل شما را ندارد. لطفا با مدیریت تماس بگیرید.', + 'in_response_to' => 'در جواب', + 'ip_address' => 'نشانی آی‌پی', + 'is_this_your_profile' => 'آیا این نمایه‌ی تو است؟', + 'item' => 'بند', + 'items' => 'بندها', + 'item_details' => 'جزئیات بند', + 'item_title' => 'موضوع بند', + 'key' => 'کلید', + 'keywords' => 'کلمات کلیدی', + 'kml_kmz_file' => 'پرونده‌ی KMZ/KML', + 'kml_kmz_upload' => 'بارگذاری پرونده‌ی KMZ/KML', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconia', + 'language' => 'زبان', + 'last' => 'آخرین', + 'last_month' => 'آخرین ماه', + 'last_name' => 'نام خانوداگی', + 'last_year' => 'آخرین سال', + 'latitude' => 'عرض جغرافیایی', + 'layers' => 'لایه‌ها', + 'layers_filter' => 'لایه‌های دیگر', + 'layer_has_been' => 'این لایه', + 'layer_name' => 'نام لایه', + 'layer_url' => 'نشانی اینترنتی لایه', + 'leave_a_comment' => 'نظر بگذار', + 'less_information' => 'اطلاعات کمتر', + 'level' => 'رده', + 'level_has_been' => 'این رده', + 'level_name' => 'نام رده', + 'limited' => 'محدود', + 'link' => 'پیوند', + 'list' => 'فهرست', + 'loading_reports' => 'در حال بارکردن گزارش‌ها', + 'location' => 'محل', + 'locations' => 'مکان‌ها', + 'location_example' => 'شهر، استان یا ایالت، و/یا کشور', + 'login' => 'ورود', + 'login_account_creation_successful' => 'حساب‌ات با موفقیت ایجاد شد. می‌توانی به سیستم وارد شوی.', + 'login_confirmation_sent' => 'تآییدیه به نشانی ایمیل‌ات فرستاده شده.', + 'login_email_doesnt_exist' => 'نشانی ایمیل وجود ندارد. آدرس دیگری را امتحان کن یا حساب جدیدی بساز.', + 'login_select_openid' => 'لظفا بر روی ارائه دهنده حساب کاربری خود کلیک کنید.', + 'login_with' => 'ورود با', + 'login_userpass' => 'ایمیل و گذرواژه', + 'login_openid' => 'OpenID', + 'login_signup' => 'ثبت نام', + 'login_signup_click' => 'ایجاد حساب', + 'login_signup_confirmation_message' => 'از اینکه در %1$s ثبت نام کردید متشکریم. برای تایید نشانی ایمیل خود، لطفا به URL زیر مراجعه کنید: %2$s', + 'login_signup_confirmation_subject' => 'تأیید ثبت‌نام', + 'login_signup_text' => 'برای دسترسی به امکانات بیشتر سایت هم اکنون یک حساب کاربری ایجاد کنید.', + 'longitude' => 'طول جغرافیایی', + 'map' => 'نقشه', + 'mark_read' => 'علامت‌گذاری به عنوان خوانده‌شده', + 'mark_unread' => 'علامت‌گذاری به عنوان خوانده‌نشده', + 'maximum_filesize' => 'حداکثر اندازه‌ی فایل', + 'media' => 'رسانه', + 'media_filter' => 'فیلتر رسانه', + 'members' => 'اعضأ', + 'manage_your_account' => 'مدیریت حساب‌ات', + 'message' => 'پیغام', + 'messages' => 'پیغام‌ها', + 'message_details' => 'جزئیات پیغام', + 'message_non_numeric_source' => 'پیغام از یک منبع غیرعددی:', + 'mobile' => 'تلفن همراه', + 'modify' => 'تغییر', + 'modify_date' => 'تغییر تاریخ', + 'month' => 'ماه', + 'more' => 'بیشتر', + 'more_information' => 'اطلاعات بیشتر', + 'multi_country_instance' => 'آیا این گسترش یوشهیدی شامل چند کشور می‌شود؟', + 'must_confirm_email_address' => 'برای دسترسی به این گسترش باید نشانی ایمیل خود را تایید کنید. اگر ایمیل تاییدیه خود را گم کرده اید، می توانید یک تاییدیه جدید در پایین درخواست کنید.', + 'name' => 'نام‌', + 'nearby_report' => 'گزارش نزدیک', + 'new' => 'جدید', + 'news' => 'اخبار', + 'news_feeds' => 'بازخورد اخبار', + 'news_source' => 'منبع خبر', + 'new_category' => 'دسته‌ی جدید', + 'new_password' => 'گذرواژه‌ی جدید', + 'new_report' => 'گزارش جدید', + 'next' => 'بعدی', + 'no' => 'نه', + 'no_checkins' => 'هیج ورود ثبت شده ای برای نمایش وجود ندارد.', + 'no_data' => 'هیچ داده‌ای در دست نیست.', + 'none' => 'هیچکدام', + 'notices' => 'اخطارها', + 'not_approved' => 'تأییدنشده', + 'not_approved_singular' => 'تأییدنشده', + 'not_selected' => '---انتخاب‌نشده---', + 'not_spam' => 'هرزنامه نیست', + 'not_specified' => 'مشخص‌نشده', + 'no_reports' => 'هیچ گزارشی وجود ندارد.', + 'no_results' => 'هیچ نتیجه‌ای وجود ندارد.', + 'off' => 'خاموش', + 'official_news' => '& رسمی، اخبار رایج', + 'on' => 'روشن', + 'option' => 'گزینه', + 'optional' => 'اختیاری', + 'options' => 'گزینه‌ها', + 'organization' => 'ارگان', + 'organizations' => 'ارگان‌ها', + 'organization_description' => 'شرح ارگان', + 'organization_email' => 'ایمیل ارگان', + 'organization_has_been' => 'این سازمان', + 'organization_name' => 'نام ارگان', + 'organization_phone_1' => 'تلفن ۱ ارگان', + 'organization_phone_2' => 'تلفن ۲ ارگان', + 'organization_website' => 'وب‌سایت ارگان', + 'original' => 'اصلی', + 'original_description' => 'شرح اصلی', + 'original_title' => 'موضوع اصلی', + 'other_ushahidi_instances' => 'گسترش های دیگر', + 'outbox' => 'صندوق خروجی', + 'outgoing' => 'خروجی', + 'page' => 'صفحه', + 'pages' => 'صفحه‌ها', + 'page_description' => 'شرح صفحه', + 'page_has_been' => 'صفحه', + 'page_tab_name' => 'نام برگه ی صفحه', + 'page_title' => 'موضوع صفحه', + 'parent_category' => 'دسته‌ی مادر', + 'password' => 'گذرواژه', + 'password_again' => 'تأیید گذرواژه', + 'password_changed_successfully' => 'گذرواژه با موفقیت عوض شد! در پایین وارد شوید.', + 'password_forgot' => 'گذرواژه‌ات را فراموش کردی؟', + 'password_reset_confirm' => 'لطفا ایمیل خود را برای گذرواژه جدید چک کنید.', + 'password_save' => 'آیا می خوهید بر روی این کامپیوتر به خاطر سپرده شوید؟', + 'past_month' => 'ماه گذشته', + 'past_year' => 'سال گذشته', + 'pending' => 'در تعلیق', + 'per' => 'در هر', + 'personal_information' => 'اطلاعات شخصی اختیاری .', + 'phone' => 'تلفن', + 'photos' => 'عکس‌ها', + 'pictures' => 'عکس‌ها', + 'pictures_and_videos' => 'تصاویر و ویدئوها', + 'pinpoint_location' => '* مکان خود را توسط نام مکان یا مختصات طولی و عرضی (در قالب 38.19 و 85.61 ) بیابید، یا روی نقشه کلیک کنید تا مکان صحیح را نشانه گذاری کنید.', + 'play' => 'پخش', + 'please_note' => 'لطفاً دقت کن', + 'plugins' => 'پلاگین ها', + 'plugin_url' => 'وبسایت پلاگین', + 'public_profile' => 'نمایه‌ی قابل رؤیت عموم', + 'public_profile_url' => 'نشانی اینترنتی نمایه قابل رؤیت همگان', + 'preview' => 'پیش‌نمایش', + 'preview_item' => 'پیش‌نمایش بند', + 'preview_message' => 'پیش‌نمایش پیغام', + 'previous' => 'قبلی', + 'private' => 'خصوصی', + 'profile_color' => 'رنگ نمایه', + 'profile_saved' => 'نمایه‌ات ذخیره شده است.', + 'quick_stats' => 'آمار سریع', + 'rating' => 'رتبه', + 'read' => 'خوانده شده', + 'receive' => 'دریافت', + 'receive_from' => 'دریافت از', + 'receive_notifications' => 'دریافت اخطار', + 'recent_reports' => 'گزارش‌های اخیر', + 'refresh_news_feeds' => 'تازه کردن فید اخبار', + 'registered_email' => 'ایمیل ثبت شده', + 'remove' => 'پاک کردن', + 'reply' => 'جواب ', + 'report' => 'گزارش', + 'reports_listed' => 'گزارش ها (از نقشه، لیست شده به ترتیب زمانی )', + 'reporter' => 'گزارشگر', + 'reporters' => 'گزارشگرها', + 'reporter_date' => 'تاریخ گزارشگر', + 'reporter_email' => 'ایمیل گزارشگر', + 'reporter_first_name' => 'نام گزارشگر', + 'reporter_has_been' => 'گزارشگر', + 'reporter_ip' => 'آدرس IP گزارشگر', + 'reporter_last_name' => 'نام‌خانوادگی گزارشگر', + 'reporter_level' => 'رده ی گزارشگر', + 'reporter_levels' => 'رده های گزارشگر', + 'reporter_phone' => 'تلفن گزارشگر', + 'reports' => 'گزارش‌ها', + 'reports_btn_browse' => 'جستجو', + 'reports_btn_submit' => 'ثبت', + 'reports_by_this_user' => 'گزارش‌های این کاربر', + 'reports_categories' => 'دسته‌ها', + 'reports_count' => 'گزارش های %d', + 'reports_date' => 'تاریخ', + 'reports_description' => 'شرح', + 'reports_download_csv' => 'گزارش ها در قالب CSV بارگیری خواهند شد.', + 'reports_email' => 'ایمیل', + 'reports_features' => 'ویژگی ها', + 'reports_find_location' => 'مکانی نزدیک خود بیابید', + 'reports_first' => 'نام', + 'reports_last' => 'نام خانوداگی', + 'reports_location_name' => 'نام مکان', + 'reports_news' => 'پیوند منبع اخبار', + 'reports_optional' => 'اطلاعات اختیاری', + 'reports_photos' => 'بارگذاری تصویر', + 'reports_return' => 'بازگشت به صفحه ی گزارش ها', + 'reports_select_city' => 'انتخاب یک شهر', + 'reports_submitted' => 'گزارش شما برای بررسی به دست کادر ما رسیده است. در صورت نیاز به زودی با شما تماس خواهیم گرفت.', + 'reports_submit_new' => 'ثبت یک گزارش جدید ', + 'reports_time' => 'زمان', + 'reports_timeline' => 'محور زمانی گزارش ها', + 'reports_title' => 'موضوع گزارش', + 'reports_video' => 'پیوند ویدئو', + 'report_an_incident' => 'گزارش یک رویداد', + 'report_details' => 'جزئیات گذارش', + 'report_option_1' => 'به وسیله‌ی فرستادن یک پیغام به', + 'report_option_2' => 'با ارسال یک ایمیل', + 'report_option_3' => 'با ارسال یک توئییت با هشتگ', + 'report_option_4' => 'با پرکردن این فرم برروی وبسایت ما', + 'report_option_external_apps' => 'با استفاده از موبایل', + 'report_saved' => 'گزارش شما ذخیره شد.', + 'report_title' => 'موضوع گزارش', + 'request_information' => 'درخواست اطلاعات بیشتر', + 'request_location' => 'درخواست مکان', + 'required' => 'اجباری', + 'requirements' => 'مقررات', + 'resend_confirm_email' => 'ارسال مجدد ایمیل تایید', + 'reset' => 'تنظیم مجدد', + 'reset_all_filters' => 'تنظیم مجدد تمام فیلترها', + 'reset_password' => 'تنظیم مجدد گذرواژه', + 'retrieve_city_names' => 'بازیابی اسامی شهرها برای کشور انتخاب شده', + 'riverid_information' => 'حساب های مدیریت شده توسط سرویس %s. ', + 'riverid_exists_login' => 'شما از قبل دارای حساب کاربری تحت مدیریت CrowdmapID می باشید! از نام کاربری و گذرواژه ی CrowdmapID خود برای ورود استفاده کنید.', + 'role' => 'نقش', + 'rss' => 'RSS', + 'save' => 'ذخیره', + 'saved' => 'ذخیره شده', + 'save_add_new' => 'ذخیره و از نو اضافه کردن ', + 'save_close' => 'ذخیره و بستن', + 'save_report' => 'ذخیره ی گزارش', + 'schedule' => 'زمان بندی', + 'scheduler' => 'زمان بند', + 'scheduler_day' => 'روز', + 'scheduler_hour' => 'ساعت', + 'scheduler_log' => 'تاریخچه ی زمان بند', + 'scheduler_minute' => 'دقیقه', + 'scheduler_weekday' => 'روز هفته', + 'search' => 'جستجو', + 'search_results' => 'نتایج جستجو', + 'security_code' => 'کد امنیت', + 'select_all' => 'همه را انتخاب کن', + 'select_field_type' => 'انتخاب نوع فیلد', + 'select_form_type' => 'انتخاب یک نوع فرم', + 'select_in_map' => 'روی نقشه انتخاب کن', + 'select_multiple' => 'انتخاب به تعداد مورد نیاز', + 'select_one' => 'لطفا مطمئن شوید که یک مورد را انتخاب کرده اید.', + 'select_theme' => 'انتخاب تم', + 'send' => 'فرستادن', + 'send_confirmation' => 'ارسال تاییدیه', + 'sending_to' => 'فرستادن به', + 'sent' => 'ارسال شده', + 'sent_by' => 'ارسال شده توسط', + 'server_address' => 'آدرس سرور', + 'server_type' => 'نوع سرور', + 'service' => 'خدمات', + 'service_username' => 'نام کاربری خدمات', + 'service_user_id' => 'ID کاربر خدمات', + 'share' => 'اشتراک گذاری', + 'shared_data' => 'داده های به اشتراک گذاشته شده', + 'share_has_been' => 'به اشتراک گذاری', + 'sharing' => 'به اشتراک گذاری', + 'shorter_map' => 'نقشه ی کوتاه تر', + 'show' => 'نشان بده', + 'show_all' => 'همه را نشان بده', + 'show_messages' => 'پیغام‌ها را نشان بده', + 'showing_reports_from' => 'نمایش گزارش ها از %1$s تا %2$s', + 'site' => 'وب‌سایت', + 'site_email_address' => 'نشانی ایمیل سایت', + 'site_url' => 'URL سایت', + 'smaller_map' => 'نقشه‌ی کوچک‌تر', + 'sms' => 'SMS', + 'sorry_no_badges' => 'با عرض پوزش شما هیچ نشانی ندارید.', + 'source' => 'منبع', + 'source_name' => 'نام منبع', + 'sort' => 'مرتب کردن', + 'sort_by' => 'مرتب کردن توسط', + 'source_url' => 'URL منبع', + 'spam' => 'هرزنامه', + 'ssl_support' => 'پشتیبانی SSL؟', + 'start_point' => 'از', + 'step' => 'مرحله', + 'submit' => 'ثبت گزارش', + 'submitted_by' => 'ثبت شده توسط %1$s از %2$s', + 'submit_sms' => 'ثبت توسط SMS', + 'submit_sms1' => 'ارسال SMS به', + 'submit_sms2' => 'بر روی تلفن شما', + 'success' => 'موفقیت!', + 'successfuly_imported' => 'با موفقیت وارد شد', + 'surname' => 'نام خانوادگی', + 'survey' => 'برآورد', + 'system' => 'سامانه', + 'taller_map' => 'نقشه ی درازتر', + 'tcp_port' => 'درگاه TCP', + 'themes' => 'تم ها', + 'theme_default' => 'تم پیش فرض یوشهیدی', + 'theme_settings' => 'تنظیمات تم', + 'this' => 'این', + 'this_day' => 'امروز', + 'this_month' => 'این ماه', + 'this_week' => 'این هفته', + 'this_year' => 'امسال', + 'this_is_your_profile' => 'این نمایه‌ی تو است.', + 'time' => 'زمان', + 'title' => 'موضوع', + 'to' => 'به', + 'today' => 'امروز', + 'today_at' => 'امروز در', + 'token' => 'رمز', + 'total_reports' => 'گزارش های کلی', + 'translated' => 'ترجمه شده', + 'translated_description' => 'شرح ترجمه‌شده', + 'translated_title' => 'موضوع ترجمه‌شده', + 'translate_to' => 'ترجمه‌کن به', + 'translation' => 'ترجمه', + 'translation_saved' => 'ترجمه ثبت شده‌است', + 'trusted' => 'معتمد', + 'type' => 'نوع', + 'twitter' => 'توییتر', + 'unable_send_email' => 'امکان ارسال ایمیل وجود ندارد.', + 'uncategorized_reports' => 'گزارش های دسته بندی نشده', + 'unread' => 'خوانده نشده', + 'unverified' => 'صحت گذاری نشده', + 'update_feeds' => 'به روزرسانی فیدها', + 'upload' => 'بارگذاری', + 'upload_guide' => 'راهنمای بارگذاری گزارش ما را ببینید: -', + 'upload_docs_1' => 'راهنمای بارگذاری XML', + 'upload_docs_2' => 'راهنمای بارگذاری CSV', + 'upload_file' => 'پرونده برای بارگذاری', + 'upload_reports' => 'باگذاری گزارش ها', + 'upload_reports_custom_forms' => 'form_id فیلدهای دلخواه باید به آنها ضمیمه شود. به طور مثال فیلد دلخواه تست روی فرم پیش فرض که دارای id 1 می باشد، باید به صورت Test-1 نامگذاری شود. هنگام واردکردن فیلدهای فرم دلخواه دقت کنید که', + 'upload_reports_detail_1' => 'توسط فرم ذیل می توانید وقایع را وارد موتور یوشهیدی کنید.', + 'upload_reports_detail_2' => 'گزارش ها باید یا در قالب CSV یا در قالب XML بارگذاری شوند.', + 'upload_reports_detail_3' => 'هرگاه ID یک واقعه از قبل در دیتابیس موجود باشد، از آن مورد در پرونده ی CSV/XML صرفنظر می شود.', + 'upload_reports_detail_4' => 'باید حداقل شامل عنوان یا تاریخ واقعه باشد.', + 'upload_reports_detail_4b' => 'اگر هیچ عرض و طول جغرافیایی وارد نشود، مکان توسط Google Geocoder ردیابی خواهد شد.', + 'upload_reports_detail_4c' => 'در هنگام وارد کردن اطلاعات اضافه مانند اطلاعات شخصی و/یا فیلدهای فرم دلخواه', + 'upload_reports_detail_4d' => 'حداقل یکی از فیلدهای اطلاعات شخصی (نام، نام خانوادگی، ایمیل) باید پر شوند. رکوردهای خالی وارد نخواهند شد.', + 'upload_reports_detail_4e' => 'اطلاعات ورودی شما در منوهای باز شونده، دکمه ها و سوالات گزینه ای با امکانات داده شده برای فیلد دلخواه شما سازگاری دارند', + 'upload_reports_detail_4f' => 'جواب های متعدد به سوالات گزینه ای توسط ویرگول ار هم جدا شده اند. به طور مثال اگر جواب شما به سوال میوه ها، سیب و مانگو و انگور بوده باشد، این جواب باید بدین صورت وارد شود: "سیب، مانگو، انگور"', + 'upload_reports_detail_4g' => 'مقادیر فیلد تاریخ باید در قالب زیر باشد: ماه/روز/سال. مثال: 3 اکتبر 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'یک نمونه گزارش CSV', + 'upload_reports_detail_6' => '#، عنوان واقعه، تاریخ واقعه، شرح، دسته، تاییدشده، صحت گذاری شده، تصدیق شده، طول و عرض جغرافیایی "1" ،"مرگ مشکوک در نایروبی" ، "2009-05-15 01:06:00" ، "نایروبی"، "سه مورد در اروگوئه تایید شده" ، "مرگ، شهروندان"، "بلی" ، "بلی" ، "-1.287"، "36.821".', + 'upload_reports_detail_7' => '"2" ، "غارت" ، "2009-03-18 10:10:00" ، "آکرا" ، "غارت همه جا دارد اتفاق می افتد"، "اعتصاب، مرگ، ضرر مالی" ، "بلی، خیر"، "5.55"و "-0.2166667"', + 'upload_successful' => 'بارگذاری موفقیت آمیز', + 'upload_video' => 'بارگذاری ویدئو', + 'url' => 'URL', + 'user' => 'کاربر', + 'username' => 'نام کاربری', + 'ushahidi_admin' => 'مدیر یوشهیدی', + 'verification' => 'صحت گذاری', + 'verified' => 'صحت‌گذاری‌شده', + 'verified_reports' => 'گزارش‌های صحت‌گذاری‌شده', + 'verify' => 'صحت گذاری', + 'verify_this_report' => 'این گزارش را صحت‌گذاری کن', + 'version' => 'نسخه', + 'via' => 'از طریق', + 'video' => 'ویدئو', + 'view' => 'نما', + 'views' => 'نماها', + 'view_all' => 'همه را ببین', + 'view_all_feeds' => 'نمایش تمام فیدها', + 'view_all_reports' => 'دیدن همه‌ی گزارش‌ها', + 'view_items' => 'نمایش موارد', + 'view_more' => 'بیشتر ببین', + 'view_public_profile' => 'نمایه‌ی قابل رؤیت عموم‌ات را ببین.', + 'view_report' => 'دیدن گزارش', + 'view_reports' => 'دیدن گزارش‌ها', + 'view_video' => 'دیدن ویدئو', + 'visible' => 'قابل رویت', + 'waiting_approval' => 'در انتظار تأیید', + 'waiting_verification' => 'در انتظار صحت‌گذاری', + 'wider_map' => 'نقشه‌ی پهن‌تر', + 'web_form' => 'فرم وب', + 'web' => 'وب', + 'weight' => 'وزن', + 'yes' => 'بله', + 'yesterday' => 'دیروز', + 'your_dashboard' => 'پیشخوان شما', + 'your_file' => 'پرونده ی شما', + 'zoom_in' => 'بزرگ نمایی بیشتر', + 'zoom_out' => 'بزرگ نمایی کمتر', +); diff --git a/application/i18n/fa/upgrade.php b/application/i18n/fa/upgrade.php new file mode 100644 index 0000000000..3d2aa7878c --- /dev/null +++ b/application/i18n/fa/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'داده ورودی اشتباه است. این مورد باید یا ۰ برای «خیر» یا ۱ برای «آری» باشد.', + ) , + 'upgrade_automatic' => 'به روز رسانی اتوماتیک', + 'upgrade_available' => 'به روزرسانی‌های موجود', + 'upgrade_continue_btn_text' => 'ادامه', + 'upgrade_db_btn_text' => 'به روز رسانی', + 'upgrade_db_text_1' => 'اکنون قصددارم پایگاه داده شما را به روزسازی کنم از نسخه ', + 'upgrade_db_text_2' => 'به جدیدترین نسخه پایگاه داده', + 'upgrade_db_text_3' => 'دکمه «به روزسازی» را فشاردهید و تا هنگامی که من حرکت جادویی خود را انجام می‌دهم خوش بگذران!', + 'upgrade_db_text_4' => 'آها! همچنین اگر می خواهید که یک ذخیره از پایگاه داده شما بگیرم، تنها دکمه چک را تیک بزنید و من این کار را برای شما خواهم کرد.', + 'upgrade_db_text_5' => 'پیش از به روزسازی از پایگاه داده ذخیره برداریم؟ (اکیدا توصیه می‌شود)', + 'upgrade_db_title' => 'به روزسازی پایگاه داده‌ی یوشهیدی', + 'upgrade_db_info' => 'یوشهیدی به روز شد! پیش از ادامه، لازم است که فایل پایگاه داده خود را به جدیدترین نسخه به روز کنید (%s).', + 'upgrade_db_up_to_date' => 'نسخه پایگاه داده شما به روز شد.', + 'upgrade_failed' => 'به روزرسانی در یک نقطه ناموفق بود.', + 'upgrade_manual' => 'به روزرسانی دستی', + 'upgrade_status' => 'وضعیت به روزرسانی یوشهیدی', + 'upgrade_text_1' => 'دستورالعمل‌های زیر روش به روزسازی دستی آرایش یوشهیدی (Ushahidi deployment) شما را به شکل دقیق توضیح می‌دهد.', + 'upgrade_text_2' => '
بارگیری
', + 'upgrade_text_3' => ' جدیدترین ساخت یوشهیدی را از
دانلود کنید.', + 'upgrade_text_4' => '
ذخیره
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
تنها در صورتی که مشکلی پیش بیاید، توصیه می‌کنیم که یک ذخیره کامل از آرایش یوشهیدی خود داشته باشید.
فایل‌ها را کپی کنید
-فایل زیپ دانلودشده را باز کنید
بر اساس اینکه سیستم عامل سرور وب چیست، ابزار/حالت مورد نظر خورد را استفاده کنید (مثال: Telnet، FTP، SSH) تا به سرور وب وارد شوید و و محتویات تمام پرونده‌ها را از جدید ترین ساخت جایگزین کنید.
پایگاه داده را به روز رسانی کنید
-ابتدا ', + 'upgrade_tables' => 'قدم ۳:درون پرونده sql را نگاه کنید. به روز رسانی فایل -.sql را به شکل دستی اجرا کنید. برای این کار از نصب پایگاه داده فعلی آغاز کنید و تا آخرین فایل به روزرسانی sql ادامه دهید.', + 'upgrade_text_5' => 'قدم ۴: دکمه "ادامه" را فشار دهید تا به روزسازی جدول‌های ضروری انجام گیرد.', + 'upgrade_text_6' => 'برای به روزرسانی اتوماتیک، دکمه زیر را فشار دهید.', + 'upgrade_title_text' => 'شما در حال استفاده از یوشهیدی v%1$s با نسخه پایگاه داده %2$d در حال اجرا روی %3$s هستید.', + 'upgrading' => 'در حال به روزسازی', + 'upgrade_ftp_text' => 'برای ساده ادامه دادن به روزرسانی، اطلاعات زیر از سرور FTP ای که وبسایت شما را میزبانی می‌کند مورد نیاز است.', + 'upgrade_ftp_hostname' => 'نام میزبان FTP: مثال: "میزبان محلی"', + 'upgrade_ftp_password' => 'رمز عبور FTP:', + 'upgrade_ftp_username' => 'نام کاربری FTP: ', + 'upgrade_status_info' => 'شما آخرین نسخه‌ی یوشهیدی را دارید.', + 'upgrade_status_info_2' => 'نیازی به به روزرسانی ندارید.', + 'upgrade_db_version' => 'نسخه‌ی پایگاه داده: %d', + 'upgrade_warning_software_version' => 'اخطار: نسخه‌ی نرم‌افزار در version.php و پایگاه داده‌ها با یکدیگر جور نیستند.', + 'upgrade_warning_db_version' => 'اخطار: نسخه‌ی پایگاه داده‌ها در version.php و پایگاه داده‌ها با یکدیگر جور نیستند.', + 'upgrade_database' => 'پایگاه داده‌ها:', + 'ushahidi_release_version' => 'یوشهیدی %s', + 'beta' => 'بتا !', + 'download' => 'در حال بارگذاری آخرین نسخه یوشهیدی...', + 'log_file' => 'پرونده‌ی لاگ (Log File)', + 'successfully_downloaded' => 'با موفقیت بارگذاری شد. در حال باز کردن...', + 'failed_downloading' => 'بارگذاری شکست خورد.', + 'successfully_unpacked' => 'با موفقیت باز شد. در حال کپی برداری از پرونده‌ها...', + 'failed_unpacking' => 'بازکردن شکست خورد.', + 'successfully_copied' => 'با موفقیت کپی شد. در حال به روزرسانی پایگاه داده...', + 'failed_copying' => 'کپی برداری از پرونده‌ها شکست خورد.', + 'backup_success' => 'ذخیره پایگاه داده‌ها و به روزرسانی موفقیت آمیز بود.', + 'backup_failed' => 'ذخیره سازی پایگاه داده شکست خورد.', + 'dbupgrade_success' => ' به روزرسانی پایگاه داده‌ها موفقیت آمیز بود.', + 'deleting_files' => 'در حال پاک‌کردن پرونده‌های دانلود شده...', + 'upgrade_success' => 'به روزرسانی موفقیت آمیز بود. تماشای فایل لاگ (Log File)', +); diff --git a/application/i18n/fi/alerts.php b/application/i18n/fi/alerts.php new file mode 100644 index 0000000000..5f116c5c43 --- /dev/null +++ b/application/i18n/fi/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Kentässä sähköposti ei näytä olevan kelvollista sähköpostiosoitetta?', + 'email_check' => 'Sähköpostiosoite saa jo hälytyksiä tästä sijainnista.', + 'length' => 'Kentän sähköposti täytyy olla vähintään 4 ja korkeintaan 64 merkkiä pitkä.', + 'required' => 'Kenttä sähköposti vaaditaan, jos ruudussa on rasti.', + ) , + 'alert_country' => array( + 'single_country' => 'Tämä asennus kattaa vain yhden maan. Varmista, että hälytysten paikkakunta on maan %s alueella.', + ) , + 'alert_lat' => array( + 'between' => 'Et ole valinnut kelvollista sijaintia kartalta.', + 'required' => 'Et ole valinnut kelvollista sijaintia kartalta.', + ) , + 'alert_lon' => array( + 'between' => 'Et ole valinnut kelvollista sijaintia kartalta.', + 'required' => 'Et ole valinnut kelvollista sijaintia kartalta.', + ) , + 'alert_mobile' => array( + 'length' => 'Kentässä matkapuhelin ei ole oikeaa määrää numeroita.', + 'mobile_check' => 'Matkapuhelin on jo rekisteröity tästä sijainnista tulevia hälytyksiä varten.', + 'numeric' => 'Kentässä matkapuhelin ei näytä olevan kelvollista puhelinta. Ole hyvä ja kirjoita vain numeroita, sisältäen maakoodin.', + 'one_required' => 'Kirjoita joko matkapuhelinnumerosi tai sähköpostiosoitteesi.', + 'required' => 'Kenttä matkapuhelin tarvitaan, jos ruudussa on rasti.', + ) , + 'alert_radius' => array( + 'in_array' => 'Et ole valinnut kelvollista sädettä kartalta.', + 'required' => 'Et ole asettanut sädettä kartalle.', + ) , + 'alert_recipient' => array( + 'required' => 'Et ole asettanut hälytyksille vastaanottajaa.', + ) , + 'alerts_subscribed' => 'Olet tilannut hälytykset seuraavissa kategorioissa', + 'code_already_verified' => 'Tämä koodi on vahvistettu aiemmin!', + 'code_not_found' => 'Tätä vahvistuskoodia ei löytynyt! Tarkista, että sinulla on oikea URL.', + 'code_verified' => 'Koodisi on vahvistettu oikein. Saat nyt hälytyksiä tapahtumista.', + 'confirm_request' => 'Vahvistaaksesi hälytyspyynnön, mene osoitteeseen', + 'create_more_alerts' => 'Palaa sivulle hälytykset luodaksesi lisää hälytyksiä', + 'email_alert_request_created' => 'Sähköpostihälytyksesi on luotu ja vahvistusviesti lähetetty osoitteeseen', + 'email_code' => 'Kirjoita saamasi sähköpostin vahvistuskoodi alle:', + 'email_error_head' => 'Sähköpostihälytyspyyntöäsi ei ole tallennettu!', + 'email_ok_head' => 'Sähköpostihälytyspyyntösi on tallennettu!', + 'error' => 'Järjestelmä ei kyennyt käsittelemään vahvistuspyyntöäsi!', + 'mobile_alert_request_created' => 'Matkapuhelinhälytyspyyntösi on luotu ja vahvistusviesti lähetetty', + 'mobile_code' => 'Kirjoita alle puhelimeesi saamasi SMS-vahvistuskoodi:', + 'mobile_error_head' => 'Matkapuhelinhälytyspyyntöä ei ole tallennettu!', + 'mobile_ok_head' => 'Matkapuhelinhälytyspyyntösi on tallennettu!', + 'settings_error' => 'Tätä asennusta ei ole määritelty käsittelemään hälytyksiä oikein', + 'unsubscribe' => 'Olet saanut tämän sähköpostin, koska olet tilannut hälytykset. Jos et tahdo saada tulevia hälytyksiä, mene', + 'unsubscribed' => 'Et saa enää hälytyksiä ', + 'unsubscribe_failed' => 'Emme voineet peruuttaa tilaustasi. Vahvista, että sinulla on oikea URL.', + 'verification_email_subject' => 'hälytykset - vahvistus', + 'verify_code' => 'Et saa hälytyksiä tästä sijainnista ennen kuin vahvistat pyyntösi.', +); diff --git a/application/i18n/fi/auth.php b/application/i18n/fi/auth.php new file mode 100644 index 0000000000..bb8e4245bf --- /dev/null +++ b/application/i18n/fi/auth.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Tälle kentälle antamasi oletusarvo ei kelpaa.', + 'length' => 'Kentän nimi täytyy olla ainakin 3 ja korkeintaan 200 merkkiä pitkä.', + ) , + 'field_height' => array( + 'between' => 'Ole hyvä ja kirjoita arvo väliltä 0 ja 50 kenttään korkeus.', + ) , + 'field_isdate' => array( + 'between' => 'Olet kirjoittanut kelvottoman arvon kenttään päivämäärä.', + 'required' => 'Ole hyvä ja valitse kyllä tai ei kentälle päivämäärä.', + ) , + 'field_name' => array( + 'length' => 'Kentän nimi täytyy olla vähintään 3 ja korkeintaan 100 merkkiä pitkä.', + 'required' => 'Ole hyvä ja kirjoita kenttä nimi.', + 'duplicate' => 'Kirjoittamasi kentän nimi on jo käytössä tällä lomakkeella. Ole hyvä ja kirjoita uusi.', + ) , + 'field_required' => array( + 'between' => 'Olet kirjoittanut väärän arvon vaaditulle kentälle.', + 'required' => 'Ole hyvä ja valitse kyllä tai ei vaadittuun kenttään.', + ) , + 'field_type' => array( + 'numeric' => 'Ole hyvä ja valitse kelvollinen kentän tyyppi.', + 'required' => 'Ole hyvä ja valitse kentän tyyppi.', + ) , + 'field_width' => array( + 'between' => 'Ole hyvä ja kirjoita arvo väliltä 0-300 kenttään leveys.', + ) , + 'form_description' => array( + 'required' => 'Ole hyvä ja kirjoita lomakkeen kuvaus.', + ) , + 'form_id' => array( + 'default' => 'Oletuslomaketta ei voida poistaa.', + 'numeric' => 'Ole hyvä ja valitse mihin lomakkeeseen tämä kenttä lisätään.', + 'required' => 'Ole hyvä ja valitse mihin lomakkeeseen tämä kenttä lisätään.', + ) , + 'form_title' => array( + 'length' => 'Lomakkeen nimikentän täytyy olla vähintään 3 ja korkeintaan 100 merkkiä pitkä.', + 'required' => 'Ole hyvä ja kirjoita kentän nimi.', + 'exists' => 'Lomake tällä otsikolla on jo olemassa. Ole hyvä ja valitse uusi.', + ) , +); diff --git a/application/i18n/fi/imap.php b/application/i18n/fi/imap.php new file mode 100644 index 0000000000..bb8e4245bf --- /dev/null +++ b/application/i18n/fi/imap.php @@ -0,0 +1,7 @@ + 'Pääsy', + 'access_limits' => 'Pääsyn rajoitukset', + 'account_name' => 'Tilin nimi', + 'actions' => 'Toiminnot', + 'activate' => 'Aktivoi', + 'active' => 'Aktiivinen', + 'add' => 'Lisää', + 'add_edit' => 'Lisää/muokkaa', + 'add_field' => 'Lisää kenttä', + 'add_new' => 'Lisää uusi', + 'add_new_category' => 'Lisää uusi kategoria', + 'add_translation' => 'Lisää käännös', + 'admin' => 'Ylläpito', + 'alerts_select_city' => 'Valitse kaupunki', + 'all' => 'Kaikki', + 'allowed' => 'Sallittu', + 'allowed_tags' => 'Sallitut HTML elementit: "%s".', + 'and' => 'ja', + 'api' => 'Rajapinta', + 'approve' => 'Hyväksy', + 'approved' => 'Hyväksytty', + 'category_filter' => 'Kategorian suodatin', + 'category_has_been' => 'Kategoria on ollut', + 'category_name' => 'Kategorian nimi', + 'feedback_reports' => 'Lähetä meille palautetta palvelun käyttökokemuksistasi lähettämällä sähköpostia', + 'filters' => 'Suodattimet', + 'help' => 'Kuinka auttaa?', + 'how_to_report' => 'Kuinka raportoida?', + 'login_signup_text' => 'Luo käyttäjätili nyt saadaksesi hyödyt sivuston lisäominaisuuksista.', + 'more' => 'Lisää', + 'more_information' => 'Lisätietoja', + 'news' => 'Uutiset', + 'news_feeds' => 'Uutisvirta', + 'news_source' => 'Uutislähde', + 'new_category' => 'Uusi kategoria', + 'parent_category' => 'Ylempi kategoria', + 'pictures' => 'Kuvat', + 'pictures_and_videos' => 'Kuvat ja videot', + 'refresh_news_feeds' => 'Päivitä uutisvirrat', + 'reports_listed' => 'Raportit (kartalla, listattu aikajärjestyksessä)', + 'reports_news' => 'Uutislähteen linkki', + 'report_option_1' => 'Lähettämällä viesti', + 'report_option_2' => 'Lähettämällä sähköpostia', + 'report_option_3' => 'Lähettämällä tweetti hashtagillä', + 'report_option_4' => 'Täyttämällä tämä lomake sivuillamme.', + 'report_option_external_apps' => 'Käyttämällä sovellusta', + 'request_information' => 'Pyydä lisätietoja', + 'reset_all_filters' => 'Tyhjennä suodattimet', + 'sending_to' => 'Lähetetään', + 'show' => 'Näytä', + 'show_all' => 'Näytä kaikki', + 'show_messages' => 'Näytä viestit', + 'showing_reports_from' => 'Näytetään raportit %1$s to %2$s', + 'view_more' => 'Katso lisää', +); diff --git a/application/i18n/fi/upgrade.php b/application/i18n/fi/upgrade.php new file mode 100644 index 0000000000..bb8e4245bf --- /dev/null +++ b/application/i18n/fi/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Adresse email invalide.', + 'email_check' => 'Cette adress email a déjà été enregistrée pour les alertes sur ce lieu', + 'length' => 'Le champ e-mail doit être d\'au moins 4 caractères et pas plus de 64 longues.', + 'required' => 'Une adresse email est requise si la case est cochée.', + ) , + 'alert_country' => array( + 'single_country' => 'Ce déploiement s\'étend à l\'intérieur d\'un seul pays. S\'il vous plaît assurez-vous que l\'emplacement d\'alerte est dans le pays%s.', + ) , + 'alert_lat' => array( + 'between' => 'Position sur la carte invalide.', + 'required' => 'Position sur la carte invalide.', + ) , + 'alert_lon' => array( + 'between' => 'Position sur la carte invalide.', + 'required' => 'Position sur la carte invalide.', + ) , + 'alert_mobile' => array( + 'length' => 'Le numéro de téléphone de comporte pas le bon nombre de chiffres', + 'mobile_check' => 'Ce numéro de téléphone a déjà été enregistré pour les alertes sur ce lieu.', + 'numeric' => 'Numéro de téléphone invalide. Entrez uniquement des chiffres, sans oublier le préfixe international.', + 'one_required' => 'Précisez soit voitre numéro de téléphone portable, soit votre adresse email.', + 'required' => 'Un numéro de téléphone est requis si la case est cochée.', + ) , + 'alert_radius' => array( + 'in_array' => 'Vous n\'avez pas réglé un rayon de validité de la carte.', + 'required' => 'Vous n\'avez pas réglé votre rayon sur la carte.', + ) , + 'alert_recipient' => array( + 'required' => 'Vous n\'avez pas défini un destinataire pour les alertes.', + ) , + 'alerts_subscribed' => 'Vous avez souscrit aux alertes avec les catégories suivantes', + 'code_already_verified' => 'Ce code a été vérifiée avant!', + 'code_not_found' => 'Ce code de vérification n\'a pas été trouvé! S\'il vous plaît confirmer que vous avez l\'URL correcte.', + 'code_verified' => 'Votre code a été vérifié correctement. Vous allez maintenant recevoir des alertes sur les incidents dès qu\'ils se produisent.', + 'confirm_request' => 'Pour confirmer votre demande d\'alerte, s\'il vous plaît aller à', + 'create_more_alerts' => 'Retour à la page Alertes pour créer plus d\'alertes', + 'email_alert_request_created' => 'Votre demande de Alerte Email a été créé et le message de vérification a été envoyé à', + 'email_code' => 'S\'il vous plaît entrez le code de confirmation que vous avez reçu par Email ci-dessous:', + 'email_error_head' => 'Votre demande d\' Alerte e-mail n\'a PAS été enregistrée!', + 'email_ok_head' => 'Votre Demande d\' Alerte e-mail a été sauvegardée!', + 'error' => 'Le système n\'a pas pu traiter votre demande de confirmation!', + 'mobile_alert_request_created' => 'Votre demande d\'alerte mobile a été créé et le message de vérification a été envoyé à', + 'mobile_code' => 'S\'il vous plaît entrez le code de confirmation SMS que vous avez reçu sur votre téléphone mobile ci-dessous:', + 'mobile_error_head' => 'Votre demande d\'alerte mobile n\'a PAS été enregistrée!', + 'mobile_ok_head' => 'Votre demande mobile alerte a été sauvegardée!', + 'settings_error' => 'Ce déploiement n\'est pas configuré pour traiter correctement les alertes', + 'unsubscribe' => 'Vous avez reçu ce courriel parce que vous vous êtes inscrit pour recevoir des alertes. Si vous ne souhaitez pas recevoir des alertes futurs aller à', + 'unsubscribed' => 'Vous ne pourrez plus recevoir des alertes de', + 'unsubscribe_failed' => 'Nous n\'étions pas capable de vous désabonner. S\'il vous plaît confirmer que vous avez l\'URL correcte.', + 'verification_email_subject' => 'alertes - vérification', + 'verify_code' => 'Vous ne recevrez des alertes à cette localisation jusqu\'à ce que vous confirmez votre demande.', +); diff --git a/application/i18n/fr_FR/auth.php b/application/i18n/fr_FR/auth.php new file mode 100755 index 0000000000..d9c0a935f7 --- /dev/null +++ b/application/i18n/fr_FR/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Adresse email invalide.', + 'exists' => 'Cette adress email existe déja.', + 'length' => 'L\'adresse email doit comporter entre 4 et 64 caractères.', + 'required' => 'Veuillez indiquer une adresse email.', + ) , + 'name' => array( + 'length' => 'Le nom complet doit comporter entre 3 et 100 caractères.', + 'required' => 'Veuillez indiquer le nom complet.', + 'standard_text' => 'Le nom d\'utilisateur comporte des caractères invalides.', + ) , + 'current_password' => array( + 'length' => 'Le champ mot de passe doit comporter au moins 8 caractères.', + 'login error' => 'S\'il vous plaît vérifiez que vous avez entré les correct e-mail et mot de passe.', + 'matches' => 'S\'il vous plaît entrer le même mot de passe dans les deux champs de mot de passe.', + 'required' => 'Le champ mot de passe est nécessaire.', + 'alpha_dash' => 'Le champ mot de passe doit avoir des caractères alphabétiques, les symboles # et @, des chiffres, des traits de soulignement et des tirets seulement', + 'incorrect' => 'Le mot de passe actuel que vous avez entré pour votre compte est incorrect. S\'il vous plaît essayez de nouveau.', + ) , + 'new_password' => array( + 'length' => 'Le champ mot de passe doit être au moins 8 caractères.', + 'login error' => 'S\'il vous plaît vérifiez que vous avez entré les correct e-mail et mot de passe.', + 'matches' => 'S\'il vous plaît entrer le même mot de passe dans les deux champs de mot de passe.', + 'required' => 'Le champ mot de passe est nécessaire.', + 'alpha_dash' => 'Le champ mot de passe doit avoir des caractères alphabétiques, les symboles # et @, des chiffres, des traits de soulignement et des tirets seulement', + ) , + 'password' => array( + 'default' => 'Il ya eu une erreur en essayant de vous connecter. ', + 'length' => 'Le mot de passe doit comporter entre 5 et 16 caractères.', + 'login error' => 'Veuillez vérifier le mot de passe.', + 'matches' => 'S\'il vous plaît entrer le même mot de passe dans les deux champs de mot de passe.', + 'required' => 'Veuillez entrer un mot de passe.', + 'riverid server down' => 'Le serveur d\'authentification est en panne. S\'il vous plaît réessayer plus tard.', + 'riverid' => '%s', + 'alpha_dash' => 'Le champ mot de passe doit avoir des caractères alphabétiques, les symboles # et @, des chiffres, des traits de soulignement et des tirets seulement', + ) , + 'password_confirm' => array( + 'matches' => 'Les deux mots de passe doivent être les mêmes.', + ) , + 'resetemail' => array( + 'email' => 'Le adresse e-mail que vous avez entré n\'est pas une adresse email valide.', + 'invalid' => 'Désolé, nous n\'avons pas votre adresse e-mail', + 'required' => 'Le champ email est obligatoire.', + ) , + 'role' => array( + 'superadmin_modify' => 'Seul un superadministrateur peut modifier un superadministrateur ou promouvoir un utilisateur à administrateur.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Format rôle non valide.', + 'length' => 'Le champ de rôle doit être au moins 5 caractères et pas plus de 30 caractères de long.', + 'required' => 'Veuillez définier au moins un role.', + 'values' => 'Le rôle doit être ADMINISTRATEUR ou UTILISATEUR.', + ) , + 'token' => array( + 'invalid' => 'La clé pour votre mot de passe perdu n\'est pas valide', + 'required' => 'Une clé pour votre mot de passe perdu est requise', + ) , + 'username' => array( + 'admin' => 'The role de l\'administrateur ne peut être modifié.', + 'alpha_numeric' => 'Le champ profil public URL doit contenir que des chiffres et des lettres.', + 'exists' => 'Ce nom d\'utilisateur est déjà pris.', + 'length' => 'Le nom d\'utilisateur doit comporter entre 2 et 16 caractères.', + 'login error' => 'Veuillez vérifier que le nom d\'utilisateur est correct.', + 'required' => 'Veuillez indiquer un nom d\'utilisateur.', + 'superadmin' => 'Le rôle super administrateur ne peut pas être modifié.', + 'csrf' => 'Possible attaque CSRF. Avez-vous vraiment l\'intention de créer / modifier un utilisateur?', + ) , +); diff --git a/application/i18n/fr_FR/bug.php b/application/i18n/fr_FR/bug.php new file mode 100755 index 0000000000..edd712fc9c --- /dev/null +++ b/application/i18n/fr_FR/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Veuillez entrer un code de sécurité valide.', + 'required' => 'Veuillez entrer le code de sécurité.', + ) , + 'email' => array( + 'email' => 'Le champ e-mail ne semble pas contenir une adresse email valide ?', + 'length' => 'L\\\'e-mail doit contenir entre 4 et 64 caractères.', + 'required' => 'L\\\'e-mail est obligatoire si la case est cochée.', + ) , + 'error' => array( + 'required' => 'Le champ d\\\'erreur est requise.', + ) , + 'subject' => array( + 'length' => 'Le sujet doit avoir au moins 3 caractères.', + 'required' => 'Le sujet est obligatoire.', + ) , + 'yourname' => array( + 'length' => 'Le nom doit comporter au moins 3 caractères.', + 'required' => 'Le nom est obligatoire.', + ) , +); diff --git a/application/i18n/fr_FR/category.php b/application/i18n/fr_FR/category.php new file mode 100755 index 0000000000..f86e4eb028 --- /dev/null +++ b/application/i18n/fr_FR/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Le champ «couleur» doit comporter 6 caractères.', + 'required' => 'Veuillez spécifier une couleur.', + ) , + 'category_description' => array( + 'required' => 'Veuillez indiquer une description.', + ) , + 'category_image' => array( + 'size' => 'Veuillez vérifier que la taille d\\\'upload des images est limitée à 50Ko.', + 'type' => 'L\\\'image ne ​​semble pas contenir une image valide. Les formats reconnus sont seulement .JPG, .PNG et .GIF.', + 'valid' => 'L\\\'image ne ​​semble pas contenir un fichier valide', + ) , + 'category_title' => array( + 'length' => 'Le titre doit comporter entre 3 et 80 caractères.', + 'required' => 'Veuillez indiquer un titre.', + ) , + 'parent_id' => array( + 'already_parent' => 'Vous ne pouvez pas sous-catégoriser une catégorie avec des sous-catégories.', + 'exists' => 'La catégorie parente n\\\'existe pas.', + 'numeric' => 'La catégorie parente doit être numérique.', + 'parent_trusted' => 'La catégorie parente ne peut pas être une catégorie spéciale', + 'required' => 'La catégorie parente est requise.', + 'same' => 'La catégorie et la catégorie parente ne peuvent pas être les même.', + 'special' => 'Les catégories spéciales ne peuvent pas être sub-catégorisées.', + ) , +); diff --git a/application/i18n/fr_FR/comments.php b/application/i18n/fr_FR/comments.php new file mode 100755 index 0000000000..4a6e2ca437 --- /dev/null +++ b/application/i18n/fr_FR/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Indiquez un code de sécurité valide', + 'required' => 'Indiquez le code de sécurité', + 'valid' => 'Vous avez entré un code de sécurité erroné.', + ) , + 'comment_author' => array( + 'length' => 'Le nom doit comporter au moins 3 caractères.', + 'required' => 'Veuillez indiquer un nom.', + ) , + 'comment_description' => array( + 'required' => 'Veuillez remplir le champ «commentaire».', + ) , + 'comment_email' => array( + 'email' => 'Adresse email invalide.', + 'length' => 'L\'adresse email doit comporter entre 4 et 64 caractères.', + 'required' => 'Une adresse email doit être spécifiée si la case est cochée.', + ) , +); diff --git a/application/i18n/fr_FR/contact.php b/application/i18n/fr_FR/contact.php new file mode 100755 index 0000000000..5f911cdffd --- /dev/null +++ b/application/i18n/fr_FR/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Veuillez entrer un code de sécurité valide', + 'valid' => 'Veuillez entrer un code de sécurité valide.', + 'required' => 'Veuillez entrer le code de sécurité', + ) , + 'contact_email' => array( + 'email' => 'Addresse email invalide.', + 'length' => 'L\'adresse email doit comporter entre 4 et 64 caractères.', + 'required' => 'Une adresse email est requise si la case est cochée.', + ) , + 'contact_message' => array( + 'required' => 'Veuillez entrer un message.', + ) , + 'contact_name' => array( + 'length' => 'Le nom doit comporter plus de 3 caractères.', + 'required' => 'Veuillez indiquer un nom.', + ) , + 'contact_subject' => array( + 'length' => 'L\'objet doit comporter plus de 3 caractères.', + 'required' => 'Veuillez indiquer un object.', + ) , + 'email_send' => array( + 'failed' => 'Il y avais une erreur d\'envoi de votre message.', + ) , +); diff --git a/application/i18n/fr_FR/core.php b/application/i18n/fr_FR/core.php new file mode 100755 index 0000000000..194db76d4f --- /dev/null +++ b/application/i18n/fr_FR/core.php @@ -0,0 +1,35 @@ + 'fichier config', + 'controller' => 'controleur', + 'driver' => 'driver', + 'driver_implements' => 'le %s driver de la librairie %s doit implémenter l’interface %s.', + 'driver_not_found' => 'le %s driver de la librairie %s n\'a pas pu être trouvé.', + 'errors_disabled' => 'vous pouvez aller à la page d’accueil ou réessayer.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Impossible de compléter la requête', + 'helper' => 'le aidee', + 'invalid_filetype' => 'Le type de fichier demandé, .%s, n\\\'est pas autorisé dans votre fichier de configuration de la vue.', + 'invalid_method' => 'Méthode invalide %s appelée à %s', + 'invalid_property' => 'La propriété %s n\\\'existe pas dans la classe %s.', + 'library' => 'bibliothèque', + 'log_dir_unwritable' => 'Le répertoire du journal n\\\'est pas accessible en écriture : %s', + 'model' => 'modèle', + 'no_controller' => 'Ushahidi n\\\'est pas en mesure de déterminer un dispositif de commande pour traiter cette demande : %s', + 'no_default_route' => 'Veuillez définir une route par défaut dans config/routes.php', + 'page_not_found' => 'La page que vous avez demandé, %s, n\\\'a pu être trouvée.', + 'report_bug' => 'Signaler ce problème à Ushahidi', + 'resource_not_found' => 'La demande %s, %s, n\\\'a pu être trouvée.', + 'stack_trace' => 'Trace de la pile', + 'stats_footer' => 'Chargé en {execution_time} secondes, utilise {memory_usage} de mémoire. Généré par Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Il ne peut y avoir qu\\\'une seule instance d\\\'Ushahidi par demande de page.', + 'uncaught_exception' => 'Non pris %s: %s dans le fichier %s en ligne %s', + 'view' => 'vue', + 'view_set_filename' => 'Vous devez définir le nom du fichier avant d\\\'appeler la vue de rendu.', +); diff --git a/application/i18n/fr_FR/database.php b/application/i18n/fr_FR/database.php new file mode 100755 index 0000000000..dccf9a2b5a --- /dev/null +++ b/application/i18n/fr_FR/database.php @@ -0,0 +1,10 @@ + 'Erreur base de données: %s', + 'table_not_found' => 'Table "%s" non trouvée dans la base de données. Veuillez vérifier que vous utilisez la version correspondante à celle de votre version d\'Ushahidi', +); diff --git a/application/i18n/fr_FR/datetime.php b/application/i18n/fr_FR/datetime.php new file mode 100755 index 0000000000..2ac520ca9f --- /dev/null +++ b/application/i18n/fr_FR/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Ven', + 'full' => 'Vendredi', + ) , + 'monday' => array( + 'abbv' => 'Lun', + 'full' => 'Lundi', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'sam', + 'full' => 'samedi', + ) , + 'sunday' => array( + 'abbv' => 'Dim', + 'full' => 'Dimanche', + ) , + 'thursday' => array( + 'abbv' => 'Jeu', + 'full' => 'jeudi', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => 'Mardi', + ) , + 'wednesday' => array( + 'abbv' => 'Mer', + 'full' => 'Mercredi', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Janvier', + ) , + 'february' => array( + 'abbv' => 'Fev', + 'full' => 'Fevrier', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Mars', + ) , + 'april' => array( + 'abbv' => 'Avr', + 'full' => 'Avril', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Mai', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juin', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juillet', + ) , + 'august' => array( + 'abbv' => 'Aou', + 'full' => 'Août', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'Septembre', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'Octobre', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novembre', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'Décembre', + ) , +); diff --git a/application/i18n/fr_FR/feeds.php b/application/i18n/fr_FR/feeds.php new file mode 100755 index 0000000000..ea965bd7b9 --- /dev/null +++ b/application/i18n/fr_FR/feeds.php @@ -0,0 +1,19 @@ + 'Date', + 'feed_name' => array( + 'length' => 'Le nom du fil doit comporter entre 3 et 70 caractères.', + 'required' => 'Entrez le nom du fil.', + ) , + 'feed_url' => array( + 'required' => 'Veuillez entrer l\'URL du fil.', + 'url' => 'Veuillez entrer un URL valide. Ex: http://www.ushahidi.com', + ) , + 'source' => 'Source', + 'title' => 'Titre', +); diff --git a/application/i18n/fr_FR/footer.php b/application/i18n/fr_FR/footer.php new file mode 100755 index 0000000000..0d3985620b --- /dev/null +++ b/application/i18n/fr_FR/footer.php @@ -0,0 +1,9 @@ + 'php5-curl n\'est pas installé sur ce système', +); diff --git a/application/i18n/fr_FR/form.php b/application/i18n/fr_FR/form.php new file mode 100755 index 0000000000..a33148ebb3 --- /dev/null +++ b/application/i18n/fr_FR/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'La valeur par défaut saisie dans le champ est invalide.', + 'length' => 'Le nom du champ doit comporter entre 3 et 200 caractères.', + ) , + 'field_height' => array( + 'between' => 'Veuillez indiquer la hauteur du champ, entre 0 et 50', + ) , + 'field_isdate' => array( + 'between' => 'Vous avez entré un champ «date» invalide.', + 'required' => 'Veuillez selectionner Oui ou Non pour le champ «date».', + ) , + 'field_name' => array( + 'length' => 'Le nom du champ doit comporter entre 3 et 100 caractères.', + 'required' => 'Veuillez spécifier le nom du champ.', + 'duplicate' => 'Le nom de champ que vous avez entré existe déjà. Merci d\'en essayer un autre.', + ) , + 'field_required' => array( + 'between' => 'Valeur «champ obligatoire» invalide', + 'required' => 'Veuillez indiquer si ce champ est obligatoire (Oui ou Non)', + ) , + 'field_type' => array( + 'numeric' => 'Veuillez sélectionner un type de champ valide.', + 'required' => 'Veuillez sélectionner un type de champ.', + ) , + 'field_width' => array( + 'between' => 'Veuillez indiquer la largeur du champ, entre 0 et 300', + ) , + 'form_description' => array( + 'required' => 'Veuillez entrer une description du formulaire.', + ) , + 'form_id' => array( + 'default' => 'Le formulaire pas défault ne peut pas être supprimé.', + 'numeric' => 'Veuillez selectionner le formulaire auquel ce champ appartient.', + 'required' => 'Veuillez selectionner le formulaire auquel ce champ appartient.', + ) , + 'form_title' => array( + 'length' => 'Le nom du formulaire doit comporter entre 3 et 100 caractères.', + 'required' => 'Veuillez entrer le nom du formulaire.', + 'exists' => 'Un formulaire avec ce titre existe déjà. Merci d\'en essayez un autre.', + ) , +); diff --git a/application/i18n/fr_FR/imap.php b/application/i18n/fr_FR/imap.php new file mode 100755 index 0000000000..9c7f468622 --- /dev/null +++ b/application/i18n/fr_FR/imap.php @@ -0,0 +1,10 @@ + 'Impossible d\'ouvrir le flux IMAP', + 'unsupported_service' => 'Le service email n\'est pas disponible', +); diff --git a/application/i18n/fr_FR/installer.php b/application/i18n/fr_FR/installer.php new file mode 100755 index 0000000000..bd7b93b6c0 --- /dev/null +++ b/application/i18n/fr_FR/installer.php @@ -0,0 +1,84 @@ + 'Chemin de base', + 'database' => 'Base de données', + 'database_host' => 'Host', + 'database_host_description' => 'Si vous utilisez Ushahidi sur votre propre ordinateur, le host est généralement "localhost". Si vous utilisez Ushahidi à partir d\\\'un serveur Web, vous obtiendrez vos informations d\\\'hôte de votre fournisseur d\\\'hébergement Web.', + 'database_name' => 'Nom de la base de données', + 'database_name_description' => 'Le nom de la base de données souhaitée pour installer Ushahidi', + 'db_information_link' => 'Pour plus d\\\'informations, consultez cet article sur le wiki qui parle de bases de données plus en détail.', + 'default_language' => 'Langue par défaut (Locale)', + 'default_language_description' => 'Chaque déploiement de Ushahidi est livré avec plusieurs traductions (multi-langues). Vous pouvez également ajouter vos propres langues.', + 'disable' => 'Désactiver', + 'enable' => 'Activer', + 'error_summary' => 'La liste suivante est un résumé des erreurs que nous avons rencontrées.', + 'files_location_text' => 'Emplacement sur votre serveur où vous avez placé vos fichiers Ushahidi. Nous avons détecté automatiquement cette valeur, veuillez vous assurer qu\\\'elle est correcte. Si le champ est vide, ne vous inquiétez pas, cela signifie qu\\\'Ushahidi est installé dans le répertoire de niveau supérieur.', + 'finished' => 'Terminé', + 'general' => 'Général', + 'google_key' => 'Clé API Google', + 'google_key_description' => 'N\\\'importe qui peut obtenir une clé API. Obtenez la vôtre maintenant', + 'go_back' => 'Retour', + 'index' => array( + 'advanced' => 'INSTALLATION AVANCEE', + 'advanced_installation_description' => 'Effectuez tous les réglages de base grâce à ce processus en 5 étapes. Cela inclut le serveur, la carte, le nom du site et les coordonnées.', + 'basic_installation' => 'INSTALLATION BASIQUE', + 'basic_installation_description' => 'Simple et rapide. Tout ce que vous avez besoin est le répertoire racine de votre site et vos informations de base de données. Choisissez cette option si vous voulez démarrer rapidement, vous pouvez toujours configurer le reste plus tard.', + 'proceed' => 'Commencer', + 'welcome' => 'Bienvenue sur le processus d\\\'installation du serveur Ushahidi. Choisissez le type d\\\'installation que vous souhaitez utiliser ci-dessous.', + ) , + 'installation_successful' => 'Installation réussie', + 'mail_server' => 'Serveur de Mail', + 'mail_server_host' => 'Host du serveur de Mail', + 'mail_server_host_description' => 'Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mot de passe du serveur de Mail', + 'mail_server_password_description' => 'Le mot de passe que vous utilisez habituellement pour vous connecter à votre e-mail', + 'mail_server_port' => 'Port du serveur de Mail', + 'mail_server_port_description' => 'Ports courants : 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Type de serveur de Mail', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) ou Post Office Protocol (POP). Quelle est la différence ?', + 'mail_server_username' => 'Nom d\\\'utilisateur du serveur de Mail', + 'mail_server_username_description' => 'Si vous utilisez Gmail, Hotmail, ou Yahoo Mail, saisir une adresse e-mail complète en tant que nom d\\\'utilisateur.', + 'map' => 'Carte', + 'map_provider' => 'Fournisseur de carte', + 'map_provider_description' => 'Ushahidi fonctionne aussi bien avec un de ces trois fournisseurs de cartographie : Google, Bing ou Open Street Map. Choisissez celui qui a le plus de détails possible dans votre région.', + 'other_steps' => 'D\\\'autres mesures...', + 'password' => 'Mot de passe', + 'password_description' => 'Mot de passe de la base de données', + 'previous' => 'Précédent', + 'restart_apache' => 'Veuillez redémarrer votre serveur Apache', + 'select_mail_server_ssl' => 'Activer ou désactiver le SSL', + 'select_mail_server_ssl_description' => 'Certains serveurs de messagerie vous donnent la possibilité d\\\'utiliser le SSL lors de la connexion. L\\\'utilisation du protocole SSL est recommandé car il vous donne un niveau de sécurité supplémentaire.', + 'setup_sms' => 'Configurez votre serveur SMS', + 'site_email' => 'Adresse e-mail du site', + 'site_email_alerts' => 'Adresse e-mail d\\\'alerte', + 'site_email_alerts_description' => 'Lorsque vos visiteurs s\\\'inscrivent aux alertes email, ils recevront des courriels à partir de cette adresse. Cette adresse e-mail ne doit pas être la même que l\\\'adresse e-mail du site.', + 'site_email_description' => 'La communication du site par courriel sera canalisé à travers cette adresse', + 'site_name' => 'Nom du Site', + 'site_name_description' => 'Le nom de votre site web', + 'site_tagline' => 'Slogan du site', + 'site_tagline_description' => 'Votre slogan', + 'summary' => array( + 'text_1' => 'Les fichiers et les dossiers énumérés ci-dessous doivent être accessibles en écriture par le serveur web.', + 'text_2' => '

Voici les instructions pour changer les permissions de fichiers :

+', + 'text_3' => 'Avant de commencer, veuillez vous assurer que les fichiers et dossiers suivants sont accessibles en écriture par le serveur web. Cela implique de changer les permissions de fichiers.', + 'text_4' => 'Pour l\\\'installation, veuillez conserver les informations suivantes à portée de main.', + ) , + 'table_prefix' => 'Préfixe de Table', + 'table_prefix_description' => 'Normalement, vous ne modifiez pas le préfixe de table. Cependant, si vous voulez exécuter plusieurs installations Ushahidi sur une seule base de données, vous pouvez le faire en changeant le préfixe ici.', + 'title' => 'Titre', + 'to_login' => 'Pour vous connecter, passez à', + 'upload_data' => 'Télécharger les données du rapport', + 'username' => 'Nom d\\\'utilisateur', + 'username_description' => 'Nom d\\\'utilisateur de base de données', + 'use_credentials' => 'et utiliser les informations d\\\'identification suivantes', + 'view_site' => 'Affichez votre site web', +); diff --git a/application/i18n/fr_FR/layer.php b/application/i18n/fr_FR/layer.php new file mode 100755 index 0000000000..7baa003963 --- /dev/null +++ b/application/i18n/fr_FR/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Le champ de couleur doit être de 6 caractères.', + 'required' => 'Le champ de couleur est nécessaire.', + ) , + 'layer_file' => array( + 'type' => 'Le champ fichier ne semble pas contenir un fichier valide. Les formats reconnus sont seulement. KMZ et. KML.', + 'valid' => 'Le champ fichier ne semble pas contenir un fichier valide', + ) , + 'layer_name' => array( + 'length' => 'Le champ nom doit avoir au moins 3 caractères et pas plus de 80 de long.', + 'required' => 'Le champ nom est nécessaire.', + ) , + 'layer_url' => array( + 'atleast' => 'Entrer KML, URL ou un fichier est nécessaire.', + 'both' => 'Vous ne pouvez pas avoir à la fois un fichier KML et une URL.', + 'url' => 'Veuillez entrer une URL valide, par exemple http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/fr_FR/libraries.php b/application/i18n/fr_FR/libraries.php new file mode 100755 index 0000000000..d5cbf4ef78 --- /dev/null +++ b/application/i18n/fr_FR/libraries.php @@ -0,0 +1,27 @@ + 'Impossible de se connecter au serveur Akismet.', + 'akismet_cannot_retrieve' => 'La réponse de Akismet n\\\'a pas pu être récupérée.', + 'api_library_not_found' => 'La bibliothèque API : %s pour la classe %s n\\\'a pu être trouvée. Veuillez vérifier votre tâche API de table de routage.', + 'askimet_invalid_apikey' => 'Votre clé API Akismet n\\\'est pas valide.', + 'clickatell_fopen_error' => 'Erreur lors de l\\\'exécution de la méthode d\\\'envoi fopen!
Veuillez vérifier si PHP a le support OpenSSL et si la version de PHP est supérieur à 5.2.', + 'clickatell_message_too_long' => 'Votre message unicode est trop long ! (Longueur actuelle=', + 'clickatell_no_destination_address' => 'Veuillez indiquer une adresse de destination (A)!', + 'clickatell_no_sender_address' => 'Veuillez spécifier l\\\'adresse source (DE)!', + 'clickatell_unicode_message_too_long' => 'Votre message unicode est trop long ! (Longueur actuelle=', + 'clickatell_unsupported_method' => 'Méthode d\\\'envoi non pris en charge !', + 'invalid_api_library' => 'La bibliothèque API %s est invalide. Toutes les bibliothèques d\\\'API doit être sous-classes de %s.', + 'upgrade_directory_not_deleted' => 'Le répertoire %s ne peut pas être supprimé.', + 'upgrade_extracting_error' => 'Erreur lors de l\\\'extraction : %s', + 'upgrade_failed' => 'Le téléchargement de la dernière version d\\Ushahidi a échoué. Code d\\\'état HTTP', + 'upgrade_file_not_copied' => 'Le fichier %s n\\\'a pas pu être copié.', + 'upgrade_file_not_deleted' => 'Le fichier %s ne peut pas être supprimé.', + 'upgrade_title' => 'Script de mise à jour d\\\'Ushahidi', + 'upgrade_zip_error' => 'Le fichier zip téléchargé d\\\'Ushahidi %s, ne peut pas être écrit.', + 'riverid_variable_not_available' => '%s n\\\'est pas disponible dans la classe RiverID.', +); diff --git a/application/i18n/fr_FR/maintenance.php b/application/i18n/fr_FR/maintenance.php new file mode 100644 index 0000000000..ec06b6e824 --- /dev/null +++ b/application/i18n/fr_FR/maintenance.php @@ -0,0 +1,9 @@ + 'Désolé, notre site est actuellement en maintenance. Veuillez essayer de nouveau dans quelques minutes.', +); diff --git a/application/i18n/fr_FR/message.php b/application/i18n/fr_FR/message.php new file mode 100755 index 0000000000..8518cdf364 --- /dev/null +++ b/application/i18n/fr_FR/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Veuillez taper un code de sécurité valide', + 'required' => 'Veuillez taper le code de sécurité', + ) , + 'email' => array( + 'email' => 'Adress email invalide', + 'length' => 'L\'adresse email doit comporter entre 4 et 64 caractères.', + 'required' => 'Une adresse email est requise si la case est cochée.', + ) , + 'message' => array( + 'required' => 'Veuillez entrer un commentaire.', + ) , + 'name' => array( + 'length' => 'Le nom doit comporter plus de 3 caractères.', + 'required' => 'Veuillez indiquer un nom.', + ) , + 'phone' => array( + 'length' => 'Numéro de téléphone invalide.', + ) , +); diff --git a/application/i18n/fr_FR/mhi.php b/application/i18n/fr_FR/mhi.php new file mode 100755 index 0000000000..9ec6eb4100 --- /dev/null +++ b/application/i18n/fr_FR/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Veuillez entrer un code de sécurité valide.', + 'required' => 'Veuillez entrer le code de sécurité.', + ) , + 'contact_email' => array( + 'email' => 'Le champ e-mail ne semble pas contenir une adresse e-mail valide.', + 'required' => 'Veuillez fournir une adresse e-mail valide.', + ) , + 'contact_message' => array( + 'required' => 'Le message est obligatoire.', + ) , + 'contact_subject' => array( + 'length' => 'Le sujet doit avoir au moins 3 caractères.', + 'required' => 'Le sujet est nécessaire.', + ) , +); diff --git a/application/i18n/fr_FR/notifications.php b/application/i18n/fr_FR/notifications.php new file mode 100755 index 0000000000..020463ef61 --- /dev/null +++ b/application/i18n/fr_FR/notifications.php @@ -0,0 +1,35 @@ + 'Ce message a été envoyé de votre site web', + 'admin_login_url' => 'Login Administrateur', + 'admin_new_comment' => array( + 'message' => 'Un nouveau commentaire vient d\'être envoyé sur votre site, en réponse à:', + 'subject' => 'Nouveau commentaire', + ) , + 'admin_new_email' => array( + 'message' => 'Un nouvel email vient d\'être envoyé sur votre site.', + 'subject' => 'Nouvel email', + ) , + 'admin_new_report' => array( + 'message' => 'Un nouveau rapport vient d\'être envoyé sur votre site.', + 'subject' => 'Nouveau rapport', + ) , + 'admin_new_sms' => array( + 'message' => 'Un nouvel SMS vient d\'être envoyé sur votre site.', + 'subject' => 'Nouveau SMS', + ) , + 'member_new_alert' => array( + 'message' => 'Vous avez reçue une Alerte', + 'subject' => 'Nouvelle Alerte', + ) , + 'member_new_message' => array( + 'message' => 'Vous avez reçue un message privé', + 'subject' => 'Nouveau Message privé', + 'footer' => 'Pour répondre veuillez aller à :', + ) , +); diff --git a/application/i18n/fr_FR/page.php b/application/i18n/fr_FR/page.php new file mode 100644 index 0000000000..a85cdb9e7c --- /dev/null +++ b/application/i18n/fr_FR/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Veillez entrer le titre de la page.', + 'length' => 'Le titre de la page doit être entre 3 et 150 caractères.', + ) , + 'page_tab' => array( + 'required' => 'Veuillez entrez le nom de d\'onglet de page.', + ) , + 'page_description' => array( + 'required' => 'Veuillez entrez la description de la page.', + ) , +); diff --git a/application/i18n/fr_FR/permissions.php b/application/i18n/fr_FR/permissions.php new file mode 100644 index 0000000000..0541cb282b --- /dev/null +++ b/application/i18n/fr_FR/permissions.php @@ -0,0 +1,27 @@ + 'Voir les rapports', + 'reports_edit' => 'Créer/Modifier/Supprimer des rapports', + 'reports_approve' => 'Approuver les rapports', + 'reports_verify' => 'Vérifier les rapports', + 'reports_comments' => 'Gérer les commentaires des rapports', + 'reports_download' => 'Téléchargez les rapports', + 'reports_upload' => 'Envoyer les rapports', + 'messages' => 'Gérer les messages', + 'messages_reporters' => 'Gérer les messages des reporters', + 'stats' => 'Voir les stats', + 'settings' => 'Modifier les paramètres', + 'manage' => 'Gérer le panel', + 'users' => 'Gérer les utilisateurs', + 'manage_roles' => 'Gérer les rôles', + 'checkin' => 'Pouvez vérifier', + 'checkin_admin' => 'Gérer les vérifications', + 'admin_ui' => 'Accès admin UI', + 'member_ui' => 'Accès membres UI', + 'delete_all_reports' => 'Supprimer tous les rapports', +); diff --git a/application/i18n/fr_FR/private_message.php b/application/i18n/fr_FR/private_message.php new file mode 100644 index 0000000000..f10a7d3b6d --- /dev/null +++ b/application/i18n/fr_FR/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'L\\\'ID parent doit être numérique', + ) , + 'private_to' => array( + 'required' => 'Le champ "A" est requis', + 'exists' => 'L\\\'utilisateur pour lequele vous essayez d\\\'envoyer un message n\\\'existe pas', + ) , + 'private_subject' => array( + 'required' => 'Le sujet est requis', + 'length' => 'Le sujet doit contenir entre 3 et 150 caractères', + ) , + 'private_message' => array( + 'required' => 'Le message est requis', + ) , +); diff --git a/application/i18n/fr_FR/report.php b/application/i18n/fr_FR/report.php new file mode 100755 index 0000000000..8df5c236a4 --- /dev/null +++ b/application/i18n/fr_FR/report.php @@ -0,0 +1,139 @@ + 'erreur', + 'country_name' => array( + 'single_country' => 'Ce déploiement s\\\'étend à l\\\'intérieur d\\\'un seul pays. Veuillez vous assurer que l\\\'emplacement du rapport se trouve dans le pays %s.', + ) , + 'custom_field' => array( + 'values' => 'S\'il vous plaît entrer une valeur valide pour le champ "% s".', + 'numeric' => 'Le champ "% s" doit être numérique.', + 'required' => 'Le champ "% s" est nécessaire.', + 'not_exist' => 'Le champ "% s" est n\'existe pas.', + 'permission' => 'Le champ "% s" ne peut pas être modifié par votre compte.', + 'email' => 'Le champ "% s" doit contenir une adresse email valide.', + 'phone' => 'Le champ "% s" doit contenir un numéro de téléphone valide.', + 'date_mmddyyyy' => 'Le champ "% s" doit contenir une date valide (MM/JJ/AAAA).', + 'date_ddmmyyyy' => 'Le champ "% s" doit contenir une date valide (JJ/MM/AAAA).', + ) , + 'data_include' => array( + 'between' => 'Veuillez sélectionner un élément valide à inclure dans le téléchargement.', + 'numeric' => 'Veuillez sélectionner un élément valide à inclure dans le téléchargement.', + ) , + 'data_active' => array( + 'between' => 'Veuillez sélectionner "Rapports en attente d\\\'approbation" ou "Rapports approuvés" ou les deux.', + 'numeric' => 'Veuillez sélectionner "Rapports en attente d\\\'approbation" ou "Rapports approuvés" ou les deux.', + 'required' => 'Veuillez sélectionner "Rapports en attente d\\\'approbation" ou "Rapports approuvés" ou les deux.', + ) , + 'data_verified' => array( + 'between' => 'Rapports en Attente de Vérification" ou "Rapports Vérifiés", ou les deux.', + 'numeric' => 'Rapports en Attente de Vérification" ou "Rapports Vérifiés", ou les deux.', + 'required' => 'Rapports en Attente de Vérification" ou "Rapports Vérifiés", ou les deux.', + ) , + 'data_point' => array( + 'between' => 'Veuillez sélectionner un type valide de rapport à télécharger.', + 'numeric' => 'Veuillez sélectionner un type valide de rapport à télécharger.', + 'required' => 'Veuillez sélectionner un type valide de rapport à télécharger.', + ) , + 'format' => array( + 'required' => 'Vous devez sélectionner le format de téléchargement. Sélectionnez soit CSV ou XML.', + 'valid' => 'Sélectionnez s\'il vous plait un format valide pour télécharger vos repports dans', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Le champ FROM date ne semble pas contenir une date valide.', + 'range' => 'Veuillez entrer un date de validité. Elle ne peut pas être supérieure à aujourd\\\'hui.', + ) , + 'incident_active' => array( + 'between' => 'Veuillez entrer une valeur valide pour approuver le présent rapport', + 'required' => 'Veuillez entrer une valeur valide pour approuver le présent rapport', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Champ «am/pm» invalide', + ) , + 'incident_category' => array( + 'numeric' => 'Catégorie invalide', + 'required' => 'Veuillez indiquer une catégorie.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'date incorrecte', + 'date_mmddyyyy' => 'date incorrecte', + 'required' => 'Veuillez indiquer la date.', + ) , + 'incident_description' => array( + 'required' => 'Veuillez indiquer une description.', + ) , + 'incident_hour' => array( + 'between' => 'Format de l\'heure invalide', + 'required' => 'Veuillez indiquer une heure.', + ) , + 'incident_information' => array( + 'alpha' => 'Veuillez entrer une valeur valide pour probabilité d\\\'information.', + 'length' => 'Veuillez entrer une valeur valide pour probabilité d\\\'information.', + ) , + 'incident_minute' => array( + 'between' => 'Format des minutes invalide', + 'required' => 'Veuillez indiquer les minutes.', + ) , + 'incident_news' => array( + 'url' => 'URL de source d\'actualité invalide', + ) , + 'incident_photo' => array( + 'size' => 'Photo de taille supérieure à 2Mo. Veuiller choisir une photo plus petite.', + 'type' => 'Format de fichier image invalide. Seuls les formats .JPG, .PNG and .GIF. sont acceptés', + 'valid' => 'Fichier image invalide', + ) , + 'incident_source' => array( + 'alpha' => 'Veuillez entrer une valeur valide pour la fiabilité de la source.', + 'length' => 'Veuillez entrer une valeur valide pour la fiabilité de la source.', + ) , + 'incident_title' => array( + 'length' => 'Le titre doit comporter entre 3 et 200 caractères', + 'required' => 'Veuillez indiquer un titre.', + 'csrf' => 'Attaque CSRF possible. Avez-vous vraiment l\\\'intention de créer/éditer un rapport ?', + ) , + 'incident_verified' => array( + 'between' => 'Veuillez entrer une valeur valide pour vérifier ce rapport.', + 'required' => 'Veuillez entrer une valeur valide pour vérifier ce rapport.', + ) , + 'incident_video' => array( + 'url' => 'URL de vidéo invalide', + ) , + 'latitude' => array( + 'between' => 'Format de latitude invalide', + 'required' => 'Veuillez indiquer une latitude.', + ) , + 'locale' => array( + 'alpha_dash' => 'Le champ locale a une valeur incorrecte.', + 'exists' => 'Ce rapport a déjà une traduction dans cette langue.', + 'length' => 'Le champ locale a une valeur incorrecte.', + 'locale' => 'Le rapport original et la traduction sont dans la même langue.', + 'required' => 'Les paramètres régionaux sont nécessaires.', + ) , + 'location_name' => array( + 'length' => 'Le champ «lieu» doit comporter entre 3 et 200 caractères.', + 'required' => 'Veuillez indiquer un lieu.', + ) , + 'longitude' => array( + 'between' => 'Format de longitude invalide', + 'required' => 'Veuillez indiquer une longitude.', + ) , + 'person_email' => array( + 'email' => 'Adresse email invalide.', + 'length' => 'L\'adresse email doit comporter entre 4 et 64 caractères.', + ) , + 'person_first' => array( + 'length' => 'Le prénom doit comporter entre 3 et 100 caractères.', + ) , + 'person_last' => array( + 'length' => 'Le nom de famille doit comporter entre 3 et 100 caractères.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Le champ TO date ne semble pas contenir une date valide.', + 'range' => 'Veuillez entrer un identifiant valide à ce jour. Il ne peut pas être supérieure à aujourd\\\'hui.', + 'range_greater' => 'Votre FROM date ne peut pas être plus grand que votre TO date.', + ) , +); diff --git a/application/i18n/fr_FR/reporters.php b/application/i18n/fr_FR/reporters.php new file mode 100755 index 0000000000..fbc122f692 --- /dev/null +++ b/application/i18n/fr_FR/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'La latitude ne semble pas contenir une latitude valide.', + 'required' => 'La latitude est nécessaire. Veuillez cliquer sur la carte pour trouver un lieu.', + ) , + 'level_id' => array( + 'numeric' => 'Le niveau reporter ne semble pas contenir un niveau valide.', + 'required' => 'Le niveau reporter ne semble pas contenir un niveau valide.', + ) , + 'location_name' => array( + 'length' => 'Le champ nom de l\\\'emplacement doit contenir entre 3 et 200 caractères.', + 'required' => 'Le nom de l\\emplacement est requis.', + ) , + 'longitude' => array( + 'between' => 'La longitude ne semble pas contenir une longitude valide.', + 'required' => 'La longitude est nécessaire. Veuillez cliquer sur la carte pour trouver un lieu.', + ) , + 'reporter_id' => array( + 'numeric' => 'Reporter invalide', + 'required' => 'Reporter invalide', + ) , +); diff --git a/application/i18n/fr_FR/reports.php b/application/i18n/fr_FR/reports.php new file mode 100644 index 0000000000..ee6d058eb8 --- /dev/null +++ b/application/i18n/fr_FR/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Veuillez vérifier que vous avez coché un élément', + 'numeric' => 'Veuillez vérifier que vous avez coché un élément', + 'categories_required' => 'Les rapports doivent être classés avant d\\\'être approuvés', + ) , + 'action' => array( + 'permission' => 'Vous n\\\'avez pas la permission d\\\'effectuer cette action', + ) , + 'uploadfile' => array( + 'required' => 'Vous devez sélectionner un fichier à envoyer.', + 'type' => 'Le fichier a envoyer doit être au format .csv ou .xml', + 'valid' => 'Le champ fichier à envoyer ne semble pas contenir un fichier valide', + ) , +); diff --git a/application/i18n/fr_FR/roles.php b/application/i18n/fr_FR/roles.php new file mode 100755 index 0000000000..6d9057793a --- /dev/null +++ b/application/i18n/fr_FR/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'La Description doit contenir entre 3 et 100 caractères.', + 'required' => 'La Description est requise.', + ) , + 'name' => array( + 'alpha_numeric' => 'Le Nom ne doit contenir que des lettres ou des chiffres.', + 'length' => 'Le Nom doit contenir entre 2 et 30 caractères.', + 'nomodify' => 'Le rôle SuperAdmin ne peut pas être modifié.', + 'required' => 'Le Nom est requis.', + ) , + 'access_level' => array( + 'numeric' => 'Le Niveau d\\\'accès doit être un nombre compris entre 0 - 100.', + 'required' => 'Le Niveau d\\\'accès doit être un nombre compris entre 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Les Autorisations doivent être un nombre compris entre 0 - 100.', + ) , +); diff --git a/application/i18n/fr_FR/settings.php b/application/i18n/fr_FR/settings.php new file mode 100755 index 0000000000..dc27b773ac --- /dev/null +++ b/application/i18n/fr_FR/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'Le champ des commentaires autorisés ne contient pas de valeur valide.', + 'required' => 'Le champs des commentaires autorisés est nécessaire.', + ) , + 'allow_feed' => array( + 'between' => 'Le champ de retours ne contient pas de valeur valide.', + 'required' => 'Le champs de retour inclus est nécessaire.', + ) , + 'allow_feed_category' => array( + 'between' => 'Le champ de catégorie du flux ne semble pas contenir de valeur correcte.', + 'required' => 'Un champ de catégorie du flux est requis.', + ) , + 'allow_alerts' => array( + 'between' => 'Le champ des alertes autorisées ne contient pas de valeur valide.', + 'required' => 'Le champ d\'alertes autorisées est nécessaire.', + ) , + 'allow_reports' => array( + 'between' => 'Le champ de rapports autorisés ne contient pas de valeur valide.', + 'required' => 'Le champ de rapports autorisés est nécessaire.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Le champ de partage de statistiques ne contient pas de valeur valide', + 'required' => 'Le champ de partage de statistiques est nécessaire.', + ) , + 'api' => array( + 'default_record_limit' => 'Nombre d\'enregistrements par défaut à récupérer par requête API', + 'maximum_record_limit' => 'Nombre maximal d\'enregistrements à récupérer par requête API', + 'maximum_requests_per_ip_address' => 'Nombre maximal de requêtes API par adresse IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Le champ Akismet ne semble pas contenir de valeur valide.', + 'length' => 'Le champ Akismet ne semble pas contenir une valeur valide.', + ) , + 'banner_image' => array( + 'type' => 'Le champ de la Bannière du Site ne ​​semble pas contenir une image valide. Les formats reconnus sont seulement .JPG, .PNG et .GIF.', + 'size' => 'Veuillez vous assurer que la taille de «l\'image bannière" est inférieure à 250 KB.', + 'valid' => 'L\\\'image bannière ne ​​semble pas contenir un fichier valide.', + ) , + 'cache_pages' => array( + 'between' => 'Le cache des pages est nécessaire.', + 'required' => 'Le cache des pages ne semble pas contenir une valeur valide.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'La durée de vie du cache des pages ne semble pas contenir une valeur valide.', + 'required' => 'La durée de vie du cache des pages est requis.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Il semble que votre serveur n\\\'est pas configurer pour gérer les réécritures d\\\'URL. Vous aurez besoin de changer la configuration de votre serveur avant de pouvoir activer la réécriture d\\\'URL. Voir plus d\\\'informations sur la façon d\\\'activer la réécriture d\\\'URL sur ce message du forum', + 'clean_url_enabled' => 'Cette option permet à Ushahidi d\\\'être accessible pr réécriture d\\\'URL (sans "index.php" dans l\\\'URL).', + 'enable_clean_url' => 'Activer la réécriture d\\\'URLs', + 'title' => 'Réécriture d\\\'URL', + ) , + 'clickatell_api' => array( + 'length' => 'Le numéro d\'API Clickatell doit comporter moins de 20 caractères.', + 'required' => 'Veuillez indiquer un numéro d\'API Clickatell.', + ) , + 'clickatell_password' => array( + 'length' => 'Le mot de passe Clickatell doit comporter entre 5 et 50 caractères.', + 'required' => 'Veuillez indiquer un mot de passe Clickatell.', + ) , + 'clickatell_username' => array( + 'length' => 'Le nom d\'utilisateur Clickatell doit comporter moins de 20 caractères.', + 'required' => 'Veuillez indiquer un nom d\'utilisateur Clickatell.', + ) , + 'configure_map' => 'Configurer la Carte', + 'default_location' => 'Emplacement par défaut', + 'default_map_all' => array( + 'alpha_numeric' => 'Le code couleur ne semble pas contenir une valeur valide.', + 'length' => 'Le code couleur ne doit pas contenir plus de 6 caractères.', + 'required' => 'Le code couleur est requis.', + ) , + 'default_map_view' => 'Voir la carte par défaut', + 'default_zoom_level' => 'Niveau de Zoom par défaut', + 'download_city_list' => 'Récupérer les villes avec Geonames', + 'email_host' => array( + 'length' => 'Le port du serveur de messagerie est trop long.', + 'numeric' => 'Le port du serveur de messagerie ne doit contenir que des chiffres.', + ) , + 'email_password' => array( + 'length' => 'Le mot de passe du serveur de messagerie doit contenir entre 5 et 50 caractères.', + 'required' => 'Le mot de passe du serveur de messagerie est requis.', + ) , + 'email_port' => array( + 'length' => 'Le port du serveur de messagerie est trop long.', + 'numeric' => 'Le port du serveur de messagerie ne doit contenir que des chiffres.', + ) , + 'email_servertype' => array( + 'length' => 'Le port du serveur de messagerie est trop long.', + 'required' => 'Le type de serveur de messagerie est requis.', + ) , + 'email_username' => array( + 'length' => 'Le nom du serveur de messagerie ne doit pas contenir plus de 50 caractères.', + 'required' => 'Le nom du serveur de messagerie est requis.', + ) , + 'facebook' => array( + 'title' => 'Options de configuration de Facebook', + 'description' => 'Pour obtenir les informations ci-dessous, vous aurez besoin de créer une nouvelle application Facebook sur ', + 'description_2' => 'Ces paramètres permettent aux utilisateurs de se connecter via Facebook, ceci ne créé pas une application Facebook pour votre déploiement', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Le champ «Google Analytics» doit contenir un identifiant «Web Property» au format UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Activer HTTPS', + 'https_disabled' => 'Cette option permet d\\\'accéder à Ushahidi en mode non sécurisé; sans "https://" en préfixe d\\\'URL', + 'https_enabled' => 'Cette option permet d\\\'accéder à Ushahidi en mode sécurisé; avec https en préfixe d\\\'URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Le nombre d\'éléments par page (Frontend) n\'est pas valide', + 'required' => 'Veuillez indiquer le nombre d\'éléments par page (Frontend).', + ) , + 'items_per_page_admin' => array( + 'between' => 'Le nombre d\'éléments par page (Admin) n\'est pas valide', + 'required' => 'Veuillez indiquer le nombre d\'éléments par page (Admin).', + ) , + 'map' => array( + 'default_location' => 'La configuration de votre fournisseur de carte est un processus simple. Sélectionnez un fournisseur, obtenez une clé API du fournisseur du site et entrez la clé API.', + 'zoom' => 'Niveau de zoom', + ) , + 'map_provider' => array( + 'choose' => 'Sélectionnez un fournisseur de carte', + 'enter_api' => 'Entrez la nouvelle clé API', + 'get_api' => 'Obtenez un clé API', + 'info' => 'La configuration de votre fournisseur de carte est un processus simple. Sélectionnez un fournisseur, obtenez une clé API du fournisseur du site et entrez la clé API.', + 'name' => 'Fournisseur de carte', + ) , + 'map_timeline' => 'Carte chronologique', + 'map_settings' => 'Paramètres de la carte', + 'multiple_countries' => 'Est-ce que ce déploiement Ushahidi s\\\'etend sur plusieurs pays ?', + 'select_default_location' => 'Sélectionnez un pays par défaut', + 'set_location' => 'Cliquez et faites glisser la carte pour définir votre postion exacte', + 'site' => array( + 'allow_clustering' => 'Rapports de groupe sur la carte', + 'allow_comments' => 'Autoriser les utilisateurs a formuler des commentaires aux rapports', + 'allow_feed' => 'Inclure les News en flux RSS sur le site web', + 'allow_feed_category' => 'Créer une nouvelle catégorie venant de Flux', + 'allow_alerts' => 'Autoriser les utilisateurs de souscrire à des alertes', + 'allow_reports' => 'Autoriser les utilisateurs à soumettre des rapports', + 'api_akismet' => 'Clé Akismet', + 'banner' => 'Bannière du Site', + 'blocks_per_row' => 'Blocs par colonne', + 'cache_pages' => 'Cache des pages', + 'cache_pages_lifetime' => 'Durée de vie du cache des pages', + 'checkins' => 'Activer l\\\'archivage', + 'copyright_statement' => 'Copyright du site', + 'default_category_colors' => 'Couleur par défaut pour toutes les catégories', + 'default_category_icons' => 'Icône par défaut pour toutes les catégories', + 'delete_banner_image' => 'Supprimer l\\\'image en bannière', + 'delete_default_map_all_icon' => 'Supprimer l\\\'icône par défaut', + 'display_contact_page' => 'Afficher la page Contact', + 'display_howtohelp_page' => 'Afficher la page "Comment aider"', + 'email_alerts' => 'Adresse e-mail d\\\'alertes', + 'email_notice' => 'Afin de recevoir des informations par e-mai, veuillez configurer vos paramètres de compte de messagerie.', + 'email_site' => 'Adresse e-mail du Site', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Articles par page - Intervace Utilisateur', + 'items_per_page_admin' => 'Articles par page - Interface Admin', + 'kismet_notice' => 'Prévenir les commentaires spam en utilisant Akismet à partir de Automattic.
Vous pouvez obtenir une clé API gratuite en s\\\'inscivant sur WordPress.com (compte utilisateur)', + 'laconica_configuration' => 'Certificat Laconica', + 'laconica_site' => 'Site Laconica ', + 'language' => 'Langue du site', + 'manually_approve_users' => 'Approuver manuellement les utilisateurs', + 'message' => 'Message du Site', + 'name' => 'Nom du site', + 'private_deployment' => 'Déploiement privé', + 'require_email_confirmation' => 'Exiger une confirmation e-mail de l\\\'utilisateur', + 'submit_report_message' => 'Envoyer un message de rapport', + 'share_site_stats' => 'Activer les statistiques (Stockés sur le serveur Ushahidi)', + 'tagline' => 'Slogan du site', + 'timezone' => 'Fuseau horaire', + 'title' => 'Paramètres du Site', + 'twitter_configuration' => 'Termes de recherche Twitter', + 'twitter_hashtags' => 'Tags - Séparez par des virgules ', + 'feed_geolocation_user' => 'Flux de géolocalisation - Utilisateur Geonames', + ) , + 'site_email' => array( + 'email' => 'L\'adresse email du site n\'est pas valide.', + 'length' => 'L\'adresse email du site doit comporter entre 4 et 100 caractères.', + ) , + 'site_name' => array( + 'length' => 'le nom du site doit comporter entre 3 et 50 caractères.', + 'required' => 'Veuillez entrer le nom du site.', + ) , + 'site_tagline' => array( + 'length' => 'Le slogan doit comporter entre 3 et 100 caractères.', + 'required' => 'Veuiller entrer un slogan.', + ) , + 'sms' => array( + 'clickatell_api' => 'Votre numéro API Clickatell', + 'clickatell_check_balance' => 'Vérifiez votre solde de crédit Clickatell', + 'clickatell_load_balance' => 'Chargez le solde de crédit', + 'clickatell_password' => 'Votre mot de passe Clickatell', + 'clickatell_text_1' => 'Inscrivez-vous à un service Clickatell en cliquant ici', + 'clickatell_text_2' => 'Entrez vos informations d\\\'accès Clickatell ci-dessous', + 'clickatell_username' => 'Votre nom d\\\'utilisateur Clickatell', + 'flsms_description' => 'FrontlineSMS est un logiciel libre open source qui donne la possibilité aux utilisateurs d\\\'envoyer et de recevoir des messages texte avec de grands groupes de personnes par téléphones mobiles. Cliquez sur la case ci dessous pour télécharger la dernière application via FrontlineSMS.com', + 'flsms_download' => 'Télécharger et installer FrontlineSMS', + 'flsms_instructions' => 'Des instructions détaillées sur la façon d\'envoyer des SMS à partir de votre installation FronlineSMS sont disponibles à here. L\'URL et la clé de l\'API ci-dessous sont nécessaires pour mettre en place la synchronisation avec FrontlineSMS.', + 'flsms_link' => 'Copiez et collez le dans le champ "Adresse" FrontlineSMS', + 'flsms_key' => 'Copiez et collez le dans le champ FrontlineSMS "Ushahidi API Key"', + 'flsms_synchronize' => 'Connecter FrontlineSMS à ce déploiement Ushahidi', + 'flsms_text_1' => 'Entrer ci-dessous le numéro de téléphone(s) connecté à FrontlineSMS', + 'flsms_text_2' => 'Entrer ci-dessous le numéro sans tiret ni +', + 'option_1' => 'Option 1: Utiliser Frontline SMS', + 'option_2' => 'Option 2: Utiliser un service Global SMS', + 'title' => 'Options de configuration SMS', + ) , + 'sms_no1' => array( + 'length' => 'Le premier numéro de téléphone a un format invalide', + 'numeric' => 'Le premier numéro de téléphone ne doit comporter que des chiffres.', + ) , + 'sms_no2' => array( + 'length' => 'Le second numéro de téléphone a un format invalide', + 'numeric' => 'Le second numéro de téléphone ne doit comporter que des chiffres.', + ) , + 'sms_no3' => array( + 'length' => 'Le troisième numéro de téléphone a un format invalide', + 'numeric' => 'Le troisième numéro de téléphone ne doit comporter que des chiffres.', + ) , + 'twitter' => array( + 'title' => 'Options de configuration de Twitter', + 'description' => 'Pour obtenir les informations ci-dessous, vous aurez besoin de créer une nouvelle application Twitter sur ', + 'api_key' => 'Clef utilisateur', + 'api_key_secret' => 'Secret utilisateur', + 'token' => 'Jeton d\'accès', + 'token_secret' => 'Jeton secret d\'accès', + ) , + 'test_settings' => 'Paramètres de test', +); diff --git a/application/i18n/fr_FR/sharing.php b/application/i18n/fr_FR/sharing.php new file mode 100755 index 0000000000..e14c866100 --- /dev/null +++ b/application/i18n/fr_FR/sharing.php @@ -0,0 +1,25 @@ + 'Date d\'entrée', + 'date_added' => 'Date d\'ajout', + 'last_access' => 'Dernier Accès', + 'sharing_color' => array( + 'length' => 'Le champ «couleur» doit comporter 6 caractères.', + 'required' => 'Veuillez indiquer une couleur.', + ) , + 'sharing_name' => array( + 'length' => 'Le nom de partage ne semble pas être valide.', + 'required' => 'Un nom de partage est nécessaire.', + ) , + 'sharing_url' => array( + 'exists' => 'L\'URL du site existe déjà.', + 'length' => 'L\'URL du site ne semble pas être valide.', + 'required' => 'Veuillez spécifier l\'URL du site.', + 'url' => 'L\'URL du site est incorrecte.', + ) , +); diff --git a/application/i18n/fr_FR/stats.php b/application/i18n/fr_FR/stats.php new file mode 100755 index 0000000000..d68f8d5ed9 --- /dev/null +++ b/application/i18n/fr_FR/stats.php @@ -0,0 +1,42 @@ + 'Approuvé', + 'categories' => 'Catégories', + 'category_impact' => 'Rapport par Catégorie', + 'category_impact_description' => 'Ce tableau donne une vision linéaire des rapports par catégorie au fil du temps. Faites défiler de gauche à droite pour voir un tableau comparatif des différentes catégories. Passez la souris sur le graphique pour plus de détails.', + 'choose_date_range' => 'Choisissez une période.', + 'countries' => 'Pays', + 'country' => 'Pays', + 'country_breakdown' => 'Répartition par pays', + 'description' => 'Il s\\\'agit de la section des statistiques qui contiendra une description générale d\\\'ici peu. Pour l\\\'instant, parcourez le site à l\\\'aide des liens ci-dessus sous la catégorie.', + 'error' => 'Erreur', + 'glossary' => 'Glossaire', + 'hit_summary' => 'Résumé des Hits', + 'legend' => 'Légende', + 'pageviews' => 'Pages vues', + 'pageviews_description' => 'Le nombre total de pages que les visiteurs ont vu sur votre site', + 'reports' => 'Rapports', + 'reports_categories' => 'Rapports des Catégories', + 'reports_statistics' => 'Rapports des Statistiques', + 'reports_status' => 'Rapports des Status', + 'report_punchcard' => 'Rapport de Cartes', + 'report_stats' => 'Rapport des Stats', + 'stats_not_setup' => 'Statistiques non mises en place', + 'time_range_1' => '1 mois', + 'time_range_2' => '3 mois', + 'time_range_3' => '6 mois', + 'time_range_all' => 'Tous', + 'unapproved' => 'Non approuvés', + 'unique_visitors' => 'Visiteurs Uniques', + 'unique_visitors_description' => 'Le nombre de personnes qui viennent sur votre déploiement. Le nombre de visiteurs uniques est déterminé en utilisant des cookies. Les visiteurs qui n\\\'ont pas activé les cookies seront identifiés à l\\\'aide d\\\'un système heuristique simple prenant en compte l\\\'adresse IP, la résolution, le navigateur, plugins, OS, etc.', + 'unverified' => 'Non vérifiés', + 'verified' => 'Vérifié', + 'visitor_summary' => 'Résumé des visiteurs', + 'visits' => 'Visites', + 'visits_description' => 'Une visite est un enregistrement d\\\'un visiteur unique venant sur le site plus de 30 minutes après sa dernière pages vues.', +); diff --git a/application/i18n/fr_FR/tooltips.php b/application/i18n/fr_FR/tooltips.php new file mode 100755 index 0000000000..851983e1ff --- /dev/null +++ b/application/i18n/fr_FR/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'Cela ajoute un rapport aux catégories additionnelles. Si vous sélectionnez la Catégorie 1 ici et que le rapport est déjà joint à la Catégorie 2, le rapport sera alors dans les deux catégories, 1 et 2.', + 'approve' => 'Approuver un rapport ou pas. Si approuvé, il apparaîtra publiquement.', + 'assign_badge' => 'Vous serez en mesure d\'attribuer un badge à l\'utilisateur déclenchant. Choisissez le badge assigné ici.', + 'between_times' => 'Il s\'agit d\'une plage d\'heures et / ou minutes entre deux heures au format 24 heures. Si vous entrez un temps plus court dans le deuxième champ, il sera basculé avec le premier. Ces délais doivent être en une seule journée. En outre, ce temps est vérifiée par rapport à l\'heure que vous avez configuré sur votre site dans les paramètres du site et pas nécessairement le fuseau horaire de l\'utilisateur inteférant avec votre déploiement. Laissez cela à 00 heures 00-00h00 pour ignorer ce qualificatif.', + 'category' => 'Si vous souhaitez activer les déclencheurs seulement quand une certaine catégorie est utilisée, vous pouvez régler cela ici. Cela permettra à un déclencheur d\'être activé si l\'une des catégories est utilisée. Pour instace, si vous sélectionnez des catégories 1 et 2 ici et un rapport est présenté à l\'aide de catégories 2 et 3, il va passer le test.', + 'days_of_the_week' => 'Si ces actions se produisent sur ​​certains jours de la semaine, réglez-le ici. Gardez à l\'esprit de la journée est déterminée par le fuseau horaire configuré sur votre déploiement. Maintenez la touche shift ou de contrôle pour la sélection de plusieurs jours.', + 'email_body' => 'Corps de l\'e-mail qui sera envoyé.', + 'email_subject' => 'Sujet de l\'e-mail qui sera envoyé.', + 'feed_id' => 'Le flux peut être tous les flux ou un flux spécifique. Si vous souhaitez un flux spécifiques pour activer un déclencheur, vous voudrez le sélectionner ici. Sinon, laissez su "tous"', + 'from' => 'Nom d\'utilisateur auteur Twitter(ou plusieurs noms d\'utilisateurs séparés par des virgules). Si vous souhaitez que le déclencheur ne se déclenche que pour les messages Twitter d\'un utilisateur particulier, entrez son pseudo ici (à l\'exclusion de @)', + 'keywords' => 'Vous pouvez choisir de laisser ce champ vide si vous ne voulez plus vérifier les mots clés. Si vous ajoutez des mots ici, vous aurez besoin de les séparer par une virgule (,). Par exemple, si vous souhaitez activer un déclencheur lorsque quelqu\'un mentionne «amour» ou «paix» dans leur message, vous voudrez ajouter «amour,paix" dans la zone des mots clés.', + 'location' => 'Vous pouvez sélectionner n\'importe où ou un emplacement spécifique. Si vous sélectionnez un emplacement spécifique, vous serez invité à tracer un cadre autour de la zone qui qualifie une action. Par exemple, si vous voulez que ce déclencheur soit activé lorsque quelqu\'un soumet un rapport au Brésil, vous devrez sélectionner "zone spécifique" puis dessiner la zone autour du Brésil. Vous pouvez effectuer ces boîtes aussi petite ou aussi grande que vous le souhaitez. Vous pouvez également dessiner plusieurs boîtes.', + 'on_specific_count' => 'Ce qualificatif va activer la règle au bout de la N-ième fois, soit pour l\'ensemble de la base d\'utilisateurs collectif ou pour chaque utilisateur individuel. Laissez ce champ vide pour l\'ignorer.', + 'report_title' => 'Ceci est le titre par défaut à ajouter au signalement.', + 'response' => 'Si tous les qualificatifs ci-dessus sont valides, le déclencheur lancera une réponse. Cela peut aller de l\'approbation d\'un rapport à l\'envoi d\'un mail à un utilisateur. Sélectionnez la réponse ici pour activer des options supplémentaires pour les réponses spécifiques.', + 'send_to' => 'Si vous sélectionnez "Déclencheur personnalisé", l\'e-mail sera envoyé à l\'utilisateur qui aura effectué l\'action. Si vous sélectionnez le bouton radio à côté de la zone de saisie, vous serez en mesure de saisir une adresse email personnalisée. Ceci est utile si vous mettez en place des déclencheurs pour informer les gens lorsque certaines parties de la carte voient des rapports, vérifictions ou une autre activité.', + 'specific_days' => 'Vous pouvez sélectionner plusieurs jours ici. Les dates sont déterminées par le paramètre de fuseau horaire de déploiement. Par défaut pour toutes les dates, ne sélectionnez pas de dates.', + 'trigger' => 'Le déclencheur est la composante de base de la configuration de vos déclencheurs d\'action. C\'est là que vous déterminez si vous souhaitez que quelque chose se passe lorsque quelqu\'un soumet un rapport, effectue un enregistrement, etc Vous serez en mesure de filtrer les réponses à ces actions après en avoir sélectionné une.', + 'user' => 'L\'utilisateur peut être n\'importe qui ou un utilisateur spécifique. Si vous souhaitez seulement que des utilisateurs spécifiques pour activer un déclencheur, vous voudrez les sélectionner ici. Autrement vous voudrez bien laisser «n\'importe qui» puisque la plupart des éléments déclencheurs sont mis en place pour tous les utilisateurs interagissant avec le système', + 'verify' => 'Indiquer si un signalement est vérifié ou non.', + ) , + 'change_picture' => 'Les pages de profil sur ce site utilisent Gravatar. En cliquant sur l\'image, vous serez redirigé vers le site Gravatar où vous pouvez changer votre photo de profil.', + 'default_value' => 'Sépare chaque valeur avec une virgule, ex. valeur1, valeur2.', + 'radio_choices' => 'Séparez chaque valeur par une virgule, par exemple valeur1, valeur2. Dans le cas où vous souhaitez définir une valeur par défaut, mettre fin à votre liste d\'options avec par exemple :: Si vous voulez faire valeur3 la valeur par défaut, la liste sera valeur1, valeur2, valeur3 :: valeur3', + 'dropdown_choices' => 'Sépare chaque choix avec une virgule, ex. Item 1, Item 2 etc.', + 'private_to' => 'Commencez à taper à la liste des membres.', + 'private_subject' => 'Sujet du message privé', + 'private_message' => 'Message privé', + 'profile_color' => 'Vous pouvez sélectionner une couleur qui apparaîtra sous votre photo de profil sur votre profil public. Cette couleur sera également le point de couleur qui apparaît sur ​​la carte pour vos vérifications.', + 'profile_email' => 'Votre adresse email', + 'profile_name' => 'Votre nom', + 'profile_new_password' => 'S\'il est défini, ce sera votre nouveau mot de passe. Laissez ce champ vide si vous souhaitez garder votre mot de passe actuel.', + 'profile_new_users_password' => 'C\'est une exigence lors de la création d\'un nouvel utilisateur et sera le mot de passe des utilisateurs. Vous devez inviter votre nouvel utilisateur à changer son mot de passe après s\'être connecté pour la première fois.', + 'profile_notify' => 'Choisissez OUI pour recevoir une alerte par email quand un nouveau rapport ou un commentaire est envoyé sur votre site.', + 'profile_password' => 'Votre mot de passe. Laisser vide si vous ne désirez pas le changer.', + 'profile_public' => 'Votre profil peut être consulté par n\'importe qui sur Internet si vous cochez cette option. C\'est aussi la meilleure façon de montrer les rapports que vous avez soumis, vos vérifications, insignes, etc tous sur une seule page.', + 'profile_public_url' => 'Ceci est l\'adresse ou votre profil public peut être accessible.', + 'profile_username' => 'Vous ne pouvez pas changer votre nom d\'utilisateur.', + 'settings_access_level' => 'Les niveaux d\'accès sont utilisés pour restreindre l\'accès aux données de champ de formulaire personnalisés. Des niveaux d\'accès plus élevés peuvent accéder aux champs des niveaux inférieurs. Superadmin a le niveau d\'accès le plus élevé (100). Les données publiques sont affichées au niveau de l\'accès le plus bas (0). Les membres ont un niveau d\'accès 10. Admin est le niveau d\'accès 90 par défaut.', + 'settings_alert_email' => 'Adresse à laquelle seront envoyées les alertes email.', + 'settings_allow_alerts' => 'Autoriser les utilisateurs de souscrire à des alertes via le web.', + 'settings_allow_clustering' => 'Cela permet le regroupement des rapports similaires en un seul point sur la carte', + 'settings_allow_comments' => 'Autoriser les utilisateurs a formuler des commentaires aux rapports sur le site web principal.', + 'settings_allow_feed' => 'Ceci autorise l\'affichage des flux de nouvelles RSS sur le site principal.', + 'settings_allow_feed_category' => 'Cela permet la création d\'une nouvelle catégorie provenant des flux de nouvelles RSS.', + 'settings_allow_reports' => 'Autorise les utilisateurs à envoyer des informations via le formulaire du site web.', + 'settings_api_default_record_limit' => 'Nombre par défaut d\\\'enregistrement à extraire par requête API', + 'settings_api_max_record_limit' => 'Nombre maximum d\\\'enregistrements à extraire par requête API', + 'settings_api_max_requests_per_ip' => 'Nombre maximum de requêtes de l\\\'API par dresse IP', + 'settings_banner' => 'La bannière du site apparaît dans la partie supérieure de la page public de votre site web si le thème que vous utilisez le prend en charge. La taille recommandée pour cette bannière dépendra du thème que vous utilisez. Gardez à l\'esprit que cela va remplacer le titre du site et le slogan en haut de la page.', + 'settings_blocks_per_row' => 'Nombre de blocs colonnes qui seront affichés sur chaque ligne.', + 'settings_cache_pages' => 'Activer ou désactiver la mise en cache. Les pages s\'affichent plus rapidement en réduisant les temps de réponse. Nous vous recommandons d\'utiliser la mise en cache sur des sites à fort trafic. ** Rappelez-vous que les rapports seront remplis sur les pages publiques sur ​​la base du calendrier que vous définissez ci-dessous (temps de vie du cache).', + 'settings_cache_pages_lifetime' => 'Définir la durée de vie du cache.', + 'settings_checkins' => 'Ce réglage permet des vérifications sur votre déploiement. Il s\'agit d\'un type de rapport simplifié qui n\'est pas modérée avant qu\'il ne passe sur la page d\'accueil et nécessite que votre site soit configuré d\'une certaine manière. Lorsque vous activez cette option, assurez-vous que votre réglage de fuseau horaire est UTC et sur ​​votre thème supporte les vérifications. Lorsque vous activez cette option, seul les thèmes type a vérifier seront activées sous vos addons / page Paramètres des thèmes.', + 'settings_configure_map' => 'Configurez la carte pour couvrir un emplacement spécifique.', + 'settings_default_category_colors' => 'Définir une couleur pour toutes les catégories sur ce site.', + 'settings_default_category_icons' => 'Défini une icône pour toutes les catégories sur ce site.', + 'settings_default_location' => 'Ceci est le pays depuis lequel le site web a été déployé.', + 'settings_display_contact' => 'Visibilité de l\'onglet Contact.', + 'settings_display_howtohelp' => 'Activer ou désactiver l\'onglet Comment Aider sur le site principal.', + 'settings_display_items_per_page' => 'Ceci est le nombre de signalements affichés par page sur le site principal.', + 'settings_display_items_per_page_admin' => 'Ceci est le nombre de signalements affichés par page sur l\'interface d\'administration.', + 'settings_flsms_download' => 'C\'est le lieu pour les messages entrants.', + 'settings_flsms_synchronize' => 'Cela permet de synchroniser les messages avec la plate-forme Ushahidi.', + 'settings_flsms_text_1' => 'Numéros de téléphones sur lesquels les messages sont reçus.', + 'settings_google_analytics' => 'Suit les visiteurs de votre site. Obtenez des statistiques détaillées pour les visiteurs.', + 'settings_locale' => 'La langue utilisée sur votre site.', + 'settings_manually_approve_users' => 'Si vous définissez cette option à oui, vous devez approuver chaque utilisateur individuel qui crée un compte sur votre site en leur attribuant des rôles (c.-à-Membre, Admin, Superadmin).', + 'settings_map_provider' => 'Ceci définit la carte qui doit être utilisée sur le site.', + 'settings_map_timeline' => 'Cela montre une ligne temporelle basé sur la date et l\'heure de soumission des rapports', + 'settings_private_deployment' => 'La définition de cette valeur sur vrai ou oui rendra votre déploiement privé de sorte que seuls les utilisateurs disposant de comptes que vous spécifiez seront en mesure d\'accéder au déploiement.', + 'settings_require_email_confirmation' => 'Les utilisateurs recevront par courriel avec un lien de confirmation à cliquer avant qu\'ils ne soient autorisés à se connecter sur le déploiement si ce paramètre est réglé sur Oui. Si vous activez cette option après que votre déploiement ai été accepté par les utilisateurs, ils seront invités à confirmer leur compte avant qu\'ils ne soient autorisés à continuer à l\'utiliser.', + 'settings_server_host' => 'C\'est ici que résident les e-mails', + 'settings_server_password' => 'C\'est le mot de passe pour l\'adresse e-mail qui reçoit des rapports.', + 'settings_server_port' => 'Cela est nécessaire pour accepter des connexions entrantes à partir de l\'adresse e-mail.', + 'settings_server_ssl_support' => 'Ceci est requis pour améliorer la sécurisation de la connexion.', + 'settings_server_type' => 'Cela est nécessaire pour récupérer les e-mails à partir du serveur hôte.', + 'settings_server_username' => 'Ceci est l\'adresse e-mail qui recevra les signalements.', + 'settings_share_site_stats' => 'Les statistiques sont stockés sur un serveur contrôlé par Ushahidi. En activant cette option, vous aurez accès aux statistiques directement dans votre panneau d\'administration. En désactivant, vous allez arrêter de collecter des statistiques et ne serez pas en mesure de récupérer les statistiques de trafic collectées pendant que cette option est désactivée.', + 'settings_site_copyright_statement' => 'Ce que les autres ont le droit de publier de textes, images, vidéo et / ou des thèmes de conception que vous et vos utilisateurs créez? Aller à https://creativecommons.org/choose/ si vous êtes intéressé à préciser ce que les autres sont capables de faire avec votre travail. Et n\'oubliez pas d\'être précis sur les éléments du site, que vous soumettez à licence!', + 'settings_site_email' => 'Adresse email à laquelle les rapports et les messages seront envoyés.', + 'settings_site_message' => 'Ceci est un texte qui apparaîtra au-dessus de la carte sur la page d\'accueil. Ceci est utile pour donner des informations importantes pour les visiteurs sur le site. Pour supprimer la boîte, il suffit de supprimer le message ici.', + 'settings_site_name' => 'Nom de votre site (visite en haut de la page principale).', + 'settings_site_submit_report_message' => 'C\'est un message qui s\'affichera sur la page de soumission de rapport. C\'est utile pour les avertissements ou des instructions supplémentaires pour vos visiteurs qui font des rapports.', + 'settings_site_tagline' => 'Décrivez votre site en quelques mots.', + 'settings_site_timezone' => 'C\'est le fuseau horaire que votre site va opérer. Cela a un impact sur ​​toutes les actions que vous avez mis en place qui utilisent l\'heure et la date, ainsi que l\'heure actuelle par défaut pour les rapports sur la partie public et privée du site.', + 'settings_twitter_configuration' => 'Défini le hashtag Twitter qui sera utilisé dans les tweets.', +); diff --git a/application/i18n/fr_FR/ui_admin.php b/application/i18n/fr_FR/ui_admin.php new file mode 100755 index 0000000000..933041af6a --- /dev/null +++ b/application/i18n/fr_FR/ui_admin.php @@ -0,0 +1,329 @@ + 'Accès refusé. Vos identifiants ne sont pas valides, ou votre demande est refusée', + 'access_denied_others' => 'Accès refusé. Votre demande dépasse les limites fixées (par ex: temps). Réessayez plus tard.', + 'access_level' => 'Niveau d\'accès', + 'actions' => 'Actions', + 'add_to_category' => 'Ajouter à Catégorie', + 'added' => 'ajouté', + 'added_edited' => 'ajouté/modifié', + 'addons' => 'Ajouts', + 'admin_role' => 'Administrateur', + 'alerts' => 'Alertes', + 'alerts_received' => 'Alertes reçues', + 'all' => 'Tout', + 'am' => 'AM', + 'anonymous' => 'Anonyme', + 'anyone_role' => 'n\'importe qui', + 'anywhere' => 'n\'importe où', + 'api_banned' => 'API bloquée', + 'api_logs' => 'Logs de l\'API', + 'api_settings' => 'Réglage API', + 'api_unban' => 'AUTORISER', + 'api_unban_all' => 'AUTORISER TOUT', + 'approved' => 'accepté', + 'approve_auto' => 'Approuver Automatiquement', + 'approve_manual' => 'Approuver Manuellement', + 'archived' => 'Archivé', + 'are_you_sure_you_want_to' => 'Etes-vous sûr que vous voulez', + 'are_you_sure_you_want_to_delete_this_item' => 'Êtes-vous sûr de vouloir supprimer cet élément?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Êtes-vous sûr de vouloir supprimer cette photo?', + 'are_you_sure_you_want_to_switch_forms' => 'Etes-vous sûr que vous voulez changer de formes?', + 'assign' => 'affecter', + 'assignments' => 'affectation', + 'assign_badge' => 'affecter Badge', + 'author' => 'Auteur', + 'author_email' => 'Email de l\'auteur', + 'back' => 'Revenir', + 'banip_action' => 'Interdire IP', + 'between_times' => 'Entre Temps', + 'blocks' => 'Bloques', + 'body' => 'Body', + 'cancel' => 'Annuler', + 'categories' => 'Catégories', + 'chart_display_error' => 'Error d\'affichage du graphe', + 'check_message_valid' => 'Veuillez vérifier que votre message est valide', + 'check_number' => 'Veuillez vérifier que le nombre est valide', + 'check_sms_settings' => 'Veuillez vérifier les réglages SMS!', + 'checkin_details' => 'Vérifier les Détails', + 'checkins' => 'Vérifier', + 'cities_loaded' => 'Villes chargées', + 'code' => 'Code', + 'code_out_of_sync' => 'Version du code incorrecte.', + 'color' => 'Couleur', + 'comments' => 'Commentaires', + 'confirmation_code' => 'Votre code de confirmation des alertes est: ', + 'confirm_msg' => 'L\'utilisateur a été', + 'count' => 'Compte', + 'country_not_found' => 'Pays non trouvé', + 'created_edited' => 'créé/édité', + 'create_report' => 'Créer un rapport', + 'critical_upgrade' => 'Mise à jour critique', + 'csv' => 'CSV', + 'currently_active' => 'Actuellement Actif', + 'currently_inactive' => 'Actuellement Inactif', + 'custom_forms_insufficient_permissions' => 'Vous n\'avez pas les autorisations suffisantes pour modifier les champs personnalisés suivants.', + 'daily' => 'Journalier', + 'dashboard' => 'Tableau de bord', + 'database' => 'base de données', + 'date_time' => 'Date et heure', + 'date_added' => 'Date d\'ajout', + 'date_modified' => 'Date de modification', + 'days_of_the_week' => 'Jours de la semaine', + 'db_out_of_sync' => 'Version de base de donnée incorrecte.', + 'deleted' => 'effacé', + 'delete_action' => 'Effacer', + 'delete_all' => 'Supprimer tous les rapports', + 'delete_badge' => 'Supprimer Badge', + 'demo' => 'Demonstration', + 'description' => 'description', + 'disabled' => 'Désactivé', + 'divider_start_field' => 'Démarrer Diviseur', + 'divider_end_field' => 'Fin Diviseur', + 'divider_class' => 'div class', + 'download_reports' => 'Télécharger les rapports', + 'dropdown_choices' => 'Menue déroulant', + 'edited' => 'RÉVISÉ', + 'edited_by' => 'Modifié par', + 'edit_action' => 'Modifier', + 'edit_log' => 'Voir les changements', + 'email' => 'Courrier électronique', + 'entire_collective' => 'Tout le collectif', + 'error_geocoding' => 'Erreur de géocodage! Erreur HTTP', + 'error_imap' => 'La Library PHP IMAP n\'est pas installée', + 'error_twitter' => 'Certificat incorrect', + 'error_msg' => 'Erreur', + 'error_post_incident' => 'Erreur, impossible d\'envoyer l\'incident', + 'every_six_hours' => 'Toutes les 6 heures', + 'every_twelve_hours' => 'Toutes les 12 heures', + 'experimental' => 'Expérimental', + 'faqs' => 'FAQ', + 'feed' => 'fil', + 'feedback' => 'Réactions', + 'feeds' => 'fils', + 'field_choices' => 'Liste des choix', + 'field_default' => 'Valeur par défaut', + 'field_datatype' => 'Type de données', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Marqueur', + 'field_datatype_numeric' => 'Numérique', + 'field_datatype_text' => 'Texte Libre', + 'field_height' => 'Hauteur (nombre de lighes)', + 'field_hidden' => 'champ masqué', + 'field_maxlength' => 'Nombre maximal de caractères', + 'field_name' => 'Nom du champ', + 'field_toggle' => 'basculer', + 'field_toggle_no' => 'Non', + 'field_toggle_yes_close' => 'Oui, Fermé par défaut', + 'field_toggle_yes_open' => 'Oui, Ouvert par défaut', + 'file_not_found_upload' => 'Impossible de trouver le fichier transmis', + 'file_open_error' => 'Impossible de lire le fichier', + 'form_not_exists' => 'Ce formulaire n\'existe pas!', + 'forum' => 'Forum', + 'free_text_field' => 'Texte libre', + 'date_field' => 'Champs Date', + 'radio_field' => 'Champs Boutons Radio', + 'checkbox_field' => 'Champs Cases à cocher ', + 'dropdown_field' => 'champ déroulant', + 'from' => 'De', + 'from_date' => 'De', + 'geonames_timeout' => 'Temps dépassé pour Geonames', + 'get_help' => 'Demander de l\'aide', + 'get_more_themes' => 'Obtenir plus de thèmes', + 'get_more_plugins' => 'Obtenez plus de plugin', + 'header_actions' => 'Actions', + 'header_add_edit' => 'Ajouter/Modifier', + 'header_email' => 'Courrier électronique', + 'header_manage_users' => 'Administration des utilisateurs', + 'header_role' => 'Rôle', + 'header_user' => 'Utilisateur', + 'help' => 'Aide', + 'hourly' => 'toutes les heures', + 'incident_feed' => 'Fil d\'incidents pour:', + 'installer_info' => 'Le dossier d\'installation existe toujours. Supprimez le dossier d\'installation. Il s\'agit d\'une vulnérabilité de sécurité potentielle.', + 'instance' => 'Deployment', + 'instances' => 'Deployments', + 'instance_details' => 'Détails de l\'deployment', + 'invalid_parameter' => 'Paramètre non valide', + 'ip_address' => 'Addresse IP', + 'is_date' => 'Est-ce un champ Date?', + 'ispublic_visible' => 'Qui peux voir les réponses', + 'ispublic_submit' => 'Qui peut soumettre des réponses', + 'keyword' => 'mot-clé', + 'keywords' => 'mot-clé', + 'label_email' => 'Addresse email:', + 'label_full_name' => 'Nom complet:', + 'label_password' => 'Mot de passe:', + 'label_role' => 'Rôle:', + 'label_username' => 'Nom d\'utilisateur:', + 'layers' => 'Couches', + 'login_role' => 'Moderateur', + 'logout' => 'Se déconnecter', + 'logs' => 'Journaux', + 'manage' => 'Administrer', + 'manage_roles' => 'Gérer les rôles et les autorisations', + 'manage_users' => 'Administrer les utilisateurs', + 'manage_users_edit' => 'Ajouter / Modifier les utilisateurs', + 'manage_public_listing' => 'Gérer votre Liste publique', + 'mark_as' => 'Marquer Comme', + 'marked_as_not_spam' => 'spécifié comme n\'étant pas du spam', + 'marked_as_spam' => 'spécifié comme étant du spam', + 'match_no_documents' => 'pas de documents correspondants', + 'message' => 'Message', + 'messages' => 'Messages', + 'messages_laconica' => 'Messages Laconica', + 'messages_twitter' => 'Messages Twitter', + 'message_sent' => 'Votre message a bien été envoyé!', + 'mhi' => 'MHI', + 'minute' => 'Minute', + 'minutes' => 'Minutes', + 'missing_parameter' => 'Paramètre manquant', + 'moderator' => 'Moderateur', + 'modified' => 'modifié', + 'modify_timezone' => 'Modifier les paramètres de fuseau horaire', + 'move_down_action' => 'déplacer vers le bas', + 'move_up_action' => 'déplacer vers le haut', + 'multiple_hosted_instances' => 'Instances Multiples Hébergées', + 'my_alerts' => 'Mes Alertes', + 'my_checkins' => 'Mes vérifications', + 'my_profile' => 'Mon profil', + 'my_reports' => 'Mes Rapports', + 'my_votes' => ' votes émis', + 'my_votes_up' => 'Positif', + 'my_votes_down' => 'Negatif', + 'name' => 'Nom', + 'new_alert' => 'Créer une nouvelle alerte', + 'new_private' => 'Créer un nouveau message', + 'new_password' => 'Nouveau mot de passe', + 'no' => 'Non', + 'none_category_explanation' => 'Ceci est une catégorie spéciale qui ne sera pas affichée dans le formulaire de soumission de rapports pour les utilisateurs. C\'est utilisé pour détenir des rapports laissés sans catégories (rapports non catégorisés) suite à une suppression de catégorie.', + 'notification' => 'Notification', + 'not_case_sensitive' => 'Majuscules/minuscules indifferenciées.', + 'not_found' => 'Pas trouvé', + 'no_data' => 'Aucune données. Il n\'y a aucun résultat à montrer.', + 'no_error' => 'Pas d\'erreur', + 'no_result_display_msg' => 'Pas de résultats!', + 'of' => 'de', + 'on_specific_count' => 'Au comte spécifique', + 'openids' => 'OpenID', + 'page' => 'page', + 'pages' => 'pages', + 'page_not_found' => 'Page non trouvée', + 'page_not_found_message_with_contact' => 'Désolé, la page que vous voulez voir n\'est pas ici.

Avez vous suivi un lien depuis notre site ?
Si vous avez atteint cette page depuis un autre endrtoit de notre site, merci de nous contacter pour que nous puissions corriger cette erreur.

Avez vous suivi un lien depuis un autre site ?
Des liens depuis un autre site peuvent être périmés ou mal rédigés. Indiquez nous de quel site vous arrivez,, et nous pourrons essayer de contacter l\'autre site de manière à régler cette question.

Avez vous directement tapé l\'URL?
Vous pourriez avoir écrit cette URL de manière incorrecte. Vérifiez que la casse, l\'orthographe, etc... sont exacts.

', + 'page_not_found_message' => 'Désolé, la page que vous voulez voir n\'est pas ici.', + 'parameters_used' => 'Parametres utilisées', + 'password' => 'Mot de passe', + 'password_reset' => 'Mot de passe réinitialisé', + 'password_reset_message_line_1' => 'Cher', + 'password_reset_message_line_2' => 'Nous avons reçu une demande de réinitialisation de mot de passe pour', + 'password_reset_message_line_3' => 'Pour changer votre mot de passe, cliquez sur le lien ci-dessous (ou copiez-le dans votre navigateur).', + 'password_reset_message_line_4' => 'Comme demandé, votre mot de passe a été réinitialisé. Votre nouvel identifiant est', + 'password_reset_subject' => 'Réinitialisation de mot de passe Ushahidi', + 'phone' => 'Téléphone', + 'please_select' => 'Veuillez sélectionner', + 'pm' => 'PM', + 'post_method_not_used' => 'Les données n\'ont pas été envoyées par POST', + 'preview' => 'Aperçu', + 'private_message' => 'Message', + 'private_messages' => 'Message Privé', + 'private_sent' => 'Message Privé envoyé', + 'private_subject' => 'Sujet', + 'private_to' => 'à', + 'public_listing' => 'Liste Publique', + 'qualifiers' => 'Qualifications', + 'read' => 'lu(e)', + 'relevance' => 'Pertinance', + 'report_title' => 'Titre du Rapport', + 'report_date' => 'Date d\'indication', + 'reporters' => 'Rapporteurs', + 'reporter_levels' => 'Niveaux de rapporteurs', + 'reports' => 'Rapports', + 'reputation' => 'Score de réputation', + 'required' => 'Obligatoire', + 'reset' => 'Remise à zéro', + 'response' => 'Réponse', + 'results' => 'Resultats', + 'revoke' => 'retirer', + 'riverid_exists_admin' => 'Ce courriel a déjà un compte géré par CrowdmapID. L\\\'utilisateur devra utiliser son mot de passe Crowdmap pour se connecter.', + 'save_settings' => 'Enregistrer les paramètres', + 'search' => 'Recherche', + 'search_reports' => 'rechercher des Rapports', + 'searching_for' => 'recherche de', + 'security_info_encryption_key' => 'La clé de chiffrement est toujours définie à la valeur par défaut. Ce n\'est pas sûr et doit être changée.', + 'security_info_https' => 'Ce site est servis sur HTTP. Cela devrait être réglé sur HTTPS pour une sécurité accrue.', + 'security_info_instructions' => 'Les instructions sont disponibles sur le wiki:', + 'select_download_format' => 'Sélectionnez le format de téléchargement des rapport souhaité : -', + 'select_field_type' => '--- Choisissez un type de champ ---', + 'select_item' => 'Sélectionnez un élément', + 'select_trigger_before_response' => 'Vous devez sélectionner un déclencheur avant de pouvoir sélectionner une réponse.', + 'select_trigger_before_qualifiers' => 'Vous devez sélectionner un déclencheur avant de pouvoir définir une qualification.', + 'sender' => 'Envoyeur', + 'send_to' => 'Envoyer à', + 'sent_from_website' => 'Ce message a été envoyé de votre site web à ', + 'server_time' => 'Temps serveur', + 'settings' => 'Réglages', + 'showing_page' => 'Page', + 'showing_results' => 'Résultats', + 'shown' => 'montré', + 'special_category' => 'Catégorie spéciale', + 'special_category_explanation' => 'Ce ci est une catégorie spéciale qui ne sera pas affichée sur le formulaire de soumission de rapport pour les utilisateurs. Elle est utilisée en conjonction avec le "Reporters de confiance" caractéristique.', + 'specific_area' => 'zone spécifique', + 'state' => 'Gouvernera', + 'statistics' => 'Statistiques', + 'stats' => 'Statistiques', + 'stats_collection_error' => 'Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!', + 'stats_collection_error_short' => 'Erreur de récuperation de statistiques!', + 'specific_days' => 'jours spécifiques', + 'subject' => 'Sujet', + 'superadmin_role' => 'Super Administrateur', + 'task_performed' => 'Tâche accomplie', + 'text_field' => 'Champ texte', + 'theme_name' => 'Nom', + 'title' => 'Administration des utilisateurs', + 'timeout' => 'Erreur : temps expiré', + 'to' => 'à', + 'total_records' => 'Nombre d\'enregistrements', + 'to_date' => 'à', + 'translate_reports' => 'Traduire les rapports', + 'trigger' => 'déclencheur', + 'triggering_user' => 'déclenchement utilisateur', + 'triggers' => 'déclencheurs', + 'unapproved' => 'non approuvé', + 'unknown' => 'Inconnu(e)', + 'unknown_failure' => 'échec inconnu', + 'unread' => 'non lu(e)', + 'unsubscribe_message' => 'Vous ne recevrez plus des alertes de', + 'update_link' => ' Cliquer ici pour mettre à jour', + 'upgrade_ushahidi' => 'Mettre Ushahidi à jour', + 'upgrade_ushahidi_status' => 'Mettre à jour le statut d\'Ushahidi', + 'upload_reports' => 'Téléchargez Rapports', + 'user' => 'utilisateur', + 'users' => 'Utilisateurs', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Vérifié / non vérifié', + 'verify_unverify' => 'Vérifié / Non Vérifié', + 'version' => 'Version', + 'version_available' => ' is disponible.', + 'video_encoding' => 'Encodage vidéo', + 'view_private' => 'Messages Privés', + 'view_site' => 'Voir le site', + 'view_report' => 'Voir Rapport', + 'welcome' => 'Bienvenue, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Oui', + 'your_search_for' => 'Votre recherche de', + 'delete_all_instructions' => 'Appuyer sur ce bouton dessous effacera TOUS les rapports de la base de données. Vous devez utiliser cette opération avec précaution car elle ne peut être annulée.', + 'delete_all_backup' => 'Nous vous recomandons de sauvegarder votre base de donnée avec de procéder', + 'delete_all_button' => 'Je suis sûr de vouloir supprimer %s rapports de votre base de données', + 'delete_all_confirm' => 'Etres vous sûr que vous voulez supprimer tous les raports ?', + 'delete_all_no_reports' => 'Il n\'y as pas de rapport à supprimer.', + 'user_no_logins' => 'Nombre de login', + 'user_last_login' => 'Dernier login', + 'user_confirmed_account' => 'Compte confirmé ?', +); diff --git a/application/i18n/fr_FR/ui_main.php b/application/i18n/fr_FR/ui_main.php new file mode 100755 index 0000000000..d22fa8f0c5 --- /dev/null +++ b/application/i18n/fr_FR/ui_main.php @@ -0,0 +1,621 @@ + 'à propos', + 'access' => 'accès', + 'access_limits' => 'Limites d\'accès', + 'account_name' => 'Nom du compte', + 'actions' => 'Actions', + 'action_confirm' => 'Cette action ne peut pas être annulée. Êtes-vous sûr de vouloir continuer?', + 'activate' => 'activer', + 'active' => 'actif', + 'add' => 'ajouter', + 'added_by' => 'ajouté par', + 'additional_data' => 'Données supplémentaires', + 'additional_reports' => 'Rapports supplémentaires', + 'add_edit' => 'Ajouter / Modifier', + 'add_field' => 'Ajouter un champ', + 'add_language' => 'Ajouter une langue', + 'add_new' => 'Ajouter un nouveau', + 'add_new_category' => 'Ajouter une nouvelle catégorie', + 'add_translation' => 'Ajouter Traduction', + 'admin' => 'Administration', + 'alerts' => 'Recevoir des mises à jour', + 'alerts_alert_me' => 'Alerte-moi si un rapport est déposé dans ou autour de:', + 'alerts_btn_send' => 'Envoyer', + 'alerts_email' => 'Adresse Email:', + 'alerts_enter_email' => 'entrer adresse Email', + 'alerts_enter_mobile' => 'entrer numéro de téléphone mobile avec le code du pays', + 'alerts_get' => 'Obtenez des Alertes', + 'alert_has_been' => 'L\'alerte a été', + 'alerts_mobile_phone' => 'Téléphone mobile:', + 'alerts_place_spot' => 'Ou, choisissez un endroit sur la carte ci-dessous et nous allons vous alerter lorsque un rapport est présenté à l\'intérieur de 20 kilomètres.', + 'alerts_place_spot2' => 'Si vous ne pouvez trouver l’emplacement recherché, bien vouloir cliquer sur la carte pour le repérer', + 'alerts_rss' => 'Fils RSS (copier l\'URL ci-dessous)', + 'alerts_select_city' => 'Choisissez une ville', + 'alerts_step1_select_city' => '1ère étape: Choisissez votre ville ou lieu:', + 'alerts_step2_send_alerts' => '2ème étape: Envoyer des alertes à mon:', + 'alerts_step3_select_catgories' => '3ème étape (Facultative): Choisir catégories', + 'alert_confirm_previous' => 'Confirmer une demande précédente d\'alerte', + 'alert_saved' => 'Votre alerte a été sauvegardée!', + 'all' => 'Tout', + 'allowed' => 'Permis', + 'allowed_tags' => ' Les balises HTML autorisées sont :"% s".', + 'allowed_iframes' => 'Les iframes ne sont autorisés qu\'à partir de % s.', + 'all_categories' => 'Toutes catégories', + 'all_time' => 'tous Les Temps', + 'and' => 'et', + 'api' => 'API', + 'approve' => 'Approuve', + 'approved' => 'Approuvé', + 'approved_reports' => 'Rapports approuvés', + 'approve_this_report' => 'Approuver ce rapport', + 'approximate' => 'approximatif', + 'archive' => 'Archives', + 'archived' => 'Archivé', + 'ascending' => 'Ascendant', + 'at' => 'à', + 'author' => 'auteur', + 'auto_checkin' => 'Vérification Auto', + 'avg_reports_per_day' => 'Moyenne des Rapports par jour', + 'awaiting_approval' => 'En attente d\'approbation', + 'awaiting_verification' => 'En attente de vérification', + 'badge' => 'badge', + 'badges' => 'badges', + 'badge_image' => 'image Badge', + 'badge_image_upload_your_own' => 'Ou vous pouvez télécharger votre propre image de badge à la place.', + 'badge_pack' => 'pack Badge', + 'badge_select' => 'Sélectionnez un badge', + 'blog' => 'Blog', + 'browse_profiles' => 'Parcourir les profils', + 'cancel' => 'Annuler', + 'categories' => 'Catégories', + 'category' => 'Catégorie', + 'category_filter' => 'Filtre des catégories', + 'category_has_been' => 'La catégorie a été', + 'category_name' => 'Nom de la catégorie', + 'change_date_range' => 'Modifier la période visée', + 'change_password' => 'changer le mot de passe', + 'change_picture' => 'Changer ma photo', + 'choose' => 'Choisissez un', + 'choose_data_points' => 'Choisissez les données à télécharger', + 'choose_date_range' => 'Ou choisissez votre propre période', + 'choose_field_type' => 'Choisissez le type de champ', + 'cleanurl' => 'URL propre', + 'clear' => 'Effacer', + 'clear_map' => 'Effacer la carte', + 'close' => 'Fermer', + 'clusters' => 'Groupes', + 'color' => 'couleur', + 'comment' => 'commenter', + 'comments' => 'Commentaires', + 'comment_details' => 'Détails des commentaires', + 'configuration_saved' => 'Vos paramètres ont été sauvegardés!', + 'configure' => 'configurer', + 'confirm_email_successful' => 'Vous avez réussi à confirmer votre adresse e-mail! S\'il vous plaît connecter ci-dessous.', + 'confirm_email_successful_and_approval' => 'Vous avez réussi à confirmer votre adresse e-mail! Un administrateur doit approuver votre compte avant de vous logger', + 'confirm_email_failed' => 'Confirmation par e-mail échoué! Vous pouvez demander un nouvel e-mail ci-dessous.', + 'contact' => 'Contactez-nous', + 'contact_code' => 'code de sécurité', + 'contact_email' => 'Votre adresse e-mail', + 'contact_message' => 'Message', + 'contact_message_has_send' => 'Votre Message a été envoyé', + 'contact_name' => 'Votre Nom', + 'contact_phone' => 'Votre Numéro de téléphone', + 'contact_send' => 'Envoyer Message', + 'contact_subject' => 'Sujet du message', + 'copyright' => 'Copyright © 2010 Ushahidi.com. Tous droits réservés.', + 'create' => 'Créer', + 'create_edit' => 'Créer/éditer', + 'create_new' => 'Créer nouveau', + 'create_new_password' => 'Créer un nouveau mot de passe', + 'create_report' => 'Créer un rapport', + 'credibility' => 'Crédibilité', + 'current_password' => 'Mot de passe actuel', + 'custom_fields' => 'Champs personnalisés', + 'data' => 'Information', + 'date' => 'Date', + 'date_format' => '(mm/jj/yyyy)', + 'date_time' => 'Date & Heure', + 'day' => 'Jour', + 'deactivate' => 'Désactiver', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Effacer', + 'deleted' => 'Supprimé', + 'deletes' => 'Supprimés', + 'delete_disabled' => 'Supprimer désactivé', + 'delete_last' => 'Supprimer la dernière entrée', + 'delete_report' => 'supprimer ce rapport', + 'delete_selected' => 'Supprimer la sélection', + 'delete_spam' => 'supprimer SPAM', + 'demo' => 'Démo', + 'description' => 'Description', + 'descending' => 'Descendant', + 'detailed_location_example' => 'Exemple: Avenue du Martyr, Bangui', + 'details' => 'Détails', + 'direct_report' => 'Rapport direct', + 'disabled' => 'Inactif', + 'disapprove' => 'Non approuvé', + 'download_reports' => 'Téléchargez les rapports', + 'download' => 'Télécharger', + 'edit' => 'Modifier', + 'edit_form_fields' => 'Editer les champs du formulaire', + 'edit_report' => 'Modifier la rapport', + 'email' => 'Courrier électronique', + 'email_address' => 'Adresse e-mail', + 'email_configuration' => 'Configuration Serveur Email', + 'email_server_host' => 'Host Serveur Email', + 'email_server_password' => 'Mot de passe Serveur Email', + 'email_server_port' => 'Port Serveur Email', + 'email_server_ssl_support' => 'Support SSl Serveur Email', + 'email_server_type' => 'Type Serveur Email', + 'email_server_username' => 'nom d\'utilisateur Serveur Email', + 'email_settings_comment_0' => 'donc vos réglages doivent être associés à cette adresse e-mail', + 'email_settings_comment_00' => 'Afin de recevoir des informations par e-mail,veuillez entrer vos paramètres de compte email ci-dessous. S\'il vous plaît noter que les courriels seront reçus à votre', + 'email_settings_comment_1' => 'Certains serveurs nécessitent une adresse email complète', + 'email_settings_comment_2' => 'Mot de passe du compte de messagerie', + 'email_settings_comment_3' => 'ports habituels: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Exemples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Exemples: pop3, imap', + 'email_settings_comment_6' => 'Activer ou désactiver les connexions SSL', + 'empty' => '---VIDE---', + 'end_point' => 'à', + 'error' => 'Erreur!', + 'example' => 'Exemple', + 'example_country' => 'Kenya', + 'external_apps' => 'Applications Externes', + 'external_video_link' => 'Lien vidéo externe', + 'facebook' => 'Facebook', + 'feed' => 'Fil', + 'feedback' => 'Rétroaction', + 'feedback_reports' => 'Donnez-nous svp un retour de votre expérience en envoyant un email à', + 'feeds' => 'Fils', + 'feed_has_been' => 'Le fil a été', + 'feed_items' => 'Eléments du flux', + 'feed_name' => 'Nom du fil', + 'feed_url' => 'URL du fil', + 'field_unused' => 'Champ non-utilisé', + 'file' => 'Fichier', + 'file_over_max_allowed' => 'Votre fichier dépasse la taille limite autorisée.', + 'filters' => 'Filtres', + 'filter_reports' => 'Filtrage des rapports', + 'filter_reports_by' => 'Filtrage des rapports par', + 'filter_reports_contain' => 'Filtrage des rapports contenant', + 'find' => 'Chercher', + 'find_location' => 'Trouver l’emplacement', + 'first_name' => 'Prénom', + 'force_run_scheduler' => 'Forcer le lancement du Planifieur', + 'forgot_password' => 'Mot de passe oublié ?', + 'form' => 'Formulaire', + 'forms' => 'Formulaires', + 'form_description' => 'Description du formulaire', + 'form_edit' => 'Editer ce formulaire', + 'form_has_been' => 'Le formulaire a été', + 'form_title' => 'Titre du formulaire', + 'from' => 'À partir de', + 'full_name' => 'Nom complet', + 'geolocation_available' => 'Géolocalisation disponible', + 'geometry_color' => 'Couleur', + 'geometry_comments' => 'Commentaires', + 'geometry_label' => 'Libellé', + 'geometry_strokewidth' => 'Largeur du trait', + 'go' => 'Go', + 'hashtag' => 'Hashtag', + 'has_been' => 'A été', + 'help' => 'Comment aider?', + 'hidden' => 'Masqué', + 'hide' => 'Cacher', + 'hide_this_message' => 'Masquer ce message', + 'home' => 'Accueil', + 'how_to_report' => 'COMMENT TEMOIGNER', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Utilisé pour que les autres utilisateurs puissent vous identifier sur lesite', + 'image' => 'Image', + 'images' => 'Images', + 'image_icon' => 'Image/Icône', + 'inactive' => 'Inactif', + 'inbox' => 'Boîte de réception', + 'incident' => 'Incident', + 'incidents_nearby' => 'Incidents à proximité', + 'incident_location' => 'Lieu de l\'incident', + 'include' => 'Inclure', + 'include_categories' => 'Inclure les catégories', + 'include_custom_fields' => 'Inclure les champs personnalisés', + 'include_description' => 'Inclure une description', + 'include_detail' => 'Inclure autant de détails que possible', + 'include_latitude' => 'Inclure la latitude', + 'include_location_information' => 'Inclure des informations sur l’emplacement', + 'include_longitude' => 'Inclure la longitude', + 'include_personal_info' => 'Inclure les données personelles', + 'incoming_media' => 'les médias entrants', + 'information_evaluation' => 'Évaluation de l\'information', + 'input_location' => 'Entrez votre position précise', + 'insufficient_role' => 'Votre compte n\'a pas la permission pour pouvoir vous identifier entièrement. Veuillez contacter l\'administrateur.', + 'in_response_to' => 'en réponse à', + 'ip_address' => 'Adresse IP', + 'is_this_your_profile' => 'Est-ce votre profil?', + 'item' => 'élément', + 'items' => 'éléments', + 'item_details' => 'item_details', + 'item_title' => 'Titre de l\'élément', + 'key' => 'Clé', + 'keywords' => 'Mot-clés', + 'kml_kmz_file' => 'Ficihier KMZ/KML', + 'kml_kmz_upload' => 'Téléverser le fichier KMZ/KML', + 'kml_url' => 'URL KML', + 'laconica' => 'Laconica', + 'language' => 'Langue', + 'last' => 'Dernier', + 'last_month' => 'Dernier Mois', + 'last_name' => 'Nom de famille', + 'last_year' => 'Dernière Année', + 'latitude' => 'Latitude', + 'layers' => 'Couches', + 'layers_filter' => 'd\'autres couches', + 'layer_has_been' => 'La couche a été', + 'layer_name' => 'Nom de la couche', + 'layer_url' => 'URL de la couche', + 'leave_a_comment' => 'Laisser un commentaire', + 'less_information' => 'Moins d\'informations', + 'level' => 'Niveau', + 'level_has_been' => 'Ce niveau a été', + 'level_name' => 'Nom du niveau', + 'limited' => 'Limité', + 'link' => 'Lien', + 'list' => 'Liste', + 'loading_reports' => 'Rapports de chargement', + 'location' => 'Lieu', + 'locations' => 'Emplacement', + 'location_example' => 'Ville, état et/ou pays', + 'login' => 'Se connecter', + 'login_account_creation_successful' => 'Compte créé avec succès. Vous pouvez maintenant vous connecter.', + 'login_confirmation_sent' => 'Une confirmation vous a été envoyé sur votre adresse e-mail.', + 'login_approval_required' => 'Compte créé. Votre compte doit être approuvé par un administrateur avant de pouvoir vous logger.', + 'login_email_doesnt_exist' => 'Cette adresse email n\'existe pas. Merci d\'essayer avec une autre ou de créer un compte.', + 'login_select_openid' => 'Veuillez cliquer sur votre fournisseur de compte', + 'login_with' => 'Se connecter avec', + 'login_userpass' => 'E-mail et mot de passe', + 'login_openid' => 'OpenID', + 'login_signup' => 'S\'enregistrer. ', + 'login_signup_click' => 'Créer un compte.', + 'login_signup_confirmation_message' => 'Merci de vous être enregistré à %1$s. Pour confirmer votre adresse e-mail, suivez s\'il vous plait l\'adresse URL: %2$s', + 'login_signup_confirmation_subject' => 'Confirmation d\'inscription', + 'login_signup_admin_approval_message' => 'Un nouvel utilisateur s\'est enregistré à %1$s. Pour approuver sont enregistrement suivez s\'il vous plait l\'URL suivante: %2$s', + 'login_signup_admin_approval_subject' => 'Nouvel Utilisateur Approuvé', + 'login_signup_approval_message' => 'Votre compte utilisateur à été approuvé pour %1$s. Pour vous logger allez à l\'URL suivante: %2$s', + 'login_signup_approval_subject' => 'Compte utilisateur approuvé', + 'login_signup_text' => 'Créer maintenant un compte pour avoir accès à plus de fonctionnalités sur le site.', + 'longitude' => 'Longitude', + 'map' => 'Carte', + 'mark_read' => 'Marquer comme lu', + 'mark_unread' => 'Marquer comme non-lu', + 'maximum_filesize' => 'Taille maximale', + 'media' => 'Médias', + 'media_filter' => 'Filtre Des Médias', + 'members' => 'Membres', + 'manage_your_account' => 'Gérer votre compte', + 'message' => 'Message', + 'messages' => 'Messages', + 'message_details' => 'Détails du Message', + 'message_non_numeric_source' => 'Message provenant d\'une source non numérique:', + 'mobile' => 'Mobile', + 'modify' => 'Modifier', + 'modify_date' => 'Changer Date', + 'month' => 'mois', + 'more' => 'Plus', + 'more_information' => 'Plus d\'informations', + 'multi_country_instance' => 'Est-ce que ce déploiement Ushahidi s\\\'etend sur plusieurs pays', + 'must_confirm_email_address' => 'Vous devez confirmer votre adresse e-mail pour pouvoir accéder à ce déploiement. Si vous avez perdu votre e-mail de confirmation, vous pouvez en demander un nouveau ci-dessous.', + 'name' => 'Nom', + 'nearby_report' => 'Rapport à proximité', + 'new' => 'Nouveau', + 'news' => 'Nouvelles', + 'news_feeds' => 'Flux de Nouvelles', + 'news_source' => 'Source des nouvelles', + 'new_category' => 'Nouvelle catégorie', + 'new_password' => 'Nouveau mot de passe', + 'new_report' => 'Nouveau rapport', + 'next' => 'Suivant', + 'no' => 'Non', + 'no_checkins' => 'Pas de coches à afficher.', + 'no_data' => 'Aucune donnée', + 'none' => 'Aucun', + 'notices' => 'Notices', + 'not_approved' => 'Non approuvé', + 'not_approved_singular' => 'Non approuvé', + 'not_selected' => '---Non sélectionné---', + 'not_spam' => 'Pas un courrier indésirable', + 'not_specified' => 'Non spécifié', + 'no_reports' => 'Il n\'y a aucun rapport', + 'no_results' => 'Aucun résultat', + 'off' => 'Off', + 'official_news' => 'Nouvelles officielles et actualité', + 'on' => 'On', + 'option' => 'Option', + 'optional' => 'Optionnel', + 'options' => 'Options', + 'organization' => 'Organisation', + 'organizations' => 'Organisations', + 'organization_description' => 'Description de l\'organisation', + 'organization_email' => 'Adresse e-mail de l\'organisation', + 'organization_has_been' => 'L\'organisation a été', + 'organization_name' => 'Nom de l\'organisation', + 'organization_phone_1' => 'Téléphone de l\'organisation n°1', + 'organization_phone_2' => 'Téléphone de l\'organisation n°2', + 'organization_website' => 'Site web de l\'organisation', + 'original' => 'Original', + 'original_description' => 'Description de l\'orginal', + 'original_title' => 'Titre de l\'orginal', + 'other_ushahidi_instances' => 'Autres déploiements', + 'outbox' => 'Boîte d\'envoi', + 'outgoing' => 'Sortant', + 'page' => 'Page', + 'pages' => 'Pages', + 'page_description' => 'Description de la page', + 'page_has_been' => 'La page a été', + 'page_tab_name' => 'Nom de l\'onglet de la page', + 'page_title' => 'Titre de la page', + 'parent_category' => 'Catégorie parente', + 'password' => 'Mot de passe', + 'password_again' => 'Vérifier le mot de passe', + 'password_changed_successfully' => 'Le mot de passe a été changé avec succès! Veuillez vous connecter ci-dessous.', + 'password_forgot' => 'Mot de passe oublié ?', + 'password_reset_confirm' => 'Vérifiez vos e-mail pour votre nouveau mot de passe.', + 'password_save' => 'Rester connecté sur cet ordinateur?', + 'past_month' => 'Mois précédent', + 'past_year' => 'Année précédente', + 'pending' => 'En attente', + 'per' => 'par', + 'personal_information' => 'Renseignements personnels', + 'phone' => 'Téléphone', + 'photos' => 'Photos', + 'pictures' => 'Photos', + 'pictures_and_videos' => 'Photos et vidéos', + 'pinpoint_location' => 'Rechercher l’emplacement en utilisant un nom de lieu ou les coordonnées de latitude et de longitude(format: 38,19, 85,61), ou cliquer sur la carte pour trouver l’emplacement', + 'play' => 'Jouer', + 'please_note' => 'Bien vouloir prendre note', + 'plugins' => 'Modules', + 'plugin_url' => 'Site web du module', + 'public_profile' => 'Profil public', + 'public_profile_url' => 'URL publique du profil', + 'preview' => 'Aperçu', + 'preview_item' => 'Aperçu de l\'élément', + 'preview_message' => 'Aperçu du message', + 'previous' => 'Précédent', + 'private' => 'Privé', + 'profile_color' => 'Couleur du profil', + 'profile_saved' => 'Votre profil a été sauvé', + 'quick_stats' => 'Statistiques en un coup d’oeil', + 'rating' => 'Evaluation', + 'read' => 'Lire', + 'receive' => 'Reçu', + 'receive_from' => 'Reçu de', + 'receive_notifications' => 'Notifications reçues', + 'recent_reports' => 'Rapports récents', + 'refresh_news_feeds' => 'Rafraichir le flux de nouvelles', + 'registered_email' => 'E-mail enregistré', + 'remove' => 'Supprimer', + 'reply' => 'Répondre', + 'report' => 'Signaler', + 'reports_listed' => 'Signalements (à partir de la carte, listés dans l\'ordre chronologique)', + 'reporter' => 'Signaleur', + 'reporters' => 'Signaleurs', + 'reporter_date' => 'Date de signalement', + 'reporter_email' => 'E-mail du signaleur', + 'reporter_first_name' => 'Prénom du signaleur', + 'reporter_has_been' => 'Le signaleur a été', + 'reporter_ip' => 'Adresse IP du signaleur', + 'reporter_last_name' => 'Nom de famille du signaleur', + 'reporter_level' => 'Niveau du signaleur', + 'reporter_levels' => 'Niveaux du signaleur', + 'reporter_phone' => 'Téléphone du signaleur', + 'reports' => 'Rapports', + 'reports_btn_browse' => 'Rechercher', + 'reports_btn_submit' => 'Soumettre', + 'reports_by_this_user' => 'Signalement relatifs à cet utilisateur', + 'reports_categories' => 'Catégories', + 'reports_count' => '%d signalements', + 'reports_date' => 'date', + 'reports_description' => 'Description', + 'reports_download_csv' => 'Les rapports seront téléchargés en format CSV', + 'reports_email' => 'E-mail', + 'reports_features' => 'Fonctionnalités', + 'reports_find_location' => 'Trouver un Lieu près de chez vous', + 'reports_first' => 'Prénom', + 'reports_last' => 'Nom de famille', + 'reports_location_name' => 'Nom de votre lieu', + 'reports_news' => 'Lien de sources de presse', + 'reports_optional' => 'Informations Facultatives', + 'reports_photos' => 'Transférer les Photos', + 'reports_return' => 'Retourner à la page des signalements', + 'reports_select_city' => 'Choisir une Ville', + 'reports_submitted' => 'Votre signalement a été envoyé à notre équipe pour analyse. Nous vous tiendrons au courant prochainement si nécessaire.', + 'reports_submit_new' => 'Soumettre un Nouveau Rapport', + 'reports_time' => 'Heure', + 'reports_timeline' => 'Chronologie des rapports', + 'reports_title' => 'Titre du Rapport', + 'reports_video' => 'Lien Vidéo', + 'report_an_incident' => 'Déclarer un incident', + 'report_details' => 'Détails du rapport', + 'report_option_1' => 'En envoyant un SMS à', + 'report_option_2' => 'En envoyant un e-mail', + 'report_option_3' => 'En envoyant un tweet avec le hashtag', + 'report_option_4' => 'En remplissant ce formulaire sur notre site', + 'report_option_external_apps' => 'En utilisant un app', + 'report_saved' => 'Votre signalement a été sauvé', + 'report_title' => 'Titre du signalement', + 'request_information' => 'Demander plus d\'informations', + 'request_location' => 'Lieu de la requête', + 'required' => 'Requis', + 'requirements' => 'Exigences', + 'resend_confirm_email' => 'Renvoyer l\'e-mail de confirmation', + 'reset' => 'Réinitialiser', + 'reset_all_filters' => 'Réinitialiser tous les filtres', + 'reset_password' => 'Réinitialiser le mot de passe', + 'retrieve_city_names' => 'Récupérer les noms de villes pour le pays sélectionné', + 'riverid_information' => 'Comptes gérés par le service %s.', + 'riverid_exists_login' => 'Vous avez déjà un compte géré par CrowdmapID. Essayez d\\\'utiliser vos courriel et mot de passe CrowdmapID pour vous connecter.', + 'role' => 'Rôle', + 'rss' => 'RSS', + 'save' => 'Sauvegarder', + 'saved' => 'Sauvé', + 'save_add_new' => 'Sauvegarder et ajouter du nouveau contenu', + 'save_close' => 'Sauvegarder et fermer', + 'save_report' => 'Sauvegarder le rapport', + 'schedule' => 'Planifieur', + 'scheduler' => 'Planifieur', + 'scheduler_day' => 'Jour', + 'scheduler_hour' => 'Heure', + 'scheduler_log' => 'Historique du planifieur', + 'scheduler_minute' => 'Minute', + 'scheduler_weekday' => 'Jour de la semaine', + 'search' => 'Rechercher', + 'search_results' => 'Résultats de la recherche', + 'security_code' => 'Code de sécurité', + 'select_all' => 'Tout sélectionner', + 'select_field_type' => 'Sélectionnez le type de champ', + 'select_form_type' => 'Sélectionnez un type deformulaires', + 'select_in_map' => 'Sélectionnez sur la carte', + 'select_multiple' => 'Sélectionner autant de catégories pertinentes que nécessaire', + 'select_one' => 'Choisissez un élément', + 'select_theme' => 'Sélectionnez le thème', + 'send' => 'Envoyer', + 'send_confirmation' => 'Envoyer la confirmation', + 'sending_to' => 'Envoi à', + 'sent' => 'Envoyé', + 'sent_by' => 'Envoyé par', + 'server_address' => 'Adresse du serveur', + 'server_type' => 'Type de serveur', + 'service' => 'Service', + 'service_username' => 'Nom d\'utilisateur du service', + 'service_user_id' => 'ID de l\'utilisateur du service', + 'share' => 'Partager', + 'shared_data' => 'Données partagées', + 'share_has_been' => 'Le partage a été', + 'sharing' => 'En cours de partage', + 'shorter_map' => 'Carte Plus Courte', + 'show' => 'Voir', + 'show_all' => 'Voir tous', + 'show_messages' => 'Voir les messages', + 'showing_reports_from' => 'Afficher les rapports de %1$s à %2$s', + 'site' => 'Site web', + 'site_email_address' => 'adresse e-mail du site web', + 'site_url' => 'URL du site web', + 'smaller_map' => 'Carte Petite', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Désolé, vous n\'avez aucun badge.', + 'source' => 'Source', + 'source_name' => 'Nom de la source', + 'sort' => 'Trier', + 'sort_by' => 'Trier par', + 'source_url' => 'URL de la source', + 'spam' => 'Courrier indésirable', + 'ssl_support' => 'Support SSL?', + 'start_point' => 'De', + 'step' => 'Etape', + 'submit' => 'Soumettre un événement', + 'submitted_by' => 'Envoyé par %1$s via %2$s', + 'submit_sms' => 'Envoyer par SMS', + 'submit_sms1' => 'Envoyez votre SMS au', + 'submit_sms2' => 'sur votre téléphone', + 'success' => 'Succès!', + 'successfuly_imported' => 'Importé avec succès', + 'surname' => 'Surnom', + 'survey' => 'Sondage', + 'system' => 'Système', + 'taller_map' => 'Carte Plus Grand', + 'tcp_port' => 'Port TCP', + 'themes' => 'Thèmes', + 'theme_default' => 'Thème Ushahidi par défaut', + 'theme_settings' => 'Paramètres du thème', + 'this' => 'Ce', + 'this_day' => 'Aujourd\'hui', + 'this_month' => 'Ce mois-ci', + 'this_week' => 'Cette semaine', + 'this_year' => 'Cette année', + 'this_is_your_profile' => 'Ceci est votre profil.', + 'time' => 'heure', + 'title' => 'Titre', + 'to' => 'Jusqu’à', + 'today' => 'Aujourd\'hui', + 'today_at' => 'Aujourd\'hui à', + 'token' => 'Jeton', + 'total_reports' => 'Nombre de signalements', + 'translated' => 'Traduit', + 'translated_description' => 'Description traduite', + 'translated_title' => 'Titre traduit', + 'translate_to' => 'Traduire en', + 'translation' => 'Traduction', + 'translation_saved' => 'La traduction a été sauvée', + 'trusted' => 'Rapport de fiabilité', + 'type' => 'Genre', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Impossible d\'envoyer l\'e-mail.', + 'uncategorized_reports' => 'Rapports non classés', + 'unread' => 'non lu', + 'unverified' => 'Non vérifié', + 'update_feeds' => 'Mettre à jour les flux', + 'upload' => 'Téléversement', + 'upload_guide' => 'Voir nos guides de téléchargement de rapports', + 'upload_docs_1' => 'Guide de téléversement XML', + 'upload_docs_2' => 'Guide de téléversement CSV', + 'upload_file' => 'Fichier pour téléversement', + 'upload_reports' => 'Charger des rapports', + 'upload_reports_custom_forms' => 'Les colonnes de champs personnalisés doivent avoir leur form_id joint à eux par exemple essai de champ personnalisé, sur le formulaire par défaut, dont l\'id est 1, seront Test-1. Pendant l\'importation de champ personnalisé, faites en sorte que', + 'upload_reports_detail_1' => 'Avec le formulaire ci-dessous, vous pouvez importer des incidents dans le moteur Ushahidi.', + 'upload_reports_detail_2' => 'Les signalements doivent être envoyés au format CSV ou XML.', + 'upload_reports_detail_3' => 'Lorsque l\'incident ID existe déjà dans la base de données, l\'entrée dans le fichier CSV/XML sera ignorée.', + 'upload_reports_detail_4' => 'Doit contenir au moins le titre et la date des incidents', + 'upload_reports_detail_4b' => 'Si l’espace réservé aux indications de latitude et de longitude est vide, l\'emplacement sera géocodé avec Geocoder Google', + 'upload_reports_detail_4c' => 'Si en cours d\'importations d\'info supplémentaires, à savoir information personnelle et/ou champs personnalisés de formulaires', + 'upload_reports_detail_4d' => 'Au moins un des champs sur les informations personnelles (nom, prénom, email) doit être renseigné. Les enregistrements vides ne seront pas importés. ', + 'upload_reports_detail_4e' => 'Les champs avec liste déroulante, boutons radio et case à cocher que vous avez définis correspondent bien aux options fournies pour les champs personnalisés de votre projet', + 'upload_reports_detail_4f' => 'Les options des Cases à cocher sont séparés par une virgule. Par exemple: si votre choix de fruits est «pommes, mangues et raisins, votre sélection doit être: «des pommes, mangues, raisins».', + 'upload_reports_detail_4g' => 'Les valeurs des champs de date sont au format suivant : mm/dd/yyyy - ex : 3rd October 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Un exemple de rapport CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Téléversement réussi', + 'upload_video' => 'Téléverser la vidéo', + 'url' => 'URL', + 'user' => 'Utilisateur', + 'username' => 'Nom d\'utilisateur', + 'ushahidi_admin' => 'Administrateur Ushahidi', + 'verification' => 'Vérification', + 'verified' => 'Vérifié', + 'verified_reports' => 'Rapports vérifiés', + 'verify' => 'Vérifier', + 'verify_this_report' => 'Vérifiez ce rapport', + 'version' => 'Version', + 'via' => 'via', + 'video' => 'Vidéo', + 'view' => 'Voir', + 'views' => 'Affichage', + 'view_all' => 'Voir tous', + 'view_all_feeds' => 'Voir tous les flux', + 'view_all_reports' => 'Voir tous les rapports', + 'view_items' => 'Voir les éléments', + 'view_more' => 'Voir plus', + 'view_public_profile' => 'Voir le profil public', + 'view_report' => 'Voir les signalements', + 'view_reports' => 'Voir les Rapports', + 'view_video' => 'Voir la vidéo', + 'visible' => 'Visible', + 'waiting_approval' => 'En attente d\'approbation', + 'waiting_verification' => 'En attente de vérification', + 'wider_map' => 'Élargie carte', + 'web_form' => 'Formulaire web', + 'web' => 'Web', + 'weight' => 'Largeur', + 'yes' => 'Oui', + 'yesterday' => 'Hier', + 'your_dashboard' => 'Votre tableau de bord', + 'your_file' => 'Votre fichier', + 'zoom_in' => 'Zoom Avant', + 'zoom_out' => 'Zoom Arrière', +); diff --git a/application/i18n/fr_FR/upgrade.php b/application/i18n/fr_FR/upgrade.php new file mode 100755 index 0000000000..5e9c2768b7 --- /dev/null +++ b/application/i18n/fr_FR/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Donnée saisie invalide. Seuls 0 pour non ou 1 pour oui sont acceptés.', + ) , + 'upgrade_automatic' => 'Mise à niveau automatique', + 'upgrade_available' => 'Mises à jour disponibles', + 'upgrade_continue_btn_text' => 'Continuer', + 'upgrade_db_btn_text' => 'Mettre à niveau', + 'upgrade_db_text_1' => 'Je suis donc en train de mettre à niveau votre base de données à partir de la version', + 'upgrade_db_text_2' => 'vers la nouvelle version de la base données', + 'upgrade_db_text_3' => 'Cliquez sur le bouton "Mettre à niveau" et laissez la magie opérer.', + 'upgrade_db_text_4' => 'Si vous voulez faire une sauvegarde de votre base de données, cochez la case suivante.', + 'upgrade_db_text_5' => 'Sauvegarder la base de données avant de mettre à niveau? (Hautement recommandé)', + 'upgrade_db_title' => 'Mise à niveau de la base de donnée d\'Ushahidi', + 'upgrade_db_info' => 'Ushahidi a été mis à jour! Avant de continuer, vous devez mettre à jour votre base de données vers la nouvelle version (%s).', + 'upgrade_db_up_to_date' => 'Votre base données est à jour.', + 'upgrade_failed' => 'Mise à niveau échouée sur certains points', + 'upgrade_manual' => 'Mise à niveau manuelle', + 'upgrade_status' => 'Statut de la mise à niveau de Ushahidi', + 'upgrade_text_1' => 'Les instructions suivantes donnent de plus amples détails sur le processus de mise à niveau de votre déploiement Ushahidi', + 'upgrade_text_2' => '
Télécharger
', + 'upgrade_text_3' => '
- Télécharger la construction la plus récent d\'Ushahidi à partir de', + 'upgrade_text_4' => '
Sauvegarde
- .htaccess, ./applications/config/config.php, ./applications/config/database.php et ./applications/config/auth.php files.
- Au cas où il surviendrait un problème imprévu, il est recommandé d\'effectuer une sauvegarde complète de votre déploiement Ushahidi.
Copiez les fichiers
- Décompressez le fichier zip téléchargé
- En fonction du système sur lequel tourne votre serveur web, utilisez votre outil/mode préféré (ex : Telnet, FTP, SSH) pour vous connecter à votre serveur web et remplacez les contenus de tous vos répertoires par les plus récents issus de votre nouvelle arborescence.
Mise à jour de la base de données
- Premièrement, déterminez la version de votre schéma de base de données en regardant à la valeur db_version dans les paramètres de table ou en repérant les informations de mise à jour d\'Ushahidi en haut de cette page.
- Si vous en êtes à la versions 25, vous avez besoin de mettre à jour de 25 à 26, 26 à 27, 27 à 28 et donc, localement, vers le dernier fichier SQL dans votre répertoire /sql.
- Avec votre gestionnaire de base de données, mettez à jour la base de données en exécutant le fichier upgradex-x.sql approprié.
', + 'upgrade_tables' => 'Etape 3: Rendez-vous dans le dossier sql. Exécutez manuellement les fichier de mise à niveau -.sql en partant de la version actuelle de votre base de données jusqu\'au dernier fichier.', + 'upgrade_text_5' => 'Etape 4: Cliquez sur le bouton "Continuer" pour mettre à niveau les tables nécessaires.', + 'upgrade_text_6' => 'Pour mettre à niveau automatiquement, veuillez cliquer sur le bouton suivant.', + 'upgrade_title_text' => 'Vous êtes actuellement en train d\'utiliser Ushahidi v%1$s avec la version de la base de données %2$d sur %3$s', + 'upgrading' => 'Mise à niveau', + 'upgrade_ftp_text' => 'Pour continuer avec la mise à niveau facile, les informations suivantes sont requises concernant le serveur FTP sur lequel est votre site web.', + 'upgrade_ftp_hostname' => 'Hôte FTP: Exemple: "localhost"', + 'upgrade_ftp_password' => 'Mot de passe FTP:', + 'upgrade_ftp_username' => 'Nom d\'utilisateur FTP:', + 'upgrade_status_info' => 'Vous avez la dernière version d\'Ushahidi.', + 'upgrade_status_info_2' => 'Vous n\'avez pas besoin de mettre à niveau.', + 'upgrade_db_version' => 'Version de la base de données: %d', + 'upgrade_warning_software_version' => 'Attention: La version du logiciel dans version.php et dans la base de données est introuvable.', + 'upgrade_warning_db_version' => 'Attention: La version de la base de donnée dans version.php et dans la base de données est introuvable.', + 'upgrade_database' => 'Base de données:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Téléchargement de la dernière version d\'Ushahidi...', + 'log_file' => 'Fichier historique', + 'successfully_downloaded' => 'Téléchargement terminé. Décompression...', + 'failed_downloading' => 'Echec du téléchargement.', + 'successfully_unpacked' => 'Décompression terminée. Copie des fichiers...', + 'failed_unpacking' => 'Échec de la décompression.', + 'successfully_copied' => 'Copié terminée. Mise à niveau de la base de données...', + 'failed_copying' => 'Echec de la copie des fichiers.', + 'backup_success' => 'Sauvegarde de la base de données et mise à niveau terminée.', + 'backup_failed' => 'Echec de la sauvegarde de la base de données.', + 'dbupgrade_success' => 'Mise à niveau de la base de données terminée.', + 'deleting_files' => 'Suppression des fichiers téléchargés...', + 'upgrade_success' => 'Mise à niveau terminée. Voirle fichier historique', +); diff --git a/application/i18n/ga_IE/alerts.php b/application/i18n/ga_IE/alerts.php new file mode 100644 index 0000000000..8e42a44fee --- /dev/null +++ b/application/i18n/ga_IE/alerts.php @@ -0,0 +1,46 @@ + array( + 'email' => 'Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'email_check' => 'Tá an seoladh ríomhphoist sin cláraithe cheana féin chun foláirimh a fháil don suíomh sin.', + 'length' => 'Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar.', + 'required' => 'Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca.', + ) , + 'alert_lat' => array( + 'between' => 'Níor roghnaigh tú suíomh bailí ar an mapa.', + 'required' => 'Níor roghnaigh tú suíomh bailí ar an mapa.', + ) , + 'alert_lon' => array( + 'between' => 'Níor roghnaigh tú suíomh bailí ar an mapa.', + 'required' => 'Níor roghnaigh tú suíomh bailí ar an mapa.', + ) , + 'alert_radius' => array( + 'in_array' => 'Níl ga bailí socraithe ar an mapa agat.', + 'required' => 'Níl ga bailí socraithe ar an mapa agat.', + ) , + 'code_already_verified' => 'Tá an cód seo fíoraithe cheana féin!', + 'code_not_found' => 'Níor aimsíodh an cód fíoraithe!Deimhnigh go bhfuil an URL ceart agat.', + 'code_verified' => 'Deimhníodh do chód i gceart. Gheobhaidh tú foláirimh faoi theagmhais de réir mar a tharlaíonn siad.', + 'confirm_request' => 'Chun d\'iarratas ar foláireamh a dheimhniú, téigh ', + 'create_more_alerts' => 'Téigh air ais go dtí an bhileog Foláirimh chun tuilleadh foláireamh a chruthú', + 'email_alert_request_created' => 'Cruthaíodh d\'iarratas ar Foláireamh Ríomhphoist agus seoladh teachtaireacht deimhnithe go dtí', + 'email_code' => 'Iontráil an cód deimhnithe Ríomhphoist a fuair tú thíos:', + 'email_error_head' => 'NÍOR sábháladh d\'Iarratas ar Foláireamh Ríomhphoist!', + 'email_ok_head' => 'Sábháladh d\'Iarratas ar Fholáireamh ríomhphoist!', + 'error' => 'Ní raibh an córas in ann d’iarratas deimhnithe a phróiseáil!', + 'mobile_alert_request_created' => 'Cruthaíodh d\'iarratas ar Fholáireamh agus seoladh teachtaireacht deimhnithe go dtí ', + 'mobile_code' => 'Iontráil an cód deimhnithe SMS a fuair tú ar d\'fhón póca thíos: ', + 'mobile_error_head' => 'NÍOR sábháladh d’iarratas ar Fholáireamh Fóin Phóca!', + 'mobile_ok_head' => ' Sábháladh d’iarratas ar Fholáireamh Fóin Phóca!', + 'settings_error' => 'Níl an úsáid seo socraithe i gceart chun foláirimh a phróiseáil', + 'unsubscribe' => 'Fuair tú an ríomhphost seo mar gur liostáil tú le foláirimh a fháil. Mura bhfuil fonn ort foláirimh a fháil amach anseo téigh chuig', + 'unsubscribed' => 'Ní bhfaighidh tú foláirimh arís ', + 'unsubscribe_failed' => 'Ní rabhamar in ann tú a dhíliostáil. Deimhnigh go bhfuil an URL ceart agat.', + 'verification_email_subject' => 'Foláirimh – deimhniú', + 'verify_code' => 'Ní bhfaighidh tú foláirimh ar an suíomh seo go dtí go ndeimhníonn tú d\'iarratas.', +); diff --git a/application/i18n/ga_IE/auth.php b/application/i18n/ga_IE/auth.php new file mode 100644 index 0000000000..3620c6b35a --- /dev/null +++ b/application/i18n/ga_IE/auth.php @@ -0,0 +1,41 @@ + array( + 'email' => 'Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'exists' => 'Ár leithscéal, tá Cuntas Úsáideora ann cheana féin don seoladh ríomhphoist seo.', + 'length' => 'Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar.', + 'required' => 'Tá an réimse ríomhphoist ag teastáil.', + ) , + 'name' => array( + 'length' => 'Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar.', + 'required' => 'Tá an réimse ainm ag teastáil.', + 'standard_text' => 'Tá carachtar san ainm úsáideora nach bhfuil ceadaithe.', + ) , + 'password_confirm' => array( + 'matches' => 'Caithfidh an réimse deimhnithe phasfhocail meaitseáil leis an réimse pasfhocail.', + ) , + 'resetemail' => array( + 'email' => 'Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'invalid' => 'Ár leithscéal, níl do sheoladh ríomhphoist againn', + 'required' => 'Tá an réimse ríomhphoist ag teastáil.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Tá an Ról Formáide neamhbhailí', + 'length' => 'Ní mór don réimse róil a bheith 5 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 30 carachtar.', + 'required' => 'Ní mór duit sainmhiniú a thabhairt ról amháin ar a laghad.', + 'values' => 'Roghnaigh ról úsáideora nó riarthóra.', + ) , + 'username' => array( + 'admin' => 'Ní féidir ról an riarthóra a mhodhnú.', + 'exists' => 'Ár leithscéal, tá an t-ainm úsáideora sin in úsáid cheana féin.', + 'length' => 'Ní mór do réimse an ainm úsáideora a bheith 2 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 16 charachtar.', + 'login error' => 'Deimhnigh go bhfuil an t-ainm úsáideora ceart agat.', + 'required' => 'Tá réimse an ainm úsáideora ag teastáil.', + 'superadmin' => 'Ní féidir ról an príomhriarthóra a mhodnú.', + ) , +); diff --git a/application/i18n/ga_IE/bug.php b/application/i18n/ga_IE/bug.php new file mode 100644 index 0000000000..9696b0718c --- /dev/null +++ b/application/i18n/ga_IE/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Cuir isteach cód slándála bailí, le do thoil', + 'required' => 'Cuir isteach an Cód Slándala', + ) , + 'email' => array( + 'email' => 'Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'length' => 'Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar.', + 'required' => 'Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca.', + ) , + 'error' => array( + 'required' => 'Tá an réimse botúin ag teastáil.', + ) , + 'subject' => array( + 'length' => 'Ní mór don réimse ábhair a bheith 3 charachtar ar fhad ar a laghad.', + 'required' => 'Tá an réimse ábhair ag teastáil.', + ) , + 'yourname' => array( + 'length' => 'Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad.', + 'required' => 'Tá an réimse ainm ag teastáil.', + ) , +); diff --git a/application/i18n/ga_IE/category.php b/application/i18n/ga_IE/category.php new file mode 100644 index 0000000000..7d9ad11f90 --- /dev/null +++ b/application/i18n/ga_IE/category.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Cuir isteach cód slándála bailí, le do thoil', + 'required' => 'Cuir isteach an Cód Slándala', + ) , + 'comment_author' => array( + 'length' => 'Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad.', + 'required' => 'Tá an réimse ainm ag teastáil.', + ) , + 'comment_description' => array( + 'required' => 'Tá an réimse nótaí tráchta ag teastáil.', + ) , + 'comment_email' => array( + 'email' => 'Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'length' => 'Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar.', + 'required' => 'Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca.', + ) , +); diff --git a/application/i18n/ga_IE/contact.php b/application/i18n/ga_IE/contact.php new file mode 100644 index 0000000000..44aaf41018 --- /dev/null +++ b/application/i18n/ga_IE/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Cuir isteach cód slándála bailí, le do thoil', + 'required' => 'Cuir isteach an Cód Slándala', + ) , + 'contact_email' => array( + 'email' => 'Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'length' => 'Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar.', + 'required' => 'Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca.', + ) , + 'contact_message' => array( + 'required' => 'Tá an réimse teachtaireachta ag teastáil.', + ) , + 'contact_name' => array( + 'length' => 'Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad.', + 'required' => 'Tá an réimse ainm ag teastáil.', + ) , + 'contact_subject' => array( + 'length' => 'Ní mór don réimse ábhair a bheith 3 charachtar ar fhad ar a laghad.', + 'required' => 'Tá an réimse ábhair ag teastáil.', + ) , +); diff --git a/application/i18n/ga_IE/core.php b/application/i18n/ga_IE/core.php new file mode 100644 index 0000000000..7d9ad11f90 --- /dev/null +++ b/application/i18n/ga_IE/core.php @@ -0,0 +1,7 @@ + array( + 'abbv' => 'Luan', + 'full' => 'Dé Máirt', + ) , + 'saturday' => array( + 'abbv' => 'Satharn', + 'full' => 'Dé Sathairn', + ) , + 'sunday' => array( + 'abbv' => 'Domhnach', + 'full' => 'Dé Domhnaigh', + ) , + 'thursday' => array( + 'abbv' => 'Déardaoin', + 'full' => 'Déardaoin', + ) , + 'tuesday' => array( + 'abbv' => 'Máirt', + 'full' => 'Dé Máirt', + ) , + 'wednesday' => array( + 'abbv' => 'Céadaoin', + 'full' => 'Dé Céadaoin', + ) , + 'january' => array( + 'abbv' => 'Ean', + 'full' => 'Eanáir', + ) , + 'february' => array( + 'abbv' => 'Feab', + 'full' => 'Feabhra', + ) , + 'march' => array( + 'abbv' => 'Márta', + 'full' => 'Márta', + ) , + 'april' => array( + 'abbv' => 'Aib', + 'full' => 'Aibreán', + ) , + 'may' => array( + 'abbv' => 'Beal', + 'full' => 'Bealtaine', + ) , + 'june' => array( + 'abbv' => 'Meith', + 'full' => 'Meitheamh', + ) , + 'july' => array( + 'abbv' => 'Iúil', + 'full' => 'Iúil', + ) , + 'august' => array( + 'abbv' => 'Lún', + 'full' => 'Lúnasa', + ) , + 'september' => array( + 'abbv' => 'M. Fómh', + 'full' => 'Meán Fómhair', + ) , + 'october' => array( + 'abbv' => 'D. Fómh.', + 'full' => 'Deireadh Fómhair', + ) , + 'november' => array( + 'abbv' => 'Samh', + 'full' => 'Samhain', + ) , + 'december' => array( + 'abbv' => 'Noll', + 'full' => 'Nollaig', + ) , +); diff --git a/application/i18n/ga_IE/feeds.php b/application/i18n/ga_IE/feeds.php new file mode 100644 index 0000000000..7d9ad11f90 --- /dev/null +++ b/application/i18n/ga_IE/feeds.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Tá an luach réamhshocraithe a thug tú don réimse seo neamhbhailí.', + 'length' => 'Ní mór don Réimse Ainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 200 charachtar.', + ) , + 'field_height' => array( + 'between' => 'Cuir isteach luach 0-50 don Réimse Airde, le do thoil.', + ) , + 'field_isdate' => array( + 'between' => 'Tá luach neamhbhailí curtha isteach sa Réimse Dáta agat.', + 'required' => 'Roghnaigh Tá nó Níl don Réimse Dáta, le do thoil.', + ) , + 'field_name' => array( + 'length' => 'Ní mór don Réimse Ainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 charachtar.', + 'required' => 'Cuir isteach an Réimse Ainm, le do thoil.', + ) , + 'field_required' => array( + 'between' => 'Tá luach neamhbhailí curtha isteach sa Réimse Ainm agat.', + 'required' => 'Roghnaigh Tá nó Níl don Réimse atá ag Teastáil, le do thoil.', + ) , + 'field_type' => array( + 'numeric' => 'Roghnaigh Cineál Réimse Bailí, le do thoil.', + 'required' => 'Roghnaigh Cineál Réimse, le do thoil.', + ) , + 'field_width' => array( + 'between' => 'Cuir isteach luach idir 0 agus 300 don Réimse Leithid, le do thoil.', + ) , + 'form_description' => array( + 'required' => 'Cuir isteach an Cur Síos ar an bhfoirm, le do thoil.', + ) , + 'form_id' => array( + 'default' => 'Ní féidir an foirm réamhshocraithe a scrios.', + 'numeric' => 'Roghnaigh an fhoirm lenabhfuil an réimse seo le cur, le do thoil.', + 'required' => 'Roghnaigh ann fhoirm lena bhfuil an réimse seo le cur, le do thoil.', + ) , + 'form_title' => array( + 'length' => 'Ní mór do réimse ainm na foirme a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar.', + 'required' => 'Cuir isteach ainm na foirme, le do thoil.', + ) , +); diff --git a/application/i18n/ga_IE/imap.php b/application/i18n/ga_IE/imap.php new file mode 100644 index 0000000000..7d9ad11f90 --- /dev/null +++ b/application/i18n/ga_IE/imap.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Cuir isteach cód slándála bailí, le do thoil', + 'required' => 'Cuir isteach an Cód Slándála', + ) , + 'email' => array( + 'email' => 'Tá an chosúlacht air nach seoladh ríomhphoist bailí atá sa réimse Ríomhphoist?', + 'length' => 'Ní mór don réimse Ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar.', + 'required' => 'Tá an réimse Ríomhphoist ag teastáil má tá tic curtha sa bhosca.', + ) , + 'message' => array( + 'required' => 'Tá an réimse nótaí tráchta ag teastáil.', + ) , + 'name' => array( + 'length' => 'Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad.', + 'required' => 'Tá an réimse ainm ag teastáil.', + ) , + 'phone' => array( + 'length' => 'Níl an réimse fóin bailí.', + ) , +); diff --git a/application/i18n/ga_IE/mhi.php b/application/i18n/ga_IE/mhi.php new file mode 100644 index 0000000000..b31fb5bb77 --- /dev/null +++ b/application/i18n/ga_IE/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Cuir isteach cód slándála bailí, le do thoil', + 'required' => 'Cuir isteach an Cód Slándála', + ) , + 'contact_email' => array( + 'email' => 'Tá an chosúlacht air nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'required' => 'Cuir isteach seoladh ríomhphoist bailí, le do thoil', + ) , + 'contact_message' => array( + 'required' => 'Tá an réimse teachtaireachta ag teastáil.', + ) , + 'contact_subject' => array( + 'length' => 'Ní mór don réimse ábhair a bheith 3 charachtar ar fhad ar a laghad.', + 'required' => 'Tá an réimse ábhair ag teastáil.', + ) , +); diff --git a/application/i18n/ga_IE/notifications.php b/application/i18n/ga_IE/notifications.php new file mode 100644 index 0000000000..4be414d562 --- /dev/null +++ b/application/i18n/ga_IE/notifications.php @@ -0,0 +1,35 @@ + 'Cuireadh an teachtaireacht seo ó do shuíomh Gréasáin', + 'admin_login_url' => 'Logáil Isteach an Riarthóra', + 'admin_new_comment' => array( + 'message' => 'Tá nóta tráchta nua curtha ar aghaidh chuig do shuíomh Gréasáin mar fhreagra ar:', + 'subject' => 'Nóta Tráchta Nua', + ) , + 'admin_new_email' => array( + 'message' => 'Tá ríomhphost nua curtha ar aghaidh chuig do shuíomh Gréasáin', + 'subject' => 'Teachtaireacht Ríomhphoist Nua', + ) , + 'admin_new_report' => array( + 'message' => 'Tá tuairisc nua curtha ar aghaidh chuig do shuíomh Gréasáin', + 'subject' => 'Tuairisc Nua', + ) , + 'admin_new_sms' => array( + 'message' => 'Tá teachtaireacht téacs nua curtha ar aghaidh chuig do shuíomh Gréasáin', + 'subject' => 'Teachtaireacht Téacs Nua ', + ) , + 'member_new_alert' => array( + 'message' => 'Tá Foláireamh Nua faighte agat', + 'subject' => 'Foláireamh Nua!', + ) , + 'member_new_message' => array( + 'message' => 'Tá Teachtaireacht phríobháideach faighte agat', + 'subject' => 'Teachtaireacht phríobháideach Nua', + 'footer' => 'Chun freagra a thabhairt téigh go dtí: ', + ) , +); diff --git a/application/i18n/ga_IE/page.php b/application/i18n/ga_IE/page.php new file mode 100644 index 0000000000..7d9ad11f90 --- /dev/null +++ b/application/i18n/ga_IE/page.php @@ -0,0 +1,7 @@ + 'earráid!', + 'data_include' => array( + 'between' => 'Roghnaigh, le do thoil, mír bhailí le cur san áireamh san íoslódáil.', + 'numeric' => 'Roghnaigh, le do thoil, mír bhailí le cur san áireamh san íoslódáil.', + ) , + 'data_point' => array( + 'between' => 'Roghnaigh, le do thoil, cineál tuairisce bailí le híoslódáil.', + 'numeric' => 'Roghnaigh, le do thoil, cineál tuairisce bailí le híoslódáil', + 'required' => 'Roghnaigh, le do thoil, cineál tuairisce bailí le híoslódáil', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Tá an chosúlacht air nach dáta bailí atá sa réimse \'Ó\'?', + 'range' => 'Cuir isteach Dáta \'Ó\' bailí Ní féidir leis a bheith níos mó ná inniu.', + ) , + 'incident_active' => array( + 'between' => 'Cuir isteach luach bailí do \'Ceadaigh An Tuairisc Seo\'', + 'required' => 'Cuir isteach luach bailí do \'Ceadaigh An Tuairisc Seo\'', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Tá an chosúlacht air nach bhfuil luach bailí sa réimse am/pm?', + ) , + 'incident_category' => array( + 'numeric' => 'Tá an chosúlacht air nach bhfuil catagóir bhailí i réimse na catagóire?', + 'required' => 'Tá an réimse catagóire ag teastáil.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Tá an chosúlacht air nach dáta bailí atá sa réimse dáta?', + 'date_mmddyyyy' => 'Tá an chosúlacht air nach dáta bailí atá sa réimse dáta?', + 'required' => 'Tá an réimse dáta ag teastáil.', + ) , + 'incident_description' => array( + 'required' => 'Tá an réimse Tuairisce ag teastáil.', + ) , + 'incident_hour' => array( + 'between' => 'Tá an chosúlacht air nach bhfuil uair bhailí i réimse uaire?', + 'required' => 'Tá réimse uaire ag teastáil.', + ) , + 'incident_information' => array( + 'alpha' => 'Cuir isteach luach bailí do Dhóchúlacht Eolais', + 'length' => 'Cuir isteach luach bailí do Dhóchúlacht Eolais', + ) , + 'incident_minute' => array( + 'between' => 'Tá an chosúlacht air nach bhfuil luach bailí sa réimse nóiméid?', + 'required' => 'Tá an réimse nóiméid ag teastáil.', + ) , + 'incident_news' => array( + 'url' => 'Tá an chosúlacht air nach bhfuil URL bailí sa réimse nasc foinse nuachta?', + ) , + 'incident_photo' => array( + 'size' => 'Déan cinnte, le do thoil, go bhfuil uasmhéid 2MB ar mhéideanna na ngrianghraf atá á n-uaslódáil.', + 'type' => 'Tá an chosúlacht air nach fís bhailí atá sa réimse uaslódála grianghraf. Is iad .JPG, .PNG agus .GIF amháin na formáidí a nglactar leo', + 'valid' => 'Tá an chosúlacht air nach bhfuil comhad bailí sa réimse uaslódála grianghraf.', + ) , + 'incident_source' => array( + 'alpha' => 'Cuir isteach luach bailí do \'Iontaofacht Foinse\'', + 'length' => 'Cuir isteach luach bailí do \'Iontaofacht Foinse\'', + ) , + 'incident_title' => array( + 'length' => 'Ní mór don réimse teidil a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 200 carachtar', + 'required' => 'Tá an réimse teidil ag teastáil.', + ) , + 'incident_verified' => array( + 'between' => 'Cuir isteach luach bailí do \'Deimhnigh An Tuairsc Seo\'', + 'required' => 'Cuir isteach luach bailí do \'Deimhnigh An Tuairisc Seo\'', + ) , + 'incident_video' => array( + 'url' => 'Tá an chosúlacht air nach bhfuil URL bailí sa réimse nasc físeáin?', + ) , + 'latitude' => array( + 'between' => 'Tá an chosúlacht air nach bhfuil leithead bailí sa réimse leithid?', + 'required' => 'Tá an réimse leithid ag teastáil. Cliceáil ar an mapa chun suíomh a mharcáil', + ) , + 'locale' => array( + 'alpha_dash' => 'Tá luach mícheart sa réimse logchaighdeáin. ', + 'exists' => 'Tá aistriúchán don tuairisc seo don teanga seo cheana féin', + 'length' => 'Tá luach mícheart sa réimse logchaighdeáin. ', + 'locale' => 'Tá an logchaighdeán (Teanga) céanna ag an buntuairisc agus ag an aistriúchán.', + 'required' => 'Tá an logchaighdeán ag teastáil.', + ) , + 'location_name' => array( + 'length' => 'Ní mór do réimse ainm an tsuímh a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó na 200 carachtar.', + 'required' => 'Tá ainm an tsuímh ag teastáil.', + ) , + 'longitude' => array( + 'between' => 'Tá an chosúlacht air nach bhfuil fad bailí sa réimse faid?', + 'required' => 'Tá an réimse faid ag teastáil. Cliceáil ar an mapa chun suíomh a mharcáil', + ) , + 'person_email' => array( + 'email' => 'Tá an chosúlacht air nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?', + 'length' => 'Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar.', + ) , + 'person_first' => array( + 'length' => 'Ní mór don réimse céadainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar.', + ) , + 'person_last' => array( + 'length' => 'Ní mór don réimse sloinne a bheith 2 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Tá an chosúlacht air nach dáta bailí atá sa réimse \'GO\'?', + 'range' => 'Cuir isteach Dáta \'GO\' bailí. Ní féidir leis a bheith níos mó ná inniu.', + 'range_greater' => 'Ní féidir an dáta \'Ó\' a bheith níos mó ná an dáta \'GO\'.', + ) , +); diff --git a/application/i18n/ga_IE/reporters.php b/application/i18n/ga_IE/reporters.php new file mode 100644 index 0000000000..7d9ad11f90 --- /dev/null +++ b/application/i18n/ga_IE/reporters.php @@ -0,0 +1,7 @@ + 'Faoi ', + 'access' => 'Rochtain', + 'access_limits' => 'Teorainneacha Rochtana', + 'account_name' => 'Ainm Cuntais', + 'actions' => 'Gníomhaíochtaí', + 'action_confirm' => 'Ní féidir an Gníomhaíocht seo a chealú. An bhfuil tú cinnte go bhfuil tú ag iarraidh dul ar aghaidh?', + 'activate' => 'Gníomhachtaigh', + 'active' => 'Gníomhach', + 'add' => 'Cuir leis', + 'added_by' => 'Curtha leis ag', + 'additional_reports' => 'Tuairiscí Breise', + 'add_edit' => 'Cuir leis/Cuir in eagar', + 'add_field' => 'Cuir Réimse Leis', + 'add_language' => 'Cuir Teanga Leis', + 'add_new' => 'Cuir Nua Leis', + 'add_new_category' => 'Cuir Catagóir Nua Leis', + 'add_translation' => 'Cuir Aistriúchán Leis', + 'admin' => 'Riarachán', + 'alerts' => 'Faigh Foláirimh', + 'alerts_alert_me' => 'cuir ar an airdeall mé má chuirtear tuairisc i gcomhad, nó timeapll ar', + 'alerts_btn_send' => 'Sábháil m\'fholáirimh', + 'alerts_email' => 'Seoladh ríomhphoist', + 'alerts_enter_email' => 'Iontráil seoladh ríomhphoist', + 'alerts_enter_mobile' => 'Iontráil uimhir fhóin phóca le cód na tíre', + 'alerts_get' => 'Faigh Foláirimh', + 'alerts_mobile_phone' => 'Fón Póca:', + 'alerts_place_spot' => 'Nó cuir spota ar an mapa thíos agus tabharfaimid foláireamh duit nuair a thagann tuairisc isteach taobh istigh de 20 kiloméadair.', + 'alerts_rss' => 'Fothaí RSS (cóipeáil an url thíos)', + 'alerts_select_city' => 'Roghnaigh cathair', + 'alerts_step1_select_city' => 'Céim 1: Roghnaigh do chathair nó suíomh:', + 'alerts_step2_send_alerts' => 'Céim 2: Seol foláirimh chuig mo:', + 'alert_confirm_previous' => 'Deimhnigh foláireamh déanta roimhe seo', + 'alert_saved' => 'Tá d\'fholáireamh sábháilte!', + 'all' => 'Gach', + 'allowed' => 'Ceadaithe', + 'all_categories' => 'Gach Catagóir', + 'and' => 'agus', + 'approve' => 'Ceadaigh', + 'approved' => 'ceadaithe', + 'approved_reports' => 'Tuairiscí Ceadaithe', + 'approve_this_report' => 'Ceadaigh an Tuairisc seo', + 'approximate' => 'Garluach', + 'archive' => 'Cartlann', + 'archived' => 'curtha i gcartlann', + 'at' => 'ag', + 'author' => 'Údar', + 'awaiting_approval' => 'Ag Fanacht ar Fhaomhadh', + 'awaiting_verification' => 'Ag Fanacht ar Dheimhniú', + 'blog' => 'Blag', + 'cancel' => 'Cuir ar ceal', + 'categories' => 'Catagóirí', + 'category' => 'Catagóir', + 'category_filter' => 'Scagaire Catagóire', + 'category_has_been' => 'Tá an chatagóir seo ', + 'category_name' => 'Ainm Catagóire', + 'change_picture' => 'Athraigh Mo Phictiúr', + 'choose' => 'Roghnaigh', + 'choose_data_points' => 'Roghnaigh pointí sonraí chun íoslódáil', + 'choose_field_type' => 'Roghnaigh cineál réimse', + 'cleanurl' => 'Glan URLanna', + 'clear' => 'Glan', + 'clear_map' => 'Glan an Mapa', + 'close' => 'Dún', + 'clusters' => 'braislí', + 'color' => 'Dath', + 'comment' => 'nóta tráchta', + 'comments' => 'nótaí tráchta', + 'comment_details' => 'Sonraí an Nóta tráchta', + 'configuration_saved' => 'Tá do chuid Socruithe sábháilte!', + 'configure' => 'Cumraigh', + 'contact' => 'Téigh i dTeagmháil Linn', + 'copyright' => 'Cóipcheart © 2010 Ushahidi.com. Gach ceart ar cosaint.', + 'create' => 'Cruthaigh', + 'create_edit' => 'Cruthaigh/Cuir in Eagar', + 'create_new' => 'Cruthaigh Nua', + 'create_report' => 'Cruthaigh Tuairisc', + 'credibility' => 'Creidiúnacht', + 'data' => 'Sonraí', + 'date' => 'Dáta', + 'date_format' => '(ll/mm/bbbb)', + 'date_time' => 'Dáta & Am', + 'day' => 'lá', + 'deactivate' => 'Díghníomhachtaigh', + 'default_location_name' => 'Nairobi, An Chéinia', + 'delete' => 'Scrios', + 'deleted' => 'Scriosta', + 'deletes' => 'Scriostaí', + 'delete_disabled' => 'Scrios díchumasaithe', + 'delete_report' => 'Scrios an Tuairisc Seo', + 'delete_spam' => 'Scrios Turscar', + 'demo' => 'Taispeántas', + 'description' => 'Cur Síos', + 'detailed_location_example' => 'Sampla: Taobh an teach 15 ar Bhóthar Bhelgard, BÁC 24', + 'details' => 'Sonraí', + 'direct_report' => 'Tuairisc Dhíreach', + 'disabled' => 'díchumasaithe', + 'disapprove' => 'Neamhcheadaigh', + 'download_reports' => 'Íoslódáil Tuairiscí', + 'edit' => 'Cuir in Eagar', + 'edit_form_fields' => 'Cuir Réimsí Foirme in Eagar', + 'edit_report' => 'Cuir an Tuairisc in Eagar', + 'email' => 'R-phost', + 'email_address' => 'Seoladh Ríomhphoist', + 'email_configuration' => 'Socruithe Freastalaí Ríomhphoist', + 'email_server_host' => 'Óstfhreastalaí Ríomhphoist', + 'email_server_password' => 'Pasfhocal Freastalaí Ríomhphoist', + 'email_server_port' => 'Port Freastalaí Ríomhphoist', + 'email_server_ssl_support' => 'Tacaíocht SSS Freastalaí Ríomhphoist', + 'email_server_type' => 'Cineál Freastalaí Ríomhphoist', + 'email_server_username' => 'Ainm Úsáideora Freastalaí Ríomhphoist', + 'email_settings_comment_0' => 'ionas go bhfuil do shocruithe ceangailte leis an seoladh ríomhphoist seo', + 'email_settings_comment_00' => 'Chun tuairisc a fháil trí ríomhphost, cuir isteach do shocruite ríomhphoist thíos, le do thoil. Tabhair faoi deara go gcuirfear ríomhphoist chuig do ', + 'email_settings_comment_1' => 'Tá seoladh iomlán ríomhphoist ag teastáil ó roinnt freastalaithe', + 'email_settings_comment_2' => 'Pasfhocal Cuntais Ríomhphoist', + 'email_settings_comment_3' => 'Poirt Chomónta: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Samplaí: mail.doshuíomhgréasáin.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Samplaí: pop3, imap', + 'email_settings_comment_6' => 'Cumasaigh nó Díchumasaigh Naisc SSS', + 'end_point' => 'go', + 'error' => 'Earráid!', + 'example' => 'Sampla', + 'example_country' => 'Éire', + 'feed' => 'Fotha', + 'feedback' => 'Tabhair Aiseolas', + 'feeds' => 'Fothaí', + 'feed_has_been' => 'Tá an fotha seo', + 'feed_items' => 'Earraí Fotha', + 'feed_name' => 'Ainm Fotha', + 'feed_url' => 'URL Fotha', + 'field_unused' => 'Réimsí nach bhfuil in úsáid', + 'file' => 'Comhad', + 'filters' => 'Scagairí', + 'find' => 'Faigh', + 'find_location' => 'Aimsigh Suíomh', + 'first_name' => 'Céad Ainm', + 'force_run_scheduler' => 'Sceidealóir Rite Faoi Iallach', + 'forgot_password' => 'An bhfuil dearmad déanta agat de do phasfhocal?', + 'form' => 'Foirm', + 'forms' => 'Foirmeacha', + 'form_description' => 'Cur Síos ar an bhFoirm', + 'form_edit' => 'Cuir an Fhoirm Seo in Eagar', + 'form_has_been' => 'Tá an Fhoirm seo', + 'form_title' => 'Teideal Foirme', + 'from' => 'Ó', + 'full_name' => 'Ainm Iomlán', + 'geolocation_available' => 'Suíomh Geo ar fáil', + 'hashtag' => 'Haischlib', + 'has_been' => 'Bhí sé', + 'help' => 'Cén chaoi le cabhrú', + 'hide' => 'Cuir i bhfolach', + 'hide_this_message' => 'Cuir an teachtaireacht seo i bhfolach', + 'home' => 'Baile', + 'how_to_report' => 'Conas Tuairisciú a dhéanamh', + 'image' => 'Íomhá', + 'images' => 'Íomhánna', + 'image_icon' => 'Íomhá/Deilbhín', + 'inactive' => 'Neamhghníomhach', + 'inbox' => 'Bosca Isteach', + 'incident' => 'Teagmhas', + 'incidents_nearby' => 'Teagmhais Chóngaracha', + 'incident_location' => 'Suíomh an Teagmhais', + 'include' => 'Cuir San áireamh', + 'include_categories' => 'Cuir Catagóirí San Áireamh', + 'include_description' => 'Cuir Cur Síos San Áireamh', + 'include_detail' => 'Cuir an méid sonra agus is féidir san áireamh', + 'include_latitude' => 'Cuir Leithead san áireamh', + 'include_location_information' => 'Cuir Eolas an tsuímh san áireamh', + 'include_longitude' => 'Cuir Fad san áireamh', + 'incoming_media' => 'Meáin ag teacht isteach', + 'information_evaluation' => 'Measúnú Eolais', + 'input_location' => 'Cuir isteach do shuíomh cruinn', + 'in_response_to' => 'Mar freagra ar', + 'ip_address' => 'Seoladh IP', + 'item' => 'Mír', + 'items' => 'Míreanna', + 'item_details' => 'sonraí na míre', + 'item_title' => 'Teideal na míre', + 'key' => 'Eochair', + 'kml_kmz_file' => 'Comhad KMZ/KML ', + 'kml_kmz_upload' => 'Uaslódáil Comhad KMZ/KML', + 'language' => 'Teanga', + 'last' => 'Deireanach', + 'last_month' => 'An Mhí seo caite', + 'last_name' => 'Sloinne', + 'last_year' => 'An bhliain seo caite', + 'latitude' => 'Leithead', + 'layers' => 'Sraitheanna', + 'layers_filter' => 'Sraitheanna Eile', + 'layer_has_been' => 'Tá an tsraith ', + 'layer_name' => 'Ainm na Sraithe', + 'layer_url' => 'URL na Sraithe', + 'leave_a_comment' => 'Fag nóta tráchta', + 'level' => 'Leibhéal', + 'level_has_been' => 'Tá an leibhéal seo', + 'level_name' => 'Ainm an leibhéil', + 'limited' => 'Teoranta', + 'link' => 'Nasc', + 'location' => 'Suíomh', + 'locations' => 'Suíomhanna', + 'location_example' => 'Cathair, Contae agus / nó Tír', + 'login' => 'Logáil Isteach', + 'longitude' => 'Fad', + 'map' => 'Mapa', + 'mark_read' => 'Marcáil mar Leite', + 'mark_unread' => 'Marcáil nach bhfuil sé léite', + 'media' => 'Méain', + 'media_filter' => 'Scagaire Meán', + 'message' => 'Teachtaireacht', + 'messages' => 'Teachtaireachtaí', + 'message_details' => 'Sonraí Teachtaireachta', + 'mobile' => 'Fón Póca', + 'modify' => 'Mionathraigh', + 'modify_date' => 'Mionathraigh an Dáta', + 'month' => 'Mí', + 'more' => 'Tuilleadh', + 'name' => 'Ainm', + 'nearby_report' => 'Tuairisc Chóngarach', + 'new' => 'Nua', + 'news' => 'Nuacht', + 'news_feeds' => 'Fothaí Nuachta', + 'news_source' => 'Foinse Nua', + 'new_category' => 'Catagóir Nua', + 'new_password' => 'Pasfhocal Nua', + 'new_report' => 'Tuairisc Nua', + 'next' => 'Ar Aghaidh', + 'no' => 'Níl', + 'notices' => 'Fógraí', + 'not_approved' => 'Níl sé ceadaithe', + 'not_approved_singular' => 'Níl sé ceadaithe', + 'not_spam' => 'Ní turscar é seo', + 'not_specified' => 'Níl sé Sonraithe', + 'no_results' => 'Níl aon torthaí', + 'option' => 'Rogha', + 'optional' => 'Roghnach', + 'options' => 'Roghanna', + 'organization' => 'Eagraíocht', + 'organizations' => 'Eagraíochtaí', + 'organization_description' => 'Cur Síos ar an Eagraíocht', + 'organization_email' => 'Ríomhphost na nEagraíochta', + 'organization_has_been' => 'Tá an Eagraíocht...', + 'organization_name' => 'Ainm na hEagraíochta', + 'organization_phone_1' => 'Fón 1 na hEagraíochta', + 'organization_phone_2' => 'Fón 2 na hEagraíochta', + 'organization_website' => 'Suíomh Gréasáin na hEagraíochta', + 'original' => 'Buneolas', + 'original_description' => 'Bunchur Síos', + 'original_title' => 'Buntheideal', + 'other_ushahidi_instances' => 'OTHER USHAHIDI DEPLOYMENTS', + 'outbox' => 'Bosca Amach', + 'outgoing' => 'Ag dul Amach', + 'page' => 'Leathanach', + 'pages' => 'Leathanaigh', + 'page_description' => 'Cur Síos ar an Leathanach', + 'page_has_been' => 'Bhí an leathanach', + 'page_tab_name' => 'Ainm táib an leathanaigh', + 'page_title' => 'Teideal an leathanaigh', + 'parent_category' => 'Máthairchatagóir', + 'password' => 'Pasfhocal', + 'password_again' => 'Déan athchló ar do phasfhocal', + 'password_forgot' => 'An bhfuil dearmad déanta agat ar do phasfhocal?', + 'password_reset_confirm' => 'Seiceáil do ríomhphost le haghaidh do phasfhocail nua.', + 'password_save' => 'An bhfuil tú ag iarraidh fanacht logáilte isteach ar an ríomhaire seo?', + 'past_month' => 'An Mhí seo caite', + 'past_year' => 'An Bhliain Seo caite', + 'pending' => 'Ar Feitheamh', + 'personal_information' => 'Eolas Pearsanta Roghnach.', + 'phone' => 'Fón', + 'pictures' => 'Pictiúir', + 'pictures_and_videos' => 'Pictiúir agus Físeáin', + 'pinpoint_location' => '* Cuardaigh do shuíomh agus úsáid ainm suímh de leithead, comhordanáidí faid (formáid: 38.19,-85.61), nó cliceáil ar an mapa go dtí an pointe ceart', + 'play' => 'Seinn', + 'please_note' => 'Tabhair faoi deara, le do thoil', + 'plugins' => 'Breiseáin', + 'plugin_url' => 'Suíomh Gréasáin an Bhreiseáin', + 'preview' => 'Réamhamharc', + 'preview_item' => 'Réamhamharc ar an Earra', + 'preview_message' => 'Réamhamharc ar Theachtaireacht', + 'previous' => 'Roimhe', + 'profile_saved' => 'Tá do phróifíl sábháilte', + 'quick_stats' => 'Staitisticí Tapa', + 'rating' => 'rátáil', + 'read' => 'Léite', + 'receive' => 'Faigh', + 'receive_from' => 'Faigh ó', + 'receive_notifications' => 'Faigh Fógraí', + 'recent_reports' => 'Na Fógraí is déanaí', + 'refresh_news_feeds' => 'Athnuaigh na fothaí nuachta', + 'remove' => 'Bain amach', + 'reply' => 'Freagra', + 'report' => 'Tuairisc', + 'reporter' => 'Tuairisceoir', + 'reporters' => 'Tuairisceoirí', + 'reporter_date' => 'Dáta an Tuairisceora', + 'reporter_email' => 'Ríomhphost an Tuairisceora', + 'reporter_first_name' => 'Céadainm an Tuairisceora', + 'reporter_has_been' => 'Tá an Tuairisceoir..', + 'reporter_ip' => 'Seoladh IP an Tuairisceora', + 'reporter_last_name' => 'Sloinne an Tuairisceora', + 'reporter_level' => 'Leibhéal an Tuairisceora', + 'reporter_levels' => 'Leibhéil an Tuairisceora', + 'reporter_phone' => 'Fón an Tuairisceora', + 'reports' => 'Tuairiscí', + 'reports_btn_browse' => 'Brabhsáil', + 'reports_btn_submit' => 'Cuir Isteach', + 'reports_categories' => 'Catagóirí', + 'reports_date' => 'Dáta', + 'reports_description' => 'Cuir Síos', + 'reports_download_csv' => 'Íoslódálfar na Tuairiscí i bhformáid CSV', + 'reports_email' => 'Ríomhphost', + 'reports_find_location' => 'Faigh Suíomh gar duit', + 'reports_first' => 'Céadainm', + 'reports_last' => 'Sloinne', + 'reports_location_name' => 'Athscag ainm an tsuímh', + 'reports_news' => 'Nasc Foinse Nuachta', + 'reports_optional' => 'Eolas Roghnach', + 'reports_photos' => 'Íoslódáil na Pictiúir', + 'reports_return' => 'Téigh ar ais go leathanach na dTuairiscí', + 'reports_select_city' => 'Roghnaigh Cathair', + 'reports_submitted' => 'Tá do thuairisc curtha ar aghaidh chuig ár bhfoireann le haghaidh athbhreithnithe. Beimid i dteagmháil leat go gairid más gá..', + 'reports_submit_new' => 'Cuir isteach tuairisc nua', + 'reports_time' => 'Am', + 'reports_timeline' => 'Amlíne', + 'reports_title' => 'Teideal na Tuairisce', + 'reports_video' => 'Nasc Físeáin', + 'report_an_incident' => 'Tuairiscigh an Teagmhas', + 'report_details' => 'Sonraí na Tuairisce', + 'report_option_1' => 'Trí theachtaireacht a sheoladh chuig', + 'report_option_2' => 'Trí ríomhphost a sheoladh chuig ', + 'report_option_3' => 'Trí thuít a sheoladh leis an haischlib/ na haischlibeanna', + 'report_option_4' => 'Tríd an fhoirm seo a chomhlánú', + 'report_saved' => 'Tá do thuairisc sábháilte', + 'report_title' => 'Teideal na Tuairisce', + 'request_information' => 'Déan iarratas le haghaidh tuilleadh eolais', + 'request_location' => 'Déan iarratais ar shuíomh', + 'requirements' => 'Riachtanais', + 'reset_password' => 'Athshocraigh an Pasfhocal', + 'retrieve_city_names' => 'Aisghabh ainmneacha na gcathracha sa tír roghnaithe', + 'role' => 'Ról', + 'save' => 'Sábháil', + 'saved' => 'Sábháilte', + 'save_close' => 'Sábháil agus Dún', + 'save_report' => 'Sábháil an Tuairisc', + 'schedule' => 'Sceideal', + 'scheduler' => 'Sceidealóir', + 'scheduler_day' => 'Lá', + 'scheduler_hour' => 'Uair', + 'scheduler_log' => 'Loga an Sceidealóra', + 'scheduler_minute' => 'Nóiméad', + 'scheduler_weekday' => 'Lá na Seachtaine', + 'search' => 'Cuardaigh', + 'search_results' => 'Torthaí an Chuardaigh', + 'security_code' => 'Cód Slándála', + 'select_all' => 'Roghnaigh Gach Rud', + 'select_field_type' => 'Roghnaigh Cineál Réimse', + 'select_form_type' => 'Roghnaigh Cineál Foirme', + 'select_in_map' => 'Roghnaigh sa mhapa', + 'select_multiple' => 'Roghnaigh a mhéad is atá ag teastáil', + 'select_one' => 'Deimhnigh le do thoil go bhfuil earra seiceáilte agat', + 'select_theme' => 'Roghnaigh Téama', + 'send' => 'Seol', + 'sending_to' => 'á S(h)eoladh chuig', + 'sent' => 'Seolta', + 'sent_by' => 'Seolta Ag', + 'server_address' => 'Seoladh an Fhreastalaí', + 'server_type' => 'Cineál Freastalaí', + 'service' => 'Seirbhís', + 'service_username' => 'Ainm úsáideora na seirbhíse', + 'service_user_id' => 'ID úsáideora na seirbhíse', + 'share' => 'Comhroinn', + 'shared_data' => 'Eolas Comhroinnte', + 'share_has_been' => 'Tá an chomhroinnt', + 'sharing' => 'Ag Comhroinnt', + 'show' => 'Taispeáin', + 'show_all' => 'Taispeáin Gach Rud', + 'site' => 'Suíomh Gréasáin', + 'site_email_address' => 'Seoladh ríomhphoist an tSuímh Ghréasáin', + 'site_url' => 'URL an tSuímh', + 'source' => 'Foinse', + 'source_name' => 'Ainm na Foinse', + 'source_url' => 'URL na Foinse', + 'spam' => 'Turscar', + 'ssl_support' => 'Tacaíocht SSL?', + 'start_point' => 'Ó', + 'step' => 'Céim', + 'submit' => 'Cuir isteach Tuairisc', + 'submit_sms' => 'Cuir isteach trí SMS', + 'submit_sms1' => 'Seol do SMS go dtí', + 'submit_sms2' => 'ar d\'fhón', + 'success' => 'Rath!', + 'successfuly_imported' => 'Iompórtáilte go Rathúil', + 'surname' => 'Sloinne', + 'system' => 'Córas', + 'tcp_port' => 'Port TCP', + 'themes' => 'Téamaí', + 'theme_default' => 'Téama Ushahidi réamhshocraithe', + 'theme_settings' => 'Téama na socruithe', + 'this' => 'É seo', + 'this_day' => 'Inniu', + 'this_month' => 'An Mhí seo', + 'this_year' => 'An Bhliain Seo', + 'time' => 'am', + 'title' => 'Teideal', + 'to' => 'go', + 'today' => 'Inniu', + 'today_at' => 'Inniu ag', + 'translated' => 'Aistrithe', + 'translated_description' => 'Cur Síos aistrithe', + 'translated_title' => 'Teideal Aistrithe', + 'translate_to' => 'Aistrigh go', + 'translation' => 'Aistriúchán', + 'translation_saved' => 'Tá an t-aistriúchán sábháilte', + 'unread' => 'Níl sé léite', + 'unverified' => 'Níl sé deimhnithe', + 'update_feeds' => 'Nuashonraigh Fothaí', + 'upload' => 'Uaslódáil', + 'upload_file' => 'Comhad le uaslódáil', + 'upload_reports' => 'Uaslódáil Tuairiscí', + 'upload_reports_detail_1' => 'With the form below, you can import incidents into the Ushahidi engine', + 'upload_reports_detail_4' => 'Ní mór go mbeidh Teideal an Teagmhais agus Dáta an Teagmhais ann ar a laghad', + 'upload_reports_detail_5' => 'Sampla Tuairisc CSV', + 'upload_reports_detail_6' => '#,TEIDEAL AN TEAGMHAIS, DÁTA AN TEAGMHAIS, SUÍOMH, CUR SÍOS, CEADAITHE, DEIMHNITHE
"1","Bás amhrasta i Nairobi","2009-05-15 01:06:00","Nairobi","Tá trí chás deimhnithe in C. del Uruguay","Bás, Saoranaigh, ",Sea, Sea', + 'upload_reports_detail_7' => '"2","Goid","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Uaslódáil Rathúil', + 'user' => 'Úsaideoir', + 'username' => 'Ainm Úsáideora', + 'ushahidi_admin' => 'Riarachán Ushahidi', + 'verified' => 'Deimhnithe', + 'verified_reports' => 'Tuairiscí Deimhnithe', + 'verify' => 'Deimhnigh', + 'verify_this_report' => 'Deimhnigh an Tuairisc Seo', + 'version' => 'Leagan', + 'via' => 'trí', + 'video' => 'físeán', + 'view' => 'Amharc', + 'views' => 'Amhairc', + 'view_all' => 'Féach ar Gach Rud', + 'view_all_feeds' => 'Féach ar na fothaí go léir', + 'view_all_reports' => 'Féach ar na tuairiscí go léir', + 'view_items' => 'Féach ar earraí', + 'view_more' => 'Féach ar thuilleadh', + 'view_report' => 'Féach ar thuairisc', + 'view_reports' => 'Féach ar thuairiscí', + 'visible' => 'Infheicthe', + 'waiting_approval' => 'Ag Fanacht ar Fhaomhadh', + 'waiting_verification' => 'Ag Fanacht ar Dheimhniú', + 'weight' => 'Meáchan', + 'yes' => 'Tá', + 'yesterday' => 'Inné', +); diff --git a/application/i18n/ga_IE/upgrade.php b/application/i18n/ga_IE/upgrade.php new file mode 100644 index 0000000000..7d9ad11f90 --- /dev/null +++ b/application/i18n/ga_IE/upgrade.php @@ -0,0 +1,7 @@ +/incident.po + source_file = po/po-en_US/incident.pot + source_lang = en_US + type = PO + ``` +4. Push the file to transifex + + ``` + tx push -s -r ushahidi-v2.incident + ``` + +Converting PHP files to PO and back +----------------------------------- + +This is done using the Kohana i18n manager module, see that module repo for docs +https://github.com/rjmackay/kohana-i18n-manager + diff --git a/application/i18n/gl/alerts.php b/application/i18n/gl/alerts.php new file mode 100644 index 0000000000..a9f974523a --- /dev/null +++ b/application/i18n/gl/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'O campo de correo non semella conter un enderezo válido.', + 'email_check' => 'Este correo xa foi rexistrado para receber alertas desta ubicación.', + 'length' => 'O campo de correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64.', + 'required' => 'O campo de correo é obrigatorio se a caixa de verificación está activada.', + ) , + 'alert_country' => array( + 'single_country' => 'Este despregue concerne a un país só. Comprobe que a ubicación da alerta correspóndese a %s.', + ) , + 'alert_lat' => array( + 'between' => 'Non seleccionou unha ubicación válida no mapa.', + 'required' => 'Non seleccionou unha ubicación válida no mapa.', + ) , + 'alert_lon' => array( + 'between' => 'Non seleccionou unha ubicación válida no mapa.', + 'required' => 'Non seleccionou unha ubicación válida no mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'O campo do móvil non semella conter un número de díxitos axeitado.', + 'mobile_check' => 'Este número de móvil xa foi rexistrado para receber alertas desta ubicación.', + 'numeric' => 'O campo do móvil semella non conter un número válido. Introduza só números, incluindo o código do país.', + 'one_required' => 'É obrigado introducir ou ben seu número de móvil ou ben seu enderezo de correo electrónico.', + 'required' => 'O campo do móvil é obrigatorio se a caixa de selección está activada.', + ) , + 'alert_radius' => array( + 'in_array' => 'Non definiu un radio válido no mapa.', + 'required' => 'Non definiu o seu radio no mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'Non definiu un destinatario para as alertas.', + ) , + 'alerts_subscribed' => 'Suscribiuse ás alertas das seguintes categorías', + 'code_already_verified' => 'Este código xa foi verificado!', + 'code_not_found' => 'Non se topou este código de verificación! Confirme se o URL é correcto. ', + 'code_verified' => 'O seu código foi verificado correctamente. Dende agora recibirá as alertas sobre incidencias segundo acontezan.', + 'confirm_request' => 'Para confirmar a solicitude de alertas, por favor diríxase a ', + 'create_more_alerts' => 'Volte á páxina de alertas para crear mais alertas', + 'email_alert_request_created' => 'A súa solicitude de alerta por mail foi creada e enviouse unha mensaxe de verificación a ', + 'email_code' => 'Introduza o código de verificación recibido por email embaixo: ', + 'email_error_head' => 'A súa solicitude de alertas por email NON foi gardada!', + 'email_ok_head' => 'Gardouse a súa solicitude de alertas por email!', + 'error' => 'O sistema non puido procesar a súa solicitude de verificación!', + 'mobile_alert_request_created' => 'A súa solicitude para Alertas a Móvil foi creada e enviouse unha mensaxe de verificación a ', + 'mobile_code' => 'Introduza o código SMS de verificación que recibiu no seu móvil embaixo: ', + 'mobile_error_head' => 'A súa solicitude de alertas a móvil Non foi gardada!', + 'mobile_ok_head' => 'Gardouse a súa solicitude de alertas a móvil!', + 'settings_error' => 'Este despregue non está configurado para procesar correctamente as alertas', + 'unsubscribe' => 'Recibiu este mail ao suscribirse para receber alertas.Se en adiante non as quixera receber diríxase a ', + 'unsubscribed' => 'Non ha receber mais alertas de ', + 'unsubscribe_failed' => 'Non puidemos desuscribilo. Comprobe que o URL é correcto.', + 'verification_email_subject' => 'alertas - verificación', + 'verify_code' => 'Non ha receber alertas desta ubicación ata que a solicitude sexa confirmada.', +); diff --git a/application/i18n/gl/auth.php b/application/i18n/gl/auth.php new file mode 100644 index 0000000000..b12c6b8841 --- /dev/null +++ b/application/i18n/gl/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'O correo que introduciu non é un enderezo válido.', + 'exists' => 'Sentímolo pero xa existe unha conta asignada para ese correo.', + 'length' => 'O correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64.', + 'required' => 'O correo é obrigatorio.', + ) , + 'name' => array( + 'length' => 'O nome debe ter alomenos 3 caracteres de lonxitude e non mais de 100.', + 'required' => 'O nome é obrigatorio.', + 'standard_text' => 'O nome de usuario contén caracteres non permitidos.', + ) , + 'current_password' => array( + 'length' => 'O contrasinal debe ter alomenos 8 caracteres de lonxitude.', + 'login error' => 'Revise que introduciu correctamente o correo e o contrasinal.', + 'matches' => 'Introduza o mesmo contrasinal en ambolos dous campos.', + 'required' => 'O contrasinal é obligatorio.', + 'alpha_dash' => 'O contrasinal só pode levar caracteres alfanuméricos, amais dos símbolos:#, @, _, -', + 'incorrect' => 'O contrasinal que forneceu para a súa conta é incorrecto. Probe novamente.', + ) , + 'new_password' => array( + 'length' => 'O contrasinal debe contar con alomenos 8 caracteres de lonxitude.', + 'login error' => 'Comprobe que introduciu correctamente o correo e o contrasinal.', + 'matches' => 'Introduza o mesmo contrasinal en ambolos dous campos.', + 'required' => 'O contrasinal é obrigatorio.', + 'alpha_dash' => 'O contrasinal só pode levar caracteres alfanuméricos, amais dos símbolos:#, @, _, -', + ) , + 'password' => array( + 'default' => 'Houbo un erro ao tentar iniciar a sesión.', + 'length' => 'O contrasinal debe contar con alomenos 8 caracteres de lonxitude.', + 'login error' => 'O contrasinal debe contar con alomenos 8 caracteres de lonxitude.', + 'matches' => 'Introduza o mesmo contrasinal en ambolos dous campos.', + 'required' => 'O contrasinal é obrigatorio.', + 'riverid server down' => 'O servidor de autenticación caeu. Tenteo deiquí a un pedazo.', + 'riverid' => '%s', + 'alpha_dash' => 'O contrasinal só pode levar caracteres alfanuméricos, amais dos símbolos:#, @, _, -', + ) , + 'password_confirm' => array( + 'matches' => 'O contrasinal e a súa confirmación teñen que ser idénticos.', + ) , + 'resetemail' => array( + 'email' => 'O correo que forneceu non é un enderezo válido.', + 'invalid' => 'Perdoe, pero non temos o seu enderezo de correo', + 'required' => 'O correo é obrigatorio.', + ) , + 'role' => array( + 'superadmin_modify' => 'Únicamente un superadmin pode modificar a outro ou transformar en admina un usuario.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Formato de rol inválido.', + 'length' => 'O rol debe contar con alomenos 5 caracteres de lonxitude e non mais de 30.', + 'required' => 'Debe definir alomenos un rol.', + 'values' => 'Debe seleccionar ou ben o rol ADMIN ou ben o rol USER.', + ) , + 'token' => array( + 'invalid' => 'A chave de contrasinal esquencido non é válida.', + 'required' => 'É precisa unha chave de contrasinal esquencido', + ) , + 'username' => array( + 'admin' => 'O rol de usuario admin non se pode modificar.', + 'alpha_numeric' => 'O campo do nome do usuario só pode levar caracteres alfanuméricos.', + 'exists' => 'Sentímolo moito pero este nome de usuario xa está sendo empregado.', + 'length' => 'O nome de usuario debe contar con alomenos 2 caracteres de lonxitudee non mais de 100.', + 'login error' => 'Confirme que introduciu o nome de usuario correcto.', + 'required' => 'O nome de usuario é obrigatorio.', + 'superadmin' => 'O rol de superadmin non se pode modificar.', + 'csrf' => 'Tenta crear ou editar un usuario? (Posible ataque CSRF)', + ) , +); diff --git a/application/i18n/gl/bug.php b/application/i18n/gl/bug.php new file mode 100644 index 0000000000..52951a8142 --- /dev/null +++ b/application/i18n/gl/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Introduza un código de seguridade válido.', + 'required' => 'Introduza o código de seguridade.', + ) , + 'email' => array( + 'email' => 'O correo semella non ser un enderezo válido.', + 'length' => 'O correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64.', + 'required' => 'O correo é obrigatorio se a caixa de verificación está activada.', + ) , + 'error' => array( + 'required' => 'É obrigado encher o campo erro.', + ) , + 'subject' => array( + 'length' => 'O asunto debe contar con alomenos 3 caracteres de lonxitude.', + 'required' => 'O asunto é obrigatorio.', + ) , + 'yourname' => array( + 'length' => 'O nome debe contar con alomenos 3 caracteres de lonxitude.', + 'required' => 'O nome é obrigatorio.', + ) , +); diff --git a/application/i18n/gl/category.php b/application/i18n/gl/category.php new file mode 100644 index 0000000000..78a48cb37b --- /dev/null +++ b/application/i18n/gl/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'O campo cor debe contar con alomenos 6 caracteres de lonxitude.', + 'required' => 'O campo cor é obrigatorio.', + ) , + 'category_description' => array( + 'required' => 'A descripción é obrigatoria.', + ) , + 'category_image' => array( + 'size' => 'Asegúrese de que o tamaño de súbida das imaxes estea limitado a 50KB.', + 'type' => 'O campo da imaxe semella que non contén unha imaxe válida.Os únicos formatos aceitados son .JPG, .PNG e .GIF.', + 'valid' => 'O campo da imaxe semella que non contén un ficheiro válido', + ) , + 'category_title' => array( + 'length' => 'O título debe contar con alomenos 3 caracteres de lonxitude e non mais de 80.', + 'required' => 'O Título é obrigatorio.', + ) , + 'parent_id' => array( + 'already_parent' => 'Non pode subcategorizar unha categoría que xa conta con subcategorías propias.', + 'exists' => 'A categoría nai non existe.', + 'numeric' => 'A categoría nai debe ser numérica.', + 'parent_trusted' => 'A categoría nai non pode ser unha categoría especial', + 'required' => 'A categoría nai é obrigatoria.', + 'same' => 'A categoría non pode ser a mesma que a categoría nai.', + 'special' => 'As categorías especiais non poden ser subcategorizadas.', + ) , +); diff --git a/application/i18n/gl/comments.php b/application/i18n/gl/comments.php new file mode 100644 index 0000000000..67975fc68d --- /dev/null +++ b/application/i18n/gl/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Introduza un código de seguridade válido.', + 'required' => 'Introduza o código de seguridade.', + 'valid' => 'Introduciu un código de seguridade errado.', + ) , + 'comment_author' => array( + 'length' => 'O nome debe contar con alomenos 3 caracteres de lonxitude.', + 'required' => 'O nome é obrigatorio.', + ) , + 'comment_description' => array( + 'required' => 'Os comentarios son obrigatorios.', + ) , + 'comment_email' => array( + 'email' => 'Semella que o correo non contén un enderezo válido.', + 'length' => 'O correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64.', + 'required' => 'O correo é obrigatorio se a caixa de verificación está activada.', + ) , +); diff --git a/application/i18n/gl/contact.php b/application/i18n/gl/contact.php new file mode 100644 index 0000000000..ea2358438f --- /dev/null +++ b/application/i18n/gl/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Introduza un código de seguridade válido.', + 'valid' => 'Introduza un código de seguridade válido.', + 'required' => 'Introduza o código de seguridade.', + ) , + 'contact_email' => array( + 'email' => 'Semella que o correo non contén un enderezo válido.', + 'length' => 'O Correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64.', + 'required' => 'O Correo é obrigatorio se a caixa de verificación está activada.', + ) , + 'contact_message' => array( + 'required' => 'A mensaxe é obrigatoria.', + ) , + 'contact_name' => array( + 'length' => 'O nome debe contar con alomenos 3 caracteres de lonxitude.', + 'required' => 'O nome é obrigatorio.', + ) , + 'contact_subject' => array( + 'length' => 'O asunto debe contar con alomenos 3 caracteres de lonxitude.', + 'required' => 'O asunto é obrigatorio.', + ) , + 'email_send' => array( + 'failed' => 'Houbo un erro ao enviar a súa mensaxe.', + ) , +); diff --git a/application/i18n/gl/core.php b/application/i18n/gl/core.php new file mode 100644 index 0000000000..322cc8daa3 --- /dev/null +++ b/application/i18n/gl/core.php @@ -0,0 +1,35 @@ + 'arquivo de configuración', + 'controller' => 'controlador', + 'driver' => 'driver', + 'driver_implements' => 'O driver %s para a biblioteca %s ten que implementar a interface %s', + 'driver_not_found' => 'Non se atopa o driver %s para a biblioteca %s.', + 'errors_disabled' => 'Pode ir á páxina principal ou tentar de novo.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Non foi posible completar a solicitude.', + 'helper' => 'asistente', + 'invalid_filetype' => 'A solicitude do tipo de arquivo .%s non é permitida na visualización do ficheiro de configuración.', + 'invalid_method' => 'Método %s inválido solicitado en %s', + 'invalid_property' => 'A propiedade %s non existe na clase %s.', + 'library' => 'biblioteca', + 'log_dir_unwritable' => 'Non se pode escribir no directorio de logs: %s', + 'model' => 'modelo', + 'no_controller' => 'Ushahidi non pode atopar un controlador para o procesamento desta solicitude: %s', + 'no_default_route' => 'Estableza unha ruta por defecto en config/routes.php', + 'page_not_found' => 'Non foi posible atopar a páxina %s solicitada.', + 'report_bug' => 'Informe deste atranco a Ushahidi', + 'resource_not_found' => 'A solicitude %s, %s, non foi topada.', + 'stack_trace' => 'Rastrexo na Pila de Memoria (Stack Trace)', + 'stats_footer' => 'Cargado en {execution_time} segundos, empregando {memory_usage} de memoria. Xerado por Ushahidi v%s.', + 'text_direction' => 'ead', + 'there_can_be_only_one' => 'Só pode haber unha instancia de Ushahidi por páxina solicitada.', + 'uncaught_exception' => 'Excepción non recollida %s: %s no arquivo %s na liña %s', + 'view' => 'visualizar', + 'view_set_filename' => 'Debe seleccionar a visualización do arquivo antes de renderizalo.', +); diff --git a/application/i18n/gl/database.php b/application/i18n/gl/database.php new file mode 100644 index 0000000000..39a07b89f4 --- /dev/null +++ b/application/i18n/gl/database.php @@ -0,0 +1,10 @@ + 'Erro da base de datos: %s', + 'table_not_found' => 'A táboa "%s" non se atopa na base de datos. Comprobe que está a empregara última versión do motor da base de datos para esta versión de Ushahidi.', +); diff --git a/application/i18n/gl/datetime.php b/application/i18n/gl/datetime.php new file mode 100644 index 0000000000..84e74d683f --- /dev/null +++ b/application/i18n/gl/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Ven', + 'full' => 'Venres', + ) , + 'monday' => array( + 'abbv' => 'Lun', + 'full' => 'Luns', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sáb', + 'full' => 'Sábado', + ) , + 'sunday' => array( + 'abbv' => 'Dom', + 'full' => 'Domingo', + ) , + 'thursday' => array( + 'abbv' => 'Xov', + 'full' => 'Xoves', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => 'Martes', + ) , + 'wednesday' => array( + 'abbv' => 'Mér', + 'full' => 'Mércores', + ) , + 'january' => array( + 'abbv' => 'Xan', + 'full' => 'Xaneiro', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Febreiro', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marzal', + ) , + 'april' => array( + 'abbv' => 'Abr', + 'full' => 'Abril', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Maio', + ) , + 'june' => array( + 'abbv' => 'Xun', + 'full' => 'Xuño', + ) , + 'july' => array( + 'abbv' => 'Xul', + 'full' => 'Xullo', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agosto', + ) , + 'september' => array( + 'abbv' => 'Set', + 'full' => 'Setembro', + ) , + 'october' => array( + 'abbv' => 'Out', + 'full' => 'Outubro', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novembro', + ) , + 'december' => array( + 'abbv' => 'Nad', + 'full' => 'Nadal', + ) , +); diff --git a/application/i18n/gl/feeds.php b/application/i18n/gl/feeds.php new file mode 100644 index 0000000000..b483647faa --- /dev/null +++ b/application/i18n/gl/feeds.php @@ -0,0 +1,20 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'O nome do feed debe contar con alomenos 3 caracteres de lonxitude + e non mais de 70.', + 'required' => 'Introduza o nome do feed.', + ) , + 'feed_url' => array( + 'required' => 'Introduza o URL do feed.', + 'url' => 'Introduza un URL válido, p.ex. http://www.ushahidi.com', + ) , + 'source' => 'FONTE', + 'title' => 'Título', +); diff --git a/application/i18n/gl/footer.php b/application/i18n/gl/footer.php new file mode 100644 index 0000000000..c5e7cbec20 --- /dev/null +++ b/application/i18n/gl/footer.php @@ -0,0 +1,9 @@ + 'php5-curl non se topa instalado no sistema.', +); diff --git a/application/i18n/gl/form.php b/application/i18n/gl/form.php new file mode 100644 index 0000000000..26d20c0bb3 --- /dev/null +++ b/application/i18n/gl/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'O valor por defecto que forneceu para este campo non é válido.', + 'length' => 'O Nome do Campo ha ter alomenos 3 caracteres de lonxitude e non máis de 200.', + ) , + 'field_height' => array( + 'between' => 'Introduza un valor entre 0 e 50 para a Altura do Campo.', + ) , + 'field_isdate' => array( + 'between' => 'Introduciu un valor inválido para o Campo de Data.', + 'required' => 'Seleccione Sí ou Non para o Campo de Data.', + ) , + 'field_name' => array( + 'length' => 'O Nome do Campo debe contar con alomenos 3 caracteres de lonxitude e non máis de 100.', + 'required' => 'Introduza o Nome do Campo.', + 'duplicate' => 'O nome do campo que forneceu xa existe neste mesmo formulario.Por favor, introduza outro distinto.', + ) , + 'field_required' => array( + 'between' => 'Introduciu un valor inválido para o Campo Obrigatorio.', + 'required' => 'Seleccione Sí ou Non para o Campo Obrigatorio.', + ) , + 'field_type' => array( + 'numeric' => 'Seleccione un Tipo de Campo válido.', + 'required' => 'Seleccione un Tipo de Campo.', + ) , + 'field_width' => array( + 'between' => 'Introduza un valor entre 0 e 300 para a Anchura de Campo.', + ) , + 'form_description' => array( + 'required' => 'Forneza unha Descripción do formulario.', + ) , + 'form_id' => array( + 'default' => 'O formulario predetermiñado non se pode borrar.', + 'numeric' => 'Seleccione qué formulario engadir a ese campo', + 'required' => 'Seleccione qué formulario engadir a ese campo', + ) , + 'form_title' => array( + 'length' => 'O nome do campo de formulario debe contar con alomenos 3 caracteres de lonxitudee non máis de 100.', + 'required' => 'Introduza o nome do formulario.', + 'exists' => 'Xa existe un formulario con ese mesmo título. Por favor, escolla outro.', + ) , +); diff --git a/application/i18n/gl/imap.php b/application/i18n/gl/imap.php new file mode 100644 index 0000000000..539734c4f1 --- /dev/null +++ b/application/i18n/gl/imap.php @@ -0,0 +1,10 @@ + 'Fallo abrindo o fluxo IMAP.', + 'unsupported_service' => 'Servizo de email non soportado.', +); diff --git a/application/i18n/gl/installer.php b/application/i18n/gl/installer.php new file mode 100644 index 0000000000..28ab70fbe5 --- /dev/null +++ b/application/i18n/gl/installer.php @@ -0,0 +1,84 @@ + 'Directorio Base', + 'database' => 'Base de Datos', + 'database_host' => 'Host da Base de Datos', + 'database_host_description' => 'Se está a empregar Ushahidi no seu computador, o enderezo será: "localhost".Se o aloxa nun servidor web externo, deberá obter a información do provedor do servizo.', + 'database_name' => 'Nome da Base de Datos', + 'database_name_description' => 'O nome da base de datos na que quere instalar o Ushahidi', + 'db_information_link' => 'Para máis información consulte este artigo da wiki no que se explicao uso das bases de datos mais polo miúdo.', + 'default_language' => 'Lingua predetermiñada (Locale)', + 'default_language_description' => 'Cada instancia de Ushahidi ven cun conxunto propio de traduccións.Tamén pode engadir a súa propia lingua.', + 'disable' => 'Deshabilitar', + 'enable' => 'Habilitar', + 'error_summary' => 'A lista seguinte é un resumo dos erros atopados.', + 'files_location_text' => 'O directorio no servidor onde se teñen copiado os arquivos do Ushahidi.éste dato foi detectado automáticamente, comprobe que é correcto.Se o campo estivera valeiro, non se priocupe: quere dicir que o Ushahidi foi instalado no directorio principal.', + 'finished' => 'Rematado', + 'general' => 'Xeral', + 'google_key' => 'Chave API do Google.', + 'google_key_description' => 'Quenqueira pode facerse cunha chave para a API.Obteña a súa agora.', + 'go_back' => 'Voltar', + 'index' => array( + 'advanced' => 'INSTALACIÓN AVANZADA', + 'advanced_installation_description' => 'Complete toda a configuración básica nos cinco pasos do proceso.Esto inclúe: servidor, mapa, nome do site e detalles de contacto.', + 'basic_installation' => 'INSTALACIÓN BÁSICA', + 'basic_installation_description' => 'Simple e rápida. Todo o que precisa é a ruta do directorio principal do seu website e a información da base de datos. Escolla esta opción se quere poñer todo a andar axiña. O resto de configuracións sempre pode rematalas logo.', + 'proceed' => 'Continuar', + 'welcome' => 'Benvida/o ao proceso de instalación do Ushahidi. Escolla de seguido qué tipo de instalación quere empregar.', + ) , + 'installation_successful' => 'Instalación Correcta', + 'mail_server' => 'Servidor de Correo', + 'mail_server_host' => 'Host do Servidor de Correo', + 'mail_server_host_description' => 'Exemplos: mail.oseusite.org, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Contrasinal do Servidor de Correo', + 'mail_server_password_description' => 'O contrasinal que emprega normalmente para acceder ao seu email', + 'mail_server_port' => 'Porto do Servidor de Correo', + 'mail_server_port_description' => 'Portos Comúns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tipo de Servidor de Correo', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP).Cál é a diferencia?', + 'mail_server_username' => 'Nome de Usuaria/o do Servidor de Correo', + 'mail_server_username_description' => 'Se emprega unha conta de Gmail, Hotmail ou Yahoo Mail, introduza o correo completo como nome de usuaria/o', + 'map' => 'Mapa', + 'map_provider' => 'Provedor do Mapa', + 'map_provider_description' => 'Ushahidi traballa igualmente ben con calquera destes tres provedores de mapas: Google, Bing ou Open Street Map. Escolla o que proporcione maior detallena súa zona.', + 'other_steps' => 'Outros pasos...', + 'password' => 'Contrasinal', + 'password_description' => 'Contrasinal da base de datos', + 'previous' => 'Anterior', + 'restart_apache' => 'Reinicie o seu servidor Apache', + 'select_mail_server_ssl' => 'Activar ou desactivar SSL', + 'select_mail_server_ssl_description' => 'Algúns servidores de correo permiten a opción de empregar SSL ao establecer unha conexión. Empregar SSL é sempre unha boa idea xa queengade un nivel extra de seguridade.', + 'setup_sms' => 'Configurar servidor de SMS', + 'site_email' => 'Email do Site', + 'site_email_alerts' => 'Email para Alertas', + 'site_email_alerts_description' => 'Cando as/os visitantes do site se suscriban ás alertas, recibirán os emails dende este enderezo. Este correo non ten porque ser necesariamente o mesmo co Email do Site.', + 'site_email_description' => 'Os comunicados do site serán canalizados por medio deste enderezo.', + 'site_name' => 'Nome do Site', + 'site_name_description' => 'O nome do seu site', + 'site_tagline' => 'Eslogan do Site', + 'site_tagline_description' => 'Eslogan', + 'summary' => array( + 'text_1' => 'Os arquivos e directorios que se listan de seguido precisan ter permisos de escritura para o seu servidor web.', + 'text_2' => '

Eiquí ten instruccións para trocar os permisos dos arquivos e directorios:

+ ', + 'text_3' => 'Denantes de comenzar, é preciso asegurarse cos seguintes arquivos e directorios teñen permiso de escritura para o seu servidor web. Esto conleva trocar os permisos dos mesmos.', + 'text_4' => 'Para proseguir co proceso de instalación, teña a man os seguintes datos: ', + ) , + 'table_prefix' => 'Prefixo da Táboa', + 'table_prefix_description' => 'Polo xeral non é preciso trocar o prefixo da táboa. Con todo, no caso de ter a intención de empregar varias instalacións de Ushahidi sobre unha mesma base de datos será preciso modificar os prefixos eiquí.', + 'title' => 'Título', + 'to_login' => 'Para acceder, vaia a', + 'upload_data' => 'Subir datos do informe', + 'username' => 'Nome de usuaria/o', + 'username_description' => 'Usuaria/o da base de datos', + 'use_credentials' => 'e empregue as seguintes credenciáis', + 'view_site' => 'Ver o site', +); diff --git a/application/i18n/gl/layer.php b/application/i18n/gl/layer.php new file mode 100644 index 0000000000..a57ead8f14 --- /dev/null +++ b/application/i18n/gl/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'O campo de cor debe contar con alomenos 6 caracteres de lonxitude.', + 'required' => 'O campo de cor é obrigatorio.', + ) , + 'layer_file' => array( + 'type' => 'O campo de arquivo semella conter un ficheiro inválido. Os únicos formatos aceitados son .KMZ e .KML.', + 'valid' => 'O campo de arquivo semella conter un fichero inválido.', + ) , + 'layer_name' => array( + 'length' => 'O campo de nome debe contar con alomenos 3 caracteres de lonxitudee non máis de 80.', + 'required' => 'O campo de nome é obrigatorio.', + ) , + 'layer_url' => array( + 'atleast' => 'É preciso fornecer unha URL ou un arquivo KML.', + 'both' => 'Non se poden fornecer ao mesmo tempo unha URL e un arquivo KML.', + 'url' => 'Introduza unha URL válida, p.ex. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/gl/libraries.php b/application/i18n/gl/libraries.php new file mode 100644 index 0000000000..13f1df1a5a --- /dev/null +++ b/application/i18n/gl/libraries.php @@ -0,0 +1,27 @@ + 'Non se pode conectar ao conector Akismet.', + 'akismet_cannot_retrieve' => 'Non se puido obter unha resposta do Akismet.', + 'api_library_not_found' => 'Non se puido atopar a biblioteca %s para a clase %sVerifique a táboa de ruteo da API.', + 'askimet_invalid_apikey' => 'A chave da API do Akismet non é válida.', + 'clickatell_fopen_error' => 'Erro durante a execución do método fopen de envío!
Verifique se o PHP ten soporte para SSL e se a versión de PHP do server é mais recente que a 5.2.', + 'clickatell_message_too_long' => 'A súa mensaxe unicode é longa de máis! (Tamaño actual=', + 'clickatell_no_destination_address' => 'Especifique a/o destinataria/o (PARA)!', + 'clickatell_no_sender_address' => 'Especifique o enderezo fonte (DE)!', + 'clickatell_unicode_message_too_long' => 'A súa mensaxe unicode é longa de máis! (Tamaño actual=', + 'clickatell_unsupported_method' => 'Método de envío non soportado!', + 'invalid_api_library' => 'A biblioteca da API %s non é válida. Tódalas bibliotecas da API deben ser subclases de %s.', + 'upgrade_directory_not_deleted' => 'O directorio %s non se pode borrar.', + 'upgrade_extracting_error' => 'Erro na extracción: %s', + 'upgrade_failed' => 'Erro baixando a última versión do Ushahidi. Código de status do HTTP', + 'upgrade_file_not_copied' => 'O arquivo %s non pode ser copiado.', + 'upgrade_file_not_deleted' => 'O arquivo %s non pode ser borrado.', + 'upgrade_title' => 'Script de actualización do Ushahidi', + 'upgrade_zip_error' => 'Non se puido acabar de baixar o arquivo zip %s do Ushahidi.', + 'riverid_variable_not_available' => '%s non está dispoñible na clase RiverID.', +); diff --git a/application/i18n/gl/maintenance.php b/application/i18n/gl/maintenance.php new file mode 100644 index 0000000000..824118f735 --- /dev/null +++ b/application/i18n/gl/maintenance.php @@ -0,0 +1,9 @@ + 'O noso site atópase actualmente en mantimento. Intente acceder novamentede aí a un cacho.', +); diff --git a/application/i18n/gl/message.php b/application/i18n/gl/message.php new file mode 100644 index 0000000000..e7b140e9e9 --- /dev/null +++ b/application/i18n/gl/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Introduza un código de seguridade válido.', + 'required' => 'Introduza o código de seguridade.', + ) , + 'email' => array( + 'email' => 'Este campo de correo electrónico semella non conter un enderezo válido.', + 'length' => 'O campo de correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64.', + 'required' => 'O campo de correo é obrigatorio se a caixa de verificación está seleccionada.', + ) , + 'message' => array( + 'required' => 'O campo de comentarios é obrigatorio.', + ) , + 'name' => array( + 'length' => 'O campo de nome debe contar con alomenos 3 caracteres de lonxitude.', + 'required' => 'O campo de nome é obrigatorio.', + ) , + 'phone' => array( + 'length' => 'O campo de teléfono non é valido.', + ) , +); diff --git a/application/i18n/gl/mhi.php b/application/i18n/gl/mhi.php new file mode 100644 index 0000000000..fa5cd2a4ac --- /dev/null +++ b/application/i18n/gl/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Introduza un código de seguridade válido.', + 'required' => 'Introduza o código de seguridade.', + ) , + 'contact_email' => array( + 'email' => 'O campo de correo semella non conter un enderezo de correo válido.', + 'required' => 'Forneza un enderezo de correo válido.', + ) , + 'contact_message' => array( + 'required' => 'O campo de mensaxe é obrigatorio.', + ) , + 'contact_subject' => array( + 'length' => 'O campo do Asunto debe contar con alomenos 3 caracteres de lonxitude.', + 'required' => 'O campo de Asunto é obrigatorio.', + ) , +); diff --git a/application/i18n/gl/notifications.php b/application/i18n/gl/notifications.php new file mode 100644 index 0000000000..4a4dda30d4 --- /dev/null +++ b/application/i18n/gl/notifications.php @@ -0,0 +1,35 @@ + 'Esta mensaxe foi enviada dende o seu sitio web.', + 'admin_login_url' => 'Login de Administrador/a', + 'admin_new_comment' => array( + 'message' => 'Enviouse un novo comentario ao site en resposta a:', + 'subject' => 'Comentario Novo', + ) , + 'admin_new_email' => array( + 'message' => 'Enviouse un novo correo ao site.', + 'subject' => 'Correo Novo', + ) , + 'admin_new_report' => array( + 'message' => 'Enviouse un novo informe ao site.', + 'subject' => 'Informe Novo', + ) , + 'admin_new_sms' => array( + 'message' => 'Enviouse unha nova mensaxe ao site.', + 'subject' => 'Nova Mensaxe de Texto', + ) , + 'member_new_alert' => array( + 'message' => 'Recibiu unha Nova Alerta', + 'subject' => 'Alerta Nova!', + ) , + 'member_new_message' => array( + 'message' => 'Recibiu unha Mensaxe Privada', + 'subject' => 'Mensaxe Privada Nova!', + 'footer' => 'Para respostar vaia a: ', + ) , +); diff --git a/application/i18n/gl/page.php b/application/i18n/gl/page.php new file mode 100644 index 0000000000..0d6072b1cf --- /dev/null +++ b/application/i18n/gl/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Introduza un Título de Páxina.', + 'length' => 'O Título da Páxina debe contar con alomenos 3 caracteres de lonxitude e non máis de 150.', + ) , + 'page_tab' => array( + 'required' => 'Introduza un Nome de Etiqueta da Páxina.', + ) , + 'page_description' => array( + 'required' => 'Introduza unha Descripción da Páxina.', + ) , +); diff --git a/application/i18n/gl/permissions.php b/application/i18n/gl/permissions.php new file mode 100644 index 0000000000..b4e9ed0116 --- /dev/null +++ b/application/i18n/gl/permissions.php @@ -0,0 +1,27 @@ + 'Ver Informes', + 'reports_edit' => 'Crear/Editar/Borrar Informes', + 'reports_approve' => 'Aprobar Informes', + 'reports_verify' => 'Verificar Informes', + 'reports_comments' => 'Xestionar Comentarios dos Informes', + 'reports_download' => 'Baixar Informes', + 'reports_upload' => 'Subir Informes', + 'messages' => 'Xestionar Mensaxes', + 'messages_reporters' => 'Xestionar Mensaxes dos Informantes', + 'stats' => 'Ver Estadísticas', + 'settings' => 'Modificar Configuracións', + 'manage' => 'Xestionar Panel', + 'users' => 'Xestionar Usuarias/os', + 'manage_roles' => 'Xestionar Roles', + 'checkin' => 'Permitir checkin ', + 'checkin_admin' => 'Xestionar checkins', + 'admin_ui' => 'Acceder á UI de Admin', + 'member_ui' => 'Acceder á UI de Membros', + 'delete_all_reports' => 'Borrar tódolos informes', +); diff --git a/application/i18n/gl/private_message.php b/application/i18n/gl/private_message.php new file mode 100644 index 0000000000..1ff2c71718 --- /dev/null +++ b/application/i18n/gl/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'O ID pai debe ser numérico', + ) , + 'private_to' => array( + 'required' => 'O campo Para é obrigatorio', + 'exists' => 'A/o usuaria/o ao que está tentando enviar a mensaxe non existe', + ) , + 'private_subject' => array( + 'required' => 'O campo Asunto é obrigatorio', + 'length' => 'O Asunto debe ter unha lonxitude entre 3 e 150 caracteres', + ) , + 'private_message' => array( + 'required' => 'O campo de Mensaxe é obrigatorio', + ) , +); diff --git a/application/i18n/gl/report.php b/application/i18n/gl/report.php new file mode 100644 index 0000000000..c9d8e82725 --- /dev/null +++ b/application/i18n/gl/report.php @@ -0,0 +1,139 @@ + 'erro!', + 'country_name' => array( + 'single_country' => 'Esta instancia do Ushahidi abrangue só un país. Asegúrese de que a localizacióndo informe está no referido país: %s.', + ) , + 'custom_field' => array( + 'values' => 'Introduza un valor válido para o campo "%s".', + 'numeric' => 'O campo "%s" debe ser numérico.', + 'required' => 'O campo "%s" é obrigatorio.', + 'not_exist' => 'O campo "%s" non existe.', + 'permission' => 'O campo "%s" non pode ser editado dende a súa conta.', + 'email' => 'O campo "%s" debe conter un enderezo de correo válido.', + 'phone' => 'O campo "%s" debe conter un número de teléfono válido.', + 'date_mmddyyyy' => 'O campo "%s" debe conter unha data válida no formato (MM/DD/AAAA).', + 'date_ddmmyyyy' => 'O campo "%s" debe conter unha data válida (DD/MM/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Seleccione un elemento válido para incluir na descarga.', + 'numeric' => 'Seleccione un elemento válido para incluir na descarga.', + ) , + 'data_active' => array( + 'between' => 'Seleccione "Informes Agardando Aprobación" ou "Informes Aprobados" ouámbolos dous.', + 'numeric' => 'Seleccione "Informes Agardando Aprobación" ou "Informes Aprobados" ou ámbolos dous.', + 'required' => 'Seleccione "Informes Agardando Aprobación" ou "Informes Aprobados" ou ámbolos dous.', + ) , + 'data_verified' => array( + 'between' => 'Seleccione "Informes Agardando Verificación" ou "Informes Verificados" ou ámbolos dous.', + 'numeric' => 'Seleccione "Informes Agardando Verificación" ou "Informes Verificados" ou ámbolos dous.', + 'required' => 'Seleccione "Informes Agardando Verificación" ou "Informes Verificados" ou ámbolos dous.', + ) , + 'data_point' => array( + 'between' => 'Seleccione un tipo válido de informe para descargar.', + 'numeric' => 'Seleccione un tipo válido de informe para descargar.', + 'required' => 'Seleccione un tipo válido de informe para descargar.', + ) , + 'format' => array( + 'required' => 'Debe seleccionar un formato de descarfa. Escolla entre CSV e XML.', + 'valid' => 'Seleccione un formato válido no que descargar os seus informes', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'O campo de Data Inicial semella non conter unha data válida.', + 'range' => 'Introduza unha Data Inicial válida. Non pode ser posterior á de hoxe.', + ) , + 'incident_active' => array( + 'between' => 'Introduza un valor correcto para o campo Aprobar este Informe', + 'required' => 'Introduza un valor correcto para o campo Aprobar este Informe', + ) , + 'incident_ampm' => array( + 'validvalues' => 'O campo am/pm semella non conter un valor correcto.', + ) , + 'incident_category' => array( + 'numeric' => 'O campo "Categoría" semella non conter unha categoría válida.', + 'required' => 'O campo "Categoría" é obrigatorio.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'O campo de Data semella non conter unha data válida.', + 'date_mmddyyyy' => 'O campo de Data semella non conter unha data válida.', + 'required' => 'O campo Data é obrigatorio.', + ) , + 'incident_description' => array( + 'required' => 'O campo "Descripción" é obrigatorio', + ) , + 'incident_hour' => array( + 'between' => 'O campo horario semella non conter unha hora válida.', + 'required' => 'O campo horario é obrigatorio.', + ) , + 'incident_information' => array( + 'alpha' => 'Introduza un valor correcto para o campo Probabilidade da Información.', + 'length' => 'Introduza un valor correcto para o campo Probabilidade da Información.', + ) , + 'incident_minute' => array( + 'between' => 'O campo de minutaxe semella non conter un valor axeitado.', + 'required' => 'O campo de minutaxe é obrigatorio.', + ) , + 'incident_news' => array( + 'url' => 'A ligazón da fonte de noticias semella non conter un URL válido.', + ) , + 'incident_photo' => array( + 'size' => 'Asegúrese de que o tamaño das fotos subidas está limitado a 2MB.', + 'type' => 'O campo de Subida de Fotos semella non conter un formato de imaxe válido.Os únicos formatos admitidos son: .JPG, .PNG e .GIF.', + 'valid' => 'O campo de Subida de Fotos non semella conter un arquivo válido.', + ) , + 'incident_source' => array( + 'alpha' => 'Introduza un valor correcto para o campo de Confiabilidade da Fonte.', + 'length' => 'Introduza un valor correcto para o campo de Confiabilidade da Fonte.', + ) , + 'incident_title' => array( + 'length' => 'O campo "Título do Informe" debe contar con alomenos 3 caracteres de lonxitude e non mais de 200.', + 'required' => 'O campo "Título do Informe" é obrigatorio.', + 'csrf' => 'Posible ataque CSRF. Realmente está tentando crear/editar un informe?', + ) , + 'incident_verified' => array( + 'between' => 'Introduza un valor correcto para o campo Verificar este Informe.', + 'required' => 'Introduza un valor correcto para o campo Verificar este Informe.', + ) , + 'incident_video' => array( + 'url' => 'O ligazón do video semella non ser unha URL válida.', + ) , + 'latitude' => array( + 'between' => 'O campo de Latitude semella non conter unha latitude válida.', + 'required' => 'O campo de Latitude é obrigatorio. Prema no mapa para establecer unha localización concreta.', + ) , + 'locale' => array( + 'alpha_dash' => 'O campo de Localización presenta un valor incorrecto.', + 'exists' => 'Este informe xa conta cunha traducción para este idioma.', + 'length' => 'O campo de Localización presenta un valor incorrecto. ', + 'locale' => 'O Informe Orixinal e a Traducción teñen o mesmo "locale" (lingua).', + 'required' => 'O "locale" (lingua) é obrigatorio.', + ) , + 'location_name' => array( + 'length' => 'O campo de Nome da Localización debe contar con alomenos 3 caracteres de lonxitude e non mais de 200.', + 'required' => 'O campo "Nome da Localización" é obrigatorio.', + ) , + 'longitude' => array( + 'between' => 'O campo de Lonxitude non semella conter unha lonxitude válida.', + 'required' => 'O campo de Lonxitude é obrigatorio. Prema no mapa para establecer unha localización.', + ) , + 'person_email' => array( + 'email' => 'O campo Email non semella conter un enderezo de correo válido.', + 'length' => 'O campo Email debe contar con alomenos 4 caracteres de lonxitude e non máis de 64.', + ) , + 'person_first' => array( + 'length' => 'O campo Nome debe contar con alomenos 3 caracteres de lonxitude e non máis de 100.', + ) , + 'person_last' => array( + 'length' => 'O campo Apelido debe contar con alomenos 2 caracteres de lonxitude e non máis de 100.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'O campo de Data Final non semella conter unha data válida.', + 'range' => 'Introduza unha Data Final válida. Non pode ser posterior á de hoxe.', + 'range_greater' => 'A Data Inicial non pode ser posterior á Data Final.', + ) , +); diff --git a/application/i18n/gl/reporters.php b/application/i18n/gl/reporters.php new file mode 100644 index 0000000000..542a1e7d17 --- /dev/null +++ b/application/i18n/gl/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'O campo de Latitude non semella conter unha latitude válida.', + 'required' => 'O campo de Latitude é obrigatorio. Prema no mapa para seleccionar unha localización concreta.', + ) , + 'level_id' => array( + 'numeric' => 'O campo Nivel da/o Informante semella non conter un nivel válido.', + 'required' => 'O campo Nivel da/o Informante semella non conter un nivel válido.', + ) , + 'location_name' => array( + 'length' => 'O campo Nome da Localización debe contar con alomenos 3 e non máis de 200 caracteres de lonxitude.', + 'required' => 'O campo Nome da Localización é obrigatorio.', + ) , + 'longitude' => array( + 'between' => 'O campo de Lonxitude semella non conter unha lonxitude válida.', + 'required' => 'O campo de Lonxitude é obrigatorio. Prema no mapa para establecer unha localización concreta.', + ) , + 'reporter_id' => array( + 'numeric' => 'Informante Incorrecto/a', + 'required' => 'Informante Incorrecto/a', + ) , +); diff --git a/application/i18n/gl/reports.php b/application/i18n/gl/reports.php new file mode 100644 index 0000000000..ef0270a638 --- /dev/null +++ b/application/i18n/gl/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Verifique que seleccionou un elemento.', + 'numeric' => 'Verifique que seleccionou un elemento.', + 'categories_required' => 'Os informes han ser categorizados denantes de seren aprobados.', + ) , + 'action' => array( + 'permission' => 'Non ten permisos para levar a cabo esta acción.', + ) , + 'uploadfile' => array( + 'required' => 'Debe seleccionar un arquivo para subir', + 'type' => 'O arquivo a subir ten que estar en formato .csv ou .xml', + 'valid' => 'O campo de arquivo a subir non semella conter un ficheiro válido', + ) , +); diff --git a/application/i18n/gl/roles.php b/application/i18n/gl/roles.php new file mode 100644 index 0000000000..0e0214ca35 --- /dev/null +++ b/application/i18n/gl/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'O campo Descripción debe contar cunha lonxitude entre 3 e 100 caracteres.', + 'required' => 'O campo Descripción é obrigatorio.', + ) , + 'name' => array( + 'alpha_numeric' => 'O campo Nome só pode conter caracteres alfanuméricos.', + 'length' => 'O campo Nome debe contar cunha lonxitude entre 2 e 30 caracteres.', + 'nomodify' => 'O rol de SuperAdmin non pode modificarse.', + 'required' => 'O campo Nome é obrigatorio.', + ) , + 'access_level' => array( + 'numeric' => 'O campo de Nivel de Acceso debe ser un díxito entre 0 e 100.', + 'required' => 'O campo de Nivel de Acceso debe ser un díxito entre 0 e 100.', + ) , + 'permissions' => array( + 'numeric' => 'O campo Permisos debe ser un díxito entre 0 e 100.', + ) , +); diff --git a/application/i18n/gl/settings.php b/application/i18n/gl/settings.php new file mode 100644 index 0000000000..7fc95918d0 --- /dev/null +++ b/application/i18n/gl/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'O campo Comentarios Permitidos semella non conter datos válidos.', + 'required' => 'O campo Comentarios Permitidos é obrigatorio.', + ) , + 'allow_feed' => array( + 'between' => 'O campo Incluir Feed semella non conter datos válidos.', + 'required' => 'O campo Incluir Feed é obrigatorio.', + ) , + 'allow_feed_category' => array( + 'between' => 'O campo de incluir categoría de feed parece non ter un valor válido.', + 'required' => 'Requírese o campo de incluir categoría de feed.', + ) , + 'allow_alerts' => array( + 'between' => 'O campo Permitir Alertas semella non conter datos válidos.', + 'required' => 'O campo Permitir Alertas é obrigatorio.', + ) , + 'allow_reports' => array( + 'between' => 'O campo Permitir Informes semella non conter datos válidos.', + 'required' => 'O campo Permitir Informes é obrigatorio.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'O campo Compartillar Estatísticas semella non conter datos válidos.', + 'required' => 'O Campo Compartillar Estatísticas é obrigatorio.', + ) , + 'api' => array( + 'default_record_limit' => 'Número predetermiñado de rexistros a procurar en cada solicitude da API', + 'maximum_record_limit' => 'Número máximo de rexistros a procurar en cada solicitude da API', + 'maximum_requests_per_ip_address' => 'Número máximo de solicitudes da API por enderezo IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'O campo Akismet semella non conter datos válidos.', + 'length' => 'O campo Akismet semella non conter datos válidos.', + ) , + 'banner_image' => array( + 'type' => 'O campo Banner do Site semella non conter datos válidos.Os únicos formatos aceptados son .JPG, .PNG e .GIF.', + 'size' => 'Comprobe que o tamaño da "Imaxe do Banner" é menor de 250KB.', + 'valid' => 'O campo de "Imaxe do Banner" semella non conter datos válidos.', + ) , + 'cache_pages' => array( + 'between' => 'O campo Páxinas en Caché é obrigatorio.', + 'required' => 'O campo de Páxinas en Caché semella non conter datos válidos.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'O campo Duración de Páxinas na Caché semella non conter datos válidos.', + 'required' => 'O campo Duración de Páxinas na Caché é obrigatorio.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Semella que o seu servidor non está configurado para empregar URLs limpos.É preciso trocar a configuración do server para activalos. Vexa máis información sobre cómo habilitar os URLs limpos neste post do foro.', + 'clean_url_enabled' => 'Esta opción permite a Ushahidi acceder por medio de URLs "limpos" (sen "index.php" no URL).', + 'enable_clean_url' => 'Activar URLs Limpos', + 'title' => 'URLs Limpos', + ) , + 'clickatell_api' => array( + 'length' => 'O campo de Número API Clickatell debe conter un máximo de 20 caracteres.', + 'required' => 'O campo Número API CLickatell é obrigatorio.', + ) , + 'clickatell_password' => array( + 'length' => 'O campo Contrasinal Clickatell debe conter entre 5 e 50 caracteres de lonxitude.', + 'required' => 'O campo Contrasinal Clickatell é obrigatorio.', + ) , + 'clickatell_username' => array( + 'length' => 'O campo Usuaria/o Clickatell non debe conter máis de 50 caracteres.', + 'required' => 'O campo Usuaria/o Clickatell é obrigatorio.', + ) , + 'configure_map' => 'Configurar Mapa', + 'default_location' => 'Localización Predetermiñada', + 'default_map_all' => array( + 'alpha_numeric' => 'O campo Cor do Feed semella non conter datos válidos.', + 'length' => 'O campo Cor debe contar con non máis de 6 caracteres de lonxitude.', + 'required' => 'O campo Cor é obrigatorio.', + ) , + 'default_map_view' => 'Visualización do Mapa Predetermiñado', + 'default_zoom_level' => 'Nivel de Zoom Predetermiñado', + 'download_city_list' => 'Obter Cidades dende Geonames', + 'email_host' => array( + 'length' => 'O porto do servidor de correo é demasiado alto.', + 'numeric' => 'O campo Porto do Servidor de Correo só pode conter números.', + ) , + 'email_password' => array( + 'length' => 'O contrasinal do Servidor de Correo debe ter entre 5 e 50 caracteres.', + 'required' => 'O Contrasinal do Servidor de Correo é obligatorio.', + ) , + 'email_port' => array( + 'length' => 'O campo Porto do Servidor de Correo é demasiado longo.', + 'numeric' => 'O campo Porto do Servidor de Correo só pode conter números.', + ) , + 'email_servertype' => array( + 'length' => 'O campo Porto do Servidor de Correo é demasiado longo.', + 'required' => 'O campo Servidor de Correo é obrigatorio.', + ) , + 'email_username' => array( + 'length' => 'O campo Nome de Usuaria/o do Servidor de Correo non pode ter máis de 50 caracteres de lonxitude.', + 'required' => 'O campo Nome de Usuaria/o do Servidor de Correo é obrigatorio.', + ) , + 'facebook' => array( + 'title' => 'Opcións de configuración do Facebook', + 'description' => 'Para obter a información referida embaixo é preciso crear unha nova aplicación do Facebook en ', + 'description_2' => 'Esas configuracións permiten que as/os usuarias/os accedan via Facebook. Esto non crea una aplicación para a súa instancia de Ushahidi.', + 'app_id' => 'ID da App do Facebook', + 'app_secret' => 'App Secret do Facebook', + ) , + 'google_analytics' => array( + 'length' => 'O campo Google Analytics debe conter un ID Web Property en formato UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Activar HTTPS', + 'https_disabled' => 'Esta opción fai que se poda acceder ao Ushahidi de xeito inseguro; sen "https://" no prefixo URL.', + 'https_enabled' => 'Esta opción fai que se poda acceder ao Ushahidi de xeito seguro; con "https://" no prefixo URL.', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Semella que o campo Elementos por Páxina (Frontend) non contén un valor correcto.', + 'required' => 'O campo Elementos por Páxina (Frontend) é obligatorio.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Semella que o campo Elementos por Páxina (Admin) non contén un valor correcto.', + 'required' => 'O campo Elementos por Páxina (Admin) é obrigatorio.', + ) , + 'map' => array( + 'default_location' => 'Configurar o provedor de mapas é un proceso sinxelo. Seleccione un provedor, obteña una chave para a API do site e dixite o código da mesma.', + 'zoom' => 'Nivel de Zoom', + ) , + 'map_provider' => array( + 'choose' => 'Seleccione un Provedor de Mapas', + 'enter_api' => 'Introduza a nova Chave da API', + 'get_api' => 'Obteña unha Chave API', + 'info' => 'Configurar o provedor de mapas é un proceso sinxelo. Seleccione un provedor, obteña una chave para a API do site e dixite o código da mesma.', + 'name' => 'Provedor de Mapas', + ) , + 'map_timeline' => 'Liña de Tempo do Mapa', + 'map_settings' => 'Configuracións do Mapa', + 'multiple_countries' => 'Esta instancia do Ushahidi abrangue varios paises?', + 'select_default_location' => 'Seleccione o país predetermiñado', + 'set_location' => 'Prema e arrastre no map para establecer a súa localización exacta', + 'site' => array( + 'allow_clustering' => 'Agrupar Informes no Mapa', + 'allow_comments' => 'Permitir ás/aos usuarias/os enviar Comentarios nos Informes', + 'allow_feed' => 'Incluir Feed de Novas no site', + 'allow_feed_category' => 'Crear nova Categorñia dende os Feeds', + 'allow_alerts' => 'Permitir ás/aos usuarias/os suscribirse ás Alertas', + 'allow_reports' => 'Permitir ás/aos usuarias/os Enviar Informes', + 'api_akismet' => 'Chave do Akismet', + 'banner' => 'Banner do Site', + 'blocks_per_row' => 'Bloques por Liña', + 'cache_pages' => 'Páxinas en Caché', + 'cache_pages_lifetime' => 'Duración das Páxinas na Caché', + 'checkins' => 'Activar Checkins', + 'copyright_statement' => 'Política sobre Direitos de Autoría', + 'default_category_colors' => 'Cor predetermiñada para as categorías', + 'default_category_icons' => 'Icona predetermiñada para as categorías', + 'delete_banner_image' => 'Borrar Imaxe do Banner', + 'delete_default_map_all_icon' => 'Borrar Icona Predetermiñada', + 'display_contact_page' => 'Amosar Páxina de Contacto', + 'display_howtohelp_page' => 'Amosar Páxina "Cómo Axudar"', + 'email_alerts' => 'Enderezo de Mail para Alertas', + 'email_notice' => 'Para receber alertas por email, configure a súa conta de correo.', + 'email_site' => 'Enderezo de Correo do Site', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Elementos por Páxina - Frontend', + 'items_per_page_admin' => 'Elementos por Páxina - Admin', + 'kismet_notice' => 'Preveña spam nos comentarios empregando o Akismet do Automattic.
Pode obter gratuitamente unha chave API rexistrándose en WordPress.com', + 'laconica_configuration' => 'Credenciáis de Laconica', + 'laconica_site' => 'Site Laconica', + 'language' => 'Lingua do Site', + 'manually_approve_users' => 'Aprobar Manualmente Usuarias/os', + 'message' => 'Mensaxe do Site', + 'name' => 'Nome do Site', + 'private_deployment' => 'Instancia Privada', + 'require_email_confirmation' => 'Precisa Confirmación por Email da/o Usuaria/o', + 'submit_report_message' => 'Enviar Mensaxe co Informe', + 'share_site_stats' => 'Compartillar Estatísticas do Site', + 'tagline' => 'Eslogan do Site', + 'timezone' => 'Timezone', + 'title' => 'Configuracións do Site', + 'twitter_configuration' => 'Configuracións do Twitter', + 'twitter_hashtags' => 'Hashtags - Separados por comas ', + 'feed_geolocation_user' => 'Geoloclaización dos Feeds - Nome de usuario Xeonomes', + ) , + 'site_email' => array( + 'email' => 'O campo Email do Site semella non conter una enderezo de correo válido.', + 'length' => 'O campo Email do Site debe contar cun número de caracteres entre 4 e 100.', + ) , + 'site_name' => array( + 'length' => 'O campo Nome do Site debe contar cun número de caracteres entre 3 e 50.', + 'required' => 'O campo Nome do Site é obrigatorio.', + ) , + 'site_tagline' => array( + 'length' => 'O campo Eslogan debe contar cun número de caracteres entre 3 e 100.', + 'required' => 'O campo Eslogan é obrigatorio', + ) , + 'sms' => array( + 'clickatell_api' => 'Número da API Clickatell', + 'clickatell_check_balance' => 'Comprobar saldo dispoñible no Clickatell ', + 'clickatell_load_balance' => 'Cargar Saldo', + 'clickatell_password' => 'Contrasinal do Clickatell', + 'clickatell_text_1' => 'Suscríbase ao servizo Clickatell nesta ligazón.', + 'clickatell_text_2' => 'Introduza os datos de acceso a Clickatell de seguido', + 'clickatell_username' => 'Nome de Usuaria/o do Clickatell', + 'flsms_description' => 'FrontlineSMS é un software libre e de código aberto que permite a usuarias/os enviar e recibir mensaxes de texto colectivamente por medio de teléfonos móviles. Prema na caixa abaixo para descargar a última versión dende FrontlineSMS.com.', + 'flsms_download' => 'Baixar e instalar FrontlineSMS', + 'flsms_instructions' => 'Instruccións detalladas de cómo enviar SMS\'s dende FronlineSMS estam dispoñibles acó. O URL e a chave API son datos necesarios para a sincronización con FrontlineSMS.', + 'flsms_link' => 'Copiar e pegar esto no campo "Enderezo" do FrontlineSMS.', + 'flsms_key' => 'Copiar e pegar esto no campo "Ushahidi API Key" do FrontlineSMS.', + 'flsms_synchronize' => 'Conectando FrontlineSMS con esta instancia do Ushahidi', + 'flsms_text_1' => 'Conectar número(s) de teléfono ao Frontline SMS no campo seguinte', + 'flsms_text_2' => 'Introducir o número sen nengún + e sen guións ', + 'option_1' => 'Opción 1: Empregar Frontline SMS', + 'option_2' => 'Opción 2: Empregar unha pasarela SMS externa', + 'title' => 'Opcións de configuración do SMS', + ) , + 'sms_no1' => array( + 'length' => 'O campo Teléfono 1 semella conter un valor incorrecto.', + 'numeric' => 'O campo Teléfono 1 debe conter únicamente números.', + ) , + 'sms_no2' => array( + 'length' => 'O campo Teléfono 2 é demasiado longo.', + 'numeric' => 'O campo Teléfono 2 debe conter únicamente números.', + ) , + 'sms_no3' => array( + 'length' => 'O campo Teléfono 3 é demasiado longo.', + 'numeric' => 'O campo Teléfono 3 debe conter únicamente números.', + ) , + 'twitter' => array( + 'title' => 'Opcións de Configuración do Twitter', + 'description' => 'Para obter as informacións requeridas, configure a súa instancia do Ushahidicomo unha nova aplicación Twitter en ', + 'api_key' => 'Consumer Key', + 'api_key_secret' => 'Consumer Secret', + 'token' => 'Access Token', + 'token_secret' => 'Access Token Secret', + ) , + 'test_settings' => 'Configuracións de test', +); diff --git a/application/i18n/gl/sharing.php b/application/i18n/gl/sharing.php new file mode 100644 index 0000000000..7e7df9cf01 --- /dev/null +++ b/application/i18n/gl/sharing.php @@ -0,0 +1,25 @@ + 'Data de ingreso', + 'date_added' => 'Data da Engádega', + 'last_access' => 'Derradeiro Acceso', + 'sharing_color' => array( + 'length' => 'O campo Cor debe contar con alomenos 6 caracteres de lonxitude.', + 'required' => 'O campo Cor é obrigatorio.', + ) , + 'sharing_name' => array( + 'length' => 'O nome para Compartillar semella non ser válido.', + 'required' => 'Un nome para Compartillar é obligatorio.', + ) , + 'sharing_url' => array( + 'exists' => 'O URL do site xa existe.', + 'length' => 'O URL do site semella non ser válido.', + 'required' => 'O URL do site é obrigatorio.', + 'url' => 'O campo URL do Site semella no conter un URL válido.', + ) , +); diff --git a/application/i18n/gl/stats.php b/application/i18n/gl/stats.php new file mode 100644 index 0000000000..753dd19882 --- /dev/null +++ b/application/i18n/gl/stats.php @@ -0,0 +1,42 @@ + 'Aprobado', + 'categories' => 'Categorías', + 'category_impact' => 'Impacto da Categoría', + 'category_impact_description' => 'Este gráfico fornece unha visión liñal dos informes por categoría ao longo do tempo. Desprázese de esquerda a direita para visualizar compariativamente as diferentes categorías. Pase o rato por riba do gráfico para obter máis detalle.', + 'choose_date_range' => 'Escolla un rango de datas.', + 'countries' => 'Países', + 'country' => 'País', + 'country_breakdown' => 'Por País', + 'description' => 'Esta é a sección de estatísticas. Haberá descripcións xerais a pouco. Polo de agora, navegue empregando as ligazóns das subcategorías enriba.', + 'error' => 'Erro', + 'glossary' => 'Glosario', + 'hit_summary' => 'Resumo de Hits', + 'legend' => 'Lenda', + 'pageviews' => 'Páxinas Vistas', + 'pageviews_description' => 'O número total das páxinas que as/os visitantes visualizaron no site', + 'reports' => 'Informes', + 'reports_categories' => 'Categorías de Informes', + 'reports_statistics' => 'Estatísticas dos Informes', + 'reports_status' => 'Estado dos Informes', + 'report_punchcard' => 'Avaliación Puntual do Informe', + 'report_stats' => 'Estatísticas do Informe', + 'stats_not_setup' => 'Estatísticas non configuradas', + 'time_range_1' => '1 Mes', + 'time_range_2' => '3 Meses', + 'time_range_3' => '6 Meses', + 'time_range_all' => 'Todos', + 'unapproved' => 'Non aprobado', + 'unique_visitors' => 'Visitantes Individuáis', + 'unique_visitors_description' => 'Cantidade de individuos visitando o site. Este dato é determiñado por medio de cookies. En caso de que a/o visitante non teña habilitado o uso de cookies, será identificada/o empregando unha análise heurística simple que terá en conta elementos como o enderezo IP, a resolución, o navegador, os plugins, o sistema operativo, etc. ', + 'unverified' => 'Non Verificado', + 'verified' => 'Verificado', + 'visitor_summary' => 'Resumo de Visitantes', + 'visits' => 'Visitas', + 'visits_description' => 'Unha visita é definida como o rexistro dunha única persoa accedendo ao site despois de teren transcurridos máis de 30 minutos dende a última páxina visualizada.', +); diff --git a/application/i18n/gl/tooltips.php b/application/i18n/gl/tooltips.php new file mode 100644 index 0000000000..e6f95412f0 --- /dev/null +++ b/application/i18n/gl/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'Esto inclúe informes de categorías adicionáis. Se selecciona Categoría 1 eiquíe o Informe xa ten a Categoría 2 vencellada, o Informe terá asociadas ambalasdúas.', + 'approve' => 'Aproba o informe ou non. Se o aproba, aparecerá publicado.', + 'assign_badge' => 'Poderá asignar un distintivo a un/ha usuario/a disparador/a', + 'between_times' => 'Trátase dun rango horario entre dous espazos de tempo en formato de 24hs. Se se introduce un tempo anterior no segundo campo, trocarase cara ao primeiro. Ambos tempos deben estar no mesmo día. Amais, este tempo é comparado co que se estableceu no site nas configuracións e pode non estar definidonecesariamente no mesmo fuso horario da/o usuaria/o que participa no Ushahidi.Deixe os valores a 00:00 e 00:00 para ignorar este habilitador.', + 'category' => 'Se quere activar un disparador só cando certa categoría estea sendo usada pode facelo eiquí. Esto permite cun disparador se active únicamente candose empregue determiñada categoría. Por exemplo, se se seleccionan as Categorías 1 e 2 eiquí e un informe é enviado empregando as Categorías 2 e 3, o informe pasará o test.', + 'days_of_the_week' => 'Se esas accións acontecen en certos días da semana, defínao eiquí. Teña en conta que o día determíñase segundo o fuso horario configurado na súa instancia do Ushahidi. Empregue Shift, Command ou Control para seleccionar múltiples días.', + 'email_body' => 'Corpo do correo a enviar.', + 'email_subject' => 'Asunto do correo a enviar.', + 'feed_id' => 'O feed pode ser de todolos feeds ou dun feed específico. Se se quere que só certos feeds activen un disparador, débense escoller eiquí. En caso contrario deixe esto co valor predetermiñado: "todos"', + 'from' => 'Nome da/o usuario/a no Twitter (ou múltiples nomes separados por comas). Se ten intención de activar disparadores só para twits dun/ha usuario/a concreto/a introduza o seu nome eiquí (sen incluir a @)', + 'keywords' => 'Pódese deixar en branco se non se queren verificar palabras-chave. Se se engaden palabras eiquí, hainas que separar con comas (,). Por exemplo, se se queren activar disparadores cando alguén mencione "amor" ou "paz"na súa mensaxe, haberá que engadir: "paz, amor" na caixa de palabras-chave.', + 'location' => 'Pódese seleccionar calquera lugar ou unha localización específica. Neste último caso, solicitarase que debuxe unha caixa delimitando a área que require unha acción. Por exemplo, se se quere cun disparador se active cando alguén presente un informe sobre Ourense, hai que seleccionar "área específica" e deseguido debuxar unha "caixa" en torno a Ourense. Pódense facer éstas tan grandes ou pequenas como se queira. Tamén é posible debuxar múltiples caixas.', + 'on_specific_count' => 'Este habilitador activará o disparador na conta nº X contrastándoa contra o conxunto de usuarias/os ou para cada usuaria/o individualmente. Deixeo en branco se prefire ignoralo.', + 'report_title' => 'Este é o título predetermiñado para engadir a un informe.', + 'response' => 'Se tódolos habilitadores enriba estivesen activos, o disparador iniciaría unha resposta. Esto pode ser dende aprobar un Informe a Enviar un Email a un/ha usuario/a. Seleccione eiquí a resposta para activar opcións adicionáis para respostas específicas.', + 'send_to' => 'Se selecciona "Usuario/a Disparador/a", o correo será enviado a/ao usuaria/o que executou a acción concreta. Se se selecciona o botón de radio ao carón da caixa de entrada, poderá incluir un enderezo de correo persoalizado. Ésto é útil se se están configurando disparadores para notificar á xente cando certas zonas no mapa reciben informes, chekins ou calqueira outra actividade.', + 'specific_days' => 'Pode seleccionar múltiples días eiquí. As datas veñen determiñadas polo fuso horario definido na configuración do site. Se non selecciona nengunha data, o sistema amosará predetermiñadamente tódalas datas.', + 'trigger' => 'O disparador é o compoñente central na configuración das Accións Disparadoras.Eiquí é onde se determiña qué acontecerá cando alguén envíe un informe, faga un checkin, etc. Eiquí pode filtrar as respostas a esas accións despois de seleccionar un disparador.', + 'user' => 'A/o usuaria/o pode ser un/ha calquera ou un/ha específico/a. Se se quere traballar con un/ha concreto/a, hai que seleccionalo/a. En caso contrario, hai que deixar o valor a "calquera" xa que a maioría dos disparadores establécense para tódalas/os usuarias/os que interactúan co sistema.', + 'verify' => 'Marca o informe como verificado ou non.', + ) , + 'change_picture' => 'As páxinas de perfil no site empregan Gravatar. Ao premer na súa imaxe, será redirixida/o ao site Gravatar onde poderá trocar a súa foto de perfil.', + 'default_value' => 'Separe cada valor cunha coma, p.ex. valor1, valor2.', + 'radio_choices' => 'Separe cada valor cunha coma, p.ex. valor1, valor2. No caso de querer definir un valor predetermiñado, remate a súa lista de opcións con: "::" P.ex. se quere que o valor3 sexa o predetermiñado, a cousa sería: valor1, valor2, valor3::valor3', + 'dropdown_choices' => 'Separe cada elemento seleccionado cunha coma, p.ex.: Elemento1, Elemento2, etc.', + 'private_to' => 'Comence a escreber a lista de membros.', + 'private_subject' => 'Asunto da mensaxe privada', + 'private_message' => 'Mensaxe privada', + 'profile_color' => 'Pode seleccionar unha cor que será a que apareza baixo a súa imaxe no perfil público. Esta cor será tamén asociada aos puntos dos seus checkins no mapa.', + 'profile_email' => 'O seu enderezo de correo', + 'profile_name' => 'Este é un dos xeitos nos que será identificado no site. Téñao en conta, pois é un dato público!', + 'profile_new_password' => 'Se se define, éste ha ser o seu novo contrasinal. Deixe o campo en branco se prefire manter o actual.', + 'profile_new_users_password' => 'Esto é un requisito cando se crea un/ha novo/a usuario/a e establece os seus respectivos contrasináis. Debe avisar ás/aos novas/os usuarias/os de que troquen o seu contrasinal ao acceder por vez primeira á conta.', + 'profile_notify' => 'Ao seleccionar SÍ, recibirá alertas via mail en canto un novo informe ou un comentario sexa publicado no site.', + 'profile_password' => 'O seu contrasinal actual. É preciso que introduza o seu contrasinal para impedir que alguén sen autorización poda trocar cousas na súa conta.', + 'profile_public' => 'O seu perfil será visible para calqueira en Internet se selecciona esto. Ao mesmo tempo é tamén o xeito máis sinxelo de amosar nunha soa páxina os informes que enviou, os seus checkins, identificativos, etc.', + 'profile_public_url' => 'Este é o enderezo no que o seu perfil público pode ser topado.', + 'profile_username' => 'O seu nome de usuaria/o non pode ser cambiado.', + 'settings_access_level' => 'Os nivéis de acceso son empregados para restrinxir o acceso aos datos dos campos persoalizados dos formularios. Maiores nivéis de acceso permiten manexar nivéis mais baixos. A/o superadmin ten o nivel máis alto de acceso (100). Os datos públicos son accesibles no máis baixo nivel (0). Os membros teñen o nivel de acceso 10. A/o admin ten predetermiñado o nivel 90.', + 'settings_alert_email' => 'Este é o enderezo de correo que será empregado para enviar alertas por email.', + 'settings_allow_alerts' => 'Permite ás/aos usuarias/os suscribirse a alertas via web.', + 'settings_allow_clustering' => 'Permite agrupar informes similares nun só punto do mapa.', + 'settings_allow_comments' => 'Permite ás/aos usuarias/os comentar nos informes do site principal. ', + 'settings_allow_feed' => 'Permite amosar os RSS\'s de novas no site principal.', + 'settings_allow_feed_category' => 'Isto permite crear unha nova Categoría dende as fontes de Noticias RSS', + 'settings_allow_reports' => 'Permite ás/aos usuarias/ps enviar información via formulario web.', + 'settings_api_default_record_limit' => 'Número predetermiñado de rexistros solicitados en cada chamada da API.', + 'settings_api_max_record_limit' => 'Número máximo de rexistros solicitados en cada chamada á API.', + 'settings_api_max_requests_per_ip' => 'Número máximo de chamadas á API por enderezo IP.', + 'settings_banner' => 'O banner do site aparece na cima frontal do seu site se o tema que emprega o permite. O tamaño recomendado para esta faixa ha depender do tema. Teña en conta que o mesmo substitúe o título e o lema do site na mesma posición do frontal.', + 'settings_blocks_per_row' => 'Número de columnas do bloque que serán amosadas en cada liña.', + 'settings_cache_pages' => 'Activar ou desactivar a caché das páxinas. Esto permite que as páxinas se amosen mais axiña pois reduce o tempo de resposta. Recoméndase empregalo en sites con moito tráfico. Lembre que os informes aparecerán na páxina principal conforme o planexamento de tarefas que se definira (tempo de vida da caché).', + 'settings_cache_pages_lifetime' => 'Definir o tempo de vida da caché.', + 'settings_checkins' => 'Esta configuración permite empregar checkins no seu Ushahidi. Trátase dunha clase de informe simplificado que non pasa por moderación antes de ser publicado e requiere que o site sexa configurado de certo xeito. Ao habilitar esta opción, comprobe que a súa configuración do fuso horario está en formato UTC e que o seu tema soporta os checkins. Cando active esta opción, os temas baseados en checkin aparecerán habilitados na páxina de configuración de addons/temas.', + 'settings_configure_map' => 'Configurar o mapa para cubrir unha localización concreta.', + 'settings_default_category_colors' => 'Seleccionar un código de cor para tódalas categorías no site.', + 'settings_default_category_icons' => 'Seleccionar unha icona para tódalas categorías no site.', + 'settings_default_location' => 'Este é o país sobre o que o site traballa.', + 'settings_display_contact' => 'Activa ou desactiva a lapela de Contacto no site principal.', + 'settings_display_howtohelp' => 'Activa ou desactiva a lapela de Axuda no site principal.', + 'settings_display_items_per_page' => 'Este é o número de informes que se amosan por páxina no site principal.', + 'settings_display_items_per_page_admin' => 'Este é o número de informes amosados por páxina no Panel de Control.', + 'settings_flsms_download' => 'Este é o hub para as mensaxes de entrada.', + 'settings_flsms_synchronize' => 'Esto sincroniza as mensaxes no hub coa plataforma Ushahidi.', + 'settings_flsms_text_1' => 'Números de teléfono atraverso dos que chegan mensaxes de texto.', + 'settings_google_analytics' => 'Rastrexa os visitantes do seu site. Amosa estatísticas polo miúdo.', + 'settings_locale' => 'Selecciona a a lingua que será usada no site.', + 'settings_manually_approve_users' => 'Se fixa esta opción a "sí", deberá aprobar a cada usuaria/o individual que cree unha conta no site asignándolle os correspondentes roles (p.ex. Membro, Admin, SuperAdmin).', + 'settings_map_provider' => 'Esto define qué mapa será empregado no sitio.', + 'settings_map_timeline' => 'Esto amosa unha liña de tempo baseada na data e hora dos informes que se envíen.', + 'settings_private_deployment' => 'Fixando este valor a "verdade" ou "sí" o Ushahidi será privado e só as/os usuarias/os con conta que se especifiquen poderán acceder ao mesmo.', + 'settings_require_email_confirmation' => 'As/os usuarias/os recibirán un email cunha ligazón de confirmación antes de poder acceder ao Ushahidi se isto é fixado a "sí". Se activa isto despois de que o site xa teña creado usuarias/os, solicitaráselles confirmar a súa conta antes de permitírselles continuar o acceso.', + 'settings_server_host' => 'Este é o lugar onde os emails serán arquivados.', + 'settings_server_password' => 'Este é o contrasinal do enderezo de correo que recibirá os informes.', + 'settings_server_port' => 'Esto é preciso para aceptar as conexións entrantes dende este enderezo de correo.', + 'settings_server_ssl_support' => 'Esto é preciso para aumentar a seguridade da conexión.', + 'settings_server_type' => 'Esto é preciso para recibir emails dende o servidor de correo.', + 'settings_server_username' => 'Este é o enderezo de correo que recibirá os informes.', + 'settings_share_site_stats' => 'As estatísticas de visitas son gardadas no server controlado polo Ushahidi. Activando esta opción, poderá visualizar os datos de acceso directamente dende o panel de administración. Deshabilitandoo déixanse de recabar estatísticas e non haberá acceso aos datos gardados mentras a función siga deshabilitada.', + 'settings_site_copyright_statement' => 'Quere permitir a outras persoas republicar o texto, as imaxes, os videos ou mesmo o deseño do site que vostede ou as/os usuarios teñen creado eiquí? Vaia a https://creativecommons.org/choose/ se ten interese en especificar cunha licenza o que outras/os poden facer co seu traballo. E lembre especificar claramente qué elementos do site está licenciando.', + 'settings_site_email' => 'Este é o enderezo de correo que recibirá informes e mensaxes dende o formulario de contacto.', + 'settings_site_message' => 'Este é o texto que aparecerá na cima do mapa ma páxina principal. É útil para ofrecer información importante as/aos visitantes do site. Para eliminar a caixa simplemente borre esta mensaxe.', + 'settings_site_name' => 'Este é o nome do site que aparecerá na cima da páxina principal.', + 'settings_site_submit_report_message' => 'Esta é a mensaxe que aparecerá na páxina de envío dos informes. É un bó lugar para avisos ou instruccións adicionáis para as/os informantes.', + 'settings_site_tagline' => 'En poucas palabras, explique en qué consiste o site.', + 'settings_site_timezone' => 'Este é o fuso horario no que o seu site traballa, cousa que terá repercusión en cada acción que se teña configurado que empregue datas ou horas, tanto no horario predetermiñado dos informes como na interacción externa ou nos mecanismos internos do site.', + 'settings_twitter_configuration' => 'Defina o hashtag asociado ao proxecto no twitter', +); diff --git a/application/i18n/gl/ui_admin.php b/application/i18n/gl/ui_admin.php new file mode 100644 index 0000000000..11bf915b83 --- /dev/null +++ b/application/i18n/gl/ui_admin.php @@ -0,0 +1,329 @@ + 'Acceso denegado. As súas credenciáis non son correctas ou a súa solicitudefoi rexeitada.', + 'access_denied_others' => 'Acceso denegado. A súa solicitude foi procesada mais denegada por exceder o límite de tempo. Probe de novo máis tarde.', + 'access_level' => 'Nivel de Acceso', + 'actions' => 'Accións', + 'add_to_category' => 'Engadir Categoría', + 'added' => 'engadido', + 'added_edited' => 'engadido/editado', + 'addons' => 'Extensións', + 'admin_role' => 'Admin', + 'alerts' => 'Alertas', + 'alerts_received' => 'Alertas Recibidas', + 'all' => 'Todo', + 'am' => 'AM', + 'anonymous' => 'Anónimo', + 'anyone_role' => 'Nengún', + 'anywhere' => 'En calquera sitio', + 'api_banned' => 'API Bloqueada', + 'api_logs' => 'Logs da API', + 'api_settings' => 'Configuracións da API', + 'api_unban' => 'DESBLOQUEAR', + 'api_unban_all' => 'DESBLOQUEAR TODO', + 'approved' => 'aprobado', + 'approve_auto' => 'Aprobar Automáticamente', + 'approve_manual' => 'Aprobación Manual', + 'archived' => 'Arquivado', + 'are_you_sure_you_want_to' => 'Confirme que quere', + 'are_you_sure_you_want_to_delete_this_item' => 'Confirme que quere borrar este elemento.', + 'are_you_sure_you_want_to_delete_this_photo' => 'Confirme que quere borrar esta foto.', + 'are_you_sure_you_want_to_switch_forms' => 'Confirme o cambio de formulario.', + 'assign' => 'Asignar', + 'assignments' => 'Asignacións', + 'assign_badge' => 'Asignar Distintivo', + 'author' => 'Autor/a', + 'author_email' => 'Email do/a Autor/a ', + 'back' => 'Voltar', + 'banip_action' => 'Bloquear IP', + 'between_times' => 'Entre Tempos', + 'blocks' => 'Bloques', + 'body' => 'Corpo', + 'cancel' => 'Cancelar', + 'categories' => 'Categorías', + 'chart_display_error' => 'Erro amosando o gráfico', + 'check_message_valid' => 'Asegúrese de que a mensaxe é válida.', + 'check_number' => 'Asegúrese de que o número é válido.', + 'check_sms_settings' => 'Comprobe as configuracións SMS!', + 'checkin_details' => 'Detalles de Checkin', + 'checkins' => 'Chekins', + 'cities_loaded' => 'Cidades cargadas', + 'code' => 'código', + 'code_out_of_sync' => 'Versión do código desincronizada.', + 'color' => 'Cor', + 'comments' => 'Comentarios', + 'confirmation_code' => 'O código de confirmación de alertas é: ', + 'confirm_msg' => 'A/o Usuaria/o foi', + 'count' => 'Contador', + 'country_not_found' => 'País Non Atopado', + 'created_edited' => 'creado/editado', + 'create_report' => 'Crear un Informe', + 'critical_upgrade' => 'Actualización Crítica', + 'csv' => 'CSV', + 'currently_active' => 'Activo Arestora', + 'currently_inactive' => 'Inactivo Arestora', + 'custom_forms_insufficient_permissions' => 'Non ten permisos abondo para editar os seguintes campos persoalizados.', + 'daily' => 'Diario', + 'dashboard' => 'Panel de Control', + 'database' => 'base de datos', + 'date_time' => 'Data e Hora', + 'date_added' => 'Data Engadida', + 'date_modified' => 'Data Modificada', + 'days_of_the_week' => 'Días da semana', + 'db_out_of_sync' => 'Versión da base de datos desactualizada.', + 'deleted' => 'borrado', + 'delete_action' => 'Borrar', + 'delete_all' => 'Borrar tódolos informes', + 'delete_badge' => 'Borrar Distintivo', + 'demo' => 'Demo', + 'description' => 'Descripción', + 'disabled' => 'Desactivado', + 'divider_start_field' => 'Iniciar Divisor', + 'divider_end_field' => 'Rematar Divisor', + 'divider_class' => 'div class', + 'download_reports' => 'Baixar Informes', + 'dropdown_choices' => 'Opcións do menú', + 'edited' => 'EDITADO', + 'edited_by' => 'Editado Por', + 'edit_action' => 'Editar', + 'edit_log' => 'Editar Log', + 'email' => 'Email', + 'entire_collective' => 'Colectivo', + 'error_geocoding' => 'Erro na xeocodificación! Erro HTTP', + 'error_imap' => 'A Biblioteca PHP para IMAP non está instalada', + 'error_twitter' => 'Credenciáis Incorrectas', + 'error_msg' => 'Erro', + 'error_post_incident' => 'Erro, non foi posible publicar o incidente ', + 'every_six_hours' => 'A Cada Seis Horas', + 'every_twelve_hours' => 'A Cada Doce Horas', + 'experimental' => 'Experimental', + 'faqs' => 'FAQ\'s', + 'feed' => 'feed', + 'feedback' => 'Feedback', + 'feeds' => 'feeds', + 'field_choices' => 'Lista de Opcións', + 'field_default' => 'Valor Predetermiñado', + 'field_datatype' => 'Tipo de Dato', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numérico', + 'field_datatype_text' => 'Texto Libre', + 'field_height' => 'Altura (en liñas)', + 'field_hidden' => 'Campo Oculto', + 'field_maxlength' => 'Lonxitude Máxima de Caracteres', + 'field_name' => 'Nome do Campo', + 'field_toggle' => 'Alternar', + 'field_toggle_no' => 'Non', + 'field_toggle_yes_close' => 'Sí, fechado por omisión', + 'field_toggle_yes_open' => 'Sí, aberto por omisión', + 'file_not_found_upload' => 'Non se topa o arquivo subido', + 'file_open_error' => 'Non se pode abrir para lectura o arquivo', + 'form_not_exists' => 'Este Formulario Non Existe!', + 'forum' => 'Foro', + 'free_text_field' => 'Campo de Área de Texto (Texto Libre)', + 'date_field' => 'Campo de Data', + 'radio_field' => 'Campo de Botóns de Opción', + 'checkbox_field' => 'Campo de Caixas de Verificación', + 'dropdown_field' => 'Campo de Listado de Opcións', + 'from' => 'De', + 'from_date' => 'De', + 'geonames_timeout' => 'Erro no Tempo de Espera en Geonames', + 'get_help' => 'Obteña Axuda', + 'get_more_themes' => 'Obteña máis Temas', + 'get_more_plugins' => 'Obteña máis plugins', + 'header_actions' => 'Accións', + 'header_add_edit' => 'Engadir/Editar', + 'header_email' => 'Email', + 'header_manage_users' => 'Xestión de Usuarias/os', + 'header_role' => 'Rol', + 'header_user' => 'Usuaria/o', + 'help' => 'axuda', + 'hourly' => 'A cada hora', + 'incident_feed' => 'Feed de Incidente para', + 'installer_info' => 'O directorio de instalación ainda existe. Bórreo, é un burato potencial na seguridade!', + 'instance' => 'Instancia', + 'instances' => 'Instancias', + 'instance_details' => 'Detalles da Instancia', + 'invalid_parameter' => 'Parámetro non válido', + 'ip_address' => 'Enderezo IP', + 'is_date' => 'É un Campo de Data?', + 'ispublic_visible' => 'Quén pode visualizar respostas', + 'ispublic_submit' => 'Quén pode enviar respostas', + 'keyword' => 'Palabra Chave', + 'keywords' => 'Palabras Chave', + 'label_email' => 'Enderezo de Correo:', + 'label_full_name' => 'Nome Completo', + 'label_password' => 'Contrasinal:', + 'label_role' => 'Rol', + 'label_username' => 'Nome de Usuaria/o:', + 'layers' => 'Capas', + 'login_role' => 'Moderador/a', + 'logout' => 'Saír', + 'logs' => 'Logs', + 'manage' => 'Xestión', + 'manage_roles' => 'Xestión de Roles e Permisos', + 'manage_users' => 'Visualizar Usuarias/os', + 'manage_users_edit' => 'Engadir/Editar Usuarias/os', + 'manage_public_listing' => 'Xestione a súa Lista Pública', + 'mark_as' => 'Marcar Como', + 'marked_as_not_spam' => 'marcado como non-spam', + 'marked_as_spam' => 'marcado como spam', + 'match_no_documents' => 'non se atoparon coincidencias nos documentos', + 'message' => 'Mensaxe', + 'messages' => 'Mensaxes', + 'messages_laconica' => 'Mensaxes de Laconica', + 'messages_twitter' => 'Mensaxes de Twiter', + 'message_sent' => 'A súa mensaxe foi enviada!', + 'mhi' => 'MHI', + 'minute' => 'Minuto', + 'minutes' => 'Minutos', + 'missing_parameter' => 'Parámetro Faltante', + 'moderator' => 'Moderador/a', + 'modified' => 'modificado', + 'modify_timezone' => 'Modificar Configuracións do Timezone', + 'move_down_action' => 'mover abaixo', + 'move_up_action' => 'mover arriba', + 'multiple_hosted_instances' => 'Instancias Múltiples Hospedadas', + 'my_alerts' => 'As miñas Alertas', + 'my_checkins' => 'Os meus Chekins', + 'my_profile' => 'O meu Perfil', + 'my_reports' => 'Os meus Informes', + 'my_votes' => 'Votos Repartidos', + 'my_votes_up' => 'Positivo', + 'my_votes_down' => 'Negativo', + 'name' => 'Nome', + 'new_alert' => 'Crear Alerta Nova', + 'new_private' => 'Crear Mensaxe Nova', + 'new_password' => 'Novo Contrasinal', + 'no' => 'Non', + 'none_category_explanation' => 'Ésta é unha categoría especial que non aparecerá no formulario de envío de informes das/os usuarias/os. Emprégase para gardar informes non categorizados de resultas de ter borrado explícitamente a categoría.', + 'notification' => 'Notificación', + 'not_case_sensitive' => 'Non diferencia entre maiúsculas e minúsculas.', + 'not_found' => 'Non Atopado', + 'no_data' => 'Sen datos. Non hai resultados que amosar.', + 'no_error' => 'Sen Erro', + 'no_result_display_msg' => 'Non hai resultados!', + 'of' => 'de', + 'on_specific_count' => 'Nun conteo específico', + 'openids' => 'OpenID\'s', + 'page' => 'páxina', + 'pages' => 'páxinas', + 'page_not_found' => 'Páxina Non Topada', + 'page_not_found_message_with_contact' => 'A páxina á que está tentando acceder non existe.

Premeu nunha ligazóndalgunha páxina do noso site?
Se é así, por favorpóñase en contacto connosco para que podamos solucionar o problema.

Se premeu nunha ligazón doutro site, pode que ésta se atope desactualizada ou mal definida

Indíquenos quén a aloxa e entón tentaremos poñernos en contacto con elespara tentar amañar o problema.

Escribiu a URL?
Puidera ser que estea mal escrito o enderezo (URL). Compróbeo para desbotar erros tipográficos emprego de maiúsculas, etc.

', + 'page_not_found_message' => 'A páxina que está tentando visualizar non se atopa no site.', + 'parameters_used' => 'Parámetros Empregados', + 'password' => 'Contrasinal', + 'password_reset' => 'Redefinir Contrasinal', + 'password_reset_message_line_1' => 'Estimada/o', + 'password_reset_message_line_2' => 'Recibimos unha solicitude para restaurar o contrasinal de', + 'password_reset_message_line_3' => 'Para trocar o seu contrasinal, prema na ligazón seguinte (ou cópiea e péguea no seu navegador).', + 'password_reset_message_line_4' => 'Tal como solicitou, o seu contrasinal foi redefinido. Éstes son agora os novo datos ', + 'password_reset_subject' => 'Redefinición do contrasinal do Ushahidi', + 'phone' => 'Teléfono', + 'please_select' => 'Seleccione', + 'pm' => 'PM', + 'post_method_not_used' => 'Os datos non foron enviados polo método POST', + 'preview' => 'Visualización Previa', + 'private_message' => 'Mensaxe', + 'private_messages' => 'Mensaxes Privadas', + 'private_sent' => 'Mensaxe Privada Enviada', + 'private_subject' => 'Asunto', + 'private_to' => 'Para', + 'public_listing' => 'Lista Pública', + 'qualifiers' => 'Habilitadores', + 'read' => 'ler', + 'relevance' => 'Relevancia', + 'report_title' => 'Título do Informe', + 'report_date' => 'Data do Informe', + 'reporters' => 'Informantes', + 'reporter_levels' => 'Nivel da/o Informante', + 'reports' => 'Informes', + 'reputation' => 'Nivel de Reputación', + 'required' => 'Obrigado', + 'reset' => 'Reset', + 'response' => 'Resposta', + 'results' => 'Resultados', + 'revoke' => 'Revogar', + 'riverid_exists_admin' => 'Este email xa ten unha conta asociada a CrowdmapID. A/o usuaria/o deberáempregar o seu contrasinal de Crowdmap para acceder.', + 'save_settings' => 'Gardar Configuracións', + 'search' => 'Procura', + 'search_reports' => 'Procurar Informes', + 'searching_for' => 'procurando por', + 'security_info_encryption_key' => 'A chave criptográfica ainda está definida no seu valor predetermiñado.Esto é moi inseguro e débese trocar o antes posible.', + 'security_info_https' => 'O site traballa con HTTP. Débese redefinir para HTTPS co galo de incrementara seguridade.', + 'security_info_instructions' => 'Ten instruccións dispoñíbleis na wiki:', + 'select_download_format' => 'Seleccione o formato preferido para baixar os informes:-', + 'select_field_type' => '--- Seleccione un Tipo de Campo ---', + 'select_item' => 'Seleccione un Elemento', + 'select_trigger_before_response' => 'Seleccione un Disparador (Trigger) antes de seleccionar unha Resposta', + 'select_trigger_before_qualifiers' => 'Seleccione un Disparador (Trigger) antes de definir Habilitadores.', + 'sender' => 'Remitente', + 'send_to' => 'Enviar a', + 'sent_from_website' => 'Esta mensaxe foi enviada dende o seu site a ', + 'server_time' => 'Hora do Servidor', + 'settings' => 'Configuracións', + 'showing_page' => 'Mostrando Páxina', + 'showing_results' => 'Mostrando Resultados', + 'shown' => 'Amosar', + 'special_category' => 'Categoría Especial', + 'special_category_explanation' => 'Esta categoría especial non será presentada no formulario de envío de informesás/aos usuarias/os. Esta categoría emprégase xunto coa opción "Informantes de Confianza"', + 'specific_area' => 'Área Específica', + 'state' => 'Estado', + 'statistics' => 'Estadísticas', + 'stats' => 'Estadísticas', + 'stats_collection_error' => 'Fallo na recollida de estadísticas! Probe novamente de aí a un cacho.', + 'stats_collection_error_short' => 'Fallou a recollida de estadísticas!', + 'specific_days' => 'Días Específicos', + 'subject' => 'Asunto', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Tarefa Executada', + 'text_field' => 'Campo de Texto', + 'theme_name' => 'Nome', + 'title' => 'Xestión de Usuarias/os', + 'timeout' => 'Erro no Tempo de Espera', + 'to' => 'a', + 'total_records' => 'Rexistros Totáis', + 'to_date' => 'a', + 'translate_reports' => 'Traducir Informes', + 'trigger' => 'Disparador', + 'triggering_user' => 'Usuario/a Disparador/a', + 'triggers' => 'Disparadores', + 'unapproved' => 'non aprobado', + 'unknown' => 'Descoñecido', + 'unknown_failure' => 'Fallo Descoñecido', + 'unread' => 'non lido', + 'unsubscribe_message' => 'Non recibirá máis alertas de', + 'update_link' => ' Prema eiquí para actualizar xa', + 'upgrade_ushahidi' => 'Actualizar Ushahidi', + 'upgrade_ushahidi_status' => 'Status de Actualización do Ushahidi', + 'upload_reports' => 'Subir Informes', + 'user' => 'Usuaria/o', + 'users' => 'Usuarias/os', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificado/Non Verificado', + 'verify_unverify' => 'Verificar/Non Verificar', + 'version' => 'Versión', + 'version_available' => ' está dispoñible para actualizar.', + 'video_encoding' => 'Codificación de Video', + 'view_private' => 'Mensaxes Privadas', + 'view_site' => 'Ver Site', + 'view_report' => 'Ver Informe', + 'welcome' => 'Benvida/o, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Sí', + 'your_search_for' => 'A súa procura por', + 'delete_all_instructions' => 'Prema no botón seguinte para borrar TODOS os informes da base de datos.Teña en conta que esta acción NON se pode defacer unha vez realizada!', + 'delete_all_backup' => 'Recomendámoslle facer unha copia de seguridade da base de datosantes de proceder.', + 'delete_all_button' => 'Estou segura/o de que quero borrar o(s) %s informes da base de datos.', + 'delete_all_confirm' => 'Está segura/o de que quere borrar TODOS os informes?', + 'delete_all_no_reports' => 'Non hai informes que borrar.', + 'user_no_logins' => 'Número de accesos', + 'user_last_login' => 'Último acceso', + 'user_confirmed_account' => 'Conta Confirmada?', +); diff --git a/application/i18n/gl/ui_main.php b/application/i18n/gl/ui_main.php new file mode 100644 index 0000000000..54cee63349 --- /dev/null +++ b/application/i18n/gl/ui_main.php @@ -0,0 +1,621 @@ + 'Encol ', + 'access' => 'Acceso', + 'access_limits' => 'Límites de acceso', + 'account_name' => 'Nome da conta', + 'actions' => 'Accións', + 'action_confirm' => 'Non é posible desfacer esta acción. Está seguro de querer continuar?', + 'activate' => 'Activar', + 'active' => 'Activado', + 'add' => 'Engadir', + 'added_by' => 'Engadido por', + 'additional_data' => 'Datos adicionáis', + 'additional_reports' => 'Informes adicionáis', + 'add_edit' => 'Engadir/Editar', + 'add_field' => 'Engadir un campo', + 'add_language' => 'Engadir Lingua', + 'add_new' => 'Engadir novo', + 'add_new_category' => 'Engadir nova categoría', + 'add_translation' => 'Engadir traducción', + 'admin' => 'Administración', + 'alerts' => 'Obter alertas', + 'alerts_alert_me' => 'Obter alertas de informes no lugar ou perto de: ', + 'alerts_btn_send' => 'Gardar a miña alerta', + 'alerts_email' => 'Enderezo de correo electrónico:', + 'alerts_enter_email' => 'introducir o enderezo de correo electrónico', + 'alerts_enter_mobile' => 'introducir o número do móvil co código de país', + 'alerts_get' => 'Obter Alertas', + 'alert_has_been' => 'Houbo unha alerta', + 'alerts_mobile_phone' => 'Teléfono Móvil:', + 'alerts_place_spot' => 'Ou sitúe un lugar no mapa seguinte e avisarémoslle cando se envíe algúninforme en 20 kms.', + 'alerts_place_spot2' => 'Se non pode atopar a súa localización, clique no mapa para identificaro lugar correcto.', + 'alerts_rss' => 'RSS Feeds (copie o seguinte URL)', + 'alerts_select_city' => 'Seleccione unha cidade', + 'alerts_step1_select_city' => 'Paso 1: Seleccione a súa cidade ou lugar:', + 'alerts_step2_send_alerts' => 'Paso 2: Envíe alertas ao seu:
', + 'alerts_step3_select_catgories' => 'Paso 3 (Opcional): Seleccione Categorías', + 'alert_confirm_previous' => 'Confirme solicitudes de alerta anteriores', + 'alert_saved' => 'A súa alerta foi gardada!', + 'all' => 'Todo', + 'allowed' => 'Permitido', + 'allowed_tags' => 'Tags HTML permitidos: "%s".', + 'allowed_iframes' => 'Só se permiten Iframes dende: ', + 'all_categories' => 'Tódalas categorías', + 'all_time' => 'Todo o tempo', + 'and' => 'e', + 'api' => 'API', + 'approve' => 'Aprobar', + 'approved' => 'Aprobados', + 'approved_reports' => 'Informes Aprovados', + 'approve_this_report' => 'Aprobe este Informe', + 'approximate' => 'Aproximado', + 'archive' => 'Arquivar', + 'archived' => 'Arquivado', + 'ascending' => 'Ascendente', + 'at' => 'en', + 'author' => 'Autor/a', + 'auto_checkin' => 'Auto Checkin', + 'avg_reports_per_day' => 'Promedio de informes por día', + 'awaiting_approval' => 'Agardando Aprobación', + 'awaiting_verification' => 'Agardando Verificación', + 'badge' => 'Distintivo', + 'badges' => 'Distintivos', + 'badge_image' => 'Imaxe do distintivo', + 'badge_image_upload_your_own' => 'Ou senón pode subir a súa propia imaxe de distintivo.', + 'badge_pack' => 'Paquete de distintivos', + 'badge_select' => 'Seleccione un distintivo', + 'blog' => 'Blog', + 'browse_profiles' => 'Procurar perfís', + 'cancel' => 'Cancelar', + 'categories' => 'Categorías', + 'category' => 'Categoría', + 'category_filter' => 'Filtro de categoría', + 'category_has_been' => 'A categoría foi', + 'category_name' => 'Nome da categoría', + 'change_date_range' => 'Cambiar rango de data', + 'change_password' => 'Trocar contrasinal', + 'change_picture' => 'Trocar a miña imaxe', + 'choose' => 'Escolla un', + 'choose_data_points' => 'Seleccionar datas para baixar', + 'choose_date_range' => 'Ou escolla o seu propio rango de datas', + 'choose_field_type' => 'Escolla tipo de campo', + 'cleanurl' => 'URLs', + 'clear' => 'Limpar', + 'clear_map' => 'Limpar mapa', + 'close' => 'Pechar', + 'clusters' => 'grupo de informes', + 'color' => 'Cor', + 'comment' => 'Comentario', + 'comments' => 'Comentarios', + 'comment_details' => 'Detalles do comentario', + 'configuration_saved' => 'Gardáronse as súas configuracións!', + 'configure' => 'Configurar', + 'confirm_email_successful' => 'Confirmou con suceso a súa conta de correo! Acceda embaixo.', + 'confirm_email_successful_and_approval' => 'Confirmou con suceso a súa conta de correo! Un/ha administrador/a ten queaprobar a súa conta antes de poderen ingresar nela.', + 'confirm_email_failed' => 'Fallou a súa confirmación por correo! Debe solicitar unha nova embaixo.', + 'contact' => 'Contacte connosco', + 'contact_code' => 'Código de Seguridade', + 'contact_email' => 'O seu enderezo de correo', + 'contact_message' => 'Mensaxe', + 'contact_message_has_send' => 'A súa mensaxe foi enviada!', + 'contact_name' => 'Nome', + 'contact_phone' => 'Nº de teléfono', + 'contact_send' => 'Enviar Mensaxe', + 'contact_subject' => 'Asunto', + 'copyright' => 'Copyright ©', + 'create' => 'Crear', + 'create_edit' => 'Crear/Editar', + 'create_new' => 'Crear Novo', + 'create_new_password' => 'Crear contrasinal novo', + 'create_report' => 'Crear Informe', + 'credibility' => 'Credibilidade', + 'current_password' => 'Contrasinal Actual', + 'custom_fields' => 'Campos personalizados', + 'data' => 'Información', + 'date' => 'Data', + 'date_format' => '(dd/mm/aaaa)', + 'date_time' => 'Data & Hora', + 'day' => 'día', + 'deactivate' => 'Desactivar', + 'default_location_name' => 'Santiago de Compostela, Galiza', + 'delete' => 'Borrar', + 'deleted' => 'Borrado', + 'deletes' => 'Borrados', + 'delete_disabled' => 'Borrado Deshabilitado', + 'delete_last' => 'Borrar Último', + 'delete_report' => 'Borrar este Informe', + 'delete_selected' => 'Borrar Seleccionado', + 'delete_spam' => 'Borrar Spam', + 'demo' => 'Demo', + 'description' => 'Descripción', + 'descending' => 'Descendente', + 'detailed_location_example' => 'Exemplo: Saída da escalinata da Praza da Quintana á Catedral, Santiago de Compostela', + 'details' => 'Detalles', + 'direct_report' => 'Informe Directo', + 'disabled' => 'Deshabilitado', + 'disapprove' => 'Non aprobado', + 'download_reports' => 'Baixar Informes', + 'download' => 'Baixar', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar Campos do Formulario ', + 'edit_report' => 'Editar Informe', + 'email' => 'Email', + 'email_address' => 'Enderezo de correo', + 'email_configuration' => 'Configuracións do Servidor', + 'email_server_host' => 'Enderezo do Servidor', + 'email_server_password' => 'Contrasinal', + 'email_server_port' => 'Porto do Servidor', + 'email_server_ssl_support' => 'Soporte para conexións SSL', + 'email_server_type' => 'Tipo de Servidor', + 'email_server_username' => 'Nome do Usuaria/o ', + 'email_settings_comment_0' => 'polo tanto esta é a configuración para este enderezo de correo', + 'email_settings_comment_00' => 'Para receber informes por email, introduza a súa configuración de correoembaixo. Teña en conta que os emails serán enviados a ', + 'email_settings_comment_1' => 'Algúns servidores requiren o enderezo de correo completo', + 'email_settings_comment_2' => 'Contrasinal da conta de correo', + 'email_settings_comment_3' => 'Portos comúns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Exemplos: mail.oseusite.org, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Exemplos: pop3, imap', + 'email_settings_comment_6' => 'Activa ou desactiva conexións por SSL', + 'empty' => '---VALEIRO---', + 'end_point' => 'a', + 'error' => 'Erro!', + 'example' => 'Exemplo', + 'example_country' => 'Galiza', + 'external_apps' => 'Apps Externas', + 'external_video_link' => 'URL de Video', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Envíe Comentarios', + 'feedback_reports' => 'Por favor cóntenos a súa experiencia enviando un email a', + 'feeds' => 'Feeds', + 'feed_has_been' => 'O feed foi', + 'feed_items' => 'Items do Feed', + 'feed_name' => 'Nome do Feed', + 'feed_url' => 'URL do Feed', + 'field_unused' => 'Campo sen uso', + 'file' => 'Arquivo', + 'file_over_max_allowed' => 'O seu arquivo excede o tamaño máximo permitido.', + 'filters' => 'Filtros', + 'filter_reports' => 'Filtro de Informes', + 'filter_reports_by' => 'Filtrar Informes por', + 'filter_reports_contain' => 'Filtrar informes que conteñan', + 'find' => 'Procurar', + 'find_location' => 'Procurar Localización', + 'first_name' => 'Nome', + 'force_run_scheduler' => 'Executar Tarefas Programadas', + 'forgot_password' => 'Esqueceu o seu contrasinal?', + 'form' => 'Formulario', + 'forms' => 'Formularios', + 'form_description' => 'Descripción do Formulario', + 'form_edit' => 'Editar este Formulario', + 'form_has_been' => 'O formulario foi', + 'form_title' => 'Título do Formulario', + 'from' => 'De', + 'full_name' => 'Nome Completo', + 'geolocation_available' => 'XeoLocalización Dispoñible', + 'geometry_color' => 'Cor', + 'geometry_comments' => 'Comentarios', + 'geometry_label' => 'Etiqueta', + 'geometry_strokewidth' => 'Anchura do trazo', + 'go' => 'Ir', + 'hashtag' => 'Hashtag', + 'has_been' => 'Foi', + 'help' => 'Como Axudar?', + 'hidden' => 'Oculto', + 'hide' => 'Ocultar', + 'hide_this_message' => 'oculta esta mensaxe', + 'home' => 'Inicio', + 'how_to_report' => 'Como Informar', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Emprégase para identificalo a vostede no sitio fronte a outros usuarios.', + 'image' => 'Imaxe', + 'images' => 'Imáxenes', + 'image_icon' => 'Imaxe/Icono', + 'inactive' => 'Inactivo', + 'inbox' => 'Caixa de Entrada', + 'incident' => 'Incidente', + 'incidents_nearby' => 'Incidentes Próximos', + 'incident_location' => 'Localización do Incidente', + 'include' => 'Incluir', + 'include_categories' => 'Incluir Categorías', + 'include_custom_fields' => 'Incluir Campos Personalizados', + 'include_description' => 'Incluir Descripción', + 'include_detail' => 'Incluir a meirande cantidade de información posible', + 'include_latitude' => 'Incluir Latitude', + 'include_location_information' => 'Incluir Información da Localización', + 'include_longitude' => 'Incluir Lonxitude', + 'include_personal_info' => 'Incluir Información Personal', + 'incoming_media' => 'Foto/Video Entrante', + 'information_evaluation' => 'Evaliación da Información', + 'input_location' => 'Introduza a localización concreta', + 'insufficient_role' => 'A súa conta carece dos permisos necesarios para acceder.Por favor, contacte ca/o administrador/a', + 'in_response_to' => 'En resposta a', + 'ip_address' => 'Enderezo IP', + 'is_this_your_profile' => 'É este o seu perfil?', + 'item' => 'elemento', + 'items' => 'elementos', + 'item_details' => 'detalles do elemento', + 'item_title' => 'Título do Elemento', + 'key' => 'Chave', + 'keywords' => 'Palabra Chave', + 'kml_kmz_file' => 'Arquivo KMZ/KML', + 'kml_kmz_upload' => 'Subir Arquivo KMZ/KML', + 'kml_url' => 'URL KML', + 'laconica' => 'Laconica', + 'language' => 'Lingua', + 'last' => 'Último', + 'last_month' => 'Último Mes', + 'last_name' => 'Último Nome', + 'last_year' => 'Último Ano', + 'latitude' => 'Latitude', + 'layers' => 'Capas', + 'layers_filter' => 'Outras Capas', + 'layer_has_been' => 'A Capa foi', + 'layer_name' => 'Nome da Capa', + 'layer_url' => 'URL da Capa', + 'leave_a_comment' => 'Deixar un Comentario', + 'less_information' => 'Menos Información', + 'level' => 'Nivel', + 'level_has_been' => 'Este nivel foi', + 'level_name' => 'Nome do Nivel', + 'limited' => 'Limitado', + 'link' => 'Ligazón', + 'list' => 'Lista', + 'loading_reports' => 'Cargando Informes', + 'location' => 'Localización', + 'locations' => 'Localizacións', + 'location_example' => 'Cidade, Provincia e/ou País', + 'login' => 'Inicio de Sesión', + 'login_account_creation_successful' => 'Conta creada con éxito. Pode acceder agora.', + 'login_confirmation_sent' => 'Envióuselle unha confirmación ao seu e-mail. ', + 'login_approval_required' => 'Conta creada. A súa conta debe ser aprovada por un/ha admin antes de poder acceder.', + 'login_email_doesnt_exist' => 'O enderezo de correo asociado non existe.Tente un enderezo distinto ou cree unha conta.', + 'login_select_openid' => 'Clique na súa conta do provedor', + 'login_with' => 'Acceder con', + 'login_userpass' => 'Email e Contrasinal', + 'login_openid' => 'OpenID', + 'login_signup' => 'Rexistro', + 'login_signup_click' => 'Crear unha Conta', + 'login_signup_confirmation_message' => 'Grazas por rexistrarse con %1$s. Para confirmar o seu enderezo de correovaia ao seguinte URL: %2$s', + 'login_signup_confirmation_subject' => 'Confirmación de Rexistro', + 'login_signup_admin_approval_message' => 'Un novo usuario/a rexistrouse en %1$s. Para aprobar este rexistro vaia ao seguinte URL: %2$s', + 'login_signup_admin_approval_subject' => 'Aprobación de Nova/o Usuaria/o', + 'login_signup_approval_message' => 'A súa conta de usuaria/o foi aprobada por %1$s.Para acceder siga o seguinte URL: %2$s', + 'login_signup_approval_subject' => 'Conta de usuaria/o aprobada', + 'login_signup_text' => 'Cree unha conta agora e aproveite o acceso aos recursos deste site. ', + 'longitude' => 'Lonxitude', + 'map' => 'Mapa', + 'mark_read' => 'Marcado como Lido', + 'mark_unread' => 'Marcado como Non Lido', + 'maximum_filesize' => 'Tamaño máximo do arquivo', + 'media' => 'Multimedia', + 'media_filter' => 'Filtro Multimedia', + 'members' => 'Membros', + 'manage_your_account' => 'Xestión de Conta', + 'message' => 'Mensaxe', + 'messages' => 'Mensaxes', + 'message_details' => 'Detalles da Mensaxe', + 'message_non_numeric_source' => 'Mensaxe dunha fonte non-numérica:', + 'mobile' => 'Móvil', + 'modify' => 'Modificar', + 'modify_date' => 'Modificar Datos', + 'month' => 'mes', + 'more' => 'Máis', + 'more_information' => 'Máis Información', + 'multi_country_instance' => 'Esta instancia do Ushahidi abrangue informes de varios países', + 'must_confirm_email_address' => 'Debe confirmar o seu enderezo de correo para poder acceder a esta instancia.Se perdeu a súa confirmación por email, pode solicitar outra nova de seguido.', + 'name' => 'Nome', + 'nearby_report' => 'Informes Próximos', + 'new' => 'Nova', + 'news' => 'Novas', + 'news_feeds' => 'Novos Feeds', + 'news_source' => 'Novas Fontes', + 'new_category' => 'Nova Categoría', + 'new_password' => 'Novo Contrasinal', + 'new_report' => 'Novo Informe', + 'next' => 'Seguinte', + 'no' => 'Non', + 'no_checkins' => 'Non hai checkins que amosar.', + 'no_data' => 'Sen datos', + 'none' => 'Nengún', + 'notices' => 'Avisos', + 'not_approved' => 'Non Aprobado', + 'not_approved_singular' => 'Non Aprobado', + 'not_selected' => '---Non Seleccionado---', + 'not_spam' => 'non é spam', + 'not_specified' => 'Non Especificado', + 'no_reports' => 'Non hai informes', + 'no_results' => 'Non hai resultados', + 'off' => 'Desconectado', + 'official_news' => 'Novas oficiáis e dos medios xeneralistas', + 'on' => 'Conectado', + 'option' => 'Opción', + 'optional' => 'Opcional', + 'options' => 'Opcións', + 'organization' => 'Organización', + 'organizations' => 'Organizacións', + 'organization_description' => 'Descripción da Organización', + 'organization_email' => 'Correo da Organización', + 'organization_has_been' => 'A Organización foi', + 'organization_name' => 'Nome da Organización', + 'organization_phone_1' => 'Teléfono 1 da Organización', + 'organization_phone_2' => 'Teléfono 2 da Organización', + 'organization_website' => 'Web da Organización', + 'original' => 'Orixinal', + 'original_description' => 'Descripción Orixinal', + 'original_title' => 'Título Orixinal', + 'other_ushahidi_instances' => 'Outras Instancias', + 'outbox' => 'Mensaxes Saíntes', + 'outgoing' => 'Saínte', + 'page' => 'Páxina', + 'pages' => 'Páxinas', + 'page_description' => 'Descripción da Páxina', + 'page_has_been' => 'A Páxina foi', + 'page_tab_name' => 'Etiqueta da Páxina', + 'page_title' => 'Título da Páxina', + 'parent_category' => 'Categoría Nai', + 'password' => 'Contrasinal', + 'password_again' => 'Verificar Contrasinal', + 'password_changed_successfully' => 'Contrasinal modificado! Acceda agora.', + 'password_forgot' => 'Esqueceu o seu contrasinal?', + 'password_reset_confirm' => 'Comprobe o novo contrasinal no seu correo.', + 'password_save' => 'Permanecer conectado neste computador?', + 'past_month' => 'Mes Pasado', + 'past_year' => 'Ano Pasado', + 'pending' => 'Pendente', + 'per' => 'por', + 'personal_information' => 'Información Persoal Opcional.', + 'phone' => 'Teléfono', + 'photos' => 'Fotos', + 'pictures' => 'Imaxes', + 'pictures_and_videos' => 'Imaxes e Videos', + 'pinpoint_location' => '* Procure a súa localización buscando polo nome OU coordenadas de latitude e lonxitude (formato: 38.19, 85.61), OU clique no mapa para situar a localizacióncorrecta.', + 'play' => 'Iniciar', + 'please_note' => 'Observación', + 'plugins' => 'Plugins', + 'plugin_url' => 'Site dos Plugins', + 'public_profile' => 'Perfil Público', + 'public_profile_url' => 'URL do Perfil Público', + 'preview' => 'Previsualización', + 'preview_item' => 'Previsualización do Elemento', + 'preview_message' => 'Previsualización da Mensaxe', + 'previous' => 'Anterior', + 'private' => 'Privado', + 'profile_color' => 'Cor do Perfil', + 'profile_saved' => 'O seu Perfil foi gardado', + 'quick_stats' => 'Estatísticas Rápidas', + 'rating' => 'Avaliación', + 'read' => 'Lido', + 'receive' => 'Receber', + 'receive_from' => 'Receber de', + 'receive_notifications' => 'Reciber Notificacións', + 'recent_reports' => 'Reciber Informes', + 'refresh_news_feeds' => 'Actualizar Feeds de Novas', + 'registered_email' => 'Email rexistrado', + 'remove' => 'Borrar', + 'reply' => 'Respostar', + 'report' => 'Informar', + 'reports_listed' => 'Informes (dende o mapa, listados en orde cronolóxica)', + 'reporter' => 'Informante', + 'reporters' => 'Informantes', + 'reporter_date' => 'Data do Informe', + 'reporter_email' => 'Email da/o Informante', + 'reporter_first_name' => 'Nome da/o Informante', + 'reporter_has_been' => 'O Informe foi', + 'reporter_ip' => 'IP da/o Informante', + 'reporter_last_name' => 'Apelido da/o Informante', + 'reporter_level' => 'Nivel da/o Informante', + 'reporter_levels' => 'Nivéis das/dos Informantes', + 'reporter_phone' => 'Teléfono da/o Informante', + 'reports' => 'Informes', + 'reports_btn_browse' => 'Procurar', + 'reports_btn_submit' => 'Enviar', + 'reports_by_this_user' => 'Informes da/o Usuaria/o', + 'reports_categories' => 'Categorías', + 'reports_count' => '%s Informes', + 'reports_date' => 'Data', + 'reports_description' => 'Descripción', + 'reports_download_csv' => 'Os informes baixaranse en formato CVS', + 'reports_email' => 'Email', + 'reports_features' => 'Recursos', + 'reports_find_location' => 'Procure unha localización perto súa', + 'reports_first' => 'Nome', + 'reports_last' => 'Apelido', + 'reports_location_name' => 'Nome do Lugar', + 'reports_news' => 'Ligazón á Fonte de Novas', + 'reports_optional' => 'Información Opcional', + 'reports_photos' => 'Subir Fotos', + 'reports_return' => 'Voltar á páxina de Informes', + 'reports_select_city' => 'Seleccionar unha Cidade', + 'reports_submitted' => 'O seu Informe foi enviado ao noso equipo para ser revisado.Poñerémonos en contacto se fose necesario.', + 'reports_submit_new' => 'Enviar un Novo Informe', + 'reports_time' => 'Hora', + 'reports_timeline' => 'Liña de Tempo dos Informes', + 'reports_title' => 'Título do Informe', + 'reports_video' => 'Ligazón a Video', + 'report_an_incident' => 'Informe dun Incidente', + 'report_details' => 'Informe polo miúdo', + 'report_option_1' => 'Enviando unha mensaxe a', + 'report_option_2' => 'Enviando correo', + 'report_option_3' => 'Enviando un tweet co/s hashtag/s', + 'report_option_4' => 'Preenchendo este formulario no noso site.', + 'report_option_external_apps' => 'Empregando unha App', + 'report_saved' => 'O seu informe foi gardado', + 'report_title' => 'Título do Informe', + 'request_information' => 'Solicitar máis información', + 'request_location' => 'Solicitar localización', + 'required' => 'Requerido', + 'requirements' => 'Requerimentos', + 'resend_confirm_email' => 'Reenviando Confirmación por Email', + 'reset' => 'Resetear', + 'reset_all_filters' => 'Resetear tódolos filtros', + 'reset_password' => 'Resetear Contrasinal', + 'retrieve_city_names' => 'Atopar os nomes das cidades para os países seleccionados', + 'riverid_information' => 'Contas administradas polo servizo %s', + 'riverid_exists_login' => 'Xa ten unha conta administrada por CrowdmapID!Tente empregando as credenciáis de CrowdmapID para acceder.', + 'role' => 'Rol', + 'rss' => 'RSS', + 'save' => 'Gardar', + 'saved' => 'Gardado', + 'save_add_new' => 'Gardar e Engadir Novo', + 'save_close' => 'Gardar e Pechar', + 'save_report' => 'Gardar Informe', + 'schedule' => 'Programar', + 'scheduler' => 'Programador de Tarefas', + 'scheduler_day' => 'Día', + 'scheduler_hour' => 'Hora', + 'scheduler_log' => 'Rexistro do Programador de Tarefas', + 'scheduler_minute' => 'Minuto', + 'scheduler_weekday' => 'Día da Semana', + 'search' => 'Procura', + 'search_results' => 'Resultados da Procura', + 'security_code' => 'Código de Seguridade', + 'select_all' => 'Seleccionar Todo', + 'select_field_type' => 'Seleccionar un Tipo de Campo', + 'select_form_type' => 'Seleccionar un Tipo de Formulario', + 'select_in_map' => 'Seleccionar no mapa', + 'select_multiple' => 'Seleccionar tantas como precisares', + 'select_one' => 'Verifique que seleccionou un elemento', + 'select_theme' => 'Seleccionar Tema', + 'send' => 'Enviar', + 'send_confirmation' => 'Enviar Confirmación', + 'sending_to' => 'Enviar a', + 'sent' => 'Enviado', + 'sent_by' => 'Enviado por', + 'server_address' => 'Enderezo do Servidor', + 'server_type' => 'Tipo de servidor', + 'service' => 'Servizo', + 'service_username' => 'Nome do Servizo', + 'service_user_id' => 'ID da/o usuaria/o do servidor', + 'share' => 'Compartillar', + 'shared_data' => 'Datos compartillados', + 'share_has_been' => 'O compartillamento foi', + 'sharing' => 'Compartillando', + 'shorter_map' => 'Mapa pequeno', + 'show' => 'Amosar', + 'show_all' => 'Amosar todo', + 'show_messages' => 'Amosar Mensaxes', + 'showing_reports_from' => 'Amosa Informes dende o %1$s ata o %2$s', + 'site' => 'Site', + 'site_email_address' => 'email do sitio', + 'site_url' => 'URL do sitio', + 'smaller_map' => 'Mapa grande', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Non ten nengún distintivo asignado.', + 'source' => 'Fonte', + 'source_name' => 'Name da Fonte', + 'sort' => 'Ordear', + 'sort_by' => 'Ordear por', + 'source_url' => 'URL da Fonte', + 'spam' => 'Spam', + 'ssl_support' => 'Soporte para SSL?', + 'start_point' => 'De', + 'step' => 'Paso', + 'submit' => 'Envíe un Informe', + 'submitted_by' => 'Enviado por %1$s via %2$s', + 'submit_sms' => 'Enviado por SMS', + 'submit_sms1' => 'Envíe o seu SMS a', + 'submit_sms2' => 'no seu móvil', + 'success' => 'Éxito!', + 'successfuly_imported' => 'Importado con éxito', + 'surname' => 'Alcume', + 'survey' => 'Vixilancia', + 'system' => 'Sistema', + 'taller_map' => 'Mapa mais alto', + 'tcp_port' => 'Porto TCP', + 'themes' => 'Temas', + 'theme_default' => 'Tema predetermiñado do Ushahidi', + 'theme_settings' => 'Configuracións do Tema', + 'this' => 'Este', + 'this_day' => 'Hoxe', + 'this_month' => 'Este Mes', + 'this_week' => 'Esta Semana', + 'this_year' => 'Este Ano', + 'this_is_your_profile' => 'Este é o seu perfil.', + 'time' => 'Hora', + 'title' => 'Título', + 'to' => 'a', + 'today' => 'Hoxe', + 'today_at' => 'Hoxe ás', + 'token' => 'Mostra', + 'total_reports' => 'Tódolos Informes', + 'translated' => 'Traducido', + 'translated_description' => 'Descripción Traducida', + 'translated_title' => 'Título Traducido', + 'translate_to' => 'Traducido ao', + 'translation' => 'Traducción', + 'translation_saved' => 'Gardouse a traducción', + 'trusted' => 'Confiable', + 'type' => 'Tipo', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Non se puido enviar o correo.', + 'uncategorized_reports' => 'Informes sen Categoría', + 'unread' => 'non lido', + 'unverified' => 'Sen verificar', + 'update_feeds' => 'Actualizar feeds', + 'upload' => 'Subir', + 'upload_guide' => 'Vexa os nosos consellos para subir informes:-', + 'upload_docs_1' => 'Consellos para subir XML', + 'upload_docs_2' => 'Consellos para subir CVS', + 'upload_file' => 'Arquivo para subir', + 'upload_reports' => 'Informes Subidos', + 'upload_reports_custom_forms' => 'As columnas dos campos persoalizados deben ter asociado o seu correspondenteform_id, p.ex. no campo Teste, no formulario predetermiñado, que ten id=1, seráTest-1 agora. Durante a importacióm de campos persoalizados do formularioasegúrese de que', + 'upload_reports_detail_1' => 'Co formulario seguinte, pode importar incidentes no sistema Ushahidi.', + 'upload_reports_detail_2' => 'Os informes han ser subidos no formato CSV ou XML.', + 'upload_reports_detail_3' => 'Cando unha ID de incidente xa exista na base de datos, a entrada do arquivoCSV/XML ha ser ignorada.', + 'upload_reports_detail_4' => 'É preciso fornecer alomenos o Título e a Data do Incidente.', + 'upload_reports_detail_4b' => 'Se non se fornecen datos de lonxitude e latitude, a localización será xeocodificada empregando o servizo do Google Geocoder.', + 'upload_reports_detail_4c' => 'No caso de estar importando información adicional, p.ex. información persoale/ou campos de formulario persoalizados', + 'upload_reports_detail_4d' => 'Cando menos unha entrada nos campos de información persoal(nome, apelido, email)DEBE existir. Rexistros valeiros non serán importados.', + 'upload_reports_detail_4e' => 'As súas entradas en opcións despregables, botóns de radio e caixas de seleccióncadran coas opcións fornecidas polos campos persoalizados na súa instancia', + 'upload_reports_detail_4f' => 'As opcións das caixas de selección van separadas por comas. Por exemplo, seseleccionou entre a categoría de froitas: mazáns, ameixas e amorodos, a súaentrada correspondente ha ser do xeito: "mazáns,ameixas,amorodos"', + 'upload_reports_detail_4g' => 'Os valores para os campos de datas han ser do xeito: mm/dd/aaaa. P.ex. o 25 de Xuñodo 2014 será: 07/25/2014', + 'upload_reports_detail_5' => 'Exemplo de Informe CSV', + 'upload_reports_detail_6' => '#, TÍTULO DO INCIDENTE,DATA DO INCIDENTE,LOCALIZACIÓN,DESCRIPCIÓN,CATEGORÍA,APROBADO,VERIFICADO,LATITUDE,LONXITUDE
"1","Alcalde repón ilegalmente placas fascistas","02/12/2013 17:12:00","Vila de Cruces","O alcalde Jesus Otero (PP) repón sendas placas fascistas, de Primo de Rivera e de Franco no local social municipal da parroquia de Carbia.","EXALTACIÓN DO FASCISMO, PREVARICACIÓN",SÍ,SÍ,"42.798","-8.233"', + 'upload_reports_detail_7' => '"2","Lume","2013-09-05 13:00","As Neves","Artefacto incendiario é lanzado dende unha avioneta sobre unha área de monte común veciñal e é neutralizado por eles mesmos","LUME,INDUSTRIA DO LUME,INCENDIO PROVOCADO,MEDIOAMBIENTE",SÍ,NO,"42.105","-8.376"', + 'upload_successful' => 'Enviado con éxito', + 'upload_video' => 'Subir Video', + 'url' => 'URL', + 'user' => 'Usuaria/o', + 'username' => 'Nome da/o usuaria/o', + 'ushahidi_admin' => 'Admin de Ushahidi', + 'verification' => 'Verificación', + 'verified' => 'Verificado', + 'verified_reports' => 'Informes Verificados', + 'verify' => 'Verificado', + 'verify_this_report' => 'Verifique este Informe', + 'version' => 'Versión', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Visualización', + 'views' => 'Visualizacións', + 'view_all' => 'Visualizar Todo', + 'view_all_feeds' => 'Visualizar tódolos feeds', + 'view_all_reports' => 'Visualizar tódolos informes', + 'view_items' => 'Visualizar Elementos', + 'view_more' => 'Ver Mais', + 'view_public_profile' => 'Perfil Público', + 'view_report' => 'Visualizar Informe', + 'view_reports' => 'Visualizar Informes', + 'view_video' => 'Visualizar Video', + 'visible' => 'Visible', + 'waiting_approval' => 'Agardando Aprobación', + 'waiting_verification' => 'Agardando Verificación', + 'wider_map' => 'Mapa Extenso', + 'web_form' => 'Formulario Web', + 'web' => 'Web', + 'weight' => 'Peso', + 'yes' => 'Sí', + 'yesterday' => 'Onte', + 'your_dashboard' => 'Panel de Control', + 'your_file' => 'O seu arquivo', + 'zoom_in' => 'Achegar (zoom+)', + 'zoom_out' => 'Alonxar (zoom-)', +); diff --git a/application/i18n/gl/upgrade.php b/application/i18n/gl/upgrade.php new file mode 100644 index 0000000000..286b951ded --- /dev/null +++ b/application/i18n/gl/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Datos incorrectos. Empregue únicamente 0 para Non e 1 para Sí.', + ) , + 'upgrade_automatic' => 'Actualización Automática', + 'upgrade_available' => 'Actualizacións Dispoñíbleis', + 'upgrade_continue_btn_text' => 'Continúe', + 'upgrade_db_btn_text' => 'Actualizar', + 'upgrade_db_text_1' => 'Entón, vou actualizar a súa base de datos dende a version', + 'upgrade_db_text_2' => 'á nova versión da base de datos', + 'upgrade_db_text_3' => 'Prema no botón "Actualizar" e reláxese mentras eu fago a maxia.', + 'upgrade_db_text_4' => 'Se a maiores quere facer unha copia de seguridade da base de datos, marque a caixa de selección enbaixo e fareino coma un lóstrego.', + 'upgrade_db_text_5' => 'Facer copia de seguridade da base de datos antes da actualización?Moi recomendable!)', + 'upgrade_db_title' => 'Actualización da base de datos', + 'upgrade_db_info' => 'O Ushahidi foi actualizado! Antes de continuar, é preciso que actualice a súa base de datos á nova versión (%s).', + 'upgrade_db_up_to_date' => 'A versión da base de datos xa está actualizada. ', + 'upgrade_failed' => 'Houbo un fallo nalgún punto da actualización', + 'upgrade_manual' => 'Actualización Manual', + 'upgrade_status' => 'Estatus da actualización do Ushahidi', + 'upgrade_text_1' => 'As seguintes instrucciós explican cómo actualizar manualmente a súa instancia do Ushahidi.', + 'upgrade_text_2' => '
Baixar
', + 'upgrade_text_3' => '
- Baixe a máis recente versión do Ushahidi de', + 'upgrade_text_4' => '
Faga copia
dos ficheiros: .htaccess, ./applications/config/config.php, ./applications/config/database.php e ./applications/config/auth.php.
É recomendable que faga un backup completo da súa instalación do Ushahidi por se se dera o caso de que algo fose mal.
Copie arquivos
- Extraia o arquivo comprimido descargado.
- Segundo o sistema operativo no que traballe o seu aloxamento, empreguea súa ferramenta preferida (p.ex: Telnet, FTP, SSH) para acceder ao server e poder sustituir o contido de tódolos directorios polos novos da versión máis actualizada.
Actualize a base de datos
- Primeiro determiñe a versión do schema da súa base ollando para o valor db_version na táboa settings ou na cima da páxina coas informacións de actualización do Ushahidi
- Se estivera na versión 25, terá que actualizar da 25 á 26, da 26 á 27 e así sucesivamente ata o máis recente arquivo SQL do directorio /sql.
- Finalmente e coa axuda do seu cliente sql, actualize a mesma executando o arquivo upgradex-x.sql que corresponda.
', + 'upgrade_tables' => 'Paso 3: Olle dentro do directorio sql.Execute manualmente o ficheiro upgrade-.sql comenzando dende a versión da súa instalación actual ata a o derradeiro ficheiro de actualización sql.', + 'upgrade_text_5' => 'Paso 4: Prema no botón "Continuar" para actualizar as táboas necesarias.', + 'upgrade_text_6' => 'Para actualización automática, prema no botón seguinte.', + 'upgrade_title_text' => 'Actualmente estase a empregar o Ushahidi v%1$s coa versión da base de datos %2$den %3$s', + 'upgrading' => 'Actualizando', + 'upgrade_ftp_text' => 'Para continuar coa actualización simplificada, é precisa a seguinte información do servidor FTP no que o seu site está aloxado.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Exemplo: "localhost"', + 'upgrade_ftp_password' => 'Contrasinal FTP:', + 'upgrade_ftp_username' => 'Nome de usuaria/o FTP:', + 'upgrade_status_info' => 'Ten a versión máis recente de Ushahidi.', + 'upgrade_status_info_2' => 'Non é preciso actualizar.', + 'upgrade_db_version' => 'Versión da base de datos: %d', + 'upgrade_warning_software_version' => 'Atención: a versión do software no arquivo version.php e na base de datos, non cadran.', + 'upgrade_warning_db_version' => 'Atención: a versión da base de datos no arquivo version.php e o da propia base de datos, non cadran.', + 'upgrade_database' => 'Base de datos:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Baixando a última versión do Ushahidi...', + 'log_file' => 'Arquivo de Log', + 'successfully_downloaded' => 'Baixado con éxito. Descomprimindo...', + 'failed_downloading' => 'Erro na descarga.', + 'successfully_unpacked' => 'Descomprimido con éxito. Copiando arquivos...', + 'failed_unpacking' => 'Erro na descompresión.', + 'successfully_copied' => 'Copiado correctamente. Actualizando a Base de Datos.', + 'failed_copying' => 'Erro copiando arquivos.', + 'backup_success' => 'Copia de seguridade e actualización da base de datos correctas.', + 'backup_failed' => 'Erro na copia de seguridade da base de datos.', + 'dbupgrade_success' => 'Actualización da base de datos correcta.', + 'deleting_files' => 'Borrando arquivos descargados...', + 'upgrade_success' => 'ACTUALIZACIÓN CORRECTA! Vexa o ficheiro de logs', +); diff --git a/application/i18n/he_IL/alerts.php b/application/i18n/he_IL/alerts.php new file mode 100755 index 0000000000..cc2d2ab8ec --- /dev/null +++ b/application/i18n/he_IL/alerts.php @@ -0,0 +1,53 @@ + array( + 'email' => 'לא הוזנה כתובת תקינה בשדה האימייל?', + 'email_check' => 'כתובת אימייל זו רשומה כבר לקבלת התראות עבור מיקום זה', + 'length' => 'חובה להזין כתובת אימייל באורך שבין 4 ל-64 תווים', + 'required' => 'אם התיבה מסומנת, שדה האימייל הינו חובה', + ) , + 'alert_lat' => array( + 'between' => 'לא נבחר מיקום על המפה.', + 'required' => 'לא נבחר מיקום על המפה.', + ) , + 'alert_lon' => array( + 'between' => 'לא נבחר מיקום על המפה.', + 'required' => 'לא נבחר מיקום על המפה.', + ) , + 'alert_mobile' => array( + 'length' => 'שדה הטלפון הנייד אינו מכיל מספר באורך תקין.', + 'mobile_check' => 'מספר הטלפון הנייד רשום כבר לקבלת התראות עבור מיקום זה', + 'numeric' => 'המספר שהוזן בשדה הטלפון הנייד אינו תקין. יש להזין ספרות בלבד, כולל קדומת בינלאומית', + 'one_required' => 'חובה להזין מספר טלפון נייד או כתובת אימייל', + 'required' => 'אם התיבה מסומנת, שדה מספר הטלפון הנייד הינו חובה', + ) , + 'alert_radius' => array( + 'in_array' => 'לא הוגדר רדיוס תקין על המפה.', + 'required' => 'לא הוגדר רדיוס על המפה.', + ) , + 'code_already_verified' => 'קוד זה אומת כבר בעבר!', + 'code_not_found' => 'קוד האימות לא נמצא! יש לוודא כי כתובת ה-URL הינה נכונה.', + 'code_verified' => 'הקוד אומת בהצלחה. מעתה ישלחו אליך התראות בזמן אמת על תקריות שמתרחשות (ברדיוס הדיווחים שבחרת)', + 'confirm_request' => 'כדי לאשר את בקשת ההתראה, יש לגשת ל', + 'create_more_alerts' => 'חזרה לעמוד ההתראות ליצירת התראות נוספות', + 'email_alert_request_created' => 'בקשתך להתראת אימייל נקלטה והודעת אימות נשלחה ל', + 'email_code' => 'הזן למטה את קוד האישור שקיבלת בדואר האלקטרוני:', + 'email_error_head' => 'בקשתך להתראת אימייל לא נשמרה!', + 'email_ok_head' => 'בקשתך להתראת אימייל נשמרה!', + 'error' => 'לא ניתן לאתר את בקשתך לאישור!', + 'mobile_alert_request_created' => 'בקשתך להתראה בטלפון הנייד נקלטה והודעת אימות נשלחה ל', + 'mobile_code' => 'יש להזין מטה את קוד האימות שקיבלת ב-SMS לטלפון הנייד:', + 'mobile_error_head' => 'בקשתך להתראה בטלפון הנייד לא נשמרה!', + 'mobile_ok_head' => 'בקשתך להתראה בטלפון הנייד נשמרה!', + 'settings_error' => 'המערכת אינה מוגדרת כהלכה לעיבוד התראות', + 'unsubscribe' => 'דואר זה נשלח אליך בשל הרשמתך לקבלת התראות. לביטול קבלת התראות יש לגשת ל', + 'unsubscribed' => 'התראות לא יישלחו יותר מ', + 'unsubscribe_failed' => 'ביטול ההרשמה נכשל. יש לוודא תקינות כתובת URL.', + 'verification_email_subject' => 'אימות הרשמה לקבלת התראות', + 'verify_code' => 'התראות על מיקום זה לא יישלחו עד שתאושר בקשתך.', +); diff --git a/application/i18n/he_IL/auth.php b/application/i18n/he_IL/auth.php new file mode 100755 index 0000000000..563d9d3f71 --- /dev/null +++ b/application/i18n/he_IL/auth.php @@ -0,0 +1,47 @@ + array( + 'email' => 'שדה האימייל אינו מכיל כתובת אימייל תקנית?', + 'exists' => 'כבר קיים במערכת משתמש הרשום תחת כתובת אימייל זו.', + 'length' => 'שדה האימייל חייב להכיל לפחות 4 תווים ולא יותר מ-64 תווים.', + 'required' => 'שדה האימייל הינו שדה חובה.', + ) , + 'name' => array( + 'length' => 'שם המלא חייב להכיל לפחות 34 תווים ולא יותר מ-100 תווים.', + 'required' => 'שדה השם הינו שדה חובה.', + 'standard_text' => 'שדה שם המשתמש מכיל תווים שאינם מותרים לשימוש.', + ) , + 'password' => array( + 'length' => 'הסיסמה חייבת להכיל לפחות 5 תווים ולא יותר מ-16 תווים.', + 'login error' => 'אנא בדוק שהזנת את הסיסמה הנכונה.', + 'matches' => 'אנא הקלד את אותה הסיסמה לכל אחד משני שדות הסיסמה.', + 'required' => 'חובה להזין סיסמה.', + ) , + 'password_confirm' => array( + 'matches' => 'אנא הקלד את אותה הסיסמה שהוקלדה בשדה הסיסמה.', + ) , + 'resetemail' => array( + 'email' => 'שדה האימייל אינו מכיל כתובת אימייל תקנית?', + 'invalid' => 'אין ברשותנו את כתובת האימייל שלך', + 'required' => 'שדה האימייל הינו שדה חובה.', + ) , + 'roles' => array( + 'alpha_numeric' => 'תבנית תפקיד שגויה', + 'length' => 'שדה התפקיד חייב להכיל לפחות 5 תווים ולא יותר מ-30 תווים.', + 'required' => 'עליך להגדיר לפחות תפקיד אחד.', + 'values' => 'יש לבחור תפקיד בין משתמש (USER) לבין מפעיל (ADMIN).', + ) , + 'username' => array( + 'admin' => 'לא ניתן לשנות את תפקיד המפעיל.', + 'exists' => 'שם המשתמש שבחרת כבר קיים במערכת.', + 'length' => 'שם המשתמש חייב להכיל לפחות 2 תווים ולא יותר מ-16 תווים.', + 'login error' => 'אנא בדוק שהזנת את שם המשתמש הנכון.', + 'required' => 'שם המשתמש הינו שדה חובה.', + 'superadmin' => 'לא ניתן לשנות את תפקיד מפעיל-על', + ) , +); diff --git a/application/i18n/he_IL/bug.php b/application/i18n/he_IL/bug.php new file mode 100755 index 0000000000..294c48c5dd --- /dev/null +++ b/application/i18n/he_IL/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'נא להזין קוד אבטחה חוקי', + 'required' => 'נא להזין את קוד האבטחה', + ) , + 'email' => array( + 'email' => 'נראה ששדה הדואר האלקטרוני אינו מכיל כתובת דואר אלקטרוני חוקית.', + 'length' => 'על הדואר האלקטרוני להיות באורך של 4 עד 64 תווים.', + 'required' => 'שדה הדואר האלקטרוני הוא שדה נדרש אם תיבת הסימון מסומנת.', + ) , + 'error' => array( + 'required' => 'שדה השגיאה הוא שדה נדרש.', + ) , + 'subject' => array( + 'length' => 'על הנושא להיות באורך 3 תווים לפחות.', + 'required' => 'שדה הנושא הוא שדה נדרש.', + ) , + 'yourname' => array( + 'length' => 'על השם להיות באורך 3 תווים לפחות.', + 'required' => 'שדה השם הוא שדה נדרש.', + ) , +); diff --git a/application/i18n/he_IL/category.php b/application/i18n/he_IL/category.php new file mode 100755 index 0000000000..959889b6b0 --- /dev/null +++ b/application/i18n/he_IL/category.php @@ -0,0 +1,30 @@ + array( + 'length' => 'על שדה הצבע להיות באורך 6 תווים בדיוק.', + 'required' => 'שדה הצבע הינו שדה חובה.', + ) , + 'category_description' => array( + 'required' => 'שדה התיאור הינו שדה חובה.', + ) , + 'category_image' => array( + 'size' => 'אנא ודאו שגודל התמונה אינו עולה על 50 קילובייט.', + 'type' => 'שדה התמונה אינו מכיל תמונה תקינה. ניתן להעלות תמונות מסוג .JPG, .PNG ו-.GIF בלבד.', + 'valid' => 'שדה התמונה אינו מכיל קובץ תקין.', + ) , + 'category_title' => array( + 'length' => 'על שדה הכותרת להיות בן 3 עד 80 תווים.', + 'required' => 'שדה הכותרת הינו שדה חובה.', + ) , + 'parent_id' => array( + 'exists' => 'קטגורית-על אינה קיימת', + 'numeric' => 'ניתן להזין אך ורק מספרים בשדה קטגורית-על.', + 'required' => 'שדה קטגורית-על הינו שדה חובה.', + 'same' => 'הקטגוריה וקטגורית העל אינן יכולות להיות זהות.', + ) , +); diff --git a/application/i18n/he_IL/comments.php b/application/i18n/he_IL/comments.php new file mode 100755 index 0000000000..658c4102e4 --- /dev/null +++ b/application/i18n/he_IL/comments.php @@ -0,0 +1,24 @@ + array( + 'default' => 'נא להזין קוד אבטחה חוקי', + 'required' => 'נא להזין את קוד האבטחה', + ) , + 'comment_author' => array( + 'length' => 'על השם להיות באורך 3 תווים לפחות.', + 'required' => 'שדה השם הוא שדה נדרש.', + ) , + 'comment_description' => array( + 'required' => 'שדה ההערה הוא שדה נדרש.', + ) , + 'comment_email' => array( + 'email' => 'כתובת האימייל שהוזנה לא תקינה.', + 'length' => 'על הדואר האלקטרוני להיות באורך 4 עד 64 תווים.', + 'required' => 'שדה הדואר האלקטרוני הוא שדה נדרש אם תיבת הסימון מסומנת.', + ) , +); diff --git a/application/i18n/he_IL/contact.php b/application/i18n/he_IL/contact.php new file mode 100755 index 0000000000..a5339658f7 --- /dev/null +++ b/application/i18n/he_IL/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'נא העתק את הקוד', + 'required' => 'נא העתק את הקוד', + ) , + 'contact_email' => array( + 'email' => 'כתובת האימייל אינה תקינה', + 'length' => 'על כתובת האימייל להכיל לפחות 4 תווים ולא יותר מ-64 תווים.', + 'required' => 'חובה להזין כתובת אימייל אם תיבת הסימון מסומנת.', + ) , + 'contact_message' => array( + 'required' => 'חובה להזין הודעה.', + ) , + 'contact_name' => array( + 'length' => 'על השם להיות לפחות באורך 3 תווים.', + 'required' => 'חובה להזין שם.', + ) , + 'contact_subject' => array( + 'length' => 'על הנושא להיות לפחות באורך 3 תווים.', + 'required' => 'חובה להזין נושא.', + ) , +); diff --git a/application/i18n/he_IL/core.php b/application/i18n/he_IL/core.php new file mode 100755 index 0000000000..730d54d094 --- /dev/null +++ b/application/i18n/he_IL/core.php @@ -0,0 +1,33 @@ + 'קובץ הגדרות', + 'controller' => 'בקר (controller)', + 'driver' => 'דרייבר (driver)', + 'driver_implements' => 'יש ליישם את הדרייבר %s עבור הספרייה %s באמצעות הממשק %s', + 'driver_not_found' => 'לא הצלחתי למצוא את הדרייבר %s, עבור הספרייה %s', + 'errors_disabled' => 'באפשרותך לגשת לדף הבית או לנסות שוב.', + 'generic_error' => 'לא הצלחתי להשלים את הבקשה', + 'helper' => 'סייען', + 'invalid_filetype' => 'סוג הקובץ המבוקש, .%s, אינו מאושר בקובץ צפיית ההגדרות שלך (view configuration file)', + 'invalid_method' => 'שיטה לא תקינה %s נקראה ב- %s', + 'invalid_property' => 'התכונה (property) %s איננה קיימת במחלקה (class) %s.', + 'library' => 'ספרייה', + 'log_dir_unwritable' => 'לא ניתן לכתוב לתיקיית הלוג (log): %s', + 'model' => 'מודל', + 'no_controller' => 'אושהידי לא הצליח לקבוע מהו הבקר (controller) לצורך ביצוע הבקשה: %s', + 'no_default_route' => 'אנא הגדר נתיב ברירת מחדל ב config/routes.php', + 'page_not_found' => 'הדף שביקשת, %s, לא נמצא.', + 'report_bug' => 'דווח על השגיאה הזו לאושהידי', + 'resource_not_found' => 'הבקשה %s, %s, לא אותרה', + 'stats_footer' => 'נטען ב {execution_time} שניות, באמצעות {memory_usage} של זכרון. נוצר על ידי אושהידי v%s.', + 'text_direction' => 'rtl', + 'there_can_be_only_one' => 'יכול להיות רק הרצה אחת של אושהידי לכל בקשת עמוד', + 'uncaught_exception' => 'לא תפסתי %s: %s בקובץ %s בשורה %s', + 'view' => 'צפייה', + 'view_set_filename' => 'עליך להגדיר את קובץ הצפייה (view filename) לפני שקוראים למריץ (render)', +); diff --git a/application/i18n/he_IL/database.php b/application/i18n/he_IL/database.php new file mode 100755 index 0000000000..6610d20a47 --- /dev/null +++ b/application/i18n/he_IL/database.php @@ -0,0 +1,10 @@ + 'שגיאה בבסיס הנתונים: %s', + 'table_not_found' => 'לא ניתן למצוא את הטבלה "%s" בבסיס הנתונים. יש לוודא כי מתבצע שימוש בגירסה העדכנית ביותר של בסיס הנתונים עבור הגירסה הזו של אושהידי', +); diff --git a/application/i18n/he_IL/datetime.php b/application/i18n/he_IL/datetime.php new file mode 100755 index 0000000000..9ca90bdbc1 --- /dev/null +++ b/application/i18n/he_IL/datetime.php @@ -0,0 +1,84 @@ + array( + 'abbv' => 'ו\'', + 'full' => 'שישי', + ) , + 'monday' => array( + 'abbv' => 'ב\'', + 'full' => 'שני', + ) , + 'saturday' => array( + 'abbv' => 'ש\'', + 'full' => 'שבת', + ) , + 'sunday' => array( + 'abbv' => 'א\'', + 'full' => 'ראשון', + ) , + 'thursday' => array( + 'abbv' => 'ה\'', + 'full' => 'חמישי', + ) , + 'tuesday' => array( + 'abbv' => 'ג\'', + 'full' => 'שלישי', + ) , + 'wednesday' => array( + 'abbv' => 'ד\'', + 'full' => 'רביעי', + ) , + 'january' => array( + 'abbv' => 'ינו', + 'full' => 'ינואר', + ) , + 'february' => array( + 'abbv' => 'פבר', + 'full' => 'פברואר', + ) , + 'march' => array( + 'abbv' => 'מרץ', + 'full' => 'מרץ', + ) , + 'april' => array( + 'abbv' => 'אפר', + 'full' => 'אפריל', + ) , + 'may' => array( + 'abbv' => 'מאי', + 'full' => 'מאי', + ) , + 'june' => array( + 'abbv' => 'יונ', + 'full' => 'יוני', + ) , + 'july' => array( + 'abbv' => 'יול', + 'full' => 'יולי', + ) , + 'august' => array( + 'abbv' => 'אוג', + 'full' => 'אוגוסט', + ) , + 'september' => array( + 'abbv' => 'ספט', + 'full' => 'ספטמבר', + ) , + 'october' => array( + 'abbv' => 'אוק', + 'full' => 'אוקטובר', + ) , + 'november' => array( + 'abbv' => 'נוב', + 'full' => 'נובמבר', + ) , + 'december' => array( + 'abbv' => 'דצמ', + 'full' => 'דצמבר', + ) , +); diff --git a/application/i18n/he_IL/feeds.php b/application/i18n/he_IL/feeds.php new file mode 100755 index 0000000000..57b7b0be95 --- /dev/null +++ b/application/i18n/he_IL/feeds.php @@ -0,0 +1,19 @@ + 'תאריך', + 'feed_name' => array( + 'length' => 'על שם הרסס (RSS) להיות בין 3 ל-70 תווים בדיוק.', + 'required' => 'אנא מלא את שם הפיד (RSS).', + ) , + 'feed_url' => array( + 'required' => 'אנא הזן את כתובת (ה-URL) של הפיד (RSS)', + 'url' => 'אנא הזן כתובת תקנית ומלאה, לדוגמא: http://www.ushahidi.com', + ) , + 'source' => 'מקור הפיד', + 'title' => 'כותרת', +); diff --git a/application/i18n/he_IL/footer.php b/application/i18n/he_IL/footer.php new file mode 100755 index 0000000000..ba951a7abd --- /dev/null +++ b/application/i18n/he_IL/footer.php @@ -0,0 +1,9 @@ + 'php5-curl אינו מותקן במערכת זו', +); diff --git a/application/i18n/he_IL/form.php b/application/i18n/he_IL/form.php new file mode 100755 index 0000000000..ba9d1afee9 --- /dev/null +++ b/application/i18n/he_IL/form.php @@ -0,0 +1,46 @@ + array( + 'default' => 'ערך ברירת המחדל שסיפקת עבור שדה זה אינו תקין.', + 'length' => 'על שדה השם להיות באורך של בין3 ל- 200 תווים בדיוק.', + ) , + 'field_height' => array( + 'between' => 'אנא הכנס ערך בין 0 ל- 50 עבור גובה השדה', + ) , + 'field_isdate' => array( + 'between' => 'הזנת ערך שגוי עבור שדה התאריך', + 'required' => 'אנא בחר כן או לא עבור שדה התאריך', + ) , + 'field_name' => array( + 'length' => 'שם השדה צריך להיות באורך של 3 עד 100 תווים בדיוק.', + 'required' => 'אנא הכנס שם שדה.', + ) , + 'field_required' => array( + 'between' => 'הזנת ערך שגוי עבור השדה הדרוש', + 'required' => 'אנא בחר כן או לא עבור השדה הדרוש', + ) , + 'field_type' => array( + 'numeric' => 'אנא בחר סוג שדה באופן תקין.', + 'required' => 'אנא בחר סוג שדה.', + ) , + 'field_width' => array( + 'between' => 'אנא הזן ערך בין 0 ל - 300 תווים בדיוק עבור רוחב השדה', + ) , + 'form_description' => array( + 'required' => 'אנא כתוב תיאור לטופס.', + ) , + 'form_id' => array( + 'default' => 'לא ניתן למחוק את טופס ברירת המחדל.', + 'numeric' => 'אנא בחר איזה טופס להוסיף לשדה.', + 'required' => 'אנא בחר איזה טופס להוסיף לשדה.', + ) , + 'form_title' => array( + 'length' => 'על שדה השם של הטופס להיות באורך של בין 3 ל- 100 תווים בדיוק.', + 'required' => 'אנא מלא שם עבור הטופס.', + ) , +); diff --git a/application/i18n/he_IL/imap.php b/application/i18n/he_IL/imap.php new file mode 100755 index 0000000000..b1d272f45d --- /dev/null +++ b/application/i18n/he_IL/imap.php @@ -0,0 +1,10 @@ + 'לא ניתן לפתוח זרם IMAP.', + 'unsupported_service' => 'שירות האימייל אינו נתמך', +); diff --git a/application/i18n/he_IL/installer.php b/application/i18n/he_IL/installer.php new file mode 100755 index 0000000000..fbebdb5bdc --- /dev/null +++ b/application/i18n/he_IL/installer.php @@ -0,0 +1,84 @@ + 'נתיב הבסיס (Base Path)', + 'database' => 'דטהבייס (Database)', + 'database_host' => 'מארח הדטהבייס (Database Host)', + 'database_host_description' => 'אם אתה מריץ את אושהידי על המחשב שלך, סביר שזה יהיה "localhost". אם אתה מריץ את אושהידי על שרת באינטרנט, תוכל לקבל את מידע האיכסון שלך מספק האיכסון שלך.', + 'database_name' => 'שם הדטבייס (Database Name)', + 'database_name_description' => 'השם של הדטהבייס עליו תרצה להריץ את אושהידי', + 'db_information_link' => 'למידע נוסף, אנא קרא את המאמר הזה בעמוד הויקי אשר מדבר בהרחבה על דטהבייסים', + 'default_language' => 'שפת ברירת המחדל (Locale)', + 'default_language_description' => 'כל התקנה של אושהידי מגיע עם חבילה של תירגומי שפות. באפשרותך גם להוסיף שפה משלך', + 'disable' => 'בטל', + 'enable' => 'הפעל', + 'error_summary' => 'סיכום רשימת השגיאות שהתרחשו', + 'files_location_text' => 'המיקום על השרת שלך אליו העלית את קבצי האושהידי. זיהינו את הערך הזה אוטומאטית, אנא וודא שהוא נכון. אם השדה הזה ריק, אל תדאג, זה בסך הכל אומר שאושהידי מותקן בתיקיית האב הכי גבוה בהיררכיית הספריות', + 'finished' => 'סיימתי', + 'general' => 'כללי', + 'google_key' => 'מפתח API של גוגל', + 'google_key_description' => 'כל אחד יכול להשיג מפתח API. השג את שלך כאן', + 'go_back' => 'חזור לאחור', + 'index' => array( + 'advanced' => 'התקנה מתקדמת', + 'advanced_installation_description' => 'מלא את כל ההגדרות הבסיסיות בחמשת השלבים הבאים. זה כולל שרת, מפה, שם האתר, ופרטי יצירת הקשר', + 'basic_installation' => 'התקנה בסיסית', + 'basic_installation_description' => 'מהיר ופשוט. כל מה שדרוש לך זה התיקייה שבה האתר יותקן ומידע על הדטהבייס שלך. בחר באופציה זו אם ברצונך שהאתר יהיה באוויר בזריזות, תמיד תוכל לעדכן את ההגדרות של האתר מאוחר יותר', + 'proceed' => 'המשך', + 'welcome' => 'ברוך הבא לתהליך ההתקנה של אושהידי על השרת. בחר מטה את סוג ההתקנה שברצונך לבצע', + ) , + 'installation_successful' => 'ההתקנה הושלמה בהצלחה', + 'mail_server' => 'שרת דואר (Mail Server)', + 'mail_server_host' => 'מאכסן שרת הדואר (Mail Server Host)', + 'mail_server_host_description' => 'דוגמאות: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'סיסמת שרת הדואר', + 'mail_server_password_description' => 'הסיסמא שבה אתה בדרך כלל מתחבר לאימייל שלך', + 'mail_server_port' => 'פורט שרת הדואר (Mail Server Port)', + 'mail_server_port_description' => 'פורטים נפוצים (Common Ports): 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'סוג שרת הדואר (Mail Server Type)', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). הסבר אודות ההבדל בין השניים.', + 'mail_server_username' => 'שם משתמש לשרת הדואר (Mail Server Username)', + 'mail_server_username_description' => 'אם אתה משתמש בג\'ימייל, הוטמייל או דואר-יהאו, הכנס את כתובת האימייל המלאה בתור סיסמא', + 'map' => 'מפה', + 'map_provider' => 'ספק מפות', + 'map_provider_description' => 'אושהידי עובד טוב באותה המידה עם כל אחד מארבעת ספקי המפות הבאים: גוגל, בינג, יאהו, או שירות המפות הפתוחות (OSM = Open Street Map). בחר את שירות המפות אשר מציע את מירב הפירוט עבור איזורך. עבור התקנה שמיועדת לישראל רצוי להשתמש ב- OSM', + 'other_steps' => 'צעדים נוספים...', + 'password' => 'סיסמא', + 'password_description' => 'סיסמת הדטה-בייס', + 'previous' => 'קודם', + 'restart_apache' => 'אנא אתחל את שרת האפצ\'י שלך', + 'select_mail_server_ssl' => 'הפעל או בטל SSL', + 'select_mail_server_ssl_description' => 'חלק משרתי הדואר נותנים לך את האופציה להשתמש ב SSL בזמן יצירת קשר. שימוש ב- SSL הוא מומלץ היות והוא מעניק לך שכבה נוספת של אבטחה', + 'setup_sms' => 'הגדר את שרת ה SMS שלך', + 'site_email' => 'כתובת אימייל האתר', + 'site_email_alerts' => 'כתובת אימייל להתראות האתר', + 'site_email_alerts_description' => 'כאשר המבקרים באתר שלך נרשמים לקבלת התראות באימייל, הם יקבלו מיילים מהכתובת הזו. כתובת האימייל הזו אינה חייבת להיות זהה לכתובת האימייל של האתר', + 'site_email_description' => 'תקשורת אימייל ברחבי האתר תוזרם דרך כתובת האימייל הזו', + 'site_name' => 'שם האתר', + 'site_name_description' => 'שם האתר שלך', + 'site_tagline' => 'כותרת המשנה של האתר', + 'site_tagline_description' => 'שורת כותרת המשנה שלך', + 'summary' => array( + 'text_1' => 'הקבצים והתיקיות שמופיעים למטה צריכים להיות זמינים לכתיבה על ידי השרת שלך', + 'text_2' => '

תוכל למצוא הוראות לשינוי הרשאות הכתיבה של קבצים ותיקיות כאן:

+ ', + 'text_3' => 'לפני שתתחיל, עליך לוודא שהקבצים והתקיות הבאים ניתנים לכתיבה על ידי השרת שלך. זה כולל שינוי הרשאות הקבצים', + 'text_4' => 'לצורך תהליך ההתקנה, דאג שברשותך פריטי המידע הבאים', + ) , + 'table_prefix' => 'קידומת הטבלה (Table Prefix)', + 'table_prefix_description' => 'לרוב אתה לא תרצה לשנות את קידומת הטבלה (Table Prefix). עם זאת, אם ברצונך להרציץ כמה אתרי אושהידי מאותו דטהבייס, באפשרותך לעשות כן באמצעות שינוי קידומת הטבלה (Table Prefix).', + 'title' => 'כותרת', + 'to_login' => 'כדי להיכנס למערכת, לך אל', + 'upload_data' => 'העלה מידע דיווח', + 'username' => 'שם משתמש', + 'username_description' => 'שם המשתמש של הדטה בייס שלך (database username)', + 'use_credentials' => 'והשתמש באישורים הבאים', + 'view_site' => 'צפה באתר שלך', +); diff --git a/application/i18n/he_IL/json.php b/application/i18n/he_IL/json.php new file mode 100644 index 0000000000..9b55549c31 --- /dev/null +++ b/application/i18n/he_IL/json.php @@ -0,0 +1,6 @@ + ' דיווחים', + ); +?> + diff --git a/application/i18n/he_IL/layer.php b/application/i18n/he_IL/layer.php new file mode 100755 index 0000000000..f10202b05b --- /dev/null +++ b/application/i18n/he_IL/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'על שדה הצבע להיות באורך של 6 תווים בדיוק.', + 'required' => 'יש להזין שדה צבע, בן 6 תווים.', + ) , + 'layer_file' => array( + 'type' => 'שדה הקובץ לא מכיל קובץ תקין. הפורמטים המקובלים היחידים הם .KMZ, .KML.', + 'valid' => 'שדה הקובץ לא מכיל קובץ תקין.', + ) , + 'layer_name' => array( + 'length' => 'שדה השם חייב להיות באורך של בין 3 ל-80 תווים בדיוק', + 'required' => 'מילוי שדה השם הוא חובה.', + ) , + 'layer_url' => array( + 'atleast' => 'חובה להכניס כתובת או קובץ KML', + 'both' => 'לא ניתן להכניס גם כתובת וגם קובץ KML ביחד', + 'url' => 'אנא מלא כתובת אינטרנט תקינה. לדוגמא: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/he_IL/libraries.php b/application/i18n/he_IL/libraries.php new file mode 100755 index 0000000000..a3f91a98cd --- /dev/null +++ b/application/i18n/he_IL/libraries.php @@ -0,0 +1,26 @@ + 'החיבור לשרת akismet נכשל', + 'akismet_cannot_retrieve' => 'לא ניתן לאחזר תשובה משרת Akismet', + 'api_library_not_found' => 'ספרית ה-API: %s, עבור ה-class %s לא נמצאה. יש לבדוק את טבלת ניתוב משימות ה-API.', + 'askimet_invalid_apikey' => 'מפתח ה-API עבור Akismet אינו תקין.', + 'clickatell_fopen_error' => 'שגיאה בעת ביצוע fopen sending method!
אנא בדוק האם ל- PHP יש תמיכה ב- OpenSSL כמו כן וודא שגירסת ה- PHP אשר מותקנת בשרת היא מעל 5.2', + 'clickatell_message_too_long' => 'הודעה ה- unicode שלך ארוכה מדי! (אורך נוכחי =', + 'clickatell_no_destination_address' => 'אנא ציין את כתובת היעד אל (TO)!', + 'clickatell_no_sender_address' => 'אנא ציין את כתובת המען (FROM)!', + 'clickatell_unicode_message_too_long' => 'הודעה ה- unicode שלך ארוכה מדי! (אורך נוכחי =', + 'clickatell_unsupported_method' => 'שיטת משלוח אשר איננה נתמכת!', + 'invalid_api_library' => 'ספריית ה- API %s איננה תקפה. כל ספריות ה- API צריכות להיות תת מחלקות (subclasses) של %s', + 'upgrade_directory_not_deleted' => 'לא הצלחתי למחוק את התיקייה %s', + 'upgrade_extracting_error' => 'שגיאה התרחשה בזמן החילוץ מכיווץ של: %s', + 'upgrade_failed' => 'ההורדה של הגירסה הכי עדכנית של אושהידי כשלה. HTTP status code', + 'upgrade_file_not_copied' => 'לא הצלחתי להעתיק את הקובץ %s', + 'upgrade_file_not_deleted' => 'לא הצלחתי למחוק את הקובץ %s', + 'upgrade_title' => 'סקריפט עידכון לאושהידי', + 'upgrade_zip_error' => 'קובץ הזיפ של אושהידי, %s, חסום לכתיבה', +); diff --git a/application/i18n/he_IL/maintenance.php b/application/i18n/he_IL/maintenance.php new file mode 100644 index 0000000000..af70f288a6 --- /dev/null +++ b/application/i18n/he_IL/maintenance.php @@ -0,0 +1,9 @@ + 'צר לנו, אך האתר כרגע מושבת לצורך תחזוקה. אנא נסו שוב בעוד מספר דקות.', +); diff --git a/application/i18n/he_IL/message.php b/application/i18n/he_IL/message.php new file mode 100755 index 0000000000..e86455c575 --- /dev/null +++ b/application/i18n/he_IL/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'נא להזין קוד אבטחה חוקי', + 'required' => 'נא להזין את קוד האבטחה', + ) , + 'email' => array( + 'email' => 'נראה ששדה הדואר האלקטרוני אינו מכיל כתובת דואר אלקטרוני חוקית.', + 'length' => 'על הדואר האלקטרוני להיות באורך של 4 עד 64 תווים.', + 'required' => 'שדה הדואר האלקטרוני הוא שדה נדרש אם תיבת הסימון מסומנת.', + ) , + 'message' => array( + 'required' => 'שדה ההערה הוא שדה נדרש.', + ) , + 'name' => array( + 'length' => 'על השם להיות באורך 3 תווים לפחות.', + 'required' => 'שדה השם הוא שדה נדרש.', + ) , + 'phone' => array( + 'length' => 'הטלפון אינו חוקי.', + ) , +); diff --git a/application/i18n/he_IL/mhi.php b/application/i18n/he_IL/mhi.php new file mode 100755 index 0000000000..b813ac7dd0 --- /dev/null +++ b/application/i18n/he_IL/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'נא להזין קוד אבטחה בתוקף.', + 'required' => 'נא להזין קוד אבטחה.', + ) , + 'contact_email' => array( + 'email' => 'שדה האימייל אינו מכיל כתובת אימייל תקינה', + 'required' => 'נא להזין כתובת אימייל', + ) , + 'contact_message' => array( + 'required' => 'שדה ההודעה הינו שדה חובה.', + ) , + 'contact_subject' => array( + 'length' => 'שדה הנושא חייב להכיל 3 תווים לפחות.', + 'required' => 'שדה הנושא הינו שדה חובה.', + ) , +); diff --git a/application/i18n/he_IL/notifications.php b/application/i18n/he_IL/notifications.php new file mode 100755 index 0000000000..722f790ba0 --- /dev/null +++ b/application/i18n/he_IL/notifications.php @@ -0,0 +1,35 @@ + 'הודעה זו נשלחה מהאתר שלך.', + 'admin_login_url' => 'כניסת מנהל', + 'admin_new_comment' => array( + 'message' => 'תגובה חדשה נשלחה לאתר שלך, בתגובה ל:', + 'subject' => 'תגובה חדשה', + ) , + 'admin_new_email' => array( + 'message' => 'הודעת דואר חדשה נשלחה לאתר שלך.', + 'subject' => 'הודעת דואר חדשה', + ) , + 'admin_new_report' => array( + 'message' => 'דיווח חדש נשלח לאתר שלך.', + 'subject' => 'דיווח חדש', + ) , + 'admin_new_sms' => array( + 'message' => 'הודעת טקסט חדשה נשלחה לאתר שלך.', + 'subject' => 'הודעת טקסט חדשה', + ) , + 'member_new_alert' => array( + 'message' => 'קיבלת התראה חדשה', + 'subject' => 'התראה חדשה!', + ) , + 'member_new_message' => array( + 'message' => 'קיבלת מסר פרטי', + 'subject' => 'מסר פרטי חדש', + 'footer' => 'על מנת להשיב אנא המשך אל: ', + ) , +); diff --git a/application/i18n/he_IL/page.php b/application/i18n/he_IL/page.php new file mode 100644 index 0000000000..ec5ce03d8f --- /dev/null +++ b/application/i18n/he_IL/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'הזן בבקשה כותרת לדף', + 'length' => 'על כותרת הדף להיות באורך של בין 3 ל-150 תווים.', + ) , + 'page_tab' => array( + 'required' => 'אנא הזן שם לשונית עבור הדף', + ) , + 'page_description' => array( + 'required' => 'הזן בבקשה תיאור לדף', + ) , +); diff --git a/application/i18n/he_IL/permissions.php b/application/i18n/he_IL/permissions.php new file mode 100644 index 0000000000..896c6cf934 --- /dev/null +++ b/application/i18n/he_IL/permissions.php @@ -0,0 +1,26 @@ + 'צפה בדו"חות', + 'reports_edit' => 'צור/ערוך/מחק דו"חות', + 'reports_approve' => 'אשר דו"חות', + 'reports_verify' => 'אמת דו"חות', + 'reports_comments' => 'נהל דו"חות תגובות', + 'reports_download' => 'הורד דו"חות', + 'reports_upload' => 'העלה דו"חות', + 'messages' => 'נהל מסרים', + 'messages_reporters' => 'נהל דו"חות הודעות', + 'stats' => 'צפה בסטטיסטיקות', + 'settings' => 'שנה הגדרות', + 'manage' => 'לוח ניהול', + 'users' => 'נהל משתמשים', + 'manage_roles' => 'נהל תפקידים', + 'checkin' => 'יכול להירשם', + 'checkin_admin' => 'נהל הרשמות', + 'admin_ui' => 'לגשת לממשק אדמין', + 'member_ui' => 'לגשת לממשק חברים', +); diff --git a/application/i18n/he_IL/private_message.php b/application/i18n/he_IL/private_message.php new file mode 100644 index 0000000000..f06111a541 --- /dev/null +++ b/application/i18n/he_IL/private_message.php @@ -0,0 +1,7 @@ + 'שגיאה!', + 'country_name' => array( + 'single_country' => 'This deployment spans within one country only. Please make sure the report location is within the country Uganda.', + ) , + 'data_include' => array( + 'between' => 'אנא בחר פריט תקין על מנת לכלול אותו בהורדה', + 'numeric' => 'אנא בחר פריט תקין על מנת לכלול אותו בהורדה', + ) , + 'data_point' => array( + 'between' => 'אנא בחר סוג תקין של דיווח לצורך הורדתו', + 'numeric' => 'אנא בחר סוג תקין של דיווח לצורך הורדתו', + 'required' => 'אנא בחר סוג תקין של דיווח לצורך הורדתו', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'האם השדה של זמן התחלה כולל תאריך תקין?', + 'range' => 'אנא מלא תאריך תקין עבור זמן התחלה. זמן ההתחלה לא יכול להיות גדול יותר מהיום הנוכחי.', + ) , + 'incident_active' => array( + 'between' => 'אנא הכנס ערך תקין על מנת לאשר את הדיווח', + 'required' => 'אנא הכנס ערך תקין על מנת לאשר את הדיווח', + ) , + 'incident_ampm' => array( + 'validvalues' => 'האם שדה ה-am/pm כולל ערך תקין?', + ) , + 'incident_category' => array( + 'numeric' => 'האם שדה הקטגוריה כולל ערך תקין?', + 'required' => 'חובה למלא את שדה הקטגוריה.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'האם שדה התאריך כולל ערך תאריך תקין?', + 'date_mmddyyyy' => 'האם שדה התאריך כולל ערך תאריך תקין?', + 'required' => 'חובה למלא את שדה התאריך.', + ) , + 'incident_description' => array( + 'required' => 'חובה למלא את שדה התיאור.', + ) , + 'incident_hour' => array( + 'between' => 'האם שדה השעות מכיל ערך תקין?', + 'required' => 'חובה למלא את שדה השעות.', + ) , + 'incident_information' => array( + 'alpha' => 'אנא מלא ערך תקין עבור סבירות המידע', + 'length' => 'אנא מלא ערך תקין עבור סבירות המידע', + ) , + 'incident_minute' => array( + 'between' => 'האם שדה הדקות מכיל מידע תקין?', + 'required' => 'חובה למלא את שדה הדקות.', + ) , + 'incident_news' => array( + 'url' => 'האם שדה הקישור למקור החדשות מכיל ערך תקין?', + ) , + 'incident_photo' => array( + 'size' => 'אנא וודא שגודל קובץ התמונה שהעלית הוא עד 2MB.', + 'type' => 'נראה ששדה העלאת התמונה לא כולל תמונה תקינה. סוגי קבצי התמונות האפשריים להעלאה הם .JPG .PNG ו .GIF.', + 'valid' => 'שדה העלאת התמונה איננו מכיל ערך תקין', + ) , + 'incident_source' => array( + 'alpha' => 'אנא הזן ערך תקין עבור אמינות המקור', + 'length' => 'אנא הזן ערך תקין עבור אמינות המקור', + ) , + 'incident_title' => array( + 'length' => 'על שדה הכותרת להכיל בין 3 ל- 200 תווים בדיוק.', + 'required' => 'חובה למלא את שדה הכותרת.', + ) , + 'incident_verified' => array( + 'between' => 'אנא הזן ערך תקין לאימות הדיווח', + 'required' => 'אנא הזן ערך תקין לאימות הדיווח', + ) , + 'incident_video' => array( + 'url' => 'האם שדה הקישור לוידיאו מכיל קישור תקין?', + ) , + 'latitude' => array( + 'between' => 'האם שדה קו-הרוחב מכיל ערך תקין??', + 'required' => 'שדה קו-הרוחב הוא חובה. אנא הקלק על המפה בשביל לבחור מיקום.', + ) , + 'locale' => array( + 'alpha_dash' => 'שדה השפה (locale) מכיל ערך שגוי. ', + 'exists' => 'לדיווח זה כבר יש תירגום לשפה זו', + 'length' => 'שדה השפעה (locale) מכיל ערך שגוי. ', + 'locale' => 'לדיווח המקורי והתירגום שלו הם שניהם באותה שפה (locale)', + 'required' => 'חובה למלא את השפה (locale).', + ) , + 'location_name' => array( + 'length' => 'על שדה המיקום שם להיות בין 3 ל- 200 תווים בדיוק.', + 'required' => 'חובה למלא את שדה שם המיקום.', + ) , + 'longitude' => array( + 'between' => 'האם שדה הקו-אורך מכיל ערך תקין?', + 'required' => 'שדה קו-האורך הוא חובה. אנא הקלק על המפה בשביל לבחור מיקום.', + ) , + 'person_email' => array( + 'email' => 'האם שדה האימייל מכיל ערך תקין?', + 'length' => 'על שדה האימייל להיות באורך של 4 עד 64 תווים בדיוק.', + ) , + 'person_first' => array( + 'length' => 'על שדה השם הפרטי להיות באורך של 3 עד 100 תווים בדיוק.', + ) , + 'person_last' => array( + 'length' => 'על שדה שם המשפחה להיות באורך של 2 עד 100 תווים בדיוק.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'האם שדה תאריך הסיום מכיל ערך תקין?', + 'range' => 'אנא מלא ערך תאריך סיום תקין. התאריך לא יכול להיות גדול מהיום.', + 'range_greater' => 'תאריך ההתחלה אינו יכול להיות גדול מתאריך הסיום.', + ) , +); diff --git a/application/i18n/he_IL/reporters.php b/application/i18n/he_IL/reporters.php new file mode 100755 index 0000000000..91e3974cc0 --- /dev/null +++ b/application/i18n/he_IL/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'קו הרוחב אינו מכיל ערך חוקי', + 'required' => 'חובה להזין קו רוחב. לבחירת מיקום מדויק יש ללחוץ על המפה.', + ) , + 'level_id' => array( + 'numeric' => 'שדה רמת המדווח אינו מכיל ערך חוקי', + 'required' => 'חובה להזין רמת מדווח', + ) , + 'location_name' => array( + 'length' => 'על שם המיקום לכלול בין 3 ל200 תווים.', + 'required' => 'חובה להזין את שם המיקום', + ) , + 'longitude' => array( + 'between' => 'קו האורך אינו מכיל ערך חוקי', + 'required' => 'חובה להזין קו אורך. לבחירת מיקום מדויק יש ללחוץ על המפה.', + ) , + 'reporter_id' => array( + 'numeric' => 'מדווח לא חוקי', + 'required' => 'מדווח לא חוקי', + ) , +); diff --git a/application/i18n/he_IL/reports.php b/application/i18n/he_IL/reports.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/he_IL/reports.php @@ -0,0 +1,7 @@ + array( + 'length' => 'על התיאור להיות באורך 3 עד 100 תווים.', + 'required' => 'שדה התיאור הוא שדה נדרש.', + ) , + 'name' => array( + 'alpha_numeric' => 'על השם להכיל רק אותיות ומספרים.', + 'length' => 'על השם להיות באורך 2 עד 30 תווים.', + 'nomodify' => 'לא ניתן לשנות את התפקידים של משתמש המפעיל-על.', + 'required' => 'שדה השם הוא שדה חובה.', + ) , + 'access_level' => array( + 'numeric' => 'שדה הרשאת המשתמש צריך להיות מספר בין 0 ל- 100.', + 'required' => 'שדה הרשאת המשתמש צריך להיות מספר בין 0 ל- 100.', + ) , +); diff --git a/application/i18n/he_IL/settings.php b/application/i18n/he_IL/settings.php new file mode 100755 index 0000000000..56d153f272 --- /dev/null +++ b/application/i18n/he_IL/settings.php @@ -0,0 +1,196 @@ + array( + 'between' => 'האם השדה להפעלת תגובות מכיל ערך תקין?', + 'required' => 'השדה להפעלת תגובות הוא הכרחי.', + ) , + 'allow_feed' => array( + 'between' => 'האם השדה שמאפשר לכלול פיד מכיל ערך תקין?', + 'required' => 'השדה שמאפשר לכלול פיד הוא הכרחי.', + ) , + 'allow_reports' => array( + 'between' => 'האם השדה שמאפשר לכלול דיווחים מכיל ערך תקין?', + 'required' => 'השדה שמאפשר לכלול דיווחים הוא הכרחי.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'האם השדה שמאפשר שיתוף סטטיסטיקות מכיל ערך תקין?', + 'required' => 'השדה שמאפשר שיתוף סטטיסטיקות הוא הכרחי.', + ) , + 'api' => array( + 'default_record_limit' => 'ברירת מחדל למספר הרשומות אשר ישלפו פר בקשת API', + 'maximum_record_limit' => 'המספר המקסימלי של רשומות אשר ישלפו פר בקשת API', + 'maximum_requests_per_ip_address' => 'מספר מקסימלי של בקשות API לכל כתובת IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'האם שדה האקיזמט (Akismet) מכיל ערך תקין?', + 'length' => 'האם שדה האקיזמט (Akismet) מכיל ערך תקין?', + ) , + 'cache_pages' => array( + 'between' => 'השדה של מטמון (cache) העמוד הוא חובה.', + 'required' => 'האם השדה של מטמון (cache) העמוד מכיל ערך תקין?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'האם השדה של משך זמן מטמון (cache) העמוד מכיל ערך תקין?', + 'required' => 'השדה של משך זמן מטמון (cache) העמוד הוא חובה.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'עושה רושם שהשרת שלך איננו מוגדר באופן שמאפשר לו להגיש קישורים נקיים. יהיה עליך להגדיר את השרת שלך על מנת לאפשר אופציה זו. עקוב אחר ההוראות בקישור המצורף על מנת לתקן את הבעיה.', + 'clean_url_enabled' => 'האופציה הזו מפעילה קישורים "נקיים" באושהידי. כלומר ללא "index.php" בכתובת האתר.', + 'enable_clean_url' => 'אפשר קישורים נקיים', + 'title' => 'קישורים נקיים', + ) , + 'clickatell_api' => array( + 'length' => 'על שדה מספר ה-Clickatell API להיות באורך של עד 20 תווים בדיוק.', + 'required' => 'שדה מספר ה-Clickatell API הוא חובה.', + ) , + 'clickatell_password' => array( + 'length' => 'על שדה סיסמאת ה-Clickatell להיות באורך של 5 עד 50 תווים בדיוק.', + 'required' => 'שדה סיסמאת ה-Clickatell הוא חובה.', + ) , + 'clickatell_username' => array( + 'length' => 'על שדה שם משתמש ה Clickatell להיות באורך של עד 50 תווים בדיוק.', + 'required' => 'שדה שם משתמש ה-Clickatell הוא חובה.', + ) , + 'configure_map' => 'הגדר מפה', + 'default_location' => 'מיקום ברירת מחדל', + 'default_map_all' => array( + 'alpha_numeric' => 'האם שדה צבע הפיד מכיל ערך תקין?', + 'length' => 'על שדה הצבע להיות באורך של עד 6 תווים בדיוק.', + 'required' => 'שדה הצבע הוא חובה.', + ) , + 'default_map_view' => 'ברירת מחדל לתצוגת המפה', + 'default_zoom_level' => 'ברירת מחדל למידת ההגדלה', + 'download_city_list' => 'אחזר ערים מגאו-שמות (Geonames)', + 'email_host' => array( + 'length' => 'שדה הפורט (port) של שרת האימייל ארוך מידי', + 'numeric' => 'על שדה הפורט (port) של שרת האימייל להכיל מספרים בלבד.', + ) , + 'email_password' => array( + 'length' => 'על שדה סיסמאת שרת הדואר להיות באורך של בין 5 ל- 50 תווים בדיוק.', + 'required' => 'שדה סיסמאת שרת הדואר הוא חובה.', + ) , + 'email_port' => array( + 'length' => 'שדה הפורט (port) של שרת האימייל ארוך מידי', + 'numeric' => 'על שדה הפורט (port) של שרת האימייל להכיל מספרים בלבד.', + ) , + 'email_servertype' => array( + 'length' => 'שדה הפורט (port) של שרת האימייל ארוך מידי', + ) , + 'email_username' => array( + 'length' => 'על שדה שם המשתמש של שרת הדואר להיות באורך של עד 50 תווים בדיוק.', + 'required' => 'שדה שם המשתמש של שרת הדואר הוא חובה.', + ) , + 'facebook' => array( + 'title' => 'הגדרת אפשרויות הפייסבוק', + 'description' => 'על מנת להשיג את המידע שיש למלא למטה, ראשית יהיה עליך ליצור אפליקציית פייסבוק ב', + ) , + 'google_analytics' => array( + 'length' => 'חובה על שדה הגוגל אנליטיקס להכיל מספר זיהוי (Web Property ID) מהצורה UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'הפעל HTTPS', + 'https_disabled' => 'האופציה הזו מאפשרת לגשת לאושהידי באופן לא מאובטח; כלומר ללא "https://" בקידומת לכתובת האתר', + 'https_enabled' => 'האופציה הזו מאפשרת לגשת לאושהידי באופן מאובטח; כלומר עם "https://" בקידומת לכתובת האתר', + ) , + 'items_per_page' => array( + 'between' => 'האם השדה של מספר הפריטים פר עמוד (עמוד ראשי) מכיל ערך תקין?', + 'required' => 'השדה של מספר הפריטים פר עמוד (עמוד ראשי) הוא חובה.', + ) , + 'items_per_page_admin' => array( + 'between' => 'האם השדה של מספר הפריטים פר עמוד (עמוד ניהול) מכיל ערך תקין?', + 'required' => 'השדה של מספר הפריטים פר עמוד (עמוד ניהול) הוא חובה.', + ) , + 'map' => array( + 'default_location' => 'הגדרת ספק המפות עבור האתר הוא תהליך פשוט. בחר את הספק, השג את מפתח ה API מאתר הספק, והכנס את מפתח ה API', + 'zoom' => 'מידת ההגדלה', + ) , + 'map_provider' => array( + 'choose' => 'בחר ספק מפות', + 'enter_api' => 'הכנס את מפתח ה- API החדש', + 'get_api' => 'השג מפתח API', + 'info' => 'הגדרת ספק המפות עבור האתר הוא תהליך פשוט. בחר את הספק, השג את מפתח ה API מאתר הספק, והכנס את מפתח ה API', + 'name' => 'ספק המפות', + ) , + 'map_settings' => 'הגדרות המפה', + 'multiple_countries' => 'האם התקנת האושהידי מתייחסת למספר ארצות', + 'select_default_location' => 'בחר ארץ ברירת מחדל', + 'set_location' => 'הקלק וגרור את המפה כדי לבחור את מיקומך המדוייק', + 'site' => array( + 'allow_clustering' => 'דיווחי אשכולות על המפה', + 'allow_comments' => 'אפשר למשתמש להשאיר תגובות לדיווחים', + 'allow_feed' => 'כלול פיד רסס חדשות (news RSS feed) באתר', + 'allow_reports' => 'אפשר למשתמשים לשלוח דיווחים', + 'api_akismet' => 'מפתח אקיזמט (Akismet)', + 'banner' => 'באנר האתר', + 'blocks_per_row' => 'בלוקים לכל שורה', + 'cache_pages' => 'שמור מטמון עבור עמודים', + 'checkins' => 'צ\'ק-אינים', + 'copyright_statement' => 'הצהרת זכויות היוצרים של האתר', + 'default_category_colors' => 'צבע ברירת המחדל לכל הקטגוריות', + 'delete_banner_image' => 'מחק את תמונת הבאנר של האתר', + 'display_contact_page' => 'הצג עמוד יצירת קשר', + 'display_howtohelp_page' => 'הצג עמוד "כיצד לעזור"', + 'email_alerts' => 'התראות כתובות אימייל', + 'email_notice' => 'על מנת לקבל דיווחים דרך האימייל, אנא הגדר את הגדרות חשבון האימייל שלך.', + 'email_site' => 'כתובת האימייל של האתר', + 'google_analytics' => 'גוגל אנליטיקס', + 'google_analytics_example' => 'Web Property ID - פורמט: UA-XXXXX-XX', + 'items_per_page' => 'פריטים לכל עמוד - עמוד ראשי', + 'items_per_page_admin' => 'פריטים לכל עמוד - ממשק הניהול', + 'kismet_notice' => 'מנע תגובות ספאם באמצות שימוש באקיזמט (Akismet from Automattic).
באפשרותך להשיג מפתח API בחינם על ידי רישום WordPress.com לחשבון משתמש ב-', + 'language' => 'שפת האתר', + 'message' => 'הודעת האתר', + 'name' => 'שם האתר', + 'private_deployment' => 'פריסת אתר פרטית', + 'submit_report_message' => 'הודעת שליחת דיווח', + 'share_site_stats' => 'הפעל סטטיסטיקות (מאוכסנות בשרת של אושהידי)', + 'tagline' => 'כותרת משנה לאתר', + 'timezone' => 'איזור זמן', + 'title' => 'הגדרות האתר', + 'twitter_configuration' => 'מונחי חיפוש בטוויטר', + 'twitter_hashtags' => 'האשתגים (Hashtags) - מופרדים באמצעות פסיקים ', + ) , + 'site_email' => array( + 'email' => 'האם שדה האימייל של האתר מכיל ערך תקין?', + 'length' => 'על שדה האימייל של האתר להיות באורך של 4 עד 100 תווים בדיוק.', + ) , + 'site_name' => array( + 'length' => 'על שדה שם האתר להיות באורך של 3 עד 50 תווים בדיוק.', + 'required' => 'שדה שם האתר הוא חובה.', + ) , + 'site_tagline' => array( + 'length' => 'על שדה כותרת המשנה של האתר להיות באורך של 3 עד 100 תווים בדיוק.', + 'required' => 'שדה כותרת המשנה היא חובה.', + ) , + 'sms' => array( + 'clickatell_api' => 'מספר ה Clickatell API שלך', + 'clickatell_check_balance' => 'בדוק את מאזן הקרדיט שלך ב Clickatell', + 'clickatell_load_balance' => 'העלה מאזן קרדיט', + 'clickatell_password' => 'סיסמאת ה Clickatell שלך', + 'clickatell_text_1' => 'הירשם לשירות ה Clickatells על ידי לחיצה כאן', + 'clickatell_text_2' => 'הכנס את פרטי הגישה שלך של Clickatell למטה', + 'clickatell_username' => 'שם המשתמש שלך ב Clickatell', + 'flsms_text_1' => 'הכנס מספר(י) טלפון אשר מחוברים עם Frontline SMS בשדה(ות) למטה', + 'flsms_text_2' => 'הכנס את המספר ללא אף סימני פלוסים או מקפים (+/-)', + 'option_1' => 'אופציה 1: השתמש ב Frontline SMS', + 'option_2' => 'אופציה 2: השתמש ב Global SMS Gateway', + 'title' => 'אפשרויות הגדרת SMS', + ) , + 'sms_no1' => array( + 'length' => 'השדה טלפון 1 ארוך מידי', + 'numeric' => 'על השדה טלפון 1 להכיל מספרים בלבד.', + ) , + 'sms_no2' => array( + 'length' => 'השדה טלפון 2 ארוך מידי', + 'numeric' => 'על השדה טלפון 2 להכיל מספרים בלבד.', + ) , + 'sms_no3' => array( + 'length' => 'השדה טלפון 3 ארוך מידי', + 'numeric' => 'על השדה טלפון 3 להכיל מספרים בלבד.', + ) , +); diff --git a/application/i18n/he_IL/sharing.php b/application/i18n/he_IL/sharing.php new file mode 100755 index 0000000000..83ed875fef --- /dev/null +++ b/application/i18n/he_IL/sharing.php @@ -0,0 +1,25 @@ + 'Ingress תאריך', + 'date_added' => 'תאריך הוספה', + 'last_access' => 'גישה אחרונה', + 'sharing_color' => array( + 'length' => 'שדה הצבע צריך להיות באורך של 6 תווים בדיוק.', + 'required' => 'יש להזין שדה צבע בן 6 תווים.', + ) , + 'sharing_name' => array( + 'length' => 'האם שם השיתוף שהזנת תקין?', + 'required' => 'חובה להזין שם שיתוף.', + ) , + 'sharing_url' => array( + 'exists' => 'קיימת כבר כתובת אתר כזו', + 'length' => 'כתובת האתר שהזנת נראית לא תקינה?', + 'required' => 'יש להזין כתובת אתר (URL).', + 'url' => 'האם כתובת האתר שהזנת תקינה?', + ) , +); diff --git a/application/i18n/he_IL/stats.php b/application/i18n/he_IL/stats.php new file mode 100755 index 0000000000..fd8444714d --- /dev/null +++ b/application/i18n/he_IL/stats.php @@ -0,0 +1,42 @@ + 'מאושר', + 'categories' => 'קטגויות', + 'category_impact' => 'דיווחי קטגוריות לאורך זמן', + 'category_impact_description' => 'בתרשים זה מוצגת כמות הדיווחים לכל קטגוריה לאורך הזמן. יש לגלול משמאל לימין כדי לראות תצוגה השוואתית של הקטגוריות השונות. יש להעביר את הסמן מעל הגרף לפרטים נוספים.', + 'choose_date_range' => 'בחירת טווח תאריכים', + 'countries' => 'מדינות', + 'country' => 'מדינה', + 'country_breakdown' => 'מבקרים לפי מדינות', + 'description' => 'זהו אזור הסטטיסטיקה. ניתן להתרשם באמצעות הקישורים לתתי הקטגוריות למעלה', + 'error' => 'שגיאה', + 'glossary' => 'מילון מונחים', + 'hit_summary' => 'סיכום כניסות', + 'legend' => 'מקרא', + 'pageviews' => 'צפיות', + 'pageviews_description' => 'המספר הכולל של דפים שנצפו על ידי המבקרים באתר', + 'reports' => 'דיווחים', + 'reports_categories' => 'קטגוריות הדיווחים', + 'reports_statistics' => 'סטטיסטיקת הדיווחים', + 'reports_status' => 'מצב הדיווחים', + 'report_punchcard' => 'דיווחים לאורך זמן', + 'report_stats' => 'פילוח דיווחים', + 'stats_not_setup' => 'סטטיסטיקות אינן מוגדרות', + 'time_range_1' => 'חודש אחד', + 'time_range_2' => 'שלושה חודשים', + 'time_range_3' => 'חצי שנה', + 'time_range_all' => 'הכל', + 'unapproved' => 'לא מאושר', + 'unique_visitors' => 'מבקרים ייחודיים', + 'unique_visitors_description' => 'מספר האנשים שהגיעו לאתר, מבקרים ייחודיים נקבעים באמצעות עוגיות (cookies). במקרה והמבקר חסם את האפשרות לשמירת עוגיות במחשבו, המבקר יזוהו באמצעות שיטה פשוטה אשר מתחשבת בכתובת חשבון ה-IP של המשתמש, הדפדפן, רזולוצית המסך, הפלאגינים שלו, מערכת ההפעלה וכדומה.', + 'unverified' => 'לא מאומת', + 'verified' => 'מאומת', + 'visitor_summary' => 'מבקרים באתר', + 'visits' => 'ביקורים', + 'visits_description' => 'ביקור מתאר מבקר ייחודי שנכנס לאתר לאחר יותר מ-30 דקות מאז הפעם האחרונה בה צפה בדף', +); diff --git a/application/i18n/he_IL/tooltips.php b/application/i18n/he_IL/tooltips.php new file mode 100755 index 0000000000..adf9723541 --- /dev/null +++ b/application/i18n/he_IL/tooltips.php @@ -0,0 +1,82 @@ + array( + 'add_to_category' => 'זה מוסיף את הדוח לקטגוריות נוספות. אם תבחר להוסיף את קטגוריה 1 לדיווח, כאשר הדיווח כבר משוייך לקטגוריה 2, אזי הדיווח ישוייך גם לקטגוריה 1 ולקטגוריה 2.', + 'assign_badge' => 'תוכל להקצות תג למשתמש המדווח. בחר את התג אשר יוקצה כאן', + 'between_times' => 'זהו טווח של שעות ו / או דקות בין שני זמנים בפורמט של 24 שעות. אם הזנת זמן מוקדם יותר בשדה השני, הזמן יוחלף בזמן שבשדה הראשון. הזמנים שהוזנו צריכים להיות בטווח של יום אחד. כמו כן, הזמן שהוזן מושווה כנגד הזמן שהגדרת בהגדרות האתר, ולאו דווקא למול אזור הזמן של המשתמש אשר משתמש במערכת. השאר את השדות ב 0:00 עד 00:00 בכדי להתעלם מהגדרה זו.', + 'category' => 'באפשרותך להגדיר כאן, אם ברצונך שטריגרים יופעלו רק כאשר נעשה שימוש בקטגוריה מסוימת. זה יאפשר לטריגר להיות מופעל אם, ורק אם, יעשה שימוש באחת הקטגוריות. לדוגמא, אם תבחר בקטגוריות 1 ו-2 ולאחר מכן יוגש דיווח אשר ישוייך לקטגוריות 2 ו- 3, הדיווח יעבור את המבחן.', + 'days_of_the_week' => 'אם פעולות אלו מתרחשות בימים מסוימים בשבוע. זכור שהיום נקבע לפי אזור-הזמן שהוגדר בהתקנת המערכת. לסימון של מספר ימים לחץ על Shift או Command ואז בחר את הימים.', + 'email_body' => 'התוכן של הודעת הדואר-האלקטרוני שתישלח.', + 'email_subject' => 'הנושא של הודעת הדואר-האלקטרוני שתישלח.', + 'keywords' => 'אתה יכול לבחור להשאיר את השדה הזה ריק אם אתה לא מעוניין לבדוק את הקלט מול מילות המפתח. אם תוסיף כאן מילים, תצטרך להפריד ביניהם באמצעות פסיק (,). לדוגמה, אם אתה רוצה להפעיל טריגר כאשר מישהו מזכיר את המילים "אהבה" או "שלום" במסר שלהם, יהיה עליך להוסיף "אהבה, שלום" בתיבת מילות המפתח.', + 'location' => 'באפשרותך לבחור כל מקום או מיקום ספציפי. אם בחרת מיקום מסוים, תתבקש לסמן מלבן מסביב לאזור אשר מתאים לפעולה. לדוגמה, אם אתה רוצה שהטריגר הזה יופעל כאשר מישהו מגיש דיווח בברזיל, עליך לבחור "אזור מסוים" ולאחר מכן לסמן את המלבן מסביב לברזיל. אתה יכול לצייר מלבנים קטנים או גדולים לפי רצונך. ניתן גם לסמן מספר מלבנים שונים במשולב.', + 'on_specific_count' => 'המאשרר הזה מפעיל את הטריגר בספירה ה-N-ית, או עבור בסיס המשתמשים כולו, או עבור כל משתמש יחיד. השאר את השדה ריק כדי להתעלם ממנו.', + 'response' => 'אם כל המאשרר מעל מאושרים, הטריגר יפעיל את התגובה. התגובה יכולה לנוע בין אישור הדיווח לבין משלוח דואר אלקטרוני למשתמש. בחר את התגובה הרצוייה לך כאן כדי להפעיל אפשרויות נוספות עבור התגובות הספציפיות.', + 'send_to' => 'אם תבחר "משתמש טריגר", דואר אלקטרוני ישלח אל המשתמש שביצע את הפעולה. באפשרותך להזין כתובת דואר אלקטרוני אישית, על ידי בחירת לחצן האפשרויות שלצד תיבת הקלט. אפשרות זו שימושית אם אתה מגדיר טריגרים על מנת להודיע ​​לאנשים כאשר מתקבלים דיווחים, אישרור-הגעה או פעילויות אחרות, בחלקים מסוימים של המפה.', + 'specific_days' => 'באפשרותך לבחור פה מספר ימים. תאריכים נקבעים לפי הגדרת איזור הזמן של המערכת שלך. על מנת להפעיל את ברירת המחדל עבור כלל התאריכים, אל תסמן כאן אף תאריך.', + 'trigger' => 'הטריגר הוא המרכיב המרכזי בהגדרת טריגרי הפעולה שלך. זה המקום שבו אתה קובע אם אתה רוצה שמשהו יקרה כאשר מישהו מגיש דיווח, מבצעת אישרור-הגעה, וכן הלאה. באפשרותך לסנן תגובות לפעולות אלה לאחר הבחירה של אחד מהם.', + 'user' => 'המשתמש יכול להיות כל אחד או משתמש מסוים. אם אתה רוצה שרק למשתמשים מסוימים יפעילו את הטריגר, עליך לבחור אותם כאן. אחרת, עליך להשאיר את ההגדרה כאן בתור "כל-אחד", שכן רוב הטריגרים מוגדרים עבור כלל המשתמשים אשר משתמשים במערכת', + 'verify' => 'מסמן דיווח כמאומת או לא', + ) , + 'change_picture' => 'תמונות הפרופילים של דפי המשתמש באתר זה, עושים שימוש במערכת הגראווטר (Gravatar). על ידי לחיצה על התמונה שלך, תועבר לאתר Gravatar שבו תוכל לשנות את תמונת הפרופיל שלך.', + 'default_value' => 'הפרד כל ערך באמצעות פסיק. לדוגמא: ערך 1, ערך 2 וכן הלאה', + 'dropdown_choices' => 'הפרד כל פריט בחירה באמצעות פסיק לדוגמה: פריט 1, פריט 2 וכן הלאה', + 'private_to' => 'התחל להקליד לחברי הרשימה', + 'private_subject' => 'נושא ההודעה הפרטית', + 'private_message' => 'הודעה פרטית', + 'profile_color' => 'אתה יכול לבחור צבע אשר יופיע מתחת לתמונת הפרופיל שלך בעמוד הפרופיל הציבורי שלך. צבע זה יהיה גם ישמש כנקודת הצבע אשר תופיע על המפה עבור אישרורי-ההגעה שלך.', + 'profile_email' => 'כתובת האימייל שלך', + 'profile_name' => 'שמך המלא', + 'profile_notify' => 'בחירת "כן" תאפשר קבלת התרעות באימייל עם הופעת תגובות או דיווחים חדשים באתר שלך', + 'profile_password' => 'הסיסמה שלך. כדי לשמור על הסיסמה הנוכחית, נא להשאיר את השדה ריק.', + 'profile_public' => 'הפרופיל שלך יהיה פתוח לצפייה על ידי כלל גולשי האינטרנט, באם תסמן באפשרות זו. זוהי גם הדרך הקלה ביותר להציג לראווה את הדיווחים אשר העלית לאתר, את אישרורי ההגעה שלך, האותות שלך וכן הלאה - כולם בדף אחד.', + 'profile_username' => 'אי-אפשר לשנות את שם המשתמש', + 'settings_access_level' => 'רמות הרשאה משמשים כדי להגביל גישה לנתונים בשדות אשר מותאמים אישית. משתמשים ברמות הרשאה גבוהות יכולים לגשת לשדות אשר משוייכים לרמות נמוכות יותר. למפעיל-על יש את רמת ההרשאה הגבוהה ביותר - 100. נתונים ציבוריים מוצגים ברמת ההרשאה הנמוכה ביותר - 0.', + 'settings_alert_email' => 'כתובת אימייל זו תשמש לשליחת התרעות באימייל.', + 'settings_allow_clustering' => 'מאפשר ריכוז דיווחים דומים בנקודה אחת על המפה', + 'settings_allow_comments' => 'מתן אפשרות למשתמשים להגיב לדיווחים באתר הראשי.', + 'settings_allow_feed' => 'מאפשר הזרמת רסס (RSS) באתר הראשי', + 'settings_allow_reports' => 'מתן אפשרות למשתמשים לשלוח מידע דרך האתר', + 'settings_api_default_record_limit' => 'מספר הרשומות לאחזור בכל קריאת API כברירת מחדל', + 'settings_api_max_record_limit' => 'מספר הרשומות המקסימלי לאחזור בכל קריאת API', + 'settings_api_max_requests_per_ip' => 'מספר קריאות API מקסימלי לכתובת IP', + 'settings_banner' => 'הבאנר של האתר מופיע בחלק העליון של החלק הפתוח-לציבור של אתר האינטרנט שלך, בהינתן שערכת העיצוב בה אתה משתמש תומכת בכך. הגודל המומלץ עבור הבאנר יהיה תלוי בערכת העיצוב בה אתה משתמש. זכור, הבאנר יחליף את כותרת וכותרת-המשנה של האתר אשר מופיעים כעת בחלק העליון של הדף.', + 'settings_blocks_per_row' => 'מספר איזורי העמודות אשר יוצגו בכל שורה', + 'settings_cache_pages' => 'הפעלה או ביטול של שמירת דפים בזכרון מטמון (Caching). אפשרות זו מקצרת את זמני התגובה וכך מאיצה את הצגת הדפים. מומלץ לשימוש באתרים בהם נפח פעילות גבוה. ** חשוב לזכור שהדיווחים יוצגו למשתמש על בסיס לוח הזמנים שמוגדר מטה (Cache Lifetime)', + 'settings_cache_pages_lifetime' => 'הגדרת משך הזמן לשמירת זכרון המטמון', + 'settings_checkins' => 'הגדרה זו מאפשרת אישרור-הגעה (checkins) באתר שלך. זהו סוג דיווח פשוט יותר, אשר איננו עובר סינון לפני שהוא עולה לעמוד הבית, ואשר דורש שהאתר שלך יהיה מוגדר בצורה מסוימת. כאשר אתה מאפשר את זה, יש לוודא הגדרת אזור הזמן שלך הוא על UTC ושערכת העיצוב שלך תומכת באישרורי-הגעה. כאשר אתה מאפשר את האופציה הזו, רק ערכות-עיצוב אשר תומכות באישרורי-הגעה יהפכו מופעלות תחת עמודי הגדרות הערכות-עיצוב/תוספים.', + 'settings_configure_map' => 'הגדרת מפה לכסוי מיקום ספציפי', + 'settings_default_category_colors' => 'הגדרת קוד צבע לכלל הקטגוריות באתר', + 'settings_default_location' => 'האתר פועל במדינה זו', + 'settings_display_contact' => 'מפעיל/מכבה את לשונית הצור-קשר בעמוד הראשי.', + 'settings_display_howtohelp' => 'הפעלה או ביטול לשונית "כיצד לעזור" באתר הראשי.', + 'settings_display_items_per_page' => 'מספר הדיווחים המוצג בכל עמוד באתר הראשי.', + 'settings_display_items_per_page_admin' => 'מספר הדיווחים המוצג בכל עמוד בממשק הניהול של האתר.', + 'settings_flsms_download' => 'המוקד להודעות נכנסות', + 'settings_flsms_synchronize' => 'סנכרון ההודעות שבמוקד עם פלטפורמת אושאהידי', + 'settings_flsms_text_1' => 'מספרי הטלפון דרכם מתקבלות הודעות טקסט', + 'settings_google_analytics' => 'מתעד את הגולשים באתר שלך. קבל נתונים סטטיסטיים מפורטים אודות גולשי האתר', + 'settings_locale' => 'הגדר את השפה של האתר.', + 'settings_map_provider' => 'זה מגדיר באיזו מפה משתמש האתר', + 'settings_private_deployment' => 'הגדרת ערך זה לאמת או כן יהפוך את האתר שלך לפרטי, כך שרק משתמשים עם חשבונות שציינת יוכלו לגלוש באתר.', + 'settings_server_host' => 'זה המקום שבו מצויים האי-מיילים', + 'settings_server_password' => 'זוהי הסיסמה עבור כתובת הדואר-האלקטרוני אשר מקבל את הדיווחים', + 'settings_server_port' => 'זה נדרש על מנת לקבל את החיבורים הנכנסים מכתובת הדואר האלקטרוני', + 'settings_server_ssl_support' => 'זה נדרש כדי לשפר חיבור מאובטח', + 'settings_server_type' => 'זה נדרש כדי לאחזר הודעות דואר אלקטרוני מן השרת המארח', + 'settings_server_username' => 'זוהי כתובת הדואר האלקטרונית אשר מקבלת דיווחים', + 'settings_share_site_stats' => 'סטטיסטיקת כניסות מאוחסנים בשרת אשר נשלט על ידי אושהידי (Ushahidi). על ידי הפעלת אפשרות זו, תזכה בגישה לסטטיסטיקת כניסות ישירות בפאנל הניהול שלך. על ידי ביטול אופציה זו, יופסק איסוף נתונים סטטיסטיים על הגולשים ותמנע ממך האפשרות לשחזר את נתוני התנועה לאתר בזמן שהאופציה הייתה כבויה.', + 'settings_site_copyright_statement' => 'זה תמיד רעיון טוב להגדיר את זכויות היוצרים על העבודה שלך. לקבלת עזרה בקביעת רישיון אשר יתאים לצרכים שלך, בקר בכתובת: http://creativecommons.org/choose/.', + 'settings_site_email' => 'זוהי כתובת הדואר האלקטרונית שבה יתקבלו דיווחים באימייל והודעות מטופס הצור-קשר.', + 'settings_site_message' => 'זהו הטקסט שיופיע מעל המפה בדף הבית. זו שימושי לעדכן את הטקסט לצורך מתן מידע חשוב למבקרים באתר. כדי להסיר את קופסת הטקסט, עליך למחוק את ההודעה שכאן.', + 'settings_site_name' => 'זהו השם של האתר שמופיע בחלק העליון של האתר הראשי.', + 'settings_site_submit_report_message' => 'זהו המסר אשר יופיע בעמוד הזנת הדיווחים. עידכון הטקסט הזה הוא טוב עבור ציון הסתייגויות או מתן הוראות נוספות עבור המבקרים שלך אשר מוסרים דיווחים.', + 'settings_site_tagline' => 'במילים ספורות, הסבר במה האתר עוסק.', + 'settings_site_timezone' => 'זהו אזור הזמן שהאתר שלך יפעל על פיו. הגדרה זו משפיעה על כל פעולה שהגדרת אשר עושה שימוש בזמנים ותאריכים, כמו גם משיעה על זמן ברירת המחדל אשר תיבחר עבור דיווחים שימולאו בחלק הגלוי ובחלק הניהולי של האתר.', + 'settings_twitter_configuration' => 'הגדר את ההשטג (hashtag) אשר ישמשו בציוצים בטוויטר', +); diff --git a/application/i18n/he_IL/ui_admin.php b/application/i18n/he_IL/ui_admin.php new file mode 100755 index 0000000000..6fb043af1b --- /dev/null +++ b/application/i18n/he_IL/ui_admin.php @@ -0,0 +1,286 @@ + 'הגישה נדחתה. או שהאישורים שלך אינם תקפים או שבקשתך סורבה', + 'access_denied_others' => 'הגישה נדחתה. בקשתך נתקבלה, אך נדחתה בשל מגבלות גישה כגון זמן. נסה שוב מאוחר יותר', + 'access_level' => 'דרגת גישה', + 'actions' => 'פעולות', + 'add_to_category' => 'הוסף לקטגוריה', + 'added' => 'נוסף', + 'added_edited' => 'נוסף/נערך', + 'addons' => 'תוספים', + 'admin_role' => 'מנהל', + 'alerts' => 'התראות', + 'alerts_received' => 'התקבלו התראות', + 'anonymous' => 'אנונימי', + 'anyone_role' => 'כל אחד', + 'anywhere' => 'כל מקום', + 'api_banned' => 'API נחסם', + 'api_settings' => 'API הגדרות', + 'api_unban_all' => 'UNBAN כולם', + 'approved' => 'מאושר', + 'approve_auto' => 'אשר אוטומאטית', + 'approve_manual' => 'אשר ידנית', + 'archived' => 'נוסף לארכיון', + 'are_you_sure_you_want_to' => 'האם אתה בטוח שאתה רוצה ל', + 'are_you_sure_you_want_to_delete_this_item' => 'האם אתה בטוח שאתה רוצה למחוק את הפריט הזה', + 'are_you_sure_you_want_to_delete_this_photo' => 'האם אתה בטוח שאתה רוצה למחוק את התמונה הזו', + 'are_you_sure_you_want_to_switch_forms' => 'האם אתה בטוח שאתה רוצה להחליף טפסים', + 'assign' => 'הענק', + 'assignments' => 'מענקים', + 'assign_badge' => 'הענק אות', + 'author' => 'מחבר', + 'author_email' => 'דואר אלקטרוני של המחבר', + 'back' => 'חזור', + 'banip_action' => 'חסום IP', + 'between_times' => 'בין הזמנים', + 'blocks' => 'תיבות', + 'body' => 'גוף', + 'cancel' => 'בטל', + 'categories' => 'קטגוריות', + 'chart_display_error' => 'שגיאה בהצגת התרשים', + 'check_message_valid' => 'אנא וודא שההודעה שלך תקינה', + 'check_number' => 'אנא וודא שהמספר שהזנת תקין', + 'check_sms_settings' => 'אנא בדוק את הגדרות הס.מ.ס שלך!', + 'checkin_details' => 'הגדרות צ\'ק אין', + 'checkins' => 'צ\'ק אינים', + 'cities_loaded' => 'ערים נטענו', + 'code' => 'קוד', + 'code_out_of_sync' => 'גירסאת הקוד אינה מסונכרנת.', + 'color' => 'צבע', + 'comments' => 'תגובות', + 'confirmation_code' => 'קוד אישור ההתראות שלך הוא: ', + 'confirm_msg' => 'המשתמש', + 'count' => 'ספירה', + 'country_not_found' => 'מדינה לא נמצאה', + 'created_edited' => 'נמצא/נערך', + 'create_report' => 'צור דיווח', + 'critical_upgrade' => 'עידכון קריטי', + 'currently_active' => 'כרגע פעיל', + 'currently_inactive' => 'כרגע לא פעיל', + 'daily' => 'יומי', + 'dashboard' => 'לוח בקרה', + 'database' => 'דטה בייס', + 'date_time' => 'תאריך וזמן', + 'days_of_the_week' => 'ימים בשבוע', + 'db_out_of_sync' => 'גירסת הדטה בייס איננה מסונכרנת.', + 'deleted' => 'נמחק', + 'delete_action' => 'מחק', + 'delete_badge' => 'מחק אות', + 'demo' => 'דמו', + 'description' => 'תיאור', + 'disabled' => 'מבוטל', + 'divider_start_field' => 'תחילת מפצל', + 'divider_end_field' => 'סוף מפצל', + 'divider_class' => 'מחלקת div', + 'download_reports' => 'הורד דיווחים', + 'dropdown_choices' => 'בחירת נפתחות מטה', + 'edited_by' => 'נערך בידי', + 'edit_action' => 'ערוך', + 'edit_log' => 'ערוך לוגים', + 'email' => 'דואר אלקטרוני', + 'entire_collective' => 'כל הקולקטיב', + 'error_geocoding' => 'שגיאה בקידוד-גאו! שגיאת HTTP.', + 'error_imap' => 'ספריית IMAP PHP איננה מותקנת', + 'error_msg' => 'שגיאה', + 'error_post_incident' => 'שגיאה, לא ניתן לשגר את התקרית', + 'every_six_hours' => 'כל שש שעות', + 'every_twelve_hours' => 'כל שתיים עשר שעות', + 'experimental' => 'נסיוני', + 'faqs' => 'שאלות נפוצות', + 'feed' => 'פיד', + 'feedback' => 'משוב', + 'feeds' => 'פידים', + 'field_choices' => 'רשימת אפשרויות', + 'field_default' => 'ערך ברירת מחדל', + 'field_datatype' => 'סוג מידע', + 'field_datatype_javascript' => 'ג\'אווה סקריפט (javascript)', + 'field_datatype_markup' => 'מרק-אפ (markup)', + 'field_datatype_numeric' => 'מספרי', + 'field_datatype_text' => 'טקסט חופשי', + 'field_height' => 'גובה (בשורות)', + 'field_hidden' => 'שדה חבוי', + 'field_maxlength' => 'אורך מקסימאלי של תווים', + 'field_name' => 'שם השדה', + 'field_toggle' => 'מתג', + 'field_toggle_no' => 'לא', + 'field_toggle_yes_close' => 'כן, סגר כברירת מחדל', + 'field_toggle_yes_open' => 'כן, פתח כברירת מחדל', + 'file_not_found_upload' => 'לא הצלחתי למצוא את הקובץ שהועלה', + 'file_open_error' => 'לא הצלחתי לפתוח את הקובץ לקריאה', + 'form_not_exists' => 'הטופס לא קיים!', + 'forum' => 'פורום', + 'free_text_field' => 'שדה טקסט (טקסט חופשי)', + 'date_field' => 'שדה תאריך', + 'radio_field' => 'שדה כפתורי רדיו', + 'checkbox_field' => 'שדה סימון מרובה', + 'dropdown_field' => 'שדה בחירה מתפריט נפתח', + 'from' => 'מ', + 'from_date' => 'מ', + 'geonames_timeout' => 'שגיאה geoname timeout', + 'get_help' => 'קבל עזרה', + 'header_actions' => 'פעולות', + 'header_add_edit' => 'הוסף\\ערוך', + 'header_email' => 'דואר אלקטרוני', + 'header_manage_users' => 'נהל משתמשים', + 'header_role' => 'תפקיד', + 'header_user' => 'משתמש', + 'help' => 'עזרה', + 'hourly' => 'שעתי', + 'incident_feed' => 'פיד תקריות עבור', + 'instance' => 'אירוע', + 'instances' => 'אירועים', + 'instance_details' => 'פרטי אירוע', + 'invalid_parameter' => 'פרמטר שגוי', + 'ip_address' => 'כתובת IP', + 'is_date' => 'האם זה שדה תאריך?', + 'ispublic_visible' => 'מי יכול לצפות בתשובות', + 'ispublic_submit' => 'מי יכול לשלוח תשובות', + 'keyword' => 'מילת מפתח', + 'keywords' => 'מילות מפתח', + 'label_email' => 'כתובת דואר אלקטרוני:', + 'label_full_name' => 'שם מלא:', + 'label_password' => 'סיסמא:', + 'label_role' => 'תפקיד:', + 'label_username' => 'שם משתמש:', + 'layers' => 'שכבות', + 'login_role' => 'מפקח', + 'logout' => 'התנתק', + 'logs' => 'לוגים', + 'manage' => 'נהל', + 'manage_roles' => 'נהל תפקידים והרשאות', + 'manage_users' => 'צפה במשתמשים', + 'manage_users_edit' => 'הוסף/ערוך משתמש', + 'mark_as' => 'סמן כ', + 'marked_as_not_spam' => 'סמן כלא-ספאם', + 'marked_as_spam' => 'סומן כספאם', + 'match_no_documents' => 'לא מתאים לאף מסמך', + 'message' => 'הודעה', + 'messages' => 'הודעות', + 'messages_laconica' => 'Laconica הודעות', + 'messages_twitter' => 'הודעות טוויטר', + 'message_sent' => 'ההודעה שלך נשלחה!', + 'minutes' => 'דקות', + 'missing_parameter' => 'פרמטר חסר', + 'moderator' => 'מפקח', + 'modified' => 'עודכן', + 'modify_timezone' => 'עדכן את הגדרות איזור הזמן', + 'move_down_action' => 'רד למטה', + 'move_up_action' => 'עלה למעלה', + 'multiple_hosted_instances' => 'מספר הרצות מאוכסנות', + 'my_alerts' => 'ההתראות שלי', + 'my_checkins' => 'הצ\'ק אינים שלי', + 'my_profile' => 'הפרופיל שלי', + 'my_reports' => 'הדיווחים שלי', + 'my_votes' => 'הטלת הצבעות', + 'my_votes_up' => 'חיובי', + 'my_votes_down' => 'שלילי', + 'name' => 'שם', + 'new_alert' => 'צור התראה חדשה', + 'new_private' => 'צור הודעה חדשה', + 'new_password' => 'סיסמא חדשה', + 'no' => 'לא', + 'notification' => 'הודעות', + 'not_case_sensitive' => 'זה לא רגיש לאותיות גדולות-קטנות.', + 'not_found' => 'לא נמצא', + 'no_data' => 'אין נתונים. אין תוצאות להציג.', + 'no_error' => 'אין שגיאות', + 'no_result_display_msg' => 'אין תוצאות להציג!', + 'of' => 'של', + 'on_specific_count' => 'בספירה ספציפית', + 'page' => 'עמוד', + 'pages' => 'עמודים', + 'page_not_found' => 'העמוד לא נמצא', + 'parameters_used' => 'פרמטרים בהם נעשה שימוש', + 'password' => 'סיסמה', + 'password_reset' => 'איתחול סיסמה', + 'password_reset_message_line_1' => 'יקירי', + 'password_reset_message_line_2' => 'קיבלנו בקשה לאתחל את הסיסמא שלך', + 'password_reset_message_line_3' => 'על מנת לשנות את הסיסמה שלך, אנא לחץ על הקישור למטה (או העתק והדבק אותו לתוך הדפדפן).', + 'password_reset_message_line_4' => 'כפי שביקשת, סיסמתך אותחלה כעת. פרטיך החדשים הם כדלקמן', + 'password_reset_subject' => 'איתחול סיסמת אושהידי', + 'phone' => 'טלפון', + 'please_select' => 'אנא בחר', + 'post_method_not_used' => 'מידע לא נשלח באמצעות post method', + 'preview' => 'תצוגה מקדימה', + 'private_message' => 'הודעה', + 'private_messages' => 'הודעה פרטית', + 'private_sent' => 'הודעה פרטית נשלחה', + 'private_subject' => 'נושא', + 'private_to' => 'אל', + 'public_listing' => 'רישום פומבי', + 'qualifiers' => 'וודאנים (Qualifiers)', + 'read' => 'קרא', + 'relevance' => 'רלוונטיות', + 'reporters' => 'מדווחים', + 'reporter_levels' => 'דרגת מדווח', + 'reports' => 'דיווחים', + 'reputation' => 'ציון מוניטין', + 'required' => 'חובה', + 'reset' => 'אתחל', + 'response' => 'תגובה', + 'results' => 'תוצאות', + 'revoke' => 'לשלול', + 'save_settings' => 'שמור הגדרות', + 'search' => 'חיפוש', + 'searching_for' => 'מחפש עבור', + 'select_field_type' => '--- בחר סוג שדה ---', + 'select_item' => 'אנא בחר פריט', + 'select_trigger_before_response' => 'עליך לבחור טריגר לפני שתבחר תגובה.', + 'select_trigger_before_qualifiers' => 'עליך לבחור טריגר לפני שתוכל להגדיר מוודא (Qualifiers).', + 'sender' => 'שולח', + 'send_to' => 'נשלח אל', + 'sent_from_website' => 'הודעה זו נשלחה מאתר האינטרנט שלך ב ', + 'server_time' => 'זמן שרת', + 'settings' => 'הגדרות', + 'showing_page' => 'מציג עמוד', + 'showing_results' => 'מציג תוצאות', + 'shown' => 'הצג', + 'special_category' => 'קטגוריה מיוחדת', + 'special_category_explanation' => 'זוהי קטגוריה מיוחדת אשר לא תופיע למשתמשים בטופס שליחת הדיווח. זה נעשה בשילוב עם תכונת "המדווחים המהימנים".', + 'specific_area' => 'איזור ספציפי', + 'state' => 'מדינה', + 'statistics' => 'סטטיסטיקות', + 'stats' => 'סטטיסטיקות', + 'stats_collection_error' => 'כשלון באיסוף סטטיסטיקות! אנא נסה שוב מאוחר יותר.', + 'stats_collection_error_short' => 'כשלון באיסוף סטטיסטיקות!', + 'specific_days' => 'ימים ספציפיים', + 'subject' => 'נושא', + 'superadmin_role' => 'סופר אדמין', + 'task_performed' => 'משימה שבוצעה', + 'text_field' => 'שדה טקסט', + 'theme_name' => 'שם', + 'title' => 'נהל משתמשים', + 'to' => 'אל', + 'total_records' => 'סך כל הרשומות', + 'to_date' => 'אל', + 'translate_reports' => 'תרגם את הדיווח', + 'trigger' => 'טריגר', + 'triggering_user' => 'טריגרים למשתמש', + 'triggers' => 'טריגרים', + 'unapproved' => 'לא מאושר', + 'unknown' => 'לא ידוע', + 'unread' => 'לא נקרא', + 'update_link' => ' לחץ כאן כדי לשדרג כעת', + 'upgrade_ushahidi' => 'שדרג את אושהידי', + 'upgrade_ushahidi_status' => 'סטטוס שידרוג אושהידי', + 'upload_reports' => 'העלה דיווחים', + 'user' => 'משתמש', + 'users' => 'משתמשים', + 'ushahidi' => 'אושהידי', + 'verified_unverified' => 'אושר/לא-אושר', + 'verify_unverify' => 'מאושר/לא-מאושר', + 'version' => 'גירסה', + 'version_available' => ' זמין לשידרוג.', + 'view_private' => 'מסר פרטי', + 'view_site' => 'צפה באתר', + 'view_report' => 'צפה בדיווח', + 'welcome' => 'ברוך הבא, ', + 'wiki' => 'ויקי', + 'yes' => 'כן', + 'your_search_for' => 'החיפוש שלך עבור', +); diff --git a/application/i18n/he_IL/ui_main.php b/application/i18n/he_IL/ui_main.php new file mode 100755 index 0000000000..e332982002 --- /dev/null +++ b/application/i18n/he_IL/ui_main.php @@ -0,0 +1,532 @@ + 'אודות', + 'access' => 'גישה', + 'access_limits' => 'מגבלות גישה', + 'account_name' => 'שם החשבון', + 'actions' => 'פעולות', + 'action_confirm' => 'לא ניתן לשחזר פעולה זו. האם ברצונך להמשיך?', + 'activate' => 'הפעל', + 'active' => 'פעיל', + 'add' => 'הוסף', + 'added_by' => 'נוסף על-ידי', + 'additional_data' => 'נתונים נוספים', + 'additional_reports' => 'דווחים נוספים', + 'add_edit' => 'הוספה/עריכה', + 'add_field' => 'הוספת שדה', + 'add_language' => 'הוספת שפה', + 'add_new' => 'הוספת חדש', + 'add_new_category' => 'הוספת קטגוריה חדשה', + 'add_translation' => 'הוספת תרגום', + 'admin' => 'מנהלה', + 'alerts' => 'קבל התראות', + 'alerts_alert_me' => 'שלח לי התראה לגבי דיווחים באזור:', + 'alerts_btn_send' => 'שמור התראה', + 'alerts_email' => 'כתובת אימייל:', + 'alerts_enter_email' => 'הכנסת כתובת אימייל', + 'alerts_enter_mobile' => 'מספר טלפון נייד כולל קידומת בינלאומית', + 'alerts_get' => 'קבל התראות', + 'alerts_mobile_phone' => 'טלפון נייד:', + 'alerts_place_spot' => 'באפשרותך להזיז את המוקד של החץ האדום על ידי הקלקה על גבי המפה ולקבל התראות על דיווחים שהוגשו בטווח 20 קילומטרים ממוקד זה (ניתן גם לשנות את רדיוס הדיווחים מהמיקום).', + 'alerts_place_spot2' => 'אם מיקומך אינו מופיע, ניתן לסמן את המיקום הנכון על גבי המפה.', + 'alerts_rss' => 'פיד RSS (העתק את הקישור שלמטה)', + 'alerts_select_city' => 'בחירת עיר', + 'alerts_step1_select_city' => 'שלב 1: בחירת עיר או אזור: ', + 'alerts_step2_send_alerts' => 'שלב 2: שלח לי התראות ל: ', + 'alerts_step3_select_catgories' => 'שלב 3 (רשות): בחירת קטגוריות: ', + 'alert_confirm_previous' => 'אישור בקשת התראה קיימת', + 'alert_saved' => 'ההתראה נשמרה בהצלחה!', + 'all' => 'הכל', + 'allowed' => 'מורשה', + 'all_categories' => 'כל הקטגוריות', + 'all_time' => 'כל זמן', + 'and' => 'ו', + 'approve' => 'אישור', + 'approved' => 'מאושר', + 'approved_reports' => 'דיווחים מאושרים', + 'approve_this_report' => 'לאשר לדיווח להופיע באתר', + 'approximate' => 'הערכה', + 'archive' => 'ארכיון', + 'archived' => 'מאורכב', + 'author' => 'יוצר', + 'auto_checkin' => 'צ\\"ק אין אוטומאטי', + 'avg_reports_per_day' => 'מספר דיווחים ממוצע ביום', + 'awaiting_approval' => 'שמחכים לאישור', + 'awaiting_verification' => 'שמחכים לאימות', + 'badge' => 'אות', + 'badges' => 'אותות', + 'badge_image' => 'תמונת האות', + 'blog' => 'בלוג', + 'browse_profiles' => 'סייר בפרופילים', + 'cancel' => 'ביטול', + 'categories' => 'קטגוריות', + 'category' => 'קטגוריה', + 'category_filter' => 'סנן לפי קטגוריות', + 'category_has_been' => 'הקטגוריה', + 'category_name' => 'שם הקטגוריה', + 'change_date_range' => 'שינוי טווח התאריכים', + 'change_password' => 'החלף סיסמא', + 'change_picture' => 'שנה את תמונת הפרופיל', + 'choose' => 'בחירת ', + 'choose_data_points' => 'בחר נקודות מידע להורדה', + 'choose_field_type' => 'בחירת סוג שדה', + 'cleanurl' => 'קישורים נקיים', + 'clear' => 'נקה', + 'clear_map' => 'איפוס מפה', + 'close' => 'סגירה', + 'clusters' => 'מקבצים', + 'color' => 'צבע', + 'comment' => 'הערה', + 'comments' => 'הערות', + 'comment_details' => 'פרטי הערה', + 'configuration_saved' => 'ההגדרות נשמרו!', + 'configure' => 'הגדרות תצורה', + 'contact' => 'צור קשר', + 'contact_code' => 'קוד אבטחה', + 'contact_email' => 'כתובת האימייל שלך', + 'contact_message' => 'הודעה', + 'contact_message_has_send' => 'הודעתך נשלחה!', + 'contact_name' => 'שמך', + 'contact_phone' => 'מספר הטלפון שלך', + 'contact_send' => 'שליחת הודעה', + 'contact_subject' => 'נושא ההודעה', + 'copyright' => ' © זכויות היוצרים', + 'create' => 'יצירה', + 'create_edit' => 'יצירה/עריכה', + 'create_new' => 'יצירה מחדש', + 'create_report' => 'יצירת דיווח', + 'credibility' => 'אמינות', + 'current_password' => 'הסיסמא הנוכחית', + 'custom_fields' => 'שדות מותאמים אישית', + 'data' => 'מידע', + 'date' => 'תאריך', + 'date_format' => 'יי/חח/שששש', + 'date_time' => 'תאריך ושעה', + 'day' => 'יום', + 'deactivate' => 'הפסקת פעולה', + 'default_location_name' => 'ניירובי, קניה', + 'delete' => 'מחיקה', + 'deleted' => 'מחק', + 'deletes' => 'מוחק', + 'delete_disabled' => 'מחיקה מבוטלת', + 'delete_last' => 'מחיקת אחרון', + 'delete_report' => 'מחיקת דיווח זה', + 'delete_selected' => 'מחיקת האפשרויות שנבחרו', + 'delete_spam' => 'מחק ספאם', + 'demo' => 'דמו', + 'description' => 'תיאור', + 'detailed_location_example' => 'לדוגמא: בית העם, שדרות רוטשילד 69, תל אביב', + 'details' => 'פרטים', + 'direct_report' => 'דיווח ישיר', + 'disabled' => 'מבוטל', + 'disapprove' => 'בטל-אישור', + 'download_reports' => 'הורד דיווחים', + 'edit' => 'ערוך', + 'edit_form_fields' => 'ערוך שדות הטופס', + 'edit_report' => 'ערוך הדיווח', + 'email' => 'דואר אלקטרוני', + 'email_address' => 'כתובת דואר אלקטרוני', + 'email_configuration' => 'הגדרות שרת הדואר', + 'email_server_host' => 'מאכסן (Host) שרת הדואר', + 'email_server_password' => 'סיסמאת שרת הדוואר', + 'email_server_port' => 'Port שרת הדואר', + 'email_server_ssl_support' => 'שרת הדואר תומך ב SSL', + 'email_server_type' => 'סוג שרת הדואר', + 'email_server_username' => 'שם משתמש בשרת הדואר', + 'email_settings_comment_0' => 'על מנת שההגדרות שלך ישוייכו לשרת הדואר הזה', + 'email_settings_comment_00' => 'על מנת לקבל דיווחים אל תיבת הדואר האלקטרוני שלך, אנא מלא את הגדרות חשבון האימייל שלך מטה. אנא שים לב שאימיילים יתקבלו ב', + 'email_settings_comment_1' => 'חלק מהשרתים דורשים הגדרות אימייל מלאות', + 'email_settings_comment_2' => 'סיסמאת חשבון אימייל', + 'email_settings_comment_3' => 'פורטים (ports) נפוצים: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'לדוגמא: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'לדוגמא: pop3, imap', + 'email_settings_comment_6' => 'אפשר או בטל חיבור SSL', + 'empty' => '---ריק---', + 'end_point' => 'אל', + 'error' => 'שגיאה!', + 'example' => 'דוגמא', + 'example_country' => 'קניה', + 'external_apps' => 'אפליקציה חיצונית', + 'external_video_link' => 'קישור לוידיאו ברשת', + 'feed' => 'פיד', + 'feedback' => 'הצע משוב לגבי אושהידי', + 'feeds' => 'פידים', + 'feed_has_been' => 'הפיד', + 'feed_items' => 'פריטי פיד', + 'feed_name' => 'שם הפיד', + 'feed_url' => 'כתובת הפיד', + 'field_unused' => 'שדות שאינם בשימוש', + 'file' => 'קובץ', + 'filters' => 'סנן לפי', + 'filter_reports' => 'סנן דיווחים', + 'filter_reports_by' => 'סנן דיווחים לפי', + 'filter_reports_contain' => 'סנן דיווחים אשר מכילים', + 'find' => 'מצא', + 'find_location' => 'מצא מיקום', + 'first_name' => 'שם פרטי', + 'force_run_scheduler' => 'כפה הרצה של המתזמן (scheduler)', + 'forgot_password' => 'שכחת את סיסמתך?', + 'form' => 'טופס', + 'forms' => 'טפסים', + 'form_description' => 'תיאור הטופס', + 'form_edit' => 'ערוך טופס זה', + 'form_has_been' => 'הטופס', + 'form_title' => 'כותרת הטופס', + 'from' => 'מ', + 'full_name' => 'שם מלא', + 'geolocation_available' => 'גיאו-מיקומים זמינים', + 'geometry_color' => 'צבא', + 'geometry_comments' => 'תגובות', + 'geometry_label' => 'תוויות', + 'geometry_strokewidth' => 'רוחב הקו', + 'go' => 'סע', + 'hashtag' => 'תגית-הש', + 'has_been' => 'נעשה', + 'help' => 'כיצד ניתן לעזור', + 'hidden' => 'מוסתר', + 'hide' => 'הסתר', + 'hide_this_message' => 'הסתר הודעה זו', + 'home' => 'ראשי', + 'how_to_report' => 'דרכים לדווח', + 'image' => 'תמונה', + 'images' => 'תמונות', + 'image_icon' => 'תמונה/אייקון', + 'inactive' => 'לא-פעיל', + 'inbox' => 'תיבת דואר', + 'incident' => 'תקרית', + 'incidents_nearby' => 'תקריות קרובות', + 'incident_location' => 'מיקום התקרית', + 'include' => 'כלול', + 'include_categories' => 'כלול קטגוריות', + 'include_custom_fields' => 'כלול שדות מותאמות אישית', + 'include_description' => 'כלול תיאור', + 'include_detail' => 'פרט ככל שניתן', + 'include_latitude' => 'כלול קו-רוחב', + 'include_location_information' => 'כלול מידע על המיקום', + 'include_longitude' => 'כלול קו-אורך', + 'incoming_media' => 'מדיה נכנסת', + 'information_evaluation' => 'הערכת מידע', + 'input_location' => 'נא להזין את מיקומך המדוייק', + 'in_response_to' => 'בתגובה ל', + 'ip_address' => 'כתובת IP', + 'is_this_your_profile' => 'האם זה הפרופיל שלך?', + 'item' => 'פריט', + 'items' => 'פריטים', + 'item_details' => 'פרטי הפריט', + 'item_title' => 'כותרת הפריט', + 'key' => 'מפתח', + 'kml_kmz_file' => 'קובץ KMZ/KML', + 'kml_kmz_upload' => 'העלה קובץ KMZ/KML', + 'kml_url' => 'KML קישור', + 'language' => 'שפה', + 'last' => 'אחרון', + 'last_month' => 'חודש שעבר', + 'last_name' => 'שם משפחה', + 'last_year' => 'שנה שעברה', + 'latitude' => 'קו רוחב', + 'layers' => 'שכבות', + 'layers_filter' => 'שכבות אחרות', + 'layer_has_been' => 'השכבה', + 'layer_name' => 'שם השכבה', + 'layer_url' => 'קישור השכבה', + 'leave_a_comment' => 'השאר תגובה', + 'level' => 'רמה', + 'level_has_been' => 'הרמה הזו', + 'level_name' => 'שם הרמה', + 'limited' => 'מוגבל', + 'link' => 'קישור', + 'loading_reports' => 'טוען דיווחים', + 'location' => 'מיקום', + 'locations' => 'מיקומים', + 'location_example' => 'עיר ומדינה', + 'login' => 'התחבר', + 'login_confirmation_sent' => 'אישור נשלח אליך לתיבת הדואר האלקטרוני.', + 'login_select_openid' => 'אנא בחר את ספק החשבון שלך', + 'login_signup_click' => 'הקש כאן כדי להירשם למערכת', + 'login_signup_confirmation_subject' => 'אישור הרשמה', + 'login_signup_text' => 'אם אין לך כבר חשבון עם אחת מהאפשרויות שלמעלה, או אם אינך מעוניין להשתמש באופן-אי-די (OpenID)', + 'longitude' => 'קו אורך', + 'map' => 'מפה', + 'mark_read' => 'סמן כנקרא', + 'mark_unread' => 'סמן כלא-נקרא', + 'media' => 'מדיה', + 'media_filter' => 'מסנן מדיה', + 'members' => 'משתמשים', + 'manage_your_account' => 'נהל את חשבונך', + 'message' => 'מסר', + 'messages' => 'מסרים', + 'message_details' => 'פרטי המסר', + 'message_non_numeric_source' => 'מסר ממקור לא-מספרי:', + 'mobile' => 'סלולרי', + 'modify' => 'עדכן', + 'modify_date' => 'שינוי תאריך הדיווח', + 'month' => 'חודש', + 'more' => 'עוד', + 'more_information' => 'מידע נוסף', + 'multi_country_instance' => 'האם התקנת האושהידי צפויה לכלול בטוחה מדינות שונות', + 'name' => 'שם', + 'nearby_report' => 'דיווחים קרובים', + 'new' => 'חדש', + 'news' => 'חדשות', + 'news_feeds' => 'פידים של חדשות', + 'news_source' => 'מקור החדשות', + 'new_category' => 'קטגוריה חדשה', + 'new_password' => 'סיסמא חדשה', + 'new_report' => 'דיווח חדש', + 'next' => 'הבא', + 'no' => 'לא', + 'notices' => 'הודעות', + 'not_approved' => 'לא מאושרים', + 'not_approved_singular' => 'לא אושר', + 'not_spam' => 'לא ספאם', + 'not_specified' => 'לא מצויין', + 'no_reports' => 'אין דיווחים', + 'no_results' => 'אין תוצאות', + 'off' => 'כבוי', + 'official_news' => 'מקורות חדשות רשמיים ומרכזיים', + 'on' => 'דלוק', + 'option' => 'אופציה', + 'optional' => 'אופציונאלי', + 'options' => 'אופציות', + 'organization' => 'אירגון', + 'organizations' => 'אירגונים', + 'organization_description' => 'תיאור האירגון', + 'organization_email' => 'אימייל האירגון', + 'organization_has_been' => 'האירגון', + 'organization_name' => 'שם האירגון', + 'organization_phone_1' => 'טלפון באירגון 1', + 'organization_phone_2' => 'טלפון באירגון 2', + 'organization_website' => 'אתר האינטרנט של האירגון', + 'original' => 'מקורי', + 'original_description' => 'תיאור מקורי', + 'original_title' => 'כותרת מקורית', + 'other_ushahidi_instances' => 'פריסות אחרות של אושהידי', + 'outbox' => 'דואר יוצא', + 'outgoing' => 'יוצא', + 'page' => 'עמוד', + 'pages' => 'עמודים', + 'page_description' => 'תיאור עמוד', + 'page_has_been' => 'העמוד', + 'page_tab_name' => 'לשנות השם של העמוד', + 'page_title' => 'כותרת העמוד', + 'parent_category' => 'קטגוריית אב', + 'password' => 'סיסמא', + 'password_again' => 'הקלד את סיסמתך בשנית', + 'password_forgot' => 'שכחת את סיסמתך?', + 'password_reset_confirm' => 'בדוק את תיבת הדואר שלך עבור סיסמא חדשה.', + 'password_save' => 'הישאר מחובר במחשב זה?', + 'past_month' => 'החודש האחרון', + 'past_year' => 'השנה האחרונה', + 'pending' => 'ממתין', + 'per' => 'פר', + 'personal_information' => 'מידע אישי אופציונאלי.', + 'phone' => 'טלפון', + 'photos' => 'תמונות', + 'pictures' => 'תמונות', + 'pictures_and_videos' => 'תמונות ווידיאו', + 'pinpoint_location' => '* חפש את מיקומך באמצעות שם המיקום (רחוב ועיר), או חיפוש קוארדינטות קווי הרוחב, אורך, (פורמט: 38.19,-85.61), או הזז את החץ האדום שעל המפה על מנת לאתר את המיקום הנכון', + 'play' => 'נגן', + 'please_note' => 'אנא שים לב', + 'plugins' => 'פלאגינים', + 'plugin_url' => 'אתר הפלאגין', + 'public_profile' => 'פרופיל פומבי', + 'preview' => 'תצוגה מקדימה', + 'preview_item' => 'תצוגה מקדימה לפריט', + 'preview_message' => 'תצוגה מקדימה למסר', + 'previous' => 'קודם', + 'private' => 'פרטי', + 'profile_color' => 'צבע הפרופיל', + 'profile_saved' => 'הפרופיל שלך נשמר', + 'quick_stats' => 'סטטיסטיקות עיקריות', + 'rating' => 'דירוג', + 'read' => 'קרא', + 'receive' => 'קבל', + 'receive_from' => 'קבל מ', + 'receive_notifications' => 'קבל עידכונים', + 'recent_reports' => 'דיווחים אחרונים', + 'refresh_news_feeds' => 'רענן את הפידים של החדשות', + 'remove' => 'הסר', + 'reply' => 'השב', + 'report' => 'דיווח', + 'reports_listed' => 'דיווחים (לקוחים מהמפה, ומסודרים כרונולוגית)', + 'reporter' => 'עד', + 'reporters' => 'עדים', + 'reporter_date' => 'תאריך העד', + 'reporter_email' => 'כתובת האימייל של העד', + 'reporter_first_name' => 'שם פרטי של העד', + 'reporter_has_been' => 'העד', + 'reporter_ip' => 'כתובת ה- IP של העד', + 'reporter_last_name' => 'שם משפחת העד', + 'reporter_level' => 'רמת העד', + 'reporter_levels' => 'רמות העד', + 'reporter_phone' => 'טלפון העד', + 'reports' => 'דיווחים', + 'reports_btn_browse' => 'סייר', + 'reports_btn_submit' => 'שלח', + 'reports_by_this_user' => 'דיווחים על ידי משתמש זה', + 'reports_categories' => 'קטגוריות', + 'reports_date' => 'תאריך', + 'reports_description' => 'תיאור', + 'reports_download_csv' => 'דיווחים יורדו בפורמט CSV', + 'reports_email' => 'אימייל', + 'reports_features' => 'תכונות', + 'reports_find_location' => 'בחר שם למיקום הקרוב אליך (ייתכן והשם בעברית)', + 'reports_first' => 'שם פרטי', + 'reports_last' => 'שם משפחה', + 'reports_location_name' => 'דייק בשם המיקום', + 'reports_news' => 'קישור לאתר חדשות עם עדות על הדיווח', + 'reports_optional' => 'מידע אופציונאלי', + 'reports_photos' => 'העלה תמונות', + 'reports_return' => 'חזור לעמוד הדיווחים', + 'reports_select_city' => 'בחר עיר', + 'reports_submitted' => 'הדיווח שלך נשלח לבחינה על ידי הצוות שלנו. נשוב אליך בקצרה בהתאם לצורך.', + 'reports_submit_new' => 'שלח דיווח חדש', + 'reports_time' => 'זמן', + 'reports_timeline' => 'במשך הזמן', + 'reports_title' => 'כותרת הדיווח', + 'reports_video' => 'קישור לוידיאו', + 'report_an_incident' => 'דווח על תקרית', + 'report_details' => 'פרטי הדיווח', + 'report_option_1' => 'על ידי משלוח מסר אל', + 'report_option_2' => 'באמצעות משלוח אימייל אל ', + 'report_option_3' => 'על ידי שליחה טוויט עם תגית ההש', + 'report_option_4' => 'על ידי מילוי טופס זה', + 'report_option_external_apps' => 'בעזרת אפליקציית סמארטפון', + 'report_saved' => 'הדיווח שלך נשמר', + 'report_title' => 'כותרת הדיווח', + 'request_information' => 'בקש עוד מידע', + 'request_location' => 'בקש מיקום', + 'requirements' => 'דרישות', + 'reset' => 'אפס', + 'reset_all_filters' => 'אפס את כל המסננים', + 'reset_password' => 'אפס סיסמא', + 'retrieve_city_names' => 'מצא שם העיר עבור המדינה שנבחרה', + 'role' => 'תפקיד', + 'rss' => 'רסס (RSS)', + 'save' => 'שמור', + 'saved' => 'נשמר', + 'save_close' => 'שמור וסגור', + 'save_report' => 'שמור דיווח', + 'schedule' => 'לוח זמנים', + 'scheduler' => 'מתזמן', + 'scheduler_day' => 'יום', + 'scheduler_hour' => 'שעה', + 'scheduler_log' => 'יומן המתזמן', + 'scheduler_minute' => 'דקה', + 'scheduler_weekday' => 'יום בשבוע', + 'search' => 'חפש', + 'search_results' => 'תוצאות החיפוש', + 'security_code' => 'קוד אבטחה', + 'select_all' => 'בחר הכל', + 'select_field_type' => 'בחר סוג שדה', + 'select_form_type' => 'בחר סוג טופס', + 'select_in_map' => 'בחר במפה', + 'select_multiple' => 'בחר כמה שצריך', + 'select_one' => 'אנא וודא שסימנת פריט', + 'select_theme' => 'בחר ערכת עיצוב', + 'send' => 'שלח', + 'sending_to' => 'שולחים אל', + 'sent' => 'נשלח', + 'sent_by' => 'נשלח על ידי', + 'server_address' => 'כתובת השרת', + 'server_type' => 'סוג שרת', + 'service' => 'שירות', + 'service_username' => 'שם משתמש השירות', + 'service_user_id' => 'תגית זיהוי (ID) של המשתמש בשירות', + 'share' => 'שתף', + 'shared_data' => 'מידע משותף', + 'share_has_been' => 'השיתוף', + 'sharing' => 'שיתוף', + 'show' => 'הצג', + 'show_all' => 'הצג הכל', + 'show_messages' => 'הצג מסרים', + 'site' => 'אתר אינטרנט', + 'site_email_address' => 'דואר אלקטרוני לאתר', + 'site_url' => 'כתובת האתר', + 'sorry_no_badges' => 'צר לנו, אין לך שום איתורים בשלב זה.', + 'source' => 'מקור', + 'source_name' => 'שם המקור', + 'source_url' => 'כתובת הקישור של המקור', + 'spam' => 'ספאם', + 'ssl_support' => 'תמיכת SSL?', + 'start_point' => 'מ', + 'step' => 'שלב', + 'submit' => 'שלח דיווח', + 'submit_sms' => 'דווח על ידי SMS', + 'submit_sms1' => 'שלח SMS אל', + 'submit_sms2' => 'בטלפון שלך', + 'success' => 'הצלחה!', + 'successfuly_imported' => 'יובא בהצלחה', + 'surname' => 'שם משפחה', + 'survey' => 'סקר', + 'system' => 'מערכת', + 'themes' => 'ערכות עיצוב', + 'theme_default' => 'עיצוב ברירת המחדל של אושהידי', + 'theme_settings' => 'הגדרות העיצוב', + 'this' => 'זה', + 'this_day' => 'היום', + 'this_month' => 'החודש', + 'this_week' => 'השבוע', + 'this_year' => 'השנה', + 'this_is_your_profile' => 'זה הפרופיל שלך.', + 'time' => 'זמן', + 'title' => 'כותרת', + 'to' => 'אל', + 'today' => 'היום', + 'today_at' => 'היום ב', + 'total_reports' => 'סך כל הדיווחים', + 'translated' => 'תורגם', + 'translated_description' => 'תיאור התירגום', + 'translated_title' => 'כותרת התירגום', + 'translate_to' => 'תורגם ל', + 'translation' => 'תירגום', + 'translation_saved' => 'התירגום נשמר', + 'type' => 'סוג', + 'twitter' => 'טוויטר', + 'unread' => 'לא נקרא', + 'unverified' => 'לא מאומת', + 'update_feeds' => 'עדכן את הפידים', + 'upload' => 'העלה', + 'upload_file' => 'קובץ להעלות', + 'upload_reports' => 'העלה דיווחים', + 'upload_reports_detail_1' => 'בטופס למטה, באפשרותך לייבא דיווחים על תקריות לתוך מנוע האושהידי', + 'upload_reports_detail_4' => 'הוא מוכרח להכיל לפחות את כותרת ותאריך הדיווח', + 'upload_reports_detail_5' => 'קובץ דיווח CSV לדוגמא', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'הועלה בהצלחה', + 'user' => 'משתמש', + 'username' => 'שם משתמש', + 'ushahidi_admin' => 'מנהל אושהידי', + 'verification' => 'אימות', + 'verified' => 'מאומת', + 'verified_reports' => 'דיווחים מאומתים', + 'verify' => 'אימות', + 'verify_this_report' => 'האם הדיווח הזה מאומת', + 'version' => 'גירסה', + 'via' => 'על ידי', + 'video' => 'וידאו', + 'view' => 'צפה', + 'views' => 'צפיות', + 'view_all' => 'צפה בכל', + 'view_all_feeds' => 'צפה בכל הפידים', + 'view_all_reports' => 'צפה בכל הדיווחים', + 'view_items' => 'צפה בפריטים', + 'view_more' => 'ראה עוד', + 'view_report' => 'צפה בדיווח', + 'view_reports' => 'צפה בדיווחים', + 'visible' => 'מפורסם', + 'waiting_approval' => 'ממתין לאישור', + 'waiting_verification' => 'ממתין לאימות', + 'web_form' => 'טופס מקוון', + 'weight' => 'משקל', + 'yes' => 'כן', + 'yesterday' => 'אתמול', + 'zoom_in' => 'הגדל מפה', + 'zoom_out' => 'הקטן מפה', +); diff --git a/application/i18n/he_IL/upgrade.php b/application/i18n/he_IL/upgrade.php new file mode 100755 index 0000000000..561472af7d --- /dev/null +++ b/application/i18n/he_IL/upgrade.php @@ -0,0 +1,31 @@ + array( + 'between' => 'קלט לא חוקי. בחר 0 עבור "לא", 1 עבור "כן".', + ) , + 'upgrade_automatic' => 'שדרוג אוטומטי', + 'upgrade_available' => 'שדרוגים זמינים', + 'upgrade_continue_btn_text' => 'המשך', + 'upgrade_db_btn_text' => 'שדרוג', + 'upgrade_db_text_1' => 'בסיס הנתונים עומד להשתדרג מגירסה', + 'upgrade_db_text_2' => 'לגירסה החדשה ביותר', + 'upgrade_db_text_3' => 'יש ללחוץ על הכפתור "שדרוג" ולהרגע בזמן שהקסם מתבצע', + 'upgrade_db_text_4' => 'לגיבוי בסיס הנתונים יש לסמן בתיבת הסימון', + 'upgrade_db_text_5' => 'האם לגבות את מסד הנתונים לפני השדרוג? (מומלץ מאוד)', + 'upgrade_db_title' => 'שדרוג בסיס הנתונים של אושהידי', + 'upgrade_failed' => 'השדרוג נכשל', + 'upgrade_manual' => 'שדרוג ידני', + 'upgrade_status' => 'מצב השדרוג של אושהידי', + 'upgrade_text_1' => 'ההוראות בהמשך מפרטות כיצד לשדרג ידנית את ההפצה של אושהידי', + 'upgrade_text_2' => 'שלב 1: הורד את הגירסא העדכנית ביותר של אושהידי מhttp://download.ushahidi.com', + 'upgrade_text_3' => ' שלב 2: +השתמש בכלי המועדף עליך (כגון: Telnet, FTP, SSH), בהתאם למערכת ההפעלה אשר מריצה את שרת האינטרנט, כדי להתחבר אל השרת ולהחליף את התוכן של כל התיקיות עם התוכן החדש ביותר מגירסת התוכנה הכי עדכנית. החלף את כלל התכנים, מלבד הבאים: ', + 'upgrade_text_4' => 'שלב 4: לחץ על הכפתור "המשך" לשדרוג הטבלאות הנחוצות.', + 'upgrade_text_5' => 'לשדרוג אוטומטי יש ללחוץ על הכפתור', + 'upgrading' => 'משדרג', +); diff --git a/application/i18n/hi_IN/alerts.php b/application/i18n/hi_IN/alerts.php new file mode 100644 index 0000000000..9ba394f29e --- /dev/null +++ b/application/i18n/hi_IN/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => ' क्या यह ईमेल क्षेत्र एक मान्य ईमेल पता नहीं रखता ?', + 'email_check' => 'यह ईमेल पता पहले से ही उस स्थान के लिए अलर्ट प्राप्त करने के लिए पंजीकृत किया जा चुका है|', + 'length' => 'ईमेल क्षेत्र की लम्बाई कम से कम 4 और अधिकतम 64 वर्ण लंबा होनी चाहिए।', + 'required' => ' चेकबॉक्स अंकित होने पर ईमेल क्षेत्र की आवश्यकता है।', + ) , + 'alert_country' => array( + 'single_country' => 'यह प्रणाली एक देश तक ही सीमित है। कृपया सुनिश्चित करें कि अलर्ट स्थान %s देश के भीतर है।', + ) , + 'alert_lat' => array( + 'between' => 'आपने मानचित्र पर एक मान्य स्थान का चयन नही किया है|', + 'required' => 'आपने मानचित्र पर एक सही स्थान का चयन नही किया है| ', + ) , + 'alert_lon' => array( + 'between' => 'आपने मानचित्र पर एक सही स्थान का चयन नही किया है| ', + 'required' => 'आपने मानचित्र पर एक सही स्थान का चयन नही किया है| ', + ) , + 'alert_mobile' => array( + 'length' => 'यह चल दूरभाष का क्षेत्र सही मात्रा मे अक्षर से युक्त नही है|', + 'mobile_check' => 'यह चल दूरभाष सूचना प्राप्त करने के लिए पहले से ही पंजीकृत है|', + 'numeric' => 'यह चल दूरभाष का क्षेत्र एक सही दूरभाष के ना होने का अनुमान होता है| कृपया वही संख्या निवेस करे जो राष्ट्र कूट सहित है| ', + 'one_required' => 'आप आपना दूरभाष संख्या या ईमेल पता प्रवेस करे|', + 'required' => 'अगर चेकबॉक्स जाँचा गया तो चल दूरभाष का क्षेत्र आवश्यक होगा| ', + ) , + 'alert_radius' => array( + 'in_array' => 'आपने मानचित्र पर एक सही त्रिज्या निर्धारित नही किया है|', + 'required' => 'आपने मानचित्र पर आपना त्रिज्या निर्धारित नही किया है|', + ) , + 'alert_recipient' => array( + 'required' => 'आपना सूचनाओ के लिए एक प्राप्तकर्ता को निर्धारित नही किया है|', + ) , + 'alerts_subscribed' => 'आपना निम्नलिखित विभगो के लिए सूचनाओ का अभिदत्त है|', + 'code_already_verified' => 'यह कूट पहले भी सत्यापित की जा चुकी है!', + 'code_not_found' => 'सत्यापित कूट प्राप्त नही किया गया! कृपया पुष्टि करे आपके पास सही URL है|', + 'code_verified' => 'आपके कूट को सत्यापित कर दिया गया है| आपको अब सूचनाओ की प्राप्ति होगी जैसे जैसे घटनाए होती जाएँगी|', + 'confirm_request' => 'अपने सूचना आवेदन की पुष्टि के लिए कृपया यहा जाए', + 'create_more_alerts' => 'और सूचना प्राप्त करने के लिए सूचना पृष्ठ मे जाए', + 'email_alert_request_created' => 'आपकी ईमेल सूचना के लिए आवेदन कर दिया गया है और प्रमाणन संदेस एस पर भेज दिया गया है|', + 'email_code' => 'कृपया नीचे दिए गए ईमेल पुष्टिकरण कूट को प्रवीस्ट करे|', + 'email_error_head' => 'आपकी ईमेल सूचना के लिए आवेदन को संचित नही किया गया है|', + 'email_ok_head' => 'आपकी ईमेल सूचना के लिए आवेदन को संचित नही किया गया है|', + 'error' => 'यह तंत्र आपके प्रमाणन आवेदन को परिष्कृत करने मे अस्मर्थ रहा|', + 'mobile_alert_request_created' => 'आपके दूरभाष सूचना के आवेदन को तैयार कर दिया गया है और प्रमाणन संदेस एस पर भेज दिया गया है', + 'mobile_code' => 'कृपया चल दूरभाष मे प्राप्त किए गए पुष्टिकरण संदेस को नीचे प्रविष्ट करे:', + 'mobile_error_head' => 'आपके चल दूरभाष सूचना आवेदन संचित नही किया गया है!', + 'mobile_ok_head' => 'आपके चल दूरभाष सूचना आवेदन संचित किया गया है!', + 'settings_error' => 'यह परिनियोजन चेतावनी की प्रक्रियाओ की सही से स्थापना नही की गई है', + 'unsubscribe' => 'अपकको यह ईमेल एश्लेय प्राप्त हुआ है क्यूंकी आपने चेतावनियो की प्राप्ति के लिए सदस्यता ली है|अगर आप आगे यह चितवानिया प्राप्त नही करना चाहते तो एस पर जाए', + 'unsubscribed' => 'आप आगे एन्से चेतावनिया प्राप्त नही करेंगे ', + 'unsubscribe_failed' => 'हम आपकी असदस्यता नही कर पा रहे है| कृपया पुष्टि कर ले आपके पास सही यूआरएल है.', + 'verification_email_subject' => 'चेतावनिया - सत्यापित करे', + 'verify_code' => 'आपको एस स्थान पर चेतावनियो की प्राप्ति नही होगी जब तक आप अनुरोध की पुष्टि नही करते|', +); diff --git a/application/i18n/hi_IN/auth.php b/application/i18n/hi_IN/auth.php new file mode 100644 index 0000000000..87a745b80b --- /dev/null +++ b/application/i18n/hi_IN/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'जो ईमेल आपने प्रवेशित किया है वो एक सही ईमेल का पता नही है|', + 'exists' => 'माफ़ करे! एस ईमेल के पते का उपभोक्ता खाता पहले से मौजूद है|', + 'length' => 'ईमेल क्षेत्र कम से कम से कम 4 और ज़्यादा से ज़्यादा 64 वर्ण के होने चाहिए', + 'required' => 'ईमेल क्षेत्र ज़रूरी है|', + ) , + 'name' => array( + 'length' => 'नाम क्षेत्र कम से कम 3 और ज़्यादा से ज़्यादा 100 वर्ण बरा होना चाहिए|', + 'required' => 'नाम क्षेत्र ज़रूरी है|', + 'standard_text' => 'इस्तेमाल कर्ता नाम क्षेत्र अमान्य वर्णो से निहित है|', + ) , + 'current_password' => array( + 'length' => 'कूट शब्द कम से कम 8 वर्ण लंबी होनी चाहिए|', + 'login error' => 'कृपया जाँच ले की आपने सही ईमेल और कूट शब्द को प्रवेशित किया है|', + 'matches' => 'कृपया दोनो कूटशब्द क्षेत्रो में समान कूट शब्द प्रवेशित करे|', + 'required' => 'यह कूट शब्द क्षेत्र ज़रूरी है|', + 'alpha_dash' => 'कूटशब्द क्षेत्र में सिर्फ वर्णाक्षर, # एवं @ चिन्ह, संख्याऐं, निम्नरेखाऐं और dashes हि होने चाहिये|', + 'incorrect' => 'आप ने हाल हि में प्रवेशित किया हुआ कूटशब्द गलत हैं| कृपया फिर कोशिश करें|', + ) , + 'new_password' => array( + 'length' => 'यहा कूट शब्द क्षेत्र कम से कम 8 वर्ण लंबी होनी चाहिए|', + 'login error' => 'कृपया जाँच ले की आपने सही ईमेल और कूट शब्द को प्रवेश किया है|', + 'matches' => 'कृपया समान कूट शब्द को प्रवेश करे|', + 'required' => 'यहा कूट शब्द क्षेत्र ज़रूरी है|', + 'alpha_dash' => 'कूटशब्द क्षेत्र में सिर्फ वर्णाक्षर, # एवं @ चिन्ह, संख्याऐं, निम्नरेखाऐं और dashes हि होने चाहिये|', + ) , + 'password' => array( + 'default' => 'आपको लॉगिन कराते वक़्त भूल हुई है.', + 'length' => 'यहा कूट शब्द क्षेत्र कम से कम 8 वर्ण लंबी होनी चाहिए|', + 'login error' => 'कृपया जाँच ले की आपने सही ईमेल और कूट शब्द को प्रवेशित किया है|', + 'matches' => 'कृपया दोनो कूटशब्द क्षेत्रो में समान कूट शब्द प्रवेशित करे|', + 'required' => 'यह कूट शब्द क्षेत्र ज़रूरी है|', + 'riverid server down' => 'औथएंटिकेशन सर्वर बंद है! कृपया करके वापस प्रयतन् कीजिए !', + 'riverid' => '%s', + 'alpha_dash' => 'कूटशब्द क्षेत्र में सिर्फ वर्णाक्षर, # एवं @ चिन्ह, संख्याऐं, निम्नरेखाऐं और dashes हि होने चाहिये|', + ) , + 'password_confirm' => array( + 'matches' => 'पासवर्ड कन्फर्मेशन क्षेत्र और पासवर्ड क्षेत्र मेच होने चाईए.', + ) , + 'resetemail' => array( + 'email' => 'जो ईमेल आपने प्रवेश किया है वो एक सही ईमेल का पता नही है|', + 'invalid' => 'माफ़ करे ह्मारे पास आपके ईमेल का पता नही है|', + 'required' => 'ईमेल क्षेत्र ज़रूरी है|', + ) , + 'role' => array( + 'superadmin_modify' => 'केवल सूपर-एडमिन ही सूपर-आडमिन को मॉडिफाइ कर सकता है या यूज़र को एडमिन में अपग्रेड कर सकता है.', + ) , + 'roles' => array( + 'alpha_numeric' => 'ग़लत रोल फॉर्मॅट', + 'length' => 'रोल क्षेत्र कम से कम 5 और अधिकतम 30 अक्षर का होना चाहिए ', + 'required' => 'कम से कम एक रोल डिफाइन कीजिए.', + 'values' => 'कृपया करके एडमिन रोल या यूज़र रोल में से किसी एक को चुने.', + ) , + 'token' => array( + 'invalid' => 'फॉरगोटन पासवर्ड का टोकन ग़लत है', + 'required' => 'फॉरगोटन पासवर्ड का टोकन ज़रूरी है ', + ) , + 'username' => array( + 'admin' => 'Admin भूमिका नहीं बदली जा सकती ', + 'alpha_numeric' => 'पब्लिक प्रोफाइल URL क्षेत्र में केवल अंक या अक्षर हो सकते हैं ', + 'exists' => 'क्षमा करे, यह पब्लिक प्रोफाइल URL पहले से इस्तेमाल में है.', + 'length' => 'पब्लिक प्रोफाइल URL क्षेत्र कम से कम 2 और अधिकतम 100 अक्षर का होना चाहिए|', + 'login error' => 'कृपया जाँच ले की आपने सही पब्लिक प्रोफाइल URL प्रवेशित किया है.', + 'required' => 'पब्लिक प्रोफाइल URL क्षेत्र ज़रूरी हैं.', + 'superadmin' => 'Super Admin भूमिका बदली नहीं जा सकती ', + 'csrf' => 'संभावित CSRF अटेक है. क्या आप सही माईने में यूज़र क्रियेट/एडिट करना चाहते थे?', + ) , +); diff --git a/application/i18n/hi_IN/bug.php b/application/i18n/hi_IN/bug.php new file mode 100644 index 0000000000..c753fa4f82 --- /dev/null +++ b/application/i18n/hi_IN/bug.php @@ -0,0 +1,7 @@ + 'PHP5-curl इस सिस्टम पर स्थापित नहीं है.', +); diff --git a/application/i18n/hi_IN/form.php b/application/i18n/hi_IN/form.php new file mode 100644 index 0000000000..c753fa4f82 --- /dev/null +++ b/application/i18n/hi_IN/form.php @@ -0,0 +1,7 @@ + 'IMAP धारा नहीं खोला जा सका.', + 'unsupported_service' => 'ईमेल सेवा समर्थित नहीं है.', +); diff --git a/application/i18n/hi_IN/installer.php b/application/i18n/hi_IN/installer.php new file mode 100644 index 0000000000..c753fa4f82 --- /dev/null +++ b/application/i18n/hi_IN/installer.php @@ -0,0 +1,7 @@ + array( + 'required' => 'एक पृष्ठ शीर्षक दर्ज करें.', + 'length' => 'पृष्ठ शीर्षक में कम से कम 3 वर्ण लंबा हो सकता है और 150 वर्ण से अधिक लंबा नही होना चाहिए.', + ) , + 'page_tab' => array( + 'required' => 'एक पृष्ठ टैब नाम दर्ज करें.', + ) , + 'page_description' => array( + 'required' => 'पृष्ठ का विवरण दर्ज करें.', + ) , +); diff --git a/application/i18n/hi_IN/permissions.php b/application/i18n/hi_IN/permissions.php new file mode 100644 index 0000000000..c753fa4f82 --- /dev/null +++ b/application/i18n/hi_IN/permissions.php @@ -0,0 +1,7 @@ + array( + 'length' => 'विवरण क्षेत्र कम से कम 3 और अधिकतम 100 अक्षर का होना चाहिए ', + 'required' => 'विवरण क्षेत्र की आवश्यकता है', + ) , + 'name' => array( + 'alpha_numeric' => 'नाम क्षेत्र में केवल अंक या अक्षर हो सकते हैं ', + 'length' => 'नाम क्षेत्र कम से कम 2 और अधिकतम 30 अक्षर का होना चाहिए ', + 'nomodify' => 'SuperAdmin भूमिका नहीं बदली जा सकती ', + 'required' => 'नाम क्षेत्र की आवश्यकता है', + ) , + 'access_level' => array( + 'numeric' => 'Access Level क्षेत्र 0-100 के बीच का अंक होना चाहिए ', + 'required' => 'Access Level क्षेत्र 0-100 के बीच का अंक होना चाहिए ', + ) , + 'permissions' => array( + 'numeric' => 'Permission Level क्षेत्र 0-100 के बीच का अंक होना चाहिए ', + ) , +); diff --git a/application/i18n/hi_IN/settings.php b/application/i18n/hi_IN/settings.php new file mode 100644 index 0000000000..c753fa4f82 --- /dev/null +++ b/application/i18n/hi_IN/settings.php @@ -0,0 +1,7 @@ + 'प्रवेश निषेध. या तो आपका परिचय ग़लत है या फिर आपकी रिक्वेस्ट को इस वक़्त नामंज़ूर किया गया है.', + 'access_denied_others' => 'प्रवेश निषेध. आपकी रिक्वेस्ट समझी गयी है परंतु इस वक़्त समय की बाधा होने के कारण इसे रद्द किया गया है. कुछ समय के बाद पुनः प्रयत्न करें.', + 'access_level' => 'प्रवेश का स्तर', + 'actions' => 'कार्य', + 'add_to_category' => 'श्रेणी में जोड़ें', + 'added' => 'जोड़े', + 'added_edited' => 'जोड़ा गया / एडिट किया गया', + 'addons' => 'एड-ऑन्स', + 'admin_role' => 'एडमिन', + 'alerts' => 'चेतावनी', + 'alerts_received' => 'दि गयी चेतावनी-याँ', + 'all' => 'सभी', + 'am' => 'AM', + 'anonymous' => 'अग्यात', + 'anyone_role' => 'कोई भी', + 'anywhere' => 'कही भी', + 'api_banned' => 'प्रतिबंधित API', + 'api_logs' => 'API लोग्स', + 'api_settings' => 'API सेट्टिंग्स', + 'api_unban' => 'UNBAN', + 'api_unban_all' => 'सभी को UNBAN किया जाए ', + 'approved' => 'स्वीकृत', + 'approve_auto' => 'औटो स्वीकृति दे', + 'approve_manual' => 'मॅन्यूयेली स्वीकृति दे', + 'archived' => 'संग्रहीत', + 'are_you_sure_you_want_to' => 'क्या आपको सही मे यह चाईए', + 'are_you_sure_you_want_to_delete_this_item' => 'क्या आपको सही मे यह आइटम मिटा देनी है?', + 'are_you_sure_you_want_to_delete_this_photo' => 'क्या आपको सही मे यह फोटो मिटा देना है?', + 'are_you_sure_you_want_to_switch_forms' => 'क्या आपको सही मे यह फॉर्म स्विच करना है?', + 'assign' => 'निर्धारित करना', + 'assignments' => 'सौंपे हुए कार्य', + 'assign_badge' => 'बेड्ज निर्धारित करना', + 'author' => 'लेखक', + 'author_email' => 'लेखक का ईमेल', + 'back' => 'पीछे जाना', + 'banip_action' => 'यह IP निषेद करे ', + 'between_times' => 'समय के बीच', + 'blocks' => 'ब्लॉक्स', + 'body' => 'बॉडी', + 'cancel' => 'रद्द करें', + 'categories' => 'श्रेणियां', + 'chart_display_error' => 'चार्ट दिखाते वक्त़ भूल हुई है', + 'check_message_valid' => 'कृपया दुबारा अपना मेसेज जाँच ले! ', + 'check_number' => 'कृपया दुबारा अपना फोन जाँच ले!', + 'check_sms_settings' => 'कृपया करके अपने SMS सेट्टिंग्स जाँच ले!', + 'checkin_details' => 'चेक इन विवरण', + 'checkins' => 'चेकइन्स', + 'cities_loaded' => 'शहरो के नाम लोड हो गये है', + 'code' => 'कोड', + 'code_out_of_sync' => 'कोड का वरजन सींक में नही है', + 'color' => 'रंग', + 'comments' => 'टिप्पणिया', + 'confirmation_code' => 'आपके अलर्ट का पुष्टिकृत कोड है :', + 'confirm_msg' => 'यह यूज़र का', + 'count' => 'काउंट ', + 'country_not_found' => 'देश का नाम नही मिला', + 'created_edited' => 'बनाए / संपादित करें', + 'create_report' => 'रिपोर्ट बनाए ', + 'critical_upgrade' => 'अत्यंत ज़रूरी अपग्रेड', + 'csv' => 'सी.एस.वी', + 'currently_active' => 'अभी कार्यरत', + 'currently_inactive' => 'अभी निष्क्रिय', + 'custom_forms_insufficient_permissions' => 'इन कस्टम फील्ड्स को बदलने के लिए आपके पास पर्याप्त इजाज़त नही है !', + 'daily' => 'रोज़', + 'dashboard' => 'डेशबोर्ड', + 'database' => 'डेटाबेस:', + 'date_time' => 'दिनांक और समय', + 'date_added' => 'इस तारीख को डाला गया', + 'date_modified' => 'इस तारीख को बदला गया', + 'days_of_the_week' => 'हफ्ते के दिन', + 'db_out_of_sync' => 'DB का वरजन सींक में नही है', + 'deleted' => 'हटाए गए', + 'delete_action' => 'हटाएँ', + 'delete_badge' => 'बैज हटाएँ', + 'demo' => 'प्रदर्शन', + 'description' => 'वर्णन', + 'disabled' => 'निषेध', + 'divider_start_field' => 'डिवाइडर की शुरुआत', + 'divider_end_field' => 'डिवाइडर का अंत', + 'divider_class' => 'div class', + 'download_reports' => 'रिपोर्ट्स डाउनलोड करे', + 'dropdown_choices' => 'ड्रॉप-डाउन मे से चुने', + 'edited' => 'बदला हुआ', + 'edited_by' => 'बदलने वाले का नाम', + 'edit_action' => 'बदले ', + 'edit_log' => 'बदलो का लॉग', + 'email' => 'ईमेल', + 'entire_collective' => 'पूरा समूह', + 'error_geocoding' => 'जियो-कोडिंग में भूल! HTTP में भूल', + 'error_imap' => 'IMAP PHP लाईब्रॅरी इनस्टॉल नही हुई है', + 'error_twitter' => 'ग़लत परिचय', + 'error_msg' => 'भूल', + 'error_post_incident' => 'भूल! यह घटना पोस्ट नही हुआ है', + 'every_six_hours' => 'हर ६ घंटे में', + 'every_twelve_hours' => 'हर १२ घंटे में', + 'experimental' => 'प्रायोगिक', + 'faqs' => 'FAQ\'s', + 'feed' => 'फीड', + 'feedback' => ' प्रतिक्रिया प्रदान करें', + 'feeds' => 'फीड्स', + 'field_choices' => 'अपने पसन्दो की सूची', + 'field_default' => 'डिफॉल्ट वॅल्यू', + 'field_datatype' => 'डेटा का प्रकार', + 'field_datatype_javascript' => 'जावा-स्क्रिप्ट', + 'field_datatype_markup' => 'मार्क-उप', + 'field_datatype_numeric' => 'संख्या', + 'field_datatype_text' => 'फ्री टेक्स्ट', + 'field_height' => 'उँचाई (पंक्ति मे)', + 'field_hidden' => 'छिपा हुआ फील्ड', + 'field_maxlength' => 'प्रवेश का स्तर', + 'field_name' => 'फील्ड नेम', + 'field_toggle' => 'टॉगल', + 'field_toggle_no' => 'नो', + 'field_toggle_yes_close' => 'यस, क्लोस्ड बाइ डिफॉल्ट', + 'field_toggle_yes_open' => 'यस, ओपन बाइ डिफॉल्ट', + 'file_not_found_upload' => 'अपलोड की हुई फाइल मिल नही रही है', + 'file_open_error' => 'पढ़ने के लिए फाइल खुल नही रही है', + 'form_not_exists' => 'यह फॉर्म अस्तित्व में ही नही है!', + 'forum' => 'फोरम', + 'free_text_field' => 'टेक्स्ट एरिया फील्ड (फ्री टेक्स्ट)', + 'date_field' => 'डेट फील्ड', + 'radio_field' => 'रेडियो बटन्स फील्ड', + 'checkbox_field' => 'चेक-बॉक्सस फील्ड', + 'dropdown_field' => 'ड्रॉप-डाउन फील्ड', + 'from' => 'से', + 'from_date' => 'से', + 'geonames_timeout' => 'जियो-नेम्स टाइम-आउट एरर', + 'get_help' => 'मदद लीजिए', + 'get_more_themes' => 'और थीम्स लाए', + 'get_more_plugins' => 'और प्लग-इन्स लाए', + 'header_actions' => 'कार्य', + 'header_add_edit' => 'जोडें/बदलें', + 'header_email' => 'ईमेल', + 'header_manage_users' => 'मेनेज यूज़र्स', + 'header_role' => 'रोल', + 'header_user' => 'यूज़र', + 'help' => 'मदद', + 'hourly' => 'घंटो में', + 'incident_feed' => 'इन्सिडेंट फीड फॉर', + 'installer_info' => 'इनस्टॉलर फोल्डर अभी भी है. इसे तुरंत डेलीट करे. यह सेक्यूरिटी के लिए से हानिकारक हो सकता है.', + 'instance' => 'इन्स्टेन्स', + 'instances' => 'इन्स्टेन्सस', + 'instance_details' => 'इन्स्टेन्स डीटेल्स', + 'invalid_parameter' => 'ग़लत पेरामीटर', + 'ip_address' => 'आइपी अड्रेस', + 'is_date' => 'क्या यह डेट फील्ड है?', + 'ispublic_visible' => 'कौन जवाब देख सकता है', + 'ispublic_submit' => 'कौन जवाब दे सकता है', + 'keyword' => 'कीवर्ड', + 'keywords' => 'कीवर्ड्स', + 'label_email' => 'ईमेल पता :', + 'label_full_name' => 'पूरा नाम :', + 'label_password' => 'पासवर्ड :', + 'label_role' => 'रोल :', + 'label_username' => 'यूज़रनेम :', + 'layers' => 'परतें', + 'login_role' => 'मॉडारेटर', + 'logout' => 'लोग-आउट', + 'logs' => 'लोग्स', + 'manage' => 'मेनेज', + 'manage_roles' => 'मेनेज रोल्स & परमिशन्स', + 'manage_users' => 'यूज़र्स दिखाएँ', + 'manage_users_edit' => 'जोडें/बदलें यूज़र्स', + 'manage_public_listing' => 'अपना पब्लिक लिसटिंग मेनेज करें', + 'mark_as' => 'अंकित करे', + 'marked_as_not_spam' => 'स्पैम नहीं अंकित किया गया है', + 'marked_as_spam' => 'स्पैम अंकित किया गया है', + 'match_no_documents' => 'किसी भी अन्य डॉक्युमेंट्स से मैच नही हुआ', + 'message' => 'संदेश', + 'messages' => 'संदेश', + 'messages_laconica' => 'संक्षिप्त संदेश', + 'messages_twitter' => 'ट्विटर संदेश', + 'message_sent' => 'आपका संदेश भेज दिया गया है!', + 'mhi' => 'MHI', + 'minute' => 'मिनिट', + 'minutes' => 'मिनिट्स', + 'missing_parameter' => 'लापता पेरामीटर', + 'moderator' => 'मॉडारेटर', + 'modified' => 'मॉडिफाइड', + 'modify_timezone' => 'मॉडिफाइ टाइम-ज़ोन सेट्टिंग', + 'move_down_action' => 'नीचे चलें', + 'move_up_action' => 'उपर चलें', + 'multiple_hosted_instances' => 'मल्टिपल होस्टेड इन्स्टेन्सस', + 'my_alerts' => 'मेरे अलर्ट्स', + 'my_checkins' => 'मेरे चेकइन्स', + 'my_profile' => 'मेरा प्रोफाइल', + 'my_reports' => 'मेरे रिपोर्ट्स', + 'my_votes' => 'डालें गये वोट्स', + 'my_votes_up' => 'पॉज़िटिव', + 'my_votes_down' => 'नेगेटिव', + 'name' => 'नाम', + 'new_alert' => 'नया अलर्ट बनाएँ', + 'new_private' => 'नया संदेश बनाएँ', + 'new_password' => 'नया पासवर्ड', + 'no' => 'नहीं', + 'none_category_explanation' => 'यह एक विशिष्ठ केटेगरी है जो यूज़र्स द्वारा दिए गये रिपोर्ट सबमिशन फॉर्म में देखिई नही देगी. यह केटेगरी उन रिपोर्ट्स के लिए है जिनकी केटेगरीस डेलीट की जा चुकी है (अन-कॅटेगरिज़्ड रिपोर्ट्स).', + 'notification' => 'अधिसूचना', + 'not_case_sensitive' => 'यह केस सेन्सिटिव नही है.', + 'not_found' => 'नही मिला', + 'no_data' => 'यहा कोई परिणाम नही है ', + 'no_error' => 'कोई भूल नही है', + 'no_result_display_msg' => 'यहा कोई परिणाम नही है ', + 'of' => 'ऑफ', + 'on_specific_count' => 'ओन स्पेसिफिक काउंट', + 'openids' => 'ओपन-आइड\'स', + 'page' => 'पेज', + 'pages' => 'पेजिस', + 'page_not_found' => 'पेज नही मिला', + 'page_not_found_message_with_contact' => 'क्षमा करें, जो पेज आप देखना चाहते है वो मौज़ूद नही है.

क्या आप इस लिंक पर हमारी साइट पर से आए है?
अगर ऐसा है तो हमे यहाँ संपर्क कीजिए ताकि हम अपनी ग़लती सुधार सके.

क्या आप किसी दूसरी साइट से इस लिंक पर आए है?
कभी कभी दूसरी साइट्स पर लिंक्स आउटडेटेड हो जाते है या स्पेलिंग मिस्टेक्स हो जाती है. हमें बताए ताकि हम इस समस्या को सुलझा सके.

क्या आपने URL टाइप किया था?
हो सकता हैं आपने (URL) टाइप करने में कोई ग़लती कर दी हो. कृपया करके स्पेलिंग इत्यादि चेक करें.

', + 'page_not_found_message' => 'क्षमा करें, जो पेज आप देखना चाहते है वो मौज़ूद नही है.', + 'parameters_used' => 'पेरामीटर यूज़्ड ', + 'password' => 'पासवर्ड', + 'password_reset' => 'पासवर्ड रिसेट', + 'password_reset_message_line_1' => 'डियर', + 'password_reset_message_line_2' => 'आपके इस पासवर्ड को रिसेट करने का अनुरोध हमे मिला है', + 'password_reset_message_line_3' => 'अपना पासवर्ड बदलने के लिए, कृपया करके नीचे दिए गये लिंक पर क्लिक करे (या उसे कॉपी करके अपने ब्राउज़र में पेस्ट करे).', + 'password_reset_message_line_4' => 'आपके के अनुरोध पर आपका पासवर्ड रिसेट किया गया है! आपका नया विवरण इस प्रकार है', + 'password_reset_subject' => 'उशहीदी पासवर्ड रिसेट', + 'phone' => 'फोन', + 'please_select' => 'कृपया करके चुने', + 'pm' => 'PM', + 'post_method_not_used' => 'डेटा पोस्ट मेथड द्वारा नही भेजा गया है', + 'preview' => 'पूर्व-दर्शन करना', + 'private_message' => 'संदेश', + 'private_messages' => 'भेजे गये व्यक्तिगत संदेश', + 'private_sent' => 'व्यक्तिगत संदेश', + 'private_subject' => 'विषय', + 'private_to' => 'टू', + 'public_listing' => 'पब्लिक लिसटिंग', + 'qualifiers' => 'क्वालिफाइयर्स', + 'read' => 'पढ़ा हुआ', + 'relevance' => 'रेलवेन्स', + 'report_title' => 'रिपोर्ट का शीर्षक', + 'report_date' => 'रिपोर्ट की तारीख़', + 'reporters' => 'रिपोर्टर्स', + 'reporter_levels' => 'रिपोर्टर्स का स्तर', + 'reports' => 'रिपोर्ट्स', + 'reputation' => 'रेप्युटेशन स्कोर', + 'required' => 'आवश्यक', + 'reset' => 'रिसेट', + 'response' => 'जवाब में', + 'results' => 'परिणाम', + 'revoke' => 'रिवोक', + 'riverid_exists_admin' => 'इस ईमेल पर पहले से ही CrowdmapID का अकाउंट है! कृपया लॉगिन करने के लिए अपना Crowdmap पासवर्ड का इस्तेमाल करे !', + 'save_settings' => 'सेट्टिंग्स बचाये', + 'search' => 'खोजें', + 'search_reports' => 'रिपोर्टर्स खोजें', + 'searching_for' => 'सर्चिंग फॉर', + 'security_info_encryption_key' => 'एनक्रिपशन-की कि वॅल्यू अभी तक डिफॉल्ट है. यह असुरक्षित है और इसे तुरंत बदल दें.', + 'security_info_https' => 'यह साइट HTTP द्वारा प्रस्तुत की जा रही है. इसे ज़्यादा सुरक्षित करने के लिए इसे HTTPS पर कीजिए.', + 'security_info_instructions' => 'सूचनाएँ सारी विकी पर मौजूद है:', + 'select_download_format' => 'अपने डाउनलोड किए रिपोर्ट्स का फॉर्मॅट चुने:-', + 'select_field_type' => 'एक फील्ड प्रकार का चयन करें', + 'select_item' => 'कृपया करके एक आइटम चुने', + 'select_trigger_before_response' => 'रेस्पॉन्स सेलेक्ट करने पहले आपको ट्रिग्गर सेलेक्ट करना पड़ेगा.', + 'select_trigger_before_qualifiers' => 'क्वालिफाइयर्स डिफाइन करने के पहले आपको ट्रिग्गर सेलेक्ट करना पड़ेगा.', + 'sender' => 'भेजनेवाला', + 'send_to' => 'जिसे भेजना है', + 'sent_from_website' => 'यह संदेश आपके वेबसाइट पर से भेज गया था इस वक़्त', + 'server_time' => 'सर्वर समय', + 'settings' => 'सेट्टिंग्स', + 'showing_page' => 'पेज देखिए', + 'showing_results' => 'परिणाम देखिए', + 'shown' => 'दिखाया जाना', + 'special_category' => 'स्पेशल श्रेणी', + 'special_category_explanation' => 'यह एक विशिष्ठ केटेगरी है जो यूज़र्स द्वारा दिए गये रिपोर्ट सबमिशन फॉर्म में देखिई नही देगी. यह केटेगरी "ट्रस्टेड रिपोर्टर्स" से संबंधित है.', + 'specific_area' => 'स्पेसिफिक क्षेत्र', + 'state' => 'राज्य', + 'statistics' => 'आँकड़े', + 'stats' => 'आँकड़े', + 'stats_collection_error' => 'आँकड़े प्राप्‍त नही हुए! कृपया करके वापस प्रयतन् कीजिए !', + 'stats_collection_error_short' => 'आँकड़े प्राप्‍त नही हुए !', + 'specific_days' => 'स्पेसिफिक डेज़', + 'subject' => 'विषय', + 'superadmin_role' => 'सूपर एडमिन', + 'task_performed' => 'टास्क पर्फॉर्म्ड', + 'text_field' => 'टेक्स्ट फील्ड', + 'theme_name' => 'नाम', + 'title' => 'मेनेज यूज़र्स', + 'timeout' => 'टाइम-आउट एरर', + 'to' => 'से', + 'total_records' => 'कुल रेकॉर्ड्स', + 'to_date' => 'से', + 'translate_reports' => 'रिपोर्ट्स का अनुवाद करे', + 'trigger' => 'ट्रिग्गर', + 'triggering_user' => 'ट्रिगरिंग यूज़र्स', + 'triggers' => 'ट्रिगर्स', + 'unapproved' => 'अस्वीकृत', + 'unknown' => 'अज्ञात', + 'unknown_failure' => 'अज्ञात असफलता', + 'unread' => 'अपठित', + 'unsubscribe_message' => 'आपको इनसे से चेतावनिया प्राप्त नही होगी', + 'update_link' => 'अपग्रेड करने के लिए यहाँ क्लिक करे', + 'upgrade_ushahidi' => 'अपग्रेड उशहीदी', + 'upgrade_ushahidi_status' => 'अपग्रेड उशहीदी की स्थिति', + 'upload_reports' => 'अपलोड रिपोर्ट्स', + 'user' => 'उपभोक्ता', + 'users' => 'यूज़र्स', + 'ushahidi' => 'उशहीदी', + 'verified_unverified' => 'वेरिफाइड/अनवेरिफाइड', + 'verify_unverify' => 'वेरिफाइ/अनवेरिफाइ', + 'version' => 'संस्करण', + 'version_available' => 'अपग्रेड के लिए उप्लब्द है.', + 'video_encoding' => 'विडियो एन्कोडिंग', + 'view_private' => 'व्यक्तिगत संदेश', + 'view_site' => 'साइट दिखाए', + 'view_report' => 'रिपोर्ट दिखाए', + 'welcome' => 'स्वागतम,', + 'wiki' => 'विकि', + 'xml' => 'XML', + 'yes' => 'हा', + 'your_search_for' => 'आपकी सर्च', +); diff --git a/application/i18n/hi_IN/ui_main.php b/application/i18n/hi_IN/ui_main.php new file mode 100644 index 0000000000..06c948a447 --- /dev/null +++ b/application/i18n/hi_IN/ui_main.php @@ -0,0 +1,621 @@ + 'जानिये', + 'access' => 'पहुँच', + 'access_limits' => 'पहुँच सीमा', + 'account_name' => 'खाते का नाम', + 'actions' => 'कार्य', + 'action_confirm' => 'इस कार्य को पूर्ववत नहीं किया जा सकता। क्या आप निश्चित रूप से आगे बढ़ना चाहते हैं?', + 'activate' => 'सक्रिय करें', + 'active' => 'सक्रिय', + 'add' => 'जोडें', + 'added_by' => 'जोड़ने वाला', + 'additional_data' => 'अतिरिक्त डेटा', + 'additional_reports' => 'अतिरिक्त रिपोर्ट', + 'add_edit' => 'जोडें/बदलें', + 'add_field' => 'क्षेत्र जोडें', + 'add_language' => 'भाषा जोडें', + 'add_new' => 'नया जोडें', + 'add_new_category' => 'नई श्रेणी जोड़ें', + 'add_translation' => 'अनुवाद जोड़ें', + 'admin' => 'प्रशासन', + 'alerts' => 'अलर्ट प्राप्त करें', + 'alerts_alert_me' => 'इस क्षेत्र में या उसके पास रिपोर्ट दर्ज होने पर मुझे अलर्ट भेजें', + 'alerts_btn_send' => 'मेरे अलर्ट अंकित करें', + 'alerts_email' => 'ईमेल पता', + 'alerts_enter_email' => 'ईमेल पता भरें', + 'alerts_enter_mobile' => 'देश कोड के साथ मोबाइल नंबर भरें', + 'alerts_get' => 'अलर्ट प्राप्त करें', + 'alert_has_been' => 'चेतावनी भेजी गयी है', + 'alerts_mobile_phone' => 'मोबाइल फ़ोन', + 'alerts_place_spot' => 'या नीचे दिए गए नक्शे पर चिह्न लगायें, और 20 किलोमीटर की दूरी के भीतर रिपोर्ट दर्ज होने पर आप को अलर्ट भेज दिया जायेगा।', + 'alerts_place_spot2' => 'यदि आप अपना स्थान नहीं ढून्ढ पा रहे है तो सही स्थान चिह्नित करने के लिए नक्शे पर क्लिक करें।', + 'alerts_rss' => 'आरएसएस फ़ीड (नीचे दी गई यूआरएल को कॉपी करें) ', + 'alerts_select_city' => 'शहर का चयन करें', + 'alerts_step1_select_city' => ' चरण 1: अपने शहर या स्थान का चयन करें:', + 'alerts_step2_send_alerts' => ' चरण 2: मेरे अलर्ट भेजें यहाँ भेजें:', + 'alerts_step3_select_catgories' => ' चरण 3 (वैकल्पिक): श्रेणियां चुनें', + 'alert_confirm_previous' => 'पिछले एक अलर्ट अनुरोध की पुष्टि करें', + 'alert_saved' => 'आपके अलर्ट को सहेज लिया गया है', + 'all' => 'सभी', + 'allowed' => 'अनुमति है', + 'allowed_tags' => 'अनुमतित HTML टॅग्स : "%s"', + 'allowed_iframes' => 'आइफ्रेम्स जहाँ से अनुमतित है : "%s"', + 'all_categories' => 'सभी श्रेणियां', + 'all_time' => 'सभी समय', + 'and' => 'और', + 'api' => 'API', + 'approve' => 'स्वीकार करें', + 'approved' => 'स्वीकृत', + 'approved_reports' => 'स्वीकृत रिपोर्टें', + 'approve_this_report' => 'इस रिपोर्ट को स्वीकार करें', + 'approximate' => 'लगभग', + 'archive' => 'संग्रह', + 'archived' => 'संग्रहीत', + 'ascending' => 'उठता हुआ ', + 'at' => 'में', + 'author' => 'लेखक', + 'auto_checkin' => 'ऑटो उपस्थिति', + 'avg_reports_per_day' => 'प्रति दिन औसत रिपोर्ट', + 'awaiting_approval' => 'स्वीकृति के लिए प्रतीक्षा में', + 'awaiting_verification' => 'सत्यापन का इंतजार है', + 'badge' => 'पदक', + 'badges' => 'पदक', + 'badge_image' => 'पदक छवि', + 'badge_image_upload_your_own' => 'या आप अपना बैज चित्र अपलोड कर सकते हैं.', + 'badge_pack' => 'बैज समूह', + 'badge_select' => 'बैज चुनें', + 'blog' => 'ब्लॉग', + 'browse_profiles' => 'प्रोफाइलें देखें', + 'cancel' => 'रद्द करें', + 'categories' => 'श्रेणियां', + 'category' => 'श्रेणी', + 'category_filter' => 'श्रेणी छन्ना', + 'category_has_been' => 'यह वर्ग हो गया है ', + 'category_name' => 'श्रेणी का नाम', + 'change_date_range' => 'तिथि सीमा बदलें', + 'change_password' => 'पासवर्ड बदलें', + 'change_picture' => 'मेरा चित्र बदलें', + 'choose' => 'एक चुनें', + 'choose_data_points' => 'डाउनलोड करने के डेटा बिंदुओं को चुनें', + 'choose_date_range' => 'या अपनी तिथि सीमा का चयन करें', + 'choose_field_type' => 'फ़ील्ड प्रकार का चयन करें', + 'cleanurl' => 'URL साफ़ करें', + 'clear' => 'साफ़ करें', + 'clear_map' => 'नक्षा साफ़ करें', + 'close' => 'बंद करें', + 'clusters' => 'समूह', + 'color' => 'रंग', + 'comment' => 'टिप्पणी', + 'comments' => 'टिप्पणियाँ', + 'comment_details' => 'टिप्पणी विवरण', + 'configuration_saved' => 'आपकी सेटिंग्स अंकित हो गई हैं!', + 'configure' => 'कॉन्फ़िगर', + 'confirm_email_successful' => 'आपने सफलतापूर्वक अपने ईमेल पते की पुष्टि की है!कृपया नीचे लॉगिन करें|', + 'confirm_email_successful_and_approval' => 'आपने सफलतापूर्वक अपने ईमेल पते की पुष्टि की है! एड्मिनिस्ट्रेटर द्वारा आपके अकाउंट को स्वीकृति मिलने के बाद ही आप लॉगिन कर सकते है!', + 'confirm_email_failed' => 'ईमेल पुष्टिकरण विफल हुआ! नीचे से आप दोबारा नया ईमेल पुष्टिकरण माँग सकते है !', + 'contact' => 'हमसे संपर्क करें', + 'contact_code' => 'सुरक्षा कोड', + 'contact_email' => 'आपका ईमेल पता', + 'contact_message' => 'संदेश', + 'contact_message_has_send' => 'आपका संदेश भेज दिया गया है!', + 'contact_name' => 'आपका नाम', + 'contact_phone' => 'आपका फोन नंबर', + 'contact_send' => 'संदेश भेजें', + 'contact_subject' => 'संदेश का विषय', + 'copyright' => 'सर्वाधिकार ©', + 'create' => 'बनाएँ', + 'create_edit' => 'नया बनाए / बदले ', + 'create_new' => 'नया बनाए ', + 'create_new_password' => 'नया पासवर्ड बनाएँ', + 'create_report' => 'रिपोर्ट बनाए ', + 'credibility' => 'विश्वसनीयता', + 'current_password' => 'वर्तमान पासवर्ड', + 'custom_fields' => 'अनुकूलित क्षेत्र', + 'data' => 'जानकारी', + 'date' => 'तारीख', + 'date_format' => '(माह / तिथि / वर्ष)', + 'date_time' => 'दिनांक और समय', + 'day' => 'दिन', + 'deactivate' => 'निष्क्रिय करें', + 'default_location_name' => 'नैरोबी, केन्या', + 'delete' => 'हटाएँ', + 'deleted' => 'हटाए गए', + 'deletes' => 'हटाए गए', + 'delete_disabled' => 'हटाना निषेध', + 'delete_last' => 'पिछला हटाए', + 'delete_report' => 'यह रिपोर्ट हटाए', + 'delete_selected' => 'चुने हुए हटाए', + 'delete_spam' => 'स्पैम हटाएँ', + 'demo' => 'प्रदर्शन', + 'description' => 'वर्णन', + 'descending' => 'गिरता हुआ', + 'detailed_location_example' => 'उदहारण : ३४, माहि बिल्डिंग, मेघ नगर गली क्र. ३, दिल्ली ', + 'details' => 'विस्तार', + 'direct_report' => 'सीधा रिपोर्ट', + 'disabled' => 'बंद किया हुआ ', + 'disapprove' => 'अनुमोदन वापिस लो', + 'download_reports' => 'रिपोर्ट करो डाउनलोड', + 'download' => 'डाउनलोड', + 'edit' => 'बदले ', + 'edit_form_fields' => 'प्रपत्र में क्षेत्र बदले', + 'edit_report' => 'रिपोर्ट बदले', + 'email' => 'ईमेल', + 'email_address' => 'ईमेल पता', + 'email_configuration' => 'मेल सर्वर की स्थिति', + 'email_server_host' => 'मेल सर्वर मेजबान', + 'email_server_password' => 'मेल सर्वर पासवर्ड', + 'email_server_port' => 'मेल सर्वर द्वार', + 'email_server_ssl_support' => 'मेल सर्वर एस.एस.एल. के लिए समर्थन', + 'email_server_type' => 'मेल सर्वर का प्ररूप', + 'email_server_username' => 'मेल सर्वर प्रयोक्ता नाम', + 'email_settings_comment_0' => 'इस लिए आपके विकल्प इस ईमेल के साथ जुड़े होने चाहिए', + 'email_settings_comment_00' => 'ईमेल द्वारा रिपोर्ट मिलने के लिए कृपया आपके ईमेल अकाउंट के सेट्टिंग नीचे दीजिए. कृपया ध्यान दें की ईमेल इधर आएँगे :', + 'email_settings_comment_1' => 'कुछ सर्वर के लिए पूरा ईमेल एड्रेस चाहिए', + 'email_settings_comment_2' => 'ईमेल अकाउंट का गुप्त शब्द', + 'email_settings_comment_3' => 'सामान्य द्वार : 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'उदाहरण: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'उदाहरण: pop3, imap', + 'email_settings_comment_6' => 'SSL कनेक्शन सक्रिय या निष्क्रिय करें', + 'empty' => '--खाली-- ', + 'end_point' => 'को', + 'error' => 'एरर', + 'example' => 'उदाहरण', + 'example_country' => 'केन्या', + 'external_apps' => 'बाहरी ऐप्स', + 'external_video_link' => 'बहरी विडियो लिंक', + 'facebook' => 'फ़ेसबुक', + 'feed' => 'फीड', + 'feedback' => ' प्रतिक्रिया प्रदान करें', + 'feeds' => 'फीड', + 'feed_has_been' => 'इस फीड को', + 'feed_items' => 'फीड विषय - सूची', + 'feed_name' => 'ख़बर नाम ', + 'feed_url' => 'ख़बर URL', + 'field_unused' => 'उपयोग नहीं किया गया क्षेत्र ', + 'file' => 'फ़ाइल', + 'file_over_max_allowed' => 'आपकी फाइल अधिकतम परिमाण से ज्यादा है ', + 'filters' => 'छन्नियाँ', + 'filter_reports' => 'रिपोर्ट छानें', + 'filter_reports_by' => 'इस से रिपोर्ट छानें', + 'filter_reports_contain' => 'वह रिपोर्ट छानें जिनमें यह है', + 'find' => 'खोजें', + 'find_location' => 'स्थान खोजें', + 'first_name' => 'प्रथम नाम', + 'force_run_scheduler' => 'Force Run Scheduler', + 'forgot_password' => 'पासवर्ड भूल गए हैं?', + 'form' => 'फॉर्म', + 'forms' => 'फॉर्म', + 'form_description' => 'फॉर्म विवरण', + 'form_edit' => 'फॉर्म में बदलाव करें', + 'form_has_been' => 'इस फॉर्म को', + 'form_title' => 'फॉर्म शीर्षक', + 'from' => 'से', + 'full_name' => 'पूरा नाम', + 'geolocation_available' => 'जियोलोकेशन उप्लब्द', + 'geometry_color' => 'रंग', + 'geometry_comments' => 'टिप्पणिया', + 'geometry_label' => 'लेबल', + 'geometry_strokewidth' => 'रेखा की चौड़ाई', + 'go' => 'जाएं', + 'hashtag' => 'हॅशटेग', + 'has_been' => 'हुआ है', + 'help' => 'मदद कैसे करें', + 'hidden' => 'छिपा हुआ ', + 'hide' => 'छिपाएं', + 'hide_this_message' => 'मेसेज को छुपाए', + 'home' => 'घर', + 'how_to_report' => 'रिपोर्ट कैसे करें', + 'https' => 'HTTPS', + 'id' => 'आइडी', + 'identify_you' => 'दूसरे उपभोगताओं को आपकी यह पहचान दिखिए देगी !', + 'image' => 'चित्र', + 'images' => 'चित्र', + 'image_icon' => 'चित्र/आइकॉन', + 'inactive' => 'निष्क्रिय', + 'inbox' => 'इनबॉक्स', + 'incident' => 'घटना', + 'incidents_nearby' => 'नज़दीकी घटनाए', + 'incident_location' => 'घटनास्थल', + 'include' => 'शामिल करे', + 'include_categories' => 'वर्गीकरण शामिल करे', + 'include_custom_fields' => 'कस्टम फील्ड्स शामिल करे', + 'include_description' => 'वर्णन शामिल करे ', + 'include_detail' => 'जितना हो सके उतना विस्तार मे वर्णन करे!', + 'include_latitude' => 'अक्षांश शामिल करे ', + 'include_location_information' => 'जगह की जानकारी शामिल करे', + 'include_longitude' => 'देशांतर शामिल करे', + 'include_personal_info' => 'अपनी जानकारी शामिल कीजिये', + 'incoming_media' => 'आता हुआ संचार माध्यम', + 'information_evaluation' => 'जानकारी का आंकलन', + 'input_location' => 'अपनी सटीक स्थान भरें', + 'insufficient_role' => 'आपके अकाउंट को लॉगिन करने की पूर्ण अनुमति नही है ! कृपया करके प्रबंदक को संपर्क करे !', + 'in_response_to' => 'के जवाब में', + 'ip_address' => 'आइपी अड्रेस', + 'is_this_your_profile' => 'क्या यह आपकी प्रोफ़ाइल है?', + 'item' => 'वस्तु', + 'items' => 'वस्तुएं', + 'item_details' => 'वस्तु-विवरण ', + 'item_title' => 'वस्तु शीर्षक', + 'key' => 'चाबी', + 'keywords' => 'कीवर्ड्स', + 'kml_kmz_file' => 'KMZ/KML फ़ाइल', + 'kml_kmz_upload' => 'फ़ाइल अपलोड करें', + 'kml_url' => 'KML URL', + 'laconica' => 'सांक्षिप्त रूप मे', + 'language' => 'भाषा', + 'last' => 'आखरी', + 'last_month' => 'पिछले महीने', + 'last_name' => 'अंतिम नाम', + 'last_year' => 'पिछले साल', + 'latitude' => 'अक्षांश ', + 'layers' => 'परतें', + 'layers_filter' => 'दूसरी परतें', + 'layer_has_been' => 'ये परत का', + 'layer_name' => 'परत का नाम', + 'layer_url' => 'परत का URL', + 'leave_a_comment' => 'आपकी टिप्पणी', + 'less_information' => 'संक्षिप्‍त जानकारी', + 'level' => 'स्तर', + 'level_has_been' => 'यह स्तर का', + 'level_name' => 'स्तर का नाम', + 'limited' => 'सिमित', + 'link' => 'कड़ी', + 'list' => 'ds ', + 'loading_reports' => 'रिपोर्ट्स लोड हो रही है', + 'location' => 'जगह', + 'locations' => 'जगोह', + 'location_example' => 'शहर, राज्या और/या देश.', + 'login' => 'लॉगिन', + 'login_account_creation_successful' => 'खाता सफलतापूर्वक बनाया गया। आप अब लॉग इन कर सकते हैं।', + 'login_confirmation_sent' => 'आपके ईमेल पते पर एक पुष्टिकरण भेजा गया है।', + 'login_approval_required' => 'आपका अकाउंट बन गया है! एड्मिनिस्ट्रेटर द्वारा आपके अकाउंट को स्वीकृति मिलने के बाद ही आप लॉगिन कर सकते है!', + 'login_email_doesnt_exist' => 'ईमेल पता मौजूद नहीं है। एक अलग पते से कोशिश करो या नया खाता बनाएं।', + 'login_select_openid' => 'कृपया कर के अपने अकाउंट प्रोवाइडर पर क्लिक करे', + 'login_with' => 'इसके साथ लोगिन करे', + 'login_userpass' => 'ईमेल और पासवर्ड', + 'login_openid' => 'ओपन-आइडी', + 'login_signup' => 'रजिस्टर करे', + 'login_signup_click' => 'अपना अकाउंट बनाये', + 'login_signup_confirmation_message' => '%1$s पर रजिस्ट्रेशन के लिए धन्यवाद! अपने ईमेल अड्रेस की पुश्ठी के लिए इस URL पर जाए : %2$s', + 'login_signup_confirmation_subject' => 'रजिस्ट्रेशन का पुष्टिकरण', + 'login_signup_admin_approval_message' => '%1$s पर एक नये यूज़र ने रेजिस्टर किया है! उसके रेजिस्ट्रेशन को स्वीकृति देने के लिए इस URL पर जाए : %2$s', + 'login_signup_admin_approval_subject' => 'नये यूज़र की स्वीकृति', + 'login_signup_approval_message' => 'आपके यूज़र अकाउंट को इस %1$s की मंज़ूरी दी गयी है! लॉगिन करने के लिए इस URL पर जाए: %2$s', + 'login_signup_approval_subject' => 'यूज़र अकाउंट स्वीकृत', + 'login_signup_text' => 'हमारे साइट पर अपना अकाउंट बनाए ताकि आप नये फीचर्स का फ़ायदा ले सके !', + 'longitude' => 'देशांतर', + 'map' => 'नक्शा', + 'mark_read' => 'पढ़ा हुआ अंकित करे', + 'mark_unread' => 'नही पढ़ा हुआ अंकित करे', + 'maximum_filesize' => 'महत्तम फाइल की साइज़', + 'media' => 'संचार माध्यम', + 'media_filter' => 'संचार माध्यम की छन्नियाँ', + 'members' => 'सदस्य', + 'manage_your_account' => 'अपना खाता प्रबंधित करें', + 'message' => 'संदेश', + 'messages' => 'संदेश', + 'message_details' => 'संदेश का विवरण', + 'message_non_numeric_source' => 'संदेश बिन-आंकी स्रोत से :', + 'mobile' => 'मोबाइल', + 'modify' => 'सुधारे', + 'modify_date' => 'तिथि बदले', + 'month' => 'माह', + 'more' => 'अधिक', + 'more_information' => 'अधिक जानकारी', + 'multi_country_instance' => 'क्या यह उशहीदी का डेप्लाय्मेंट एक से ज़्यादा राष्ट्रो मे है', + 'must_confirm_email_address' => 'एस प्रस्तरण को अभिगम करने के लाइ अपने ईमेल के पते की पुष्टि करे| अगर आपने स्वीकृति ईमेल को खो दिया है तो आप न्ये के लाइ आवेदन कर सकते है|', + 'name' => 'नाम', + 'nearby_report' => 'नज़दीकी रिपोर्ट', + 'new' => 'नई', + 'news' => 'समाचार', + 'news_feeds' => 'समाचार फ़ीड्स', + 'news_source' => 'समाचार स्रोत', + 'new_category' => 'नई श्रेणी', + 'new_password' => 'नया पासवर्ड', + 'new_report' => ' नयी रिपोर्ट', + 'next' => 'अगला', + 'no' => 'नहीं', + 'no_checkins' => 'प्रदर्शित करने के लिए कोई चेकइन नहीं.', + 'no_data' => 'कोई डेटा नहीं', + 'none' => 'कोई नहीं', + 'notices' => 'नोटिस', + 'not_approved' => 'स्वीकृत नही', + 'not_approved_singular' => 'स्वीकृत नही', + 'not_selected' => '---चयनित नहीं---', + 'not_spam' => 'स्पैम नहीं', + 'not_specified' => 'नही दर्शाया गया', + 'no_reports' => 'यहा कोई रिपोर्ट्स नही है', + 'no_results' => 'यहा कोई परिणाम नही है ', + 'off' => 'बंद', + 'official_news' => 'अफीशियल & मुख्यधारा समाचार', + 'on' => 'चालू', + 'option' => 'विकल्प', + 'optional' => 'वैकल्पिक', + 'options' => 'विकल्प', + 'organization' => 'संस्था', + 'organizations' => 'संस्था', + 'organization_description' => 'संगठन विवरण', + 'organization_email' => 'संगठन का ईमेल', + 'organization_has_been' => 'यह संस्थान का', + 'organization_name' => 'संगठन का नाम', + 'organization_phone_1' => 'संगठन दूरभाष 1', + 'organization_phone_2' => 'संगठन का दूरभाष 2', + 'organization_website' => 'संगठन की वेबसाइट', + 'original' => 'मूल', + 'original_description' => 'मूल वर्णन', + 'original_title' => 'मूल उपाधि', + 'other_ushahidi_instances' => 'दूसरी डेप्लाय्मेंट्स', + 'outbox' => 'आउट-बॉक्स', + 'outgoing' => 'आउट-गोयिंग', + 'page' => 'पेज', + 'pages' => 'पेजिस', + 'page_description' => 'पेज वर्णन', + 'page_has_been' => 'ये पेज है', + 'page_tab_name' => 'पेज टेब का नाम', + 'page_title' => 'पेज शीर्षक + ', + 'parent_category' => 'उत्पादक विभाग', + 'password' => 'पैस्वर्ड', + 'password_again' => 'पैस्वर्ड प्रमाणित करे', + 'password_changed_successfully' => 'पैस्वर्ड सफलतापूर्वक बदल दिया गया है! लॉगिन करे|', + 'password_forgot' => 'क्या आप पैस्वर्ड भूल चुके है?', + 'password_reset_confirm' => 'नये पैस्वर्ड के लिए आपने ईमेल को जाचे|', + 'password_save' => 'ईस कम्प्यूटर पर लॉग्ड ईन्न रहे|', + 'past_month' => 'पिछला महीना', + 'past_year' => 'पिछला साल ', + 'pending' => 'बाकी', + 'per' => 'प्रति', + 'personal_information' => 'व्यक्तिगत सूचना वैकल्पिक ', + 'phone' => 'फोन', + 'photos' => 'तस्वीरे', + 'pictures' => 'चित्र', + 'pictures_and_videos' => 'चित्र और वीडियो', + 'pinpoint_location' => '* स्थानीए नाम या विश्व रेखान्तर के सहारे आपने स्थान को खोजे, देशांतर निर्देशांक(फॉर्मॅट: 38.19, 85.61),सही स्थान को ठीक से निर्धारित करने के लिए मानचित्र पर क्लिक करें|', + 'play' => 'शुरू करे', + 'please_note' => 'कृपया ध्यान मे रखे', + 'plugins' => 'प्लगीन्स', + 'plugin_url' => 'प्लगिन वेबसाइट', + 'public_profile' => 'लोकछवी', + 'public_profile_url' => 'लोकछवी URL', + 'preview' => 'पूर्व-दर्शन करना', + 'preview_item' => 'वस्तु का पूर्व-दर्शन ', + 'preview_message' => 'संदेश का पूर्व-दर्शन ', + 'previous' => 'पिछला', + 'private' => 'व्यक्तिगत', + 'profile_color' => 'लोकछवी का रंग', + 'profile_saved' => 'आपकी रूपरेखा संग्रह हो गई है ', + 'quick_stats' => 'क्विक स्टॅट्स', + 'rating' => 'रेटिंग', + 'read' => 'पढ़ा हुआ', + 'receive' => 'प्राप्त करना', + 'receive_from' => 'किससे प्राप्त हुआ', + 'receive_notifications' => 'अधिसूचना प्राप्त करना', + 'recent_reports' => 'हाल के रिपोर्ट्स', + 'refresh_news_feeds' => 'ताजे समाचार फीड्स के लिए क्लिक करे', + 'registered_email' => 'रजिसटर्द ईमेल', + 'remove' => 'निकाल दे', + 'reply' => 'जवाब दे', + 'report' => 'रिपोर्ट', + 'reports_listed' => 'रिपोर्ट्स (नक्शे मे से, कालानूक्रम अधिसूचित)', + 'reporter' => 'रिपोर्टर', + 'reporters' => 'रिपोर्टर्स', + 'reporter_date' => 'रिपोर्ट की तारीख़', + 'reporter_email' => 'रिपोर्टर का ईमेल', + 'reporter_first_name' => 'रिपोर्टर का नाम', + 'reporter_has_been' => 'यह रिपोर्टर क्या कर चुका है', + 'reporter_ip' => 'रिपोर्टर का आइपी अड्रेस', + 'reporter_last_name' => 'रिपोर्टर का कुलनाम नाम', + 'reporter_level' => 'रिपोर्टर का स्तर', + 'reporter_levels' => 'रिपोर्टर्स का स्तर', + 'reporter_phone' => 'रिपोर्टर का फोन', + 'reports' => 'रिपोर्ट्स', + 'reports_btn_browse' => 'ब्राउज़', + 'reports_btn_submit' => 'सब्मिट', + 'reports_by_this_user' => 'रिपोर्ट्स', + 'reports_categories' => 'वर्गीकरण', + 'reports_count' => '%d रिपोर्ट्स', + 'reports_date' => 'तारिक़्ख', + 'reports_description' => 'वर्णन', + 'reports_download_csv' => 'रिपोर्ट्स CSV फॉर्मॅट मे डाउनलोड की जाएगी', + 'reports_email' => 'ईमेल', + 'reports_features' => 'फीचर्स', + 'reports_find_location' => 'अपने नज़दीक की जगह ढूंदिए', + 'reports_first' => 'पहला नाम', + 'reports_last' => 'कुलनाम', + 'reports_location_name' => 'जगह का नाम', + 'reports_news' => 'समाचार स्रोत लिंक', + 'reports_optional' => 'वैल्काल्पिक जानकारी', + 'reports_photos' => 'तस्वीरे अपलोड करे', + 'reports_return' => 'रिपोर्ट्स पेज पर वापस जाये', + 'reports_select_city' => 'शहर का चयन करें', + 'reports_submitted' => 'आपका रिपोर्ट समीक्षा के लिए प्रस्तुत हो गया है. अगर ज़रूरत पड़े तो हम आपको जल्द ही संपर्क करेंगे.', + 'reports_submit_new' => 'नये रिपोर्ट जमा करे', + 'reports_time' => 'समय', + 'reports_timeline' => 'रिपोर्ट्स टाइमलाइन', + 'reports_title' => 'रिपोर्ट का शीर्षक', + 'reports_video' => 'विडियो लिंक', + 'report_an_incident' => 'घटना की रिपोर्ट करे', + 'report_details' => 'विस्तुरित रिपोर्ट', + 'report_option_1' => 'संदेस भेज कर', + 'report_option_2' => 'ईमेल भेज कर', + 'report_option_3' => 'हैशटैग के साथ ट्वीट भेज कर', + 'report_option_4' => 'वेबसाईट पर एस फॉर्म को भरके', + 'report_option_external_apps' => 'एस अप्प कआ प्रयोग करके', + 'report_saved' => 'आपका रिपोर्ट संग्रह हो गया है ', + 'report_title' => 'रिपोर्ट का शीर्षक', + 'request_information' => 'अधिक जानकारी की विनती करे', + 'request_location' => 'स्थान की विनती करे', + 'required' => 'आवश्यक', + 'requirements' => 'आवश्यकता', + 'resend_confirm_email' => 'स्वीकृति ईमेल को फिर से भेजे', + 'reset' => 'रिसेट', + 'reset_all_filters' => 'सभी फिलटर्स को रिसेट करे', + 'reset_password' => 'पासवर्ड को रिसेट करे', + 'retrieve_city_names' => 'चयनित देश के शहरों के नाम पुन: प्राप्त करें', + 'riverid_information' => 'लेखा %s सेवा द्वारा प्रबंधित.', + 'riverid_exists_login' => 'आपका CrowdmapID अकाउंट हमारे पास रजिस्टरेड है! कृपया लॉगिन करने के लिए अपना CrowdmapID ईमेल और पासवर्ड इस्तेमाल करे !', + 'role' => 'रोल', + 'rss' => 'RSS', + 'save' => 'बचाये', + 'saved' => 'बचा चुके', + 'save_add_new' => 'बचाये और नया जोडें', + 'save_close' => 'बचाये और बंद करे', + 'save_report' => 'रिपोर्ट बचाये', + 'schedule' => 'कार्यक्रम', + 'scheduler' => 'शेड्यूलर', + 'scheduler_day' => 'दिन', + 'scheduler_hour' => 'घंटा', + 'scheduler_log' => 'शेड्यूलर लॉग', + 'scheduler_minute' => 'मिनिट', + 'scheduler_weekday' => 'हफ्ते का दिन', + 'search' => 'खोजें', + 'search_results' => 'परिणाम को खोजे', + 'security_code' => 'सुरक्षा कूट', + 'select_all' => 'सभी का चयन करे', + 'select_field_type' => 'एक फील्ड प्रकार का चयन करें', + 'select_form_type' => 'पर्चा एक प्रकार का चयन करें', + 'select_in_map' => 'नक्शे में चुने', + 'select_multiple' => 'जरूरत के रूप में चयन करें', + 'select_one' => 'यदि आपने किसी वस्तु की जाँच की है तो कृपया सत्यापित करें', + 'select_theme' => 'थीम पसंद करे', + 'send' => 'भेज दे', + 'send_confirmation' => 'पुष्टिकरण भेजे', + 'sending_to' => 'भेजेने वाले', + 'sent' => 'भेजा गया', + 'sent_by' => 'भेजने वाले का नाम', + 'server_address' => 'सर्वर अड्रेस', + 'server_type' => 'सर्वर टाइप', + 'service' => 'सेवा', + 'service_username' => 'सेवा का यूज़रनेम', + 'service_user_id' => 'सेवा का यूज़र-आइडी', + 'share' => 'शेयर', + 'shared_data' => 'साझा डेटा', + 'share_has_been' => 'इस शेयर को', + 'sharing' => 'सहभाजन', + 'shorter_map' => 'अल्प नक्शा', + 'show' => 'दिखाए', + 'show_all' => 'सब कुछ दिखाए', + 'show_messages' => 'मेसेज दिखाए', + 'showing_reports_from' => 'रिपोर्ट्स दर्शाना %1$s to %2$s', + 'site' => 'वेबसाइट', + 'site_email_address' => 'साइट ईमेल अड्रेस', + 'site_url' => 'साइट URL', + 'smaller_map' => 'छोटा नक्शा', + 'sms' => 'SMS', + 'sorry_no_badges' => 'क्षमा कीजिए, आपके पास कोई भी बॅडजस नही है !', + 'source' => 'स्रोत', + 'source_name' => 'स्रोत का नाम', + 'sort' => 'छांटना', + 'sort_by' => 'इससे छांटना', + 'source_url' => 'स्रोत URL', + 'spam' => 'स्पॅम', + 'ssl_support' => 'SSL साहयता?', + 'start_point' => 'किससे आया', + 'step' => 'स्टेप', + 'submit' => 'रिपोर्ट जमा कीजिए', + 'submitted_by' => 'सॅबमिटेड बाइ %1$s वाया %2$s', + 'submit_sms' => 'SMS द्वारा भेजे', + 'submit_sms1' => 'आपका SMS किसे भेजना है', + 'submit_sms2' => 'आपके फोन पर', + 'success' => 'सफल !', + 'successfuly_imported' => 'सफलता पूर्वक इम्पोर्ट किया गया', + 'surname' => 'कुलनाम', + 'survey' => 'सर्वेक्षण', + 'system' => 'सिस्टम', + 'taller_map' => 'लंबा नक्शा', + 'tcp_port' => 'TCP पोर्ट', + 'themes' => 'थीम्स', + 'theme_default' => 'डिफॉल्ट उशहीदी थीम', + 'theme_settings' => 'थीम सेट्टिंग्स', + 'this' => 'यह', + 'this_day' => 'आज', + 'this_month' => ' ये महीना', + 'this_week' => ' ये साप्ताह', + 'this_year' => ' ये वर्ष', + 'this_is_your_profile' => 'आपका अपना वर्णन', + 'time' => 'समय', + 'title' => 'पद', + 'to' => 'को', + 'today' => 'आज', + 'today_at' => 'आज', + 'token' => 'टोकन', + 'total_reports' => 'कुल रिपोर्टें', + 'translated' => 'अनूवादित', + 'translated_description' => 'अनूवादित विवरण', + 'translated_title' => 'अनूवादित शीर्षक', + 'translate_to' => 'अनुवाद करें', + 'translation' => 'अनुवाद', + 'translation_saved' => 'अनुवाद संचय किया गया', + 'trusted' => 'विश्वसनीय', + 'type' => 'प्रकार', + 'twitter' => 'ट्विटर', + 'unable_send_email' => 'ईमेल भेजने में असमर्थ.', + 'uncategorized_reports' => 'उनकटेगोरिज़ेड रिपोर्ट्स', + 'unread' => 'अपठित', + 'unverified' => 'असत्यापित', + 'update_feeds' => 'अद्यतन फ़ीड', + 'upload' => 'अपलोड करे', + 'upload_guide' => 'हमारे रिपोर्ट अपलोड गाइडस देखिए', + 'upload_docs_1' => 'XML अपलोड गाइड', + 'upload_docs_2' => 'CSV अपलोड गाइड', + 'upload_file' => 'ये फाइल अपलोड करे', + 'upload_reports' => 'अपलोड रिपोर्ट्स', + 'upload_reports_custom_forms' => ' कस्टम क्षेत्र के फॉर्म_आईडी उनके साथ संलग्न रहने चाहिए उदाहरण के लिए कस्टम क्षेत्र जाँच, डिफॉल्ट फॉर्म पर, जिनका आईडी1 है उनका जाँच-1 होगा| कस्टम फॉर्म क्षेत्र के आयात के दौरान एस बात का ख्याल रखे की', + 'upload_reports_detail_1' => 'नीचे दिए गए फार्म के साथ, आप Ushahidi इंजन में घटनाओं को आयात कर सकते हैं.', + 'upload_reports_detail_2' => 'रिपोर्ट्स CSV अथवा XML फॉर्मॅट मे अपलोड करे', + 'upload_reports_detail_3' => 'अगर इन्सिडेंट ID डेटबेस में पहले से मौजूद है तो जो एंट्री CSV/XML में है, उसे नज़र-अंदाज़ किया जाएगा!', + 'upload_reports_detail_4' => 'इसमे कम से कम घटनाओं के शीर्षक और घटनाओं के तिथि होने चाहिए.', + 'upload_reports_detail_4b' => 'कोई अक्षांश और देशांतर कॉलम आपूर्ति की जाती है, तो स्थान गूगल Geocoder उपयोग कर भूकूटित किया जाएगा.', + 'upload_reports_detail_4c' => 'अतिरिक्त जानकारी यानी व्यक्तिगत जानकारी और / या कस्टम प्रपत्र फ़ील्ड का आयात करते हैं', + 'upload_reports_detail_4d' => 'आपकी अपनी जानकारी के फील्ड्स मे कम से कम (नाम या कुलनाम या ईमेल) होना ज़रूरी है! यदी ये तीनो फील्ड्स खाली हुए तो वो रेकॉर्ड इम्पोर्ट नही होगा!', + 'upload_reports_detail_4e' => 'लटकती क्षेत्रों, रेडियो बटन और चेक बॉक्स के लिए अपनी प्रविष्टियां अपनी आवृत्ति पर कस्टम क्षेत्र के लिए उपलब्ध विकल्पों मैच करते हैं', + 'upload_reports_detail_4f' => 'चेकबॉक्स विकल्प एक अल्पविराम से अलग होती है उदाहरण अगर आपके चुने हुए फल के विकल्प सेब, आपकी प्रविष्टि "सेब, आम, अंगूर" होनी चाहिए', + 'upload_reports_detail_4g' => 'तारीख़ फील्ड का फॉर्मॅट ऐसा होना चाईए: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'एक नमूना CSV रिपोर्ट', + 'upload_reports_detail_6' => '#,इन्सिडेंट टाइटल,इन्सिडेंट डटे,लोकेशन,डिस्क्रिप्षन,केटेगरी,अप्रूव्ड,वेरिफाइड,लॅटिट्यूड,लॉंजिट्यूड<ब्र />"1"," नैरोबी मे संदिग्ध की मौत","2009-05-15 01:06:00","नैरोबी","सी. डेल यूवरग्वे मे तीन मामलो की पुष्टि हो गई है","डेत्स, सिविलियेन्स, ",एस,एस,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","लूटिंग","2009-03-18 10:10:00","अक्रा","सभी जगहो पर लूट हो रही है","राइयट्स, डेत्स, प्रॉपर्टी लॉस, ",एस,नो,"5.55","-0.2166667"', + 'upload_successful' => 'सफल अपलोड', + 'upload_video' => 'अपलोड वीडियो', + 'url' => 'URL', + 'user' => 'उपभोक्ता', + 'username' => 'यूज़रनेम', + 'ushahidi_admin' => 'उशहीदी प्रबंधक', + 'verification' => 'प्रमाण', + 'verified' => 'प्रामाणिक', + 'verified_reports' => 'प्रामाणिक रिपोर्ट्स', + 'verify' => 'प्रमाणित करना', + 'verify_this_report' => 'रिपोर्ट प्रमाणित करें', + 'version' => 'संस्करण', + 'via' => 'वाया', + 'video' => 'वीडियो', + 'view' => 'दिखाए', + 'views' => 'दिखाए', + 'view_all' => 'सब कुछ दिखाए', + 'view_all_feeds' => 'सारे फीड्स दिखाए', + 'view_all_reports' => 'सारे रिपोर्ट्स दिखाए', + 'view_items' => 'वस्तुए दिखाए', + 'view_more' => 'और दिखाए', + 'view_public_profile' => 'लोकछवी दिखाए', + 'view_report' => 'रिपोर्ट दिखाए', + 'view_reports' => 'रिपोर्ट्स दिखाए', + 'view_video' => 'वीडियो देखे', + 'visible' => 'प्रत्यक्ष', + 'waiting_approval' => 'अनुमति की प्रतीक्षा', + 'waiting_verification' => 'प्रमाण की प्रतीक्षा', + 'wider_map' => 'बड़ा नक्शा', + 'web_form' => 'वेब फॉर्म', + 'web' => 'वेब', + 'weight' => 'वजन', + 'yes' => 'हा', + 'yesterday' => 'गत दिन', + 'your_dashboard' => 'आपका डॅशबोर्ड', + 'your_file' => 'आपकी फाइल', + 'zoom_in' => 'पास जाए ', + 'zoom_out' => 'दूर जाए ', +); diff --git a/application/i18n/hi_IN/upgrade.php b/application/i18n/hi_IN/upgrade.php new file mode 100644 index 0000000000..6557b39785 --- /dev/null +++ b/application/i18n/hi_IN/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'अवैध इनपुट डाटा | यहाँ ना के लिए 0 या हाँ के लिए 1 हो सकता है । ', + ) , + 'upgrade_automatic' => 'स्वचालित अपग्रेड', + 'upgrade_available' => 'उपलब्ध अपडेट ', + 'upgrade_continue_btn_text' => 'जारी', + 'upgrade_db_btn_text' => 'अपग्रेड', + 'upgrade_db_text_1' => 'अतः, मैं आपका डेटाबेस अपग्रेड करने जा रहा हूँ ', + 'upgrade_db_text_2' => 'नवीनतम डेटाबेस संस्करण से ', + 'upgrade_db_text_3' => '"अपग्रेड" बटन दबाएँ और निश्चिन्त रहे, जब तक मैं जादू करता हूँ ', + 'upgrade_db_text_4' => 'और हाँ , यदि आप चाहतें हैं कि मैं आपके डेटाबेस का बैकअप करूँ , बस नीचे दिए गए चेक बटन को टिक करें और मैं आपके लिए ये चुटकियों में कर दूँगा ', + 'upgrade_db_text_5' => 'नवीनीकरण से पहले डेटाबेस का बैकअप करें? (अत्यधिक सिफारिश)', + 'upgrade_db_title' => 'Ushahidi डेटाबेस अपग्रेड ', + 'upgrade_db_info' => 'Ushahidi अपडेट हो चुका है! आगे बढ़ने से पहले, आपको अपने डेटाबेस को नवीनतम संस्करण(%s) तक अपडेट करने की आवश्यकता है ', + 'upgrade_db_up_to_date' => 'आपका डेटाबेस संस्करण नवीनतम है ', + 'upgrade_failed' => 'किसी बिंदु पर अपग्रेड विफल रहा', + 'upgrade_manual' => 'मैन्युअल अपग्रेड', + 'upgrade_status' => 'Ushahidi अपग्रेड की स्थिति', + 'upgrade_text_1' => 'नीचे दिए गए अनुदेश आपको Ushahidi परिनियोजन को मैन्युअली अपग्रेड करना विस्तार से बतायेंगे ', + 'upgrade_text_2' => '
डाउनलोड
', + 'upgrade_text_3' => '
-नवीनतम Ushahidi build से डाउनलोड करें ', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- हमारी यह सलाह है की आप उशहीदी के डेप्लोयमनेट का पूरा बॅकप ले कर रखे!
Copy files
- Extract the downloaded zip file
- वेब सर्वर में लॉगिन करने के लिए आप अपना चहिता टूल (e.g. Telnet, FTP, SSH) इस्तेमाल करे! लॉगिन करने के बाद नये बिल्ड से सारे फोल्डर्स रीप्लेस कर दीजिए!
Upgrde database
- पहले अपने डेटाबेज स्कीमा का वरजन ढूंदिए ! यह वरजन नंबर db_version आपको या तो सटिंग्स टेबल्स में मिलेगी या फिर उशहीदी की अपग्रेड इन्फर्मेशन - जो इस पेज के उपरी हिस्से में है, वहाँ मिलेगी !
- अगर आपका वरजन 25 है तो आपको अपग्रेड करना पड़ेगा - यानी के 25-26 या फिर 26-27 या फिर 27-28 इत्यादि! यह अपग्रेड आपको तब तक करना पड़ेगा जब तक आपके पास लेटेस्ट फाइल नही आ जाती इस/sql डाइरेक्टरी में!
- उचित upgradex-x.sql फाइल को अपने डेटाबेस क्लाइंट से एक्सेक्यूट करके अपना डेटाबेस अपग्रेड करे!
', + 'upgrade_tables' => 'Step 3: SQL फोल्डर में देखिए ! मॅन्यूयेली यह अपग्रेडेड फाइल -.sql रन करे! अपग्रेड की शुरुआत अपने इन्स्टलेशन के करंट db वरजन से कीजिए! और इसे फाइनल sql अपग्रेड फाइल तक रन कीजिए !', + 'upgrade_text_5' => 'Step 4: "कंटिन्यू" बटन को क्लिक कीजिए ताकी ज़रूरी टेबल्स अपग्रेड हो जाये !', + 'upgrade_text_6' => 'स्वचालित अपग्रेड के लिए, नीचे दिए गए बटन पर क्लिक करें.', + 'upgrade_title_text' => 'आप अभी Ushahidi v%1$s, डेटाबेस संस्करण %2$d के साथ उपयोग कर रहे है जो %3$s चल रहा है ', + 'upgrading' => 'अपग्रेड कर रहा है ', + 'upgrade_ftp_text' => 'आसान अपग्रेड के साथ जारी रखने के लिए, निम्न जानकारी FTP सर्वर के लिए आवश्यक है जहाँ अपनी वेबसाइट होस्ट की है .', + 'upgrade_ftp_hostname' => 'FTP होस्ट का नाम: उदाहरण:"localhost"', + 'upgrade_ftp_password' => 'FTP पासवर्ड ', + 'upgrade_ftp_username' => 'FTP उपयोगकर्ता का नाम:', + 'upgrade_status_info' => 'आपके पास Ushahidi का नवीनतम संस्करण है ', + 'upgrade_status_info_2' => 'आपको अपग्रेड की आवश्यकता नहीं है ', + 'upgrade_db_version' => 'डेटाबेस संस्करण: %d', + 'upgrade_warning_software_version' => 'चेतावनी: version.php तथा डेटाबेस का सॉफ्टवेयर संस्करण मेल नहीं कर रहा ', + 'upgrade_warning_db_version' => 'चेतावनी: version.php तथा डेटाबेस का डेटाबेस संस्करण मेल नहीं कर रहा ', + 'upgrade_database' => 'डेटाबेस:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'बीटा!', + 'download' => 'Ushahidi का नवीनतम संस्करण डाउनलोड कर रहा है ', + 'log_file' => 'लॉग फ़ाइल', + 'successfully_downloaded' => 'डाउनलोड सफल| Unpacking...', + 'failed_downloading' => 'डाउनलोड विफल रहा', + 'successfully_unpacked' => 'सफलतापूर्वक unpacked, फाइलों की नकल की जा रही है ', + 'failed_unpacking' => 'unpacking विफल रही ', + 'successfully_copied' => 'सफलतापूर्वक नकल की गयी. डेटाबेस अपग्रेड हो रहा है ', + 'failed_copying' => ' फाइलों की नकल विफल रही ', + 'backup_success' => 'डेटाबेस का बैकअप और अपग्रेड सफल ', + 'backup_failed' => 'बैकअप विफल रहा', + 'dbupgrade_success' => 'डेटाबेस का अपग्रेड सफल ', + 'deleting_files' => 'डाउनलोड की गयी फ़ाइलें मिटा रहा है ', + 'upgrade_success' => 'अपग्रेड सफल| लॉग फ़ाइलदेखें', +); diff --git a/application/i18n/hr/alerts.php b/application/i18n/hr/alerts.php new file mode 100644 index 0000000000..0c8f670697 --- /dev/null +++ b/application/i18n/hr/alerts.php @@ -0,0 +1,7 @@ + 'O Nama ', + 'access' => 'Pristup', + 'access_limits' => 'Ovlasti pristupa', + 'actions' => 'Radnje', + 'action_confirm' => 'Ova radnja se ne može poništiti. Da li ste sigurni da želite nastaviti?', + 'activate' => 'Aktiviraj', + 'active' => 'Aktivno', + 'add' => 'Dodaj', + 'added_by' => 'Dodao/la', + 'additional_data' => 'Ostali podaci', + 'additional_reports' => 'Ostali izvještaji', + 'add_edit' => 'Dodaj/Ažuriraj', + 'add_field' => 'Dodaj polje', + 'add_language' => 'Dodaj jezik', + 'add_new' => 'Dodaj novo', + 'add_new_category' => 'Dodaj novu kategoriju', + 'add_translation' => 'Dodaj prijevod', + 'admin' => 'Administracija', + 'alerts' => 'Dobij upozorenja', + 'alerts_btn_send' => 'Sačuvaj moje upozorenje', + 'alerts_email' => 'Email adresu:', + 'alerts_enter_email' => 'Unesi email adresu', + 'alerts_enter_mobile' => 'unesi broj mobitela (zajedno s predbrojem)', + 'alerts_mobile_phone' => 'Mobitel', + 'alerts_place_spot' => 'Ili, mjesto na mapi ispod, i bit ćeš obavješten/a u vidu izvještaja koji pokriva područje unutar 20 km.', + 'alerts_place_spot2' => 'Ako nisi našao/la traženu lokaciju, molimo da klikneš na mapu i obilježiš ispravnu lokaciju.', + 'alerts_rss' => 'RSS (kopiraj url ispod)', + 'alerts_select_city' => 'Odaberi grad', + 'alerts_step1_select_city' => 'Korak 1: Obilježi tvoj grad ili lokaciju:', + 'alerts_step2_send_alerts' => 'Korak 2: Pošalji upozorenje na moju:', + 'alerts_step3_select_catgories' => 'Korak 3 (Proizvoljno): Obilježi kategorije ', + 'alert_confirm_previous' => 'Potvrdi prethodni zahtjev za upozorenje', + 'all' => 'Sve kategorije', + 'allowed' => 'Dopušteno', + 'all_categories' => 'Sve kategorije', + 'and' => 'i', + 'api' => 'API', + 'approve' => 'Odobri', + 'approved' => 'Odobreno', + 'approved_reports' => 'Odobreni izvještaji', + 'approve_this_report' => 'Odobri ovaj izvještaj', + 'approximate' => 'Otprilike', + 'archive' => 'Arhiva', + 'archived' => 'Arhivirano', + 'author' => 'Autor', + 'avg_reports_per_day' => 'Prosječno izvještaja po danu', + 'awaiting_approval' => 'Čeka odobrenje', + 'awaiting_verification' => 'Čeka provjerju', + 'badge' => 'Oznaka', + 'badges' => 'Oznake', + 'category' => 'Kategorija', + 'category_filter' => 'Kategorija filtera', + 'clear' => 'Obriši', + 'clear_map' => 'Očisti mapu', + 'contact' => 'Kontaktiraj nas', + 'contact_email' => 'Tvoja email adresa', + 'contact_name' => 'Tvoje ime', + 'contact_phone' => 'Tvoj broj telefona (nije obavezno)', + 'contact_send' => 'Pošalji poruku', + 'contact_subject' => 'Naslov poruke', + 'date' => 'Datum', + 'date_time' => 'Datum i vrijeme', + 'delete_last' => 'Izbriši zadnje', + 'delete_selected' => 'Izbriši odabrano', + 'description' => 'Opis', + 'detailed_location_example' => 'npr. Obala Maka Dizdara 32, Sarajevo', + 'feedback' => 'Povratne informacije', + 'filters' => 'Filteri', + 'find_location' => 'Pronađi lokaciju', + 'first_name' => 'Ime', + 'from' => 'Od', + 'hide' => 'Sakrij', + 'home' => 'Naslovna', + 'how_to_report' => 'Kako prijaviti', + 'last_name' => 'Prezime', + 'location' => 'Lokacija', + 'location_example' => 'Grad, Država', + 'map' => 'Mapa', + 'media' => 'Medij', + 'message' => 'Poruka', + 'modify_date' => 'Promjeni datum', + 'news' => 'Novosti', + 'next' => 'Slijedeće', + 'official_news' => 'Zvanične i ostale novosti', + 'optional' => 'Dodatne', + 'pictures' => 'Slike', + 'pinpoint_location' => '* Pretražite vašu lokaciju koristeći naziv lokacije i podatke o geografskoj dužini i širini (u formatu: 38.19,-85.61), ili idite na mapu i odaberite tačnu lokaciju.', + 'play' => 'Pusti', + 'previous' => 'Prethodno', + 'remove' => 'remove', + 'reports' => 'Izvještaji', + 'reports_btn_browse' => 'Pretraži', + 'reports_btn_submit' => 'Pošalji', + 'reports_date' => 'Datum', + 'reports_first' => 'Ime', + 'reports_last' => 'Prezime', + 'reports_location_name' => 'Dajte detaljniju lokaciju', + 'reports_news' => 'Link izvora vijesti', + 'reports_optional' => 'Dodatne Informacije', + 'reports_photos' => 'Postavi fotografije', + 'reports_submit_new' => 'Novi Izvještaj', + 'reports_time' => 'Vrijeme', + 'reports_title' => 'Naslov izvještaja', + 'report_option_2' => 'Pošalji email na ', + 'report_option_4' => 'Ispuni ovaj formular.', + 'report_option_external_apps' => 'Koristeći aplikaciju za', + 'reset_all_filters' => 'Isključi sve filtere', + 'security_code' => 'Sigurnosni kod', + 'sent_by' => 'Poslao/la:', + 'show' => 'Prikaži', + 'source' => 'Izvor', + 'submit' => 'Izvijestite', + 'time' => 'time', + 'title' => 'TITLE ', + 'to' => 'do', + 'today' => 'Danas', + 'today_at' => 'Danas u', + 'type' => 'Tip', + 'verification' => 'Verifikacija', + 'view_more' => 'Prikaži više', +); diff --git a/application/i18n/hr/upgrade.php b/application/i18n/hr/upgrade.php new file mode 100644 index 0000000000..0c8f670697 --- /dev/null +++ b/application/i18n/hr/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email_check' => 'That Email address has already been registered to receive alerts for that location', + ) , + 'alert_mobile' => array( + 'mobile_check' => 'That Mobile Phone Number has already been registered to receive alerts for that location', + ) , +); diff --git a/application/i18n/ht_HT/auth.php b/application/i18n/ht_HT/auth.php new file mode 100755 index 0000000000..a03b43071d --- /dev/null +++ b/application/i18n/ht_HT/auth.php @@ -0,0 +1,25 @@ + array( + 'email' => 'The email field does not appear to contain a valid email address?', + ) , + 'name' => array( + 'length' => 'The full name field must be at least 3 and no more 100 characters long.', + 'required' => 'The full name field is required.', + ) , + 'password' => array( + 'length' => 'The password field must be at least 5 and no more 16 characters long.', + 'login error' => 'Please check that you entered the correct password.', + ) , + 'username' => array( + 'exists' => 'Sorry, this username is already in use.', + 'length' => 'The username field must be at least 2 and no more 16 characters long.', + 'login error' => 'Please check that you entered the correct username.', + 'required' => 'The username field is required.', + ) , +); diff --git a/application/i18n/ht_HT/bug.php b/application/i18n/ht_HT/bug.php new file mode 100755 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ht_HT/bug.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Please enter a valid security code', + 'required' => 'Please enter the security code', + ) , + 'comment_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + ) , +); diff --git a/application/i18n/ht_HT/contact.php b/application/i18n/ht_HT/contact.php new file mode 100755 index 0000000000..24dad25668 --- /dev/null +++ b/application/i18n/ht_HT/contact.php @@ -0,0 +1,15 @@ + array( + 'default' => 'Please enter a valid security code', + 'required' => 'Please enter the security code', + ) , + 'contact_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + ) , +); diff --git a/application/i18n/ht_HT/core.php b/application/i18n/ht_HT/core.php new file mode 100755 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ht_HT/core.php @@ -0,0 +1,7 @@ + array( + 'length' => 'The feed name field must be at least 3 and no more + 70 characters long.', + ) , + 'feed_url' => array( + 'url' => 'Please enter a valid URL. Eg. http://www.ushahidi.com', + ) , +); diff --git a/application/i18n/ht_HT/footer.php b/application/i18n/ht_HT/footer.php new file mode 100755 index 0000000000..b1c109804b --- /dev/null +++ b/application/i18n/ht_HT/footer.php @@ -0,0 +1,9 @@ + 'php5-curl is not installed on this system', +); diff --git a/application/i18n/ht_HT/form.php b/application/i18n/ht_HT/form.php new file mode 100755 index 0000000000..1cd179fcc0 --- /dev/null +++ b/application/i18n/ht_HT/form.php @@ -0,0 +1,34 @@ + array( + 'length' => 'The Field Name must be at least 3 and no more + 200 characters long.', + ) , + 'field_height' => array( + 'between' => 'Please enter a value 0 to 50 for the Field Height', + ) , + 'field_isdate' => array( + 'between' => 'You have entered an invalid value for Date Field', + 'required' => 'Please select Yes or No for the Date Field', + ) , + 'field_name' => array( + 'length' => 'The Field Name must be at least 3 and no more + 100 characters long.', + ) , + 'field_required' => array( + 'between' => 'You have entered an invalid value for Field Required', + 'required' => 'Please select Yes or No for Field Required', + ) , + 'field_width' => array( + 'between' => 'Please enter a value 0 to 300 for the Field Width', + ) , + 'form_title' => array( + 'length' => 'The form name field must be at least 3 and no more + 100 characters long.', + ) , +); diff --git a/application/i18n/ht_HT/imap.php b/application/i18n/ht_HT/imap.php new file mode 100755 index 0000000000..cb9502f4ea --- /dev/null +++ b/application/i18n/ht_HT/imap.php @@ -0,0 +1,10 @@ + 'Could not open IMAP stream', + 'unsupported_service' => 'The email service is not supported', +); diff --git a/application/i18n/ht_HT/installer.php b/application/i18n/ht_HT/installer.php new file mode 100755 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ht_HT/installer.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Please enter a valid security code', + 'required' => 'Please enter the security code', + ) , + 'email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + ) , +); diff --git a/application/i18n/ht_HT/mhi.php b/application/i18n/ht_HT/mhi.php new file mode 100755 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ht_HT/mhi.php @@ -0,0 +1,7 @@ + 'This message was sent from your website', +); diff --git a/application/i18n/ht_HT/page.php b/application/i18n/ht_HT/page.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ht_HT/page.php @@ -0,0 +1,7 @@ + array( + 'validvalues' => 'The am/pm field does not appear to contain a valid value?', + ) , + 'incident_category' => array( + 'numeric' => 'The category field does not appear to contain a valid category?', + 'required' => 'The category field is required.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'The date field does not appear to contain a valid date?', + 'date_mmddyyyy' => 'The date field does not appear to contain a valid date?', + ) , + 'incident_description' => array( + 'required' => 'The description field is required.', + ) , + 'incident_hour' => array( + 'between' => 'The hour field does not appear to contain a valid hour?', + ) , + 'incident_minute' => array( + 'between' => 'The hour field does not appear to contain a valid hour?', + 'required' => 'The hour field is required.', + ) , + 'incident_news' => array( + 'url' => 'The news source links field does not appear to contain a valid URL?', + ) , + 'incident_photo' => array( + 'size' => 'Please ensure that photo uploads sizes are limited to 2MB.', + 'valid' => 'The Upload Photos field does not appear to contain a valid file', + ) , + 'incident_title' => array( + 'length' => 'The title field must be at least 3 and no more 200 characters long.', + 'required' => 'The title field is required.', + ) , + 'incident_video' => array( + 'url' => 'The video links field does not appear to contain a valid URL?', + ) , + 'latitude' => array( + 'between' => 'The latitude field does not appear to contain a valid latitude?', + 'required' => 'The latitude field is required.', + ) , + 'location_name' => array( + 'length' => 'The location name field must be at least 3 and no more 200 characters long.', + 'required' => 'The location name field is required.', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude?', + 'required' => 'The longitude field is required.', + ) , + 'person_email' => array( + 'email' => 'The email field does not appear to contain a valid email address?', + ) , + 'person_last' => array( + 'length' => 'The last name field must be at least 3 and no more 100 characters long.', + ) , +); diff --git a/application/i18n/ht_HT/reporters.php b/application/i18n/ht_HT/reporters.php new file mode 100755 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ht_HT/reporters.php @@ -0,0 +1,7 @@ + array( + 'between' => 'The allow comments field does not appear to contain a valid value?', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value?', + ) , + 'allow_reports' => array( + 'between' => 'The allow reports field does not appear to contain a valid value?', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value?', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value?', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value?', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address?', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value?', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long', + ) , +); diff --git a/application/i18n/ht_HT/sharing.php b/application/i18n/ht_HT/sharing.php new file mode 100755 index 0000000000..d2846e14fa --- /dev/null +++ b/application/i18n/ht_HT/sharing.php @@ -0,0 +1,13 @@ + array( + 'exists' => 'The site url already exists', + 'required' => 'The site url is required.', + 'url' => 'The site url field does not appear to contain a valid URL?', + ) , +); diff --git a/application/i18n/ht_HT/stats.php b/application/i18n/ht_HT/stats.php new file mode 100755 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ht_HT/stats.php @@ -0,0 +1,7 @@ + 'Your full name', + 'profile_notify' => 'Selecting YES lets you get alerts via email when new reports or comments are posted on your website', + 'profile_password' => 'Your password. Leave this field blank if you wish to keep your current password', + 'profile_username' => 'Your username cannot be changed', +); diff --git a/application/i18n/ht_HT/ui_admin.php b/application/i18n/ht_HT/ui_admin.php new file mode 100755 index 0000000000..a7b9c85d2b --- /dev/null +++ b/application/i18n/ht_HT/ui_admin.php @@ -0,0 +1,9 @@ + 'Moderator', +); diff --git a/application/i18n/ht_HT/ui_main.php b/application/i18n/ht_HT/ui_main.php new file mode 100755 index 0000000000..997eb1cd15 --- /dev/null +++ b/application/i18n/ht_HT/ui_main.php @@ -0,0 +1,70 @@ + 'Enfomasyon', + 'alerts' => 'Resevwa nouvel', + 'alerts_alert_me' => 'Alerte-moi si un rapport est déposé dans ou autour de:', + 'alerts_btn_send' => 'Soumettre', + 'alerts_email' => 'Adresse Email:', + 'alerts_enter_email' => 'entrer adresse Email', + 'alerts_enter_mobile' => 'entrer numéro de téléphone mobile avec le code du pays', + 'alerts_get' => 'Obtenez des Alertes', + 'alerts_mobile_phone' => 'Téléphone mobile:', + 'alerts_place_spot' => 'Ou, choisissez un endroit sur la carte ci-dessous et nous allons vous alerter lorsque un rapport est présenté à l\'intérieur de 20 kilomètres.', + 'alerts_rss' => 'Fils RSS (copier l\'URL ci-dessous)', + 'alerts_select_city' => 'Choisissez une ville', + 'alerts_step1_select_city' => '1er pas: Choisissez votre ville ou lieu:', + 'alerts_step2_send_alerts' => '2e pas: Envoyer des alertes à mon:', + 'alert_confirm_previous' => 'Confirmer alerte precedente', + 'all' => 'Tout', + 'category_filter' => 'Filtre des catégories', + 'close' => 'Fermer', + 'clusters' => 'Groupes', + 'contact' => 'Kontakte Nou', + 'copyright' => 'Copyright © 2009 Ushahidi.com. Tous droits réservés.', + 'feedback' => 'Rétroaction', + 'filters' => 'Filtres', + 'help' => 'Ki jan ou ka ede', + 'home' => 'Accueil', + 'how_to_report' => 'KOUMAN RAPOTE', + 'location' => 'LIEU', + 'media_filter' => 'FILTRE DES MÉDIAS', + 'news' => 'Nouvelles', + 'official_news' => 'Nouvelles Officielles', + 'pictures' => 'Photos', + 'reports' => 'Rapo', + 'reports_btn_browse' => 'Rechercher', + 'reports_btn_submit' => 'Soumettre', + 'reports_categories' => 'Catégories', + 'reports_find_location' => 'Trouver un Lieu près de chez vous', + 'reports_first' => 'Prénom', + 'reports_last' => 'Nom de famille', + 'reports_location_name' => 'Nom de votre lieu', + 'reports_news' => 'Lien de sources de presse', + 'reports_optional' => 'Informations Facultatives', + 'reports_photos' => 'Transférer les Photos', + 'reports_select_city' => 'Choisir une Ville', + 'reports_submit_new' => 'Soumettre un Nouveau Rapport', + 'reports_time' => 'Heure', + 'reports_title' => 'Titre du Rapport', + 'reports_video' => 'Lien Vidéo', + 'report_an_incident' => 'Déclarer un incident', + 'report_option_1' => 'Anvoye yon mesaj SMS a', + 'report_option_2' => 'Email:', + 'report_option_3' => 'Twitter:', + 'report_option_4' => 'Web Fom:', + 'search' => 'RECHERCHER', + 'source' => 'SOURCE', + 'submit' => 'Bay nou enfomasyon', + 'submit_sms' => 'Envoyer par SMS', + 'submit_sms1' => 'Envoyez votre SMS au', + 'submit_sms2' => 'sur votre téléphone', + 'time' => 'heure', + 'title' => 'TITRE', + 'video' => 'Vidéo', + 'views' => 'Affichage', +); diff --git a/application/i18n/ht_HT/upgrade.php b/application/i18n/ht_HT/upgrade.php new file mode 100755 index 0000000000..930ef9ee36 --- /dev/null +++ b/application/i18n/ht_HT/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Érvénytelen email cím szerepel az Email mezőben.', + 'email_check' => 'Ez az email cím már regisztrálva lett ehhez a helyszínhez.', + 'length' => 'Az Email cím legalább 4 és legfeljebb 64 karakter hosszú lehet.', + 'required' => 'Az Email cím mező kitöltése kötelező, ha jelölőnégyzet ki lett pipálva.', + ) , + 'alert_country' => array( + 'single_country' => 'Ez a rendszer csak egy országra terjed ki. Kérjük győződj meg arról, hogy a riasztási helyszín az országon belül van: %s!', + ) , + 'alert_lat' => array( + 'between' => 'Nem jelöltél ki érvényes helyszínt a térképen.', + 'required' => 'Nem jelöltél ki érvényes helyszínt a térképen.', + ) , + 'alert_lon' => array( + 'between' => 'Nem jelöltél ki érvényes helyszínt a térképen.', + 'required' => 'Nem jelöltél ki érvényes helyszínt a térképen.', + ) , + 'alert_mobile' => array( + 'length' => 'A Mobiltelefonszám mezőben nem megfelelő a számjegyek darabszáma.', + 'mobile_check' => 'Ez a mobiltelefonszám már regisztrálva lett ehhez a helyszínhez.', + 'numeric' => 'A Mobiltelefonszám mezőben nem megfelelő a számok mennyisége. Kérjük, hogy az ország hívószámát is írd be. Magyarország: 36', + 'one_required' => 'A mobiltelefonszám vagy az email cím megadása szükséges - jelenleg csak az emailben történő értesítés funkció működik.', + 'required' => 'A mobiltelefonszám megadása szükséges, ha a jelölőnégyzet ki van pipálva.', + ) , + 'alert_radius' => array( + 'in_array' => 'Még nincs beállítva érvényes hatókör a térképen.', + 'required' => 'Még nincs beállítva a hatókör a térképen.', + ) , + 'alert_recipient' => array( + 'required' => 'Nem adtál meg elérhetőségi adatot a riasztásokhoz.', + ) , + 'alerts_subscribed' => 'A következő kategóriájú riasztásokra iratkoztál fel:', + 'code_already_verified' => 'Ezt a kódot már hitelesítettük!', + 'code_not_found' => 'A megadott hitelesítési kód nem található. Kérjük, hogy ellenőrizd a kapott linket!', + 'code_verified' => 'A kód hitelesítése megtörtént. Mostantól riasztás értesítőt küldünk, ha a megadott körzetben megfelelő kategóriájú bejelentés érkezik.', + 'confirm_request' => 'Annak érdekében, hogy megerősítsd a riasztás kérést, kérjük, látogass el a ', + 'create_more_alerts' => 'Visszatérés a Riasztások oldalra', + 'email_alert_request_created' => 'A kért riasztás értesítő elkészült, visszaigazoló üzenetet küldtünk a megadott email címre.', + 'email_code' => 'Kérjük, add meg az emailben kapott visszaigazoló kódot: ', + 'email_error_head' => 'Az emailben történő riasztás kérés NINCS elmentve!', + 'email_ok_head' => 'Az emailben történő értesítéskérés elmentve!', + 'error' => 'A rendszer nem volt képes feldolgozni a megerősítési kérést!', + 'mobile_alert_request_created' => 'Az SMS-ben történő riasztás kérés létrejött, visszaigazoló üzenetet küldtünk a megadott mobiltelefonszámra. ', + 'mobile_code' => 'Kérjük, add meg a visszaigazoló SMS kódot, ami a mobiltelefonodra érkezett: ', + 'mobile_error_head' => 'AZ SMS-ben történő riasztás kérés NINCS elmentve!', + 'mobile_ok_head' => 'Az SMS-ben történő riasztás kérés elmentve!', + 'settings_error' => 'A rendszer még nem alkalmas a riasztás kérések feldolgozására.', + 'unsubscribe' => 'Azért kaptad ezt a levelet, mert feliratkoztál a joszolgalat.hu weboldal riasztásaira. Ha a jövőben nem szeretnél riasztást kapni, kérjük kattints ide:', + 'unsubscribed' => 'A jövőben nem fogsz több riasztást kapni.', + 'unsubscribe_failed' => 'Nem volt sikeres a leiratkozás. Kérjük, ellenőrizd, hogy a megfelelő linket adtad-e meg.', + 'verification_email_subject' => 'riasztás - megerősítés ', + 'verify_code' => 'Nem fogsz riasztást kapni ehhez a helyszínhez, amíg meg nem erősíted a kérést.', +); diff --git a/application/i18n/hu_HU/auth.php b/application/i18n/hu_HU/auth.php new file mode 100755 index 0000000000..a9fed5ed65 --- /dev/null +++ b/application/i18n/hu_HU/auth.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Érvénytelen email cím szerepel az email mezőben.', + 'exists' => 'Már létezik ezzel az email címmel regisztrált felhasználó.', + 'length' => 'Az email cím legalább 4 és legfeljebb 64 karakter hosszú lehet.', + 'required' => 'Az email mezőt kötelező kitölteni.', + ) , + 'name' => array( + 'length' => 'A név mezőben legalább 3 és legfeljebb 100 karakter szerepelhet.', + 'required' => 'A név mező kitöltése kötelező.', + 'standard_text' => 'A felhasználónévben nem engedélyezett karakter szerepel.', + ) , + 'current_password' => array( + 'length' => 'A jelszónak legalább 8 karakter hosszúnak kell lennie.', + 'login error' => 'Kérjük ellenőrizd, hogy a helyes email címet és jelszót adtad-e meg.', + 'matches' => 'Kérjük, ugyanazt a jelszót adja meg mindkét jelszó mezőben.', + 'required' => 'A jelszó mezőt kötelező kitölteni.', + 'alpha_dash' => 'A jelszó mezőben csak betűk, számok, # és @ jelek, aláhúzás jel és kötőjel szerepelhet.', + 'incorrect' => 'A megadott jelszó érvénytelen. Kérjük ismételd meg a jelszó beírását!', + ) , + 'new_password' => array( + 'length' => 'A jelszónak legalább 8 karakter hosszúnak kell lennie.', + 'login error' => 'Kérjük ellenőrizd, hogy a helyes email címet és jelszót adtad-e meg.', + 'matches' => 'Kérjük, hogy ugyanazt a jelszót add meg mindkét jelszó mezőben.', + 'required' => 'A jelszó mező kitöltése kötelező.', + ) , + 'password' => array( + 'length' => 'A jelszó minimum 5 és maximum 16 karakter hosszú lehet.', + 'matches' => 'Kérem, ugyanazt a jelszót adja meg mindkét mezőben.', + 'required' => 'A jelszó mezőt kötelező kitölteni.', + 'riverid' => '%s', + ) , + 'password_confirm' => array( + 'matches' => 'A két jelszó mezőben megadott jelszónak egyeznie kell.', + ) , + 'resetemail' => array( + 'email' => 'Érvénytelen e-mail címet adott meg?', + 'invalid' => 'A megadott email cím nem létezik a rendszerben.', + 'required' => 'Az e-mail mező kitöltése kötelező.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Érvénytelen formátumú felhasználótípus.', + 'length' => 'A felhasználó típusa mezőben legalább 5 és maximum 30 karakter szerepelhet.', + 'required' => 'Legalább egy felhasználói típust be kell állítani.', + 'values' => 'Kérjük, hogy válassz az ADMIN vagy a USER felhasználói típusok közül.', + ) , + 'username' => array( + 'admin' => 'Az admin felhasználótípus nem változtatható meg.', + 'exists' => 'Ez a felhasználónév már foglalt.', + 'length' => 'A felhasználónév legalább 2, maximum 16 karakter hosszú lehet.', + 'required' => 'A felhasználónév mező kitöltése kötelező', + 'superadmin' => 'A szuper admin felhasználótípus módosítása nem lehetséges.', + ) , +); diff --git a/application/i18n/hu_HU/bug.php b/application/i18n/hu_HU/bug.php new file mode 100755 index 0000000000..cb80048970 --- /dev/null +++ b/application/i18n/hu_HU/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Kérem, adjon meg érvényes biztonsági kódot', + 'required' => 'Kérem, adja meg a biztonsági kódot', + ) , + 'email' => array( + 'email' => 'Érvénytelen e-mail címet adott meg.', + 'length' => 'Az e-mail mezőben legalább 4 és nem több mint 64 karakter szerepelhet.', + 'required' => 'Az e-mail megadása kötelező, ha a jelölőnégyzet ki van pipálva.', + ) , + 'error' => array( + 'required' => 'A hiba mező kitöltése kötelező.', + ) , + 'subject' => array( + 'length' => 'A témának legalább 3 karakter hosszúnak kell lennie.', + 'required' => 'A téma mező kitöltése kötelező.', + ) , + 'yourname' => array( + 'length' => 'A névnek legalább 3 karakter hosszúnak kell lennie.', + 'required' => 'A név mező kitöltése kötelező.', + ) , +); diff --git a/application/i18n/hu_HU/category.php b/application/i18n/hu_HU/category.php new file mode 100755 index 0000000000..6fd33929ed --- /dev/null +++ b/application/i18n/hu_HU/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'A szín mező legalább 6 karakter hosszú kell hogy legyen.', + 'required' => 'A szín mező kitöltése szükséges.', + ) , + 'category_description' => array( + 'required' => 'A leírás mező kitöltése szükséges.', + ) , + 'category_image' => array( + 'size' => 'A képek feltöltési mérete 50kb-ra van korlátozva.', + 'type' => 'A kép meő nem tartalmaz megfelelő formátumú képet. Az elfogadott formátumok: JPG, PNG és GIF', + 'valid' => 'Az kép mező nem tartalmaz érvényes fájlt.', + ) , + 'category_title' => array( + 'length' => 'A cím mező legalább 3 karakter kell tartalmazzon és nem lehet hosszabb 80 karakternél.', + 'required' => 'A cím mező kitöltése szükséges.', + ) , + 'parent_id' => array( + 'already_parent' => 'Nem oszthat alkategóriákra egy kategáriót amely már rendelkezik alkategóriákkal.', + 'exists' => 'A szülő kategória nem létezik.', + 'numeric' => 'A szülő kategória mezőnek számnak kell lennie.', + 'parent_trusted' => 'A szülő kategória nem lehet speciális', + 'required' => 'A szülő kategória mező kitöltése szükséges.', + 'same' => 'A kategória és a szülő kategória nem lehet ugyanaz.', + 'special' => 'Speciális kategóriák nem oszthatók alkategóriákra.', + ) , +); diff --git a/application/i18n/hu_HU/comments.php b/application/i18n/hu_HU/comments.php new file mode 100755 index 0000000000..cf456ae711 --- /dev/null +++ b/application/i18n/hu_HU/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Kérjük, érvényes biztonsági kódot adj meg!', + 'required' => 'Kérjük, add meg a biztonsági kódot!', + 'valid' => 'Rossz biztonsági kódot adtál meg.', + ) , + 'comment_author' => array( + 'length' => 'A Névnek legalább 3 karakter hosszúnak kell lennie.', + 'required' => 'A Név mező kitöltése kötelező.', + ) , + 'comment_description' => array( + 'required' => 'A Leírás mező kitöltése kötelező.', + ) , + 'comment_email' => array( + 'email' => 'Az Email mező nem tartalmaz érvényes email címet.', + 'length' => 'Az Email címnek minimum 4, maximum 64 karakter hosszúnak kell lennie.', + 'required' => 'Az Email mező kitöltése kötelező, ha a jelölőnégyzetet bejelölted.', + ) , +); diff --git a/application/i18n/hu_HU/contact.php b/application/i18n/hu_HU/contact.php new file mode 100755 index 0000000000..d806426f8c --- /dev/null +++ b/application/i18n/hu_HU/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Kérjük, érvényes biztonsági kódot adj meg!', + 'valid' => 'Kérjük, adj meg egy érvényes biztonsági kódot.', + 'required' => 'Kérjük, add meg a biztonsági kódot!', + ) , + 'contact_email' => array( + 'email' => 'Az email mező nem tartalmaz érvényes email címet.', + 'length' => 'Az email címnek minimum 4, maximum 64 karakter hosszúnak kell lennie.', + 'required' => 'Az email mezőt kötelező kitölteni, ha a jelölőnégyzet ki van pipálva.', + ) , + 'contact_message' => array( + 'required' => 'Az üzenet mezőt kötelező kitölteni.', + ) , + 'contact_name' => array( + 'length' => 'A névnek legalább 3 karakter hosszúnak kell lennie.', + 'required' => 'A név mezőt kötelező kitölteni.', + ) , + 'contact_subject' => array( + 'length' => 'A témának legalább 3 karakter hosszúnak kell lennie.', + 'required' => 'A téma mező kitöltése kötelező.', + ) , + 'email_send' => array( + 'failed' => 'Hiba történt az üzenet elküldése közben.', + ) , +); diff --git a/application/i18n/hu_HU/core.php b/application/i18n/hu_HU/core.php new file mode 100755 index 0000000000..23175bb611 --- /dev/null +++ b/application/i18n/hu_HU/core.php @@ -0,0 +1,35 @@ + 'konfigurációs fájl', + 'controller' => 'vezérlő', + 'driver' => 'meghajtó', + 'driver_implements' => 'A %s meghajtónak a %s könyvtárhoz a %s interfészt kell implementálnia', + 'driver_not_found' => 'A %s meghajtó a %s könyvtárhoz nem található.', + 'errors_disabled' => 'Látogasson el a főoldalra vagy próbálja újra.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'A kérést nem sikerült teljesíteni.', + 'helper' => 'kiegészítő', + 'invalid_filetype' => 'A kért fájltípust, .%s, nem támogatja a nézethez tartozó konfigurációs fájl.', + 'invalid_method' => 'Érvénytelen folyamatot %s indított el a %s', + 'invalid_property' => 'A %s property fájl nem található a %s osztályban.', + 'library' => 'könyvtár', + 'log_dir_unwritable' => 'A log könyvtár nem írható: %s\'', + 'model' => 'modell', + 'no_controller' => 'Az \'Ushahidi nem tudott controllert meghatározni a kérés feldolgozásához: %s', + 'no_default_route' => 'Kérem, adjon meg egy alapértelmezett elérési utat a következőn: config/routes.php', + 'page_not_found' => 'A kért oldal, %s, nem található.', + 'report_bug' => 'Jelentem ezt az esetet az Ushahidinek', + 'resource_not_found' => 'A kért %s, %s, nem található', + 'stack_trace' => 'Veremlenyomat - stack trace', + 'stats_footer' => 'A betöltéshez igénybevett idő {execution_time} másodperc, felhasznált memória {memory_usage}. Az Ushahidi v%s által létrehozva.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Csak egy Ushahidi eset lehet egy oldalkérésen', + 'uncaught_exception' => 'Nem talált %s: %s %s fájlban %s sorban', + 'view' => 'nézet', + 'view_set_filename' => 'Beküldés előtt a nézet fájlnevet kell meg kell adni', +); diff --git a/application/i18n/hu_HU/database.php b/application/i18n/hu_HU/database.php new file mode 100755 index 0000000000..b3e9d5f169 --- /dev/null +++ b/application/i18n/hu_HU/database.php @@ -0,0 +1,10 @@ + 'Adatbázis hiba: %s', + 'table_not_found' => 'A keresett mutató "%s" nem található az adatbázisban. Kérem, ellenőrizze, hogy az Ushahidi megfelelő verzióját használja-e az adatbázishoz', +); diff --git a/application/i18n/hu_HU/datetime.php b/application/i18n/hu_HU/datetime.php new file mode 100755 index 0000000000..8f85eb900c --- /dev/null +++ b/application/i18n/hu_HU/datetime.php @@ -0,0 +1,86 @@ + 'de.', + 'friday' => array( + 'abbv' => 'Pén', + 'full' => 'Péntek', + ) , + 'monday' => array( + 'abbv' => 'Hét', + 'full' => 'Hétfő', + ) , + 'pm' => 'du.', + 'saturday' => array( + 'abbv' => 'Szo', + 'full' => 'Szombat', + ) , + 'sunday' => array( + 'abbv' => 'Vas', + 'full' => 'Vasárnap', + ) , + 'thursday' => array( + 'abbv' => 'Csü', + 'full' => 'Csütörtök', + ) , + 'tuesday' => array( + 'abbv' => 'Ked', + 'full' => 'Kedd', + ) , + 'wednesday' => array( + 'abbv' => 'Sze', + 'full' => 'Szerda', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Január', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Február', + ) , + 'march' => array( + 'abbv' => 'Márc', + 'full' => 'Március', + ) , + 'april' => array( + 'abbv' => 'Ápr', + 'full' => 'Április', + ) , + 'may' => array( + 'abbv' => 'Máj', + 'full' => 'Május', + ) , + 'june' => array( + 'abbv' => 'Jún', + 'full' => 'Június', + ) , + 'july' => array( + 'abbv' => 'Júl', + 'full' => 'Július', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'Augusztus', + ) , + 'september' => array( + 'abbv' => 'Szept', + 'full' => 'Szeptember', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Október', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'December', + ) , +); diff --git a/application/i18n/hu_HU/feeds.php b/application/i18n/hu_HU/feeds.php new file mode 100755 index 0000000000..a04d396444 --- /dev/null +++ b/application/i18n/hu_HU/feeds.php @@ -0,0 +1,19 @@ + 'DÁTUM', + 'feed_name' => array( + 'length' => 'A feed neve legalább 3 és maximum 70 karakter hosszú lehet.', + 'required' => 'Kérjük, adja meg a feed nevét.', + ) , + 'feed_url' => array( + 'required' => 'Adja meg a feedek URL címét.', + 'url' => 'Kérjük, megfelelő formátumú URL-t használjon. Pl.: http://www.ushahidi.com', + ) , + 'source' => 'FORRÁS', + 'title' => 'CÍM', +); diff --git a/application/i18n/hu_HU/footer.php b/application/i18n/hu_HU/footer.php new file mode 100755 index 0000000000..fbef221f20 --- /dev/null +++ b/application/i18n/hu_HU/footer.php @@ -0,0 +1,9 @@ + 'a php5-curl nincs telepítve ebben a rendszerben', +); diff --git a/application/i18n/hu_HU/form.php b/application/i18n/hu_HU/form.php new file mode 100755 index 0000000000..fb7e97b0bd --- /dev/null +++ b/application/i18n/hu_HU/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'A mezőhöz megadott alapértelmezett érték érvénytelen.', + 'length' => 'A mező neve legalább 3 és legfeljebb 200 karakterből állhat.', + ) , + 'field_height' => array( + 'between' => '\'Kérem, egy 0 es 50 közötti számmal adja meg a mező magasságát.', + ) , + 'field_isdate' => array( + 'between' => 'Érvénytelen értéket adott meg a dátum mezőben.', + 'required' => 'Kérem, válasszon az IGEN vagy NEM közül a dátum mező engedélyezéséhez', + ) , + 'field_name' => array( + 'length' => 'A mező neve legalabb 3 és legfeljebb 200 karakterből állhat.', + 'required' => 'Kérem, adja meg a mező nevét.', + 'duplicate' => 'A megadott mező már létezik ezen az űrlapon. Kérem adjon meg egy másikat!', + ) , + 'field_required' => array( + 'between' => 'Érvenytelen számot adott meg a kötelező mezőben', + 'required' => 'Kérem, válasszon az IGEN vagy a NEM közül a kötelező mezőben', + ) , + 'field_type' => array( + 'numeric' => 'Kérem, adjon meg egy érvényes mező típust.', + 'required' => 'Kérem, válassza ki a mező típusát.', + ) , + 'field_width' => array( + 'between' => 'Kérem, egy 0 és 300 közötti számmal határozza meg a mező szelességét', + ) , + 'form_description' => array( + 'required' => 'Kérem, adja meg az űrlap leírását.', + ) , + 'form_id' => array( + 'default' => 'Az alapértelmezett űrlap nem törölhető.', + 'numeric' => 'Kérem, válassza ki, melyik űrlaphoz tartozik ez a mező.', + 'required' => 'Kérem, válassza ki, melyik űrlaphoz tartozik ez a mező.', + ) , + 'form_title' => array( + 'length' => 'Az űrlap neve legalább 3 és legfeljebb 200 karakterből állhat.', + 'required' => 'Kérem, adja meg az űrlap nevét.', + 'exists' => 'Egy ilyen nevű űrlap már létezik. Kérem válasszon másikat!', + ) , +); diff --git a/application/i18n/hu_HU/imap.php b/application/i18n/hu_HU/imap.php new file mode 100755 index 0000000000..16ca39f721 --- /dev/null +++ b/application/i18n/hu_HU/imap.php @@ -0,0 +1,10 @@ + 'IMAP folyam nem nyitható meg', + 'unsupported_service' => 'Az e-mail szolgáltatás nem támogatott', +); diff --git a/application/i18n/hu_HU/installer.php b/application/i18n/hu_HU/installer.php new file mode 100755 index 0000000000..b894316725 --- /dev/null +++ b/application/i18n/hu_HU/installer.php @@ -0,0 +1,80 @@ + 'Alap elérési útvonal', + 'database' => 'Adatbázis', + 'database_host' => 'Adatbázis kiszolgáló', + 'database_host_description' => 'Ha az Ushaidit a saját számítógépén futtatja, akkor az lesz a ,,helyi gazdagép". Ha az Ushahidit egy web szerverről futtatja, a kiszolgáló adatait a szerver szolgáltatójától kapja meg.', + 'database_name' => 'Adatbázis neve', + 'database_name_description' => 'Az adatbázis neve, amelybe az Ushahidit be fogja kötni', + 'db_information_link' => 'Még több információ ezen az oldalon,this article a wikiben olvashat részletesebben az adatbázisokról ', + 'default_language' => 'Alapértelmezett nyelv (Helyi)', + 'default_language_description' => 'Minden Ushahidi telepítőhöz vannak beépített fordítások. Ön is hozzáadhatja a sajátját', + 'disable' => 'Tilt', + 'enable' => 'Engedélyez', + 'error_summary' => 'Az alábbi egy lista az eddig tapasztalt hibákról', + 'files_location_text' => 'A server helye, ahová az Ushahidi fájljait feltöltötte.Automatikusan lekértük ezt az információt, kértjük, ellenőrizze, hogy helyes-e. Ha a mező üres, ne aggódjon, ez azt jeletni, hogy az Ushahidi a legfelső könyvtárba lett installálva', + 'finished' => 'Befejezve', + 'general' => 'Általános', + 'google_key' => 'Google API kulcs', + 'google_key_description' => 'Bárki kaphat API kulcsot. Kérjen sajátot', + 'go_back' => 'Vissza', + 'index' => array( + 'advanced' => 'HALADÓ TELEPÍTÉS', + 'advanced_installation_description' => 'Az összes alapvető beállítást keresztül bonyolódott az 5-lépéses folyamat.Ez magában foglalja a szervert, térképet, oldal nevet és elérhetőséget ', + 'basic_installation' => 'ALAP TELEPÍTÉS', + 'basic_installation_description' => 'Egyszerű és gyors.Minden, amire szükséged van az egy honlapon gyökér könyvtár, és az adatbázisa adatait. Válassza ezt az opciót, ha azt akarja, hogy gyorsan üzembe hozni, és minden mást később beállítani', + 'proceed' => 'Folytatás', + 'welcome' => 'Udvozoljuk az Ushahidi szerver telepítése folyamatánál.Válassza ki, melyik típusú telepítést kíván használni ', + ) , + 'installation_successful' => 'Telepítés sikeres ', + 'mail_server' => 'E-mail szerver', + 'mail_server_host' => 'Mail Server Hostja ', + 'mail_server_host_description' => 'Mintái: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mail Server Jelszó ', + 'mail_server_password_description' => 'A jelszó, amit általában használ a bejelentkezéshez az e-mailje fiokaba valo bejelentkezéshez használ', + 'mail_server_port' => 'Mail Server Portja ', + 'mail_server_port_description' => 'Közös Portok: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Mail Server Tipusa ', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP), illetve Post Office Protocol (POP). Mi a különbség? ', + 'mail_server_username' => 'Mail Server Neve ', + 'mail_server_username_description' => 'Ha használja a Gmail, Hotmail, Yahoo fiokot írja be a teljes e-mail címet felhasználónévkent ', + 'map' => 'Térkép', + 'map_provider' => 'Térkép Szolgáltató', + 'map_provider_description' => 'Ushahidi egyenlően működik a következő 4 térkép szolgáltatóval:Googl, Yahoo, Bing vagy Open Street Map Azt válaszd, amelyik a legrészletesebb fedést nyújtja a célterületre', + 'other_steps' => 'További lépséek', + 'password' => 'Jelszó', + 'password_description' => 'Az adatbázis jelszó', + 'previous' => 'Előző', + 'restart_apache' => 'Apach szerver:restart!', + 'select_mail_server_ssl' => 'Engedélyezd vagy tiltsad az SSL-t!', + 'select_mail_server_ssl_description' => 'Kapcsolódás során néhány levelező szerver megadja a lehetőségét a SSL használatának. Az SSL használata akkor javasolt, amikor extra biztonsági szintre van szükség.', + 'setup_sms' => 'Állítsd be az SMS szervered', + 'site_email' => 'Az oldal email címe', + 'site_email_alerts' => 'Riasztásokat küldő email cím', + 'site_email_alerts_description' => 'Amikor a látogatók feliratkoznak riasztás értesítőre, akkor erről a címről fogják kapni. Ennek az email címnek nem kell megegyeznie az oldal email címével.', + 'site_email_description' => 'Az weboldal szintű email kommunikáció ezen a címen keresztül fog olyni.', + 'site_name' => 'Mi legyen a neve?', + 'site_name_description' => 'Részletes leírás', + 'site_tagline' => 'Az oldal kulcsszavai', + 'site_tagline_description' => 'A te kulcsszavas leírásod', + 'summary' => array( + 'text_1' => 'Az alábbi fájlok és mappák írhatóaknak kell lenniük a webszervered által', + 'text_2' => '

Itt vannak az instrukciók, hogy hogyan állítsd be a fájl jogosultságait:

', + 'text_3' => 'Mielőtt nekiveselkedsz, győződj meg arról, hogy a következő fájlok és mappák írhatóak a webszervered által. Ez a hozzáférési beállítások módosítását is jelentheti.', + 'text_4' => 'Az installációs folyamathoz, ezt a morzsányi információt tartsd a kezed ügyében.', + ) , + 'table_prefix' => 'Tábla előtag', + 'table_prefix_description' => 'Normális esetben nem kell a táblázat prefix-ét változtatni. Azonban ha több Ushahidi installációt szeretnél egy adatbázisról futtatni, megteheted a prefix átállításával itten.', + 'title' => 'Cím', + 'to_login' => 'Belépéshez, ide menj:', + 'upload_data' => 'A jelentési adatok feltöltése', + 'username' => 'Felasználó neved', + 'username_description' => 'Az adatbázis-felhasználó neved', + 'use_credentials' => 'használd az alábbi ....t', + 'view_site' => 'Látogasd meg a kész weboldalad!', +); diff --git a/application/i18n/hu_HU/layer.php b/application/i18n/hu_HU/layer.php new file mode 100755 index 0000000000..70b07196db --- /dev/null +++ b/application/i18n/hu_HU/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'A színezett mezőnek legalább 6 karaktert kell tartalmaznia.', + 'required' => 'A színezett mező kitöltése kötelező. ', + ) , + 'layer_file' => array( + 'type' => 'A fájlmező nem tartalmaz érvényes fájlt. Lehetséges formátumok: .KMZ, .KML.', + 'valid' => 'A fájlmező nem tartalmaz érvényes fájlt.', + ) , + 'layer_name' => array( + 'length' => 'A névmezőnek legalább 3 legfeljebb 80 karakter hosszúnak kell lennie.', + 'required' => 'A névmező kitöltése kötelező.', + ) , + 'layer_url' => array( + 'atleast' => 'Vagy egy KML Url vagy egy fájl kötelező. ', + 'both' => 'Nem adhat meg egyszerre KML fájlt és Url-t.', + 'url' => 'Kérem, adjon meg egy érvényes URL-t. Például: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/hu_HU/libraries.php b/application/i18n/hu_HU/libraries.php new file mode 100755 index 0000000000..25e34c71ab --- /dev/null +++ b/application/i18n/hu_HU/libraries.php @@ -0,0 +1,27 @@ + 'Nem tudtam kapcsolódni az Akismet spamszűrő szerveréhez.', + 'akismet_cannot_retrieve' => 'Az Akismet spamszűrő válasza nem elérhető.', + 'api_library_not_found' => 'Az API könyvtár: %s, mint a %s osztálya nem található. Ellenőrizze az API utasítás routing táblázatát.', + 'askimet_invalid_apikey' => 'Az Akismet API kulcsa érvénytelen.', + 'clickatell_fopen_error' => 'Hiba történt a fopen küldési mód használata közben. Ellenőrizze, hogy a PHP-nak van-e OpenSSL támogatottsága, és hogy a PHP verzió jobb-e az 5.2-nél.', + 'clickatell_message_too_long' => 'Unicode üzenete túl hosszú! (Jelenlegi hossz=', + 'clickatell_no_destination_address' => 'Kérem, adjon meg egy rendeltetési címet (TO)!', + 'clickatell_no_sender_address' => 'Kérem, adja meg a forráscímet (FROM)!', + 'clickatell_unicode_message_too_long' => 'Unicode üzenete túl hosszú! (Jelenlegi hossz=', + 'clickatell_unsupported_method' => 'A küldési mód nem támogatott!', + 'invalid_api_library' => 'Az API könyvtár %s érvénytelen. Minden API könyvtárnak egy %s alosztálynak kell lennie.', + 'upgrade_directory_not_deleted' => 'A %s könyvtár nem törölhető.', + 'upgrade_extracting_error' => 'Hiba történt a következő kibontása közben: %s', + 'upgrade_failed' => 'A legutóbbi ushahidi fájl letöltése sikertelen. HTTP státuszkód', + 'upgrade_file_not_copied' => 'A %s fájl nem másolható.', + 'upgrade_file_not_deleted' => 'A %s fájl nem törölhető.', + 'upgrade_title' => 'Ushahidi frissítés leírása', + 'upgrade_zip_error' => 'A %s letöltött ushahidi zip fájl nem írható.', + 'riverid_variable_not_available' => '%s nem elérhető a RiverID osztályban.', +); diff --git a/application/i18n/hu_HU/maintenance.php b/application/i18n/hu_HU/maintenance.php new file mode 100644 index 0000000000..827f7cb80a --- /dev/null +++ b/application/i18n/hu_HU/maintenance.php @@ -0,0 +1,9 @@ + 'Sajnáljuk, az oldalunk karbantartás miatt nem elérhető. Kérjük, próbálja újra pár perc múlva!', +); diff --git a/application/i18n/hu_HU/message.php b/application/i18n/hu_HU/message.php new file mode 100755 index 0000000000..5755fd6708 --- /dev/null +++ b/application/i18n/hu_HU/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Kérem, adjon meg érvényes biztonsági kódot.', + 'required' => 'Kérjük add meg a biztonsági kódot.', + ) , + 'email' => array( + 'email' => 'Az Email mező nem tartalmaz érvényes email címet.', + 'length' => 'Az Email cím legalább 4 és legfeljebb 64 karakter hosszúságú lehet.', + 'required' => 'Az Email mező kitöltése kötelező, ha a jelölőnégyzetet bejelölte.', + ) , + 'message' => array( + 'required' => 'A Leírás mező kitöltése kötelező.', + ) , + 'name' => array( + 'length' => 'A Névnek legalább 3 karakter hosszúnak kell lennie.', + 'required' => 'A Név mező kitöltése kötelező.', + ) , + 'phone' => array( + 'length' => 'A Telefonszám mező érvénytelen.', + ) , +); diff --git a/application/i18n/hu_HU/mhi.php b/application/i18n/hu_HU/mhi.php new file mode 100755 index 0000000000..3a8c0e0071 --- /dev/null +++ b/application/i18n/hu_HU/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Kérem, adjon meg érvényes biztonsági kódot.', + 'required' => 'Kérem, adja meg a biztonsági kódot.', + ) , + 'contact_email' => array( + 'email' => 'Az email-mező nem tartalmaz érvényes email-címet.', + 'required' => 'Kérem, adjon meg érvényes email-címet.', + ) , + 'contact_message' => array( + 'required' => 'Az üzenetmező kitöltése kötelező.', + ) , + 'contact_subject' => array( + 'length' => 'A tárgymezőnek legalább 3 karakter hosszúnak kell lennie.', + 'required' => 'A tárgymező kitöltése kötelező.', + ) , +); diff --git a/application/i18n/hu_HU/notifications.php b/application/i18n/hu_HU/notifications.php new file mode 100755 index 0000000000..96867ea31a --- /dev/null +++ b/application/i18n/hu_HU/notifications.php @@ -0,0 +1,35 @@ + 'Ezt az üzenetet a weboldaladról küldték.', + 'admin_login_url' => 'Adminisztrátor bejelentkezés', + 'admin_new_comment' => array( + 'message' => 'Új fejlemény érkezett a weboldaladra a következő bejelentéshez:', + 'subject' => 'Új fejlemény', + ) , + 'admin_new_email' => array( + 'message' => 'Új email üzenet érkezett a weboldaladra.', + 'subject' => 'Új email üzenet', + ) , + 'admin_new_report' => array( + 'message' => 'Új bejelentés érkezett a weboldaladra.', + 'subject' => 'Új bejelentés', + ) , + 'admin_new_sms' => array( + 'message' => 'Új SMS üzenet érkezett a weboldaladra.', + 'subject' => 'Új SMS üzenet', + ) , + 'member_new_alert' => array( + 'message' => 'Új riasztás érkezett', + 'subject' => 'Új riasztás!', + ) , + 'member_new_message' => array( + 'message' => 'Új privát üzenetet kaptál', + 'subject' => 'Új privát üzenet', + 'footer' => 'Válaszoláshoz kérjük kattints ide:', + ) , +); diff --git a/application/i18n/hu_HU/page.php b/application/i18n/hu_HU/page.php new file mode 100644 index 0000000000..a9e7fcbc0f --- /dev/null +++ b/application/i18n/hu_HU/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Kérjük adja meg a Weblap Címét!', + 'length' => 'A weblap címe legalább 3 és legfeljebb 150 karakterből állhat.', + ) , + 'page_tab' => array( + 'required' => 'Kérjük adja meg a Fül nevét!', + ) , + 'page_description' => array( + 'required' => 'Kérjük adja mag az oldal leírását!', + ) , +); diff --git a/application/i18n/hu_HU/permissions.php b/application/i18n/hu_HU/permissions.php new file mode 100644 index 0000000000..04f31b18a5 --- /dev/null +++ b/application/i18n/hu_HU/permissions.php @@ -0,0 +1,24 @@ + 'Bejelentések megtekintése', + 'reports_edit' => 'Bejelentések létrehozása/szerkesztése/törlése', + 'reports_approve' => 'Bejelentések jóváhagyása', + 'reports_verify' => 'Bejelentések ellenőrzése', + 'reports_comments' => 'Bejelentésekhez fűzött megjegyzések kezelése', + 'reports_download' => 'Bejelentések letöltése', + 'reports_upload' => 'Bejelentések feltöltése', + 'messages' => 'Üzenetek kezelése', + 'messages_reporters' => 'Üzenet bejelentők kezelése', + 'stats' => 'Staisztika megtekintése', + 'settings' => 'Beállítások módosítása', + 'manage' => 'Panelek kezelése', + 'users' => 'Felhasználók kezelése', + 'manage_roles' => 'Szerepkörök kezelése', + 'admin_ui' => 'Hozzáférés a Rendszergazda felülethez', + 'member_ui' => 'Hozzáférés a Tagok felülethez', +); diff --git a/application/i18n/hu_HU/private_message.php b/application/i18n/hu_HU/private_message.php new file mode 100644 index 0000000000..26c5daf396 --- /dev/null +++ b/application/i18n/hu_HU/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Szülő azonosító csak szám lehet', + ) , + 'private_to' => array( + 'required' => 'A To /címzett/ mező kitöltése kötelező', + 'exists' => 'A felhasználó, akinek üzenetet próbál küldeni, nem létezik', + ) , + 'private_subject' => array( + 'required' => 'A subject /tárgy/ mező kitöltése kötelező', + 'length' => 'A subjet /tágy/ mező hossza 3 és 150 katakter közé eshet', + ) , + 'private_message' => array( + 'required' => 'A message /üzenet/ mező kitöltése kötelező', + ) , +); diff --git a/application/i18n/hu_HU/report.php b/application/i18n/hu_HU/report.php new file mode 100755 index 0000000000..245793638b --- /dev/null +++ b/application/i18n/hu_HU/report.php @@ -0,0 +1,125 @@ + 'Hiba a bejelentésben!', + 'country_name' => array( + 'single_country' => 'Ez a rendszer csak egy országgal kapcsolatos bejelentéseket tartalmazhat. Kérjük ellenőrizd, hogy a bejelentés helyszíne a következő ország területén legyen: %s', + ) , + 'data_include' => array( + 'between' => 'Kérjük, létező elemet válassz a letöltéshez.', + 'numeric' => 'Kérjük, létező elemet válassz a letöltéshez.', + ) , + 'data_active' => array( + 'between' => 'Kérjük válaszd ki a "Jóváhagyásra vár", a "Jóváhagyott" vagy mindkét típusú bejelentéseket.', + 'required' => 'Kérjük válaszd ki a "Jóváhagyásra vár", a "Jóváhagyott" vagy mindkét típusú bejelentéseket.', + ) , + 'data_verified' => array( + 'between' => 'Kérjük válaszd ki az "Ellenőrzésre vár", az "Ellenőrzött" vagy mindkét típusú bejelentéseket.', + 'numeric' => 'Kérjük válaszd ki az "Ellenőrzésre vár", az "Ellenőrzött" vagy mindkét típusú bejelentéseket.', + ) , + 'data_point' => array( + 'between' => 'Kérjük, válassz érvényes bejelentés típust a letöltéshez.', + 'numeric' => 'Kérjük, válassz érvényes bejelentés típust a letöltéshez.', + 'required' => 'Kérjük, válassz érvényes bejelentés típust a letöltéshez.', + ) , + 'format' => array( + 'required' => 'Ki kell választanod egy letöltési formátumot. Kérjük, válassz a CSV vagy az XML formátum közül!', + 'valid' => 'A belelentések letöltéséhez válassz ki egy érvényes formátumot! ', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'A "-tól" dátummező érvényelen dátumot tartalmaz.', + 'range' => 'Kérjük, érvényes dátumot adj meg a "-tól" mezőben. Ez nem lehet későbbi a mai dátumnál.', + ) , + 'incident_active' => array( + 'between' => 'Kérjük, valós értéket adj meg a bejelentés jóváhagyásához!', + 'required' => 'Kérjük, valós értéket adj meg a bejelentés jóváhagyásához!', + ) , + 'incident_ampm' => array( + 'validvalues' => 'A de./du. mező nem tartalmaz érvényes értéket.', + ) , + 'incident_category' => array( + 'numeric' => 'Nincs érvényes kategória kiválasztva.', + 'required' => 'A kategória kiválasztása kötelező!', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'A dátummező érvénytelen dátumot tartalmaz.', + 'date_mmddyyyy' => 'A dátummező érvénytelen dátumot tartalmaz.', + 'required' => 'A Dátum mező kitöltése kötelező.', + ) , + 'incident_description' => array( + 'required' => 'A "Leírás" mező kitöltése kötelező.', + ) , + 'incident_hour' => array( + 'between' => 'Az időpontnál az óra mező nem érvényes értéket tartalmaz.', + 'required' => 'Az időpontnál az óra megadása kötelező.', + ) , + 'incident_information' => array( + 'alpha' => 'Kérjük, valós értéket adj meg a bejelentés valószínűsítéséhez.', + 'length' => 'Kérjük, valós értéket adj meg a bejelentés valószínűsítéséhez.', + ) , + 'incident_minute' => array( + 'between' => 'Az időpontnál a perc mező nem tartalmaz valós értéket.', + 'required' => 'Az időpontnál a perc megadása kötelező.', + ) , + 'incident_news' => array( + 'url' => 'A Hírforrás link mezőben megadott link nem érvényes.', + ) , + 'incident_photo' => array( + 'size' => 'Kérjük, vedd figyelembe, hogy a feltöltött képek összmérete 2 MB-ig terjedhet.', + 'type' => 'A Kép feltöltése mezőben megadott kép nem érvényes. Elfogadott képfájl kiterjesztések: .jpg, .png és .gif.', + 'valid' => 'A Kép feltöltése mező nem tartalmaz valós fájlt.', + ) , + 'incident_source' => array( + 'alpha' => 'Kérem, adjon meg valós értéket a forrás megbízhatósághoz.', + 'length' => 'Kérem, adjon meg valós értéket a forrás megbízhatósághoz.', + ) , + 'incident_title' => array( + 'length' => 'A Bejelentés címe legalább 3, legfeljebb 200 karakter lehet.', + 'required' => 'A "Bejelentés címe" mező kitöltése kötelező.', + ) , + 'incident_verified' => array( + 'between' => 'Kérjük, valós értéket adj meg a bejelentés megerősítéséhez!', + 'required' => 'Kérjük, valós értéket adj meg a bejelentés megerősítéséhez!', + ) , + 'incident_video' => array( + 'url' => 'A Videó feltöltése mezőben megadott link nem érvényes.', + ) , + 'latitude' => array( + 'between' => 'A földrajzi szélességi fok mező nem tartalmaz valós értéket.', + 'required' => 'A földrajzi szélességi fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni.', + ) , + 'locale' => array( + 'alpha_dash' => 'A helyzet mező helytelen értéket tartalmaz.', + 'exists' => 'Erről a bejelentésről már készült fordítás erre a nyelvre.', + 'length' => 'A helyzet mező helytelen értéket tartalmaz.', + 'locale' => 'Az eredeti bejelentés és a fordítás nyelve megegyezik.', + 'required' => 'A helyszín meghatározása kötelező.', + ) , + 'location_name' => array( + 'length' => 'A "Helyszín pontosítása" mező legalább 3, legfeljebb 200 karaktert tartalmazhat.', + 'required' => 'A "Helyszín pontosítása" mező kitöltése kötelező.', + ) , + 'longitude' => array( + 'between' => 'A földrajzi hosszúsági fok mező nem tartalmaz valós értéket.', + 'required' => 'A földrajzi hosszúsági fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni.', + ) , + 'person_email' => array( + 'email' => 'Az Email cím mező nem tartalmaz érvényes email címet.', + 'length' => 'Az Email cím mező legalább 4, legfeljebb 64 karaktert tartalmazhat.', + ) , + 'person_first' => array( + 'length' => 'A Keresztnév mező legalább 3, legfeljebb 100 karaktert tartalmazhat.', + ) , + 'person_last' => array( + 'length' => 'A Vezetéknév mező legalább 2, legfeljebb 100 karaktert tartalmazhat.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Az "-ig" dátummező nem tartalmaz érvényes dátumot.', + 'range' => 'Kérjük, adj meg egy érvényes dátumot az "-ig" mezőben. Ez nem lehet későbbi a mai dátumnál.', + 'range_greater' => 'A "-tól" mezőben megadott dátum nem lehet későbbi, mint az "-ig" mezőben megadott dátum.', + ) , +); diff --git a/application/i18n/hu_HU/reporters.php b/application/i18n/hu_HU/reporters.php new file mode 100755 index 0000000000..0208043073 --- /dev/null +++ b/application/i18n/hu_HU/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'A földrajzi szélesség mező nem tartalmaz valós szélességi fokot.', + 'required' => 'A földrajzi szélességi fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni.', + ) , + 'level_id' => array( + 'numeric' => 'A Bejelentő szint mező nem tartalmaz valós értéket.', + 'required' => 'A Bejelentő szint mező nem tartalmaz valós értéket.', + ) , + 'location_name' => array( + 'length' => 'A helyzetmegnevezés mező legalább 3 legfeljebb 200 karaktert tartalmazhat.', + 'required' => 'A "Helyszín pontosítása" mező kitöltése kötelező.', + ) , + 'longitude' => array( + 'between' => 'A földrajzi hosszúság mező nem tartalmaz érvényes hosszúsági fokot.', + 'required' => 'A földrajzi hosszúsági fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni.', + ) , + 'reporter_id' => array( + 'numeric' => 'Érvénytelen Bejelentő.', + 'required' => 'Érvénytelen Bejelentő.', + ) , +); diff --git a/application/i18n/hu_HU/reports.php b/application/i18n/hu_HU/reports.php new file mode 100644 index 0000000000..81cc9743a9 --- /dev/null +++ b/application/i18n/hu_HU/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Kérem ellenőrizze, hogy kiválasztott-e egy elemet', + 'numeric' => 'Kérem ellenőrizze, hogy kiválasztott-e egy elemet', + 'categories_required' => 'Jóváhagyás előtt a bejelentéseket kategorizálni kell', + ) , + 'action' => array( + 'permission' => 'Önnek nincs engedélye a művelet elvégzésére', + ) , + 'uploadfile' => array( + 'required' => 'Ki kell jelölnie egy fájlt a feltöltéshez', + 'type' => 'A feltölteni kívánt fájl formátuma .csv vagy .xml lehet', + 'valid' => 'A feltöltés mező úgy tűnik, nem tartalmaz érvényes fájlnevet', + ) , +); diff --git a/application/i18n/hu_HU/roles.php b/application/i18n/hu_HU/roles.php new file mode 100755 index 0000000000..2125852d7c --- /dev/null +++ b/application/i18n/hu_HU/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'A Leírás mező legalább 3 legfeljebb 100 karaktert tartalmazhat.', + 'required' => 'A Leírás mező kitöltése kötelező.', + ) , + 'name' => array( + 'alpha_numeric' => 'A névmező csak betűket és számokat tartalmazhat.', + 'length' => 'A névmező legalább 2 legfeljebb 30 karaktert tartalmazhat.', + 'nomodify' => 'SuperAdmin Szerep nem módosítható.', + 'required' => 'A névmező kitöltése kötelező.', + ) , + 'access_level' => array( + 'numeric' => 'A Hozzáférési Szint mező értéke egy 0 és 100 közötti szám.', + 'required' => 'A Hozzáférési Szint mező értéke egy 0 és 100 közötti szám.', + ) , + 'permissions' => array( + 'numeric' => 'A Hozzáférési Szint mező értéke egy 0 és 100 közötti szám.', + ) , +); diff --git a/application/i18n/hu_HU/settings.php b/application/i18n/hu_HU/settings.php new file mode 100755 index 0000000000..9917aef955 --- /dev/null +++ b/application/i18n/hu_HU/settings.php @@ -0,0 +1,169 @@ + array( + 'between' => 'A megjegyzések engedélyezése mezőben érvénytelen értéket adott meg.', + 'required' => 'A megjegyzések engedélyezése mezőt kötelező kitölteni.', + ) , + 'allow_feed' => array( + 'between' => 'A tartalom mezőben érvénytelen értéket adott meg.', + 'required' => 'A tartalom mező kitöltése kötelező.', + ) , + 'allow_reports' => array( + 'between' => 'A jelentések engedélyezése mezőben érvénytelen értéket adott meg.', + 'required' => 'A jelentések engedélyezése mezőt kötelező kitölteni.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'A statisztika megosztása mezőben érvénytelen értéket adott meg.', + 'required' => 'A statisztika megosztása mező kitöltése kötelező.', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Az Akismet mezőben érvénytelen értéket adott meg.', + 'length' => 'Az Akismet mezőben érvénytelen értéket adott meg.', + ) , + 'cache_pages' => array( + 'between' => 'A cache oldalak mező kitöltése kötelez', + 'required' => 'A cache oldalak mező nem érvényes értéket tartalmaz?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'A gyorsítótár élettartam mezője nem tartalmaz megfelelő értéket', + 'required' => 'A gyorsítótár élettartam mezőjének kitöltése kötelező', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Úgy tűnik, az Ön szervere nincs beállítva arra, hogy a clean URL-eket kezelje. Meg kell változtatnia a szerver konfigurációját mielőtt engedélyezi a clean URL-eket. További információ arról, hogyan engedélyezze a clean URL-eket ebben a fórum posztban található (angolul).', + 'clean_url_enabled' => 'Ez az opció lehetővé teszi, hogy "clean" URL-ről lehessen elérni az Ushahidit, "index.php" kiterjesztés nélkül a honlapcímben.', + 'enable_clean_url' => 'Clean URL-ek engedélyezése', + 'title' => 'Clean URL-ek', + ) , + 'clickatell_api' => array( + 'length' => 'A Clickatell API számának legalább 20 karakter hosszúnak kell lennie.', + 'required' => 'A Clickatell API szám megadása kötelező.', + ) , + 'clickatell_password' => array( + 'length' => 'A Clickatell jelszavának legalább 5 és maximum 50 karakter hosszúnak kell lennie.', + 'required' => 'Clickatell jelszó megadása kötelező.', + ) , + 'clickatell_username' => array( + 'length' => 'A Clickatell felhasználónév nem lehet hosszabb 50 karakternél.', + 'required' => 'Clickatell felhasználónév megadása kötelező.', + ) , + 'configure_map' => 'Térkép beállítás', + 'default_location' => 'Alapértelmezett helyszín', + 'default_map_all' => array( + 'alpha_numeric' => 'A szín betöltés mezőben érvénytelen értéket adott meg.', + 'length' => 'A szín mező nem lehet 6 karakternél hosszabb.', + 'required' => 'A szín mező kitöltése kötelező.', + ) , + 'default_map_view' => 'Alapértelmezett térképnézet', + 'default_zoom_level' => 'Nézet alapértelmezett magassága', + 'download_city_list' => 'Városnevek behúzása a Geonamesről.', + 'email_host' => array( + 'length' => 'Az mail szerver port mezőben túl hosszú értéket adott meg.', + 'numeric' => 'A mail szerver port mezőben csak számok szerepelhetnek.', + ) , + 'email_password' => array( + 'length' => 'A mail szerver jelszó legalább 5 és maximum 50 karakter hosszú lehet.', + 'required' => 'A mail szerverhez jelszó megadása kötelező.', + ) , + 'email_port' => array( + 'length' => 'Az mail szerver port mezőben túl hosszú értéket adott meg.', + 'numeric' => 'A mail szerver port mezőben csak számok szerepelhetnek.', + ) , + 'email_servertype' => array( + 'length' => 'Az mail szerver port mezőben túl hosszú értéket adott meg.', + 'required' => 'Mail szerver típusa mező kitöltése kötelező.', + ) , + 'email_username' => array( + 'length' => 'A mail szerverhez megadott felhasználónév nem lehet hosszabb 50 karakternél.', + 'required' => 'A mail szerver felhasználónevének megadása kötelező.', + ) , + 'google_analytics' => array( + 'length' => 'A Google Analyticshez megadott értéknek érvényes Web Property azonosító számot kell tartalmaznia a következő formátumban: UA-XXXXX-XX.', + ) , + 'items_per_page' => array( + 'required' => 'Az elemem per oldal (Frontend) mező kitöltése szükséges', + ) , + 'items_per_page_admin' => array( + 'required' => 'Az elemem per oldal (Admin) mező kitöltése szükséges', + ) , + 'map' => array( + 'zoom' => 'Zoom szint', + ) , + 'map_provider' => array( + 'choose' => 'Válassz egy térkép szogálatatót', + 'enter_api' => 'Üsd be az API kulcsot', + 'get_api' => 'Szerezz egy API kulcsot', + 'name' => 'Térkép szolgáltató', + ) , + 'map_settings' => 'Térkép beállításai', + 'select_default_location' => 'Válassz ki az országot', + 'set_location' => 'Klikelj és húzd térképet hogy a pontos helyszínt beállítsad', + 'site' => array( + 'allow_clustering' => 'Klaszter jelentések a térképen', + 'allow_comments' => 'Felhasználók megjegyzésének engedélyezése a felajánlásokhoz', + 'allow_feed' => 'Legyen RSS hírcsatorna a website-on', + 'allow_reports' => 'Felhasználók számára felajánlások beküldésének engedélyezése', + 'api_akismet' => 'Akismet kulcs', + 'cache_pages' => 'Oldal cache', + 'cache_pages_lifetime' => 'Oldal cache élettartama', + 'default_category_colors' => 'Alapszín az összes kategóriára', + 'display_contact_page' => 'A kapcsolati oldal megjelenítése', + 'display_howtohelp_page' => 'a "Segítség" oldal megjelenítése', + 'email_alerts' => 'Riasztás email címe', + 'email_notice' => 'hogy emailben értesítést kaphass a történtekről,kérlek állítsd be a postafiókodat.', + 'email_site' => 'Az oldal kapcsolattartójának email címe', + 'google_analytics' => 'Google Analitics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Elemek per oldal - Front end', + 'items_per_page_admin' => 'Elemek per oldal - Admin', + 'laconica_site' => 'Laconica oldal', + 'language' => 'Az oldal nyelve', + 'message' => 'Az oldal üzenet', + 'name' => 'Az oldal neve', + 'share_site_stats' => 'Statisztikák engedélyezése (a szerveren, ahol ez az oldal fut)', + 'tagline' => 'Oldal tagline-ja', + 'title' => 'Website beállításai', + 'twitter_configuration' => 'Twitter kereső kifejezések', + 'twitter_hashtags' => 'Hashtag-ek - vesszővel elválasztva', + ) , + 'site_email' => array( + 'email' => 'Az oldal email címe nem éppen érvényes. Valamit elrontottál?', + 'length' => 'Az email cím legalább 4 karakter és rövidebb mint 100 karakter hosszú legyen', + ) , + 'site_name' => array( + 'length' => 'Ki kell tölteni a weboldal címe mezőt - legalább 3 karaktert írjál, de ne többet mint 50. ', + 'required' => 'Az oldal címe mező kitöltése kötelező.', + ) , + 'site_tagline' => array( + 'length' => 'Ki kell tölteni a tagline mezőt - legalább 3 karaktert írjál, de ne többet mint 50. ', + 'required' => 'A tagline mező kitöltése kötelező', + ) , + 'sms' => array( + 'clickatell_api' => 'A Clickatell API száma', + 'clickatell_check_balance' => 'Nézd meg a Clickatell egyenleged', + 'clickatell_load_balance' => 'Egyenleg betöltése', + 'clickatell_password' => 'A Clikatell jelszó', + 'clickatell_text_1' => 'Jelentkezz be a Clicatell szolgáltatásba úgy, hogy ide kattintasz', + 'clickatell_text_2' => 'Add meg a Clickatell hozzáférési adataidat', + 'clickatell_username' => 'A Clicatell felhasználói neved', + 'flsms_text_1' => 'Add meg a Frontline SMS-ben használatos telefonszámod(telefonszámaidat) a következő mezőkben', + 'option_1' => 'A Frontline SMS használata', + 'option_2' => 'Global SMS gateway használata', + 'title' => 'SMS beállítási opciók', + ) , + 'sms_no1' => array( + 'numeric' => 'A telefon \'1\' mező csak számokat tartalmazhat.', + ) , + 'sms_no2' => array( + 'length' => 'A telefon \'2\' mező túl hosszú.', + 'numeric' => 'A telefon \'2\' mező csak számokat tartalmazhat.', + ) , + 'sms_no3' => array( + 'length' => 'A telefon \'3\' mező túl hosszú.', + 'numeric' => 'A telefon \'3\' mező csak számokat tartalmazhat.', + ) , +); diff --git a/application/i18n/hu_HU/sharing.php b/application/i18n/hu_HU/sharing.php new file mode 100755 index 0000000000..cc1bfefd08 --- /dev/null +++ b/application/i18n/hu_HU/sharing.php @@ -0,0 +1,25 @@ + 'Belépés dátuma', + 'date_added' => 'Bevitel dátuma', + 'last_access' => 'Utolsó belépés', + 'sharing_color' => array( + 'length' => 'A szín mezőben legalább hat karakternek kell lennie.', + 'required' => 'A szín mezőt kötelező kitölteni.', + ) , + 'sharing_name' => array( + 'length' => 'A megosztó neve érvénytelen.', + 'required' => 'Kötelező megosztáshoz nevet megadni.', + ) , + 'sharing_url' => array( + 'exists' => 'Ez az URL már létezik.', + 'length' => 'Az URL érvénytelen.', + 'required' => 'URL megadása kötelező.', + 'url' => 'Az URL érvénytelen.', + ) , +); diff --git a/application/i18n/hu_HU/stats.php b/application/i18n/hu_HU/stats.php new file mode 100755 index 0000000000..3f0c10ddac --- /dev/null +++ b/application/i18n/hu_HU/stats.php @@ -0,0 +1,41 @@ + 'Jóváhagyott', + 'categories' => 'Kategóriák', + 'category_impact' => 'Kategória szerinti bontás', + 'category_impact_description' => 'Ez az ábra a bejelentések számának időben történő változását mutatja kategóriánkénti bontásban. Balról jobbra gördítve összehasonlíthatod a különböző kategóriák megoszlásának változását is. Ha az egeret az ábrák fölé viszed, még részletesebb információt kaphatsz.', + 'choose_date_range' => 'Válassz egy időtartamot ', + 'countries' => 'Országok', + 'country' => 'Ország', + 'country_breakdown' => 'Ország szerinti bontás', + 'description' => 'Hello, ez a statisztikai szekció. Általános leírás a későbbiekben lesz. Most böngészd az alkategóriák linkjeit fent!', + 'error' => 'Hiba', + 'glossary' => 'Magyarázat', + 'hit_summary' => 'Látogatók összegzése', + 'legend' => 'Jelmagyarázat', + 'pageviews' => 'Oldalletöltések', + 'pageviews_description' => 'Az összes oldalmegtekintés száma.', + 'reports' => 'Bejelentések', + 'reports_categories' => 'Bejelentések kategóriák szerinti megoszlása', + 'reports_statistics' => 'Bejelentések', + 'reports_status' => 'Bejelentések státusz szerinti megoszlása', + 'report_stats' => 'Bejelentések', + 'stats_not_setup' => 'Statisztika nincs beállítva', + 'time_range_1' => '1 hónap', + 'time_range_2' => '3 hónap', + 'time_range_3' => '6 hónap', + 'time_range_all' => 'Teljes időszak', + 'unapproved' => 'Nem jóváhagyott', + 'unique_visitors' => 'Egyedi látogatók', + 'unique_visitors_description' => 'Az oldalra látogató egyedi látogatók száma. Az egyedi látogatókat cookie-k segítségével különítjük el és határozzuk meg a számukat. Azokat a látogatókat akiknél nincs cookie engedélyezve, az IP cím, a felbontás, a böngésző és az operációs rendszer alapján különítjük el egymástól.', + 'unverified' => 'Nem ellenőrzött', + 'verified' => 'Ellenőrzött', + 'visitor_summary' => 'Látogatások', + 'visits' => 'Látogatások', + 'visits_description' => 'Új látogatásnak számít, ha ugyanazon látogató két oldalletöltése között legalább 30 perc telt el.', +); diff --git a/application/i18n/hu_HU/tooltips.php b/application/i18n/hu_HU/tooltips.php new file mode 100755 index 0000000000..058cfb852f --- /dev/null +++ b/application/i18n/hu_HU/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => 'Így adhatja hozzá a bejelentést újabb kategóriákhoz. Ha itt kiválasztja az "1-es Kategóriát" és a bejelentés már a "2-es Kategóriába" van sorolva, ezután mindkét kategóriához hozzá lesz rendelve. ', + 'approve' => 'A bejelentés jóváhagyása vagy elvetése. A jóváhagyott bejelentéseket minden látogató látni fogja.', + 'assign_badge' => 'Itt adhat érmet a felhasználónak, ha az teljesíti a feltételt. Válassza ki az érmet!', + 'between_times' => 'Ez egy időszak hossza órákban és/vagy percekben kifejezve két időpont között 24 órás formátumban. Ha egy korábbi időpontot ír a második mezőbe, az helyet cserél az első mező tartalmával. Ezek a dátumok egyetlen napon belüli időpontokra kell, hogy vonatkozzanak. Sőt, ezt az időt az Ön által a portálra beállított idővel vetjük össze, amit a portál Beállítások-nál megadott és nem feltétlenül a felhasználó időzónájával. Ha nem kíván élni ezzel a lehetőséggel, hagyja meg ezt a beállítást: 00:00-tól 00:00-ig.', + 'category' => 'Ha azt szeretné, hogy csak egy bizonyos kategória esetén aktiválódjanak triggerek, azt itt tudja beállítani. Ilyen esetben a trigger csak akkor aktiválódik, ha ez a kategória egymagában jelenik meg. Például ha az 1-es kategóriát és a 2-es kategóriát választja itt ki és a bejelentéskor a 2-es és 3-as kategóriákat választja ki a felhasználó, teljesül a feltétel.', + 'days_of_the_week' => 'Ha ezek az intézkedések a hétnek csak meghatározott napjain történnek, az itt tudja beállítani. Ne feledje, hogy a napokat a portálra beállított időzóna szerint veszi majd figyelembe az eszköz. Tartsa lenyomva a Shift, Command (Cmd), vagy kontroll (Ctrl) gombokat több nap kiválasztásához.', + 'email_body' => 'A kiküldendő e-mail szövege.', + 'email_subject' => 'A kiküldendő e-mail tárgya.', + 'feed_id' => 'A feed beállítása lehet "minden feed" vagy egy "konkrét feed". Ha csak konkrét feed-ek esetén szertné aktiválni a triggert, azokat itt állíthatja be. Egyébként a "minden feed" beállítás javasolt.', + 'from' => 'A figyelt Twitter-ező felhasználóneve (vagy több felhasználónév vesszővel elválasztva). Ha csak bizonyos felhasználók Twitter üzeneteit szeretné triggernek beállítani, itt sorolhatja fel a Twitteres felhasználónevüket (elhagyva a @ jelet)', + 'keywords' => 'Ezt a részt szabadon lehet hagyni, ha nem szeretné a kulcsszavakkal összevetni. Ha beír ide szavakat, azokat vesszővel (,) kell elválasztani. Például ha szeretne egy triggert beállítani arra az esetre, ha valaki a "szeretet" vagy "béke" szavakat használja a bejegyzésében, a kulcsszó mezőbe ezt kell írnia: "szeretet, béke".', + 'location' => 'Itt két lehetőség közül válaszhat: "bárhol" vagy "konkrét hely". Ha konkrét helyet választ, kérem jelölje négyzettel a térképen azt a területet, amit ez alatt ért. Például ha Brazíliára vonatkozik a bejelentése, válassza a "konkrét hely" lehetőséget és jelölje ki Brazília területét a négyzettel. Ezek a négyzetek tetszőlegesen kicsik vagy nagyok lehenek. Egyszerre több területet is bejelölhet.', + 'on_specific_count' => 'Ez a jellemző aktiválja a triggert az N-edik alkalommal a teljes összevont felhasználói körben vagy egy konkrét felhasználó esetén. Ha üresen hagyja, nem vizsgáljuk ezt a feltételt.', + 'report_title' => 'Ez a bejelentés címének alapbeállítása.', + 'response' => 'Haz összes fenti feltétel teljesült, a trigger kiváltja a válaszeseményt. A válaszesemény bármi lehet a bejelentés jóváhagyásától a felhasználónak küldött e-mail üzenetig. Jelöljön meg itt egy válaszeseményt, hogy az arra jellemző beállítási lehetőségek megjelenjenek.', + 'send_to' => 'Ha a "Felhasználó Értesítése" lehetőséget választja, az illető felhasználó e-mail értesítést kap. Ha a szövegdoboz melletti választógombot bejelöli, meg tudja adni az értesítendő e-mail címet. Ez akkor lehet hasznos, ha arra állít be triggereket, hogy értesítést küldjenek bizonyos embereknek, ha a térkép bizonyos részeire bejelentések, bejelentkezések érkeznek vagy más aktivitást tapasztal a rendszer.', + 'specific_days' => 'Itt több napot is kiválaszthat. A dátumokat a portálra beállított időzóna határozza meg. Tetszőleges dátum beállításához ne válasszon dátumot.', + 'trigger' => 'A kiváltó esemény (trigger) az alapja a Kiváltó Esemény beállításoknak. Itt határozhatja meg, hogy mi történjen, amikor valaki bejelentést tesz, bejelentkezik a portálra, stb. Leszűrheti a válaszlahetőségeket, miután kiválasztott egy trigger eseményt.', + 'user' => 'A felhasználó lehet "bárki" vagy egy konkrét felhasználó. Ha csak bizonyos felhasználóknak engedné aktiválni a triggert, ezeket a felhasználókat itt válaszhatja ki. Egyébként a "bárki" beállítást érdemes választani, hiszen a legtöbb trigger minden felhasználóra értelmezhető, aki a rendszerrel kapcsolatba lép.', + 'verify' => 'A bejelentés ellenőrzöttnek jelölése.', + ) , + 'change_picture' => 'A Profil oldalak ezen a portálon a Gravatar-t használják. A fényképére kattintva, a Gravatar oldalra irányítjuk át, ahol módosíthatja a profilképét.', + 'default_value' => 'A felsorolás elemeit vesszővel válassza el! pl. érték1, érték2.', + 'radio_choices' => 'A felsorolás elemeit vesszővel válassza el! pl. érték1, érték2. Ha szeretne alapbeállított értéket meghatározni, a felsorolást zárja dupla kettősponttal :: pl, ha az érték3-at szeretné alapbeállításnak, ez lesz a felsorolás: érték1, érték2, érték3::érték3', + 'dropdown_choices' => 'A kiválasztott elemeket vesszővel válassza el! pl. elem1, elem2.', + 'private_to' => 'Kezdjen gépelni, a listaelemek megjelenítéséhez.', + 'private_subject' => 'Személyes üzenet tárgya', + 'private_message' => 'Személyes üzenet', + 'profile_color' => 'Itt válaszhat színt, ami a nyilvános profilképe alatt fog megjelenni. Ugyanez a szín jelzi majd a térképen az Ön bejenentkezéseit.', + 'profile_email' => 'Az Ön e-mail címe', + 'profile_name' => 'Ez az egyik név, amellyel Ön a portálon megjelenik. Ne feledje, hogy ez a név nyilvános lesz!', + 'profile_new_password' => 'Ha beállítja, ez lesz az új jelszava. Hagyja üresen, ha a továbbra is a jelenlegi jelszavát szeretné használni.', + 'profile_new_users_password' => 'Ez egy kötelező elem új felhasználó létrehozásához és ez lesz a felhasználó jelszava. Érdemes emlékeztetni az új felhasználót, hogy az első bejelentkezéskor változtassa meg a jelszavát.', + 'profile_notify' => 'Ha az IGEN-t választod, akkor emailben riasztást kapsz a joszolgalat.hu-ra érkező új bejelentésekről és fejleményekről (csak amelyek megfelelnek a megjelölt körzetnek és kategóriának).', + 'profile_password' => 'A jelenlegi jelszó. Kötelező beírni a jelszót, nehogy illetéktelenek módosítsák a személyes beállításait.', + 'profile_public' => 'Az ön Adatlapját bárki megtekintheti az interneten, ha ezt a beállítást választja. Ez egyébként a legegyszerűbb módja, hogy az Ön által küldött bejelentéseket, bejelentkezéseket, érmeket, stb egy oldalon megmutassa a külvilágnak.', + 'profile_public_url' => 'Ezen a címen található a nyilvános Adatlapja.', + 'profile_username' => 'A felhasználónevet nem lehet módosítani.', + 'settings_access_level' => 'A Hozzáférési Szintek korlátozzák a hozzáférést a kérdőív mezőinek adataihoz. Magasabb hozzáférési szintek elérik az alacsonyabbakat. A Superadmin a legmagasabb hozzáférési szint (100). A nyilvános adatok jelentik a legalacsonyabb szintet (0). A tagok hozzáférési szintje 10-es. Az Admin hozzáférési szint 90-es alapbeállítással jön létre.', + 'settings_alert_email' => 'Erre az email címre fogjuk a küldeni a riasztásokat.', + 'settings_allow_alerts' => 'Itt engedélyezheti, hogy a felhasználók a weben feliratkozzanak a riasztásokra.', + 'settings_allow_clustering' => 'Ez teszi hehetővé, hogy hasonló bejelentések egyetlen pontként jelenjenek meg a térképen.', + 'settings_allow_comments' => 'Itt engedélyezheti, hogy a felhasználók megjegyzésben reagálhassanak a főoldalon megjelenő bejelentésekre.', + 'settings_allow_feed' => 'Itt engedélyezheti az RSS csatornák megjelenítését a főoldalon.', + 'settings_allow_reports' => 'Itt engedélyezheti, hogy a felhasználók a web-es kérdőíven keresztül információt adjanak.', + 'settings_api_default_record_limit' => 'Alapbeállítás: hány rekordot engedjen letölteni a rendszer egy API request-ben?', + 'settings_api_max_record_limit' => 'Maximum hány rekordot engedjen letölteni a rendszer egy API request-ben?', + 'settings_api_max_requests_per_ip' => 'Maximum hány API request-et teljesítsen a rendszer IP címenként?', + 'settings_banner' => 'Az oldalfejléc (banner) a portál nyitóoldalának tetején jelenik meg, ha a használt oldalkép (theme) megengedi. Az oldalfejléc javasolt mérete az oldalkép méretétől függ. Ne feledje, hogy ez az oldal címe és tagline-ja HELYETT jelenik meg az oldal tetején!', + 'settings_blocks_per_row' => 'Hány blokk oszlop jelenjen meg soronként?', + 'settings_cache_pages' => 'Itt lehet engedélyezni és tiltani a gyorsítótár használatát. Engedélyezése esetén a lapok gyorsabban fognak betöltődni a böngészőbe, ami csökkenti a válaszidőt. Nagyforgalmú oldalakon, ajánlott az Engedélyezni. **Figyelem: a lapok a gyorsító tárban az alábbi beállítás szerint frissülnek. (gyorsítótár időtartam)', + 'settings_cache_pages_lifetime' => 'Állítsa be a gyorsítótár időtartamát', + 'settings_checkins' => 'Ez a beállítás engedélyezi a bejelentkezéseket a portálon. A bejelentkezés egy egyszerűsített bejelentés, ami moderálás nélkül kerül a honlapra és emiatt meghatározott beállításokat feltételez a portálon. Amikor ezt engedélyezi, ellenőrizze, hogy az időzóna beállítás UTC és az oldalkép (theme) támogatja a bejelentkezéseket. Amint ezt engedélyezi, csak bejelentkezéses oldalképek lesznek elérhetők a kiegészítők/oldalképek beállítása oldalon.', + 'settings_configure_map' => 'Egy meghatározott helyre beállítja a térképet', + 'settings_default_category_colors' => 'Egyetlen színkód kiválasztása az összes kategóriára az oldalon.', + 'settings_default_category_icons' => 'Egyetlen ikon kiválasztása az összes kategóriára az oldalon.', + 'settings_default_location' => 'Ebben az országban telepítette az alkalmazást', + 'settings_display_contact' => 'A Kapcsolat fül be- és kikapcsolása a főoldalon.', + 'settings_display_howtohelp' => '\'Hogyan segíthet\' fül be-, ill. kikapcsolása a főoldalon.', + 'settings_display_items_per_page' => 'A főoldalon megjelenő beJelentések száma oldalanként.', + 'settings_display_items_per_page_admin' => 'Az admin felületen megjelenő bejelentések Jelentések száma oldalanként.', + 'settings_flsms_download' => 'Ez a bejövő üzenetek központja.', + 'settings_flsms_synchronize' => 'Ez szinkronizálja a központba érkezett üzeneteket az Ushahidi platformmal.', + 'settings_flsms_text_1' => 'Telefonszámok, amelyekre az SMS-ek érkeznek.', + 'settings_google_analytics' => 'Ez követi nyomon az oldalra látogatókat. Itt láthatók a részletes látogatói statisztikák.', + 'settings_locale' => 'Itt állíthatja be az oldalon használt nyelvet.', + 'settings_manually_approve_users' => 'Ha ezt a lehetőséget igenre állítja, minden egyes felhasználót jóvá kell hagyni, aki regisztrál az oldalra és szerepekhez rendelni őket. (pl. Felhasználó, Admin, Superadmin)', + 'settings_map_provider' => 'Itt lehet beállítani, melyik térképet használja az oldal.', + 'settings_map_timeline' => 'Ez mutatja az időrendet a bejelentések beérkezésének dátuma és időpontja szerint.', + 'settings_private_deployment' => 'Ha ez az érték igazra van állítva, a portált priváttá teszi, azaz csak a regisztrációt követően engedélyezett felhasználók számára lesz hozzáférhető.', + 'settings_require_email_confirmation' => 'A felhasználók e-mailben kapnak egy igazoló linket, és első alkalommal csak azon keresztül léphetnek a portálra, ha ez a beállítás igenre van állítva. Ha már vannak a portálnak regisztrált felhasználói amikor ez a beállítás igenre változik, ezeknek a felhasználóknak is igazolniuk kell az e-mail címük valódiságát azzal, hogy a kapott linkre kattintanak mielőtt tovább használhatják a portált. ', + 'settings_server_host' => 'Itt tárolja a rendszer az e-maileket', + 'settings_server_password' => 'Ez a jelszava annak az e-mail címnek, ahova a bejelentések érkeznek.', + 'settings_server_port' => 'Ez a beállítás kötelező a e-mail címre érkező bejövő kapcsolatok fogadásához.', + 'settings_server_ssl_support' => 'Ez kötelező beállítás a biztonságos adatkapcsolat javításához.', + 'settings_server_type' => 'Ez kötelező beállítás a kiszolgáló szerverre érkező e-mailek letöltéséhez.', + 'settings_server_username' => 'Erre az e-mail címre érkeznek a bejelentések.', + 'settings_share_site_stats' => 'A nézettségi statisztikákat az Ushahidi szerverei kontrollálják. Ennek a beállításnak az engedélyezése a nézettségi statisztikák közvetlenül megjelennek az admin oldalon. Ha ez a beállítás nincs engedélyezve, a rendszer nem gyűjt statisztikákat és erre az időre később sem lesznek kinyerhetők a forgalmi statisztikák, amíg ez a beállítás ki van kapcsolva.', + 'settings_site_copyright_statement' => 'Engedélyezi -e, hogy más kiszolgálók újrapublikálják az Ön és a felhasználók által létrehozott szöveget, videót, és/vagy design elemekei? Olvassa el a https://creativecommons.org/choose/ oldalt, ha pontosabban szeretné szabályozni, mit tehetnek mások az Önök munkájának eredményeivel. Fontos, hogy pontosan meghatározza, az oldal mely elemeit kívánja licenccel védeni!', + 'settings_site_email' => 'Erre az e-mail címre érkeznek az e-mailes bejelentések és üzenetek a Kapcsolat adatlapról.', + 'settings_site_message' => 'Ez a szöveg jelenik majd meg a honlapon a térkpé fölött. Érdemes itt fontos információt közölni a látogatókkal. Ha kitörli ezt az üzenetet, a szövegdoboz is eltűnik a honlapról.', + 'settings_site_name' => 'Ez az oldalnév jelenik meg a főoldal tetején', + 'settings_site_submit_report_message' => 'Ez az üzenetet látja a felhasználó, a "bejelentés elküldése" oldalon. Itt lehet jognyilatkozatot vagy további tájékoztatást adni a bejelentéseket kezelő látogatóknak.', + 'settings_site_tagline' => 'Néhány mondatban írja le, miről szól ez az oldal.', + 'settings_site_timezone' => 'Ezt az időzónát használja az oldal. Ez a beállítás befolyásol minden eseményt, ami dátumot és időt használ, ezen kívül ez adja a bejelentések alapbeállított időbélyegzőjét az oldal front és back endjén egyaránt.', + 'settings_twitter_configuration' => 'Itt állíthatja be a twitter hash-tagjét.', +); diff --git a/application/i18n/hu_HU/ui_admin.php b/application/i18n/hu_HU/ui_admin.php new file mode 100755 index 0000000000..2d80fcf0ba --- /dev/null +++ b/application/i18n/hu_HU/ui_admin.php @@ -0,0 +1,318 @@ + 'Hozzáférés elutasítva. Vagy az azonosító adatok nem érvényesek, vagy a kérés lett elutasítva.', + 'access_denied_others' => 'Hozzáférés elutasítva. A kérést megkaptuk, de hozzáférési korlátozások (pl. időkorlát) miatt nem teljesíthető. Próbálja meg később!', + 'access_level' => 'Hozzáférési szint', + 'actions' => 'Műveletek', + 'add_to_category' => 'Kategória hozzáadása', + 'added' => 'Hozzáadva', + 'added_edited' => 'Hozzáadva/szerkesztve', + 'addons' => 'Kiegészítések', + 'admin_role' => 'Adminsztrátor szerep', + 'alerts' => 'Értesítések', + 'alerts_received' => 'Kapott riasztások', + 'all' => 'Mind', + 'am' => 'DE', + 'anonymous' => 'Anoním', + 'anyone_role' => 'Bárki', + 'anywhere' => 'Bárhol', + 'api_banned' => 'API letiltva', + 'api_logs' => 'API logok', + 'api_settings' => 'API Beállítások', + 'api_unban' => 'Letiltás feloldása', + 'api_unban_all' => 'Minden letiltás feloldása', + 'approved' => 'jóváhagyva', + 'approve_auto' => 'Automatikusan jóváhagyás', + 'approve_manual' => 'Manuális jóváhagyás', + 'archived' => 'Archiválva', + 'are_you_sure_you_want_to' => 'Biztosan szeretnéd ', + 'are_you_sure_you_want_to_delete_this_item' => 'Biztosan szeretnéd törölni ezt az elemet?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Biztosan szeretnéd törölni ezt a képet?', + 'are_you_sure_you_want_to_switch_forms' => 'Biztosan űrlapot szeretnél váltani?', + 'assign' => 'Hozzárendel', + 'assignments' => 'Hozzárendelések', + 'assign_badge' => 'Kitüntetés hozzárendelése', + 'author' => 'Szerző', + 'author_email' => 'Szerző email címe', + 'back' => 'Vissza', + 'banip_action' => 'IP cím letiltása', + 'between_times' => 'időpont között', + 'blocks' => 'Blokkok', + 'body' => 'Törzs', + 'cancel' => 'Mégsem', + 'categories' => 'Kategóriák', + 'chart_display_error' => 'Hiba a diagram megjelenítésében', + 'check_message_valid' => 'Kérem, ellenőrizze, hogy az üzenete érvényes!', + 'check_number' => 'Kérem, ellenőrizze, hogy a szám érvényes!', + 'check_sms_settings' => 'Kérem, ellenőrizze az SMS adatait!', + 'checkin_details' => 'Bejelentkezés adatai', + 'checkins' => 'Bejelentkezések', + 'cities_loaded' => 'Települések betöltve', + 'code' => 'kód', + 'code_out_of_sync' => 'Kód verzió nincsen szinkronizálva', + 'color' => 'Szín', + 'comments' => 'Megjegyzések', + 'confirmation_code' => 'A riasztás kérés visszaigazoló kódja:', + 'confirm_msg' => 'A felhasználó', + 'count' => 'Darab', + 'country_not_found' => 'Az ország nem található', + 'created_edited' => 'elkészítve/szerkesztve', + 'create_report' => 'Bejelentés létrehozása', + 'critical_upgrade' => 'Kritikus frissítés', + 'csv' => 'CSV', + 'currently_active' => 'Jelenleg aktív', + 'currently_inactive' => 'Jelenleg inaktív', + 'custom_forms_insufficient_permissions' => 'Nincs megfelelő jogosultságod az alábbi egényi mező szerkesztéséhez.', + 'daily' => 'Napi', + 'dashboard' => 'Műszerfal', + 'database' => 'adatbázis', + 'date_time' => 'Dátum és Idő', + 'date_added' => 'Bevitel dátuma', + 'date_modified' => 'Módosítás dátuma', + 'days_of_the_week' => 'Hét napjai', + 'db_out_of_sync' => 'Az adatbázis nincs szinkronizálva', + 'deleted' => 'törölve', + 'delete_action' => 'Törlés', + 'delete_badge' => 'Jelvény törlése', + 'demo' => 'Demó', + 'description' => 'Leírás', + 'disabled' => 'Letiltva', + 'divider_start_field' => 'Elválasztó kezdete', + 'divider_end_field' => 'Elválasztó vége', + 'divider_class' => 'div class', + 'download_reports' => 'Jelentések letöltése', + 'dropdown_choices' => 'Lenyíló fálasztások', + 'edited' => 'SZERKESZTVE', + 'edited_by' => 'Szerkesztve', + 'edit_action' => 'Szerkesztés', + 'edit_log' => 'Szerkesztési log', + 'email' => 'Email', + 'entire_collective' => 'Teljes Közösség', + 'error_geocoding' => 'Hiba a geokódolásban!HTTP hiba', + 'error_imap' => 'IMAP PHP könyvtár nincs installálva', + 'error_msg' => 'Hiba', + 'error_post_incident' => 'Hiba, az eseményt nem tudtuk postolni', + 'every_six_hours' => 'Minden 6 órában', + 'every_twelve_hours' => 'Minden 12 órában', + 'experimental' => 'Kísérleti', + 'faqs' => 'GYIK', + 'feed' => 'folyam', + 'feedback' => 'Visszajelzés', + 'feeds' => 'folyamok', + 'field_choices' => 'Választások listája', + 'field_default' => 'Alapértelmezett érték', + 'field_datatype' => 'Adattípusok', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Javascript', + 'field_datatype_numeric' => 'Numerikus', + 'field_datatype_text' => 'Szabad szöveg', + 'field_height' => 'Magasság (sorban)', + 'field_hidden' => 'Rejtett mező', + 'field_maxlength' => 'Maximális karakterhossz', + 'field_name' => 'Mező neve', + 'field_toggle' => 'Lapozás', + 'field_toggle_no' => 'Nem', + 'field_toggle_yes_close' => 'Igen, alapesetben Zárva', + 'field_toggle_yes_open' => 'Igen, alapesetben Nyitva', + 'file_not_found_upload' => 'Nem található az feltöltött fájl', + 'file_open_error' => 'Ne tudjuk megnyitni a fájlt olvasásra', + 'form_not_exists' => 'Ez a form nem létezik', + 'forum' => 'Forum', + 'free_text_field' => 'Szabad szöveges mező', + 'date_field' => 'Dátum mező', + 'radio_field' => 'Radio mező', + 'checkbox_field' => 'Checkbox mező', + 'dropdown_field' => 'Lenyíló mező', + 'from' => 'Ettől', + 'from_date' => 'Ettől', + 'geonames_timeout' => 'Geonevek időtúllépési hibája', + 'get_help' => 'Segítség', + 'get_more_themes' => 'További oldalképek', + 'get_more_plugins' => 'További kiegészítők', + 'header_actions' => 'Akciók', + 'header_add_edit' => 'Hozzáadás/szerkesztés', + 'header_email' => 'Email', + 'header_manage_users' => 'Felhasználó kezelés', + 'header_role' => 'Szerep', + 'header_user' => 'Felhasználó', + 'help' => 'segítség', + 'hourly' => 'Óránkénti', + 'incident_feed' => 'esemény folyama', + 'installer_info' => 'A telepítő mappa még létezik. Törölje a telepítő mappát. A megléte lehetséges biztonsági rés.', + 'instance' => 'eset', + 'instances' => 'esetek', + 'instance_details' => 'esetek részletei', + 'invalid_parameter' => 'érvénytelen paraméter', + 'ip_address' => 'IP cím', + 'is_date' => 'Ez egy dátum mező?', + 'ispublic_visible' => 'Ki láthatja a válaszokat', + 'ispublic_submit' => 'Ki küldhet választ', + 'keyword' => 'Kulcszó', + 'keywords' => 'Kulcsszavak', + 'label_email' => 'Email cím:', + 'label_full_name' => 'Teljes név:', + 'label_password' => 'Jelszó', + 'label_role' => 'Szerepkör', + 'label_username' => 'Felhasználói név', + 'layers' => 'Rétegek', + 'login_role' => 'Moderátor', + 'logout' => 'Kilépés', + 'logs' => 'Logok', + 'manage' => 'Kezelés', + 'manage_roles' => 'Szerepkörök és engedélyek kezelése', + 'manage_users' => 'A felhasználók megtekintése', + 'manage_users_edit' => 'Felhasználók hozzáadása/szerkesztése', + 'manage_public_listing' => 'Publikus listáid szerkesztése', + 'mark_as' => 'Megjelölés mint', + 'marked_as_not_spam' => 'nem spamként jelölve', + 'marked_as_spam' => 'spamként jelölve', + 'match_no_documents' => 'nem illeszkedik egy dokumentum sem ehhez', + 'message' => 'Üzenet', + 'messages' => 'Üzenetek', + 'messages_laconica' => 'Laconica üzenetek', + 'messages_twitter' => 'Twitter üzenetek', + 'message_sent' => 'Az üzeneted elküldve!', + 'mhi' => 'MHI', + 'minute' => 'Perc', + 'minutes' => 'Auto elfogadás', + 'missing_parameter' => 'Hiányzó paraméter', + 'moderator' => 'Moderátor', + 'modified' => 'módosítva', + 'modify_timezone' => 'Időzóna beállítások módosítása', + 'move_down_action' => 'lefelé mozgatás', + 'move_up_action' => 'felfelé mozgatás', + 'multiple_hosted_instances' => 'Hosztolt pédányok', + 'my_alerts' => 'Riasztásaim', + 'my_checkins' => 'Bejelentkezéseim', + 'my_profile' => 'A profilom', + 'my_reports' => 'Bejelentéseim', + 'my_votes' => 'Szavazatok', + 'my_votes_up' => 'Pozitív', + 'my_votes_down' => 'Negatív', + 'name' => 'Név', + 'new_alert' => 'Új riasztás létrehozása', + 'new_private' => 'Új üzenet', + 'new_password' => 'Új jelszó', + 'no' => 'Nem ', + 'none_category_explanation' => 'Ez egy különleges kategória, ami a bejelentés adatlapján nem látható a felhasználó számára. Ebben gyűlnek azok a kategorizálatlan bejelentések (uncategorized reports), amik a kategória törlése miatt kerültek ebbe az állapotba.', + 'notification' => 'Értesítés', + 'not_case_sensitive' => 'Kis vagy nagybetű?Mindegy!', + 'not_found' => 'Nem található', + 'no_data' => 'Nincs adat. Nincs eredmény a megjelenítéshez.', + 'no_error' => 'Semmi hiba nincs itten!', + 'no_result_display_msg' => 'Nincs megjeleníthető eredmény!', + 'on_specific_count' => 'Meghatározott számú esemény esetén', + 'openids' => 'OpenID-k', + 'page' => 'oldal', + 'pages' => 'oldalak', + 'page_not_found' => 'Az oldal nem található', + 'page_not_found_message_with_contact' => 'Sajnálom, de a keresett oldal itt nem található

Külső linket követett, vagy a mi oldalunkról származót?
Ha ezt az oldalt a mi portálunk egy más részéről érte el, kérem vegye fel velünk a kapcsolatot, hogy ki tudjuk javítani a hibát!

Egy más oldalról érkezett?
A más oldalról származó linkek néha elavultak, vagy elírást tartalmaznak.Írja megl, melyik oldalról érkezett, hogy az üzemeltetőivel kijavíthassuk a problémát.

Ön írta be az oldalcímet?
Elképzelhető, hogy pontatlanul másolta be a címet. Kérem, ellenőrizze, a beírt címet figyelve minden karakter sorrendjére, a kis és nagybetűkre, stb. !

', + 'page_not_found_message' => 'Elnézést, de az oldal amit keresel nincs itt.', + 'parameters_used' => 'Paraméterek használva', + 'password' => 'Jelszó', + 'password_reset' => 'Jelszó visszaállítás', + 'password_reset_message_line_1' => 'Kedves', + 'password_reset_message_line_2' => 'Megkaptuk a jelszó törlési kérést', + 'password_reset_message_line_3' => 'A jelszó változtatáshoz, klikkeljen az alábbi linkre ( vagy másolja be a böngészőjébe )', + 'password_reset_message_line_4' => 'A jelszó a kérésnek megfelelően törölve lett. Az Ön részletes adatai a következők', + 'password_reset_subject' => 'Alkalmazás jelszó törlése', + 'phone' => 'Telefon', + 'please_select' => 'Kérlek válassz', + 'pm' => 'DU', + 'post_method_not_used' => 'Az adat nem lett elküldve POST metódussal', + 'preview' => 'Előnézet', + 'private_message' => 'Üzenet', + 'private_messages' => 'Privát üzenet', + 'private_sent' => 'Privát üzenet elküldve', + 'private_subject' => 'Tárgy', + 'private_to' => 'Címzett', + 'public_listing' => 'Publikus listázás', + 'qualifiers' => 'Tulajdonságok', + 'read' => 'olvasás', + 'relevance' => 'relevancia', + 'report_title' => 'Felajánlás címe', + 'report_date' => 'Felajánlás dátuma', + 'reporters' => 'Bejelentők', + 'reporter_levels' => 'Bejelentő szintek', + 'reports' => 'Bejelentések', + 'reputation' => 'Tekintélyérték', + 'required' => 'Kötelező', + 'reset' => 'Törlés', + 'response' => 'Válasz', + 'results' => 'Eredmények', + 'revoke' => 'Visszavonás', + 'riverid_exists_admin' => 'Ehhez az e-mail címhet már tartozik CrowdmapID. A felhasználónak a meglévő Crowdmap jelszavával kell belépnie.', + 'save_settings' => 'Beállítások mentése', + 'search' => 'Keresés', + 'search_reports' => 'Felajánlás keresése', + 'searching_for' => 'keresem', + 'security_info_encryption_key' => 'A titkosítási kulcs még mindig alapbeállításon van. Ez nem biztonságos. Írjon be másikat!', + 'security_info_https' => 'Ez az oldal jelenleg HTTP-vel van kiszolgálva. A biztonság növelése érdekében válts HTTPS-re.', + 'security_info_instructions' => 'Instrukciók elérhetők a wiki-n:', + 'select_download_format' => 'Milyen formátumban szeretné letölteni a bejeneltéseket?', + 'select_field_type' => '---Mező választása ---', + 'select_item' => 'Válassz egy dolgot', + 'select_trigger_before_response' => 'Először a triggert (kiváltó eseményt) kell választania, csak azután a válaszreakciót.', + 'select_trigger_before_qualifiers' => 'Először a triggert (kiváltó eseményt) kell választania, csak azután a tulajdonságait.', + 'sender' => 'Küldő', + 'send_to' => 'Címzett', + 'sent_from_website' => 'Az üzenetet az oldal küldte ', + 'server_time' => 'Szerver idő', + 'settings' => 'Beállítások', + 'showing_page' => 'Az oldal mutatása', + 'showing_results' => 'Az eredmények mutatása', + 'shown' => 'megtekintett', + 'special_category' => 'Speciális kategória', + 'special_category_explanation' => 'Ez egy különleges kategória, ami a bejelentés adatlapján nem látható a felhasználó számára. Ez a beállítás a "Megbízható Bejelentők" funkcióval együtt használatos.', + 'specific_area' => 'Meghatározott Terület', + 'state' => 'Állam', + 'statistics' => 'Statisztikák', + 'stats' => 'Statisztikák', + 'stats_collection_error' => 'Statisztika gyűjtése nem sikerült! Vagy a statisztikai szerver nem működik, vagy az Ushahidi szerver telepítési konfigurációja rossz. Próbáld meg kicsit később, hátha a szerver működik. Ahhoz, hogy kézzel töröld a statisztikát, állítsd a "stat_id"-et 0-ra és a "stat_key"-t is 0-ra a beállítások táblában az adatbázisban. Figyelmeztetés: Az eddigi statisztikákhoz elveszted a hozzáférést!', + 'stats_collection_error_short' => 'Statisztika gyűjtése nem sikerült!', + 'specific_days' => 'Meghatározott Napok', + 'subject' => 'Téma', + 'superadmin_role' => 'Szuper Adminisztrátor', + 'task_performed' => 'Feladat elvégezve!', + 'text_field' => 'Szöveges mező', + 'theme_name' => 'Név', + 'title' => 'Felhasználók kezelése', + 'timeout' => 'Időtúllépési hiba', + 'to' => ' - ', + 'total_records' => 'Összes rekord', + 'to_date' => 'dátummá', + 'translate_reports' => 'Felajánlások lefordítása', + 'trigger' => 'Trigger (kiváltó esemény)', + 'triggering_user' => 'Kiváltó Felhasználó', + 'triggers' => 'Triggerek (kiváltó események)', + 'unapproved' => 'nincs jóváhagyva', + 'unknown' => 'ismeretlen', + 'unknown_failure' => 'Ismeretlen hiba', + 'unread' => 'olvasatlan', + 'unsubscribe_message' => 'Nem fog több riasztást kapni', + 'update_link' => 'Ide kattints az azonnali frissítéshez', + 'upgrade_ushahidi' => 'Ushahidi frissítése', + 'upgrade_ushahidi_status' => 'Ushahidi státuszának frissítése', + 'upload_reports' => 'Felajánlok', + 'user' => 'Felhasználó', + 'users' => 'Felhasználók', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Ellenőrzött/Ellenőrizetlen', + 'verify_unverify' => 'Elfogad/Elutasít', + 'version' => 'Verzió', + 'version_available' => 'Verzió frissíthető', + 'video_encoding' => 'Videó kódolás', + 'view_private' => 'Privát üzenet', + 'view_site' => 'Oldal megtekintése', + 'view_report' => 'Felajánlás megtekintése', + 'welcome' => 'Üdvözlégy,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Igen', + 'your_search_for' => 'A keresésed', +); diff --git a/application/i18n/hu_HU/ui_main.php b/application/i18n/hu_HU/ui_main.php new file mode 100755 index 0000000000..d72b12d5de --- /dev/null +++ b/application/i18n/hu_HU/ui_main.php @@ -0,0 +1,611 @@ + 'Leírás', + 'access' => 'Hozzáférés', + 'access_limits' => 'Hozzáférés korlátai', + 'account_name' => 'Felhasználónév', + 'actions' => 'Műveletek', + 'action_confirm' => 'Ez a lépés nem visszavonható. Biztosan folytatni akarod?', + 'activate' => 'Aktivizálás', + 'active' => 'Aktív', + 'add' => 'Hozzáadás', + 'added_by' => 'Hozzáadta', + 'additional_data' => 'További adatok', + 'additional_reports' => 'További bejelentések', + 'add_edit' => 'Hozzáadás/szerkesztés', + 'add_field' => 'Mező hozzáadása', + 'add_language' => 'Nyelv hozzáadása', + 'add_new' => 'Új hozzáadása', + 'add_new_category' => 'Új kategória hozzáadása', + 'add_translation' => 'Fordítás hozzáadása', + 'admin' => 'Adminisztráció', + 'alerts' => 'Riasztás kérése', + 'alerts_alert_me' => 'Küldjön riasztást, ha bejelentés érkezett:', + 'alerts_btn_send' => 'Riasztás kérés mentése', + 'alerts_email' => 'Email cím:', + 'alerts_enter_email' => 'Email cím bevitele', + 'alerts_enter_mobile' => 'mobiltelefonszám megadása országkóddal', + 'alerts_get' => 'Riasztás kérése', + 'alert_has_been' => 'A riasztás', + 'alerts_mobile_phone' => 'Mobiltelefonszám:', + 'alerts_place_spot' => '... vagy helyezz egy pöttyöt az alábbi térképre, és riasztást küldünk, ha annak 20 km-es körzetéből bejelentés érkezett. A körzet nagyságát a térkép alatti csúszkával állíthatod. ', + 'alerts_place_spot2' => 'Ha nem találod a helyzeted a térképen megjelölve, kérünk kattints a térképen a pontos koordinátáidnál!', + 'alerts_rss' => 'RSS hírfolyam (másold le az alábbi URL-t)', + 'alerts_select_city' => 'Válassz egy települést', + 'alerts_step1_select_city' => '1. lépés: Válassz egy települést vagy helyszínt:', + 'alerts_step2_send_alerts' => '2. lépés: Riasztást kérek az alábbi elérhetőségekre:', + 'alerts_step3_select_catgories' => '3. lépés (opcionális ): Válassz kategóriát:', + 'alert_confirm_previous' => 'Riasztás kérés jóváhagyása', + 'alert_saved' => 'A riasztás kérést elmentettük.', + 'all' => 'Mind', + 'allowed' => 'Megengedve', + 'all_categories' => 'Minden kategória', + 'all_time' => 'Összes', + 'and' => 'és', + 'api' => 'API', + 'approve' => 'Jóváhagy', + 'approved' => 'Jóváhagyva', + 'approved_reports' => 'Jóváhagyott bejelentések', + 'approve_this_report' => 'Bejelentés jóváhagyása', + 'approximate' => 'Kb.', + 'archive' => 'Archívum', + 'archived' => 'Archiválva', + 'ascending' => 'Növekvő', + 'at' => '@', + 'author' => 'Szerző', + 'auto_checkin' => 'Automatikus belépés', + 'avg_reports_per_day' => 'Napi átlagos riportok', + 'awaiting_approval' => 'Jóváhagyásra vár', + 'awaiting_verification' => 'Ellenőrzésre vár', + 'badge' => 'Jelvény', + 'badges' => 'Jelvény', + 'badge_image' => 'Arckép', + 'badge_image_upload_your_own' => 'Vagy feltöltheted a saját arcképed ', + 'badge_pack' => 'Azonosító kártyák', + 'badge_select' => 'Válassz azonosítót', + 'blog' => 'blog', + 'browse_profiles' => 'Profil böngészés', + 'cancel' => 'Mégsem', + 'categories' => 'Kategóriák', + 'category' => 'Kategória', + 'category_filter' => 'Kategóriaszűrő', + 'category_has_been' => 'A kategória', + 'category_name' => 'Kategória neve', + 'change_date_range' => 'Időtartam megváltoztatása', + 'change_password' => 'Változtass jelszót', + 'change_picture' => 'Változtasd meg a Saját Képet', + 'choose' => 'Válassz egy ', + 'choose_data_points' => 'Válassz adatokat a lementéshez', + 'choose_date_range' => 'Vagy válassz saját dátum intervallumot', + 'choose_field_type' => 'Válassz mező típust!', + 'cleanurl' => 'Tiszta URL-ek', + 'clear' => 'Törlés', + 'clear_map' => 'Üres térkép', + 'close' => 'Becsuk', + 'clusters' => 'Klaszterek', + 'color' => 'Szín', + 'comment' => 'Fejlemény', + 'comments' => 'Fejlemények', + 'comment_details' => 'Fejlemény pár szóban:', + 'configuration_saved' => 'A beállításaidat elmentettük.', + 'configure' => 'Beállít', + 'confirm_email_successful' => 'Sikeresen visszaigazoltad az email címedet. A rendszerbe az alábbi mezőkben tudsz belépni.', + 'confirm_email_failed' => 'Az email cím megerősítése sikertelen! Az alábbiakban kérhetsz új megerősítő emailt.', + 'contact' => 'Kapcsolat', + 'contact_code' => 'Biztonsági kód', + 'contact_email' => 'Az email címed', + 'contact_message' => 'Üzenet', + 'contact_message_has_send' => 'Az üzeneted elküldve!', + 'contact_name' => 'Neved', + 'contact_phone' => 'Telefonszámod', + 'contact_send' => 'Üzenet küldése', + 'contact_subject' => 'Tárgy', + 'copyright' => 'Copyright © 2010 Ushahidi.com. Minden jog fenntartva!', + 'create' => 'Készít', + 'create_edit' => 'Készít/Módosít', + 'create_new' => 'Új létrehozása', + 'create_new_password' => 'Új jelszó', + 'create_report' => 'Bejelentés létrehozása', + 'credibility' => 'Hitelesség', + 'current_password' => 'Jelenlegi jelszó', + 'custom_fields' => 'Egyedi mezők', + 'data' => 'Információ', + 'date' => 'Dátum', + 'date_format' => '(hh/nn/éééé)', + 'date_time' => 'Dátum és időpont', + 'day' => 'nap', + 'deactivate' => 'Deaktiválás', + 'default_location_name' => 'Ajka, Magyarország', + 'delete' => 'Töröl', + 'deleted' => 'Törölve', + 'deletes' => 'Törlések', + 'delete_disabled' => 'Törlés funkció kikapcsolva', + 'delete_last' => 'Utolsó törlése', + 'delete_report' => 'Bejelentés törlése', + 'delete_selected' => 'Kijelöltek törlése', + 'delete_spam' => 'Spam törlése', + 'demo' => 'Demó', + 'description' => 'Leírás', + 'descending' => 'Csökkenő', + 'detailed_location_example' => 'Például: Astoria sarok, a Rákóczi út felől, Budapest', + 'details' => 'Részletek', + 'direct_report' => 'Direkt bejelentés', + 'disabled' => 'Letiltva', + 'disapprove' => 'Nem hagy jóvá', + 'download_reports' => 'Bejelentések letöltése', + 'download' => 'Letöltés', + 'edit' => 'Módosít', + 'edit_form_fields' => 'A form mezők szerkesztése', + 'edit_report' => 'Bejelentés szerkesztése', + 'email' => 'Email', + 'email_address' => 'Email cím', + 'email_configuration' => 'Levelező szerver beállításai', + 'email_server_host' => 'Levelező szerver hoszt', + 'email_server_password' => 'Levelező szerver jelszó', + 'email_server_port' => 'Levelező szerver port', + 'email_server_ssl_support' => 'Levelező szerver ssl támogatás', + 'email_server_type' => 'Levelező szerver típusa', + 'email_server_username' => 'Levelező szerver felhasználói név', + 'email_settings_comment_0' => 'Beállításaid az email címedhez lesznek alkalmazva.', + 'email_settings_comment_00' => 'Ahhoz hogy emailben kapjál értesítést, meg kell adnod az email fiókod elérhetőségét.', + 'email_settings_comment_1' => 'Valamelyik szerver teljes email címet kér', + 'email_settings_comment_2' => 'Email fiók jelszó', + 'email_settings_comment_3' => 'Jellemző portok: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Például: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Például: pop3, imap', + 'email_settings_comment_6' => 'Engedélyezi vagy tiltja az SSL kapcsolatot', + 'empty' => '--ÜRES--', + 'end_point' => 'Eddig:', + 'error' => 'Hiba!', + 'example' => 'pl.', + 'example_country' => 'Magyarország', + 'external_apps' => 'Külső alkalmazások', + 'external_video_link' => 'Hivatkozás külső videóra', + 'feed' => 'Folyam', + 'feedback' => 'Küldj visszajelzést!', + 'feeds' => 'Hírfolyamok', + 'feed_has_been' => 'Visszajelzés', + 'feed_items' => 'Hírfolyam eleme', + 'feed_name' => 'Hírfolyam neve', + 'feed_url' => 'Hírfolyam URL-je', + 'field_unused' => 'Nem használt mező', + 'file' => 'Fájl', + 'file_over_max_allowed' => 'A fájl túl nagy.', + 'filters' => 'Szűrő', + 'filter_reports' => 'Bejelentések szűrése', + 'filter_reports_by' => 'Bejelentések szűrése ', + 'filter_reports_contain' => 'Bejelentések, amik tartalmazzák', + 'find' => 'Keresés', + 'find_location' => 'Hely keresése', + 'first_name' => 'Keresztnév', + 'force_run_scheduler' => 'Kényszerített időzítő indítás', + 'forgot_password' => 'Elfelejtetted a jelszavad?', + 'form' => 'Űrlap', + 'forms' => 'Űrlapok', + 'form_description' => 'Űrlap leírás', + 'form_edit' => 'Szerkeszd az űrlapot', + 'form_has_been' => 'Az űrlap', + 'form_title' => 'Űrlap cím', + 'from' => 'Küldő', + 'full_name' => 'Teljes név', + 'geolocation_available' => 'Geolokáció elérhető', + 'geometry_color' => 'Szín', + 'geometry_comments' => 'Fejlemények', + 'geometry_label' => 'Címke', + 'geometry_strokewidth' => 'Vonal vastagság', + 'go' => 'Mehet', + 'hashtag' => 'Hashtag', + 'has_been' => 'Volt', + 'help' => 'Segítség', + 'hidden' => 'Rejtett', + 'hide' => 'Elrejt', + 'hide_this_message' => 'Üzenet elrejtése', + 'home' => 'Kezdőlap', + 'how_to_report' => 'Hogyan tegyél bejelentést?', + 'https' => 'HTTPS', + 'id' => 'Azonosító', + 'identify_you' => 'A többi felhasználó számára ez a név jelenik meg.', + 'image' => 'Kép', + 'images' => 'Képek', + 'image_icon' => 'Kép/Ikon', + 'inactive' => 'Inaktív', + 'inbox' => 'Beérkező levelek', + 'incident' => 'Helyszínek', + 'incidents_nearby' => 'a közelben', + 'incident_location' => 'helyszín', + 'include' => 'Beszúr', + 'include_categories' => 'Kategória beszúrása', + 'include_custom_fields' => 'Egyedi mezők beszúrása', + 'include_description' => 'Leírás beszúrása', + 'include_detail' => 'Szúrj be annyi részletet, amennyit csak lehet!', + 'include_latitude' => 'csatolja a szélességi fokot!', + 'include_location_information' => 'adja meg a helyszín információit!', + 'include_longitude' => 'Csatold a hosszúsági fokot!', + 'include_personal_info' => 'Személyes információk megadása', + 'incoming_media' => 'Bejövő média', + 'information_evaluation' => 'Bejelentés értékelése', + 'input_location' => 'Add meg a pontos címed', + 'insufficient_role' => 'A hozzáférésed nem megfelelő a teljes beléptetéshez. Vedd fel a kapcsolatot az adminisztrátorral!', + 'in_response_to' => 'Válaszul erre:', + 'ip_address' => 'IP cím', + 'is_this_your_profile' => 'Ez a te profilod?', + 'item' => 'elem', + 'items' => 'elemek', + 'item_details' => 'elem részletei', + 'item_title' => 'Elem címe', + 'key' => 'Kulcs', + 'keywords' => 'Kulcsszavak', + 'kml_kmz_file' => 'KMZ/KML fájl', + 'kml_kmz_upload' => 'KMZ/KML fájl feltöltés', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Nyelv', + 'last' => 'Utolsó', + 'last_month' => 'Utolsó hónap', + 'last_name' => 'Vezetéknév', + 'last_year' => 'Tavaly', + 'latitude' => 'Szélességi fok', + 'layers' => 'Rétegek', + 'layers_filter' => 'Egyéb rétegek', + 'layer_has_been' => 'A réteget', + 'layer_name' => 'Réteg neve', + 'layer_url' => 'Réteg URL', + 'leave_a_comment' => 'A bejelentéssel kapcsolatos fejleményt ide írhatod:', + 'less_information' => 'Kevesebb információ', + 'level' => 'Szint', + 'level_has_been' => 'Ezt a szintet', + 'level_name' => 'Szint neve', + 'limited' => 'Korlátozott', + 'link' => 'Hivatkozás', + 'list' => 'Lista', + 'loading_reports' => 'Bejelentések betöltése', + 'location' => 'Helyszín', + 'locations' => 'Helyszínek', + 'location_example' => 'Település, Ország', + 'login' => 'Belépés', + 'login_account_creation_successful' => 'A fiókodat sikeresen létrehoztuk. Mostantól be tudsz lépni az email címed és jelszavad megadásával.', + 'login_confirmation_sent' => 'A megerősítő linket elküldtük egy email-ben.', + 'login_email_doesnt_exist' => 'E-mail cím nem létezik. Próbáld másik e-mail címmel vagy regisztrálj.', + 'login_select_openid' => 'Kérjük kattintson az előfizetés szolgáltatójára', + 'login_with' => 'Belépés a következővel: ', + 'login_userpass' => 'E-mail és jelszó', + 'login_openid' => 'OpenID', + 'login_signup' => 'Regisztráció', + 'login_signup_click' => 'Fiók létrehozása', + 'login_signup_confirmation_message' => 'Köszönjük regisztrációdat a %1$s weboldalon. Email címed megerősítéséhez kérjük kattints a következő linkre: %2$s', + 'login_signup_confirmation_subject' => 'Regisztráció megerősítése', + 'login_signup_text' => 'Regisztrálj az oldalon, így további szolgáltatások is elérhetővé válnak számodra.', + 'longitude' => 'Hosszúság', + 'map' => 'Térkép', + 'mark_read' => 'Megjelölés olvasottként', + 'mark_unread' => 'Megjelölés olvasatlanként', + 'maximum_filesize' => 'Maximásil fájl méret', + 'media' => 'Média', + 'media_filter' => 'Médiaszűrő', + 'members' => 'Tagok', + 'manage_your_account' => 'Fiók szerkesztése', + 'message' => 'Üzenet', + 'messages' => 'Üzenetek', + 'message_details' => 'Összes üzenet', + 'message_non_numeric_source' => 'Üzenet egy nem numerikus forrásból:', + 'mobile' => 'Mobil', + 'modify' => 'Módosít', + 'modify_date' => 'Dátum módosítása', + 'month' => 'hónap', + 'more' => 'Még több', + 'more_information' => 'További információ', + 'multi_country_instance' => 'Ez az Ushahidi telepítés több országra is kiterjed', + 'must_confirm_email_address' => 'Meg kell erősítenie email címét annak érdekében, hogy beléphessen a rendszerbe. Ha nem találja a megerősítő linket tartalmazó emailt emailjei között, az alábbiakban kérhet újat.', + 'name' => 'Név', + 'nearby_report' => 'Közeli bejelentések', + 'new' => 'Új', + 'news' => 'Hírek', + 'news_feeds' => 'Hírfolyamok', + 'news_source' => 'Hír forrása', + 'new_category' => 'Új kategória', + 'new_password' => 'Új jelszó', + 'new_report' => 'Új bejelentés', + 'next' => 'Következő', + 'no' => 'Nem', + 'no_checkins' => 'Nincs megjeleníthető bejelentkezés.', + 'no_data' => 'Nincs adat', + 'none' => 'Nincs', + 'notices' => 'Hozzáfűzés', + 'not_approved' => 'Nem jóváhagyott', + 'not_approved_singular' => 'Nem jóváhagyott', + 'not_selected' => '--Nincs kiválasztva--', + 'not_spam' => 'nem spam', + 'not_specified' => 'Nem meghatározott', + 'no_reports' => 'Nincs bejelentés', + 'no_results' => 'Nincs eredmény', + 'off' => 'Ki', + 'official_news' => 'Hivatalos híreink és egyéb hírek', + 'on' => 'Be', + 'option' => 'Opció', + 'optional' => 'Opcionális', + 'options' => 'Opciók', + 'organization' => 'Szervezet', + 'organizations' => 'Szervezetek', + 'organization_description' => 'Szervezet Leírása', + 'organization_email' => 'Szervezeti email', + 'organization_has_been' => 'A szervezet ', + 'organization_name' => 'Szervezet Neve', + 'organization_phone_1' => 'Szervezet Telefon 1', + 'organization_phone_2' => 'Szervezet Telefon 2', + 'organization_website' => 'Szervezet website', + 'original' => 'Eredeti', + 'original_description' => 'Eredeti leírás', + 'original_title' => 'Eredeti Cím', + 'other_ushahidi_instances' => 'Egyéb csatornák', + 'outbox' => 'Kimenő fiók', + 'outgoing' => 'Kimenő', + 'page' => 'Oldal', + 'pages' => 'Oldalak', + 'page_description' => 'Oldal leírás', + 'page_has_been' => 'Az oldal ...', + 'page_tab_name' => 'Oldal Tab Név', + 'page_title' => 'Oldal címe', + 'parent_category' => 'Szülő kategória', + 'password' => 'Jelszó', + 'password_again' => 'Jelszó mégegyszer', + 'password_changed_successfully' => 'A jelszót sikeresen megváltoztattuk, mostantól az új jelszóval tudsz belépni.', + 'password_forgot' => 'Elfelejtetted a jelszavad?', + 'password_reset_confirm' => 'Az új jelszót elküldtük az email címedre.', + 'password_save' => 'Maradjon belépve a számítógépeden', + 'past_month' => 'Múlt Hónap', + 'past_year' => 'Tavaly', + 'pending' => 'Függő', + 'per' => 'per', + 'personal_information' => 'Személyes adatok Opcionális', + 'phone' => 'Telefon', + 'photos' => 'Képek', + 'pictures' => 'Képek', + 'pictures_and_videos' => 'Képek és videók', + 'pinpoint_location' => 'Jelölje a helyszínt a szélességi, hosszúsági koordináták megadásával, vagy mutasson a térképen a pontos helyre!', + 'play' => 'Lejátszás', + 'please_note' => 'Jegyezd meg', + 'plugins' => 'Pluginek', + 'plugin_url' => 'Weblap hozzáadása', + 'public_profile' => 'Nyilvános profil', + 'public_profile_url' => 'Nyilvános profil URL', + 'preview' => 'Előnézet', + 'preview_item' => 'Elem előnézet', + 'preview_message' => 'Üzenet előnézet', + 'previous' => 'Előző', + 'private' => 'Privát', + 'profile_color' => 'Profil színe', + 'profile_saved' => 'A profilodat elmentettük.', + 'quick_stats' => 'Áttekintő statisztika', + 'rating' => 'Értékelés', + 'read' => 'Olvasás', + 'receive' => 'Fogadás', + 'receive_from' => 'Fogadni innét', + 'receive_notifications' => 'Jelzések fogadása', + 'recent_reports' => 'Friss bejelentések', + 'refresh_news_feeds' => 'Hírfolyamok frissítése', + 'registered_email' => 'Regisztrált email cím', + 'remove' => 'eltávolít', + 'reply' => 'válasz', + 'report' => 'Bejelentés', + 'reports_listed' => 'Bejelentések (a térképről, listázás időrendi sorrendben)', + 'reporter' => 'Bejelentő', + 'reporters' => 'Bejelentők', + 'reporter_date' => 'Bejelentés ideje', + 'reporter_email' => 'Bejelentő email címe', + 'reporter_first_name' => 'Bejelentő keresztneve', + 'reporter_has_been' => 'A Bejelentő', + 'reporter_ip' => 'Bejelentő IP címe', + 'reporter_last_name' => 'Bejelentő vezetékneve', + 'reporter_level' => 'Bejelentő szint', + 'reporter_levels' => 'Bejelentő szintek', + 'reporter_phone' => 'Bejelentő telefonja', + 'reports' => 'Bejelentések', + 'reports_btn_browse' => 'keresés', + 'reports_btn_submit' => 'küld', + 'reports_by_this_user' => 'A felhasználó bejelentései', + 'reports_categories' => 'Kategóriák', + 'reports_count' => '%d bejelentés', + 'reports_date' => 'dátum', + 'reports_description' => 'Leírás', + 'reports_download_csv' => 'Bejelentések letöltése CSV formátumban', + 'reports_email' => 'Email', + 'reports_features' => 'Szolgáltatás', + 'reports_find_location' => 'Válassz egy helyszínt a közeledben!', + 'reports_first' => 'Keresztnév', + 'reports_last' => 'Vezetéknév', + 'reports_location_name' => 'Helyszín pontosítása', + 'reports_news' => 'Hivatkozás külső hírre', + 'reports_optional' => 'További információ', + 'reports_photos' => 'Fényképek feltöltése', + 'reports_return' => 'Vissza a Bejelentések oldalhoz', + 'reports_select_city' => 'Válassz egy települést', + 'reports_submitted' => 'A bejelentésedet köszönjük! Továbbítottuk munkatársainknak és hamarosan jelentkezünk, ha szükséges.', + 'reports_submit_new' => 'Új bejelentés küldése', + 'reports_time' => 'Időpont', + 'reports_timeline' => 'Időtartam', + 'reports_title' => 'Bejelentés címe', + 'reports_video' => 'Videó hivatkozás', + 'report_an_incident' => 'Incidens bejelentése', + 'report_details' => 'Összes bejelentés', + 'report_option_1' => 'üzenet küldésével ide:', + 'report_option_2' => 'email küldésével erre a címre:', + 'report_option_3' => 'twitter üzenettel a következő hashtaggel (egy is elegendő)', + 'report_option_4' => 'ennek az űrlapnak a kitöltésével', + 'report_option_external_apps' => 'Alkalmazás használatával', + 'report_saved' => 'A bejelentésedet elmentettük.', + 'report_title' => 'Bejelentés címe', + 'request_information' => 'Több információ igénylése', + 'request_location' => 'Helyszín pontosítása', + 'required' => 'Kötelező', + 'requirements' => 'Szükségletek', + 'resend_confirm_email' => 'Megerősítő email újraküldése', + 'reset' => 'Törlés', + 'reset_all_filters' => 'Összes szűrő törlése', + 'reset_password' => 'Jelszó visszaállítása', + 'retrieve_city_names' => 'A kiválasztott ország település neveinek kigyűjtése', + 'riverid_information' => '%s szolgáltatás által kezelt fiókok.', + 'riverid_exists_login' => 'Önnek már van egy CrowdmapID által kezelt fiókja. Próbálja a CrowdmapID e-mail és jelszó párost használni a belépéshez!', + 'role' => 'Szerep', + 'rss' => 'RSS', + 'save' => 'Mentés', + 'saved' => 'Mentve', + 'save_add_new' => 'Mentés és Új hozzáadása', + 'save_close' => 'Mentés és Bezárás', + 'save_report' => 'Bejelentés mentése', + 'schedule' => 'Ütemezés', + 'scheduler' => 'Ütemező', + 'scheduler_day' => 'Nap', + 'scheduler_hour' => 'Óra', + 'scheduler_log' => 'Ütemező Log', + 'scheduler_minute' => 'Perc', + 'scheduler_weekday' => 'Napja a hétnek', + 'search' => 'Keresés', + 'search_results' => 'Keresési eredmények', + 'security_code' => 'Biztonsági kód', + 'select_all' => 'Összes kiválasztása', + 'select_field_type' => 'Mezőtípus választása', + 'select_form_type' => 'Űrlap kiválasztása', + 'select_in_map' => 'Kiválasztás a térképen', + 'select_multiple' => 'Több is választható', + 'select_one' => 'Kérlek erősítsd meg, hogy ellenőrizted az elemet', + 'select_theme' => 'Téma választása', + 'send' => 'Küldés', + 'send_confirmation' => 'Megerősítés küldése', + 'sending_to' => 'Erre a címre elküldeni:', + 'sent' => 'Elküldve', + 'sent_by' => 'küldő:', + 'server_address' => 'Szerver címe', + 'server_type' => 'Szerver típusa', + 'service' => 'Szolgáltatás', + 'service_username' => 'Felhasználói név a szolgáltatásban', + 'service_user_id' => 'Szolgáltatás felhasználói ID', + 'share' => 'Megosztás', + 'shared_data' => 'Megosztott adat', + 'share_has_been' => 'A megosztás', + 'sharing' => 'Megosztás', + 'shorter_map' => 'Kisebb térkép', + 'show' => 'Mutasd', + 'show_all' => 'Mutasd mindet', + 'show_messages' => 'Üzenetek megtekintése', + 'showing_reports_from' => 'Bejelentések megtekintése %1$s-tól %2$s-ig', + 'site' => 'Website', + 'site_email_address' => 'az oldalhoz tartozó email cím', + 'site_url' => 'Oldal URL', + 'smaller_map' => 'Kisebb térkép', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Sajnálom, neked nincs jelvényed.', + 'source' => 'Forrás', + 'source_name' => 'Forrás neve', + 'sort' => 'Rendezés', + 'sort_by' => 'Rendezés a kövezkező szerint:', + 'source_url' => 'Forrás URL', + 'spam' => 'Spam', + 'ssl_support' => 'SSL támogatás?', + 'start_point' => 'Innen', + 'step' => 'Lépés', + 'submit' => 'Bejelentés küldése', + 'submitted_by' => 'Beküldte: %1$s, %2$s használatával', + 'submit_sms' => 'Beküldés SMS-ben (jelenleg nem működő szolgálatatás)', + 'submit_sms1' => 'Küldj SMS-t ...-ra', + 'submit_sms2' => 'telefonodon', + 'success' => 'Siker!', + 'successfuly_imported' => 'Sikeres import', + 'surname' => 'Vezetéknév', + 'survey' => 'Kérdőív', + 'system' => 'Rendszer', + 'taller_map' => 'Magasabb térkép', + 'tcp_port' => 'TCP port', + 'themes' => 'Témák', + 'theme_default' => 'Alapértelmezett Ushahidi Sablon', + 'theme_settings' => 'Téma beállítások', + 'this' => 'Ez', + 'this_day' => 'Ma', + 'this_month' => 'Ebben a hónapban', + 'this_week' => 'Ezen a héten', + 'this_year' => 'Folyó év', + 'this_is_your_profile' => 'Ez a te profilod.', + 'time' => 'idő', + 'title' => 'Bejelentés címe', + 'to' => ' Eddig:', + 'today' => 'Ma', + 'today_at' => 'Ma', + 'token' => 'Token', + 'total_reports' => 'Összes bejelentés', + 'translated' => 'Lefordítva', + 'translated_description' => 'Lefordított leírás', + 'translated_title' => 'Lefordított cím', + 'translate_to' => 'Fordítás erre', + 'translation' => 'Fordítás', + 'translation_saved' => 'A fordítást elmentettük.', + 'trusted' => 'Megbízható', + 'type' => 'Típus', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Email küldése sikertelen.', + 'uncategorized_reports' => 'Nem kategorizált', + 'unread' => 'olvasatlan', + 'unverified' => 'Ellenőrizetlen', + 'update_feeds' => 'Mezők frissítése', + 'upload' => 'Feltöltés', + 'upload_guide' => 'Tekintse meg a bejelentések feltöltéséről szóló útmutatót:-', + 'upload_docs_1' => 'XML feltöltési útmutató', + 'upload_docs_2' => 'CSV feltöltési útmutató', + 'upload_file' => 'feltöltendő fájl', + 'upload_reports' => 'Bejelentések feltöltése', + 'upload_reports_custom_forms' => 'A saját mező oszlopának tartalmaznia kell a hozzá tartozó form_id-t. pl. a Teszt nevű saját mező az 1-es ID-val jelzett alap kérdőíven Teszt-1 lesz. A saját kérdőív-mező importálásakor erre figyelni kell.', + 'upload_reports_detail_1' => 'részletes jelentés feltöltése', + 'upload_reports_detail_2' => 'A bejelentéseket CSV vagy XML formátumban kell feltölteni.', + 'upload_reports_detail_3' => 'Ha az eset azonosító szerepel az adatbázban akkor a bejegyzés a CSV/XML fájlban ki lesz hagyva.', + 'upload_reports_detail_4' => 'Legalább a bejelentés címét és dátumát tartalmaznia kell.', + 'upload_reports_detail_4b' => 'Ha hosszúsági és szélességi koordináta nem áll rendelkezésre akkor a helyszín Google Geocoder által lesz geokódolva.', + 'upload_reports_detail_4c' => 'Ha importálsz hozzáadott információkat pl: személyes információk, és/vagy egyéni mezők', + 'upload_reports_detail_4d' => 'Legalább egy személyes infromációt hordozó mezőnek (név, vezetéknév, email) léteznie kell. Az üres rekordok nem lesznek importálva', + 'upload_reports_detail_4e' => 'A saját mezőben adott válasza összhangban van a legördülő menük, választógombok és jelölőnégyzetek adataival.', + 'upload_reports_detail_4f' => 'A jelölőnégyzet opciókat vesszővel kell elválasztani, pl. ha a választható gyümölcsök alma, körte és szőlő, akkor a bevitt opció "alma,körte,szőlő" legyen', + 'upload_reports_detail_4g' => 'A dátum mezőket a következő formában kell kitölteni: hh/nn/éééé pl. 2013. március 15. = 03/15/2013', + 'upload_reports_detail_5' => 'Minta CSV jelentés', + 'upload_reports_detail_6' => '#,bejelentés címe,Bejelentés dátuma,Helyszín,Leírás,Kategória,Elfogadva,Igazolva
"1","1 db kanapé","2010-11-15 01:06:00","Szentbékálla","Alig használt, 200X100-as disztingvált rökamié elvitehő","Bútor, Hálószoba bútor, ",YES,YES', + 'upload_reports_detail_7' => ' "2","Kirablás","2009-03-18 10:10:00","Accra","Bármerre történhet rablás","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Sikeres feltöltés', + 'upload_video' => 'Videó feltöltése', + 'url' => 'URL', + 'user' => 'Felhasználó', + 'username' => 'Felhasználó neve', + 'ushahidi_admin' => 'Ushahidi rendszergazda', + 'verification' => 'Ellenőrzés', + 'verified' => 'Ellenőrizve', + 'verified_reports' => 'Ellenőrzött bejelentések', + 'verify' => 'Ellenőrzés', + 'verify_this_report' => 'Bejelentés ellenőrzése', + 'version' => 'Verzió', + 'via' => 'keresztül', + 'video' => 'Videó', + 'view' => 'nézet', + 'views' => 'Nézetek', + 'view_all' => 'Összes megtekintése', + 'view_all_feeds' => 'Összes visszajelzés megtekintése', + 'view_all_reports' => 'Minden bejelentés megtekintése', + 'view_items' => 'Elemek megtekintése', + 'view_more' => 'Többet látnék', + 'view_public_profile' => 'Nyilvános profil megtekintése', + 'view_report' => 'Bejelentés megtekintése', + 'view_reports' => 'Bejelentések megtekintése', + 'view_video' => 'Videó megtekintése', + 'visible' => 'Látható', + 'waiting_approval' => 'Jóváhagyásra vár', + 'waiting_verification' => 'Ellenőrzésre vár', + 'wider_map' => 'Szélesebb térkép', + 'web_form' => 'Web űrlap', + 'web' => 'Web', + 'weight' => 'Súly', + 'yes' => 'Igen', + 'yesterday' => 'Tegnap', + 'your_dashboard' => 'Műszerfal', + 'your_file' => 'Te fájlod', + 'zoom_in' => 'Nagyítás', + 'zoom_out' => 'Kicsinyítés', +); diff --git a/application/i18n/hu_HU/upgrade.php b/application/i18n/hu_HU/upgrade.php new file mode 100755 index 0000000000..ba18010449 --- /dev/null +++ b/application/i18n/hu_HU/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Hibás adat. A lehetséges értékek: 0 (nem) vagy 1 (igen).', + ) , + 'upgrade_automatic' => 'Automatikus frissítés', + 'upgrade_available' => 'Lehetséges frissítések', + 'upgrade_continue_btn_text' => 'Folytatás', + 'upgrade_db_btn_text' => 'Frissítés', + 'upgrade_db_text_1' => 'Frissíteni fogom az adatbázist erről a verziószámról: ', + 'upgrade_db_text_2' => 'a legfrissebb adatbázis verzióra', + 'upgrade_db_text_3' => 'Kattintson a "Frissítés" gombra és dőljön hátra amíg a csoda megvalósul.', + 'upgrade_db_text_4' => 'Egyébként, ha szeretne egy biztonsági mentést az adatbázisról, pipálja be a dobozt és seperc alatt azt is megcsinálom.', + 'upgrade_db_text_5' => 'Elemtsem az adatbázist frissítés előtt? (Erősen ajánlott)', + 'upgrade_db_title' => 'Az Ushahidi adatbázis frissítése', + 'upgrade_db_info' => 'Az Ushahidi frissült! Mielőtt másba kezdene, frissíteni kell az adatbázist is a legújabb , (%s) verzióra.', + 'upgrade_db_up_to_date' => 'Az adatbázis verzió naprakész.', + 'upgrade_failed' => 'A frissítést nem sikerült végrehajtani', + 'upgrade_manual' => 'Kézi frissítés', + 'upgrade_status' => 'Az Ushahidi frissítésenek az állapota', + 'upgrade_text_1' => 'Útmutató az Ushadishi letelepitése manuális frissítéséhez', + 'upgrade_text_2' => 'Lépés 1: Töltse le a legújabb Ushahidi buildet innen: http://download.ushahidi.com', + 'upgrade_text_3' => 'Lépés 2: Válassza ki a webszervert futtató operációs rendszernek megfelelő eszközt/módszert (pl.: telnet, ftp, ssh), majd lépjen be a webszerverre, és a legújabb builddel írja felül a mappa tartalmát! Mindet, KIVÉTEL:', + 'upgrade_text_4' => 'Lépés 4: A táblázatok frissítéséhez kattintson a "Folytatás" gombra', + 'upgrade_tables' => '3. lépés: Látogasson el az sql mappába. "Kézzel" futtassa le a frissítő -.sql file-t a jelenlegi adatbázis verzióból kiindulva a legutolsó sql frissítő file-ig. ', + 'upgrade_text_5' => 'Automatikus frissítéshez kattintson az alábbi gombra.', + 'upgrade_text_6' => 'Automatikus frissítéshez nyomja meg a lenti gombot.', + 'upgrade_title_text' => 'Jelenleg az Ushahidi v%1$s verzióját az adatbázis %2$d verziójával használja %3$s környezetben.', + 'upgrading' => 'Frissítés', + 'upgrade_ftp_text' => 'Az egyszerű frissítés folytatásaként, a következő információra lesz szükség arról az FTP szerverről, amin a portál fut.', + 'upgrade_ftp_hostname' => 'FTP Kiszolgálónév: Például: "localhost"', + 'upgrade_ftp_password' => 'FTP jelszó:', + 'upgrade_ftp_username' => 'FTP Felhasználói név:', + 'upgrade_status_info' => 'Ez a legfrisebb Ushahidi verzió. ', + 'upgrade_status_info_2' => 'Nincs szükség frissítésre.', + 'upgrade_db_version' => 'Adatbázis verzió: %d', + 'upgrade_warning_software_version' => 'Figyelem! A szoftver verziószáma a version.php-ben és az adatbázisban nem egyezik.', + 'upgrade_warning_db_version' => 'Figyelem! Az adatbázis verziószáma a version.php-ben és az adatbázisban nem egyezik.', + 'upgrade_database' => 'Adatbázis:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'Béta!', + 'download' => 'Az ushahidi legfrissebb verziójának letöltése folyik...', + 'log_file' => 'Log fájl', + 'successfully_downloaded' => 'Sikeresen letöltve. Kicsomagolás...', + 'failed_downloading' => 'Sikertelen letöltés.', + 'successfully_unpacked' => 'Sikeres kicsomagolás. Fájlok másolása...', + 'failed_unpacking' => 'Sikertelen kicsomagolás.', + 'successfully_copied' => 'Sikeres fájl másolás. Adatbázis frissítése...', + 'failed_copying' => 'Sikertelen fájl másolás.', + 'backup_success' => 'Sikeres adatbázis mentés és frissítés.', + 'backup_failed' => 'Sikertelen adatbázis mentés.', + 'dbupgrade_success' => 'Sikeres adatbázis frissítés.', + 'deleting_files' => 'Letöltött fájlok törlése...', + 'upgrade_success' => 'SIKERES FRISSÍTÉS. View Log File', +); diff --git a/application/i18n/hy_AM/alerts.php b/application/i18n/hy_AM/alerts.php new file mode 100644 index 0000000000..07d9d10d2d --- /dev/null +++ b/application/i18n/hy_AM/alerts.php @@ -0,0 +1,53 @@ + array( + 'email' => 'Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:', + 'email_check' => 'Այս էլեկտրոնային փոստի հասցեն արդեն գրանցվել է նշված տարածքի վերաբերյալ ծանուցումներ ստանալու համար:', + 'length' => 'Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:', + 'required' => 'Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:', + ) , + 'alert_lat' => array( + 'between' => 'Դուք քարտեզի վրա ճիշտ վայր/տարածք չեք ընտրել:', + 'required' => 'Դուք քարտեզի վրա վայր/տարածք չեք ընտրել:', + ) , + 'alert_lon' => array( + 'between' => 'Դուք քարտեզի վրա ճիշտ վայր/տարածք չեք ընտրել:', + 'required' => 'Դուք քարտեզի վրա ճիշտ վայր/տարածք չեք ընտրել:', + ) , + 'alert_mobile' => array( + 'length' => '«Բջջային հեռախոս» դաշտում նշված թվերի քանակը ճիշտ չէ:', + 'mobile_check' => 'Այս բջջային հեռախոսահամարն արդեն գրանցվել է նշված տարածքի վերաբերյալ ծանուցումներ ստանալու համար:', + 'numeric' => '«Բջջային հեռախոս» դաշտում նշված հեռախոսահամարը ճիշտ չէ: Խնդրում ենք մուտքագրել միայն թվեր` ներառյալ երկրի կոդը:', + 'one_required' => 'Մուտքագրեք կամ Ձեր հեռախոսահամարը, կամ էլեկտրոնային փոստի հասցեն:', + 'required' => 'Մուտքագրեք Բջջային հեռախոսը, կամ հանեք վանդակից համապատասխան նշումը:', + ) , + 'alert_radius' => array( + 'in_array' => 'Դուք քարտեզի վրա չեք նշել ընդունելի շառավիղ:', + 'required' => 'Դուք քարտեզի վրա չեք նշել նախընտրելի շառավիղը:', + ) , + 'code_already_verified' => 'Այս կոդն արդեն հաստատվել է նախկինում:', + 'code_not_found' => 'Հաստատման այս կոդն անհայտ է: Խնդրում ենք ստուգել ինտերնետային կայքի հասցեն:', + 'code_verified' => ' Ձեր կոդը հաստատված է: Այժմ Դուք ծանուցումներ կստանաք Ձեր նշած տարածքում տեղի ունեցող միջադեպերի վերաբերյալ:', + 'confirm_request' => 'Ծանուցումների վերաբերյալ Ձեր հայտը հաստատելու համար խնդրում ենք մտնել ', + 'create_more_alerts' => 'Վերադարնալ ծանուցումների էջ` ծանուցման նոր հայտ ստեղծելու համար:', + 'email_alert_request_created' => 'Էլեկտրոնային փոստով ծանուցումներ ստանալու վերաբերյալ Ձեր հայցը ստեղծված է, հաստատման հաղորդագրությունն ուղղարկված է հետևյալ հասցեին` ', + 'email_code' => 'Խնդրում ենք մուտքագրել այստեղ Էլեկտրոնային փոստի հաստատման այն կոդը, որը Դուք ստացել եք: ', + 'email_error_head' => 'Էլեկտրոնային փոստով ծանուցումներ ստանալու վերաբերյալ Ձեր հայտը պահպանված Չէ:', + 'email_ok_head' => 'Էլեկտրոնային փոստով ծանուցումներ ստանալու վերաբերյալ Ձեր հայտը պահպանված է:', + 'error' => 'Համակարգը չկարողացավ կատարել հաստատման վերաբերյալ Ձեր հայտը:', + 'mobile_alert_request_created' => 'Բջջային ծանուցման վերաբերյալ Ձեր հայցը ստեղծված է, հաստատման հաղորդագրությունն ուղղարկված է հետևյալ հասցեին` ', + 'mobile_code' => 'Խնդրում ենք մուտքագրել այստեղ հաստատման այն կոդը, որը կարճ հաղորդագրությամբ ստացել եք Ձեր բջջային հեռախոսահամարին: ', + 'mobile_error_head' => 'Բջջային ծանուցման վերաբերյալ Ձեր հայտը պահպանված Չէ:', + 'mobile_ok_head' => 'Բջջաային ծանուցման վերաբերյալ Ձեր հայտը պահպանված է:', + 'settings_error' => 'Համակարգն անկարող է ճիշտ կերպով մշակել ծանուցումներն այս հայտի համար:', + 'unsubscribe' => 'Դուք ստացել եք այս էլեկտրոնային նամակը, քանի որ բաժանորդագրված եք ծանուցումներ ստանալու համար: Եթե չեք ցանկանում հետագայում ևս ծանուցումներ ստանալ, ապա մտեք ', + 'unsubscribed' => 'Դուք այլևս ծանուցումներ չեք ստանա հետևյալ աղբյուրից` ', + 'unsubscribe_failed' => 'Մեզ չհաջողվեց դադարեցնել Ձեր բաժանորդագրությունը: Խնդրում ենք ստուգել Ձեր կողմից նշված Ինտերնետային կայքի հասցեն:', + 'verification_email_subject' => 'Ծանուցումներ – հաստատում', + 'verify_code' => 'Դուք նշված տարածքի վերաբերյալ ծանուցումներ կստանաք Ձեր հայտի հաստատումից հետո միայն:', +); diff --git a/application/i18n/hy_AM/auth.php b/application/i18n/hy_AM/auth.php new file mode 100644 index 0000000000..bbb5b4c100 --- /dev/null +++ b/application/i18n/hy_AM/auth.php @@ -0,0 +1,45 @@ + array( + 'email' => 'Մուտքագրված էլ-փոստի հասցեն ճիշտ չէ:', + 'exists' => 'Ներողություն, բայց նշված էլ-փոստի հասցեով օգտագործող արդեն գոյություն ունի:', + 'length' => 'Էլ-փոստի հասցեն պետք է պարունակի առնվազն 4 և ոչ ավելի, քան 64 նիշ:', + 'required' => 'Մուտքագրեք էլ-փոստի հասցեն:', + ) , + 'name' => array( + 'length' => 'Անունը պետք է պարունակի առնվազն 3 և ոչ ավելի, քան 100 նիշ:', + 'required' => 'Մուտքագրեք անունը:', + 'standard_text' => 'Օգտագործողի անվան դաշտը պարունակում է անթույլատրելի նիշեր:', + ) , + 'password' => array( + 'length' => 'Օգտագործողի անունը պետք է պարունակի առնվազն ջ և ոչ ավելի, քան 16 նիշ:', + 'login error' => 'Գաղտնաբառը սխալ է մուտքագրված:', + 'matches' => 'Երկու դաշտերում էլ մուտքագրեք միևնույն գաղտնաբառը:', + 'required' => 'Մուտքագրեք գաղտնաբառը', + ) , + 'password_confirm' => array( + 'matches' => 'Գաղտնաբառը վերստուգող դաշտում մուտքագրվածը պետք է համապատասխանի գաղտնաբառի դաշտում մուտքագրվածին:', + ) , + 'resetemail' => array( + 'email' => 'Մուտքագրեք ճիշտ էլ-փոստի հասցե:', + 'invalid' => 'Ներողություն, բայց ձեր էլ-փոստի հասցեն մեզ մոտ գրացնված չէ:', + 'required' => 'Մուտքագրեք էլ-փոստի հասցեն:.', + ) , + 'roles' => array( + 'required' => 'Դուք պետք է սահմանեք առնվազն մեկ դերակատարում', + 'values' => 'Դուք պետք է ընտրեք ԱԴՄԻՆ կան ՕԳՏԱԳՈՐԾՈՂ դերակատարումներից մեկը:', + ) , + 'username' => array( + 'admin' => 'Ադմինիստրատորի դերակատարմամբ օգտագործողի գործառույթները չեն կարող փոփոխվել:', + 'exists' => 'Ներողություն, բայց տվյալ օգտագործողի անունն արդեն օգտագործվում է', + 'length' => 'Օգտագործողի անունը պետք է պարունակի առնվազն 2 և ոչ ավելի, քան 16 նիշ:', + 'login error' => 'Մուտքագրեք ճիշտ օգտագործողի անուն:', + 'required' => 'Մուտքագրեք օգտագործողի անունը:', + 'superadmin' => 'Գերակա դերակատարմամբ ադմինիստրատորի գործառույթները չեն կարող փոփոխվել:', + ) , +); diff --git a/application/i18n/hy_AM/bug.php b/application/i18n/hy_AM/bug.php new file mode 100644 index 0000000000..bfc461ea58 --- /dev/null +++ b/application/i18n/hy_AM/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Մուտքագրեք ճիշտ պաշտպանության կոդ:', + 'required' => 'Մուտքագրեք պաշտպանության կոդը:', + ) , + 'email' => array( + 'email' => 'Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:', + 'length' => 'Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:', + 'required' => 'Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:', + ) , + 'error' => array( + 'required' => 'Մուտքագրեք սխալի նկարագրությունը:', + ) , + 'subject' => array( + 'length' => '«Թեմա» դաշտը չի կարող պարունակել 3-ից պակաս նիշ:', + 'required' => 'Մուտքագրեք «Թեմա» դաշտը:', + ) , + 'yourname' => array( + 'length' => '«Անուն» դաշտը չի կարող պարունակել 3-ից պակաս նիշ:', + 'required' => 'Մուտքագրեք «Անուն» դաշտը:', + ) , +); diff --git a/application/i18n/hy_AM/category.php b/application/i18n/hy_AM/category.php new file mode 100644 index 0000000000..b23544ec52 --- /dev/null +++ b/application/i18n/hy_AM/category.php @@ -0,0 +1,30 @@ + array( + 'length' => 'Գույնը պետք է պարունակի 6 նիշ:', + 'required' => 'Նշեք կատեգորիայի գույնը:', + ) , + 'category_description' => array( + 'required' => 'Մուտքագրեք նկարագրությունը', + ) , + 'category_image' => array( + 'size' => 'Վերբեռնվող նկարի չափը չի կարող գերազանցել 50KB-ը:', + 'type' => 'Նկարի դաշտը ճիշտ նկար չի պարունակում. ընդունելի են միայն հետևյալ ձևաչափերը` .JPG, .PNG և .GIF.', + 'valid' => 'Նկարի դաշտը ճիշտ ֆայլ չի պարունակում: ', + ) , + 'category_title' => array( + 'length' => 'Վերնագիրը պետք է պարունակի առնվազն 3 և ոչ ավելի, քան 80 նիշ:', + 'required' => 'Մուտքագրեք վերնագիրը:', + ) , + 'parent_id' => array( + 'exists' => 'Ծնող կատեգորիան գոյություն չունի:', + 'numeric' => 'Ծնող կատեգորիայի դաշտը պետք է պարունակի միայն թվեր:', + 'required' => 'Մուտքագրեք ծնող կատեգորիայի դաշտը:', + 'same' => 'Կատեգորիան և նրա ծնող կատեգորիան չեն կարող լինել միևնույնը:', + ) , +); diff --git a/application/i18n/hy_AM/comments.php b/application/i18n/hy_AM/comments.php new file mode 100644 index 0000000000..38a2598ba8 --- /dev/null +++ b/application/i18n/hy_AM/comments.php @@ -0,0 +1,24 @@ + array( + 'default' => 'Մուտքագրեք ճիշտ պաշտպանության կոդ:', + 'required' => 'Մուտքագրեք պաշտպանության կոդը:', + ) , + 'comment_author' => array( + 'length' => 'Անվան դաշտը պետք է պարունակի առնվազն 3 նիշ:', + 'required' => 'Մուտքագրեք անունը:', + ) , + 'comment_description' => array( + 'required' => 'Մուտքագրեք մեկնաբանությունը:', + ) , + 'comment_email' => array( + 'email' => 'Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:', + 'length' => 'Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:', + 'required' => 'Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:', + ) , +); diff --git a/application/i18n/hy_AM/contact.php b/application/i18n/hy_AM/contact.php new file mode 100644 index 0000000000..87121ef67a --- /dev/null +++ b/application/i18n/hy_AM/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Մուտքագրեք ճիշտ պաշտպանության կոդ:', + 'required' => 'Մուտքագրեք պաշտպանության կոդը:', + ) , + 'contact_email' => array( + 'email' => 'Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:', + 'length' => 'Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:', + 'required' => 'Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:', + ) , + 'contact_message' => array( + 'required' => 'Մուտքագրեք հաղորդագրությունը:', + ) , + 'contact_name' => array( + 'length' => 'Անվան դաշտը պետք է պարունակի առնվազն 3 նիշ:', + 'required' => 'Մուտքագրեք անունը:', + ) , + 'contact_subject' => array( + 'length' => 'Վերնագրի դաշտը պետք է պարունակի առնվազն 3 նիշ: ', + 'required' => 'Մուտքագրեք վերնագիրը:', + ) , +); diff --git a/application/i18n/hy_AM/core.php b/application/i18n/hy_AM/core.php new file mode 100644 index 0000000000..393eaa0274 --- /dev/null +++ b/application/i18n/hy_AM/core.php @@ -0,0 +1,14 @@ + 'The %s driver for the %s library must implement the %s interface', + 'driver_not_found' => 'The %s driver for the %s library could not be found', + 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file', + 'resource_not_found' => 'The requested %s, %s, could not be found', + 'there_can_be_only_one' => 'There can be only one instance of Ushahidi per page request', + 'view_set_filename' => 'You must set the the view filename before calling render', +); diff --git a/application/i18n/hy_AM/database.php b/application/i18n/hy_AM/database.php new file mode 100644 index 0000000000..5b19dd7549 --- /dev/null +++ b/application/i18n/hy_AM/database.php @@ -0,0 +1,9 @@ + 'Table "%s" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi', +); diff --git a/application/i18n/hy_AM/datetime.php b/application/i18n/hy_AM/datetime.php new file mode 100755 index 0000000000..97a73f3a48 --- /dev/null +++ b/application/i18n/hy_AM/datetime.php @@ -0,0 +1,7 @@ + 'Արձագանքի մանրամասները', + 'feedback_date' => 'Ամսաթիվ', + 'feedback_actions' => 'Գործողություններ', + + 'feedback_title' => array + ( + 'required' => 'Մուտքագրեք վերնագիրը:', + 'length' => 'Վերնագիրը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:' + ), + + 'feedback_message' => array + ( + 'required' => 'Մուտքագրեք հաղորդագրությունը:', + ), + + 'person_name' => array + ( + 'required' => 'Մուտքագրեք Ձեր անուն, ազգանունը:', + + ), + + 'person_email' => array + ( + 'required' => 'Մուտքագրեք Ձեր էլ. փոստի հասցեն:', + 'email' => 'Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:', + ), + + + 'feedback_captcha' => array + ( + 'required' => 'Մուտքագրեք պաշտպանության կոդը:', + 'valid' => 'Մուտքագրեք ճիշտ պաշտպանության կոդ:' + ) + +); +?> + diff --git a/application/i18n/hy_AM/feeds.php b/application/i18n/hy_AM/feeds.php new file mode 100644 index 0000000000..273e71d7e1 --- /dev/null +++ b/application/i18n/hy_AM/feeds.php @@ -0,0 +1,19 @@ + 'Ամսաթիվ', + 'feed_name' => array( + 'length' => 'Լրահոսի անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 70 նիշ:', + 'required' => 'Մուտքագրեք լրահոսի անվանումը', + ) , + 'feed_url' => array( + 'required' => 'Մուտքագրեք լրահոսի URL-ն:', + 'url' => 'URL-ն ճիշտ մուտքագրեք, օր. http://www.ushahidi.com', + ) , + 'source' => 'Աղբյուր', + 'title' => 'Վերնագիր', +); diff --git a/application/i18n/hy_AM/footer.php b/application/i18n/hy_AM/footer.php new file mode 100644 index 0000000000..413d3888fa --- /dev/null +++ b/application/i18n/hy_AM/footer.php @@ -0,0 +1,9 @@ + 'php5-curl is not installed on this system', +); diff --git a/application/i18n/hy_AM/form.php b/application/i18n/hy_AM/form.php new file mode 100644 index 0000000000..f11186705c --- /dev/null +++ b/application/i18n/hy_AM/form.php @@ -0,0 +1,45 @@ + array( + 'length' => 'Դաշտի Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:', + ) , + 'field_height' => array( + 'between' => 'Դաշտի Բարձրության համար մուտքագրեք 0-ից 50-ը արժեք:', + ) , + 'field_isdate' => array( + 'between' => 'Ընտրված է ոչ ճիշտ արժեք:', + 'required' => 'Ընտրեք Այո կամ Ոչ:', + ) , + 'field_name' => array( + 'length' => 'Դաշտի Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:', + 'required' => 'Մուտքագրեք Դաշտի Անվանումը:', + ) , + 'field_required' => array( + 'between' => 'Ընտրված է ոչ ճիշտ արժեք:', + 'required' => 'Ընտրեք Այո կամ Ոչ:', + ) , + 'field_type' => array( + 'numeric' => 'Ընտրեք ճիշտ Դաշտի Տիպ:', + 'required' => 'Ընտրեք Դաշտի Տիպը:', + ) , + 'field_width' => array( + 'between' => 'Դաշտի Լայնքի համար մուտքագրեք 0-ից 300-ը արժեք:', + ) , + 'form_description' => array( + 'required' => 'Մուտքագրեք ֆորմայի Նկարագրությունը:', + ) , + 'form_id' => array( + 'default' => 'Լռությամբ ֆորման չի կարող ջնջվել:', + 'numeric' => 'Ընտրեք ֆորման, որին պետք է ավելացնել տվյալ դաշտը:', + 'required' => 'Ընտրեք ֆորման, որին պետք է ավելացնել տվյալ դաշտը:', + ) , + 'form_title' => array( + 'length' => 'Ֆորմայի անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:', + 'required' => 'Մուտքագրեք ֆորմայի անվանումը:', + ) , +); diff --git a/application/i18n/hy_AM/imap.php b/application/i18n/hy_AM/imap.php new file mode 100644 index 0000000000..f30fa477e4 --- /dev/null +++ b/application/i18n/hy_AM/imap.php @@ -0,0 +1,10 @@ + 'IMAP հոսք չհաջողվեց բացել:', + 'unsupported_service' => 'Ծառայությունը չի ապահովվում:', +); diff --git a/application/i18n/hy_AM/installer.php b/application/i18n/hy_AM/installer.php new file mode 100644 index 0000000000..8cf3a47b9b --- /dev/null +++ b/application/i18n/hy_AM/installer.php @@ -0,0 +1,29 @@ + 'If you are running Ushahidi on your own computer, this will more than likely be "localhost". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider', + 'db_information_link' => 'For more information, please check out this article on the wiki that talks about databases in more detail', + 'default_language_description' => 'Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own', + 'error_summary' => 'Listed below is a summary of the errors we encountered', + 'files_location_text' => 'The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory', + 'index' => array( + 'advanced_installation_description' => 'Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details', + 'basic_installation_description' => 'Simple and fast. All you need is your website\'s root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later', + 'welcome' => 'Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below', + ) , + 'mail_server_username_description' => 'If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username', + 'map_provider_description' => 'Ushahidi works equally well with any of these four mapping providers: Google, Bing, Yahoo or Open Street Map. Choose the one that has the most detail in your area', + 'select_mail_server_ssl_description' => 'Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security', + 'setup_sms' => 'Setup your SMS server', + 'site_email_alerts_description' => 'When your site visitors sign up for email alerts, they will recieve emails from this address. This email address does not have to be the same as the Site Email Address', + 'summary' => array( + 'text_1' => 'The files and folders listed below need to be writable by your webserver', + 'text_3' => 'Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions', + 'text_4' => 'For the installation process, please have the following bits of information on hand', + ) , + 'table_prefix_description' => 'Normally you would not change the table prefix. However, If you want to run multiple Ushahidi installations from a single database you can do that by changing the prefix here', +); diff --git a/application/i18n/hy_AM/layer.php b/application/i18n/hy_AM/layer.php new file mode 100644 index 0000000000..eaf6f26465 --- /dev/null +++ b/application/i18n/hy_AM/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Գույնի երկարությունը պետք է լինի 6 նիշ:', + 'required' => 'Նշեք շերտավորման գույնը:', + ) , + 'layer_file' => array( + 'type' => 'Ֆայլը վնասված է կամ չունի ճիշտ ձևաչափ: Ընդունելի ձևաչափերն են` .KMZ, .KML:', + 'valid' => 'Ֆայլը վնասված է կամ չունի ճիշտ ձևաչափ:', + ) , + 'layer_name' => array( + 'length' => 'Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 80 նիշ:', + 'required' => 'Մուտքագրեք անվանումը:', + ) , + 'layer_url' => array( + 'atleast' => 'Նշեք կա՛մ KML/KMZ Url, կա՛մ KML/KMZ ֆայլ:', + 'both' => 'Դուք չեք կարող միաժամանակ նշել և՛ KML/KMZ Url, և՛ KML/KMZ ֆայլ:', + 'url' => 'Մուտքագրեք ճիշտ URL: Օր. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/hy_AM/libraries.php b/application/i18n/hy_AM/libraries.php new file mode 100644 index 0000000000..be51fe600a --- /dev/null +++ b/application/i18n/hy_AM/libraries.php @@ -0,0 +1,22 @@ + 'Չհաջողվեց միանալ akismet սերվերին:', + 'akismet_cannot_retrieve' => 'Չհաջողվեց ստանալ պատասխան Akismet սերվերից:', + 'askimet_invalid_apikey' => 'Akismet API բանալին վավեր չէ:', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2', + 'clickatell_message_too_long' => 'Ձեր հաղորդագրությունը չափազանց երկար է (նիշերի քանակը=', + 'clickatell_no_destination_address' => 'Նշեք հասցեն (Դեպի):', + 'clickatell_no_sender_address' => 'Նշեք աղբյուրի հասցեն (Որտեղից):', + 'clickatell_unicode_message_too_long' => 'Ձեր հաղորդագրությունը չափազանց երկար է (նիշերի քանակը=', + 'clickatell_unsupported_method' => 'Ուղարկման մեթոդը ընդունելի չէ:', + 'upgrade_directory_not_deleted' => 'Directory %s could not be deleted', + 'upgrade_failed' => 'Downloading the latest ushahidi failed. HTTP status code', + 'upgrade_file_not_copied' => 'File %s could not be copied', + 'upgrade_file_not_deleted' => 'File %s could not be deleted', + 'upgrade_zip_error' => 'The downloaded ushahidi zip file %s, could not be written', +); diff --git a/application/i18n/hy_AM/maintenance.php b/application/i18n/hy_AM/maintenance.php new file mode 100644 index 0000000000..97a73f3a48 --- /dev/null +++ b/application/i18n/hy_AM/maintenance.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Մուտքագրեք ճիշտ պաշտպանության կոդ:', + 'required' => 'Մուտքագրեք պաշտպանության կոդը:', + ) , + 'email' => array( + 'email' => 'Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:', + 'length' => 'Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:', + 'required' => 'Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:', + ) , + 'message' => array( + 'required' => 'Մուտքագրեք հաղորդագրությունը:', + ) , + 'name' => array( + 'length' => 'Անվանումը պետք է պարունակի առնվազն 3 նիշ:', + 'required' => 'Մուտքագրեք անվանումը:', + ) , + 'phone' => array( + 'length' => 'Հեռախոսահամարը ճիշտ չէ մուտքագրված:', + ) , +); diff --git a/application/i18n/hy_AM/mhi.php b/application/i18n/hy_AM/mhi.php new file mode 100755 index 0000000000..a33d364389 --- /dev/null +++ b/application/i18n/hy_AM/mhi.php @@ -0,0 +1,12 @@ + array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'required' => 'Please provide a valid email address', + ) , +); diff --git a/application/i18n/hy_AM/notifications.php b/application/i18n/hy_AM/notifications.php new file mode 100644 index 0000000000..9cd68e0dca --- /dev/null +++ b/application/i18n/hy_AM/notifications.php @@ -0,0 +1,26 @@ + 'Այս հաղորդագրությունը ուղարկվել է Ձեր կայքից:', + 'admin_login_url' => 'Ադմինիստրատորի Մուտք', + 'admin_new_comment' => array( + 'message' => 'Ձեր կայքում նոր մեկնաբանություն է կատարվել ի պատասխան`', + 'subject' => 'Նոր Մեկնաբանություն', + ) , + 'admin_new_email' => array( + 'message' => 'Ձեր կայքին նոր էլեկտրոնային նամակ է ուղարկվել:', + 'subject' => 'Նոր նամակ', + ) , + 'admin_new_report' => array( + 'message' => 'Ձեր կայքում նոր ահազանգ է ստացվել:', + 'subject' => 'Նոր Ահազանգ', + ) , + 'admin_new_sms' => array( + 'message' => 'Ձեր կայքին նոր կարճ հաղորդագրություն է ուղարկվել:', + 'subject' => 'Նոր Կարճ Հաղորդագրություն', + ) , +); diff --git a/application/i18n/hy_AM/organization.php b/application/i18n/hy_AM/organization.php new file mode 100644 index 0000000000..db9c8badb7 --- /dev/null +++ b/application/i18n/hy_AM/organization.php @@ -0,0 +1,7 @@ + array( + 'required' => 'Please enter a Page Title', + ) , + 'page_tab' => array( + 'required' => 'Please enter a Page Tab Name', + ) , + 'page_description' => array( + 'required' => 'Please enter a Page Description', + ) , +); diff --git a/application/i18n/hy_AM/permissions.php b/application/i18n/hy_AM/permissions.php new file mode 100644 index 0000000000..97a73f3a48 --- /dev/null +++ b/application/i18n/hy_AM/permissions.php @@ -0,0 +1,7 @@ + array( + 'between' => 'Բեռնման համար ընտրեք վավեր տվյալներ:', + 'numeric' => 'Բեռնման համար ընտրեք վավեր տվյալներ:', + ) , + 'data_point' => array( + 'between' => 'Բեռնման համար ընտրեք վավեր տվյալներ:', + 'numeric' => 'Բեռնման համար ընտրեք վավեր տվյալներ:', + 'required' => 'Բեռնման համար ընտրեք վավեր տվյալներ:', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Նշեք վավեր ամսաթիվ "Սկսած" դաշտի համար:', + 'range' => 'Նշեք վավեր ամսաթիվ "Սկսած" դաշտի համար: Այն չի կարող նորկայացնել ավելի ուշ ամսաթիվ, քան այսօր է:', + ) , + 'incident_active' => array( + 'between' => 'Նշեք վավեր արժեք "Հաստատել այս Ահազանգը?"-ի համար:', + 'required' => 'Նշեք վավեր արժեք "Հաստատել այս Ահազանգը?"-ի համար:', + ) , + 'incident_ampm' => array( + 'validvalues' => 'AM/PM դաշտը սխալ է մուտքագրված:', + ) , + 'incident_category' => array( + 'numeric' => 'Կատեգորիան ճիշտ չէ մուտքագրված:', + 'required' => 'Նշեք Կատեգորիան:', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Ամսաթվը սխալ ձևաչափով է մուտքագրված:', + 'date_mmddyyyy' => 'Ամսաթվը սխալ ձևաչափով է մուտքագրված:', + 'required' => 'Մուտքագրեք Ամսաթիվը:', + ) , + 'incident_description' => array( + 'required' => 'Մուտքագրեք Նկարագրությունը:', + ) , + 'incident_hour' => array( + 'between' => 'Ժամը սխալ ձևաչափով է մուտքագրված:', + 'required' => 'Մուտքագրեք Ժամը:', + ) , + 'incident_information' => array( + 'alpha' => 'Նշեք վավեր արժեք "Տեղեկատվության Հավանականությունը" դաշտի համար:', + 'length' => 'Նշեք վավեր արժեք "Տեղեկատվության Հավանականությունը" դաշտի համար:', + ) , + 'incident_minute' => array( + 'between' => 'Րոպեները սխալ ձևաչափով են մուտքագրված:', + 'required' => 'Մուտքագրեք րոպեները:', + ) , + 'incident_news' => array( + 'url' => 'Հղումը նորության վրա ճիշտ չէ մուտքագրված: Մուտքագրեք վավեր URL:', + ) , + 'incident_photo' => array( + 'size' => 'Վերբեռնվող նկարի չափը չպետք է գերազանցի 2 Մեգաբայթը:', + 'type' => 'Վերբեռնման համար նշված նկարները վնասված են կամ չունեն ճիշտ ձևաչափ: Ընդունելի ձևաչափերն են` .JPG, .PNG և .GIF:', + 'valid' => 'Վերբեռնման համար նշված նկարները վնասված են կամ չունեն ճիշտ ձևաչափ:', + ) , + 'incident_source' => array( + 'alpha' => 'Նշեք վավեր արժեք "Աղբյուրի Հավաստիությունը" դաշտի համար:', + 'length' => 'Նշեք վավեր արժեք "Աղբյուրի Հավաստիությունը" դաշտի համար:', + ) , + 'incident_title' => array( + 'length' => 'Վերնագիրը պետք է պարունակի առնվազն 3 և առավելագույնը` 200 նիշ:', + 'required' => 'Մուտքագրեք Վերնագիրը:', + ) , + 'incident_verified' => array( + 'between' => 'Նշեք վավեր արժեք "Հավաստել այս Ահազանգը?"-ի համար:', + 'required' => 'Նշեք վավեր արժեք "Հավաստել այս Ահազանգը?"-ի համար:', + ) , + 'incident_video' => array( + 'url' => 'Հղումը տեսահոլովակի վրա ճիշտ չէ մուտքագրված: Մուտքագրեք վավեր URL:', + ) , + 'latitude' => array( + 'between' => 'Լայնությունը ճիշտ չէ մուտքագրված:', + 'required' => 'Լայնությունը մուտքագրված չէ: Քարտեզի վրա նշեք տեղանքը:', + ) , + 'locale' => array( + 'alpha_dash' => 'Լեզուն ճիշտ չէ մուտքագրված: ', + 'exists' => 'Ահազանգն արդեն ունի այս լեզվով թարգմանություն:', + 'length' => 'Լեզուն ճիշտ չէ մուտքագրված: ', + 'locale' => 'Ահազանգը և նրա թարգմանությունը միևնույն լեզվով են:', + 'required' => 'Նշեք լեզուն:', + ) , + 'location_name' => array( + 'length' => 'Տեղանքի անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 200 նիշ:', + 'required' => 'Մուտքագրեք տեղանքի անվանումը:', + ) , + 'longitude' => array( + 'between' => 'Երկայնությունը ճիշտ չէ մուտքագրված:', + 'required' => 'Երկայնությունը մուտքագրված չէ: Քարտեզի վրա նշեք տեղանքը:', + ) , + 'person_email' => array( + 'email' => 'Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:', + 'length' => 'Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:', + ) , + 'person_first' => array( + 'length' => 'Անունը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:', + ) , + 'person_last' => array( + 'length' => 'Ազգանունը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Նշեք վավեր ամսաթիվ "Մինչ" դաշտի համար:', + 'range' => 'Նշեք վավեր ամսաթիվ "Մինչ" դաշտի համար: Այն չի կարող նորկայացնել ավելի ուշ ամսաթիվ, քան այսօր է:', + 'range_greater' => '"Սկսած" դաշտում նշված ամսաթիվը չի կարող մեծ լինել "Մինչ" դաշտում նշված ամսաթվից:', + ) , +); diff --git a/application/i18n/hy_AM/reporters.php b/application/i18n/hy_AM/reporters.php new file mode 100755 index 0000000000..f1e2304963 --- /dev/null +++ b/application/i18n/hy_AM/reporters.php @@ -0,0 +1,18 @@ + array( + 'between' => 'The latitude field does not appear to contain a valid latitude?', + ) , + 'level_id' => array( + 'numeric' => 'The Reporter Level field does not appear to contain a valid Level?', + 'required' => 'The Reporter Level field does not appear to contain a valid Level?', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude?', + ) , +); diff --git a/application/i18n/hy_AM/reports.php b/application/i18n/hy_AM/reports.php new file mode 100644 index 0000000000..97a73f3a48 --- /dev/null +++ b/application/i18n/hy_AM/reports.php @@ -0,0 +1,7 @@ + array( + 'between' => '"Թույլատրե՞լ օգտագործողներին մեկնաբանել ահազանգերը" դաշտը չի պարունակում վավեր արժեք:', + 'required' => '"Թույլատրե՞լ օգտագործողներին մեկնաբանել ահազանգերը" դաշտի արժեքը նշված չէ:', + ) , + 'allow_feed' => array( + 'between' => '"Ցուցադրե՞լ RSS լրահոսը կայքում" դաշտը չի պարունակում վավեր արժեք:', + 'required' => '"Ցուցադրե՞լ RSS լրահոսը կայքում" դաշտի արժեքը նշված չէ:', + ) , + 'allow_reports' => array( + 'between' => '"Թույլատրե՞լ օգտագործողներին ահազանգել" դաշտը չի պարունակում վավեր արժեք:', + 'required' => '"Թույլատրե՞լ օգտագործողներին ահազանգել" դաշտի արժեքը նշված չէ:', + ) , + 'allow_stat_sharing' => array( + 'between' => '"Ուղարկել կայքի վիճակագրությունը" դաշտը չի պարունակում վավեր արժեք:', + 'required' => '"Ուղարկել կայքի վիճակագրությունը" դաշտի արժեքը նշված չէ:', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Մուտքագրեք Akismet դաշտի համար վավեր արժեք:', + 'length' => 'Akismet դաշտը չի պարունակում վավեր արժեք:', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Ձեր սերվերը թույլ չի տալիս օգտագործել մաքուր URL-ներ: Դուք պետք է փոփոխություններ կատարեք Ձեր սերվերի կարգավորումներում: Ավելի մանրամասն կարող եք կարդալ այստեղ', + 'clean_url_enabled' => 'Հնարավորություն է տալիս դիմել Ushahidi-ին առանց հասցեի տողում նշելով "index.php":', + 'enable_clean_url' => 'Թույլատրել մաքուր URL-ներ', + 'title' => 'Մաքուր URL-ներ', + ) , + 'clickatell_api' => array( + 'length' => 'Clickatell API Համարը պետք է պարունակի առավելագույնը 20 նիշ:', + 'required' => 'Մուտքագրեք Clickatell API Համարը:', + ) , + 'clickatell_password' => array( + 'length' => 'Clickatell գաղտնաբառը պետք է պարունակի առնվազն 5 և առավելագույնը` 50 նիշ:', + 'required' => 'Մուտքագրեք Clickatell գաղտնաբառը:', + ) , + 'clickatell_username' => array( + 'length' => 'Clickatell Օգտագործողի Անունը պետք է պարունակի առավելագույնը 50 նիշ:', + 'required' => 'Մուտքագրեք Clickatell Օգտագործողի Անունը:', + ) , + 'configure_map' => 'Ճշգրտել Քարտեզը', + 'default_location' => 'Լռությամբ վայրը', + 'default_map_all' => array( + 'alpha_numeric' => 'Մուտքագրեք գույնի վավեր արժեք:', + 'length' => 'Գույնի երկարությունը պետք է լինի 6 նիշ:', + 'required' => 'Մուտքագրեք գույնի արժեքը:', + ) , + 'default_map_view' => 'Լռությամբ քարտեզի տեսքը', + 'default_zoom_level' => 'Լռությամբ քարտեզի Zoom-ի մակարդակը', + 'download_city_list' => 'Ստանալ քաղաքների անունները ԳեոԱնուններից', + 'email_host' => array( + 'length' => 'Էլ. փոստի սերվերի Host-ը չափազանց երկար է:', + 'numeric' => 'Մուտքագրեք Էլ. փոստի սերվերի Host-ը:', + ) , + 'email_password' => array( + 'length' => 'Էլ. փոստի սերվերի Գաղտնաբառը պետք է պարունակի առնվազն 5 և առավելագույնը` 50 նիշ:', + 'required' => 'Մուտքագրեք Էլ. փոստի սերվերի Գաղտնաբառը:', + ) , + 'email_port' => array( + 'length' => 'Էլ. փոստի սերվերի Պորտի համարը չափազանց երկար է:', + 'numeric' => 'Էլ. փոստի սերվերի Պորտի համարը պետք է պարունակի միայն թվեր:', + ) , + 'email_servertype' => array( + 'length' => 'Էլ. փոստի սերվերի Տիպը չափազանց երկար է:', + 'required' => 'Մուտքագրեք Էլ. փոստի սերվերի Տիպը:', + ) , + 'email_username' => array( + 'length' => 'Էլ. փոստի սերվերի Օգտագործողի անունը պետք է պարունակի առավելագույնը 50 նիշ:', + 'required' => 'Մուտքագրեք Էլ. փոստի սերվերի Օգտագործողի անունը:', + ) , + 'google_analytics' => array( + 'length' => 'Google Analytics դաշտը պետք է պարունակի վավեր Web Property ID UA-XXXXX-XX ձևաչափով:', + ) , + 'items_per_page' => array( + 'between' => '"Ահազանգերի քանակը մեկ էջում (կայքում)" դաշտը չի պարունակում վավեր արժեք:', + 'required' => 'Մուտքագրեք "Ահազանգերի քանակը մեկ էջում (կայքում)":', + ) , + 'items_per_page_admin' => array( + 'between' => '"Ահազանգերի քանակը մեկ էջում (ադմինիստրատորի վահանակում)" դաշտը չի պարունակում վավեր արժեք:', + 'required' => 'Մուտքագրեք "Ահազանգերի քանակը մեկ էջում (ադմինիստրատորի վահանակում)":', + ) , + 'map' => array( + 'default_location' => 'Ընտրեք քարտեզի ապահովման աղբյուրը, ստացեք API բանալի ապահովողի կայքից և մուտքագրեք այդ API բանալին', + 'zoom' => 'Zoom-ի մակարդակը', + ) , + 'map_provider' => array( + 'choose' => 'Ընտրեք քարտեզի ապահովման աղբյուրը', + 'enter_api' => 'Մուտքագրեք ստացված API բանալին', + 'get_api' => 'Ստացեք API բանալին', + 'info' => 'Ընտրեք քարտեզի ապահովման աղբյուրը, ստացեք API բանալի ապահովողի կայքից և մուտքագրեք այդ API բանալին', + 'name' => 'Քարտեզի աղբյուրը', + ) , + 'map_settings' => 'Քարտեզի Կարգավորումներ', + 'multiple_countries' => 'Համակարգը ներառու՞մ է մի քանի երկրներ.', + 'select_default_location' => 'Ընտրեք լռությամբ երկիրը', + 'set_location' => 'Նշեք քարտեզի վրա ճշգրիտ վայրը', + 'site' => array( + 'allow_clustering' => 'Կլաստերավորե՞լ ահազանգերը քարտեզի վրա', + 'allow_comments' => 'Թույլատրե՞լ օգտագործողներին մեկնաբանել ահազանգերը', + 'allow_feed' => 'Ցուցադրե՞լ RSS լրահոսը կայքում', + 'allow_reports' => 'Թույլատրե՞լ օգտագործողներին ահազանգել', + 'api_akismet' => 'Akismet Բանալի', + 'default_category_colors' => 'Բոլոր կատեգորիաների համար լռությամբ գույնը', + 'display_contact_page' => 'Ցուցադրել "Կապ" էջը', + 'display_howtohelp_page' => 'Ցուցադրել "Ինչպե՞ս օգնել" էջը', + 'email_alerts' => 'Ծանուցումների էլ. փոստի հասցեն', + 'email_notice' => 'Որպեսզի էլ. փոստով ստանաք ահազանգերը, կարգավորեք Ձեր էլ. փոստի պարամետրերը.', + 'email_site' => 'Կայքի էլ. փոստի հասցեն', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Ահազանգերի քանակը մեկ էջում (կայքում)', + 'items_per_page_admin' => 'Ահազանգերի քանակը մեկ էջում (ադմինիստրատորի վահանակում)', + 'kismet_notice' => 'Պաշտպանեք ՍՊԱՄ-ից, օգտագործելով AkismetAutomattic կողմից.
Դուք կարող եք ստանալ անվճար API բանալի գրանցելով WordPress.com հաշիվ', + 'laconica_configuration' => 'Laconica իրավագրերը', + 'laconica_site' => 'Laconica կայքը ', + 'language' => 'Կայքի լեզուն', + 'name' => 'Կայքի Անվանումը', + 'share_site_stats' => 'Ուղարկել կայքի վիճակագրությունը API', + 'tagline' => 'Կայքի Վերնագիրը', + 'title' => 'Կայքի կարգավորումներ', + 'twitter_configuration' => 'Twitter իրավագրերը', + 'twitter_hashtags' => 'Հեշտեգեր - բաժանեք ստորակետերով ', + ) , + 'site_email' => array( + 'email' => 'Կայքի էլ. փոստի դաշտում նշված հասցեն ճիշտ չէ:', + 'length' => 'Կայքի էլ. փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 100 նիշ:', + ) , + 'site_name' => array( + 'length' => 'Կայքի Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 50 նիշ:', + 'required' => 'Մուտքագրեք Կայքի Անվանումը', + ) , + 'site_tagline' => array( + 'length' => 'Կայքի Վերնագիրը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:', + 'required' => 'Մուտքագրեք Կայքի Վերնագիրը', + ) , + 'sms' => array( + 'clickatell_api' => 'Ձեր Clickatell API Համարը', + 'clickatell_check_balance' => 'Ստուգեք Ձեր Clickatell Կրեդիտի Հաշվեկշիռը', + 'clickatell_load_balance' => 'Բեռնել Կրեդիտի Հաշվեկշիռը', + 'clickatell_password' => 'Ձեր Clickatell գաղտնաբառը', + 'clickatell_text_1' => 'Միացեք Clickatell ծառայությանը հետևյալ հղման միջոցով', + 'clickatell_text_2' => 'Ստորև մուտքագրեք Clickatell-ի Ձեր տվյալները', + 'clickatell_username' => 'Ձեր Clickatell Օգտագործողի Անունը', + 'flsms_text_1' => 'Մուտքագրեք հեռախոսահամարը(ները), որը միացված է FrontlineSMS-ին:', + 'flsms_text_2' => 'Համարը մուտքագրեք առանց որևէ + կամ - նշանների', + 'option_1' => 'Տարբերակ 1: Օգտագործել Frontline SMS', + 'option_2' => 'Տարբերակ 2: Օգտագործել Global SMS Gateway', + 'title' => 'Կարճ հաղորդագրությունների (SMS) կարգավորումներ', + ) , + 'sms_no1' => array( + 'length' => '"Հեռախոսահամար 1" դաշտը չի պարունակում վավեր արժեք:', + 'numeric' => '"Հեռախոսահամար 1" դաշտը պետք է պարունակի միայն թվեր:', + ) , + 'sms_no2' => array( + 'length' => '"Հեռախոսահամար 2" դաշտը չի պարունակում վավեր արժեք:', + 'numeric' => '"Հեռախոսահամար 2" դաշտը պետք է պարունակի միայն թվեր:', + ) , + 'sms_no3' => array( + 'length' => '"Հեռախոսահամար 3" դաշտը չի պարունակում վավեր արժեք:', + 'numeric' => '"Հեռախոսահամար 3" դաշտը պետք է պարունակի միայն թվեր:', + ) , +); diff --git a/application/i18n/hy_AM/sharing.php b/application/i18n/hy_AM/sharing.php new file mode 100644 index 0000000000..9e1e01b4c8 --- /dev/null +++ b/application/i18n/hy_AM/sharing.php @@ -0,0 +1,20 @@ + 'Մուտքի ամսաթիվ', + 'date_added' => 'Ավելացման ամսաթիվ', + 'last_access' => 'Վերջին այցելությունը', + 'sharing_color' => array( + 'length' => 'Գույնի դաշտը պետք է պարունակի 6 նիշ:', + 'required' => 'Մուտքագրեք գույնը:', + ) , + 'sharing_url' => array( + 'exists' => 'Նշված կայքի հասցեն արդեն գոյություն ունի:', + 'required' => 'Մուտքագրեք կայքի հասցեն:', + 'url' => 'Մուտքագրված կայքի հասցեն վավեր չէ:', + ) , +); diff --git a/application/i18n/hy_AM/stats.php b/application/i18n/hy_AM/stats.php new file mode 100644 index 0000000000..f8cc8d964e --- /dev/null +++ b/application/i18n/hy_AM/stats.php @@ -0,0 +1,41 @@ + 'Հաստատված', + 'categories' => 'Կատեգորիաներ', + 'category_impact' => 'Կատեգորիաների ազդեցությունը', + 'category_impact_description' => 'Այս գրաֆիկը հնարավորություն է տալիս նշված ժամանակահատվածում գծայնորեն դիտել ահազանգերը ըստ կատեգորիաների: Տեղաշարժելով ձախից աջ, կարող եք դիտել տարբեր կատեգորիաների համեմատությունը: Տեղաշարժելով մկնիկը գրաֆիկի վրայով, կարող եք դիտել մանրամասները:', + 'choose_date_range' => 'Ընտրեք ժամանակային միջակայքը', + 'countries' => 'Երկրներ', + 'country' => 'Երկիր', + 'country_breakdown' => 'Ըստ երկրների', + 'description' => 'Ողջույն: Սա վիճակագրության բաժինն է: Օգտվեք հղումներից համապատասխան վիճակագրությունը դիտելու համար:', + 'error' => 'Սխալ', + 'glossary' => 'Բառացանկ', + 'hit_summary' => 'Հիթերի վիճակագրություն', + 'legend' => 'Պարզաբանում', + 'pageviews' => 'Էջերի դիտումներ', + 'pageviews_description' => 'Կայքի այցելուների կողմից դիտված էջերի ընդհանուր քանակը:', + 'reports' => 'Ահազանգեր', + 'reports_categories' => 'Ահազանգերի կատեգորիաները', + 'reports_statistics' => 'Ահազանգերի վիճակագրություն', + 'reports_status' => 'Ահազանգերի կարգավիճակը', + 'report_stats' => 'Ահազանգեր', + 'stats_not_setup' => 'Վիճակագրությունը պատրաստ չէ', + 'time_range_1' => '1 ամիս', + 'time_range_2' => '3 ամիս', + 'time_range_3' => '6 ամիս', + 'time_range_all' => 'Բոլորը', + 'unapproved' => 'Չհաստատված', + 'unique_visitors' => 'Ունիկալ Այցելուներ', + 'unique_visitors_description' => 'Կայքի այցելուների քանակը: Ունիկալ Այցելուները որոշվում են cookie-ների միջոցով: Եթե այցելուի մոտ cookie-ներ արգելափակված են, ապա նրանք հաշվառվում են օգտագործելով IP հասցեն, դիտարկիչը, օպերացիոն համակարգը և այլն:', + 'unverified' => 'Չստուգված', + 'verified' => 'Ստուգված', + 'visitor_summary' => 'Այցելությունների վիճակագրություն', + 'visits' => 'Այցելություններ', + 'visits_description' => 'Այցելությունը ունիկալ այցելուի գրանցումն է իր վերջին էջի դիտումից ավելի քան 30 րոպե հետո:', +); diff --git a/application/i18n/hy_AM/tooltips.php b/application/i18n/hy_AM/tooltips.php new file mode 100644 index 0000000000..c4fc21f426 --- /dev/null +++ b/application/i18n/hy_AM/tooltips.php @@ -0,0 +1,42 @@ + 'Ձեր էլ. փոստի հասցեն', + 'profile_name' => 'Ձեր անուն ազգանունը', + 'profile_notify' => 'Եթե ընտրեք \'Այո\', ապա էլ. փոստի միջոցով կստանաք ծանուցումներ նոր ահազանգերի և մեկնաբանությունների մասին:', + 'profile_password' => 'Ձեր գաղտնաբառը: Դատարկ թողեք այս դաշտը, եթե չեք ցանկանում այն փոխել:', + 'profile_username' => 'Ձեր օգտագործողի անունը հնարավոր չէ փոփոխել:', + 'settings_alert_email' => 'էլ. փոստի հասցեն, որը կօգտագործվի էլ. փոստով ծանուցումներ ուղարկելու համար:', + 'settings_allow_clustering' => 'Թույլատրել քարտեզի վրա մեկից ավելի ահազանգերի ցուցադրումը մեկ կետով:', + 'settings_allow_comments' => 'Թույլատրել օգտագործողներին մեկնաբանել ահազանգերը հիմնական կայքում:', + 'settings_allow_feed' => 'Ցուցադրել RSS լրահոսը հիմնական կայքում:', + 'settings_allow_reports' => 'Թույլատրել օգտագործողներին ահազանգել կայքի ֆորմայի միջոցով:', + 'settings_configure_map' => 'Կարգավորել քարտեզը տեղանքի արտապատկերման համար:', + 'settings_default_category_colors' => 'Ընտրել մեկ գույն կայքում բոլոր կատեգորիաների համար:', + 'settings_default_location' => 'Երկիրը, որի համար նախատեսված է աշխատեցնել համակարգը:', + 'settings_display_contact' => 'Հիմնական կայքում ցուցադրել կամ ոչ \'Կապ\' էջի հղումը:', + 'settings_display_howtohelp' => 'Հիմնական կայքում ցուցադրել կամ ոչ \'Ինչպե՞ս օգնել\' հղումը:', + 'settings_display_items_per_page' => 'Մեկ էջում ցուցադրվող ահազանգերի քանակը հիմնական կայքում:', + 'settings_display_items_per_page_admin' => 'Մեկ էջում ցուցադրվող ահազանգերի քանակը ադմինիստրատորի վահանակում:', + 'settings_flsms_download' => 'Մուտքային հաղորդագրությունների հաբը:', + 'settings_flsms_synchronize' => 'Սինքրոնացնում է հաբի հաղորդագրությունները Ushahidi պլատֆորմի հետ:', + 'settings_flsms_text_1' => 'Հեռախոսահամարները, որոնց միջոցով ստացվում են տեքստային հաղորդագրությունները:', + 'settings_google_analytics' => 'Հետևում է կայքի այցելություններին: Տրամադրում է մանրամասն վիճակագրություն:', + 'settings_locale' => 'Ընտրեք լեզուն, որը կօգտագործվի կայքը ցուցադրելու համար:', + 'settings_map_provider' => 'Որոշել` որ քարտեզը պետք է օգտագործվի կայքում:', + 'settings_server_host' => 'Որտեղ է գտնվում էլ. փոստը:', + 'settings_server_password' => 'Ահազանգերը ստացող էլ. փոստի հասցեի գաղտնաբառը:', + 'settings_server_port' => 'Անհրաժեշտ է նշել էլ. փոստի հասցեի հետ կապ հաստատելու համար:', + 'settings_server_ssl_support' => 'Անհրաժեշտ է հաղորդագրությունների փոխանակումը ավելի պաշտպանված դարձնելու համար:', + 'settings_server_type' => 'Անհրաժեշտ է նշել սերվերից էլեկտրոնային նամակների ստացումը ապահովելու համար:', + 'settings_server_username' => 'Այս էլ. փոստի հասցեին կուղարկվեն ահազանգերը:', + 'settings_share_site_stats' => 'Հնարավորություն է տալիս ստանալ ահազանգերի վիճակագրությունը API-ի միջոցով:', + 'settings_site_email' => 'էլ. փոստի հասցեն, ուր կուղարկվեն էլ. փոստով ահազանգերը և կապի ֆորմայից հաղորդագրությունները:', + 'settings_site_name' => 'Անվանումը, որը երևում է հիմնական կայքի վերևի մասում:', + 'settings_site_tagline' => 'Մի քանի բառով նկարագրեք կայքը:', + 'settings_twitter_configuration' => 'Նշել Twitter-ի hashtag-ը:', +); diff --git a/application/i18n/hy_AM/ui_admin.php b/application/i18n/hy_AM/ui_admin.php new file mode 100644 index 0000000000..e9a0bf7e60 --- /dev/null +++ b/application/i18n/hy_AM/ui_admin.php @@ -0,0 +1,175 @@ + 'Մուտքը մերժված է: Սխալ օգտագործողի անուն կամ գաղտնաբառ:', + 'access_denied_others' => 'Մուտքը մերժված է: Կայքի սերվերը այս պահին ծանրաբեռնված է: Փորձեք մի փոքր ուշ:', + 'actions' => 'Գործողություններ', + 'added' => 'ավելացվել է', + 'added_edited' => 'ավելացվել է/խմբագրվել է', + 'admin_role' => 'Ադմինիստրատոր', + 'anonymous' => 'Անանուն', + 'api_banned' => 'API-ն արգելափակված է', + 'api_logs' => 'API-ի լոգերը', + 'api_unban' => 'Հանել արգելափակումից', + 'api_unban_all' => 'Բոլորը հանել արգելափակումից', + 'approved' => 'Հաստատված է', + 'author' => 'Հեղինակ', + 'author_email' => 'Հեղինակի էլ. փոստը', + 'categories' => 'Կատեգորիաներ', + 'chart_display_error' => 'Գրաֆիկի ցուցադրման սխալ', + 'check_message_valid' => 'Ստուգեք Ձեր հաղորդագրությունը', + 'check_number' => 'Ստուգեք համարը', + 'check_sms_settings' => 'Ստուգեք Ձեր SMS կարգավորումները', + 'cities_loaded' => 'Քաղաքներ բեռնվել են', + 'code' => 'կոդ', + 'code_out_of_sync' => 'Կոդի վերսիան սինքրոնացված չէ:', + 'comments' => 'Մեկնաբանություններ', + 'confirmation_code' => 'Ձեր ծանուցումների հաստատման կոդը հետևյալն է` ', + 'confirm_msg' => 'Օգտագործողը', + 'country_not_found' => 'Երկիրը չի գտնվել', + 'created_edited' => 'ստեղծված/խմբագրված', + 'create_report' => 'Ստեղծել Ահազանգ', + 'daily' => 'Ամենօրյա', + 'dashboard' => 'Վահանակ', + 'database' => 'տվյալների հենք', + 'date_time' => 'Ամսաթիվ և Ժամ', + 'db_out_of_sync' => 'Տվյալների հենքի վերսիան սինքրոնացված չէ:', + 'deleted' => 'հեռացված', + 'delete_action' => 'Հեռացնել', + 'demo' => 'Ցուցադրում', + 'description' => 'Նկարագրություն', + 'download_reports' => 'Բեռնել Ահազանգերը', + 'edit_action' => 'Խմբագրել', + 'email' => 'Էլ. փոստ', + 'error_geocoding' => 'Գեոկոդավորման սխալ: HTTP սխալ', + 'error_imap' => 'IMAP PHP գրադարանը տեղադրված չէ', + 'error_msg' => 'Սխալ', + 'error_post_incident' => 'Տեղի է ունեցել սխալ, հնարավոր չէ ուղարկել միջադեպը', + 'every_six_hours' => 'Վեց ժամը մեկ', + 'every_twelve_hours' => 'Տասներկու ժամը մեկ', + 'faqs' => 'Հաճախակի Տրվող Հարցեր', + 'feed' => 'լրահոս', + 'feedback' => 'Հետադարձ կապ', + 'feeds' => 'լրահոսեր', + 'field_default' => 'Լռությամբ արժեք', + 'field_height' => 'Բարձրությունը (տողերով)', + 'field_maxlength' => 'Նիշերի մաքսիմալ քանակը', + 'field_name' => 'Դաշտի անվանումը', + 'file_not_found_upload' => 'Վերբեռնված ֆայլը չի գտնվել', + 'file_open_error' => 'Չհաջողվեց կարդալու համար բացել ֆայլը', + 'form_not_exists' => 'Այդ Ֆորման գոյություն չունի:', + 'forum' => 'Ֆորում', + 'free_text_field' => 'Տեքստի դաշտ (Ազատ տեքստ)', + 'from' => 'Ից', + 'from_date' => 'Ից', + 'geonames_timeout' => 'Գեոանունների Սահմանված ժամանակի ավարտի սխալ', + 'get_help' => 'Ստանալ օգնություն', + 'header_actions' => 'Գործողություններ', + 'header_add_edit' => 'Ավելացնել/Խմբագրել', + 'header_email' => 'Էլ. փոստ', + 'header_manage_users' => 'Օգտագործողների Ղեկավարում', + 'header_role' => 'Դեր', + 'header_user' => 'Օգտագործող', + 'help' => 'օգնություն', + 'hourly' => 'Ամեն ժամ', + 'incident_feed' => 'Միջադեպերի լրահոս', + 'instance' => 'Օբյեկտ', + 'instances' => 'Օբյեկտներ', + 'instance_details' => 'Օբյեկտի մանրամասներ', + 'invalid_parameter' => 'Սխալ Պարամետր', + 'ip_address' => 'IP Հասցե', + 'is_date' => 'Սա ամսաթվի՞ դաշտ է:', + 'label_email' => 'Էլ. փոստի հասցե`', + 'label_full_name' => 'Անուն, ազգանուն`', + 'label_password' => 'Գաղտնաբառ`', + 'label_role' => 'Դեր`', + 'label_username' => 'Օգտագործողի անուն`', + 'layers' => 'Շերտավորումներ', + 'login_role' => 'Մոդերատոր', + 'logout' => 'Դուրս գալ', + 'logs' => 'Լոգեր', + 'manage' => 'Ղեկավարել', + 'manage_users' => 'Օգտագործողների Ղեկավարում', + 'marked_as_not_spam' => 'նշված է որպես ոչ ՍՊԱՄ', + 'marked_as_spam' => 'նշված է որպես ՍՊԱՄ', + 'match_no_documents' => 'նման փաստաթուղթ չգտնվեց', + 'message' => 'Հաղորդագրություն', + 'messages' => 'Հաղորդագրություններ', + 'messages_laconica' => 'Laconica Հաղորդագրություններ', + 'messages_twitter' => 'Twitter Հաղորդագրություններ', + 'message_sent' => 'Ձեր հաղորդագրությունը ուղարկվեց:', + 'missing_parameter' => 'Բացակայում է պարամետր', + 'moderator' => 'Մոդերատոր', + 'modified' => 'փոփոխված', + 'move_down_action' => 'տեղափոխել ներքև', + 'move_up_action' => 'տեղափոխել վերև', + 'multiple_hosted_instances' => 'Բազմակի Օբյեկտներ', + 'my_profile' => 'Իմ պրոֆիլը', + 'new_password' => 'Նոր Գաղտնաբառը', + 'no' => 'Ոչ', + 'notification' => 'Ծանուցում', + 'not_case_sensitive' => 'Ռեգիստրի նկատմամբ զգայուն չէ (տարբերություն չկա` մեծատառ, թե փոքրատառ)', + 'not_found' => 'Չի գտնվել', + 'no_error' => 'Սխալ չկա', + 'no_result_display_msg' => 'Ցուցադրման համար արդյունքներ չկան:', + 'page' => 'էջ', + 'pages' => 'Էջեր', + 'page_not_found' => 'Էջը չի գտնվել', + 'parameters_used' => 'Օգտագործված պարամետրեր', + 'password' => 'Գաղտնաբառ', + 'password_reset' => 'Գաղտնաբառը փոխվեց', + 'password_reset_message_line_1' => 'Հարգելի', + 'password_reset_message_line_2' => 'Մենք գաղտնաբառը փոխելու խնդրանք ենք ստացել ոստացել հետևյալ օգտագործողի համար`', + 'password_reset_message_line_3' => 'Որպեսզի փոխեք գաղտնաբառը, սեղմեք ստորև բերված հղման վրա (կամ պատճենեք Ձեր դիտարկիչի հասցեի դաշտում):', + 'password_reset_message_line_4' => 'Ինչպես Դուք էիք խնդրել, Ձեր գաղտնաբառը այժմ փոխվել է: Ձեր նոր տվյալները հետևյալն են`', + 'password_reset_subject' => 'Ushahidi գաղտնաբառը փոխվեց', + 'phone' => 'Հեռախոս', + 'post_method_not_used' => 'Տվյալները չեն ուղարկվել', + 'read' => 'կարդալ', + 'relevance' => 'Հիմնավորվածություն', + 'reporters' => 'Ահազանգողներ', + 'reporter_levels' => 'Ահազանգողների Մակարդակներ', + 'reports' => 'Ահազանգեր', + 'required' => 'Անհրաժեծտ է', + 'results' => 'Արդյունքներ', + 'search' => 'Փնտրել', + 'searching_for' => 'փնտրվում է', + 'select_field_type' => '--- Ընտրեք Դաշտի տիպը ---', + 'select_item' => 'Ընտրեք որևէ մեկը', + 'sender' => 'Ուղարկող', + 'sent_from_website' => 'Այս հաղորդագրությունը ուղարկվել է Ձեր կայքից` ', + 'settings' => 'Կարգավորումներ', + 'showing_page' => 'Ցուցադրվող էջը', + 'showing_results' => 'Ցուցադրվող արդյունքները', + 'statistics' => 'Վիճակագրություն', + 'stats' => 'Վիճակագրություն', + 'stats_collection_error' => 'Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!', + 'stats_collection_error_short' => 'Վիճակագրական տվյալների հավաքումը ձախողվեց:', + 'superadmin_role' => 'Սուպեր Ադմինիստրատոր', + 'task_performed' => 'Հանձնարարությունը կատարվել է', + 'text_field' => 'Տեքստի դաշտ (Մեկ տողով)', + 'theme_name' => 'Անվանում', + 'title' => 'Օգտագործողների Ղեկավարում', + 'to' => 'մինչև', + 'total_records' => 'Գրառումնեւի Քանակ', + 'to_date' => 'մինչև', + 'translate_reports' => 'Թարգմանել Ահազանգերը', + 'unapproved' => 'հաստատված չէ', + 'unknown' => 'Անհայտ', + 'unread' => 'չկարդացված', + 'update_link' => ' Սեղմեք այստեղ համակարգը թարմացնելու համար', + 'upgrade_ushahidi' => 'Թարմացնել Ushahidi համակարգը', + 'upgrade_ushahidi_status' => 'Թարմացնել Ushahidi-ի կարգավիճակը', + 'upload_reports' => 'Վերբեռնել Ահազանգերը', + 'users' => 'Օգտագործողներ', + 'version' => 'Վերսիա', + 'version_available' => ' առկա է թարմացման համար:', + 'view_site' => 'Դիտել կայքը', + 'welcome' => 'Բարի գալուստ, ', + 'yes' => 'Այո', + 'your_search_for' => 'Ձեր փնտրումը', +); diff --git a/application/i18n/hy_AM/ui_main.php b/application/i18n/hy_AM/ui_main.php new file mode 100644 index 0000000000..3511184e28 --- /dev/null +++ b/application/i18n/hy_AM/ui_main.php @@ -0,0 +1,426 @@ + 'Մեր մասին ', + 'access' => 'Մուտք', + 'access_limits' => 'Մուտքի սահմանափակումներ', + 'account_name' => 'Օգտագործողի անուն', + 'actions' => 'Գործողություններ', + 'action_confirm' => 'Այս գործողությունը հնարավոր չէ չեղարկել: Համոզվա՞ծ եք, որ ուզում եք շարունակել:', + 'add' => 'Ավելացնել', + 'added_by' => 'Ավելացրել է', + 'additional_reports' => 'Լրացուցիչ հաղորդումներ', + 'add_edit' => 'Ավելացնել/Խմբագրել', + 'add_field' => 'Ավելացնել Դաշտ', + 'add_language' => 'Ավելացնել Լեզու', + 'add_new' => 'Ավելացնել Նորը', + 'add_new_category' => 'Ավելացնել Նոր Կատեգորիա', + 'add_translation' => 'Ավելացնել Թարգմանություն', + 'admin' => 'Ադմինիստրացիա', + 'alerts' => 'Ստանալ Ծանուցումներ', + 'alerts_alert_me' => 'Ծանուցել ինձ, եթե միջադեպի մասին հաղորդագրությունը դրված է նշված կետի շուրջ:', + 'alerts_btn_send' => 'Հիշել', + 'alerts_email' => 'Էլեկտրոնային փոստին`', + 'alerts_enter_email' => 'մուտքագրեք էլեկտրոնային փոստի հասցեն', + 'alerts_enter_mobile' => 'մուտքագրեք բջջային հեռախոսահամարը երկրի կոդով', + 'alerts_get' => 'Ստանալ ծանուցումներ', + 'alerts_mobile_phone' => 'Բջջային հեռախոսահամարին`', + 'alerts_place_spot' => 'Կամ նշեք քարտեզի վրա կետ, որպեսզի ստանաք ծանուցումներ, երբ կստացվեն ահազանգեր միջադեպերի վերաբերյալ այդ կետից 20 կիլոմետր շառավղով տիրույթում:', + 'alerts_rss' => 'RSS (պատճենեք հղումը)', + 'alerts_select_city' => 'Ընտրեք քաղաքը', + 'alerts_step1_select_city' => 'Քայլ 1: Ընտրեք Ձեր քաղաքը կամ տեղանքը`', + 'alerts_step2_send_alerts' => 'Քայլ 2: Ուղարկեք ծանուցումներ իմ`', + 'alert_confirm_previous' => 'Հաստատել նախորդ ծանուցման հայտը', + 'alert_saved' => 'Ձեր ծանուցման կարգավորումները հիշվել են:', + 'all' => 'Բոլորը', + 'allowed' => 'Թույլատրված է', + 'all_categories' => 'Բոլոր կատեգորիաները', + 'and' => 'և', + 'approve' => 'Հաստատել', + 'approved' => 'Հաստատված է', + 'approved_reports' => 'Հաստատված Ահազանգեր', + 'approve_this_report' => 'Հաստատել այս Ահազանգը', + 'approximate' => 'Մոտավորապես', + 'at' => 'մոտ', + 'awaiting_approval' => 'Սպասում է Հաստատման', + 'awaiting_verification' => 'Սպասում է Հավաստիացման', + 'blog' => 'Բլոգ', + 'cancel' => 'Չեղարկել', + 'categories' => 'Կատեգորիաներ', + 'category' => 'Կատեգորիա', + 'category_filter' => 'Կատեգորիաների ֆիլտր', + 'category_has_been' => 'Կատեգորիա. ', + 'category_name' => 'Կատեգորիայի անուն', + 'choose' => 'Ընտրեք', + 'choose_data_points' => 'Ընտրեք բեռնման տվյալները', + 'choose_field_type' => 'Ընտրեք դաշտի տիպը', + 'cleanurl' => 'Մաքուր URL-ներ', + 'close' => 'Փակել', + 'clusters' => 'Կլաստերներ', + 'color' => 'Գույն', + 'comments' => 'Մեկնաբանություններ', + 'comment_details' => 'Մեկնաբանության մանրամասներ', + 'configuration_saved' => 'Կարգավորումները հիշվել են:', + 'configure' => 'Կարգավորել', + 'contact' => 'Կապ', + 'copyright' => 'Copyright В© 2010 Ushahidi.com. All Rights Reserved.', + 'create' => 'Ստեղծել', + 'create_edit' => 'Ստեղծել/Խմբագրել', + 'create_new' => 'Ստեղծել Նորը', + 'create_report' => 'Ստեղծել Ահազանգ', + 'credibility' => 'Հավաստիություն', + 'data' => 'Տվյալներ', + 'date' => 'Ամսաթիվ', + 'date_time' => 'Ամսաթիվ և Ժամ', + 'default_location_name' => 'Նայրոբի, Քենիա', + 'delete' => 'Հեռացնել', + 'deleted' => 'Հեռացված է', + 'deletes' => 'Հեռացված', + 'delete_disabled' => 'Հեռացումը արգելափակված է', + 'delete_report' => 'Հեռացնել այս Ահազանգը', + 'delete_spam' => 'Հեռացնել ՍՊԱՄը', + 'demo' => 'Դեմո', + 'description' => 'Նկարագրություն', + 'detailed_location_example' => 'Օրինակ` Մաշտոցի պողոտայի և Արամի փողոցի հատման մասում, այսինչ խանութի դիմաց:', + 'details' => 'Մանրամասներ', + 'direct_report' => 'Ուղղակի Ահազանգ', + 'disabled' => 'Արգելափակված է', + 'disapprove' => 'Մերժել', + 'download_reports' => 'Բեռնել Ահազանգերը', + 'edit' => 'Խմբագրել', + 'edit_form_fields' => 'Խմբագրել ֆորմայի դաշտերը', + 'edit_report' => 'Խմբագրել Ահազանգը', + 'email' => 'Էլ. փոստ', + 'email_address' => 'Էլ. փոստի հասցե', + 'email_configuration' => 'Էլ. փոստի սերվերի կարգավորումներ', + 'email_server_host' => 'Էլ. փոստի սերվերի Host-ը', + 'email_server_password' => 'Էլ. փոստի սերվերի Գաղտնաբառը', + 'email_server_port' => 'Էլ. փոստի սերվերի Պորտի համարը', + 'email_server_ssl_support' => 'Էլ. փոստի սերվերի SSL աջակցում', + 'email_server_type' => 'Էլ. փոստի սերվերի Տիպը', + 'email_server_username' => 'Էլ. փոստի սերվերի Օգտագործողի անունը', + 'email_settings_comment_0' => 'այնպես որ Ձեր կարգավորումները պետք է կապվեն այս էլ. փոստի հասցեի հետ', + 'email_settings_comment_00' => 'Որպեսզի ստանաք ահազանգերը էլ. փոստով, մուտքագրեք ստորև Ձեր էլ. փոստի տվյալները: Նշում. նամակները ստացվելու են Ձեր', + 'email_settings_comment_1' => 'Որոշ սերվերներ պահանջում են ամբողջական էլ. փոստի հասցե', + 'email_settings_comment_2' => 'Էլ. փոստի գաղտնաբառը', + 'email_settings_comment_3' => 'Ընդհանուր պորտի համարներ` 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Օրինակներ` mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Օրինակներ` pop3, imap', + 'email_settings_comment_6' => 'Թույլատրել կամ արգելել SSL միացումներ', + 'end_point' => 'դեպի', + 'error' => 'Տեղի է ունեցել սխալ', + 'example' => 'Օրինակ', + 'example_country' => 'Հայաստան', + 'feed' => 'Լրահոս', + 'feedback' => 'Թողեք Ձեր կարծիքը', + 'feeds' => 'Լրահոսեր', + 'feed_has_been' => 'Լրահոս:', + 'feed_items' => 'Լրահոսի տարրեր', + 'feed_name' => 'Լրահոսի անվանում', + 'feed_url' => 'Լրահոսի URL հասցեն', + 'field_unused' => 'Չօգտագործված դաշտեր', + 'file' => 'Ֆայլ', + 'filters' => 'Ֆիլտրեր', + 'find' => 'Փնտրել', + 'find_location' => 'Փնտրել դեպքի վայրը', + 'first_name' => 'Անուն', + 'forgot_password' => 'Մոռացե՞լ եք գաղտնաբառը:', + 'form' => 'Ֆորմա', + 'forms' => 'Ֆորմաներ', + 'form_description' => 'Ֆորմայի նկարագրությունը', + 'form_edit' => 'Խմբագրել այս Ֆորման', + 'form_has_been' => 'Ֆորման', + 'form_title' => 'Ֆորմայի վերնագիրը', + 'full_name' => 'Լրիվ անունը', + 'geolocation_available' => 'GeoLocation-ը հասանելի է', + 'help' => 'Ինչպե՞ս օգնել', + 'hide_this_message' => 'թաքցնել այս հաղորդագրությունը', + 'home' => 'Գլխավոր էջ', + 'how_to_report' => 'Ինչպես Ահազանգել', + 'image' => 'Նկար', + 'image_icon' => 'Նկար/Նախշապատկեր', + 'inbox' => 'Մուտքային պահոց', + 'incident' => 'Միջադեպ', + 'incidents_nearby' => 'Միջադեպեր մոտակայքում', + 'incident_location' => 'Միջադեպի վայրը', + 'include' => 'Ներառել', + 'include_categories' => 'Ներառել Կատեգորիաները', + 'include_detail' => 'Ներառել հնարավորին չափ շատ մանրամասներ', + 'include_latitude' => 'Ներառել Լայնությունը', + 'include_location_information' => 'Ներառել տեղանքի մասին ինֆորմացիան', + 'include_longitude' => 'Ներառել Երկայնությունը', + 'incoming_media' => 'Մուտքային Մեդիա', + 'information_evaluation' => 'Ինֆորմացիայի գնահատում', + 'input_location' => 'Մուտքագրեք ճշգրիտ տեղաբաշխումը', + 'in_response_to' => 'Ի պատասխան', + 'ip_address' => 'IP հասցե', + 'item' => 'Տարր', + 'items' => 'Տարրեր', + 'item_details' => 'Տարրի մանրամասներ', + 'item_title' => 'Տարրի վերնագիր', + 'key' => 'Բանալի', + 'kml_kmz_file' => 'KMZ/KML Ֆայլ', + 'kml_kmz_upload' => 'Վերբեռնել KMZ/KML ֆայլ', + 'language' => 'Լեզու', + 'last' => 'Վերջին', + 'last_month' => 'Վերջին Ամիսը', + 'last_name' => 'Ազգանուն', + 'last_year' => 'Վերջին Տարին', + 'latitude' => 'Լայնություն', + 'layers' => 'Շերտեր', + 'layers_filter' => 'Այլ Շերտեր', + 'layer_has_been' => 'Շերտը', + 'layer_name' => 'Շերտի Անվանումը', + 'layer_url' => 'Շերտի URL-ն', + 'level' => 'Մակարդակ', + 'level_has_been' => 'Մակարդակը', + 'level_name' => 'Մակարդակի Անվանումը', + 'limited' => 'Սահմանափակված է', + 'link' => 'Հղում', + 'location' => 'Վայր', + 'locations' => 'Վայրեր', + 'location_example' => 'Քաղաք, Նահանգ և/կամ Երկիր', + 'longitude' => 'Երկայնություն', + 'map' => 'Քարտեզ', + 'mark_read' => 'Նշել որպես կարդացված', + 'mark_unread' => 'Նշել որպես չկարդացված', + 'media' => 'Մեդիա', + 'media_filter' => 'Մեդիա Ֆիլտր', + 'message' => 'Հաղորդագրություն', + 'messages' => 'Հաղորդագրություններ', + 'message_details' => 'Հաղորդագրության մանրամասներ', + 'modify' => 'Փոփոխել', + 'modify_date' => 'Փոփոխել Ամսաթիվը', + 'more' => 'Ավելին', + 'multi_country_instance' => 'Պարունակում է արդյոք Ushahidi-ի այս օգտագործումը մեկից ավելի երկրներ', + 'name' => 'Անվանում', + 'new' => 'Նոր', + 'news' => 'Նորություններ', + 'news_feeds' => 'Լրահոսեր', + 'news_source' => 'Նորությունների Աղբյուր', + 'new_category' => 'Նոր Կատեգորիա', + 'new_password' => 'Նոր Գաղտնաբառ', + 'new_report' => 'Նոր Ահազանգ', + 'next' => 'Հաջորդը', + 'no' => 'Ոչ', + 'notices' => 'Նշումներ', + 'not_approved' => 'Հաստատված չէ', + 'not_approved_singular' => 'Հաստատված չէ', + 'not_spam' => 'Սպամ չէ', + 'no_results' => 'Արդյունքներ չկան', + 'official_news' => 'Պաշտոնական և հիմնական նորություններ', + 'option' => 'Ընտրանք', + 'optional' => 'Ոչ պարտադիր', + 'options' => 'Ընտրանքներ', + 'organization' => 'Կազմակերպություն', + 'organizations' => 'Կազմակերպություններ', + 'organization_description' => 'Կազմակերպության Նկարագրությունը', + 'organization_email' => 'Կազմակերպության Էլ. փոստի հասցեն', + 'organization_has_been' => 'Կազմակերպությունը', + 'organization_name' => 'Կազմակերպության Անվանումը', + 'organization_phone_1' => 'Կազմակերպության Հեռախոսահամարը (1)', + 'organization_phone_2' => 'Կազմակերպության Հեռախոսահամարը (2)', + 'organization_website' => 'Կազմակերպության Կայքը', + 'original' => 'Օրիգինալ', + 'original_description' => 'Օրիգինալ Նկարագրություն', + 'original_title' => 'Օրիգինալ Վերնագիր', + 'other_ushahidi_instances' => 'ԱՅԼ USHAHIDI ՕՐԻՆԱԿՆԵՐ', + 'outbox' => 'Ելքային պահոց', + 'outgoing' => 'Ելքային', + 'page' => 'Էջ', + 'pages' => 'Էջեր', + 'page_description' => 'Էջի Նկարագրություն', + 'page_has_been' => 'Էջը', + 'page_tab_name' => 'Էջի վահանակի անվանումը', + 'page_title' => 'Էջի վերնագիրը', + 'parent_category' => 'Ծնող կատեգորիա', + 'password' => 'Գաղտնաբառ', + 'password_again' => 'Կրկին մուքագրեք գաղտնաբառը', + 'password_forgot' => 'Մոռացե՞լ եք գաղտնաբառը', + 'password_reset_confirm' => 'Նոր գաղտնաբառը ուղարկվել է Ձեր էլեկտրոնային փոստին:', + 'password_save' => 'Դուրս չգալ համակարգից այս համակարգչում', + 'past_month' => 'Անցած Ամիս', + 'past_year' => 'Անցած Տարի', + 'pending' => 'Առկախ', + 'personal_information' => 'Անձնական տվյալներ Կամածին.', + 'phone' => 'Հեռախոսահամար', + 'pictures' => 'Նկարներ', + 'pictures_and_videos' => 'Նկարներ և Տեսահոլովակներ', + 'pinpoint_location' => '* Փնտրեք տեղանքը կամ քարտեզի վրա կետ դրեք տեղանքի ճշգրիտ նշման համար:', + 'play' => 'Վերարտադրել', + 'please_note' => 'Նշում', + 'preview' => 'Արտապատկերել', + 'preview_item' => 'Արտապատկերել Տարրը', + 'preview_message' => 'Արտապատկերել Հաղորդագրությունը', + 'previous' => 'Նախորդ', + 'profile_saved' => 'Ձեր պրոֆիլը հիշվել է', + 'quick_stats' => 'Արագ Վիճակագրություն', + 'rating' => 'Վարկանիշ', + 'read' => 'Կարդալ', + 'receive' => 'Ստանալ', + 'receive_from' => 'Ստանալ (ումից).', + 'receive_notifications' => 'Ստանալ Ծանուցումներ', + 'recent_reports' => 'Վերջին Ահազանգերը', + 'refresh_news_feeds' => 'Թարմացնել Լրահոսը', + 'remove' => 'հեռացնել', + 'reply' => 'Պատասխանել', + 'report' => 'Ահազանգ', + 'reporter' => 'Ահազանգողը', + 'reporters' => 'Ահազանգողներ', + 'reporter_date' => 'Ահազանգի գրանցման Ամսաթիվը', + 'reporter_email' => 'Ահազանգողի Էլ. փոստի հասցեն', + 'reporter_first_name' => 'Ահազանգողի Անունը', + 'reporter_has_been' => 'Ահազանգողը', + 'reporter_ip' => 'Ահազանգողի IP Հասցեն', + 'reporter_last_name' => 'Ահազանգողի Ազգանունը', + 'reporter_level' => 'Ահազանգողի Մակարդակը', + 'reporter_levels' => 'Ահազանգողի Մակարդակներ', + 'reporter_phone' => 'Ահազանգողի Հեռախոսահամարը', + 'reports' => 'Ահազանգեր', + 'reports_btn_browse' => 'Կցել ֆայլ', + 'reports_btn_submit' => 'Ուղարկել', + 'reports_categories' => 'Կատեգորիաներ', + 'reports_date' => 'Ամսաթիվ', + 'reports_description' => 'Նկարագրություն', + 'reports_download_csv' => 'Ահազանգերը կբեռնվեն CSV ձևաչափով', + 'reports_email' => 'Էլ. փոստ', + 'reports_find_location' => 'Գտնել տեղանք', + 'reports_first' => 'Անուն', + 'reports_last' => 'Ազգանուն', + 'reports_location_name' => 'Ճշգրտել տեղանքի անվանումը', + 'reports_news' => 'Հղումներ նորությունների վրա', + 'reports_optional' => 'Լրացուցիչ տեղեկություններ', + 'reports_photos' => 'Վերբեռնել նկարներ', + 'reports_return' => 'Վերադառնալ Ահազանգերի էջ', + 'reports_select_city' => 'Ընտրել քաղաք', + 'reports_submitted' => 'Ձեր Ահազանգը ընդունվել է: Անհրաժեշտության դեպքում մենք կկապվենք Ձեզ հետ:', + 'reports_submit_new' => 'Նոր Ահազանգ', + 'reports_time' => 'Ժամ', + 'reports_timeline' => 'Ժամային սանդղակ', + 'reports_title' => 'Ահազանգի Վերնագիր', + 'reports_video' => 'Հղումներ տեսահոլովակների վրա', + 'report_an_incident' => 'Ահազանգել միջադեպի մասին', + 'report_details' => 'Ահազանգի Մանրամասներ', + 'report_option_1' => 'Ուղարկելով կարճ հաղորդագրություն հետևյալ հեռախոսահամարին` ', + 'report_option_2' => 'Ուղարկելով էլեկտրոնային նամակ հետևյալ հասցեին` ', + 'report_option_3' => 'Ուղարկելով թվիտտերում hashtag-ով հաղորդագրություն', + 'report_option_4' => 'Լրացնելով Web ֆորման', + 'report_saved' => 'Ձեր Ահազանգը հիշվել է', + 'report_title' => 'Ահազանգի Վերնագիրը', + 'request_information' => 'Հայցել ավելի շատ տեղեկություն', + 'request_location' => 'Հայցել վայրը', + 'requirements' => 'Պահանջներ', + 'reset_password' => 'Թարմացնել Գաղտնաբառը', + 'retrieve_city_names' => 'Ստանալ ընտրված երկրի քազաքների անունները', + 'save' => 'Հիշել', + 'saved' => 'Հիշվել է', + 'save_close' => 'Հիշել և Փակել', + 'save_report' => 'Հիշել Ահազանգը', + 'schedule' => 'Ժամատախտակ', + 'scheduler' => 'Պլանավորող', + 'scheduler_day' => 'Օր', + 'scheduler_hour' => 'Ժամ', + 'scheduler_log' => 'Պլանավորողի Log-երը', + 'scheduler_minute' => 'Րոպե', + 'scheduler_weekday' => 'Շաբաթվա Օր', + 'search' => 'ՓՆՏՐԵԼ', + 'search_results' => 'Փնտրման Արդյունքները', + 'security_code' => 'Պաշտպանության Կոդը', + 'select_all' => 'Ընտրել Բոլորը', + 'select_field_type' => 'Ընտրել դաշտի տիպ', + 'select_form_type' => 'Ընտրել ֆորմայի տիպ', + 'select_in_map' => 'Ընտրել քարտեզի վրա', + 'select_multiple' => 'Ընտրել այնքան, որքան պետք է', + 'select_one' => 'Ընտրեք առնվազն մեկ տարր', + 'select_theme' => 'Ընտրեք Թեման', + 'send' => 'Ուղարկել', + 'sending_to' => 'Ուղարկվում է դեպի', + 'sent' => 'Ուղարկված է', + 'sent_by' => 'Ուղարկվել է (կողմից).', + 'server_address' => 'Սերվերի հասցեն', + 'server_type' => 'Սերվերի տիպը', + 'service' => 'Ծառայություն', + 'service_username' => 'Ծառայության Օգտագործողի Անուն', + 'service_user_id' => 'Ծառայության Օգտագործողի ID', + 'share' => 'Համատեղ օգտագործել', + 'shared_data' => 'Համատեղ օգտագործվող տվյալներ', + 'share_has_been' => 'Համատեղ օգտագործումը', + 'sharing' => 'Կիսվել', + 'show' => 'Ցուցադրել', + 'show_all' => 'Ցուցադրել բոլորը', + 'site' => 'Կայք', + 'site_email_address' => 'կայքի էլ. փոստի հասցե', + 'site_url' => 'Կայքի URL', + 'source' => 'Աղբյուր', + 'source_name' => 'Աղբյուրի անվանում', + 'source_url' => 'Աղբյուրի URL', + 'spam' => 'Սպամ', + 'ssl_support' => 'SSL աջակցում', + 'start_point' => '(ից)', + 'step' => 'Քայլ', + 'submit' => 'Ահազանգել միջադեպի մասին', + 'submit_sms' => 'Ահազանգել SMS-ի միջոցով', + 'submit_sms1' => 'Ուղարկել SMS դեպի', + 'submit_sms2' => 'Ձեր հեռախոսին', + 'success' => 'Հաջողվեց!', + 'successfuly_imported' => 'Հաջողությամբ ներմուծվեց', + 'surname' => 'Ազգանուն', + 'system' => 'Համակարգ', + 'tcp_port' => 'TCP պորտ', + 'themes' => 'Թեմաներ', + 'theme_default' => 'Ushahidi լռությամբ թեման', + 'theme_settings' => 'Թեմայի կարգավորումներ', + 'this' => 'Այս', + 'this_day' => 'Այսօր', + 'this_month' => 'Այս Ամիս', + 'this_year' => 'Այս Տարի', + 'time' => 'ժամ', + 'title' => 'Վերնագիր ', + 'to' => 'դեպի', + 'today' => 'Այսօր', + 'today_at' => 'Այսօր`', + 'translated' => 'Թարգմանված է', + 'translated_description' => 'Թարգմանության նկարագրությունը', + 'translated_title' => 'Թարգմանության վերնագիրը', + 'translate_to' => 'Թարգմանել', + 'translation' => 'Թարգմանություն', + 'translation_saved' => 'Թարգմանությունը հիշվել է', + 'unread' => 'կարդացված չէ', + 'update_feeds' => 'Թարմացնել լրահոսերը', + 'upload' => 'Վերբեռնել', + 'upload_file' => 'Վերբեռնման ֆայլը', + 'upload_reports' => 'Վերբեռնել Ահազանգեր', + 'upload_reports_detail_1' => 'Հետևյալ ֆորմայի միջոցով Դուք կարող եք միջադեպերը ներմուծել Ushahidi համակարգ', + 'upload_reports_detail_4' => 'Պետք է պարունակի առնվազն Միջադեպի վերնագիրը և ամսաթիվը', + 'upload_reports_detail_5' => 'Նմուշ CSV Ահազանգ', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Վերբեռնումը հաջողությամբ ավարտվեց', + 'user' => 'Օգտագործող', + 'username' => 'Օգտագործողի անուն', + 'verified' => 'Ստուգված', + 'verified_reports' => 'Ստուգված Ահազանգեր', + 'verify' => 'Հավաստել', + 'verify_this_report' => 'Հավաստել այս Ահազանգը', + 'version' => 'Վերսիա', + 'via' => 'միջոցով', + 'video' => 'Տեսահոլովակ', + 'view' => 'Դիտել', + 'views' => 'Արտապատկերումներ', + 'view_all' => 'Դիտել Բոլորը', + 'view_all_feeds' => 'Դիտել ամբողջ լրահոսը', + 'view_all_reports' => 'Դիտել բոլոր ահազանգերը', + 'view_items' => 'Դիտել Տարրերը', + 'view_report' => 'Դիտել Ահազանգը', + 'view_reports' => 'Դիտել Ահազանգերը', + 'visible' => 'Տեսանելի', + 'waiting_approval' => 'Սպասում է Հաստատման', + 'waiting_verification' => 'Սպասում է Հավաստիացման', + 'weight' => 'Քաշը', + 'yes' => 'Այո', + 'yesterday' => 'Երեկ', +); diff --git a/application/i18n/hy_AM/upgrade.php b/application/i18n/hy_AM/upgrade.php new file mode 100644 index 0000000000..b1c513c422 --- /dev/null +++ b/application/i18n/hy_AM/upgrade.php @@ -0,0 +1,13 @@ + 'The instructions below details how to manually upgrade your Ushahidi deployment', + 'upgrade_text_2' => 'Step 1: Download the most recent ushahidi build from http://download.ushahidi.com', + 'upgrade_text_3' => 'Step 2: Depending on the operating system running the webserver, use your preferred tool/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. All EXCEPT:', + 'upgrade_text_4' => 'Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables', + 'upgrade_text_5' => 'For automatic upgrade, click on the button below', +); diff --git a/application/i18n/id_ID/alerts.php b/application/i18n/id_ID/alerts.php new file mode 100755 index 0000000000..0d64f7bc1f --- /dev/null +++ b/application/i18n/id_ID/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Format alamat surel yang tercantum pada kolom surel tidak valid ?', + 'email_check' => 'Alamat surel yang tercantum sudah terdaftar sebagai penerima peringatan untuk lokasi tersebut', + 'length' => 'Panjang isian alamat surel harus minimal 4 dan tidak lebih dari 64 karakter.', + 'required' => 'Jika checkbox dicentang, isian surel tidak boleh kosong', + ) , + 'alert_country' => array( + 'single_country' => 'Cakupan penyebaran platform ini hanya dalam satu negara. Pastikan lokasi peringatan berada dalam negara %s', + ) , + 'alert_lat' => array( + 'between' => 'Anda belum memilih lokasi yang benar pada peta', + 'required' => 'Anda belum memilih lokasi yang benar pada peta', + ) , + 'alert_lon' => array( + 'between' => 'Anda belum memilih lokasi yang benar pada peta', + 'required' => 'Anda belum memilih lokasi yang benar pada peta', + ) , + 'alert_mobile' => array( + 'length' => 'Jumlah karakter pada isian Telepon Seluler salah.', + 'mobile_check' => 'Nomor telpon seluler yang dicantumkan sudah terdaftar untuk menerima peringatan dari lokasi itu.', + 'numeric' => 'Nomor telepon seluler pada kolom telepon seluler salah. Mohon isi hanya dengan angka termasuk kode negara.', + 'one_required' => 'Anda harus mencantumkan nomor telepon seluler anda atau alamat surel anda', + 'required' => 'Jika kotak centang dicentang, isian telepon seluler tidak boleh kosong', + ) , + 'alert_radius' => array( + 'in_array' => 'Anda belum menentukan radius yang benar pada peta', + 'required' => 'Anda belum menentukan radius anda pada peta', + ) , + 'alert_recipient' => array( + 'required' => 'Anda belum menentukan penerima peringatan.', + ) , + 'alerts_subscribed' => 'Anda telah berlangganan peringatan dengan kategori berikut ini', + 'code_already_verified' => 'Kode ini sudah pernah diverifikasi !', + 'code_not_found' => 'Kode verifikasi ini tidak ditemukan ! Mohon periksa kembali URL yang digunakan.', + 'code_verified' => 'Kode anda telah diverifikasi dengan benar. Anda akan menerima peringatan begitu ada kejadian.', + 'confirm_request' => 'Untuk mengkonfirmasikan permintaan peringatan anda, mohon lanjut ke', + 'create_more_alerts' => 'Kembali ke laman Peringatan untuk membuat peringatan baru', + 'email_alert_request_created' => 'Permintaan Peringatan melalui surel anda telah dibuat dan pesan untuk memverifikasi ini telah dikirim ke', + 'email_code' => 'Silakan masukan kode konfirmasi surel yang anda terima di bawah ini :', + 'email_error_head' => 'Permintaan Peringatan melalui surel anda BELUM tersimpan !', + 'email_ok_head' => 'Permintaan Peringatan melalui surel anda telah tersimpan!', + 'error' => 'Sistem tidak bisa memroses permintaan konfirmasi anda!', + 'mobile_alert_request_created' => 'Permintaan Peringatan melalui ponsel anda telah dibuat dan pesan untuk memverifikasi ini telah dikirim ke', + 'mobile_code' => 'Silakan masukan kode konfirmasi SMS yang anda terima di telpon seluler anda di bawah ini :', + 'mobile_error_head' => 'Permintaan Peringatan melalui ponsel anda BELUM tersimpan !', + 'mobile_ok_head' => 'Permintaan Peringatan melalui ponsel anda telah tersimpan !', + 'settings_error' => 'Instalasi ini tidak terkonfigurasi untuk memroses peringatan dengan benar', + 'unsubscribe' => 'Anda menerima surel ini karena anda telah berlangganan untuk memperoleh peringatan. Jika anda mau menghentikan pengiriman peringatan ini silakan ke', + 'unsubscribed' => 'Anda tidak lagi akan dikirimi peringatan dari', + 'unsubscribe_failed' => 'Kami gagal membatalkan permintaan penghentian berlangganan anda. Mohon pastikan URL yg anda gunakan sudah benar.', + 'verification_email_subject' => 'peringatan - verifikasi', + 'verify_code' => 'Anda tidak akan menerima peringatan dari lokasi ini sebelum anda konfirmasikan permintaan anda.', +); diff --git a/application/i18n/id_ID/auth.php b/application/i18n/id_ID/auth.php new file mode 100755 index 0000000000..d0b1e94e13 --- /dev/null +++ b/application/i18n/id_ID/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Alamat surel yang Anda masukkan tidak benar.', + 'exists' => 'Maaf, alamat surel ini sudah digunakan pengguna lain.', + 'length' => 'Panjang isian alamat surel setidaknya terdiri dari 4 dan tidak lebih dari 64 karakter.', + 'required' => 'Kolom isian surel wajib diisi.', + ) , + 'name' => array( + 'length' => 'Kolom nama lengkap setidaknya 3 dan tidak lebih dari 100 karakter.', + 'required' => 'Isian nama lengkap harus diisi.', + 'standard_text' => 'Isian nama pengguna mengandung karakter yang tidak diperbolehkan.', + ) , + 'current_password' => array( + 'length' => 'Kolom kata sandi setidaknya harus terdiri atas 8 karakter.', + 'login error' => 'Pastikan bahwa alamat surel dan kata sandi yang Anda masukkan sudah benar.', + 'matches' => 'Masukkan kata sandi yang sama ke kedua kolom kata sandi.', + 'required' => 'Kolom kata sandi wajib diisi.', + 'alpha_dash' => 'Kolom kata sandi setidaknya harus berisi karakter huruf, simbol # dan @, angka, garis bawah dan simbol -', + 'incorrect' => 'Kata sandi yang Anda masukkan salah. Silahkan coba lagi.', + ) , + 'new_password' => array( + 'length' => 'Kolom kata sandi setidaknya harus terdiri atas 8 karakter.', + 'login error' => 'Pastikan bahwa alamat surel dan kata sandi yang Anda masukkan sudah benar.', + 'matches' => 'Masukkan kata sandi yang sama ke kedua kolom kata sandi.', + 'required' => 'Kolom kata sandi wajib diisi.', + 'alpha_dash' => 'Kolom kata sandi setidaknya harus berisi karakter huruf, simbol # dan @, angka, garis bawah dan tanda hubung', + ) , + 'password' => array( + 'default' => 'Ada kesalahan saat mencoba login.', + 'length' => 'Kolom kata sandi setidaknya harus berisi 8 karakter.', + 'login error' => 'Pastikan Anda sudah mengisi alamat surel dan kata sandi dengan benar.', + 'matches' => 'Masukkan kata sandi yang sama dalam kedua kolom kata sandi.', + 'required' => 'Kolom kata sandi wajib diisi.', + 'riverid server down' => 'Server otentifikasi sedang mati. Coba beberapa saat lagi.', + 'riverid' => '%s', + 'alpha_dash' => 'Kolom kata sandi setidaknya harus berisi karakter huruf, simbol # dan @, angka, garis bawah dan tanda hubung', + ) , + 'password_confirm' => array( + 'matches' => 'Kata sandi yang Anda masukkan pada kolom konfirmasi harus sama dengan isian pada kolom kata sandi.', + ) , + 'resetemail' => array( + 'email' => 'Format alamat surel yang anda masukkan salah. ', + 'invalid' => 'Maaf, alamat surel anda tidak terdaftar', + 'required' => 'Kolom alamat surel wajib diisi.', + ) , + 'role' => array( + 'superadmin_modify' => 'Hanya superadmin yang boleh menyunting sebuah akun superadmin atau menaikkan akses user menjadi admin.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Format peran salah.', + 'length' => 'Kolom peran setidaknya terdiri dari 5 dan tidak lebih dari 30 karakter.', + 'required' => 'Anda harus tetapkan setidaknya satu peran.', + 'values' => 'Anda harus memilih ADMIN atau PENGGUNA.', + ) , + 'token' => array( + 'invalid' => 'Token untuk lupa kata sandi tidak benar.', + 'required' => 'Token untuk lupa kata sandi diperlukan', + ) , + 'username' => array( + 'admin' => 'Peran admin tidak boleh disunting.', + 'alpha_numeric' => 'Tautan di profil untuk publik hanya berisi angka dan huruf.', + 'exists' => 'Maaf, tautan di profil untuk publik sudah pernah digunakan orang lain.', + 'length' => 'Tautan di profil untuk publik setidaknya terdiri atas 2 dan tidak lebih dari 100 karakter.', + 'login error' => 'Pastikan Anda telah menuliskan tautan di profil untuk publik dengan benar.', + 'required' => 'Tautan di profil untuk publik wajib diisi.', + 'superadmin' => 'Peran admin super tidak boleh disunting.', + 'csrf' => 'Ada potensi serangan CSRF. Apakah Anda yakin ingin membuat/menyunting seorang pengguna?', + ) , +); diff --git a/application/i18n/id_ID/bug.php b/application/i18n/id_ID/bug.php new file mode 100755 index 0000000000..7bac2e6b96 --- /dev/null +++ b/application/i18n/id_ID/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Pastikan kode keamanan yang Anda masukkan sudah benar.', + 'required' => 'Masukkan kode keamanan Anda.', + ) , + 'email' => array( + 'email' => 'Apakah Anda yakin kolom Surel sudah terisi dengan benar?', + 'length' => 'Panjang alamat surel minimal 4 dan tidak lebih dari 64 karakter.', + 'required' => 'Kolom Surel harus diisi jika kotak cek dicentang.', + ) , + 'error' => array( + 'required' => 'Mohon kolom yang belum terisi dengan benar dikoreksi terlebih dahulu.', + ) , + 'subject' => array( + 'length' => 'Isi kolom judul setidaknya 3 karakter.', + 'required' => 'Kolom judul tidak boleh dikosongkan.', + ) , + 'yourname' => array( + 'length' => 'Panjang nama setidaknya 3 karakter.', + 'required' => 'Kolom nama tidak boleh dikosongkan.', + ) , +); diff --git a/application/i18n/id_ID/category.php b/application/i18n/id_ID/category.php new file mode 100755 index 0000000000..86a6e8403a --- /dev/null +++ b/application/i18n/id_ID/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Panjang kolom warna harus sejumlah 6 karakter.', + 'required' => 'Kolom warna tidak boleh dikosongkan.', + ) , + 'category_description' => array( + 'required' => 'Kolom keterangan tidak boleh dikosongkan.', + ) , + 'category_image' => array( + 'size' => 'Mohon pastikan ukuran gambar yang diunggah tidak lebih dari 50 KB.', + 'type' => 'Format gambar yang disertakan tidak diterima. Format yang berlaku hanya .JPG, .PNG dan .GIF.', + 'valid' => 'Format gambar yang disertakan tidak diterima.', + ) , + 'category_title' => array( + 'length' => 'Panjang judul harus minimal 3 karakter tapi tidak lebih dari 80 karakter.', + 'required' => 'Kolom judul tidak boleh dikosongkan.', + ) , + 'parent_id' => array( + 'already_parent' => 'Anda tidak dapat mengubah sebuah kategori dengan beberapa sub-kategori menjadi sub-kategori tersendiri.', + 'exists' => 'Induk kategorinya tidak ada.', + 'numeric' => 'Induk kategori harus berupa angka.', + 'parent_trusted' => 'Induk kategori tidak bisa diubah menjadi kategori khusus', + 'required' => 'Induk kategori tidak boleh dikosongkan.', + 'same' => 'Kategori tidak boleh sama dengan induk kategori.', + 'special' => 'Kategori khusus tidak bisa dijadikan sub-kategori.', + ) , +); diff --git a/application/i18n/id_ID/comments.php b/application/i18n/id_ID/comments.php new file mode 100755 index 0000000000..b979cbe8d6 --- /dev/null +++ b/application/i18n/id_ID/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Mohon masukan kode keamanan yang benar.', + 'required' => 'Masukan kode keamanan Anda.', + 'valid' => 'Anda memasukkan kode keamanan yang salah.', + ) , + 'comment_author' => array( + 'length' => 'Panjang nama setidaknya 3 karakter.', + 'required' => 'Nama tidak boleh dikosongkan.', + ) , + 'comment_description' => array( + 'required' => 'Kolom komentar tidak boleh dikosongkan.', + ) , + 'comment_email' => array( + 'email' => 'Alamat surel yang Anda masukkan salah.', + 'length' => 'Alamat surel setidaknya 4 dan tidak lebih dari 64 karakter.', + 'required' => 'Jika tanda cek tercentang, maka alamat Surel tidak boleh dikosongkan. ', + ) , +); diff --git a/application/i18n/id_ID/contact.php b/application/i18n/id_ID/contact.php new file mode 100755 index 0000000000..42154d5f63 --- /dev/null +++ b/application/i18n/id_ID/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Masukkan kode keamanan Anda.', + 'valid' => 'Masukkan kode keamanan Anda.', + 'required' => 'Masukkan kode keamanan Anda.', + ) , + 'contact_email' => array( + 'email' => 'Kolom Surel tidak benar.', + 'length' => 'Panjang alamat surel setidaknya 4 karakter tapi tidak lebih dari 64 karakter.', + 'required' => 'Jika tanda cek tercentang, maka Surel tidak boleh dikosongkan.', + ) , + 'contact_message' => array( + 'required' => 'Kolom pesan tidak boleh kosong.', + ) , + 'contact_name' => array( + 'length' => 'Panjang nama minimal 3 karakter.', + 'required' => 'Kolom Nama tidak boleh dikosongkan.', + ) , + 'contact_subject' => array( + 'length' => 'Panjang judul harus minimal 3 karakter.', + 'required' => 'Judul tidak boleh dikosongkan.', + ) , + 'email_send' => array( + 'failed' => 'Ada kesalahan dalam proses pengiriman pesan Anda.', + ) , +); diff --git a/application/i18n/id_ID/core.php b/application/i18n/id_ID/core.php new file mode 100755 index 0000000000..4bd0cf80ce --- /dev/null +++ b/application/i18n/id_ID/core.php @@ -0,0 +1,35 @@ + 'Berkas konfigurasi', + 'controller' => 'pengendali', + 'driver' => 'driver', + 'driver_implements' => 'Driver %s untuk library %s harus diimplementasikan pada antar muka %s.', + 'driver_not_found' => 'Driver %s untuk library %s tidak ditemukan.', + 'errors_disabled' => 'Anda bisa kembali ke laman depan atau coba lagi.', + 'error_file_line' => '%s[%s]:', + 'generic_error' => 'Tidak Bisa Melengkapi Permintaan', + 'helper' => 'pembantu', + 'invalid_filetype' => 'Tipe berkas yang diinginkan, .%s, tidak diperbolehkan untuk melihat berkas konfigurasi.', + 'invalid_method' => 'Metode %s yang dipanggil dalam %s tidak benar.', + 'invalid_property' => 'Properti %s pada class %s tidak ditemukan.', + 'library' => 'library', + 'log_dir_unwritable' => 'Direktori log tidak dapat digunakan untuk menulis : %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi tidak bisa menentukan pengendali untuk memroses permintaan ini: %s', + 'no_default_route' => 'Tentukan rute default di config/routes.php', + 'page_not_found' => 'Laman yang Anda minta, %s, tidak ditemukan.', + 'report_bug' => 'Laporkan Kejadian ini ke Ushahidi', + 'resource_not_found' => '%s, %s yang diminta tidak ditemukan.', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Dijalankan dalam {executuion_time} detik, menggunakan {memory_usage} memori. Dihasilkan oleh Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Dalam satu laman permintaan Ushahidi hanya boleh ada satu masukan.', + 'uncaught_exception' => 'Tidak tertangani %s pada berkas %s pada baris %s', + 'view' => 'tampil', + 'view_set_filename' => 'Nama berkas untuk ditampilkan harus ditentukan sebelum memanggil render.', +); diff --git a/application/i18n/id_ID/database.php b/application/i18n/id_ID/database.php new file mode 100755 index 0000000000..e6fe592b1b --- /dev/null +++ b/application/i18n/id_ID/database.php @@ -0,0 +1,10 @@ + 'Galat basis data: %s', + 'table_not_found' => 'Tabel "%s" tidak ditemukan dalam basis data. Mohon pastikan anda menggunakan versi basis data terbaru untuk versi Ushahidi ini', +); diff --git a/application/i18n/id_ID/datetime.php b/application/i18n/id_ID/datetime.php new file mode 100755 index 0000000000..42a810dfe6 --- /dev/null +++ b/application/i18n/id_ID/datetime.php @@ -0,0 +1,86 @@ + 'AM', + 'friday' => array( + 'abbv' => 'Jum', + 'full' => 'Jumat', + ) , + 'monday' => array( + 'abbv' => 'Sen', + 'full' => 'Senin', + ) , + 'pm' => 'PM', + 'saturday' => array( + 'abbv' => 'Sab', + 'full' => 'Sabtu', + ) , + 'sunday' => array( + 'abbv' => 'Ming', + 'full' => 'Minggu', + ) , + 'thursday' => array( + 'abbv' => 'Kam', + 'full' => 'Kamis', + ) , + 'tuesday' => array( + 'abbv' => 'Sel', + 'full' => 'Selasa', + ) , + 'wednesday' => array( + 'abbv' => 'Rab', + 'full' => 'Rabu', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Januari', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februari', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Maret', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'Mei', + 'full' => 'Mei', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juni', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juli', + ) , + 'august' => array( + 'abbv' => 'Agus', + 'full' => 'Agustus', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Oktober', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Des', + 'full' => 'Desember', + ) , +); diff --git a/application/i18n/id_ID/feeds.php b/application/i18n/id_ID/feeds.php new file mode 100755 index 0000000000..409770dc36 --- /dev/null +++ b/application/i18n/id_ID/feeds.php @@ -0,0 +1,19 @@ + 'Tanggal', + 'feed_name' => array( + 'length' => 'Panjang judul berita minimal 3 karakter dan tidak lebih dari 70 karakter', + 'required' => 'Masukkan judul beritanya', + ) , + 'feed_url' => array( + 'required' => 'Masukkan URL dari beritanya', + 'url' => 'Mohon pastikan URL yang dimasukkan sudah benar. Mis. http://www.ushahidi.com', + ) , + 'source' => 'Sumber', + 'title' => 'Judul', +); diff --git a/application/i18n/id_ID/footer.php b/application/i18n/id_ID/footer.php new file mode 100755 index 0000000000..285d0479b7 --- /dev/null +++ b/application/i18n/id_ID/footer.php @@ -0,0 +1,9 @@ + 'php5-curl tidak terinstal pada sistem ini.', +); diff --git a/application/i18n/id_ID/form.php b/application/i18n/id_ID/form.php new file mode 100755 index 0000000000..39304ac662 --- /dev/null +++ b/application/i18n/id_ID/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Nilai default yang Anda sediakan untuk kolom ini tidak benar.', + 'length' => 'Panjang Nama minimal 3 karakter tapi tidak boleh lebih dari 200 karakter.', + ) , + 'field_height' => array( + 'between' => 'Tinggi Kolom hanya boleh diisi angka antara 0 - 50.', + ) , + 'field_isdate' => array( + 'between' => 'Format Tanggal yang Anda masukkan salah.', + 'required' => 'Mohon hanya pilih Ya atau Tidak pada kolom Tanggal.', + ) , + 'field_name' => array( + 'length' => 'Panjang Nama minimal 3 karakter tapi tidak boleh lebih dari 100 karakter.', + 'required' => 'Masukan Nama Anda.', + 'duplicate' => 'Kolom nama yang Anda masukkan sudah ada. Gunakan nama lain.', + ) , + 'field_required' => array( + 'between' => 'Ada kesalahan di salah satu nilai pada kolom yang wajib diisi.', + 'required' => 'Mohon hanya pilih Ya atau Tidak pada kolom yang diwajibkan.', + ) , + 'field_type' => array( + 'numeric' => 'Mohon pastikan Jenis Kolom yang Anda Pilih sudah benar.', + 'required' => 'Pilih Jenis Kolom.', + ) , + 'field_width' => array( + 'between' => 'Lebar Kolom hanya boleh diisi angka antara 0 - 300.', + ) , + 'form_description' => array( + 'required' => 'Mohon masukkan Deskripsi mengenai formulirnya.', + ) , + 'form_id' => array( + 'default' => 'Formulir default tidak bisa dihapus.', + 'numeric' => 'Silakan pilih ke formulir yang mana kolom ini akan ditambahkan.', + 'required' => 'Silakan pilih ke kolom yang mana isian ini akan ditambahkan.', + ) , + 'form_title' => array( + 'length' => 'Panjang nama minimal 3 karakter dan tidak boleh lebih dari 100 karakter.', + 'required' => 'Masukan nama formulir.', + 'exists' => 'Sebuah formulir dengan judul sama sudah ada. Gunakan nama lain.', + ) , +); diff --git a/application/i18n/id_ID/imap.php b/application/i18n/id_ID/imap.php new file mode 100755 index 0000000000..3e23fcd24e --- /dev/null +++ b/application/i18n/id_ID/imap.php @@ -0,0 +1,10 @@ + 'Gagal mengakses aliran data IMAP', + 'unsupported_service' => 'Layanan surel tidak tersedia', +); diff --git a/application/i18n/id_ID/installer.php b/application/i18n/id_ID/installer.php new file mode 100755 index 0000000000..40a6190bb8 --- /dev/null +++ b/application/i18n/id_ID/installer.php @@ -0,0 +1,80 @@ + 'Lokasi Basis', + 'database' => 'Basis data', + 'database_host' => 'Induk Basis data', + 'database_host_description' => 'Kalau anda menjalankan Ushahidi dari komputer anda sendiri, hampir pasti ini adalah "localhost". Jika anda menjalankan Ushahidi dari server web, anda akan mendapat info tentang mesin peladen (server) anda dari penyedia layanan hosting anda.', + 'database_name' => 'Nama Basis data', + 'database_name_description' => 'Nama Basis data dimana Ushahidi ingin anda jalankan', + 'db_information_link' => 'Untuk keterangan lebih lanjut, silakan baca artikel ini di wiki yang membahas lebih rinci tentang basis data', + 'default_language' => 'Bahasa bawaan (lokal)', + 'default_language_description' => 'Tiap memasang (install) Ushahidi disertai satu set terjemahan berbagai bahasa. Anda bisa juga menambahkan bahasa anda sendiri', + 'disable' => 'Matikan', + 'enable' => 'Hidupkan', + 'error_summary' => 'Daftar dibawah ini adalah rangkuman semua galat yg pernah dijumpai', + 'files_location_text' => 'Lokasi dimana berkas-berkas Ushahidi ditempatkan. Kami telah mendeteksi isian ini secara otomatis, mohon dipastikan hasil pendeteksian ini tidak salah. Jika isiannya kosong, jangan khawatir, itu artinya Ushahidi terpasang di direktori utama.', + 'finished' => 'Selesai', + 'general' => 'Umum', + 'google_key' => 'Kunci API Google', + 'google_key_description' => 'Siapa saja bisa mendapatkan kunci api. Miliki segera', + 'go_back' => 'Kembali', + 'index' => array( + 'advanced' => 'INSTALASI LANJUTAN', + 'advanced_installation_description' => 'Selesaikan semua konfigurasi dasar dengan proses 5 langkah ini. Ini termasuk server, pemetaan, nama situs dan rincian detil kontak.', + 'basic_installation' => 'INSTALASI DASAR', + 'basic_installation_description' => 'Sederhana dan cepat. Yang dibutuhkan hanya direktori utama situs dan informasi basis datanya. Pilih opsi ini jika anda mau menjalankan ushahidi secepatnya, anda masih tetap bisa melakukan konfigurasi lanjutan dikemudian hari.', + 'proceed' => 'Lanjutkan', + 'welcome' => 'Selamat datang di proses instalasi server Ushahidi. Pilih tipe instalasi sesuai kebutuhan anda :', + ) , + 'installation_successful' => 'Instalasi sukses', + 'mail_server' => 'Mail Server', + 'mail_server_host' => 'Induk Mail Server', + 'mail_server_host_description' => 'Contoh: mail.situsanda.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Kata sandi mail server', + 'mail_server_password_description' => 'Kata sandi yang biasa anda gunakan untuk login ke layanan surel', + 'mail_server_port' => 'Port Mail Server', + 'mail_server_port_description' => 'Port umum : 25,110,995 (Gmail ssl pop3), 993 (Gmail ssl imap)', + 'mail_server_type' => 'Tipe Mail Server', + 'mail_server_type_description' => 'Internet message access protocol (IMAP) atau Post Office Protocol (POP). Apa bedanya? ', + 'mail_server_username' => 'Nama pengguna mail server', + 'mail_server_username_description' => 'Kalau anda menggunakan layanan surel dari Gmail, Hotmail atau Yahoo, masukan alamat surel lengkap anda sebagai nama penggunanya.', + 'map' => 'Peta', + 'map_provider' => 'Penyedia peta', + 'map_provider_description' => 'Ushahidi bekerja sama baiknya dengan keempat penyedia layanan pemetaan ini: Google, Bing, Yahoo dan OpenStreetMap. Pilih yang tampilannya paling rinci di daerah anda.', + 'other_steps' => 'Langkah lainnya...', + 'password' => 'Sandi', + 'password_description' => 'Kata sandi basis data anda', + 'previous' => 'Sebelumnya', + 'restart_apache' => 'Mohon restart server Apache anda', + 'select_mail_server_ssl' => 'Hidupkan atau matikan SSL', + 'select_mail_server_ssl_description' => 'Beberapa mail server memberikan pilihan untuk menggunakan SSL ketika melakukan koneksi. Menggunakan SSL sangat dianjurkan untuk meningkatkan level keamanan anda.', + 'setup_sms' => 'Atur server SMS anda', + 'site_email' => 'Alamat surel', + 'site_email_alerts' => 'Alamat surel notifikasi', + 'site_email_alerts_description' => 'Ketika pengunjung situs anda mendaftar untuk mendapat peringatan melalui surel, mereka akan menerima surel dari alamat surel ini. Alamat surel ini tidak harus sama dengan alamat surel situs.', + 'site_email_description' => 'Semua komunikasi surel situs menggunakan alamat ini', + 'site_name' => 'Nama situs', + 'site_name_description' => 'Nama situs anda', + 'site_tagline' => 'Slogan Situs', + 'site_tagline_description' => 'Slogan anda', + 'summary' => array( + 'text_1' => 'Webserver harus punya hak menulis pada berkas dan direktori yg tercantum dibawah ini', + 'text_2' => '

Berikut instruksi untuk mengubah hak akses berkas:

', + 'text_3' => 'Sebelum memulai pastikan server web punya hak menulis pada berkas dan direktori berikut ini. Kalau perlu ubah hak aksesnya.', + 'text_4' => 'Untuk memperlancar proses pemasangan, siapkan informasi berikut ini', + ) , + 'table_prefix' => 'Tabel prefix', + 'table_prefix_description' => 'Umumnya anda tidak perlu mengubah apa-apa dari tabel Prefix. Tetapi bila anda ingin menjalankan beberapa instalasi Ushahidi dari basis data yang sama, anda dapat melakukannya dengan menyesuaikan prefix-nya disini', + 'title' => 'Judul', + 'to_login' => 'Untuk login, kunjungi', + 'upload_data' => 'Unggah laporan data', + 'username' => 'Nama pengguna', + 'username_description' => 'Nama pengguna basis data anda', + 'use_credentials' => 'dan gunakan data akun berikut ini', + 'view_site' => 'Periksa situs anda', +); diff --git a/application/i18n/id_ID/layer.php b/application/i18n/id_ID/layer.php new file mode 100755 index 0000000000..4ab9309684 --- /dev/null +++ b/application/i18n/id_ID/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Isi kolom warna harus sepanjang 6 karakter.', + 'required' => 'Kolom warna tidak boleh dikosongkan.', + ) , + 'layer_file' => array( + 'type' => 'Isian pada kolom berkas salah. Format yang berlaku hanya .KMZ, .KML.', + 'valid' => 'File yang tercantum pada kolom berkas salah.', + ) , + 'layer_name' => array( + 'length' => 'Panjang isi kolom nama setidaknya 3 dan tidak boleh lebih dari 80 karakter.', + 'required' => 'Kolom nama tidak boleh dikosongkan.', + ) , + 'layer_url' => array( + 'atleast' => 'Dibutuhkan URL KML atau berkas KML', + 'both' => 'Anda hanya bisa mencantumkan berkas KML atau URL-nya saja.', + 'url' => 'Masukan URL yang benar. Misalnya http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/id_ID/libraries.php b/application/i18n/id_ID/libraries.php new file mode 100755 index 0000000000..6fee3c933a --- /dev/null +++ b/application/i18n/id_ID/libraries.php @@ -0,0 +1,27 @@ + 'Tidak bisa terhubung dengan layanan Akismet.', + 'akismet_cannot_retrieve' => 'Respon dari Akismet tidak bisa diperoleh.', + 'api_library_not_found' => 'Pustaka API: %s untuk %s tidak ditemukan. Mohon periksa tabel routing API task Anda.', + 'askimet_invalid_apikey' => 'Kunci API Akismet Anda tidak valid.', + 'clickatell_fopen_error' => 'Error terjadi pada saat melakukan metode pengiriman fopen!
Mohon pastikan PHP memiliki dukungan OpenAAL dan pastikan versi PHP-nya sudah lebih dari 5.2.', + 'clickatell_message_too_long' => 'Pesan unicode Anda terlalu panjang! (Panjang sekarang=', + 'clickatell_no_destination_address' => 'Mohon sertakan alamat tujuan (KEPADA)!', + 'clickatell_no_sender_address' => 'Mohon sertakan alamat pengirim (DARI)!', + 'clickatell_unicode_message_too_long' => 'Pesan unicode Anda terlalu panjang! (Panjang sekarang=', + 'clickatell_unsupported_method' => 'Metode pengiriman tidak dikenal!', + 'invalid_api_library' => 'Pustaka API %s tidak berlaku. Semua pustaka API harus merupakan subclass dari %s.', + 'upgrade_directory_not_deleted' => 'Direktori %s tidak bisa dihapus.', + 'upgrade_extracting_error' => 'Error pada saat melakukan ekstraksi: %s', + 'upgrade_failed' => 'Pengunduhan versi terbaru Ushahidi gagal. Status kode HTTP', + 'upgrade_file_not_copied' => 'Berkas %s tidak bisa disalin.', + 'upgrade_file_not_deleted' => 'Berkas %s tidak bisa dihapus.', + 'upgrade_title' => 'Skrip upgrade Ushahidi', + 'upgrade_zip_error' => 'Berkas zip Ushahidi yang diunduh %s, tidak bisa ditulis.', + 'riverid_variable_not_available' => '%s tidak tersedia di class RiverID.', +); diff --git a/application/i18n/id_ID/maintenance.php b/application/i18n/id_ID/maintenance.php new file mode 100644 index 0000000000..42e2901a4f --- /dev/null +++ b/application/i18n/id_ID/maintenance.php @@ -0,0 +1,9 @@ + 'Maaf, situs kami sedang istirahat untuk pemeliharaan. Silahkan coba lagi beberapa menit.', +); diff --git a/application/i18n/id_ID/message.php b/application/i18n/id_ID/message.php new file mode 100755 index 0000000000..55668c24bd --- /dev/null +++ b/application/i18n/id_ID/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Masukan kode keamanan yang benar', + 'required' => 'Masukan kode keamanan', + ) , + 'email' => array( + 'email' => 'Kolom surel tampaknya tidak berisi alamat surel yang benar.', + 'length' => 'Panjang alamat surel minimal 4 karakter dan tidak boleh lebih dari 64 karakter', + 'required' => 'Kalau kotak centang dicentang kolom alamat surel tidak boleh dikosongkan', + ) , + 'message' => array( + 'required' => 'Kolom komentar tidak boleh dikosongkan', + ) , + 'name' => array( + 'length' => 'Panjang kolom nama minimal 3 karakter', + 'required' => 'Kolom nama tidak boleh dikosongkan', + ) , + 'phone' => array( + 'length' => 'Isi kolom telpon salah.', + ) , +); diff --git a/application/i18n/id_ID/mhi.php b/application/i18n/id_ID/mhi.php new file mode 100755 index 0000000000..09450c04a2 --- /dev/null +++ b/application/i18n/id_ID/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Masukkan kode keamanan yang benar.', + 'required' => 'Masukkan kode keamanan.', + ) , + 'contact_email' => array( + 'email' => 'Surel yang Anda masukkan tidak benar.', + 'required' => 'Pastikan alamat surel diisikan sudah benar.', + ) , + 'contact_message' => array( + 'required' => 'Kolom pesan tidak boleh kosong.', + ) , + 'contact_subject' => array( + 'length' => 'Panjang isi kolom subjek setidaknya 3 karakter.', + 'required' => 'Kolom subjek tidak boleh dikosongkan.', + ) , +); diff --git a/application/i18n/id_ID/notifications.php b/application/i18n/id_ID/notifications.php new file mode 100755 index 0000000000..9af0979976 --- /dev/null +++ b/application/i18n/id_ID/notifications.php @@ -0,0 +1,35 @@ + 'Pesan ini dikirim dari situs Anda.', + 'admin_login_url' => 'Login Administrator.', + 'admin_new_comment' => array( + 'message' => 'Sebuah komentar baru dikirimkan ke situs Anda sebagai tanggapan atas:', + 'subject' => 'Komentar Baru', + ) , + 'admin_new_email' => array( + 'message' => 'Sebuah surel baru telah dikirim ke situs Anda.', + 'subject' => 'Surel Baru.', + ) , + 'admin_new_report' => array( + 'message' => 'Sebuah laporan baru telah dikirimkan ke situs Anda.', + 'subject' => 'Laporan Baru', + ) , + 'admin_new_sms' => array( + 'message' => 'Sebuah pesan teks telah dikirim ke situs Anda.', + 'subject' => 'Pesan Teks Baru', + ) , + 'member_new_alert' => array( + 'message' => 'Anda Telah Menerima Satu Peringatan Baru', + 'subject' => 'Peringatan Baru!', + ) , + 'member_new_message' => array( + 'message' => 'Anda Telah Menerima Sebuah Pesan Pribadi', + 'subject' => 'Pesan Pribadi Baru', + 'footer' => 'Untuk Menjawabnya, Silahkan Pindah Ke: ', + ) , +); diff --git a/application/i18n/id_ID/page.php b/application/i18n/id_ID/page.php new file mode 100644 index 0000000000..f3868843c9 --- /dev/null +++ b/application/i18n/id_ID/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Masukkan Judul Halaman.', + 'length' => 'Panjang Judul Halaman setidaknya 3 karakter dan tidak boleh lebih dari 150 karakter.', + ) , + 'page_tab' => array( + 'required' => 'Masukkan nama Tab Halaman.', + ) , + 'page_description' => array( + 'required' => 'Masukkan Keterangan Halaman.', + ) , +); diff --git a/application/i18n/id_ID/permissions.php b/application/i18n/id_ID/permissions.php new file mode 100644 index 0000000000..c9643c314c --- /dev/null +++ b/application/i18n/id_ID/permissions.php @@ -0,0 +1,27 @@ + 'Lihat Laporan', + 'reports_edit' => 'Buat/Sunting/Hapus Laporan', + 'reports_approve' => 'Menyetujui Laporan', + 'reports_verify' => 'Verifikasi Laporan', + 'reports_comments' => 'Atur Komentar dalam Laporan', + 'reports_download' => 'Unduh Laporan', + 'reports_upload' => 'Unggah Laporan', + 'messages' => 'Pengaturan Pesan', + 'messages_reporters' => 'Pengaturan Pesan Pelapor', + 'stats' => 'Lihat Status', + 'settings' => 'Ubah Pengaturan', + 'manage' => 'Pengaturan Panel', + 'users' => 'Pengaturan Pengguna', + 'manage_roles' => 'Pengaturan Peran', + 'checkin' => 'Bisa checkin', + 'checkin_admin' => 'Pengaturan checkin', + 'admin_ui' => 'Akses UI Admin', + 'member_ui' => 'Akses UI Anggota', + 'delete_all_reports' => 'Hapus semua laporan', +); diff --git a/application/i18n/id_ID/private_message.php b/application/i18n/id_ID/private_message.php new file mode 100644 index 0000000000..1dd8008136 --- /dev/null +++ b/application/i18n/id_ID/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Parent ID harus dalam format numerik atau angka.', + ) , + 'private_to' => array( + 'required' => 'Kolom Tujuan wajib diisi.', + 'exists' => 'Tujuan pengguna yang Anda hendak kirim pesan tidak ada.', + ) , + 'private_subject' => array( + 'required' => 'Kolom Subyek wajib diisi.', + 'length' => 'Kolom Subyek harus berisi antara 3 hingga 150 karakter.', + ) , + 'private_message' => array( + 'required' => 'Kolom Isi Pesan wajib diisi.', + ) , +); diff --git a/application/i18n/id_ID/report.php b/application/i18n/id_ID/report.php new file mode 100755 index 0000000000..545f85bc8a --- /dev/null +++ b/application/i18n/id_ID/report.php @@ -0,0 +1,139 @@ + 'error!', + 'country_name' => array( + 'single_country' => 'Pengembangan ini hanya mencakup satu negara saja. Pastikan posisi dalam laporan masuk dalam wilayah negara %s.', + ) , + 'custom_field' => array( + 'values' => 'Masukkan nilai pada kolom "%s" yang tepat.', + 'numeric' => 'Kolom "%s" harus berupa angka. ', + 'required' => 'Kolom "%s" wajib diisi.', + 'not_exist' => 'Kolom "%s" tidak ditemukan.', + 'permission' => 'Anda tidak diperkenankan menyunting kolom "%s".', + 'email' => 'Kolom "%s" harus berisi alamat surel yang benar.', + 'phone' => 'Kolom "%s" harus berisi nomor telepon seluler yang benar.', + 'date_mmddyyyy' => 'Kolom "%s" harus berupa tanggal dalam format yang tepat (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'Kolom "%s" harus berupa tanggal dalam format yang tepat (DD/MM/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Pastikan hanya memilih bagian yang tepat untuk diunduh.', + 'numeric' => 'Pastikan hanya memilih bagian yang tepat untuk diunduh.', + ) , + 'data_active' => array( + 'between' => 'Pilih "Laporan yang Menunggu Disetujui" atau "Laporan yang Disetujui" atau keduanya.', + 'numeric' => 'Pilih "Laporan yang Menunggu Disetujui" atau "Laporan yang Disetujui" atau keduanya.', + 'required' => 'Pilih "Laporan yang Menunggu Disetujui" atau "Laporan yang Disetujui" atau keduanya.', + ) , + 'data_verified' => array( + 'between' => 'Pilih "Laporan yang Menunggu Diperiksa" atau "Laporan yang Sudah Diperiksa" atau keduanya.', + 'numeric' => 'Pilih "Laporan yang Menunggu Diperiksa" atau "Laporan yang Sudah Diperiksa" atau keduanya.', + 'required' => 'Pilih "Laporan yang Menunggu Diperiksa" atau "Laporan yang Sudah Diperiksa" atau keduanya.', + ) , + 'data_point' => array( + 'between' => 'Pastikan memilih laporan yang tepat untuk diunduh.', + 'numeric' => 'Pastikan memilih laporan yang tepat untuk diunduh.', + 'required' => 'Pastikan memilih jenis laporan yang tepat untuk diunduh.', + ) , + 'format' => array( + 'required' => 'Anda harus memilih format file untuk diunduh, bisa CSV atau XML.', + 'valid' => 'Masukkan format file yang hendak Anda unduh dalam', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Kolom SEJAK pada tanggal tidak benar.', + 'range' => 'Masukkan kolom SEJAK yang benar pada tanggal. Tidak boleh lebih dari saat ini.', + ) , + 'incident_active' => array( + 'between' => 'Isi kolom Setujui Laporan Ini dengan benar.', + 'required' => 'Isi kolom Setujui Laporan Ini dengan benar.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Kolom AM/PM tidak benar.', + ) , + 'incident_category' => array( + 'numeric' => 'Kolom Kategori tidak benar.', + 'required' => 'Kolom Kategori wajib diisi.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Kolom tanggal tidak benar.', + 'date_mmddyyyy' => 'Kolom tanggal tidak benar.', + 'required' => 'Kolom tanggal wajib diisi.', + ) , + 'incident_description' => array( + 'required' => 'Kolom keterangan wajib diisi.', + ) , + 'incident_hour' => array( + 'between' => 'Kolom jam tidak benar.', + 'required' => 'Kolom jam wajib diisi.', + ) , + 'incident_information' => array( + 'alpha' => 'Pastikan yang tertera dalam kolom Peluang Informasi sudah benar.', + 'length' => 'Pastikan yang tertera dalam kolom Peluang Informasi sudah benar.', + ) , + 'incident_minute' => array( + 'between' => 'Kolom menit tidak benar.', + 'required' => 'Kolom menit wajib diisi.', + ) , + 'incident_news' => array( + 'url' => 'Alamat pada kolom tautan sumber berita tidak benar.', + ) , + 'incident_photo' => array( + 'size' => 'Pastikan besar foto yang diunggah tidak lebih dari 2 MB.', + 'type' => 'Isi kolom Unggah Foto tidak benar. Format yang berlaku hanya .JPG, .PNG dan .GIF.', + 'valid' => 'Isi kolom Unggah Foto tidak benar.', + ) , + 'incident_source' => array( + 'alpha' => 'Masukkan Kehandalan Sumber yang tepat.', + 'length' => 'Masukkan Kehandalan Sumber yang tepat.', + ) , + 'incident_title' => array( + 'length' => 'Panjang "Judul Laporan" setidaknya 3 karakter dan tidak lebih dari 200 karakter.', + 'required' => 'Kolom "Judul Laporan" wajib diisi.', + 'csrf' => 'Ada kemungkinan serangan CSRF. Apakah Anda yakin hendak membuat/menyunting laporan?', + ) , + 'incident_verified' => array( + 'between' => 'Isi kolom "Periksa Laporan Ini" dengan tepat.', + 'required' => 'Isi kolom "Periksa Laporan Ini" dengan tepat.', + ) , + 'incident_video' => array( + 'url' => 'Alamat tautan video tidak benar.', + ) , + 'latitude' => array( + 'between' => 'Isi kolom Lintang salah.', + 'required' => 'Kolom Lintang wajib diisi. Klik lokasi pada peta.', + ) , + 'locale' => array( + 'alpha_dash' => 'Kolom pengaturan lokal tidak tepat.', + 'exists' => 'Laporan ini sudah diterjemahkan dalam bahasa ini.', + 'length' => 'Kolom pengaturan lokal tidak tepat.', + 'locale' => 'Bahasa Laporan Asli dan Terjemahan memiliki bahasa (lokal) yang sama.', + 'required' => 'Kolom pengaturan lokal wajib diisi.', + ) , + 'location_name' => array( + 'length' => 'Kolom "Nama Lokasi" setidaknya 3 karakter dan tidak lebih dari 200 karakter.', + 'required' => 'Kolom "Nama Lokasi" wajib diisi.', + ) , + 'longitude' => array( + 'between' => 'Kolom Bujur tidak benar.', + 'required' => 'Kolom Bujur wajib diisi. Klik lokasi pada peta.', + ) , + 'person_email' => array( + 'email' => 'Alamat surel Anda tidak benar.', + 'length' => 'Alamat surel setidaknya terdiri dari 4 karakter dan tidak lebih dari 64 karakter.', + ) , + 'person_first' => array( + 'length' => 'Kolom nama pertama setidaknya 3 karakter dan tidak lebih dari 100 karakter.', + ) , + 'person_last' => array( + 'length' => 'Kolom nama keluarga setidaknya 2 karakter dan tidak lebih dari 100 karakter.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Kolom SAMPAI pada tanggal tidak benar.', + 'range' => 'Masukkan kolom SAMPAI pada tanggal yang tepat. Tidak boleh melebihi hari ini.', + 'range_greater' => 'Kolom SEJAK pada rentang waktu tidak boleh melebihi kolom SAMPAI.', + ) , +); diff --git a/application/i18n/id_ID/reporters.php b/application/i18n/id_ID/reporters.php new file mode 100755 index 0000000000..306b569c62 --- /dev/null +++ b/application/i18n/id_ID/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Isi pada kolom Lintang tidak benar. ', + 'required' => 'Kolom Lintang tidak boleh dikosongkan. Anda bisa klik lokasi di peta untuk lokasi yang diinginkan.', + ) , + 'level_id' => array( + 'numeric' => 'Isi pada kolom Level Pelapor tidak benar.', + 'required' => 'Isi pada kolom Level Pelapor tidak benar.', + ) , + 'location_name' => array( + 'length' => 'Nama lokasi setidaknya terdiri atas 3 dan tidak lebih dari 200 karakter.', + 'required' => 'Kolom nama lokasi tidak boleh dikosongkan.', + ) , + 'longitude' => array( + 'between' => 'Isi pada kolom Bujur tidak benar. ', + 'required' => 'Kolom Bujur tidak boleh dikosongkan. Anda bisa klik lokasi di peta untuk lokasi yang diinginkan.', + ) , + 'reporter_id' => array( + 'numeric' => 'Pelapor Tidak Dikenal', + 'required' => 'Pelapor Tidak Dikenal', + ) , +); diff --git a/application/i18n/id_ID/reports.php b/application/i18n/id_ID/reports.php new file mode 100644 index 0000000000..903d19cd48 --- /dev/null +++ b/application/i18n/id_ID/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Pastikan Anda telah memilih satu pilihan.', + 'numeric' => 'Pastikan Anda telah memilih satu pilihan.', + 'categories_required' => 'Laporan harus dikategorisasikan sebelum disetujui.', + ) , + 'action' => array( + 'permission' => 'Anda tidak memiliki ijin untuk menjalankan perintah ini.', + ) , + 'uploadfile' => array( + 'required' => 'Anda harus memilih satu buah file untuk diunggah.', + 'type' => 'File yang diunggah harus dalam bentuk .csv atau .xml.', + 'valid' => 'File yang Anda unggah sepertinya tidak benar.', + ) , +); diff --git a/application/i18n/id_ID/roles.php b/application/i18n/id_ID/roles.php new file mode 100755 index 0000000000..a58316a3f4 --- /dev/null +++ b/application/i18n/id_ID/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Isi kolom Keterangan setidaknya 3 dan tidak boleh lebih dari 100 karakter.', + 'required' => 'Kolom Keterangan tidak boleh dikosongkan.', + ) , + 'name' => array( + 'alpha_numeric' => 'Kolom Nama hanya boleh diisi huruf atau angka.', + 'length' => 'Isi kolom Nama setidaknya 2 dan tidak boleh lebih dari 30 karakter.', + 'nomodify' => 'Peran SuperAdmin Tidak Bisa Diubah.', + 'required' => 'Kolom Nama tidak boleh dikosongkan.', + ) , + 'access_level' => array( + 'numeric' => 'Kolom Level Akses harus berisi angka antara 0-100.', + 'required' => 'Kolom Level Akses harus berisi angka antara 0-100.', + ) , + 'permissions' => array( + 'numeric' => 'Kolom Ijin harus berisi angka antara 0-100.', + ) , +); diff --git a/application/i18n/id_ID/settings.php b/application/i18n/id_ID/settings.php new file mode 100755 index 0000000000..bc22b1fd06 --- /dev/null +++ b/application/i18n/id_ID/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'Isian komentar tidak akan ditampilkan apabila tidak mengandung kebenaran.', + 'required' => 'Isian komentar tidak boleh dikosongkan.', + ) , + 'allow_feed' => array( + 'between' => 'Isian umpan tidak akan ditampilkan apabila tidak benar cara penulisannya.', + 'required' => 'Isian umpan harus diisi.', + ) , + 'allow_feed_category' => array( + 'between' => 'Kolom isian kategori umpan tidak benar.', + 'required' => 'Kolom isian kategori umpan harus diisi.', + ) , + 'allow_alerts' => array( + 'between' => 'Isian peringatan tidak akan ditampilkan apabila tidak diisi dengan benar.', + 'required' => 'Isian memperbolehkan peringatan harus diisi.', + ) , + 'allow_reports' => array( + 'between' => 'Isian memperbolehkan laporan tidak diisi dengan benar.', + 'required' => 'Isian memperbolehkan laporan harus diisi.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Isian berbagi stat tidak akan ditampilkan apabila tidak diisi dengan benar.', + 'required' => 'Isian berbagi stat harus diisi.', + ) , + 'api' => array( + 'default_record_limit' => 'Jumlah standar rekaman yang diambil untuk setiap permintaan API', + 'maximum_record_limit' => 'Jumlah maksimal rekaman yang diambil untuk setiap permintaan API', + 'maximum_requests_per_ip_address' => 'Jumlah maksimal permintaan API untuk tiap alamat IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Isian pada kolom Akismet tidak benar.', + 'length' => 'Isian pada kolom Akismet tidak benar.', + ) , + 'banner_image' => array( + 'type' => 'Kolom banner situs harus menggunakan format berkas gambar yang sesuai. Situs ini hanya menerima berkas dalam bentuk .JPG, .PNG dan .GIF.', + 'size' => 'Pastikan bahwa ukuran "Banner Situs" tidak lebih dari 250 KB.', + 'valid' => '"Banner Situs" tidak benar.', + ) , + 'cache_pages' => array( + 'between' => 'Kolom cache halaman harus diisi.', + 'required' => 'Kolom cache halaman tidak benar.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Batas kadaluarsa cache halaman tidak benar.', + 'required' => 'Batas kadaluarsa cache halaman harus diisi.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Sepertinya server Anda tidak diatur supaya bisa mengatasi clean URL. Anda perlu mengubah konfigurasi server sebelum memperbolehkan penggunaan clean URL. Lihat lebih lanjut mengenai clean URL di forum diskusi ini', + 'clean_url_enabled' => 'Opsi ini akan menjadikan Ushahidi bisa diakses melalui clean URL (tanpa "index.php" dalam tautan).', + 'enable_clean_url' => 'Memperbolehkan Clean URL', + 'title' => 'Clean URL', + ) , + 'clickatell_api' => array( + 'length' => 'Kolom nomor API Clickatell tidak boleh lebih dari 20 karakter.', + 'required' => 'Kolom isian nomor API Clickatell wajib diisi.', + ) , + 'clickatell_password' => array( + 'length' => 'Kolom kata sandi Clickatell setidaknya terdiri atas 5 dan tidak lebih dari 50 karakter.', + 'required' => 'Kata sandi Cliackatell wajib diisi.', + ) , + 'clickatell_username' => array( + 'length' => 'Kolom Nama Pengguna Clickatell tidak boleh lebih dari 50 karakter.', + 'required' => 'Kolom Nama Pengguna Clickatell tidak boleh kosong.', + ) , + 'configure_map' => 'Pengaturan Peta', + 'default_location' => 'Lokasi Standar', + 'default_map_all' => array( + 'alpha_numeric' => 'Kolom warna umpan tidak benar.', + 'length' => 'Kolom warna tidak boleh lebih dari 6 karakter.', + 'required' => 'Kolom warna harus diisi.', + ) , + 'default_map_view' => 'Tampilan Peta Standar', + 'default_zoom_level' => 'Tingkat Pembesaran Standar', + 'download_city_list' => 'Menerima Daftar Kota dari Geonames', + 'email_host' => array( + 'length' => 'Kolom port server mail terlalu panjang.', + 'numeric' => 'Kolom port Server Mail hanya bisa diisi dengan angka.', + ) , + 'email_password' => array( + 'length' => 'Kata sandi Mail Server setidaknya terdiri atas 5 dan tidak lebih dari 50 karakter.', + 'required' => 'Kata sandi untuk Mail Server tidak boleh dikosongkan.', + ) , + 'email_port' => array( + 'length' => 'Isi kolom Port Mail Server terlalu panjang.', + 'numeric' => 'Kolom port Mail Server hanya bisa diisi dengan angka.', + ) , + 'email_servertype' => array( + 'length' => 'Kolom port mail server terlalu panjang.', + 'required' => 'Kolom Jenis Mail Server wajib diisi.', + ) , + 'email_username' => array( + 'length' => 'Nama pengguna dalam mail server tidak boleh lebih dari 50 karakter.', + 'required' => 'Kolom Nama Pengguna Mail Server wajib diisi.', + ) , + 'facebook' => array( + 'title' => 'Opsi Pengaturan Facebook', + 'description' => 'Untuk memperoleh informasi di bawah ini Anda harus membuat aplikasi Facebook yang baru di', + 'description_2' => 'Pengaturan ini memungkinkan pengguna untuk masuk melalui Facebook, tapi bukan membuat aplikasi Facebook di situs Anda.', + 'app_id' => 'ID Aplikasi Facebook', + 'app_secret' => 'Kode Rahasia Aplikasi Facebook', + ) , + 'google_analytics' => array( + 'length' => 'Kolom Google Analytics harus mengandung Web Property ID yang benar dalam format UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'HTTPS Diijinkan', + 'https_disabled' => 'Opsi ini memungkinkan Ushahidi bisa diakses dalam moda tidak aman; tanpa "https://" dalam awalan URL', + 'https_enabled' => 'Opsi ini memungkinkan Ushahidi bisa diakses dalam moda aman; dengan awalan https di URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Isian dalam kolom jumlah item per halaman (Halaman Depan) tidak benar.', + 'required' => 'Isian dalam kolom jumlah item per halaman (Halaman Depan) tidak benar.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Isian dalam kolom jumlah item per halaman (Halaman Depan) tidak benar.', + 'required' => 'Kolom item per halaman (Admin) wajib diisi.', + ) , + 'map' => array( + 'default_location' => 'Pengaturan penyedia peta yang Anda pilih adalah proses yang searah. Pilih penyedianya, dapatnya kunci API dari situs penyedia peta tersebut, dan masukkan kunci API.', + 'zoom' => 'Tingkat Pembesaran', + ) , + 'map_provider' => array( + 'choose' => 'Pilih Penyedia Peta', + 'enter_api' => 'Masukkan kunci API yang baru', + 'get_api' => 'Dapatkan kunci API', + 'info' => 'Pengaturan penyedia peta yang Anda pilih adalah proses yang searah. Pilih penyedianya, dapatnya kunci API dari situs penyedia peta tersebut, dan masukkan kunci API.', + 'name' => 'Penyedia peta', + ) , + 'map_timeline' => 'Linimasa Peta', + 'map_settings' => 'Pengaturan Peta', + 'multiple_countries' => 'Apakah Ushahidi ini akan digunakan untuk kawasan yang terdiri atas beberapa negara?', + 'select_default_location' => 'Pilih standar negara', + 'set_location' => 'Klik dan geser peta ke lokasi yang Anda inginkan', + 'site' => array( + 'allow_clustering' => 'Sekelompok Laporan dalam Peta', + 'allow_comments' => 'Ijinkan Pengguna untuk berkomentar dalam laporan', + 'allow_feed' => 'Termasuk Umpan Berita RSS di Situs', + 'allow_feed_category' => 'Membuat Kategori Baru dari Umpan', + 'allow_alerts' => 'Ijinkan Pengguna untuk Memperoleh Peringatan', + 'allow_reports' => 'Ijinkan Pengguna untuk Mengirimkan Laporan', + 'api_akismet' => 'Kunci Akismet', + 'banner' => 'Banner Situs', + 'blocks_per_row' => 'Kotak per Lajur', + 'cache_pages' => 'Cache Halaman', + 'cache_pages_lifetime' => 'Masa Berlaku Cache Halaman', + 'checkins' => 'Memungkinkan Checkin', + 'copyright_statement' => 'Pernyataan Hak Cipta Situs', + 'default_category_colors' => 'Warna Standar untuk Seluruh Kategori', + 'default_category_icons' => 'Ikon Standar untuk Seluruh Kategori', + 'delete_banner_image' => 'Hapus Gambar Banner', + 'delete_default_map_all_icon' => 'Hapus Ikon Standar', + 'display_contact_page' => 'Tampilkan Halaman Kontak', + 'display_howtohelp_page' => 'Tampilkan Halaman "Bagaimana Cara Membantu"', + 'email_alerts' => 'Alamat Surel untuk Peringatan', + 'email_notice' => 'untuk menerima laporan melalui surel, atur akun surel Anda.', + 'email_site' => 'Alamat Surel Situs', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Bagian per Halaman - Halaman Muka', + 'items_per_page_admin' => 'Bagian per Halaman - Admin', + 'kismet_notice' => 'Cegah komentar berupa spam dengan menggunakan Akismet dari Automattic.
Anda bisa memperoleh kunci API secara gratis dengan mendaftarkan diri di WordPress.com', + 'laconica_configuration' => 'Kredensial Laconica', + 'laconica_site' => 'Situs Laconica', + 'language' => 'Bahasa dalam Situs', + 'manually_approve_users' => 'Menyetujui Pengguna Secara Manual', + 'message' => 'Pesan dalam Situs', + 'name' => 'Nama Situs', + 'private_deployment' => 'Situs untuk kalangan terbatas', + 'require_email_confirmation' => 'Membutuhkan Konfirmasi Surel Pengguna', + 'submit_report_message' => 'Kirim Pesan Laporan', + 'share_site_stats' => 'Memungkinkan Statistik (disimpan dalam server Ushahidi)', + 'tagline' => 'Slogan Situs', + 'timezone' => 'Zona Waktu', + 'title' => 'Pengaturan Situs', + 'twitter_configuration' => 'Kalimat Pencarian di Twitter', + 'twitter_hashtags' => 'Tagar - Dipisahkan dengan koma', + 'feed_geolocation_user' => 'Umpan geolocation - nama pengguna Geonames', + ) , + 'site_email' => array( + 'email' => 'Kolom surel situs tidak benar.', + 'length' => 'Kolom surel situs setidaknya terdiri atas 4 dan tidak lebih dari 100 karakter.', + ) , + 'site_name' => array( + 'length' => 'Kolom nama situs setidaknya terdiri atas 3 dan tidak lebih dari 50 karakter.', + 'required' => 'Nama situs wajib diisi.', + ) , + 'site_tagline' => array( + 'length' => 'Kolom slogan situs setidaknya terdiri atas 3 dan tidak lebih dari 100 karakter.', + 'required' => 'Kolom slogan wajib diisi.', + ) , + 'sms' => array( + 'clickatell_api' => 'Nomor Clickatell API Anda', + 'clickatell_check_balance' => 'Periksa Pulsa Clickatell Anda', + 'clickatell_load_balance' => 'Lihat Saldo', + 'clickatell_password' => 'Kata Sandi untuk Clickatell Anda', + 'clickatell_text_1' => 'Dapatkan layanan gratis Clickatell dengan mendaftar di sini ', + 'clickatell_text_2' => 'Masukkan informasi mengenai akses Clickatell Anda di bawah', + 'clickatell_username' => 'Nama Pengguna dalam Clickatell Anda', + 'flsms_description' => 'Frontline SMS adalah program gratis dan berbasis kode terbuka yang memungkinkan pengguna untuk mengirim serta menerima SMS dari banyak orang dengan menggunakan ponsel. Klik pada kotak di bawah ini untuk memperoleh versi terkini dari FrontlineSMS.com.', + 'flsms_download' => 'Unduh dan instalasi FrontlineSMS', + 'flsms_instructions' => 'Intruksi terperinci cara mengirim SMS melalui FrontlineSMS sudah tersedia di sini. URL dan kunci API di bawah ini diminta untuk pengaturan dan sinkronisasi data dengan FrontlineSMS.', + 'flsms_link' => 'Salin dan tempelkan ini dalam kolom "Alamat" FrontlineSMS', + 'flsms_key' => 'Salin dan tempelkan ini dalam kolom "Kunci API Ushahidi"', + 'flsms_synchronize' => 'Menghubungkan antara FrontlineSMS dengan situs Ushahidi ini', + 'flsms_text_1' => 'Masukkan nomor ponsel yang terhubung dengan Frontline SMS dalam kolom di bawah', + 'flsms_text_2' => 'Masukkan angka tanpa disertai tanda + atau tanda hubung di bawah', + 'option_1' => 'Pilihan 1: Menggunakan Frontline SMS', + 'option_2' => 'Pilihan 2: Menggunakan Global SMS Gateway', + 'title' => 'Pilihan Pengaturan SMS', + ) , + 'sms_no1' => array( + 'length' => 'Nomor ponsel 1 tidak benar.', + 'numeric' => 'Nomor ponsel 1 seharusnya hanya terdiri atas angka saja.', + ) , + 'sms_no2' => array( + 'length' => 'Nomor ponsel 2 terlalu panjang.', + 'numeric' => 'Nomor ponsel 2 seharusnya hanya terdiri atas angka saja.', + ) , + 'sms_no3' => array( + 'length' => 'Nomor ponsel 3 terlalu panjang.', + 'numeric' => 'Nomor ponsel 3 seharusnya hanya terdiri atas angka saja.', + ) , + 'twitter' => array( + 'title' => 'Pilihan Pengaturan Twitter', + 'description' => 'Untuk memperoleh informasi di bawah ini, silahkan atur situs anda sebagai sebuah aplikasi Twitter baru terlebih dahulu di', + 'api_key' => 'Kunci Pelanggan', + 'api_key_secret' => 'Kode Rahasia Pelanggan', + 'token' => 'Token untuk Akses', + 'token_secret' => 'Kode Rahasia Token', + ) , + 'test_settings' => 'Ujicoba pengaturan', +); diff --git a/application/i18n/id_ID/sharing.php b/application/i18n/id_ID/sharing.php new file mode 100755 index 0000000000..8aab64997d --- /dev/null +++ b/application/i18n/id_ID/sharing.php @@ -0,0 +1,25 @@ + 'Tanggal masuk', + 'date_added' => 'Tanggal Ditambahkan', + 'last_access' => 'Akses Terakhir', + 'sharing_color' => array( + 'length' => 'Kolom warna setidaknya terdiri dari 6 karakter.', + 'required' => 'Kolom warna wajib diisi.', + ) , + 'sharing_name' => array( + 'length' => 'Nama Sharing tidak benar.', + 'required' => 'Nama untuk Sharing wajib diisi.', + ) , + 'sharing_url' => array( + 'exists' => 'Alamat situs sudah ada.', + 'length' => 'Alamat situs yang Anda masukkan tidak benar.', + 'required' => 'Alamat situs wajib diisi.', + 'url' => 'Alamat situs yang Anda masukkan tidak benar.', + ) , +); diff --git a/application/i18n/id_ID/stats.php b/application/i18n/id_ID/stats.php new file mode 100755 index 0000000000..38f9b20113 --- /dev/null +++ b/application/i18n/id_ID/stats.php @@ -0,0 +1,42 @@ + 'Disetujui', + 'categories' => 'Kategori', + 'category_impact' => 'Dampak Kategori', + 'category_impact_description' => 'Bagan berikut ini menampilkan gambaran linear dari laporan yang masuk berdasarkan kategori yang ada. Tarik dari kiri ke kanan untuk melihat perbandingan tampilan dari kategori yang berbeda-beda. Gerakkan kursor di atas bagan untuk informasi yang lebih detil.', + 'choose_date_range' => 'Pilih jeda tanggal.', + 'countries' => 'Negara', + 'country' => 'Negara', + 'country_breakdown' => 'Daftar Negara', + 'description' => 'Ini adalah bagian statistik dan akan diisi gambaran umum. Saat ini, masih diisi dengan sub kategori di atas.', + 'error' => 'Error', + 'glossary' => 'Glosarium', + 'hit_summary' => 'Ringkasan Kunjungan', + 'legend' => 'Legenda', + 'pageviews' => 'Pageview', + 'pageviews_description' => 'Jumlah halaman di situs Anda yang dilihat pengunjung.', + 'reports' => 'Laporan', + 'reports_categories' => 'Kategori Laporan', + 'reports_statistics' => 'Statistik Laporan', + 'reports_status' => 'Status Laporan', + 'report_punchcard' => 'Laporan Punchcard', + 'report_stats' => 'Statistik Laporan', + 'stats_not_setup' => 'Statistik Belum Diatur', + 'time_range_1' => '1 Bulan', + 'time_range_2' => '3 Bulan', + 'time_range_3' => '6 Bulan', + 'time_range_all' => 'Semua', + 'unapproved' => 'Belum disetujui', + 'unique_visitors' => 'Pengunjung Unik', + 'unique_visitors_description' => 'Jumlah orang yang mengunjungi situs Anda. Pengunjung unik direkam berdasarkan cookies. Pengunjung yang tidak menjalankan cookies akan diidentifikasi menggunakan pendataan alamat IP, resolusi, browser, plugins, sistem operasi dan sebagainya.', + 'unverified' => 'Belum Diverifikasi', + 'verified' => 'Terverifikasi', + 'visitor_summary' => 'Ringkasan Data Pengunjung', + 'visits' => 'Kunjungan', + 'visits_description' => 'Satu kali kunjungan dari pengujung unik dihitung sekali bila kunjungan dilakukan 30 menit setelah kunjungan terakhirnya.', +); diff --git a/application/i18n/id_ID/tooltips.php b/application/i18n/id_ID/tooltips.php new file mode 100755 index 0000000000..3aac697685 --- /dev/null +++ b/application/i18n/id_ID/tooltips.php @@ -0,0 +1,97 @@ + array( + 'add_to_category' => 'Hal ini akan menambahkan laporan ke kategori. Jika Anda memilih Kategori 1 di sini dan laporan sudah dimasukkan dalam Kategori 2, maka laporan akan masuk dalam Kategori 1 dan Kategori 2.', + 'approve' => 'Setujui laporan atau tidak. Jika disetujui maka akan dipublikasikan.', + 'assign_badge' => 'Anda bisa menetapkan sebuah lencana untuk memicu pengguna memasukkan laporan. Pilih lencana yang anda tetapkan di sini.', + 'between_times' => 'Ini adalah rentang waktu dalam jam dan/atau menit antara dua batas waktu dalam format 24 jam. Jika Anda memasukkan waktu yang lebih dulu di kolom kedua, maka yang Anda masukkan akan diubah menjadi awal. Juga bila waktu dicentang berlawanan dengan konfigurasi situs dan tidak memerlukan zona waktu yang berbeda antara pengguna dengan situs ini. Masukkan rentang waktu 00:00 hingga 00:00 untuk mengabaikan aturan ini.', + 'category' => 'Jika Anda ingin mengaktifkan pemicu untuk satu kategori saja, Anda bisa mengaturnya di sini. Sebagai contoh, jika Anda memilih Kategori 1 dan Kategori 2 di sini, sedangkan laporan dimasukkan Kategori 2 dan 3 maka aturan Anda akan diabaikan.', + 'days_of_the_week' => 'Jika kejadian berlangsung selama beberapa hari dalam seminggu, atur di sini. Ingat bahwa ada aturan mengenai zona waktu. Gunakan tombol Shift, Command atau Control untuk memilih hari yang berbeda-beda.', + 'email_body' => 'Isi surel yang hendak dikirim.', + 'email_subject' => 'Judul surel yang hendak dikirim.', + 'feed_id' => 'Umpan ini bisa berisi seluruhnya atau umpan tertentu saja. Jika Anda menginginkan hanya umpan tertentu untuk mengaktifkan pemicu, Anda bisa memilihnya di sini. Namun jika Anda mengosongkan, maka seluruh umpan akan mengaktifkan pemicu.', + 'from' => 'Nama akun Twitter (bisa lebih dari satu dan dipisahkan dengan koma). Apabila Anda ingin hanya satu akun pemicu saja, masukkan nama akun Twitter-nya (tanpa tanda @)', + 'keywords' => 'Anda bisa mengosongkannya bila tidak ingin memeriksa kata kunci. Jika Anda memasukkan beberapa kata, pisahkan dengan tanda koma (,). Misalnya Anda ingin mengaktifkan pemicu jika ada yang menyebutkan "cinta" atau "sayang" dalam pesannya, Anda harus menuliskannya dengan "cinta, sayang" dalam kotak kata kunci.', + 'location' => 'Anda dapat memilih di mana saja atau lokasi tertentu. Jika Anda memilih lokasi tertentu, Anda akan diminta untuk menggambar kotak sekitar area sesuai kejadian. Misalnya, jika Anda ingin pemicu ini diaktifkan ketika seseorang menyampaikan laporan di Brazil, Anda akan memilih "area spesifik" dan kemudian menggambar kotak di sekitar Brazil. Anda dapat membuat kotak-kotak ini kecil atau besar sesuai keinginan. Anda juga dapat menggambar beberapa kotak sekaligus.', + 'on_specific_count' => 'Kualifikasi ini akan mengaktifkan pemicu pada bilangan ke-N, baik untuk seluruh pengguna atau untuk satu pengguna saja. Jika Anda ingin mengabaikan, kosongkan saja.', + 'report_title' => 'Ini adalah judul standar untuk menambahkan laporan.', + 'response' => 'Jika semua kualifikasi di atas dilalui, maka pemicu akan memberi tanggapan. Hal ini dapat berupa menyetujui laporan ke surel pengguna. Pilih tanggapan di sini untuk mengaktifkan pilihan tambahan untuk tanggapan khusus.', + 'send_to' => 'Jika Anda memilih "Pemicu Pengguna", sebuah surel akan dikirim ke pengguna yang melakukan tindakan. Jika Anda memilih tombol radio di sebelah kotak input, Anda akan dapat masukkan alamat surel tertentu. Hal ini berguna jika Anda sedang mengatur pemicu untuk memberitahu orang-orang ketika bagian-bagian tertentu dari peta lihat laporan, cek in atau kegiatan lain.', + 'specific_days' => 'Anda bisa memilih beberapa hari yang berbeda. Tanggal ditentukan berdasarkan zona waktu. Jika Anda menghendaki semua tanggal dipilih, kosongkan pilihan ini.', + 'trigger' => 'Pemicunya adalah komponen inti dari pengaturan Pemicu Aksi Anda. Ini adalah di mana Anda menentukan apakah ingin sesuatu terjadi ketika seseorang menyerahkan laporan, melakukan checkin dan sebagainya. Anda akan dapat menyaring tanggapan terhadap tindakan ini setelah memilih salah satu.', + 'user' => 'Pengguna di sini bisa siapa saja atau pengguna tertentu. Jika Anda menginginkan hanya pengguna tertentu sebagai pemicu, Anda bisa memilihnya di sini. Atau, Anda bisa memilih siapa saja sebagai pemicu.', + 'verify' => 'Tandai sebuah laporan sudah diverifikasi atau belum.', + ) , + 'change_picture' => 'Halaman profile di situs ini menggunakan Gravatar. Dengan melakukan klik pada gambar, Anda akan diarahkan ke situs Gravatar untuk mencari gambar yang sesuai dengan keinginan.', + 'default_value' => 'Pisahkan antar nilai dengan tanda koma. Misalnya bilangan1, bilangan2.', + 'radio_choices' => 'Pisahkan antar nilai dengan tanda koma, misalnya bilangan1,bilangan2. Jika Anda menginginkan pengaturan nilai standar, akhiri daftar pilihan dengan ::. Misalnya Anda ingin agar bilangan3 menjadi standar, maka yang harus ditulis adalah bilangan1, bilangan2, bilangan3::bilangan3', + 'dropdown_choices' => 'Pisahkan setiap pilihan dengan sebuah tanda koma, misalnya Bagian 1, Bagian 2 dan seterusnya.', + 'private_to' => 'Silahkan mulai menulis untuk para anggota dalam daftar. ', + 'private_subject' => 'Judul pesan pribadi', + 'private_message' => 'Pesan pribadi', + 'profile_color' => 'Anda bisa memilih warna yang muncul di bawah gambar profil dalam halaman profil Anda. Warna ini juga akan menjadi warna pada setiap titik yang muncul di peta di mana Anda melakukan checkin.', + 'profile_email' => 'Alamat surel Anda', + 'profile_name' => 'Ini adalah salah satu cara Anda teridentifikasi dalam situs ini. Ingat bahwa ini bisa diakses oleh publik!', + 'profile_new_password' => 'Jika diubah, maka ini akan menjadi kata sandi Anda yang baru. Namun jika Anda kosongkan, maka kata sandi Anda tetap seperti sebelumnya.', + 'profile_new_users_password' => 'Permintaan ini muncul jika ada penambahan seorang pengguna dan kata sandinya. Anda harus memberitahu pengguna baru tersebut untuk mengubah kata sandi setelah masuk pertama kali.', + 'profile_notify' => 'Memilih YA memungkinkan Anda memperoleh peringatan melalui surel ketika ada laporan atau komentar diposting ke situs.', + 'profile_password' => 'Kata sandi Anda saat ini. Kami minta Anda memasukkan kata sandi Anda guna mencegah penggunaan akun Anda secara tidak sah.', + 'profile_public' => 'Profil Anda akan bisa dilihat oleh setiap orang di Internet jika Anda memberi centang pilihan ini. Pilihan ini juga cara termudah untuk menampilkan setiap laporan yang Anda kirimkan, lokasi checkin, lencana dan semua hal lainnya dalam satu halaman.', + 'profile_public_url' => 'Ini adalah alamat profil publik Anda.', + 'profile_username' => 'Nama pengguna tidak bisa diubah.', + 'settings_access_level' => 'Tingkat akses digunakan untuk membatasi akses pada data. Semakin tinggi tingkat akses, semakin besar pula hak aksesnya. Tingkat Superadmin adalah pemilik Tingkat Akses tertinggi (100). Data untuk publik adalah Tingkat Akses terendah (0). Secara standar, anggota memiliki Tingkat Akses 10 dan Admin Tingkat Aksesnya 90. ', + 'settings_alert_email' => 'Alamat surel ini akan digunakan dalam setiap pengiriman peringatan.', + 'settings_allow_alerts' => 'Ijinkan pengguna untuk mendaftarkan peringatan melalui situs.', + 'settings_allow_clustering' => 'Hal ini akan memperbolehkan agar beberapa laporan yang mirip digabungkan dalam satu titik di peta.', + 'settings_allow_comments' => 'Ijinkan pengguna memberikan komentar pada laporan di situs utama.', + 'settings_allow_feed' => 'Hal ini untuk memberikan ijin penayangan Umpan RSS Berita di situs utama.', + 'settings_allow_feed_category' => 'Hal ini akan memungkinkan Anda untuk membuat Kategori dari umpan RSS News.', + 'settings_allow_reports' => 'Ijinkan pengguna untuk mengirimkan informasi melalui formulir di situs.', + 'settings_api_default_record_limit' => 'Jumlah standar rekaman yang diambil untuk setiap permintaan API', + 'settings_api_max_record_limit' => 'Jumlah maksimal rekaman yang diambil untuk setiap permintaan API', + 'settings_api_max_requests_per_ip' => 'Jumlah maksimal permintaan API untuk tiap alamat IP', + 'settings_banner' => 'Banner ini akan muncul di bagian paling atas pada bagian depan situs Anda apabila tema yang Anda gunakan mendukung. Ukuran yang disarankan untuk banner ini tergantung pada tema yang Anda gunakan. Ingat, banner ini akan menggantikan judul situs dan slogan di bagian atas halaman.', + 'settings_blocks_per_row' => 'Jumlah kotak kolom yang akan ditampilkan dalam setiap baris.', + 'settings_cache_pages' => 'Pilihan cache halaman. Ini akan menjadikan halaman ditampilkan lebih cepat. Kami sarankan Anda mengaktifkan cache untuk situs yang banyak diakses. **Ingat, bahwa setiap laporan akan dikumpulkan di bagian depan situs berdasarkan jadwal yang Anda atur di bawah ini (Masa Berlaku Cache).', + 'settings_cache_pages_lifetime' => 'Atur masa berlaku cache.', + 'settings_checkins' => 'Pengaturan ini memungkinkan checkin pada situs Anda. Ini adalah jenis laporan yang disederhanakan dan tidak dimoderasi sebelum ditampilkan dalam situs. Bila Anda mengaktifkan ini, pastikan pengaturan zona waktu standar UTC dan tema Anda mendukung checkin. Bila Anda mengaktifkan ini, checkin dalam tema akan diaktifkan di bawah addons/halaman pengaturan tema.', + 'settings_configure_map' => 'Atur peta untuk menampilkan wilayah tertentu.', + 'settings_default_category_colors' => 'Atur satu warna untuk semua kategori di situs ini.', + 'settings_default_category_icons' => 'Atur satu ikon untuk seluruh kategori di situs ini.', + 'settings_default_location' => 'Negara di mana situs ini disebarkan.', + 'settings_display_contact' => 'Ubah Tab Kontak di situs ini menjadi aktif atau tidak.', + 'settings_display_howtohelp' => 'Ubah tab Cara dan Bantuan di situs ini aktif atau tidak.', + 'settings_display_items_per_page' => 'Ini adalah jumlah laporan yang ditampilkan per halaman di situs utama.', + 'settings_display_items_per_page_admin' => 'Ini adalah jumlah laporan yang ditampilkan per halaman di halaman Admin.', + 'settings_flsms_download' => 'Ini adalah penghubung untuk semua pesan masuk.', + 'settings_flsms_synchronize' => 'Ini adalah sinkronisasi antara penghubung pesan dengan sistem Ushahidi.', + 'settings_flsms_text_1' => 'Nomor ponsel untuk menerima SMS.', + 'settings_google_analytics' => 'Lacak pengunjung di situs ini. Rincian statistik pengunjung.', + 'settings_locale' => 'Atur bahasa yang akan digunakan di situs ini.', + 'settings_manually_approve_users' => 'Jika Anda mengaktifkan pilihan ini, Anda harus menyetujui setiap orang yang mendaftar dan mengatur peran masing-masing (misalnya sebagai Anggota, Admin atau Superadmin).', + 'settings_map_provider' => 'Ini untuk memilih peta yang akan digunakan dalam situs.', + 'settings_map_timeline' => 'Ini untuk menunjukkan linimasa pada setiap laporan yang dimasukkan.', + 'settings_private_deployment' => 'Pengaturan ini menjadi Benar atau Ya akan menyebabkan situs menjadi terbatas. Sehingga hanya akun tertentu saja yang bisa mengaksesnya.', + 'settings_require_email_confirmation' => 'Setiap pengguna akan dikirim surel berisi tautan untuk konfirmasi bahwa sebelum mereka diperbolehkan masuk dalam sistem, jika Anda mengatur opsi ini aktif. Jika Anda mengaktifkannya setelah sistem sudah menerima pendaftaran pengguna, mereka akan diingatkan untuk konfirmasi akunnya sebelum diperbolehkan menggunakan lagi.', + 'settings_server_host' => 'Lokasi penempatan surel', + 'settings_server_password' => 'Ini adalah kata sandi untuk alamat surel yang menerima laporan.', + 'settings_server_port' => 'Ini diminta supaya setiap koneksi dari alamat surel diterima.', + 'settings_server_ssl_support' => 'Ini adalah permintaan peningkatan keamanan koneksi.', + 'settings_server_type' => 'Ini diminta agar Anda bisa menerima surel dari server.', + 'settings_server_username' => 'Ini adalah alamat surel untuk menerima laporan.', + 'settings_share_site_stats' => 'Statistik pengakses disimpan dalam server yang dikelola Ushahidi. Dengan mengaktifkan opsi ini, Anda memperoleh laporan statistik pengunjung langsung ke panel admin. Jika tidak mengaktifkan opsi ini, Anda tidak lagi bisa merekam semua catatan lalu lintas data karena sudah dimatikan.', + 'settings_site_copyright_statement' => 'Apakah orang lain berhak untuk mempublikasikan teks, gambar dan video atau materi lainnya yang Anda dan para pengguna telah buat? Simak https://creativecommons.org/choose/ jika Anda ingin menentukan apa saja yang boleh orang lain lakukan dengan materi-materi ini. Dan ingatlah bahwa Anda perlu menyebutkan secara rinci bagian apa saja dalam situs ini yang memiliki hak cipta!', + 'settings_site_email' => 'Ini adalah alamat surel yang akan menerima laporan dan pesan dari formulir kontak.', + 'settings_site_message' => 'Teks ini akan muncul di atas peta dalam situs. Informasi ini penting bagi pengakses situs. Untuk menghapusnya, cukup hapus saja pesan ini.', + 'settings_site_name' => 'Ini adalah nama situs yang akan ditampilkan di bagian paling atas halaman utama.', + 'settings_site_submit_report_message' => 'Pesan ini akan muncul dalam halaman pengiriman laporan. Informasi ini penting sebagai penambah informasi untuk pengakses yang melakukan pelaporan. ', + 'settings_site_tagline' => 'Dalam bahasa sederhana, uraikan secara singkat mengenai situs ini.', + 'settings_site_timezone' => 'Ini adalah zona waktu yang digunakan. Zona waktu akan berimplikasi pada setiap tindakan, juga sebagai waktu standar yang akan digunakan di halaman depan dan di sisi admin.', + 'settings_twitter_configuration' => 'Atur tagar Twitter yang akan digunakan pada tweet', + 'feed_geolocation_user' => 'Jika Anda ingin geocode entri feed Anda, ambil pengguna http://geonames.org, aktifkan web services gratis dan masukkan di sini. Biarkan kosong untuk menonaktifkan fungsi ini.

Waspadalah terhadap batas penggunaan!', +); diff --git a/application/i18n/id_ID/ui_admin.php b/application/i18n/id_ID/ui_admin.php new file mode 100755 index 0000000000..c4e748146a --- /dev/null +++ b/application/i18n/id_ID/ui_admin.php @@ -0,0 +1,329 @@ + 'Akses ditolak. Entah kredensial Anda tidak valid atau permintaan Anda telah ditolak.', + 'access_denied_others' => 'Akses ditolak. Permintaan Anda dipahami, namun ditolak karena batasan akses. Cobalah beberapa saat lagi.', + 'access_level' => 'Tingkat Akses', + 'actions' => 'Tindakan', + 'add_to_category' => 'Tambahkan ke Kategori', + 'added' => 'ditambahkan', + 'added_edited' => 'ditambahkan/disunting', + 'addons' => 'Addons', + 'admin_role' => 'Admin', + 'alerts' => 'Peringatan', + 'alerts_received' => 'Peringatah Diterima', + 'all' => 'Semua', + 'am' => 'AM', + 'anonymous' => 'Anonim', + 'anyone_role' => 'Siapapun', + 'anywhere' => 'Di manapun', + 'api_banned' => 'API Dilarang', + 'api_logs' => 'Log API', + 'api_settings' => 'Pengaturan API', + 'api_unban' => 'JANGAN DICEKAL', + 'api_unban_all' => 'JANGAN DICEKAL SEMUA', + 'approved' => 'disetujui', + 'approve_auto' => 'Persetujuan Otomatis', + 'approve_manual' => 'Menyetujui Manual', + 'archived' => 'Diarsipkan', + 'are_you_sure_you_want_to' => 'Apakah Anda yakin ingin', + 'are_you_sure_you_want_to_delete_this_item' => 'Apakah Anda yakin ingin menghapus item ini?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Apakah Anda yakin ingin menghapus foto ini?', + 'are_you_sure_you_want_to_switch_forms' => 'Apakah Anda yakin hendak mengganti form?', + 'assign' => 'Menetapkan', + 'assignments' => 'Penetapan', + 'assign_badge' => 'Menetapkan Lencana', + 'author' => 'Penulis', + 'author_email' => 'Surel penulis', + 'back' => 'Kembali', + 'banip_action' => 'IP yang Dicekal', + 'between_times' => 'Antara Waktu', + 'blocks' => 'Blokir', + 'body' => 'Bagian dalam', + 'cancel' => 'Batal', + 'categories' => 'Kategori', + 'chart_display_error' => 'Kesalahan dalam menampilkan bagan', + 'check_message_valid' => 'Pastikan pesan Anda sudah benar.', + 'check_number' => 'Silahkan periksa apakah nomor sah.', + 'check_sms_settings' => 'Pastikan pengaturan SMS Anda!', + 'checkin_details' => 'Detil Checkin', + 'checkins' => 'Checkin', + 'cities_loaded' => 'Memuat daftar kota', + 'code' => 'kode', + 'code_out_of_sync' => 'Versi kode tidak bisa disinkronisasi.', + 'color' => 'Warna', + 'comments' => 'Komentar', + 'confirmation_code' => 'Kode peringatan untuk Anda adalah:', + 'confirm_msg' => 'Pengguna telah', + 'count' => 'Menghitung', + 'country_not_found' => 'Negara Tidak Ditemukan', + 'created_edited' => 'dibuat/diedit', + 'create_report' => 'Buat laporan', + 'critical_upgrade' => 'Upgrade Kritis', + 'csv' => 'CSV', + 'currently_active' => 'Sedang Aktif', + 'currently_inactive' => 'Sedang Tidak Aktif', + 'custom_forms_insufficient_permissions' => 'Anda tidak memiliki cukup izin untuk menyunting bidang kustom berikut.', + 'daily' => 'Harian', + 'dashboard' => 'Dasbor', + 'database' => 'basis data', + 'date_time' => 'Tanggal & Jam', + 'date_added' => 'Tanggal Ditambahkan', + 'date_modified' => 'Tanggal Diubah', + 'days_of_the_week' => 'Hari dalam seminggu', + 'db_out_of_sync' => 'Versi DB tidak bisa disikronisasi.', + 'deleted' => 'dihapus', + 'delete_action' => 'Hapus', + 'delete_all' => 'Hapus Semua Laporan', + 'delete_badge' => 'Hapus Lencana', + 'demo' => 'Demo', + 'description' => 'Deskripsi', + 'disabled' => 'Tidak bisa', + 'divider_start_field' => 'Batas Awal', + 'divider_end_field' => 'Batas Akhir', + 'divider_class' => 'div class', + 'download_reports' => 'Mengunduh Laporan', + 'dropdown_choices' => 'Pilihan Ganda ke Bawah', + 'edited' => 'DISUNTING', + 'edited_by' => 'Disunting oleh', + 'edit_action' => 'Sunting', + 'edit_log' => 'Sunting log', + 'email' => 'Surel', + 'entire_collective' => 'Semua Kolektif', + 'error_geocoding' => 'Error dalam geocoding! HTTP Error', + 'error_imap' => 'Library IMAP PHP belum terpasang', + 'error_twitter' => 'Kredensial Tidak Tepat', + 'error_msg' => 'Error!', + 'error_post_incident' => 'Error, tidak bisa melaporkan kejadian', + 'every_six_hours' => 'Setiap Enam Jam', + 'every_twelve_hours' => 'Setiap Duabelas Jam', + 'experimental' => 'Eksperimental', + 'faqs' => 'FAQ\'s', + 'feed' => 'umpan', + 'feedback' => 'Umpan Balik', + 'feeds' => 'umpan', + 'field_choices' => 'Daftar Pilihan', + 'field_default' => 'Nilai Standar', + 'field_datatype' => 'Jenis Data', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Angka', + 'field_datatype_text' => 'Teks Bebas', + 'field_height' => 'Tinggi (dalam baris)', + 'field_hidden' => 'Kolom Tersembunyi', + 'field_maxlength' => 'Panjang Karakter Paling Banyak', + 'field_name' => 'Kolom Nama', + 'field_toggle' => 'Beralih', + 'field_toggle_no' => 'Tidak', + 'field_toggle_yes_close' => 'Ya, secara standar ditutup', + 'field_toggle_yes_open' => 'Ya, secara standar dibuka', + 'file_not_found_upload' => 'Tidak bisa menemukan berkas yang diunggah', + 'file_open_error' => 'Tidak bisa membuka berkas untuk dibaca', + 'form_not_exists' => 'Form Tersebut Tidak Ada!', + 'forum' => 'Forum', + 'free_text_field' => 'Kolom Untuk Teks (Teks Bebas)', + 'date_field' => 'Kolom Tanggal', + 'radio_field' => 'Kolom Tombol Radio', + 'checkbox_field' => 'Kolom Tanda Centang', + 'dropdown_field' => 'Kolom Pilihan ke Bawah', + 'from' => 'Dari', + 'from_date' => 'Dari', + 'geonames_timeout' => 'Error Waktu Habis untuk Penamaan Lokasi', + 'get_help' => 'Dapatkan Bantuan', + 'get_more_themes' => 'Dapatkan tema lain', + 'get_more_plugins' => 'Dapatkan plugin lain', + 'header_actions' => 'Tindakan', + 'header_add_edit' => 'Tambah/Sunting', + 'header_email' => 'Surel', + 'header_manage_users' => 'Pengelolaan Pengguna', + 'header_role' => 'Peran', + 'header_user' => 'Pengguna', + 'help' => 'bantu', + 'hourly' => 'Tiap Jam', + 'incident_feed' => 'Umpan kejadian untuk', + 'installer_info' => 'Direktori instalasi masih ada. Hapus terlebih dahulu karena berpeluang membuka celah keamanan.', + 'instance' => 'Contoh', + 'instances' => 'Contoh', + 'instance_details' => 'Rincian Contoh', + 'invalid_parameter' => 'Parameter Tidak Benar', + 'ip_address' => 'Alamat IP', + 'is_date' => 'Apakah ini Kolom Tanggal?', + 'ispublic_visible' => 'Siapa yang Bisa Lihat Jawaban', + 'ispublic_submit' => 'Siapa bisa Mengirimkan Jawaban', + 'keyword' => 'Kata kunci', + 'keywords' => 'Kata-kata kunci', + 'label_email' => 'Alamat Surel:', + 'label_full_name' => 'Nama Lengkap:', + 'label_password' => 'Kata Sandi:', + 'label_role' => 'Peran:', + 'label_username' => 'Nama Pengguna:', + 'layers' => 'Layer', + 'login_role' => 'Moderator', + 'logout' => 'Keluar', + 'logs' => 'Log', + 'manage' => 'Mengelola', + 'manage_roles' => 'Kelola Peran & Izin', + 'manage_users' => 'Lihat Pengguna', + 'manage_users_edit' => 'Tambah/Sunting Pengguna', + 'manage_public_listing' => 'Kelola Daftar Publik Anda', + 'mark_as' => 'Tandai Sebagai', + 'marked_as_not_spam' => 'tandai sebagai bukan spam', + 'marked_as_spam' => 'tandai sebagai spam', + 'match_no_documents' => 'tidak sesuai dengan dokumen apapun', + 'message' => 'Pesan', + 'messages' => 'Pesan', + 'messages_laconica' => 'Pesan Laconica', + 'messages_twitter' => 'Isi Twitter', + 'message_sent' => 'Pesan Anda telah terkirim!', + 'mhi' => 'MHI', + 'minute' => 'Menit', + 'minutes' => 'Menit', + 'missing_parameter' => 'Parameter Hilang', + 'moderator' => 'Moderator', + 'modified' => 'diubah', + 'modify_timezone' => 'Perubahan Zona Waktu', + 'move_down_action' => 'geser ke bawah', + 'move_up_action' => 'geser ke atas', + 'multiple_hosted_instances' => 'Beberapa Contoh Host', + 'my_alerts' => 'Peringatanku', + 'my_checkins' => 'Checkin-ku', + 'my_profile' => 'Profilku', + 'my_reports' => 'Laporanku', + 'my_votes' => 'Suara yang Diberikan', + 'my_votes_up' => 'Positif', + 'my_votes_down' => 'Negatif', + 'name' => 'Nama', + 'new_alert' => 'Buat Peringatan Baru', + 'new_private' => 'Buat Pesan Baru', + 'new_password' => 'Kata Sandi Baru', + 'no' => 'Tidak', + 'none_category_explanation' => 'Ini adalah kategori khusus yang tidak akan ditampilkan dalam formulir laporan. Ini digunakan untuk menampung laporan tanpa kategori (laporan tidak berkategori).', + 'notification' => 'Notifikasi', + 'not_case_sensitive' => 'Bukan case sensitive.', + 'not_found' => 'Tidak Ditemukan', + 'no_data' => 'Tidak ada data untuk ditampilkan.', + 'no_error' => 'Tidak Ada Kesalahan', + 'no_result_display_msg' => 'Tidak Ada Hasil yang Ditampilkan!', + 'of' => 'dari', + 'on_specific_count' => 'Pada Hitungan yang Tepat', + 'openids' => 'OpenID', + 'page' => 'laman', + 'pages' => 'laman', + 'page_not_found' => 'Halaman Tidak Ditemukan', + 'page_not_found_message_with_contact' => 'Maaf, halaman yang Anda inginkan tidak ada di sini.

Apakah Anda mengikuti tautan dari sebuah alamat di situs Anda?
Jika Anda menemukan halaman ini dari bagian lain dalam situs ini, mohon hubungi kami agar kami bisa memperbaikinya.

Atau, apakah Anda menemukan tautan dari situs lain?
Tautan dari situs lain bisa saja terjadi kesalahan ejaan. Beritahu kami darimana Anda mengakses halaman ini, sehingga kami bisa mengirimkan ralat ke situs tersebut.

Atau, apakah Anda mengetik sendiri alamat tautan ini?
Tautan (URL) mungkin salah. Periksa lagi ejaan dan tulisan yang tepat.

', + 'page_not_found_message' => 'Maaf, halaman yang Anda maksudkan tidak ada.', + 'parameters_used' => 'Penggunaan Parameter', + 'password' => 'Kata Sandi', + 'password_reset' => 'Ubah Kata Sandi', + 'password_reset_message_line_1' => 'Hai', + 'password_reset_message_line_2' => 'Kami telah menerima permintaan untuk mengubah kata sandi untuk', + 'password_reset_message_line_3' => 'Untuk mengubah kata sandi, klik tautan di bawah ini (atau salin dan tempel di browser Anda).', + 'password_reset_message_line_4' => 'Sesuai permintaan Anda, kata sandi telah diubah. Berikut ini perinciannya', + 'password_reset_subject' => 'Ubah kata sandi Ushahidi', + 'phone' => 'Telepon', + 'please_select' => 'Pilih ', + 'pm' => 'PM', + 'post_method_not_used' => 'Data tidak bisa dikirim dengan cara pengiriman via pos', + 'preview' => 'Pratinjau', + 'private_message' => 'Pesan', + 'private_messages' => 'Pesan Pribadi', + 'private_sent' => 'Pesan Peribadi Terkirim', + 'private_subject' => 'Judul', + 'private_to' => 'Kepada', + 'public_listing' => 'Daftar Publik', + 'qualifiers' => 'Kualifikasi', + 'read' => 'membaca', + 'relevance' => 'Relevansi', + 'report_title' => 'Judul Laporan', + 'report_date' => 'Tanggal Laporan', + 'reporters' => 'Pelapor', + 'reporter_levels' => 'Tingkat Pelapor', + 'reports' => 'Laporan', + 'reputation' => 'Skor Reputasi', + 'required' => 'Diminta', + 'reset' => 'Reset', + 'response' => 'Tanggapan', + 'results' => 'Hasil', + 'revoke' => 'Mencabut', + 'riverid_exists_admin' => 'Surel ini memiliki akun yang dikelola CrowdmapID. Pengguna bisa menggunakan kata sandi sesuai akun Crowdmap untuk masuk.', + 'save_settings' => 'Simpan Pengaturan', + 'search' => 'Cari', + 'search_reports' => 'Cari Laporan', + 'searching_for' => 'penacarian untuk', + 'security_info_encryption_key' => 'Kunci enkripsi masih dalam bentuk standar. Harus diubah agar aman.', + 'security_info_https' => 'Situs ini menggunakan HTTP. Sebaiknya diubah menjadi HTTPS untuk meningkatkan keamanan.', + 'security_info_instructions' => 'Panduan tersedia di wiki:', + 'select_download_format' => 'Pilih format berkas unduhan yang Anda inginkan:-', + 'select_field_type' => '-- Pilih Satu Jenis Bidang --', + 'select_item' => 'Pilih satu', + 'select_trigger_before_response' => 'Anda harus memilih Pemicu sebelum memilih Tanggapan.', + 'select_trigger_before_qualifiers' => 'Anda harus memilih Pemicu sebelum merinci Kualifikasi.', + 'sender' => 'Pengirim', + 'send_to' => 'Dikirim Ke', + 'sent_from_website' => 'Pesan ini dikirimkan dari situs', + 'server_time' => 'Waktu Server', + 'settings' => 'Pengaturan', + 'showing_page' => 'Laman untuk ditampilkan', + 'showing_results' => 'Menampilkan hasil', + 'shown' => 'ditampilkan', + 'special_category' => 'Ketegori Khusus', + 'special_category_explanation' => 'Ini adalah kategori khusus yang tidak ditampilkan di formulir pelaporan. Ini hanya digunakan untuk fitur "Pelapor Terpercaya".', + 'specific_area' => 'Wilayah Tertentu', + 'state' => 'Negara Bagian', + 'statistics' => 'Statistik', + 'stats' => 'Stats', + 'stats_collection_error' => 'Pengumpulan stat gagal. Cobalah beberapa saat lagi.', + 'stats_collection_error_short' => 'Pengumpulan Stat Gagal!', + 'specific_days' => 'Hari Tertentu', + 'subject' => 'Judul', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Tugas Dijalankan', + 'text_field' => 'Kolom Teks', + 'theme_name' => 'Nama', + 'title' => 'Kelola Pengguna', + 'timeout' => 'Error Waktu Habis', + 'to' => 'untuk', + 'total_records' => 'Jumlah Catatan', + 'to_date' => 'ke', + 'translate_reports' => 'Terjemahkan Laporan', + 'trigger' => 'Pemicu', + 'triggering_user' => 'Memicu Pengguna', + 'triggers' => 'Pemicu', + 'unapproved' => 'tidak disetujui', + 'unknown' => 'Tidak diketahui', + 'unknown_failure' => 'Kegagalan Tidak Diketahui', + 'unread' => 'belum dibaca', + 'unsubscribe_message' => 'Anda tidak lagi menerima peringatan dari', + 'update_link' => 'Klik di sini untuk meng-upgrade', + 'upgrade_ushahidi' => 'Upgrade Ushahidi', + 'upgrade_ushahidi_status' => 'Upgrade Status Ushahidi', + 'upload_reports' => 'Unggah Laporan', + 'user' => 'Pengguna', + 'users' => 'Pengguna', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Terverifikasi/Belum Terverifikasi', + 'verify_unverify' => 'Verifikasi/Tidak Diverifikasi', + 'version' => 'Versi', + 'version_available' => 'sudah tersedia untuk upgrade.', + 'video_encoding' => 'Encoding Video', + 'view_private' => 'Pesan Pribadi', + 'view_site' => 'Lihat Situs', + 'view_report' => 'Lihat Laporan', + 'welcome' => 'Selamat datang,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Ya', + 'your_search_for' => 'Pencarian Anda untuk', + 'delete_all_instructions' => 'Klik tombol di bawah ini akan menghapus SEMUA laporan dalam database. Anda harus melakukan dengan hati-hati karena data tidak bisa dikembalikan lagi.', + 'delete_all_backup' => 'Kami rekomendasikan untuk mem-backup database Anda sebelum memulai proses', + 'delete_all_button' => 'Saya yakin bahwa saya ingin menghapus (semua) laporan %s dari database.', + 'delete_all_confirm' => 'Apakah Anda yakin ingin menghapus semua laporan?', + 'delete_all_no_reports' => 'Tidak ada laporan yang terhapus.', + 'user_no_logins' => 'Jumlah masuk', + 'user_last_login' => 'Masuk terakhir', + 'user_confirmed_account' => 'Akun dikonfirmasi?', +); diff --git a/application/i18n/id_ID/ui_main.php b/application/i18n/id_ID/ui_main.php new file mode 100755 index 0000000000..3f417d34b5 --- /dev/null +++ b/application/i18n/id_ID/ui_main.php @@ -0,0 +1,627 @@ + 'Tentang', + 'access' => 'Akses', + 'access_limits' => 'Batas Akses', + 'account_name' => 'Nama Akun', + 'actions' => 'Tindakan', + 'action_confirm' => 'Tindakan ini tidak akan bisa dibatalkan, Anda yakin mau meneruskan?', + 'activate' => 'Aktifkan', + 'active' => 'Aktif', + 'add' => 'Tambahkan', + 'added_by' => 'Ditambahkan oleh', + 'additional_data' => 'Data Tambahan', + 'additional_reports' => 'Laporan Tambahan', + 'add_edit' => 'Tambah/Sunting', + 'add_field' => 'Tambahkan Kolom', + 'add_language' => 'Tambahkan Bahasa', + 'add_new' => 'Tambahkan Baru', + 'add_new_category' => 'Tambahkan Kategori Baru', + 'add_translation' => 'Tambahkan Terjemahan', + 'admin' => 'Administrasi', + 'alerts' => 'Dapatkan Peringatan', + 'alerts_alert_me' => 'Beritahukan saya bila ada laporan yang masuk tentang:', + 'alerts_btn_send' => 'Rekam Peringatan Saya', + 'alerts_email' => 'Alamat Surel:', + 'alerts_enter_email' => 'masukkan alamat surel ', + 'alerts_enter_mobile' => 'masukkan nomor ponsel beserta kode negaranya', + 'alerts_get' => 'Dapatkan Peringatan', + 'alert_has_been' => 'Peringatan telah', + 'alerts_mobile_phone' => 'Nomor Ponsel:', + 'alerts_place_spot' => 'Atau tandai pada peta di bawah ini, dan kami akan beritahukan bila ada laporan yang masuk dalam radius 20 KM dari tanda yang Anda masukkan.', + 'alerts_place_spot2' => 'Jika Anda tidak dapat menemukan lokasi yang diinginkan, klik pada peta untuk menentukan lokasi yang benar.', + 'alerts_rss' => 'Umpan RSS (salin URL di bawah ini)', + 'alerts_select_city' => 'Pilih kota', + 'alerts_step1_select_city' => 'Langkah 1: Pilih kota atau lokasi Anda:', + 'alerts_step2_send_alerts' => 'Langkah 2: Kirim peringatan ke:', + 'alerts_step3_select_catgories' => 'Langkah 3 (Optional): Pilih Kategori', + 'alert_confirm_previous' => 'Konfirmasi Permintaan Peringatan Anda Sebelumnya', + 'alert_saved' => 'Peringatan Anda Telah Disimpan!', + 'all' => 'Semua', + 'allowed' => 'Diijinkan', + 'allowed_tags' => 'Tags HTML yang diperkenankan: "%s".', + 'allowed_iframes' => 'Iframe dari %s saja yang diperkenankan.', + 'all_categories' => 'Semua Kategori', + 'all_time' => 'Seluruh Waktu', + 'and' => 'dan', + 'api' => 'API', + 'approve' => 'Menyetujui', + 'approved' => 'Disetujui', + 'approved_reports' => 'Laporan yang Disetujui', + 'approve_this_report' => 'Setujui Laporan Ini', + 'approximate' => 'Kira-kira', + 'archive' => 'Arsip', + 'archived' => 'Diarsipkan', + 'ascending' => 'Urutan dari awal', + 'at' => 'pada', + 'author' => 'Penulis', + 'auto_checkin' => 'Daftarkan Otomatis', + 'Auto' => 'Auto', + 'avg_reports_per_day' => 'Rata-rata Laporan Perhari', + 'awaiting_approval' => 'Menunggu Persetujuan', + 'awaiting_verification' => 'Menunggu Verifikasi', + 'badge' => 'Lencana', + 'badges' => 'Lencana', + 'badge_image' => 'Gambar Lencana', + 'badge_image_upload_your_own' => 'Atau Anda dapat mengunggah gambar lencana di sini.', + 'badge_pack' => 'Kumpulan Lencana', + 'badge_select' => 'Pilih Lencana', + 'blog' => 'Blog', + 'browse_profiles' => 'Jelajahi Profil', + 'cancel' => 'Batal', + 'categories' => 'Kategori-kategori', + 'category' => 'Kategori', + 'category_filter' => 'Filter Kategori', + 'category_has_been' => 'Kategori telah ', + 'category_name' => 'Nama Kategori', + 'change_date_range' => 'Ganti Jeda Tanggal', + 'change_password' => 'Ganti Password', + 'change_picture' => 'Ganti Gambar Saya', + 'choose' => 'Pilih sebuah', + 'choose_data_points' => 'Pilih poin data yang akan diunduh', + 'choose_date_range' => 'Atau pilih jeda tanggal yang Anda inginkan', + 'choose_field_type' => 'Pilih jenis kolom', + 'cleanurl' => 'Clean URLs', + 'clear' => 'Bersihkan', + 'clear_map' => 'Bersihkan Peta', + 'close' => 'Tutup', + 'clusters' => 'kelompok-kelompok', + 'color' => 'Warna', + 'comment' => 'Komentar', + 'comments' => 'Komentar-komentar', + 'comment_details' => 'Detail Komentar', + 'configuration_saved' => 'Pengaturan Anda Telah Disimpan!', + 'configure' => 'Sesuaikan', + 'confirm_email_successful' => 'Surel Anda telah dikonfirmasi, silahkan masuk.', + 'confirm_email_successful_and_approval' => 'Anda berhasil mengkonfirmasi alamat surel. Seorang admministrator harus disetujui oleh akun Anda sebelum memulai login.', + 'confirm_email_failed' => 'Surel konfirmasi gagal terkirim. Anda bisa meminta surel baru untuk konfirmasi di bawah ini.', + 'contact' => 'Kontak Kami', + 'contact_code' => 'Kode Keamanan', + 'contact_email' => 'Surel Anda', + 'contact_message' => 'Pesan', + 'contact_message_has_send' => 'Pesan Anda telah dikirim!', + 'contact_name' => 'Nama Anda', + 'contact_phone' => 'Nomor Ponsel Anda', + 'contact_send' => 'Kirim Pesan', + 'contact_subject' => 'Judul Pesan', + 'copyright' => 'Hak Cipta ©', + 'create' => 'Buat', + 'create_edit' => 'Buat/Sunting', + 'create_new' => 'Buat Baru', + 'create_new_password' => 'Buat Password Baru', + 'create_report' => 'Buat Laporan', + 'credibility' => 'Kepercayaan', + 'current_password' => 'Password Saat Ini', + 'custom_fields' => 'Kolom yang Disesuaikan', + 'data' => 'Informasi', + 'date' => 'Tanggal', + 'date_format' => '(bb/hh/tttt)', + 'date_time' => 'Tanggal & Waktu', + 'day' => 'Hari', + 'Daily' => 'Harian', + 'deactivate' => 'Menonaktifkan', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Hapus', + 'deleted' => 'Telah dihapus', + 'deletes' => 'terhapus', + 'delete_disabled' => 'Penghapusan Tidak Diperkenankan', + 'delete_last' => 'Hapus yang Terakhir', + 'delete_report' => 'Menghapus Laporan Ini ', + 'delete_selected' => 'Menghapus Terpilih', + 'delete_spam' => 'Hapus Spam', + 'demo' => 'Demo', + 'description' => 'Deskripsi', + 'descending' => 'Urutan dari akhir', + 'detailed_location_example' => 'Contoh: Depan Pasar Besar, Jl. Raya Pasar Besar 5 Nomor 4, Jakarta Utara', + 'details' => 'Detil', + 'direct_report' => 'Laporan Langsung', + 'disabled' => 'Tidak Diperkenankan', + 'disapprove' => 'Tidak Disetujui', + 'download_reports' => 'Unduh Laporan', + 'download' => 'Unduh', + 'edit' => 'Ubah', + 'edit_form_fields' => 'Ubah Formulir', + 'edit_report' => 'Sunting Laporan', + 'email' => 'Surel', + 'email_address' => 'Alamat Surel', + 'email_configuration' => 'Pengaturan Server Surel', + 'email_server_host' => 'Host Server Surel', + 'email_server_password' => 'Kata Sandi Server Surel', + 'email_server_port' => 'Port Server Surel', + 'email_server_ssl_support' => 'Dukungan SSL Server Surel', + 'email_server_type' => 'Jenis Server Surel', + 'email_server_username' => 'Nama Pengguna Server Surel', + 'email_settings_comment_0' => 'jadi semua pengaturan Anda akan dikaitkan dengan surel ini', + 'email_settings_comment_00' => 'Untuk permintaan penerimaan laporan melalui surel, masukkan pengaturan surel Anda di bawah ini. Perlu diketahui, surel akan Anda terima', + 'email_settings_comment_1' => 'Beberapa server membutuhkan alamat surel yang lengkap', + 'email_settings_comment_2' => 'Kata Sandi akun surel', + 'email_settings_comment_3' => 'Port yang lazim digunakan: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Contoh: mail.websiteanda.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Contoh: pop3, imap', + 'email_settings_comment_6' => 'Perbolehkan atau tidak perbolehkan koneksi SSL', + 'empty' => '---KOSONG---', + 'end_point' => 'ke', + 'error' => 'Error!', + 'example' => 'Contoh', + 'example_country' => 'Kenya', + 'external_apps' => 'Aplikasi dari Luar', + 'external_video_link' => 'Tautan Video dari Luar', + 'facebook' => 'Facebook', + 'feed' => 'Umpan', + 'feedback' => 'Menyediakan Masukan', + 'feedback_reports' => 'Tolong beri kami masukan tentang pengalaman Anda dengan mengirimkan email ke', + 'feeds' => 'Umpan', + 'feed_has_been' => 'Umpan ini sudah', + 'feed_items' => 'Bagian-bagian di Umpan', + 'feed_name' => 'Nama Umpan', + 'feed_url' => 'URL Umpan', + 'field_unused' => 'Kolom yang tidak digunakan', + 'file' => 'Berkas', + 'file_over_max_allowed' => 'Ukuran berkas Anda melebihi batas yang diijinkan.', + 'filters' => 'Saringan', + 'filter_reports' => 'Saring Laporan', + 'filter_reports_by' => 'Saring Laporan menurut', + 'filter_reports_contain' => 'Menyaring laporan yang berisi', + 'find' => 'Temukan', + 'find_location' => 'Temukan Lokasi', + 'first_name' => 'Nama depan', + 'force_run_scheduler' => 'Jadwal Force Run', + 'forgot_password' => 'Lupa Kata Sandi?', + 'form' => 'Formulir', + 'forms' => 'Formulir', + 'form_description' => 'Deskripsi Formulir', + 'form_edit' => 'Ubah Formulir Ini', + 'form_has_been' => 'Formulir Telah', + 'form_title' => 'Judul Formulir', + 'from' => 'Dari', + 'full_name' => 'Nama Lengkap', + 'geolocation_available' => 'GeoLocation Tersedia', + 'geometry_color' => 'Warna', + 'geometry_comments' => 'Komentar', + 'geometry_label' => 'Label', + 'geometry_strokewidth' => 'Lebar Coretan', + 'go' => 'Lanjut', + 'hashtag' => 'Tagar', + 'has_been' => 'Telah', + 'help' => 'Cara Membantu', + 'hidden' => 'Tersembunyi', + 'hide' => 'Sembunyikan', + 'hide_this_message' => 'sembunyikan pesan ini', + 'home' => 'Beranda', + 'Hourly' => 'Tiap jam', + 'how_to_report' => 'Cara Melapor', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Digunakan untuk mengidentifikasi Anda pada situs ini oleh pengguna lain.', + 'image' => 'Gambar', + 'images' => 'Gambar-gambar', + 'image_icon' => 'Gambar/ikon', + 'inactive' => 'Tidak Aktif', + 'inbox' => 'Kotak Masuk', + 'incident' => 'Peristiwa', + 'incidents_nearby' => 'Kejadian Terdekat', + 'incident_location' => 'Tempat Kejadian', + 'include' => 'Termasuk', + 'include_categories' => 'Kategori di dalamnya', + 'include_custom_fields' => 'Kolom yang Disesuaikan di dalamnya', + 'include_description' => 'Sertakan Deskripsi', + 'include_detail' => 'Sertakan rincian selengkap mungkin', + 'include_latitude' => 'Termasuk Lintang', + 'include_location_information' => 'Sertakan Informasi Lokasi', + 'include_longitude' => 'Sertakan Bujur', + 'include_personal_info' => 'Termasuk Informasi Pribadi', + 'incoming_media' => 'Media Masuk', + 'information_evaluation' => 'Evaluasi pada Informasi', + 'input_location' => 'Masukkan lokasi yang tepat.', + 'insufficient_role' => 'Akun Anda tidak memiliki ijin untuk masuk ke fitur ini. Kontak Administrator.', + 'interval' => 'Selang', + 'in_response_to' => 'Sebagai tanggapan atas', + 'ip_address' => 'Alamat IP', + 'is_this_your_profile' => 'Apakah ini profil Anda?', + 'item' => 'bagian', + 'items' => 'bagian-bagian', + 'item_details' => 'item_details', + 'item_title' => 'Judul Bagian', + 'key' => 'Kunci', + 'keywords' => 'Kata kunci', + 'kml_kmz_file' => 'Berkas KMZ/KML', + 'kml_kmz_upload' => 'Unggah Berkas KMZ/KML', + 'kml_url' => 'Alamat tautan KML', + 'laconica' => 'Laconica', + 'language' => 'Bahasa', + 'last' => 'Terakhir', + 'last_month' => 'Bulan Kemarin', + 'last_name' => 'Nama Belakang', + 'last_year' => 'Tahun lalu', + 'latitude' => 'Lintang', + 'layers' => 'Lapisan', + 'layers_filter' => 'Lapisan Lainnya', + 'layer_has_been' => 'Lapisan ini Sudah', + 'layer_name' => 'Nama Lapisan', + 'layer_url' => 'Tautan Lapisan', + 'leave_a_comment' => 'Tinggalkan Komentar', + 'less_information' => 'Lebih Sedikit Informasi', + 'level' => 'Tingkat', + 'level_has_been' => 'Tingkat ini sudah', + 'level_name' => 'Nama Tingkat', + 'limited' => 'Terbatas', + 'link' => 'Tautan', + 'list' => 'Daftar', + 'loading_reports' => 'Mengakses Laporan', + 'location' => 'Lokasi', + 'locations' => 'Lokasi', + 'location_example' => 'Kota, Negara Bagian dan/atau Negara', + 'login' => 'Masuk', + 'login_account_creation_successful' => 'Akun sudah selesai dibuat. Anda bisa log in sekarang.', + 'login_confirmation_sent' => 'Sebuah konfirmasi telah terkirim ke surel Anda.', + 'login_approval_required' => 'Akun sudah dibuat. Akun Anda harus disetujui oleh admin sebelum bisa digunakan.', + 'login_email_doesnt_exist' => 'Alamat surel tidak ada. Gunakan alamat lain atau buatlah baru terlebih dulu.', + 'login_select_openid' => 'Klik penyedia akun Anda', + 'login_with' => 'Masuk menggunakan', + 'login_userpass' => 'Surel dan Kata Sandi', + 'login_openid' => 'OpenID', + 'login_signup' => 'Mendaftar', + 'login_signup_click' => 'Buat Akun Baru', + 'login_signup_confirmation_message' => 'Terima kasih telah mendaftarkan diri di %1$s. Untuk menkonfirmasikan alamat surel, silahkan ikuti tautan: %2$s', + 'login_signup_confirmation_subject' => 'Konfirmasi Pendaftaran', + 'login_signup_admin_approval_message' => 'Seorang pengguna baru telah mendaftar pada %1$s. Untuk menyetujui pendaftaran ini silahkan ke tautan: %2$s', + 'login_signup_admin_approval_subject' => 'Persetujuan Pengguna Baru', + 'login_signup_approval_message' => 'Akun baru Anda telah disetujui untuk %1$s. Untuk login silahkan ke tautan: %2$s', + 'login_signup_approval_subject' => 'Akun pengguna telah disetujui', + 'login_signup_text' => 'Buat akun baru untuk memperoleh banyak keuntungan dari fitur-fitur di situs ini.', + 'longitude' => 'Bujur', + 'map' => 'Peta', + 'mark_read' => 'Tandai Sudah Dibaca', + 'mark_unread' => 'Tandai Belum Dibaca', + 'maximum_filesize' => 'Ukuran paling besar', + 'media' => 'Media', + 'media_filter' => 'Penyaring Media', + 'members' => 'Anggota', + 'manage_your_account' => 'Pengaturan Akun Anda', + 'message' => 'Pesan', + 'messages' => 'Pesan', + 'message_details' => 'Detil Pesan', + 'message_non_numeric_source' => 'Pesan dari sumber:', + 'mobile' => 'Perangkat Bergerak', + 'modify' => 'Modifikasi', + 'modify_date' => 'Modifikasi Tanggal', + 'month' => 'bulan', + 'Monthly' => 'Tiap bulan', + 'more' => 'Lebih', + 'more_information' => 'Informasi Lainnya', + 'multi_country_instance' => 'Apakah Ushahidi ini digunakan untuk wilayah dari beberapa negara yang berbeda?', + 'must_confirm_email_address' => 'Anda harus mengkonfirmasi alamat surel untuk mengakses situs ini. Jika Anda kehilangan surel yang berisi konfirmasi, Anda bisa meminta lagi di bawah ini.', + 'name' => 'Nama', + 'nearby_report' => 'Laporan Terdekat', + 'new' => 'Baru', + 'news' => 'Berita', + 'news_feeds' => 'Umpan Berita', + 'news_source' => 'Sumber Berita', + 'new_category' => 'Kategori Baru', + 'new_password' => 'Kata Sandi Baru', + 'new_report' => 'Laporan Baru', + 'next' => 'Selanjutnya', + 'no' => 'Tidak', + 'no_checkins' => 'Tidak ada chekin untuk ditampilkan.', + 'no_data' => 'Tidak ada data', + 'none' => 'Tanpa', + 'notices' => 'Pemberitahuan', + 'not_approved' => 'Tidak Disetujui', + 'not_approved_singular' => 'Tidak Disetujui', + 'not_selected' => '---Tidak Dipilih---', + 'not_spam' => 'bukan spam', + 'not_specified' => 'Tidak Ditentukan', + 'no_reports' => 'Tidak ada laporan', + 'no_results' => 'Tidak ada hasil', + 'off' => 'Mati', + 'official_news' => 'Berita Resmi ', + 'on' => 'Menyala', + 'option' => 'Pilihan', + 'optional' => 'Opsional', + 'options' => 'Pilihan', + 'organization' => 'Organisasi', + 'organizations' => 'Organisasi', + 'organization_description' => 'Gambaran Organisasi', + 'organization_email' => 'Surel Organisasi', + 'organization_has_been' => 'Organisasi Sudah', + 'organization_name' => 'Nama Organisasi', + 'organization_phone_1' => 'Nomor Telepon Organisasi 1', + 'organization_phone_2' => 'Nomor Telepon Organisasi 2', + 'organization_website' => 'Situs Organisasi', + 'original' => 'Asli', + 'original_description' => 'Deskripsi Asli', + 'original_title' => 'Judul Asli', + 'other_ushahidi_instances' => 'Situs Lainnya', + 'outbox' => 'Kotak keluar', + 'outgoing' => 'Keluar', + 'page' => 'Halaman', + 'pages' => 'Halaman', + 'page_description' => 'Deskripsi Halaman', + 'page_has_been' => 'Halaman Telah', + 'page_tab_name' => 'Nama Tab Halaman', + 'page_title' => 'Judul Halaman', + 'parent_category' => 'Kategori Induk', + 'password' => 'Kata Sandi', + 'password_again' => 'Ulangi Kata Sandi', + 'password_changed_successfully' => 'Kata Sandi Telah Diganti! Silahkan Login.', + 'password_forgot' => 'Lupa kata sandi?', + 'password_reset_confirm' => 'Periksa konfirmasi kata sandi baru di surel Anda.', + 'password_save' => 'Anda ingin tetap login di komputer ini?', + 'past_month' => 'Bulan Lalu', + 'past_year' => 'Tahun Lalu', + 'pending' => 'Tertunda', + 'per' => 'per', + 'personal_information' => 'Informasi Pribadi Opsional.', + 'phone' => 'Telepon', + 'photos' => 'Foto', + 'pictures' => 'Gambar', + 'pictures_and_videos' => 'Gambar and Video', + 'pinpoint_location' => '* Cari lokasi Anda berdasarkan nama lokasi atau koordinat (format: 38.19,-85.61), atau klik lokasi yang dimaksud pada peta yang tersedia.', + 'play' => 'Mainkan', + 'please_note' => 'Harap Dicatat', + 'plugins' => 'Plugin', + 'plugin_url' => 'Plugin Situs ', + 'public_profile' => 'Profil untuk Umum', + 'public_profile_url' => 'Tautan Profil untuk Umum', + 'preview' => 'Pratinjau', + 'preview_item' => 'Pratinjau Bagian', + 'preview_message' => 'Pratinjau Pesan', + 'previous' => 'Sebelumnya', + 'private' => 'Pribadi', + 'profile_color' => 'Warna Profil', + 'profile_saved' => 'Profil Anda Sudah Disimpan', + 'quick_stats' => 'Status Versi Cepat', + 'rating' => 'Peringkat', + 'read' => 'Baca', + 'receive' => 'Menerima', + 'receive_from' => 'Diterima dari', + 'receive_notifications' => 'Menerima Notifikasi', + 'recent_reports' => 'Laporan Terbaru', + 'refresh_news_feeds' => 'Perbarui Umpan Berita', + 'registered_email' => 'Surel Terdaftar', + 'remove' => 'Hapus', + 'reply' => 'Jawab', + 'report' => 'Laporan', + 'reports_listed' => 'Laporan (dari peta, diurutkan berdasar tanggal kejadian)', + 'reporter' => 'Pelapor', + 'reporters' => 'Para Pelapor', + 'reporter_date' => 'Tanggal pelaporan', + 'reporter_email' => 'Surel Pelapor', + 'reporter_first_name' => 'Nama Depan Pelapor', + 'reporter_has_been' => 'Pelapor Telah', + 'reporter_ip' => 'Alamat IP Pelapor', + 'reporter_last_name' => 'Nama Belakang Pelapor', + 'reporter_level' => 'Tingkat Pelapor', + 'reporter_levels' => 'Tingkatan Pelapor', + 'reporter_phone' => 'Nomor Telepon Pelapor', + 'reports' => 'Laporan-laporan', + 'reports_btn_browse' => 'Jelajahi', + 'reports_btn_submit' => 'Kirim', + 'reports_by_this_user' => 'Laporan dari Pelapor Ini', + 'reports_categories' => 'Kategori', + 'reports_count' => 'Laporan %d ', + 'reports_date' => 'Tanggal', + 'reports_description' => 'Gambaran', + 'reports_download_csv' => 'Laporan bisa diunduh dalam format CSV', + 'reports_email' => 'Surel', + 'reports_features' => 'Fitur', + 'reports_find_location' => 'Temukan lokasi terdekat dengan Anda', + 'reports_first' => 'Nama Pertama', + 'reports_last' => 'Nama Keluarga', + 'reports_location_name' => 'Nama Lokasi', + 'reports_news' => 'Tautan Sumber Berita', + 'reports_optional' => 'Informasi Tambahan', + 'reports_photos' => 'Unggah Foto', + 'reports_return' => 'Kembali ke halaman pelaporan', + 'reports_select_city' => 'Pilih Kota', + 'reports_submitted' => 'Laporan Anda sudah dikirimkan ke staf kami untuk diperiksa, Kami akan segera mengabari Anda.', + 'reports_submit_new' => 'Kirim Laporan Baru', + 'reports_time' => 'Waktu', + 'reports_timeline' => 'Linimasa Laporan', + 'reports_title' => 'Judul Laporan', + 'reports_video' => 'Tautan Video', + 'report_an_incident' => 'Laporkan Kejadian', + 'report_details' => 'Detil Laporan', + 'report_option_1' => 'Dengan mengirimkan sebuah pesan ke', + 'report_option_2' => 'Dengan mengirimkan sebuah surel', + 'report_option_3' => 'Dengan mengirimkan tweet dengan tagar/hashtag', + 'report_option_4' => 'Dengan mengisi formulir di situs kami', + 'report_option_external_apps' => 'Dengan menggunakan aplikasi', + 'report_saved' => 'Laporan Anda Telah Disimpan', + 'report_title' => 'Judul Laporan', + 'request_information' => 'Permintaan informasi lebih lanjut', + 'request_location' => 'Permintaan lokasi', + 'required' => 'Diminta', + 'requirements' => 'Syarat', + 'resend_confirm_email' => 'Kirim Ulang Surel Konfirmasi', + 'reset' => 'Reset', + 'reset_all_filters' => 'Reset semua penyaringan', + 'reset_password' => 'Reset Kata Sandi', + 'retrieve_city_names' => 'Mendapatkan daftar nama kota dari negara yang dipilih', + 'riverid_information' => 'Akun dikelola oleh layanan %s.', + 'riverid_exists_login' => 'Anda telah memiliki sebuah akun yang dikelola CrowdMapID! Cobalah menggunakan surel dan kata sandi Anda di CrowdMapID untuk login.', + 'role' => 'Peran', + 'rss' => 'RSS', + 'save' => 'Simpan', + 'saved' => 'Tersimpan', + 'save_add_new' => 'Simpan dan Tambahkan Baru', + 'save_close' => 'Simpan dan Tutup', + 'save_report' => 'Simpan Laporan', + 'schedule' => 'Jadwal', + 'scheduler' => 'Penjadwalan', + 'scheduler_day' => 'Hari', + 'scheduler_hour' => 'Jam', + 'scheduler_log' => 'Penjadwal Pencatatan', + 'scheduler_minute' => 'Menit', + 'scheduler_weekday' => 'Hari dalam Seminggu', + 'search' => 'PENCARIAN', + 'search_results' => 'Hasil Pencarian', + 'security_code' => 'Kode Keamanan', + 'select_all' => 'Pilih Semua', + 'select_field_type' => 'Pilih Jenis Kolom', + 'select_form_type' => 'Pilih Tipe Formulir', + 'select_in_map' => 'Pilih dalam peta', + 'select_multiple' => 'Pilih beberapa', + 'select_one' => 'Pastikan Anda telah memilih satu bagian', + 'select_theme' => 'Pilih Tema', + 'send' => 'Kirim', + 'send_confirmation' => 'Kirim Konfirmasi', + 'sending_to' => 'Kirim ke', + 'sent' => 'Terkirim', + 'sent_by' => 'Dikirim oleh', + 'server_address' => 'Alamat server', + 'server_type' => 'Jenis server', + 'service' => 'Layanan', + 'service_username' => 'Layanan Nama Pengguna', + 'service_user_id' => 'Layanan User ID', + 'share' => 'Bagi', + 'shared_data' => 'Data Bersama', + 'share_has_been' => 'Pembagian telah', + 'sharing' => 'Berbagi', + 'shorter_map' => 'Peta Lebih Pendek', + 'show' => 'Tampilkan', + 'show_all' => 'Tampilkan Semua ', + 'show_messages' => 'Tampilkan Pesan', + 'showing_reports_from' => 'Menampilkan Laporan Dari %1$s ke %2$s', + 'site' => 'Situs', + 'site_email_address' => 'alamat surel situs', + 'site_url' => 'URL Situs', + 'smaller_map' => 'Peta Lebih Kecil', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Maaf, Anda tidak memiliki lencana apapun.', + 'source' => 'Sumber', + 'source_name' => 'Nama Sumber', + 'sort' => 'Sortir', + 'sort_by' => 'Disortir oleh', + 'source_url' => 'URL Sumber', + 'spam' => 'Spam', + 'ssl_support' => 'Dukungan SSL?', + 'start_point' => 'Dari', + 'step' => 'Langkah', + 'submit' => 'Kirim Laporan', + 'submitted_by' => 'Dikirimkan oleh %1$s melalui %2$s', + 'submit_sms' => 'Kirim lewat SMS', + 'submit_sms1' => 'Kirim SMS ke', + 'submit_sms2' => 'di telepon Anda', + 'success' => 'Berhasil!', + 'successfuly_imported' => 'Berhasil diimpor', + 'surname' => 'Nama Belakang', + 'survey' => 'Survey', + 'system' => 'Sistem', + 'taller_map' => 'Peta Lebih Tinggi', + 'tcp_port' => 'Port TCP', + 'themes' => 'Tema', + 'theme_default' => 'Tema Bawaan Ushahidi', + 'theme_settings' => 'Setting tema', + 'this' => 'Ini', + 'this_day' => 'Hari ini', + 'this_month' => 'Bulan ini', + 'this_week' => 'Minggu ini', + 'this_year' => 'Tahun ini', + 'this_is_your_profile' => 'Ini Profil Anda.', + 'time' => 'Waktu', + 'title' => 'Judul ', + 'to' => 'ke', + 'today' => 'Hari ini', + 'today_at' => 'Hari ini di', + 'token' => 'Token', + 'total_reports' => 'Semua Laporan', + 'translated' => 'Diterjemahkan', + 'translated_description' => 'Gambaran yang sudah diterjemahkan', + 'translated_title' => 'Judul Terjemahan', + 'translate_to' => 'Diterjemahkan dalam', + 'translation' => 'Terjemahan', + 'translation_saved' => 'Penerjemahan sudah disimpan', + 'trusted' => 'Dipercaya', + 'type' => 'Tipe', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Gagal mengirim surel.', + 'uncategorized_reports' => 'Laporan Belum Terkategori', + 'unread' => 'Belum Terbaca', + 'unverified' => 'Belum Terbukti', + 'update_feeds' => 'Update umpan', + 'upload' => 'Unggah', + 'upload_guide' => 'Simak panduan unggah laporan kami:-', + 'upload_docs_1' => 'Panduan unggah XML', + 'upload_docs_2' => 'Panduan unggah CSV', + 'upload_file' => 'Berkas yang akan diunggah', + 'upload_reports' => 'Unggah Laporan', + 'upload_reports_custom_forms' => 'Kolom yang disesuaikan harus memiliki form_id yang ditambahkan. Misalnya untuk kolom Test, pada formulir standar, id 1 akan menajdi Test-1. Sepanjang kolom yang disesuaikan untuk diimpor, pastikan bahwa', + 'upload_reports_detail_1' => 'Dengan formulir di bawah ini, Anda bisa mengimpor kejadian ke dalam sistem Ushahidi.', + 'upload_reports_detail_2' => 'Laporan harus diunggah dalam bentuk CSV atau XML.', + 'upload_reports_detail_3' => 'Jika ID sebuah kejadian sudah ada dalam database, maka masukan dari berkas CSV/XML akan diabaikan.', + 'upload_reports_detail_4' => 'Setidaknya berisi Judul Kejadian dan Tanggal Kejadian', + 'upload_reports_detail_4b' => 'Jika tidak ada koordinat yang disediakan, maka lokasi akan ditentukan berdasarka Google Geocoder.', + 'upload_reports_detail_4c' => 'Jika mengimpor informasi tambahan seperti informasi pribadi dan/atau kolom yang sudah disesuaikan', + 'upload_reports_detail_4d' => 'Setidaknya satu dari informasi pribadi (nama, nama lengkap, surel) yang dimasukkan HARUS tersedia. Isian yang kosong tidak bisa diimpor.', + 'upload_reports_detail_4e' => 'Isian Anda untuk kolom dropdwon, tombol dan tanda centang sesuai dengan pilihan yang disediakan untuk kolom yang sudah disesuaikan sebagai contoh', + 'upload_reports_detail_4f' => 'Pilihan pada tanda centang dipisahkan dengan koma, misalnya tersedia pilihan Apel, Mangga dan Anggur, maka entri untuk ini akan berbentuk "Apel,Mangga,Anggur"', + 'upload_reports_detail_4g' => 'Kolom tanggal harus dalam bentuk mm/dd/yyyy, misalnya 3 Oktober 2013 = 10/03/2012', + 'upload_reports_detail_5' => 'Contoh Laporan Berbentuk CSV', + 'upload_reports_detail_6' => '#,JUDULKEJADIAN,TANGGAL KEJADIAN,LOKASI,DESKRIPSI,KATEGORI,DISETUJUI,DIPERIKSA,LINTANG,BUJUR
"1","Perkiraan korban tewas di Nairobi","2009-05-15 01:06:00","Nairobi","Tiga kasus sudah dikonfirmasi","Tewas, Warga Sipil, ",Ya,Ya,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Penjarahan di mana-mana","Kerusuhan, Kematian, Kehilangan Harta, ",Ya,Tidak,"5.55","-0.2166667"', + 'upload_successful' => 'Sukses Mengunggah', + 'upload_video' => 'Unggah Video', + 'url' => 'URL', + 'user' => 'Pengguna', + 'username' => 'Nama Pengguna', + 'ushahidi_admin' => 'Admin Ushahidi', + 'verification' => 'Pembuktian', + 'verified' => 'Terbukti', + 'verified_reports' => 'Laporan Terpercaya', + 'verify' => 'Buktikan', + 'verify_this_report' => 'Verifikasi Laporan Ini', + 'version' => 'Versi', + 'via' => 'melalui', + 'video' => 'Video', + 'view' => 'Lihat', + 'views' => 'Lihat', + 'view_all' => 'Lihat Semua', + 'view_all_feeds' => 'Lihat semua umpan', + 'view_all_reports' => 'Lihat Semua Laporan', + 'view_items' => 'Lihat Items', + 'view_more' => 'Lihat Lebih Banyak', + 'view_public_profile' => 'Lihat Profil untuk Umum', + 'view_report' => 'Lihat Laporan', + 'view_reports' => 'Lihat Laporan-laporan', + 'view_video' => 'Lihat Video', + 'visible' => 'Terlihat', + 'waiting_approval' => 'Menunggu Persetujuan', + 'waiting_verification' => 'Menunggu Pembuktian', + 'wider_map' => 'Peta Lebih Lebar', + 'web_form' => 'Formulir di Situs', + 'web' => 'Situs', + 'weight' => 'Bobot', + 'Weekly' => 'Tiap minggu', + 'yes' => 'Ya', + 'yesterday' => 'Kemarin', + 'your_dashboard' => 'Dashboard Anda', + 'your_file' => 'Berkas Anda', + 'zoom_in' => 'Perbesar', + 'zoom_out' => 'Perkecil', +); diff --git a/application/i18n/id_ID/upgrade.php b/application/i18n/id_ID/upgrade.php new file mode 100755 index 0000000000..0666ab0202 --- /dev/null +++ b/application/i18n/id_ID/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Data yang dimasukkan tidak dalam format yang bisa diterima. Masukkan 0 untuk Tidak atau 1 untuk Ya.', + ) , + 'upgrade_automatic' => 'Pembaruan Otomatis', + 'upgrade_available' => 'Pembaruan (Upgrade) Tersedia', + 'upgrade_continue_btn_text' => 'Berlanjut', + 'upgrade_db_btn_text' => 'Pembaruan', + 'upgrade_db_text_1' => 'Jadi, kami akan meningkatkan basis data anda dari versi', + 'upgrade_db_text_2' => 'ke basis data versi terbaru', + 'upgrade_db_text_3' => 'Klik tombol "Perbaruan", santai dan saksikan pertunjukan yang ajaib.', + 'upgrade_db_text_4' => 'Oh ya, jika Anda ingin membackup basis data, beri tanda centang di bawah ini dan kami akan melakukannya untuk Anda.', + 'upgrade_db_text_5' => 'Backup basis data sebelum pembaruan? (Sangat direkomendasikan)', + 'upgrade_db_title' => 'Pembaruan basis data Ushahidi', + 'upgrade_db_info' => 'Ushahidi sudah diperbarui! Sebelum melanjutkan, Anda perlu memperbarui basis data ke dalam versi terkini (%s).', + 'upgrade_db_up_to_date' => 'Versi basis data Anda adalah versi terkini.', + 'upgrade_failed' => 'Ada kegagalan dalam proses pembaruan ', + 'upgrade_manual' => 'Pembaruan Manual', + 'upgrade_status' => 'Status pembaruan Ushahidi', + 'upgrade_text_1' => 'Instruksi di bawah ini menjelaskan cara memperbarui Ushahidi.', + 'upgrade_text_2' => '
Unduh
', + 'upgrade_text_3' => '
- Unduh versi terkini Ushahidi dari', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php dan ./applications/config/auth.php files.
- Untuk menghindari hal-hal yang tidak diinginkan, kami sarankan Anda men-backup semua isi Ushahidi terlebih dahulu.
Salin berkas-berkas
- Ekstrak zip hasil unduhan
- Tergantung sistem operasi dalam server Anda, gunakan aplikasi yang Anda sukai (misalnya Telnet, FTP, SSH) untuk masuk dalam server dan mengganti semua isinya dengan yang terbaru.
Perbarui database
- Pertama, periksa dulu versi database Anda dalam db_version bagian pengaturan table atau simak informasi Ushahidi di bagian paling atas halaman ini.
- Jika Anda masih menggunakan versi 25, Anda bisa memperbarui dari versi 25 ke 26, kemudian 26 ke 27, dan seterusnya hingga versi berkas SQL terkini di folder /sql.
- Dengan klien database Anda, perbarui database dengan mengeksekusi berkas upgradex-x.sql yang sesuai.
', + 'upgrade_tables' => 'Langkah 3: Lihat folder sql. Jalankan secara manual pembaruan berkas -.sql file dari versi db saat ini menjadi berkas sql versi terakhir.', + 'upgrade_text_5' => 'Langkah 4: Klik tombol "Continue" untuk memperbarui tabel yang diperlukan.', + 'upgrade_text_6' => 'Untuk perbaruan otomatis, klik tombol di bawah ini.', + 'upgrade_title_text' => 'Saat ini, Anda menggunakan Ushahidi v%1$s dengan database %2$d yang berjalan pada %3$s', + 'upgrading' => 'Sedang menjalankan proses upgrade', + 'upgrade_ftp_text' => 'Untuk melanjutkan pembaruan dengan mudah, informasi server FTP di hosting Anda berikut ini perlu dilengkapi.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Contoh: "localhost"', + 'upgrade_ftp_password' => 'Kata sandi FTP:', + 'upgrade_ftp_username' => 'Nama Pengguna FTP:', + 'upgrade_status_info' => 'Anda saat ini sudah menggunakan versi terakhir Ushahidi.', + 'upgrade_status_info_2' => 'Anda tidak memerlukan pembaruan versi.', + 'upgrade_db_version' => 'Versi basis data: %d', + 'upgrade_warning_software_version' => 'Perhatian: Versi piranti lunak dalam version.php dan basis data tidak cocok.', + 'upgrade_warning_db_version' => 'Perhatian: Versi basis data dalam version.php dan basis data tidak cocok.', + 'upgrade_database' => 'Basis data:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Mengunduh Ushahidi versi terkini...', + 'log_file' => 'Berkas Log', + 'successfully_downloaded' => 'Pengunduhan Berhasil. Bongkar berkas-berkas...', + 'failed_downloading' => 'Pengunduhan gagal.', + 'successfully_unpacked' => 'Proses bongkar berhasil. Berkas diduplikasi...', + 'failed_unpacking' => 'Proses bongkar gagal.', + 'successfully_copied' => 'Berkas berhasil Diduplikasi. Database diperharui...', + 'failed_copying' => 'Duplikasi berkas gagal.', + 'backup_success' => 'Backup basis data dan pembaruan berhasil.', + 'backup_failed' => 'Backup basis data gagal.', + 'dbupgrade_success' => 'Perbaruan basis data berhasil.', + 'deleting_files' => 'Menghapus berkas yang sudah diunduh...', + 'upgrade_success' => 'Pembaruan BERHASIL. Lihat Berkas Log', +); diff --git a/application/i18n/it_IT/alerts.php b/application/i18n/it_IT/alerts.php new file mode 100755 index 0000000000..0ba0d1e894 --- /dev/null +++ b/application/i18n/it_IT/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Il campo Email non contiene un indirizzo email valido', + 'email_check' => 'Indirizzo Email già registrato per ricevere alert su questo luogo.', + 'length' => 'Il campo Email deve contenere un numero di caratteri compreso tra 4 e 64.', + 'required' => 'Il campo Email è richiesto se la checkbox è selezionata.', + ) , + 'alert_country' => array( + 'single_country' => 'L\'installazione copre solamente un paese. Assicurati che la località dei tuoi avvisi sia nel paese %s.', + ) , + 'alert_lat' => array( + 'between' => 'Sulla mappa non hai selezionato un luogo valido.', + 'required' => 'Sulla mappa non hai selezionato un luogo valido.', + ) , + 'alert_lon' => array( + 'between' => 'Sulla mappa non hai selezionato un luogo valido.', + 'required' => 'Sulla mappa non hai selezionato un luogo valido.', + ) , + 'alert_mobile' => array( + 'length' => 'Il campo Telefono Cellulare non sembra avere il numero di cifre corretto.', + 'mobile_check' => 'Questo numero di cellulare è stato già registrato per ricevere alert da quel luogo.', + 'numeric' => 'Il campo Telefono Cellulare non contiene un numero valido. Inserisci solamente numeri, compreso il prefisso nazionale.', + 'one_required' => 'Inserire numero di cellulare o indirizzo email.', + 'required' => 'Il campo Telefono Cellulare è richiesto se la checkbox è stata selezionata.', + ) , + 'alert_radius' => array( + 'in_array' => 'Non hai selezionato un raggio valido sulla mappa.', + 'required' => 'Non hai selezionato un raggio sulla mappa.', + ) , + 'alert_recipient' => array( + 'required' => 'Non è stato impostato un destinatario per gli avvisi.', + ) , + 'alerts_subscribed' => 'Hai sottoscritto gli avvisi per le seguenti categorie', + 'code_already_verified' => 'Questo codice è già stato verificato.', + 'code_not_found' => 'Questo codice di verifica non è stato trovato! Conferma la URL corretta.', + 'code_verified' => ' Il tuo codice è stato verificato correttamente. Riceverai alert man mano che le segnalazioni verranno pubblicate.', + 'confirm_request' => 'Per confermare la tua richiesta di alert, vai a ', + 'create_more_alerts' => 'Ritorna alla Pagina degli alert per crearne di nuovi', + 'email_alert_request_created' => 'La tua richiesta di Email Alert è stata creata e un messaggio di verifica è stato inviato a', + 'email_code' => 'Inserisci qui di seguito il codice di conferma Email che hai ricevuto: ', + 'email_error_head' => 'La tua richiesta di Email Alert Request non è stata salvata!', + 'email_ok_head' => 'La tua richiesta di Email Alert Request è stata salvata!', + 'error' => 'Il sistema non ha potuto elaborare la tua richiesta di conferma!', + 'mobile_alert_request_created' => 'La tua richiesta di Mobile Alert è stata creata e un messaggio di verifica è stato mandato a', + 'mobile_code' => 'Inserisci qui di seguito il codice SMS di conferma che hai ricevuto sul tuo cellulare: ', + 'mobile_error_head' => 'La tua richiesta di Mobile Alert NON è stato salvato!', + 'mobile_ok_head' => 'La tua richiesta di Mobile Alert è stata salvata!', + 'settings_error' => 'Questa funzionalità non è stata configurata correttamente nel processo di alert.', + 'unsubscribe' => 'Hai ricevuto questa email perché hai sottoscritto il ricevimento di alert. Se in futuro non vorrai più ricevere gli alert vai a ', + 'unsubscribed' => 'Non riceverai più gli alert da', + 'unsubscribe_failed' => 'Non abbiamo potuto cancellare la tua iscrizione. Conferma di aver inserito la URL corretta.', + 'verification_email_subject' => 'verifica - alert', + 'verify_code' => 'Non riceverai alert relativi a questo luogo fino a quando non confermerai la tua richiesta.', +); diff --git a/application/i18n/it_IT/auth.php b/application/i18n/it_IT/auth.php new file mode 100755 index 0000000000..50f189b10a --- /dev/null +++ b/application/i18n/it_IT/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Il campo email non contiene un indirizzo email valido.', + 'exists' => 'Siamo spiacenti, esiste uno user account con questo indirizzo email.', + 'length' => 'Il campo email deve essere lungo almeno 3 caratteri e non più di 64.', + 'required' => 'Il campo email è richiesto.', + ) , + 'name' => array( + 'length' => 'Il campo nome deve essere lungo almeno 3 caratteri e non più di 100.', + 'required' => 'Il campo nome ', + 'standard_text' => 'Il campo username contiene carattere non permessi.', + ) , + 'current_password' => array( + 'length' => 'La password deve essere lunga almeno 8 caratteri.', + 'login error' => 'Controlla se hai inserito correttamente l\'indirizzo email e la password.', + 'matches' => 'Inserisci la stessa password nei due campi password.', + 'required' => 'Il campo password è obbligatorio.', + 'alpha_dash' => 'Il campo password deve contenere solo caratteri alfanumerici, i simboli # e @, numeri, underscores e trattini.', + 'incorrect' => 'La password che hai inserito per il tuo account non è corretta. Riprova.', + ) , + 'new_password' => array( + 'length' => 'Il campo password deve essere lungo almeno 8 caratteri.', + 'login error' => 'Controlla se hai inserito correttamente l\'indirizzo email e la password.', + 'matches' => 'Inserisci la stessa password nei due campi password.', + 'required' => 'Il campo password è obbligatorio.', + 'alpha_dash' => 'Il campo password deve contenere solo caratteri alfanumerici, i simboli # e @, numeri, underscores e trattini.', + ) , + 'password' => array( + 'default' => 'C\'é stato un problema durante il login.', + 'length' => 'Il campo password deve essere lungo alemno 5 caratteri e non più di 16.', + 'login error' => 'Per favore controlla che la password inserita sia corretta.', + 'matches' => 'Per favore inserisci la stessa password nei due campi password.', + 'required' => 'Il campo password è richiesto.', + 'riverid server down' => 'Il server di autenticazione non è disponibile. Riprovare più tardi.', + 'riverid' => '%s', + 'alpha_dash' => 'Il campo password deve contenere solo caratteri alfanumerici, i simboli # e @, numeri, underscores e trattini.', + ) , + 'password_confirm' => array( + 'matches' => 'Il campo password di conferma deve essere uguale al campo password.', + ) , + 'resetemail' => array( + 'email' => 'Il campo email non contiene un indirizzo email valido.', + 'invalid' => 'Spiacenti, non abbiamo il tuo indirizzo email.', + 'required' => 'Il campo email è richiesto.', + ) , + 'role' => array( + 'superadmin_modify' => 'Solo un utente superadmin può modificare o far diventare admin un utente.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Formato del ruolo non valido.', + 'length' => 'Il campo ruolo deve essere lungo almeno 5 caratteri e non più di 30.', + 'required' => 'Devi definire almeno un ruolo.', + 'values' => 'Seleziona il ruolo ADMIN or USER.', + ) , + 'token' => array( + 'invalid' => 'Il token della password dimenticata non è valido', + 'required' => 'E\' necessario il token per la password dimenticata', + ) , + 'username' => array( + 'admin' => 'Il ruolo admin dell\'utente non può essere modificato.', + 'alpha_numeric' => 'L\'indirizzo URL del profilo pubblico può contenere solamente numeri e lettere. ', + 'exists' => 'Spiacenti, questo username è già in uso.', + 'length' => 'Il campo username deve essere lungo almeno 2 caratteri e non più di 30.', + 'login error' => 'Per favore controlla che lo username inserito sia corretto.', + 'required' => 'Il campo username è richiesto.', + 'superadmin' => 'Il ruolo super admin non può essere modificato.', + 'csrf' => 'Possibilità di attacco CSRF. Intendi davvero creare/modificare l\'utente?', + ) , +); diff --git a/application/i18n/it_IT/bug.php b/application/i18n/it_IT/bug.php new file mode 100755 index 0000000000..e66c8188c3 --- /dev/null +++ b/application/i18n/it_IT/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Inserisci un codice di sicurezza valido', + 'required' => 'Inserisci il codice di sicurezza', + ) , + 'email' => array( + 'email' => 'Il campo Email non contiene un indirizzo email valido', + 'length' => 'Il campo Email deve essere lungo almeno 4 caratteri e non pi', + 'required' => 'Il campo Email ', + ) , + 'error' => array( + 'required' => 'Il campo errore ', + ) , + 'subject' => array( + 'length' => 'Il campo oggetto deve essere lungo almeno 3 caratteri.', + 'required' => 'Il campo oggetto ', + ) , + 'yourname' => array( + 'length' => 'Il campo nome deve essere lungo almeno 3 caratteri.', + 'required' => 'Il campo nome ', + ) , +); diff --git a/application/i18n/it_IT/category.php b/application/i18n/it_IT/category.php new file mode 100755 index 0000000000..0b0f301bc3 --- /dev/null +++ b/application/i18n/it_IT/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Il campo colore deve contenere 6 caratteri.', + 'required' => 'Il campo colore è necessario', + ) , + 'category_description' => array( + 'required' => 'Il campo descrizione è necessario', + ) , + 'category_image' => array( + 'size' => 'Assicurati che la dimensione delle immagini caricate non sia superiore a 50KB.', + 'type' => 'Il campo immagine non contiene un\'immagine valida. I soli formati accettati sono .JPG, .PNG e .GIF.', + 'valid' => 'Il campo immagine non contiene un file valido', + ) , + 'category_title' => array( + 'length' => 'Il campo titolo deve essere lungo almeno 3 caratteri non pi', + 'required' => 'Il campo titolo è necessario.', + ) , + 'parent_id' => array( + 'already_parent' => 'Non puoi far diventare una sottocategoria una categoria che già contiene delle sottocategorie', + 'exists' => 'La categoria madre non esiste.', + 'numeric' => 'Il campo categoria madre deve essere numerico.', + 'parent_trusted' => 'La categoria padre non può essere una categoria speciale', + 'required' => 'Il campo categoria madre ', + 'same' => 'La categoria e la categoria madre non possono essere uguali.', + 'special' => 'Le categorie speciali non posso diventare sottocategorie', + ) , +); diff --git a/application/i18n/it_IT/comments.php b/application/i18n/it_IT/comments.php new file mode 100755 index 0000000000..8ded98d5a9 --- /dev/null +++ b/application/i18n/it_IT/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Inserisci un codice di sicurezza valido.', + 'required' => 'Inserisci il codice di sicurezza.', + 'valid' => 'Hai inserito un codice di sicurezza errato.', + ) , + 'comment_author' => array( + 'length' => 'Il campo Nome deve essere lungo almeno 3 caratteri.', + 'required' => 'Il campo Nome è obbligatorio.', + ) , + 'comment_description' => array( + 'required' => 'Il campo Commenti è obbligatorio.', + ) , + 'comment_email' => array( + 'email' => 'Il campo Email non contiene un indirizzo email valido.', + 'length' => 'Il campo Email deve essere lungo almeno 4 caratteri e non più di 64.', + 'required' => 'Il campo Email è obbligatorio se la casella di controllo è selezionata.', + ) , +); diff --git a/application/i18n/it_IT/contact.php b/application/i18n/it_IT/contact.php new file mode 100755 index 0000000000..7f89c2074c --- /dev/null +++ b/application/i18n/it_IT/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Inserisci un codice di sicurezza valido', + 'valid' => 'Inserire un codice di sicurezza valido', + 'required' => 'Inserisci il codice di sicurezza', + ) , + 'contact_email' => array( + 'email' => 'Il campo Email non contiene un indirizzo email valido?', + 'length' => 'Il campo Email deve essere lungo almeno 4 caratteri e non pi', + 'required' => 'Il campo Email ', + ) , + 'contact_message' => array( + 'required' => 'Il campo Messaggio è obbligatorio.', + ) , + 'contact_name' => array( + 'length' => 'Il campo Nome deve essere lungo almeno 3 caratteri.', + 'required' => 'Il campo Nome è obbligatorio.', + ) , + 'contact_subject' => array( + 'length' => 'Il campo Oggetto deve essere lungo almeno 3 caratteri.', + 'required' => 'Il campo Oggetto è obbligatorio.', + ) , + 'email_send' => array( + 'failed' => 'Si è verificato un errore durante l\'invio del messaggio.', + ) , +); diff --git a/application/i18n/it_IT/core.php b/application/i18n/it_IT/core.php new file mode 100755 index 0000000000..31c7237a99 --- /dev/null +++ b/application/i18n/it_IT/core.php @@ -0,0 +1,35 @@ + 'file di configurazione', + 'controller' => 'controller', + 'driver' => 'driver', + 'driver_implements' => 'Il driver %s per la libreria %s deve implementare l\'interfaccia %s.', + 'driver_not_found' => 'Il driver %s per la libreria %s non può essere trovato.', + 'errors_disabled' => 'Vai alla home page o riprova.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Impossibile completare la richiesta.', + 'helper' => 'helper', + 'invalid_filetype' => 'Il tipo di file richiesto, .%s, non è consentito nel tuo file di configurazione delle viste.', + 'invalid_method' => 'Metodo non valido %s invocato in %s', + 'invalid_property' => 'La proprietà %s non esiste nella classe %s.', + 'library' => 'libreria', + 'log_dir_unwritable' => 'La cartella del log directory è scrivibile: %s', + 'model' => 'modello', + 'no_controller' => 'Ushahidi non ha potuto determinare un controller per elaborare questa richiesta: %s', + 'no_default_route' => 'Definisci una route di default in config/routes.php', + 'page_not_found' => 'La pagina richiesta, %s, non è stata trovata.', + 'report_bug' => 'Segnala questo problema a Ushahidi', + 'resource_not_found' => 'La risorsa %s richiesta, %s, non è stata trovata.', + 'stack_trace' => 'Analisi dello stack', + 'stats_footer' => 'Caricato in {execution_time} secondi, usando {memory_usage} della memoria. Generato da Ushahidi v%s.', + 'text_direction' => 'da destra a sinistra', + 'there_can_be_only_one' => 'E\' consentita un\'unica istanza di Ushahidi per richiesta di pagina.', + 'uncaught_exception' => 'Non catturata %s: %s nel file %s alla riga %s', + 'view' => 'vista', + 'view_set_filename' => 'Definisci il nome file della vista prima del calling render', +); diff --git a/application/i18n/it_IT/database.php b/application/i18n/it_IT/database.php new file mode 100755 index 0000000000..09116818e5 --- /dev/null +++ b/application/i18n/it_IT/database.php @@ -0,0 +1,10 @@ + 'Errore nel database: %s', + 'table_not_found' => 'La Tabella "%s" non può essere trovata nel database. Assicurati di stare usando la versione più recente del database per questa versione di Ushahidi.', +); diff --git a/application/i18n/it_IT/datetime.php b/application/i18n/it_IT/datetime.php new file mode 100755 index 0000000000..a418b492f1 --- /dev/null +++ b/application/i18n/it_IT/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Ven', + 'full' => 'Venerdì', + ) , + 'monday' => array( + 'abbv' => 'Lun', + 'full' => 'Lunedì', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sab', + 'full' => 'Sabato', + ) , + 'sunday' => array( + 'abbv' => 'Dom', + 'full' => 'Domenica', + ) , + 'thursday' => array( + 'abbv' => 'Gio', + 'full' => 'Giovedì', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => 'Martedì', + ) , + 'wednesday' => array( + 'abbv' => 'Mer', + 'full' => 'Mercoledì', + ) , + 'january' => array( + 'abbv' => 'Gen', + 'full' => 'Gennaio', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Febbraio', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marzo', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'Aprile', + ) , + 'may' => array( + 'abbv' => 'Mag', + 'full' => 'Maggio', + ) , + 'june' => array( + 'abbv' => 'Giu', + 'full' => 'Giugno', + ) , + 'july' => array( + 'abbv' => 'Lug', + 'full' => 'Luglio', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agosto', + ) , + 'september' => array( + 'abbv' => 'Set', + 'full' => 'Settembre', + ) , + 'october' => array( + 'abbv' => 'Ott', + 'full' => 'Ottobre', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novembre', + ) , + 'december' => array( + 'abbv' => 'Dic', + 'full' => 'Dicembre', + ) , +); diff --git a/application/i18n/it_IT/feeds.php b/application/i18n/it_IT/feeds.php new file mode 100755 index 0000000000..ad1d7302a3 --- /dev/null +++ b/application/i18n/it_IT/feeds.php @@ -0,0 +1,19 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'Il nome del feed deve essere lungo almeno 3 e non più di 70 caratteri.', + 'required' => 'Inserite il nome del feed.', + ) , + 'feed_url' => array( + 'required' => 'Inserite la URL del feed.', + 'url' => 'Inserite una URL valida. Es. http://www.ushahidi.com', + ) , + 'source' => 'FONTE', + 'title' => 'TITOLO', +); diff --git a/application/i18n/it_IT/footer.php b/application/i18n/it_IT/footer.php new file mode 100755 index 0000000000..8c1882499e --- /dev/null +++ b/application/i18n/it_IT/footer.php @@ -0,0 +1,9 @@ + 'php5-curl non è installato su questo sistema', +); diff --git a/application/i18n/it_IT/form.php b/application/i18n/it_IT/form.php new file mode 100755 index 0000000000..0586856b52 --- /dev/null +++ b/application/i18n/it_IT/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Il valore predefinito che hai fornito non è valido per il campo.', + 'length' => 'Il Campo Nome deve essere lungo almeno 3 caratteri e non più di 200.', + ) , + 'field_height' => array( + 'between' => 'Inserisci un valore tra 0 e 50 per il campo Altezza.', + ) , + 'field_isdate' => array( + 'between' => 'Hai inserito un valore non valido per il Campo Data.', + 'required' => 'Seleziona Si o No per il Campo Data', + ) , + 'field_name' => array( + 'length' => 'Il campo Nome deve essere lungo almeno 3 caratteri e non più di 100.', + 'required' => 'Inserisci un campo Nome.', + 'duplicate' => 'Il nome del campo che hai inserito esiste già in questo form. Inserire un nome diverso.', + ) , + 'field_required' => array( + 'between' => 'Non hai inserito un valore valido per il Campo Richiesto', + 'required' => 'Seleziona Si o No per il campo richiesto', + ) , + 'field_type' => array( + 'numeric' => 'Seleziona un Tipo di Campo valido.', + 'required' => 'Seleziona il Tipo di Campo.', + ) , + 'field_width' => array( + 'between' => 'Inserisci un valore tra 0 e 300 per il campo Larghezza', + ) , + 'form_description' => array( + 'required' => 'Inserisci la Descrizione del form.', + ) , + 'form_id' => array( + 'default' => 'Il form di default non può essere cancellato.', + 'numeric' => 'Seleziona a quale form aggiungere questo campo.', + 'required' => 'Seleziona il form al quale aggiungere questo campo.', + ) , + 'form_title' => array( + 'length' => 'Il nome del form deve essere lungo almeno 3 caratteri e non più di 100.', + 'required' => 'Inserisci il nome del form.', + 'exists' => 'Un form con questo titolo esiste già. Inserire un nome diverso.', + ) , +); diff --git a/application/i18n/it_IT/imap.php b/application/i18n/it_IT/imap.php new file mode 100755 index 0000000000..b6e86cefe2 --- /dev/null +++ b/application/i18n/it_IT/imap.php @@ -0,0 +1,10 @@ + 'Non è possibile aprire lo stream IMAP', + 'unsupported_service' => 'Il servizio email service non è supportato', +); diff --git a/application/i18n/it_IT/installer.php b/application/i18n/it_IT/installer.php new file mode 100755 index 0000000000..45fd283fd6 --- /dev/null +++ b/application/i18n/it_IT/installer.php @@ -0,0 +1,84 @@ + 'Percorso di base', + 'database' => 'Database', + 'database_host' => 'Indirizzo Database', + 'database_host_description' => 'Se stai usando Ushahidi sul tuo computer, questo sarà considerato "localhost". Se stai usando Ushahidi con un web server, puoi avere le informazioni sull\'host dal tuo web hosting provider', + 'database_name' => 'Nome Database', + 'database_name_description' => 'Il nome del database per Ushahidi', + 'db_information_link' => 'Per ulteriori informazioni leggete questo articolo nel wiki che tratta del databases con maggior dettaglio', + 'default_language' => 'Langua di Default (Locale)', + 'default_language_description' => 'Ogni deployment di Ushahidi contiene un set traduzioni in altre lingue. Puoi anche aggiungere la tua', + 'disable' => 'Disabilita', + 'enable' => 'Abilita', + 'error_summary' => 'Qui di seguito sono elencate delle sintesi degli errori rilevati', + 'files_location_text' => 'La location sul tuo server dove hai salvato i file di Ushahidi. Abbiamo rilevato automaticamente questo valore, assicurati che sia corretto. Se il campo è vuoto, non importa, significa che ushahidi è stato intsallato nella top level directory', + 'finished' => 'Completato', + 'general' => 'Generale', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Tutti possono richiedere una api key. Richiedi la tua', + 'go_back' => 'Indietro', + 'index' => array( + 'advanced' => 'INSTALLAZIONE AVANZATA', + 'advanced_installation_description' => 'Completa il settaggio di base attraverso questo processo a 5-step. Include serve, map, nome del sito e dettagli di contatto', + 'basic_installation' => 'INSTALLAZIONE DI BASE', + 'basic_installation_description' => 'Semplice e veloce. Tutto ciò di cui hai bisogno è la root directory del vostro website e le informazioni relative al vostro database. Scegli questa opzione se vuoi iniziare velocemente, potrai sempre configurare il resto successivamente', + 'proceed' => 'Procedi', + 'welcome' => 'Benvenuto al processo di installazione di Ushahidi. Scegli qui di seguito quale tipo di installazione vuoi utilizzare', + ) , + 'installation_successful' => 'Installatione avvenuta con successo', + 'mail_server' => 'Server di Posta', + 'mail_server_host' => 'Indirizzo del Server di Posta', + 'mail_server_host_description' => 'Esempio: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Password del Server di Posta', + 'mail_server_password_description' => 'la password che usi normalmente per effettuare il login nella tua posta', + 'mail_server_port' => 'Porta del Server di Posta', + 'mail_server_port_description' => 'Porte Comuni: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tipo Server di Posta', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). Qual è la differenza?', + 'mail_server_username' => 'Nome Utente Server di Posta', + 'mail_server_username_description' => 'Se utilizzi Gmail, Hotmail, o Yahoo Mail, inserisci come username l\'indirizzo email completo', + 'map' => 'Mappa', + 'map_provider' => 'Fornitore Mappa', + 'map_provider_description' => 'Ushahidi può utilizzare indifferentemente uno di questi quattro mapping providers: Google, Bing, Yahoo o Open Street Map. Scegli quello che ha contiene maggiori dettagli per la tua area territoriale', + 'other_steps' => 'Ulteriori step...', + 'password' => 'Password', + 'password_description' => 'La password del tuo database', + 'previous' => 'Precedente', + 'restart_apache' => 'Restart il tuo Apache Server', + 'select_mail_server_ssl' => 'Abilita o Disabilita SSL', + 'select_mail_server_ssl_description' => 'Alcuni mail servers ti danno la possibilità di utilizzare SSL quanto viene aperta una connessione. L\'utilizzo di SSL è raccomandato poiché aumenta il livello di sicurezza', + 'setup_sms' => 'Setup il tuo SMS server', + 'site_email' => 'Indirizzo Email del Sito', + 'site_email_alerts' => 'Indirizzo Email del Sito per gli Avvisi', + 'site_email_alerts_description' => 'Quando gli utenti del sito si iscrivono per ricevere email alerts, riceveranno emails da questo indirizzo. Questo indirizzo email non deve essere uguale a Site Email Address', + 'site_email_description' => 'Tutta la comunicazione via email del sito verrà effettuata attraverso questo indirizzo di posta', + 'site_name' => 'Nome Sito', + 'site_name_description' => 'Il nome del tuo sito', + 'site_tagline' => 'Tagline sito', + 'site_tagline_description' => 'La tua tagline', + 'summary' => array( + 'text_1' => 'I files e le cartelle elencate qui di seguito devono essere scrivibili dal tuo your webserver', + 'text_2' => '

Qui trovi le istruzioni per cambiare i permessi dei file:

+ ', + 'text_3' => 'Prima di iniziare, dovrai assicurarti che i seguenti file e cartelle siano scrivibili dal tuo server. Questo comporta cambiare i permessi dei file', + 'text_4' => 'Per procedere con il processo di installazione, tieni a portata di mano le seguenti informazioni', + ) , + 'table_prefix' => 'Prefisso tabelle', + 'table_prefix_description' => 'Normalmente non dovresti cambiare il table prefix. Ad ogni modo, se vuoi operare con installazioni multiple di Ushahidi ma con un singolo databas puoi farlo cambiando il prefix da qui', + 'title' => 'Titolo', + 'to_login' => 'Per effettuare il login, vai a', + 'upload_data' => 'Carica i dati dei report', + 'username' => 'Nome Utente', + 'username_description' => 'Lo username del database', + 'use_credentials' => 'e utilizza le seguenti credenziali', + 'view_site' => 'Visita il tuo website', +); diff --git a/application/i18n/it_IT/layer.php b/application/i18n/it_IT/layer.php new file mode 100755 index 0000000000..cb687f52ea --- /dev/null +++ b/application/i18n/it_IT/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Il campo colore deve essere lungo 6 caratteri.', + 'required' => 'Il campo Colore è richiesto.', + ) , + 'layer_file' => array( + 'type' => 'Il campo File non contiene un file valido. Gli unici formati accettati sono .KMZ, .KML.', + 'valid' => 'Il campo File non sembra contenere un file valido', + ) , + 'layer_name' => array( + 'length' => 'Il campo nome deve essere lungo almeno 3 caratteri e non più di 80.', + 'required' => 'Il campo nome è richiesto.', + ) , + 'layer_url' => array( + 'atleast' => 'E\' richiesta o una Url o un file KML', + 'both' => 'Non puoi avere sia un file che una Url Kml', + 'url' => 'Inserisci una URL valida. Es. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/it_IT/libraries.php b/application/i18n/it_IT/libraries.php new file mode 100755 index 0000000000..589791ac98 --- /dev/null +++ b/application/i18n/it_IT/libraries.php @@ -0,0 +1,27 @@ + 'Non è stato possibile connettersi al server Akismet', + 'akismet_cannot_retrieve' => 'Non è stato possibile ricevere la risposta dal server Akismet.', + 'api_library_not_found' => 'La API Library: : %s, per la classe %s non è stata trovata. Controlla la tua API task routing table.', + 'askimet_invalid_apikey' => 'La tua chiave API Akismet non è valida', + 'clickatell_fopen_error' => 'Errore nell\'esecuzione di fopen metodo di invio!
Verifica se PHP ha un supporto OpenSSL e assicurati che la versione PHP sia maggiore della 5.2', + 'clickatell_message_too_long' => 'Il tuo unicode message è troppo lungo (Lunghezza attuale=', + 'clickatell_no_destination_address' => 'Specifica un indirizzo di destinazione (A)!', + 'clickatell_no_sender_address' => 'Specifica un indirizzo per il mittente (DA)!', + 'clickatell_unicode_message_too_long' => 'Il tuo unicode message è troppo lungo! (Lunghezza attuale=', + 'clickatell_unsupported_method' => 'Metodo di invio non supportato!', + 'invalid_api_library' => 'La Libreria APi %s non è valida. Tutte le librerie APi devo essere sottoclassi di %s', + 'upgrade_directory_not_deleted' => 'Non è stato possibile cancellare la directory %s', + 'upgrade_extracting_error' => 'Errore nell\'estrazione: %s', + 'upgrade_failed' => 'Il download dell\'ultima versione di Ushahidi non è andato a buon fine. HTTP status code', + 'upgrade_file_not_copied' => 'Non è stato possibile copiare il File %s', + 'upgrade_file_not_deleted' => 'Non è stato possibile cancellare il File %s', + 'upgrade_title' => 'Script per l\'aggiornamento di Ushahidi', + 'upgrade_zip_error' => 'Il file scaricato Ushahidi zip %s, non è scrivibile', + 'riverid_variable_not_available' => '%s non è disponibile nella classe RiverID.', +); diff --git a/application/i18n/it_IT/maintenance.php b/application/i18n/it_IT/maintenance.php new file mode 100644 index 0000000000..b60dcb480d --- /dev/null +++ b/application/i18n/it_IT/maintenance.php @@ -0,0 +1,9 @@ + 'Spiacente, il nostro sito è attualmente in manutenzione. Riprova tra qualche minuto.', +); diff --git a/application/i18n/it_IT/message.php b/application/i18n/it_IT/message.php new file mode 100755 index 0000000000..f8656a0d1e --- /dev/null +++ b/application/i18n/it_IT/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Digitate un codice di sicurezza valido', + 'required' => 'Digitate un codice di sicurezza', + ) , + 'email' => array( + 'email' => 'Il campo Email contiene un indirizzo email valido?', + 'length' => 'Il campo Email deve essere lungo almeno 4 caratteri e non pi', + 'required' => 'Il campo Email ', + ) , + 'message' => array( + 'required' => 'Il campo Commenti ', + ) , + 'name' => array( + 'length' => 'Il campo Nome deve essere lungo almeno 3 caratteri.', + 'required' => 'Il campo Nome ', + ) , + 'phone' => array( + 'length' => 'Il campo Telefono non ', + ) , +); diff --git a/application/i18n/it_IT/mhi.php b/application/i18n/it_IT/mhi.php new file mode 100755 index 0000000000..5f585acc2b --- /dev/null +++ b/application/i18n/it_IT/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Per favore inserisci un codice di controllo valido.', + 'required' => 'Per favore inserisci il codice ci controllo.', + ) , + 'contact_email' => array( + 'email' => 'Il campo email contiene un valore che non è un indirizzo email valido.', + 'required' => 'Per favore inserisci un indirizzo email valido.', + ) , + 'contact_message' => array( + 'required' => 'Il campo messaggio è obbligatorio.', + ) , + 'contact_subject' => array( + 'length' => 'Il subject deve contenere almeno 3 caratteri.', + 'required' => 'Il campo subject è obbligatorio.', + ) , +); diff --git a/application/i18n/it_IT/notifications.php b/application/i18n/it_IT/notifications.php new file mode 100755 index 0000000000..fd110f60d4 --- /dev/null +++ b/application/i18n/it_IT/notifications.php @@ -0,0 +1,35 @@ + 'Questo messaggio ', + 'admin_login_url' => 'Accesso Amministratore', + 'admin_new_comment' => array( + 'message' => 'Un nuovo Commento ', + 'subject' => 'Nuovo Commento', + ) , + 'admin_new_email' => array( + 'message' => 'Un Nuovo Messaggio Email ', + 'subject' => 'Nuovo Messaggio Email', + ) , + 'admin_new_report' => array( + 'message' => 'Una nuova segnalazione ', + 'subject' => 'Nuova segnalazione', + ) , + 'admin_new_sms' => array( + 'message' => 'Un nuovo Messaggio di Testo ', + 'subject' => 'Nuovo Messaggio di Testo', + ) , + 'member_new_alert' => array( + 'message' => 'Hai Ricevuto un Nuovo Avviso', + 'subject' => 'Nuova Avviso!', + ) , + 'member_new_message' => array( + 'message' => 'Hai Ricevuto un Messaggio Privato', + 'subject' => 'Nuovo Messaggio Privato', + 'footer' => 'Per rispondere Andare A:', + ) , +); diff --git a/application/i18n/it_IT/page.php b/application/i18n/it_IT/page.php new file mode 100644 index 0000000000..8ed1484e76 --- /dev/null +++ b/application/i18n/it_IT/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Inserire il Titolo della Pagina', + 'length' => 'Il Titolo della Pagina deve essere lungo tra 3 e 150 caratteri', + ) , + 'page_tab' => array( + 'required' => 'Inserire il Nome del Tab della Pagina', + ) , + 'page_description' => array( + 'required' => 'Inserire la Descrizione della Pagina', + ) , +); diff --git a/application/i18n/it_IT/permissions.php b/application/i18n/it_IT/permissions.php new file mode 100644 index 0000000000..2b93d7033a --- /dev/null +++ b/application/i18n/it_IT/permissions.php @@ -0,0 +1,27 @@ + 'Vedi Notizie', + 'reports_edit' => 'Crea/Modifica/Elimina Notizie', + 'reports_approve' => 'Approva Notizie', + 'reports_verify' => 'Verifica Notizie', + 'reports_comments' => 'Gestione Commenti delle Notizie', + 'reports_download' => 'Scarica Notizie', + 'reports_upload' => 'Carica Notizie', + 'messages' => 'Gestione Messaggi', + 'messages_reporters' => 'Gestisci Messaggi Reporters', + 'stats' => 'Vedi Statistiche', + 'settings' => 'Modifica Impostazioni', + 'manage' => 'Gestione Pannello', + 'users' => 'Gestione Utenti', + 'manage_roles' => 'Gestione Ruoli', + 'checkin' => 'Può fare una registrazione', + 'checkin_admin' => 'Gestione registrazioni', + 'admin_ui' => 'Accesso UI Amministratore', + 'member_ui' => 'Accesso UI Membri', + 'delete_all_reports' => 'Cancella tutti i rapporti', +); diff --git a/application/i18n/it_IT/private_message.php b/application/i18n/it_IT/private_message.php new file mode 100644 index 0000000000..b125aee622 --- /dev/null +++ b/application/i18n/it_IT/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'l\'ID padre deve essere un numero', + ) , + 'private_to' => array( + 'required' => 'Il campo A è obbligatorio', + 'exists' => 'L\'utente a cui si sta inviando il messaggio non esiste', + ) , + 'private_subject' => array( + 'required' => 'Il campo oggetto è obbligatorio', + 'length' => 'La lunghezza dell\'oggetto deve essere tra 3 e 150 caratteri', + ) , + 'private_message' => array( + 'required' => 'Il campo messaggio è obbligatorio', + ) , +); diff --git a/application/i18n/it_IT/report.php b/application/i18n/it_IT/report.php new file mode 100755 index 0000000000..134c4ef7ae --- /dev/null +++ b/application/i18n/it_IT/report.php @@ -0,0 +1,139 @@ + 'errore!', + 'country_name' => array( + 'single_country' => 'Questa installazione comprende solo una nazione. Assicurati che la segnalazione sia all\'interno della nazione %s.', + ) , + 'custom_field' => array( + 'values' => 'Per favore, inserisci un valore valido per il campo "%s".', + 'numeric' => 'Il campo "%s" dev\'essere numerico.', + 'required' => 'Il campo "%s" è richiesto.', + 'not_exist' => 'Il campo "%s" non esiste.', + 'permission' => 'Il campo "%s" non può essere modificato dal tuo account.', + 'email' => 'Il campo "%s" deve contenere un indirizzo email valido.', + 'phone' => 'Il campo "%s" deve contenere un numero di telefono valido.', + 'date_mmddyyyy' => 'Il campo "%s" deve contenere una data valida (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'Il campo "%s" deve contenere una data valida (MM/DD/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Seleziona un oggetto valido da includere nel download.', + 'numeric' => 'Seleziona un oggetto valido da includere nel download', + ) , + 'data_active' => array( + 'between' => 'Seleziona "Segnalazioni da approvare" o "Segnalazioni approvate" o entrambi.', + 'numeric' => 'Seleziona "Segnalazioni da approvare" o "Segnalazioni approvate" o entrambi', + 'required' => 'Seleziona "Segnalazioni da approvare" o "Segnalazioni approvate" o entrambi', + ) , + 'data_verified' => array( + 'between' => 'Seleziona "Segnalazioni da verificare" o "Segnalazioni verificate" o entrambi', + 'numeric' => 'Seleziona "Segnalazioni da verificare" o "Segnalazioni verificate" o entrambi', + 'required' => 'Seleziona "Segnalazioni da verificare" o "Segnalazioni verificate" o entrambi', + ) , + 'data_point' => array( + 'between' => 'Seleziona un tipo di segnalazione valido da scaricare', + 'numeric' => 'Seleziona un tipo di segnalazione valido da scaricare', + 'required' => 'Seleziona un tipo di segnalazione valido da scaricare', + ) , + 'format' => array( + 'required' => 'Devi selezionare un formato di download. Scegli CSV o XML.', + 'valid' => 'Scegli un formato valido in cui scaricare le tue segnalazioni', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Il campo data DA contiene una data valida?', + 'range' => 'Inserisci una data DA valida. Non può essere successiva a oggi.', + ) , + 'incident_active' => array( + 'between' => 'Inserisci un valore valido per Approva questa segnalazione', + 'required' => 'Inserisci un valore valido per Approva questa segnalazione', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Il campo am/pm contiene un valore valido?', + ) , + 'incident_category' => array( + 'numeric' => 'Il campo "Categorie" non sembra contenere una categoria valida.', + 'required' => 'Il campo categoria è richiesto.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Il campo data contiene una data valida?', + 'date_mmddyyyy' => 'Il campo data contiene una data valida?', + 'required' => 'Il campo data è richiesto.', + ) , + 'incident_description' => array( + 'required' => 'Il campo descrizione è richiesto.', + ) , + 'incident_hour' => array( + 'between' => 'Il campo ora contiene un\'ora valida?', + 'required' => 'Il campo ora è richiesto.', + ) , + 'incident_information' => array( + 'alpha' => 'Inserisci un valore valido per Grado di Probabilità', + 'length' => 'Inserisci un valore valido per Grado di Probabilità', + ) , + 'incident_minute' => array( + 'between' => 'Il campo minuto contiene un valore valido?', + 'required' => 'Il campo minuto è richiesto.', + ) , + 'incident_news' => array( + 'url' => 'Il campo link della fonte news contiene una URL valida?', + ) , + 'incident_photo' => array( + 'size' => 'I file di immagini non devono superare i 2MB.', + 'type' => 'Il campo Upload Photos non contiene un\'immagine valida. I formati consentiti sono .JPG, .PNG e .GIF.', + 'valid' => 'Il campo Upload Photos non contiene un file valido', + ) , + 'incident_source' => array( + 'alpha' => 'Inserisci un valore valido per l\'Affidabilità della Fonte', + 'length' => 'Inserisci un valore valido per Affidabilità della Fonte', + ) , + 'incident_title' => array( + 'length' => 'Il campo titolo deve essere lungo almeno 3 caratteri e non più di 200.', + 'required' => 'Il campo titolo è richiesto.', + 'csrf' => 'Possibile attacco CSRF. Volevi veramente creare/modificare una segnalazione?', + ) , + 'incident_verified' => array( + 'between' => 'Inserisci un valore valido per Verificare Questa Segnalazione.', + 'required' => 'Inserisci un valore valido per Verificare Questa Segnalazione.', + ) , + 'incident_video' => array( + 'url' => 'Il campo video link contiene una URL valida?', + ) , + 'latitude' => array( + 'between' => 'Il campo latitudine contiene una latitudine valida?', + 'required' => 'Il campo latitudine è richiesto. Clicca sulla mappa per indicare un luogo.', + ) , + 'locale' => array( + 'alpha_dash' => 'Il campo luogo ha un valore non corretto. ', + 'exists' => 'Questa segnalazione ha già una traduzione per questa lingua.', + 'length' => 'Il campo luogo ha un valore non corretto. ', + 'locale' => 'La segnalazione originale e la traduzione sono nella stessa lingua', + 'required' => 'Il luogo è richiesto.', + ) , + 'location_name' => array( + 'length' => 'Il campo Nome Luogo deve essere lungo almeno 3 caratteri e non più di 200.', + 'required' => 'Il campo Nome Luogo è richiesto.', + ) , + 'longitude' => array( + 'between' => 'Il campo longitudine contiene una longitudine valida?', + 'required' => 'Il campo longitudine è richiesto. Clicca sulla mappa per indicare un luogo.', + ) , + 'person_email' => array( + 'email' => 'Il campo email field contiene un indirizzo email valido?', + 'length' => 'Il campo email deve essere lungo almeno 4 caratteri e non pi', + ) , + 'person_first' => array( + 'length' => 'Il campo Nome deve essere lungo almeno 3 caratteri e non più di 100.', + ) , + 'person_last' => array( + 'length' => 'Il campo Cognome deve essere lungo almeno 3 caratteri e non più di 100.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Il campo data A contiene una data valida?', + 'range' => 'Inserisci una data A valida. Non può essere successivo a oggi.', + 'range_greater' => 'La data DA non può essere successivo alla data indicata nel campo A.', + ) , +); diff --git a/application/i18n/it_IT/reporters.php b/application/i18n/it_IT/reporters.php new file mode 100755 index 0000000000..d996679a55 --- /dev/null +++ b/application/i18n/it_IT/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Il valore inserito nel campo Latitudine non è corretto.', + 'required' => 'Il campo Latitudine è obbligatorio. Clicca sulla mappa per definire il punto esatto.', + ) , + 'level_id' => array( + 'numeric' => 'Il valore inserito per Livello Reporter non è valido. Inserisci un valore numerico.', + 'required' => 'Il campo Livello Reporter è obbligatorio.', + ) , + 'location_name' => array( + 'length' => 'La lunghezza della località deve essere tra 3 e 200 caratteri.', + 'required' => 'Il nome della località è obbligatorio.', + ) , + 'longitude' => array( + 'between' => 'Il valore inserito nel campo Longitudine non è corretto.', + 'required' => 'Il campo Longitudine è obbligatorio. Clicca sulla mappa per definire il punto esatto.', + ) , + 'reporter_id' => array( + 'numeric' => 'ID Reporter non valido.', + 'required' => 'L\'ID del Reporter è obbligatorio.', + ) , +); diff --git a/application/i18n/it_IT/reports.php b/application/i18n/it_IT/reports.php new file mode 100644 index 0000000000..5d2553058d --- /dev/null +++ b/application/i18n/it_IT/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Verifica di aver selezionato un elemento', + 'numeric' => 'Verifica di aver selezionato un elemento', + 'categories_required' => 'I report devono appartenere ad una categoria prima di essere approvati', + ) , + 'action' => array( + 'permission' => 'Non hai i permessi per eseguire questa operazione', + ) , + 'uploadfile' => array( + 'required' => 'Devi selezionare un file da caricare', + 'type' => 'Il file da caricare dev\'essere nei formato .csv o .xml', + 'valid' => 'Il campo di upload non sembra contenere un file valido', + ) , +); diff --git a/application/i18n/it_IT/roles.php b/application/i18n/it_IT/roles.php new file mode 100755 index 0000000000..2e1f19b00e --- /dev/null +++ b/application/i18n/it_IT/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'La descrizione deve contenere da un minimo di 3 a un massimo di 100 caratteri.', + 'required' => 'Il campo descrizione è obbligatorio.', + ) , + 'name' => array( + 'alpha_numeric' => 'Il campo Nome può contenere solo lettere o numeri.', + 'length' => 'Il campo nome deve contenere da un minimo di 2 a un massimo di 30 caratteri.', + 'nomodify' => 'Non è possibile modificare il ruolo di SuperAdmin.', + 'required' => 'Il campo nome è obbligatorio.', + ) , + 'access_level' => array( + 'numeric' => 'Il campo Livello di Accesso deve contenere un valore compreso tra 0 - 100.', + 'required' => 'Il campo Livello di Accesso deve contenere un valore compreso tra 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Il campo Permessi deve contenere un valore compreso tra 0 - 100.', + ) , +); diff --git a/application/i18n/it_IT/settings.php b/application/i18n/it_IT/settings.php new file mode 100755 index 0000000000..45fd1fdad1 --- /dev/null +++ b/application/i18n/it_IT/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'Il campo autorizza commenti non sembra contenere un valore valido?', + 'required' => 'Il campo autorizza commenti è richiesto.', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value?', + 'required' => 'Il campo inclusione del feed è necessario', + ) , + 'allow_feed_category' => array( + 'between' => 'Il campo categoria del feed non sembra contenere un valore valido.', + 'required' => 'Il campo inclusione del feed è necessario.', + ) , + 'allow_alerts' => array( + 'between' => 'Il campo Permetti Avvisi non contiene un valore valido', + 'required' => 'Il campo premetti avvisi è necessario', + ) , + 'allow_reports' => array( + 'between' => 'The allow reports field does not appear to contain a valid value?', + 'required' => 'il campo premetti report è necessario', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value?', + 'required' => 'Il campo condividi statistiche è necessario', + ) , + 'api' => array( + 'default_record_limit' => 'Default no. of records to be fetched per API request', + 'maximum_record_limit' => 'Numero massimo di elementi da scaricare per ogni richiesta API', + 'maximum_requests_per_ip_address' => 'Numero massimo di richieste API per indirizzo IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value?', + 'length' => 'The Akismet field does not appear to contain a valid value?', + ) , + 'banner_image' => array( + 'type' => 'Il campo Banner del sito non sembra contenere un\'immagine valida. I formati accettati sono solo .JPG, .PNG e .GIF.', + 'size' => 'Per favore, controlla che la dimensione dell\'immagine per il banner sia inferiore a 250 KB.', + 'valid' => 'Il campo "Immagine Banner" non sembra contenere un file valido.', + ) , + 'cache_pages' => array( + 'between' => 'Il campo cache della pagina è necessario', + 'required' => 'Il campo cache delle pagine contiene un valore non valido', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Il campo vita della cache delle pagine contiene un valore non valido', + 'required' => 'Il campo vita della cache delle pagine è obbligatorio.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Sembra che il tuo server non sia configurato per gestire le clean URLs. Dovrai modificare la configurazione del tuo server prima di abilitare le clean URL. Maggiori informazioni su come abilitare le clean URLs in questo forum post', + 'clean_url_enabled' => 'Questa opzione consente di accedere a Ushahidi con "clean" URLs. Senza "index.php" nella URL.', + 'enable_clean_url' => 'Abilita Clean URLs', + 'title' => 'Pulisci URL', + ) , + 'clickatell_api' => array( + 'length' => 'Il campo del numero API di Clickatell non deve essere più lungo di 20 caratteri.', + 'required' => 'È necessario il campo API di Clickatell.', + ) , + 'clickatell_password' => array( + 'length' => 'Il campo password di Clickatell deve contenere un minimo di 5 e un massimo 50 caratteri.', + 'required' => 'Il campo password Clickatell è necessario', + ) , + 'clickatell_username' => array( + 'length' => 'Il campo Nome utente di Clickatell deve essere minore di 50 caratteri.', + 'required' => 'Il campo nome utente Clickatell è necessario.', + ) , + 'configure_map' => 'Configura la Mappa', + 'default_location' => 'Posizione Predefinita', + 'default_map_all' => array( + 'alpha_numeric' => 'The color feed field does not appear to contain a valid value?', + 'length' => 'Il campo colore deve essere minore di 6 caratteri.', + 'required' => 'Il campo colore è necessario', + ) , + 'default_map_view' => 'Vista Mappa Predefinita', + 'default_zoom_level' => 'Livello predefinito dello zoom', + 'download_city_list' => 'Recupera la città', + 'email_host' => array( + 'length' => 'The Mail server port field is too long', + 'numeric' => 'Il campo porta del server di posta deve contenere solo numeri.', + ) , + 'email_password' => array( + 'length' => 'Il campo password del server di posta deve avere più di 5 e meno di 50 caratteri .', + 'required' => 'Il campo Password server di posta è necessario.', + ) , + 'email_port' => array( + 'length' => 'The Mail server port field is too long', + 'numeric' => 'Il campo porta del server di posta deve contenere solo numeri.', + ) , + 'email_servertype' => array( + 'length' => 'The Mail server port field is too long', + 'required' => 'È necessario indicare il tipo di mail server.', + ) , + 'email_username' => array( + 'length' => 'Il nome utente del mail server non può essere più lungo di 50 caratteri.', + 'required' => 'Il campo nome utente del server di posta elettronica è necessario.', + ) , + 'facebook' => array( + 'title' => 'Opzioni di configurazione di Facebook', + 'description' => 'Per ottenere le informazioni sottostanti sarà necessario creare una nuova applicazione Facebook su', + 'description_2' => 'Queste impostazioni permettono agli utenti di connettersi tramite Facebook, questo non crea un\'applicazione di Facebook per la tua installazione', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Il campo di Google Analytics deve contenere un ID di proprietà web valido nel formato UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Abilita HTTPS', + 'https_disabled' => 'Questa opzione permette di accedere a Ushahidi di accedere in modalità non sicura; senza "https://" nel prefisso dell\'URL', + 'https_enabled' => 'Questa opzione permette di accedere a Ushahidi di accedere in modalità sicura; con "https://" nel prefisso dell\'URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value?', + 'required' => 'Il campo elementi per pagina (Frontend) è obbligatorio', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value?', + 'required' => 'Il campo elementi per pagina (Admin) è obbligatorio', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'zoom' => 'Livello di zoom', + ) , + 'map_provider' => array( + 'choose' => 'Seleziona un Provider della mappa', + 'enter_api' => 'Digita la nuova API Key', + 'get_api' => 'Ottieni una API Key', + 'info' => 'Definire il fornitore della mappa - provider - ', + 'name' => 'Provider Mappa', + ) , + 'map_timeline' => 'Timeline mappa', + 'map_settings' => 'Impostazioni Mappa', + 'multiple_countries' => 'Questa installazione di Ushahidi ', + 'select_default_location' => 'Seleziona un paese predefinito', + 'set_location' => 'Clicca e trascina la mappa per definire la tua esatta localizzazione', + 'site' => array( + 'allow_clustering' => 'Cluster delle segnalazioni sulla Mappa', + 'allow_comments' => 'Consenti agli Utenti di commentare le segnalazioni', + 'allow_feed' => 'Includere RSS News Feed sul Website', + 'allow_feed_category' => 'Crea Nuova Categoria dai Feed', + 'allow_alerts' => 'Permette agli utenti di abbonarsi alle notifiche', + 'allow_reports' => 'Consenti agli utenti di inviare Segnalazioni', + 'api_akismet' => 'Chiave Akismet', + 'banner' => 'Banner del sito', + 'blocks_per_row' => 'blocchi per riga', + 'cache_pages' => 'Pagine Cache', + 'cache_pages_lifetime' => 'Durata temporale delle Pagine Cache', + 'checkins' => 'Abilita Checkins', + 'copyright_statement' => 'Copyright del sito', + 'default_category_colors' => 'Colore predefinito per tutte le categorie', + 'default_category_icons' => 'Icona predefinita per tutte le categorie', + 'delete_banner_image' => 'Elimina immagine di testata', + 'delete_default_map_all_icon' => 'Elimina icona predefinita', + 'display_contact_page' => 'Mostra la Pagina Contatti', + 'display_howtohelp_page' => 'Mostra la pagina "Come aiutare"', + 'email_alerts' => 'Indirizzo Email per gli alert', + 'email_notice' => 'Per ricevere report via email, ti preghiamo di configurare le impostazioni del tuo account email.', + 'email_site' => 'Indirizzo email del sito', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Elementi per Pagina - Front End', + 'items_per_page_admin' => 'Elementi Per Pagina - Admin', + 'kismet_notice' => 'Prevenire spam nei commenti utilizzando Akismet da Automattic.
Puoi ricevere una API key gratuita registrandoti un account come utente WordPress.com', + 'laconica_configuration' => 'Credenziali Laconica', + 'laconica_site' => 'Sito Laconica ', + 'language' => 'Lingua del Sito', + 'manually_approve_users' => 'Approvazione manuale utenti', + 'message' => 'Messaggio del sito', + 'name' => 'Nome Sito', + 'private_deployment' => 'Sviluppo privato', + 'require_email_confirmation' => 'Conferma email dell\'utente necessaria.', + 'submit_report_message' => 'Invia rapporto', + 'share_site_stats' => 'Condividi le statistiche del Sito in API', + 'tagline' => 'Tagline Sito', + 'timezone' => 'Fuso orario', + 'title' => 'Impostazioni Sito', + 'twitter_configuration' => 'Credenziali Twitter', + 'twitter_hashtags' => 'Hashtags - Separati da virgola ', + 'feed_geolocation_user' => 'Feed geolocalizzazione - Geonames nome utente', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address?', + 'length' => 'Il campo email deve essere lungo almeno 4 caratteri e non più di 100.', + ) , + 'site_name' => array( + 'length' => 'Il campo nome deve essere lungo almeno 3 caratteri e non più di 50.', + 'required' => 'E\' necessario compilare il campo con il nome del sito', + ) , + 'site_tagline' => array( + 'length' => 'Il campo tagline deve contenere almeno 3 caratteri e non più di 100.', + 'required' => 'Il campo "tagline" è richiesto.', + ) , + 'sms' => array( + 'clickatell_api' => 'Il tuo Clickatell API Number', + 'clickatell_check_balance' => 'Controlla il tuo credito Your Clickatell Credit Balance', + 'clickatell_load_balance' => 'Carica il saldo', + 'clickatell_password' => 'La tua Clickatell Password', + 'clickatell_text_1' => 'Iscriviti al servizio Clickatells cliccando qui', + 'clickatell_text_2' => 'Inserisci le credenziali del tuo accesso Clickatell qui sotto', + 'clickatell_username' => 'Il tuo Clickatell User Name', + 'flsms_description' => 'FrontlineSMS è un software gratuito e open source che abilita gli utenti a inviare e ricevere messaggi di testo con grandi gruppi di persone tramite i cellulari. Clicca sul pulsante sotto per scaricare l\'ultima versione da FrontlineSMS.com.', + 'flsms_download' => 'Scaricare e installare FrontlineSMS', + 'flsms_instructions' => 'Istruzioni dettagliate su come inviare SMS dalla tua installazione FrontlineSMS sono disponibili qui. L\'URL e la chiave API sottostanti sono richiesti per configurare la sincronizzazione con FrontlineSMS.', + 'flsms_link' => 'Copia e incolla questo nel campo "Indirizzo" di FrontlineSMS', + 'flsms_key' => 'Copia e incolla questo nel campo "Ushahidi API Key" FrontlineSMS', + 'flsms_synchronize' => 'Connettendo FrontlineSMS a questa installazione di Ushahidi', + 'flsms_text_1' => 'Inserisci il numero di telefono collegato a Frontline SMS nel campo', + 'flsms_text_2' => 'Inserisci nel campo qui sotto il numero senza nessun + o trattino', + 'option_1' => 'Optione 1: Usa Frontline SMS', + 'option_2' => 'Option 2: Usa un Global SMS Gateway', + 'title' => 'SMS Setup - Opzioni', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value?', + 'numeric' => 'Il campo telefono 1 deve contenere solo numeri.', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long', + 'numeric' => 'Il campo telefono 2 deve contenere solo numeri.', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long', + 'numeric' => 'Il campo telefono 3 deve contenere solo numeri.', + ) , + 'twitter' => array( + 'title' => 'Opzioni per l\'aggiornamento Twitter', + 'description' => 'Per ricevere le informazioni sottostanti, configura la tua installazione come una nuova applicazione Twitter a', + 'api_key' => 'Chiave consumatore', + 'api_key_secret' => 'Segreto del consumatore', + 'token' => 'Permesso di accesso', + 'token_secret' => 'Permesso di accesso segreto', + ) , + 'test_settings' => 'Prova le impostastioni', +); diff --git a/application/i18n/it_IT/sharing.php b/application/i18n/it_IT/sharing.php new file mode 100755 index 0000000000..6bc39c27b9 --- /dev/null +++ b/application/i18n/it_IT/sharing.php @@ -0,0 +1,25 @@ + 'Data di entrata', + 'date_added' => 'Data di creazione', + 'last_access' => 'Ultimo accesso', + 'sharing_color' => array( + 'length' => 'Il campo colore deve avere lunghezza di 6 caratteri.', + 'required' => 'Il campo colore è obbligatorio.', + ) , + 'sharing_name' => array( + 'length' => 'Il nome della Condivisione non è valido.', + 'required' => 'Un nome per la Condivisione è obbligatorio.', + ) , + 'sharing_url' => array( + 'exists' => 'L\'indirizzo URL del sito già esiste.', + 'length' => 'L\'indirizzo URL non è valido.', + 'required' => 'L\'indirizzo URL è obbligatorio.', + 'url' => 'Il campo indirizzo URL non contiene un indirizzo valido.', + ) , +); diff --git a/application/i18n/it_IT/stats.php b/application/i18n/it_IT/stats.php new file mode 100755 index 0000000000..150452029a --- /dev/null +++ b/application/i18n/it_IT/stats.php @@ -0,0 +1,42 @@ + 'Approvato', + 'categories' => 'Categorie', + 'category_impact' => 'Impatto della categoria', + 'category_impact_description' => 'Questo diagramma dà una visione lineare dei report per categoria nel tempo. Scorrere da sinistra a destra per comparare le diverse categorie. Passa con il mouse sopra il grafico per avere più dettagli.', + 'choose_date_range' => 'Scegliere un intervallo dati', + 'countries' => 'Nazioni', + 'country' => 'Nazione', + 'country_breakdown' => 'Ripartizione Geografica', + 'description' => 'Salve, questa e\' la sezione Statistiche. Presto saranno disponibili le descrizioni. Per adesso navigate usando il soprastante link delle categeorie ', + 'error' => 'Errore', + 'glossary' => 'Glossario', + 'hit_summary' => 'Sommario dei risultati', + 'legend' => 'Legenda', + 'pageviews' => 'Pagine viste', + 'pageviews_description' => 'Numero totale di pagine che i visitatori hanno visto sul tuo sito', + 'reports' => 'Report', + 'reports_categories' => 'Categorie dei Report', + 'reports_statistics' => 'Statistiche dei Report', + 'reports_status' => 'Stato dei Report', + 'report_punchcard' => 'Report Temporale', + 'report_stats' => 'Statistiche del Report', + 'stats_not_setup' => 'Statistiche non configurate', + 'time_range_1' => '1 mese', + 'time_range_2' => '3 mesi', + 'time_range_3' => '6 mesi', + 'time_range_all' => 'Tutto', + 'unapproved' => 'Non Approvato', + 'unique_visitors' => 'Visitatori Unici', + 'unique_visitors_description' => 'Numero di individui diversi che visitano il sito; gli Utenti Unici sono determinati tramite i cookie. Se il visitatore avesse disabilitato i cookie, sara\' identificato con metodo euristico in base alla combinazione di indirizzo IP, risoluzione schermo, browser usato, plugin, sistema operativo, ecc', + 'unverified' => 'Non Verificato', + 'verified' => 'Verificato', + 'visitor_summary' => 'Riassunto Visitatore', + 'visits' => 'Visite', + 'visits_description' => 'Una visita e\' una sessione di navigazione fatta sul sito da un utente unico in cui la successione delle pagine non abbia intervalli di pausa tra una richiesta e la seguente superiore a 30 minuti', +); diff --git a/application/i18n/it_IT/tooltips.php b/application/i18n/it_IT/tooltips.php new file mode 100755 index 0000000000..a68d643bfc --- /dev/null +++ b/application/i18n/it_IT/tooltips.php @@ -0,0 +1,97 @@ + array( + 'add_to_category' => 'Questo aggiunge la segnalazione a categorie aggiuntive. Se selezioni "Categoria 1" qui e la segnalazione è nella "Categoria 2", avrà sia "Categoria 1" che "Categoria 2".', + 'approve' => 'Approva una segnalazione o no. Se approvata, sarà visibile pubblicamente.', + 'assign_badge' => 'SaraI abilitato ad assegnare un badge per l\'utente di attivazione. Scegli il badge che viene assegnato qui.', + 'between_times' => 'Questa è una gamma di ore e/o minuti tra due orari nel formato 24 ore. Se inserisci un momento precedente nel secondo campo, verrà capovolto con il primo. Questi tempi devono essere all\'interno di un singolo giorno. Inoltre, questa volta viene confrontato con il tempo che hai configurato sul tuo sito nelle impostazioni del sito e non necessariamente il fuso orario dell\'utente che interagisce con la tua distribuzione. Lascia questo a da 00:00 a 00:00 per ignorare questo qualificatore.', + 'category' => 'Se si desidera attivare i trigger solo quando si utilizza una determinata categoria, è possibile impostarli qui. Ciò consentirà che un trigger venga attivato solo se viene usata una delle categorie. Per esempio, se si seleziona Categoria 1 e Categoria 2 qui e un report è presentato utilizzando Categoria 2 e Categoria 3, esso passerà il test.', + 'days_of_the_week' => 'Se queste azioni si verificano in determinati giorni della settimana, qui prefissati. Ricorda che il giorno è determinato dal fuso orario configurato nella tua distribuzione. Premere Shift, un comando o controllo per la selezione multipla del giorno.', + 'email_body' => 'Corpo della email che sarà inviata.', + 'email_subject' => 'Oggetto della mail che sarà inviata.', + 'feed_id' => 'La parte dei feed può essere di tutti i feed o di uno specifico feed. Se si vuole uno solo come specifico feed, attivare un trigger, selezionandolo qui. In caso contrario, lasciare questa opzione come "tutti"', + 'from' => 'Nome utente Twitter dell\'autore (o più nomi utente separati da virgole). Se si desidera attivare i trigger solo per i messaggi Twitter da un particolare utente, inserire il suo nome utente qui (non includendo @)', + 'keywords' => 'Puoi scegliere di lasciare questo senza valore se non vuoi controllare parole chiave ulteriori. Se aggiungi parole qui, è necessario separarle con una virgola (,). Ad esempio, se si desidera attivare un trigger quando qualcuno parla di "amore" o "pace" nel messaggio, vorrai aggiungere "amore, pace" nella casella delle parole chiave.', + 'location' => 'Si può selezionare qualsiasi punto o una posizione specifica. Se si seleziona una posizione specifica, vi verrà chiesto di disegnare un riquadro intorno all\'area che qualifica l\'azione. Ad esempio, se si desidera che questo trigger venga attivato quando qualcuno inserisce un report in Brasile, si selezionerà "area specifica" e quindi si disegnerà la casella in Brasile. È possibile realizzare queste caselle piccole o grandi come si preferisce. È anche possibile disegnare caselle multiple.', + 'on_specific_count' => 'Questo qualificatore attiverà il trigger sul conteggio N-esimo sia per l\'intera base utenti collettiva, sia per ogni singolo utente. Lasciare vuoto per ignorarlo.', + 'report_title' => 'Titolo predefinito da aggiungere al report.', + 'response' => 'Se tutte i qualificatori di cui sopra sono passati, il trigger avvierà una risposta. Questo può verificarsi sia da approvazione di un report, che da email di un utente. Selezionare la risposta qui, attivando opzioni aggiuntive per le risposte specifiche.', + 'send_to' => 'Se si seleziona "User Trigger", l\'e-mail verrà inviata all\'utente che ha eseguito l\'azione. Se si seleziona il pulsante di opzione accanto alla casella di input, si sarà in grado di inserire un indirizzo email personalizzato. Questo è utile se si sta configurando trigger per informare le persone, quando in alcune parti della mappa si stanno vedendo i report, con spunta o qualche altra attività.', + 'specific_days' => 'È possibile selezionare più giorni qui. Le date sono determinate dalle impostazioni di fuso orario della tua distribuzione. Per impostazione predefinita di tutte le date, non selezionare alcuna data.', + 'trigger' => 'Il trigger è il componente principale di configurazione della tua Action Triggers. Ciò determina dove tu desideri che accada qualcosa quando qualcuno invia un report, esegue un check-in, ecc. Sarai in grado di filtrare le risposte a queste azioni dopo averne selezionata una.', + 'user' => 'L\'utente può essere chiunque o un utente specifico. Se si vogliono solo determinati utenti ad attivare un trigger, si selezionano qui. In caso contrario, se si vuole, lasciare questo come "qualcuno", in quanto la maggior parte dei trigger sono impostati per tutti gli utenti che interagiscono con il sistema', + 'verify' => 'Contrassegna una segnalazione come verificata o no.', + ) , + 'change_picture' => 'Le pagine di profilo di questo sito utilizzano Gravatar. Cliccando sull\'immagine, sarete indirizzati sul sito Gravatar in cui è possibile cambiare l\'immagine del profilo.', + 'default_value' => 'Separare ogni valore con una virgola. Esempio: valore1,valore2.', + 'radio_choices' => 'Separare ogni valore con una virgola. Esempio: valore1,valore2. Nel caso in cui tu voglia impostare un valore predefinito, concludi la tua lista delle opzioni con :: Esempio: Se vuoi mettere "valore3" come predefinito, dovrai mettere valore1,valore2,valore3::valore3', + 'dropdown_choices' => 'Separa ogni scelta con una virgola, esempio: Scelta 1, Scelta 2 etc.', + 'private_to' => 'Comincia a scrivere per visualizzare i membri.', + 'private_subject' => 'Oggetto messaggio privato.', + 'private_message' => 'Messaggio Privato', + 'profile_color' => 'Puoi scegliere un colore che verrà visualizzato sotto l\'immagine profilo del tuo profilo pubblico. Questo colore sarà anche quello del punto che verrà visualizzato per le tue selezioni.', + 'profile_email' => 'Il tuo indirizzo email', + 'profile_name' => 'Questo è uno dei modi in cui sarai riconosciuto nel sito. Ricorda che è pubblico!', + 'profile_new_password' => 'Se selezionata, questa sarà la tua nuova password. Lascia il campo vuoto se vuoi tenere la tua password corrente.', + 'profile_new_users_password' => 'Questa è una richiesta quando viene creato un nuovo utente e sarà la password degli utenti. Dovresti informare il tuo nuovo utente di cambiare la password dopo essersi connesso per la prima volta.', + 'profile_notify' => 'Seleziona SI\' per essere avvisato via email quando nuove segnalazioni o commenti vengono inviati al sito.', + 'profile_password' => 'La tua password. Lascia il campo in bianco se non vuoi modificare la password corrente.', + 'profile_public' => 'Il tuo profilo può essere visto da chiunque su Internet se selezioni questa opzione. Questo è anche il modo più facile per fare vedere le segnalazioni che hai inviato, le tue selezioni, i tuoi badges, etc. Tutto in una pagina.', + 'profile_public_url' => 'Questo è l\'indirizzo dove si trova il tuo profilo pubblico.', + 'profile_username' => 'Il tuo nome utente non può essere cambiato.', + 'settings_access_level' => 'I livelli di accesso vengono usati per limitare l\'accesso ai dati dei campi modulo personalizzati. Livelli di accesso più alti possono accedere ai campi da livelli più bassi. Superadmin ha il più alto livello di accesso (100). I dati pubblici sono visualizzati al livello di accesso più basso (0). I membri hanno livello di accesso 10. Admin ha livello di accesso a 90 per impostazione predefinita.', + 'settings_alert_email' => 'Questo è l\'indirizzo email che verrà utilizzato per inviare gli alert.', + 'settings_allow_alerts' => 'Permette agli utenti di iscriversi per gli avvisi via web.', + 'settings_allow_clustering' => 'Permetti di raggruppare segnalazioni simili in un unico punto sulla mappa', + 'settings_allow_comments' => 'Permetti agli utenti di commentare le segnalazioni sul sito pubblico', + 'settings_allow_feed' => 'Permetti di visualizzare i Feed RSS di notizie sul sito pubblico', + 'settings_allow_feed_category' => 'Questo permette di creare una nuova categoria dai feed RSS.', + 'settings_allow_reports' => 'Permetti agli utenti di inviare informazioni attraverso un modulo presente sul sito.', + 'settings_api_default_record_limit' => 'Numero di record di default per singola richiesta API', + 'settings_api_max_record_limit' => 'Massimo numero di record per singola richiesta API', + 'settings_api_max_requests_per_ip' => 'Massimo numero di richieste API per singolo IP', + 'settings_banner' => 'Il banner compare in alto nella parte front end del sito web se il tema che si sta usando lo supporta. La dimensione consigliata dipende dal tema in uso. Tenete a mente che andrà a sostituire il titolo del sito e lo slogan in cima alla pagina.', + 'settings_blocks_per_row' => 'Numero di Blocchi visualizzati per ogni riga.', + 'settings_cache_pages' => 'Attiva o disattiva il caching delle pagine. Se attivato le pagine si caricano più velocemente. E\' consigliato per i siti con parecchio traffico. **Ricorda che le segnalazioni compariranno sul sito pubblico con la frequenza che specifichi qui sotto (Durata Cache)', + 'settings_cache_pages_lifetime' => 'Definisce la durata della cache.', + 'settings_checkins' => 'Questo parametro abilita i check-in sul tuo dislocamento. Questo e\' un tipo di report semplificato che non sara\' moderato prima di andare online nella homepage e richiede che il tuo sito sia configurato di conseguenza. Prima di abilitarlo assicuratevi che il parametro del fuso orario sia UTC e che il vostro tema supporti i check-in. Abilitandolo, solo i temi che supportano i check-in saranno disponibili tra gli addon/temi configurabili.', + 'settings_configure_map' => 'Posiziona la mappa in modo da inquadrare una località specifica', + 'settings_default_category_colors' => 'Colore di default per le categorie', + 'settings_default_category_icons' => 'Seleziona una sola icona per tutte le categorie sul sito.', + 'settings_default_location' => 'Nazione a cui fa riferimento il sito', + 'settings_display_contact' => 'Visualizza il tab \'Contatti\' nel menu del sito pubblico', + 'settings_display_howtohelp' => 'Visualizza il tab \'Aiuto\' nel menu del sito pubblico', + 'settings_display_items_per_page' => 'Numero di segnalazioni visualizzate per pagina nel sito pubblico', + 'settings_display_items_per_page_admin' => 'Numero di segnalazioni visualizzate per pagina nella sezione amministrazione del sito', + 'settings_flsms_download' => 'Hub messaggi sms in entrata', + 'settings_flsms_synchronize' => 'Sincronizza l\'hub messaggi sms in entrata con la piattaforma Ushahidi', + 'settings_flsms_text_1' => 'Numeri di telefono abilitati a ricevere SMS', + 'settings_google_analytics' => 'Attiva statistiche avanzate sulle visite al sito', + 'settings_locale' => 'Seleziona la lingua da usare nel sito', + 'settings_manually_approve_users' => 'Se si imposta questa opzione su yes, è necessario approvare ogni singolo utente che crea un account sul tuo sito, assegnando i loro ruoli (es. Member, Admin, Superadmin).', + 'settings_map_provider' => 'Seleziona che tipo di mappa viene visualizzata sul sito', + 'settings_map_timeline' => 'Questo mostra la sequenza temporale in base alla data e l\'ora delle segnalazioni inviate', + 'settings_private_deployment' => 'Porre questo valore a VERO o SI rendera\' privato il tuo dislocamento, in tal modo solo gli account da te definiti avranno accesso al dislocamento. ', + 'settings_require_email_confirmation' => 'Agli utenti saranno inviate email con un link di conferma da cliccare prima di essere autorizzati ad accedere al sistema se questo è impostato su yes. Se si attiva questa opzione, quando la distribuzione accetta gli utenti, ad essi verrà chiesto di confermare il proprio account prima che gli venga permesso di continuare ad usarlo.', + 'settings_server_host' => 'Host (server) sul quale vengono ricevute le mail di segnalazione', + 'settings_server_password' => 'Password per l\'account email che riceve le segnalazioni', + 'settings_server_port' => 'Questa informazione è necessaria per ricevere email', + 'settings_server_ssl_support' => 'Questa informazione è necessaria per stabilire una connessione sicura con il server', + 'settings_server_type' => 'Questa informazione è necessaria per ricevere emails dal server', + 'settings_server_username' => 'Indirizzo email che riceve le segnalazioni', + 'settings_share_site_stats' => 'Le statistiche sulle visite vengono salvate su un server controllato da Ushahidi. Se abiliti questa opzione avrai accesso alle statistiche direttamente dal tuo pannello di amministrazione. Se la disabiliti il sistema smetterà di raccogliere le statistiche e non potrai recuperare le statistiche relative al periodo durante il quale l\'opzione è stata disabilitata.', + 'settings_site_copyright_statement' => 'E\' sempre bene specificare i diritti di copyright per ogni tua opera. Per aiutarti nell\'individuare quale licenza faccia al caso tuo, vista http://creativecommons.org/choose/ ', + 'settings_site_email' => 'Questo è l\'indirizzo email che riceverà le segnalazioni via email e i messaggi dal modulo contatti', + 'settings_site_message' => 'Questo è il testo che appare sopra alla mappa nella home. E\' utile per dare importanti informazioni ai visitatori. Per rimuovere il box sopra la mappa è sufficiente lasciare in bianco questo testo.', + 'settings_site_name' => 'Questo è il nome del sito, appare in alto nelle pagine del sito.', + 'settings_site_submit_report_message' => 'Questo è un messaggio che verrà visualizzato sulla pagina di invio del rapporto. Questo è un bene per incomprensioni o ulteriori istruzioni per i tuoi visitatori che stanno facendo un report.', + 'settings_site_tagline' => 'Spiega in poche parole di che cosa si occupa il tuo sito.', + 'settings_site_timezone' => 'Questo è il fuso orario in cui il tuo sito opera. Ha un effetto su qualsiasi azione tu abbia configurato che utilizzi l\'ora o la data, così come sull\'orario di riferimento per i report sia per gli utenti che per gli amministratori.', + 'settings_twitter_configuration' => 'Definisci l\'hashtag che verrà utilizzato nei post su twitter.', + 'feed_geolocation_user' => 'Se volete eseguire la geocodifica dei feed che ricevete, create un utente su http://www.geonames.org, abilitare il servizio web libero e inseritelo qui. Lasciare vuoto per disabilitare questa funzione

Attenzione ai limiti di utilizzo!', +); diff --git a/application/i18n/it_IT/ui_admin.php b/application/i18n/it_IT/ui_admin.php new file mode 100755 index 0000000000..ed60a04cdb --- /dev/null +++ b/application/i18n/it_IT/ui_admin.php @@ -0,0 +1,329 @@ + 'Accesso negato. Le credenziali che hai inserito non sono corrette oppure la tua richiesta è stata rifiutata.', + 'access_denied_others' => 'Accesso negato. La richiesta era corretta ma è stata bloccata per dei limiti di accesso (forse di tempo). Riprova più tardi.', + 'access_level' => 'Livello di Accesso', + 'actions' => 'Azioni', + 'add_to_category' => 'Aggiungi alla categoria', + 'added' => 'aggiunto', + 'added_edited' => 'aggiunta/modificata', + 'addons' => 'Addons', + 'admin_role' => 'Admin', + 'alerts' => 'Notifiche', + 'alerts_received' => 'Notifiche Ricevuti', + 'all' => 'Tutti', + 'am' => 'AM', + 'anonymous' => 'Anonimo', + 'anyone_role' => 'Tutti', + 'anywhere' => 'Ovunque', + 'api_banned' => 'API Bloccate', + 'api_logs' => 'Logs della API', + 'api_settings' => 'Impostazioni API', + 'api_unban' => 'Rimuovi Ban', + 'api_unban_all' => 'Rimuovi tutti i Ban', + 'approved' => 'approvato', + 'approve_auto' => 'Approvazione automatica', + 'approve_manual' => 'Approvazione manuale', + 'archived' => 'Archiviato', + 'are_you_sure_you_want_to' => 'Sei sicuro che vuoi', + 'are_you_sure_you_want_to_delete_this_item' => 'Sei sicuro di voler cancellare questo elemento?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Se sicuro di voler cancellare questa foto?', + 'are_you_sure_you_want_to_switch_forms' => 'Sei sicuro di voler scambiare i form?', + 'assign' => 'Assegna', + 'assignments' => 'Assegnazioni', + 'assign_badge' => 'Assegna Badge', + 'author' => 'Autore', + 'author_email' => 'Email dell\'autore', + 'back' => 'Indietro', + 'banip_action' => 'IP Bloccato', + 'between_times' => 'Tra le ore', + 'blocks' => 'Blocchi', + 'body' => 'Corpo', + 'cancel' => 'Annulla', + 'categories' => 'Categorie', + 'chart_display_error' => 'Errore nella visualizzazione del grafico', + 'check_message_valid' => 'Verifica che il messaggio sia valido', + 'check_number' => 'Verifica che il numero sia valido', + 'check_sms_settings' => 'Verifica le impostazioni SMS', + 'checkin_details' => 'Dettagli Checkin', + 'checkins' => 'Chechins', + 'cities_loaded' => 'Città caricate', + 'code' => 'codice', + 'code_out_of_sync' => 'Codice versione non allineato', + 'color' => 'Colore', + 'comments' => 'Commenti', + 'confirmation_code' => 'Il tuo codice di conferma per le notifiche è:', + 'confirm_msg' => 'L\'utente è stato', + 'count' => 'Numero', + 'country_not_found' => 'Nazione non trovata', + 'created_edited' => 'creato/modificato', + 'create_report' => 'Crea una segnalazione', + 'critical_upgrade' => 'Aggiornamento Critico', + 'csv' => 'CSV', + 'currently_active' => 'Attualmente Attivi', + 'currently_inactive' => 'Attualmente non Attivo', + 'custom_forms_insufficient_permissions' => 'Non hai abbastanza permessi per modificare i campi personalizzati.', + 'daily' => 'Giornaliero', + 'dashboard' => 'Dashboard', + 'database' => 'database', + 'date_time' => 'Data & ora', + 'date_added' => 'Data Aggiunta', + 'date_modified' => 'Data Modifica', + 'days_of_the_week' => 'Giorno della settimana', + 'db_out_of_sync' => 'Cersione del database non allineata', + 'deleted' => 'cancellato', + 'delete_action' => 'Cancella', + 'delete_all' => 'Cancella tutti i rapporti', + 'delete_badge' => 'Cancella Badge', + 'demo' => 'Demo', + 'description' => 'Descrizione', + 'disabled' => 'Disabilitato', + 'divider_start_field' => 'Inizio divisore', + 'divider_end_field' => 'Fine divisore', + 'divider_class' => 'div class', + 'download_reports' => 'Scarica segnalazioni', + 'dropdown_choices' => 'Scelte Lista', + 'edited' => 'MODIFICATO', + 'edited_by' => 'Editato da', + 'edit_action' => 'Modifica', + 'edit_log' => 'Log delle modifiche', + 'email' => 'Email', + 'entire_collective' => 'Intero collettivo', + 'error_geocoding' => 'Errore HTTP nel geocoding', + 'error_imap' => 'La libreria PHP IMAP non è istallata', + 'error_twitter' => 'Credenziali errate', + 'error_msg' => 'Errore', + 'error_post_incident' => 'Errore, non è stato possibile inviare la segnalazione', + 'every_six_hours' => 'Ogni sei ore', + 'every_twelve_hours' => 'Ogni dodici ore', + 'experimental' => 'Sperimentale', + 'faqs' => 'FAQ', + 'feed' => 'feed', + 'feedback' => 'feedback', + 'feeds' => 'feed', + 'field_choices' => 'Elenco delle Scelte', + 'field_default' => 'Valore di default', + 'field_datatype' => 'Tipo Dato', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Segna', + 'field_datatype_numeric' => 'Numerico', + 'field_datatype_text' => 'Testo Libero', + 'field_height' => 'Altezza (in righe)', + 'field_hidden' => 'Campo nascosto', + 'field_maxlength' => 'Numero massimo di caratteri', + 'field_name' => 'Nome del campo', + 'field_toggle' => 'Attiva', + 'field_toggle_no' => 'No', + 'field_toggle_yes_close' => 'Si,Chiuso per default', + 'field_toggle_yes_open' => 'Si,Aperto per default', + 'file_not_found_upload' => 'Non trovo il file caricato', + 'file_open_error' => 'Non sono riuscito ad aprire il file in lettura', + 'form_not_exists' => 'Il modulo non esiste!', + 'forum' => 'Forum', + 'free_text_field' => 'Campo di testo libero', + 'date_field' => 'Campo Data', + 'radio_field' => 'Campo Radio Button', + 'checkbox_field' => 'Campi Checkbox', + 'dropdown_field' => 'Campo Lista', + 'from' => 'Da', + 'from_date' => 'Da', + 'geonames_timeout' => 'Time out sulla richiesta dei geonames', + 'get_help' => 'Aiuto', + 'get_more_themes' => 'Scarica altri Temi', + 'get_more_plugins' => 'Scarica altri plugin', + 'header_actions' => 'Azioni', + 'header_add_edit' => 'Aggiungi/Modifica', + 'header_email' => 'Email', + 'header_manage_users' => 'Gestione utenti', + 'header_role' => 'Ruolo', + 'header_user' => 'Utente', + 'help' => 'aiuto', + 'hourly' => 'Ogni ora', + 'incident_feed' => 'Feed delle segnalazioni per', + 'installer_info' => 'La cartella dell\'installer esiste ancora. Cancellare la cartella dell\'installer. E\' un potenziale rischio per la sicurezza.', + 'instance' => 'Istanza', + 'instances' => 'Istanze', + 'instance_details' => 'Dettagli dell\'istanza', + 'invalid_parameter' => 'Parametro non valido', + 'ip_address' => 'Indirizzo IP', + 'is_date' => 'E\' un campo data?', + 'ispublic_visible' => 'Chi Può vedere le Risposte', + 'ispublic_submit' => 'Chi Può Inviare le Rispote', + 'keyword' => 'Parola chiave', + 'keywords' => 'Parole chiave:', + 'label_email' => 'Indirizzo email:', + 'label_full_name' => 'Nome completo:', + 'label_password' => 'Password:', + 'label_role' => 'Ruolo:', + 'label_username' => 'Nome utente:', + 'layers' => 'Layer', + 'login_role' => 'Moderatore', + 'logout' => 'Esci', + 'logs' => 'Logs', + 'manage' => 'Gestione', + 'manage_roles' => 'Gestione ruoli e permessi', + 'manage_users' => 'Visualizza gli utenti', + 'manage_users_edit' => 'Aggiungi/Modifica utenti', + 'manage_public_listing' => 'Amministrazione lista pubblica', + 'mark_as' => 'Contrassegna come', + 'marked_as_not_spam' => 'segnato come non spam', + 'marked_as_spam' => 'segnato come spam', + 'match_no_documents' => 'non ha ottenuto alcun risultato', + 'message' => 'Messaggio', + 'messages' => 'Messaggi', + 'messages_laconica' => 'Messaggi Laconica', + 'messages_twitter' => 'Messaggi twitter', + 'message_sent' => 'Il tuo messaggio è stato inviato', + 'mhi' => 'MHI', + 'minute' => 'Minuto', + 'minutes' => 'Minuti', + 'missing_parameter' => 'Parametro mancante', + 'moderator' => 'Moderatore', + 'modified' => 'modificato', + 'modify_timezone' => 'Modifica Impostazioni Timezone', + 'move_down_action' => 'sposta in giù', + 'move_up_action' => 'sposta in su', + 'multiple_hosted_instances' => 'Istallazioni multiple sul server', + 'my_alerts' => 'I Miei Avvisi', + 'my_checkins' => 'I miei checkin', + 'my_profile' => 'Il mio profilo', + 'my_reports' => 'I Miei Report', + 'my_votes' => 'Voti espressi', + 'my_votes_up' => 'Positivo', + 'my_votes_down' => 'Negativo', + 'name' => 'Nome', + 'new_alert' => 'Crea Nuovo Avviso', + 'new_private' => 'Crea Nuovo Messaggio', + 'new_password' => 'Nuova password', + 'no' => 'N.', + 'none_category_explanation' => 'Questa è una categoria speciale, che gli utenti non vedranno nel form di inserimento segnalazioni. Questo serve per lasciare le segnalazioni senza categoria, come risultato della cancellazione di una categoria.', + 'notification' => 'Avviso', + 'not_case_sensitive' => 'Maiuscolo o minuscolo è indifferente', + 'not_found' => 'Non Trovato', + 'no_data' => 'Nessun dato. Non ci sono dati da visualizzare.', + 'no_error' => 'Nessun errore', + 'no_result_display_msg' => 'Nessun risultato da visualizzare!', + 'of' => 'su', + 'on_specific_count' => 'Su conto specifico', + 'openids' => 'OpenID\'s', + 'page' => 'pagina', + 'pages' => 'pagine', + 'page_not_found' => 'Pagina non trovata', + 'page_not_found_message_with_contact' => 'La pagina che cercavi non è stata trovata.

Hai cliccato su un link da qualche parte su questo sito?
Se hai raggiunto questo link da una pagina di questo sito, contattaci per correggere l\'errore.

Hai cliccato su un link su un altro sito?
I link sui siti esterni possono essere non aggiornati o contenere errori. Scrivici da quale sito hai raggiunto questa pagina, così possiamo provare a contattare l\'altro sito per sistemare il problema.

Hai scritto l\'URL?
Puoi averlo scritto male. Verifica di averlo scritto correttamente, con le maiuscole corrette, ecc...

', + 'page_not_found_message' => 'Spiacnete, la pagina che stai cercando di visualizzare non è qui.', + 'parameters_used' => 'Parametri utilizzati', + 'password' => 'Password', + 'password_reset' => 'Password resettata', + 'password_reset_message_line_1' => 'Gentile', + 'password_reset_message_line_2' => 'Abbiamo ricevuto la richiesta di resettare la password per', + 'password_reset_message_line_3' => 'Per cambiare la tua password clicca sul link qui sotto ( o copialo nel browser ) ', + 'password_reset_message_line_4' => 'Come hai richiesto, la tua password è stata resettata. I tuoi nuovi dati di accesso sono i seguenti:', + 'password_reset_subject' => 'Password per Ushahidi resettata', + 'phone' => 'Telefono', + 'please_select' => 'Selezionare', + 'pm' => 'PM', + 'post_method_not_used' => 'I dati non sono stati inviati via POST', + 'preview' => 'Anteprima', + 'private_message' => 'Messaggio', + 'private_messages' => 'Messaggio Privato', + 'private_sent' => 'Messaggio Privato Inviato', + 'private_subject' => 'Oggetto', + 'private_to' => 'A', + 'public_listing' => 'Liste pubbliche', + 'qualifiers' => 'Qualificatori', + 'read' => 'letto/i', + 'relevance' => 'Rilevanza', + 'report_title' => 'Titolo Report', + 'report_date' => 'Data della segnalazione', + 'reporters' => 'Segnalatori', + 'reporter_levels' => 'Livelli dei reporters', + 'reports' => 'Segnalazioni', + 'reputation' => 'Punteggio Reputazione', + 'required' => 'Obbligatorio', + 'reset' => 'Resetta', + 'response' => 'Risposta', + 'results' => 'Risultati', + 'revoke' => 'Revoca', + 'riverid_exists_admin' => 'Questa email ha già un account amministrato da CrowdmapID. L\'utente dovrà utilizzare la propria password di Crowdmap per accedere.', + 'save_settings' => 'Salva Impostazioni', + 'search' => 'Cerca', + 'search_reports' => 'Ricerca Segnalazioni', + 'searching_for' => 'sto cercando:', + 'security_info_encryption_key' => 'La chiave crittografica è ancora impostata al suo valore di default. Per aumentare la sicurezza, deve essere cambiata', + 'security_info_https' => 'Il sito sta funzionando su protocollo HTTP. Per aumentare la sicurezza occorre impostare l\'utilizzo del protocollo HTTPS.', + 'security_info_instructions' => 'Le istruzioni sono presenti nel wiki:', + 'select_download_format' => 'Seleziona il formato che desideri usare per le segnalazioni scaricate:-', + 'select_field_type' => '--- scegli un tipo di campo ---', + 'select_item' => 'Seleziona un elemento', + 'select_trigger_before_response' => 'Devi selezionare un Trigger prima di selezionare una Risposta', + 'select_trigger_before_qualifiers' => 'Devi selezionare un trigger prima di definire qualificatori.', + 'sender' => 'Mittente', + 'send_to' => 'Invia A', + 'sent_from_website' => 'Questo messaggio è stato inviato dal tuo sito ', + 'server_time' => 'Ora del server', + 'settings' => 'Impostazioni', + 'showing_page' => 'Pagina visualizzata', + 'showing_results' => 'Visualizzazione risultati', + 'shown' => 'visualizzato', + 'special_category' => 'Categoria Speciale', + 'special_category_explanation' => 'Questa è una categoria speciale, che gli utenti non vedono nel form di segnalazione. E\' usata insieme alla caratteristica "Segnalazioni Fidate"', + 'specific_area' => 'Area Specifica', + 'state' => 'Stato', + 'statistics' => 'Statistiche', + 'stats' => 'Statistiche', + 'stats_collection_error' => 'Si è verificato un errore nella raccolta delle statistiche! E\' possibile che il server di statistiche sia spento oppure la tua istallazione di Ushahidi non è configurata cvorrettamente. Riprova tra poco per vedere se il serve è in funzione oppure no. Per resettare manualmente le tue statistiche modifica stat_id ( settalo a null ) e stat_key (settalo a 0) nelle tabella impostazioni (settings) del database. ATTENZIONE: se lo fai perderai le tue statistiche!', + 'stats_collection_error_short' => 'Errore nella raccolta delle statistiche!', + 'specific_days' => 'Giorni Specifici', + 'subject' => 'Oggetto', + 'superadmin_role' => 'Super Amministratore', + 'task_performed' => 'Operazione eseguita', + 'text_field' => 'Campo testo', + 'theme_name' => 'Nome', + 'title' => 'Gestione utenti', + 'timeout' => 'Errore timeout', + 'to' => 'a', + 'total_records' => 'Totale record', + 'to_date' => 'a', + 'translate_reports' => 'Traduci segnalazioni', + 'trigger' => 'Trigger', + 'triggering_user' => 'Utente che attiva il trigger', + 'triggers' => 'Trigger', + 'unapproved' => 'Non approvato', + 'unknown' => 'Sconosciuto', + 'unknown_failure' => 'Errore sconosciuto', + 'unread' => 'non letto', + 'unsubscribe_message' => 'Non riceverai più avvisi da', + 'update_link' => 'Clicca qui per avviare l\'aggiornamento', + 'upgrade_ushahidi' => 'Aggiornamento Ushahidi', + 'upgrade_ushahidi_status' => 'Stato dell\'aggiornamento di Ushahidi', + 'upload_reports' => 'Caricamento segnalazioni', + 'user' => 'Utente', + 'users' => 'Utenti', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificato/Non Verificato', + 'verify_unverify' => 'Verifica/Non Verificare', + 'version' => 'Versione', + 'version_available' => 'è disponibile l\'aggiornamento.', + 'video_encoding' => 'Codifica Video', + 'view_private' => 'Messaggi Privati', + 'view_site' => 'Mostra il sito', + 'view_report' => 'Visualizza Report', + 'welcome' => 'Benvenuto,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Sì', + 'your_search_for' => 'La tua ricerca per', + 'delete_all_instructions' => 'Facendo clic sul pulsante qui sotto eliminerete TUTTI i rapporti sul database. Si consiglia procedere con cautela in quanto questa operazione non potrà essere annullata.', + 'delete_all_backup' => 'Si consiglia un backup del database prima di procedere', + 'delete_all_button' => 'Sono sicuro di voler cancellare %s rapporto(i) dal database.', + 'delete_all_confirm' => 'Sei sicuro di voler eliminare tutti i rapporti?', + 'delete_all_no_reports' => 'Non ci sono rapporti da cancellare.', + 'user_no_logins' => 'Numero di accessi', + 'user_last_login' => 'Ultimo accesso', + 'user_confirmed_account' => 'Account confermato?', +); diff --git a/application/i18n/it_IT/ui_main.php b/application/i18n/it_IT/ui_main.php new file mode 100755 index 0000000000..d8b6866a2f --- /dev/null +++ b/application/i18n/it_IT/ui_main.php @@ -0,0 +1,627 @@ + 'Chi siamo', + 'access' => 'Accesso', + 'access_limits' => 'Limiti di accesso', + 'account_name' => 'Nome account', + 'actions' => 'Azioni', + 'action_confirm' => 'Questa azione non è reversibile. Sei sicuro di procedere?', + 'activate' => 'Attiva', + 'active' => 'Attivo', + 'add' => 'Aggiungi', + 'added_by' => 'Aggiunto da', + 'additional_data' => 'Dati addizionali', + 'additional_reports' => 'Altre segnalazioni', + 'add_edit' => 'Aggiungi/modifica', + 'add_field' => 'Aggiungi un campo', + 'add_language' => 'Aggiungi altre lingue', + 'add_new' => 'Aggiungi nuovo elemento', + 'add_new_category' => 'Aggiungi nuova categoria', + 'add_translation' => 'Aggiungi traduzione', + 'admin' => 'Amministrazione', + 'alerts' => 'Ricevi Notifiche', + 'alerts_alert_me' => 'Avvisami se viene inviata una segnalazione nei dintorni di:', + 'alerts_btn_send' => 'Registra la mia notifica', + 'alerts_email' => 'Indirizzo email:', + 'alerts_enter_email' => 'Inserisci indirizzo email', + 'alerts_enter_mobile' => 'Inserisci il numero di cellulare, completo di codice paese', + 'alerts_get' => 'Ricevi notifiche', + 'alert_has_been' => 'L\'avveso è stato', + 'alerts_mobile_phone' => 'Numero di cellulare:', + 'alerts_place_spot' => 'Oppure clicca in un punto della mappa e ti notificheremo le segnalazioni inviate relative a un\'area nel raggio di 20 chilometri.', + 'alerts_place_spot2' => 'se non trovi la località, per favore clicca sulla mappa per localizzare il punto esatto ', + 'alerts_rss' => 'Feed RSS (copia la URL qui sotto)', + 'alerts_select_city' => 'Seleziona una città', + 'alerts_step1_select_city' => 'Primo passo: Seleziona città o area geografica:', + 'alerts_step2_send_alerts' => 'Secondo passo: Invia notifiche al mio:', + 'alerts_step3_select_catgories' => 'Terzo passo (opzionale): Seleziona categorie', + 'alert_confirm_previous' => 'Conferma una precedente richiesta di notifica', + 'alert_saved' => 'La tua notifica è stata registrata!', + 'all' => 'Tutti', + 'allowed' => 'Permesso', + 'allowed_tags' => 'Tag HTML permessi: "%s".', + 'allowed_iframes' => 'Gli iFrames sono permessi solo da: %s.', + 'all_categories' => 'Tutte le categorie', + 'all_time' => 'Tutto il tempo', + 'and' => 'e', + 'api' => 'API', + 'approve' => 'Approva', + 'approved' => 'Approvato', + 'approved_reports' => 'Segnalazioni approvate', + 'approve_this_report' => 'Approva questa segnalazione', + 'approximate' => 'Approssimativo', + 'archive' => 'Archivio', + 'archived' => 'Archiviato', + 'ascending' => 'Crescente', + 'at' => 'a', + 'author' => 'Autore', + 'auto_checkin' => 'Controllo automatico', + 'Auto' => 'Automatico', + 'avg_reports_per_day' => 'Media giornaliera segnalazioni', + 'awaiting_approval' => 'In attesa di approvazione', + 'awaiting_verification' => 'In attesa di verifica', + 'badge' => 'Badge', + 'badges' => 'Badges', + 'badge_image' => 'Immagine badge', + 'badge_image_upload_your_own' => 'Oppure puoi caricare una immagine badge.', + 'badge_pack' => 'Pacchetto badge', + 'badge_select' => 'Seleziona un badge', + 'blog' => 'Blog', + 'browse_profiles' => 'Esplora i Profili', + 'cancel' => 'Annulla', + 'categories' => 'Categorie', + 'category' => 'Categoria', + 'category_filter' => 'Filtro categorie', + 'category_has_been' => 'La categoria è stata', + 'category_name' => 'Nome categoria', + 'change_date_range' => 'Cambia Intervallo di Tempo', + 'change_password' => 'Cambia Password', + 'change_picture' => 'Modifica la mia immagine', + 'choose' => 'Scegli un', + 'choose_data_points' => 'Scegli i data points da scaricare', + 'choose_date_range' => 'Oppure scegli un intervallo di tempo', + 'choose_field_type' => 'Scegli il tipo di campo', + 'cleanurl' => 'URL pulite', + 'clear' => 'Pulisci', + 'clear_map' => 'Pulisci mappa', + 'close' => 'Chiudi', + 'clusters' => 'gruppi', + 'color' => 'Colore', + 'comment' => 'Commento', + 'comments' => 'Commenti', + 'comment_details' => 'Dettagli del commento', + 'configuration_saved' => 'Le tue impostazioni sono state salvate', + 'configure' => 'Configura', + 'confirm_email_successful' => 'Hai correttamente confermato il tuo indirizzo email! Accedi adesso.', + 'confirm_email_successful_and_approval' => 'Hai confermato con successo il tuo indirizzo e-mail! Un amministratore deve approvare il tuo account prima di poter effettuare il login', + 'confirm_email_failed' => 'Conferma dell\'email fallita! Puoi richiedere una nuova conferma di email qui sotto.', + 'contact' => 'Contattaci', + 'contact_code' => 'Codice di Sicurezza', + 'contact_email' => 'Il tuo indirizzo e-mail', + 'contact_message' => 'Messaggio', + 'contact_message_has_send' => 'Il tuo messaggio è stato inviato', + 'contact_name' => 'Il tuo nome', + 'contact_phone' => 'Il tuo numero di telefono', + 'contact_send' => 'Invia Messaggio', + 'contact_subject' => 'Oggetto del Messaggio', + 'copyright' => 'Copyright © 2010 Ushahidi.com. Tutti i diritti riservati.', + 'create' => 'Crea', + 'create_edit' => 'Crea/Modifca', + 'create_new' => 'Crea nuovo', + 'create_new_password' => 'Crea Nuova Password', + 'create_report' => 'Invia segnalazione', + 'credibility' => 'Attendibilità', + 'current_password' => 'Password corrente', + 'custom_fields' => 'Campi utente', + 'data' => 'Informazioni', + 'date' => 'Data', + 'date_format' => '(mm/gg/aaaa)', + 'date_time' => 'Data e ora', + 'day' => 'giorno', + 'Daily' => 'giornaliero', + 'deactivate' => 'Disattiva', + 'default_location_name' => 'Rome, Italy', + 'delete' => 'Cancella', + 'deleted' => 'Cancellato', + 'deletes' => 'Cancella', + 'delete_disabled' => 'Cancellazione non abilitata', + 'delete_last' => 'Elimina l\'ultimo', + 'delete_report' => 'Cancella segnalazione', + 'delete_selected' => 'Cancella selezionati', + 'delete_spam' => 'Cancella spam', + 'demo' => 'Demo', + 'description' => 'Descrizione', + 'descending' => 'Decrescente', + 'detailed_location_example' => 'Esempio: via Monte Pertica 30, Padova', + 'details' => 'Dettagli', + 'direct_report' => 'Segnalazione diretta', + 'disabled' => 'Disabilitato', + 'disapprove' => 'Nega approvazione', + 'download_reports' => 'Scarica segnalazioni', + 'download' => 'Download', + 'edit' => 'Modifica', + 'edit_form_fields' => 'Modifica i campi del modulo', + 'edit_report' => 'Modifica segnalazione', + 'email' => 'Indirizzo Email', + 'email_address' => 'Indirizzo email', + 'email_configuration' => 'Settaggi del mail server', + 'email_server_host' => 'Mail Server Host', + 'email_server_password' => 'Password per il mail server', + 'email_server_port' => 'Porta del mail server', + 'email_server_ssl_support' => 'Supporto SSL sul mail server', + 'email_server_type' => 'Tipo di mail server', + 'email_server_username' => 'Nome utente per il mail server', + 'email_settings_comment_0' => 'quindi le tue impostazioni devono essere associate a questo indirizzo email', + 'email_settings_comment_00' => 'Per ricevere segnalazioni via email inserisci le impostazioni email del tuo account email qui sotto. Nota che le email verranno ricevute dal tuo', + 'email_settings_comment_1' => 'Alcuni server richiedono un indirizzo email completo', + 'email_settings_comment_2' => 'Password dell\'account email', + 'email_settings_comment_3' => 'Porte più comuni:25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Esempi: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Esempi: pop3, imap', + 'email_settings_comment_6' => 'Abilita o disabilita la connessione SSL', + 'empty' => '---VUOTO---', + 'end_point' => 'a', + 'error' => 'Errore!', + 'example' => 'Esempio', + 'example_country' => 'Italy', + 'external_apps' => 'Applicazioni esterne', + 'external_video_link' => 'Collegamento a un video esterno', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Invia feedback', + 'feedback_reports' => 'Per favore inviaci un riscontro sulla tua esperienza mandando una email a', + 'feeds' => 'Feed', + 'feed_has_been' => 'Il feed è stato', + 'feed_items' => 'Elementi del feed', + 'feed_name' => 'Nome del feed', + 'feed_url' => 'URL del feed', + 'field_unused' => 'Campo non utilizzato', + 'file' => 'File', + 'file_over_max_allowed' => 'Il tuo file supera la dimensione massima consentita.', + 'filters' => 'Filtri', + 'filter_reports' => 'Filtra segnalazioni', + 'filter_reports_by' => 'Filtra segnalazioni per', + 'filter_reports_contain' => 'Filtra segnalazioni che contengono', + 'find' => 'Trova', + 'find_location' => 'Trova area geografica', + 'first_name' => 'Nome proprio', + 'force_run_scheduler' => 'Esegui ora tutte le operazioni pianificate', + 'forgot_password' => 'Dimenticato la password?', + 'form' => 'Modulo', + 'forms' => 'Moduli', + 'form_description' => 'Descrizione del modulo', + 'form_edit' => 'Modifica il modulo', + 'form_has_been' => 'Il modulo è stato', + 'form_title' => 'Titolo del modulo', + 'from' => 'Da', + 'full_name' => 'Nome completo', + 'geolocation_available' => 'GeoLocalizzazione disponibile', + 'geometry_color' => 'Colore', + 'geometry_comments' => 'Commenti', + 'geometry_label' => 'Etichetta', + 'geometry_strokewidth' => 'Larghezza riga', + 'go' => 'Vai', + 'hashtag' => 'Hashtag', + 'has_been' => 'è stato', + 'help' => 'Come aiutarci', + 'hidden' => 'Nascosto', + 'hide' => 'Nascondi', + 'hide_this_message' => 'Nascondi questo messaggio', + 'home' => 'Home', + 'Hourly' => 'ogni ora', + 'how_to_report' => 'Come inviare una segnalazione', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Usato per identificarti agli altri utenti sul sito', + 'image' => 'Immagine', + 'images' => 'Immagini', + 'image_icon' => 'Immagine/Icona', + 'inactive' => 'Non attivo', + 'inbox' => 'In arrivo', + 'incident' => 'Evento', + 'incidents_nearby' => 'Eventi nelle vicinanze', + 'incident_location' => 'Luogo dell\'evento', + 'include' => 'Includi', + 'include_categories' => 'Includi categorie', + 'include_custom_fields' => 'Includi campi utente', + 'include_description' => 'Includi descrizione', + 'include_detail' => 'Includi più dettagli possibile', + 'include_latitude' => 'Includi latitudine', + 'include_location_information' => 'Includi informazioni geografiche', + 'include_longitude' => 'Include longitudine', + 'include_personal_info' => 'Includi informazioni personali', + 'incoming_media' => 'Materiale multimediale in entrata', + 'information_evaluation' => 'Validazione delle informazioni', + 'input_location' => 'Inserisci la località esatta', + 'insufficient_role' => 'Il tuo accout non ha i permessi per accedere completamente. Contatta l\'amministratore.', + 'interval' => 'Intervallo', + 'in_response_to' => 'In risposta a', + 'ip_address' => 'Indirizzo IP', + 'is_this_your_profile' => 'Questo è il tuo profilo?', + 'item' => 'elemento', + 'items' => 'elementi', + 'item_details' => 'dettagli dell\'elemento', + 'item_title' => 'titolo dell\'elemento', + 'key' => 'Chiave', + 'keywords' => 'Parole chiave', + 'kml_kmz_file' => 'File KMZ/KML', + 'kml_kmz_upload' => 'Carica file KMZ/KML', + 'kml_url' => 'URL del file KML', + 'laconica' => 'Laconica', + 'language' => 'Lingua', + 'last' => 'Ultimo', + 'last_month' => 'Mese scorso', + 'last_name' => 'Cognome', + 'last_year' => 'Anno scorso', + 'latitude' => 'Latitudine', + 'layers' => 'Layer', + 'layers_filter' => 'Altri layer', + 'layer_has_been' => 'Il layer è stato', + 'layer_name' => 'Nome del layer', + 'layer_url' => 'URL del layer', + 'leave_a_comment' => 'Lascia un commento', + 'less_information' => 'Meno Informazioni', + 'level' => 'Livello', + 'level_has_been' => 'Questo livello è stato', + 'level_name' => 'Nome del livello', + 'limited' => 'Limitato', + 'link' => 'Collegamento', + 'list' => 'Lista', + 'loading_reports' => 'Carico segnalazioni', + 'location' => 'Localita\'', + 'locations' => 'Localita\'', + 'location_example' => 'Città, Provincia e/o Regione', + 'login' => 'Login', + 'login_account_creation_successful' => 'Account creato. Adesso puoi accedere.', + 'login_confirmation_sent' => 'Un messaggio di conferma è stata inviata al tuo indirizzo email.', + 'login_approval_required' => 'Account creato. Il tuo account deve essere approvato da un amministratore prima di poter accedere.', + 'login_email_doesnt_exist' => 'Questo indirizzo email non esiste. Prova un indirizzo diverso o crea un account.', + 'login_select_openid' => 'Clicca sul tuo provider di account', + 'login_with' => 'Accedi con', + 'login_userpass' => 'Email e Password', + 'login_openid' => 'OpenID', + 'login_signup' => 'Registrati', + 'login_signup_click' => 'Crea un account', + 'login_signup_confirmation_message' => 'Grazie per esserti iscritto a %1$s. Per confermare il tuo indirizzo e-mail, vai al seguente indirizzo: %2$s', + 'login_signup_confirmation_subject' => 'Conferma iscrizione', + 'login_signup_admin_approval_message' => 'Un nuovo utente si è registrato su %1$s. Per approvare l\'iscrizione si prega di visitare il seguente URL: %2$s', + 'login_signup_admin_approval_subject' => 'Approvazione nuovo utente', + 'login_signup_approval_message' => 'Il tuo account è stato approvato per %1$s. Per accedere andare al seguente URL: %2$s', + 'login_signup_approval_subject' => 'Account utente approvato', + 'login_signup_text' => 'Crea un account adesso per avere accesso a più funzionalità del sito', + 'longitude' => 'Longitudine', + 'map' => 'Mappa', + 'mark_read' => 'Marca come letto', + 'mark_unread' => 'Marca come non letto', + 'maximum_filesize' => 'Dimensione massima file', + 'media' => 'Elementi multimediali', + 'media_filter' => 'Filtro sul tipo di media', + 'members' => 'Membri', + 'manage_your_account' => 'Gestisci il tuo Account', + 'message' => 'Messaggio', + 'messages' => 'Messaggi', + 'message_details' => 'Dettagli del messaggio', + 'message_non_numeric_source' => 'Messaggio da una sorgente non numerica', + 'mobile' => 'Cellulare', + 'modify' => 'Modifica', + 'modify_date' => 'Modifica data', + 'month' => 'mese', + 'Monthly' => 'mensile', + 'more' => 'Continua', + 'more_information' => 'Per saperne di più', + 'multi_country_instance' => 'Raccogli segnalazioni da diversi paesi (nazioni)', + 'must_confirm_email_address' => 'Devi confermare il tuo indirizzo email per accedere a questa installazione. Se non ricordi la tua email di conferma, puoi richiederne un\'altra qua sotto.', + 'name' => 'Nome', + 'nearby_report' => 'Segnalazione nelle vicinanze', + 'new' => 'Nuovo', + 'news' => 'Notizie', + 'news_feeds' => 'Feed notizie', + 'news_source' => 'Fonti notizie', + 'new_category' => 'Nuova categoria', + 'new_password' => 'Nuova password', + 'new_report' => 'Nuova segnalazione', + 'next' => 'Prossimo', + 'no' => 'No', + 'no_checkins' => 'Nessuna registrazione da mostrare.', + 'no_data' => 'Nessun dato', + 'none' => 'Nessuno', + 'notices' => 'Avvisi', + 'not_approved' => 'Non approvati', + 'not_approved_singular' => 'Non approvato', + 'not_selected' => '---Non selezionato---', + 'not_spam' => 'non spam', + 'not_specified' => 'Non specificato', + 'no_reports' => 'Non ci sono segnalazioni', + 'no_results' => 'Nessun risultato', + 'off' => 'Off', + 'official_news' => 'Notizie dalla rete', + 'on' => 'On', + 'option' => 'Opzione', + 'optional' => 'Opzionale', + 'options' => 'Opzioni', + 'organization' => 'Organizzazione', + 'organizations' => 'Organizzazioni', + 'organization_description' => 'Descrizione dell\'organizzazione', + 'organization_email' => 'Email dell\'organizzazione', + 'organization_has_been' => 'L\'organizzazione è stata', + 'organization_name' => 'Nome dell\'organizzazione', + 'organization_phone_1' => 'Numero telefonico dell\'organizzazione 1', + 'organization_phone_2' => 'Numero telefonico dell\'organizzazione 2', + 'organization_website' => 'Sito dell\'organizzazione', + 'original' => 'Originale', + 'original_description' => 'Descrizione originale', + 'original_title' => 'Titolo originale', + 'other_ushahidi_instances' => 'ALTRE ISTALLAZIONI DI USHAHIDI', + 'outbox' => 'Posta in uscita', + 'outgoing' => 'In uscita', + 'page' => 'Pagina', + 'pages' => 'Pagine', + 'page_description' => 'Descrizione della pagina', + 'page_has_been' => 'La pagina è stata', + 'page_tab_name' => 'Etichetta della pagina', + 'page_title' => 'Titolo della pagina', + 'parent_category' => 'Categoria padre', + 'password' => 'Password', + 'password_again' => 'Ridigita la password', + 'password_changed_successfully' => 'Password cambiata con successo! Accedi qui sotto.', + 'password_forgot' => 'Dimenticato la password?', + 'password_reset_confirm' => 'Controlla la tua casella email per ricevere la nuova password.', + 'password_save' => 'Mantieni aperta la connessione su questo pc?', + 'past_month' => 'Mese scorso', + 'past_year' => 'Anno scorso', + 'pending' => 'In attesa', + 'per' => 'per', + 'personal_information' => 'Informazioni personali opzionale', + 'phone' => 'Telefono', + 'photos' => 'Foto', + 'pictures' => 'Immagini', + 'pictures_and_videos' => 'Immagini e video', + 'pinpoint_location' => '* ricerca la località esatta usando come nome latitudine,longitudine (esempio:38.19,-85.61) oppure clicca sulla mappa per individuare il punto esatto ', + 'play' => 'Ascolta', + 'please_note' => 'Nota bene', + 'plugins' => 'Plugins', + 'plugin_url' => 'URL del plugin', + 'public_profile' => 'Profilo Pubblico', + 'public_profile_url' => 'URL del Profilo Pubblico', + 'preview' => 'Anteprima', + 'preview_item' => 'elemento dell\'anteprima', + 'preview_message' => 'Anteprima del messaggio', + 'previous' => 'Precedente', + 'private' => 'Privato', + 'profile_color' => 'Colore Profilo', + 'profile_saved' => 'Il tuo profilo è stato modificato', + 'quick_stats' => 'Statistiche compatte', + 'rating' => 'Valutazione', + 'read' => 'Letto', + 'receive' => 'Ricevi', + 'receive_from' => 'Ricevi da', + 'receive_notifications' => 'Ricevi avvisi', + 'recent_reports' => 'Segnalazioni recenti', + 'refresh_news_feeds' => 'Ricarica notizie', + 'registered_email' => 'Email registrata', + 'remove' => 'Cancella', + 'reply' => 'Rispondi', + 'report' => 'Segnalazione', + 'reports_listed' => 'Segnalazioni (dalla mappa, elencate in ordine cronologico)', + 'reporter' => 'Segnalatore', + 'reporters' => 'Segnalatori', + 'reporter_date' => 'Data del reporter', + 'reporter_email' => 'Email del reporter', + 'reporter_first_name' => 'Nome del reporter', + 'reporter_has_been' => 'Il reporter è stato', + 'reporter_ip' => 'IP del reporter', + 'reporter_last_name' => 'Cognome del reporter', + 'reporter_level' => 'Ruolo del reporter', + 'reporter_levels' => 'Ruoli dei reporter', + 'reporter_phone' => 'Num. telefonico del reporter', + 'reports' => 'Segnalazioni', + 'reports_btn_browse' => 'Mostra le segnalazioni', + 'reports_btn_submit' => 'Invia', + 'reports_by_this_user' => 'Segnalazioni di questo utente', + 'reports_categories' => 'Categorie', + 'reports_count' => '%d Notizie', + 'reports_date' => 'Data', + 'reports_description' => 'Descrizione', + 'reports_download_csv' => 'Le segnalazioni verranno scaricate in formato CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Funzionalità', + 'reports_find_location' => 'Trova una località vicina', + 'reports_first' => 'Nome', + 'reports_last' => 'Cognome', + 'reports_location_name' => 'Specifica meglio la località', + 'reports_news' => 'Link alla fonte della notizia', + 'reports_optional' => 'Informazioni opzionali', + 'reports_photos' => 'Carica immagini', + 'reports_return' => 'Ritorna alle segnalazioni', + 'reports_select_city' => 'Seleziona una città', + 'reports_submitted' => 'La tua segnalazione è stata inviata al nostro staff per le verifiche del caso. Se necessario verrai ricontattato.', + 'reports_submit_new' => 'Invia nuova segnalazione', + 'reports_time' => 'Ora', + 'reports_timeline' => 'Timeline segnalazioni', + 'reports_title' => 'Titolo della segnalazione', + 'reports_video' => 'Link al video', + 'report_an_incident' => 'Segnala un evento', + 'report_details' => 'Dettagli della segnalazione', + 'report_option_1' => 'Inviando un messaggio a', + 'report_option_2' => 'Inviando un\'email a', + 'report_option_3' => 'Creando un tweet con lo hashtag/s', + 'report_option_4' => 'Compilando questo modulo', + 'report_option_external_apps' => 'Usando una App', + 'report_saved' => 'La tua segnalazione è stata inviata', + 'report_title' => 'Titolo della segnalazione', + 'request_information' => 'Richiedi ulteriori informazioni', + 'request_location' => 'Richiedi di specificare la località', + 'required' => 'Obbligatorio', + 'requirements' => 'Richieste', + 'resend_confirm_email' => 'Invia di nuovo l\'Email di conferma', + 'reset' => 'Reset', + 'reset_all_filters' => 'Resetta tutti i filtri', + 'reset_password' => 'Resetta la password', + 'retrieve_city_names' => 'Carica i nomi delle città per la nazione selezionata', + 'riverid_information' => 'Account gestate dal servizio %s.', + 'riverid_exists_login' => 'Hai già un account amministrato da CrowdmapID! Prova ad usare la tua email CrowdmapID e password per accedere.', + 'role' => 'Ruolo', + 'rss' => 'RSS', + 'save' => 'Salva', + 'saved' => 'Salvato', + 'save_add_new' => 'Salva e aggiungi nuovo', + 'save_close' => 'Salva e chiudi', + 'save_report' => 'Salva la segnalazione', + 'schedule' => 'Pianifica', + 'scheduler' => 'Operazioni automatizzate', + 'scheduler_day' => 'Giorno', + 'scheduler_hour' => 'Ora', + 'scheduler_log' => 'Log delle operazioni automatizzate', + 'scheduler_minute' => 'Minuto', + 'scheduler_weekday' => 'Giorno della settimana', + 'search' => 'CERCA', + 'search_results' => 'Risultati della ricerca', + 'security_code' => 'Codice di controllo', + 'select_all' => 'Seleziona tutti', + 'select_field_type' => 'Seleziona il tipo campo', + 'select_form_type' => 'Seleziona il tipo di modulo', + 'select_in_map' => 'Individua sulla mappa', + 'select_multiple' => 'Seleziona le opzioni', + 'select_one' => 'Seleziona un elemento', + 'select_theme' => 'Scegli il tema', + 'send' => 'Invia', + 'send_confirmation' => 'Invia conferma', + 'sending_to' => 'Invio in corso a', + 'sent' => 'Inviato', + 'sent_by' => 'Inviato da', + 'server_address' => 'Indirizzo del server', + 'server_type' => 'Tipo di server', + 'service' => 'Servizio', + 'service_username' => 'Nome utente per il servizio', + 'service_user_id' => 'User ID per il servizio', + 'share' => 'Condividi', + 'shared_data' => 'Informazioni condivise', + 'share_has_been' => 'Il sistema di condivisione è stato', + 'sharing' => 'Condivisione', + 'shorter_map' => 'Mappa più bassa', + 'show' => 'Mostra', + 'show_all' => 'Mostra tutti', + 'show_messages' => 'Mostra Messaggi', + 'showing_reports_from' => 'Visualizza report da %1$s a %2$s', + 'site' => 'Sito web', + 'site_email_address' => 'Indirizzo email del sito', + 'site_url' => 'URL del sito', + 'smaller_map' => 'Mappa più piccola', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Non hai nessun badge.', + 'source' => 'Fonte', + 'source_name' => 'Nome della fonte', + 'sort' => 'Ordina', + 'sort_by' => 'Ordina per', + 'source_url' => 'URL della fonte', + 'spam' => 'Spam', + 'ssl_support' => 'Supporto SSL', + 'start_point' => 'Da', + 'step' => 'Passo', + 'submit' => 'Invia una segnalazione', + 'submitted_by' => 'Inviato da %1$s via %2$s', + 'submit_sms' => 'Invia via SMS', + 'submit_sms1' => 'Invia il tuo SMS a', + 'submit_sms2' => 'sul tuo telefono', + 'success' => 'Successo!', + 'successfuly_imported' => 'Importazione avvenuta con successo', + 'surname' => 'Cognome', + 'survey' => 'Sondaggio', + 'system' => 'Sistema', + 'taller_map' => 'Mappa più alta', + 'tcp_port' => 'Porta TCP', + 'themes' => 'Temi', + 'theme_default' => 'Tema di default di Ushahidi', + 'theme_settings' => 'Impostazioni del tema', + 'this' => 'Questo', + 'this_day' => 'Oggi', + 'this_month' => 'Questo mese', + 'this_week' => 'Questa settimana', + 'this_year' => 'Quest\'anno', + 'this_is_your_profile' => 'Questo è il tuo profilo', + 'time' => 'ora', + 'title' => 'TITOLO', + 'to' => 'a', + 'today' => 'Oggi', + 'today_at' => 'Oggi alle', + 'token' => 'Token', + 'total_reports' => 'Totale segnalazioni', + 'translated' => 'Tradotto', + 'translated_description' => 'Descrizione tradotta', + 'translated_title' => 'Titolo tradotto', + 'translate_to' => 'Traduci in', + 'translation' => 'Traduzione', + 'translation_saved' => 'La traduzione è stata salvata', + 'trusted' => 'Fidato', + 'type' => 'Tipo', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Impossibile inviare l\'email.', + 'uncategorized_reports' => 'Segnalazioni senza categoria', + 'unread' => 'non letto', + 'unverified' => 'Non verificato', + 'update_feeds' => 'Aggiorna i feed', + 'upload' => 'Carica', + 'upload_guide' => 'Visualizza le nostre guide di caricamento report:-', + 'upload_docs_1' => 'Guida di caricamento XML', + 'upload_docs_2' => 'Guida di caricamento CSV', + 'upload_file' => 'File da caricare', + 'upload_reports' => 'Carica segnalazioni', + 'upload_reports_custom_forms' => 'Le colonne utente devono avere il loro form_id aggiunto alla fine. Es. il campo Test, sul form di default, con id 1, sarà Test-1. Durante l\'importazione di campi utente, assicurati che', + 'upload_reports_detail_1' => 'Utilizzando il modulo qui sotto, puoi importare delle segnalazioni direttamente in Ushahidi', + 'upload_reports_detail_2' => 'I report devono essere caricati come CSV o XML.', + 'upload_reports_detail_3' => 'Se l\'ID della segnalazione esiste già nel database, la segnalazione nel file CSV/XML sarà ignorata.', + 'upload_reports_detail_4' => 'Deve contenere almeno un titolo e una data', + 'upload_reports_detail_4b' => 'Se non fornisci latitudine e longitudine, il luogo sarà trovato usando Google Geocoder.', + 'upload_reports_detail_4c' => 'Se si importano delle informazioni addizionali, es. informazioni personali e/o campi utente', + 'upload_reports_detail_4d' => 'DEVE essere compilata almeno una delle informazioni personali (nome, cognome, email). I record vuoti non saranno importati', + 'upload_reports_detail_4e' => 'Le tue voci per i menu a tendina, radio buttons e checkbox sono uguale alle opzioni inserite per il campo utente della tua installazione', + 'upload_reports_detail_4f' => 'Le opzioni delle checkbox sono separate da virgola. Es. se la tua scelta di frutta è mele, mango, uva, dovresti scrivere "mele,mango,uva"', + 'upload_reports_detail_4g' => 'I valori per i campi data devono avere il formato mm/gg/aaaa, es 3 ottobre 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Esempio di segnalazione in formato CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Denunciate violenze a Pinerolo","2009-05-15 01:06:00","Pinerolo","Tre casi di violenza sono stati denunciati a Pinerolo...","VIOLENZA, SCONTRI, ",YES,YES', + 'upload_reports_detail_7' => '"2","Scontri","2009-03-18 10:10:00","Forlimpopoli","Scontri in tutta Forlimpopoli","SCONTRI, OCCUPAZIONI, VIOLENZA ",YES,NO', + 'upload_successful' => 'Caricamento avvenuto con successo', + 'upload_video' => 'Carica Video', + 'url' => 'URL', + 'user' => 'Utente', + 'username' => 'Nome utente', + 'ushahidi_admin' => 'Amministratore Ushahidi', + 'verification' => 'Verifica', + 'verified' => 'Verificato', + 'verified_reports' => 'Segnalazioni verificate', + 'verify' => 'Verifica', + 'verify_this_report' => 'Verifica questa segnalazione', + 'version' => 'Versione', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Visualizzazione', + 'views' => 'Visualizzazioni', + 'view_all' => 'Mostra tutti', + 'view_all_feeds' => 'Mostra tutti i feed', + 'view_all_reports' => 'Mostra tutte le segnalazioni', + 'view_items' => 'Visualizza gli elementi', + 'view_more' => 'Guarda le altre', + 'view_public_profile' => 'Vedi profilo pubblico', + 'view_report' => 'Visualizza la segnalazione', + 'view_reports' => 'Visualizza le segnalazioni', + 'view_video' => 'Vedi Video', + 'visible' => 'Visibile', + 'waiting_approval' => 'In attesa di approvazione', + 'waiting_verification' => 'In attesa di verifica', + 'wider_map' => 'Mappa più grande', + 'web_form' => 'Modulo web', + 'web' => 'Web', + 'weight' => 'Peso', + 'Weekly' => 'settimanale', + 'yes' => 'Sì', + 'yesterday' => 'Ieri', + 'your_dashboard' => 'La tua dashboard', + 'your_file' => 'Il tuo file', + 'zoom_in' => 'Zoom In', + 'zoom_out' => 'Zoom Out', +); diff --git a/application/i18n/it_IT/upgrade.php b/application/i18n/it_IT/upgrade.php new file mode 100755 index 0000000000..5c41a2c4da --- /dev/null +++ b/application/i18n/it_IT/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Dati inseriti non validi. I valori ammessi sono solo 0 per NO e 1 per SI\'', + ) , + 'upgrade_automatic' => 'Aggiornamento Automatico', + 'upgrade_available' => 'Aggiornamenti Disponibili', + 'upgrade_continue_btn_text' => 'Continua', + 'upgrade_db_btn_text' => 'Aggiorna', + 'upgrade_db_text_1' => 'Sto per aggiornare il tuo database dalla versione', + 'upgrade_db_text_2' => 'alla più recente versione del database', + 'upgrade_db_text_3' => 'Fai click sul pulsante "Aggiorna" e rilassati così posso fare la mia magia.', + 'upgrade_db_text_4' => 'Se vuoi che mi occupi di fare anche il backup del database, selezione il checkbox qui sotto e lo farò in un attimo.', + 'upgrade_db_text_5' => 'Effettuare un Backup del database prima dell\'aggiornamento? (Veramente consigliato)', + 'upgrade_db_title' => 'Aggiornamento del database di Ushahidi', + 'upgrade_db_info' => 'Ushahidi è stato aggiornato! Prima di continuare, devi aggiornare il database alla versione più recente (%s).', + 'upgrade_db_up_to_date' => 'La versione del database è aggiornata.', + 'upgrade_failed' => 'La procedura di upgrade è stata interrotta.', + 'upgrade_manual' => 'Aggiornamento Manuale', + 'upgrade_status' => 'Stato dell\'aggiornamento di Ushahidi', + 'upgrade_text_1' => 'Le istruzioni qui sotto illustrano nel dettaglio come eseguire un aggiornamento manuale della tua istallazione di Ushahidi', + 'upgrade_text_2' => 'Step 1: Scarica la versione più recente di Ushahidi da http://download.ushahidi.com', + 'upgrade_text_3' => 'Step 2: A seconda del sistema operativo del tuo web server scegli la modalità e lo strumento più adatti (es.telnet, ftp, ssh) per effettuare login sul webserver e sostituisci i contenuti di tutte le cartelle con quelli della nuova versione. Tutti TRANNE:', + 'upgrade_text_4' => 'Step 4: Clicca sul tasto"Continua" per aggiornare le tabelle necessarie.', + 'upgrade_tables' => 'Passo 3: Apri la cartella sql. Lancia manualmente il file di upgrade-.sql iniziando dalla versione corrente del db per la tua installazione e continua fino all\'ultimo file sql di aggiornamento.', + 'upgrade_text_5' => 'Per eseguire l\'aggiornamento automatico clicca il bottone qui sotto.', + 'upgrade_text_6' => 'Per l\'aggiornamento automatico, fai click sul tasto in basso', + 'upgrade_title_text' => 'Stai usando Ushahidi v%1$s con un database versione %2$d che sta funzionando su %3$s', + 'upgrading' => 'Aggiornamento in corso', + 'upgrade_ftp_text' => 'Per continuare con l\'upgrade, occorre specificare le informazioni qui sotto per il server FTP sul quale è ospitato il tuo sito.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Esempio: "localhost"', + 'upgrade_ftp_password' => 'FTP Password:', + 'upgrade_ftp_username' => 'FTP Nome Utente:', + 'upgrade_status_info' => 'Hai l\'ultima versione di Ushahidi', + 'upgrade_status_info_2' => 'Non occorre eseguire l\'aggiornamento', + 'upgrade_db_version' => 'Versione Database: %d', + 'upgrade_warning_software_version' => 'Attenzione: la versione del software nel file version.php e quella del database non corrispondono.', + 'upgrade_warning_db_version' => 'Attenzione: La versione del Database nel file version.php e quella del database non corrispondono.', + 'upgrade_database' => 'Database:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Download ultima versione di ushahidi in corso...', + 'log_file' => 'File di Log', + 'successfully_downloaded' => 'Scaricato con successo. Lo sto scompattando...', + 'failed_downloading' => 'Download fallito.', + 'successfully_unpacked' => 'Estrazione avvenuta con successo. Copia dei files in corso...', + 'failed_unpacking' => 'Estrazione fallita.', + 'successfully_copied' => 'Copia avvenuta con successo. Aggiornamento Database...', + 'failed_copying' => 'Copia dei files fallita.', + 'backup_success' => 'Backup e aggiornamento del database avvenuta con successo.', + 'backup_failed' => 'Backup del database fallito.', + 'dbupgrade_success' => 'Il database è stato aggiornato correttamente.', + 'deleting_files' => 'Cancellazione file scaricati...', + 'upgrade_success' => 'AGGIORNAMENTO EFFETTUATO. Visualizza File Log', +); diff --git a/application/i18n/ja_JP/alerts.php b/application/i18n/ja_JP/alerts.php new file mode 100755 index 0000000000..7964550e80 --- /dev/null +++ b/application/i18n/ja_JP/alerts.php @@ -0,0 +1,53 @@ + array( + 'email' => '正しいメールアドレス形式ではありません。', + 'email_check' => '入力したメールアドレスで指定の場所のアラートを受信する設定になっています。', + 'length' => 'メールアドレスは最低4文字、最高64文字の長さでなければいけません。', + 'required' => 'チェックボックスにチェックが入っている場合はメールアドレスが必須です。', + ) , + 'alert_lat' => array( + 'between' => '地図上の選択可能な場所を選択してません。', + 'required' => '地図上の選択可能な場所を選択してません。', + ) , + 'alert_lon' => array( + 'between' => '地図上の選択可能な場所を選択してません。', + 'required' => '地図上の選択可能な場所を選択してません。', + ) , + 'alert_mobile' => array( + 'length' => '携帯番号が正しい桁数が入力されていません。', + 'mobile_check' => '入力した携帯番号で指定の場所のアラートを受信する設定になっています。', + 'numeric' => '正しい携帯場号が入力されていないようです。半角数字で国番号から入力してください。', + 'one_required' => '携帯番号がメールアドレスのどちらかを入力してください。', + 'required' => 'チェックボックスにチェックが入っている場合は、携帯番号が必須です。', + ) , + 'alert_radius' => array( + 'in_array' => '地図上で有効な半径値を設定していません。', + 'required' => '地図上で有効な半径値を設定していません。', + ) , + 'code_already_verified' => 'この承認コードはすでに確証済みです!', + 'code_not_found' => '承認コードが見つかりません。正しいURLなのか確認してください。', + 'code_verified' => 'コードが正しく承認されました。今後何か事件が発生したらアラームを受信します。', + 'confirm_request' => 'アラートを受けとるための確認は、こちらにアクセスしてください。', + 'create_more_alerts' => 'さらにアラートを受信をする為にアラートページに戻る', + 'email_alert_request_created' => 'メールでのアラート受信する為の承認メッセージをこのメールアドレスにお送りました', + 'email_code' => '受信したメールの承認コードを下記に入力してください', + 'email_error_head' => 'メールでのアラート受信設定はまだ保存されていません!', + 'email_ok_head' => 'メールでのアラート受信設定は保存されました!', + 'error' => 'システムが承認処理を実行出来ませんでした!', + 'mobile_alert_request_created' => '携帯番号でのアラート受信する為の承認メッセージをこの番号にお送りしました', + 'mobile_code' => '受信したメールの承認コードを下記に入力してください', + 'mobile_error_head' => 'メールでのアラート受信設定はまだ保存されていません!', + 'mobile_ok_head' => 'メールでのアラート受信設定は保存されました!', + 'settings_error' => 'この立ち上げたサイトではアラートを正しく処理するように設定されていません。', + 'unsubscribe' => 'アラートを受信する設定をした為、このメールを受信しています。今後アラートを受信したくない場合はこちらにアクセスしてください', + 'unsubscribed' => '今後アラートを次のサイトから受信しません', + 'unsubscribe_failed' => '受信解除が出来ませんでした。正しいURLか確認してください。', + 'verification_email_subject' => 'アラート - 承認', + 'verify_code' => 'あなたがリクエスト承認しない限り、この場所でのアラートを受信が出来ません。', +); diff --git a/application/i18n/ja_JP/auth.php b/application/i18n/ja_JP/auth.php new file mode 100755 index 0000000000..2d4b9aee1f --- /dev/null +++ b/application/i18n/ja_JP/auth.php @@ -0,0 +1,54 @@ + array( + 'email' => '正しいメールアドレス形式ではありません。', + 'exists' => 'このメールアドレスで、アカウントが存在します。', + 'length' => 'メールアドレスは最低4文字、最高64文字の長さでなければいけません。', + 'required' => 'メールアドレスは入力必須です。', + ) , + 'name' => array( + 'length' => '氏名は最低3文字、最高100文字の長さでなければいけません。', + 'required' => '氏名は入力必須です。', + 'standard_text' => '氏名に許可されていない文字列が入っています。', + ) , + 'current_password' => array( + 'matches' => '2つのパスワード行に同じパスワードを入力してください。', + 'required' => 'パスワードが必要です。', + 'alpha_dash' => 'パスワード行は、アルファベット文字、#と@、数字、アンダースコア、ダッシュ記号のみが使えます。', + ) , + 'new_password' => array( + 'length' => 'パスワード行は、8文字以上が必須です。', + 'required' => 'パスワード行が必須です。', + ) , + 'password' => array( + 'length' => 'パスワードは5文字以上、16文字以下です。', + 'matches' => '再度同じパスワードを入力してください。', + 'required' => 'パスワードは入力必須です。', + ) , + 'password_confirm' => array( + 'matches' => 'パスワード確認は、パスワードと同じ物を入力してください。', + ) , + 'resetemail' => array( + 'email' => '正しいメールアドレス形式ではありません。', + 'invalid' => '入力されたメールアドレスの登録がありません。', + 'required' => 'メールアドレスは入力必須です。', + ) , + 'roles' => array( + 'alpha_numeric' => 'ルールの形式が不正です。', + 'length' => 'ルールは最低5文字以上、30文字以下でなければいけません。', + 'required' => '最低1つルールを定義する必要あります。', + 'values' => '管理者かユーザーのどちらかのルールを選択する必要があります。', + ) , + 'username' => array( + 'admin' => '管理者ユーザーのルールは変更する事が出来ません。', + 'exists' => 'ユーザー名はすでに使われています。', + 'length' => 'ユーザー名は最低2文字、最高16文字までです。', + 'required' => 'ユーザー名は入力必須です。', + 'superadmin' => '特権管理者ルールは変更する事が出来ません。', + ) , +); diff --git a/application/i18n/ja_JP/bug.php b/application/i18n/ja_JP/bug.php new file mode 100755 index 0000000000..b0a9180241 --- /dev/null +++ b/application/i18n/ja_JP/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => '有効なセキュリティコードを入力してください。', + 'required' => 'セキュリティコードを入力してください。', + ) , + 'email' => array( + 'email' => '正しいメールアドレス形式ではありません。', + 'length' => 'メールアドレスは最低4文字、最高64文字の長さでなければいけません。', + 'required' => 'チェックボックスにチェックが入っている場合はメールアドレスが必須です。', + ) , + 'error' => array( + 'required' => 'エラーは入力必須です。', + ) , + 'subject' => array( + 'length' => 'タイトルは最低3文字以上でなければいけません。', + 'required' => 'タイトルは入力必須です。', + ) , + 'yourname' => array( + 'length' => '名前は最低3文字以上でなければいけません。', + 'required' => '名前は入力必須です。', + ) , +); diff --git a/application/i18n/ja_JP/category.php b/application/i18n/ja_JP/category.php new file mode 100755 index 0000000000..bfd6bd0a2e --- /dev/null +++ b/application/i18n/ja_JP/category.php @@ -0,0 +1,30 @@ + array( + 'length' => 'カラーは6文字でなければいません。', + 'required' => 'カラーは入力必須です。', + ) , + 'category_description' => array( + 'required' => '説明文は入力必須です。', + ) , + 'category_image' => array( + 'size' => '画像アップロードサイズは 50KBに制限されている事を確認してください。', + 'type' => '画像以外が選択されています。.JPG, .PNG, .GIF形式のみアップロード可能です。', + 'valid' => '画像以外のファイルが選択されています。', + ) , + 'category_title' => array( + 'length' => 'タイトルは最低3文字、最高80文字以下にしてください。', + 'required' => 'タイトルは入力必須です。', + ) , + 'parent_id' => array( + 'exists' => '親カテゴリがありません。', + 'numeric' => '親カテゴリは数字でなければいけません。', + 'required' => '親カテゴリは入力必須です。', + 'same' => 'カテゴリと親カテゴリは同じ物には出来ません。', + ) , +); diff --git a/application/i18n/ja_JP/comments.php b/application/i18n/ja_JP/comments.php new file mode 100755 index 0000000000..9dbdccee63 --- /dev/null +++ b/application/i18n/ja_JP/comments.php @@ -0,0 +1,24 @@ + array( + 'default' => '有効なセキュリティコードを入力してください。', + 'required' => 'セキュリティコードを入力してください。', + ) , + 'comment_author' => array( + 'length' => '名前は最低3文字以上入力してください。', + 'required' => '名前は入力必須です。', + ) , + 'comment_description' => array( + 'required' => 'コメントは入力必須です。', + ) , + 'comment_email' => array( + 'email' => '正しいメールアドレス形式ではありません。', + 'length' => 'メールアドレスは最低4文字、最高64文字の長さでなければいけません。', + 'required' => 'チェックボックスにチェックが入っている場合はメールアドレスが必須です。', + ) , +); diff --git a/application/i18n/ja_JP/contact.php b/application/i18n/ja_JP/contact.php new file mode 100755 index 0000000000..02c9ca424f --- /dev/null +++ b/application/i18n/ja_JP/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => '有効なセキュリティコードを入力してください。', + 'required' => 'セキュリティコードを入力してください。', + ) , + 'contact_email' => array( + 'email' => '正しいメールアドレス形式で入力してください。', + 'length' => 'メールアドレスは最低4文字、最高64文字の長さにしてください。', + 'required' => 'チェックボックスにチェックが入っている場合は、メールアドレスは必須です。', + ) , + 'contact_message' => array( + 'required' => 'メッセージは必須項目です。', + ) , + 'contact_name' => array( + 'length' => '名前は最低3文字上入力してください。', + 'required' => '名前は必須項目です。', + ) , + 'contact_subject' => array( + 'length' => 'タイトルは最低3文字以上入力してください', + 'required' => 'タイトルは必須項目です。', + ) , +); diff --git a/application/i18n/ja_JP/core.php b/application/i18n/ja_JP/core.php new file mode 100755 index 0000000000..b8b2e8b2e7 --- /dev/null +++ b/application/i18n/ja_JP/core.php @@ -0,0 +1,33 @@ + '設定ファイル', + 'controller' => 'コントローラ', + 'driver' => 'ドライバ', + 'driver_implements' => ' %s ドライバ( %s ライブラリ用)は %s インターフィエスに取り込まれなければいけません。', + 'driver_not_found' => '%s ドライバ( %s ライブラリ用)が見つかりませんでした。', + 'errors_disabled' => 'ホームページ or 再トライへアクセス出来ます。', + 'generic_error' => 'リクエストを完了出来ません。', + 'helper' => 'ヘルパー', + 'invalid_filetype' => 'リクエストされた %s ファイルタイプは、ビュー設定ファイルでは許可されていません。', + 'invalid_method' => '不正なメソッド %s が %s で呼び出されました。', + 'invalid_property' => '%s プロパティは %s クラスにはありません。', + 'library' => 'ライブラリ', + 'log_dir_unwritable' => 'ログディレクトリに書き込みできません: %s', + 'model' => 'モデル', + 'no_controller' => 'Ushahidi はこのリクエストを処理するコントローラが分かりませんでした: %s', + 'no_default_route' => 'config/routes.php にデフォルトルートをセットしてください。', + 'page_not_found' => 'リクエストされたページ, %s, は見つかりませんでした。', + 'report_bug' => 'Ushahidi にバグを報告する', + 'resource_not_found' => 'リクエストされた %s, %s, は見つかりませんでした。', + 'stack_trace' => 'スタックトレース', + 'stats_footer' => 'ロード時間 {execution_time} 秒, メモリ使用量 {memory_usage} by Ushahidi {kohana_version} ', + 'there_can_be_only_one' => 'ページリクエストあたりの Ushahidi インスタンスは1つだけです。', + 'uncaught_exception' => 'エラー %s: %s がファイル %s の %s 行目にあります。', + 'view' => 'ビュー', + 'view_set_filename' => 'レンダーを呼び出す前にビューファイル名をセットしなければなりません。', +); diff --git a/application/i18n/ja_JP/database.php b/application/i18n/ja_JP/database.php new file mode 100755 index 0000000000..663dfed2d7 --- /dev/null +++ b/application/i18n/ja_JP/database.php @@ -0,0 +1,10 @@ + 'データベースエラー : %s', + 'table_not_found' => 'テーブル " %s "がデータベースに見つかりません。このUshahidiの最新バージョンのデータベースを利用しているか確認してください。', +); diff --git a/application/i18n/ja_JP/datetime.php b/application/i18n/ja_JP/datetime.php new file mode 100755 index 0000000000..40e26ea486 --- /dev/null +++ b/application/i18n/ja_JP/datetime.php @@ -0,0 +1,41 @@ + '午前', + 'friday' => array( + 'abbv' => '(金)', + 'full' => '金曜日', + ) , + 'monday' => array( + 'abbv' => '(月)', + 'full' => '月曜日', + ) , + 'pm' => '午後', + 'saturday' => array( + 'abbv' => '(土)', + 'full' => '土曜日', + ) , + 'sunday' => array( + 'abbv' => '(日)', + 'full' => '日曜日', + ) , + 'thursday' => array( + 'abbv' => '(木)', + 'full' => '木曜日', + ) , + 'tuesday' => array( + 'abbv' => '(火)', + 'full' => '火曜日', + ) , + 'wednesday' => array( + 'abbv' => '(水)', + 'full' => '水曜日', + ) , + 'december' => array( + 'full' => '12月', + ) , +); diff --git a/application/i18n/ja_JP/feeds.php b/application/i18n/ja_JP/feeds.php new file mode 100755 index 0000000000..fd94687fe1 --- /dev/null +++ b/application/i18n/ja_JP/feeds.php @@ -0,0 +1,19 @@ + '日時', + 'feed_name' => array( + 'length' => 'フィード名は最低3文字以上、70文字以下にする必要があります。', + 'required' => 'フィード名を入力してください。', + ) , + 'feed_url' => array( + 'required' => 'フィードのURLを入力してください。', + 'url' => '有効なURLを入力してください。例 http://www.ushahidi.com', + ) , + 'source' => 'ソース', + 'title' => 'タイトル', +); diff --git a/application/i18n/ja_JP/footer.php b/application/i18n/ja_JP/footer.php new file mode 100755 index 0000000000..d686cafcb0 --- /dev/null +++ b/application/i18n/ja_JP/footer.php @@ -0,0 +1,9 @@ + 'php5-curl がインストールされていません。', +); diff --git a/application/i18n/ja_JP/form.php b/application/i18n/ja_JP/form.php new file mode 100755 index 0000000000..a7425466d0 --- /dev/null +++ b/application/i18n/ja_JP/form.php @@ -0,0 +1,45 @@ + array( + 'length' => 'フィールド名は最低3文字以上、200文字以下ではなければいけません。', + ) , + 'field_height' => array( + 'between' => 'フィールドの高さの値を0から50の間で入力してください。', + ) , + 'field_isdate' => array( + 'between' => '有効なデータフィールドを入力してください。', + 'required' => 'データフィールドには はい、もしくは いいえを選択してください。', + ) , + 'field_name' => array( + 'length' => 'フィールド名は最低3文字上、最高100文字以下にしなければなりません。', + 'required' => 'フィールド名を入力してください。', + ) , + 'field_required' => array( + 'between' => '必須フィールドの有効な値を入力してください。', + 'required' => '必須フィールドには、はい、もしくは いいえを選択してください。', + ) , + 'field_type' => array( + 'numeric' => '有効なフィールドタイプを選択してください。', + 'required' => 'フィールドタイプを選択してください。', + ) , + 'field_width' => array( + 'between' => 'フィールドの幅を0から300の間で入力してください。', + ) , + 'form_description' => array( + 'required' => 'フォームの説明文を入力してください。', + ) , + 'form_id' => array( + 'default' => 'ディフォルトフォームは削除出来ません。', + 'numeric' => 'このフィールドにどのフォームを追加するか選択してください。', + 'required' => 'このフィールドにどのフォームを追加するか選択してください。', + ) , + 'form_title' => array( + 'length' => 'フォーム名は最低3文字以上、最高100文字以下にしなければなりません。', + 'required' => 'フォーム名を入力してください。', + ) , +); diff --git a/application/i18n/ja_JP/imap.php b/application/i18n/ja_JP/imap.php new file mode 100755 index 0000000000..c8d08e1f85 --- /dev/null +++ b/application/i18n/ja_JP/imap.php @@ -0,0 +1,10 @@ + 'IMAPストリームを開けません。', + 'unsupported_service' => 'メールサービスはサポートされていません。', +); diff --git a/application/i18n/ja_JP/installer.php b/application/i18n/ja_JP/installer.php new file mode 100755 index 0000000000..659c6777c8 --- /dev/null +++ b/application/i18n/ja_JP/installer.php @@ -0,0 +1,80 @@ + 'ベースパス', + 'database' => 'データベース', + 'database_host' => 'データベースホスト', + 'database_host_description' => 'もしUshahidiをご自身のコンピューターで起動させていたら、これは"localhost"になるでしょう。もしUshahidiをウェブサーバーで起動していたら、ホスティング会社から貰うホスト情報になるでしょう。', + 'database_name' => 'データベース名', + 'database_name_description' => 'Ushahidi を稼働させたいデータベース名は', + 'db_information_link' => '更なる情報に関しては、このWikiの記事を確認し、データーベースに関して確認してください。', + 'default_language' => 'デフォルト言語(ロケール)', + 'default_language_description' => '個々のUshahidiは、翻訳された言語パックがついてきます。 自身の言語を追加する事が出来ます。', + 'disable' => '無効', + 'enable' => '有効', + 'error_summary' => '以下一覧が発生したエラーの要約です。', + 'files_location_text' => 'サーバーに設定されたロケーションはUshahidiファイルに保管されています。自動で値を検知しますので、これが正しいか確認してください。もしフィールドが空だった場合は、Ushahidiがトップレベルのディレクトリにインストールされているだけなので、ご心配しないでください。', + 'finished' => '終了', + 'general' => 'ジェネラル', + 'google_key' => 'Google API キー', + 'google_key_description' => '誰でもAPIキーをこちらで取得出来ます。', + 'go_back' => '戻る', + 'index' => array( + 'advanced' => 'アドバンス インストール', + 'advanced_installation_description' => '基本設定であれば5ステップで行う事ができます。これはサーバー、地図、サイト名、コンタクト情報を含みます。', + 'basic_installation' => '基本インストール', + 'basic_installation_description' => '簡単で早い。唯一必要なのはウェブサイトのルートディレクトリとデーターベース情報です。もし急いで立ち上げたい場合はこのオプションを選択してください。いつでも戻って設定を変更する事が出来ます。', + 'proceed' => 'プロセス', + 'welcome' => 'Ushahidiサーバープロセスへようこそ。どのインストール方法か選択してください。', + ) , + 'installation_successful' => 'インストール成功', + 'mail_server' => 'メールサービス', + 'mail_server_host' => 'メールサービスホスト', + 'mail_server_host_description' => '例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'メールサーバーパスワード', + 'mail_server_password_description' => 'メールアドレスに通常ログインするパスワードです。', + 'mail_server_port' => 'メールサーバーポート', + 'mail_server_port_description' => '一般的なポート: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'メールサーバー種別', + 'mail_server_type_description' => 'インスタンスメッセージアクセスプロトコル(IMAP)かポストオフィスプロトコル(POP)、何が違うのか', + 'mail_server_username' => 'メールサーバーユーザー名', + 'mail_server_username_description' => 'Gmail、HotmailまたはYahoo Mailを使っているのであれば、ユーザー名にはメールアドレスをすべて入力してください', + 'map' => '地図', + 'map_provider' => '地図提供者', + 'map_provider_description' => 'Ushahidiは4つの地図提供: Google, Bing, Yahoo or OpenStreetMapに同等に機能します。利用したい地域に一番詳細な地図を選択してください。', + 'other_steps' => 'その他のステップ...', + 'password' => 'パスワード', + 'password_description' => 'データベースのパスワード', + 'previous' => '前', + 'restart_apache' => 'Apacheを再起動してください。', + 'select_mail_server_ssl' => 'SSL の有効化 もしくは 無効化', + 'select_mail_server_ssl_description' => 'メールサーバーには設定でSSLを接続に使えるサーバーがあります。 SSL有効はセキュリティ追加という意味で推奨されています。', + 'setup_sms' => 'SMSサーバーを設定する', + 'site_email' => 'サイトメールアドレス', + 'site_email_alerts' => 'サイトのアラートメールアドレス', + 'site_email_alerts_description' => 'サイト訪問者がメールアラートに登録したら、このメールアドレスからメールを受信します。このメールアドレスは、サイトのメールアドレスと同じでなくても大丈夫です。', + 'site_email_description' => 'サイトに届くメールはこのアドレスに集まります。', + 'site_name' => 'サイト名', + 'site_name_description' => 'サイトの名前', + 'site_tagline' => 'サイトのタグライン', + 'site_tagline_description' => 'タグライン', + 'summary' => array( + 'text_1' => '以下のファイルとフォルダーはウェブサーバにより上書きされます。', + 'text_2' => '

以下がファイルの権限を変更する方法です:

', + 'text_3' => '始める前に、以下のファイルやフォルダーがウェブサーバーによって上書き可能か確認する必要があります。これはファイル権限を帰る事で可能になります。', + 'text_4' => 'インストールプロセスの為に、以下の情報を覚えておいてください。', + ) , + 'table_prefix' => 'テーブルのプリフィックス', + 'table_prefix_description' => '通常はテーブルのプリフィックスは変更しませんが、複数のUshahidiを1つのデーターベースにインストールをする場合は、ここでプリフィックスを変更する事が可能です。', + 'title' => 'タイトル', + 'to_login' => 'ログインは、こちら', + 'upload_data' => 'レポートデータをアップロード', + 'username' => 'ユーザー名', + 'username_description' => 'データベースのユーザー名', + 'use_credentials' => '次の証明書を利用する', + 'view_site' => 'ウェブサイトを見る', +); diff --git a/application/i18n/ja_JP/layer.php b/application/i18n/ja_JP/layer.php new file mode 100755 index 0000000000..903e83a003 --- /dev/null +++ b/application/i18n/ja_JP/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'カラーフィールドは6文字でなければいけません。', + 'required' => 'カラーフィールドは必須項目です。', + ) , + 'layer_file' => array( + 'type' => 'ファイル選択で、有効なファイルが選択されていません。有効な拡張子は.KMZ か .KML のみです。', + 'valid' => 'ファイル選択で、有効なファイルが選択されていません。', + ) , + 'layer_name' => array( + 'length' => '名前フィールドが、最低3文字以上、80文字以内でなければいけません。', + 'required' => '名前フィールドは必須項目です。', + ) , + 'layer_url' => array( + 'atleast' => 'KMLのUriかファイルのどちらか必須です。', + 'both' => 'KMLファイルとurlの両方を保持する事は出来ません。', + 'url' => '有効なURLを入力してください。(例. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/ja_JP/libraries.php b/application/i18n/ja_JP/libraries.php new file mode 100755 index 0000000000..96a245082a --- /dev/null +++ b/application/i18n/ja_JP/libraries.php @@ -0,0 +1,26 @@ + 'akismetサーバに接続出来ませんでした。', + 'akismet_cannot_retrieve' => 'Akismetからの返答が返ってきませんでした。', + 'api_library_not_found' => 'APIライブラリ: %s%s 向け)クラスが見つかりませんでした。API タスクルーティング表を確認してください。', + 'askimet_invalid_apikey' => 'Akismet API キーが正しくありません。', + 'clickatell_fopen_error' => 'メソッドを送信しfopenを実行する間にエラーが発生しました
PHPがOpenSSLサポートされているか、PHPのバージョンが5.2以上かどうか確認してください。', + 'clickatell_message_too_long' => 'unicodeメッセージが長すぎます! (現在の長さ=', + 'clickatell_no_destination_address' => '目的の住所(TO)を入力してください!', + 'clickatell_no_sender_address' => '発生源の住所(FROM)を入力してください!', + 'clickatell_unicode_message_too_long' => 'unicodeメッセージが長すぎます! (現在の長さ=', + 'clickatell_unsupported_method' => '送信されたメソッドはサポートされていません。', + 'invalid_api_library' => 'API ライブラリ %sは無効です。全てのAPI ライブラリは %sのサブクラスでなければいけません。', + 'upgrade_directory_not_deleted' => '%sディレクトリは削除出来ませんでした。', + 'upgrade_extracting_error' => '展開時にエラーが発生しました: %s', + 'upgrade_failed' => '最新のushahidiダウンロードに失敗しました。HTTPステイタスコード', + 'upgrade_file_not_copied' => '%sファイルはコピー出来ませんでした。', + 'upgrade_file_not_deleted' => '%sファイルは削除出来ませんでした。', + 'upgrade_title' => 'Ushahidiアップグレードスクリプト', + 'upgrade_zip_error' => 'ダウンロードされたushahidi zipファイル %sは上書き出来ませんでした。', +); diff --git a/application/i18n/ja_JP/maintenance.php b/application/i18n/ja_JP/maintenance.php new file mode 100644 index 0000000000..7d488171f2 --- /dev/null +++ b/application/i18n/ja_JP/maintenance.php @@ -0,0 +1,9 @@ + '申し訳ありませんが、現在メンテナンス中のため、ご利用になれません。時間をおいてのアクセスをお願いいたします。', +); diff --git a/application/i18n/ja_JP/message.php b/application/i18n/ja_JP/message.php new file mode 100755 index 0000000000..c3334e34d9 --- /dev/null +++ b/application/i18n/ja_JP/message.php @@ -0,0 +1,27 @@ + array( + 'default' => '有効なセキュリティーコードを入力してください。', + 'required' => 'セキュリティコードを入力してください。', + ) , + 'email' => array( + 'email' => '有効なメールアドレス形式ではないようです。', + 'length' => 'メールアドレスは4文字以上、64文字以下でなければいけません。', + 'required' => 'チェックボックスにチェックが入っている場合は、メールアドレスは必須です。', + ) , + 'message' => array( + 'required' => 'コメントは必須です。', + ) , + 'name' => array( + 'length' => '名前は最低3文字以上でなければいけません。', + 'required' => '名前は必須です。', + ) , + 'phone' => array( + 'length' => '電話番号が有効ではないようです。', + ) , +); diff --git a/application/i18n/ja_JP/mhi.php b/application/i18n/ja_JP/mhi.php new file mode 100755 index 0000000000..f83dfa253a --- /dev/null +++ b/application/i18n/ja_JP/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => '有効なセキュリティコードを入力してください。', + 'required' => 'セキュリティコードを入力してください。', + ) , + 'contact_email' => array( + 'email' => 'メールアドレスフィールドに有効なメールアドレスが入力されていないようです。', + 'required' => '有効なメールアドレスを入力してください。', + ) , + 'contact_message' => array( + 'required' => 'メッセージは必須項目です。', + ) , + 'contact_subject' => array( + 'length' => 'タイトルフィールドは最低3文字以上でなければいけません。', + 'required' => 'タイトルフィールドは必須項目です。', + ) , +); diff --git a/application/i18n/ja_JP/notifications.php b/application/i18n/ja_JP/notifications.php new file mode 100755 index 0000000000..3058f5d96d --- /dev/null +++ b/application/i18n/ja_JP/notifications.php @@ -0,0 +1,35 @@ + 'このメッセージはあなたのウェブサイトから送られました。', + 'admin_login_url' => '管理者ログイン', + 'admin_new_comment' => array( + 'message' => 'あなたのウェブサイトに新しいコメントが投稿されました : ', + 'subject' => '新規コメント', + ) , + 'admin_new_email' => array( + 'message' => 'あなたのウェブサイトにメールのメッセージが投稿されました。', + 'subject' => '新規メールメッセージ', + ) , + 'admin_new_report' => array( + 'message' => 'あなたのウェブサイトに新しいレポートが投稿されました。', + 'subject' => '新規レポート', + ) , + 'admin_new_sms' => array( + 'message' => 'あなたのウェブサイトに新しいテキストメッセージが投稿されました。', + 'subject' => '新規テキストメッセージ', + ) , + 'member_new_alert' => array( + 'message' => '新しいお知らせがあります', + 'subject' => '最新情報', + ) , + 'member_new_message' => array( + 'message' => 'プライベートメッセージを受信しました', + 'subject' => 'プライベートメッセージがあります', + 'footer' => '返信するには、以下にアクセスして下さい:', + ) , +); diff --git a/application/i18n/ja_JP/page.php b/application/i18n/ja_JP/page.php new file mode 100644 index 0000000000..84bce627c3 --- /dev/null +++ b/application/i18n/ja_JP/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'ページのタイトルを入力してください。', + 'length' => 'ページのタイトルは、3文字以上150文字以下でなければなりません。', + ) , + 'page_tab' => array( + 'required' => 'ページのタブの名前を入力してください。', + ) , + 'page_description' => array( + 'required' => 'ページの説明を入力してください。', + ) , +); diff --git a/application/i18n/ja_JP/permissions.php b/application/i18n/ja_JP/permissions.php new file mode 100644 index 0000000000..0a5cde54ab --- /dev/null +++ b/application/i18n/ja_JP/permissions.php @@ -0,0 +1,21 @@ + 'レポートを作成/編集/削除する', + 'reports_approve' => 'レポートを承認する', + 'reports_verify' => 'レポートを検証する', + 'reports_comments' => 'レポートのコメントを管理する', + 'reports_download' => 'レポートをダウンロードする', + 'reports_upload' => 'レポートをアップロードする', + 'messages' => 'メッセージを管理する', + 'messages_reporters' => 'レポート作成者を管理する', + 'stats' => '統計情報を閲覧する', + 'settings' => '設定を修正する', + 'manage' => '管理パネル', + 'users' => 'ユーザを管理する', + 'manage_roles' => '役割を管理する', +); diff --git a/application/i18n/ja_JP/private_message.php b/application/i18n/ja_JP/private_message.php new file mode 100644 index 0000000000..35437dc93f --- /dev/null +++ b/application/i18n/ja_JP/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => '親IDは数字でなければなりません', + ) , + 'private_to' => array( + 'required' => 'To欄は必ず入力してください', + 'exists' => 'あなたがメッセージを送ろうとしているユーザは、存在しません', + ) , + 'private_subject' => array( + 'required' => '件名は必須です', + 'length' => '件名の長さは、3字以上150字以下でなければなりません。', + ) , + 'private_message' => array( + 'required' => '本文は必須項目です', + ) , +); diff --git a/application/i18n/ja_JP/report.php b/application/i18n/ja_JP/report.php new file mode 100755 index 0000000000..5547345492 --- /dev/null +++ b/application/i18n/ja_JP/report.php @@ -0,0 +1,124 @@ + 'エラーが発生しました。', + 'country_name' => array( + 'single_country' => '複数の国にまたがるレポートを扱うことはできません。レポートで扱っている場所が%sの国内であるか、確認して下さい。', + ) , + 'custom_field' => array( + 'values' => '"%s"欄に正しい形式のデータを入力してください。', + 'numeric' => '"%s"欄は数値でなければなりません。', + 'required' => '"%s"は必須項目です。', + 'not_exist' => '"%s"欄は存在しません。', + 'permission' => 'あなたには"%s"を編集する権限はありません。', + 'email' => '"%s"欄には正しい形式のメールアドレスを入力する必要があります。', + 'phone' => '"%s"欄には正しい形式の電話番号を入力する必要があります。', + 'date_mmddyyyy' => '"%s"欄には正しい形式の日付を入力する必要があります。(月2桁/日2桁/年4桁)', + 'date_ddmmyyyy' => '"%s"欄には正しい形式の日付を入力する必要があります。(日2桁/月2桁/年4桁)', + ) , + 'data_include' => array( + 'between' => 'ダウンロードを行うため有効な値を選択してください。', + 'numeric' => 'ダウンロードを行うため有効な値を選択してください。', + ) , + 'data_point' => array( + 'between' => 'ダウンロードを行うため有効なレポートタイプを選択してください。', + 'numeric' => 'ダウンロードを行うため有効なレポートタイプを選択してください。', + 'required' => 'ダウンロードを行うため有効なレポートタイプを選択してください。', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'FROMの日時が有効なフォーマットではありません。', + 'range' => '有効なFROMの日時を入力してください。今日よりも先になってはいけません。', + ) , + 'incident_active' => array( + 'between' => 'このレポートを承認する、の有効な値を入力してください。', + 'required' => 'このレポートを承認する、の有効な値を入力してください。', + ) , + 'incident_ampm' => array( + 'validvalues' => 'am/pmフィールドに有効な値ではないようです。', + ) , + 'incident_category' => array( + 'numeric' => 'カテゴリーフィールドに入力された値は、有効なカテゴリーではないようです。', + 'required' => 'カテゴリーフィールドは必須です。', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => '日付フィールドに有効な日付の値が入っていないようです', + 'date_mmddyyyy' => '日付フィールドに有効な日付の値が入っていないようです', + 'required' => '日付フィールドは必須です。', + ) , + 'incident_description' => array( + 'required' => '説明フィールドは必須です。', + ) , + 'incident_hour' => array( + 'between' => '時間フィールドに有効な時間が入っていないようです。', + 'required' => '時間フィールドは必須です。', + ) , + 'incident_information' => array( + 'alpha' => '情報の確実性の有効な値を入力してください。', + 'length' => '情報の確実性の有効な値を入力してください。', + ) , + 'incident_minute' => array( + 'between' => '分フィールドに有効な値が入ってい内容です。', + 'required' => '分フィールドは必須です。', + ) , + 'incident_news' => array( + 'url' => 'ニュースのソースリンクフィールドに有効なURLが入っていないようです。', + ) , + 'incident_photo' => array( + 'size' => 'アップロードする写真の最大サイズは2MB以下であることを確認してください。', + 'type' => 'アップロードされた写真は有効な画像フォーマットではないようです。アップロード可能なフォーマットは .JPG、 .PNG、.GIFのみです。', + 'valid' => 'アップロードされた写真に有効なファイルが選択されていないようです。', + ) , + 'incident_source' => array( + 'alpha' => 'ソースの信用性の有効な値を入力してください。', + 'length' => 'ソースの信用性の有効な値を入力してください。', + ) , + 'incident_title' => array( + 'length' => 'タイトルフィールドは最低3文字、最高200文字以下でなければいけません。', + 'required' => 'タイトルフィールドは必須です。', + ) , + 'incident_verified' => array( + 'between' => 'このレポートを実証する、の有効な値を入力してください。', + 'required' => 'このレポートを実証する、の有効な値を入力してください。', + ) , + 'incident_video' => array( + 'url' => 'ビデオリンクフィールドに有効なURLが入っていないようです。', + ) , + 'latitude' => array( + 'between' => '緯度フィールドに有効な緯度の値が入ってい内容です。', + 'required' => '緯度フィールドは必須です。地図をクリックし、場所の選択をしてください。', + ) , + 'locale' => array( + 'alpha_dash' => 'ロケールフィールドに無効な値が入っています。', + 'exists' => 'すでにレポートはこの言語に翻訳されています。', + 'length' => 'ロケールフィールドに無効な値が入っています。', + 'locale' => 'オリジナルレポートと、翻訳は同じロケール(言語)です。', + 'required' => 'ロケールは必須です。', + ) , + 'location_name' => array( + 'length' => 'ロケール名は最低3文字、最高200文字以下でなければいけません。', + 'required' => 'ロケーション名は必須です。', + ) , + 'longitude' => array( + 'between' => '経度フィールドに有効な経度の値が入っていないようです。', + 'required' => '経度フィールドは必須です。地図をクリックし、場所を選択してください。', + ) , + 'person_email' => array( + 'email' => 'メールアドレスフィールドに有効なメールアドレスが入っていないようです。', + 'length' => 'メールフィールドは最低4文字以上、最高64文字以下でなければいけません。', + ) , + 'person_first' => array( + 'length' => '名前は最低3文字以上、最高100文字以下でなければいけません(カタカナで書く事をおすすめします)。', + ) , + 'person_last' => array( + 'length' => '名字は最低3文字以上、最高100文字以下でなければいけません(カタカナで書く事をおすすめします)。', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'TOの日時フィールドに有効な日時が入ってないようです。', + 'range' => '有効なTOの日時を入力してください。今日よりも先の日時には出来ません。', + 'range_greater' => 'FROMの日時は、TOの日時よりも先にする事は出来ません。', + ) , +); diff --git a/application/i18n/ja_JP/reporters.php b/application/i18n/ja_JP/reporters.php new file mode 100755 index 0000000000..c15daf4b8f --- /dev/null +++ b/application/i18n/ja_JP/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => '緯度には正しい緯度が入力されていないようです。', + 'required' => '緯度は必須項目です。地図上でロケーションを選択してください。', + ) , + 'level_id' => array( + 'numeric' => 'レポーターレベルには正しいレベル値が入っていないようです。', + 'required' => 'レポーターレベルには正しいレベル値が入っていないようです。', + ) , + 'location_name' => array( + 'length' => 'ロケーション名は最低3文字、最高200文字以内でないといけません。', + 'required' => 'ロケーション名は必須です。', + ) , + 'longitude' => array( + 'between' => '緯度フィールドに有効な緯度が入っていないようです。', + 'required' => '緯度は必須です。地図上でロケーションを選択してください。', + ) , + 'reporter_id' => array( + 'numeric' => '無効なレポーターです。', + 'required' => '無効なレポーターです。', + ) , +); diff --git a/application/i18n/ja_JP/reports.php b/application/i18n/ja_JP/reports.php new file mode 100644 index 0000000000..b592be4256 --- /dev/null +++ b/application/i18n/ja_JP/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'アイテムをチェックしたか、確認して下さい。', + 'numeric' => 'アイテムをチェックしたか、確認して下さい。', + 'categories_required' => 'レポートを承認してもらうには、カテゴリを付与しなければなりません。', + ) , + 'action' => array( + 'permission' => 'あなたには、この操作をする権限がありません。', + ) , + 'uploadfile' => array( + 'required' => 'アップロードするファイルを選択して下さい。', + 'type' => 'アップロードするファイルは、csv形式またはxml形式でなければなりません。', + 'valid' => 'アップロードするファイルとして、アップロードできないファイルが指定されているようです。', + ) , +); diff --git a/application/i18n/ja_JP/roles.php b/application/i18n/ja_JP/roles.php new file mode 100755 index 0000000000..21784f3e09 --- /dev/null +++ b/application/i18n/ja_JP/roles.php @@ -0,0 +1,18 @@ + array( + 'length' => '説明は最低3文字、最高100文字以下でなければなりません。', + 'required' => '説明は必須項目です。', + ) , + 'name' => array( + 'alpha_numeric' => '名前は文字列か数字のみ入力可能です。', + 'length' => '名前のフィールドは最低2文字、最大30文字以下でなければいけません。', + 'nomodify' => 'スーパー管理者は変更出来ません。', + 'required' => '名前フィールドは入力必須です。', + ) , +); diff --git a/application/i18n/ja_JP/settings.php b/application/i18n/ja_JP/settings.php new file mode 100755 index 0000000000..cbbe545ad8 --- /dev/null +++ b/application/i18n/ja_JP/settings.php @@ -0,0 +1,200 @@ + array( + 'between' => 'コメント許可フィールドに正しい値が入っていないようです。', + 'required' => 'コメント許可フィールドは必須です。', + ) , + 'allow_feed' => array( + 'between' => 'フィードフィールドに正しい値が入ってないようです。', + 'required' => 'フィードは必須です。', + ) , + 'allow_reports' => array( + 'between' => 'レポート許可フィールドには正しい値が入っていないようです。', + 'required' => 'レポート許可は必須です。', + ) , + 'allow_stat_sharing' => array( + 'between' => '統計共有フィールドに正しい値が入っていないようです。', + 'required' => '統計共有は必須です。', + ) , + 'api' => array( + 'default_record_limit' => 'API越しでレコードを取得するのではディフォルトで無効です。', + 'maximum_record_limit' => 'API越しでレコードを取得出来最大数', + 'maximum_requests_per_ip_address' => 'IPアドレス毎のAPIリクエストの最大数', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Akismetフィールドには正しい値が入ってないようです。', + 'length' => 'Akismetフィールドには正しい値が入ってないようです。', + ) , + 'banner_image' => array( + 'size' => 'バナー画像の容量が250KB未満であることを確認して下さい。', + ) , + 'cache_pages' => array( + 'between' => 'キャッシュページは入力必須です。', + 'required' => 'キャッシュページフィールドには正しい値が入ってないようです。', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'キャッシュページの有効期間フィールドには正しい値が入っていないようです。', + 'required' => 'キャッシュページ有効期間は入力必須です。', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'あなたのサーバーはクリーンURLを正しく扱えないようです。この機能を有効する前に、サーバの設定をする必要があります。このフォームの投稿の詳細を確認してください。', + 'clean_url_enabled' => 'この設定はUshahidiは"index.php"ではなくクリーンURLでアクセス出来るようにします。', + 'enable_clean_url' => 'クリーンURLを有効にする', + 'title' => 'クリーンURL', + ) , + 'clickatell_api' => array( + 'length' => 'ClickatellのAPI入力番号は20文字以下ではなければいけません。', + 'required' => 'ClickatellのAPI番号は入力必須です。', + ) , + 'clickatell_password' => array( + 'length' => 'Clickatellパスワードは最低5文字、最大50文字以下の入力する必要があります。', + 'required' => 'Clickatellパスワードは入力必須です。', + ) , + 'clickatell_username' => array( + 'length' => 'Clickatellのユーザー名は50文字以下でなければいけません。', + 'required' => 'Clickatellのユーザー名は入力必須です。', + ) , + 'configure_map' => '地図を設定する', + 'default_location' => 'ディフォルトの位置', + 'default_map_all' => array( + 'alpha_numeric' => '色フィードに正しい値が入っていないようです。', + 'length' => '色は6文字以下でなければいけません。', + 'required' => '色は必須です。', + ) , + 'default_map_view' => 'ディフォルトの地図の見え方', + 'default_zoom_level' => 'ディフォルトのズームのレベル', + 'download_city_list' => 'GeoNamesからの市町村の収集', + 'email_host' => array( + 'length' => 'メールサーバーのポート入力が長過ぎます。', + 'numeric' => 'メールサーバーのポートには数字のみ入力可能です。', + ) , + 'email_password' => array( + 'length' => 'メールサーバーのパスワードは最少5文字、最大50文字以下でなければいけません。', + 'required' => 'メールサーバーのパスワードは入力必須です。', + ) , + 'email_port' => array( + 'length' => 'メールサーバーのポートの入力されている値が長過ぎます。', + 'numeric' => 'メールサーバーのポート値は数字のみでなければいけません。', + ) , + 'email_servertype' => array( + 'length' => 'メールサーバーのポートの入力されている値が長過ぎます。', + 'required' => 'メールサーバーのタイプは必須です。', + ) , + 'email_username' => array( + 'length' => 'メールサーバーのユーザー名は最大50文字以下でなければいけません。', + 'required' => 'メールサーバのユーザー名は入力必須です。', + ) , + 'google_analytics' => array( + 'length' => 'Google Analyticsは有効なUA-XXXXX-XXというフォーマットのウェブプロパティIDを入力する必要があります。', + ) , + 'https' => array( + 'enable_https' => 'HTTPSを使用する', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => '表側のページ毎に表示するアイテムのフィールドに正しい値が入っていないようです。', + 'required' => '表側のページ毎に表示するアイテムは入力必須です。', + ) , + 'items_per_page_admin' => array( + 'between' => '管理側のページ毎に表示するアイテムのフィールドに正しい値が入っていないようです。', + 'required' => '管理側のページ毎に表示するアイテムは入力必須です。', + ) , + 'map' => array( + 'default_location' => '地図提供者の設定をするのは簡単です。提供者を選択し、APIを取得し、入力するだけです。', + 'zoom' => 'ズームレベル', + ) , + 'map_provider' => array( + 'choose' => '地図提供者を選択する', + 'enter_api' => 'APIキーを入力する', + 'get_api' => 'APIキーを取得する', + 'info' => '地図提供者の設定をするのは簡単です。提供者を選択し、APIを取得し、入力するだけです。', + 'name' => '地図提供者', + ) , + 'map_settings' => '地図設定', + 'multiple_countries' => 'このUshahidiは、複数の国にまたがっていますか', + 'select_default_location' => 'デフォルトの国を選択してください。', + 'set_location' => '地図をクリック&ドラッグして、正しい位置を選択してください。', + 'site' => array( + 'allow_clustering' => '地図上のレポートをひとまとめにする', + 'allow_comments' => 'レポートへのコメント投稿を許可', + 'allow_feed' => 'ウェブサイトのRSSニュースフィードを含める', + 'allow_reports' => 'レポート投稿を許可', + 'api_akismet' => 'Akismetキー', + 'cache_pages' => 'キャッシュページ', + 'cache_pages_lifetime' => 'キャッシュページの有効期間', + 'checkins' => 'チェックイン', + 'copyright_statement' => 'サイトの利用ライセンス', + 'default_category_colors' => 'すべてのカテゴリーのデフォルトの色', + 'delete_banner_image' => 'バナー画像を削除する', + 'display_contact_page' => 'コンタクトページを表示する', + 'display_howtohelp_page' => '"手助けする"ページを表示する', + 'email_alerts' => 'メールアドレスに通告する', + 'email_notice' => 'メールでレポートを受け取る場合は、メールアカウント設定をしてください。', + 'email_site' => 'サイトのメールアドレス', + 'google_analytics_example' => 'ウェブプロパティID - フォマット: UA-XXXXX-XX', + 'items_per_page' => 'ページ毎のアイテム - 表側', + 'items_per_page_admin' => 'ページ毎のアイテム - 裏側', + 'kismet_notice' => '自動でAkismetを使ってスパムコメントを防いでください。
WordPress.com ユーザーアカウントに無償登録するとフリーのAPIキーを取得する事が出来ます。', + 'laconica_configuration' => 'Laconica証明書', + 'laconica_site' => 'Laconica サイト', + 'language' => 'サイト言語', + 'message' => 'サイトメッセージ', + 'name' => 'サイト名', + 'private_deployment' => 'プライベートサイト', + 'share_site_stats' => '統計を有効にする(Ushahidiサーバに蓄積されます)', + 'tagline' => 'サイトのタグライン', + 'timezone' => 'タイムゾーン', + 'title' => 'サイト設定', + 'twitter_configuration' => 'ツイッター収集タグ', + 'twitter_hashtags' => 'ハッシュタグ - カンマ区切りにしてください', + ) , + 'site_email' => array( + 'email' => 'サイトのメールアドレスフィールドには正しい値が入っていないようです。', + 'length' => 'サイトのメールアドレスは最低4文字以上、最低100文字以下でなければいけません。', + ) , + 'site_name' => array( + 'length' => 'サイト名は最低3文字、最大50文字以下でなければいけません。', + 'required' => 'サイト名は入力必須です。', + ) , + 'site_tagline' => array( + 'length' => 'タグラインは最低3文字以上、最大100文字以下でなければいけません。', + 'required' => 'タグラインは入力必須です。', + ) , + 'sms' => array( + 'clickatell_api' => 'ClickatellのAPI番号です', + 'clickatell_check_balance' => 'Clickatellのクレジットバランスを確認する', + 'clickatell_load_balance' => 'クレジットバランスを取り込む', + 'clickatell_password' => 'Clickatellパスワード', + 'clickatell_text_1' => 'ここをクリックしてClickatellサーバに登録する', + 'clickatell_text_2' => '以下にClickatellのアクセス情報を入力する', + 'clickatell_username' => 'Clickatellユーザー名', + 'flsms_description' => 'FrontlineSMSは、無料の、そしてオープンソースのソフトウェアです。FrontlineSMSを使用して、携帯電話で多くの人と文章のメッセージをやり取りすることができます。下にある四角形をクリックすると、FrontlineSMS.comから最新版をダウンロードします。', + 'flsms_download' => 'FrontlineSMSをダウンロードし、インストールする', + 'flsms_text_1' => '以下のフィールドにSMSにつながる電話番号を入力してください。', + 'flsms_text_2' => '+や-を入れないで番号を入力してください。', + 'option_1' => 'オプション1: SMSを使う', + 'option_2' => 'オプション2 : グローバルなSMSのゲートウェイを使う', + 'title' => 'SMS設定オプション', + ) , + 'sms_no1' => array( + 'length' => '電話番号のフィールド1が正しい値が入力されてないようです。', + 'numeric' => '電話番号フィールド1は番号のみ入力可です。', + ) , + 'sms_no2' => array( + 'length' => '電話番号フィールド2の値は長過ぎます。', + 'numeric' => '電話番号フィールド2は番号のみ入力可です。', + ) , + 'sms_no3' => array( + 'length' => '電話番号フィールド3の値は長過ぎます。', + 'numeric' => '電話番号フィールド3は番号のみ入力可です。', + ) , + 'twitter' => array( + 'title' => 'Twitterの設定', + ) , + 'test_settings' => '設定を試す', +); diff --git a/application/i18n/ja_JP/sharing.php b/application/i18n/ja_JP/sharing.php new file mode 100755 index 0000000000..d4ff73e5b0 --- /dev/null +++ b/application/i18n/ja_JP/sharing.php @@ -0,0 +1,25 @@ + '立ち入り日時', + 'date_added' => '追加日時', + 'last_access' => '最終アクセス', + 'sharing_color' => array( + 'length' => 'カラーフィールドは6文字でなければいけません。', + 'required' => 'カラーフィールドは必須です。', + ) , + 'sharing_name' => array( + 'length' => '共有名は有効ではないようです。', + 'required' => '共有名は必須です。', + ) , + 'sharing_url' => array( + 'exists' => 'サイトurlはすでに存在します。', + 'length' => 'サイトurlは有効形式ではないようです', + 'required' => 'サイトurlは必須です。', + 'url' => 'サイトurlフィールドに有効な値が入っていないようです。', + ) , +); diff --git a/application/i18n/ja_JP/stats.php b/application/i18n/ja_JP/stats.php new file mode 100755 index 0000000000..abb5b156ac --- /dev/null +++ b/application/i18n/ja_JP/stats.php @@ -0,0 +1,40 @@ + '承認済み', + 'categories' => 'カテゴリー', + 'category_impact' => 'カテゴリーの影響力', + 'choose_date_range' => '期間を選択する', + 'countries' => '国々', + 'country' => '国', + 'country_breakdown' => '国内の細分化', + 'description' => 'こんにちは。ここは統計セクションです。一般的な説明は後ほどこの場所に表示されます。コンテンツが作成されるまで、今しばらく上記されているサブカテゴリーのリンクを閲覧するなどしてください。', + 'error' => 'エラー', + 'glossary' => '単語', + 'hit_summary' => '要約', + 'legend' => '凡例', + 'pageviews' => 'ページビュー', + 'pageviews_description' => 'あなたのサイトを、訪問者がページを閲覧したトータル数', + 'reports' => 'レポート', + 'reports_categories' => 'レポートカテゴリー', + 'reports_statistics' => 'レポート統計', + 'reports_status' => 'レポート状況', + 'report_punchcard' => 'レポートパンチカード', + 'report_stats' => 'レポート統計', + 'stats_not_setup' => '統計は設定されていません。', + 'time_range_1' => '1ヶ月', + 'time_range_2' => '3ヶ月', + 'time_range_3' => '6ヶ月', + 'time_range_all' => 'すべて', + 'unapproved' => '未承認', + 'unique_visitors' => 'ユニーク訪問者', + 'unverified' => '未確認', + 'verified' => '確認済み', + 'visitor_summary' => '訪問者の要約', + 'visits' => '訪問', + 'visits_description' => 'このサイトを訪問するユニークユーザーは、再度にページを見てから30分以上経ってから登録しています。', +); diff --git a/application/i18n/ja_JP/tooltips.php b/application/i18n/ja_JP/tooltips.php new file mode 100755 index 0000000000..00a93f8d5c --- /dev/null +++ b/application/i18n/ja_JP/tooltips.php @@ -0,0 +1,70 @@ + array( + 'add_to_category' => 'レポートをもう一つのカテゴリに所属させます。ここでカテゴリ1を選択したとき、そのレポートがすでにカテゴリ2に属していた場合には、そのレポートはカテゴリ1とカテゴリ2の両方に属することになります。', + 'approve' => '報告を認めるかどうか。認めた場合、全体に対して公開されます。', + 'assign_badge' => 'きっかけになったユーザに対して、バッジを進呈することができます。進呈するバッジを選んでください。', + 'email_body' => '送信されるメールの本文', + 'email_subject' => '送信されるメールの件名', + 'keywords' => 'キーワードについて印を付けなくても良い場合は空欄のままにしてください。複数の言葉を追加する場合には、それぞれの言葉をコンマ(,)で区切る必要があります。例えば、誰かがメッセージの中で"love"とか"peace"について言及していた時に反応するようにしたい場合は、"キーワードボックスにlove, peace"と入力する必要があります。', + 'report_title' => 'これは、既定のレポート件名です。', + 'verify' => 'レポートの内容が確認されたかどうか印す。', + ) , + 'default_value' => 'それぞれの値はコンマで区切ってください。具体的には、"value1, value2"のようになります。', + 'private_subject' => 'プライベートメッセージの件名', + 'private_message' => 'プライベートメッセージ', + 'profile_color' => '公開プロフィールで使う、あなたのプロフィール写真の背景の色を選択できます。ここで指定した色は、あなたのチェックインの際に地図に表示される点の色にもなります。', + 'profile_email' => 'あなたのメールアドレス', + 'profile_name' => 'あなたの氏名', + 'profile_new_password' => '入力された文字列は、あなたの新しいパスワードになります。パスワードを変更したくない場合は空白のままにしてください。', + 'profile_notify' => '「はい」を選択すると、あなたのウェブサイトにレポートやコメントが投稿された際、通知メールが届きます。', + 'profile_password' => 'パスワード: 現在のパスワードのままにしたい場合は空白にしてください。', + 'profile_public' => 'このオプションを有効にすると、あなたのプロフィールをインターネットにアクセスするすべての人が閲覧できるようになります。また、このオプションを有効化することは、あなたの投稿やチェックイン、バッジなどをまとめて他の人に見せる最も簡単な方法でもあります。', + 'profile_public_url' => 'これは、あなたの公開プロフィールのアドレスです。', + 'profile_username' => 'ユーザー名は変更出来ません。', + 'settings_alert_email' => 'このメールアドレスはアラートを送るメールアドレスとして使われます。', + 'settings_allow_clustering' => '地図には似通ったレポートを1つのボットで表示させています。', + 'settings_allow_comments' => 'このメインサイトでレポートに対してコメントを許可します。', + 'settings_allow_feed' => 'このメインサイトで新しいフィードをRSSで表示する事を許可します。', + 'settings_allow_reports' => 'ウェブフォーム越しに情報を送信する事を許可します。', + 'settings_api_default_record_limit' => 'API越しにレコードを取得する事はディフォルトは無効です。', + 'settings_api_max_record_limit' => 'API越しにレコードを取得する最大リクエスト数', + 'settings_api_max_requests_per_ip' => 'IPアドレス毎の最大APIリクエスト数', + 'settings_blocks_per_row' => '一行に表示される項目の数', + 'settings_cache_pages' => 'ページのキャッシュ機能を無効、有効化で来ます。これはページを早く表示する事が出来ます。もしアクセスが多いページならばキャッシュを使う事をお勧めします。** レポートは以下に設定するキャッシュ有効期間に依存して表示されます。', + 'settings_cache_pages_lifetime' => 'キャッシュの有効期間を設定', + 'settings_checkins' => 'この設定はサイトへチェックインを有効にします。これはホームページに載る前の検閲を行わずレポートタイプを簡素化する物で、特定の方法を経ないと行えないようになっています。これを有効にした場合は、時間設定がUTCである事を確認し、テーマがチェックインをサポートしているかどうか、確認しましょう。設定ページでテーマへのアドオンを有効にしないと使えません。', + 'settings_configure_map' => '特定のロケーションをカバーする地図を設定する', + 'settings_default_category_colors' => 'このサイト上のすべてのカテゴリーに適応する色を一色設定する', + 'settings_default_location' => 'この国はすでに利用されています。', + 'settings_display_contact' => 'このメインサイトでのコンタクトタブを非表示する', + 'settings_display_howtohelp' => 'このメインサイトでのヘプルタブを非表示する', + 'settings_display_items_per_page' => 'このメインサイトでページ毎に表示されるレポート数です。', + 'settings_display_items_per_page_admin' => '管理メージでページ毎に表示されるレポート数です。', + 'settings_flsms_download' => '新規に追加されるメッセージのメインになる部分です。', + 'settings_flsms_synchronize' => 'Ushahidiプラットフォームと連携をする同期メッセージです。', + 'settings_flsms_text_1' => '携帯電話から送られるテキストメッセージを受信します。', + 'settings_google_analytics' => 'サイトの訪問者を追跡します。訪問者の詳細統計を取得します。', + 'settings_locale' => 'このサイトの言語を設定します。', + 'settings_map_provider' => 'このサイトで使われる地図を設定します。', + 'settings_private_deployment' => 'この設定を有効にした場合は、このサイトをプライベートモードにし、あなたが許可したユーザーだけがアクセス出来るようになります。', + 'settings_server_host' => 'ここにメールアドレスが表示されます。', + 'settings_server_password' => 'レポートを受信する為のメールアドレス用のパスワードになります。', + 'settings_server_port' => 'メールアドレスから受信用に接続する為に必要です。', + 'settings_server_ssl_support' => 'セキュリティ接続を行う為にも必要です。', + 'settings_server_type' => '干すとサーバからメールを取得する為にも必要です。', + 'settings_server_username' => 'レポートを受信する為のメールアドレスです。', + 'settings_share_site_stats' => 'Ushahidiのサーバー管理の元にアクセス統計が取られています。このオプションを有効にする為には、管理画面でアクセス統計ページで設定出来ます。無効にした場合は、無効時のアクセス統計は取られませんので、(向こう期間を)さかのぼって統計をする事は出来ません。', + 'settings_site_copyright_statement' => 'コピーライトを常に表示しておく事はいいアイディアです。どのライセンス形態で行いたいか調べたい場合は、こちら http://creativecommons.org/choose/', + 'settings_site_email' => 'コンタクトフォームからメールレポートとメッセージを受信する為のメールアドレスです。', + 'settings_site_message' => 'ホームページの地図上に表示されるテキストです。これは訪問者に重要な情報をお知らせする時に有効です。メッセージを削除する事で、表示されなくなります。', + 'settings_site_name' => 'このメインサイトのトップに表示されるサイト名です。', + 'settings_site_tagline' => 'このサイトについて説明してください。', + 'settings_site_timezone' => 'Webサイトのタイムゾーンです。この設定は、デフォルトの時間が表示に影響を与えるのと同じように、日時の情報に関連するすべての操作に影響します。', + 'settings_twitter_configuration' => 'ツイート時に利用されるハッシュタグを設定します。', +); diff --git a/application/i18n/ja_JP/ui_admin.php b/application/i18n/ja_JP/ui_admin.php new file mode 100755 index 0000000000..e0e2898653 --- /dev/null +++ b/application/i18n/ja_JP/ui_admin.php @@ -0,0 +1,243 @@ + 'アクセス禁止です。無効な証明書を入力したか、リクエストが拒否されたかのどちらかでしょうk。', + 'access_denied_others' => 'アクセス禁止です。リクエストは受け付けましたが、現在のアクセス制限の為アクセス出来ません。後でトライしてください。', + 'actions' => 'アクション', + 'add_to_category' => 'カテゴリに追加する', + 'added' => '追加済', + 'added_edited' => '追加済/編集済', + 'addons' => 'アドオン', + 'admin_role' => '管理', + 'alerts_received' => '受信したアラート', + 'anonymous' => '匿名', + 'anyone_role' => '無制限', + 'api_banned' => 'API 禁止', + 'api_logs' => 'API ログ', + 'api_settings' => 'API 設定', + 'api_unban' => '禁止を解除する', + 'api_unban_all' => 'すべて許可する', + 'approved' => '承認済み', + 'approve_auto' => '自動承認', + 'approve_manual' => '手動承認', + 'archived' => 'アーカイブ', + 'are_you_sure_you_want_to' => '本当に処理をしますか', + 'are_you_sure_you_want_to_delete_this_item' => 'このアイテムを本当に削除しますか', + 'are_you_sure_you_want_to_delete_this_photo' => 'この写真を本当に削除しますか', + 'are_you_sure_you_want_to_switch_forms' => '本当にフォームを変更しますか', + 'author' => '投稿者', + 'author_email' => '投稿者メールアドレス', + 'back' => '戻る', + 'banip_action' => '禁止IP', + 'cancel' => 'キャンセル', + 'categories' => 'カテゴリー', + 'chart_display_error' => 'チャート表示エラー', + 'check_message_valid' => 'メッセージが有効か確認してください。', + 'check_number' => '番号が正しいか確認してください。', + 'check_sms_settings' => 'SMS設定を確認してください。', + 'checkins' => 'チェックイン', + 'cities_loaded' => '街を読み込んでいます。', + 'code' => 'コード', + 'code_out_of_sync' => 'コードのバージョンが同期対象外です', + 'comments' => 'コメント', + 'confirmation_code' => 'アラート確認コードは:', + 'confirm_msg' => 'このユーザーは', + 'country_not_found' => '国が見つかりません', + 'created_edited' => '追加済/編集済', + 'create_report' => 'レポートを作成する', + 'critical_upgrade' => '緊急アップグレード', + 'daily' => '毎日', + 'dashboard' => 'ダッシュボード', + 'database' => 'データベース', + 'date_time' => '日&時間', + 'date_added' => '追加日時', + 'date_modified' => '修正日時', + 'db_out_of_sync' => 'DBのバージョンが同期対象外です', + 'deleted' => '削除済み', + 'delete_action' => '削除', + 'delete_all' => 'すべてのレポートを削除する', + 'demo' => 'デモ', + 'description' => '説明', + 'disabled' => '無効', + 'download_reports' => 'レポートをダウンロード', + 'edited_by' => '編集者', + 'edit_action' => '編集', + 'edit_log' => 'ログを編集する', + 'email' => 'メール', + 'error_geocoding' => 'ジオコードエラー!HTTPエラーです', + 'error_imap' => 'IMAP PHP ライブラリがインストールされていません。', + 'error_twitter' => '不正な証明書', + 'error_msg' => 'エラー', + 'error_post_incident' => 'エラー、インシデントを投稿出来ませんでした。', + 'every_six_hours' => '毎6時間', + 'every_twelve_hours' => '毎12時間', + 'experimental' => '実験', + 'faqs' => 'FAQ', + 'feed' => 'フィード', + 'feedback' => 'フィードバック', + 'feeds' => 'フィード', + 'field_default' => 'ディフォルト値', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_text' => '自由記述', + 'field_height' => '高さ', + 'field_maxlength' => '文字の最大入力値', + 'field_name' => 'フィールド名', + 'file_not_found_upload' => 'アップロードファイルが見つかりませんでした。', + 'file_open_error' => 'ファイルを読み込めませんでした。', + 'form_not_exists' => 'フォームが見つかりません', + 'forum' => 'フォーム', + 'free_text_field' => 'テキストエリアフィールド(自由枠)', + 'from' => 'から', + 'from_date' => 'から', + 'geonames_timeout' => 'ジオネームタイムアウトエラー', + 'get_help' => 'ヘルプを得る', + 'get_more_themes' => '新しいテーマを取得する', + 'header_actions' => 'アクション', + 'header_add_edit' => '追加/編集', + 'header_email' => 'メール', + 'header_manage_users' => 'ユーザーを管理する', + 'header_role' => '役割', + 'header_user' => 'ユーザー', + 'help' => 'ヘルプ', + 'hourly' => '毎時間', + 'incident_feed' => 'インシデントのフィード', + 'installer_info' => 'インストール先フォルダがまだ残っています。セキュリティ上の問題になる可能性があるため、削除してください。', + 'instance' => 'インスタンス', + 'instances' => 'インスタンス', + 'instance_details' => 'インスタンス詳細', + 'invalid_parameter' => '無効なパラメーター', + 'ip_address' => 'IPアドレス', + 'is_date' => '日付フィールドですか?', + 'label_email' => 'メールアドレス: ', + 'label_full_name' => '氏名: ', + 'label_password' => 'パスワード:', + 'label_role' => '役割:', + 'label_username' => 'ユーザー名:', + 'layers' => 'レイヤー', + 'login_role' => 'モデレーター', + 'logout' => 'ログアウト', + 'logs' => 'ログ', + 'manage' => '管理', + 'manage_roles' => '役割と権限を管理する', + 'manage_users' => 'ユーザーを見る', + 'manage_users_edit' => 'ユーザーを追加/編集する', + 'marked_as_not_spam' => 'スパムではないと認定する', + 'marked_as_spam' => 'スパムと認定する', + 'match_no_documents' => 'どのドキュメントにもマッチしませんでした。', + 'message' => 'メッセージ', + 'messages' => 'メッセージ', + 'messages_laconica' => 'Laconicaに投稿', + 'messages_twitter' => 'ツイッターに投稿', + 'message_sent' => 'メッセージは投稿されました。', + 'minutes' => '分', + 'missing_parameter' => 'パラメーターが足りません', + 'moderator' => 'モデレーター', + 'modified' => '編集済み', + 'modify_timezone' => 'タイムゾーンの設定を変更する', + 'move_down_action' => '取り下げる', + 'move_up_action' => '取り上げる', + 'multiple_hosted_instances' => 'マルチホストされたインスタンス', + 'my_profile' => 'プロフィール', + 'name' => '名前', + 'new_private' => '新しいメッセージを作成する', + 'new_password' => '新しいパスワード', + 'no' => 'いいえ', + 'none_category_explanation' => 'これは特殊なカテゴリであり、レポートを投稿しようとするユーザに対しては表示されません。これは、カテゴリ削除の結果生じた、カテゴリに属していないレポート(未分類レポート)を保持するために使用されます。', + 'notification' => '通知', + 'not_case_sensitive' => 'これは大文字小文字の判別をしません。', + 'not_found' => '見つかりません', + 'no_data' => 'データがありません。表示する結果がありません。', + 'no_error' => 'エラーはありません。', + 'no_result_display_msg' => '表示する結果がありません!', + 'of' => 'の', + 'openids' => 'OpenID', + 'page' => 'ページ', + 'pages' => 'ページ', + 'page_not_found' => 'ページが見つかりません', + 'page_not_found_message_with_contact' => 'ご指定のページはここには存在しません。

このページにこのサイトの他のページのリンクから移動してきましたか?
もしもこのサイトの別のページから移動してきた場合には、修正いたしますので、お手数ですが管理者までご連絡ください。

ほかのサイトのページから移動しましたか?
ほかのサイトのページのリンクは、情報が古くなっていたり、間違っていたりする可能性があります。どのページから移動してきたのか、管理者までご連絡ください。そのサイトの管理者に連絡を取り、問題を修正できるかもしれません。

URLを直接指定してアクセスしましたか?
ご指定のアドレス(URL)が間違っているかもしれません。URLの綴りは正しいか、また大文字と小文字の使い分けは正しいのかなどを確認して下さい。

', + 'page_not_found_message' => 'ご指定のページはここには存在しません。', + 'parameters_used' => 'パラメーターが使われました', + 'password' => 'パスワード', + 'password_reset' => 'パスワードリセット', + 'password_reset_message_line_1' => '親愛なる', + 'password_reset_message_line_2' => 'パスワードリセットするリクエストを受け取りました', + 'password_reset_message_line_3' => 'パスワードを変更する為にか、以下のリンクをクリックしてください(それかコピー&ペーストしてブラウザーに貼付けてください)', + 'password_reset_message_line_4' => 'リクエストされた通り、パスワードはリセットされました。新しい詳細は以下の通りです。', + 'password_reset_subject' => 'Ushahidi パスワードリセット', + 'phone' => '電話', + 'post_method_not_used' => 'データが送信方法で送られませんでした', + 'preview' => 'プレビュー', + 'private_message' => 'メッセージ', + 'private_messages' => 'プライベートメッセージ', + 'private_sent' => '送信済みプライベートメッセージ', + 'private_subject' => '件名', + 'private_to' => '送信先', + 'public_listing' => 'バプリック一覧', + 'read' => '読む', + 'relevance' => '関連性', + 'report_title' => 'レポートの件名', + 'report_date' => 'レポート作成日時', + 'reporters' => 'レポーター', + 'reporter_levels' => 'レポーターレベル', + 'reports' => 'レポート', + 'required' => '必須', + 'reset' => 'リセット', + 'results' => '結果', + 'riverid_exists_admin' => 'そのメールアドレスはすでにCrowdmapIDに登録されています。CrowdmapIDに登録した際のパスワードでログインしてください。', + 'save_settings' => '設定を保存する', + 'search' => '検索', + 'search_reports' => 'レポートを検索する', + 'searching_for' => '探す', + 'security_info_encryption_key' => '暗号化のための鍵が初期設定のままです。セキュリティ上安全でないため、必ず変更してください。', + 'security_info_https' => 'このサイトのデータはHTTPを通して送信されています。セキュリティを向上させるためには、HTTPSを使用する必要があります。', + 'security_info_instructions' => '説明はwikiで閲覧できます:', + 'select_download_format' => 'レポートをどの形式でダウンロードするのか、選択してください。', + 'select_field_type' => '---選択してください---', + 'select_item' => 'アイテムを選択してください。', + 'sender' => '送信者', + 'sent_from_website' => 'メッセージはウェブサイトから送られました', + 'server_time' => 'サーバー時間', + 'settings' => '設定', + 'showing_page' => 'ページを表示', + 'showing_results' => '結果を表示', + 'special_category' => 'スペシャルカテゴリー', + 'special_category_explanation' => 'これは特殊なカテゴリで、レポートを送信するユーザのためのレポート送信画面には表示されません。"信用できるレポート送信者"機能をシステムに追加するために使用されます。', + 'statistics' => '統計', + 'stats' => '統計', + 'stats_collection_error' => '統計集計が失敗しました。後ほど試してみてください。', + 'stats_collection_error_short' => '統計集計が失敗しました!', + 'superadmin_role' => 'スーパー管理者', + 'task_performed' => 'タスク処理済み', + 'text_field' => 'テキストフィールド', + 'theme_name' => '名前', + 'title' => 'ユーザーの管理', + 'timeout' => '処理時間超過エラー', + 'to' => 'と', + 'total_records' => 'すべてのレコード', + 'to_date' => 'と', + 'translate_reports' => 'レポートを翻訳する', + 'unapproved' => '未承認', + 'unknown' => '不明', + 'unread' => '未読', + 'update_link' => 'ここをクリックしてアップグレードする', + 'upgrade_ushahidi' => 'Ushahidiをアップグレード', + 'upgrade_ushahidi_status' => 'Ushahidiのステイタスをアップグレード', + 'upload_reports' => 'レポートをアップロード', + 'users' => 'ユーザー', + 'version' => 'バージョン', + 'version_available' => 'アップグレード可能です。', + 'view_private' => 'プライベートメッセージ', + 'view_site' => 'サイトを見る', + 'view_report' => 'レポートを閲覧する', + 'welcome' => 'ようこそ、', + 'wiki' => 'ウィキ', + 'yes' => 'はい', + 'your_search_for' => '検索結果', + 'delete_all_backup' => '処理を実行する前に、データベースのバックアップをとることをおすすめします。', + 'delete_all_confirm' => '本当にすべてのレポートを削除しますか?', + 'delete_all_no_reports' => '削除可能なレポートがありません。', +); diff --git a/application/i18n/ja_JP/ui_main.php b/application/i18n/ja_JP/ui_main.php new file mode 100755 index 0000000000..a313f2cf19 --- /dev/null +++ b/application/i18n/ja_JP/ui_main.php @@ -0,0 +1,585 @@ + '概略', + 'access' => 'アクセス', + 'access_limits' => 'アクセス制限', + 'account_name' => 'アカウント名', + 'actions' => 'アクション', + 'action_confirm' => 'このアクションは停止する事が出来ません。本当に実行しますか?', + 'activate' => '有効化する', + 'active' => '有効', + 'add' => '追加', + 'added_by' => '追加者', + 'additional_data' => '備考', + 'additional_reports' => '追加レポート', + 'add_edit' => '追加/編集', + 'add_field' => 'フィールド追加', + 'add_language' => '言語の追加', + 'add_new' => '新規追加', + 'add_new_category' => '新規カテゴリ追加', + 'add_translation' => '翻訳追加', + 'admin' => '管理', + 'alerts' => 'お知らせ取得', + 'alerts_alert_me' => 'レポートが提出されたらお知らせを送る', + 'alerts_btn_send' => 'お知らせを保存する', + 'alerts_email' => 'メールアドレス', + 'alerts_enter_email' => 'メールアドレスを入力する', + 'alerts_enter_mobile' => '国番号から携帯番号を入力する', + 'alerts_get' => 'お知らせ取得', + 'alert_has_been' => 'によって警告が発生しています', + 'alerts_mobile_phone' => '携帯番号:', + 'alerts_place_spot' => 'もしくは、以下の地図を選択する事で、20キロ範囲内でレポートが提出されたらアラームをお送りします。', + 'alerts_place_spot2' => 'もし場所を見つけられない場合は、地図上の正しい場所をクリックして修正してください。', + 'alerts_rss' => 'RSSフィード(以下のurlをコピーしてください)', + 'alerts_select_city' => '市町村を選択してください。', + 'alerts_step1_select_city' => 'ステップ 1:街か場所を選択してください:', + 'alerts_step2_send_alerts' => 'ステップ 2: お知らせの送り先:', + 'alerts_step3_select_catgories' => 'ステップ 3 (Optional): カテゴリ選択', + 'alert_confirm_previous' => '前回のお知らせリクエストを確認してください。', + 'alert_saved' => 'お知らせが保存されました。', + 'all' => 'すべて', + 'allowed' => '許可', + 'allowed_tags' => '許可されているHTMlタグは以下のとおりです: "%s"', + 'all_categories' => '全カテゴリ', + 'all_time' => '常に', + 'and' => 'と', + 'api' => 'API', + 'approve' => '承認', + 'approved' => '承認済み', + 'approved_reports' => '承認済みレポート', + 'approve_this_report' => 'このレポートを承認する', + 'approximate' => 'おおよその', + 'archive' => 'アーカイブ', + 'archived' => 'アーカイブ済み', + 'ascending' => '昇順', + 'at' => 'に', + 'author' => '著者', + 'auto_checkin' => '自動チェックイン', + 'avg_reports_per_day' => '一日のレポート平均数', + 'awaiting_approval' => '承認待ち', + 'awaiting_verification' => '認証待ち', + 'badge' => 'バッジ', + 'badges' => 'バッジ', + 'badge_image' => 'バッジ画像', + 'badge_image_upload_your_own' => 'もしくは代わりにご自身のバッジ画像をアップロードする事もできます。', + 'badge_select' => 'バッジを選択する', + 'blog' => 'ブログ', + 'browse_profiles' => 'プロファイルを見る', + 'cancel' => 'キャンセル', + 'categories' => 'カテゴリー', + 'category' => 'カテゴリー', + 'category_filter' => 'カテゴリーフィルター', + 'category_has_been' => 'カテゴリーは', + 'category_name' => 'カテゴリー名', + 'change_date_range' => '期間を変更する', + 'change_password' => 'パスワードを変更する', + 'change_picture' => '自分の画像を変更する', + 'choose' => '選択', + 'choose_data_points' => 'ダウンロードの為にデータポイントを選択してください。', + 'choose_date_range' => 'もしくは指定したい期間を選択して下さい', + 'choose_field_type' => 'フィールドタイプを選択してください。', + 'cleanurl' => 'URLをクリアにする', + 'clear' => '消去する', + 'clear_map' => '地図をクリアにする', + 'close' => '閉じる', + 'clusters' => 'クラスター', + 'color' => '色', + 'comment' => 'コメント', + 'comments' => 'コメント', + 'comment_details' => 'コメント詳細', + 'configuration_saved' => '設定が保存されました!', + 'configure' => '設定', + 'confirm_email_successful' => 'あなたのメールアドレスは認証されました。以下からログインして下さい。', + 'confirm_email_failed' => 'メールによる確認に失敗しました。以下で、確認メールの再送信を要請できます。', + 'contact' => 'お問合せ', + 'contact_code' => 'セキュリティコード', + 'contact_email' => 'あなたのメールアドレス', + 'contact_message' => 'メッセージ', + 'contact_message_has_send' => 'メッセージが送られました', + 'contact_name' => '名前', + 'contact_phone' => '電話番号', + 'contact_send' => 'メッセージを送る', + 'contact_subject' => 'メッセージタイトル', + 'copyright' => 'Copyright c', + 'create' => '作成', + 'create_edit' => '追加/編集', + 'create_new' => '新規追加', + 'create_new_password' => '新しいパスワードを作成する', + 'create_report' => 'レポートを追加', + 'credibility' => '信頼', + 'current_password' => '現在のパスワード', + 'data' => '情報', + 'date' => '日付', + 'date_format' => '(yyyy/mm/dd)', + 'date_time' => '日付&時間', + 'day' => '日', + 'deactivate' => '無効化する', + 'default_location_name' => 'ナイロビ、ケニヤ', + 'delete' => '削除', + 'deleted' => '削除済み', + 'deletes' => '削除', + 'delete_disabled' => '無効化を削除', + 'delete_last' => '最後の投稿を削除', + 'delete_report' => 'このレポートを削除する', + 'delete_selected' => '選択されたものを削除', + 'delete_spam' => 'スパムを削除', + 'demo' => 'デモ', + 'description' => '説明', + 'descending' => '降順', + 'detailed_location_example' => '例: シティーマーケット通りの角、5番&4番通り、ジョナサンバーク', + 'details' => '詳細', + 'direct_report' => 'レポートへの直リンク', + 'disabled' => '無効済み', + 'disapprove' => '未承認', + 'download_reports' => 'レポートをダウンロードする', + 'download' => 'ダウンロード', + 'edit' => '編集', + 'edit_form_fields' => 'フォームのフィールドを編集', + 'edit_report' => 'レポートを編集', + 'email' => 'メール', + 'email_address' => 'メールアドレス', + 'email_configuration' => 'メールサーバー設定', + 'email_server_host' => 'メールサーバーホスト', + 'email_server_password' => 'メールサーバーパスワード', + 'email_server_port' => 'メールサーバーポート', + 'email_server_ssl_support' => 'メールサーバーSSLサポート', + 'email_server_type' => 'メールサーバータイプ', + 'email_server_username' => 'メールサーバーユーザー名', + 'email_settings_comment_0' => 'このメールアドレスはあなたの設定に関連ついている必要があります。', + 'email_settings_comment_00' => 'レポートをメールで受け取る胃は、以下のアカウント設定にメールアドレスを入力する必要があります。メールは以下のメールアドレスに送信されます。', + 'email_settings_comment_1' => 'メールアドレスは全部入力してください。', + 'email_settings_comment_2' => 'メールアカウントパスワード', + 'email_settings_comment_3' => '一般的なポート: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => '例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => '例: pop3, imap', + 'email_settings_comment_6' => 'SSL接続の有効化/無効化', + 'end_point' => 'と', + 'error' => 'エラー!', + 'example' => '例', + 'example_country' => 'ケニヤ', + 'external_apps' => '外部アプリ', + 'external_video_link' => '外部のビデオへのリンク', + 'facebook' => 'フェイスブック', + 'feed' => 'フィード', + 'feedback' => 'フィードバックを提供', + 'feeds' => 'フィード', + 'feed_has_been' => 'フィードは', + 'feed_items' => 'フィードアイテム', + 'feed_name' => 'フィード名', + 'feed_url' => 'フィードURL', + 'field_unused' => '未使用のフィード', + 'file' => 'ファイル', + 'file_over_max_allowed' => 'ファイル容量が大き過ぎます。', + 'filters' => 'フィルター', + 'filter_reports' => 'レポートを選別する', + 'filter_reports_by' => 'レポートを以下の基準で選別する:', + 'filter_reports_contain' => '以下を含むレポートのみを取り出す:', + 'find' => '見つける', + 'find_location' => 'ロケーションを探す', + 'first_name' => '名前', + 'force_run_scheduler' => 'スケジュールを強制的には知らせる', + 'forgot_password' => 'パスワードを忘れてしまいましたか?', + 'form' => 'フォーム', + 'forms' => 'フォーム', + 'form_description' => 'フォーム説明', + 'form_edit' => 'このフォームを編集する', + 'form_has_been' => 'このフォームは', + 'form_title' => 'フォームタイトル', + 'from' => 'から', + 'full_name' => '氏名', + 'geolocation_available' => '可能なジオロケーション', + 'geometry_color' => '色', + 'geometry_comments' => 'コメント', + 'geometry_label' => 'ラベル', + 'geometry_strokewidth' => '幅', + 'go' => '移動する', + 'hashtag' => 'ハッシュタグ', + 'has_been' => 'であった', + 'help' => '助ける方法', + 'hidden' => '隠す', + 'hide' => '隠す', + 'hide_this_message' => 'このメッセージを隠す', + 'home' => 'ホーム', + 'how_to_report' => 'レポートする方法', + 'https' => 'HTTPS', + 'id' => 'ID', + 'image' => 'イメージ', + 'images' => 'イメージ', + 'image_icon' => 'イメージ/アイコン', + 'inactive' => '無効', + 'inbox' => 'インボックス', + 'incident' => '出来事', + 'incidents_nearby' => '近くの出来事', + 'incident_location' => '発生場所', + 'include' => '含む', + 'include_categories' => 'カテゴリーを含む', + 'include_description' => '説明を含む', + 'include_detail' => '含めれるすべての詳細を含む', + 'include_latitude' => '緯度を含む', + 'include_location_information' => 'ロケーション情報を含む', + 'include_longitude' => '経度を含む', + 'include_personal_info' => '個人情報を含む', + 'incoming_media' => 'メディア', + 'information_evaluation' => '情報の評価', + 'input_location' => '前回いた場所を入力してください', + 'in_response_to' => '返答', + 'ip_address' => 'IP アドレス', + 'is_this_your_profile' => 'これはあなたの情報ですか?', + 'item' => 'アイテム', + 'items' => 'アイテム', + 'item_details' => 'アイテム詳細', + 'item_title' => 'アイテムタイトル', + 'key' => 'キー', + 'keywords' => 'キーワード', + 'kml_kmz_file' => 'KMZ/KMLファイル', + 'kml_kmz_upload' => 'KMZ/KMLファイルをアップロード', + 'language' => '言語', + 'last' => 'ラスト', + 'last_month' => '先月', + 'last_name' => '名字', + 'last_year' => '去年', + 'latitude' => '緯度', + 'layers' => 'レイヤー', + 'layers_filter' => '他のレイヤー', + 'layer_has_been' => 'レイヤーは', + 'layer_name' => 'レイヤー名', + 'layer_url' => 'レイヤーURL', + 'leave_a_comment' => 'コメントを残す', + 'level' => 'レベル', + 'level_has_been' => 'このレベルは', + 'level_name' => 'レベル名', + 'limited' => 'リミット', + 'link' => 'リンク', + 'loading_reports' => 'レポートを読み込んでいます...', + 'location' => 'ロケーション', + 'locations' => 'ロケーション', + 'location_example' => '市町村、都道府県もしくは国', + 'login' => 'ログイン', + 'login_account_creation_successful' => 'アカウントの作成が完了しました。ログインが可能です。', + 'login_confirmation_sent' => '指定されたメールアドレスに、確認用のメールを送信しました。', + 'login_email_doesnt_exist' => 'メールアドレスが存在しません。別のメールアドレスを指定するか、作成するかして下さい。', + 'login_with' => '以下のユーザ名でログイン:', + 'login_userpass' => 'メールアドレスとパスワード', + 'login_openid' => 'OpenID', + 'login_signup' => '登録', + 'login_signup_click' => 'アカウントを作成する', + 'login_signup_confirmation_subject' => '登録確認', + 'login_signup_text' => 'このサイトの新たな機能を使用するために、アカウントを作成する。', + 'longitude' => '経度', + 'map' => '地図', + 'mark_read' => '既読', + 'mark_unread' => '未読', + 'maximum_filesize' => '最大のファイルサイズ', + 'media' => 'メディア', + 'media_filter' => 'メディアフィルタ', + 'members' => 'メンバー', + 'manage_your_account' => 'アカウントを管理する', + 'message' => 'メッセージ', + 'messages' => 'メッセージ', + 'message_details' => 'メッセージ詳細', + 'mobile' => 'モバイル', + 'modify' => '編集', + 'modify_date' => '編集日時', + 'month' => '月', + 'more' => 'もっと', + 'more_information' => '更なる情報', + 'multi_country_instance' => 'このUshahidiサイトは複数カ国をまたがっていますか。', + 'name' => '名前', + 'nearby_report' => '直近のレポート', + 'new' => '新着', + 'news' => '新着', + 'news_feeds' => '新着フィード', + 'news_source' => '新着ソース', + 'new_category' => '新着カテゴリ', + 'new_password' => '新しいパスワード', + 'new_report' => '新着レポート', + 'next' => '次', + 'no' => 'いいえ', + 'no_data' => 'データがありません', + 'notices' => '通告', + 'not_approved' => '未承認', + 'not_approved_singular' => '未承認', + 'not_selected' => '---未選択---', + 'not_spam' => 'スパムではない', + 'not_specified' => '選択されていない', + 'no_reports' => 'レポートはありません。', + 'no_results' => '結果はありません。', + 'off' => 'OFF', + 'official_news' => '公式 & 活発な情報源からのニュース', + 'on' => 'ON', + 'option' => '選択肢', + 'optional' => '選択可能な', + 'options' => '選択肢', + 'organization' => '組織', + 'organizations' => '組織', + 'organization_description' => '組織の説明', + 'organization_email' => '組織のメール', + 'organization_has_been' => 'この組織は', + 'organization_name' => '組織名', + 'organization_phone_1' => '組織の電話番号1', + 'organization_phone_2' => '組織の電話番号2', + 'organization_website' => '組織のウェブサイト', + 'original' => 'オリジナル', + 'original_description' => 'オリジナルの説明', + 'original_title' => 'オリジナルタイトル', + 'other_ushahidi_instances' => 'その他のUSHAHIDIサイト', + 'outbox' => 'アウトボックス', + 'outgoing' => 'アウトゴーイング', + 'page' => 'ページ', + 'pages' => 'ページ', + 'page_description' => 'ページ説明', + 'page_has_been' => 'このページは', + 'page_tab_name' => 'ページタブ名', + 'page_title' => 'ページタイトル', + 'parent_category' => '親カテゴリ', + 'password' => 'パスワード', + 'password_again' => 'パスワードを再度入力してください。', + 'password_changed_successfully' => 'パスワードの変更が完了しました。以下からログインして下さい。', + 'password_forgot' => 'パスワードを忘れてしまいましたか?', + 'password_reset_confirm' => '新しいパスワードをお送りしたのでメールをご確認ください。', + 'password_save' => 'このコンピューターにログインを記憶させますか?', + 'past_month' => '過去の月', + 'past_year' => '過去の年', + 'pending' => '保留', + 'per' => '毎', + 'personal_information' => '個人情報選択肢', + 'phone' => '電話番号', + 'photos' => '写真', + 'pictures' => '写真', + 'pictures_and_videos' => '写真とビデオ', + 'pinpoint_location' => '* ロケーション名の経度、緯度、その組み合わせ(フォーマット: 38.19,-85.61)で検索するか、地図のピンポイントを正しい位置にしてください。', + 'play' => '再生', + 'please_note' => '覚えておいてください', + 'plugins' => 'プラグイン', + 'plugin_url' => 'プラグインウェブサイト', + 'public_profile' => '公開プロフィール', + 'public_profile_url' => '公開プロフィールのURL', + 'preview' => 'レビュー', + 'preview_item' => 'レビューアイテム', + 'preview_message' => 'レビューメッセージ', + 'previous' => '前の', + 'private' => '非公開', + 'profile_saved' => 'プロファイルは保存されました。', + 'quick_stats' => 'クイック統計', + 'rating' => '評価', + 'read' => '読む', + 'receive' => '受け取る', + 'receive_from' => '受け取る', + 'receive_notifications' => '通知を受け取る', + 'recent_reports' => '最近のレポート', + 'refresh_news_feeds' => '新しいフィードを再度読み込む', + 'registered_email' => '登録されたメールアドレス', + 'remove' => '削除', + 'reply' => '返信', + 'report' => 'レポート', + 'reporter' => 'レポート作成者', + 'reporters' => 'レポーター', + 'reporter_date' => 'レポートされた日時', + 'reporter_email' => 'レポーターのメール', + 'reporter_first_name' => 'レポーターの名前', + 'reporter_has_been' => 'このレポーターは', + 'reporter_ip' => 'レポーターのIPアドレス', + 'reporter_last_name' => 'レポーターの名字', + 'reporter_level' => 'レポーターのレベル', + 'reporter_levels' => 'レポーターのレベル', + 'reporter_phone' => 'レポーターの電話番号', + 'reports' => 'レポート', + 'reports_btn_browse' => '表示する', + 'reports_btn_submit' => '送信', + 'reports_by_this_user' => 'このユーザにより投稿されたレポート', + 'reports_categories' => 'カテゴリー', + 'reports_count' => '%d レポート', + 'reports_date' => '日時', + 'reports_description' => '説明', + 'reports_download_csv' => 'レポーターはCSVフォーマットでダウンロードされます', + 'reports_email' => 'メール', + 'reports_features' => '機能', + 'reports_find_location' => '近くのロケーションを探す', + 'reports_first' => '名前', + 'reports_last' => '名字', + 'reports_location_name' => 'ロケーションの名前を明確にする', + 'reports_news' => '新しい情報源のリンク', + 'reports_optional' => '参考情報', + 'reports_photos' => '写真をアップロード', + 'reports_return' => 'レポーターのページへ戻る', + 'reports_select_city' => '街を選択する', + 'reports_submitted' => 'あなたのレポートは私たちのスタッフのレビュー待ちになりました。もし必要でしたら再度ご連絡します。', + 'reports_submit_new' => '新しいレポートを提出する', + 'reports_time' => '時間', + 'reports_timeline' => 'タイムライン', + 'reports_title' => 'レポートタイトル', + 'reports_video' => 'ビデオリンク', + 'report_an_incident' => 'インシデントをレポートする', + 'report_details' => 'レポート詳細', + 'report_option_1' => 'メッセージを送る', + 'report_option_2' => 'メッセージを送る', + 'report_option_3' => 'ハッシュタグをつけてツイートする', + 'report_option_4' => 'こちらのフォームで入力する', + 'report_saved' => 'レポートは保存されました', + 'report_title' => 'レポートタイトル', + 'request_information' => '更なる情報を求める', + 'request_location' => 'ロケーションを求める', + 'required' => '必須', + 'requirements' => '必須情報', + 'resend_confirm_email' => '確認のEメールを再送信する', + 'reset' => 'リセット', + 'reset_all_filters' => '全てのフィルタをリセットする', + 'reset_password' => 'パスワードをリセットする', + 'retrieve_city_names' => '選択された国の市町村名を取り出す', + 'riverid_information' => '%s によって管理されているアカウント', + 'riverid_exists_login' => 'そのメールアドレスは既にクラウドマップIDとして登録されています。クラウドマップIDとして登録したメールアドレスとパスワードを使ってログインして下さい。', + 'role' => 'ロール', + 'rss' => 'RSS', + 'save' => '保存', + 'saved' => '保存済み', + 'save_add_new' => '保存&新規作成', + 'save_close' => '保存&閉じる', + 'save_report' => 'レポートを保存', + 'schedule' => 'スケジュール', + 'scheduler' => 'スケジューラー', + 'scheduler_day' => '日', + 'scheduler_hour' => '時間', + 'scheduler_log' => 'スケジューラーログ', + 'scheduler_minute' => '分', + 'scheduler_weekday' => '曜日', + 'search' => '検索', + 'search_results' => '検索結果', + 'security_code' => 'セキュリティコード', + 'select_all' => 'すべて選択する', + 'select_field_type' => 'フィールドタイプを選択する', + 'select_form_type' => 'フォームタイプを選択する', + 'select_in_map' => '地図を選択する', + 'select_multiple' => '必要なだけ選択する', + 'select_one' => 'チェックしたアイテムを検証してください。', + 'select_theme' => 'テーマを選択する', + 'send' => '送る', + 'send_confirmation' => '送信確認', + 'sending_to' => '送る', + 'sent' => '送信済み', + 'sent_by' => '送った人', + 'server_address' => 'サーバーアドレス', + 'server_type' => 'サーバータイプ', + 'service' => 'サービス', + 'service_username' => 'サービスのユーザー名', + 'service_user_id' => 'サービスのユーザーID', + 'share' => '共有', + 'shared_data' => '共有されたデータ', + 'share_has_been' => 'この共有は', + 'sharing' => '共有', + 'shorter_map' => '短い地図', + 'show' => '見る', + 'show_all' => 'すべて見る', + 'show_messages' => 'メッセージを表示する', + 'showing_reports_from' => '%1$s から %2$s までのレポートを表示する', + 'site' => 'ウェブサイト', + 'site_email_address' => 'サイトメールアドレス', + 'site_url' => 'サイトURL', + 'smaller_map' => '小さい地図', + 'sms' => 'SMS', + 'source' => 'ソース', + 'source_name' => 'ソース名', + 'sort' => '並び替え', + 'sort_by' => '以下の項目によって並び替え:', + 'source_url' => 'ソースのURL', + 'spam' => 'スパム', + 'ssl_support' => 'SSLサポート?', + 'start_point' => 'から', + 'step' => 'ステップ', + 'submit' => 'レポートを送信', + 'submitted_by' => 'レポート投稿者 %1$s 投稿元 %2$s', + 'submit_sms' => 'SMS経由で送信', + 'submit_sms1' => 'SMSを送る', + 'submit_sms2' => '電話へ', + 'success' => '成功しました!', + 'successfuly_imported' => 'インポートに成功しました。', + 'surname' => '名字', + 'survey' => '調査', + 'system' => 'システム', + 'taller_map' => '長い地図', + 'tcp_port' => 'TCPポート', + 'themes' => 'テーマ', + 'theme_default' => 'Ushahidiのディフォルトテーマ', + 'theme_settings' => 'テーマ設定', + 'this' => 'この', + 'this_day' => '今日', + 'this_month' => '今月', + 'this_week' => '今週', + 'this_year' => '今年', + 'this_is_your_profile' => 'これがあなたのプロファイルです', + 'time' => '時間', + 'title' => 'タイトル', + 'to' => 'と', + 'today' => '今日', + 'today_at' => '今日の', + 'token' => 'トークン', + 'total_reports' => 'トータルレポート', + 'translated' => '翻訳済み', + 'translated_description' => '翻訳済みの説明', + 'translated_title' => '翻訳済みタイトル', + 'translate_to' => '翻訳する', + 'translation' => '翻訳', + 'translation_saved' => '翻訳は保存されました。', + 'trusted' => '信頼出来る', + 'type' => 'タイプ', + 'twitter' => 'ツイッター', + 'unable_send_email' => 'メールを送信出来ません。', + 'uncategorized_reports' => '未分類のレポート', + 'unread' => '未読', + 'unverified' => '未検証', + 'update_feeds' => 'フィードのアップデート', + 'upload' => 'アップロード', + 'upload_guide' => 'レポートアップロードのガイドを見る', + 'upload_docs_1' => 'XMLのアップロードガイド', + 'upload_docs_2' => 'CSVのアップロードガイド', + 'upload_file' => 'アップロードするファイル', + 'upload_reports' => 'レポートをアップロードする', + 'upload_reports_detail_1' => '以下のフォーム内で、Ushahidiエンジンにインシデントを取り込む事が出来ます。', + 'upload_reports_detail_2' => 'レポートは、CSVまたはXML形式でなければなりません。', + 'upload_reports_detail_4' => 'インシデントタイトルとインシデントの日時が入っている必要があります。', + 'upload_reports_detail_4d' => '少なくともひとつの個人情報(名前、名字、メールアドレス)が入力されていなければなりません。', + 'upload_reports_detail_5' => 'CSVレポートのサンプル', + 'upload_reports_detail_6' => '#,インシデントタイトル,インシデントの日時,場所,説明,カテゴリ,承認済,確認済み
"1","ナイロビで死亡の疑いあり","2009-05-15 01:06:00","Nairobi","ウルグアイで3つのレポートが確認された。","死亡, 市民",はい,はい', + 'upload_reports_detail_7' => '"2","略奪","2009-03-18 10:10:00","アクラ","略奪が至る所で","略奪, 死亡, 暴動, ",はい,いいえ', + 'upload_successful' => 'アップロードに成功しました', + 'upload_video' => '動画をアップロードする', + 'url' => 'URL', + 'user' => 'ユーザー', + 'username' => 'ユーザー名', + 'ushahidi_admin' => 'Ushahidi管理', + 'verification' => '検証', + 'verified' => '検証済み', + 'verified_reports' => 'レポートを検証する', + 'verify' => '検証', + 'verify_this_report' => 'このレポートを検証する', + 'version' => 'バージョン', + 'via' => 'によって', + 'video' => 'ビデオ', + 'view' => '見る', + 'views' => '見る', + 'view_all' => 'すべて見る', + 'view_all_feeds' => 'すべてのフィードを見る', + 'view_all_reports' => 'すべてのレポートを見る', + 'view_items' => 'アイテムを見る', + 'view_more' => 'もっと見る', + 'view_public_profile' => '公開プロフィールを閲覧する', + 'view_report' => 'レポートを見る', + 'view_reports' => 'レポートを見る', + 'view_video' => '動画を閲覧する', + 'visible' => '可視化', + 'waiting_approval' => '承認待ち', + 'waiting_verification' => '確認待ち', + 'wider_map' => '大きな地図', + 'web' => 'Web', + 'weight' => '重さ', + 'yes' => 'はい', + 'yesterday' => '機能', + 'your_dashboard' => 'ダッシュボード', + 'your_file' => 'ファイル', + 'zoom_in' => 'ズームイン', + 'zoom_out' => 'ズームアウト', +); diff --git a/application/i18n/ja_JP/upgrade.php b/application/i18n/ja_JP/upgrade.php new file mode 100755 index 0000000000..9c36ac03d6 --- /dev/null +++ b/application/i18n/ja_JP/upgrade.php @@ -0,0 +1,57 @@ + array( + 'between' => '入力したデータが不正です。0(いいえ)か1(はい)のみです。', + ) , + 'upgrade_automatic' => '自動アップグレード', + 'upgrade_available' => '可能なアップグレード', + 'upgrade_continue_btn_text' => '続ける', + 'upgrade_db_btn_text' => 'アップグレード', + 'upgrade_db_text_1' => '今のバージョンからデータベースをアップグレードします。', + 'upgrade_db_text_2' => '新しいデータベースのバージョンへ', + 'upgrade_db_text_3' => '魔法を呼び起こす"アップグレード"ボタンをクリックしてください。', + 'upgrade_db_text_4' => 'それとデータベースバックアップをしておいてください。以下にあるボタンを押すだけでバックアップを行います。', + 'upgrade_db_text_5' => 'アップグレードを行う前にデータベースをバックアップしますか?(推奨)', + 'upgrade_db_title' => 'Ushahidiデータベースアップグレード', + 'upgrade_db_info' => 'Ushahidiの最新版が公開されました。作業をする前に、データベースを最新版(%s)に更新して下さい。', + 'upgrade_db_up_to_date' => 'データベースは最新のものが使用されています。', + 'upgrade_failed' => 'どこかのポイントでアップグレードが失敗したようです。', + 'upgrade_manual' => '手動アップグレード', + 'upgrade_status' => 'Ushahidiアップグレードステイタス', + 'upgrade_text_1' => '以下の説明はUshahidiサイトの手動アップグレード方法についてです。', + 'upgrade_text_2' => 'ステップ 1:一番新しいushahidiをhttp://download.ushahidi.comこちらからダウンロードしてください。', + 'upgrade_text_3' => 'ステップ 2:ウェブサーバーで動いているOSにもよりますが、使いやすいツールやモード (例: telnet, ftp, ssh) を使ってウェブサイトにログインし、すべてのファイルを新しいファイルに上書きしてください。 例外:', + 'upgrade_text_4' => 'ステップ 4: "続ける"ボタンをクリックして必要なテーブルのアップグレードを行います。', + 'upgrade_text_5' => '自動アップグレードは、以下のボタンをクリックしてください。', + 'upgrade_text_6' => '自動アップデートを有効にするには、下のボタンをクリックして下さい。', + 'upgrade_title_text' => 'Ushahidi v%1$sは、%3$s上でバージョン%2$dのデータベースとともに運用されています。', + 'upgrading' => 'アップグレード中', + 'upgrade_ftp_text' => 'かんたんアップグレードを続行するため、あなたのWebサイトが保存されているFTPサーバは以下の情報を必要とします。', + 'upgrade_ftp_password' => 'FTPパスワード:', + 'upgrade_ftp_username' => 'FTPユーザ名:', + 'upgrade_status_info' => 'あなたは最新版のUshahidiを使用しています。', + 'upgrade_status_info_2' => 'アップグレードする必要はありません。', + 'upgrade_db_version' => 'データベースのバージョン: %d', + 'upgrade_warning_software_version' => '警告: ソフトウェアのバージョンが、version.phpに書かれているものとデータベースのものとで一致しません。', + 'upgrade_warning_db_version' => '警告: データベースのバージョンが、version.phpのものとデータベースのもので一致しません。', + 'upgrade_database' => 'データベース:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'download' => 'Ushahidiの最新版をダウンロードしています...', + 'log_file' => 'ログファイル', + 'successfully_downloaded' => 'ダウンロードが完了しました。ファイルを解凍しています...', + 'failed_downloading' => 'ダウンロードに失敗しました。', + 'successfully_unpacked' => 'ファイルの解凍に成功しました。ファイルをコピーしています...', + 'failed_unpacking' => 'ファイルの解凍に失敗しました。', + 'successfully_copied' => 'ファイルのコピーが完了しました。データーベースをアップグレードしています...', + 'failed_copying' => 'ファイルのコピーに失敗しました。', + 'backup_success' => 'データベースのバックアップとアップグレードが完了しました。', + 'backup_failed' => 'データベースのバックアップに失敗しました。', + 'dbupgrade_success' => 'データベースのアップグレードが完了しました。', + 'deleting_files' => 'ダウンロードしたファイルを削除しています...', + 'upgrade_success' => 'アップグレードが完了しました。作業の詳細については、ログファイルを参照して下さい。', +); diff --git a/application/i18n/ka_GE/alerts.php b/application/i18n/ka_GE/alerts.php new file mode 100755 index 0000000000..2be05e647c --- /dev/null +++ b/application/i18n/ka_GE/alerts.php @@ -0,0 +1,52 @@ + array( + 'email' => 'ელექტრონული ფოსტის ველში არ არის მოქმედი ელექტრონული ფოსტის მისამართი შეყვანილი?', + 'email_check' => 'ეს ელექტრონული ფოსტის მისამართი უკვე რეგისტრირებულია ამ ადგილმდებარეობაზე შეტყობინების მისაღებად', + 'length' => 'ელექტრონული ფოსტის ველში უნდა უნდა ჩაწეროთ მინიმუმ 4 და მაქსიმუმ 64 სიმბოლო.', + 'required' => 'ელექტრონული ფოსტის ველის შევსება საჭიროა თუ გრაფა მონიშნულია.', + ) , + 'alert_lat' => array( + 'between' => 'თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე.', + 'required' => 'თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე.', + ) , + 'alert_lon' => array( + 'between' => 'თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე.', + 'required' => 'თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე.', + ) , + 'alert_mobile' => array( + 'length' => 'მობილური ტელეფონის ველი არ შეიცს შესაბამისი რაოდენობის ციფრებს.', + 'mobile_check' => 'ეს მობილური ტელეფონის ნომერი უკვე რეგისტრირებულია ამ ადგილმდებარეობაზე შეტყობინების მისაღებად', + 'numeric' => 'მობილური ტელეფონის ნომრის ველში არ არის მითითებული სწორი ტელეფონი. გთხოვთ, ქვეყნის კოდის ჩათვლით ამ ველში დაწეროთ მხოლოდ ციფრები .', + 'one_required' => 'თქვენ უნდა შეიყვანოთ ან თქვენი მობილური ტელეფონის ნომერი ან თქვენი ელექტრონული ფოსტის მისამართი.', + 'required' => 'მობილური ტელეფონის ნომრის ველი სავალდებულოა თუ Checkbox შემოწმებულია.', + ) , + 'alert_radius' => array( + 'in_array' => 'თქვენ არ გაქვთ მითითებული მოქმედი რადიუსი რუკაზე.', + 'required' => 'თქვენ არ დააყენეთ რადიუსი რუქაზე.', + ) , + 'code_already_verified' => 'ეს კოდი უკვე შემოწმებული იყო ადრე!', + 'code_not_found' => 'ეს კოდი ვერ მოიძებნა! გთხოვთ დაადასტუროთ, რომ თქვენ სწორი მისამართი (URL) გაქვთ.', + 'code_verified' => ' თქვენი კოდი შემოწმებულია. თქვენ ახლა მიიღებთ შეტყობინებებს.', + 'confirm_request' => 'თქვენი შეტყობინებასთან დაკავშირებით მოთხოვნის დასადასტურებლად, შედით ', + 'create_more_alerts' => 'თუ გსურთ შეტყობინებების შექმნა დაბრუნდით შეტყობინებების გვერდზე', + 'email_code' => 'გთხოვთ შეიყვანოთ ელექტრონული ფოსტის დადასტურების კოდი, რომელიც გაქვთ ქვემოთ მოცემული:', + 'email_error_head' => 'თქვენი მოთხოვნა ელექტრონული ფოსტის შეტყობინებასთან დაკავშირებით არ შენახულა!', + 'email_ok_head' => 'თქვენი მოთხოვნა ელექტრონული ფოსტის შეტყობინებასთან დაკავშირებით შენახულია!', + 'error' => 'სისტემამ ვერ აამუშავა თქვენი დადასტურების მოთხოვნა', + 'mobile_alert_request_created' => 'თქვენი მობილურ ტელეფონზე შეტყობინების მოთხოვნა შეიქმნილია და გადამოწმებისთვის სმს-ი გაგზავნილია ', + 'mobile_code' => 'გთხოვთ შეიყვანოთ თქვენ მობილურ ტელეფონზე სმს-ით მოსული დადასტურების კოდი : ', + 'mobile_error_head' => 'თქვენი მოთხოვნა მობილური ტელეფონის შეტყობინებასთან დაკავშირებით არ შენახულა !', + 'mobile_ok_head' => 'თქვენი მოთხოვნა მობილური ტელეფონის შეტყობინებასთან დაკავშირებით შენახულია !', + 'settings_error' => 'შეტყობინების პროცესი სწორად არ არის დაყენებული ', + 'unsubscribe' => 'თქვენ ვერ მიიღებთ შეტყობინება ამ ადგილმდებარეობაზე სანამ არ დაადასტურებთ თქვენს მოთხოვნას. თუ თქვენ არ გსურთ, რომ მომავალში მიიღოთ შეტყობინება გადადით', + 'unsubscribed' => 'თქვენ აღარ მიიღებთ შეტყობინებებს ', + 'unsubscribe_failed' => 'ჩვენ შევძელით გაგვეუქმებინა თქვენი შეტყობინებების გამოწერა. გთხოვთ დაადასტუროთ, რომ თქვენ სწორი მისამართით (URL) ხართ შესული.', + 'verification_email_subject' => 'შეტყობინება - შემოწმება', + 'verify_code' => 'თქვენ არ მიიღებთ შეტყობინებას ამ ადგილმდებარეობა ზე სანამ არ დაადასტურეთ თქვენს მოთხოვნას.', +); diff --git a/application/i18n/ka_GE/auth.php b/application/i18n/ka_GE/auth.php new file mode 100755 index 0000000000..e8e3349f69 --- /dev/null +++ b/application/i18n/ka_GE/auth.php @@ -0,0 +1,47 @@ + array( + 'email' => 'ელექტრონული ფოსტის ველი შეიცავს მოქმედ ელექტრონული ფოსტის მისამართს?', + 'exists' => 'უკაცრავად, ამ ელექტრონული ფოსტის მისამართით უკვე არსებობს მომხმარებლის ანგარიში.', + 'length' => ' ელექტრონული ფოსტის ველი უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს.', + 'required' => 'ელექტრონული ფოსტის ველი სავალდებულოა.', + ) , + 'name' => array( + 'length' => 'სრული სახელის ველი უნდა შეიცავდეს მინიმუმ 3 და მახსიმუმ 100 სიმბოლოს.', + 'required' => 'სრული სახელის ველი სავალდებულოა.', + 'standard_text' => 'მომხმარებლის სახელის ველი შეიცავს აკრძალულ სიმბოლოებს.', + ) , + 'password' => array( + 'length' => 'პაროლის ველი უნდა შეიცავდეს არანაკლებ 5 და არა უმეტეს 16 სიმბოლოს.', + 'login error' => 'გთხოვთ გადაამოწმოთ, რომ თქვენ სწორად შეიყვანეთ პაროლი.', + 'matches' => 'გთხოვთ შეიყვანოთ პაროლის ორი ველში იგივე პაროლი .', + 'required' => 'პაროლის ველი სავალდებულოა.', + ) , + 'password_confirm' => array( + 'matches' => 'პაროლის დადასტურების ველი უნდა ემთხვეოდეს პაროლის ველს.', + ) , + 'resetemail' => array( + 'email' => 'ელექტრონული ფოსტის ველი არ შეიცავს მოქმედი ელექტრონული ფოსტის მისამართს?', + 'invalid' => 'უკაცრავად, ჩვენ არ გვაქვს თქვენი ელექტრონული ფოსტის მისამართი', + 'required' => 'ელექტრონული ფოსტის ველი სავალდებულოა.', + ) , + 'roles' => array( + 'alpha_numeric' => 'ფორმატი არასწორია.', + 'length' => 'ველი უნდა შეიცავდეს არანაკლებ 5 და არა უმეტეს 30 სიმბოლოს.', + 'required' => 'თქვენ უნდა განისაზღვროთ არანაკლებ ერთისა.', + 'values' => 'თქვენ უნდა აირჩიოთ ან ადმინისტრატორი ან მომხმარებლი.', + ) , + 'username' => array( + 'admin' => 'ადმინისტრატორი არ განისაზღვრა.', + 'exists' => 'უკაცრავად, ეს სახელი უკვე გამოყენებულია.', + 'length' => 'სახელის ველი უნდა შეიცავდეს არანაკლებ 2 და არა უმეტეს 16 სიმბოლოს.', + 'login error' => 'გთხოვთ გადაამოწმოთ, რომ თქვენ შეყვანილი მომხმარებლის სახელი სწორია.', + 'required' => 'მომხმარებლის სახელი სავალდებულოა.', + 'superadmin' => 'ადმინისტრატორის როლი არ განისაზღვრა.', + ) , +); diff --git a/application/i18n/ka_GE/bug.php b/application/i18n/ka_GE/bug.php new file mode 100755 index 0000000000..b8f16a24d9 --- /dev/null +++ b/application/i18n/ka_GE/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'გთხოვთ შეიყვანოთ სწორი უსაფრთხოების კოდი', + 'required' => 'გთხოვთ შეიყვანოთ უსაფრთხოების კოდი', + ) , + 'email' => array( + 'email' => 'ელექტრონული ფოსტის ველი როგორც ჩანს არ შეიცავს ელექტრონული ფოსტის სწორ მისამართს?', + 'length' => 'ელექტრონული ფოსტის ველი უნდა შედგებოდეს არანაკლებ 4 და არაუმეტეს 64 სიმბოლოსგან.', + 'required' => 'ელექტრონული ფოსტის ველი სავალდებულოა იმ შემთხვევაში თუ მოსანიშნი უჯრა არის მონიშნული.', + ) , + 'error' => array( + 'required' => 'შეცდომის ველი სავალდებულოა.', + ) , + 'subject' => array( + 'length' => 'თემის ველი უნდა შედგებოდეს არანაკლებ სამი სიმბოლოსგან.', + 'required' => 'თემის ველი სავალდებულოა.', + ) , + 'yourname' => array( + 'length' => 'სახელის ველი უნდა შედგებოდეს არანაკლებ სამი სიმბოლოსგან.', + 'required' => 'სახელის ველი სავალდებულოა.', + ) , +); diff --git a/application/i18n/ka_GE/category.php b/application/i18n/ka_GE/category.php new file mode 100755 index 0000000000..c789ade88c --- /dev/null +++ b/application/i18n/ka_GE/category.php @@ -0,0 +1,30 @@ + array( + 'length' => 'ფერის ველი უნდა შედგებოდეს 6 სიმბოლოსგან.', + 'required' => 'ფერის ველი სავალდებულოა.', + ) , + 'category_description' => array( + 'required' => 'აღწერის ველი სავალდებულოა.', + ) , + 'category_image' => array( + 'size' => 'გთხოვთ დარწმუნდეთ, რომ გამოსახულების ატვირთვის ზომები შეზღუდულია 50 კილო ბაიტამდე.', + 'type' => 'გამოსახულების ველი როგორც ჩანს არ შეიცავს დასაშვებ გამოსახულებას. დასაშვები ფორმატები არის მხოლოდ და მხოლოდ .JPG, .PNG and .GIF.', + 'valid' => 'ამოსახულების ველი როგორც ჩანს არ შეიცავს სწორ ფაილს', + ) , + 'category_title' => array( + 'length' => 'სათაურის ველი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 80 სიმბოლოსგან.', + 'required' => 'სათაურის ველი სავალდებულოა.', + ) , + 'parent_id' => array( + 'exists' => 'მწარმოებლის კატეგორია არ არსებობს.', + 'numeric' => 'მწარმოებლის კატეგორიის ველი უნდა იყოს რიცხვითი.', + 'required' => 'მწარმოებლის კატეგორიის ველი სავალდებულოა.', + 'same' => 'კატეგორია და მწარმოებლის კატეგორია შეუძლებელია იყოს ერთიდაიგივე.', + ) , +); diff --git a/application/i18n/ka_GE/comments.php b/application/i18n/ka_GE/comments.php new file mode 100755 index 0000000000..085c5fd083 --- /dev/null +++ b/application/i18n/ka_GE/comments.php @@ -0,0 +1,24 @@ + array( + 'default' => 'გთხოვთ შეიყვანოთ სწორი უსაფრთხოების კოდი', + 'required' => 'გთხოვთ შეიყვანოთ უსაფრთხოების კოდი', + ) , + 'comment_author' => array( + 'length' => 'სახელის ველი უნდა შეიცავდეს მინიმუმ 3 სიმბოლოს.', + 'required' => 'სახელის ველი სავალდებულოა.', + ) , + 'comment_description' => array( + 'required' => 'კომენტარების ველი სავალდებულოა.', + ) , + 'comment_email' => array( + 'email' => 'ელექტრონული ფოსტის ველი არ შეიცავს მოქმედი ელექტრონული ფოსტის მისამართს?', + 'length' => 'ელექტრონული ფოსტის ველი უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს.', + 'required' => 'ელექტრონული ფოსტის ველი სავალდებულოა თუ გრაფა მონიშნულია.', + ) , +); diff --git a/application/i18n/ka_GE/contact.php b/application/i18n/ka_GE/contact.php new file mode 100755 index 0000000000..9d8e53d9ef --- /dev/null +++ b/application/i18n/ka_GE/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'გთხოვთ შეიყვანოთ სწორი უსაფრთხოების კოდი', + 'required' => 'გთხოვთ შეიყვანოთ უსაფრთხოების კოდი', + ) , + 'contact_email' => array( + 'email' => 'ელექტრონული ფოსტის ველი არ შეიცავს მოქმედი ელექტრონული ფოსტის მისამართს?', + 'length' => 'ელექტრონული ფოსტის ველში უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს.', + 'required' => 'ელექტრონული ფოსტის ველი სავალდებულოა თუ გრაფა მონიშნულია.', + ) , + 'contact_message' => array( + 'required' => 'მესიჯის ველი სავალდებულოა.', + ) , + 'contact_name' => array( + 'length' => 'სახელი ველი უნდა შეიცავდეს მინიმუმ 3 სიმბოლოს.', + 'required' => 'სახელის ველი სავალდებულოა.', + ) , + 'contact_subject' => array( + 'length' => 'სათაური ველი უნდა შეიცავდეს არანაკლებ 3 სიმბოლოს.', + 'required' => 'სათაურის ველი სავალდებულოა.', + ) , +); diff --git a/application/i18n/ka_GE/core.php b/application/i18n/ka_GE/core.php new file mode 100755 index 0000000000..26b6924373 --- /dev/null +++ b/application/i18n/ka_GE/core.php @@ -0,0 +1,29 @@ + '%s დრაივერმა %s ბიბლიოთეკისათვის უნდა განახორციელოს %s ინტერფეისი', + 'driver_not_found' => ' %s ბიბლიოთეკისათვის %s დრაივერის ვერ მოიძებნა', + 'errors_disabled' => 'თქვენ შეგიძლიათ გადახვიდეთ <ტექნიკური კონფერენცია="%s">მთავარი გვერდი ან <ტექნიკური კონფერენცია="%s">კვლავ სცადეთ.', + 'error_file_line' => '%s <ძლიერი>[%s]:', + 'generic_error' => 'შეუძლებელია მოთხოვნის დასრულება', + 'helper' => 'დამხმარე', + 'invalid_filetype' => 'მოთხოვნილი ფაილის ტიპი, .%s, არ არის დასაშვები თქვენი კონფიგურაციის ფაილში', + 'invalid_method' => 'არასწორი მეთოდი %s გამოძახებულია %s', + 'invalid_property' => '%s მახასიათებელი არ არსებობს %s კლასში.', + 'library' => 'ბიბლიოთეკა', + 'log_dir_unwritable' => 'დირექტორიის ჩანაწერები არ არის გადაწერადი: %s', + 'model' => 'მოდელი', + 'no_controller' => 'Ushahidi–მ ვერ შეძლო აღმოეჩინა მაკონტროლებელი, რათაგადაემუშავებინა მოცემული მოთხოვნა: %s', + 'no_default_route' => 'გთხოვთ დააყენოთ ავტომატურიმიმართულება კონფიგ/მიმართულებაში.php', + 'page_not_found' => 'გვერდი, რომელიც თქვენ მოითხოვეთ, %s, არ იძებნება.', + 'report_bug' => '<ტექნიკური კონფერენცია="%s" id="ჩენება_დეფექტები">შეატყობინე ეს პრობლემა Ushahidi–ს', + 'resource_not_found' => 'The requested %s, %s, could not be found', + 'stats_footer' => 'ჩატვირთული {შესრულება_დრო} წამებში, მეხსიერების {მეხსიერება_გამოყენება} გამოყენება. გენერირებულია Ushahidi v%s მიერ.', + 'there_can_be_only_one' => 'გვერდის მოთხოვნისას შესაძლებელია იყოს Ushahidi–ის მხოლოდ ერთი ნიმუში', + 'uncaught_exception' => 'დაუჭერელი %s: %s ფაილში %s ხაზზე %s', + 'view_set_filename' => 'თქვენ უნდა დააყენოთ წარმოდგენის ფაილის სახელი, სანამ გამოიძახებთ რენდერს', +); diff --git a/application/i18n/ka_GE/database.php b/application/i18n/ka_GE/database.php new file mode 100755 index 0000000000..0f76008303 --- /dev/null +++ b/application/i18n/ka_GE/database.php @@ -0,0 +1,10 @@ + 'მონაცემთა ბაზის შეცდომა: %s', + 'table_not_found' => ' "%s" ცხრილი ვერ მოიძებნა მონაცემთა ბაზაში. გთხოვთ დარწმუნდეთ, რომ თქვენ იყენებთ მონაცემთა ბაზის უკანასკნელ ვერსიას Ushahidi–ს ამ ვერსიისათვის', +); diff --git a/application/i18n/ka_GE/datetime.php b/application/i18n/ka_GE/datetime.php new file mode 100755 index 0000000000..2bfb30c2b3 --- /dev/null +++ b/application/i18n/ka_GE/datetime.php @@ -0,0 +1,29 @@ + array( + 'full' => 'არასკევი', + ) , + 'monday' => array( + 'full' => 'ორშაბათი', + ) , + 'saturday' => array( + 'full' => 'შაბათი', + ) , + 'sunday' => array( + 'full' => 'კვირა', + ) , + 'thursday' => array( + 'full' => 'ხუთშაბათი', + ) , + 'tuesday' => array( + 'full' => 'სამშაბათი', + ) , + 'wednesday' => array( + 'full' => 'ოთხშაბათი', + ) , +); diff --git a/application/i18n/ka_GE/feeds.php b/application/i18n/ka_GE/feeds.php new file mode 100755 index 0000000000..8510f1c102 --- /dev/null +++ b/application/i18n/ka_GE/feeds.php @@ -0,0 +1,16 @@ + array( + 'length' => 'კვების სახელის ველი უნდა მოიცავდეს არანაკლებ სამ და არაუმეტეს 70 სიმბოლოს.', + 'required' => 'გთხოვთ შეიყვანიოთ კვების სახელი.', + ) , + 'feed_url' => array( + 'required' => 'გთხოვთ შეიყვანოთ კვების URL.', + 'url' => 'გთხოვთ შეიყვანოთ სწორი URL. Eg. http://www.ushahidi.com', + ) , +); diff --git a/application/i18n/ka_GE/footer.php b/application/i18n/ka_GE/footer.php new file mode 100755 index 0000000000..04ce590d47 --- /dev/null +++ b/application/i18n/ka_GE/footer.php @@ -0,0 +1,9 @@ + 'php5-სპირალი/curl არ არის დაყენებული ამ სისტემაზე', +); diff --git a/application/i18n/ka_GE/form.php b/application/i18n/ka_GE/form.php new file mode 100755 index 0000000000..377bcb2ce4 --- /dev/null +++ b/application/i18n/ka_GE/form.php @@ -0,0 +1,45 @@ + array( + 'length' => 'ველის სახელი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 200 სიმბოლოსგან.', + ) , + 'field_height' => array( + 'between' => 'გთხოვთ შეიყვანოთ სიდიდე 0–დან 50–მდე ველის სიმაღლისთვის', + ) , + 'field_isdate' => array( + 'between' => 'ტვენ შეიყვანეთ არასწორი სიდიდე თარიღის ველისთვის', + 'required' => 'გთხოვთ, აირჩიოთ დიახ ან არა თარიღის ველისთვის', + ) , + 'field_name' => array( + 'length' => 'ველის სახელი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 100 სიმბოლოსგან.', + 'required' => 'გთხოვთ შეიყვანოთ ველის სახელი.', + ) , + 'field_required' => array( + 'between' => 'თქვენ შეიყვანეთ არასწორი სიდიდე სავალდებულო ველისთვის', + 'required' => 'თხოვთ, აირჩიოთ დიახ ან არა სავალდებულო ველისთვის', + ) , + 'field_type' => array( + 'numeric' => 'გთხოვთ აირჩიოთ ველის სწორი ტიპი.', + 'required' => 'გთხოვთ აირჩიოთ ველის ტიპი.', + ) , + 'field_width' => array( + 'between' => 'გთხოვთ შეიყვანოთ სიდიდე 0–დან 300–მდე ველის სიგანისთვის', + ) , + 'form_description' => array( + 'required' => 'გთხოვთ შეიყვანოთ ფორმაფორმის აღწერა.', + ) , + 'form_id' => array( + 'default' => 'სტანდარტული ფორმის წასშლა სეუძლებელია.', + 'numeric' => 'გთხოვთ, მონიშნოთ რომელ ფორმას დავუმატოთ ეს ველი.', + 'required' => 'გთხოვთ, მონიშნოთ რომელ ფორმას დავუმატოთ ეს ველი.', + ) , + 'form_title' => array( + 'length' => 'ფორმის ველის სახელი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 100 სიმბოლოსგან.', + 'required' => 'გთხოვთ, შეიყვანოთ ფორმის სახელი.', + ) , +); diff --git a/application/i18n/ka_GE/imap.php b/application/i18n/ka_GE/imap.php new file mode 100755 index 0000000000..d88861a435 --- /dev/null +++ b/application/i18n/ka_GE/imap.php @@ -0,0 +1,10 @@ + ' IMAP stream-ის გახსნა შეუძლებელია', + 'unsupported_service' => 'ელექტრონული ფოსტის სერვისი არ არის მხარდაჭერილი', +); diff --git a/application/i18n/ka_GE/installer.php b/application/i18n/ka_GE/installer.php new file mode 100755 index 0000000000..84f828ec2d --- /dev/null +++ b/application/i18n/ka_GE/installer.php @@ -0,0 +1,65 @@ + 'თუ Ushahidi გაშვებული გაქვთ საკუთარ კომპიუტერზე, ეს სავარაუდოდ იქნება "localhost"–ი. თუ Ushahidi გაშვებული გაქვთ ვებ–სერვერიდან, თქვენ host ინფორმაციას მიიღებთ ვებ–ჰოსტინგ პროვაიდერისგან', + 'database_name_description' => 'მონაცემთა ბაზის სახელი, რომელშიც გსურთ Ushahidi–ს გაშვება', + 'db_information_link' => 'უფრო მეტი ინფორმაციის მისაღებად მოინახულეთ this article wiki, რომელიც საუბრობს მონაცემთა ბაზების შესახებ დეტალებში', + 'default_language_description' => ' Ushahidi–სთითოეული გამოყენება მოიცავს ჩაშენებული ენის თარგმანის კომპლექტს. თქვენ ასევე შეგიძლიათ add your own', + 'error_summary' => 'ქვევით არის ჩამოთვლილი შეცდომები, რომელსაც ჩვენ შევხვდით', + 'files_location_text' => 'ადგილმდებარეობა თქვენს სერვერზე, სადაც განათავსეთ თქვენი Ushahidi ფაილები. ჩვენ ავტომატურად აღმოვაჩინეთ ეს მნიშვნელობა,გთხოვთ,დარწმუნდით, რომ ის არის სწორი. არ შეწუხდეთ თუ ველი ცარიელია, ეს ნიშნავს, რომ ushahidi დაინსტალირდა ზედა დონის დირექტორიაში', + 'google_key_description' => 'ნებისნიერს შეუძლია მიიღოს api გასაღები. Get yours now', + 'index' => array( + 'advanced_installation_description' => 'მიიღეთ ყველა ძირითადი მოწყობილობა დასრულებული სახით, ამ ხუთი საფეხურის მეშვეობით. ეს მოიცავს სერვერს, რუკას, საიტის სახელსა და საკონტაქტო დეტალებს', + 'basic_installation_description' => 'მარტივი და სწრაფი. რაც გჭირდებათ ეს არის თქვენი ვებ–გვერდის საფუძველების ცნობარი და თქვენი მონაცემთა ბაზის ინფორმაცია. აირჩიე ეს უნქცია, თუ გინდა რომ მორჩე უცებ და შენშეგეძლება ყოველთვის შეცვალო ყველაფერი მოგვიანებით', + 'welcome' => 'კეთილი იყოს თქვენი მობრძანება Ushahidi–ის სერვერის ინსტალაციის პროცესში. აირჩიეთ რომელი ტიპის ინსტალაცია გსურთ რომ გამოიყენოთ', + ) , + 'installation_successful' => 'წარმატებით ინსტალაცია', + 'mail_server_host_description' => 'მაგალითები: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'საფოსტო სერვერის პაროლი', + 'mail_server_password_description' => 'პაროლი, რომელსაც ჩვეულებრივ გამოიყენებთ თქვენს ელექტრონულ ფოსტაში შესაღწევად', + 'mail_server_port' => 'საფოსტო სერვერის პორტი', + 'mail_server_port_description' => 'საერთო პორტები: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'საფოსტო სერვერის ტიპი', + 'mail_server_type_description' => 'შეტყობინების მისვლის ინტერნეტ პროტოკოლი (IMAP) ან ფოსტის პროტოკოლი (POP). რა არის სხვაობა?', + 'mail_server_username' => 'საფოსტო სერვერის მომხმარებლის სახელი', + 'mail_server_username_description' => 'თუ თქვენ იყენებთ Gmail–ს, Hotmail–ს, ან Yahoo Mail–ს, შეიყვანეთ ელექტრონული ფოსტის სრული მისამართი როგორც მომხმარებლის სახელი', + 'map_provider_description' => 'Ushahidi მუშაობს ისევე კარგად, როგორც ეს ოთხი პროვაიდერი: Google–ი, Bing–ი, Yahoo და OpenStreetMap–ი. აირჩიეთ ის, რომელსაც აქვს დეტალების უმეტესობა თქვენს დარგში', + 'other_steps' => 'სხვა საფეხურები...', + 'password' => 'პაროლი', + 'password_description' => 'თქვენი მონაცემთა ბაზის პაროლი', + 'previous' => 'წინა', + 'restart_apache' => 'გთხოვთ, გადატვირთოთ თქვენი Apache სერვერი', + 'select_mail_server_ssl' => 'ჩავრთათ, თუ გამოვრთოთ SSL–ის', + 'select_mail_server_ssl_description' => 'ზოგიერთი საფოსტო სერვერი SSL გამოყენების ოფციას გაძლევთ კავშირის დამყარებისას. SSL–ის გამოყენება რეკომენდირებულია, რამდენადაც ის გაძლევთ უსაფრთხოების დამატებით საფეხურს', + 'setup_sms' => 'დააყენეთ თქვენი SMS სერვერი', + 'site_email' => 'საიტის ელექტრონული ფოსტის მისამართი', + 'site_email_alerts' => 'საიტის გამაფრთხილებელი ელექტრონული ფოსტის მისამართი', + 'site_email_alerts_description' => 'როდესაც თქვენი საიტის მნახველები რეგისტრირდებიან სისტემაში ელექტრონული ფოსტით გაფრთხილების მირებისათვის, ისისნი მიიღებენ ელექტრონულ ფოსტას ამ მისამართიდან. ელექტრონული ფოსტის მისამართი არ უნდა იყოს იგივე რაც საიტის ელექტრონული მისამართი', + 'site_email_description' => 'საიტის შიგნით ელექტრონული ფოსტით განხორციელებული კომუნიკაცია ამ მისამართის მეშვეობითგ გადაიგზავნება. ', + 'site_name' => 'საიტის სახელი', + 'site_name_description' => 'თქვენი საიტის სახელი', + 'site_tagline' => 'საიტის ქვესათაური', + 'site_tagline_description' => 'თქვენი ქვესათაური', + 'summary' => array( + 'text_1' => 'Tქვემოთ მოცემული ფაილები და ფოლდერები უნდა იყოს გადაწერადი თქვენი ვებ–სერვერის მიერ', + 'text_2' => '

აქ მოცემულია ინსტრუქციები ფაილის შეცვლის ნებართვისათვის:

+ ', + 'text_3' => 'სანამ დაიწყებთ, უნდა დარწმუნდეთ, რომ შემდეგი ფაილები და ფოლდერები არის გადაწერადითქვენი ვებ–სერვერის მიერ. ეს მოიცავს ფაილის შეცვლის ნებართვას', + 'text_4' => 'ინსტალაციის პროცესისთვის, გთხოვთ, შემდეგი მცირედი ინფორმაცია იყოს ხელმისაწვდომი', + ) , + 'table_prefix_description' => 'როგორც წესი თქვენ არშეცვლიდით ცხრილის პრეფიქსს.თუმცა, თუ თქვენ გსურთ შეასრულოთ Ushahidi–ის მრავალჯერადი ინსტალაცია ერთი მონაცემთა ბაზიდან, ეს შეგიძლიათ გააკეთოთპრეფიქსის აქ შეცვლით', + 'title' => 'სათაური', + 'to_login' => 'სისტემაში შესასვლელად მიდით', + 'upload_data' => 'ატვირთეთ ბაზის აღწერა', + 'username' => 'მომხმარებლის სახელი', + 'username_description' => 'თქვენი მონაცემთა ბაზის მომხმარებლის სახელი', + 'use_credentials' => 'და გამოიყენეთ შემდეგი მანდატი', + 'view_site' => 'მოინახულეთ თქვენი ვებ–გვერდი', +); diff --git a/application/i18n/ka_GE/layer.php b/application/i18n/ka_GE/layer.php new file mode 100755 index 0000000000..00ed5ed136 --- /dev/null +++ b/application/i18n/ka_GE/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'ფერის ველი უნდა შედგებოდეს 6 სიმბოლოსგან.', + 'required' => 'feris veli savaldebuloa.', + ) , + 'layer_file' => array( + 'type' => 'ფაილის ველი სავარაუდოდ არ შეიცავს სწორ ფაილს. დასაშვები ფორმატებია .KMZ, .KML.', + 'valid' => 'ფაილის ველი სავარაუდოდ არ შეიცავს სწორ ფაილს. დასაშვები ფორმატებია ', + ) , + 'layer_name' => array( + 'length' => 'სახელის ველი უნდა შედგებოდეს არანაკლებ3 და არაუმეტეს 80 სიმბოლოსგან.', + 'required' => 'სახელის ველი სავალდებულოა.', + ) , + 'layer_url' => array( + 'atleast' => 'ორივე KML Url თუ ფაილი სავალდებულოა', + 'both' => 'თქვენ შეგიძლიათ/ არ შეგიძლიათ გქონდეთ ორივე KML ფაილი და url', + 'url' => 'გთხოვთ შეიყვანოთ სწორი URL. Eg. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/ka_GE/libraries.php b/application/i18n/ka_GE/libraries.php new file mode 100755 index 0000000000..85044f47b7 --- /dev/null +++ b/application/i18n/ka_GE/libraries.php @@ -0,0 +1,26 @@ + 'შეუძლებელია akismet სერვერთან დაკავშირება', + 'akismet_cannot_retrieve' => 'Akismet–დან პასუხი ვერ იქნა მიღებული', + 'api_library_not_found' => 'The API library: %s, for the %s კლასი ვერ იქნა აღმოჩენილი. შეამოწმეთ თქვენი API დავალებების განმსაზღვრელი ცხრილი.', + 'askimet_invalid_apikey' => 'თქვენი Akismet API გასაღებიი არ არის სწორი', + 'clickatell_fopen_error' => 'შეცდომა გაგზავნის მეთოდის შესრულებაში!
გთხოვთ, შემოწმოთ PHP–მ თუ გახსნა SSL დახმარებადა შეამოწმეთ PHP ვერსია თუ არის 5.2–ზე დიდი', + 'clickatell_message_too_long' => 'თქვენი unicode შეტყობინება ძალზე გრძელია! (Current lenght=', + 'clickatell_no_destination_address' => 'გთხოვთ, მიუთითეთ მიმღების მისამართი (TO)!', + 'clickatell_no_sender_address' => 'გთხოვთ, მიუთითეთ გამომავალი მისამართი (FROM)!', + 'clickatell_unicode_message_too_long' => 'თქვენი unicode შეტყობინება ძალზე გრძელია! (მიმდინარე სიგრძე=', + 'clickatell_unsupported_method' => 'მხარდაუჭერელი გაგზავნის მეთოდი!', + 'invalid_api_library' => 'API ბიბლიოთეკა %s არასწორია. All API ბიბლიოთეკები უნდა იყვნენ %s–ის ქვეკლასები', + 'upgrade_directory_not_deleted' => 'Directory %s შეუძლებელია წაშლა', + 'upgrade_extracting_error' => 'შეცდომა გამოყოფისას: %s', + 'upgrade_failed' => 'ushabadi-s საბოლოო ვერსიის გადმოწერა ვერ მოხერხდა. HTTP სტატუს კოდი', + 'upgrade_file_not_copied' => 'File %s კოპირება შეუძლებელია', + 'upgrade_file_not_deleted' => 'File %s წაშლა შეუძლებელია', + 'upgrade_title' => 'Ushahidi სკრიპტის განახლება', + 'upgrade_zip_error' => 'გადმოწერილი ushahidi zip ფაილი %s, ჩაწერა შეუძლებელია', +); diff --git a/application/i18n/ka_GE/maintenance.php b/application/i18n/ka_GE/maintenance.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ka_GE/maintenance.php @@ -0,0 +1,7 @@ + array( + 'default' => 'გთხოვთ, შეიყვანოთ სწორი უსაფრთხოების კოდი', + 'required' => 'გთხოვთ, შეიყვანოთ უსაფრთხოების კოდი', + ) , + 'email' => array( + 'email' => 'ელექტრონული ფოსტის ველი სავარაუდოდ არ შეიცავს ელექტრონული ფოსტის სწორ მისამართს?', + 'length' => 'ელექტრონული ფოსტის ველი უნდა მოიცავდეს არანაკლებ 4 და არაუმეტეს 64 სიმბოლოს.', + 'required' => 'ელექტრონული ფოსტის ველი სავალდებულოა, თუ მოსანიშნი უჯრა მონიშნულია.', + ) , + 'message' => array( + 'required' => 'კომენტარების ველი სავალდებულოა.', + ) , + 'name' => array( + 'length' => 'სახელის ველი უნდა შედგებოდეს არანაკლებ 3 სიმბოლოსგან.', + 'required' => 'სახელის ველი სავალდებულოა.', + ) , + 'phone' => array( + 'length' => 'ტელეფონის ველი არ არის სწორი.', + ) , +); diff --git a/application/i18n/ka_GE/mhi.php b/application/i18n/ka_GE/mhi.php new file mode 100755 index 0000000000..11844c7fef --- /dev/null +++ b/application/i18n/ka_GE/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'გთხოვთ, შეიყვანოთ სწორი უსაფრთხოების კოდი.', + 'required' => 'გთხოვთ, შეიყვანოთ უსაფრთხოების კოდი.', + ) , + 'contact_email' => array( + 'email' => 'ელექტრონული ფოსტის ველი სავარაუდოდ არ შეიცავს ელექტრონული ფოსტის სწორ მისამართს?', + 'required' => 'გთხოვთ უზრუნველყოთ სწორი ელექტრონული მისამართი', + ) , + 'contact_message' => array( + 'required' => 'შეტყობინების ველი სავალდებულოა.', + ) , + 'contact_subject' => array( + 'length' => 'თემის ველი უნდა იყოს არანაკლებ 3 სიმბოლოსგან შემდგარი.', + 'required' => 'თემის ველი სავალდებულოა.', + ) , +); diff --git a/application/i18n/ka_GE/notifications.php b/application/i18n/ka_GE/notifications.php new file mode 100755 index 0000000000..14eaed2de6 --- /dev/null +++ b/application/i18n/ka_GE/notifications.php @@ -0,0 +1,26 @@ + 'ეს შეტყობინება გამოგზავნილია თქვენი ვებ–გვერდიდან', + 'admin_login_url' => 'ადმინისტრატორის რეგისტრაცია', + 'admin_new_comment' => array( + 'message' => 'თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი კომენტარი პასუხად:', + 'subject' => 'ახალი კომენტარი', + ) , + 'admin_new_email' => array( + 'message' => 'თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი შეტყობინება ელექტრონული ფოსტით.', + 'subject' => 'ახალი შეტყობინება ელექტრონული ფოსტით', + ) , + 'admin_new_report' => array( + 'message' => 'თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი ანგარიში.', + 'subject' => 'ახალი ანგარიში', + ) , + 'admin_new_sms' => array( + 'message' => 'თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი ტექსტური შეტყობინება.', + 'subject' => 'ახალი ტექსტური შეტყობინება', + ) , +); diff --git a/application/i18n/ka_GE/page.php b/application/i18n/ka_GE/page.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ka_GE/page.php @@ -0,0 +1,7 @@ + 'შეცდომა!', + 'data_include' => array( + 'between' => 'ჩამოსტვირთად მიუთითეთ სწორი პუნქტი ', + 'numeric' => 'ჩამოსტვირთად მიუთითეთ სწორი პუნქტი ', + ) , + 'data_point' => array( + 'between' => 'ჩამოსტვირთად მიუთითეთ სწორი ტიპი', + 'numeric' => 'ჩამოსტვირთად მიუთითეთ სწორი ტიპი', + 'required' => 'ჩამოსტვირთად მიუთითეთ სწორი ტიპი', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'თარიღის ველი „დან“ არ შეიცავს სწორ თარიღს?', + 'range' => 'გთხოვთ მიუთითოთ სწორი თარიღი გრაფაში „დან“ . იგი ვერ იქნება დღევანდელ თარიღზე უფრო მეტი.', + ) , + 'incident_active' => array( + 'between' => 'ამ ანგარიშის დასამტკიცებლად გთხოვთ შეიყვანოთ სწორი მონაცემი ', + 'required' => 'ამ ანგარიშის დასამტკიცებლად გთხოვთ შეიყვანოთ სწორი მონაცემი ', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Am/pm ველი არ შეიცავს სწორ მონაცემს?', + ) , + 'incident_category' => array( + 'numeric' => 'კატეგორიის გრაფა არ შეიცავდს სწორ კატეგორიას?', + 'required' => 'კატეგორიის გრაფა სავალდებულოა.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'თარიღის გრაფა არ შეიცავს სწორ თარიღს?', + 'date_mmddyyyy' => 'თარიღის გრაფა არ შეიცავს სწორ თარიღს?', + 'required' => 'თარიღის გრაფა აუცილებელია.', + ) , + 'incident_description' => array( + 'required' => 'აღწერის ველი სავალდებულოა.', + ) , + 'incident_hour' => array( + 'between' => 'საათის ველი არ შეიცავს სწორ საათს?', + 'required' => 'საათის ველი სავალდებულოა.', + ) , + 'incident_information' => array( + 'alpha' => 'გთხოვთ შეიყვანოთ სწორი მონაცემი ', + 'length' => 'გთხოვთ შეიყვანოთ სწორი მონაცემი ', + ) , + 'incident_minute' => array( + 'between' => 'წუთის ველი არ შეიცავს სწორ მონაცემს?', + 'required' => 'წუთის ველი სავალდებულოა.', + ) , + 'incident_news' => array( + 'url' => 'ინფორმაციის წყაროს ბმულების ველი არ შეიცავს სწორ მისამართს (URL) ?', + ) , + 'incident_photo' => array( + 'size' => 'გთხოვთ, დარწმუნდეთ რომ ფოტოს ატვირთვის ზომები შეზღუდულია 2MB-ით.', + 'type' => 'ფოტოების ასატვირთი ველი არ შეიცავს სწორ სურათს. ფორმატები უნდა იყოს მხოლოდ JPG PNG და GIF .', + 'valid' => 'ფოტოების ასატვირთი ველი არ შეიცავს სწორ ფაილის', + ) , + 'incident_source' => array( + 'alpha' => 'წყაროს სანდოობისთვის, გთხოვთ, შეიყვანოთ სწორი მონაცემი', + 'length' => 'წყაროს სანდოობისთვის, გთხოვთ, შეიყვანოთ სწორი მონაცემი', + ) , + 'incident_title' => array( + 'length' => 'სახელწოდების ველი უნდა შეიცავდეს მინიმუმ 3 და მაქსიმუმ 200 სიმბოლოს.', + 'required' => 'სათაურის ველი სავალდებულოა.', + ) , + 'incident_verified' => array( + 'between' => 'ანგარიშიდ გადასამოწმებლად, გთხოვთ, შეიყვანოთ სწორი მონაცემი', + 'required' => 'ანგარიშიდ გადასამოწმებლად, გთხოვთ, შეიყვანოთ სწორი მონაცემი', + ) , + 'incident_video' => array( + 'url' => 'ვიდეოს ბმულების ველი არ შეიცავს სწორ მისამართს (URL) ?', + ) , + 'latitude' => array( + 'between' => 'განედის ველი არ შეიცავს სწორ განედს?', + 'required' => 'გრძედის ველი სავალდებულოა. ადგილმდებარეობის მოსანიშნად, გთხოვთ, დააჭიროთ რუქაზე .', + ) , + 'locale' => array( + 'alpha_dash' => 'ადგილმდებარეობის ველში შეიცავს არასწორს მონაცემს. ', + 'exists' => 'ეს ანგარიში უკვე ნათარგმნია ამ ენაზე', + 'length' => 'ადგილმდებარეობის ველში შეიცავს არასწორს მონაცემს. ', + 'locale' => 'ანგარიშის ორიგინალსა და თარგმანს აქვს იგივე ადგილდებარეობა (ენა)', + 'required' => 'ადგილდებარეობა სავალდებულოა.', + ) , + 'location_name' => array( + 'length' => 'ადგილმდებარეობის დასახელების ველის უნდა შეიცავდეს არანაკლებ 3 და არა უმეტეს 200 სიმბოლოს.', + 'required' => 'ადგილმდებარეობის დასახელების ველი სავალდებულოა.', + ) , + 'longitude' => array( + 'between' => 'გრძედის ველი არ შეიცავს სწორ გრძედის მონაცემს?', + 'required' => 'გრძედის ველი სავალდებულოა. ადგილმდებარეობის მოსანიშნად, გთხოვთ, დააჭიროთ რუქაზე .', + ) , + 'person_email' => array( + 'email' => 'ფოსტის ველი არ შეიცავს სწორ ფოსტის მისამართს?', + 'length' => 'ფოსტის ველი უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს.', + ) , + 'person_first' => array( + 'length' => 'სახელის ველი უნდა შეიცავდეს მინიმუმ 3 და მაქსიმუმ 100 სიმბოლოს.', + ) , + 'person_last' => array( + 'length' => 'გვარის ველი უნდა შეიცავდეს მინიმუმ 3 და მაქსიმუმ 100 სიმბოლოს.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'თარიღის ველი არ შეიცავს სწორ თარიღს?', + 'range' => 'გთხოვთ შეიყვანოთ სწორი თარიღი. იგი ვერ იქნება დღევანდელ თარიღზე უფრო მეტი.', + 'range_greater' => 'თქვენი საწყისი თარიღი ვერ იქნება იმაზე უფრო მეტი ვიდრე არის დღევანდელი.', + ) , +); diff --git a/application/i18n/ka_GE/reporters.php b/application/i18n/ka_GE/reporters.php new file mode 100755 index 0000000000..881af80725 --- /dev/null +++ b/application/i18n/ka_GE/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'სიგანის ველი სავარაუდოდ არ შეიცავს დასაშვებ სიგანეს?', + 'required' => 'სიგანის ველი სავალდებულოა. გთხოვთ დააჭიროთ რუკას, რათა ზუსტად განისაზღვროს ადგილმდებარეობა.', + ) , + 'level_id' => array( + 'numeric' => 'მომხსენებლის დონის ველი სავარაუდოდ არ შეიცავს დასაშვებ დონეს?', + 'required' => 'მომხსენებლის დონის ველი სავარაუდოდ არ შეიცავს დასაშვებ დონეს?', + ) , + 'location_name' => array( + 'length' => 'ადგილმდებარეობის სახელის ველი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 200 სიმბოლოსგან.', + 'required' => 'ადგილმდებარეობის სახელის ველი სავალდებულოა.', + ) , + 'longitude' => array( + 'between' => 'სიგრძის ველი სავარაუდოდ არ შეიცავს დასაშვებ სიგრძეს?', + 'required' => 'სიგრძის ველი სავალდებულოა. გთხოვთ, დააჭიროთ რუკას, რათა ზუსტად განისაზღვროს ადგილმდებარეობა.', + ) , + 'reporter_id' => array( + 'numeric' => 'არასწორი მომხსენებელი', + 'required' => 'არასწორი მომხსენებელი', + ) , +); diff --git a/application/i18n/ka_GE/reports.php b/application/i18n/ka_GE/reports.php new file mode 100644 index 0000000000..1499c72d76 --- /dev/null +++ b/application/i18n/ka_GE/reports.php @@ -0,0 +1,7 @@ + array( + 'length' => 'აღწერის ველი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 100 სიმბოლოსგან.', + 'required' => 'აღწერის ველი სავალდებულოა.', + ) , + 'name' => array( + 'alpha_numeric' => 'სახელის ველი უნდა შეიცავდეს მხოლოდ ასოებსა და ციფრებს.', + 'length' => 'სახელის ველი უნდა შედგებოდეს არანაკლებ 2 და არაუმეტეს 30 სიმბოლოსგან.', + 'nomodify' => 'SuperAdmin–ის ფუნქციის შეცვლა შეუძლებელია.', + 'required' => 'სახელის ველი სავალდებულოა.', + ) , +); diff --git a/application/i18n/ka_GE/settings.php b/application/i18n/ka_GE/settings.php new file mode 100755 index 0000000000..cd130a7856 --- /dev/null +++ b/application/i18n/ka_GE/settings.php @@ -0,0 +1,182 @@ + array( + 'between' => 'ნების დამრთველი კომენტარების ველს არ აქვს მართებული მონაცემი/valid value?', + 'required' => 'ნების დამრთველი კომენტარების ველის არსებობა აუცილებელია.', + ) , + 'allow_feed' => array( + 'between' => 'მომცველ ველს არ აქვს მართებული მონაცემი/valid value?', + 'required' => 'მომცველი ველის არსებობა აუცილებელია.', + ) , + 'allow_reports' => array( + 'between' => 'ნების დამრთველ ანგარიშის ველს არ აქვს მართებული მონაცემი/valid value?', + 'required' => 'ნების დამრთველი ანგარიშის ველის არსებობა აუცილებელია.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'სტატისტიკის გაზიარების ველს არ აქვს მართებული მონაცემი/valid value?', + 'required' => 'სტატისტიკის გაზიარების ველის არსებობა აუცილებელია.', + ) , + 'api' => array( + 'default_record_limit' => 'ჩანაწერების დეფოლტ რიცხვი თითოეული API მოთხოვნისას', + 'maximum_record_limit' => 'ჩანაწერების მაქსიმალური რიცხვი თითოეული API მოთხოვნისას', + 'maximum_requests_per_ip_address' => ' API მოთხოვნების მაქსიმალური რიცხვი თითოეულ IP მისამართზე', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'აკისმეტის ველს არ აქვს მართებული მონაცემი/valid value?', + 'length' => 'აკისმეტის ველს არ აქვს მართებული მონაცემი/valid value?', + ) , + 'cache_pages' => array( + 'between' => 'ქეშირებული გვერდების ველის არსებობა აუცილებელია.', + 'required' => 'ქეშირებული გვერდების ველს არ აქვს მართებული მონაცემი/valid value?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'ქეშირებული გვერდების მუდმივ/lifetime ველს არ აქვს მართებული მონაცემი/valid value?', + 'required' => 'ქეშირებული გვერდების ველის მუდმივი/lifetime ველის არსებობა აუცილებელია.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'როგორც ჩანს,თქვენს სერვერი არ არის კონფიგურირებული ისე რომ მიიღოს სუფთა URL-ები. თქვენ დაგჭირდებათ შეცვალოთ სერვერის კონფიგურაცია სანამ შეძლებთ დაუშვათ სუფთა URL-ები. იხილეთ მეტი ინფორმაცია ამ ფორუმზე თუ როგორ შეძლოთ დაუშვათ სუფთა URL-ები post', + 'clean_url_enabled' => 'ეს ფუნქცია საშუალებას აძლევს უშაჰიდის/Ushahidi მისაწვდომი იყოს "სუფთა" URLებით."index.php" გარეშე URL-ში.', + 'enable_clean_url' => 'გააქტიურება სუფთა URL-ების', + ) , + 'clickatell_api' => array( + 'length' => 'The Clickatell API-ის რიცხვის ველი უნდა შეიცავდეს არაუმეტეს 20 ასოს.', + 'required' => 'The Clickatell API0ის რიცხვის ველი სავალდებულოა.', + ) , + 'clickatell_password' => array( + 'length' => 'Clickatell-ის პაროლის ველი უნდა მოიცავდეს მინუმუმ 5 მაქსიმუმ 50 სიმბოლოს.', + 'required' => 'The Clickatell-ის პაროლის ველის არსებობა აუცილებელია.', + ) , + 'clickatell_username' => array( + 'length' => 'The Clickatell-ის მომხმარებლის სახელის ველი უნდა იყოს მაქსიმუმ 50 სიმბოლოს სიგრძის.', + 'required' => 'The Clickatell-ის მომხმარებლის სახელის ველის არსებობა აუცილებელია.', + ) , + 'configure_map' => 'კონფიგურაციის რუქა', + 'default_location' => 'დეფოლტ ადგილმდებარეობა', + 'default_map_all' => array( + 'alpha_numeric' => 'ველის ფერს არ აქვს მართებული მონაცემი?', + 'length' => 'ფერის ველი არ უნდა აღემატებოდეს 6 სიმბოლოს.', + 'required' => 'ფერის ველის არსებობა აუცილებელია.', + ) , + 'default_map_view' => 'დეფოლტ რუქის შეხედულება/View', + 'default_zoom_level' => 'დეფოლტ ზუმის დონე/Level', + 'download_city_list' => 'ჯეონეიმსიდან ქალაქების აღდგენა', + 'email_host' => array( + 'length' => 'ფოსტის სერვერის პორტის ველი ძალიან გრძელია', + 'numeric' => 'ფოსტის სერვერის პორტის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს.', + ) , + 'email_password' => array( + 'length' => 'ფოსტის სერვერის პაროლის ველი უნდა უნდა იყოს მინიმუმ 5 მაქსიმუმ 50 სიმბოლოს სიგრძის.', + 'required' => 'ფოსტის სერვერის პაროლის ველის არსებობა აუცილებელია.', + ) , + 'email_port' => array( + 'length' => 'ფოსტის სერვერის პორტის ველი ძალიან გრძელია', + 'numeric' => 'ფოსტის სერვერის პორტის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს.', + ) , + 'email_servertype' => array( + 'length' => 'ფოსტის სერვერის პორტის ველი ძალიან გრძელია', + 'required' => 'ფოსტის სერვერის ტიპის ველის არსებობა აუცილებელია.', + ) , + 'email_username' => array( + 'length' => 'ფოსტის სერვერის მომხმარებლის სახელის ველი უნდა იყოს მაქსიმუმ 50 სიმბოლოს სიგრძის.', + 'required' => 'ფოსტის სერვერის მომხმარებლის სახელის ველის არსებობა აუცილებელია.', + ) , + 'google_analytics' => array( + 'length' => 'Google Analytics-ის ველი უნდა შეიცავდეს მოქმედ ვებ საკუთრების ID-ის/valid Web Property ფორმატით UA-XXXXX-XX.', + ) , + 'items_per_page' => array( + 'between' => 'პუნქტების/items ველს თოთოეულ გვერდზე (ინტერფეისი/frontend) არ აქვს მართებული მონაცემი?', + 'required' => 'პუნქტების ველის (ინტერფეისი) არსებობა აუცილებელია.', + ) , + 'items_per_page_admin' => array( + 'between' => 'პუნქტების/items ველს თოთოეულ გვერდზე (ადმინ) არ აქვს მართებული მონაცემი?', + 'required' => 'პუნქტების ველის (ადმინ) არსებობა აუცილებელი.', + ) , + 'map' => array( + 'default_location' => 'თქვენი რუქის პროვაიდერის მოწყობა უბრალო პროვესია. შეარჩიეთ პროვაიდერი, მიიღეთ API key პროვაიდერის საიტიდან, და შეიყვანეთ API key', + 'zoom' => 'ზუმის დონე', + ) , + 'map_provider' => array( + 'choose' => 'შეარჩიეთ რუქის პროვაიდერი', + 'enter_api' => 'შეიყვანეთ ახალი API Key', + 'get_api' => 'მიიღეთ API Key', + 'info' => 'თქვენი რუქის პროვაიდერის მოწყობა უბრალო პროვესია. შეარჩიეთ პროვაიდერი. შეარჩიეთ პროვაიდერი, მიიღეთ API key პროვაიდერის საიტიდან, და შეიყვანეთ API key', + 'name' => 'რუქის პროვაიდერი', + ) , + 'map_settings' => 'რუქის პარამეტრებიs', + 'multiple_countries' => 'გააკეთეთ უშაჰიდის განლაგების მანძილის გაზომვა სხვადასხვა ქვეყნებისთვის', + 'select_default_location' => 'გთხოვთ შეარჩიოთ დეფოლტ ქვეყანა', + 'set_location' => 'დააწკაპეთ და ჩააგდეთ რუქა რომ დააყენოთ თქვენი ზუსტი ადგილმდებარეობა', + 'site' => array( + 'allow_clustering' => 'კასეტური/Cluster მონაცემები რუქაზე', + 'allow_comments' => 'ნება დართეთ მომხმარებლებს განათავსონ კომენტარები ანგარიშზე', + 'allow_feed' => 'დაურთეთ RSS სიახლეების ველი ვებ გვერდს', + 'allow_reports' => 'ნება დართეთ მომხმარებლებს წარმოადგინონ ანგარიშები', + 'api_akismet' => 'აკისმეტის პაროლი/Akismet Key', + 'cache_pages' => 'ქეშირებული გვერდები', + 'cache_pages_lifetime' => 'მუდმივი/Lifetime ქეშირებული გვერდები', + 'copyright_statement' => 'საიტის უფლებების დამცავი განცხადება', + 'default_category_colors' => 'დეფოლტ ფერი ყველა კატეგორიისთვის', + 'display_contact_page' => 'ეკრანის კონტაქტების გვერდი', + 'display_howtohelp_page' => 'ეკრანის "როგორ დავეხმაროთ"გვერდი', + 'email_alerts' => 'ელ ფოსტის მისამართის გამაფრთხილებლები', + 'email_notice' => 'In ბრძანება ანგარიშების ელ ფოსტაზე მისაღებად, გთხოვთ კონფიგურაცია გაუკეთეთ თქვენს ელ ფოსტის ანგარიშის პარამეტრებს.', + 'email_site' => 'საიტის ელ ფოსტის მისამართი', + 'google_analytics_example' => 'ვებ მფლობელის ID - ფორმატი: UA-XXXXX-XX', + 'items_per_page' => 'პუნქტები თოთოეულ გვერდზე - წინა ბოლო/Front End', + 'items_per_page_admin' => 'პუნქტები თითოეულ გვერდზე - ადმინ', + 'kismet_notice' => 'კომენტარების სპამად გამოყენების თავიდან აცილება PAkismet from Automattic.
თქვენ შეგიძლიათ მიიღოთ უფასო API key დარეგისტრირებით WordPress.com user account', + 'laconica_site' => 'Laconica საიტი ', + 'language' => 'საიტის ენა', + 'message' => 'საიტის შეტყობინება', + 'name' => 'საიტის სახელი', + 'private_deployment' => 'პირადი განლაგება', + 'share_site_stats' => 'სტატისტიკის განთავსება (შენახული უშაჰიდის სერვერზე)', + 'tagline' => 'საიტის ქვესათაური/Tagline', + 'title' => 'საიტის პარამეტრები', + 'twitter_configuration' => 'ტვიტერის ძებნის პირობები', + 'twitter_hashtags' => 'ჰეშთეგები - დააშორეთ მძიმეებით', + ) , + 'site_email' => array( + 'email' => 'საიტის ელ ფოსტის ველს არ აქვს მოქმედი ელ ფოსტის მისამართი?', + 'length' => 'საიტის ელ ფოსტის ველი უნდა იყოს მინიმუმ 4 მაქსიმუმ 100 სიმბოლოს სიგრძის.', + ) , + 'site_name' => array( + 'length' => 'საიტის სახელის ველი უნდა იყოს მინიმუმ 3 მაქსიმუმ 50 სიმბოლოს სიგრძის.', + 'required' => 'საიტის სახელის ველის არსებობა აუცილებელია.', + ) , + 'site_tagline' => array( + 'length' => 'ქვესათაურის/tagline ველი უნდა იყოს მინიმუმ 3 მაქსიმუმ 100 სიმბოლოს სიგრძის.', + 'required' => 'ქვესათაურის/tagline ველის არსებობა აუცილებელია.', + ) , + 'sms' => array( + 'clickatell_api' => 'თქვენი Clickatell-ის API რიცხვი', + 'clickatell_check_balance' => 'შეამოწმეთ თქვენი Clickatell-ის საკრედიტო ბალანსი', + 'clickatell_load_balance' => 'ჩატვირთეთ საკრედიტო ბალანსი', + 'clickatell_password' => 'თქვენი Clickatel-ის პაროლი', + 'clickatell_text_1' => 'დარეგისტრირდით/Sign up Clickatells-ის სერვისზე ასე clicking here', + 'clickatell_text_2' => 'შეიყვანეთ თქვენი Clickatell-ის შესასვლელი ინფორმაცია ქვემოთ', + 'clickatell_username' => 'თქვენი Clickatell-ის მომხმარებლის სახელი', + 'flsms_text_1' => 'შეიყვანეთ Frontline SMS-ს დაკავშირებული ტელეფონის ნომრები ქვემოთ მოცემულ ველებში', + 'flsms_text_2' => 'ნომერი შეიყვანეთ + ნიშნის ან სხვა სიმბოლოების გარეშე', + 'option_1' => 'პარამეტრი 1: გამოყენება Frontline SMS', + 'option_2' => 'პარამეტრი 2: გამოყენება გლობალური SMS გასასვლელის/Gateway', + 'title' => 'შეტყობინებების დაყენების პარამეტრები', + ) , + 'sms_no1' => array( + 'length' => 'ტელეფონი 1-ის ველს არ აქვს მართებული მონაცემი?', + 'numeric' => 'ტელეფონი 1-ის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს.', + ) , + 'sms_no2' => array( + 'length' => 'ტელეფონი 2-ის ველი ძალიან გრძელია', + 'numeric' => 'ტელეფონი 2-ის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს.', + ) , + 'sms_no3' => array( + 'length' => 'ტელეფონი 3-ის ველი ძალიან გრძელია', + 'numeric' => 'ტელეფონი 3-ის ველი უნდა მოიცავდეს მხოლოდ რიცხვებ.', + ) , +); diff --git a/application/i18n/ka_GE/sharing.php b/application/i18n/ka_GE/sharing.php new file mode 100755 index 0000000000..8d02c45369 --- /dev/null +++ b/application/i18n/ka_GE/sharing.php @@ -0,0 +1,25 @@ + 'თარიღში შესვლა', + 'date_added' => 'თარიღის დამატება', + 'last_access' => 'ბოლო შესვლა', + 'sharing_color' => array( + 'length' => 'ფერის ველი უნდა შეიცავდეს მინიმუმ 6 სიმბოლოს.', + 'required' => 'ფერის ველი სავალდებულოა.', + ) , + 'sharing_name' => array( + 'length' => 'სახელის გაზიარება მოქმედია?', + 'required' => 'სახელის გაზიარება სავალდებულოა.', + ) , + 'sharing_url' => array( + 'exists' => 'ეს საიტი მისამართი (url) უკვე არსებობს', + 'length' => 'ეს საიტი მისამართი (url) მოქმედია?', + 'required' => 'საიტი მისამართი (url) სავალდებულოა.', + 'url' => 'ამ საიტის მისამართი (url) სწორია?', + ) , +); diff --git a/application/i18n/ka_GE/stats.php b/application/i18n/ka_GE/stats.php new file mode 100755 index 0000000000..d068cf3a56 --- /dev/null +++ b/application/i18n/ka_GE/stats.php @@ -0,0 +1,41 @@ + 'დამტკიცებულია', + 'categories' => 'კატეგორიები', + 'category_impact' => 'კატეგორიის გავლენა', + 'category_impact_description' => 'ეს ცხრილი გაძლევთ ანგარიშებს კატეგორების მიხედვით. სხვადასხვა კატეგორიების შესადარებლად ჩამოდით სქროლიტ მარცხნიდან მარჯვნივ. მეტი დეტალების სანახავად მაუსის კურსორი მიაჭირეთ გრაფას', + 'choose_date_range' => 'აირჩიე თარიღის ხღვარი', + 'countries' => 'ქვეყნები', + 'country' => 'ქვეყანა', + 'country_breakdown' => 'ქვეყნების ჩამონათვალი', + 'description' => 'გამარჯობათ, ეს არის სტატისტიკის განყოფილება. აქ მალე იქნება ზოგადი აღწერის განყოფილებაც. ზემოთ შეგიძლიათ დაათვალიეროთ ქვე კატეგორიების ბმულები', + 'error' => 'შეცდომა', + 'glossary' => 'ლექსიკონი', + 'hit_summary' => 'დააჭირეთ რეზიუმეს', + 'legend' => 'წარწერა', + 'pageviews' => 'გვერდის ნახვები', + 'pageviews_description' => 'თქვენს ვებ-გვერდზე სტუმრების მიერ გვერდების ნახვის სრული რაოდენობა', + 'reports' => 'ანგარიშები', + 'reports_categories' => 'ანგარიშების კატეგორიები', + 'reports_statistics' => 'ანგარიშების სტატისტიკები', + 'reports_status' => 'ანგარიშების სტატუსი', + 'report_punchcard' => 'Punchcard ანგარიში', + 'report_stats' => 'ანგარიშს სტატისტიკა', + 'stats_not_setup' => 'სტატისტიკა არ არის დაყენებული', + 'time_range_1' => '1 თვე', + 'time_range_2' => '3 თვე', + 'time_range_3' => '6 თვე', + 'time_range_all' => 'ყველა', + 'unapproved' => 'დაუმტკიცებელი', + 'unique_visitors' => 'უნიკალური სტუმრები', + 'unique_visitors_description' => 'პირების რაოდენობა; უნიკალური ვიზიტორები გამოვლინდებანიან cookies მეშვეობით. იმ შემთხვევაში, თუ სტუმარს არ აქვს cookies, მისი გამოვლენა შესაძლებელია მარტივად IP მისამართის, ბრაუზერის, ოპერაციული სისტემის და სხვა მექანიზმების მეშვეობით', + 'unverified' => 'შეუმოწმებელი', + 'verified' => 'შემოწმებული', + 'visitor_summary' => 'სტუმარის რეზიუმე', + 'visits_description' => 'ვიზიტი არის უნიკალური ვიზიტორი ჩანაწერი, რომელიც მოცემულ ვებ-გვერდზე გაჩერდა 30 წამით მაინც', +); diff --git a/application/i18n/ka_GE/tooltips.php b/application/i18n/ka_GE/tooltips.php new file mode 100755 index 0000000000..ee261e9ff5 --- /dev/null +++ b/application/i18n/ka_GE/tooltips.php @@ -0,0 +1,51 @@ + 'თქვენი ელ ფოსტის მისამართი', + 'profile_name' => 'თქვენი სრული სახელი', + 'profile_notify' => 'დიახ-ის არჩევა საშუალებას გაძლევთ მიიღოთ ხმოვანი გამაფრთხილებლები ელ ფოსტით როცა ახალი რეპორტი ან კომენტარები დაიწერება თქვენს ვებ გვერდზე', + 'profile_password' => 'თქვენი პაროლი.დატოვეთ ეს ველი ცარიელი თუ გსურთ შეინარჩუნოთ ძველი პაროლი', + 'profile_username' => 'თქვენი მომხმარებლის სახელის შეცვლა შეუძლებელია', + 'settings_alert_email' => 'ეს არის ელ ფოსტის მისამართი რომელიც გამოიყენება ელ ფოსტის ხმოვანი შეტყობინებების გასაგზავნად.', + 'settings_allow_clustering' => 'ეს საშუალებას აძლევს გაერთიანებულ მსგავს რეპორტებს განთავსდნენ რუქაზე ერთ წერტილში/dot', + 'settings_allow_comments' => 'საშუალებას აძლევს მომხმარებლებს ძირითად საიტზე არსებულ რეპორტზე კომენტარი გააკეთონ.', + 'settings_allow_feed' => 'ეს საშუალებას აძლევს RSS სიახლეების ველს ჩანდეს ძირითად საიტზე.', + 'settings_allow_reports' => 'ნებას რთავს მომხმარებლებს შეავსონ ინფორმაცია ვებ ფორმით.', + 'settings_api_default_record_limit' => 'მიღებული რეპორტების დეფოლტ რიცხვი თითოეული API მოთხოვნის მიხედვით', + 'settings_api_max_record_limit' => 'მიღებული რეპორტების მაქსიმალური რიცხვი თითოეული API მოთხოვნის მიხედვით', + 'settings_api_max_requests_per_ip' => 'API მოთხოვნების მაქსიმალური რიცხვი თითოეულ IP მისამართზე', + 'settings_cache_pages' => 'გვერდის ქეშირების ნების დართვა ან აკრძალვა.ეს საშუალებას აძლევს გვერდს გამოჩნდეს უფრო სწრაფად პასუხის დროის შემცირებით. ჩვენ გირჩევთ ქეშირების გამოყენებას ვიზიტორების დიდი რაოდენობის მქონე საიტის ქონის დროს. **დაიმახსოვრეთ რეპორტები განთავსდება წინა მხარეს ბოლოში თქვენ მიერ დაყენებული ნუსხის მიხედვით (მუდმივი/lifetime ქეშირება).', + 'settings_cache_pages_lifetime' => 'მუდმივი/lifetime ქეშირების დაყენება.', + 'settings_checkins' => 'ეს პარამეტრი აყენებს ვიზიტებს თქვენს განლაგებაში.ეს არის გამარტივებული რეპორტის ტიპი რომელიც არ არის მოდერირებული მანამდე სანამ ის არ წავა ძირითად გვერდად/homepage და მოითხოვს თქვენი საიტის კონფიგურაციას გარკვეული სახით.როდესაც დააყენებთ დარწმუნდით რომ ლოკალური დრო UTC-ზე არის და თქვენს თემას ვიზიტორების ადგილმდებარეობის გარკვევის მხარდაჭერა აქვს/checkins.გააქტიურების შემდგომ,ამ მხარდაჭერის მქონე თემები გამოჩნდება თქვენს addons/თემების პარამეტრების გვერდზე.', + 'settings_configure_map' => 'დააყენეთ რუქა რომ მოიცვათ სპეციპიკური ადგილმდებარეობა', + 'settings_default_category_colors' => 'საიტზე დააყენეთ ერთი ფერის კოდი ყველა კატეგორიისთვის ', + 'settings_default_location' => 'ეს არის ქვეყანა სადაც განლაგებულია საიტი', + 'settings_display_contact' => 'ჩართეთ ან გამორთეთ tab ძირითად საიტზე კონტაქტების.', + 'settings_display_howtohelp' => 'ჩართეთ ან გამორთეთ როგორ დავეხმაროთ tab ძირითად საიტზე.', + 'settings_display_items_per_page' => 'ეს არის რეპორტების რიცხვი რომელიც ჩანს ძირითადი საიტის თითოეულ გვერდზე.', + 'settings_display_items_per_page_admin' => 'ეს არის რეპორტების რიცხვი რომელიც ჩანს ძირითადი საიტის თითოეულ გვერდზე ადმინის Back End-ზე.', + 'settings_flsms_download' => 'ეს არის კერა/hub შემოსული მესიჯებისთვის', + 'settings_flsms_synchronize' => 'ეს სინქრონიზაციას უკეთებს შეტყობინებებს hub-ში უშაჰიდის პლატფორმის მეშვეობით', + 'settings_flsms_text_1' => 'ტელეფონის ნომრები რისი საშუალებითაც მიიღება ტექსტური შეტყობინებები', + 'settings_google_analytics' => 'აღრიცხავს ვიზიტორებს თქვენ საიტზე.მიიღეთ ვიზიტორების დეტალური სტატისტიკა', + 'settings_locale' => 'აყენებს ენას რომელიც გამოყენებულ უნდა იქნას საიტზე.', + 'settings_map_provider' => 'ეს ადგენს რომელიცრუქა უნდა იყოს გამოყენებული საიტზე', + 'settings_private_deployment' => 'ამ პარამეტრის დაყენება მართალია/true-ზე ან დიახ/yes-ზე თქვენს განლაგებას გახდის პირადს/private ისე რომ მხოლოდ ანგარიშის მქონე მომხმარებლებს ვისაც თქვენ დაადგენთ ექნებათ საშუალება გაიგონ განლაგება.', + 'settings_server_host' => 'ეს არის ელ ფოსტების ადგილსამყოფელი', + 'settings_server_password' => 'ეს არის ელ ფოსტის მისამართის პაროლი სადაც მიიღება რეპორტები', + 'settings_server_port' => 'ეს საჭიროა შემომავალი კავშირების დასტურების მისაღებად/accept ელ ფოსტის მისამართზე', + 'settings_server_ssl_support' => 'ეს საჭიროა დაცული კავშირის გაძლიერებისთვის', + 'settings_server_type' => 'ეს საჭიროა ელ ფოსტის აღსადგენად host server-დან', + 'settings_server_username' => 'ეს არის ელ ფოსტის მისამართი რომელიც იღებს რეპორტებს', + 'settings_share_site_stats' => 'Hit-ების სტატისტიკა ინახება უშაჰიდის მიერ კონტროლირებად სერვერზე. ამ პარამეტრის გააქტიურებით,თქვენ გეძლევათ შესაძლებლობა მიიღოთ hit-ების სტატისტიკა პირდაპირ თქვენს ადმინ პანელზე. მისი გაუქმებით, თქვენ შეწყვეტთ სტატისტიკის მოგროვებას და ვერ შეძლებთ გადატვირთვის/ტრაფიკის სტატისტიკის აღდგენას როცა ის გამორთული იქნება.', + 'settings_site_copyright_statement' => 'ყოველთვის კარგია უფლებების დაცვის მოთხოვნა თქვენს ნამუშევაერზე.თქვენთვის მართებული და საჭირო ლიცენზიის დასადგენად,ეწვიეთ, http://creativecommons.org/choose/.', + 'settings_site_email' => 'ეს არის ელ ფოსტის მისამართი სადაც მიღებულ იქნება ელ ფოსტის რეპორტები და შეტყობინებები კონტაქტების ფორმიდან.', + 'settings_site_message' => 'ეს არის ტექსტი რომელიც გამოჩნდება რუქის ზემოთ ძირითად გვერდზე/homepage. ეს საჭიროა საიტის ვიზიტორებისთვისმნიშვნელოვანი ინფორმაციის გაცემისთვის.ყუთის გასაქრობად უბრალოდ წაშალეთ აქედან შეტყობინება.', + 'settings_site_name' => 'ეს არის საიტის სახელი რომელიც ჩნდება ძირითადი საიტის თავში.', + 'settings_site_tagline' => 'მოკლედ აღწერეთ რის შესახებ არის ეს საიტი.', + 'settings_twitter_configuration' => 'დააყენეთ ტვიტერის ჰეშთეგი რომელიც გამოიყენება ტვიტებში', +); diff --git a/application/i18n/ka_GE/ui_admin.php b/application/i18n/ka_GE/ui_admin.php new file mode 100755 index 0000000000..bb0ea3ae82 --- /dev/null +++ b/application/i18n/ka_GE/ui_admin.php @@ -0,0 +1,203 @@ + 'შესვლა უარყოფილია. ან თქვენი მონაცემები არაა მართებული ან თქვენი მოთხოვნაა უარყოფილი', + 'access_denied_others' => 'შესვლა უარყოფილია. თქვენი მოთხოვნა გაგებულია,მაგრამ უარყოფილია შესვლების ლიმიტიდან გამომდინარე. ცადეთ მოგვიანებით', + 'actions' => 'მოქმედებები', + 'added' => 'დამატებულია', + 'added_edited' => 'დამატებულია/შესწორებულია', + 'admin_role' => 'ადმინი', + 'anonymous' => 'ანონიმური', + 'api_banned' => 'აკრძალული API ', + 'api_logs' => 'API შესვლები', + 'api_settings' => 'API პარამეტრები', + 'api_unban' => 'აკრძალვის გაუქმება', + 'api_unban_all' => 'აკრძალვის გაუქმება ყველას', + 'approved' => 'მიღებულია', + 'approve_auto' => 'ავტომატური მიღება', + 'approve_manual' => 'ხელით მითება', + 'archived' => 'დაარქივებული', + 'are_you_sure_you_want_to' => 'დარწმუნებული ხართ რომ გსურთ', + 'are_you_sure_you_want_to_delete_this_item' => 'დარწმუნებული ხართ რომ გსურთ წაშალოთ ეს პუნქტი', + 'are_you_sure_you_want_to_delete_this_photo' => 'დარწმუნებული ხართ რომ გსურთ წაშალოთ ეს ფოტო', + 'are_you_sure_you_want_to_switch_forms' => 'დარწმუნებული ხართ რომ გსურთ ჩართოთ ფორმა', + 'author' => 'ავტორი', + 'author_email' => 'ავტორის ელ ფოსტა', + 'back' => 'უკან', + 'banip_action' => 'IP აკრძალვა', + 'cancel' => 'უარი', + 'categories' => 'კატეგორიები', + 'chart_display_error' => 'შეცდომის გამომსახველი გრაფიკი', + 'check_message_valid' => 'გთხოვთ დარწმუნდით სწორია თუ არა შეტყობინება', + 'check_number' => 'გთხოვთ დარწმუნდეთ სწორია თუ არა ნომერი', + 'check_sms_settings' => 'გთხოვთ შეამოწმოთ თქვენი სმს პარამეტრები!', + 'checkins' => 'შემოსვლები/Checkins', + 'cities_loaded' => 'ჩატვირთული ქალაქები', + 'code' => 'კოდი', + 'code_out_of_sync' => 'კოდის ვერსია სინქრონიზაციის მიღმა.', + 'comments' => 'კომენტარები', + 'confirmation_code' => 'თქვენი ხმოვანი გამაფრთხილებლის დასადასტურებელი კოდის არის: ', + 'confirm_msg' => 'მომხმარებელი იყო', + 'country_not_found' => 'ქვეყანა ვერ მოიძებნა', + 'created_edited' => 'შექმნილი/შესწორებული', + 'create_report' => 'რეპორტის შექმნა', + 'critical_upgrade' => 'კრიტიკული გაუმჯობესება', + 'daily' => 'ყოველდღიურად', + 'database' => 'მონაცემების ბაზა', + 'date_time' => 'თარიღი და დრო', + 'db_out_of_sync' => 'DB ვერსია სინქრონიზაციის მიღმა.', + 'deleted' => 'წაშლილი', + 'delete_action' => 'წაშლა', + 'demo' => 'დემო', + 'description' => 'აღწერილობა', + 'disabled' => 'გაუქმებული', + 'download_reports' => 'რეპორტების გადმოწერა', + 'edited_by' => 'ჩასწორებულია მიერ', + 'edit_action' => 'ჩასწორება', + 'edit_log' => 'მონახცემის ჩასწორება', + 'email' => 'ელფოსტა', + 'error_geocoding' => 'შეცდომა ჯეოქოდინგშ! HTTP შეცდომა', + 'error_imap' => 'IMAP PHP ბიბლიოთეკა არ არის დაინსტალებული', + 'error_msg' => 'შეცდომა', + 'error_post_incident' => 'შეცდომა,ინციდენტის დაპოსტვა შეუძლებელია', + 'every_six_hours' => 'ყოველ ექვს საათში', + 'every_twelve_hours' => 'ყოველ თორმეტ საათში', + 'experimental' => 'ექსპერიმენტული', + 'faqs' => 'ხშირად დასმული კითხვები', + 'feed' => 'ველი', + 'feedback' => 'უკუკავშირი', + 'feeds' => 'ველები', + 'field_default' => 'დეფოლტ მონაცემი', + 'field_height' => 'სიმაღლე (რიგებში)', + 'field_maxlength' => 'სიმბოლოების მაქსიმალური სიგრძე', + 'field_name' => 'ველის სახელწოდება', + 'file_not_found_upload' => 'ატვირთული ფაილი ვერ მოიძებნა', + 'file_open_error' => 'წასაკითხად არ იხსენაბ ფაილი', + 'form_not_exists' => 'ეს ფორმა არ არსებობს!', + 'forum' => 'ფორუმი', + 'free_text_field' => 'ტექსტის ველის არეალი (უფასო ტექსტი)', + 'from' => 'დან', + 'from_date' => 'დან', + 'geonames_timeout' => 'ჯეონეიმსის შესვენების შეცდომა', + 'get_help' => 'მიიღეთ დახმარება', + 'header_actions' => 'მოქმედებები', + 'header_add_edit' => 'დამატება/შესწორება', + 'header_email' => 'ელ ფოსტა', + 'header_manage_users' => 'მომხმარებლების მართვა', + 'header_role' => 'როლი', + 'header_user' => 'მომხმარებელი', + 'help' => 'დახმარება', + 'hourly' => 'საათობრივად', + 'incident_feed' => 'ინციდენტის ველი', + 'instance' => 'ნიმუში', + 'instances' => 'ნიმუშები', + 'instance_details' => 'ნიმუშების დეტალები', + 'invalid_parameter' => 'ძალადაკარგული პარამეტრი', + 'ip_address' => 'IP მისამართი', + 'is_date' => 'ეს არის რიცხვის ველი?', + 'label_email' => 'ელ ფოსტის მისამართი:', + 'label_full_name' => 'სრული სახელი:', + 'label_password' => 'პაროლი:', + 'label_role' => 'როლი:', + 'label_username' => 'მომხმარებლის სახელი:', + 'layers' => 'ფენები', + 'login_role' => 'მოდერატორი', + 'logout' => 'გასვლა', + 'logs' => 'შემოსვლები', + 'manage' => 'მართვა', + 'manage_roles' => 'როლების და ნებართვებისმართვა ', + 'manage_users' => 'მომხმარებლების ნახვა', + 'manage_users_edit' => 'დამატება/ჩასწორება მომხმარებლების', + 'marked_as_not_spam' => 'მონიშნულია როგორც არა სპამი', + 'marked_as_spam' => 'მონიშნულია როგორც სპამი', + 'match_no_documents' => 'არ შეესაბამება არცერთ პარამეტრს', + 'message' => 'შეტყობინება', + 'messages' => 'შეტყობინებები', + 'messages_laconica' => 'Laconica შეტყობინებები', + 'messages_twitter' => 'Twitter შეტყობინებები', + 'message_sent' => 'თქვენი შეტყობინება გაგზავნილია!', + 'minutes' => 'წუთები', + 'missing_parameter' => 'აკლია პარამეტრი', + 'moderator' => 'მოდერატორი', + 'modified' => 'სახეცვლილი', + 'move_down_action' => 'ქვემოთ გადაადგილება', + 'move_up_action' => 'ზემოთ გადაადგილება', + 'multiple_hosted_instances' => 'მრავალჯერადი მიღებული ინსტანციები', + 'my_profile' => 'ჩემი პროფილი', + 'new_password' => 'ახალი პაროლი', + 'no' => 'არა', + 'notification' => 'შეტყობინება', + 'not_case_sensitive' => 'ეს არ არის მგრძნობიარე შემთხვევა.', + 'not_found' => 'არაა ნაპოვნი', + 'no_data' => 'მონაცემები არ არის. სანახებელი შედეგები არ არის.', + 'no_error' => 'შეცდომა არ არის', + 'no_result_display_msg' => 'შედეგები არ არის საჩვენებელი!', + 'page' => 'გვერდი', + 'pages' => 'გვერდები', + 'page_not_found' => 'გვერდი არ მოიძებნა', + 'parameters_used' => 'გამოყენებული პარამეტრები', + 'password' => 'პაროლი', + 'password_reset' => 'პაროლის აღდგენა', + 'password_reset_message_line_1' => 'ძვირფასო', + 'password_reset_message_line_2' => 'ჩვენ მივიღეთ მოთხოვნა რომ აღდვადგინოთ პაროლი', + 'password_reset_message_line_3' => 'პაროლის შესაცვლელდ გთხოვთ დააჭიროთ ქვემოთ მოცემულ ბმულს(ან დააკოპირეთ და ჩასვით ის თქვენს ბროუზერში).', + 'password_reset_message_line_4' => 'მოთხოვნისამებრ,თქვენი პაროლი შეიცვალა.თქვენი ახალი დეტალები საჭიროებისამებრ არის', + 'password_reset_subject' => 'უშაჰიდის პაროლის აღდგენა', + 'phone' => 'ტელეფონი', + 'post_method_not_used' => 'მონაცემები არ გაიგზავნა პოსტვის მეთოდით', + 'public_listing' => 'საზოგადოებრივი ჩამონათვალი', + 'read' => 'კითხვა', + 'relevance' => 'შესაბამისობა', + 'reporters' => 'რეპორტის დამწერებს', + 'reporter_levels' => 'რეპორტის დამწერების დონეები', + 'reports' => 'რეპორტები', + 'required' => 'საჭირო', + 'reset' => 'გადატვირთვა', + 'results' => 'შედეგები', + 'save_settings' => 'პარამეტრების შენახვა', + 'search' => 'ძიება', + 'searching_for' => 'მოძებნა', + 'select_field_type' => '--- მიუთითეთ ველის ტიპი ---', + 'select_item' => 'გთხოვთ მონიშნეთ პუნქტი', + 'sender' => 'გამგზავნი', + 'sent_from_website' => 'ეს შეტყობინება გაიგზავნა თქვენი ვებ გვერდიდან ', + 'server_time' => 'სერვერის დრო', + 'settings' => 'პარამეტრები', + 'showing_page' => 'ნაჩვენებია გვერდი', + 'showing_results' => 'ნაჩვენებია შედეგები', + 'special_category' => 'სპეციალური კატეგორია', + 'special_category_explanation' => 'ეს არის სპეციალური კატეგორია რომელიც არ გამოჩნდება ანგარიშის წარდგენის ფორმაში მომხმარებლებისთვის ვინც ავსებს რეპორტებს.ეს გამოიყენება "სანდო რეპორტერების" ფუნქციასთან ერთობლივად.', + 'statistics' => 'სტატისტიკები', + 'stats' => 'სტატისტიკა', + 'stats_collection_error' => 'სტატისტიკის მოგორვება ვერ შესრილდა! გთხოვთ კიდევ სცადოთ მოგვიანებით.', + 'stats_collection_error_short' => 'სტატისტიკის შეგროვება ვერ შესრულდა!', + 'superadmin_role' => 'სუპერ ადმინი', + 'task_performed' => 'დავალება შესრულდა', + 'text_field' => 'ტექსტის ველი', + 'theme_name' => 'სახელი', + 'title' => 'მომხმარებლების მართვა', + 'to' => 'მას', + 'total_records' => 'ჩანაწერები სულ', + 'to_date' => 'მას', + 'translate_reports' => 'რეპორტების თარგმანი', + 'unapproved' => 'არდამტკიცებული', + 'unknown' => 'უცნობი', + 'unread' => 'წაუკითხავი', + 'update_link' => ' დააწკაპეთ აქ რომ გააუმჯობესოთ ეხლავე', + 'upgrade_ushahidi' => 'უშაჰიდის გაუმჯობესება', + 'upgrade_ushahidi_status' => 'უსაგიდის სტატუსის გაუმჯობესება', + 'upload_reports' => 'შეტყობინებების ატვირთვა', + 'users' => 'მომხმარებლები', + 'ushahidi' => 'უშაჰიდი', + 'version' => 'ვერსია', + 'version_available' => ' შესაძლებელია გაუმჯობესება.', + 'view_site' => 'საიტის ნახვა', + 'welcome' => 'მისალმება, ', + 'wiki' => 'ვიკი', + 'yes' => 'დიახ', + 'your_search_for' => 'თქვენი ძებნა', +); diff --git a/application/i18n/ka_GE/ui_main.php b/application/i18n/ka_GE/ui_main.php new file mode 100755 index 0000000000..a0969de3e1 --- /dev/null +++ b/application/i18n/ka_GE/ui_main.php @@ -0,0 +1,480 @@ + 'შესახებ', + 'access' => 'ხელმისაწვდომობა', + 'access_limits' => 'ხელმისაწვდომობის ლიმიტი', + 'account_name' => 'ანგარიშის სახელი', + 'actions' => 'ქმედებები', + 'action_confirm' => 'ამ ბრძანებას ვერ გააუქმებთ. დარწმუნებული ხართ რომ გინდათ გაგრძელება?', + 'activate' => 'გააქტიურება', + 'active' => 'გააქტიურება', + 'add' => 'დამატება', + 'added_by' => 'დამატებულია', + 'additional_reports' => 'დამატებითი ანგარიშები', + 'add_edit' => 'დამატება/რედაქტირება', + 'add_field' => 'ველის დამატება', + 'add_language' => 'ენის დამატება', + 'add_new' => 'ახლის დამატება', + 'add_new_category' => 'ახალი კატეგორიის დამატება', + 'add_translation' => 'თარგმანის დამატება', + 'admin' => 'ადმინისტრაცია', + 'alerts' => 'შეტყობინების მიღება', + 'alerts_alert_me' => 'შემატყობინეთ თუ ანგარიში შევსებულია:', + 'alerts_btn_send' => 'შეტყობინების შენახვა', + 'alerts_email' => 'ელექტრონული ფოსტის მისამართი:', + 'alerts_enter_email' => 'ელექტრონული ფოსტის მისამართის შეყვანა', + 'alerts_enter_mobile' => 'შეიყვანეთ თქვენი მობილურის ნომერი. მაგალითად - 577 XXXXXX', + 'alerts_get' => 'შეტყობინების მიღება', + 'alerts_mobile_phone' => 'მობილურ ტელეფონზე:', + 'alerts_place_spot' => 'ან მონიშნეთ ადგილი ქვემოთ განთავსებულ რუკაზე და მიიღეთ ინფორმაცია 20 კილომეტრის რადიუსში შემოსული შეტყობინების შესახებ .', + 'alerts_place_spot2' => 'თუ ვერ იპოვეთ თქვენი ადგილმდებარეობა, სწორი მდებარეობის მოსანიშნად დააწკაპუნეთ რუკაზე.', + 'alerts_rss' => 'RSS Feeds (დააკოპირეთ ქვემოთ მოცემული მისამართი (url)', + 'alerts_select_city' => 'აირჩიეთ ქალაქი', + 'alerts_step1_select_city' => 'ნაბიჯი 1: აირჩიეთ ქალაქი ან თქვენი ადგილმდებარეობა:', + 'alerts_step2_send_alerts' => 'ნაბიჯი 2: შეტყობინება გამოაგზავნეთ ჩემ:', + 'alerts_step3_select_catgories' => 'ნაბიჯი 3 (ნებაყოფლობითია): აირჩიეთ კატეგორიები', + 'alert_confirm_previous' => 'დაადასტურეთ მოთხოვნა წინა შეტყობინებაზე', + 'alert_saved' => 'თქვენი შეტყობინება შენახულია!', + 'all' => 'ყველა', + 'allowed' => 'ნებადართული', + 'all_categories' => 'ყველა კატეგორია', + 'and' => 'და', + 'approve' => 'დადასტურება', + 'approved' => 'დადასტურებულია', + 'approved_reports' => 'ანგარიში დადასტურებულია', + 'approve_this_report' => 'დაადასტურე ანგარიში', + 'approximate' => 'სავარაუდო', + 'archive' => 'არქივი', + 'archived' => 'დაარქივებული', + 'at' => 'დან', + 'author' => 'ავტორი', + 'avg_reports_per_day' => 'Avg ანგარიშები დღეში', + 'awaiting_approval' => 'ელოდება დამტკიცებას', + 'awaiting_verification' => 'ელოდება შემოწმებას', + 'blog' => 'ბლოგი', + 'cancel' => 'გაუქმება', + 'categories' => 'კატეგორიები', + 'category' => 'კატეგორია', + 'category_filter' => 'კატეგორიის ფილტრი', + 'category_has_been' => 'კატეგორია უკვე', + 'category_name' => 'კატეგორიის სახელი', + 'choose' => 'აირჩიე', + 'choose_data_points' => 'ჩამოსატვირთად აირჩიე მონაცემები', + 'choose_field_type' => 'აირჩიე ველის ტიპი', + 'cleanurl' => 'წაშალე მისამართები (URLs)', + 'clear_map' => 'გაასუფთავე რუქა', + 'close' => 'დახურე', + 'clusters' => 'კლასტერები (clusters)', + 'color' => 'ფერი', + 'comment' => 'კომენტარი', + 'comments' => 'კომენტარები', + 'comment_details' => 'ცომენტარის დეტალები', + 'configuration_saved' => 'თქვენი პარამეტრები შენახულია!', + 'configure' => 'კონფიგურაცია', + 'contact' => 'დაგვიკავშირდით', + 'contact_code' => 'უსაფრთხოების კოდი', + 'contact_email' => 'ელექტრონული ფოსტის მისამართი', + 'contact_message' => 'მესიჯი', + 'contact_message_has_send' => 'თქვენი მესიჯი გაგსავნილია!', + 'contact_name' => 'სახელი', + 'contact_phone' => 'ტელეფონის ნომერი', + 'contact_send' => 'შეტყობინების გაგზავნა', + 'contact_subject' => 'შეტყობინების თემა', + 'copyright' => 'საავტორო უფლებები ©', + 'create' => 'შექმნა', + 'create_edit' => 'შექმნა/რედაქტირება', + 'create_new' => 'ახლის შექმნა', + 'create_report' => 'ანგარიშის შექმნა', + 'credibility' => 'სანდოობა', + 'data' => 'ინფორმაცია', + 'date' => 'თარიღი', + 'date_format' => '(თვე/დღე/წელი)', + 'date_time' => 'თარიღი და დრო', + 'day' => 'დღე', + 'deactivate' => 'დეაქტივაცია', + 'default_location_name' => 'ნაირობი, კენია', + 'delete' => 'წაშლა', + 'deleted' => 'წაშლილია', + 'deletes' => 'შლის', + 'delete_disabled' => 'წაშლა შეზღუდულია', + 'delete_last' => 'ბოლოს წაშლა', + 'delete_report' => 'ამ ანგარიშის წაშლა', + 'delete_selected' => 'მონიშნულის წაშლა', + 'delete_spam' => 'სპამის წაშლა', + 'demo' => 'დემო', + 'description' => 'აღწერილობა', + 'detailed_location_example' => 'მაგალითი: ქალაქის ბაზარის კუთხე, მე-5 ქუჩა და მე-4 გამზირი, იოჰანესბურგი', + 'details' => 'დეტალები', + 'direct_report' => 'პირდაპირი ანგარიში', + 'disabled' => 'შეზღუდულია', + 'disapprove' => 'დაუმრკიცებელი', + 'download_reports' => 'ანგარიშის ჩამოტვირთვა', + 'edit' => 'რედაქტირება', + 'edit_form_fields' => 'ველებიდან რეედაქტირება', + 'edit_report' => 'ანგარიშის რედაქტირება', + 'email_address' => 'ელექტრონული ფოსტის მისამართზე', + 'email_configuration' => 'ელექტრონული ფოსტის სერვერის პარამეტრები', + 'email_server_host' => 'ელექტრონული ფოსტის სერვერის ჰოსტინგი', + 'email_server_password' => 'ელექტრონული ფოსტის სერვერის პაროლი', + 'email_server_port' => 'ელექტრონული ფოსტის სერვერის პორტი', + 'email_server_ssl_support' => 'ელექტრონული ფოსტის სერვერის SSL support-ი', + 'email_server_type' => 'sელექტრონული ფოსტის სერვერის ტიპი', + 'email_server_username' => 'ელექტრონული ფოსტის სერვერის მომხმარებლის სახელი', + 'email_settings_comment_0' => 'თქვენი პარამეტრები უნდა იყოს დაკავშირებული ამ ელექტრონული ფოსტის მისამართთან', + 'email_settings_comment_00' => 'ელექტრონული ფოსტით ანგარიშების მისაღებად, გთხოვთ დაბლა შეიყვანეთ თქვენი ფოსტის ანგარიშის პარამეტრები. გთხოვთ გაითვალისწინოთ, რომ ფოსტას მიიღებთ თქვენს', + 'email_settings_comment_1' => 'ზოგიერთი სერვერები მოითხოვენ სრულ საფოსტო მისამართს', + 'email_settings_comment_2' => 'ელექტრონული ფოსტის ანგარიშის პაროლი', + 'email_settings_comment_3' => 'საერთო პორტები: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'მაგალითები: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'მაგალითები: pop3, imap', + 'email_settings_comment_6' => 'შესაძლებელი ან შეუძლებელი SSL კავშირები', + 'end_point' => 'დან', + 'error' => 'შეცდომა!', + 'example' => 'მაგალითი', + 'example_country' => 'კენია', + 'feed' => 'კავშირი', + 'feedback' => 'შეფასება', + 'feeds' => 'კავშირები', + 'feed_has_been' => 'კავშირი უკვე', + 'feed_items' => 'კავშირის საკითხები', + 'feed_name' => 'კავშირის სახელი', + 'feed_url' => 'კავშირის მისამართი (URL)', + 'field_unused' => 'გამოუყენებელი ველი', + 'file' => 'ფაილი', + 'filters' => 'ფილტრები', + 'find' => 'ძებნა', + 'find_location' => 'ადგილდებარეობის მოძებნა', + 'first_name' => 'სახელი', + 'force_run_scheduler' => 'დამგეგმავის გაშვება', + 'forgot_password' => 'დაგავისყდათ თქვენი პაროლი?', + 'form' => 'ფორმა', + 'forms' => 'ფორმები', + 'form_description' => 'აღწერილობის ფორმა', + 'form_edit' => 'ამ ფორმის რედაქტირება', + 'form_has_been' => 'ფორმა უკვე', + 'form_title' => 'ფორმის დასახელება', + 'from' => 'მდე', + 'full_name' => 'სრული სახელი', + 'geolocation_available' => 'ადგილდებარეობა ხელმისაწვდომია', + 'geometry_color' => 'ფერი', + 'geometry_comments' => 'კომენტარები', + 'geometry_label' => 'ეტიკეტი', + 'geometry_strokewidth' => 'შტრიხის სიგანე', + 'hashtag' => 'ჰეშტეგი (#)', + 'has_been' => 'იყო', + 'help' => 'როგორ დაგეხმაროთ', + 'hidden' => 'დამალული', + 'hide' => 'დამალვა', + 'hide_this_message' => 'ამ მესიჯის დამალვა', + 'home' => 'მთავარი', + 'how_to_report' => 'როგორ უნდა შეგვატყობინოთ', + 'id' => 'პირადობა (ID)', + 'image' => 'სურათი', + 'images' => 'სურათი', + 'image_icon' => 'სურათი/გამოსახულება', + 'inactive' => 'არააქტიური', + 'inbox' => 'შემოსული', + 'incident' => 'ინციდენტი', + 'incidents_nearby' => 'ახლოს მდებარე ინციდენტები', + 'incident_location' => 'ნციდენტის ადგილმდებარეობა', + 'include' => 'ჩართვით', + 'include_categories' => 'კატეგორიების ჩათვლით', + 'include_description' => 'აღწერილობების ჩათვლით', + 'include_detail' => 'რაც შეიძლება მეტი დეტალების ჩათვით', + 'include_latitude' => 'გრძედის ჩათვლით', + 'include_location_information' => 'ადგილდებარეობის ინფორმაციის ჩათვლით', + 'include_longitude' => 'გრძედის ჩათვლით', + 'incoming_media' => 'მედიის ჩათვლით', + 'information_evaluation' => 'ინფორმაციის შეფასება', + 'input_location' => 'მიუთითეთ თქვენი ზუსტი ადგილმდებარეობა', + 'in_response_to' => 'საპასუხოდ', + 'ip_address' => 'IP მისამართი', + 'item' => 'საკითხი', + 'items' => 'საკითხები', + 'item_details' => 'საკითხის დეტალები', + 'item_title' => 'საკითხის სათაური', + 'key' => 'გასაგები', + 'kml_kmz_file' => 'KMZ/KML ფაილი', + 'kml_kmz_upload' => 'ატვირთეთ KMZ/KML ფაილი', + 'kml_url' => 'KML მისამართი (URL)', + 'language' => 'ენა', + 'last' => 'ბოლო', + 'last_month' => 'ბოლო თვე', + 'last_name' => 'გვარი', + 'last_year' => 'ბოლო წელი', + 'latitude' => 'განედი', + 'layers' => 'ფენები', + 'layers_filter' => 'სხვა ფენები', + 'layer_has_been' => 'ფენები უკვე', + 'layer_name' => 'ფენების სახელები', + 'layer_url' => 'ფენების მისამართი (URL)', + 'leave_a_comment' => 'კომენტარის დატოვება', + 'level' => 'დონე', + 'level_has_been' => 'ეს დონე უკვე', + 'level_name' => 'დონის სახელი', + 'limited' => 'შეზღუდული', + 'link' => 'ლინკი', + 'location' => 'ადგილმდებარეობა', + 'locations' => 'ადგილდებარეობები', + 'location_example' => 'ქალაქი, რეგიონი და/ან რაიონი', + 'login' => 'შესვლა', + 'longitude' => 'გრძედი', + 'map' => 'რუქა', + 'mark_read' => 'მონიშნო როგორც წაკითხული', + 'mark_unread' => 'მონიშნო როგორც წაუკითხავი', + 'media' => 'მედია', + 'media_filter' => 'მედია ფილტრი', + 'message' => 'შეტყობინება', + 'messages' => 'შეტყობინება', + 'message_details' => 'მესიჯის დეტალები', + 'mobile' => 'მობილური', + 'modify' => 'შეცვლა', + 'modify_date' => 'თარიღის შეცვლა', + 'month' => 'თვე', + 'more' => 'მეტი', + 'more_information' => 'მეტი ინფორმაცია', + 'multi_country_instance' => 'მოიცავს თუ არა უშაჰიდი მრავალ ქვეყნებს', + 'name' => 'სახელი', + 'nearby_report' => 'ახლოს მდებარე ანგარიში', + 'new' => 'ახალი', + 'news' => 'სიახლეები', + 'news_feeds' => 'სიახლის კაბშირი', + 'news_source' => 'ადგილმდებარეობა', + 'new_category' => 'სიახლის კატეგორია', + 'new_password' => 'ახალი პაროლი', + 'new_report' => 'ახალი ანგარიში', + 'next' => 'შემდეგი', + 'no' => 'არა', + 'notices' => 'შენიშვნები', + 'not_approved' => 'არ დამტკიცებულა', + 'not_approved_singular' => 'არ დამტკიცებულა', + 'not_spam' => 'არ არის სპამი', + 'not_specified' => 'არ არის განსაზღვრული', + 'no_reports' => 'აქ არ არის ანგარიშები', + 'no_results' => 'აქ არ არის რეზულტატი', + 'official_news' => 'ოფიციალური და ძირითადი სიახლეები', + 'option' => 'არჩევანი', + 'optional' => 'არასავალდებულო', + 'options' => 'პარამეტრები', + 'organization' => 'ორგანიზაცია', + 'organizations' => 'ორგანიზაციები', + 'organization_description' => 'ორგანიზაციის აღწერილობა', + 'organization_email' => 'ორგანიზაციის ელექტრონული ფოსტა', + 'organization_has_been' => 'ორგანიზაცია უკვე', + 'organization_name' => 'ორგანიზაციის სახელი', + 'organization_phone_1' => 'ორგანიზაციის ტელეფონის ნომერი 1', + 'organization_phone_2' => 'ორგანიზაციის ტელეფონის ნომერი 2', + 'organization_website' => 'ორგანიზაციის ვებ-გვერდი', + 'original' => 'ორიგინალი', + 'original_description' => 'ორიგინალის აღწერა', + 'original_title' => 'ორიგინალის სათაური', + 'other_ushahidi_instances' => 'უშაჰიდის სხვა', + 'outbox' => 'outbox', + 'outgoing' => 'გამავალი', + 'page' => 'გვერდი', + 'pages' => 'გვერდები', + 'page_description' => 'გვერდის აღწერილობა', + 'page_has_been' => 'გვერდი უკვე', + 'page_tab_name' => 'გვერდის tab-ის სახელი', + 'page_title' => 'გვერდის სათაური', + 'parent_category' => 'საწყისი კატეგორია', + 'password' => 'პაროლი', + 'password_again' => 'გაიმეორე თქვენი პაროლი', + 'password_forgot' => 'დაგავიწყდათ თქვენი პაროლი?', + 'password_reset_confirm' => 'ახალი პაროლისთვის შეამოწმეთ თქვენი ელექტრონული ფოსტა.', + 'password_save' => 'შესული ხართ ამ კომპიუტერიდან?', + 'past_month' => 'გასული თვე', + 'past_year' => 'გასული წელი', + 'pending' => 'მოლოდინში', + 'per' => 'ით', + 'personal_information' => 'პერსონალური ინფორმაცია არასავალდებულო.', + 'phone' => 'ტელეფონი', + 'pictures' => 'სურათები', + 'pictures_and_videos' => 'სურათები და ვიდეოები', + 'pinpoint_location' => '* მოძებნეთ თქვენი მდებარეობა განედისა და გრძედის კოორდინატების გამოყენებით (ფორმატი: 38.19,-85.61), ან სწორი მდებარეობის მოსანიშნად დააწკაპუნეთ რუკაზე.', + 'play' => 'თამაში', + 'please_note' => 'გთხოვთ ჩაინიშნოთ,', + 'plugin_url' => 'Plugin ვებ-გვერდები', + 'preview' => 'გადახედვა', + 'preview_item' => 'საკითხების გადახედვა', + 'preview_message' => 'მესიჯების გადახედვა', + 'previous' => 'წინა', + 'profile_saved' => 'თქვენი პროფილი დამახსოვრებულია', + 'quick_stats' => 'სწრაფი სტატისტიკა', + 'rating' => 'რაიტინფი', + 'read' => 'Le�do', + 'receive' => 'მიღება', + 'receive_from' => 'მიიღოს', + 'receive_notifications' => 'შეტყობინების მიღება', + 'recent_reports' => 'უახლესი ანგარიშები', + 'refresh_news_feeds' => 'სიახლეების განახლება', + 'remove' => 'წაშლა', + 'reply' => 'პასუხი', + 'report' => 'ანგარიში', + 'reporter' => 'რეპორტიორი', + 'reporters' => 'რეპორტიორები', + 'reporter_date' => 'ანგარიშის თარიღი', + 'reporter_email' => 'რეპორტიორის ელექტრონული ფოსტა', + 'reporter_first_name' => 'რეპორტიორის სახელი', + 'reporter_has_been' => 'რეპორტიორი უკვე', + 'reporter_ip' => 'რეპორტიორის IP მისამართი', + 'reporter_last_name' => 'რეპორტიორის გვარი', + 'reporter_level' => 'რეპორტიორის დონე', + 'reporter_levels' => 'რეპორტიორის დონეები', + 'reporter_phone' => 'რეპორიორის ტელეფონი', + 'reports' => 'შეტყობინება', + 'reports_btn_browse' => 'დათვალიერება', + 'reports_btn_submit' => 'გაგზავნა', + 'reports_categories' => 'კატეგორიები', + 'reports_date' => 'თარიღი', + 'reports_description' => 'აღწერილობა', + 'reports_download_csv' => 'ანგარიში ჩამოიტვირთება CSV ფორმატში', + 'reports_email' => 'ელექტრონული ფოსტა', + 'reports_features' => 'მახასიათებლები', + 'reports_find_location' => 'იპოვე ადგილმდებარეობა შენთან ახლოს', + 'reports_first' => 'სახელი', + 'reports_last' => 'გვარი', + 'reports_location_name' => 'ადგილმდებარეობის დაზუსტება', + 'reports_news' => 'ინფორმაციის წყაროს ბმული', + 'reports_optional' => 'დამატებითი ინფორმაცია', + 'reports_photos' => 'ფოტოების ატვირთვა', + 'reports_return' => 'ანგარიშების გვერდზე დაბრუნება', + 'reports_select_city' => 'აირჩიე ქალაქი', + 'reports_submitted' => 'თქვენი ანგარიში უკვე გადაეცა ჩვენს თანამშრომლებს გადასახედად.აუცილებლობის შემთხვევაში ჩვენ მალევე დაგიბრუნდებით.', + 'reports_submit_new' => 'შეტყობინების გაგზავნა', + 'reports_time' => 'დრო', + 'reports_timeline' => 'ქრონოლოგია', + 'reports_title' => 'შეტყობინების სათაური', + 'reports_video' => 'ვიდეოს ბმული', + 'report_an_incident' => 'შეგვატყობინეთ ინციდენტი', + 'report_details' => 'ანგარიშის დეტალები', + 'report_option_1' => 'SMS შეტყობინების გაგზავნით', + 'report_option_2' => 'ელექტრონული ფოსტის გაგზავნით ', + 'report_option_3' => 'ჰეშტაგით (#) ტვიტის გაგზავნით', + 'report_option_4' => 'ამ ფორმის შევსებით', + 'report_saved' => 'თქვენი ანგარიში დამახსოვრებულია', + 'report_title' => 'ანგარიშის სათაური', + 'request_information' => 'მეტი ინფორმაციის მოთხოვნა', + 'request_location' => 'მდებარეობის მოთხოვნა', + 'requirements' => 'მოთხოვნები', + 'reset_password' => 'პაროლის გადატვირთვა', + 'retrieve_city_names' => 'მივიღოთ შერჩეული ქვეყნის ქალაქის სახელი', + 'role' => 'როლი', + 'save' => 'დამახსოვრება', + 'saved' => 'დამახსოვრებულია', + 'save_close' => 'შეინახეთ და დახურეთ', + 'save_report' => 'ანგარიშის დამახსოვრება', + 'schedule' => 'განრიგი', + 'scheduler_day' => 'დღე', + 'scheduler_hour' => 'საათი', + 'scheduler_minute' => 'წუთი', + 'scheduler_weekday' => 'კვირის დღე', + 'search' => 'ძებნა', + 'search_results' => 'ძებნის შედეგები', + 'security_code' => 'უსაფრთხოების კოდი', + 'select_all' => 'ყველაფრის მონიშვნა', + 'select_field_type' => 'აირჩიეთ ველის ტიპი', + 'select_form_type' => 'აირჩიეთ ფორმის ტიპი', + 'select_in_map' => 'აირჩიეთ რუქაზე', + 'select_multiple' => 'აირჩიეთ იმდენი რამდენიც საჭიროა', + 'select_one' => 'გთხოვთ გადაამოწმოთ, რომ თქვენ შეამოწმეტ პუნქტები', + 'select_theme' => 'აირჩიეთ თემა', + 'send' => 'გაგზავნა', + 'sending_to' => 'გაგზავნა', + 'sent' => 'გაიგზავნა', + 'sent_by' => 'გაგზავნილია', + 'server_address' => 'სერვერის მისამართი', + 'server_type' => 'სერვერის ტიპი', + 'service' => 'სერვისი', + 'service_username' => 'მომხმარებლის სერვისი', + 'service_user_id' => 'მომხმარებლის ID სერვილი', + 'share' => 'გაზიარება', + 'shared_data' => 'საერთო მონაცემები', + 'share_has_been' => 'გაზიარება უკვე', + 'sharing' => 'გაზიარება', + 'show' => 'ნახვა', + 'show_all' => 'ყველაფრის ნახვა', + 'site' => 'ვებ-გვერდი', + 'site_email_address' => 'ვებ-გვერდის ელექტრონული ფოსტის მისამართი', + 'site_url' => 'ვებ-გვერდის მისამართი (URL)', + 'sms' => 'სმს', + 'source' => 'წყარო', + 'source_name' => 'წყაროს სახელი', + 'source_url' => 'სყაროს მისამართი (URL)', + 'spam' => 'სპამი', + 'ssl_support' => 'SSL-ის მხარდაჭერა?', + 'start_point' => 'დან', + 'step' => 'ნაბიჯი', + 'submit' => 'შეტყობინების გაგზავნა', + 'submit_sms' => 'წარმოდგენილია სმს-ით', + 'submit_sms1' => 'გააგზავნე სმს-ი', + 'submit_sms2' => 'თქვენს ნომერზე', + 'success' => 'წარმატება!', + 'successfuly_imported' => 'წარმატებით იქნა შემოტანილი', + 'surname' => 'გვარი', + 'system' => 'სისტემა', + 'tcp_port' => 'TCP პორტი', + 'themes' => 'თემები', + 'theme_default' => 'უშაჰიდის თემის დეფაულტი', + 'theme_settings' => 'თემის დაყენება', + 'this' => 'ეს', + 'this_day' => 'დღეს', + 'this_month' => 'ამ თვეში', + 'this_year' => 'ამ წელში', + 'time' => 'დრო', + 'title' => 'თარიღი ', + 'to' => 'დან', + 'today' => 'დღეს', + 'today_at' => 'დღეს', + 'total_reports' => 'სრული ანგარიშები', + 'translated' => 'ნათარგმნი', + 'translated_description' => 'ნათარგმნი აღწერილობა', + 'translated_title' => 'ნათარგმნი სათაური', + 'translate_to' => 'ნათარგმნი', + 'translation' => 'ნათარგმნი', + 'translation_saved' => 'ნათარგმნი შენახულია', + 'unread' => 'წაუკითხავი', + 'unverified' => 'გადაუმოწმებელი', + 'update_feeds' => 'კავშირის განახლება', + 'upload' => 'ატვირთვა', + 'upload_file' => 'ასატვირთი ფაილი', + 'upload_reports' => 'ანგარიშების ატვირთვა', + 'upload_reports_detail_1' => 'ქვემოთ მოცემული ფორმით, შეგიძლიათ იმპორტი გაუკეთოთ ინციდენტებს', + 'upload_reports_detail_4' => 'უნდა შეიცავდეს ინციდენტის სათაურსა და თარიღს', + 'upload_reports_detail_5' => 'CSV ანგარიშის ნიმუში', + 'upload_reports_detail_6' => '#,ინციდენტის სათაური,ინციდენტის თარიღი,ადგილდებარეობა,აღწერა,კატეგორია,დამტკიცებულია,გადამოწმებულია
"1","საეჭვო გარდაცვალება ნაირობიში","2009-05-15 01:06:00","ნაირობი","სამი შემთხვევა დადასტურდა ურუგვაიში","გარდაცვალება, მოქალაქეები, ",დიახ,დიახ', + 'upload_reports_detail_7' => '"2","მაროდიორობა","2009-03-18 10:10:00","აკრა","მაროდიორობა ხდება ყველგან","მასობრივი არეულობები, სიკვდილიანობები, საკუთრების დაკარგვა, ",დიახ,არა', + 'upload_successful' => 'წარმატებით აიტვირთა', + 'user' => 'მომხმარებელი', + 'username' => 'მომხმარებ,ლის სახელი', + 'ushahidi_admin' => 'უშაჰიდის ამინი', + 'verified' => 'გადამოწმებული', + 'verified_reports' => 'გადამოწმებული ანგარიშები', + 'verify' => 'გადამოწმება', + 'verify_this_report' => 'ამ ანგარიშის გადამოწმება', + 'version' => 'ვერსია', + 'via' => 'მეშვეობით', + 'video' => 'ვიდეო', + 'view' => 'ნახვა', + 'views' => 'ნახვები', + 'view_all' => 'ყველაფრის ნახვა', + 'view_all_feeds' => 'ყველა კავშირის ნახვა', + 'view_all_reports' => 'ყველა ანგარიშის ნახვა', + 'view_items' => 'საკითხების ნახვა', + 'view_more' => 'უფრო მერის ნახვა', + 'view_report' => 'ანგარიშის ნახვა', + 'view_reports' => 'ანგარიშების ნახვა', + 'visible' => 'დასანახი', + 'waiting_approval' => 'ელოდება დადასტურებას', + 'waiting_verification' => 'ელოდება გადამოწმებას', + 'weight' => 'წონა', + 'yes' => 'დიახ', + 'yesterday' => 'ხვალ', + 'zoom_in' => 'გადიდება', + 'zoom_out' => 'დაპატარავება', +); diff --git a/application/i18n/ka_GE/upgrade.php b/application/i18n/ka_GE/upgrade.php new file mode 100755 index 0000000000..2249e52489 --- /dev/null +++ b/application/i18n/ka_GE/upgrade.php @@ -0,0 +1,30 @@ + array( + 'between' => 'შეყვანილი მონაცემები არასწორია. შეიძლება მარტივად 0 აღნიშნავდეს არას და 1 დიახს.', + ) , + 'upgrade_automatic' => 'ავტომატური განახლება', + 'upgrade_available' => 'ხელმისაწვდომი განახლებები', + 'upgrade_continue_btn_text' => 'გაგრძელება', + 'upgrade_db_btn_text' => 'განახლება', + 'upgrade_db_text_1' => 'ჩვენ ვაპირებთ რომ განვაახლოთ თქვენი მონაცემები', + 'upgrade_db_text_2' => 'უახლესი მონაცემთა ვერსიიდან', + 'upgrade_db_text_3' => 'დააჭირეთ "განახლება" ღილაკს.', + 'upgrade_db_text_4' => 'თუ გსურთ, რომ თქვენი მონაცემთა ბაზა დაბეკაპდეს (backup), უბრალოდ მონიშნეთ ქვედა ღილაკი .', + 'upgrade_db_text_5' => 'განახლებამდე დააბეკაპებ (backup) მონახემთა ბაზას? (Highly recommended)', + 'upgrade_db_title' => 'უშაჰიდის მონაცემთა განახლება', + 'upgrade_failed' => 'რაგაც მომენტში განახლება შეწყდა', + 'upgrade_manual' => 'სახელმძღვანელოს განახლება', + 'upgrade_status' => 'უშაჰიდის სტატუსის განახლება', + 'upgrade_text_1' => 'ქვემოთ არის მოცემული ინსტრუქცია თუ როგორ შეიძლება უშაჰიდის განლაგების განახლება', + 'upgrade_text_2' => 'ნაბიჯი 1: ჩამოთვირთე უახლესი უშაჰიდი აქედან http://download.ushahidi.com', + 'upgrade_text_3' => 'ნაბიჯი 2: რომ შეცვალოთ საქაღალდეების შინაარსი, მიუხედავად იმისა თუ რა ოპერაციული სისტემაა გაშვებული ვებ სერვერზე, თქვენ შეგიძლიათ გამოიყენეთ თქვენთვის სასურველი ინსტრუმენტი/რეჟიმი (მაგალითად: telnet, ftp, ssh). All EXCEPT:', + 'upgrade_text_4' => 'ნაბიჯი 4: დააჭირე "გააგრძელე" განახლების ღილაკი.', + 'upgrade_text_5' => 'ავტომატური განახლებისთვის, დააჭირეთ ქვედა ღილაკს.', + 'upgrading' => 'განახლების პროცესშია', +); diff --git a/application/i18n/km/alerts.php b/application/i18n/km/alerts.php new file mode 100644 index 0000000000..67742e7f08 --- /dev/null +++ b/application/i18n/km/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'វាល​អ៊ីមែល​មិន​​​បង្ហាញ​ថា​ជា​​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ឡើយ?', + 'email_check' => 'បាន​ចុះ​ឈ្មោះ​អាសយដ្ឋាន​អ៊ីមែល​នោះ​​រួច​ហើយ ដើម្បី​ទទួល​បាន​ការ​ជូនដំណឹង​សម្រាប់​ទីតាំង​នោះ។', + 'length' => 'វាល​អ៊ីមែល​ត្រូវ​តែ​មាន​យ៉ាងហោចណាស់​ ៤ តួអក្សរ និង​មិន​ច្រើន​ជាង ៦៤ តួ​អក្សរ​ឡើយ។', + 'required' => 'វាល​អ៊ីមែល​ត្រូវ​​ទាមទារ ប្រសិនបើ​បាន​​គូស​ធីក​ប្រអប់​ធីក។', + ) , + 'alert_country' => array( + 'single_country' => 'ការ​ប្រើប្រាស់​នេះ​ពង្រីក​តែ​ក្នុង​ប្រទេស​មួយ​ប៉ុណ្ណោះ។ សូម​ប្រាកដ​ថា ទីតាំង​​សម្រាប់​ការ​ជូន​ដំណឹង​ស្ថិត​ក្នុង​ប្រទេស %s ។', + ) , + 'alert_lat' => array( + 'between' => 'អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។', + 'required' => 'អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។', + ) , + 'alert_lon' => array( + 'between' => 'អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។', + 'required' => 'អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។', + ) , + 'alert_mobile' => array( + 'length' => 'វាល​ទូរស័ព្ទ​​ចល័ត​មិន​មាន​ចំនួន​តួ​លេខ​​​ត្រឹមត្រូវ​ឡើយ។', + 'mobile_check' => 'បាន​ចុះ​ឈ្មោះ​លេខ​ទូរស័ព្ទ​​ចល័ត​នោះ​​រួច​ហើយ​ដើម្បី​ទទួល​បាន​ការ​ជូនដំណឹង​សម្រាប់​ទីតាំង​នោះ។', + 'numeric' => 'វាល​​លេខ​ទូរស័ព្ទ​ចល័ត​មិន​មាន​​​​បង្ហាញ​​​លេខ​ទូរស័ព្ទ​ត្រឹមត្រូវ​ឡើយ។ សូម​បញ្ចូល​លេខ​ទូរស័ព្ទ​ជាមួយ​​កូដ​​ប្រទេស។', + 'one_required' => 'អ្នក​ត្រូវ​តែ​បញ្ចូល​លេខ​ទូរស័ព្ទ​ចល័ត​​ ឬ​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក។', + 'required' => 'វាល​​លេខ​ទូរស័ព្ទ​ចល័ត​ត្រូវ​​បាន​ទាមទារ ប្រសិនបើ​បាន​ធីក​ប្រអប់​គូស​ធីក។', + ) , + 'alert_radius' => array( + 'in_array' => 'អ្នក​មិន​បាន​កំណត់​ចម្ងាយ​ត្រឹមត្រូវ​នៅ​លើ​ផែន​ទី​ឡើយ។', + 'required' => 'អ្នក​មិន​បាន​កំណត់​ចម្ងាយ​ត្រឹមត្រូវ​នៅ​លើ​ផែន​ទី​ឡើយ។', + ) , + 'alert_recipient' => array( + 'required' => 'អ្នក​មិន​បាន​កំណត់​អ្នក​ទទួល​សម្រាប់​ការ​ជូនដំណឹង​ឡើយ។', + ) , + 'alerts_subscribed' => 'អ្នក​បាន​ជាវ​សម្រាប់​ការ​ជូនដំណឹង​ជាមួយ​ប្រភេទ​ខាងក្រោម', + 'code_already_verified' => 'កូដ​នេះ​ត្រូវ​បាន​ផ្ទៀងផ្ទាត់!', + 'code_not_found' => 'រក​មិន​ឃើញ​កូដ​សម្រាប់​ការ​ផ្ទៀងផ្ទាត់​នេះ​ឡើយ! សូម​អះអាង​ថា​អ្នក​មាន URL ត្រឹមត្រូវ​ហើយ។', + 'code_verified' => ' កូដ​របស់​អ្នក​បាន​​ផ្ទៀងផ្ទាត់​ដោយ​ត្រឹមត្រូវ។ ឥឡូវ​នេះ​អ្នក​នឹង​ទទួល​បាន​ការ​ជូនដំណឹង​​អំពី​ហេតុការណ៍​ដែល​បាន​កើត​ឡើយ។', + 'confirm_request' => 'ដើម្បី​អះអាង​សំណើ​ការ​ជូនដំណឹង​របស់​អ្នក សូម​ចូល​ទៅ​កាន់', + 'create_more_alerts' => 'ត្រឡប់​ទៅ​ទំព័រ​​សម្រាប់​ការ​ជូនដំណឹង​ ដើម្បី​បង្កើត​ការ​ជូនដំណឹង​បន្ថែម', + 'email_alert_request_created' => 'សំណើ​ការ​ជូនដំណឹង​អ៊ីមែល​របស់​អ្នក​ត្រូវ​បាន​បង្កើត ហើយ​សារ​សម្រាប់​ការ​ផ្ទៀងផ្ទាត់​ត្រូវ​បាន​ផ្ញើ​ទៅ​កាន់', + 'email_code' => 'សូម​បញ្ចូល​កូដ​ការ​អះអាង​អ៊ីមែល​ដែល​អ្នក​បាន​ទទួល​ខាង​ក្រោម៖', + 'email_error_head' => 'សំណើ​ការ​​ជូនដំណឹង​អ៊ីមែល​របស់​អ្នក​មិន​ត្រូវ​បាន​រក្សាទុក​ឡើយ!', + 'email_ok_head' => 'សំណើ​ការ​ជូនដំណឹង​អ៊ីមែល​របស់​អ្នក​ត្រូវ​បាន​រក្សាទុក!', + 'error' => 'ប្រព័ន្ធ​មិន​អាច​ដំណើរការ​សំណើ​ការ​អះអាង​របស់​អ្នក​បាន​​ទេ!', + 'mobile_alert_request_created' => 'សំណើ​ការ​ជូនដំណឹង​ចល័ត​​​​របស់​អ្នក​ត្រូវ​បាន​បង្កើត ហើយ​សារ​សម្រាប់​ការ​ផ្ទៀងផ្ទាត់​ត្រូវ​បាន​ផ្ញើ​ទៅ​កាន់', + 'mobile_code' => 'សូម​បញ្ចូល​កូដ​ការ​អះអាង​​សារ​ SMS ​ដែល​អ្នក​បាន​​​​ទទួល​​លើ​​តាម​រយៈ​ទូរស័ព្ទ​ចល័ត​របស់​អ្នក​​ខាង​ក្រោម៖', + 'mobile_error_head' => 'សំណើ​ការ​​ជូនដំណឹង​​​តាម​ឧបករណ៍​ចល័ត​​របស់​អ្នក​មិន​ត្រូវ​បាន​រក្សាទុក​ឡើយ!', + 'mobile_ok_head' => 'សំណើ​ការ​ជូនដំណឹង​ឧបករណ៍​ចល័ត​របស់​អ្នក​ត្រូវ​បាន​រក្សាទុក!', + 'settings_error' => 'ការ​ប្រើប្រាស់​នេះ​មិន​បាន​រៀបចំ​​​ដើម្បី​អនុវត្ត​ការ​ជូនដំណឹង​ដោយ​ត្រឹមត្រូវ​ឡើយ', + 'unsubscribe' => 'អ្នក​បាន​ទទួល​អ៊ីមែល​នេះ ពីព្រោះ​អ្នក​បាន​​ជាវ​ការ​​ជូនដំណឹង។ ប្រសិនបើ​អ្នក​មិន​ចង់​ទទួល​បាន​ការ​ជូនដំណឹង​ទៀត​ទេ​សូម​ទៅ​កាន់', + 'unsubscribed' => 'អ្នក​នឹង​មិន​ទទួល​បាន​ការ​ជូនដំណឹង​ទៀត​ទេ', + 'unsubscribe_failed' => 'យើង​មិន​អាច​​ឲ្យ​អ្នក​​ឈប់​ជាវ​បាន​ទេ។ សូម​អះអាង​ថា​អ្នក​មាន URL ត្រឹមត្រូវ។', + 'verification_email_subject' => 'ការ​​ផ្ទៀងផ្ទាត់​​ការ​ជូនដំណឹង', + 'verify_code' => 'អ្នក​នឹង​ទទួល​បាន​​ការ​ជូនដំណឹង​នៅ​លើ​ទី​តាំង​នេះ​រហូរ​ដល់​អ្នក​អះអាង​សំណើ​របស់​អ្នក។', +); diff --git a/application/i18n/km/auth.php b/application/i18n/km/auth.php new file mode 100644 index 0000000000..5459099858 --- /dev/null +++ b/application/i18n/km/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'អ៊ីមែល​ដែល​អ្នក​បាន​បញ្ចូល​មិនមែន​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ឡើយ។', + 'exists' => 'សូមទោស មាន​គណនី​អ្នកប្រើ​រួចហើយ​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​នេះ។', + 'length' => 'វាល​អ៊ីមែល​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៤ និង​យ៉ាងច្រើន​៦៤។', + 'required' => 'បាន​ទាមទារ​វាល​អ៊ីមែល។', + ) , + 'name' => array( + 'length' => 'វាល​ឈ្មោះ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​៣ និង​យ៉ាងច្រើន​១០០។', + 'required' => 'បាន​ទាមទារ​វាល​ឈ្មោះ។', + 'standard_text' => 'វាល​ឈ្មោះ​អ្នកប្រើ​មាន​តួអក្សរ​ដែល​មិន​អនុញ្ញាត។', + ) , + 'current_password' => array( + 'length' => 'វាល​ពាក្យសម្ងាត់​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​៨។', + 'login error' => 'សូម​ពិនិត្យមើល​ថា​អ្នក​បាន​បញ្ចូល​ពាក្យសម្ងាត់ និង​អ៊ីមែល​ត្រឹមត្រូវ។', + 'matches' => 'សូម​បញ្ចូល​ពាក្យសម្ងាត់​ដូចគ្នា​ក្នុង​វាល​ពាក្យសម្ងាត់​ទាំងពីរ។', + 'required' => 'បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់។', + 'alpha_dash' => 'វាល​ពាក្យសម្ងាត់​ត្រូវតែ​ជា​តួអក្សរ សញ្ញា # សញ្ញា @ លេខ សញ្ញា (_) និង​សញ្ញា (-) ប៉ុណ្ណោះ', + 'incorrect' => 'ពាក្យសម្ងាត់​បច្ចុប្បន្ន​ដែល​បាន​បញ្ចូល​សម្រាប់​គណនី​របស់​អ្នក​គឺ​មិន​ត្រឹមត្រូវ​ទេ។ សូម​ព្យាយាម​ម្ដងទៀត។', + ) , + 'new_password' => array( + 'length' => 'វាល​ពាក្យសម្ងាត់​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៨។', + 'login error' => 'សូម​ពិនិត្យមើល​ថា​អ្នក​បាន​បញ្ចូល​អ៊ីមែល និង​ពាក្យសម្ងាត់​ត្រឹមត្រូវ។', + 'matches' => 'សូម​បញ្ចូល​ពាក្យសម្ងាត់​ដូចគ្នា​នៅ​ក្នុង​វាល​ពាក្យសម្ងាត់​ទាំងពីរ។', + 'required' => 'បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់។', + 'alpha_dash' => 'វាល​ពាក្យសម្ងាត់​ត្រូវតែ​ជា​តួអក្សរ សញ្ញា # សញ្ញា @ លេខ សញ្ញា (_) និង​សញ្ញា (-) ប៉ុណ្ណោះ', + ) , + 'password' => array( + 'default' => 'មាន​កំហុស​ពេល​អ្នក​ព្យាយាម​ចូល។', + 'length' => 'វាល​ពាក្យសម្ងាត់​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៨។', + 'login error' => 'សូម​ពិនិត្យមើល​ថា​អ្នក​បាន​បញ្ចូល​អ៊ីមែល និង​ពាក្យសម្ងាត់​ត្រឹមត្រូវ។', + 'matches' => 'សូម​បញ្ចូល​ពាក្យសម្ងាត់​ដូចគ្នា​នៅ​ក្នុង​វាល​ពាក្យសម្ងាត់​ទាំងពីរ។', + 'required' => 'បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់។', + 'riverid server down' => 'ម៉ាស៊ីន​មេ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ​បាន​ផ្អាក​ដំណើរការ។ សូម​ព្យាយាម​ម្ដងទៀត​នៅ​ពេល​ក្រោយ។', + 'riverid' => '%s', + 'alpha_dash' => 'វាល​ពាក្យសម្ងាត់​ត្រូវតែ​ជា​តួអក្សរ សញ្ញា # សញ្ញា @ លេខ សញ្ញា (_) និង​សញ្ញា (-) ប៉ុណ្ណោះ', + ) , + 'password_confirm' => array( + 'matches' => 'វាល​អះអាង​ពាក្យសម្ងាត់​ត្រូវតែ​ផ្គូផ្គង​ជាមួយ​វាល​ពាក្យសម្ងាត់។', + ) , + 'resetemail' => array( + 'email' => 'អ៊ីមែល​ដែល​អ្នក​បាន​បញ្ចូល​មិនមែន​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ឡើយ។', + 'invalid' => 'សូមទោស យើង​មិន​មាន​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ទេ', + 'required' => 'បាន​ទាមទារ​វាល​អ៊ីមែល។', + ) , + 'role' => array( + 'superadmin_modify' => 'មានតែ​អ្នកប្រើ​ជាន់ខ្ពស់​ប៉ុណ្ណោះ​ដែល​អាច​កែប្រែ​អ្នកប្រើ​ជាន់ខ្ពស់ ឬ​បង្កើន​ឋានៈ​អ្នកប្រើ​ទៅជា​អ្នក​គ្រប់គ្រង​បាន។', + ) , + 'roles' => array( + 'alpha_numeric' => 'ទ្រង់ទ្រាយ​មុខងារ​មិន​ត្រឹមត្រូវ។', + 'length' => 'វាល​មុខងារ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៥ និង​យ៉ាង​ច្រើន៣០។', + 'required' => 'អ្នក​ត្រូវតែ​កំណត់​មុខងារ​ឲ្យ​បាន​យ៉ាងតិច​មួយ។', + 'values' => 'អ្នក​ត្រូវតែ​ជ្រើស​មុខងារ​មួយ​គឺ​អ្នក​គ្រប់គ្រង ឬ​អ្នកប្រើ។', + ) , + 'token' => array( + 'invalid' => 'ការ​ទៅ​យក​ពាក្យសម្ងាត់​ដែល​បាន​ភ្លេច​គឺ​មិន​ត្រឹមត្រូវ', + 'required' => 'បាន​ទាមទារ​ការ​ទៅ​យក​ពាក្យសម្ងាត់​ដែល​បាន​ភ្លេច', + ) , + 'username' => array( + 'admin' => 'មុខងារ​អ្នកគ្រប់គ្រង​មិន​អាច​កែប្រែ​បាន​ទេ។', + 'alpha_numeric' => 'វាល URL ទម្រង់​សាធារណៈ​ត្រូវតែ​មាន​ជា​អក្សរ និង​លេខ​ប៉ុណ្ណោះ។', + 'exists' => 'សូមទោស URL ទម្រង់​សាធារណៈ​នេះ​មាន​គេ​ប្រើ​ហើយ។', + 'length' => 'វាល URL ទម្រង់​សាធារណៈ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច២ និង​យ៉ាងច្រើន១០០។', + 'login error' => 'សូម​ពិនិត្យមើល​ថា​អ្នក​ពិតជា​បាន​បញ្ចូល URL ទម្រង់​សាធារណៈ​ត្រឹមត្រូវ។', + 'required' => 'បាន​ទាមទារ​វាល URL ទម្រង់​សាធារណៈ។', + 'superadmin' => 'មុខងារ​អ្នក​គ្រប់គ្រង​ជាន់​ខ្ពស់ មិន​អាច​កែប្រែ​បាន​ទេ។', + 'csrf' => 'អាច​មាន​ការ​វាយប្រហារ​របស់ CSRF ។ តើ​អ្នក​ពិតជា​ចង់​បង្កើត/កែប្រែ​អ្នកប្រើ​មែន​ឬ?', + ) , +); diff --git a/application/i18n/km/bug.php b/application/i18n/km/bug.php new file mode 100644 index 0000000000..85b08a5b31 --- /dev/null +++ b/application/i18n/km/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'សូមបញ្ចូលលេខកូដដែលមាន។', + 'required' => 'សូមវាយបញ្ចូលកូដសន្តិសុខ។', + ) , + 'email' => array( + 'email' => 'ប្រឡោះអ៊ីម៉ែលហាក់ដូចអត់មានអី', + 'length' => 'ប្រឡោះអ៊ីម៉ែលត្រូវតែមានយ៉ាងតិច4 និង​ មិនច្រើនជាង 64តួ', + 'required' => 'តម្រូវការអ៊ីម៉ែលបើប្រអប់បានជ្រើសរើស', + ) , + 'error' => array( + 'required' => 'ប្រឡោះមិនប្រក្រតីតម្រូវឲ្យមាន', + ) , + 'subject' => array( + 'length' => 'ប្រឡោះប្រធានបទតម្រូវឲ្យមានយ៉ាងតិច3តួ', + 'required' => 'ប្រឡោះប្រធានបទតម្រូវឲ្យមាន', + ) , + 'yourname' => array( + 'length' => 'ប្រឡោះឈ្មោះតម្រូវ​ឲ្យមានយ៉ាងតិច3តួ', + 'required' => 'វាល​ឈ្មោះ​ត្រូវ​បាន​ទាមទារ។', + ) , +); diff --git a/application/i18n/km/category.php b/application/i18n/km/category.php new file mode 100644 index 0000000000..422ce4b3e5 --- /dev/null +++ b/application/i18n/km/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'វាល​ពណ៌​ត្រូវតែ​មាន​៦​តួអក្សរ​។', + 'required' => 'បាន​ទាមទារ​វាល​ពណ៌។', + ) , + 'category_description' => array( + 'required' => 'បាន​ទាមទារ​វាល​ពណ៌នា។', + ) , + 'category_image' => array( + 'size' => 'សូម​ប្រាកដ​ថា​ទំហំ​រូបភាព​ផ្ទុក​ឡើង​ត្រូវ​បាន​កំណត់​ត្រឹម​៥០​គីឡូបៃ។', + 'type' => 'វាល​រូបភាព​មិន​បង្ហាញ​ថា​មាន​រូបភាព​ត្រឹមត្រូវ​ទេ។ ទ្រង់ទ្រាយ​ដែល​ព្រម​ទទួល​គឺ .JPG .PNG និង .GIF។', + 'valid' => 'វាល​រូបភាព​មិន​បង្ហាញ​ថា​មាន​ឯកសារ​ត្រឹមត្រូវ​ទេ', + ) , + 'category_title' => array( + 'length' => 'វាល​ចំណងជើង​ត្រូវតែ​មាន​អក្សរ​យ៉ាងតិច៣ ប៉ុន្តែ​មិន​លើស​ពី​៨០​តួ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​ចំណងជើង។', + ) , + 'parent_id' => array( + 'already_parent' => 'អ្នក​មិន​អាច​ចាត់​ប្រភេទ​រង​ប្រភេទ​ជាមួយ​ប្រភេទ​រង​បាន​ទេ។', + 'exists' => 'មិន​មាន​ប្រភេទ​មេ។', + 'numeric' => 'វាល​ប្រភេទ​មេ​ត្រូវតែ​ជា​លេខ។', + 'parent_trusted' => 'ប្រភេទ​មេ​មិន​អាច​ជា​ប្រភេទ​ពិសេស​បាន​ទេ', + 'required' => 'បាន​ទាមទារ​វាល​ប្រភេទ​មេ។', + 'same' => 'ប្រភេទ​និង​ប្រភេទ​មេ​មិន​អាច​ដូចគ្នាបាន​ទេ។', + 'special' => 'ប្រភេទ​ពិសេស​មិន​អាច​ជា​ប្រភេទ​កូន​បាន​ទេ។', + ) , +); diff --git a/application/i18n/km/comments.php b/application/i18n/km/comments.php new file mode 100644 index 0000000000..38ecb6288b --- /dev/null +++ b/application/i18n/km/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'សូមបញ្ចូលលេខកូដដែលមាន។', + 'required' => 'សូមវាយបញ្ចូលកូដសុវត្ថិភាព។', + 'valid' => 'អ្នកបានវាយបញ្ចូលកូដសុវត្ថិភាពខុស', + ) , + 'comment_author' => array( + 'length' => 'ប្រឡោះឈ្មោះតម្រូវ​ឲ្យមានយ៉ាងតិច3តួ', + 'required' => 'ប្រឡោះឈ្មោះតម្រូវឲ្យមាន', + ) , + 'comment_description' => array( + 'required' => 'វាល​មតិយោបល់​ត្រូវ​បាន​ទាមទេរ។', + ) , + 'comment_email' => array( + 'email' => 'ប្រឡោះអ៊ីម៉ែលហាក់ដូចអត់មានអី', + 'length' => 'ប្រឡោះអ៊ីម៉ែលត្រូវតែមានយ៉ាងតិច4 និង​ មិនច្រើនជាង 64តួ', + 'required' => 'តម្រូវការបើប្រអប់បានជ្រើសរើស', + ) , +); diff --git a/application/i18n/km/contact.php b/application/i18n/km/contact.php new file mode 100644 index 0000000000..67b56709fd --- /dev/null +++ b/application/i18n/km/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'សូមបញ្ចូលលេខកូដដែលមាន។', + 'valid' => 'សូមបញ្ចូលលេខកូដដែលមាន។', + 'required' => 'សូមបញ្ចូលលេខកូដសុវត្ថិភាព', + ) , + 'contact_email' => array( + 'email' => 'ប្រឡោះអ៊ីម៉ែលហាក់ដូចអត់មានអី', + 'length' => 'ប្រឡោះអ៊ីម៉ែលត្រូវតែមានយ៉ាងតិច4 និង​ មិនច្រើនជាង 64តួ', + 'required' => 'តម្រូវការបើប្រអប់បានជ្រើសរើស', + ) , + 'contact_message' => array( + 'required' => 'ប្រឡោះសារតម្រូវឲ្យមាន', + ) , + 'contact_name' => array( + 'length' => 'ប្រឡោះឈ្មោះតម្រូវ​ឲ្យមានយ៉ាងតិច3តួ', + 'required' => 'ប្រឡោះឈ្មោះតម្រូវឲ្យមាន', + ) , + 'contact_subject' => array( + 'length' => 'ប្រឡោះប្រធានបទតម្រូវឲ្យមានយ៉ាងតិច3តួ', + 'required' => 'ប្រឡោះប្រធានបទតម្រូវឲ្យមាន', + ) , + 'email_send' => array( + 'failed' => 'មានការមិនប្រក្រតីពេលកំពុងផ្ញើសារ', + ) , +); diff --git a/application/i18n/km/core.php b/application/i18n/km/core.php new file mode 100644 index 0000000000..29210ff88f --- /dev/null +++ b/application/i18n/km/core.php @@ -0,0 +1,35 @@ + 'កំណត់​រចនា​សម្ព័ន្ធ​ឯកសារ', + 'controller' => 'ឧបករណ៍​បញ្ជា', + 'driver' => 'កម្មវិធី​បញ្ជា', + 'driver_implements' => 'កម្មវិធី​បញ្ជា %s សម្រាប់​បណ្ណាល័យ %s ត្រូវតែ​ប្រើ​ចំណុច​ប្រទាក់ %s។', + 'driver_not_found' => 'កម្មវិធី​បញ្ជា %s សម្រាប់​បណ្ណាល័យ %s មិន​អាច​រក​ឃើញ​បាន​ទេ។', + 'errors_disabled' => 'អ្នក​អាច​ទៅកាន់​គេហទំព័រ ព្យាយាម​ម្ដងទៀត។', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'មិន​អាច​បញ្ចប់​សំណើ​ទាំងស្រុង​បាន​ទេ', + 'helper' => 'ជំនួយការ', + 'invalid_filetype' => 'ប្រភេទ​ឯកសារ .%s ដែល​បាន​ស្នើ​សុំ គឺ​មិន​អនុញ្ញាត​នៅ​ក្នុង​ទិដ្ឋភាព​ឯកសារ​ការ​កំណត់​រចនាសម្ព័ន្ធ​របស់​អ្នក​ទេ។', + 'invalid_method' => 'វិធីសាស្ត្រ %s ដែល​បាន​ហៅ​នៅ​ក្នុង %s គឺ​មិន​ត្រឹមត្រូវ', + 'invalid_property' => 'លក្ខណសម្បត្តិ %s គឺ​មិន​មាន​នៅ​ក្នុង​ថ្នាក់ %s ទេ។', + 'library' => 'បណ្ណាល័យ', + 'log_dir_unwritable' => 'ថត​កំណត់ហេតុ​គឺ​មិន​អាច​សរសេរ​បាន៖ %s', + 'model' => 'ម៉ូដែល', + 'no_controller' => 'យូសាហ៊ីឌី​មិន​អាច​កំណត់​កម្មវិធី​ត្រួតពិនិត្យ​ដើម្បី​ដំណើរការ​សំណើ​នេះ​បាន​ទេ៖ %s', + 'no_default_route' => 'សូម​កំណត់​ផ្លូវ​លំនាំដើម​នៅ​ក្នុង config/routes.php', + 'page_not_found' => 'រក​មិន​ឃើញ​ទំព័រ %s ដែល​អ្នក​បាន​ស្នើ​ទេ។', + 'report_bug' => 'រាយការណ៍​បញ្ហា​នេះ​ទៅកាន់​យូសាហ៊ីឌី', + 'resource_not_found' => 'រក​មិន​ឃើញ​សំណើ %s, %s។', + 'stack_trace' => 'ជង់​ដាន', + 'stats_footer' => 'បាន​ផ្ទុក​ក្នុង​រយៈពេល {execution_time} វិនាទី ដោយ​ប្រើ​អង្គ​ចងចាំ​ចំនួន {memory_usage}។ បាន​បង្កើត​ដោយ​យូសាហ៊ីឌី v%s។', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'វា​អាច​មានតែ​ធាតុ​របស់​យូសាហ៊ីឌី​មួយ​ប៉ុណ្ណោះ​ក្នុង​ទំព័រ​ស្នើសុំ​មួយ។', + 'uncaught_exception' => 'មិន​បាន​ចាប់ %s: %s នៅ​ក្នុង​ឯកសារ %s បន្ទាត់​ទី %s', + 'view' => 'ទិដ្ឋភាព', + 'view_set_filename' => 'អ្នក​ត្រូវតែ​កំណត់​ទិដ្ឋភាព​ឈ្មោះ​ឯកសារ​មុន​ពេល​បង្ហាញ​ការ​ហៅ។', +); diff --git a/application/i18n/km/database.php b/application/i18n/km/database.php new file mode 100644 index 0000000000..e44b79d100 --- /dev/null +++ b/application/i18n/km/database.php @@ -0,0 +1,10 @@ + 'កំហុស​មូលដ្ឋាន​ទិន្នន័យ៖ %s', + 'table_not_found' => 'រក​មិន​ឃើញ​តារាង "%s" នៅ​ក្នុង​មូលដ្ឋាន​ទិន្នន័យ។ សូម​ប្រាកដ​ថា​អ្នក​កំពុង​ប្រើ​កំណែ​ថ្មី​បំផុត​របស់​មូលដ្ឋាន​ទិន្នន័យ​សម្រាប់​កំណែ Ushahidi នេះ។', +); diff --git a/application/i18n/km/datetime.php b/application/i18n/km/datetime.php new file mode 100644 index 0000000000..383b2c41b8 --- /dev/null +++ b/application/i18n/km/datetime.php @@ -0,0 +1,86 @@ + 'ព្រឹក', + 'friday' => array( + 'abbv' => 'សុ', + 'full' => 'សុក្រ', + ) , + 'monday' => array( + 'abbv' => 'ច', + 'full' => 'ចន្ទ', + ) , + 'pm' => 'ល្ងាច', + 'saturday' => array( + 'abbv' => 'ស', + 'full' => 'សៅរ៍', + ) , + 'sunday' => array( + 'abbv' => 'អ', + 'full' => 'អាទិត្យ', + ) , + 'thursday' => array( + 'abbv' => 'ព្រ', + 'full' => 'ព្រហស្បត៍', + ) , + 'tuesday' => array( + 'abbv' => 'អ', + 'full' => 'អង្គារ', + ) , + 'wednesday' => array( + 'abbv' => 'ពុ', + 'full' => 'ពុធ', + ) , + 'january' => array( + 'abbv' => 'ម', + 'full' => 'មករា', + ) , + 'february' => array( + 'abbv' => 'កុ', + 'full' => 'កុម្ភៈ', + ) , + 'march' => array( + 'abbv' => 'មិ', + 'full' => 'មិនា', + ) , + 'april' => array( + 'abbv' => 'មេ', + 'full' => 'មេសា', + ) , + 'may' => array( + 'abbv' => 'ឧសភា', + 'full' => 'ឧសភា', + ) , + 'june' => array( + 'abbv' => 'មិថុនា', + 'full' => 'មិថុនា', + ) , + 'july' => array( + 'abbv' => 'កក្កដា', + 'full' => 'កក្កដា', + ) , + 'august' => array( + 'abbv' => 'សីហា', + 'full' => 'សីហា', + ) , + 'september' => array( + 'abbv' => 'កញ្ញា', + 'full' => 'កញ្ញា', + ) , + 'october' => array( + 'abbv' => 'តុលា', + 'full' => 'តុលា', + ) , + 'november' => array( + 'abbv' => 'កញ្ញា', + 'full' => 'កញ្ញា', + ) , + 'december' => array( + 'abbv' => 'ធ្នូ', + 'full' => 'ធ្នូ', + ) , +); diff --git a/application/i18n/km/feeds.php b/application/i18n/km/feeds.php new file mode 100644 index 0000000000..886b1628a1 --- /dev/null +++ b/application/i18n/km/feeds.php @@ -0,0 +1,19 @@ + 'កាលបរិច្ឆេទ', + 'feed_name' => array( + 'length' => 'វាល​ឈ្មោះ​​​មតិ​ព័ត៌មាន​ត្រូវ​តែ​មាន​តួអក្សរ​យ៉ាងហោចណាស់ ៣ និង​មិន​វែង​ជាង ៧០ តួអក្សរ​ឡើយ។', + 'required' => 'សូម​បញ្ចូល​ឈ្មោះ​​មតិ​ព័ត៌មាន។', + ) , + 'feed_url' => array( + 'required' => 'សូម​បញ្ចូល​ URL របស់​មតិ​ព័ត៌មាន។', + 'url' => 'សូម​បញ្ចូល URL ត្រឹមត្រូវ ឧ. http://www.ushahidi.com', + ) , + 'source' => 'ប្រភព', + 'title' => 'ចំណងជើង', +); diff --git a/application/i18n/km/footer.php b/application/i18n/km/footer.php new file mode 100644 index 0000000000..aa888610aa --- /dev/null +++ b/application/i18n/km/footer.php @@ -0,0 +1,9 @@ + 'មិន​បាន​ដំឡើង php5-curl នៅ​លើ​ប្រព័ន្ធ​នេះ​ទេ។', +); diff --git a/application/i18n/km/form.php b/application/i18n/km/form.php new file mode 100644 index 0000000000..e323216b3c --- /dev/null +++ b/application/i18n/km/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'តម្លៃ​លំនាំដើម​ដែល​អ្នក​បាន​ផ្ដល់​សម្រាប់​វាល​នេះ​មិន​ត្រឹមត្រូវ។', + 'length' => 'វាល​ឈ្មោះ​យ៉ាង​ហោចណាស់​ត្រូវ​មាន​ ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ២០០ តួអក្សរ។', + ) , + 'field_height' => array( + 'between' => 'សូម​បញ្ចូល​តម្លៃ​​ពី ០ ដល់ ៥០ សម្រាប់​កម្ពស់​វាល។', + ) , + 'field_isdate' => array( + 'between' => 'អ្នក​បាន​បញ្ចូល​តម្លៃ​មិន​ត្រឹមត្រូវ​សម្រាប់​វាល​កាលបរិច្ឆេទ។', + 'required' => 'សូម​ជ្រើស បាទ/ចាស ឬ​ទេ ​សម្រាប់​វាល​កាលបរិច្ឆេទ។', + ) , + 'field_name' => array( + 'length' => 'ឈ្មោះ​វាល​យ៉ាង​ហោចណាស់​ត្រូវ​មាន ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ។', + 'required' => 'សូម​បញ្ចូល​ឈ្មោះ​វាល។', + 'duplicate' => 'មាន​ឈ្មោះ​​វាល​​ដែល​អ្នក​បាន​បញ្ចូល​រួច​ហើយ​ក្នុង​សំណុំ​បែបបទ​នេះ។ សូម​បញ្ចូល​ឈ្មោះ​ផ្សេង។', + ) , + 'field_required' => array( + 'between' => 'អ្នក​បាន​បញ្ចូល​តម្លៃ​មិន​ត្រឹមត្រូវ​សម្រាប់​វាល​ដែល​ទាមទារ។', + 'required' => 'សូម​ជ្រើស​ បាទ/ចាស ឬ​ទេ សម្រាប់​វាល​ដែល​ទាមទារ។', + ) , + 'field_type' => array( + 'numeric' => 'សូម​ជ្រើស​ប្រភេទ​វាល​ដែល​ត្រឹមត្រូវ។', + 'required' => 'សូម​ជ្រើស​ប្រភេទ​វាល។', + ) , + 'field_width' => array( + 'between' => 'សូម​បញ្ចូល​តម្លៃ​ពី ០ ដល់ ៣០០ សម្រាប់​ទទឹង​វាល។', + ) , + 'form_description' => array( + 'required' => 'សូម​បញ្ចូល​សេចក្ដី​ពណ៌នា​សំណុំ​បែបបទ។', + ) , + 'form_id' => array( + 'default' => 'មិនអាច​លុប​សំណុំ​បែបបទ​លំនាំដើម​បាន​ទេ។', + 'numeric' => 'សូម​ជ្រើស​សំណុំ​បែបបទ​ណាមួយ​ត្រូវ​បន្ថែម​វាល​នេះ​ចូល។', + 'required' => 'សូម​ជ្រើស​សំណុំ​បែបបទ​ណា​មួយ​​ដើម្បី​បន្ថែម​វាល​នេះ​ចូល។', + ) , + 'form_title' => array( + 'length' => 'ឈ្មោះ​សំណុំ​បែបបទ​យ៉ាង​ហោចណាស់​ត្រូវ​មាន ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ។', + 'required' => 'សូម​បញ្ចូល​ឈ្មោះ​សំណុំ​បែបបទ។', + 'exists' => 'មាន​​សំណុំ​បែបបទ​ដែល​​ចំណង​ជើង​នោះ​រួច​ហើយ។ សូម​ជ្រើស​ចំណង​ជើង​ផ្សេង។', + ) , +); diff --git a/application/i18n/km/imap.php b/application/i18n/km/imap.php new file mode 100644 index 0000000000..4f5e2a419b --- /dev/null +++ b/application/i18n/km/imap.php @@ -0,0 +1,10 @@ + 'មិនអាចបើក IMAP Stream', + 'unsupported_service' => 'សេវាអ៊ីម៉ែលមិនត្រូវ', +); diff --git a/application/i18n/km/installer.php b/application/i18n/km/installer.php new file mode 100644 index 0000000000..1e5e58ba71 --- /dev/null +++ b/application/i18n/km/installer.php @@ -0,0 +1,84 @@ + 'ផ្លូវ​មូលដ្ឋាន', + 'database' => 'មូលដ្ឋាន​ទិន្នន័យ', + 'database_host' => 'ម៉ាស៊ីន​មូលដ្ឋាន​ទិន្នន័យ', + 'database_host_description' => 'ប្រសិនបើ​អ្នក​កំពុង​ប្រើ​យូសាហ៊ីឌី​នៅ​លើ​កុំព្យូទ័រ​របស់​អ្នក នេះ​ទំនងជា "localhost"។ ប្រសិនបើ​អ្នក​កំពុង​ដំណើរការ​យូសាហ៊ីឌី​ពី​ម៉ាស៊ីន​មេ​បណ្ដាញ អ្នក​នឹង​ទទួល​បាន​ព័ត៌មាន​ម៉ាស៊ីន​ពី​ក្រុមហ៊ុន​ផ្ដល់​ការ​បង្ហោះ​បណ្ដាញ​របស់​អ្នក។ ', + 'database_name' => 'ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ', + 'database_name_description' => 'ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​អ្នក​ត្រូវ​ដំណើរការ​យូសាហ៊ីឌី', + 'db_information_link' => 'សម្រាប់​ព័ត៌មាន​បន្ថែម​សូម​មើល​នៅ អត្ថបទ​នេះ នៅ​លើ​វីគី​ដែល​និយាយ​អំពី​មូលដ្ឋាន​ទិន្នន័យ​លម្អិត។', + 'default_language' => 'ភាសា​លំនាំដើម (Locale)', + 'default_language_description' => 'ការ​ប្រើប្រាស់​នីមួយៗ​របស់​យូសាហ៊ីឌី​គឺ​មក​ជាមួយ​សំណុំ​ការ​បកប្រែ​ភាសា​ដែល​ជាប់។ អ្នក​បន្ថែម​ភាសា​របស់​អ្នក​បាន .', + 'disable' => 'បិទ', + 'enable' => 'បើក', + 'error_summary' => 'បញ្ជី​ខាងក្រោម​គឺ​សេចក្ដី​សង្ខេប​អំពី​កំហុស​ដែល​យើង​បាន​ជួប។', + 'files_location_text' => 'ទីតាំង​នៅ​លើ​ម៉ាស៊ីន​មេ​សម្រាប់​ដាក់​ឯកសារ​យូសាហ៊ីឌី​របស់​អ្នក។ យើ​បាន​រក​ឃើញ​តម្លៃ​នេះ​ដោយ​ស្វ័យប្រវត្តិ សូម​ប្រាកដ​ថា​វា​ត្រឹមត្រូវ។ ប្រសិនបើ​វាល​ទទេ សូម​កុំ​បារម្ភ​អី វា​មានន័យថា​យូសាហ៊ីឌី​ត្រូវ​បាន​ដំឡើង​នៅ​ថត​កំពូល។', + 'finished' => 'បាន​បញ្ចប់', + 'general' => 'ទូទៅ', + 'google_key' => 'Google API Key', + 'google_key_description' => 'អ្នក​ណា​ក៏​អាច​យក​គ្រាប់ចុច api បាន​ដែរ។ យក​របស់​អ្នក​ឥឡូវ', + 'go_back' => 'ត្រឡប់​ក្រោយ', + 'index' => array( + 'advanced' => 'ការ​ដំឡើង​កម្រិតខ្ពស់', + 'advanced_installation_description' => 'បញ្ចប់​ការ​កំណត់​មូលដ្ឋាន​ទាំងអស់​ក្នុង​ដំណើរការ​៥​ជំហាន​នេះ។ នេះ​គឺ​រួមបញ្ចូល​ទាំង​ម៉ាស៊ីន​មេ ផែនទី ឈ្មោះ​តំបន់បណ្ដាញ និង​សេចក្ដី​លម្អិត​ទំនាក់ទំនង។', + 'basic_installation' => 'ការ​ដំឡើង​មូលដ្ឋាន', + 'basic_installation_description' => 'សាមញ្ញ​ហើយ​លឿន។ អ្វី​ដែល​អ្នក​ត្រូវការ​គឺ​ថត root នៃ​តំបន់បណ្ដាញ​របស់​អ្នក និង​ព័ត៌មាន​មូលដ្ឋាន​ទិន្នន័យ។ ជ្រើស​ជម្រើស​នេះ​ប្រសិនបើ​អ្នក​ចង់​ក្រោក​ពី​ដំណេក និង​រត់​រហ័ស ហើយ​អ្នក​អាច​កំណត់​រចនាសម្ព័ន្ធ​ចំណុច​ផ្សេងទៀត​នៅ​ពេល​ក្រោយ​បាន។', + 'proceed' => 'ធ្វើ​បន្ត', + 'welcome' => 'សូម​ស្វាគមន៍​មក​កាន់​ដំណើរការ​ដំឡើង​ម៉ាស៊ីន​មេ​របស់​យូសាហ៊ីឌី។ ជ្រើស​ប្រភេទ​ដំឡើង​ដែល​អ្នក​ចង់​ប្រើ​ដូច​ខាងក្រោម។', + ) , + 'installation_successful' => 'ការ​ដំឡើង​បាន​ជោគជ័យ', + 'mail_server' => 'ម៉ាស៊ីន​មេ​អ៊ីមែល', + 'mail_server_host' => 'ម៉ាស៊ីន​របស់​ម៉ាស៊ីន​មេ​អ៊ីមែល', + 'mail_server_host_description' => 'ឧទាហរណ៍៖ mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'ពាក្យសម្ងាត់​ម៉ាស៊ីន​មេ​អ៊ីមែល', + 'mail_server_password_description' => 'ពាក្យសម្ងាត់​ដែល​ត្រូវ​ប្រើ​ដើម្បី​ចូល​អ៊ីមែល​របស់​អ្នក', + 'mail_server_port' => 'ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល', + 'mail_server_port_description' => 'ច្រក​ទូទៅ៖ 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'ប្រភេទ​ម៉ាស៊ីន​មេ​អ៊ីមែល', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) ឬ Post Office Protocol (POP). តើ​អ្វី​ជា​ភាព​ខុសគ្នា?', + 'mail_server_username' => 'ឈ្មោះ​អ្នកប្រើ​ម៉ាស៊ីន​មេ​អ៊ីមែល', + 'mail_server_username_description' => 'ប្រសិនបើ​អ្នក​កំពុង​ប្រើ Gmail, Hotmail ឬ Yahoo Mail សូម​បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល​ពេញ​របស់​អ្នក​ជា​ឈ្មោះ​អ្នកប្រើ។', + 'map' => 'ផែនទី', + 'map_provider' => 'ក្រុមហ៊ុន​ផ្ដល់​សេវា​ផែនទី', + 'map_provider_description' => 'យូសាហ៊ីឌី​ធ្វើការ​ស្មើ​គ្នា​ជាមួយ​ក្រុមហ៊ុន​ផ្ដល់​សេវាកម្ម​ផែនទី​ទាំង​បី​គឺ៖ Google, Bing ឬ Open Street Map។ ជ្រើស​ក្រុមហ៊ុន​មួយ​ដែល​មាន​សេចក្ដី​លម្អិត​ច្រើន​បំផុត​នៅ​ក្នុង​តំបន់​របស់​អ្នក។', + 'other_steps' => 'ជំហាន​ដទៃទៀត...', + 'password' => 'ពាក្យសម្ងាត់', + 'password_description' => 'ពាក្យសម្ងាត់​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក', + 'previous' => 'មុន', + 'restart_apache' => 'សូម​ចាប់ផ្ដើម​ម៉ាស៊ីន​មេ Apache របស់​អ្នក​ឡើងវិញ', + 'select_mail_server_ssl' => 'បិទ ឬ​បើក SSL', + 'select_mail_server_ssl_description' => 'ម៉ាស៊ីន​មេ​អ៊ីមែល​មួយ​ចំនួន​ផ្ដល់ឲ្យ​អ្នក​នូវ​ជម្រើស​នៃ​ការប្រើប្រាស់ SSL នៅ​ពេល​តភ្ជាប់។ ការ​ប្រើ SSL ត្រូវ​បាន​ផ្ដល់​អនុសាសន៍ ព្រោះ​វា​បាន​ផ្ដល់ឲ្យ​អ្នក​នូវ​កម្រិត​សុវត្ថិភាព​បន្ថែម។', + 'setup_sms' => 'រៀបចំ​ម៉ាស៊ីន​មេ SMS របស់​អ្នក', + 'site_email' => 'អាស័យដ្ឋាន​អ៊ីម៉ែល​តំបន់​បណ្ដាញ', + 'site_email_alerts' => 'អាសយដ្ឋាន​អ៊ីមែល​ជូនដំណឹង​តំបន់បណ្ដាញ', + 'site_email_alerts_description' => 'នៅ​ពេល​អ្នក​ទស្សនា​តបន់បណ្ដាញ​របស់​អ្នក​ចុះឈ្មោះ​សម្រាប់​ការ​ជូនដំណឹង​តាម​អ៊ីមែល ពួកគេ​នឹង​ទទួល​អ៊ីមែល​ពី​អាសយដ្ឋាន​នេះ។ អាសយដ្ឋាន​អ៊ីមែល​នេះ​មិន​ត្រូវ​ឲ្យ​ដូចគ្នា​ជាមួយ​អាសយដ្ឋាន​អ៊ីមែល​តំបន់បណ្ដាញ​ទេ។', + 'site_email_description' => 'ទំនាក់ទំនង​អ៊ីមែល​នៅ​ក្នុង​តំបន់បណ្ដាញ​នឹង​ត្រូវ​បាន​បញ្ចូល​តាម​អាសយដ្ឋាន​នេះ', + 'site_name' => 'ឈ្មោះ​តំបន់បណ្ដាញ', + 'site_name_description' => 'ឈ្មោះ​តំបន់បណ្ដាញ​របស់​អ្នក', + 'site_tagline' => 'ជួរ​ស្លាក​តំបន់បណ្ដាញ', + 'site_tagline_description' => 'ជួរ​ស្លាក​របស់​អ្នក', + 'summary' => array( + 'text_1' => 'ឯកសារ និង​ថត​ដែល​បាន​រាយ​ខាងក្រោម ចាំបាច់​ត្រូវ​​អាច​សរសេរ​បាន​ដោយ​ម៉ាស៊ីន​មេ​បណ្ដាញ​របស់​អ្នក។', + 'text_2' => '

នេះ​ជា​សេចក្ដី​ណែនាំ​សម្រាប់​ការ​ប្ដូរ​សិទ្ធិ​ឯកសារ៖

+ ', + 'text_3' => 'មុន​ពេល​ចាប់ផ្ដើម អ្នក​ចាំបាច់​ត្រូវ​ប្រាកដ​ថា​ឯកសារ និង​ថត​ដូច​ខាងក្រោម​គឺ​អាច​សរសេរ​បាន​ដោយ​ម៉ាស៊ីន​មេ​បណ្ដាញ​របស់​អ្នក។ នេះ​គឺ​ពាក់ព័ន្ធ​ជាមួយ​ការ​ប្ដូរ​សិទ្ធិ​ឯកសារ។', + 'text_4' => 'សម្រាប់​ជំហាន​នៃ​ការ​ដំឡើង សូម​មើល​ព័ត៌មាន​ខាងក្រោម​នេះ​ជាមុន។', + ) , + 'table_prefix' => 'តារាង​បុព្វបទ', + 'table_prefix_description' => 'ជា​ទូទៅ​អ្នក​មិន​គួរ​ប្ដូរ​តារាង​បុព្វបទ​ទេ។ ទោះបីជា​អ្នក​ចង់​ដំណើរការ​ដំឡើង​យូសាហ៊ីឌី​ច្រើន​ចេញពី​មូលដ្ឋាន​ទិន្នន័យ​តែមួយ​ក៏ដោយ អ្នក​អាច​ធ្វើ​វា​បាន​ដោយ​ប្ដូរ​បុព្វបទ​នៅ​ទីនេះ។', + 'title' => 'ចំណងជើង', + 'to_login' => 'ដើម្បី​ចូល សូម​ទៅកាន់', + 'upload_data' => 'ផ្ទុក​ទិន្នន័យ​របាយការណ៍​ឡើង', + 'username' => 'ឈ្មោះ​អ្នកប្រើ', + 'username_description' => 'ឈ្មោះ​អ្នកប្រើ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក', + 'use_credentials' => 'និង​ប្រើ​ព័ត៌មាន​សម្ងាត់​ដូច​ខាងក្រោម', + 'view_site' => 'មើល​តំបន់បណ្ដាញ​របស់​អ្នក', +); diff --git a/application/i18n/km/layer.php b/application/i18n/km/layer.php new file mode 100644 index 0000000000..31cc3040fb --- /dev/null +++ b/application/i18n/km/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'វាល​ពណ៌​ត្រូវតែ​មាន៦តួអក្សរ។', + 'required' => 'បាន​ទាមទារ​វាល​ពណ៌។', + ) , + 'layer_file' => array( + 'type' => 'វាល​ឯកសារ​មិន​​មាន​​​បង្ហាញ​​ឯកសារ​​ត្រឹមត្រូវ​ឡើយ។ បាន​ព្រម​ទទួល​យក​តែ​ទ្រង់ទ្រាយ .KMZ និង .KML ប៉ុណ្ណោះ។', + 'valid' => 'វាល​ឯកសារ​មិន​មាន​បង្ហាញ​ឯកសារ​ត្រឹមត្រូវ​ឡើយ', + ) , + 'layer_name' => array( + 'length' => 'វាល​ឈ្មោះ​ត្រូវ​តែ​មាន​យ៉ាងហោចណាស់ ៣ តួអក្សរ និង​មិន​ច្រើន​​ជាង​ ៨០ តួអក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​ឈ្មោះ។', + ) , + 'layer_url' => array( + 'atleast' => 'បាន​ទាមទារ KML URL ឬ​ឯកសារ។', + 'both' => 'អ្នក​មិន​មាន​​​​ឯកសារ KML និង URL ឡើយ។', + 'url' => 'សូម​បញ្ចូល​ URL ត្រឹមត្រូវ ឧ. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/km/libraries.php b/application/i18n/km/libraries.php new file mode 100644 index 0000000000..3c9dcb1f61 --- /dev/null +++ b/application/i18n/km/libraries.php @@ -0,0 +1,27 @@ + 'មិន​អាច​ភ្ជាប់​ទៅកាន់​ម៉ាស៊ីន​មេ Akismet បាន​ទេ។', + 'akismet_cannot_retrieve' => 'មិន​អាច​ទៅ​យក​ចម្លើយ​តប​ពី Akismet បាន​ទេ។', + 'api_library_not_found' => 'បណ្ណាល័យ API ៖ %s សម្រាប់ %s ថ្នាក់​រក​មិន​ឃើញ​ទេ។ សូម​ពិនិត្យ​តារាង​នាំ​ផ្លូវ​ភារកិច្ច API របស់​អ្នក។', + 'askimet_invalid_apikey' => 'កូនសោ Akismet API របស់​អ្នក​មិន​ត្រឹមត្រូវ​ទេ។', + 'clickatell_fopen_error' => 'កំហុស​ពេល​ប្រតិបត្តិ​វិធីសាស្ត្រ​បញ្ជូន fopen !
សូម​ពិនិត្យមើល​ថា​តើ PHP មាន OpenSSL ដែល​គាំទ្រ និង​ថា​តើ​កំណែ PHP គឺ​ធំ​ជាង 5.2។', + 'clickatell_message_too_long' => 'សារ​យូនីកូដ​របស់​អ្នក​គឺ​វែង​ពេក! (ប្រវែង​បច្ចុប្បន្ន=', + 'clickatell_no_destination_address' => 'សូម​បញ្ជាក់​អាសយដ្ឋាន​គោលដៅ (ជូន​ចំពោះ)!', + 'clickatell_no_sender_address' => 'សូម​បញ្ជាក់​អាសយដ្ឋាន​ប្រភព (ពី)!', + 'clickatell_unicode_message_too_long' => 'សារ​យូនីកូដ​របស់​អ្នក​គឺ​វែង​ពេក! (ប្រវែង​បច្ចុប្បន្ន=', + 'clickatell_unsupported_method' => 'មិន​បាន​គាំទ្រ​​វីធីសាស្ត្រ​បញ្ជូន!', + 'invalid_api_library' => 'បណ្ណាល័យ API %s គឺ​មិន​ត្រឹមត្រូវ។ បណ្ណាល័យ API ទាំងអស់​ត្រូវតែ​ជា​ថ្នាក់​រង​របស់ %s។', + 'upgrade_directory_not_deleted' => 'មិន​អាច​លុប​ថត %s បាន​ទេ។', + 'upgrade_extracting_error' => 'កំហុស​ពេល​ពន្លា៖ %s', + 'upgrade_failed' => 'បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​យូសាហ៊ីឌី។ កូដ​ស្ថានភាព HTTP', + 'upgrade_file_not_copied' => 'មិន​អាច​ចម្លង​ឯកសារ %s បាន​ទេ។', + 'upgrade_file_not_deleted' => 'មិន​អាច​លុប​ឯកសារ %s បាន​ទេ។', + 'upgrade_title' => 'ស្គ្រីប​ធ្វើឲ្យ​យូសាហ៊ីឌី​ប្រសើរ​ឡើង', + 'upgrade_zip_error' => 'ឯកសារ​បង្ហាប់​យូសាហ៊ីឌី​ដែល​បាន​ទាញ​យក %s មិន​អាច​សរសេរ​បាន​ទេ។', + 'riverid_variable_not_available' => '%s មិន​មាន​នៅ​ក្នុង​ថ្នាក់ RiverID ទេ។', +); diff --git a/application/i18n/km/maintenance.php b/application/i18n/km/maintenance.php new file mode 100644 index 0000000000..633463e1e1 --- /dev/null +++ b/application/i18n/km/maintenance.php @@ -0,0 +1,9 @@ + 'សូមអភ័យ​ទោស តំបន់​បណ្ដាញ​របស់​យើង​បច្ចុប្បន្ន​កំពុងផ្អាក​ដើម្បី​ថែទាំ។ សូម​ព្យាយាម​ម្ដងទៀត​ក្នុង​រយៈ​ពេល​​ពីរ ឬ​បី​នាទី​ក្រោយ។', +); diff --git a/application/i18n/km/message.php b/application/i18n/km/message.php new file mode 100644 index 0000000000..8c5f3663a4 --- /dev/null +++ b/application/i18n/km/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'សូម​បញ្ចូល​កូដ​សុវត្ថិភាព​ត្រឹមត្រូវ។', + 'required' => 'សូម​បញ្ចូល​កូដ​សុវត្ថិភាព។', + ) , + 'email' => array( + 'email' => 'វាល​អ៊ីមែល​មិន​បង្ហាញ​ថា​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។', + 'length' => 'វាល​អ៊ីមែល​ត្រូវ​តែ​មាន​តួអក្សរ​យ៉ាង​តិច ៤ និង​មិន​ច្រើន​ជាង​ ៦៤ តួ​អក្សរ​ឡើយ។', + 'required' => 'វាល​អ៊ីមែល​ត្រូវ​បាន​ទាមទារ ប្រសិនបើ​​បាន​គូរ​ធី​​​ប្រអប់​ធីក។', + ) , + 'message' => array( + 'required' => 'វាល​មតិយោបល់​ត្រូវ​បាន​ទាមទារ។', + ) , + 'name' => array( + 'length' => 'វាល​ឈ្មោះ​ត្រូវ​តែ​មាន​តួអក្សរ​យ៉ាង​ហោច​ណាស់ ៣ ។', + 'required' => 'បាន​ទាមទារ​វាល​ឈ្មោះ។', + ) , + 'phone' => array( + 'length' => 'វាល​ទូរស័ព្ទ​មិន​ត្រឹមត្រូវ។', + ) , +); diff --git a/application/i18n/km/mhi.php b/application/i18n/km/mhi.php new file mode 100644 index 0000000000..fde4008987 --- /dev/null +++ b/application/i18n/km/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'សូម​បញ្ចូល​កូដ​សុវត្ថិភាព​ត្រឹមត្រូវ។', + 'required' => 'សូម​បញ្ចូល​កូដ​សុវត្ថិភាព។', + ) , + 'contact_email' => array( + 'email' => 'វាល​អ៊ីមែល​មិន​បង្ហាញ​ថា​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។', + 'required' => 'សូម​ផ្ដល់​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ។', + ) , + 'contact_message' => array( + 'required' => 'វាល​សារ​ត្រូវ​បាន​ទាមទារ។', + ) , + 'contact_subject' => array( + 'length' => 'វាល​ប្រធាន​បទ​ត្រូវ​តែ​មាន​ប្រវែង​យ៉ាង​ហោចណាស់​បី​តួអក្សរ។', + 'required' => 'វាល​ប្រធាន​បទ​ត្រូវ​បាន​ទាមទារ។', + ) , +); diff --git a/application/i18n/km/notifications.php b/application/i18n/km/notifications.php new file mode 100644 index 0000000000..d12ed88aac --- /dev/null +++ b/application/i18n/km/notifications.php @@ -0,0 +1,35 @@ + 'សារ​នេះ​ត្រូវ​បាន​ផ្ញើ​ពី​តំបន់​បណ្ដាញ​របស់​អ្នក។', + 'admin_login_url' => 'ចូល​ជា​អ្នក​គ្រប់គ្រង', + 'admin_new_comment' => array( + 'message' => 'បាន​ដាក់ស្នើ​មតិយោបល់​ថ្មី​ទៅ​តំបន់​​បណ្ដាញ​របស់​អ្នក​​ជា​ការ​ឆ្លើយតប​នឹង៖', + 'subject' => 'មតិយោបល់​ថ្មី', + ) , + 'admin_new_email' => array( + 'message' => 'បាន​ដាក់​ស្នើ​សារ​អ៊ីមែល​ថ្មី​​ទៅ​តំបន់​បណ្ដាញ​របស់​អ្នក។', + 'subject' => 'សារ​អ៊ីមែល​ថ្មី', + ) , + 'admin_new_report' => array( + 'message' => 'បាន​ដាក់​ស្នើ​របាយការណ៍​ថ្មី​ទៅ​តំបន់បណ្ដាញ​របស់​អ្នក។', + 'subject' => 'របាយការណ៍​ថ្មី', + ) , + 'admin_new_sms' => array( + 'message' => 'បាន​ដាក់​ស្នើ​សារ​អត្ថបទ​ថ្មីទៅ​តំបន់​បណ្ដាញ​របស់​អ្នក។', + 'subject' => 'សារ​អត្ថបទ​ថ្មី', + ) , + 'member_new_alert' => array( + 'message' => 'អ្នក​បាន​ទទួល​ការ​ជូន​ដំណឹង​ថ្មី', + 'subject' => 'ការ​ជូន​ដំណឹង​ថ្មី!', + ) , + 'member_new_message' => array( + 'message' => 'អ្នក​បាន​ទទួល​សារ​ឯកជន', + 'subject' => 'សារ​ឯកជន​ថ្មី', + 'footer' => 'ដើម្បី​ឆ្លើយតប សូម​ចូល​ទៅ៖', + ) , +); diff --git a/application/i18n/km/page.php b/application/i18n/km/page.php new file mode 100644 index 0000000000..798b897481 --- /dev/null +++ b/application/i18n/km/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'សូមបញ្ចូលចំណងជើងទំព័រ', + 'length' => 'ប្រឡោះចំណងជើងតម្រូវឲ្យមានយ៉ាងតិច 3 និងមិនច្រើនជាង 150តួ', + ) , + 'page_tab' => array( + 'required' => 'សូមវាយបញ្ចូលឈ្មោះបន្ទះ', + ) , + 'page_description' => array( + 'required' => 'សូមបញ្ចូលទំព័រពិពណ៌នា', + ) , +); diff --git a/application/i18n/km/permissions.php b/application/i18n/km/permissions.php new file mode 100644 index 0000000000..2fbf90f026 --- /dev/null +++ b/application/i18n/km/permissions.php @@ -0,0 +1,27 @@ + 'មើល​របាយការណ៍', + 'reports_edit' => 'បង្កើត/កែ/លុប​របាយការណ៍', + 'reports_approve' => 'អនុម័ត​របាយការណ៍', + 'reports_verify' => 'ផ្ទៀងផ្ទាត់​របាយការណ៍', + 'reports_comments' => 'គ្រប់គ្រង​មតិ​យោបល់​របាយការណ៍', + 'reports_download' => 'ទាញ​យក​របាយការណ៍', + 'reports_upload' => 'ផ្ទុក​របាយការណ៍​ឡើង', + 'messages' => 'គ្រប់គ្រង​សារ', + 'messages_reporters' => 'គ្រប់គ្រង​អ្នក​រាយការណ៍​សារ', + 'stats' => 'មើល​ស្ថានភាព', + 'settings' => 'កែ​ប្រែ​ការ​កំណត់', + 'manage' => 'គ្រប់គ្រង​ផ្ទាំង', + 'users' => 'គ្រប់គ្រង​អ្នកប្រើ', + 'manage_roles' => 'គ្រប់គ្រង​តួនាទី', + 'checkin' => 'អាច​ចូល', + 'checkin_admin' => 'គ្រប់គ្រង​ការ​ចូល', + 'admin_ui' => 'ចំណុច​ប្រទាក់​ចូល​ជា​អ្នកគ្រប់គ្រង', + 'member_ui' => 'ចំណុច​ប្រទាក់ចូលជា​​អ្នក​សមាជិក', + 'delete_all_reports' => 'លុប​របាយការណ៍​ទាំងអស់', +); diff --git a/application/i18n/km/private_message.php b/application/i18n/km/private_message.php new file mode 100644 index 0000000000..10244c89c0 --- /dev/null +++ b/application/i18n/km/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'លេខ​សម្គាល់​មេ​ត្រូវ​តែ​ជា​លេខ', + ) , + 'private_to' => array( + 'required' => 'បាន​ទាមទារ​វាល​​ជួន​ចំពោះ​', + 'exists' => 'អ្នក​ប្រើ​ដែល​អ្នក​ព្យាយាម​ផ្ញើ​សារ​ មិន​មាន​ឡើយ', + ) , + 'private_subject' => array( + 'required' => 'វាល​​ប្រធាន​បទ​ត្រូវ​បាន​ទាមទារ', + 'length' => 'ប្រធានបទ​ត្រូវ​តែ​មាន​​តួ​អក្សរ​ចន្លោះ​ពី ៣ ដល់ ១៥០', + ) , + 'private_message' => array( + 'required' => 'វាល​សារ​ត្រូវ​បាន​ទាមទារ', + ) , +); diff --git a/application/i18n/km/report.php b/application/i18n/km/report.php new file mode 100644 index 0000000000..db10a786e6 --- /dev/null +++ b/application/i18n/km/report.php @@ -0,0 +1,139 @@ + 'កំហុស!', + 'country_name' => array( + 'single_country' => 'ការ​ប្រើប្រាស់​នេះ​ពង្រីក​តែ​ក្នុង​ប្រទេស​មួយ​ប៉ុណ្ណោះ។ សូម​ប្រាកដ​ថា ទីតាំង​រាយការណ៍​ស្ថិត​ក្នុង​ប្រទេស %s ។', + ) , + 'custom_field' => array( + 'values' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​វាល "%s" ។', + 'numeric' => 'វាល "%s" ត្រូវ​តែ​ជា​លេខ។', + 'required' => 'បាន​ទាមទារ​វាល "%s" ។', + 'not_exist' => 'មិន​មាន​វាល​ "%s" ឡើយ។', + 'permission' => 'វាល "%s" មិន​អាច​ត្រូវ​បាន​កែសម្រួល​ដោយ​គណនី​របស់​អ្នក​ឡើយ។', + 'email' => 'វាល "%s" ត្រូវ​តែ​មាន​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ។', + 'phone' => 'វាល "%s" ត្រូវ​តែ​មាន​លេខ​ទូរស័ព្ទ​ត្រឹមត្រូវ។', + 'date_mmddyyyy' => 'វាល "%s" ត្រូវ​តែ​មាន​​កាលបរិច្ឆេទ​ត្រឹមត្រូវ (MM/DD/YYYY)។', + 'date_ddmmyyyy' => 'វាល "%s" ត្រូវ​តែ​មាន​កាលបរិច្ឆេទ​ត្រឹមត្រូវ (DD/MM/YYYY)។', + ) , + 'data_include' => array( + 'between' => 'សូម​ជ្រើស​ធាតុ​ត្រឹមត្រូវ​ ដើម្បី​ដាក់​បញ្ចូល​ក្នុង​ការ​ទាញ​យក។', + 'numeric' => 'សូម​ជ្រើស​ធាតុ​ត្រឹមត្រូវ ដើម្បី​ដាក់​បញ្ចូល​ក្នុង​ការ​ទាញ​យក។', + ) , + 'data_active' => array( + 'between' => 'សូម​ជ្រើស "របាយការណ៍​រង់ចាំ​ការ​អនុម័ត" ឬ "របាយការណ៍​បាន​អនុម័ត" ឬ​ទាំង​ពីរ។', + 'numeric' => 'សូម​ជ្រើស "របាយការណ៍​រង់ចាំ​ការ​អនុម័ត" ឬ "របាយការណ៍​បាន​អនុម័ត" ឬ​ទាំង​ពីរ។', + 'required' => 'សូម​ជ្រើស "របាយការណ៍​រង់ចាំ​ការ​អនុម័ត" ឬ "របាយការណ៍​បាន​អនុម័ត" ឬ​ទាំង​ពីរ។', + ) , + 'data_verified' => array( + 'between' => 'សូម​ជ្រើស "របាយការណ៍​រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់" ឬ "របាយការណ៍​បាន​បាន​ផ្ទៀងផ្ទាត់" ឬ​ទាំង​ពីរ។', + 'numeric' => 'សូម​ជ្រើស "របាយការណ៍​រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់" ឬ "របាយការណ៍​បាន​បាន​ផ្ទៀងផ្ទាត់" ឬ​ទាំង​ពីរ។', + 'required' => 'សូម​ជ្រើស "របាយការណ៍​រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់" ឬ "របាយការណ៍​បាន​បាន​ផ្ទៀងផ្ទាត់" ឬ​ទាំង​ពីរ។', + ) , + 'data_point' => array( + 'between' => 'សូម​ជ្រើស​ប្រភេទ​របាយការណ៍​ត្រឹមត្រូវ​ ដើម្បី​ទាញ​យក។', + 'numeric' => 'សូម​ជ្រើស​ប្រភេទ​របាយការណ៍​ត្រឹមត្រូវ​ ដើម្បី​ទាញ​យក។', + 'required' => 'សូម​ជ្រើស​ប្រភេទ​របាយការណ៍​ត្រឹមត្រូវ​ ដើម្បី​ទាញ​យក។', + ) , + 'format' => array( + 'required' => 'អ្នក​ត្រូវ​តែ​ជ្រើស​ទ្រង់ទ្រាយ​ទាញ​យក។ ជ្រើស​ CSV ឬ XML ។', + 'valid' => 'សូម​ជ្រើស​ទ្រង់ទ្រាយ​ត្រឹមត្រូវ ដើម្បី​ទាញ​យក​​របាយការណ៍​របស់​អ្នក', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'វាល​កាលបរិច្ឆេទ​ ពី មិន​បង្ហាញ​ថា​មាន​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។', + 'range' => 'សូម​បញ្ចូល​កាលបរិច្ឆេទ ពី ​ឲ្យ​បាន​​ត្រឹមត្រូវ។ វា​មិន​អាច​ធំ​ជាង​ថ្ងៃ​នេះ​ទេ។', + ) , + 'incident_active' => array( + 'between' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​អនុម័ត​របាយការណ៍​នេះ', + 'required' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​អនុម័ត​របាយការណ៍​នេះ', + ) , + 'incident_ampm' => array( + 'validvalues' => 'វាល​ព្រឹក/ល្ងាច មិន​បង្ហាញ​ថា​ជា​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + ) , + 'incident_category' => array( + 'numeric' => 'វាល "ប្រភេទ" មិន​បង្ហាញ​ថា​ជា​ប្រភេទ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'វាល "ប្រភេទ" ត្រូវ​បាន​ទាមទារ។', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'វាល​កាលបរិច្ឆេទ​មិន​បង្ហាញ​ថា​ជា​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។', + 'date_mmddyyyy' => 'វាល​កាលបរិច្ឆេទ​មិន​បង្ហាញ​ថា​ជា​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'វាល​កាលបរិច្ឆេទ​ត្រូវ​បាន​ទាមទារ។', + ) , + 'incident_description' => array( + 'required' => 'វាល "សេចក្ដី​​ពណ៌នា" ត្រូវ​បាន​ទាមទារ។', + ) , + 'incident_hour' => array( + 'between' => 'វាល​ម៉ោង​មិ​ន​បង្ហាញ​ថា​ជា​ម៉ោង​ត្រឹមត្រូវ​ទេ។', + 'required' => 'បាន​ទាមទារ​វាល​ម៉ោង​។', + ) , + 'incident_information' => array( + 'alpha' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ប្រូបាប៊ីលេតេ​​ព័ត៌មាន។', + 'length' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ប្រូបាប៊ីលេតេ​​ព័ត៌មាន។', + ) , + 'incident_minute' => array( + 'between' => 'វាល​នាទី​មិន​បង្ហាញ​ថា​មាន​​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'បាន​ទាមទារ​វាល​នាទី។', + ) , + 'incident_news' => array( + 'url' => 'វាល​តំណ​ប្រភព​ព័ត៌មាន​មិន​បង្ហាញ​ថា​មាន​ URL ត្រឹមត្រូវ​ទេ។', + ) , + 'incident_photo' => array( + 'size' => 'សូម​ប្រាកដ​ថា​ទំហំ​ផ្ទុក​រូបថត​ឡើង​ត្រូវ​បាន​កំណត់​ត្រឹមត្រូវ ២ មេកាបៃ។', + 'type' => 'វាល​ផ្ទុក​រូបថត​ឡើង​មិន​បង្ហាញ​ថា​ជា​រូបភាព​ត្រឹមត្រូវ​ទេ។ ទ្រង់ទ្រាយ​ដែល​ទទួល​យក​បាន​គឺ .JPG, .PNG and .GIF ។', + 'valid' => 'វាល​ផ្ទុក​រូបថត​ឡើង​មិន​បង្ហាញ​ថា​មាន​​​ឯកសារ​ត្រឹមត្រូវ​ទេ។', + ) , + 'incident_source' => array( + 'alpha' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ភាព​ទុកចិត្ត​បាន​របស់​ប្រភព។', + 'length' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ភាព​ទុកចិត្ត​បាន​របស់​ប្រភព។', + ) , + 'incident_title' => array( + 'length' => 'វាល "ចំណង​ជើង​របាយការណ៍" យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន​ ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ២០០ តួអក្សរ។', + 'required' => 'វាល "ចំណង​ជើង​របាយការណ៍" ត្រូវ​បាន​ទាមទារ។', + 'csrf' => 'អាច​ប៉ះពាល់​ដល់ CSRF ។ តើ​អ្នក​ពិត​ជា​ចង់​បង្កើត/កែសម្រួល​របាយការណ៍​មែន​ឬ?', + ) , + 'incident_verified' => array( + 'between' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​​ផ្ទៀងផ្ទាត់​របាយការណ៍​នេះ។', + 'required' => 'សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ផ្ទៀងផ្ទាត់​របាយការណ៍​នេះ។', + ) , + 'incident_video' => array( + 'url' => 'វាល​តំណ​វីដេអូ​មិន​បង្ហាញ​ថា​មាន​ URL ត្រឹមត្រូវ​ទេ។', + ) , + 'latitude' => array( + 'between' => 'វាល​រយៈ​ទទឹង​មិន​បង្ហាញ​ថា​​មាន​រយៈ​ទទឹង​ត្រឹមត្រូវ​ទេ។', + 'required' => 'វាល​រយៈ​ទទឹង​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​លើ​ផែនទី​ដើម្បី​បង្ហាញ​ទីតាំង។', + ) , + 'locale' => array( + 'alpha_dash' => 'វាល​​មូលដ្ឋាន​មាន​តម្លៃ​មិន​ត្រឹមត្រូវ។', + 'exists' => 'របាយការណ៍​នេះ​មាន​ការ​បកប្រែ​សម្រាប់​ភាសា​នេះ​រួ​ច​ហើយ។', + 'length' => 'វាល​មូលដ្ឋាន​មាន​តម្លៃ​មិន​ត្រឹមត្រូវ។', + 'locale' => 'របាយការណ៍​​ច្បាប់ដើម និង​ការ​បកប្រែ​មាន​ភាសា​​មូលដ្ឋាន (language) ដូច​គ្នា។', + 'required' => 'បាន​ទាមទារ​មូលដ្ឋាន។', + ) , + 'location_name' => array( + 'length' => 'វាល​ "ឈ្មោះ​ទីតាំង" យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន​ ៣ តួ​អក្សរ​ និង​មាន​ប្រវែង​មិន​លើស​ពី ២០០ តួអក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល "ឈ្មោះ​ទីតាំង" ។', + ) , + 'longitude' => array( + 'between' => 'វាល​រយៈ​បណ្ដោយ​មិន​បង្ហាញ​ថា​​មាន​រយៈ​បណ្ដោយ​​ត្រឹមត្រូវ​ទេ។', + 'required' => 'វាល​រយៈ​បណ្ដោយ​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​​​លើ​ផែនទី ដើម្បី​បង្ហាញ​ទីតាំង។', + ) , + 'person_email' => array( + 'email' => 'វាល​អ៊ីមែល​មិន​បង្ហាញ​ថា​មាន​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។', + 'length' => 'វាល​​អ៊ីមែល​យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន ៤ តួ​អក្សរ​ និង​មាន​ប្រវែង​មិន​លើស​ពី ៦៤ តួអក្សរ​ឡើយ។', + ) , + 'person_first' => array( + 'length' => 'វាល​នាម​ខ្លួន​យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន ៣ តួ​អក្សរ​ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ​ទេ។', + ) , + 'person_last' => array( + 'length' => 'វាល​នាម​ត្រកូល​​យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន ២ តួអក្សរ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ​ទេ។', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'វាល​កាលបរិច្ឆេទ​ជូន​ចំពោះ មិន​បង្ហាញ​ថា​មាន​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។', + 'range' => 'សូម​បញ្ចូល​កាលបរិច្ឆេទ​ជូន​ចំពោះ​ដែល​ត្រឹមត្រូវ។ វា​មិន​អាច​ធំ​ជាង​ថ្ងៃ​នេះ។', + 'range_greater' => 'កាលបរិច្ឆេទ ​ពី ​របស់​អ្នក​មិន​អាច​ធំ​ជាង​កាលបរិច្ឆេទ ​ជូន​ចំពោះ​ របស់​អ្នក​ទេ។', + ) , +); diff --git a/application/i18n/km/reporters.php b/application/i18n/km/reporters.php new file mode 100644 index 0000000000..ab31390417 --- /dev/null +++ b/application/i18n/km/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'វាល​រយៈ​ទទឹង​មិន​បង្ហាញ​ថា​មាន​រយៈ​ទទឹង​ត្រឹមត្រូវ​ទេ។', + 'required' => 'វាល​រយៈ​ទទឹង​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​តំណ​​លើ​ផែនទី​ដើម្បី​​បង្ហាញ​ទីតាំង។', + ) , + 'level_id' => array( + 'numeric' => 'វាល​កម្រិត​អ្នក​រាយការណ៍​មិន​បង្ហាញ​ថា​មាន​កម្រិត​ត្រឹមត្រូវ​ទេ។', + 'required' => 'វាល​កម្រិត​អ្នក​រាយការណ៍​មិន​បង្ហាញ​ថា​មាន​កម្រិត​ត្រឹមត្រូវ​ទេ។', + ) , + 'location_name' => array( + 'length' => 'វាល​ឈ្មោះ​ទីតាំង​​យ៉ាង​ហោច​ណាស់​ត្រូវ​តែ​ ៣ និង​មាន​ប្រវែង​ជាង ២០០ តួអក្សរ។', + 'required' => 'វាល​ឈ្មោះ​ទីតាំ​ង​ត្រូវ​បាន​ទាមទារ។', + ) , + 'longitude' => array( + 'between' => 'វាល​រយៈ​បណ្ដោយ​មិន​បង្ហាញ​ថា​មាន​រយៈ​បណ្ដោយ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'វាល​រយៈ​បណ្ដោយ​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​តំណ​លើ​ផែនទី ដើម្បី​បង្ហាញ​ទីតាំង។', + ) , + 'reporter_id' => array( + 'numeric' => 'អ្នក​រាយការណ៍​មិន​ត្រឹមត្រូវ', + 'required' => 'អ្នក​រាយការណ៍​មិន​ត្រឹមត្រូវ', + ) , +); diff --git a/application/i18n/km/reports.php b/application/i18n/km/reports.php new file mode 100644 index 0000000000..168d2e06a8 --- /dev/null +++ b/application/i18n/km/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'សូម​ផ្ទៀងផ្ទាត់​ថា​អ្នក​បាន​ពិនិត្យមើល​ធាតុ​ហើយ', + 'numeric' => 'សូម​ផ្ទៀងផ្ទាត់​ថា​អ្នក​បាន​ពិនិត្យមើល​ធាតុ​​ហើយ​', + 'categories_required' => 'របាយការណ៍​ត្រូវ​តែ​រៀបចំ​តាម​ប្រភេទ​មុន​នឹង​​​ត្រូវ​បាន​អនុម័ត', + ) , + 'action' => array( + 'permission' => 'អ្នក​មិន​មាន​សិទ្ធិ​ក្នុង​ការ​ធ្វើ​សកម្មភាព​នេះ​​​ទេ', + ) , + 'uploadfile' => array( + 'required' => 'អ្នក​ត្រូវ​តែ​ជ្រើស​ឯកសារ​ដើម្បី​ផ្ទុក', + 'type' => 'ឯកសារ​ដែល​ផ្ទុក​ត្រូវ​តែ​​មាន​​ទ្រង់ទ្រាយ​ជា .csv ឬ .xml', + 'valid' => 'ឯកសារដាក់ចូលហាក់ដូចជាមិនមានអី', + ) , +); diff --git a/application/i18n/km/roles.php b/application/i18n/km/roles.php new file mode 100644 index 0000000000..cba27228dd --- /dev/null +++ b/application/i18n/km/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'វាល​សេចក្ដី​ពណ៌នា​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​៣ និង​យ៉ាង​ច្រើន​១០០។', + 'required' => 'បាន​ទាមទារ​វាល​សេចក្ដី​ពណ៌នា។', + ) , + 'name' => array( + 'alpha_numeric' => 'វាល​ឈ្មោះ​ត្រូវតែ​ជា​អក្សរ ឬ​លេខ​ប៉ុណ្ណោះ។', + 'length' => 'វាល​ឈ្មោះ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​២ និង​យ៉ាង​ច្រើន៣០។', + 'nomodify' => 'តួនាទី​របស់​អ្នកប្រើ​ជាន់ខ្ពស់ មិន​អាច​កែប្រែ​បាន​ទេ។', + 'required' => 'បាន​ទាមទារ​វាល​ឈ្មោះ។', + ) , + 'access_level' => array( + 'numeric' => 'វាល​កម្រិត​ចូល​ដំណើរការ​ត្រូវតែ​ជា​លេខ​នៅ​ចន្លោះ​រវាង​ពី​០-១០០។', + 'required' => 'វាល​កម្រិត​ចូល​ដំណើរការ​ត្រូវតែ​ជា​លេខ​នៅ​ចន្លោះ​រវាង​ពី​០-១០០។', + ) , + 'permissions' => array( + 'numeric' => 'វាល​សិទ្ធិ​ត្រូវតែ​ជា​លេខ​នៅ​ចន្លោះ​រវាង​ពី​០-១០០។', + ) , +); diff --git a/application/i18n/km/settings.php b/application/i18n/km/settings.php new file mode 100644 index 0000000000..ec39f009bf --- /dev/null +++ b/application/i18n/km/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'អនុញ្ញាត​ឲ្យ​វាល​មតិយោបល់​មិន​មាន​បង្ហាញ​តម្លៃ​ត្រឹមត្រូវ​ឡើយ។', + 'required' => 'អនុញ្ញាត​ឲ្យ​វាល​មតិយោបល់​ត្រូវ​បាន​ទាមទារ។', + ) , + 'allow_feed' => array( + 'between' => '​រួមបញ្ចូល​វាល​មតិ​ព័ត៌មាន​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'បាន​ទាមទារ​ឲ្យ​ដាក់​បញ្ចូល​វាល​មតិ​យោបល់។', + ) , + 'allow_feed_category' => array( + 'between' => 'ដាក់បញ្ចូល​វាល​ប្រភេទ​អត្ថបទ​ព័ត៌មាន​មិន​បង្ហាញ​ថា​​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'ដាក់​បញ្ចូល​វាល​ប្រភេទ​អត្ថបទ​ព័ត៌មាន​ត្រូវ​បាន​ទាមទារ។', + ) , + 'allow_alerts' => array( + 'between' => 'អនុញ្ញាត​ឲ្យ​វាល​ជូនដំណឹង​មិន​បង្ហាញ​​​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ។', + 'required' => 'អនុញ្ញាត​ឲ្យ​វាល​ជូនដំណឹង​ត្រូវ​បាន​ទាមទារ។', + ) , + 'allow_reports' => array( + 'between' => 'អនុញ្ញាត​ឲ្យ​វាល​របាយការណ៍​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​អនុញ្ញាត​របាយការណ៍។', + ) , + 'allow_stat_sharing' => array( + 'between' => 'វាល​ចែក​រំលែក​ស្ថានភាព​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​សភាព​ចែករំលែក។', + ) , + 'api' => array( + 'default_record_limit' => 'លេខ​លំនាំដើម​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API', + 'maximum_record_limit' => 'ចំនួន​អតិបរមា​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API', + 'maximum_requests_per_ip_address' => 'ចំនួន​អតិបរមា​នៃ​សំណើ API ក្នុង​មួយ​អាសយដ្ឋាន IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'វាល Akismet មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'length' => 'វាល Akismet មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + ) , + 'banner_image' => array( + 'type' => 'វាល​បដា​តំបន់​បណ្ដាញ​មិន​បង្ហាញ​ថា​មាន​រូបភាព​ត្រឹមត្រូវ​ទេ ។ ទ្រង់ទ្រាយ​ដែល​ព្រម​ទទួលយក​មាន​តែ .JPG, .PNG and .GIF.', + 'size' => 'សូម​ប្រាកដ​ថា​ទំហំ "រូបភាព​បដា" ​គឺ​តិច​ជាង ២៥០ គីឡូបៃ។', + 'valid' => 'វាល "រូបភាព​បដា" ​មិន​បង្ហាញ​​​ថា​មាន​ឯកសារ​ត្រឹមត្រូវ​ទេ។', + ) , + 'cache_pages' => array( + 'between' => 'បាន​ទាមទារ​វាល​ទំព័រ​ឃ្លាំង​សម្ងាត់។', + 'required' => 'វាល​ទំព័រ​ឃ្លាំង​សម្ងាត់​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'វាល​ជំនាន់​​​ទំព័រ​ឃ្លាំង​​​សម្ងាត់​​មិន​​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'បាន​ទាមទារ​វាល​ជំនាន់​ទំព័រ​ឃ្លាំង​​សម្ងាត់។', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'ម៉ាស៊ីន​មេ​របស់​អ្នក​ហាក់​ដូចជា​មិន​បាន​កំណត់​រចនាសម្ព័ន្ធ​ដើម្បី​ប្រើ URLs ​ត្រឹមត្រូវ​។ អ្នក​ចាំបាច់​ត្រូវ​ប្ដូរ​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​មេ​របស់​អ្នក​ជាមុន ទើប​អាច​បើក URLs ត្រឹមត្រូវ​បាន។ មើល​ព័ត៌មាន​បន្ថែម​អំពី​របៀប​បើក URLs ត្រឹមត្រូវ​នៅ សម្រាប់​វេទិកា​ប្រកាស​នេះ', + 'clean_url_enabled' => 'ជម្រើស​នេះ​ធ្វើឲ្យ​ Ushahidi​​​ អាច​ចូល​ដំណើរការ​បាន​តាមរយៈ URLs "ត្រឹមត្រូវ" (ដោយ​គ្មាន "index.php" នៅ​ក្នុង URL)។', + 'enable_clean_url' => 'បើក URLs ត្រឹមត្រូវ', + 'title' => 'URLs ត្រឹមត្រូវ', + ) , + 'clickatell_api' => array( + 'length' => 'វាល​លេខ Clickatell API ត្រូវតែ​មិន​មែន​​​ប្រវែង​ច្រើន​​ជាង ​២០ ​តួអក្សរ។', + 'required' => 'បាន​ទាមទារ​វាល​លេខ Clickatell API។', + ) , + 'clickatell_password' => array( + 'length' => 'វាល​ពាក្យ​សម្ងាត់ Clickatell ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​ ៥ ហើយ​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់ Clickatell ។', + ) , + 'clickatell_username' => array( + 'length' => 'វាល​អ្នកប្រើ Clickatell ត្រូវតែ​មាន​ប្រវែង​តួអក្សរ​​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​ឈ្មោះ​អ្នកប្រើ Clickatell ។', + ) , + 'configure_map' => 'កំណត់​​រចនាសម្ព័ន្ធ​ផែនទី', + 'default_location' => 'ទីតាំង​លំនាំដើម', + 'default_map_all' => array( + 'alpha_numeric' => 'វាល​មតិ​ព័ត៌មាន​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'length' => 'វាល​ពណ៌​ត្រូវតែ​មាន​ប្រវែង​តួអក្សរ​មិន​ច្រើនជាង ៦។', + 'required' => 'បាន​ទាមទារ​វាល​ពណ៌។', + ) , + 'default_map_view' => 'ទិដ្ឋភាព​ផែន​ទី​លំនាំដើម', + 'default_zoom_level' => 'កម្រិត​​ពង្រីក​លំនាំដើម', + 'download_city_list' => 'ទៅ​យក​ទីក្រុង​ពី Geonames', + 'email_host' => array( + 'length' => 'វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គឺ​វែង​ពេក។', + 'numeric' => 'វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។', + ) , + 'email_password' => array( + 'length' => 'វាល​ពាក្យសម្ងាត់​ម៉ាស៊ីន​មេ​អ៊ីមែល​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច ៥ និង​​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​ពាក្យសម្ងាត់​ម៉ាស៊ីន​មេ​អ៊ីមែល។', + ) , + 'email_port' => array( + 'length' => 'វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គឺ​វែង​ពេក។', + 'numeric' => 'វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។', + ) , + 'email_servertype' => array( + 'length' => 'វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គឺ​វែង​ពេក។', + 'required' => 'បាន​ទាមទារ​វាល​ប្រភេទ​ម៉ាស៊ីន​មេ​អ៊ីមែល។', + ) , + 'email_username' => array( + 'length' => 'វាល​ឈ្មោះ​អ្នកប្រើ​ម៉ាស៊ីន​មេ​អ៊ីមែល​ត្រូវតែ​មាន​តួអក្សរ​​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​ឈ្មោះ​អ្នកប្រើ​ម៉ាស៊ីន​មេ​អ៊ីមែល។', + ) , + 'facebook' => array( + 'title' => 'ជម្រើស​រៀបចំ Facebook', + 'description' => 'ដើម្បី​ទទួល​បាន​ព័ត៌មាន​ខាងក្រោម អ្នក​ចាំបាច់​ត្រូវ​បង្កើត​កម្មវិធី Facebook ថ្មី​នៅ', + 'description_2' => 'ការ​កំណត់​នេះ​អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​តាម​រយៈ Facebook វា មិន បង្កើត​កម្មវិធី​ facebook សម្រាប់​ការ​ប្រើប្រាស់​របស់​អ្នក​ឡើយ', + 'app_id' => 'លេខ​សម្គាល់​កម្មវិធី Facebook', + 'app_secret' => 'ការ​សម្ងាត់​របស់​កម្មវិធី Facebook', + ) , + 'google_analytics' => array( + 'length' => 'វាល​វិភាគ​របស់ Google ត្រូវតែ​មាន​លេខ​សម្គាល់​លក្ខណសម្បត្តិ​ត្រឹមត្រូវ​នៅ​ក្នុង​ទ្រង់ទ្រាយ UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'បើក HTTPS', + 'https_disabled' => 'ជម្រើស​នេះ​ធ្វើឲ្យ​ Ushahidi ​អាច​ចូល​ដំណើរការ​បាន​ក្នុង​របៀប​មិន​សុវត្ថិភាព ដោយ​មិន​មាន "https://" នៅ​ក្នុង​បុព្វបទ URL', + 'https_enabled' => 'ជម្រើស​នេះ​ធ្វើឲ្យ​ Ushahidi ​អាច​ចូល​ដំណើរការ​បាន​ក្នុង​របៀប​មិន​សុវត្ថិភាព​ជាមួយ https នៅ​ក្នុង​បុព្វបទ URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (ផ្នែក​ខាងមុខ) ​មិន​បង្ហាញ​​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'បាន​ទាមទារ​វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (ផ្នែក​ខាងមុខ)។', + ) , + 'items_per_page_admin' => array( + 'between' => 'វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (អ្នក​គ្រប់គ្រង) មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។', + 'required' => 'បាន​ទាមទារ​វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (អ្នក​គ្រប់គ្រង)។', + ) , + 'map' => array( + 'default_location' => '​ការ​​រៀបចំ​ក្រុមហ៊ុន​ផ្ដល់​ផែន​ទី​របស់​អ្នក​គឺ​ដំណើរការ​យ៉ាង​ងាយស្រួល​មួយ។ ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​ដែល​មាន​សោ API ពី​តំបន់​បណ្ដាញ​របស់​ក្រុមហ៊ុន​ផ្ដល់ និង​បញ្ចូល​សោ API ។', + 'zoom' => 'កម្រិត​ពង្រីក', + ) , + 'map_provider' => array( + 'choose' => 'ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​ផែនទី', + 'enter_api' => 'ជ្រើស​សោ API ថ្មី', + 'get_api' => 'យក​សោ API', + 'info' => 'ការ​រៀបចំ​ក្រុមហ៊ុន​ផ្ដល់​ផែន​ទី​របស់​អ្នក​គឺ​ដំណើរការ​យ៉ាង​ងាយស្រួល​មួយ។ ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​ដែល​មាន​សោ API ពី​តំបន់​បណ្ដាញ​របស់​ក្រុមហ៊ុន​ផ្ដល់ និង​បញ្ចូល​សោ API ។', + 'name' => 'ក្រុមហ៊ុន​ផ្ដល់​ផែនទី', + ) , + 'map_timeline' => 'បន្ទាត់​ពេលវេលា​ផែនទី', + 'map_settings' => 'ការ​កំណត់​ផែនទី', + 'multiple_countries' => 'តើ​ការ​ប្រើប្រាស់ Ushahidi ​នេះ​មាន​នៅ​ច្រើន​ប្រទេស​ដែរ​ឬទេ?', + 'select_default_location' => 'សូម​ជ្រើស​ប្រទេស​លំនាំដើម', + 'set_location' => 'ចុច រួច​អូស​ផែនទី​ដើម្បី​កំណត់​ទីតាំង​បន្ថែម​របស់​អ្នក', + 'site' => array( + 'allow_clustering' => 'ប្រមូលផ្ដុំ​របាយការណ៍​នៅ​លើ​ផែនទី', + 'allow_comments' => 'អនុញ្ញាត​ឲ្យ​អ្នកប្រើ​ផ្ញើ​សេចក្ដី​អធិប្បាយ​ទៅកាន់​របាយការណ៍', + 'allow_feed' => 'រួម​ទាំង​មតិ​ព័ត៌មាន RSS នៅ​លើ​តំបន់បណ្ដាញ', + 'allow_feed_category' => 'បង្ហាញ​ប្រភេទ​ថ្មី​ពីអត្ថបទ​ព័ត៌មាន', + 'allow_alerts' => 'អនុញ្ញាត​អ្នកប្រើ​ឲ្យ​ជាវ​សម្រាប់​ការ​ជូនដំណឹង', + 'allow_reports' => 'អនុញ្ញាត​ឲ្យ​អ្នកប្រើ​ផ្ញើ​របាយការណ៍', + 'api_akismet' => 'សោ Akismet', + 'banner' => 'បដា​របស់​តំបន់បណ្ដាញ', + 'blocks_per_row' => 'ប្លុក​ក្នុង​មួយ​ជួរដេក', + 'cache_pages' => 'ទំព័រ​ឃ្លាំង​សម្ងាត់', + 'cache_pages_lifetime' => 'រយៈពេល​ទំព័រ​ឃ្លាំង​សម្ងាត់', + 'checkins' => 'បើក​ការ​ពិនិត្យ​ចូល', + 'copyright_statement' => 'ឃ្លា​រក្សាសិទ្ធិ​តំបន់បណ្ដាញ', + 'default_category_colors' => 'ពណ៌​លំនាំដើម​សម្រាប់​ប្រភេទ​ទាំងអស់', + 'default_category_icons' => 'រូបតំណាង​លំនាំដើម​សម្រាប់​ប្រភេទ​ទាំងអស់', + 'delete_banner_image' => 'លុប​រូបភាព​បដា', + 'delete_default_map_all_icon' => 'លុប​រូបតំណាង​លំនាំដើម', + 'display_contact_page' => 'បង្ហាញ​ទំព័រ​ទំនាក់ទំនង', + 'display_howtohelp_page' => 'បង្ហាញ​ទំព័រ "របៀប​ជួយ"', + 'email_alerts' => 'អាសយដ្ឋាន​អ៊ីមែល​ជូនដំណឹង', + 'email_notice' => 'ដើម្បី​អាច​ទទួល​របាយការណ៍​តាម​អ៊ីមែល​បាន​ សូម​កំណត់​រចនាសម្ព័ន្ធ​អ៊ីមែល​ការ​កំណត់​គណនី​របស់​អ្នក', + 'email_site' => 'អាសយដ្ឋាន​អ៊ីមែល​របស់​តំបន់​បណ្ដាញ', + 'google_analytics' => 'ការ​វិភាគ​តាម Google', + 'google_analytics_example' => 'លេខ​សម្គាល់​លក្ខណសម្បត្តិ​តំបន់បណ្ដាញ - ទ្រង់ទ្រាយ៖ UA-XXXXX-XX', + 'items_per_page' => 'ធាតុ​ក្នុង​មួយ​ទំព័រ - កម្មវិធី​ខាងមុខ', + 'items_per_page_admin' => 'ធាតុ​ក្នុង​មួយ​ទំព័រ - អ្នក​គ្រប់គ្រង', + 'kismet_notice' => 'ដើម្បី​ការពារ​សារ​ឥតបានការ សូម​ប្រើ Akismet ដោយ​ស្វ័យប្រវត្តិ។
អ្នក​អាច​យក​សោ API បាន​ដោយ​ចុះឈ្មោះ​សម្រាប់​គណនី​អ្នកប្រើ WordPress.com', + 'laconica_configuration' => 'ព័ត៌មាន​សម្ងាត់​របស់ Laconica', + 'laconica_site' => 'តំបន់បណ្ដាញ​របស់ Laconica', + 'language' => 'ភាសា​តំបន់បណ្ដាញ', + 'manually_approve_users' => 'អ្នកប្រើ​ដែល​បាន​អនុម័ត​ដោយ​ដៃ', + 'message' => 'សារ​របស់​តំបន់បណ្ដាញ', + 'name' => 'ឈ្មោះ​តំបន់បណ្ដាញ', + 'private_deployment' => 'ការ​អភិវឌ្ឍ​ឯកជន', + 'require_email_confirmation' => 'ទាមទារ​ការ​អះអាង​អ៊ីមែល​របស់​អ្នកប្រើ', + 'submit_report_message' => 'ដាក់​ស្នើ​សារ​របាយការណ៍', + 'share_site_stats' => 'បើក​ស្ថិតិ (បាន​ទុក​នៅ​លើ​ម៉ាស៊ីន​មេ​ Ushahidi)', + 'tagline' => 'បន្ទាត់​ស្លាក​របស់​តំបន់បណ្ដាញ', + 'timezone' => 'តំបន់​ពេលវេលា', + 'title' => 'ការ​កំណត់​តំបន់បណ្ដាញ', + 'twitter_configuration' => 'លក្ខខណ្ឌ​ស្វែងរក​របស់ Twitter', + 'twitter_hashtags' => 'សញ្ញា (#) បំបែក​ដោយ​សញ្ញា​ក្បៀស (,)', + 'feed_geolocation_user' => 'Feeds geolocation - ឈ្មោះអ្នកប្រើ Geonames', + ) , + 'site_email' => array( + 'email' => 'វាល​អ៊ីមែល​របស់​តំបន់បណ្ដាញ​មិន​បង្ហាញ​ថា​មាន​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។', + 'length' => 'វាល​អាសយដ្ឋាន​អ៊ីមែល​ត្រូវតែ​មាន​អក្សរ​យ៉ាង​តិច ៤ និង​​មិន​ច្រើន​ជាង ១០០ តួ​អក្សរ​ឡើយ។', + ) , + 'site_name' => array( + 'length' => 'វាល​ឈ្មោះ​តំបន់បណ្ដាញ​ត្រូវតែ​មាន​តួ​​អក្សរ​យ៉ាង​តិច​ ៣ និង​មិន​ច្រើន​ជាង ​៥០ តួ​អក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​ឈ្មោះ​តំបន់បណ្ដាញ។', + ) , + 'site_tagline' => array( + 'length' => 'វាល​បន្ទាត់​ស្លាក​ត្រូវតែ​មាន​តួ​អក្សរ​យ៉ាងតិច​ ៣ និង​មិន​ច្រើន​ជាង ​១០០ តួ​អក្សរ​ឡើយ។', + 'required' => 'បាន​ទាមទារ​វាល​បន្ទាត់​ស្លាក។', + ) , + 'sms' => array( + 'clickatell_api' => 'លេខ Clickatell API របស់​អ្នក', + 'clickatell_check_balance' => 'ពិនិត្យ​សមតុល្យ​ឥណទាន Clickatell របស់​អ្នក', + 'clickatell_load_balance' => 'ផ្ទុក​សមតុល្យ​ឥណទាន', + 'clickatell_password' => 'ពាក្យសម្ងាត់ Clickatell របស់​អ្នក', + 'clickatell_text_1' => 'ចុះឈ្មោះ​សម្រាប់​សេវាកម្ម Clickatells ដោយ ចុច​ទីនេះ', + 'clickatell_text_2' => 'បញ្ចូល​ព័ត៌មាន​ចូល​ដំណើរការ Clickatell របស់​អ្នក​នៅ​ខាងក្រោម', + 'clickatell_username' => 'ឈ្មោះ​អ្នកប្រើ Clickatell របស់​អ្នក', + 'flsms_description' => 'FrontlineSMS គឺជា​កម្មវិធី​កូដ​ចំហ​ឥត​បង់ថ្លៃ​ដែល​អ្នក​ប្រើ​អាច​ផ្ញើ និង​ទទួល​សារ​អត្ថបទ​ជា​ក្រុម​តាម​រយៈ​ទូរស័ព្ទ​ចល័ត​។ ចុច​នៅ​លើ​ប្រអប់​ខាង​ក្រោម ដើម្បី​ទាញ​យក​កំណែ​ចុងក្រោយ​ពី FrontlineSMS.com។', + 'flsms_download' => 'ទាញ​យក និង​ដំឡើង FrontlineSMS', + 'flsms_instructions' => 'សេចក្ដី​ណែនាំ​លម្អិត​អំពី​របៀប​ផ្ញើ​សារ SMS ពី​ការ​ដំឡើង FronlineSMS របស់​អ្នក​​​​ here។ URL និង​សោ API ខាងក្រោម​ត្រូវ​បាន​ទាមទារ​ដើម្បី​រៀបចំ​ធ្វើ​សមកាលកម្ម​​ជាមួយ FrontlineSMS។', + 'flsms_link' => 'ចម្លង និង​បិទភ្ជាប់​វា​ទៅ​កាន់​វាល "អាសយដ្ឋាន" FrontlineSMS', + 'flsms_key' => 'ចម្លង និង​បិទភ្ជាប់​វា​ទៅកាន់​វាល FrontlineSMS "Ushahidi API Key"', + 'flsms_synchronize' => 'តភ្ជាប់ FrontlineSMS ទៅ​កាន់​ការ​ប្រើប្រាស់ Ushahidi នេះ', + 'flsms_text_1' => 'បញ្ចូល​លេខ​ទូរស័ព្ទ​ដើម្បី​តភ្ជាប់​ទៅកាន់ Frontline SMS នៅ​ក្នុង​វាល​ខាងក្រោម', + 'flsms_text_2' => 'បញ្ចូល​លេខ​ខាងក្រោម​ដោយ​មិន​ចាំបាច់​មាន​សញ្ញា + ឬ​សញ្ញា - ឡើយ', + 'option_1' => 'ជម្រើស​ទី ១៖ ប្រើ Frontline SMS', + 'option_2' => 'ជម្រើស​ទី ២៖ ប្រើ​ច្រក SMS សាកល', + 'title' => 'ជម្រើស​រៀបចំ SMS', + ) , + 'sms_no1' => array( + 'length' => 'វាល​មួយ​របស់​ទូរស័ព្ទ​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ។ ', + 'numeric' => 'វាល​មួយ​របស់​ទូរស័ព្ទ​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។', + ) , + 'sms_no2' => array( + 'length' => 'វាល​ទី ២ ​របស់​ទូរស័ព្ទ​គឺ​វែង​ពេក។', + 'numeric' => 'វាល​ទី ២ ​របស់​ទូរស័ព្ទ​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ ', + ) , + 'sms_no3' => array( + 'length' => 'វាល​ទី ៣​ របស់​ទូរស័ព្ទ​គឺ​វែង​ពេក។', + 'numeric' => 'វាល​ទី ៣ ​របស់​ទូរស័ព្ទ​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។', + ) , + 'twitter' => array( + 'title' => 'ជម្រើស​រៀបចំ Twitter', + 'description' => 'ដើម្បី​ទទួល​បាន​ព័ត៌មាន​ខាងក្រោម រៀបចំ​ការ​ប្រើប្រាស់​របស់​អ្នកជា​កម្មវិធី​ Twitter ថ្មី​នៅ', + 'api_key' => 'សោ​អ្នក​ប្រើប្រាស់', + 'api_key_secret' => 'សោ​អ្នក​ប្រើប្រាស់', + 'token' => 'ចូល​ដំណើរការ​​ថូខឹន', + 'token_secret' => 'ចូល​ដំណើរការ​ថូខឹន​សម្ងាត់', + ) , + 'test_settings' => 'កំណត់​ការ​សាកល្បង', +); diff --git a/application/i18n/km/sharing.php b/application/i18n/km/sharing.php new file mode 100644 index 0000000000..6be8a8f5e6 --- /dev/null +++ b/application/i18n/km/sharing.php @@ -0,0 +1,25 @@ + 'កាលបរិច្ឆេទ​ចូល', + 'date_added' => 'បាន​បន្ថែម​កាលបរិច្ឆេទ', + 'last_access' => 'ចូល​ដំណើរការ​ចុងក្រោយ', + 'sharing_color' => array( + 'length' => 'វាល​ពណ៌​ត្រូវតែ​មាន៦តួអក្សរ។', + 'required' => 'បាន​ទាមទារ​វាល​ពណ៌។', + ) , + 'sharing_name' => array( + 'length' => 'ឈ្មោះ​ចែករំលែក​ហាក់​បង្ហាញ​ថា​មិន​ត្រឹមត្រូវ។', + 'required' => 'បាន​ទាមទារ​ឈ្មោះ​ចែករំលែក។', + ) , + 'sharing_url' => array( + 'exists' => 'URL របស់​តំបន់​បណ្ដាញ​គឺ​មាន​រួចហើយ។', + 'length' => 'URL របស់​តំបន់​បណ្ដាញ​ហាក់​បង្ហាញ​ថា​មិន​ត្រឹមត្រូវ។', + 'required' => 'បាន​ទាមទារ URL របស់​តំបន់​បណ្ដាញ។', + 'url' => 'វាល URL តំបន់​បណ្ដាញ​មិន​បង្ហាញ​ថា​ជា​ URL ត្រឹមត្រូវ​ទេ។', + ) , +); diff --git a/application/i18n/km/stats.php b/application/i18n/km/stats.php new file mode 100644 index 0000000000..9c25c1cb45 --- /dev/null +++ b/application/i18n/km/stats.php @@ -0,0 +1,42 @@ + 'បាន​អនុម័ត', + 'categories' => 'ប្រភេទ', + 'category_impact' => 'ប្រភេទ​ប៉ះទង្គិច', + 'category_impact_description' => 'តារាង​នេះ​ផ្ដល់ឲ្យ​អ្នក​នូវ​ទិដ្ឋភាព​របាយការណ៍​លីនេអ៊ែរ​តាម​ប្រភេទ​នៃ​ពេលវេលា។ រមូរ​ពី​ឆ្វេង​ទៅ​ស្ដាំ​ដើម្បី​មើល​ការ​ប្រៀបធៀប​ទិដ្ឋភាព​ប្រភេទ​ខុសៗគ្នា។ រំកិល​កណ្ដុរ​ពីលើ​ក្រាប​ដើម្បី​មើល​សេចក្ដី​លម្អិត។', + 'choose_date_range' => 'ជ្រើស​ជួរ​កាលបរិច្ឆេទ។', + 'countries' => 'ប្រទេស', + 'country' => 'ប្រទេស', + 'country_breakdown' => 'ប្រទេស​ដែល​មិន​អភិវឌ្ឍ', + 'description' => 'នេះ​ជា​ផ្នែក​ស្ថិតិ​ដែល​នឹង​មាន​សេចក្ដី​ពណ៌នា​ទូទៅ​នៅ​ទីនេះ។ ឥឡូវនេះ រុករក​ដោយ​ប្រើ​តំណ​ប្រភេទ​រង​ខាងលើ។', + 'error' => 'កំហុស', + 'glossary' => 'សទ្ទានុក្រម', + 'hit_summary' => 'រក​ឃើញ​សេចក្ដី​សង្ខេប', + 'legend' => 'គំនូសតាង', + 'pageviews' => 'ទិដ្ឋភាព​ទំព័រ', + 'pageviews_description' => 'ចំនួន​ទំព័រ​សរុប​ដែល​អ្នក​ទស្សនា​បាន​មើល​តំបន់​បណ្ដាញ​របស់​អ្នក', + 'reports' => 'របាយការណ៍', + 'reports_categories' => 'ប្រភេទ​របាយការណ៍', + 'reports_statistics' => 'ស្ថិតិ​របាយការណ៍', + 'reports_status' => 'របាយការណ៍​ស្ថានភាព', + 'report_punchcard' => 'កាត​របាយការណ៍', + 'report_stats' => 'ស្ថានភាព​របាយការណ៍', + 'stats_not_setup' => 'មិន​បាន​រៀបចំ​ស្ថានភាព', + 'time_range_1' => '១​ខែ', + 'time_range_2' => '៣​ខែ', + 'time_range_3' => '៦​ខែ', + 'time_range_all' => 'ទាំងអស់', + 'unapproved' => 'មិន​បាន​អនុម័ត', + 'unique_visitors' => 'អ្នក​ទស្សនា​តែ​ម្នាក់', + 'unique_visitors_description' => 'ចំនួន​អ្នក​អ្នក​ចូល​ទស្សនា​ដាច់ដោយឡែក​ទៅ​លើ​ការ​បង្ហាញ​របស់​អ្នក។ អ្នក​ទស្សនា​តែ​ម្នាក់​ត្រូវ​បាន​កំណត់​ដោយ​ខូគី។ អ្នក​ទស្សនា​ដែល​មិន​បាន​បើក​ខូគី នឹង​ត្រូវ​បាន​សម្គាល់​ដោយ​ប្រើការ​គិត​ទៅលើ​ការ​ស្រាវជ្រាវ​ធម្មតា​ចំពោះ​អាសយដ្ឋាន IP គុណភាព​បង្ហាញ កម្មវិធី​រុករក កម្មវិធី​ជំនួយ ប្រព័ន្ធ​ប្រតិបត្តិការ។ល។', + 'unverified' => 'មិន​បាន​ផ្ទៀងផ្ទាត់', + 'verified' => 'បាន​ផ្ទៀងផ្ទាត់', + 'visitor_summary' => 'សេចក្ដី​សង្ខេប​របស់​អ្នក​ទស្សនា', + 'visits' => 'ទស្សនា', + 'visits_description' => 'ការ​ទស្សនា​គឺជា​កំណត់ត្រា​របស់​អ្នក​ទស្សនា​តែ​ម្នាក់ ដែល​ចូល​មើល​តំបន់​ច្រើន​ជាង​៣០នាទី លើ​ទិដ្ឋភាព​ទំព័រ​ចុងក្រោយ​របស់​គាត់/នាង។', +); diff --git a/application/i18n/km/tooltips.php b/application/i18n/km/tooltips.php new file mode 100644 index 0000000000..f5e11237ad --- /dev/null +++ b/application/i18n/km/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'ការ​បន្ថែម​នេះ​​មាន​​របាយ​​ការណ៍​អំពី​ប្រភេទ​​ផ្សេងៗ។ ប្រសិនបើ​អ្នក​ជ្រើស​ប្រភេទ ១ នៅ​ទី​នេះ ហើយ​របាយការណ៍​មាន​ប្រភេទ​ដែល​ភ្ជាប់​ជាមួយ​វា របាយការណ៍​នឹង​មាន​ទាំង​ប្រភេទ ១ និង​ប្រភេទ ២។', + 'approve' => 'អនុម័ត ឬ​មិន​អនុម័ត។ ប្រសិនបើ​​បាន​អនុម័ត វា​នឹង​បង្ហាញ​ជា​សាធារណៈ។', + 'assign_badge' => 'អ្នក​​អាច​កំណត់​សញ្ញា​​សម្គាល់​​​ដើម្បី​ធ្វើ​ឲ្យ​អ្នក​ប្រើ​សកម្ម។ ជ្រើស​សញ្ញា​សម្គាល់​ដែល​បាន​កំណត់​នៅ​ទី​នេះ។', + 'between_times' => 'វា​កំណត់​តាម​ម៉ោង និង/ឬ នាទី​​ចន្លោះ​ពេល​នៅ​ក្នុង​ 24 ម៉ោង។ ប្រសិនបើ​អ្នក​បញ្ចូល​មុន​ពេល​​វេលា​នៅ​ក្នុង​វាល​ទីពីរ វា​នឹង​ត្រូវ​បាន​ត្រឡប់​ទៅ​ដើម​វិញ។ ពេលវេលា​នេះ​ត្រូវ​តែ​នៅ​ក្នុង​ថ្ងៃ​តែមួយ។ ពេលវេលា​នេះ​ត្រូវ​បាន​ពិនិត្យមើល​​នៅ​ពេលវេលា​ដែល​អ្នក​បាន​កំណត់​រចនាសម្ព័ន្ធ​នៅ​លើ​តំបន់​បណ្ដាញ​​របស់​អ្នក​នៅ​ក្នុង​តំបន់​បណ្ដាញ​ដែល​បាន​កំណត់ ហើយ មិន មាន​ភាព​ចាំបាច់​នៅ​តំបន់​ពេលវេលា​អ្នក​ប្រើ​ដែល​អ្នក​ទាក់ទង​ជាមួយ​ការប្រើប្រាស់​របស់​អ្នក​ឡើយ។ ទុក​វា​​ឲ្យ​នៅ 00:00 ដល់ 00:00 ដើម្បី​មិន​អើ​ពើ​អ្នក​សម្របសម្រួល​នេះ។', + 'category' => 'ប្រសិនបើ​អ្នក​​គ្រាន់​តែ​ចង់​ធ្វើ​ឲ្យ​សកម្ម នៅ​ពេល​ដែល​ប្រភេទ​ដែល​មាន​ត្រូវ​បាន​ប្រើ។ វា​នឹង​អនុញ្ញាត​ឲ្យ​សកម្ម ប្រសិនបើ​​ប្រើ​ប្រភេទ​តែមួយ។ ឧទាហរណ៍ ប្រសិនបើ​អ្នក​ជ្រើស​ប្រភេទ ១ និង​ប្រភេទ ២ នៅ​ទីនេះ ហើយ​របាយការណ៍​ត្រូវ​បាន​ដាក់​ស្នើ​ឲ្យ​ប្រើ​ប្រភេទ ២ និង​ប្រភេទ ៣ វា​នឹង​ធ្វើ​ការ​សាកល្បង។', + 'days_of_the_week' => 'ប្រសិនបើ​​​សកម្មភាព​នេះ​កើត​ឡើង​មាន​នៅ​ថ្ងៃ​នៃ​សប្ដាហ៍​កំណត់​វា​នៅ​ទី​នេះ។ សូម​ចងចាំ​ថា​​​ថ្ងៃ​ដែល​បាន​កំណត់​តាម​តំបន់​ពេលវេលា​​បាន​កំណត់​ពេលវេលា​នៅ​លើ​ការ​ប្រើប្រាស់​របស់​អ្នក។ ចុច ប្ដូរ (shift) command, ឬ ត្រួត​ពិនិត្យ​ត្រួត​​សម្រាប់​ជម្រើស​​ថ្ងៃ​ច្រើន។', + 'email_body' => 'តួ​សេចក្ដី​អ៊ីមែល​ដែល​នឹង​ត្រូវ​ផ្ញើ។', + 'email_subject' => 'ប្រធានបទ​អ៊ីមែល​ដែល​ត្រូវ​ផ្ញើ។', + 'feed_id' => 'មតិ​ព័ត៌មាន​អាច​ជា​មតិ​ព័ត៌មាន​ទាំងអស់ ឬ​មតិ​ព័ត៌មាន​ជាក់លាក់។ ប្រសិនបើ​អ្នក​ចង់​ឲ្យ​មតិ​ព័ត៌មាន​សកម្ម អ្នក​​ត្រូវ​ជ្រើស​វា​នៅ​ទី​នេះ។ ម៉្យាងទៀត អ្នក​នឹង​ទុក​វា​ "ទាំងអស់"', + 'from' => 'ឈ្មោះ​​អ្នក​ប្រើ​អ្នក​និពន្ធ Twitter (ឬ​ឈ្មោះ​អ្នក​ប្រើ​ច្រើន​ដែល​បាន​បំបែក​ដោយ​សញ្ញា​ក្បៀស)។ ប្រសិនបើ​​អ្នក​ចង់​ធ្វើ​ឲ្យ​សកម្ម​​សម្រាប់​សារ twitter​ ពី​អ្នក​ប្រើ​ជា​ពិសេស បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ​របស់​ពួកគេ​នៅ​ទៅ​នេះ (កុំ​បញ្ចូល @)', + 'keywords' => 'អ្នក​អាច​ជ្រើស​ទុក​ឲ្យ​នៅ​ទទេ ប្រសិនបើ​អ្នក​មិន​ចង់​ពិនិត្យមើល​ពាក្យ​គន្លឹះ​ម្ដងទៀត​ទេ​នោះ។ ប្រសិនបើ​អ្នក​បន្ថែម​ពាក្យ​នៅ​ទី​នេះ អ្នក​នឹង​ចាំបាច់​ត្រូវ​បំបែក​វា​ដោយ​សញ្ញា​ក្បៀស (,)។ ឧទាហរណ៍ ប្រសិនបើ​អ្នក​ចង់​ធ្វើ​ឲ្យ​សកម្ម នៅ​ពេល​អ្នក​ណា​ម្នាក់​​និយាយ​អំពី​ "ស្រលាញ់" ឬ "សន្តិភាព" នៅ​ក្នុង​សារ​របស់​ពួក​យើង អ្នក​នឹង​បន្ថែម "ស្រលាញ់ សន្តិភាព" នៅ​ក្នុង​ពាក្យ​គន្លឹះ​', + 'location' => 'អ្នក​​អាច​ជ្រើស​​ទីកន្លែង​ណាមួយ​​ ឬ​ទីតាំង​ជាក់លាក់។ ប្រសិនបើ​អ្នក​ជ្រើស​ទីតាំង​ជាក់លាក់ អ្នក​នឹង​ត្រូវ​បាន​ស្នើ​ដើម្បី​គូរ​ប្រអប់​មួយ​ជុំវិញ​ផ្ទៃ​ដែល​បញ្ជាក់​អំពី​សកម្មភាព​។ ឧទាហរណ៍ ប្រសិនបើ​អ្នក​ចង់​ធ្វើ​ឲ្យ​សកម្ម នៅ​ពេល​អ្នក​ណា​ម្នាក់​ដាក់​ស្នើ​របាយ​ការ​នៅ​ក្នុង Brazil អ្នក​នឹង​ជ្រើស "ផ្ទៃ​ជាក់លាក់" ហើយ​បន្ទាប់​មក​គូរ​ប្រអប់​ជុំវិញ Brazil។ អ្នក​អាច​បង្កើត​ប្រអប់​នេះ​តូច ឬ​ធំ​តាម​​តម្រូវ​ការ​បាន​។ អ្នក​​ក៏​អាច​​គូរ​ប្រអប់​ច្រើន​​បាន​ផង​ដែរ។', + 'on_specific_count' => 'អ្នក​សម្របសម្រួល​នេះ​នឹង​ធ្វើ​ឲ្យ​សកម្ម​​នៅ​លើ N-th សម្រាប់​ជា​ក្រុម​ទាំងមូល ឬ​អ្នក​ប្រើ​ប្រាស់​ម្នាក់ៗ។ ទុក​ឲ្យ​នៅ​ទទេ កុំ​អើ​ពើ​វា។', + 'report_title' => 'វា​ជា​ចំណងជើង​លំនាំដើម​ដែល​ត្រូវ​បន្ថែម​ទៅ​របាយការណ៍។', + 'response' => 'ប្រសិនបើ​​​អ្នក​សម្របសម្រួល​ទាំងអស់​ខាង​លើ​ត្រូវ​បាន​​អនុម័ត ហើយ​ចម្លើយ​តប​ត្រូវ​បាន​ធ្វើ​ឲ្យ​សកម្ម។ វា​អាច​តម្រៀប​ពី​​ក្នុង​ការ​អនុម័ត​​របាយការណ៍ ដើម្បី​ផ្ញើ​អ៊ីមែល​ទៅ​អ្នក​ការ​​ប្រើប្រាស់។ ជ្រើស​ចម្លើយ​តប​នៅ​ទីនេះ ដើម្បី​ធ្វើ​ឲ្យ​ជម្រើស​បន្ថែម​សកម្ម​សម្រាប់​ចម្លើយ​តប​ជាក់លាក់។', + 'send_to' => 'ប្រសិនបើ​អ្នក​ជ្រើស "ធ្វើ​ឲ្យ​អ្នក​ប្រើ​សកម្ម" អ៊ីមែល​នឹង​ត្រូវ​បាន​ផ្ញើ​ទៅ​កាន់​​អ្នក​ណា​ម្នាក់​ដែល​​បាន​ប្រតិបត្តិ​សកម្មភាព​នេះ។ ប្រសិនបើ​អ្នក​ជ្រើស​ប៊ូតុង​មូល​ជិត​ប្រអប់​​បញ្ចូល​​​អ្នក​អាច​បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល​ផ្ទាល់ខ្លួន​បាន។ វា​មាន​ប្រយោជន៍ ប្រសិនបើ​​អ្នក​​រៀបចំ​​ធ្វើ​ឲ្យ​​ការ​ជូន​ដំណឹង​សកម្ម នៅ​ពេល​​បាន​មើល​ផ្នែក​នីមួយៗ​នៃ​របាយការណ៍​ផែនទី ការ​ចូល ឬ​សកម្មភាព​ផ្សេងៗ​ទៀត។', + 'specific_days' => 'អ្នក​អាច​ជ្រើស​ថ្ងៃ​ច្រើន​បាន​នៅ​ទីនេះ។ ថ្ងៃ​ត្រូវ​បាន​កំណត់​តាម​​ការ​កំណត់​តំបន់​ពេល​វេលា​​​ការ​ប្រើប្រាស់​។ ដើម្បី​កំណត់​​កាលបរិច្ឆេទ​តាម​លំនាំដើម​ទាំងអស់ កុំ​ជ្រើស​កាលបរិច្ឆេទ​​​ណាមួយ។', + 'trigger' => 'ធ្វើ​ឲ្យ​សមាសភាគ​ចម្បង​​នៃ​ការ​រៀបចំ​ធ្វើ​ឲ្យ​សកម្មភាព​របស់​អ្នក​សកម្ម។ វា​ជា​ទីកន្លែង​ដែល​អ្នក​អាច​​កំណត់ ប្រសិនបើ​អ្នក​ចង​ឲ្យ​អ្វី​មួយ​កើត​ឡើយ នៅ​ពេល​អ្នក​ណា​​ម្នាក់​​ដាក់​ស្នើ​របាយការណ៍ ក្នុង​ការ​ចូល។ល។ អ្នក​​អាច​ឆ្លើយតប​​អំពី​សកម្មភាព​នេះ​បន្ទាប់​ពី​ជ្រើសរើស​មួយ។', + 'user' => 'អ្នក​ប្រើ​អាច​ជា​អ្នក​ណា​ម្នាក់ ឬ​អ្នក​ប្រើ​ជាក់លាក់។ ប្រសិនបើ​អ្នក​ចង់​ឲ្យ​តែ​អ្នក​ប្រើ​ជាក់លាក់​សកម្ម​ អ្នក​ត្រូវ​ជ្រើស​វា​​នៅ​ទី​នេះ។ ម៉្យាងទៀត អ្នក​ត្រូវ​ទុក​វា​​សម្រាប់​ "​អ្នក​ណា​ម្នាក់" នៅ​ពេល​រៀបចំ​​​សម្រាប់​អ្នក​ប្រើ​ទាំងអស់​​ដែល​ធ្វើ​សកម្មភាព​រួម​គ្នា​ជាមួយ​ប្រព័ន្ធ', + 'verify' => 'សម្គាល់​របាយការណ៍​​ថា​បាន​​​ផ្ទៀងផ្ទាត់ ឬ​ក៏​មិន​បាន​​​ផ្ទៀងផ្ទាត់។', + ) , + 'change_picture' => 'ទំព័រ​ជីវប្រវត្តិ​នៅ​លើ​តំបន់​បណ្ដាញ​នេះ​ប្រើ Gravatar។ ដោយ​ចុច​នៅ​លើ​រូបភាព​របស់​​អ្នក នឹង​យក​ទៅ​កាន់​តំបន់​បណ្ដាញ Gravatar ដែល​អ្នក​អាច​ផ្លាស់ប្ដូរ​រូបភាព​ជីវប្រវត្តិ​របស់​អ្នក។', + 'default_value' => 'បំបែក​តម្លៃ​នីមួយៗ​ដោយ​​ប្រើ​សញ្ញា​ក្បៀស ឧ. value1, value2 ។', + 'radio_choices' => 'បំបែក​តម្លៃ​នីមួយៗ​ដោយ​ប្រើ​សញ្ញា​ក្បៀស ឧ. value1, value2។ ក្នុង​ករណី​ដែល​អ្នក​ចង់​កំណត់​លំនាំដើម ចុង​បញ្ជី​​ជម្រើស​​របស់​អ្នក​ប្រើ :: ឧ. ប្រសិនបើ​អ្នក​ចង់​ធ្វើ​ឲ្យ value3 ជា​លំនាំដើម វា​​អាច​ជា​ value1, value2, value3::value3', + 'dropdown_choices' => 'បំបែក​ធាតុ​ជម្រើស​នីមួយៗ​ដោយ​ប្រើ​សញ្ញា​ក្បៀស ឧ. ធាតុ ១, ធាតុ ២។ល។', + 'private_to' => 'ចាប់ផ្ដើម​វាយ​លេខ​បញ្ជី។', + 'private_subject' => 'ប្រធាន​បទ​សារ​ឯកជន', + 'private_message' => 'សារ​ឯកជន', + 'profile_color' => 'អ្នក​អាច​ជ្រើស​ពណ៌​ដែល​នឹង​បង្ហាញ​នៅ​ខាងក្រោម​រូបភាព​ជីវប្រវត្តិ​របស់​អ្នក​នៅ​លើ​ជីវប្រវត្តិ​សាធារណៈ​របស់​អ្នក។ ពណ៌​នេះ​នឹង​បង្ហាញ​ជា​​ចំណុច​ពណ៌​នៅ​លើ​ផែន​ទី​សម្រាប់​ការ​ចូល​របស់​អ្នក។', + 'profile_email' => 'អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក', + 'profile_name' => 'នេះ​ជា​វិធី​មួយ​ដែល​អ្នក​បាន​រក​ឃើញ​នៅ​លើ​តំបន់​បណ្ដាញ។ ចងចាំ​ថា​វិធី​នោះ​​ប្រើ​ជា​សាធារណៈ!', + 'profile_new_password' => 'ប្រសិនបើ​បាន​កំណត់ វា​នឹង​​ក្លាយ​ជា​ពាក្យ​សម្ងាត់​ថ្មី​របស់​អ្នក។ ទុក​វា​ឲ្យ​នៅ​ទទេ ប្រសិនបើ​អ្នក​ចង់​រក្សាទុក​ពាក្យ​សម្ងាត់​បច្ចុប្បន្ន។', + 'profile_new_users_password' => 'វា​​ត្រូវ​ការ​នៅ​ពេល​បង្កើត​អ្នក​ប្រើ​ថ្មី ហើយ​​នឹង​ក្លាយ​ជា​ពាក្យ​សម្ងាត់​របស់​អ្នក​ប្រើ។ អ្នក​គួរតែ​ផ្ដល់​ព័ត៌មាន​ឲ្យ​អ្នក​ប្រើ​ថ្មី​បាន​ដឹង​ក្នុង​ការ​ផ្លាស់ប្ដូរ​ពាក្យសម្ងាត់​បន្ទាប់​ពី​ចូល​​នៅ​ពេល​ដំបូង។', + 'profile_notify' => 'ជ្រើស បាទ/ចាស ដើម្បី​អនុញ្ញាត​ឲ្យ​​អ្នក​ទទួល​បាន​ការ​ជូន​ដំណឹង​តាម​រយៈ​អ៊ីមែល នៅ​ពេល​របាយការណ៍​ថ្មី ឬ​មតិយោបល់​ត្រូវ​បាន​បង្ហោះ​នៅ​លើ​តំបន់​បណ្ដាញ​របស់​អ្នក។', + 'profile_password' => 'ពាក្យសម្ងាត់​បច្ចុប្បន្ន​របស់​អ្នក​។ យើង​​ទាមទារ​ឲ្យ​អ្នក​បញ្ចូល​ពាក្យ​សម្ងាត់​របស់​អ្នក ដើម្បី​ការពារ​ការ​ផ្លាស់ប្ដូរ​គណនី​របស់​អ្នក​​ណា​មួយ​ដែល​មិន​ត្រឹមត្រូវ​', + 'profile_public' => 'ជីវប្រវត្តិ​របស់​អ្នក​អាច​ត្រូវ​បាន​មើល​ដោយ​អ្នក​ណា​ម្នាក់​​តាម​អ៊ីនធឺណិត ប្រសិនបើ​អ្នក​ធីក​ជម្រើស​នេះ។ វា​ជា​​វិធី​​ដែល​​ងាយស្រួល​បំផុត​ផង​ដែរ ក្នុង​ការ​បង្ហាញ​​របាយការណ៍​ដែល​អ្នក​ដាក់​ស្នើ ការ​ចូល​របស់​អ្នក ឧបករណ៍​សម្គាល់ ទាំងអស់​នៅ​លើ​ទំព័រ​មួយ។', + 'profile_public_url' => 'វា​ជា​អាសយដ្ឋាន​ដែល​​​​អាច​រក​ឃើញ​ជីវប្រវត្តិ​សាធារណៈ​​របស់​អ្នក។', + 'profile_username' => 'មិន​អាច​ផ្លាស់ប្ដូរ​ឈ្មោះ​អ្នក​ប្រើ​របស់​អ្នក​បាន​ទេ។', + 'settings_access_level' => 'កម្រិត​ចូល​ដំណើរការ​ត្រូវ​បាន​ប្រើ​ដើម្បី​កំណត់​ឲ្យ​ចូល​ដំណើរការ​ផ្ទាល់ខ្លួន​ពី​ទិន្នន័យ​វាល។ កម្រិត​ចូល​ដំណើរការ​ខ្ពស់​បំផុត​អាច​ចូល​ដំណើរការ​វាល​ពី​កម្រិត​ទាប​ជាង។ អ្នក​គ្រប់គ្រង​កម្រិត​ខ្ពស់​មាន​កម្រិត​ចូល​ដំណើរការ​ខ្ពស់​បំផុត (100)។ ទិន្នន័យ​ជា​សាធារណៈ​ត្រូវ​បាន​បង្ហាញ​នៅ​កម្រិត​ចូល​ដំណើរការ​ទាប​បំផុត (0)។ ចំនួន​កម្រិត​​ចូល​ដំណើរការ​មាន 10។ អ្នក​គ្រប់គ្រង​មាន​កម្រិត​​​ចូល​ដំណើរការ​ 90 តាម​លំនាំដើម។', + 'settings_alert_email' => 'វា​ជា​អាសយដ្ឋាន​ដែល​នឹង​ត្រូវ​បាន​ប្រើ​ដើម្បី​ផ្ញើ​ការ​ជូនដំណឹង​អ៊ីមែល។', + 'settings_allow_alerts' => 'អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ជ្រាវ​សម្រាប់​ការ​ជូន​ដំណឹង​តាមរយៈ​តំបន់​បណ្ដាញ។', + 'settings_allow_clustering' => 'វា​អនុញ្ញាត​ឲ្យ​ធ្វើ​របាយការណ៍​ស្រដៀង​គ្នា​ទៅ​នឹង​ចំណុច​តែមួយ​នៅ​លើ​ផែនទី', + 'settings_allow_comments' => 'អនុញ្ញាត​ឲ្យ​​អ្នក​ប្រើ​ផ្ដល់​មតិយោបល់​លើ​របាយការណ៍​​នៅ​លើ​តំបន់​បណ្ដាញ​ចម្បង។', + 'settings_allow_feed' => 'វា​អនុញ្ញាត​ឲ្យ​មតិ​ព័ត៌មាន RSS ត្រូវ​បាន​បង្ហាញ​នៅ​លើ​តំបន់​បណ្ដាញ​ចម្បង។', + 'settings_allow_feed_category' => 'វា​អនុញ្ញាត​ឲ្យ​បង្កើត​ប្រភេទ​ថ្មី​ពី​អត្ថបទ​ព័ត៌មាន RSS ។', + 'settings_allow_reports' => 'អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ដាក់​ស្នើ​ព័ត៌មាន​តាម​រយៈ​សំណុំ​បែបបទ​តំបន់​បណ្ដាញ។', + 'settings_api_default_record_limit' => 'លេខ​លំនាំដើម​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API', + 'settings_api_max_record_limit' => 'ចំនួន​អតិបរមា​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API', + 'settings_api_max_requests_per_ip' => 'ចំនួន​អតិបរមា​នៃ​សំណើ API ក្នុង​មួយ​អាសយដ្ឋាន IP', + 'settings_banner' => 'បដា​តំបន់​បណ្ដាញ​បង្ហាញ​នៅ​ខាងលើ​ផ្នែក​ខាង​មុខ​ចុង​នៃ​តំបន់​បណ្ដាញ ប្រសិនបើ​រូបរាង​ដែល​អ្នក​កំពុង​ប្រើ​គាំ​ទ្រ​វា។ ទំហំ​ដែល​បាន​ផ្ដល់​អនុសាសន៍​សម្រាប់​បដា​នេះ​អាស្រ័យ​លើ​រូបរាង​ដែល​អ្នក​​កំពុង​ប្រើ។ ចងចាំ​ថា​វា​នឹង​ជំនួស​ចំណងជើង​តំបន់​បណ្ដាញ និង tagline នៅ​​ផ្នែក​ខាងលើ​នៃ​ទំព័រ។', + 'settings_blocks_per_row' => 'ចំនួន​ទប់ស្កាត់​ជួរឈរ​ដែល​នឹង​បង្ហាញ​នៅ​លើ​ជួរ​ដេក​នីមួយៗ។', + 'settings_cache_pages' => 'បើក ឬ​បិទ​ទំព័រ​​ឃ្លាំង​សម្ងាត់។ វា​ធ្វើ​ឲ្យ​ទំព័រ​បង្ហាញ​យ៉ាង​លឿន​ដោយ​ការ​កាត់​ពេលវេលា​ឆ្លើយ​តប។ យើង​បាន​ផ្ដល់​អនុសាសន៍​ដោយ​ប្រើ​ឃ្លាំង​នៅ​លើ​តំបន់​បណ្ដាញ​ចរាចរណ៍​​ដែល​មាន​កម្រិត​ខ្ពស់។ **ចងចាំ​ថា​របាយការណ៍​ការ​នឹង​ត្រូវ​បាន​បង្ហាញ​ផ្នែក​ខាង​មុខ​តាម​​កាលវិភាគ​ដែល​អ្នក​បាន​កំណត់​ខាងក្រោម (អាយុកាល​​ឃ្លាំង)។', + 'settings_cache_pages_lifetime' => 'កំណត់​អាយុកាល​​ឃ្លាំង។', + 'settings_checkins' => 'ការ​កំណត់​នេះ​បើក​ការ​ចូល​​សម្រាប់​ការ​ប្រើប្រាស់​របស់​អ្នក។ វា​ជា​ប្រភេទ​របាយការណ៍​សាមញ្ញ ដែល​មិន​ត្រូវ​បាន​សម្របសម្រួល​មុន​ពេល​​​វា​បន្ត​ទៅ​ទំព័រ​ដើម ហើយ​ទាមទារ​ឲ្យ​តំបន់​បណ្ដាញ​របស់​អ្នក​​ត្រូវ​កំណត់​រចនាសម្ព័ន្ធ​តាម​វិធី​ដែល​មាន។ នៅ​ពេល​ដែល​អ្នក​វា សូម​ប្រាកដ​ថា​អ្នក​បាន​កំណត់​តំបន់​ពេលវេលា​របស់​អ្នក​នៅ​លើ UTC ហើយ​ការ​ចូល​គាំទ្រ​រូបរាង​របស់​អ្នក។ នៅ​ពេល​អ្នក​បើក​វា មាន​តែ​រូបរាង​តែ​ការ​ចូល​ប៉ុណ្ណោះ​នឹង​ត្រូវ​បាន​បើក​ នៅ​ក្រោម​ទំព័រ​ការ​កំណត់​ កម្មវិធី​បន្ថែម/រូបរាង។', + 'settings_configure_map' => 'កំណត់​ផែនទី​នៅ​លើ​ទីតាំង​ជាក់លាក់។', + 'settings_default_category_colors' => 'កំណត់​កូដ​ពណ៌​សម្រាប់​ប្រភេទ​ទាំងអស់​នៅ​លើ​តំបន់​បណ្ដាញ។', + 'settings_default_category_icons' => 'កំណត់​រូបតំណាង​សម្រាប់​ប្រភេទ​ទាំងអស់​នៅ​លើ​តំបន់​បណ្ដាញ។', + 'settings_default_location' => 'វា​ជា​តំបន់​បណ្ដាញ​ប្រទេស​ត្រូវ​បាន​ប្រើប្រាស់​ប្រកប​ដោយ​ប្រសិទ្ធិភាព។', + 'settings_display_contact' => 'បើក​/បិទ ផ្ទាំង​ទំនាក់ទំនង​នៅ​លើ​តំបន់​បណ្ដាញ​មេ។', + 'settings_display_howtohelp' => 'បិទ/បើក​ ផ្ទាំង​ជំនួយ​នៅ​លើ​តំបន់​បណ្ដាញ​មេ។', + 'settings_display_items_per_page' => 'វា​ជា​​ចំនួន​របាយការណ៍​ដែល​បាន​បង្ហាញ​នៅ​ក្នុង​មួយ​ទំព័រ​នៅ​លើ​តំបន់​បណ្ដាញ​មេ។', + 'settings_display_items_per_page_admin' => 'វា​ជា​ចំនួន​របាយការណ៍​ដែល​បាន​បង្ហាញ​នៅ​ក្នុង​មួយ​ទំព័រ​កម្មវិធី​ខាងក្រោយ​សម្រាប់​អ្នក​គ្រប់គ្រង។', + 'settings_flsms_download' => 'នេះ​ជា​ hub សម្រាប់​សារ​ចូល។', + 'settings_flsms_synchronize' => 'ការ​ធ្វើ​សមកាលកម្ម​​នេះ​មាន​សារ​នៅ​ក្នុង hub ដែល​មាន​​កម្មវិធី​ Ushahidi ។', + 'settings_flsms_text_1' => 'លេខ​ទូរស័ព្ទ​តាម​រយៈ​សារ​អត្ថបទ​ណាមួយ​ដែល​ត្រូវ​​បាន​ទទួល។', + 'settings_google_analytics' => 'អ្នក​​ទស្សនា​​ការ​តាមដាន​តំបន់​បណ្ដាញ​របស់​អ្នក។ ទទួល​បាន​ស្ថិតិ​អ្នក​ទស្សនា​ដែល​មាន​សេចក្ដី​លម្អិត។', + 'settings_locale' => 'កំណត់​ភាសា​ដែល​នឹង​ត្រូវ​បាន​ប្រើ​នៅ​ក្នុង​តំបន់​បណ្ដាញ។', + 'settings_manually_approve_users' => 'ប្រសិនបើ​អ្នក​កំណត់​ជ្រើស បាទ/ចាស អ្នក​ត្រូវ​តែ​អនុម័ត​រាល់​អ្នក​ប្រើ​នីមួយៗ​ដែល​បង្កើត​គណនី​នៅ​លើ​តំបន់​បណ្ដាញ​របស់​អ្នក​ដោយ​កំណត់​ច្បាស់​សម្រាប់​ពួក​គេ (ឧ. សមាជិក, អ្នក​គ្រប់គ្រង, អ្នក​គ្រប់គ្រង​ជាន់​ខ្ពស់)។', + 'settings_map_provider' => 'វា​កំណត់​ផែនទី​ណា​មួយ​ដែល​ត្រូវ​ប្រើ​នៅ​លើ​តំបន់​បណ្ដាញ។', + 'settings_map_timeline' => 'វា​បង្ហាញ​បន្ទាត់​ពេលវេលា​អាស្រ័យ​លើ​កាលបរិច្ឆេទ និង​ពេលវេលា​ដាក់​ស្នើ​របាយការណ៍', + 'settings_private_deployment' => 'កំណត់​តម្លៃ​នេះ​ពិត ឬ​បាទ/ចាស​នឹង​ធ្វើ​ឲ្យ​​អ្នក​មាន​គណនី​​សម្រាប់​ការ​ប្រើប្រាស់​ឯកជន​ ដែល​អ្នក​អាច​​​បញ្ជាក់​ដើម្បី​​​ចូល​ដំណើរការ​ក្នុង​ការ​ប្រើប្រាស់​បាន។', + 'settings_require_email_confirmation' => 'អ្នក​ប្រើ​នឹង​ត្រូវ​បាន​ផ្ញើ​អ៊ីមែល​ដោយ​ប្រើ​តំណ​ការ​អះអាង ចុច​មុន​ពេល​ពួក​យើង​បាន​អនុវត្ត​ចូល​ទៅ​ប្រើប្រាស់ ប្រសិនបើ​បាន​កំណត់​វា​បាទ/ចាស។ ប្រសិនបើ​អ្នក​បើក​វា​ បន្ទាប់​ពី​ការ​ប្រើប្រាស់​​របស់​អ្នក​ត្រូវ​បាន​ព្រម​ទទួល​​ ពួក​វា​នឹង​ត្រូវ​បាន​ជ្រើសរើស ដើម្បី​អះអាង​គណនី​របស់​ពួក​គេ មុន​ពេល​ពួកគេ​នឹង​ត្រូវ​បាន​អនុញ្ញាត​​ឲ្យ​បន្ត​ការ​ប្រើប្រាស់។', + 'settings_server_host' => 'វា​ជា​ទីកន្លែង​ដែល​អ៊ីមែល​ស្ថិតនៅ​', + 'settings_server_password' => 'នេះ​ជា​ពាក្យសម្ងាត់​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​ដែល​ទទួល​​របាយការណ៍។', + 'settings_server_port' => 'វា​ត្រូវ​បាន​ទាមទារ​ឲ្យ​ទទួល​យក​ការ​តភ្ជាប់​ចូល​ពី​អាសយដ្ឋាន​អ៊ីមែល។', + 'settings_server_ssl_support' => 'វា​ត្រូវ​បាន​ទាមទារ​ដើម្បី​បង្កើន​ការ​តភ្ជាប់​សុវត្ថិភាព។', + 'settings_server_type' => 'វា​ត្រូវ​បាន​ទាមទារ​ដើម្បី​ទៅ​យក​អ៊ីមែល​ពី​ម៉ាស៊ីន​មេ។', + 'settings_server_username' => 'នេះ​ជា​ពាក្យសម្ងាត់​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​ដែល​ទទួល​​របាយការណ៍។', + 'settings_share_site_stats' => 'រក​ឃើញ​​ស្ថិតិ​ដែល​ត្រូវ​បាន​រក្សាទុក​នៅ​លើ​ម៉ាស៊ីន​មេ​ដែល​បាន​ត្រួតពិនិត្យ​ដោយ Ushahidi។ ដោយ​បើក​ជម្រើស​នេះ អ្នក​អាច​ចូល​ដំណើរការ ដើម្បី​មើល​ស្ថិតិ​ដោយ​ផ្ទាល់​នៅ​ក្នុង​បន្ទះ​ជា​អ្នក​គ្រប់គ្រង​របស់​អ្នក។ ដោយ​បិទ​វា អ្នក​នឹង​បញ្ឈប់​ការ​សម្រាំង​ស្ថិតិ ហើយ​នឹង​មិន​អាច​សម្រាំង​ស្ថានភាព​ចរាចរណ៍​ខណៈ​ពេល​ដែល​បិទ​វា​ឡើយ។​', + 'settings_site_copyright_statement' => 'មាន​សិទ្ធិ​​ដើម្បី​បោះពុម្ព​អត្ថបទ​ឡើង​វិញ រូបភាព វីដេអូ និង/ឬ រៀបចំ​រូបរាង​ដែល​អ្នក ហើយ​នឹង​អ្នក​ប្រើ​​របស់​អ្នក​បាន​បង្កើត​ឬ? ទៅ​កាន់ https://creativecommons.org/choose/ ប្រសិនបើ​អ្នក​ចូលចិត្ត​បញ្ជាក់​អ្វី​ផ្សេង​ទៀត​ដែល​អ្នក​អាច​ធ្វើ​ជាមួយ​ការ​ងារ​របស់​អ្នក​បាន។ ហើយ​ចងចាំ​ថា​អ្នក​អាច​​បញ្ជាក់​អំពី​ធាតុ​តំបន់​​បណ្ដាញ​ដែល​អ្នក​កំពុង​មាន​អាជ្ញាប័ណ្ណ​!', + 'settings_site_email' => 'នេះ​ជា​ពាក្យសម្ងាត់​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​ដែល​ទទួល​​របាយការណ៍ និង​សារ​ពី​​សំណុំ​បែបបទ​​ទំនាក់ទំនង', + 'settings_site_message' => 'វា​ជា​អត្ថបទ​ដែល​នឹង​លេច​ឡើង​នៅ​លើ​ផែនទី​លើ​គេហ​ទំព័រ។ វា​មាន​អត្ថប្រយោជន៍​សម្រាប់​ផ្ដល់​ព័ត៌មាន​សំខាន់ៗ​ដល់​អ្នក​ទស្សនា​លើ​តំបន់​បណ្ដាញ។ យក​ប្រអប់​ចេញ លុប​សារ​នៅ​ទីនេះ។', + 'settings_site_name' => 'វា​ជា​ឈ្មោះ​តំបន់​បណ្ដាញ​ដែល​លេច​ឡើង​នៅ​ផ្នែក​ខាងលើ​នៃ​តំបន់​បណ្ដាញ​ចម្បង។', + 'settings_site_submit_report_message' => 'វា​ជា​សារ​ដែល​នឹង​បង្ហាញ​នៅ​លើ​ទំព័រ​របាយការណ៍​ដាក់​ស្នើ។ វា​​ល្អ​សម្រាប់​អ្នក​មិន​ព្រម​ទទួល ឬ​សេចក្ដី​ណែនាំ​សម្រាប់​អ្នក​ទស្សនា​​របស់​អ្នក​ដែល​កំពុង​រាយការណ៍។', + 'settings_site_tagline' => 'ពន្យល់​អំពី​តំបន់​បណ្ដាញ​ ដោយ​សង្ខេប។', + 'settings_site_timezone' => 'វា​ជា​តំបន់​បណ្ដាញ​ដែល​តំបន់​បណ្ដាញ​របស់​អ្នក​នឹង​ដំណើរការ​នៅ​លើ។​ វា​នឹង​មាន​​ការ​ប៉ះទង្គិច​នៅ​លើ​សកម្មភាព​មួយ​ចំនួន​ដែល​អ្នក​បាន​រៀបចំ​កាលបរិច្ឆេទ និង​ពេលវេលា​ប្រើប្រាស់ ព្រមទាំង​ពេលវេលា​បច្ចុប្បន្ន​លំនាំដើម​សម្រាប់​រាយការណ៍​នៅ​កម្មវិធី​ខាងក្រោយ និង​ខាង​មុខ​នៃ​តំបន់​បណ្ដាញ។', + 'settings_twitter_configuration' => 'កំណត់​សញ្ញា # សម្រាប់ twitter ដែល​នឹង​​ត្រូវ​ប្រើ​នៅ​លើ tweet', +); diff --git a/application/i18n/km/ui_admin.php b/application/i18n/km/ui_admin.php new file mode 100644 index 0000000000..bfb0ce8e25 --- /dev/null +++ b/application/i18n/km/ui_admin.php @@ -0,0 +1,329 @@ + 'បាន​បដិសេធ​ការ​ចូល​ដំណើរការ។ លិខិត​សម្គាល់​របស់​អ្នក​មិន​ត្រឹម​ត្រូវ ឬ​សំណើ​របស់​អ្នក​ត្រូវ​បាន​បដិសេធ។', + 'access_denied_others' => 'បាន​បដិសេធ​ការ​ចូល​ដំណើរការ។ សំណើ​​របស់​អ្នក​ត្រូវ​បាន​ស្គាល់ ប៉ុន្តែ​បាន​បដិសេធ​ដោយសារតែ​ការ​កំណត់​ការ​ចូល​ដំណើរការ​អស់​ពេល​។ ព្យាយាម​​ម្ដងទៀត​ពេល​ក្រោយ។', + 'access_level' => 'កម្រិត​ការ​ចូល​ដំណើរការ', + 'actions' => 'សកម្មភាព', + 'add_to_category' => 'បន្ថែម​ទៅ​ប្រភេទ', + 'added' => 'បាន​បន្ថែម', + 'added_edited' => 'បាន​បន្ថែម/​បាន​កែសម្រួល', + 'addons' => 'ឧបករណ៍​បន្ថែម', + 'admin_role' => 'ជា​អ្នក​គ្រប់គ្រង', + 'alerts' => 'ការ​ជូនដំណឹង', + 'alerts_received' => 'បាន​ទទួល​ការ​ជូនដំណឹង', + 'all' => 'ទាំងអស់', + 'am' => 'ព្រឹក', + 'anonymous' => 'អនាមិក', + 'anyone_role' => 'អ្នក​ណា​ម្នាក់', + 'anywhere' => 'កន្លែង​ណាមួយ', + 'api_banned' => 'បាន​ហាម​ឃាត់ API', + 'api_logs' => 'កំណត់ហេតុ API', + 'api_settings' => 'ការ​កំណត់ API', + 'api_unban' => 'មិន​ហាម​ឃាត់', + 'api_unban_all' => 'មិន​​ហាមឃាត់​ទាំងអស់', + 'approved' => 'បាន​អនុម័ត', + 'approve_auto' => 'អនុម័ត​ស្វ័យប្រវត្តិ', + 'approve_manual' => 'អនុម័ត​ដោយ​ដៃ', + 'archived' => 'បាន​ទុក​ក្នុង​ប័ណ្ណសារ', + 'are_you_sure_you_want_to' => 'តើ​អ្នក​ប្រាកដ​ជា​ចង់', + 'are_you_sure_you_want_to_delete_this_item' => 'តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​ធាតុ​នេះ​ឬ?', + 'are_you_sure_you_want_to_delete_this_photo' => 'តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​រូបថត​នេះ​ឬ?', + 'are_you_sure_you_want_to_switch_forms' => 'តើ​អ្នក​ពិត​ជា​ចង់​ប្ដូរ​​​សំណុំ​បែបបទ​នេះ​ឬ?', + 'assign' => 'ផ្ដល់​កិច្ចការ', + 'assignments' => 'កិច្ចការ', + 'assign_badge' => 'ផ្ដល់​ស្លាក', + 'author' => 'អ្នក​និពន្ធ', + 'author_email' => 'អ៊ីមែល​របស់​អ្នក​និពន្ធ', + 'back' => 'ថយ​ក្រោយ', + 'banip_action' => 'ហាម IP', + 'between_times' => 'ចន្លោះ​ពេល', + 'blocks' => 'ទប់​ស្កាត់', + 'body' => 'តួ', + 'cancel' => 'បោះ​បង់​', + 'categories' => 'ចំណាត់ថ្នាក់ក្រុម', + 'chart_display_error' => 'កំហុស​ក្នុង​ការ​បង្ហាញ​គំនូសតាង', + 'check_message_valid' => 'សូម​ប្រាកដ​ថា​សារ​របស់​អ្នក​ត្រឹមត្រូវ។', + 'check_number' => 'សូម​ប្រាកដ​ថា​លេខ​ត្រឹមត្រូវ។', + 'check_sms_settings' => 'សូម​ពិនិត្យមើល​សារ SMS របស់​អ្នក!', + 'checkin_details' => 'សេចក្ដី​លម្អិត​ការ​ចូល', + 'checkins' => 'ការ​ចូល', + 'cities_loaded' => 'បាន​ផ្ទុក​ទីក្រុង', + 'code' => 'កូដ', + 'code_out_of_sync' => 'កំណែ​កូដ​​គ្មាន​សមកាលកម្ម។', + 'color' => 'ពណ៌', + 'comments' => 'មតិយោបល់', + 'confirmation_code' => 'កូដ​ការ​អះអាង​ការ​ជូនដំណឹង​របស់​អ្នក​គឺ៖', + 'confirm_msg' => 'អ្នក​ប្រើ​ត្រូវ​បាន', + 'count' => 'រាប់', + 'country_not_found' => 'រក​មិន​ឃើញ​ប្រទេស', + 'created_edited' => 'បាន​បង្កើត/បាន​កែសម្រួល', + 'create_report' => 'ធ្វើ​របាយការណ៍', + 'critical_upgrade' => 'ធ្វើ​ឲ្យ​ប្រសើរ', + 'csv' => 'CSV', + 'currently_active' => 'សកម្ម​នៅ​ពេល​បច្ចុប្បន្ន', + 'currently_inactive' => 'មិន​សកម្ម​នៅ​ពេល​បច្ចុប្បន្ន', + 'custom_forms_insufficient_permissions' => 'អ្នក​មិន​មាន​សិទ្ធិ​គ្រប់គ្រាន់​ក្នុង​ការ​កែសម្រួល​វាល​ផ្ទាល់​ខ្លួន​ខាង​ក្រោម​ឡើយ។', + 'daily' => 'ប្រចាំ​ថ្ងៃ', + 'dashboard' => 'Dashboard', + 'database' => 'មូលដ្ឋាន​ទិន្នន័យ', + 'date_time' => 'កាលបរិច្ឆេទ និង​ពេលវេលា', + 'date_added' => 'បាន​បន្ថែម​កាលបរិច្ឆេទ', + 'date_modified' => 'បាន​កែប្រែ​កាល​បរិច្ឆេទ', + 'days_of_the_week' => 'ថ្ងៃ​នៃ​​សប្ដាហ៍', + 'db_out_of_sync' => 'កំណែ DB គ្មាន​សមកាលកម្ម។', + 'deleted' => 'បាន​លុប', + 'delete_action' => 'លុប', + 'delete_all' => 'លុប​របាយការណ៍​ទាំងអស់', + 'delete_badge' => 'លុប​ស្លាក', + 'demo' => 'ការ​បង្ហាញ', + 'description' => 'សេចក្ដី​ពិពណ៌នា', + 'disabled' => 'បាន​បិទ', + 'divider_start_field' => 'ចាប់ផ្ដើម​ការ​បែងចែក', + 'divider_end_field' => 'បញ្ចប់​ការ​បែងចែក', + 'divider_class' => 'div class', + 'download_reports' => 'ទាញ​យក​របាយការណ៍', + 'dropdown_choices' => 'ជម្រើស​​​ទម្លាក់​ចុះ', + 'edited' => 'បាន​កែសម្រួល', + 'edited_by' => 'បាន​កែសម្រួល​ដោយ', + 'edit_action' => 'កែសម្រួល', + 'edit_log' => 'កែសម្រួល​កំណត់​ហេតុ', + 'email' => 'អ៊ីមែល', + 'entire_collective' => 'សហការ​ជា​ក្រុម', + 'error_geocoding' => 'កំហុស​នៅ​ក្នុង​ geocoding! កំហុស HTTP', + 'error_imap' => 'មិន​បាន​ដំឡើង​បណ្ណាល័យ IMAP PHP ឡើយ', + 'error_twitter' => 'ព័ត៌មាន​សម្ងាត់​មិន​ត្រឹមត្រូវ', + 'error_msg' => 'កំហុស', + 'error_post_incident' => 'កំហុស មិន​អាច​ប្រកាស​ហេតុការណ៍', + 'every_six_hours' => 'រៀងរាល់​ប្រាំមួយ​ម៉ោង', + 'every_twelve_hours' => 'រៀងរាល់​ដប់ពីរ​ម៉ោង', + 'experimental' => 'ទាក់ទង​នឹង​បទពិសោធន៍', + 'faqs' => 'FAQ\'s', + 'feed' => 'មតិ​ព័ត៌មាន', + 'feedback' => 'មតិ​ត្រឡប់', + 'feeds' => 'មតិ​ព័ត៌មាន ', + 'field_choices' => 'រាយ​ជម្រើស', + 'field_default' => 'តម្លៃ​លំនាំ​ដើម', + 'field_datatype' => 'ប្រភេទ​ទិន្នន័យ', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'ជា​លេខ', + 'field_datatype_text' => 'អត្ថបទ​ឥត​គិត​ថ្លៃ', + 'field_height' => 'កម្ពស់ (ជួរ​ដេក)', + 'field_hidden' => 'វាល​ដែល​បាន​លាក់', + 'field_maxlength' => 'ប្រវែង​តួ​អក្សរ​អតិបរមា', + 'field_name' => 'ឈ្មោះ​វាល', + 'field_toggle' => 'បើក/បិទ', + 'field_toggle_no' => 'ទេ', + 'field_toggle_yes_close' => 'បាទ/ចាស បាន​បិទ​តាម​លំនាំដើម', + 'field_toggle_yes_open' => 'បាទ/ចាស បើក​តាម​លំនាំដើម', + 'file_not_found_upload' => 'រក​មិន​ឃើញ​ឯកសារ​ដែល​បាន​ផ្ទុក​ឡើង', + 'file_open_error' => 'មិន​អាច​បើក​ឯកសារ​សម្រាប់​អាន​បាន​ទេ', + 'form_not_exists' => 'គ្មាន​សំណុំ​បែបបទ​នេះ​ទេ!', + 'forum' => 'វេទិកា', + 'free_text_field' => 'វាល​តំបន់​អត្ថបទ (វាល​អត្ថបទ​ឥត​គិត​ថ្លៃ)', + 'date_field' => 'វាល​កាលបរិច្ឆេទ', + 'radio_field' => 'វាល​​ប៊ូតុង​មូល', + 'checkbox_field' => 'វាល​​ប្រអប់​ធីក', + 'dropdown_field' => 'វាល​​ទម្លាក់', + 'from' => 'ពី', + 'from_date' => 'ពី', + 'geonames_timeout' => 'កំហុស​អស់​ពេល​ Geonames', + 'get_help' => 'ទទួល​ជំនួយ', + 'get_more_themes' => 'ទទួល​បាន​រូបរាង​បន្ថែម', + 'get_more_plugins' => 'ទទួល​បាន​កម្មវិធី​ជំនួយ​បន្ថែម', + 'header_actions' => 'សកម្មភាព', + 'header_add_edit' => 'បន្ថែម​/​កែសម្រួល', + 'header_email' => 'អ៊ីមែល', + 'header_manage_users' => 'គ្រប់គ្រង​អ្នក​ប្រើ', + 'header_role' => 'មុខងារ', + 'header_user' => 'អ្នក​ប្រើ', + 'help' => 'ជំនួយ', + 'hourly' => 'រាល់​ម៉ោង', + 'incident_feed' => 'មតិ​ព័ត៌មាន​ហេតុ​ការណ៍​សម្រាប់', + 'installer_info' => 'ថត​កម្មវិធី​ដំឡើង​នៅ​តែ​​មាន។ លុប​ថត​កម្មវិធី​ដំឡើង។ វា​ងាយ​ប៉ះពាល់​ដល់​សុវត្ថិភាព​យ៉ាង​ខ្លាំង។', + 'instance' => 'ឧទាហរណ៍', + 'instances' => 'ឧទាហរណ៍', + 'instance_details' => 'សេចក្ដី​លម្អិត​សម្រាប់​ឧទាហរណ៍', + 'invalid_parameter' => 'ប៉ារ៉ាម៉ែត្រ​មិន​ត្រឹមត្រូវ', + 'ip_address' => 'អាសយដ្ឋាន IP', + 'is_date' => 'តើ​នេះ​ជា​វាល​កាល​បរិច្ឆេទ​ឬ?', + 'ispublic_visible' => 'អ្នក​ណា​អាច​​​មើល​​ចម្លើយ​នេះ', + 'ispublic_submit' => 'អ្នក​ណា​ដែល​អាច​ដាក់​ស្នើ​ចម្លើយ​', + 'keyword' => 'ពាក្យ​គន្លឹះ', + 'keywords' => 'ពាក្យ​គន្លឹះ', + 'label_email' => 'អាសយដ្ឋាន​អ៊ីមែល៖', + 'label_full_name' => 'ឈ្មោះ​ពេញ៖', + 'label_password' => 'លេខសម្ងាត់', + 'label_role' => 'មុខងារ', + 'label_username' => 'ឈ្មោះ​អ្នក​ប្រើ៖', + 'layers' => 'ស្រទាប់', + 'login_role' => 'អ្នក​សម្របសម្រួល', + 'logout' => 'ចេញ', + 'logs' => 'កំណត់ហេតុ', + 'manage' => 'គ្រប់គ្រង', + 'manage_roles' => 'គ្រប់គ្រង​សិទ្ធ និង​តួនាទី', + 'manage_users' => 'មើល​អ្នក​ប្រើ', + 'manage_users_edit' => 'បន្ថែម/កែសម្រួល​អ្នក​ប្រើ', + 'manage_public_listing' => 'គ្រប់គ្រង​ការ​រាយ​សាធារណៈ​​របស់​អ្នក', + 'mark_as' => 'សម្គាល់​ជា', + 'marked_as_not_spam' => 'បាន​សម្គាល់​មិន​មាន​ជា​​សារ​ឥត​បាន​ការ', + 'marked_as_spam' => 'បាន​សម្គាល់​ជា​​​សារ​ឥត​បាន​ការ', + 'match_no_documents' => 'មិន​បាន​ផ្គូផ្គង​ឯកសារ​មួយ​ចំនួន', + 'message' => 'សារ', + 'messages' => 'សារ', + 'messages_laconica' => 'សារ​របស់ Laconica', + 'messages_twitter' => 'សារ​​របស់ Twitter', + 'message_sent' => 'សារ​របស់​អ្នក​បាន​ផ្ញើ!', + 'mhi' => 'MHI', + 'minute' => 'នាទី', + 'minutes' => 'នាទី', + 'missing_parameter' => 'បាត់​ប៉ារ៉ាម៉ែត្រ', + 'moderator' => 'អ្នក​សម្របសម្រួល', + 'modified' => 'បាន​កែប្រែ', + 'modify_timezone' => 'កែប្រែ​ការ​កំណត់​តំបន់​ពេលវេលា', + 'move_down_action' => 'ផ្លាស់ទី​ចុះ​ក្រោម', + 'move_up_action' => 'ផ្លាស់​ទី​ឡើង​លើ', + 'multiple_hosted_instances' => 'ធាតុ​ដែល​បាន​បង្ហោះ​​ច្រើន', + 'my_alerts' => 'ការ​​ជូនដំណឹង​របស់​ខ្ញុំ', + 'my_checkins' => 'ការ​ចូល​របស់​ខ្ញុំ', + 'my_profile' => 'ប្រវត្តិ​​រូប​ខ្ញុំ', + 'my_reports' => 'របាយការណ៍​របស់​ខ្ញុំ', + 'my_votes' => 'Votes Cast', + 'my_votes_up' => 'វិជ្ជមាន', + 'my_votes_down' => 'អវិជ្ជមាន', + 'name' => 'ឈ្មោះ', + 'new_alert' => 'បង្កើត​ការ​ជូនដំណឹង​ថ្មី', + 'new_private' => 'បង្កើត​សារ​ថ្មី', + 'new_password' => 'ពាក្យសម្ងាត់​ថ្មី', + 'no' => 'ទេ', + 'none_category_explanation' => 'វា​ជា​ប្រភេទ​ពិសេស​ដែល​នឹង​មិន​បង្ហាញ​នៅ​លើ​សំណុំ​បែបបទ​ការ​ដាក់​ស្នើ​របាយការណ៍​សម្រាប់​​របាយការណ៍​ដាក់​ស្នើ​របស់​អ្នក​ប្រើ។ វា​ត្រូវ​បាន​​ប្រើ​នៅ​ក្នុង​ការ​ភ្ជាប់​ជាមួយ​លក្ខណ​ពិសេស "របាយការណ៍​ដែល​មិន​បាន​ចាត់​តាម​ប្រភេទ​ជា​ការ​លុប​ចោល​ប្រភេទ​លទ្ធផល។" ។', + 'notification' => 'ការ​ជូន​ដំណឹង', + 'not_case_sensitive' => 'វា​មិន​ប្រកាន់​តួ​អក្សរ​តូច​ធំ។', + 'not_found' => 'រក​មិន​ឃើញ', + 'no_data' => 'គ្មាន​ទិន្នន័យ។ គ្មាន​លទ្ធផល​សម្រាប់​បង្ហាញ​ឡើយ។', + 'no_error' => 'គ្មាន​កំហុស', + 'no_result_display_msg' => 'គ្មាន​លទ្ធផល​សម្រាប់​បង្ហាញ​ឡើយ!', + 'of' => 'នៃ', + 'on_specific_count' => 'នៃ​ចំនួន​ជាក់លាក់', + 'openids' => 'OpenID\'s', + 'page' => 'ទំព័រ', + 'pages' => 'ទំព័រ', + 'page_not_found' => 'រក​មិន​ឃើញ​ទំព័រ', + 'page_not_found_message_with_contact' => 'សូមទោស ទំព័រ​ដែល​អ្នក​កំពុង​ព្យាយាម​មើល​មិន​មាន​នៅ​ទី​នេះ​ទេ។

តើ​អ្នក​អនុវត្ត​តំណ​ពី​កន្លែង​ផ្សេង​​នៅ​លើ​តំបន់​បណ្ដាញ​របស់​ពួក​យើង​ហើយ​ឬ​នៅ?
ប្រសិនបើ​អ្នក​បាន​ទៅ​ដល់​ទំព័រ​នេះ​ពី​ផ្នែក​ផ្សេង​ទៀត​នៃ​តំបន់​បណ្ដាញ​របស់​យើង សូម ទាក់ទង​​យើង ដូច្នេះ​យើង​អាច​​កែ​កំហុស​របស់​​យើង​បាន។

តើ​អ្នក​បាន​អនុវត្ត​តំណ​ពី​តំបន់​បណ្ដាញ​ផ្សេងទៀត​ហើយ​ឬ​នៅ?
តំណ​ពី​តំបន់​បណ្ដាញ​ផ្សេង​​ទៀត​អាច​ត្រូវ​បាន​​ធ្វើ​បច្ចុប្បន្នភាព ឬ​ប្រកប​ខុស។ Tell us អ្នក​មក​ពី​ណា ហើយ​យើង​អាច​ព្យាយាម​យើង​អាច​សាកល្បង​ទាក់ទង​តំបន់បណ្ដាញ​ផ្សេង​ទៀត​ ដើម្បី​កែ​កំហុស។

តើ​អ្នក​វាយ URL ឬ?
អ្នក​អាច​មាន​អាសយដ្ឋាន (URL) មិន​ត្រឹមត្រូវ។ ពិនិត្យមើល​ដើម្បី​ប្រាកដ​ថា​អ្នក​មាន​សិទ្ធិ​កែ​អក្ខរាវិរុទ្ធ សរសេរ​ជា​អក្សរពុម្ព ។ល។

', + 'page_not_found_message' => 'សូមទោស ទំព័រ​ដែល​អ្នក​ព្យាយាម​មើល​មិន​មាន​នៅ​ទី​នេះ​ឡើយ។', + 'parameters_used' => 'ប៉ារ៉ាម៉ែត្រ​ដែល​បាន​ប្រើ', + 'password' => 'ពាក្យ​សម្ងាត់', + 'password_reset' => 'កំណត់​ពាក្យ​សម្ងាត់​ឡើង​វិញ', + 'password_reset_message_line_1' => 'ជា​ទី​ស្រលាញ់', + 'password_reset_message_line_2' => 'យើង​បាន​ទទួល​សំណើ​ដើម្បី​កំណត់​ពាក្យ​សម្ងាត់​ឡើង​វិញ​សម្រាប់', + 'password_reset_message_line_3' => 'ផ្លាស់ប្ដូរ​ពាក្យ​សម្ងាត់​របស់​អ្នក សូម​ចុច​លើ​តំណ​​ខាងក្រោម (ឬ​ចម្លង ហើយ​បិទ​ភ្ជាប់​វា​ទៅ​កាន់​កម្មវិធី​រុករក​របស់​អ្នក) ។', + 'password_reset_message_line_4' => 'ដូច​ដែល​អ្នក​បាន​ស្នើ ពាក្យ​សម្ងាត់​របស់​​អ្នក​ត្រូវ​បាន​កំណត់​ឡើង​វិញ​ឥឡូវ​នេះ។ សេចក្ដី​លម្អិត​ថ្មី​របស់​អ្នក​ដូច​​ខាងក្រោម', + 'password_reset_subject' => 'កំណត់​ពាក្យ​សម្ងាត់​សម្រាប់ Ushahidi ឡើង​វិញ', + 'phone' => 'ទូរស័ព្ទ', + 'please_select' => 'សូម​ជ្រើស', + 'pm' => 'ល្ងាច', + 'post_method_not_used' => 'ទិន្នន័យ​មិន​ត្រូវ​បាន​ផ្ញើ​តាម​វិធី​សាស្ត្រ​ប្រកាស​ឡើយ', + 'preview' => 'មើល​ជា​មុន', + 'private_message' => 'សារ', + 'private_messages' => 'សារ​ឯកជន', + 'private_sent' => 'ផ្ញើ​សារ​​ឯកជន', + 'private_subject' => 'ប្រធាន​បទ', + 'private_to' => 'ជូន​ចំពោះ', + 'public_listing' => 'ការ​រាយ​ជា​សាធារណៈ', + 'qualifiers' => 'អ្នក​សម្របសម្រួល', + 'read' => 'អាន', + 'relevance' => 'ភាព​ទាក់ទង', + 'report_title' => 'ចំណង​ជើង​របាយការណ៍', + 'report_date' => 'កាលបរិច្ឆេទ​របាយការណ៍', + 'reporters' => '​អ្នក​​ធ្វើ​​របាយការណ៍', + 'reporter_levels' => 'កម្រិត​អ្នក​ធ្វើ​របាយការណ៍', + 'reports' => 'របាយការណ៍', + 'reputation' => 'ពិន្ទុ​កេរ្តិ៍ឈ្មោះ', + 'required' => 'បាន​ទាមទារ', + 'reset' => 'កំណត់​ឡើង​វិញ', + 'response' => 'ចម្លើយ​តប', + 'results' => 'លទ្ធផល', + 'revoke' => 'ដកហូត', + 'riverid_exists_admin' => 'អ៊ីមែល​នេះ​មាន​គណនី​ដែល​បាន​គ្រប់គ្រង​តាម CrowdmapID រួច​ហើយ។ អ្នក​ប្រើ​នឹង​ត្រូវ​ការ​ដើម្បី​ប្រើ​ពាក្យសម្ងាត់ Crowdmap ដែល​មាន​ស្រាប់​ដើម្បី​ចូល។', + 'save_settings' => 'រក្សាទុក​ការ​កំណត់', + 'search' => 'ស្វែងរក', + 'search_reports' => 'ស្វែងរក​របាយការណ៍', + 'searching_for' => 'កំពុង​ស្វែងរក​', + 'security_info_encryption_key' => 'សោ​ការ​អ៊ិនគ្រីប​នៅ​តែ​កំណត់​តម្លៃ​លំនាំដើម។ វា​គ្មាន​សុវត្ថិភាព ត្រូវ​តែ​ផ្លាស់ប្ដូរ។', + 'security_info_https' => 'តំបន់​បណ្ដាញ​នេះ​កំពុង​ត្រូវ​បាន​រក្សាទុក​នៅ​លើ HTTP ។ វា​គួរតែ​កំណត់​ទៅ HTTPS សម្រាប់​បង្កើន​សុវត្ថិភាព។', + 'security_info_instructions' => 'សេចក្ដី​ណែនាំ​មាន​នៅ​លើ​វីគី៖', + 'select_download_format' => 'ជ្រើស​ទ្រង់ទ្រាយ​ទាញ​យក​របាយការណ៍​ដែល​អ្នក​ចង់​បាន៖', + 'select_field_type' => '---ជ្រើស​ប្រភេទ​វាល ---', + 'select_item' => 'សូម​ជ្រើស​ធាតុ​មួយ', + 'select_trigger_before_response' => 'អ្នក​ត្រូវ​តែ​ជ្រើស​គន្លឹះ មុន​ពេល​អ្នក​អាច​ជ្រើស​ចម្លើយ​តប។', + 'select_trigger_before_qualifiers' => 'អ្នក​ត្រូវ​តែ​ជ្រើស​ធ្វើ​ឲ្យ​សកម្ម មុន​ពេល​​អ្នក​អាច​កំណត់​អ្នក​សម្របសម្រួល។', + 'sender' => 'អ្នក​ផ្ញើ', + 'send_to' => 'ផ្ញើ​ទៅ', + 'sent_from_website' => 'សារ​នេះ​ត្រូវ​បាន​ផ្ញើ​ពី​តំបន់​បណ្ដាញ​របស់​​អ្នក​នៅ', + 'server_time' => 'ពេលវេលា​​របស់​ម៉ាស៊ីន​មេ', + 'settings' => 'ការ​កំណត់', + 'showing_page' => 'បង្ហាញ​ទំព័រ', + 'showing_results' => 'បង្ហាញ​លទ្ធផល', + 'shown' => 'បាន​បង្ហាញ', + 'special_category' => 'ប្រភេទ​ពិសេស', + 'special_category_explanation' => 'វា​ជា​ប្រភេទ​ពិសេស​ដែល​នឹង​មិន​បង្ហាញ​នៅ​លើ​សំណុំ​បែបបទ​ការ​ដាក់​ស្នើ​របាយការណ៍​សម្រាប់​​របាយការណ៍​ដាក់​ស្នើ​របស់​អ្នក​ប្រើ។ វា​ត្រូវ​បាន​​ប្រើ​នៅ​ក្នុង​ការ​ភ្ជាប់​ជាមួយ​លក្ខណ​ពិសេស "របាយការណ៍​ដែល​ជឿ​ទុក​ចិត្ត" ។', + 'specific_area' => 'ផ្ទៃ​ជាក់​លាក់​​​', + 'state' => 'ស្ថិតិ', + 'statistics' => 'ស្ថិតិ', + 'stats' => 'ស្ថិតិ', + 'stats_collection_error' => 'បាន​បរាជ័យ​ការ​សម្រាំង​ស្ថិតិ​! សូម​ព្យាយាម​​ម្ដងទៀត​ពេល​ក្រោយ។', + 'stats_collection_error_short' => 'បាន​បរាជ័យ​ការ​សម្រាំង​ស្ថិតិ!', + 'specific_days' => 'ថ្ងៃ​ជាក់លាក់', + 'subject' => 'ប្រធាន​បទ', + 'superadmin_role' => 'ជា​អ្នក​គ្រប់គ្រង​ជាន់​ខ្ពស់', + 'task_performed' => 'ភារកិច្ច​ដែល​បាន​អនុវត្ត', + 'text_field' => 'វាល​កាលបរិច្ឆេទ', + 'theme_name' => 'ឈ្មោះ', + 'title' => 'គ្រប់គ្រង​អ្នកប្រើ', + 'timeout' => 'កំហុស​អស់​ពេល', + 'to' => 'ជូន​ចំពោះ', + 'total_records' => 'របាយការណ៍​សរុប', + 'to_date' => 'ជួន​ចំពោះ', + 'translate_reports' => 'បកប្រែ​របាយការណ៍', + 'trigger' => 'ធ្វើ​ឲ្យ​សកម្ម', + 'triggering_user' => 'ធ្វើ​ឲ្យ​អ្នក​ប្រើ​សកម្ម', + 'triggers' => 'ការ​ធ្វើ​ឲ្យ​សកម្ម', + 'unapproved' => 'មិន​បាន​អនុម័ត', + 'unknown' => 'មិន​ស្គាល់', + 'unknown_failure' => 'ការ​បរាជ័យ​ដែល​មិន​ស្គាល់', + 'unread' => 'មិន​បាន​អាន', + 'unsubscribe_message' => 'អ្នក​នឹង​មិន​ទទួល​បាន​ការ​ជូនដំណឹង​ទៀត​ទេ', + 'update_link' => 'ចុច​នៅ​ទី​នេះ​ដើម្បី​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង​ឥឡូវ​នេះ', + 'upgrade_ushahidi' => 'ធ្វើ​បច្ចុប្បន្ន​ភាព Ushahidi', + 'upgrade_ushahidi_status' => 'ធ្វើ​បច្ចុប្បន្នភាព​ស្ថានភាព Ushahidi', + 'upload_reports' => 'ផ្ទុក​របាយការណ៍', + 'user' => 'អ្នក​ប្រើ', + 'users' => 'អ្នក​ប្រើ', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'បាន​ផ្ទៀងផ្ទាត់/មិន​​បាន​ផ្ទៀងផ្ទាត់', + 'verify_unverify' => 'ផ្ទៀងផ្ទាត់/មិន​បាន​​ផ្ទៀងផ្ទាត់', + 'version' => 'កំណែ', + 'version_available' => 'មាន​សម្រាប់​ធ្វើ​បច្ចុប្បន្ន។', + 'video_encoding' => 'ការ​អ៊ិនកូដ​វីដេអូ', + 'view_private' => 'សារ​ឯកជន', + 'view_site' => 'មើល​តំបន់​បណ្ដាញ', + 'view_report' => 'មើល​របាយការណ៍', + 'welcome' => 'ស្វាគមន៍', + 'wiki' => 'វីគី', + 'xml' => 'XML', + 'yes' => 'បាទ/ចាស​', + 'your_search_for' => 'ការ​ស្វែងរក​របស់​អ្នក', + 'delete_all_instructions' => 'ពិនិត្យមើល​ប៊ូតុង​ខាង​ក្រោម​នឹង​លុប​របាយការណ៍​ទាំងអស់​នៅ​លើ​មូលដ្ឋាន​ទិន្នន័យ។ អ្នក​គូរ​តែ​ប្រើការ​ជូន​ដំណឹង​នេះ​ជា​ប្រតិបត្តិការ​ដែល​មិន​ត្រូវ​ធ្វើ​វិញ។', + 'delete_all_backup' => 'យើង​ផ្ដល់​អនុសាសន៍​ឲ្យ​អ្នក​ថយក្រោយ​ទៅ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​មុន​ពេល​បន្ត', + 'delete_all_button' => 'ខ្ញុំ​ប្រាកដ​ជា​ចង់​លុប​របាយការណ៍​ទាំងអស់ %s ពី​មូលដ្ឋាន​ទិន្នន័យ។', + 'delete_all_confirm' => 'តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​របាយការណ៍​​ទាំងអស់​ឬ?', + 'delete_all_no_reports' => 'គ្មាន​របាយការណ៍​ត្រូវ​បាន​លុប​ទេ។', + 'user_no_logins' => 'ចំនួន​ចូល', + 'user_last_login' => 'ការ​ចូល​ចុង​ក្រោយ', + 'user_confirmed_account' => 'បាន​បញ្ជាក់​ពាក្យសម្ងាត់?', +); diff --git a/application/i18n/km/ui_main.php b/application/i18n/km/ui_main.php new file mode 100644 index 0000000000..928245dccc --- /dev/null +++ b/application/i18n/km/ui_main.php @@ -0,0 +1,621 @@ + 'អំពី', + 'access' => 'ចូល​ដំណើរការ', + 'access_limits' => 'ដែន​កំណត់​ការ​ចូល​ដំណើរការ', + 'account_name' => 'ឈ្មោះ​គណនី', + 'actions' => 'សកម្មភាព', + 'action_confirm' => 'សកម្មភាព​នេះ​មិន​អាច​មិនធ្វើវិញ​បាន​ទេ ។ តើ​អ្នក​ពិតជា​ចង់​បន្ត​ទៀត​មែន​ឬ ?', + 'activate' => 'ធ្វើឲ្យ​សកម្ម', + 'active' => 'សកម្ម', + 'add' => 'បន្ថែម', + 'added_by' => 'បាន​បន្ថែម​ដោយ', + 'additional_data' => 'ទិន្នន័យ​បន្ថែម', + 'additional_reports' => 'របាយការណ៍​បន្ថែម', + 'add_edit' => 'បន្ថែម/កែសម្រួល', + 'add_field' => 'បន្ថែម​វាល', + 'add_language' => 'បន្ថែម​ភាសា', + 'add_new' => 'បន្ថែម​ថ្មី', + 'add_new_category' => 'បន្ថែម​ប្រភេទ​ថ្មី', + 'add_translation' => 'បន្ថែម​ការ​បកប្រែ', + 'admin' => 'ការ​គ្រប់គ្រង', + 'alerts' => 'យក​ការ​ជូនដំណឹង​', + 'alerts_alert_me' => 'ជូនដំណឹង​ខ្ញុំ​ប្រសិនបើ​របាយការណ៍​ត្រូវ​បាន​រៀបចំ ឬ​​កំពុង​រៀបចំ៖', + 'alerts_btn_send' => 'រក្សាទុក​ការ​ជូនដំណឹង​របស់​ខ្ញុំ', + 'alerts_email' => 'អាសយដ្ឋាន​អ៊ីមែល៖', + 'alerts_enter_email' => 'បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល', + 'alerts_enter_mobile' => 'បញ្ចូល​លេខ​ទូរស័ព្ទ​ជាមួយ​លេខ​កូដ​ប្រទេស', + 'alerts_get' => 'យក​ការ​ជូន​ដំណឹង​', + 'alert_has_been' => 'ការ​ជូនដំណឹង​បាន', + 'alerts_mobile_phone' => 'ទូរស័ព្ទ​ចល័ត៖', + 'alerts_place_spot' => 'ឬ​ដាក់​ចំណុច​នៅ​លើ​ផែនទី​ខាងក្រោម បន្ទាប់មក​យើង​នឹង​ជូនដំណឹង​អ្នក​នៅ​ពេល​ដែល​របាយការណ៍​ត្រូវ​បាន​ដាក់​ស្នើ​​ក្នុង​ចម្ងាយ២០​គីឡូម៉ែត្រ។', + 'alerts_place_spot2' => 'ប្រសិនបើ​អ្នក​មិន​អាច​រក​ឃើញ​ទីតាំង​របស់​អ្នក​ទេ សូម​ចុច​លើ​ផែនទី​ដើម្បី​ដៅ​ចំណុច​ត្រឹមត្រូវ។', + 'alerts_rss' => 'មតិ​ព័ត៌មាន RSS (ចម្លង URL ខាងក្រោម)', + 'alerts_select_city' => 'ជ្រើស​ទីក្រុង', + 'alerts_step1_select_city' => 'ជំហាន​ទី១៖ ជ្រើស​ទីក្រុង ឬ​ទីតាំង​របស់​អ្នក៖', + 'alerts_step2_send_alerts' => 'ជំហាន​​ទី២៖ ផ្ញើ​ការ​ជូន​ដំណឹង​ឲ្យ​ខ្ញុំ៖', + 'alerts_step3_select_catgories' => 'ជំហាន​ទី៣ (ជា​ជម្រើស)៖ ជ្រើស​ប្រភេទ', + 'alert_confirm_previous' => 'អះអាង​សំណើ​ការ​ជូនដំណឹង​មុន', + 'alert_saved' => 'បាន​រក្សាទុក​ការ​ជូនដំណឹង​របស់​អ្នក!', + 'all' => 'ទាំង​អស់​', + 'allowed' => 'បាន​អនុញ្ញាត', + 'allowed_tags' => 'បាន​អនុញ្ញាត​ស្លាក HTML ៖ "%s"។', + 'allowed_iframes' => 'Iframes ត្រូវ​បាន​អនុញ្ញាត​​ពី៖ %s ។', + 'all_categories' => 'ប្រភេទ​ទាំងអស់', + 'all_time' => 'គ្រប់​ពេល', + 'and' => 'និង', + 'api' => 'API', + 'approve' => 'អនុម័ត', + 'approved' => 'បាន​អនុម័ត', + 'approved_reports' => 'របាយការណ៍​ដែល​បាន​អនុម័ត', + 'approve_this_report' => 'បាន​អនុម័ត​របាយការណ៍​នេះ', + 'approximate' => 'ប្រហែល', + 'archive' => 'ប័ណ្ណសារ', + 'archived' => 'បាន​ទុក​ក្នុង​ប័ណ្ណសារ', + 'ascending' => 'ឡើង', + 'at' => 'នៅ', + 'author' => 'អ្នកនិពន្ធ', + 'auto_checkin' => 'ពិនិត្យ​ចូល​ស្វ័យប្រវត្តិ', + 'avg_reports_per_day' => 'របាយការណ៍​ជាមធ្យម​ក្នុង​មួយ​ថ្ងៃ', + 'awaiting_approval' => 'រង់ចាំ​ការ​អនុម័ត', + 'awaiting_verification' => 'រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់', + 'badge' => 'សញ្ញាសម្គាល់', + 'badges' => 'សញ្ញាសម្គាល់', + 'badge_image' => 'រូបភាព​សញ្ញាសម្គាល់', + 'badge_image_upload_your_own' => 'ឬ​អ្នក​អាច​ផ្ទុក​រូបភាព​សញ្ញាសម្គាល់​របស់​អ្នក​ជំនួស​ក៏​បាន។', + 'badge_pack' => 'កញ្ចប់​សញ្ញាសម្គាល់', + 'badge_select' => 'ជ្រើស​សញ្ញាសម្គាល់', + 'blog' => 'កំណត់ហេតុបណ្ដាញ', + 'browse_profiles' => 'រុករក​ទម្រង់', + 'cancel' => 'បោះ​បង់​', + 'categories' => 'ប្រភេទ', + 'category' => 'ប្រភេទ', + 'category_filter' => 'តម្រង​ប្រភេទ', + 'category_has_been' => 'ប្រភេទ​បាន', + 'category_name' => 'ឈ្មោះ​ប្រភេទ', + 'change_date_range' => 'ប្ដូរ​ជួរ​កាលបរិច្ឆេទ', + 'change_password' => 'ប្ដូរ​ពាក្យសម្ងាត់', + 'change_picture' => 'ប្ដូរ​រូបភាព​របស់​ខ្ញុំ', + 'choose' => 'ជ្រើសរើស', + 'choose_data_points' => 'ជ្រើស​ចំណុច​ទិន្នន័យ​ដើម្បី​ទាញ​យក', + 'choose_date_range' => 'ឬ​ជ្រើស​ជួរ​ពេលវេលា​ផ្ទាល់ខ្លួន​របស់​អ្នក', + 'choose_field_type' => 'ជ្រើស​ប្រភេទ​វាល', + 'cleanurl' => 'URLs ត្រឹមត្រូវ', + 'clear' => 'សម្អាត', + 'clear_map' => 'សម្អាត​ផែនទី​', + 'close' => 'បិទ', + 'clusters' => 'ក្រុម', + 'color' => 'ពណ៌', + 'comment' => 'មតិយោបល់', + 'comments' => 'មតិយោបល់', + 'comment_details' => 'មតិយោបល់​លម្អិត', + 'configuration_saved' => 'បាន​រក្សាទុក​ការ​កំណត់​របស់​អ្នក', + 'configure' => 'កំណត់​រចនាសម្ព័ន្ធ', + 'confirm_email_successful' => 'អ្នក​បាន​អះអាង​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ដោយ​ជោគជ័យ! សូម​ចូល​នៅ​ខាងក្រោម។', + 'confirm_email_successful_and_approval' => 'អ្នក​បាន​បញ្ជាក់​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ដោយ​ជោគជ័យ! លុះត្រាតែ​អ្នក​គ្រប់គ្រង​អនុញ្ញាត​គណនី​របស់​អ្នក ទើប​អ្នក​ចូល​បាន', + 'confirm_email_failed' => 'បាន​បរាជ័យ​ក្នុង​ការ​អះអាង​អ៊ីមែល! អ្នក​អាច​ស្នើសុំ​អ៊ីមែល​អះអាង​ថ្មី​នៅ​ខាងក្រោម។', + 'contact' => 'ទាក់ទង​យើង', + 'contact_code' => 'លេខ​កូដ​សុវត្ថិភាព', + 'contact_email' => 'អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក', + 'contact_message' => 'សារ', + 'contact_message_has_send' => 'សារ​របស់​អ្នក​ត្រូវ​បាន​ផ្ញើ!', + 'contact_name' => 'ឈ្មោះ​របស់​អ្នក', + 'contact_phone' => 'លេខ​ទូរស័ព្ទ​របស់​អ្នក', + 'contact_send' => 'ផ្ញើ​សារ', + 'contact_subject' => 'ប្រធាន​បទ​សារ', + 'copyright' => 'រក្សាសិទ្ធិ', + 'create' => 'បង្កើត', + 'create_edit' => 'បង្កើត/កែសម្រួល', + 'create_new' => 'បង្កើត​ថ្មី', + 'create_new_password' => 'បង្កើត​ពាក្យសម្ងាត់​ថ្មី', + 'create_report' => 'បង្កើត​របាយការណ៍', + 'credibility' => 'ភាព​គួរ​ជឿ​បាន', + 'current_password' => 'ពាក្យសម្ងាត់​បច្ចុប្បន្ន', + 'custom_fields' => 'វាល​ផ្ទាល់ខ្លួន', + 'data' => 'ព័ត៌មាន', + 'date' => 'កាលបរិច្ឆេទ​', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => 'កាល​បរិច្ឆេទ និង​ពេល​វេលា', + 'day' => 'ថ្ងៃ', + 'deactivate' => 'ធ្វើឲ្យ​អសកម្ម', + 'default_location_name' => 'ណៃរ៉ូប៊ី, កេនយ៉ា', + 'delete' => 'លុប', + 'deleted' => 'បាន​លុប', + 'deletes' => 'លុប', + 'delete_disabled' => 'បាន​បិទ​ការ​លុប', + 'delete_last' => 'លុប​ចុងក្រោយ​​', + 'delete_report' => 'លុប​របាយការណ៍​នេះ', + 'delete_selected' => 'លុប​អ្វី​ដែល​បាន​ជ្រើស', + 'delete_spam' => 'លុប​សារ​ឥតបានការ', + 'demo' => 'ការ​បង្ហាញ​សាកល្បង', + 'description' => 'សេចក្ដី​ពណ៌នា', + 'descending' => 'ចុះ', + 'detailed_location_example' => 'ឧទាហរណ៍៖​ កាច់ជ្រុង City Market, 5th Street & 4th Avenue, Johannesburg', + 'details' => 'សេចក្ដី​លម្អិត', + 'direct_report' => 'របាយការណ៍​ផ្ទាល់', + 'disabled' => 'បាន​បិទ', + 'disapprove' => 'មិន​អនុញ្ញាត', + 'download_reports' => 'ទាញ​យក​របាយការណ៍', + 'download' => 'ទាញ​យក', + 'edit' => 'កែសម្រួល', + 'edit_form_fields' => 'កែសម្រួល​វាល​ទម្រង់​បែបបទ', + 'edit_report' => 'កែសម្រួល​របាយការណ៍', + 'email' => 'អ៊ីមែល', + 'email_address' => 'អាសយដ្ឋាន​អ៊ីមែល', + 'email_configuration' => 'ការ​កំណត់​កម្មវិធី​អ៊ីមែល', + 'email_server_host' => 'ម៉ាស៊ីន​កម្មវិធី​អ៊ីមែល', + 'email_server_password' => 'ពាក្យសម្ងាត់​កម្មវិធី​អ៊ីមែល', + 'email_server_port' => 'ច្រក​កម្មវិធី​អ៊ីមែល', + 'email_server_ssl_support' => 'គាំទ្រ​កម្មវិធី​អ៊ីមែល SSL', + 'email_server_type' => 'ប្រភេទ​កម្មវិធី​អ៊ីមែល', + 'email_server_username' => 'ឈ្មោះ​អ្នកប្រើ​កម្មវិធី​អ៊ីមែល', + 'email_settings_comment_0' => 'ដូច្នេះ​ការ​កំណត់​របស់​អ្នក​គឺ​មាន​ទំនាក់ទំនង​ជាមួយ​អាសយដ្ឋាន​អ៊ីមែល​នេះ', + 'email_settings_comment_00' => 'ដើម្បី​ទទួល​បាន​របាយការណ៍​តាម​អ៊ីមែល សូម​បញ្ចូល​ការ​កំណត់​គណនី​អ៊ីមែល​របស់​អ្នក​​នៅ​ខាងក្រោម​។ សូម​ចងចាំ​ថា​អ៊ីមែល​ទាំងនោះ​នឹង​បាន​ទទួល​នៅ​ក្នុង​អាសយដ្ឋាន​របស់​អ្នក', + 'email_settings_comment_1' => 'ម៉ាស៊ីន​មេ​មួយ​ចំនួន​ត្រូវការ​អាសយដ្ឋាន​អ៊ីមែល​ពេញលេញ', + 'email_settings_comment_2' => 'ពាក្យសម្ងាត់​គណនី​អ៊ីមែល​របស់​អ្នក', + 'email_settings_comment_3' => 'ច្រក​ទូទៅ៖ 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'ឧទាហរណ៍៖ mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'ឧទាហរណ៍៖ pop3, imap', + 'email_settings_comment_6' => 'បិទ ឬ​បើក​ការ​តភ្ជាប់ SSL', + 'empty' => '---ទទេ---', + 'end_point' => 'ជូន​ចំពោះ', + 'error' => 'កំហុស!', + 'example' => 'ឧទាហរណ៍', + 'example_country' => 'កេនយ៉ា', + 'external_apps' => 'កម្មវិធី​ខាងក្រៅ', + 'external_video_link' => 'តំណ​វីដេអូ​ខាងក្រៅ​​', + 'facebook' => 'Facebook', + 'feed' => 'មតិ​ព័ត៌មាន', + 'feedback' => 'ផ្ដល់​មតិ​ត្រឡប់', + 'feedback_reports' => 'សូម​ផ្ដល់មតិត្រឡប់​ឲ្យ​យើង​អំពី​បទពិសោធន៍​របស់​អ្នក​ ដោយ​ផ្ញើ​អ៊ីមែល​ទៅ', + 'feeds' => 'មតិ​ព័ត៌មាន', + 'feed_has_been' => 'មតិ​ព័ត៌មាន​បាន', + 'feed_items' => 'ធាតុ​មតិ​ព័ត៌មាន', + 'feed_name' => 'ឈ្មោះ​មតិ​ព័ត៌មាន', + 'feed_url' => 'URL មតិ​ព័ត៌មាន', + 'field_unused' => 'វាល​ដែល​មិន​ប្រើ', + 'file' => 'ឯកសារ', + 'file_over_max_allowed' => 'ឯកសារ​របស់​អ្នក​លើស​ពី​ទំហំ​អនុញ្ញាត​អតិបរមា​។', + 'filters' => 'តម្រង', + 'filter_reports' => 'ត្រង​របាយការណ៍', + 'filter_reports_by' => 'ត្រង​របាយការណ៍​តាម', + 'filter_reports_contain' => 'ត្រង​របាយការណ៍​ដែល​មាន', + 'find' => 'រក', + 'find_location' => 'រក​ទីតាំង', + 'first_name' => 'នាម​ខ្លួន', + 'force_run_scheduler' => 'បង្ខំ​ដំណើរការ​កម្មវិធី​កាលវិភាគ', + 'forgot_password' => 'ភ្លេច​ពាក្យសម្ងាត់​របស់​អ្នក​ឬ?', + 'form' => 'ទម្រង់​បែបបទ', + 'forms' => 'ទម្រង់​បែបបទ', + 'form_description' => 'សេចក្ដី​ពណ៌នា​ទម្រង់​បែបបទ', + 'form_edit' => 'កែសម្រួល​ទម្រង់​បែបបទ​នេះ', + 'form_has_been' => 'ទម្រង់​បែបបទ​បាន', + 'form_title' => 'ចំណងជើង​ទម្រង់​បែបបទ', + 'from' => 'ពី', + 'full_name' => 'ឈ្មោះ​ពេញ', + 'geolocation_available' => 'មាន​ទីតាំង​ភូមិសាស្ត្រ', + 'geometry_color' => 'ពណ៌', + 'geometry_comments' => 'មតិ', + 'geometry_label' => 'ស្លាក', + 'geometry_strokewidth' => 'គូស​ទទឹង', + 'go' => 'ទៅ', + 'hashtag' => 'សញ្ញា #', + 'has_been' => 'បាន', + 'help' => 'វិធី​ជួយ', + 'hidden' => 'បាន​លាក់', + 'hide' => 'លាក់', + 'hide_this_message' => 'លាក់​សារ​នេះ', + 'home' => 'ដើម', + 'how_to_report' => 'វិធី​រាយការណ៍', + 'https' => 'HTTPS', + 'id' => 'លេខ​សម្គាល់', + 'identify_you' => 'ប្រើ​ដើម្បី​កំណត់​អត្តសញ្ញាណ​អ្នក​នៅ​លើ​តំបន់បណ្ដាញ​ទៅកាន់​អ្នកប្រើ​ផ្សេងទៀត។', + 'image' => 'រូបភាព', + 'images' => 'រូបភាព', + 'image_icon' => 'រូបភាព/រូបតំណាង', + 'inactive' => 'អសកម្ម', + 'inbox' => 'ប្រអប់​ទទួល', + 'incident' => 'ឧប្បត្តិហេតុ', + 'incidents_nearby' => 'ឧប្បត្តិហេតុ​នៅ​ជិតៗ', + 'incident_location' => 'ទីតាំង​ឧប្បត្តិហេតុ', + 'include' => 'រួមបញ្ចូល', + 'include_categories' => 'រួមបញ្ចូល​ប្រភេទ', + 'include_custom_fields' => 'រួមបញ្ចូល​វាល​ផ្ទាល់ខ្លួន', + 'include_description' => 'រួមបញ្ចូល​សេចក្ដី​ពណ៌នា', + 'include_detail' => 'រួមបញ្ចូល​សេចក្ដី​លម្អិត​ច្រើន​តាម​ដែល​អាច​ធ្វើ​បាន', + 'include_latitude' => 'រួមបញ្ចូល​រយៈទទឹង', + 'include_location_information' => 'រួមបញ្ចូល​ព័ត៌មាន​ទីតាំង', + 'include_longitude' => 'រួមបញ្ចូល​រយៈបណ្ដោយ', + 'include_personal_info' => 'រួមបញ្ចូល​ព័ត៌មាន​ផ្ទាល់ខ្លួន', + 'incoming_media' => 'មេឌៀ​ចូល', + 'information_evaluation' => 'ការ​វាយតម្លៃ​ព័ត៌មាន​​', + 'input_location' => 'បញ្ចូល​ទីតាំង​ជាក់លាក់', + 'insufficient_role' => 'គណនី​របស់​អ្នក​មិន​មាន​សិទ្ធិ​គ្រប់គ្រាន់​ក្នុង​ការ​ចូល​ទេ។ សូម​ទាក់ទង​អ្នក​គ្រប់គ្រង​របស់​អ្នក។', + 'in_response_to' => 'ការ​ឆ្លើយតប​ចំពោះ', + 'ip_address' => 'អាសយដ្ឋាន IP', + 'is_this_your_profile' => 'តើ​នេះ​ជា​ប្រវត្តិរូប​របស់​អ្នក​ឬ?', + 'item' => 'ធាតុ', + 'items' => 'ធាតុ', + 'item_details' => 'សេចក្ដី​លម្អិត​របស់​ធាតុ', + 'item_title' => 'ចំណងជើង​ធាតុ', + 'key' => 'កូនសោ', + 'keywords' => 'ពាក្យ​គន្លឹះ', + 'kml_kmz_file' => 'ឯកសារ KMZ/KML', + 'kml_kmz_upload' => 'ផ្ទុក​ឯកសារ KMZ/KML ឡើង', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'ភាសា', + 'last' => 'មុន', + 'last_month' => 'ខែមុន', + 'last_name' => 'នាម​ត្រកូល', + 'last_year' => 'ឆ្នាំមុន', + 'latitude' => 'រយៈទទឹង​', + 'layers' => 'ស្រទាប់', + 'layers_filter' => 'ស្រទាប់​ផ្សេង', + 'layer_has_been' => 'ស្រទាប់​បាន', + 'layer_name' => 'ឈ្មោះ​ស្រទាប់', + 'layer_url' => 'URL ស្រទាប់', + 'leave_a_comment' => 'ផ្ដល់​មតិយោបល់', + 'less_information' => 'បន្ថយ​ព័ត៌មាន', + 'level' => 'កម្រិត', + 'level_has_been' => 'កម្រិត​នេះ​បាន', + 'level_name' => 'ឈ្មោះ​កម្រិត', + 'limited' => 'បាន​កំណត់', + 'link' => 'តភ្ជាប់', + 'list' => 'បញ្ជី', + 'loading_reports' => 'កំពុង​ផ្ទុក​របាយការណ៍', + 'location' => 'ទីតាំង', + 'locations' => 'ទីតាំង​', + 'location_example' => 'ទីក្រុង រដ្ឋ និង/ឬ ប្រទេស', + 'login' => 'ចូល', + 'login_account_creation_successful' => 'បាន​បង្កើត​គណនី​ដោយ​ជោគជ័យ។​ ឥឡូវ​អ្នក​អាច​ចូល​បាន', + 'login_confirmation_sent' => 'បាន​ផ្ញើ​ការ​អះអាង​ទៅកាន់​អ៊ីមែល​របស់​អ្នក', + 'login_approval_required' => 'បាន​បង្កើត​គណនី។ គណនី​របស់​អ្នក​ត្រូវតែ​បាន​អនុញ្ញាត​ដោយ​អ្នក​គ្រប់គ្រង ទើប​អ្នក​អាច​ចូល​បាន។', + 'login_email_doesnt_exist' => 'មិន​មាន​អាសយដ្ឋាន​អ៊ីមែល​នេះ​ទេ។ សូម​សាកល្បង​អាសយដ្ឋាន​ផ្សេង ឬ​បង្កើត​គណនី​ថ្មី។', + 'login_select_openid' => 'សូម​ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​គណនី​របស់​អ្នក', + 'login_with' => 'ចូល​ជាមួយ', + 'login_userpass' => 'អ៊ីមែល និង​ពាក្យសម្ងាត់', + 'login_openid' => 'OpenID', + 'login_signup' => 'ចុះឈ្មោះ', + 'login_signup_click' => 'បង្កើត​គណនី', + 'login_signup_confirmation_message' => 'អរគុណ​សម្រាប់​ការ​ចុះឈ្មោះ​ជាមួយ %1$s ។ ដើម្បី​អះអាង​អ៊ីមែល​របស់​អ្នក សូម​ទៅកាន់ URL ដូច​ខាងក្រោម៖ %2$s', + 'login_signup_confirmation_subject' => 'អះអាង​ការ​ចុះឈ្មោះ', + 'login_signup_admin_approval_message' => 'មាន​អ្នកប្រើ​ថ្មី​បាន​ចុះឈ្មោះ​នៅ %1$s ។ ដើម្បី​យល់ព្រម​ការ​ចុះឈ្មោះ​របស់​ពួកគេ សូម​ចូល​ទៅកាន់ URL ខាងក្រោម៖ %2$s', + 'login_signup_admin_approval_subject' => 'ការ​អនុញ្ញាត​អ្នកប្រើ​ថ្មី', + 'login_signup_approval_message' => 'គណនី​អ្នកប្រើ​របស់​អ្នក​បាន​អនុញ្ញាត​សម្រាប់ %1$s ។ ដើម្បី​ចូល សូម​ទៅកាន់ URL ខាងក្រោម៖ %2$s', + 'login_signup_approval_subject' => 'បាន​អនុញ្ញាត​គណនី​អ្នកប្រើ', + 'login_signup_text' => 'បង្កើត​គណនី​ឥឡូវ​ដើម្បី​ទទួល​បាន​ប្រយោជន៍​ផ្សេងៗ​នៅ​លើ​តំបន់បណ្ដាញ។', + 'longitude' => 'រយៈបណ្ដោយ​', + 'map' => 'ផែន​ទី', + 'mark_read' => 'សម្គាល់​ថា​បាន​អាន', + 'mark_unread' => 'សម្គាល់​ថា​មិន​បាន​អាន', + 'maximum_filesize' => 'ទំហំ​ឯកសារ​ធំ​បំផុត', + 'media' => 'មេឌៀ', + 'media_filter' => 'តម្រង​មេឌៀ', + 'members' => 'សមាជិក', + 'manage_your_account' => 'គ្រប់គ្រង​គណនី​របស់​អ្នក', + 'message' => 'សារ', + 'messages' => 'សារ', + 'message_details' => 'សារ​លម្អិត', + 'message_non_numeric_source' => 'សារ​ពី​ប្រភព​មិនមែន​លេខ៖', + 'mobile' => 'ទូរស័ព្ទ​ចល័ត', + 'modify' => 'កែប្រែ', + 'modify_date' => 'កែប្រែ​កាលបរិច្ឆេទ', + 'month' => 'ខែ', + 'more' => 'ច្រើន​ទៀត', + 'more_information' => 'ព័ត៌មាន​បន្ថែម', + 'multi_country_instance' => 'តើ​ការ​អភិវឌ្ឍ Ushahidi ​នេះ​បាន​ទៅដល់​ប្រទេស​ច្រើន​ដែរ​ឬទេ', + 'must_confirm_email_address' => 'អ្នក​ត្រូវតែ​អះអាង​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ដើម្បី​ចូល​ដំណើរការ​ការ​ប្រើប្រាស់​នេះ។ ប្រសិនបើ​អ្នក​បាត់​អ៊ីមែល​អះអាង អ្នក​អាច​ស្នើសុំ​ការ​អះអាង​ថ្មី​ខាងក្រោម។', + 'name' => 'ឈ្មោះ', + 'nearby_report' => 'របាយការណ៍​ប្រហាក់ប្រហែល', + 'new' => 'ថ្មី', + 'news' => 'ព័ត៌មាន', + 'news_feeds' => 'មតិ​ព័ត៌មាន', + 'news_source' => 'ប្រភព​ព័ត៌មាន', + 'new_category' => 'ប្រភេទ​ថ្មី​', + 'new_password' => 'ពាក្យសម្ងាត់​ថ្មី', + 'new_report' => 'របាយការណ៍​ថ្មី', + 'next' => 'បន្ទាប់', + 'no' => 'ទេ​', + 'no_checkins' => 'មិន​មាន​ការ​ពិនិត្យ​ចូល​ដើម្បី​បង្ហាញ​ទេ។', + 'no_data' => 'គ្មាន​ទិន្នន័យ', + 'none' => 'គ្មាន', + 'notices' => 'សម្គាល់', + 'not_approved' => 'មិន​យល់ព្រម', + 'not_approved_singular' => 'មិន​យល់ព្រម', + 'not_selected' => '---មិន​បាន​ជ្រើស---', + 'not_spam' => 'មិនមែន​សារ​ឥតបានការ', + 'not_specified' => 'មិនបាន​បញ្ជាក់', + 'no_reports' => 'មិន​មាន​របាយការណ៍', + 'no_results' => 'មិន​មាន​លទ្ធផល', + 'off' => 'បិទ', + 'official_news' => 'ព័ត៌មាន​ធម្មតា​របស់ & ផ្លូវការ', + 'on' => 'បើក', + 'option' => 'ជម្រើស', + 'optional' => 'ជា​ជម្រើស', + 'options' => 'ជម្រើស', + 'organization' => 'ស្ថាប័ន', + 'organizations' => 'ស្ថាប័ន', + 'organization_description' => 'សេចក្ដី​ពណ៌នា​ពី​ស្ថាប័ន', + 'organization_email' => 'អ៊ីមែល​ស្ថាប័ន', + 'organization_has_been' => 'ស្ថាប័ន​បាន', + 'organization_name' => 'ឈ្មោះ​ស្ថាប័ន', + 'organization_phone_1' => 'ទូរស័ព្ទ​ស្ថាប័ន ១', + 'organization_phone_2' => 'ទូរស័ព្ទ​ស្ថាប័ន ២', + 'organization_website' => 'តំបន់បណ្ដាញ​របស់​ស្ថាប័ន', + 'original' => 'ដើម', + 'original_description' => 'សេចក្ដី​ពណ៌នា​ដើម', + 'original_title' => 'ចំណងជើង​ដើម', + 'other_ushahidi_instances' => 'ការប្រើប្រាស់​ផ្សេងទៀត', + 'outbox' => 'ប្រអប់​ចេញ', + 'outgoing' => 'ចេញ', + 'page' => 'ទំព័រ', + 'pages' => 'ទំព័រ', + 'page_description' => 'ការ​ពណ៌នា​ទំព័រ', + 'page_has_been' => 'ទំព័រ​បាន', + 'page_tab_name' => 'ឈ្មោះ​ផ្ទាំង​ទំព័រ', + 'page_title' => 'ចំណងជើង​ទំព័រ', + 'parent_category' => 'ប្រភេទ​មេ', + 'password' => 'ពាក្យសម្ងាត់', + 'password_again' => 'ផ្ទៀងផ្ទាត់​ពាក្យសម្ងាត់', + 'password_changed_successfully' => 'បាន​ផ្លាស់ប្ដូរ​ពាក្យសម្ងាត់​ដោយ​ជោគជ័យ! សូម​ចូល​នៅ​ខាងក្រោម។', + 'password_forgot' => 'ភ្លេច​ពាក្យសម្ងាត់​របស់​អ្នក​ឬ?', + 'password_reset_confirm' => 'ពិនិត្យមើល​អ៊ីមែល​របស់​អ្នក​សម្រាប់​ពាក្យសម្ងាត់​ថ្មី។', + 'password_save' => 'នៅតែ​ចូល​លើ​កុំព្យូទ័រ​នេះ​ឬ?', + 'past_month' => 'ខែមុន', + 'past_year' => 'ឆ្នាំមុន', + 'pending' => 'ក្រោម​ការ​រង់ចាំ', + 'per' => 'ក្នុង', + 'personal_information' => 'ព័ត៌មាន​ផ្ទាល់ខ្លួន ជា​ជម្រើស។', + 'phone' => 'ទូរស័ព្ទ', + 'photos' => 'រូបថត', + 'pictures' => 'រូប​ភាព​', + 'pictures_and_videos' => 'រូបភាព និង​ វីដេអូ', + 'pinpoint_location' => '* ស្វែងរក​ទីតាំង​របស់​អ្នក​ដោយ​ប្រើ​ឈ្មោះ ឬ​រយៈទទឹង រយៈបណ្ដោយ (ទម្រង់៖ 38.19, 85.61) ឬ​ចង្អុល​លើ​ផែនទី​ដើម្បី​រក​ទីតាំង​ដែល​ត្រឹមត្រូវ។', + 'play' => 'លេង', + 'please_note' => 'សូម​ចំណាំ', + 'plugins' => 'កម្មវិធី​ជំនួយ', + 'plugin_url' => 'តំបន់បណ្ដាញ​កម្មវិធី​ជំនួយ', + 'public_profile' => 'ទម្រង់​សាធារណៈ', + 'public_profile_url' => 'URL ទម្រង់​សាធារណៈ', + 'preview' => 'មើល​ជាមុន', + 'preview_item' => 'មើល​ធាតុ​ជាមុន', + 'preview_message' => 'មើល​សារ​ជាមុន', + 'previous' => 'មុន', + 'private' => 'ឯកជន', + 'profile_color' => 'ពណ៌​ទម្រង់', + 'profile_saved' => 'បាន​រក្សាទុក​ទម្រង់​របស់​អ្នក', + 'quick_stats' => 'ស្ថានភាព​រហ័ស', + 'rating' => 'អត្រា', + 'read' => 'អាន', + 'receive' => 'ទទួល', + 'receive_from' => 'ទទួល​ពី', + 'receive_notifications' => 'ទទួល​ការ​ជូនដំណឹង', + 'recent_reports' => 'របាយការណ៍​ថ្មីៗ', + 'refresh_news_feeds' => 'ធ្វើឲ្យ​មតិ​ព័ត៌មាន​ស្រស់', + 'registered_email' => 'បាន​ចុះឈ្មោះ​អ៊ីមែល', + 'remove' => 'យកចេញ', + 'reply' => 'ឆ្លើយតប', + 'report' => 'របាយការណ៍', + 'reports_listed' => 'របាយការណ៍ (ពី​ផែនទី, បញ្ជី​តាម​លំដាប់​កាល)', + 'reporter' => 'អ្នក​រាយការណ៍', + 'reporters' => 'អ្នក​រាយការណ៍', + 'reporter_date' => 'កាលបរិច្ឆេទ​រាយការណ៍', + 'reporter_email' => 'អ៊ីមែល​អ្នក​រាយការណ៍', + 'reporter_first_name' => '​នាម​ខ្លួន​អ្នក​រាយការណ៍', + 'reporter_has_been' => 'របាយការណ៍​បាន', + 'reporter_ip' => 'អាសយដ្ឋាន IP របស់​អ្នក​រាយការណ៍', + 'reporter_last_name' => 'នាមត្រកូល​​​អ្នក​រាយការណ៍', + 'reporter_level' => 'លំដាប់​អ្នក​រាយការណ៍', + 'reporter_levels' => 'លំដាប់​អ្នក​រាយការណ៍', + 'reporter_phone' => 'ទូរស័ព្ទ​អ្នក​រាយការណ៍', + 'reports' => 'របាយការណ៍', + 'reports_btn_browse' => 'រុករក', + 'reports_btn_submit' => 'ដាក់​ស្នើ', + 'reports_by_this_user' => 'របាយការណ៍​ដោយ​អ្នកប្រើ​នេះ', + 'reports_categories' => 'ប្រភេទ', + 'reports_count' => '%d របាយការណ៍', + 'reports_date' => 'កាលបរិច្ឆេទ​', + 'reports_description' => 'សេចក្ដី​ពណ៌នា', + 'reports_download_csv' => 'នឹង​ទាញ​យក​របាយការណ៍​ក្នុង​ទម្រង់ CSV', + 'reports_email' => 'អ៊ីមែល', + 'reports_features' => 'លក្ខណៈ', + 'reports_find_location' => 'រក​ទីតាំង​ដែល​នៅ​ជិត​អ្នក', + 'reports_first' => 'នាម​ខ្លួន', + 'reports_last' => 'នាមត្រកូល​​', + 'reports_location_name' => 'ឈ្មោះ​ទីតាំង', + 'reports_news' => 'តំណ​ប្រភព​ព័ត៌មាន', + 'reports_optional' => 'ព័ត៌មាន​ជា​ជម្រើស', + 'reports_photos' => 'ផ្ទុក​រូបភាព​ឡើង​', + 'reports_return' => 'ត្រឡប់​ទៅ​ទំព័រ​របាយការណ៍', + 'reports_select_city' => 'ជ្រើសរើស​ទីក្រុង', + 'reports_submitted' => 'របាយការណ៍​របស់​អ្នក​បាន​បញ្ជូន​ទៅកាន់​បុគ្គលិក​របស់​យើង​ដើម្បី​ត្រួតពិនិត្យ។​ យើង​ជូនដំណឹង​ត្រឡប់មកវិញ​យ៉ាង​ឆាប់​បំផុត។', + 'reports_submit_new' => 'ដាក់​ស្នើ​របាយការណ៍​ថ្មី', + 'reports_time' => 'ពេល', + 'reports_timeline' => 'កាល​កំណត់​របាយការណ៍', + 'reports_title' => 'ចំណងជើង​របាយការណ៍', + 'reports_video' => 'តំណ​វីដេអូ', + 'report_an_incident' => 'រាយការណ៍​​ព្រឹត្តិការណ៍', + 'report_details' => 'របាយការណ៍​លម្អិត', + 'report_option_1' => 'តាមរយៈ​ការ​ផ្ញើ​សារ', + 'report_option_2' => 'តាមរយៈ​ការ​ផ្ញើ​អ៊ីមែល', + 'report_option_3' => 'ការ​ផ្ញើ​តាម​​រយៈ ​tweet ដោយ​ប្រើ​សញ្ញា # hashtag/s', + 'report_option_4' => 'តាមរយៈ​ការ​បំពេញ​ទម្រង់​នៅ​លើ​តំបន់បណ្ដាញ​របស់​យើង។', + 'report_option_external_apps' => 'តាមរយៈ​ការ​ប្រើ​កម្មវិធី', + 'report_saved' => 'បាន​រក្សាទុក​របាយការណ៍​របស់​អ្នក', + 'report_title' => 'ចំណងជើង​របាយការណ៍', + 'request_information' => 'ស្នើសុំ​ព័ត៌មាន​បន្ថែម', + 'request_location' => 'ស្នើសុំ​ទីកន្លែង', + 'required' => 'បាន​ទាមទារ', + 'requirements' => 'តម្រូវ​ការ', + 'resend_confirm_email' => 'ផ្ញើ​អ៊ីមែល​អះអាង​ឡើងវិញ', + 'reset' => 'កំណត់​ឡើងវិញ', + 'reset_all_filters' => 'កំណត់​តម្រង​ទាំងអស់​ឡើងវិញ', + 'reset_password' => 'កំណត់​ពាក្យសម្ងាត់​ឡើងវិញ', + 'retrieve_city_names' => 'ទៅ​យក​ឈ្មោះ​ទីក្រុង​ឡើងវិញ​សម្រាប់​ប្រទេស​ដែល​បាន​ជ្រើស', + 'riverid_information' => 'បាន​គ្រប់គ្រង​គណនី​ដោយ​សេវាកម្ម %s ។', + 'riverid_exists_login' => 'អ្នក​មាន​គណនី​ដែល​បាន​គ្រប់គ្រង​ដោយ CrowdmapID រួចហើយ! សាកល្បង​ប្រើ​ពាក្យសម្ងាត់ និង​អ៊ីមែល​របស់ CrowdmapID ដើម្បី​ចូល។', + 'role' => 'មុខងារ', + 'rss' => 'RSS', + 'save' => 'រក្សាទុក', + 'saved' => 'បាន​រក្សាទុក', + 'save_add_new' => 'រក្សា​ទុក និង​បន្ថែម​ថ្មី​', + 'save_close' => 'រក្សាទុក និង​បិទ', + 'save_report' => 'រក្សា​ទុក​របាយការណ៍', + 'schedule' => 'កាលវិភាគ', + 'scheduler' => 'កម្មវិធី​កំណត់​ពេល', + 'scheduler_day' => 'ថ្ងៃ', + 'scheduler_hour' => 'ម៉ោង', + 'scheduler_log' => 'កំណត់ហេតុ​កម្មវិធី​កំណត់​ពេល', + 'scheduler_minute' => 'នាទី', + 'scheduler_weekday' => 'ថ្ងៃ​នៃ​សប្ដាហ៍​', + 'search' => 'ស្វែងរក', + 'search_results' => 'លទ្ធផល​ស្វែងរក​', + 'security_code' => 'លេខ​កូដ​សុវត្ថិភាព', + 'select_all' => 'ជ្រើស​យក​ទាំងអស់', + 'select_field_type' => 'ជ្រើស​ប្រភេទ​វាល', + 'select_form_type' => 'ជ្រើស​ប្រភេទ​ទម្រង់', + 'select_in_map' => 'ជ្រើស​ក្នុង​ផែនទី', + 'select_multiple' => 'ជ្រើស​បាន​ច្រើន​តាម​តម្រូវ​ការ​', + 'select_one' => 'សូម​ផ្ទៀងផ្ទាត់​ថា​អ្នក​បាន​ធីក​ធាតុ​មួយ', + 'select_theme' => 'ជ្រើស​រូបរាង', + 'send' => 'ផ្ញើ', + 'send_confirmation' => 'ផ្ញើ​ការ​អះអាង', + 'sending_to' => 'កំពុង​ផ្ញើ​ទៅ', + 'sent' => 'បាន​ផ្ញើ', + 'sent_by' => 'បាន​ផ្ញើ​ដោយ', + 'server_address' => 'អាសយដ្ឋាន​ម៉ាស៊ីន​មេ', + 'server_type' => 'ប្រភេទ​ម៉ាស៊ីន​មេ', + 'service' => 'សេវាកម្ម', + 'service_username' => 'ឈ្មោះ​អ្នកប្រើ​សេវាកម្ម', + 'service_user_id' => 'លេខ​សម្គាល់​អ្នកប្រើ​សេវាកម្ម', + 'share' => 'ចែករំលែក', + 'shared_data' => 'បាន​ចែករំលែក​ទិន្នន័យ', + 'share_has_been' => 'ការ​ចែករំលែក​បាន', + 'sharing' => 'ការ​ចែករំលែក', + 'shorter_map' => 'ផែនទី​ខ្លី​ជាង', + 'show' => 'បង្ហាញ', + 'show_all' => 'បង្ហាញ​ទាំងអស់', + 'show_messages' => 'បង្ហាញ​សារ', + 'showing_reports_from' => 'បង្ហាញ​របាយការណ៍​ពី %1$s ទៅ %2$s', + 'site' => 'តំបន់បណ្ដាញ', + 'site_email_address' => 'អាសយដ្ឋាន​​អ៊ីមែល​តំបន់បណ្ដាញ', + 'site_url' => 'URL​ តំបន់បណ្ដាញ', + 'smaller_map' => 'ផែនទី​តូច​ជាង', + 'sms' => 'សារ SMS', + 'sorry_no_badges' => 'សូមទោស អ្នក​មិន​មាន​សញ្ញា​ទេ។', + 'source' => 'ប្រភព', + 'source_name' => 'ឈ្មោះ​ប្រភព', + 'sort' => 'តម្រៀប', + 'sort_by' => 'តម្រៀប​តាម', + 'source_url' => 'URL ប្រភព', + 'spam' => 'សារ​ឥតបានការ', + 'ssl_support' => 'គាំទ្រ SSL ឬ?', + 'start_point' => 'ពី', + 'step' => 'ជំហាន', + 'submit' => 'ដាក់​ស្នើ​របាយការណ៍', + 'submitted_by' => 'បាន​ដាក់​ស្នើ​ដោយ %1$s តាមរយៈ %2$s', + 'submit_sms' => 'ដាក់​ស្នើ​តាម​សារ​ SMS', + 'submit_sms1' => 'ផ្ញើ​សារ​ SMS របស់​អ្នក​ទៅ', + 'submit_sms2' => 'តាម​ទូរស័ព្ទ​របស់​អ្នក', + 'success' => 'ជោគជ័យ!', + 'successfuly_imported' => 'បាន​នាំចូល​ដោយ​ជោគជ័យ', + 'surname' => 'នាមត្រកូល', + 'survey' => 'ស្ទង់​មតិ', + 'system' => 'ប្រព័ន្ធ', + 'taller_map' => 'ផែនទី​ខ្ពស់​ជាង', + 'tcp_port' => 'ច្រក TCP', + 'themes' => 'រូបរាង', + 'theme_default' => 'រូបរាង​ Ushahidi ​លំនាំដើម', + 'theme_settings' => 'ការ​កំណត់​រូបរាង', + 'this' => 'នេះ', + 'this_day' => 'ថ្ងៃនេះ', + 'this_month' => 'ខែ​នេះ', + 'this_week' => 'សប្ដាហ៍​នេះ', + 'this_year' => 'ឆ្នាំនេះ', + 'this_is_your_profile' => 'នេះ​ជា​ប្រវត្តិរូប​របស់​អ្នក', + 'time' => 'ពេល​វេលា', + 'title' => 'ចំណង​ជើង​', + 'to' => 'ជូនចំពោះ​', + 'today' => 'ថ្ងៃនេះ', + 'today_at' => 'ថ្ងៃនេះ​នៅ', + 'token' => 'ថូខឹន', + 'total_reports' => 'របាយការណ៍​សរុប', + 'translated' => 'បាន​បកប្រែ', + 'translated_description' => 'បាន​បកប្រែ​ការ​ពណ៌នា', + 'translated_title' => 'បាន​បកប្រែ​ចំណងជើង', + 'translate_to' => 'បកប្រែ​ជា', + 'translation' => 'ការ​បកប្រែ', + 'translation_saved' => 'បាន​រក្សាទុក​ការ​បកប្រែ', + 'trusted' => 'បាន​ទុកចិត្ត', + 'type' => 'ប្រភេទ', + 'twitter' => 'Twitter', + 'unable_send_email' => 'មិន​អាច​ផ្ញើ​អ៊ីមែល​បាន​ទេ។', + 'uncategorized_reports' => 'របាយការណ៍​គ្មាន​ប្រភេទ', + 'unread' => 'មិន​បាន​អាន', + 'unverified' => 'មិន​បាន​អះអាង', + 'update_feeds' => 'ធ្វើ​បច្ចុប្បន្នភាព​មតិ​ព័ត៌មាន', + 'upload' => 'ផ្ទុក​ឡើង', + 'upload_guide' => 'មើល​របៀប​ផ្ទុក​របាយការណ៍​ឡើង​របស់​យើង៖-', + 'upload_docs_1' => 'របៀប​ផ្ទុក XML ឡើង', + 'upload_docs_2' => 'របៀប​ផ្ទុក CSV ឡើង', + 'upload_file' => 'ឯកសារ​ដែល​ត្រូវ​ផ្ទុក​ឡើង', + 'upload_reports' => 'ផ្ទុក​របាយការណ៍​ឡើង', + 'upload_reports_custom_forms' => 'ជួរឈរ​វាល​ផ្ទាល់ខ្លួន​ត្រូវតែ​មាន​ form_id របស់​ពួកគេ​ដែល​បាន​បន្ថែម ឧ. វាល​ផ្ទាល់ខ្លួន Test នៅ​លើ​ទម្រង់​លំនាំដើម​ដែល​លេខ​សម្គាល់​របស់​វា​គឺ 1 ដូច្នេះ​វា​គឺ Test-1។ នៅ​ពេល​នាំចូល​វាល​ទម្រង់​ផ្ទាល់ខ្លួន ត្រូវ​ប្រាកដ​ថា', + 'upload_reports_detail_1' => 'ជាមួយ​ទម្រង់​បែបបទ​ខាងក្រោម អ្នក​អាច​នាំចូល​របាយការណ៍​​​ព្រឹត្តិការណ៍​​​ទៅកាន់​ម៉ាស៊ីន​ Ushahidi ​បាន។', + 'upload_reports_detail_2' => 'របាយការណ៍​ត្រូវតែ​ផ្ទុក​ឡើង​ក្នុង​ទន្រង់ CSV ឬ XML ។', + 'upload_reports_detail_3' => 'ពេល​លេខ​សម្គាល់​ហេតុ​ការណ៍​មាន​រួចហើយ​នៅ​ក្នុង​មូលដ្ឋាន​ទិន្នន័យ នោះ​ធាតុ​នៅ​ក្នុង​ឯកសារ CSV/XML នឹង​ត្រូវ​បាន​មិន​អើពើ។', + 'upload_reports_detail_4' => 'វា​ត្រូវតែ​មាន​យ៉ាង​ហោច​ចំណងជើង និង​កាលបរិច្ឆេទ​ព្រឹត្តិការណ៍។', + 'upload_reports_detail_4b' => 'ប្រសិនបើ​មិន​បាន​ផ្ដល់​រយៈបណ្ដោយ និង​រយៈទទឹង​ទេ នោះ​ទីតាំង​នឹង​ត្រូវ​បាន​កំណត់​កូដ​ភូមិសាស្ត្រ​ដោយ​ប្រើ Google Geocoder ។', + 'upload_reports_detail_4c' => 'ប្រសិនបើ​មាន​ការ​នាំចូល​ព័ត៌មាន​បន្ថែម ឧ. ព័ត៌មាន​ផ្ទាល់ខ្លួន និង/ឬ​វាល​ទម្រង់​ផ្ទាល់ខ្លួន', + 'upload_reports_detail_4d' => 'នៅ​ក្នុង​វាល​ព័ត៌មាន​ផ្ទាល់ខ្លួន ត្រូវតែ​បាន​បំពេញ​ធាតុ​មួយ​យ៉ាង​ហោច​​ក្នុង​ចំណោម (នាម​ខ្លួន, នាម​ត្រកូល​ អ៊ីមែល) ។ កំណត់ត្រា​ទទេ​នឹង​មិន​ត្រូវ​បាន​នាំចូល​ឡើយ', + 'upload_reports_detail_4e' => 'ធាតុ​របស់​អ្នក​នៅ​ក្នុង​វាល​ទម្លាក់​ចុះ ប៊ូតុង​មូល និង​ប្រអប់​ធីក​គឺ​ផ្គូផ្គង​គ្នា​ជាមួយ​ជម្រើស​ដែល​បាន​ផ្ដល់​សម្រាប់​​ធាតុ​វាល​ផ្ទាល់ខ្លួន​របស់​អ្នក', + 'upload_reports_detail_4f' => 'ជម្រើស​ប្រអប់​ធីក​ត្រូវ​បាន​បំបែក​ដោយ​សញ្ញា​ក្បៀស ឧ. ប្រសិនបើ​អ្នក​បាន​ជ្រើស​ផ្លែ​ប៉ោម ស្វាយ និង​ទំពាំងបាយជូរ នោះ​ធាតុ​របស់​អ្នក​គឺ "ប៉ោម, ស្វាយ, ទំពាំងបាយជូរ"', + 'upload_reports_detail_4g' => 'តម្លៃ​វាល​កាលបរិច្ឆេទ​គឺ​មាន​ទម្រង់​ដូច​ខាងក្រោម៖ mm/dd/yyyy ឧ. ថ្ងៃ​ទី៣ ខែ​តុលា ឆ្នាំ​២០១២ = ១០/០៣/២០១២', + 'upload_reports_detail_5' => 'គំរូ​របាយការណ៍ CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'បាន​ផ្ទុក​ឡើង​ដោយ​ជោគជ័យ', + 'upload_video' => 'ផ្ទុក​វីដេអូ​ឡើង', + 'url' => 'URL', + 'user' => 'អ្នកប្រើ', + 'username' => 'ឈ្មោះ​អ្នកប្រើ', + 'ushahidi_admin' => 'អ្នក​គ្រប់គ្រង​ Ushahidi', + 'verification' => 'ការ​ផ្ទៀងផ្ទាត់', + 'verified' => 'បាន​ផ្ទៀងផ្ទាត់', + 'verified_reports' => 'បាន​ផ្ទៀងផ្ទាត់​របាយការណ៍', + 'verify' => 'ផ្ទៀងផ្ទាត់', + 'verify_this_report' => 'ផ្ទៀងផ្ទាត់​របាយការណ៍​នេះ', + 'version' => 'កំណែ', + 'via' => 'តាមរយៈ', + 'video' => 'វីដេអូ', + 'view' => 'មើល', + 'views' => 'ទិដ្ឋភាព', + 'view_all' => 'មើល​ទាំងអស់', + 'view_all_feeds' => 'មើល​មតិ​ព័ត៌មាន​ទាំងអស់', + 'view_all_reports' => 'មើល​របាយការណ៍​ទាំងអស់', + 'view_items' => 'មើល​ធាតុ', + 'view_more' => 'មើល​ច្រើន​ទៀត', + 'view_public_profile' => 'មើល​ទម្រង់​សាធារណៈ', + 'view_report' => 'មើល​របាយការណ៍', + 'view_reports' => 'មើល​របាយការណ៍', + 'view_video' => 'មើល​ហេតុ​ការណ៍​', + 'visible' => 'អាច​មើល​ឃើញ', + 'waiting_approval' => 'រង់ចាំ​ការ​អនុម័ត', + 'waiting_verification' => 'រង់ចាំ​ការ​អះអាង', + 'wider_map' => 'ផែន​ទី​ធំ​ជាង​', + 'web_form' => 'សំណុំ​បែបបទ​បណ្ដាញ', + 'web' => 'តំបន់បណ្ដាញ', + 'weight' => 'ទម្ងន់', + 'yes' => 'បាទ/ចាស​', + 'yesterday' => 'ម្សិលមិញ', + 'your_dashboard' => 'ផ្ទាំង​គ្រប់គ្រង​របស់​អ្នក', + 'your_file' => 'ឯកសារ​របស់​អ្នក', + 'zoom_in' => 'ពង្រីក', + 'zoom_out' => 'បង្រួម', +); diff --git a/application/i18n/km/upgrade.php b/application/i18n/km/upgrade.php new file mode 100644 index 0000000000..6d5a52fd92 --- /dev/null +++ b/application/i18n/km/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'ទិន្នន័យ​បញ្ចូល​មិន​ត្រឹមត្រូវ។ វា​អាច​ ០ សម្រាប់ ទេ ឬ ១ សម្រាប់​​បាទ/ចាស។', + ) , + 'upgrade_automatic' => 'ធ្វើ​ឲ្យ​ប្រសើរ​ស្វ័យប្រវត្តិ', + 'upgrade_available' => 'ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ដែល​អាច​ធ្វើ​ទៅ​បាន', + 'upgrade_continue_btn_text' => 'បន្ត', + 'upgrade_db_btn_text' => 'ធ្វើ​ឲ្យ​ប្រសើរ', + 'upgrade_db_text_1' => 'ដូច្នេះ ខ្ញុំ​នឹង​ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​ប្រសើរ​ពី​កំណែ', + 'upgrade_db_text_2' => 'ទៅ​កាន់​កំណែ​មូលដ្ឋាន​ទិន្នន័យ​ថ្មី​បំផុត', + 'upgrade_db_text_3' => 'ចុច​លើ​ប៊ូតុង "ធ្វើ​ឲ្យ​ប្រសើរ" ហើយ​គ្រាន់​តែ​ chillax ជា​ប្រតិបត្តិការ​ដែល​ខ្ញុំ​មិន​ជឿ។', + 'upgrade_db_text_4' => 'អូ ប្រសិនបើ​​អ្នក​ចង់​ឲ្យ​ខ្ញុំ​បម្រុង​ទុក​មូលដ្ឋាន​ទិន្នន័យ​​របស់​អ្នក គ្រាន់​តែ​ធីក​ប៊ូតុង​ពិនិត្យមើល​ខាងក្រោម ខ្ញុំ​នឹង​ធ្វើ​វា​សម្រាប់​អ្នក​បាន​ភ្លាមៗ។', + 'upgrade_db_text_5' => 'បម្រុងទុក​មូលដ្ឋាន​ទិន្នន័យ​មុន​ពេល​ធ្វើ​ឲ្យ​ប្រសើរ? (បាន​ផ្ដល់​អនុសាសន៍​ល្អ​បំផុត)', + 'upgrade_db_title' => 'ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​របស់ Ushahidi ប្រសើរ', + 'upgrade_db_info' => 'Ushahidi ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ! មុន​ពេល​អ្នក​បន្ត អ្នក​ចាំបាច់​ធ្វើ​​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​ប្រសើរ​ចំពោះ​កំណែ​ថ្មី​បំផុត (%s)។', + 'upgrade_db_up_to_date' => 'កំណែ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​គឺ​​ទាន់​សម័យ។', + 'upgrade_failed' => 'បាន​បរាជ័យ​ក្នុង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​នៅ​ចំណុច​មួយ​ចំនួន', + 'upgrade_manual' => 'ធ្វើ​ឲ្យ​ប្រសើរ​ដោយ​ដៃ', + 'upgrade_status' => 'ធ្វើ​ឲ្យ​ស្ថានភាព​របស់ Ushahidi ប្រសើរ', + 'upgrade_text_1' => 'សេចក្ដី​ណែនាំ​លម្អិត​ខាងក្រោម​បង្ហាញ​អំពី​របៀប​ធ្វើ​ឲ្យ​ប្រសើរ​ក្នុង​ការ​ប្រើប្រាស់ Ushahidi របស់​អ្នក', + 'upgrade_text_2' => '
ទាញយក
', + 'upgrade_text_3' => '
ទាញ​យក​ Ushahidi ថ្មីៗ​ជា​ច្រើន​​​បង្កើត​ពី', + 'upgrade_text_4' => '
បម្រុងទុក
- ឯកសារ .htaccess, ./applications/config/config.php, ./applications/config/database.php និង ./applications/config/auth.php ។
- ក្នុង​ករណី​ដែល​មាន​អ្វី​មិន​ប្រក្រតី យើង​សូម​ផ្ដល់​អនុសាសន៍​ឲ្យ​អ្នក​បង្កើត​ការ​បម្រុងទុក​ទាំងស្រុង​សម្រាប់​ការ​ប្រើប្រាស់​យូសាហ៊ីឌី​របស់​អ្នក។
ចម្លង​ឯកសារ
- ស្រង់​ចេញ​នូវ​ឯកសារ​ហ្ស៊ីប​ដែល​បាន​ទាញ​យក
- ដោយ​ផ្អែក​លើ​ប្រព័ន្ធ​ប្រតិបត្តិការ​ដែល​កំពុង​ដំណើរការ​ម៉ាស៊ីន​មេ​បណ្ដាញ អ្នក​អាច​ប្រើ​ឧបករណ៍/របៀប​ដែល​អ្នក​ចូលចិត្ត (ឧ. Telnet, FTP, SSH) ដើម្បី​ចូល​ទៅកាន់​ម៉ាស៊ីន​មេ​បណ្ដាញ និង​ជំនួស​មាតិកា​របស់​ថត​ទាំងអស់​ជាមួយ​ទម្រង់​ថ្មី​បំផុត​ដែល​បាន​ស្ថាបនា​បច្ចុប្បន្ន។
ធ្វើឲ្យ​បច្ចុប្បន្នភាព​មូលដ្ឋាន​ទិន្នន័យ
- ដំបូង​កំណត់​អំពី​កំណែ​គ្រោងការណ៍​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​ដោយ​មើល​តម្លៃ​នៅ​ក្នុង​តារាង​កំណត់ db_version ឬ​មើល​នៅ​ក្នុង​ព័ត៌មាន​ការ​ធ្វើ​បច្ចុប្បន្នភាព​របស់​យូសាហ៊ីឌី​នៅ​ផ្នែក​ខាងលើ​នៃ​ទំព័រ​នេះ។
- ប្រសិនបើ​អ្នកប្រើ​កំណែ 25 អ្នក​ចាំបាច់​ត្រូវ​ធ្វើ​បច្ចុប្បន្នភាព​ពី 25-26, 26-27, 27-28 និង​ជា​បន្តបន្ទាប់​រហូតដល់​ឯកសារ SQL ចុងក្រោយ​នៅ​ក្នុង /sql ថត​របស់​អ្នក។
- ជាមួយ​ម៉ាស៊ីន​កូន​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក អ្នក​អាច​ធ្វើ​បច្ចុប្បន្នភាព​ដោយ​ដំណើរការ​ឯកសារ upgradex-x.sql ដែល​ត្រឹមត្រូវ។
', + 'upgrade_tables' => 'ជំហាន​ទី ៣៖ មើល​នៅ​​ក្នុង​ថត sql ។ ដំណើរការ​ដោយ​ដៃ​ធ្វើ​ឲ្យ​ឯកសារ​ប្រសើរ-.sql ចាប់ផ្ដើម​ពី​កំណែ db បច្ចុប្បន្ន​​នៃ​ការ​ដំឡើង​របស់​អ្នក​តាម​រយៈ​ឯកសារ​ធ្វើ​ឲ្យ​ប្រសើរ​សម្រាប់ sql ចុង​ក្រោយ។', + 'upgrade_text_5' => 'ជំហាន​ទី ៤៖ ចុច​លើ​ប៊ូតុង "បន្ត" ដើម្បី​ធ្វើ​ឲ្យ​តារាង​ចាំបាច់​ប្រសើរ​ឡើង។', + 'upgrade_text_6' => 'សម្រាប់​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ស្វ័យប្រវត្តិ ចុច​លើ​ប៊ូតុង​ខាងក្រោម។', + 'upgrade_title_text' => 'បច្ចុប្បន្ន​អ្នក​កំពុង​ប្រើ Ushahidi v%1$s ជាមួយ​កំណែ​មូលដ្ឋាន​ទិន្នន័យ %2$d ដែល​កំពុង​ដំណើរការ​លើ %3$s', + 'upgrading' => 'ធ្វើ​ឲ្យ​ប្រសើរ', + 'upgrade_ftp_text' => 'ដើម្បី​បន្ត​ការ​ធ្វើ​​ឲ្យ​ប្រសើរ​​មាន​ភាព​​ងាយស្រួល បាន​ទាមទារ​ព័ត៌មាន​ខាងក្រោម​សម្រាប់​ម៉ាស៊ីន​មេ FTP ដែល​បង្ហោះ​នៅ​លើ​​តំបន់​បណ្ដាញ​របស់​អ្នក។', + 'upgrade_ftp_hostname' => 'ឈ្មោះ​ម៉ាស៊ីន​របស់ FTP ៖ ឧទាហរណ៍៖ "ម៉ាស៊ីន​មូលដ្ឋាន"', + 'upgrade_ftp_password' => 'ពាក្យសម្ងាត់​របស់ FTP៖', + 'upgrade_ftp_username' => 'ឈ្មោះ​អ្នក​ប្រើ​សម្រាប់ FTP ៖', + 'upgrade_status_info' => 'អ្នក​​មាន​កំណែ Ushahidi ថ្មី​បំផុត។', + 'upgrade_status_info_2' => 'អ្នក​មិន​ចាំបាច់​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើយ។', + 'upgrade_db_version' => 'កំណែ​មូលដ្ឋាន​ទិន្នន័យ៖ %d', + 'upgrade_warning_software_version' => 'ការ​ព្រមាន៖ កំណែ​កម្មវិធី​ជា​កំណែ.php និង​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មិន​ផ្គូផ្គង។', + 'upgrade_warning_db_version' => 'ការ​ព្រមាន៖ កំណែ​កម្មវិធី​ជា​កំណែ.php និង​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មិន​ផ្គូផ្គង។', + 'upgrade_database' => 'មូលដ្ឋាន​ទិន្នន័យ៖', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'កំពុង​ទាញ​យក​កំណែ​​ថ្មី​បំផុត​​របស់ ushahidi...', + 'log_file' => 'ឯកសារ​កំណត់ហេតុ', + 'successfully_downloaded' => 'បាន​ទាញ​យក​ដោយ​ជោគជ័យ។ កំពុង​ពន្លា...', + 'failed_downloading' => 'បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក។', + 'successfully_unpacked' => 'បាន​ពន្លា​ដោយ​ជោគជ័យ។ កំពុង​ចម្លង​ឯកសារ...', + 'failed_unpacking' => 'បាន​បរាជ័យ​ក្នុង​ការ​ពន្លា។', + 'successfully_copied' => 'បាន​ចម្លង​ដោយ​ជោគជ័យ។ កំពុង​ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​ប្រសើរ...', + 'failed_copying' => 'បាន​បរាជ័យ​ក្នុង​ការ​ចម្លង​ឯកសារ។', + 'backup_success' => 'បម្រុង​ទុក​មូលដ្ឋាន​ទិន្នន័យ និង​ធ្វើ​ឲ្យ​ប្រសើរ​ដោយ​ជោគជ័យ។', + 'backup_failed' => 'បាន​បរាជ័យ​ក្នុង​ការ​បម្រុង​ទុក​មូលដ្ឋាន​ទិន្នន័យ។', + 'dbupgrade_success' => 'ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​ប្រសើរ​ដោយ​ជោគជ័យ។', + 'deleting_files' => 'កំពុង​លុប​ឯកសារ​ដែល​បាន​ទាញ​យក...', + 'upgrade_success' => 'ធ្វើ​ឲ្យ​ប្រសើរ​ដោយ​ជោគជ័យ។ មើល ឯកសារ​កំណត់​ហេតុ​', +); diff --git a/application/i18n/ko_KR/alerts.php b/application/i18n/ko_KR/alerts.php new file mode 100755 index 0000000000..992d8c74cd --- /dev/null +++ b/application/i18n/ko_KR/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'email_check' => '선택한 지역에서 입력한 이메일 주소는 이미 사용중입니다.', + 'length' => '이메일은 최소 4~64자가 입력되어야 합니다.', + 'required' => '체크박스 체크 시 이메일 입력은 필수입니다.', + ) , + 'alert_country' => array( + 'single_country' => '이 배치는 한 국가에만 해당됩니다. 알림 위치가 국가 내부인지 확인해주세요. This deployment spans within one country only. Please make sure the alert location is within the country %s.', + ) , + 'alert_lat' => array( + 'between' => '지도에서 유효한 위치를 선택하지 않았습니다.', + 'required' => '지도에서 유효한 위치를 선택하지 않았습니다.', + ) , + 'alert_lon' => array( + 'between' => '지도에서 유효한 위치를 선택하지 않았습니다.', + 'required' => '지도에서 유효한 위치를 선택하지 않았습니다.', + ) , + 'alert_mobile' => array( + 'length' => '입력한 휴대폰 번호의 길이가 정확하지 않습니다.', + 'mobile_check' => '선택한 지역에서 입력한 휴대폰 번호는 이미 사용중입니다.', + 'numeric' => '입력한 휴대폰 번호가 정확하지 않습니다. 입력 시 국가코드만 포함하여 입력바랍니다.', + 'one_required' => '이메일과 휴대폰 번호 중 하나는 반드시 입력을 해야 합니다.', + 'required' => '체크박스 체크 시 휴대폰 번호 입력은 필수입니다.', + ) , + 'alert_radius' => array( + 'in_array' => '지도에서 유효한 반경을 설정하지 않았습니다.', + 'required' => '지도에서 유효한 반경을 설정하지 않았습니다..', + ) , + 'alert_recipient' => array( + 'required' => '알람 수신자를 설정하지 않았습니다.', + ) , + 'alerts_subscribed' => '다음 카테고리에서 이메일 알림 신청이 되어있습니다.', + 'code_already_verified' => '이 코드는 이전에 확인되었습니다.', + 'code_not_found' => '이 코드를 찾지 못했습니다. 정확한 URL 주소를 다시 한 번 확인바랍니다.', + 'code_verified' => ' 코드가 확인되었습니다. 이제 설정한 지역에서 업데이트가 있을 경우 알림 메시지를 받게 됩니다.', + 'confirm_request' => '알림요청을 확인하기 위해서는 다음으로 이동', + 'create_more_alerts' => '알림을 추가하기 위해서 다시 알림 페이지로 돌아가기', + 'email_alert_request_created' => '이메일 알림이 생성되었으며, 확인 메시지가 발송되었습니다.', + 'email_code' => '이메일로 받은 확인 코드를 입력해주세요:', + 'email_error_head' => '이메일 알림이 저장되지 않았습니다!', + 'email_ok_head' => '이메일 알림이 저장되지 않았습니다!', + 'error' => '당신의 확인요청을 현재 시스템이 처리할 수 없습니다.', + 'mobile_alert_request_created' => '휴대폰 알림이 생성되었으며, 확인 메시지가 발송되었습니다.', + 'mobile_code' => '휴대폰으로 받은 확인 코드를 입력해주세요:', + 'mobile_error_head' => '휴대폰 알림이 저장되지 않았습니다!', + 'mobile_ok_head' => '휴대폰 알림이 저장되지 않았습니다!', + 'settings_error' => '알림 설정이 올바르지 않습니다.', + 'unsubscribe' => '귀하의 이메일 알림 신청으로 도착한 이메일입니다. 이메일을 받기 원치 않을 경우 다음으로 이동해주세요.', + 'unsubscribed' => '이메일 알림 신청이 정상적으로 해지 되었습니다.', + 'unsubscribe_failed' => '이메일 알림 해지 신청이 정상적으로 완료 되지 않았습니다. 정확한 URL을 확인 바랍니다.', + 'verification_email_subject' => '알림 - 확인', + 'verify_code' => '귀하의 요청을 확인전까지 현재 위치에 대한 알림은 수신하지 않습니다.', +); diff --git a/application/i18n/ko_KR/auth.php b/application/i18n/ko_KR/auth.php new file mode 100755 index 0000000000..e83114b96a --- /dev/null +++ b/application/i18n/ko_KR/auth.php @@ -0,0 +1,70 @@ + array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'exists' => '입력한 이메일이 이미 사용중입니다.', + 'length' => '이메일은 최소 4~64자가 입력되어야 합니다.', + 'required' => '이메일을 입력해주세요.', + ) , + 'name' => array( + 'length' => '이름은 최소 3~100자가 입력되어야 합니다.', + 'required' => '이름을 입력해주세요.', + 'standard_text' => 'username에 사용할 수 없는 문자가 포함되어 있습니다.', + ) , + 'current_password' => array( + 'length' => '암호는 최소 8자가 입력되어야 합니다.', + 'login error' => '입력하신 비밀번호와 이메일이 맞는지 확인바랍니다.', + 'matches' => '비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다.', + 'required' => '비밀번호를 입력해주세요.', + 'alpha_dash' => '비밀번호에는 알파벳, 일부 기호(#,@,_,-), 숫자만 허용됩니다.', + 'incorrect' => '입력하신 비밀번호와 계정이 맞지 않습니다. 다시 입력해주세요.', + ) , + 'new_password' => array( + 'length' => '암호는 최소 8자가 입력되어야 합니다.', + 'login error' => '입력하신 비밀번호와 이메일이 맞는지 확인바랍니다.', + 'matches' => '비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다.', + 'required' => '비밀번호를 입력해주세요.', + 'alpha_dash' => '비밀번호에는 알파벳, 일부 기호(#,@,_,-), 숫자만 허용됩니다.', + ) , + 'password' => array( + 'default' => '로그인 에러입니다.', + 'length' => '암호는 최소 5~16자가 입력되어야 합니다.', + 'login error' => '입력하신 비밀번호가 맞는지 확인바랍니다.', + 'matches' => '입력하신 비밀번호가 동일하지 않습니다. 비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다.', + 'required' => '비밀번호를 입력해주세요.', + 'riverid server down' => '인증서버가 다운되었습니다. 나중에 다시 입력해주세요.', + 'alpha_dash' => '비밀번호에는 알파벳, 일부 기호(#,@,_,-), 숫자만 허용됩니다.', + ) , + 'password_confirm' => array( + 'matches' => '비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다.', + ) , + 'resetemail' => array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'invalid' => '죄송합니다. 입력하신 이메일이 저장되어 있지 않습니다.', + 'required' => '이메일을 입력해주세요.', + ) , + 'role' => array( + 'superadmin_modify' => '슈퍼 관리자만이 슈퍼 관리자를 수정하거나 일반 사용자를 관리자로 업그레이드할 수 있습니다.', + ) , + 'roles' => array( + 'alpha_numeric' => '잘못된 역할 형식입니다.', + 'length' => '역할은 최소 5~30자가 입력되어야 합니다.', + 'required' => '반드시 하나 이상의 역할을 정의해야합니다.', + 'values' => '반드시 ADMIN 과 USER의 역할 중 하나를 선택해야 합니다.', + ) , + 'username' => array( + 'admin' => '관리자 역할은 수정할 수 없습니다.', + 'alpha_numeric' => 'username 필드에는 반드시 문자와 숫자만 사용가능합니다.', + 'exists' => '죄송합니다. 입력하신 username이 이미 사용중입니다.', + 'length' => 'username은 최소 2~100자가 입력되어야 합니다.', + 'login error' => '정확한 username을 입력하였는지 확인 바랍니다.', + 'required' => 'username을 입력해주세요.', + 'superadmin' => '슈퍼 관리자 역할은 수정할 수 없습니다.', + 'csrf' => 'CSRF 공경 가능성. 사용자를 추가하거나 사용자 정보를 수정할 의도였습니까?', + ) , +); diff --git a/application/i18n/ko_KR/bug.php b/application/i18n/ko_KR/bug.php new file mode 100755 index 0000000000..149f553fe9 --- /dev/null +++ b/application/i18n/ko_KR/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => '정확한 보안문자를 입력해주세요.', + 'required' => '보안문자를 입력해주세요.', + ) , + 'email' => array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'length' => '이메일은 최소 4~64자가 입력되어야 합니다.', + 'required' => '체크박스 체크 시 이메일 입력은 필수입니다.', + ) , + 'error' => array( + 'required' => '오류 항목은 필수입니다.', + ) , + 'subject' => array( + 'length' => '제목은 최소 3글자 이상이 입력되어야 합니다.', + 'required' => '제목을 입력해주세요.', + ) , + 'yourname' => array( + 'length' => '이름은 최소 3글자 이상이 입력되어야 합니다.', + 'required' => '이름을 입력해주세요.', + ) , +); diff --git a/application/i18n/ko_KR/category.php b/application/i18n/ko_KR/category.php new file mode 100755 index 0000000000..6760eef94b --- /dev/null +++ b/application/i18n/ko_KR/category.php @@ -0,0 +1,33 @@ + array( + 'length' => '컬러필드 입력은 6자 이상이어야 합니다.', + 'required' => '컬러필드를 입력해주세요.', + ) , + 'category_description' => array( + 'required' => '상세설명을 입력해주세요.', + ) , + 'category_image' => array( + 'size' => '업로드한 이미지 크기가 50KB이하인지 확인바랍니다.', + 'type' => '다음의 이미지 포맷만 사용이 가능합니다. .JPG, .PNG and .GIF. 이 아닐 경우 이미지가 나타나지 않습니다.', + 'valid' => '허용되지 않은 이미지 포맷의 경우 이미지가 나타나지 않습니다.', + ) , + 'category_title' => array( + 'length' => '제목은 최소3이상 80자 이하여야 합니다.', + 'required' => '제목을 입력해주세요.', + ) , + 'parent_id' => array( + 'already_parent' => '서브카테고리안에 서브카테고리를 추가로 만들 수 없습니다.', + 'exists' => '상위 카테고리가 존재하지 않습니다.', + 'numeric' => '상위 카테고리는 숫자여야 합니다.', + 'parent_trusted' => '이 상위 카테고리는 스페셜카테고리가 될 수 없습니다.', + 'required' => '상위 카테고리를 입력해주세요.', + 'same' => '상위 카테고리와 하위 카테고리는 동일할 수 없습니다.', + 'special' => '스페셜카테고리는 서브카테고리가 될 수 없습니다.', + ) , +); diff --git a/application/i18n/ko_KR/comments.php b/application/i18n/ko_KR/comments.php new file mode 100755 index 0000000000..43152d1deb --- /dev/null +++ b/application/i18n/ko_KR/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => '정확한 보안문자를 입력해주세요.', + 'required' => '보안문자를 입력해주세요.', + 'valid' => '비밀번호가 맞지 않습니다.', + ) , + 'comment_author' => array( + 'length' => '이름은 최소 3자 이상이어야 합니다.', + 'required' => '이름을 입력해주세요.', + ) , + 'comment_description' => array( + 'required' => '코멘트를 입력해주세요.', + ) , + 'comment_email' => array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'length' => '이메일은 최소 4~64자가 입력되어야 합니다.', + 'required' => '체크박스 체크 시 이메일 입력은 필수입니다.', + ) , +); diff --git a/application/i18n/ko_KR/contact.php b/application/i18n/ko_KR/contact.php new file mode 100755 index 0000000000..af2cccd1ba --- /dev/null +++ b/application/i18n/ko_KR/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => '정확한 보안문자를 입력해주세요.', + 'valid' => '유효한 보안코드를 입력하세요.', + 'required' => '보안문자를 입력해주세요.', + ) , + 'contact_email' => array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'length' => '이메일은 최소 4~64자가 입력되어야 합니다.', + 'required' => '체크박스 체크 시 이메일 입력은 필수입니다.', + ) , + 'contact_message' => array( + 'required' => '메시지를 입력해주세요.', + ) , + 'contact_name' => array( + 'length' => '이름은 최소 3자 이상이어야 합니다.', + 'required' => '이름을 입력해주세요.', + ) , + 'contact_subject' => array( + 'length' => '제목은 최소 3자 이상이어야 합니다.', + 'required' => '제목을 입력해주세요.', + ) , + 'email_send' => array( + 'failed' => '메시지 전송 시 오류가 발생했습니다.', + ) , +); diff --git a/application/i18n/ko_KR/core.php b/application/i18n/ko_KR/core.php new file mode 100755 index 0000000000..268a7ccd7c --- /dev/null +++ b/application/i18n/ko_KR/core.php @@ -0,0 +1,35 @@ + 'config 파일', + 'controller' => '컨트롤러', + 'driver' => '드라이버', + 'driver_implements' => '%s 드라이버는 %s 라이브러리를 위한 것이며, %s 인터페이스를 구현해야 합니다.', + 'driver_not_found' => '%s 드라이버는 %s 라이브러리를 위한 것이며, 찾을 수 없습니다.', + 'errors_disabled' => '홈페이지에 가거나 다시 시도해보십시오..', + 'error_file_line' => '%s [%s]:', + 'generic_error' => '요청을 완수할 수 없습니다.', + 'helper' => '헬퍼', + 'invalid_filetype' => '요청한 파일타입, .%s, 은 보기 config 파일에서 허용되지 않습니다.', + 'invalid_method' => '무효한 메쏘드 %s 가 %s 에서 호출되었습니다.', + 'invalid_property' => '속성 %s 가 %s 클래스 내에서 존재하지 않습니다.', + 'library' => '라이브러리', + 'log_dir_unwritable' => '로그 경로가 쓰기가능하지 않습니다: %s', + 'model' => '모델', + 'no_controller' => 'Ushahidi 는 이 요청을 수행할 컨트롤러를 결정할 수 없습니다: %s', + 'no_default_route' => '기본 경로를 config/routes.php 에서 설정해주십시오.', + 'page_not_found' => '요청한 페이지를, %s, 찾을 수 없습니다.', + 'report_bug' => '이 이슈를 Ushahidi 에 보고하기', + 'resource_not_found' => '요청한 %s, %s, 를 찾을 수 없습니다.', + 'stack_trace' => '스택 트레이스', + 'stats_footer' => '{execution_time} 초 동안 로딩되었고, {memory_usage} 의 메모리를 사용중입니다. Ushahidi v%s 가 생성함.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => '한 페이지 요청 당 한 개의 Ushahidi 인스턴스만 가능합니다.', + 'uncaught_exception' => 'Uncaught 예외 %s: %s 가 발생하였습니다. %s 파일의 %s 행', + 'view' => '보기', + 'view_set_filename' => '렌더를 호출하기 전 보기 파일명을 반드시 설정해야 합니다.', +); diff --git a/application/i18n/ko_KR/database.php b/application/i18n/ko_KR/database.php new file mode 100755 index 0000000000..aa173b3d34 --- /dev/null +++ b/application/i18n/ko_KR/database.php @@ -0,0 +1,10 @@ + '데이터베이스 : %s', + 'table_not_found' => ' 테이블 "%s" 를 데이터베이스에서 찾을 수 없습니다. 현재 버전의 Ushahidi 가 최신 버전의 데이터베이스을 사용 중인지 확인해주세요.', +); diff --git a/application/i18n/ko_KR/datetime.php b/application/i18n/ko_KR/datetime.php new file mode 100755 index 0000000000..3426267338 --- /dev/null +++ b/application/i18n/ko_KR/datetime.php @@ -0,0 +1,86 @@ + '오전', + 'friday' => array( + 'abbv' => '금', + 'full' => '금요일', + ) , + 'monday' => array( + 'abbv' => '월', + 'full' => '월요일', + ) , + 'pm' => '오후', + 'saturday' => array( + 'abbv' => '토', + 'full' => '토요일', + ) , + 'sunday' => array( + 'abbv' => '일', + 'full' => '일요일', + ) , + 'thursday' => array( + 'abbv' => '목', + 'full' => '목요일', + ) , + 'tuesday' => array( + 'abbv' => '화', + 'full' => '화요일', + ) , + 'wednesday' => array( + 'abbv' => '수', + 'full' => '수요일', + ) , + 'january' => array( + 'abbv' => '1', + 'full' => '1월', + ) , + 'february' => array( + 'abbv' => '2', + 'full' => '2월', + ) , + 'march' => array( + 'abbv' => '3', + 'full' => '3월', + ) , + 'april' => array( + 'abbv' => '4', + 'full' => '4월', + ) , + 'may' => array( + 'abbv' => '5', + 'full' => '5월', + ) , + 'june' => array( + 'abbv' => '6', + 'full' => '6월', + ) , + 'july' => array( + 'abbv' => '7', + 'full' => '7월', + ) , + 'august' => array( + 'abbv' => '8', + 'full' => '8월', + ) , + 'september' => array( + 'abbv' => '9', + 'full' => '9월', + ) , + 'october' => array( + 'abbv' => '10', + 'full' => '10월', + ) , + 'november' => array( + 'abbv' => '11', + 'full' => '11월', + ) , + 'december' => array( + 'abbv' => '12', + 'full' => '12월', + ) , +); diff --git a/application/i18n/ko_KR/feeds.php b/application/i18n/ko_KR/feeds.php new file mode 100755 index 0000000000..3b1ad20246 --- /dev/null +++ b/application/i18n/ko_KR/feeds.php @@ -0,0 +1,19 @@ + '날짜', + 'feed_name' => array( + 'length' => 'feed 제목은 최소 3자이상 70자이하로 입력되어야 합니다.', + 'required' => 'feed 제목을 입력해주세요.', + ) , + 'feed_url' => array( + 'required' => 'feed\'s URL을 입력해주세요.', + 'url' => '정확한 URL을 입력해주세요. 예) http://www.ushahidi.com', + ) , + 'source' => '소스', + 'title' => '제목', +); diff --git a/application/i18n/ko_KR/footer.php b/application/i18n/ko_KR/footer.php new file mode 100755 index 0000000000..931174998a --- /dev/null +++ b/application/i18n/ko_KR/footer.php @@ -0,0 +1,9 @@ + '현재 시스템에 php5-curl이 설치되어 있지 않습니다.', +); diff --git a/application/i18n/ko_KR/form.php b/application/i18n/ko_KR/form.php new file mode 100755 index 0000000000..3a1b0e79b4 --- /dev/null +++ b/application/i18n/ko_KR/form.php @@ -0,0 +1,48 @@ + array( + 'default' => '입력한 기본값이 잘못되었습니다.', + 'length' => '필드 이름은 최소 3자이상 200자이하로 입력해주세요.', + ) , + 'field_height' => array( + 'between' => '필드 높이는 0에서 50 사이로 입력해주세요.', + ) , + 'field_isdate' => array( + 'between' => '잘못된 날짜값을 입력했습니다.', + 'required' => 'Yes 또는 No를 선택해주세요.', + ) , + 'field_name' => array( + 'length' => '필드 이름은 최소 3자이상 100자이하로 입력해주세요.', + 'required' => '필드 이름을 입력해주세요.', + 'duplicate' => '필드명이 이미 현재 폼에서 사용중입니다. 다른 이름을 입력하세요', + ) , + 'field_required' => array( + 'between' => '잘못된 값을 입력했습니다.', + 'required' => 'Yes 또는 No를 선택해주세요.', + ) , + 'field_type' => array( + 'numeric' => '필드 종류를 선택해주세요.', + 'required' => '필드 종류를 선택해주세요.', + ) , + 'field_width' => array( + 'between' => '필드넓이는 0에서 300사이로 입력해주세요.', + ) , + 'form_description' => array( + 'required' => 'form\'s 에 대한 상세내용을 입력해주세요.', + ) , + 'form_id' => array( + 'default' => '기본폼은 삭제할 수 없습니다.', + 'numeric' => '추가할 폼을 선택해주세요.', + 'required' => '추가할 폼을 선택해주세요.', + ) , + 'form_title' => array( + 'length' => '폼 이름은 최소 3자이상 100자이하로 입력해주세요.', + 'required' => '폼 이름을 입력해주세요.', + 'exists' => '해당 타이틀의 폼이 이미 존재합니다. 다른 이름을 선택하세요', + ) , +); diff --git a/application/i18n/ko_KR/imap.php b/application/i18n/ko_KR/imap.php new file mode 100755 index 0000000000..8b7b3bc012 --- /dev/null +++ b/application/i18n/ko_KR/imap.php @@ -0,0 +1,10 @@ + 'IMAP stream을 열 수 없습니다.', + 'unsupported_service' => '이메일 서비스가 지원되지 않습니다.', +); diff --git a/application/i18n/ko_KR/installer.php b/application/i18n/ko_KR/installer.php new file mode 100755 index 0000000000..95b1aa749a --- /dev/null +++ b/application/i18n/ko_KR/installer.php @@ -0,0 +1,84 @@ + '기본 경로', + 'database' => '데이터베이스', + 'database_host' => '데이터베이스 호스트', + 'database_host_description' => 'Ushahidi를 개인서버에서 설치 시 "localhost"를 입력하시고, 웹호스팅을 이용 할 경우 웹 호스팅 회사에 관련 정보를 문의하세요.', + 'database_name' => '데이터베이스 이름', + 'database_name_description' => 'Ushahidi를 설치하고자 하는 데이터 베이스의 이름', + 'db_information_link' => '더 많은 정보는 this article on the wiki that talks about databases in more detail', + 'default_language' => '기본 언어 (Locale)', + 'default_language_description' => '각각의 언어에 맞는 Ushahidi 언어 파일이 제공됩니다. 더 많은 정보는 add your own', + 'disable' => '사용중지', + 'enable' => '사용가능', + 'error_summary' => '하단의 내용은 발생오류에 대한 요약본입니다.', + 'files_location_text' => 'Ushahidi의 설치위치 입니다. 해당 되는 설치위치는 자동으로 찾아 지며, 정확한 주소인지 확인바랍니다. 만약, 해당 칸이 비어 있다면 그것은 Ushahidi가 최상위 디렉토리에 설치되어 나타나지 않는 것입니다.', + 'finished' => '완료', + 'general' => '일반', + 'google_key' => 'Google API Key', + 'google_key_description' => '누구나 api키를 받을 수 있습니다. 지금!!', + 'go_back' => '뒤로가기', + 'index' => array( + 'advanced' => '고급설치', + 'advanced_installation_description' => '기본 설치과정은 5step 안에서 완료됩니다. 이는 서버, 지도, 사이트이름, contact 설명을 포함합니다.', + 'basic_installation' => '기본 설치', + 'basic_installation_description' => 'website\'s의 root 디렉토리와 데이터베이스 정보만 있으면 쉽고 빠르게 설치가 가능합니다. ', + 'proceed' => '진행', + 'welcome' => 'Ushahidi 설치 프로세스 시작을 환영합니다. 설치 타입을 선택하세요.', + ) , + 'installation_successful' => '설치가 성공적으로 완료되었습니다.', + 'mail_server' => '메일 서버', + 'mail_server_host' => '메일 서버 호스트', + 'mail_server_host_description' => '예시: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => '메일 서버 암호 ', + 'mail_server_password_description' => '암호는 보통 이메일 암호와 동일합니다.', + 'mail_server_port' => '메일 서버 포트', + 'mail_server_port_description' => '일반 포트: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => '메일 서버 타입', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) 혹은 Post Office Protocol (POP). 차이점은 무엇인가?', + 'mail_server_username' => '메일 서버 사용자이름', + 'mail_server_username_description' => '사용하는 이메일이 Gmail, Hotmail, 또는 Yahoo Mail, 사용자이름에 이메일 주소를 입력해주세요.', + 'map' => '지도', + 'map_provider' => '지도 공급자', + 'map_provider_description' => 'Ushahidi는 Google, Bing, Yahoo, Open Street Map 에서 모두 잘 작동합니다. 가장 적합한 지도를 고르세요.', + 'other_steps' => '다른 단계.....', + 'password' => '암호', + 'password_description' => '데이터 베이스 암호', + 'previous' => '앞으로', + 'restart_apache' => 'Apache Server를 재시작하세요.', + 'select_mail_server_ssl' => '사용가능 또는 사용중지 SSL', + 'select_mail_server_ssl_description' => '특정 메일 서버 연결 시 SSL 를 요구합니다. 가능하다면 이를 사용할 것을 추천합니다.', + 'setup_sms' => 'SMS 서버를 설정하세요.', + 'site_email' => '사이트 이메일 주소', + 'site_email_alerts' => '사이트 알림 이메일 주소', + 'site_email_alerts_description' => '방문자가 이메일 알림 서비스를 신청 시 사용자는 이 주소에서 이메일을 받게 됩니다. 이 이메일 주소는 사이트 이메일 주소와 다른 이메일을 사용해야 합니다.', + 'site_email_description' => '사이트 이메일 주소는 대표 이메일로 사용됩니다.', + 'site_name' => '사이트 이름', + 'site_name_description' => '사이트 이름 설명', + 'site_tagline' => '사이트 태그라인', + 'site_tagline_description' => '사이트 태그라인 설명', + 'summary' => array( + 'text_1' => '하단의 파일과 폴더는 쓰기 권한이 설정되어야 합니다.', + 'text_2' => '

파일 권한을 변경하기 위한 지침:

+ ', + 'text_3' => '파일 권한 변경을 포함하여 다음과 같은 파일과 폴더가 쓰기 권한이 설정되어 있는 지 확인하시기 바랍니다.', + 'text_4' => '설치 과정에 대해 다시 한 번 설치 프로세스를 확인 후 따라하시기 바랍니다.', + ) , + 'table_prefix' => 'Table Prefix', + 'table_prefix_description' => '보통은 table prefix를 수정할 필요가 없습니다. 그러나, 하나의 데이터 베이스에 2개 이상의 Ushahidi를 설치 할 경우 여기서 수정이 가능합니다.', + 'title' => '제목', + 'to_login' => '로그인', + 'upload_data' => '리포트 데이터 업로드', + 'username' => '사용자 이름', + 'username_description' => '데이터베이스 사용자이름', + 'use_credentials' => '그리고 다음의 자격 증명을 사용', + 'view_site' => '사이트 보기', +); diff --git a/application/i18n/ko_KR/layer.php b/application/i18n/ko_KR/layer.php new file mode 100755 index 0000000000..637025bd81 --- /dev/null +++ b/application/i18n/ko_KR/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => '컬러필드는 6자이상이어야 합니다.', + 'required' => '컬러필드를 입력해주세요.', + ) , + 'layer_file' => array( + 'type' => '다음의 파일포맷만 사용가능합니다. .KMZ, .KML.', + 'valid' => '허용되지 않은 파일포맷의 경우 나타나지 않습니다.', + ) , + 'layer_name' => array( + 'length' => '이름은 최소 3자이상 80자이하여야 합니다.', + 'required' => '이름을 입력해주세요.', + ) , + 'layer_url' => array( + 'atleast' => 'KML Url 또는 File 을 입력해주세요.', + 'both' => 'KML file 과 url을 동시에 사용할 수 없습니다.', + 'url' => '정확한 URL을 입력해주세요. 예. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/ko_KR/libraries.php b/application/i18n/ko_KR/libraries.php new file mode 100755 index 0000000000..a53f96b718 --- /dev/null +++ b/application/i18n/ko_KR/libraries.php @@ -0,0 +1,27 @@ + 'Akismet 서버와 연결할 수 없습니다.', + 'akismet_cannot_retrieve' => 'Akismet 에 반응을 검색할 수 없습니다.', + 'api_library_not_found' => 'API 라이브러리: %s 을 위한 %s 클래스를 찾을 수 없습니다. API task routing table를 확인해 보세요.', + 'askimet_invalid_apikey' => '유효하지 않은 Akismet API 키입니다.', + 'clickatell_fopen_error' => 'fopen를 보내는 과정에서 오류가 발생하셨습니다. PHP가 OpenSSL를 갖고 있는지 혹은 PHP 버젼이 5.2 보다 높은지 확인해 보세요.', + 'clickatell_message_too_long' => '현재 유니코드 메시지가 너무 깁니다. (현재 길이=', + 'clickatell_no_destination_address' => '목표 주소를 명확히 해주세요(TO)!', + 'clickatell_no_sender_address' => '출처를 명확히 해주세요(FROM)!', + 'clickatell_unicode_message_too_long' => '현재 유니코드 메시지가 너무 깁니다. (현재 길이=', + 'clickatell_unsupported_method' => '지원하지 않는 보내기 형식입니다.', + 'invalid_api_library' => '%s 는 유효하지 않는 API library 입니다. 모든 API library는 %s 의 서브클래스이어야 합니다.', + 'upgrade_directory_not_deleted' => '디렉토리 %s 는 삭제 할 수 없습니다.', + 'upgrade_extracting_error' => '추출하는 동안 에러 발생 : %s', + 'upgrade_failed' => '최선 버젼의 우샤히디를 다운 받는데 실패하였습니다. HTTP status code', + 'upgrade_file_not_copied' => '파일 %s 는 복사 할 수 없습니다.', + 'upgrade_file_not_deleted' => '파일 %s 는 삭제 할 수 없습니다.', + 'upgrade_title' => '유샤히디 업그레이드 스크립트', + 'upgrade_zip_error' => '다운로드된 Ushahidi zip file %s, 쓰기를 할 수 없습니다.', + 'riverid_variable_not_available' => '%s 는 RiverID class에서 사용할 수 없습니다.', +); diff --git a/application/i18n/ko_KR/maintenance.php b/application/i18n/ko_KR/maintenance.php new file mode 100644 index 0000000000..65b973934b --- /dev/null +++ b/application/i18n/ko_KR/maintenance.php @@ -0,0 +1,9 @@ + '웁스!!! 죄송합니다. 현재, 사이트 오류로 수정작업중입니다. 약 5분후에 다시 접속해주세요. ', +); diff --git a/application/i18n/ko_KR/message.php b/application/i18n/ko_KR/message.php new file mode 100755 index 0000000000..7d7844bbbd --- /dev/null +++ b/application/i18n/ko_KR/message.php @@ -0,0 +1,27 @@ + array( + 'default' => '정확한 보안문자를 입력해주세요.', + 'required' => '보안문자를 입력해주세요.', + ) , + 'email' => array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'length' => '이메일은 최소 4~64자가 입력되어야 합니다.', + 'required' => '체크박스 체크 시 이메일 입력은 필수입니다.', + ) , + 'message' => array( + 'required' => '코멘트 입력은 필수입니다.', + ) , + 'name' => array( + 'length' => '이름은 최소3자이상이어야 합니다.', + 'required' => '이름입력은 필수입니다.', + ) , + 'phone' => array( + 'length' => '전화번호를 다시 입력해주세요.', + ) , +); diff --git a/application/i18n/ko_KR/mhi.php b/application/i18n/ko_KR/mhi.php new file mode 100755 index 0000000000..da4f9b3e65 --- /dev/null +++ b/application/i18n/ko_KR/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => '정확한 보안문자를 입력해주세요.', + 'required' => '보안문자를 입력해주세요.', + ) , + 'contact_email' => array( + 'email' => '입력한 이메일 주소가 유효하지 않습니다.', + 'required' => '정확한 이메일 주소를 입력해주세요.', + ) , + 'contact_message' => array( + 'required' => '메시지를 입력해주세요.', + ) , + 'contact_subject' => array( + 'length' => '제목은 최소3자 이상이어야 합니다.', + 'required' => '제목을 입력해주세요.', + ) , +); diff --git a/application/i18n/ko_KR/notifications.php b/application/i18n/ko_KR/notifications.php new file mode 100755 index 0000000000..11af5e2ba7 --- /dev/null +++ b/application/i18n/ko_KR/notifications.php @@ -0,0 +1,35 @@ + '이 메시지는 귀하의 웹사이트에서 전송되었습니다..', + 'admin_login_url' => '관리자 로그인', + 'admin_new_comment' => array( + 'message' => '새로운 댓글이 등록되었습니다. 답변은 : ', + 'subject' => '새 댓글', + ) , + 'admin_new_email' => array( + 'message' => '새로운 이메일이 도착하였습니다.', + 'subject' => '새 이메일', + ) , + 'admin_new_report' => array( + 'message' => '새로운 리포트가 등록되었습니다.', + 'subject' => '새 리포트', + ) , + 'admin_new_sms' => array( + 'message' => '새로운 문자가 도착하였습니다.', + 'subject' => '새 문자', + ) , + 'member_new_alert' => array( + 'message' => '새 알람을 받았습니다.', + 'subject' => '새로운 알람!', + ) , + 'member_new_message' => array( + 'message' => '비공개 메시지를 받았습니다.', + 'subject' => '새 비공개 메시지', + 'footer' => '비공개 메시지 응답은 : ', + ) , +); diff --git a/application/i18n/ko_KR/page.php b/application/i18n/ko_KR/page.php new file mode 100644 index 0000000000..fa410f112b --- /dev/null +++ b/application/i18n/ko_KR/page.php @@ -0,0 +1,18 @@ + array( + 'required' => '페이지의 제목을 입력해 주세요.', + 'length' => '페이지의 제목은 최소 3자 최대 150자이어야 합니다.', + ) , + 'page_tab' => array( + 'required' => '페이지 탭에 이름을 입력해 주세요.', + ) , + 'page_description' => array( + 'required' => '페이지를 설명하는 글을 입력해 주세요.', + ) , +); diff --git a/application/i18n/ko_KR/permissions.php b/application/i18n/ko_KR/permissions.php new file mode 100644 index 0000000000..98f71d8372 --- /dev/null +++ b/application/i18n/ko_KR/permissions.php @@ -0,0 +1,27 @@ + '리포트 보기', + 'reports_edit' => '리포트 생성/수정/삭제 ', + 'reports_approve' => '리포트 승인', + 'reports_verify' => '리포트 확인', + 'reports_comments' => '리포트 댓글 관리', + 'reports_download' => '다운로드 리포트', + 'reports_upload' => '업로드 리포트', + 'messages' => '메시지 관리', + 'messages_reporters' => '메시지 리포터 관리', + 'stats' => '통계 보기', + 'settings' => '세팅 수정', + 'manage' => '패널 관리', + 'users' => '사용자 관리', + 'manage_roles' => '역할 관리', + 'checkin' => '체크인 가능', + 'checkin_admin' => '체크인 관리', + 'admin_ui' => '관리자 UI 접속', + 'member_ui' => '멤버 UI 접속', + 'delete_all_reports' => '모든 리포트 삭제', +); diff --git a/application/i18n/ko_KR/private_message.php b/application/i18n/ko_KR/private_message.php new file mode 100644 index 0000000000..37c36cc720 --- /dev/null +++ b/application/i18n/ko_KR/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => '반드시 Parent ID는 숫자여야 합니다.', + ) , + 'private_to' => array( + 'required' => '이 항목은 필수입니다.', + 'exists' => '메시지를 받는 사용자가 존재하지 않습니다.', + ) , + 'private_subject' => array( + 'required' => '제목 항목은 필수입니다.', + 'length' => '제목은 3~150자 이내여야 합니다.', + ) , + 'private_message' => array( + 'required' => '메시지 항목은 필수입니다.', + ) , +); diff --git a/application/i18n/ko_KR/report.php b/application/i18n/ko_KR/report.php new file mode 100755 index 0000000000..6efbf516e9 --- /dev/null +++ b/application/i18n/ko_KR/report.php @@ -0,0 +1,125 @@ + '에러!', + 'country_name' => array( + 'single_country' => '리포트 배치범위는 한 국가안에서만 가능합니다. 현재 리포트 위치를 %s 안으로만 해주세요.', + ) , + 'data_include' => array( + 'between' => '다운로드할 정확한 아이템을 선택하세요.', + 'numeric' => '다운로드할 정확한 아이템을 선택하세요.', + ) , + 'data_active' => array( + 'between' => '리포트 승인대기, 리포트승인, 둘다 중 하나를 선택해주세요.', + 'numeric' => '리포트 승인대기, 리포트승인, 둘다 중 하나를 선택해주세요.', + 'required' => '리포트 승인대기, 리포트승인, 둘다 중 하나를 선택해주세요.', + ) , + 'data_verified' => array( + 'between' => '리포트 확인대기, 리포트확인, 둘다 중 하나를 선택해주세요.', + 'numeric' => '리포트 확인대기, 리포트확인, 둘다 중 하나를 선택해주세요.', + 'required' => '리포트 확인대기, 리포트확인, 둘다 중 하나를 선택해주세요.', + ) , + 'data_point' => array( + 'between' => '다운로드할 정확한 타입의 리포트를 선택하세요.', + 'numeric' => '다운로드할 정확한 타입의 리포트를 선택하세요.', + 'required' => '다운로드할 정확한 타입의 리포트를 선택하세요.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => '정확한 시작 날짜를 입력하세요.', + 'range' => '시작 날짜를 입력하세요. 오늘 날짜보다 미래일 수 없습니다.', + ) , + 'incident_active' => array( + 'between' => '이 리포트 승인을 위해 정확한 값을 입력하세요.', + 'required' => '이 리포트 승인을 위해 정확한 값을 입력하세요.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'am/pm을 정확히 입력해주세요.', + ) , + 'incident_category' => array( + 'numeric' => '카테고리를 정확히 입력해주세요.', + 'required' => '카테고리를 입력해주세요.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => '날짜를 정확히 입력해주세요.', + 'date_mmddyyyy' => '날짜를 정확히 입력해주세요.', + 'required' => '날짜를 입력해주세요.', + ) , + 'incident_description' => array( + 'required' => '상세설명을 입력해주세요.', + ) , + 'incident_hour' => array( + 'between' => '정확한 시간을 입력해주세요.', + 'required' => '시간을 입력해주세요.', + ) , + 'incident_information' => array( + 'alpha' => '정보 확률의 정확한 값을 입력해주세요.', + 'length' => '정보 확률의 정확한 값을 입력해주세요.', + ) , + 'incident_minute' => array( + 'between' => '정확한 분을 입력해주세요.', + 'required' => '분을 입력해주세요.', + ) , + 'incident_news' => array( + 'url' => '정확한 뉴스 소스 URL을 입력해주세요.', + ) , + 'incident_photo' => array( + 'size' => '사진 사이즈의 최대크기는 2MB입니다.', + 'type' => '사용가능한 파일포맷은 .JPG, .PNG and .GIF. 입니다. 이 외의 파일포맷은 사용할 수 없습니다.', + 'valid' => '허용되지 않은 파일포맷의 경우 사진이 나타나지 않습니다.', + ) , + 'incident_source' => array( + 'alpha' => '소스 신뢰도의 정확한 값을 입력해주세요.', + 'length' => '소스 신뢰도의 정확한 값을 입력해주세요.', + ) , + 'incident_title' => array( + 'length' => '제목은 최소3자이상 200자이하이어야 합니다.', + 'required' => '제목을 입력해주세요.', + 'csrf' => 'CSRF 공격에 노출될 수 있습니다. 리포트를 만들거나 수정하시겠습니까? +참조 : CSRF 설명 http://goo.gl/gFULR', + ) , + 'incident_verified' => array( + 'between' => '이 리포트 확인을 위해 정확한 값을 입력해주세요.', + 'required' => '이 리포트 확인을 위해 정확한 값을 입력해주세요.', + ) , + 'incident_video' => array( + 'url' => '비디오 링크 URL을 정확히 입력해주세요.', + ) , + 'latitude' => array( + 'between' => '위도값을 정확히 입력해주세요.', + 'required' => '위도값을 입력해주세요. 지도상의 포인트를 클릭하세요.', + ) , + 'locale' => array( + 'alpha_dash' => '로컬 필드 값이 잘못되었습니다.', + 'exists' => '이 리포트는 이미 해당 언어로 번역되었습니다.', + 'length' => '로컬 필드 값이 잘못되었습니다.', + 'locale' => '원본 리포트와 번역본이 동일한 로컬(언어)입니다.', + 'required' => '로컬값을 입력해주세요.', + ) , + 'location_name' => array( + 'length' => '위치 이름은 최소 3자이상 200자이하 이어야 합니다.', + 'required' => '위치 이름을 입력해주세요.', + ) , + 'longitude' => array( + 'between' => '정확한 경도값을 입력해주세요.', + 'required' => '경도값을 입력해주세요. 지도상의 포인트를 클릭하세요.', + ) , + 'person_email' => array( + 'email' => '정확한 이메일 주소를 입력해주세요.', + 'length' => '이메일은 최소 4자이상 64자 미만이어야 합니다.', + ) , + 'person_first' => array( + 'length' => '이름은 최소 3자이상 100자 미만이어야 합니다.', + ) , + 'person_last' => array( + 'length' => '성은 최소 3자이상 100자 미만이어야 합니다.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => '정확한 마감 일자를 입력해주세요.', + 'range' => '마감 일자를 입력해주세요. 오늘 날짜보다 미래일 수 없습니다.', + 'range_greater' => '시작일이 마감일 이 후 일 수 없습니다.', + ) , +); diff --git a/application/i18n/ko_KR/reporters.php b/application/i18n/ko_KR/reporters.php new file mode 100755 index 0000000000..299876d25f --- /dev/null +++ b/application/i18n/ko_KR/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => '정확한 위도값을 입력해주세요.', + 'required' => '위도값을 입력해주세요. 지도상의 포인트를 클릭하세요.', + ) , + 'level_id' => array( + 'numeric' => '정확한 리포트 레벨값을 입력해주세요.', + 'required' => '정확한 리포트 레벨값을 입력해주세요.', + ) , + 'location_name' => array( + 'length' => '위치 이름은 최소3자이상 200자이하 이어야 합니다.', + 'required' => '위치 이름을 입력해주세요.', + ) , + 'longitude' => array( + 'between' => '정확한 경도값을 입력해주세요.', + 'required' => '경도값을 입력해주세요. 지도상의 포인트를 클릭하세요.', + ) , + 'reporter_id' => array( + 'numeric' => '잘못된 리포터', + 'required' => '잘못된 리포터', + ) , +); diff --git a/application/i18n/ko_KR/reports.php b/application/i18n/ko_KR/reports.php new file mode 100644 index 0000000000..b99f624987 --- /dev/null +++ b/application/i18n/ko_KR/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => '체크한 아이템을 다시 한 번 확인해주세요.', + 'numeric' => '체크한 아이템을 다시 한 번 확인해주세요.', + 'categories_required' => '리포트는 승인 전 반드시 카테고리에 속해 있어야 합니다.', + ) , + 'action' => array( + 'permission' => '이것을 실행하기 위해 허락이 필요없습니다.', + ) , + 'uploadfile' => array( + 'required' => '업로드하기 위해 파일을 선택하세요', + 'type' => '업로드 파일은 .csv 또는 .xml 형식이어야 합니다', + 'valid' => '파일 업로드 필드에 유효하지 않는 파일이 포함되어 있습니다.', + ) , +); diff --git a/application/i18n/ko_KR/roles.php b/application/i18n/ko_KR/roles.php new file mode 100755 index 0000000000..995c01bb0a --- /dev/null +++ b/application/i18n/ko_KR/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => '상세 설명은 3자이상 100자 이하 여야 합니다.', + 'required' => '상세 설명을 입력해주세요.', + ) , + 'name' => array( + 'alpha_numeric' => '이름은 문자와 숫자로만 구성되어야 합니다.', + 'length' => '이름은 최소2자이상 30자이하 여야 합니다.', + 'nomodify' => '슈퍼 관리자는 변경 할 수 없습니다.', + 'required' => '이름을 입력해주세요.', + ) , + 'access_level' => array( + 'numeric' => '허용 레벨은 0 - 100 사이에서 입력해주세요.', + 'required' => '허용 레벨은 0 - 100 사이에서 입력해주세요.', + ) , + 'permissions' => array( + 'numeric' => '권한 필드는 0에서 부터 100까지의 숫자 이어야 합니다.', + ) , +); diff --git a/application/i18n/ko_KR/settings.php b/application/i18n/ko_KR/settings.php new file mode 100755 index 0000000000..a7c23d1b8e --- /dev/null +++ b/application/i18n/ko_KR/settings.php @@ -0,0 +1,213 @@ + array( + 'between' => '코멘트란의 내용이 유효하지 않습니다.', + 'required' => '코멘트란 입력은 필수입니다.', + ) , + 'allow_feed' => array( + 'between' => 'Feed 란 내용이 유효하지 않습니다.', + 'required' => 'Feed 항목 입력은 필수입니다.', + ) , + 'allow_alerts' => array( + 'between' => '알림 항목란의 내용이 유효하지 않습니다.', + 'required' => '알림 항목 입력은 필수입니다.', + ) , + 'allow_reports' => array( + 'between' => '리포트 항목란의 내용이 유효하지 않습니다.', + 'required' => '리포트 항목 입력은 필수입니다.', + ) , + 'allow_stat_sharing' => array( + 'between' => '통계공유 항목란의 내용이 유효하지 않습니다.', + 'required' => '통계공유 항목 입력은 필수입니다.', + ) , + 'api' => array( + 'default_record_limit' => 'API요청 당 기본 기록 수', + 'maximum_record_limit' => 'API 요청 당 최대 기록 수', + 'maximum_requests_per_ip_address' => 'IP 주소 당 API 최대 요청 허용 수', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Akismet 항목의 값이 유효하지 않습니다.', + 'length' => 'Akismet 항목의 값이 유효하지 않습니다.', + ) , + 'cache_pages' => array( + 'between' => '임시 페이지 입력은 필수입니다.', + 'required' => '임시 페이지 저장 항목 값이 유효하지 않습니다.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => '임시 페이지 저장 시간 값이 유효하지 않습니다.', + 'required' => '임시 페이지 저장 시간 입력은 필수입니다.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => '만약 서버에서 깔끔한 URLs 접속 설정이 안되어 있다면 사용 설정 전 서버 설정을 수정해야 합니다. 자세한 설명은 아래 링크를 참고해주세요.설명', + 'clean_url_enabled' => '이 옵션은 우샤히디 접속 시 깔끔한 URL로 접속할 수 있게 해줍니다. 예를 들어 "index.php" 가 URL에서 보이지 않게 접속됩니다.', + 'enable_clean_url' => '깔끔한 URLs 사용하기', + 'title' => '깔끔한 URLs', + ) , + 'clickatell_api' => array( + 'length' => 'Clickatell API 키는 20자 이내여야 합니다.', + 'required' => 'Clickatell API 키 입력은 필수입니다.', + ) , + 'clickatell_password' => array( + 'length' => 'Clickatell 비밀번호는 5~50자이내여야 합니다.', + 'required' => 'Clickatell 비밀번호 입력은 필수입니다.', + ) , + 'clickatell_username' => array( + 'length' => 'Clickatell 사용자명은 50자이내여야 합니다.', + 'required' => 'Clickatell 사용자명 입력은 필수입니다.', + ) , + 'configure_map' => '지도 수정', + 'default_location' => '기본 위치', + 'default_map_all' => array( + 'alpha_numeric' => '컬러 feed 항목 내용이 유효하지 않습니다.', + 'length' => '컬러 항목 입력은 6자이내여야 합니다.', + 'required' => '컬러 항목 입력은 필수입니다.', + ) , + 'default_map_view' => '기본 지도 뷰', + 'default_zoom_level' => '기본 줌 레벨', + 'download_city_list' => 'Geonames에서 도시 검색', + 'email_host' => array( + 'length' => '메일서버 포트 입력내용이 너무 길어요.', + 'numeric' => '메일서버 포트 항목은 반드시 숫자만 입력해야 합니다.', + ) , + 'email_password' => array( + 'length' => '메일서버 비밀번호 입력은 5~50자이내여야 합니다.', + 'required' => '메일서버 비밀번호 입력은 필수입니다.', + ) , + 'email_port' => array( + 'length' => '메일서버 포트 입력내용이 너무 길어요.', + 'numeric' => '메일서버 포트 항목은 반드시 숫자만 입력해야 합니다.', + ) , + 'email_servertype' => array( + 'length' => '메일서버 포트 입력내용이 너무 길어요.', + 'required' => '메일서버 타입 입력은 필수입니다.', + ) , + 'email_username' => array( + 'length' => '메일서버 사용자명은 50자 이내여야 합니다.', + 'required' => '메일서버 사용자명 입력은 필수입니다.', + ) , + 'facebook' => array( + 'title' => '페이스북 설정 옵션', + 'description' => '페이스북 어플리케이션 생성에 관련된 정보를 다음에서 얻을 수 있습니다.', + 'app_id' => '페이스북 App ID', + 'app_secret' => '페이스북 App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Google Analytics 항목에는 반드시 UA-XXXXX-XX 형식의 확인된 Web Property ID를 입력해야 합니다.', + ) , + 'https' => array( + 'enable_https' => 'HTTPS 사용', + 'https_disabled' => '이 옵션은 우샤히디를 암호화된 "https://" 를 사용하지 않고 접속하도록 합니다.', + 'https_enabled' => '이 옵션은 우샤히디를 암호화된 "https://" 를 사용하여 접속하도록 합니다.', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => '페이지(Frontend)에 필요한 항목에 유효한 값이 입력되지 않았습니다.', + 'required' => '페이지(Frontend) 항목은 필수입니다.', + ) , + 'items_per_page_admin' => array( + 'between' => '페이지(Admin)에 필요한 항목에 유효한 값이 입력되지 않았습니다.', + 'required' => '페이지(Admin) 항목은 필수입니다.', + ) , + 'map' => array( + 'default_location' => '다음의 순서로 지도 공급회사를 선택하세요. 공급회사를 선택하고, API 키를 공급회사 사이트에서 발급받으신 후 API항목에 입력하세요.', + 'zoom' => '줌 레벨', + ) , + 'map_provider' => array( + 'choose' => '지도 공급회사 선택', + 'enter_api' => '새로운 API 키 입력', + 'get_api' => 'API 키 발급', + 'info' => '다음의 순서로 지도 공급자를 선택하세요. 공급회사를 선택하고, API 키를 공급회사 사이트에서 발급받으신 후 API항목에 입력하세요.', + 'name' => '지도 공급회사', + ) , + 'map_timeline' => '지도 타임라인', + 'map_settings' => '지도 설정', + 'multiple_countries' => '현재 우샤히디 배치의 범위가 2개 나라 이상인가요?', + 'select_default_location' => '기본 나라를 선택해주세요.', + 'set_location' => '클릭 드래그로 위치를 정확히 설정해주세요.', + 'site' => array( + 'allow_clustering' => '리포트 그룹표시 활성화', + 'allow_comments' => '사용자 코멘트 활성화', + 'allow_feed' => 'RSS 뉴스피드 표시 활성화', + 'allow_alerts' => '사용자 알람받기 활성화', + 'allow_reports' => '사용자 리포트 활성화', + 'api_akismet' => 'Akismet 키', + 'banner' => '사이트 배너', + 'blocks_per_row' => '한 줄당 칸', + 'cache_pages' => '캐쉬페이지', + 'cache_pages_lifetime' => '캐쉬페이지 시간', + 'checkins' => '체크인 기능 활성화', + 'copyright_statement' => '사이트 저작권', + 'default_category_colors' => '대표 컬러', + 'default_category_icons' => '대표 아이콘', + 'delete_banner_image' => '배너 사진 삭제', + 'delete_default_map_all_icon' => '기본 아이콘 삭제', + 'display_contact_page' => '연락처 표시', + 'display_howtohelp_page' => '도움말 표시', + 'email_alerts' => '알림 이메일 주소', + 'email_notice' => '정확한 이메일 주소를 입력해주세요. 리포트와 연락처에 노출됩니다.', + 'email_site' => '사이트 이메일 주소', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => '한 페이지당 리포트 수 - 홈페이지 메인화면', + 'items_per_page_admin' => '한 페이지당 리포트 수 - 운영자', + 'kismet_notice' => '자동 스팸 방지 Akismet
무료 API KEY는 WordPress.com user account에 등록하시면 받을 수 있습니다.', + 'laconica_configuration' => 'Laconica 자격', + 'laconica_site' => 'Laconica Site', + 'language' => '사이트 언어', + 'manually_approve_users' => '사용자 수동 승인', + 'message' => '공지사항-HOME에 나타납니다.', + 'name' => '사이트 이름', + 'private_deployment' => '개인 배치', + 'require_email_confirmation' => '이메일 확인이 필요합니다.', + 'submit_report_message' => '리포트 신고 페이지 공지사항', + 'share_site_stats' => '사이트 통계 설정(유샤히디 서버에 저장)', + 'tagline' => '간단하게 사이트 설명을 입력해주세요.', + 'timezone' => '타임존', + 'title' => '사이트 설정', + 'twitter_configuration' => '트위터 해쉬태그 입력', + 'twitter_hashtags' => '해쉬태그는 콤마로 구분해주세요.', + ) , + 'site_email' => array( + 'email' => '사이트 이메일 주소가 유효하지 않습니다.', + 'length' => '이메일 주소는 4~100자 이내여야 합니다.', + ) , + 'site_name' => array( + 'length' => '사이트 이름은 3~50자 이내여야 합니다.', + 'required' => '사이트 이름은 필수입니다.', + ) , + 'site_tagline' => array( + 'length' => '태그는 3~100자이내여야 합니다.', + 'required' => '태그는 필수입니다.', + ) , + 'sms' => array( + 'clickatell_api' => 'Clickatell API ', + 'clickatell_check_balance' => 'Clickatell 잔고 확인', + 'clickatell_load_balance' => '잔고 읽어보기', + 'clickatell_password' => 'Clicktell 비밀번호', + 'clickatell_text_1' => 'Clicktell 회원가입 ', + 'clickatell_text_2' => 'Clicktell 접속 정보를 아래에 입력해주세요.', + 'clickatell_username' => 'Clicktell 사용자 이름', + 'flsms_text_1' => '아래의 입력란에 Frontline SMS와 연결할 전화번호를 입력합니다.', + 'flsms_text_2' => '기호를 빼고 숫자만 입력하세요.', + 'option_1' => '옵션1: Frontline SMS 사용하기', + 'option_2' => '옵션2: 글로벌 SMS Gateway 사용하기', + 'title' => 'SMS 설정 옵션', + ) , + 'sms_no1' => array( + 'length' => '1번째칸의 전화번호가 너무 길어요.', + 'numeric' => '전화번호는 숫자만 가능합니다.', + ) , + 'sms_no2' => array( + 'length' => '2번째칸의 전화번호가 너무 길어요.', + 'numeric' => '전화번호는 숫자만 가능합니다.', + ) , + 'sms_no3' => array( + 'length' => '3번째칸의 전화번호가 너무 길어요.', + 'numeric' => '전화번호는 숫자만 가능합니다.', + ) , +); diff --git a/application/i18n/ko_KR/sharing.php b/application/i18n/ko_KR/sharing.php new file mode 100755 index 0000000000..c0510b4493 --- /dev/null +++ b/application/i18n/ko_KR/sharing.php @@ -0,0 +1,25 @@ + '진입 날짜', + 'date_added' => '추가된 날짜', + 'last_access' => '마지막 접속', + 'sharing_color' => array( + 'length' => '컬러필드는 6자 이상이어야 합니다.', + 'required' => '컬러필드가 필수입니다.', + ) , + 'sharing_name' => array( + 'length' => '유효한 Sharing name일 경우 나타나지 않습니다.', + 'required' => 'Sharing name은 필수입니다.', + ) , + 'sharing_url' => array( + 'exists' => '사이트 URL이 이미 사용중입니다.', + 'length' => '유효한 사이트 URL일 경우 나타나지 않습니다.', + 'required' => '사이트 URL은 필수입니다.', + 'url' => '유효한 URL일 경우 URL 필드는 나타나지 않습니다.', + ) , +); diff --git a/application/i18n/ko_KR/stats.php b/application/i18n/ko_KR/stats.php new file mode 100755 index 0000000000..571c00e9f9 --- /dev/null +++ b/application/i18n/ko_KR/stats.php @@ -0,0 +1,42 @@ + '인증완료', + 'categories' => '카테고리', + 'category_impact' => '카테고리 충돌', + 'category_impact_description' => '이 차트는 해당 카테고리의 리포트를 1차원적으로 보여줍니다. 왼쪽에서 오른쪽으로 스크롤 하면 다른 카테고리와 비교해서 볼 수 있습니다. 마우스를 그래프 위로 옮기면 자세한 내용을 확인할 수 있습니다.', + 'choose_date_range' => '기간선택', + 'countries' => '국가들', + 'country' => '국가', + 'country_breakdown' => '국가 세분화', + 'description' => '이 섹션에 대한 설명이 아직 없습니다. 곧 등록될 예정입니다. 현재는 서브카테고리의 링크를 확인하는 용도로 사용가능합니다.', + 'error' => '에러', + 'glossary' => '용어해설', + 'hit_summary' => 'Hit 요약', + 'legend' => '범례', + 'pageviews' => '페이지뷰', + 'pageviews_description' => '당신의 사이트 방문자들이 본 페이지의 총 합', + 'reports' => '리포트', + 'reports_categories' => '리포트카테고리', + 'reports_statistics' => '리포트통계', + 'reports_status' => '리포트 상태', + 'report_punchcard' => '리포트 펀치카드', + 'report_stats' => '리포트통계', + 'stats_not_setup' => '통계없음', + 'time_range_1' => '1 달', + 'time_range_2' => '3 달', + 'time_range_3' => '6 달', + 'time_range_all' => '전체', + 'unapproved' => '미승인', + 'unique_visitors' => '순방문자수', + 'unique_visitors_description' => '사이트를 방문하는 실제 방문자 수 입니다. Unique Visitors는 쿠키를 통해 확인됩니다. 만약 쿠키의 사용이 힘들 경우 IP주소, 해상도, 브라우저, 플러그인, OS, etc를 통해 확인합니다.', + 'unverified' => '미확인', + 'verified' => '확인', + 'visitor_summary' => '방문자 요약', + 'visits' => '방문', + 'visits_description' => '30분전에 마지막으로 Unique Visitors 들이 머문 페이지입니다.', +); diff --git a/application/i18n/ko_KR/tooltips.php b/application/i18n/ko_KR/tooltips.php new file mode 100755 index 0000000000..ea99efac79 --- /dev/null +++ b/application/i18n/ko_KR/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => '이 기능은 하나의 리포트에 추가 카테고리를 설정할 수 있게 합니다. 예를 들면 카테고리 1을 선택하고 카테고리 2를 추가로 선택하면, 해당 리포트는 2개의 카테고리에 속하게 됩니다.', + 'approve' => '리포트를 승인 또는 하지 않음. 만약 승인하면 리포트는 공개됩니다.', + 'assign_badge' => '사용자에게 배지를 지정할 수 있습니다. 지정할 배지를 선택하세요.', + 'between_times' => '24시간 형식으로 시간 범위를 지정할 수 있습니다. 나중의 시간이 앞에 설정한 시간보다 빠르면 오류가 발생합니다. 또한, 시간은 하루 내 이어야 합니다. 그리고 설정한 시간은 사이트 설정에서 설정한 사이트 시간을 기준으로 하며, 사용자의 타임존을 필요로 하지는 않습니다. 시간을 입력하지 않으려면 00:00에서 00:00의 형식으로 놔두면 됩니다.', + 'category' => '만약에 특정 카테고리가 사용이 될 때 트리거를 활성화하고자 한다면 여기서 설정을 할 수 있습니다. 카테고리 중의 하나가 사용될 경우에만 활성화 될 것입니다. 예를 들면 카테고리 1과 카테고리 2를 선택하고 리포트가 카테고리 2와 카테고리 3에 등록되면, 그것은 테스트를 통과 할 것입니다.', + 'days_of_the_week' => '여기서 설정을 통해 특정 요일에 이것들을 실행되게 할 수 있습니다. 당신의 배치상의 타임존을 반드시 고려해야 합니다. shift키와 command 또는 control키를 동시에 누르면 중복 요일 선택이 가능합니다.', + 'email_body' => '이메일의 본문이 전송됩니다.', + 'email_subject' => '이메일의 제목이 전송됩니다.', + 'feed_id' => '피드는 전부 또는 일부가 될 수 있습니다. 만약, 특정 피드로 활성화 하고자 할 경우, 여기서 선택해 주세요. 아니면, 전체를 선택할 수 도 있습니다.', + 'from' => '트위터 사용자이름(2명이상의 사용자이름은 콤마로 구분해주세요). 만약에 특정 사용자의 트위터 메시지로만 활성화 하고자 할 경우 사용자이름을 @를 빼고 입력해주세요.', + 'keywords' => '키워드를 입력하길 원하지 않으면 빈칸으로 두어도 됩니다. 만약, 단어를 입력하고자 하면, 콤마(,)로 구분하면 됩니다. 예를 들어 "love"또는"peace"를 메시지에 넣고자 하면, "love,peace"의 형태로 구분 입력하면 됩니다.', + 'location' => '다양한 지역 선택이 가능합니다. 만약, 특정 지역을 선택하고 해당 지역에서만 리포트를 받을 수 있습니다. 예를 들어 누군가로부터 브라질에 관련한 리포트를 받길 원하면, "특정지역"을 선택하고, 브라질 주위에 박스를 그려 이를 설정할 수 있습니다. 이 박스의 크기는 자유롭게 설정할 수 있으며, 1개 이상의 박스를 그릴 수 있습니다.', + 'on_specific_count' => '이것은 전체 유저 베이스 또는 개별 유저 중 하나에서 특정번째에서 작동되게 할 수 있습니다. 사용하지 않으려면 빈칸으로 두면 됩니다.', + 'report_title' => '리포트의 기본 제목입니다.', + 'response' => '만약, 모든 통과자들이 통과하면, 트리거는 응답을 시작합니다. 이것은 리포트를 승인하고 이메일로 사용자에게 알리는 것을 말합니다. 여기서 세부적인 응답내용을 추가하고 설정할 수 있습니다.', + 'send_to' => '만약, 트리거 사용자를 선택하면, 특정 액션을 실행한 사용자에게 이메일을 보냅니다. 만약, 라디오 버튼을 선택하면 이메일 주소를 입력할 수 있습니다. 이것은 특정 지역상의 리포트를 보거나 체크인등 하는 이들에게 트리거 할 수 있게 해줍니다.', + 'specific_days' => '복수일을 이곳에서 지정할 수 있습니다. 날짜는 개발 시간대에 의해 정해집니다. 모든 일 선택을 기본으로 하기 위해서는 어떤 날짜도 선택하지 마세요.', + 'trigger' => '트리거는 액션트리거 설정의 주요 구성요소입니다. 누군가 리포트를 제출하고, 체크인등을 실행할 때 특정 활동이 일어날 수 있도록 결정할 수 있습니다. 그리고 하나를 선택한 후 이러한 액션에 대해 필터링 할 수 있습니다.', + 'user' => '트리거 사용자는 누구나 또는 특정사용자가 될 수 있습니다. 만약, 특정사용자에게 트리거가 활성화되게 하려면, 여기서 선택해야 합니다. 아니면, 모든사용자에게 트리거를 설정되게 됩니다.', + 'verify' => '확인되었거나 확인 되지 않은 리포트를 표시합니다.', + ) , + 'change_picture' => '프로파일 페이지는 Gravatar를 이용합니다. 이미지를 클릭하면 Gravatar로 이동해서 프로파일 이미지를 변경할 수 있습니다.', + 'default_value' => '각각의 값은 콤마로 구분합니다. 예시 값1, 값2', + 'radio_choices' => '각각의 값은 콤마로 구분됩니다. 예: 값1, 값2 . 만약 기본값을 설정하고 싶으면 해당 옵션 마지막에 :: 를 표기하면됩니다. 예를 들어 값1, 값2, 값3::값2 로 표기하면 값2가 기본값이 됩니다.', + 'dropdown_choices' => '각각의 아이템들은 콤마로 구분합니다. 예시 아이템1. 아이템2', + 'private_to' => '회원목록을 입력합니다.', + 'private_subject' => '개인메시지 제목', + 'private_message' => '개인메시지', + 'profile_color' => '공개된 프로파일상 사진배경의 색상을 선택할 수 있습니다. 또한 체크인할 때 나타는 점도 이 색상으로 표시됩니다. ', + 'profile_email' => '이메일주소', + 'profile_name' => '웹사이트 상에서 당신을 식별할 수 있는 방법 중 하나입니다. 공개되는 정보이오니, 꼭 한번 더 생각하세요.', + 'profile_new_password' => '빈칸으로 남겨주면 현재 암호를 사용하고, 그렇지 않으면 새로운 암호를 설정할 수 있습니다.', + 'profile_new_users_password' => '새 사용자 생성시 필요한 사항입니다. 새 사용자가 첫 로그인 후 비밀번호를 재설정할 수 있도록 알려주세요.', + 'profile_notify' => '"네"를 선택하면 새로운 리포트나 댓글이 있을 때, 이메일로 알림을 보내줍니다.', + 'profile_password' => '계정에 대해 허가되지 않은 변경 시에는 현재 암호를 입력해야 합니다.', + 'profile_public' => '이 옵션을 체크하면 당신의 프로파일은 공개됩니다. 또한 당신이 올린 리포트, 체크인, 배지 등을 하나의 페이지에 보여줄 수 있는 쉬운 방법입니다.', + 'profile_public_url' => '이 주소는 당신의 공개 프로파일에서 찾을 수 있습니다.', + 'profile_username' => '사용자명 변경할 수 없습니다.', + 'settings_access_level' => '접근 레벨은 특정 폼 필드 데이터에 대한 접근을 제한합니다. 상위 레벨은 하위 레벨의 필드 폼에 대해 접근이 가능합니다. 슈퍼관리자는 가장 높은(100) 레벨입니다. 공개된 데이터는 가장 낮은 레벨(0)입니다. 일반사용자는 접근권한이 10입니다. 관리자는 접근권한이 90이 기본입니다.', + 'settings_alert_email' => '이 이메일은 알림을 받는 주소로 사용됩니다.', + 'settings_allow_alerts' => '사용자가 웹을 통해 알림을 받을 수 있도록 허용합니다.', + 'settings_allow_clustering' => '유사한 리포트를 하나의 점으로 묶어 보여줍니다.', + 'settings_allow_comments' => '사용자의 댓글을 허용합니다.', + 'settings_allow_feed' => '메인 사이트에서 RSS 뉴스 피드가 노출됩니다.', + 'settings_allow_reports' => '웹양식을 통해 정보를 제출할 수 있습니다.', + 'settings_api_default_record_limit' => 'API 요청당 기본 레코드 숫자', + 'settings_api_max_record_limit' => 'API 요청당 최대 레코드 숫자', + 'settings_api_max_requests_per_ip' => 'IP 주소당 최대 API 요청 숫자', + 'settings_banner' => '이 사이트의 배너는 프론트 페이지의 상단에 나타납니다-테마지원 시. 추천하는 배너의 사이즈는 현재 사용중인 테마에 따라 다릅니다. 배너 적용 시 사이트 제목과 태그라인을 대체합니다.', + 'settings_blocks_per_row' => '각 열당 표시되는 칸 수.', + 'settings_cache_pages' => '페이지를 임시저장할 것인지를 설정합니다. 이 옵션을 활성화하면 페이지 로딩이 빨라집니다. 따라서 ', + 'settings_cache_pages_lifetime' => '캐쉬 보관 시간 설정', + 'settings_checkins' => '이 셋팅은 현재 배치에서 체크인을 가능하게 합니다. 이것은 홈페이지에서 요구하는 특정한 방식을 따르지 않아도 되는 매우 간단한 리포트 방식입니다. 만약, 이 기능을 사용하려면 타임존-UTC기준- 과 테마가 지원하는 지 확인해야 합니다. 사용중일 때, 체크인 전용 테마는 Addons 메뉴에서 확인 가능합니다.', + 'settings_configure_map' => '지도가 특정 위치를 커버할 수 있도록 설정', + 'settings_default_category_colors' => '모든 카테고리에 하나의 색상코드를 설정', + 'settings_default_category_icons' => '모든 카테고리에 하나의 아이콘을 설정', + 'settings_default_location' => '지도상 기본 국가를 설정합니다.', + 'settings_display_contact' => '메인사이트에서 문의하기 메뉴 ON&OFF', + 'settings_display_howtohelp' => '메인사이트에서 도움말 메뉴 ON&OFF', + 'settings_display_items_per_page' => '메인사이트에서 페이지당 보여 줄 리포트 숫자', + 'settings_display_items_per_page_admin' => '관리자페이지에서 페이지당 보여 줄 리포트 숫자', + 'settings_flsms_download' => '이것은 수신되는 메시지의 허브입니다.', + 'settings_flsms_synchronize' => '허브를 통해 들어오는 메시지는 우샤히디 플랫폼과 동기화됩니다.', + 'settings_flsms_text_1' => '문자메시지를 보낸 전화번호', + 'settings_google_analytics' => '방문자에 대한 자세한 통계를 가져옵니다.', + 'settings_locale' => '사이트의 기본 언어를 설정합니다.', + 'settings_manually_approve_users' => '"네"를 선택하면, 모든 개인 사용자들이 설정에 따라 자신의 계정을 만들 수 있도록 허용하는 것입니다. (ex. 일반사용자, 관리자, 슈퍼관리자 로 설정할 수 있습니다.)', + 'settings_map_provider' => '사이트에서 사용될 지도를 설정합니다.', + 'settings_map_timeline' => '리포트가 수신된 날짜와 시간에 따른 타임라인입니다.', + 'settings_private_deployment' => '이 값을 "사실" 또는 "네"로 설정하면, 특정 사용자만 이 배치에 접근할 수 있습니다.', + 'settings_require_email_confirmation' => '"네"로 옵션이 설정되어 있으면, 사용자들이 이 배치에 접근하기 위해서는 이메일로 확인링크를 받아 확인해야 합니다. 만약, 이 옵션이 사용자가 사용중일 때 설정되면, 사용자는 확인창을 통해 계속 사용할 것인지 확인하게 됩니다.', + 'settings_server_host' => '이메일이 있는 곳', + 'settings_server_password' => '리포트를 수신하는 이메일의 암호입니다.', + 'settings_server_port' => '이메일주소를 통해 들어오는 연결을 허용하는 것이 필요합니다.', + 'settings_server_ssl_support' => '보안연결을 강화하기 위해서 필요합니다.', + 'settings_server_type' => '호스트 서버에서 이메일을 검색하기 위해 필요합니다.', + 'settings_server_username' => '리포트를 받는 이메일주소입니다.', + 'settings_share_site_stats' => '사이트 통계는 우샤히디에 의해 서버에 저장됩니다. 옵션을 "사용"으로 설정하면 관리자 패널에서 통계 메뉴를 통해 볼 수 있습니다. "사용안함"으로 설정하면 통계 수치 수집이 중단됩니다. 물론, 중단된 기간 동안의 통계수치는 복구 또는 확인 할 수 없습니다.', + 'settings_site_copyright_statement' => '사이트내에서 유저가 생성한 문자, 이미지, 비디오 등에 대한 재배포 권리를 다른이에게 부여하길 원한다면, https://creativecommons.org/choose/ 를 방문한 후 원하는 조건의 라이센스를 선택한 후 적용하세요.', + 'settings_site_email' => '이메일 리포트와 문의하기를 통해 들어오는 메시지를 받는 이메일입니다.', + 'settings_site_message' => '이 메시지는 메인 페이지 지도 위에 게시됩니다. 사이트에 대한 중요한 정보를 방문자에게 전달할 때 유용합니다. 박스를 제거하면 메시지도 지울 수 있습니다.', + 'settings_site_name' => '메인사이트 상단에 표시되는 이름입니다.', + 'settings_site_submit_report_message' => '리포트 제출 페이지에 나타나는 메시지입니다. 면책조항이나 사용방법을 사용자에게 알려줄 때 유용합니다.', + 'settings_site_tagline' => '간단한 단어로 사이트를 설명해주세요. 주요 키워드로 설명하는 것을 추천합니다.', + 'settings_site_timezone' => '당신의 사이트가 운영될 지역의 타임존을 선택하세요. 설정 이후 사이트내의 모든 실행은 설정된 타임존에 의해 영향을 받게 됩니다.', + 'settings_twitter_configuration' => '트위터 해쉬태그를 설정해주세요.(예시: #Ushahidi)', +); diff --git a/application/i18n/ko_KR/ui_admin.php b/application/i18n/ko_KR/ui_admin.php new file mode 100755 index 0000000000..14d8cbae04 --- /dev/null +++ b/application/i18n/ko_KR/ui_admin.php @@ -0,0 +1,329 @@ + '접근이 거부되었습니다. 접근자격이 충분치 않거나, 요청이 거절되었습니다.', + 'access_denied_others' => '접근이 거부되었습니다. 요청은 확인되었으나, 접근 제한에 따라 거부되었습니다. 다음에 다시 시도해보세요.', + 'access_level' => '접근 레벨', + 'actions' => 'Actions', + 'add_to_category' => '카테고리 추가', + 'added' => '추가', + 'added_edited' => '추가/수정', + 'addons' => 'Addons', + 'admin_role' => '관리자', + 'alerts' => '알림', + 'alerts_received' => '수신알림', + 'all' => '전부', + 'am' => 'AM', + 'anonymous' => '익명', + 'anyone_role' => '누구나', + 'anywhere' => '어디에서나', + 'api_banned' => 'API 금지', + 'api_logs' => 'API 로그', + 'api_settings' => 'API 세팅', + 'api_unban' => '해제', + 'api_unban_all' => '모두해제', + 'approved' => '승인됨', + 'approve_auto' => '자동승인', + 'approve_manual' => '수동승인', + 'archived' => '아카이브', + 'are_you_sure_you_want_to' => '정말 원하나요?', + 'are_you_sure_you_want_to_delete_this_item' => '이 아이템을 지울까요?', + 'are_you_sure_you_want_to_delete_this_photo' => '이 사진을 지울까요?', + 'are_you_sure_you_want_to_switch_forms' => '폼을 바꿀까요?', + 'assign' => '할당', + 'assignments' => '할당된배지', + 'assign_badge' => '배지 할당', + 'author' => '저자', + 'author_email' => '저자 이메일', + 'back' => '뒤로', + 'banip_action' => '금지 IP', + 'between_times' => '시간사이', + 'blocks' => '블락', + 'body' => '내용', + 'cancel' => '취소', + 'categories' => '카테고리', + 'chart_display_error' => '차트 표시 오류', + 'check_message_valid' => '메시지가 맞는 지 확인하세요.', + 'check_number' => '숫자가 맞는지 확인하세요.', + 'check_sms_settings' => 'SMS 세팅을 확인하세요.', + 'checkin_details' => '세부사항확인', + 'checkins' => '체크인', + 'cities_loaded' => '도시 불러오기 완료', + 'code' => '코드', + 'code_out_of_sync' => '코드버전 동기화', + 'color' => '색상', + 'comments' => '코멘트', + 'confirmation_code' => '알림 확인 코드는 : ', + 'confirm_msg' => '사용자는 다음이 되었다.', + 'count' => '카운트', + 'country_not_found' => '국가를 찾을 수 없습니다.', + 'created_edited' => '추가/수정', + 'create_report' => '리포트 추가', + 'critical_upgrade' => '중요한 업그레이드', + 'csv' => 'CSV', + 'currently_active' => '최근 활동', + 'currently_inactive' => '최근 비활동', + 'custom_forms_insufficient_permissions' => '커스텀 필드를 수정하는데 필요한 권한이 없습니다.', + 'daily' => '매일', + 'dashboard' => '관리자페이지', + 'database' => '데이터베이스', + 'date_time' => '날짜 & 시간', + 'date_added' => '추가된 날짜', + 'date_modified' => '수정된 날짜', + 'days_of_the_week' => '요일', + 'db_out_of_sync' => 'DB 버전 동기화', + 'deleted' => '삭제', + 'delete_action' => '삭제', + 'delete_all' => '모든 리포트 삭제', + 'delete_badge' => '배지삭제', + 'demo' => '데모', + 'description' => '설명', + 'disabled' => '사용안함', + 'divider_start_field' => '디바이더 시작', + 'divider_end_field' => '디바이더 끝', + 'divider_class' => 'div class', + 'download_reports' => '리포트 다운로드', + 'dropdown_choices' => '목록 선택', + 'edited' => '편집완료', + 'edited_by' => '수정한 사람', + 'edit_action' => '수정', + 'edit_log' => '수정 로그', + 'email' => '이메일', + 'entire_collective' => '전부', + 'error_geocoding' => '지오코딩 에러! HTTP 에러!', + 'error_imap' => 'IMAP PHP 라이브러리가 설치되지 않았어요.', + 'error_twitter' => '자격 부적격', + 'error_msg' => '에러', + 'error_post_incident' => '오류입니다. 사건을 포스팅할 수 없습니다.', + 'every_six_hours' => '6시간', + 'every_twelve_hours' => '12시간', + 'experimental' => '실험', + 'faqs' => 'FAQ', + 'feed' => '피드', + 'feedback' => '피드백', + 'feeds' => '피드', + 'field_choices' => '선택 리스트', + 'field_default' => '기본값', + 'field_datatype' => '데이터 타입', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => '숫자', + 'field_datatype_text' => '무료문자', + 'field_height' => '높이(세로)', + 'field_hidden' => '숨겨진 필드', + 'field_maxlength' => '최대 문자 길이', + 'field_name' => '필드이름', + 'field_toggle' => 'Toggle', + 'field_toggle_no' => '아니오', + 'field_toggle_yes_close' => '네, 기본설정닫기', + 'field_toggle_yes_open' => '네, 기본설정열기', + 'file_not_found_upload' => '업로드된 파일을 찾을 수 없습니다.', + 'file_open_error' => '파일을 열 수 없습니다.', + 'form_not_exists' => '존재하지 않는 Form 입니다.', + 'forum' => '포럼', + 'free_text_field' => '문자(Free)', + 'date_field' => '날짜', + 'radio_field' => '라디오버튼', + 'checkbox_field' => '체크박스', + 'dropdown_field' => 'Dropdown', + 'from' => 'From', + 'from_date' => 'From', + 'geonames_timeout' => 'Geonames 시간초과 에러', + 'get_help' => '도움말', + 'get_more_themes' => '테마 더보기', + 'get_more_plugins' => '플러그인 더보기', + 'header_actions' => 'Actions', + 'header_add_edit' => '추가/수정', + 'header_email' => '이메일', + 'header_manage_users' => '사용자 관리', + 'header_role' => '역할', + 'header_user' => '사용자', + 'help' => '도움말', + 'hourly' => '시간마다', + 'incident_feed' => '다음의 사건피드', + 'installer_info' => '인스톨 폴더가 아직 있어요. 보안에 문제가 생길 수 있으니 얼른 지워주세요. ^^', + 'instance' => '인스턴스', + 'instances' => '인스턴스', + 'instance_details' => '인스턴스 세부사항 ', + 'invalid_parameter' => '유효하지 않은 변수', + 'ip_address' => 'IP 주소', + 'is_date' => '날짜 항목이 맞나요?', + 'ispublic_visible' => '누가 답변을 볼 수 있나요', + 'ispublic_submit' => '누가 답변을 달 수 있나요', + 'keyword' => '키워드', + 'keywords' => '키워드', + 'label_email' => 'Email 주소:', + 'label_full_name' => '이름:', + 'label_password' => '비밀번호:', + 'label_role' => '역할:', + 'label_username' => '사용자명:', + 'layers' => '레이어', + 'login_role' => '중재자', + 'logout' => '로그아웃', + 'logs' => '로그', + 'manage' => '관리', + 'manage_roles' => '역할&권한 관리', + 'manage_users' => '사용자 보기', + 'manage_users_edit' => '사용자 추가/수정', + 'manage_public_listing' => '공개리스트 관리', + 'mark_as' => '다음으로', + 'marked_as_not_spam' => '스팸해제', + 'marked_as_spam' => '스팸표시', + 'match_no_documents' => '어떤 문서와도 일치가 되지 않았습니다.', + 'message' => '메시지', + 'messages' => '메시지', + 'messages_laconica' => 'Laconica 메시지', + 'messages_twitter' => 'Twitter 메시지', + 'message_sent' => '메시지가 전송되었습니다!', + 'mhi' => 'MHI', + 'minute' => '분', + 'minutes' => '분', + 'missing_parameter' => '변수가 분실되었습니다.', + 'moderator' => '중재자', + 'modified' => '수정되었습니다.', + 'modify_timezone' => '타임존 설정 수정', + 'move_down_action' => '아래로', + 'move_up_action' => '위로', + 'multiple_hosted_instances' => '다중 호스트 인스턴스', + 'my_alerts' => '내 알림', + 'my_checkins' => '내 체크인', + 'my_profile' => '내 프로파일', + 'my_reports' => '내 리포트', + 'my_votes' => '투표', + 'my_votes_up' => '긍정', + 'my_votes_down' => '부정', + 'name' => '이름', + 'new_alert' => '새알림', + 'new_private' => '새메시지', + 'new_password' => '새비밀번호', + 'no' => '아니오', + 'none_category_explanation' => '스페셜카테고리는 유저의 리포트 제출 폼에서는 보이지 않습니다. 여기에는 카테고리가 삭제되어 카테고리가 지정되지 않은 리포트의 카테고리로 사용됩니다.', + 'notification' => '공지', + 'not_case_sensitive' => '대소문자를 구분하지 않습니다.', + 'not_found' => '찾을 수 없음', + 'no_data' => '데이터가 없습니다. ', + 'no_error' => '에러가 아니에요.', + 'no_result_display_msg' => '보여줄 결과가 없습니다.', + 'of' => 'of', + 'on_specific_count' => '특정 카운트에서', + 'openids' => 'OpenID ', + 'page' => '페이지', + 'pages' => '페이지', + 'page_not_found' => '페이지를 찾을 수 없습니다.', + 'page_not_found_message_with_contact' => '죄송합니다. 현재 당신이 보려고 하는 페이지는 존재하지 않습니다. 이 경우 3가지의 경우가 있습니다. 아래의 내용을 보시고 저희에게 알려주세요.

첫 번째 우리 서비스 내의 링크를 통해 오셨나요?
만약 그렇다면 연락하기로 알려주세요. 알려주시면 바로 수정하겠습니다.

두 번째 다른 사이트의 링크를 통해 오셨나요?
간혹 외부 사이트의 링크는 만료되거나 철자가 틀린 경우가 있습니다. 이 경우도 연락하기 로 알려주세요. 해당 사항을 수정할 수 있도록 노력하겠습니다.

마지막으로 직접 URL을 입력하고 오셨나요?
아마도 입력하신 주소에 오류가 있을 수 있습니다. 확인해주세요.

', + 'page_not_found_message' => '죄송합니다. 현재 당신이 보려고 하는 페이지는 존재하지 않습니다. ', + 'parameters_used' => 'Parameters Used', + 'password' => '비밀번호', + 'password_reset' => '비밀번호 재설정', + 'password_reset_message_line_1' => '친애하는', + 'password_reset_message_line_2' => '우리는 비밀번호 재설정 요청을 받았습니다. ', + 'password_reset_message_line_3' => '암호를 재설정 하려면 다음 링크를 클릭하거나 복사 후 브라우저 주소창에 붙여넣기 하세요.', + 'password_reset_message_line_4' => '암호가 재설정되었습니다. 관련 내용은 다음과 같습니다.', + 'password_reset_subject' => '우샤히디 비밀번호 재설정', + 'phone' => '전화', + 'please_select' => '선택해주세요.', + 'pm' => 'PM', + 'post_method_not_used' => '데이터는 포스트 방식으로 전송되지 않았습니다.', + 'preview' => '미리보기', + 'private_message' => '메시지', + 'private_messages' => '개인메시지', + 'private_sent' => '개인메시지를 보냈습니다.', + 'private_subject' => '제목', + 'private_to' => 'To', + 'public_listing' => '공개리스팅', + 'qualifiers' => '통과자', + 'read' => '읽기', + 'relevance' => '타당성', + 'report_title' => '리포트 제목', + 'report_date' => '리포트 날짜', + 'reporters' => '리포터', + 'reporter_levels' => '리포터 레벨', + 'reports' => '리포트', + 'reputation' => '평판점수', + 'required' => '필수', + 'reset' => '재설정', + 'response' => '응답', + 'results' => '결과', + 'revoke' => '취소', + 'riverid_exists_admin' => '이 이메일은 크라우드맵 아이디로 사용 중입니다. 기존의 암호로 로그인 해주세요.', + 'save_settings' => '설정 저장', + 'search' => '검색', + 'search_reports' => '리포트 검색', + 'searching_for' => '검색', + 'security_info_encryption_key' => '현재 암호키가 기본값입니다. 암호키를 변경해서 보안을 강화하세요.', + 'security_info_https' => '현재 사이트는 HTTP를 사용중입니다. HTTPS를 사용하면 보안을 강화할 수 있습니다.', + 'security_info_instructions' => 'wiki에서 관련 정보를 이용할 수 있습니다 :', + 'select_download_format' => '리포트 다운로드 포맷 선택:-', + 'select_field_type' => '---필드 타입을 선택하세요---', + 'select_item' => '아이템을 선택하세요.', + 'select_trigger_before_response' => '반드시, 응답을 선택하기 전에 트리거를 선택해야 합니다.', + 'select_trigger_before_qualifiers' => '통과자를 정의하기 전에 반드시 트리거를 선택해야 합니다.', + 'sender' => '발송인', + 'send_to' => '보내기', + 'sent_from_website' => '이 메시지는 귀하의 웹사이트에서 전송되었습니다.', + 'server_time' => '서버시간', + 'settings' => '설정', + 'showing_page' => '페이지', + 'showing_results' => '결과', + 'shown' => '보여', + 'special_category' => '스페셜 카테고리', + 'special_category_explanation' => '스페셜 카테고리는 일반 사용자가 리포팅 할 때는 보이지 않습니다. 이것은 확인된 공식 리포터에 의해서만 사용되는 기능입니다.', + 'specific_area' => '특정 지역', + 'state' => '주', + 'statistics' => '통계', + 'stats' => '통계', + 'stats_collection_error' => '어이쿠! 통계 수집 실패! 조금 있따 다시 해보세요.', + 'stats_collection_error_short' => '어이쿠! 통계 수집 실패!', + 'specific_days' => '특정일자', + 'subject' => '제목', + 'superadmin_role' => '슈퍼관리자', + 'task_performed' => '실행된 작업', + 'text_field' => '문자항목', + 'theme_name' => '이름', + 'title' => '사용자 관리', + 'timeout' => '시간초과 오류', + 'to' => 'to', + 'total_records' => '전체 기록', + 'to_date' => 'to', + 'translate_reports' => '리포트 번역', + 'trigger' => '트리거', + 'triggering_user' => '트리거 사용자', + 'triggers' => '트리거', + 'unapproved' => '미승인', + 'unknown' => '미확인', + 'unknown_failure' => '미확인 실패', + 'unread' => '읽지않음', + 'unsubscribe_message' => '이제 다음에서 알림을 받지 않습니다.', + 'update_link' => '지금 클릭해서 업그레이드 하세요.', + 'upgrade_ushahidi' => '업그레이드 우샤히디', + 'upgrade_ushahidi_status' => '우샤히디 상태 업그레이드', + 'upload_reports' => '리포트 업로드', + 'user' => '사용자', + 'users' => '사용자', + 'ushahidi' => '우샤히디', + 'verified_unverified' => '확임/미확인', + 'verify_unverify' => '확인/미확인', + 'version' => '버전', + 'version_available' => '업그레이드 가능', + 'video_encoding' => '비디오 인코딩', + 'view_private' => '비공개 메시지', + 'view_site' => '사이트 보기', + 'view_report' => '리포트 보기', + 'welcome' => '환영합니다', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => '네', + 'your_search_for' => '검색어 ', + 'delete_all_instructions' => '아래의 버튼을 클릭하면 모든 리포트가 데이터베이스에서 삭제됩니다. 삭제 이후에는 되돌릴 수 없습니다.', + 'delete_all_backup' => '진행 전에 데이터베이스를 백업하는 것을 추천합니다.', + 'delete_all_button' => '데이터베이스의 리포트 중 %s 를 삭제하기를 원합니다.', + 'delete_all_confirm' => '리포트를 전부 삭제하기를 원하나요?', + 'delete_all_no_reports' => '지울 리포트가 없습니다.', + 'user_no_logins' => '로그인 횟수', + 'user_last_login' => '마지막 로그인', + 'user_confirmed_account' => '계정 확인이 되었나요?', +); diff --git a/application/i18n/ko_KR/ui_main.php b/application/i18n/ko_KR/ui_main.php new file mode 100755 index 0000000000..426f86424f --- /dev/null +++ b/application/i18n/ko_KR/ui_main.php @@ -0,0 +1,591 @@ + 'About', + 'access' => '접속', + 'access_limits' => '접속 제한', + 'account_name' => '계정이름', + 'actions' => '적용', + 'action_confirm' => '되돌릴 수 없는 적용입니다. 진행하시겠습니까?', + 'activate' => '활성화', + 'active' => '활동', + 'add' => '추가', + 'added_by' => '추가한 사람은', + 'additional_data' => '추가 데이터', + 'additional_reports' => '추가 리포트', + 'add_edit' => '수정', + 'add_field' => '필드추가', + 'add_language' => '언어추가', + 'add_new' => '새로만들기', + 'add_new_category' => '카테고리추가', + 'add_translation' => '번역추가', + 'admin' => '관리', + 'alerts' => '알림설정', + 'alerts_alert_me' => '리포트 발생 시 알림:', + 'alerts_btn_send' => '알림저장', + 'alerts_email' => '이메일주소:', + 'alerts_enter_email' => '이메일 주소 입력', + 'alerts_enter_mobile' => '국가코드를 포함한 휴대폰 번호입력', + 'alerts_get' => '알림설정', + 'alert_has_been' => '이전 알림', + 'alerts_mobile_phone' => '휴대폰번호:', + 'alerts_place_spot' => '지도위에 기준점을 표시하면, 반경 20KM이내 리포트가 발생할 경우 알려줍니다.', + 'alerts_place_spot2' => '위치를 찾을 수 없을 경우 지도위에 정확한 위치를 클릭하세요.', + 'alerts_rss' => 'RSS 피드 (아래의 URL을 복사하세요)', + 'alerts_select_city' => '도시', + 'alerts_step1_select_city' => '스텝 1:도시와 위치 선택:', + 'alerts_step2_send_alerts' => '스텝 2: 알림 방식 선택:', + 'alerts_step3_select_catgories' => '스텝 3 (Optional): 카테고리 선택', + 'alert_confirm_previous' => '알림 요청을 확인', + 'alert_saved' => '알림 저장 완료!', + 'all' => '전체', + 'allowed' => '승인', + 'all_categories' => '모든 카테고리', + 'all_time' => '전체', + 'and' => '그리고', + 'api' => 'API', + 'approve' => '승인', + 'approved' => '승인됨', + 'approved_reports' => '승인된 리포트', + 'approve_this_report' => '리포트 승인', + 'approximate' => 'Approximate(대강)', + 'archive' => '아카이브', + 'archived' => '아카이브', + 'at' => 'at', + 'author' => '작가', + 'auto_checkin' => '자동 체크인', + 'avg_reports_per_day' => '1일 평균 리포트', + 'awaiting_approval' => '대기중', + 'awaiting_verification' => '확인중', + 'badge' => '배지', + 'badges' => '배지', + 'badge_image' => '배지 이미지', + 'badge_image_upload_your_own' => '고유한 배지 이미지를 올릴 수 있습니다.', + 'badge_pack' => '배지 꾸러미', + 'badge_select' => '배지 선택', + 'blog' => '블로그', + 'browse_profiles' => '프로파일 검색', + 'cancel' => '취소', + 'categories' => '카테고리', + 'category' => '카테고리', + 'category_filter' => '카테고리 필터', + 'category_has_been' => '존재하는 카테고리', + 'category_name' => '카테고리 이름', + 'change_date_range' => '기간 변경', + 'change_password' => '암호 변경', + 'change_picture' => '내사진 변경', + 'choose' => '선택', + 'choose_data_points' => '데이터 다운로드 시점 선택', + 'choose_date_range' => '데이터 다운로드 기간 선택', + 'choose_field_type' => '필드 선택', + 'cleanurl' => 'URL 초기화', + 'clear' => '초기화', + 'clear_map' => 'Map 초기화', + 'close' => '닫기', + 'clusters' => '모아보기', + 'color' => '색상', + 'comment' => '코멘트', + 'comments' => '코멘트', + 'comment_details' => '상세 코멘트', + 'configuration_saved' => '저장완료!', + 'configure' => '수정', + 'confirm_email_successful' => '이메일 확인이 완료되었습니다. 로그인 시 사용하세요.', + 'confirm_email_failed' => '이메일 확인이 실패했습니다. 아래에서 다른 이메일로 확인을 재요청할 수 있습니다.', + 'contact' => '문의', + 'contact_code' => '보안코드', + 'contact_email' => '이메일 주소', + 'contact_message' => '메시지', + 'contact_message_has_send' => '메시지 발송이 완료되었습니다!', + 'contact_name' => '이름', + 'contact_phone' => '휴대폰 번호', + 'contact_send' => '보내기', + 'contact_subject' => '제목', + 'copyright' => 'Copyright©', + 'create' => '생성', + 'create_edit' => '수정', + 'create_new' => '생성', + 'create_new_password' => '새 암호', + 'create_report' => '새 리포트', + 'credibility' => '신뢰도', + 'current_password' => '현재 암호', + 'custom_fields' => '커스텀 필드', + 'data' => '정보', + 'date' => '기간', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => '날짜 & 시간', + 'day' => '날짜', + 'deactivate' => '비활성화', + 'default_location_name' => '나이로비, 케냐', + 'delete' => '삭제', + 'deleted' => '삭제', + 'deletes' => '삭제', + 'delete_disabled' => '사용불가 삭제', + 'delete_last' => '최근 삭제', + 'delete_report' => '리포트 삭제', + 'delete_selected' => '선택 삭제', + 'delete_spam' => '스팸 삭제', + 'demo' => '데모', + 'description' => '상세설명', + 'detailed_location_example' => '예: 서울특별시, 영등포구, 여의도동 57-5', + 'details' => '상세', + 'direct_report' => '리포트', + 'disabled' => '비활성화', + 'disapprove' => '미승인', + 'download_reports' => '리포트 다운로드', + 'download' => '다운로드', + 'edit' => '수정', + 'edit_form_fields' => '폼필드 수정', + 'edit_report' => '리포트 수정', + 'email' => '이메일', + 'email_address' => '이메일 주소', + 'email_configuration' => '메일서버 셋팅', + 'email_server_host' => '메일서버 호스트', + 'email_server_password' => '메일서버 암호', + 'email_server_port' => '메일서버 포트', + 'email_server_ssl_support' => '메일서버 SSL 지원', + 'email_server_type' => '메일서버 타입', + 'email_server_username' => '메일서버 Username', + 'email_settings_comment_0' => '이메일주소와 ', + 'email_settings_comment_00' => '리포트를 이메일로 받기를 원한다면 아래의 이메일 계정 설정을 해주세요. 리포트는 다음의 이메일로 받게되오니 참고해주세요 : ', + 'email_settings_comment_1' => '일부 서버는 완벽한 이메일 주소를 요구합니다.', + 'email_settings_comment_2' => '이메일 계정 비밀번호', + 'email_settings_comment_3' => '포트: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => '예시: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => '예시: pop3, imap', + 'email_settings_comment_6' => 'SSL연결을 사용 또는 사용금지', + 'empty' => '---비었음---', + 'end_point' => 'to', + 'error' => '에러!', + 'example' => '예시', + 'example_country' => '케냐', + 'external_apps' => '앱', + 'external_video_link' => '외부 비디오 링크', + 'feed' => '피드', + 'feedback' => '피드백', + 'feeds' => '피드', + 'feed_has_been' => '기존 피드', + 'feed_items' => '피드아이템', + 'feed_name' => '피드이름', + 'feed_url' => '피드 URL', + 'field_unused' => '사용되지 않는 필드', + 'file' => '파일', + 'file_over_max_allowed' => '허용된 파일크기를 넘습니다.', + 'filters' => '필터', + 'filter_reports' => '필터 리포트', + 'filter_reports_by' => '필터 리포트', + 'filter_reports_contain' => '필터 리포트는', + 'find' => '검색', + 'find_location' => '위치 검색', + 'first_name' => '이름', + 'force_run_scheduler' => '스케줄러 작동', + 'forgot_password' => '암호를 잊으셨습니까?', + 'form' => '폼', + 'forms' => '폼', + 'form_description' => '폼 설명', + 'form_edit' => '폼 수정', + 'form_has_been' => '기존 폼', + 'form_title' => '폼 제목', + 'from' => 'From', + 'full_name' => '이름', + 'geolocation_available' => 'GeoLocation 사용가능', + 'geometry_color' => '색상', + 'geometry_comments' => '코멘트', + 'geometry_label' => '라벨', + 'geometry_strokewidth' => 'Stroke ', + 'go' => 'Go', + 'hashtag' => '해쉬태그', + 'has_been' => '되었다', + 'help' => '도움말', + 'hidden' => '숨겨진', + 'hide' => '숨기다.', + 'hide_this_message' => '이 메시지 숨기기.', + 'home' => '홈', + 'how_to_report' => '리포트 하는 방법', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => '서비스내에서 쓰이는 당신만의 이름입니다.', + 'image' => '사진', + 'images' => '사진', + 'image_icon' => '아이콘', + 'inactive' => '비활성화', + 'inbox' => '받은함', + 'incident' => '사건', + 'incidents_nearby' => '근처 사건', + 'incident_location' => '사건 위치', + 'include' => '포함', + 'include_categories' => '카테고리 포함', + 'include_custom_fields' => '커스텀 필드 포함', + 'include_description' => '상세설명 포함', + 'include_detail' => '가능한 자세하게 설명해주세요.', + 'include_latitude' => '위도 포함', + 'include_location_information' => '위치 정보 포함', + 'include_longitude' => '경도 포함', + 'include_personal_info' => '개인 정보 포함', + 'incoming_media' => '미디어', + 'information_evaluation' => '정보 평가', + 'input_location' => '정확한 위치 입력', + 'insufficient_role' => ' Your account doesn\'t have the proper permission to fully log you in. Please contact the administrator.', + 'in_response_to' => '다음에 답변', + 'ip_address' => 'IP 주소', + 'is_this_your_profile' => '당신의 프로파일인가요?', + 'item' => '아이템', + 'items' => '아이템', + 'item_details' => '아이템 설명', + 'item_title' => '제목', + 'key' => '키', + 'kml_kmz_file' => 'KMZ/KML 파일', + 'kml_kmz_upload' => '업로드 KMZ/KML 파일', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => '언어', + 'last' => '최근', + 'last_month' => '최근 달', + 'last_name' => '성', + 'last_year' => '최근 년도', + 'latitude' => '위도', + 'layers' => '레이어', + 'layers_filter' => '다른 레이어', + 'layer_has_been' => '기존 레이어', + 'layer_name' => '레이어 이름', + 'layer_url' => '레이어 URL', + 'leave_a_comment' => '코멘트를 남겨주세요.', + 'less_information' => '적은 정보', + 'level' => '레벨', + 'level_has_been' => '이 레벨은 다음이 되었다.', + 'level_name' => '레벨 이름', + 'limited' => '제한', + 'link' => '링크', + 'list' => '리스트', + 'loading_reports' => '리포트를 읽어오는 중', + 'location' => '위치', + 'locations' => '위치', + 'location_example' => '도시, 주 또는 국가', + 'login' => '로그인', + 'login_account_creation_successful' => '계정 생성이 완료되었습니다. 지금 로그인 할 수 있습니다.', + 'login_confirmation_sent' => '확인 메일을 입력한 이메일 주소로 발송하였습니다.', + 'login_email_doesnt_exist' => '사용할 수 없는 이메일 주소입니다. 다른 주소 혹은 계정을 만들어주세요.', + 'login_select_openid' => '오픈ID 계정의 공급자를 선택해주세요.', + 'login_with' => '로그인', + 'login_userpass' => '이메일과 암호를 입력해주세요.', + 'login_openid' => 'OpenID', + 'login_signup' => '회원가입', + 'login_signup_click' => '회원가입', + 'login_signup_confirmation_subject' => '회원가입완료', + 'login_signup_text' => '지금 회원가입 하세요. 다양한 기능을 경험해보세요.', + 'longitude' => '경도', + 'map' => '지도', + 'mark_read' => '읽음표시', + 'mark_unread' => '읽지않음표시', + 'maximum_filesize' => '최대 파일크기', + 'media' => '미디어', + 'media_filter' => '미디어 필터', + 'members' => '회원', + 'manage_your_account' => '계정 관리', + 'message' => '메시지', + 'messages' => '메시지', + 'message_details' => '상세 메시지', + 'message_non_numeric_source' => '숫자가 아닌 소스에서 온 메시지 :', + 'mobile' => '휴대폰', + 'modify' => '수정', + 'modify_date' => '날짜 수정', + 'month' => '달', + 'more' => '더', + 'more_information' => '더 많은 정보', + 'multi_country_instance' => '현재 우샤히디 배치범위가 한 국가 이상입니까?', + 'must_confirm_email_address' => '반드시 이 배치에 접속하기 위해서는 이메일을 확인해야 합니다. 만약, 확인된 이메일을 잊어버렸다면, 아래에서 요청할 수 있습니다.', + 'name' => '이름', + 'nearby_report' => '근처 리포트', + 'new' => 'new', + 'news' => '뉴스', + 'news_feeds' => '뉴스 피드', + 'news_source' => '뉴스 출처', + 'new_category' => '새 카테고리', + 'new_password' => '새 암호', + 'new_report' => '새 리포트', + 'next' => '다음', + 'no' => '아니오', + 'no_checkins' => '표시할 체크인이 없습니다.', + 'no_data' => '데이터가 없습니다.', + 'none' => '없음', + 'notices' => '공지', + 'not_approved' => '승인되지 않음', + 'not_approved_singular' => '승인되지 않음', + 'not_selected' => '---선택되지 않음---', + 'not_spam' => '스팸아님', + 'not_specified' => '명확하지 않음', + 'no_reports' => '리포트 없음', + 'no_results' => '결과 없음', + 'off' => 'Off', + 'official_news' => '공식&주요일간지 뉴스', + 'on' => 'On', + 'option' => '옵션', + 'optional' => '선택사항', + 'options' => '옵션', + 'organization' => '단체', + 'organizations' => '단체', + 'organization_description' => '단체 설명', + 'organization_email' => '단체 이메일', + 'organization_has_been' => '조직은 다음이 되었다.', + 'organization_name' => '단체 이름', + 'organization_phone_1' => '단체 전화1', + 'organization_phone_2' => '단체 전화2', + 'organization_website' => '단체 웹사이트', + 'original' => '오리지날', + 'original_description' => '오리지날 설명', + 'original_title' => '오리지날 제목', + 'other_ushahidi_instances' => '다른 배치', + 'outbox' => '보낸함', + 'outgoing' => '나가는', + 'page' => '페이지', + 'pages' => '페이지', + 'page_description' => '페이지 설명', + 'page_has_been' => '페이지는 다음이 되었다.', + 'page_tab_name' => '페이지 탭 이름', + 'page_title' => '페이지 제목', + 'parent_category' => '상위 카테고리', + 'password' => '암호', + 'password_again' => '암호확인', + 'password_changed_successfully' => '암호가 성공적으로 바뀌었습니다.', + 'password_forgot' => '암호를 잊었나요?', + 'password_reset_confirm' => '이메일을 통해 새암호를 확인하세요.', + 'password_save' => '로그인을 유지', + 'past_month' => '지난 1개월', + 'past_year' => '지난 1년', + 'pending' => '검토중', + 'per' => '당', + 'personal_information' => '개인정보 Optional.', + 'phone' => '전화', + 'photos' => '사진', + 'pictures' => '사진', + 'pictures_and_videos' => '사진 & 비디오', + 'pinpoint_location' => '*지도상에서 포인터로 위치를 표시하세요.
*연필을 클릭하고 지도를 클릭하면 포인터 사용이 가능합니다.', + 'play' => 'PLAY', + 'please_note' => '메모', + 'plugins' => '플러그인', + 'plugin_url' => '플러그인 웹사이트', + 'public_profile' => '공개프로파일', + 'public_profile_url' => '공개프로파일 URL', + 'preview' => '미리보기', + 'preview_item' => '아이템 미리보기', + 'preview_message' => '메시지 미리보기', + 'previous' => '이전의', + 'private' => '개인', + 'profile_color' => '프로파일 색상', + 'profile_saved' => '프로파일이 저장되었습니다.', + 'quick_stats' => '요약 통계', + 'rating' => '평가', + 'read' => '읽다', + 'receive' => '받다', + 'receive_from' => '수신', + 'receive_notifications' => '공지사항 수신', + 'recent_reports' => '최근 리포트', + 'refresh_news_feeds' => '뉴스피드 리프레쉬', + 'registered_email' => '등록된 이메일', + 'remove' => '삭제', + 'reply' => '답장', + 'report' => '리포트', + 'reports_listed' => '리포트 (시간순)', + 'reporter' => '리포터', + 'reporters' => '리포터', + 'reporter_date' => '리포트 날짜', + 'reporter_email' => '리포터 이메일', + 'reporter_first_name' => '리포터 이름', + 'reporter_has_been' => '리포터는 다음이 되었다.', + 'reporter_ip' => '리포터 IP Address', + 'reporter_last_name' => '리포터 성', + 'reporter_level' => '리포터 레벨', + 'reporter_levels' => '리포터 레벨', + 'reporter_phone' => '리포터 휴대폰', + 'reports' => '리포트', + 'reports_btn_browse' => '검색', + 'reports_btn_submit' => '제출', + 'reports_by_this_user' => '리포트한 사용자', + 'reports_categories' => '카테고리', + 'reports_count' => '%d 리포트', + 'reports_date' => '날짜', + 'reports_description' => '설명', + 'reports_download_csv' => '리포트는 CSV 포맷으로 다운로드 됩니다.', + 'reports_email' => '이메일', + 'reports_features' => '기능', + 'reports_find_location' => '근처 위치 찾기', + 'reports_first' => '이름', + 'reports_last' => '성', + 'reports_location_name' => '정확한 위치명', + 'reports_news' => '뉴스출처 링크', + 'reports_optional' => '추가 정보', + 'reports_photos' => '사진 업로드', + 'reports_return' => '리포트 페이지로 돌아가기', + 'reports_select_city' => '도시선택', + 'reports_submitted' => '리포트 제출이 완료되었습니다. 최대한 빠른 검토를 진행하겠습니다.', + 'reports_submit_new' => '리포트 제출', + 'reports_time' => '시간', + 'reports_timeline' => '타임라인', + 'reports_title' => '리포트 제목', + 'reports_video' => '비디오 링크', + 'report_an_incident' => '사건 리포트', + 'report_details' => '리포트 상세', + 'report_option_1' => '메시지를 다음으로 보냄', + 'report_option_2' => '이메일', + 'report_option_3' => '해쉬태그를 포함한 트윗을 다음으로 보냄', + 'report_option_4' => '지금 제출', + 'report_option_external_apps' => '앱', + 'report_saved' => '리포트가 저장되었습니다.', + 'report_title' => '리포트 제목', + 'request_information' => '추가정보요청', + 'request_location' => '위치요청', + 'required' => '필수', + 'requirements' => '필수조건', + 'resend_confirm_email' => '확인메일 재발송', + 'reset' => '초기화', + 'reset_all_filters' => '모든 필터 초기화', + 'reset_password' => '암호 초기화', + 'retrieve_city_names' => '선택한 국가의 도시명을 검색합니다.', + 'riverid_information' => '계정은 %s 서비스에 의해 관리.', + 'role' => '역할', + 'rss' => 'RSS', + 'save' => '저장', + 'saved' => '저장되었습니다', + 'save_add_new' => '저장 & 추가', + 'save_close' => '저장 & 닫기', + 'save_report' => '리포트 저장', + 'schedule' => '스케줄', + 'scheduler' => '스케줄러', + 'scheduler_day' => '날짜', + 'scheduler_hour' => '시간', + 'scheduler_log' => '스케줄러 로그', + 'scheduler_minute' => '분', + 'scheduler_weekday' => '요일', + 'search' => '검색', + 'search_results' => '검색결과', + 'security_code' => '확인코드', + 'select_all' => '전체선택', + 'select_field_type' => '필드타입선택', + 'select_form_type' => '폼타입선택', + 'select_in_map' => '지도안에서 선택', + 'select_multiple' => '카테고리는 1개 이상 선택해주세요.', + 'select_one' => '체크한 아이템을 확인하세요.', + 'select_theme' => '테마 선택', + 'send' => '보내기', + 'send_confirmation' => '확인 보내기', + 'sending_to' => '다음으로 전송', + 'sent' => '보냄', + 'sent_by' => '보낸사람', + 'server_address' => '서버주소', + 'server_type' => '서버타입', + 'service' => '서비스', + 'service_username' => '서비스 사용자명', + 'service_user_id' => '서비스 사용자 ID', + 'share' => '공유', + 'shared_data' => '공유된 데이터', + 'share_has_been' => '다음에서 공유되었습니다 : ', + 'sharing' => '공유하기', + 'shorter_map' => '짧은 지도', + 'show' => '보여주기', + 'show_all' => '전체보기', + 'show_messages' => '메시지 보기', + 'site' => '웹사이트', + 'site_email_address' => '사이트 이메일 주소', + 'site_url' => '사이트 URL', + 'smaller_map' => '작은 지도', + 'sms' => '문자', + 'sorry_no_badges' => '죄송합니다. 당신은 배지가 없습니다.', + 'source' => '출처', + 'source_name' => '출처 이름', + 'source_url' => '출처 URL', + 'spam' => '스팸', + 'ssl_support' => 'SSL을 지원하나요?', + 'start_point' => 'From', + 'step' => '스텝', + 'submit' => '리포트 제출', + 'submit_sms' => 'SMS를 통해 제출', + 'submit_sms1' => 'SMS 보내기', + 'submit_sms2' => '휴대폰에', + 'success' => '성공!', + 'successfuly_imported' => '임포트 성공', + 'surname' => '성', + 'survey' => '新开线路', + 'system' => '시스템', + 'taller_map' => '큰 지도', + 'tcp_port' => 'TCP 포트', + 'themes' => '테마', + 'theme_default' => '우샤히디 기본 테마', + 'theme_settings' => '테마 세팅', + 'this' => '이것', + 'this_day' => '오늘', + 'this_month' => '이번달', + 'this_week' => '이번주', + 'this_year' => '올해', + 'this_is_your_profile' => '이것은 당신의 프로파일입니다.', + 'time' => '시간', + 'title' => '제목 ', + 'to' => 'to', + 'today' => '오늘', + 'today_at' => 'Today at', + 'token' => '토큰', + 'total_reports' => '전체 리포트', + 'translated' => '번역', + 'translated_description' => '번역 설명', + 'translated_title' => '번역 제목', + 'translate_to' => '번역 to', + 'translation' => '번역', + 'translation_saved' => '번역이 저장 되었습니다.', + 'trusted' => '신뢰할 수 있는', + 'type' => '유형', + 'twitter' => '트위터', + 'unable_send_email' => '사용할 수 없는 이메일', + 'uncategorized_reports' => '카테고리에 등록되지 않은 리포트', + 'unread' => '읽지않음', + 'unverified' => '미확인', + 'update_feeds' => '업로드 피드', + 'upload' => '업로드', + 'upload_file' => '파일 업로드', + 'upload_reports' => '업로드 리포트', + 'upload_reports_detail_1' => '아래의 폼에서 사건을 우샤히디로 불러올 수 있습니다.', + 'upload_reports_detail_4' => '반드시 사건의 제목과 날짜가 포함되어야 합니다.', + 'upload_reports_detail_4b' => '만약, 위도와 경도를 넣지 않으면 위치는 Google Geocoder를 사용하여 정해집니다.', + 'upload_reports_detail_4c' => '만약 추가 정보 예. 개인 정보 또는 추가 입력 필드를 가지고 오려면', + 'upload_reports_detail_4d' => '개인 정보 필드-이름, 성, 이메일 중 최소 하나는 입력이 되어 있어야 합니다. 빈 필드는 가져오지 않습니다.', + 'upload_reports_detail_5' => 'CSV 샘플 리포트', + 'upload_reports_detail_6' => '#,사건명,날짜,위치,설명,카테고리,승인,확인,위도,경도
"1","서울, 사망자 발생 추정","2012-09-02 09:06:00","서울","유사한 케이스가 뉴욕에서 확인되었습니다.","사망,시민","YES","YES","29"126.974","37.564"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => '업로드 성공', + 'upload_video' => '업로드 비디오', + 'url' => 'URL', + 'user' => '유저', + 'username' => '유저이름', + 'ushahidi_admin' => '우샤히디 관리자', + 'verification' => '확인', + 'verified' => '확인', + 'verified_reports' => '확인된 리포트', + 'verify' => '확인', + 'verify_this_report' => '리포트 확인', + 'version' => '버전', + 'via' => 'via', + 'video' => '비디오', + 'view' => '보기', + 'views' => '보기', + 'view_all' => '전체 보기', + 'view_all_feeds' => '전체 피드', + 'view_all_reports' => '전체 리포트', + 'view_items' => '아이템 보기', + 'view_more' => '더보기', + 'view_public_profile' => '프로파일', + 'view_report' => '리포트 보기', + 'view_reports' => '리포트 보기', + 'visible' => '보이기', + 'waiting_approval' => '승인대기', + 'waiting_verification' => '확인대기', + 'wider_map' => '넒은 지도', + 'web_form' => '웹 폼', + 'weight' => '무게', + 'yes' => '네', + 'yesterday' => '어제', + 'your_dashboard' => '상황판', + 'your_file' => '내 파일', + 'zoom_in' => '확대', + 'zoom_out' => '축소', +); diff --git a/application/i18n/ko_KR/upgrade.php b/application/i18n/ko_KR/upgrade.php new file mode 100755 index 0000000000..30a62de7b4 --- /dev/null +++ b/application/i18n/ko_KR/upgrade.php @@ -0,0 +1,62 @@ + array( + 'between' => '데이터가 형식에 맞지 않습니다. 아니오는 0을 예는 1을 입력해주세요.', + ) , + 'upgrade_automatic' => '자동업그레이드', + 'upgrade_available' => '업데이트사용가능', + 'upgrade_continue_btn_text' => '계속', + 'upgrade_db_btn_text' => '업그레이드', + 'upgrade_db_text_1' => '지금부터 데이터베이스 업그레이드가 시작됩니다.', + 'upgrade_db_text_2' => '새로운 데이터베이스버전으로', + 'upgrade_db_text_3' => '업그레이드 버튼을 클릭하면 마술과 같은 일이 벌어집니다.', + 'upgrade_db_text_4' => '만약, 데이터베이스 백업을 원하면 아래 해당 사항을 체크해 주세요.', + 'upgrade_db_text_5' => '업그레이드전 데이터베이스를 백업하시겠습니까?(하시는 것을 강력히 추천합니다 :) )', + 'upgrade_db_title' => '우샤히디 데이터베이스 업그레이드', + 'upgrade_db_info' => '우샤히디가 업데이트되었습니다! 계속하기 전에, 데이터베이스를 가장 최신 버전으로 업데이트 해주세요(%s).', + 'upgrade_db_up_to_date' => '현재 버전이 가장 최신입니다.', + 'upgrade_failed' => '업그레이드가 특정 포인트에서 실패 했습니다', + 'upgrade_manual' => '수동 업그레이드', + 'upgrade_status' => '우샤히디 업그레이드 상태', + 'upgrade_text_1' => '아래에서 수동 업그레이드 방법을 설명해 놓았습니다.', + 'upgrade_text_2' => '
다운로드
', + 'upgrade_text_3' => '
- 최신 우샤히디 버전을 다운로드', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- 문제가 생길 수 있으므로, 사전에 백업을 하시는 것을 추천합니다.
파일복사
- 다운로드 된 zip 파일 압축해제
- 웹서버의 운영체제에 따라 원하는 도구나 모드(예. 텔넷, FTP, SSH)를 사용해서 웹서버에 로그인해서 파일과 폴더를 새로운 파일로 교체해주세요.
업그레이드 데이터베이스
- 가장 먼저 데이터베이스 스키마 버전 + db_version 값을 셋팅 테이블 안에서 확인하거나 이 페이지의 상단에서 확인할 수 있습니다.
- 만약 25버전이면, 25-26, 26-27, 27-28 처럼 /sql 디렉토리를 가장 최근의 SQL 파일로 업그레이드 할 필요가 있습니다.
- 데이터베이스 클라이언트로 upgradex-x.sql를 실행하여 업그레이드 할 수도 있습니다.
', + 'upgrade_tables' => 'Step 3: sql 를 보세요. +-.sql을 시작시키면 가장 최근의 파일로 업그레이드 됩니다.', + 'upgrade_text_5' => 'Step 4: "계속" 을 클릭하면, 필요한 테이블이 업그레이드 됩니다.', + 'upgrade_text_6' => '자동업그레이드는 아래의 버튼을 클릭해주세요.', + 'upgrade_title_text' => '지금 사용 중인 우샤히디는 v%1$s 입니다. 데이터베이스 버전은 %2$d 이고 %3$s 에서 구동중입니다.', + 'upgrading' => '업그레이드중', + 'upgrade_ftp_text' => '쉬운 업그레이드를 위해서는 현재 당신의 웹사이트가 호스팅되는 서버에서 사용하는 FTP 정보가 필요합니다.', + 'upgrade_ftp_hostname' => 'FTP 호스트이름: 예시: "localhost"', + 'upgrade_ftp_password' => 'FTP 암호:', + 'upgrade_ftp_username' => 'FTP 사용자명:', + 'upgrade_status_info' => '현재 버전이 가장 최근의 우샤히디 입니다.', + 'upgrade_status_info_2' => '업그레이드 할 필요가 없습니다.', + 'upgrade_db_version' => '데이터베이스 버전: %d', + 'upgrade_warning_software_version' => '경고: version.php의 소프트웨어버전이 데이터베이스와 맞지 않습니다.', + 'upgrade_warning_db_version' => '경고: version.php의 데이터베이스버전이 데이터베이스와 맞지 않습니다.', + 'upgrade_database' => '데이터베이스:', + 'ushahidi_release_version' => '우샤히디 %s', + 'beta' => '베타!', + 'download' => '가장 최근의 우샤히디를 다운로드 중......', + 'log_file' => '로그 파일', + 'successfully_downloaded' => '다운로드가 완료되었습니다. 압축을 풀고 있습니다.', + 'failed_downloading' => '다운로드 실패.', + 'successfully_unpacked' => '압축해제성공. 파일복사중......', + 'failed_unpacking' => '압축해제 실패.', + 'successfully_copied' => '파일복사 성공. 데이터베이스 업그레이드 중......', + 'failed_copying' => '파일복사 실패.', + 'backup_success' => '데이터베이스 백업 및 업그레이드 성공.', + 'backup_failed' => '데이터베이스 백업 실패.', + 'dbupgrade_success' => '데이터베이스 업그레이드 성공.', + 'deleting_files' => '다운로드 파일 삭제중......', + 'upgrade_success' => '업그레이드 성공. 로그파일', +); diff --git a/application/i18n/ku/alerts.php b/application/i18n/ku/alerts.php new file mode 100644 index 0000000000..8c7ce51b00 --- /dev/null +++ b/application/i18n/ku/alerts.php @@ -0,0 +1,7 @@ + array( + 'email' => 'ناونیشانی ئیمەێڵەکە تەواو نیە', + 'email_check' => 'ناونیشانی ئیمەیڵەکە دەخڵکراوە.', + 'length' => 'ناونیشنای ئیمەیڵکە دەبێ لە 4 وشە کەمتر وە لە 64 زیاتر نەبێت.', + 'required' => 'ناونیشنای ئیمەڵ دەبێت دەخڵ بکرێت ئەگەر چێک بۆکسەکەت چیک کردبو', + ) , + 'alert_country' => array( + 'single_country' => 'تکایە دڵنیا ببەرەوە لەوەی کە شوێنەکە لە دەکەوێتە ناو ئەو وڵاوتەی %s دەستنیشان کراوە', + ) , + 'alert_lat' => array( + 'between' => 'تۆ شوێنێکی گونجاوت هەلنەبژاردوە لەسەر خەریتەکە.', + 'required' => 'تۆ شوێنێکت هەڵنەبژاردوە لەسەر خەریتەکە.', + ) , + 'alert_lon' => array( + 'between' => 'تۆ شوێنێکی گونجاوت هەلنەبژاردوە لەسەر خەریتەکە.', + 'required' => 'تۆ شوێنێکی گونجاوت هەلنەبژاردوە لەسەر خەریتەکە.', + ) , + 'alert_mobile' => array( + 'length' => 'ژمارەی تەلەفۆنەکە تەواو نیە.', + 'mobile_check' => 'ئەو ژمارە تەلەفۆنە دەخڵ کراوە.', + 'numeric' => 'خانەی ژمارەی تەلەفۆنەکە تەواو نیە، تکایە دڵنیا ببەرەوە کە کۆدی وڵاتەکەت داخڵ کردوە.', + 'one_required' => 'تۆ تەنها دەبێت ئیمەیڵ یان ژامرەی تەلەفۆن داخڵ بکەیت.', + 'required' => 'ناونیشنای ئیمەڵ دەبێت دەخڵ بکرێت ئەگەر چێک بۆکسەکەت چیک کردبو', + ) , + 'alert_radius' => array( + 'in_array' => 'تیرەیەکی گونجاوت هەڵنەبژاردوە لە سەر نەخشەکە', + 'required' => 'تۆ تیرەی ئەوشوێنە کەدەتەوێت هەڵت نەبژاردوە لەسەر نەخشەکە.', + ) , + 'alert_recipient' => array( + 'required' => 'تۆ هیچت هەڵنەبژاردوە بۆ ئاگادار کردنەوەکە.', + ) , + 'alerts_subscribed' => 'تۆ ئاگاداریت بۆ دێت لەسەر ئەم بابەتانە', + 'code_already_verified' => 'کۆدەکە پێشتر وەرگیراوە', + 'code_not_found' => 'کۆدەکە نەدۆزرایە تکایەدڵنیا بە لەوەی کە لینکەکە راستە', + 'code_verified' => 'کۆدەکە تەواوە، تۆ ئاگادارکردنەوە وەردەگریت.', + 'confirm_request' => 'تکای داواکری بۆ ئاگادارکردنەوە قبوڵ بکە.', + 'create_more_alerts' => 'بگەڕێرەوە بۆ پەیجی ئاگادارکردنەوەکان بۆ زیادکردنی بابەتی تر.', + 'email_alert_request_created' => 'ئیمەیڵ داواکری نێردروا وەپەیامی قبوڵکردەنەکەش نێردرا بۆ', + 'email_code' => 'تکایە ئیمەیلی قبوڵکراو داخڵ بکە', + 'email_error_head' => 'داواکاری ئاگادارکردنەوە لەرێگەی ئیمەێل وەرنەگیرا', + 'email_ok_head' => 'داواکاری ئاگادارکردنەوە لەرێگەی ئیمەیڵ قبوڵکرا', + 'error' => 'ناتوانرێت داواکریەکە پەسەند بکرێت', + 'mobile_alert_request_created' => 'داواکاری ئاگاداری لەرێگەی مۆبایل نێردرا بۆ', + 'mobile_code' => 'تکایە ئەو کۆدە دەخڵ بکە کێردرا بۆ ژمارەی مۆبایلەکە:', + 'mobile_error_head' => 'داواماری لەرێگەی مۆبایلەوە قبوڵ نەکرا!', + 'mobile_ok_head' => 'داواکاری ئاگادارکردنەوە لەرێگەی مۆبایل قبوڵ کرا', +); diff --git a/application/i18n/ku_IQ/auth.php b/application/i18n/ku_IQ/auth.php new file mode 100644 index 0000000000..a653a8c919 --- /dev/null +++ b/application/i18n/ku_IQ/auth.php @@ -0,0 +1,7 @@ + 'ڕاپۆرتەکان ببینە', + 'reports_edit' => 'دروستکردن/ دەستاکری کردن/ سڕینەوەی راپۆرتەکان', + 'reports_approve' => 'قبوڵکردنی راپۆرتەکان', + 'reports_verify' => 'وەرگرترنی راپۆرتەکان', + 'reports_comments' => 'دەستکاری کردنی تێبینی راپۆرتەکان', + 'reports_download' => 'داگرتنی رپۆرتەکان', + 'reports_upload' => 'ناردنی رپۆرتەکان', + 'messages' => 'دەستکاری کردنی نامەکان', + 'messages_reporters' => 'دەستاکری کردنی نامە راپۆرتیەکان', + 'stats' => 'بینینی ئامارەکان', + 'settings' => 'دەستکاری کردنی نرخەکان', + 'manage' => 'دەستاکری کردنی پانێڵەکە', + 'users' => 'دستکاری کردنی ئەندامەکان', + 'manage_roles' => 'دەستکاری کردنی کارەکان', + 'checkin' => 'دەتوانێت چێک بکات', + 'checkin_admin' => 'دەستاکری کردنی ئەوانەی چێکدەکەن', + 'admin_ui' => 'دەستکاری کردنی روکاری ئەدمن', + 'member_ui' => 'دەستکاری کردنی روکاری ئەندامەکان', +); diff --git a/application/i18n/ku_IQ/private_message.php b/application/i18n/ku_IQ/private_message.php new file mode 100644 index 0000000000..a653a8c919 --- /dev/null +++ b/application/i18n/ku_IQ/private_message.php @@ -0,0 +1,7 @@ + array( + 'required' => 'تكاية دوثاتي بكةرةوة كة ئايتميَكت هةلَبذاردووة ', + ) , +); diff --git a/application/i18n/ku_IQ/roles.php b/application/i18n/ku_IQ/roles.php new file mode 100644 index 0000000000..a653a8c919 --- /dev/null +++ b/application/i18n/ku_IQ/roles.php @@ -0,0 +1,7 @@ + 'دەربارە', + 'access' => 'رێگەدان', + 'access_limits' => 'ماوەی رێگەدان', + 'account_name' => 'ناوی ئەژمارەکەت', + 'actions' => 'چالاکیەکان', + 'action_confirm' => 'ئەم چالاکیە ناتوانرێت بگەڕێنرێتەوە، دەتەوێت بەردەوام بیت؟', + 'activate' => 'چالاکی بکە', + 'active' => 'چالاک', + 'add' => 'زیاد بکە', + 'added_by' => 'زیاد کراوە لەلایەن', + 'additional_data' => 'زانیاری زیاتر', + 'additional_reports' => 'راپۆرتی زیاتر', + 'add_edit' => 'زیادکردن/گۆڕانکاری', + 'add_field' => 'زیادکردنی فیڵدێک', + 'add_language' => 'زیادکردنی زمان', + 'add_new' => 'زیادکردنێکی نوێ', + 'add_new_category' => 'زیادکردنی جۆری نوێ', + 'alerts' => 'گەیاندنی ئاگاداری', + 'alerts_alert_me' => 'ئاگادارم بکەرەوە ئەگەر راپۆرتێک هەبوو لە یان لەم نزیکانە', + 'alerts_btn_send' => 'ئاگاداریەکانم تۆمار بکە', + 'alerts_email' => 'ئیەمەیڵ', + 'alerts_enter_email' => 'ئیمەیڵەکەت داخڵ بکە', + 'alerts_enter_mobile' => 'داخڵکردنی ژمارەی مۆبایل لەگەڵ کۆدی وڵاتەکە', + 'alerts_get' => 'وەرگرتنی ئاگاداریەکان', + 'alert_has_been' => 'ئاگاداریەکە کرا', + 'alerts_mobile_phone' => 'ژمارەی مۆبایل', + 'alerts_place_spot' => 'یان سوێنێک لەسەر نەخشەکە، ئێمە ئاگادارت دەکەینەوە لەهەر راپۆرتێک کە لە دووری ٢٠کم بێت', + 'alerts_place_spot2' => 'ئەگەر ناتوانیت شوێنەکە بدۆزیتەوە کلیک بکە لەسەر نەخشەکە بۆئەوەی هیێمایەک دابنێیت', + 'alerts_select_city' => 'شارێک هەڵ بژێرە', + 'alerts_step1_select_city' => 'هەنگاوی ١: شارێک یان شوینێک هەڵ بژێرە', + 'alerts_step2_send_alerts' => 'هەنگاوی ٢:ئاگاداریەکانم بۆ بنێرە بۆ :', + 'alerts_step3_select_catgories' => 'هەنگاوی ٣ (Optional): جۆرێک هەڵبژێرە', + 'home' => 'ماڵەوە', + 'reports_btn_submit' => 'بینێرە', +); diff --git a/application/i18n/ku_IQ/upgrade.php b/application/i18n/ku_IQ/upgrade.php new file mode 100644 index 0000000000..a653a8c919 --- /dev/null +++ b/application/i18n/ku_IQ/upgrade.php @@ -0,0 +1,7 @@ + 'Désolé, notre site est actuellement en maintenance. Veuillez essayez de nouveau dans quelques minutes.', +); diff --git a/application/i18n/lg/message.php b/application/i18n/lg/message.php new file mode 100644 index 0000000000..63b11f9aed --- /dev/null +++ b/application/i18n/lg/message.php @@ -0,0 +1,7 @@ + 'Duombazės klaida: %s', + 'table_not_found' => 'Lentelė "%s" nerasta duombazei. Prašome įsitikinti kad naudojate naujausia duombazės versiją šiai Ushahidi versijai.', +); diff --git a/application/i18n/lt/datetime.php b/application/i18n/lt/datetime.php new file mode 100644 index 0000000000..2aece86e45 --- /dev/null +++ b/application/i18n/lt/datetime.php @@ -0,0 +1,65 @@ + array( + 'full' => 'Penktadienis', + ) , + 'monday' => array( + 'full' => 'Pirmadienis', + ) , + 'saturday' => array( + 'full' => 'Šeštadienis', + ) , + 'sunday' => array( + 'full' => 'Sekmadienis', + ) , + 'thursday' => array( + 'full' => 'Ketvirtadienis', + ) , + 'tuesday' => array( + 'full' => 'Antradienis', + ) , + 'wednesday' => array( + 'full' => 'Trečiadienis', + ) , + 'january' => array( + 'full' => 'Sausis', + ) , + 'february' => array( + 'full' => 'Vasaris', + ) , + 'march' => array( + 'full' => 'Kovas', + ) , + 'april' => array( + 'full' => 'Balandis', + ) , + 'may' => array( + 'full' => 'Gegužė', + ) , + 'june' => array( + 'full' => 'Birželis', + ) , + 'july' => array( + 'full' => 'Liepa', + ) , + 'august' => array( + 'full' => 'Rugpjūtis', + ) , + 'september' => array( + 'full' => 'Rugsėjis', + ) , + 'october' => array( + 'full' => 'Spalis', + ) , + 'november' => array( + 'full' => 'Lapkritis', + ) , + 'december' => array( + 'full' => 'Gruodis', + ) , +); diff --git a/application/i18n/lt/feeds.php b/application/i18n/lt/feeds.php new file mode 100644 index 0000000000..4451dd9c30 --- /dev/null +++ b/application/i18n/lt/feeds.php @@ -0,0 +1,7 @@ + 'php5-curl neįdiegta Jūsų sistemoje.', +); diff --git a/application/i18n/lt/form.php b/application/i18n/lt/form.php new file mode 100644 index 0000000000..4451dd9c30 --- /dev/null +++ b/application/i18n/lt/form.php @@ -0,0 +1,7 @@ + 'Neįmanoma atidaryti IMAP srautą.', + 'unsupported_service' => 'Elektroninio pašto tiekėjas nepalaikomas.', +); diff --git a/application/i18n/lt/installer.php b/application/i18n/lt/installer.php new file mode 100644 index 0000000000..4451dd9c30 --- /dev/null +++ b/application/i18n/lt/installer.php @@ -0,0 +1,7 @@ + 'Veiksmai', + 'added' => 'pridėta', + 'added_edited' => 'pridėta/redaguota', + 'addons' => 'Priedėliai', + 'anyone_role' => 'Bet kas', + 'anywhere' => 'Bet kur', + 'api_settings' => 'API nustatymai', + 'approved' => 'patvirtinta', + 'author' => 'Autorius', + 'back' => 'Atgal', + 'cancel' => 'Atšaukti', + 'color' => 'Spalva', +); diff --git a/application/i18n/lt/ui_main.php b/application/i18n/lt/ui_main.php new file mode 100644 index 0000000000..4451dd9c30 --- /dev/null +++ b/application/i18n/lt/ui_main.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Полето "Електронска адреса" не содржи валидна електронска адреса?', + 'length' => 'Полето "Електронска адреса" мора да биде најмалку 4 и не повеќе од 64 карактери долго.', + 'required' => 'Полето "Електронска пошта" е задолжително ако полето е чекирано.', + ) , + 'alert_lat' => array( + 'between' => 'Немате селектирано валидна локација на мапата.', + 'required' => 'Немате селектирано валидна локација на мапата.', + ) , + 'alert_lon' => array( + 'between' => 'Немате селектирано валидна локација на мапата.', + 'required' => 'Немате селектирано валидна локација на мапата.', + ) , + 'alert_mobile' => array( + 'length' => 'Полето "Мобилен Телефон" не содржи валидна должина. ', + 'numeric' => 'Полето "Мобилен Телефон" не содржи валиден телефонски број. Ве молиме внесете само броеви вклучувајќи го државниот позивен број.', + 'one_required' => 'Мора да внесете Телефонски Број или Електронска пошта.', + 'required' => 'Полето "Телефонски Број" е задолжително доколкѕ полето е чекирано.', + ) , + 'alert_radius' => array( + 'in_array' => 'Немате подесено валиден радиус на мапата.', + 'required' => 'Го немате подесено радиусот на мапата.', + ) , + 'code_already_verified' => 'Овој код е потврден претходно.', + 'email_code' => 'Ве молиме внесете го конфирмациониот код кој ви е испратен по електронска пошта:', + 'error' => 'Системот не беше во можност да го процесира вашето барање за потврда!', + 'mobile_code' => 'Ве молиме внесете го конфирмациониот код кој ви е испратен по СМС:', +); diff --git a/application/i18n/mk_MK/auth.php b/application/i18n/mk_MK/auth.php new file mode 100755 index 0000000000..b820a8e3e0 --- /dev/null +++ b/application/i18n/mk_MK/auth.php @@ -0,0 +1,70 @@ + array( + 'email' => 'Email адресата која ја внесовте не е валидна email адреса', + 'exists' => 'Си извинуваме, корисничка сметка за оваа email адреса веќе постои.', + 'length' => 'Email адресат мора да биде најмалку 4 а не повеќе од 64 карактери долга.', + 'required' => 'Email адресата е задолжителна', + ) , + 'name' => array( + 'length' => 'Името може да содржи најмалку 3 а не повеќе од 100 карактери.', + 'required' => 'Името е задолжително.', + 'standard_text' => 'Корисничкото име содржи недозволени знаци.', + ) , + 'current_password' => array( + 'length' => 'Лозинката мора да е најмалку 8 карактери долга.', + 'login error' => 'Ве молиме проверете дека точната лозинка и email адреса се внесени.', + 'matches' => 'Ве молиме внесете ја истата лозинка во двете полиња.', + 'required' => 'Лозинката е задолжителна.', + 'alpha_dash' => 'Лозинката мора да содржи само букви, симболите # и @, бројки, долни и коси црти', + 'incorrect' => 'Моменталната лозика која ја внесовте е неточна. Ве молиме обидете се повторно.', + ) , + 'new_password' => array( + 'length' => 'Лозинката мора да е најмалку 8 карактери долга.', + 'login error' => 'Ве молиме проверете дека точната лозика и email адреса се внесени.', + 'matches' => 'Ве молиме внесете ја истата лозинка во двете полиња.', + 'required' => 'Лозинката е задолжителна.', + 'alpha_dash' => 'Лозинката мора да содржи само букви, симболите # и @, бројки, долни и коси црти', + ) , + 'password' => array( + 'default' => 'Наидовме на грешка при вашето логирање.', + 'length' => 'Лозинката мора да е најмалку 8 карактери долга.', + 'login error' => 'Ве молиме проверете дека точната лозика и email адреса се внесени.', + 'matches' => 'Ве молиме внесете ја истата лозинка во двете полиња.', + 'required' => 'Лозинката е задолжителна.', + 'riverid server down' => 'Во моментов не можеме да го завршиме успешно вашето логирање. Ве молиме пробајте повторно подоцна.', + 'alpha_dash' => 'Лозинката мора да содржи само букви, симболите # и @, бројки, долни и коси црти', + ) , + 'password_confirm' => array( + 'matches' => 'Полето за потврда на лозинката мора да одговара на она што е внесено во полето за лозинка.', + ) , + 'resetemail' => array( + 'email' => 'Email адресата која ја внесовте не е валидна email адреса.', + 'invalid' => 'Се извинуваме, ја немаме вашата email адреса', + 'required' => 'Email адресата е задолжителна.', + ) , + 'role' => array( + 'superadmin_modify' => 'Само superadmin може да промени superadmin или да надгради корисник во администратор.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Улогата не е валидна.', + 'length' => 'Улогата мора да биде најмалку 5 а не повеќе од 30 карактери долга.', + 'required' => 'Мора да дефинирате најмалку една улога.', + 'values' => 'Мора да избере или ADMIN или USER улога.', + ) , + 'username' => array( + 'admin' => 'Улогата на администратор не може да биде променета.', + 'alpha_numeric' => 'Корисничкото име може да содржи само букви и бројки.', + 'exists' => 'Се извинуваме, ова корисничко име е веќе во употреба.', + 'length' => 'Корисничкото име мора да биде најмалку 2 а не повеќе од 100 карактери долго.', + 'login error' => 'Ве молиме проверете дали го внесовте точното корисничко име.', + 'required' => 'Корисничкото име е задолжително.', + 'superadmin' => 'Улогата на суперадминистратор не може да биде променета.', + 'csrf' => 'Можен CSRF напад. Дали навистина мислевте да креирате/измените корисник?', + ) , +); diff --git a/application/i18n/mk_MK/bug.php b/application/i18n/mk_MK/bug.php new file mode 100755 index 0000000000..aa9b7ee44a --- /dev/null +++ b/application/i18n/mk_MK/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Ве молиме внесете валиден сигурносен код.', + 'required' => 'Ве молиме внесете го сигурносниот код.', + ) , + 'email' => array( + 'email' => 'Email полето не изгледа како да содржи валидна email адреса?', + 'length' => 'Email полето мора да биде најмалку 4 а не подолго 64 карактери.', + 'required' => 'Email полето е задолжително ако сте штиклирале.', + ) , + 'error' => array( + 'required' => 'Полето е задолжително.', + ) , + 'subject' => array( + 'length' => 'Насловот мора да е барем 3 карактери долг.', + 'required' => 'Насловот на пораката е задолжителен.', + ) , + 'yourname' => array( + 'length' => 'Името мора да е барем 3 карактери долго.', + 'required' => 'Полето со име е задолжително.', + ) , +); diff --git a/application/i18n/mk_MK/category.php b/application/i18n/mk_MK/category.php new file mode 100755 index 0000000000..6ff91cbea8 --- /dev/null +++ b/application/i18n/mk_MK/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Бојата мора да е најмалку 6 карактери долга.', + 'required' => 'Полето за боја е задолжително.', + ) , + 'category_description' => array( + 'required' => 'Описот е задолжителен.', + ) , + 'category_image' => array( + 'size' => 'Ве молиме осигурајте се дека големината на сликите не е повеќе од 50КБ.', + 'type' => 'Полето за слика не содржи валидна слика. Прифатени формати за слика се .JPG, .PNG and .GIF.', + 'valid' => 'Полето за слика не содржи валидна датотека', + ) , + 'category_title' => array( + 'length' => 'Насловот мора да биде најмалку 3 а најмногу 80 карактери долг.', + 'required' => 'Насловот е задолжителен.', + ) , + 'parent_id' => array( + 'already_parent' => 'Не можете да подкатегоризирате категорија која содржи подкатегории.', + 'exists' => 'Над-категоријата не постои.', + 'numeric' => 'Полето за над-категоријата мора да биде нумерчно.', + 'parent_trusted' => 'Над-категоријата не може да биде специјална категорија.', + 'required' => 'Полето за над-категорија е задолжително.', + 'same' => 'Категоријата и над-категоријата не можат да бидат исти.', + 'special' => 'Специјални категории не можат да бидат подкатегоризирани.', + ) , +); diff --git a/application/i18n/mk_MK/comments.php b/application/i18n/mk_MK/comments.php new file mode 100755 index 0000000000..5b42f47287 --- /dev/null +++ b/application/i18n/mk_MK/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Ве молиме внесете валиден сигурносен код.', + 'required' => 'Ве молиме внесете го сигурносниот код.', + 'valid' => 'Внесовте погрешен сигурносен код.', + ) , + 'comment_author' => array( + 'length' => 'Името мора да е барем 3 карактери долго.', + 'required' => 'Полето со име е задолжително.', + ) , + 'comment_description' => array( + 'required' => 'Полето со коментари е задолжително', + ) , + 'comment_email' => array( + 'email' => 'Email полето не изгледа како да содржи валидна email адреса?', + 'length' => 'Email полето мора да биде најмалку 4 а не подолго 64 карактери.', + 'required' => 'Email полето е задолжително ако сте штиклирале.', + ) , +); diff --git a/application/i18n/mk_MK/contact.php b/application/i18n/mk_MK/contact.php new file mode 100755 index 0000000000..1e43aa3c63 --- /dev/null +++ b/application/i18n/mk_MK/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Ве молиме внесете валиден сигурносен код.', + 'valid' => 'Ве молиме внесете валиден безбедносен код.', + 'required' => 'Ве молиме внесете го сигурносниот код.', + ) , + 'contact_email' => array( + 'email' => 'Email полето не изгледа како да содржи валидна email адреса?', + 'length' => 'Email полето мора да биде најмалку 4 а не подолго 64 карактери.', + 'required' => 'Email полето е задолжително ако сте штиклирале.', + ) , + 'contact_message' => array( + 'required' => 'Полето за порака е задолжително', + ) , + 'contact_name' => array( + 'length' => 'Името мора да е барем 3 карактери долго.', + 'required' => 'Полето со име е задолжително.', + ) , + 'contact_subject' => array( + 'length' => 'Насловот мора да е барем 3 карактери долг.', + 'required' => 'Насловот на пораката е задолжителен.', + ) , + 'email_send' => array( + 'failed' => 'Имаше грешка при праќањето на вашата порака.', + ) , +); diff --git a/application/i18n/mk_MK/core.php b/application/i18n/mk_MK/core.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/mk_MK/core.php @@ -0,0 +1,7 @@ + array( + 'abbv' => 'Пет', + 'full' => 'Петок', + ) , + 'monday' => array( + 'abbv' => 'Пон', + 'full' => 'Понеделник', + ) , + 'saturday' => array( + 'abbv' => 'Саб', + 'full' => 'Сабота', + ) , + 'sunday' => array( + 'abbv' => 'Нед', + 'full' => 'Недела', + ) , + 'thursday' => array( + 'abbv' => 'Чет', + 'full' => 'Четврток', + ) , + 'tuesday' => array( + 'abbv' => 'Вто', + 'full' => 'Вторник', + ) , + 'wednesday' => array( + 'abbv' => 'Сре', + 'full' => 'Среда', + ) , + 'january' => array( + 'abbv' => 'Јан', + 'full' => 'Јануари', + ) , + 'february' => array( + 'abbv' => 'Феб', + 'full' => 'Фебруари', + ) , + 'march' => array( + 'abbv' => 'Мар', + 'full' => 'Март', + ) , + 'april' => array( + 'abbv' => 'Апр', + 'full' => 'Април', + ) , + 'may' => array( + 'abbv' => 'Мај', + 'full' => 'Мај', + ) , + 'june' => array( + 'abbv' => 'Јун', + 'full' => 'Јуни', + ) , + 'july' => array( + 'abbv' => 'Јул', + 'full' => 'Јули', + ) , + 'august' => array( + 'abbv' => 'Авг', + 'full' => 'Август', + ) , + 'september' => array( + 'abbv' => 'Сеп', + 'full' => 'Септември', + ) , + 'october' => array( + 'abbv' => 'Окт', + 'full' => 'Октомври', + ) , + 'november' => array( + 'abbv' => 'Ное', + 'full' => 'Ноември', + ) , + 'december' => array( + 'abbv' => 'Дек', + 'full' => 'Декември', + ) , +); diff --git a/application/i18n/mk_MK/feeds.php b/application/i18n/mk_MK/feeds.php new file mode 100755 index 0000000000..c6b2b7b1c7 --- /dev/null +++ b/application/i18n/mk_MK/feeds.php @@ -0,0 +1,20 @@ + 'ДАТУМ', + 'feed_name' => array( + 'length' => 'Полето за име треба содржи најмалу 3 а не повеќе од + 70 карактери.', + 'required' => 'Ве молиме внесете го името на новостите.', + ) , + 'feed_url' => array( + 'required' => 'Ве молиме внесете го URL на новостите.', + 'url' => 'Ве молиме внесете валидно URL, пр. http://www.ushahidi.com', + ) , + 'source' => 'ИЗВОР', + 'title' => 'Наслов', +); diff --git a/application/i18n/mk_MK/footer.php b/application/i18n/mk_MK/footer.php new file mode 100755 index 0000000000..ca06f07959 --- /dev/null +++ b/application/i18n/mk_MK/footer.php @@ -0,0 +1,9 @@ + 'php5-curl не е инсталиран на овој систем.', +); diff --git a/application/i18n/mk_MK/form.php b/application/i18n/mk_MK/form.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/mk_MK/form.php @@ -0,0 +1,7 @@ + 'Не може да се отвори IMAP stream.', + 'unsupported_service' => 'Email сервисот не е поддржан.', +); diff --git a/application/i18n/mk_MK/installer.php b/application/i18n/mk_MK/installer.php new file mode 100755 index 0000000000..dda6c8e63b --- /dev/null +++ b/application/i18n/mk_MK/installer.php @@ -0,0 +1,64 @@ + 'База на податоци', + 'database_host' => 'Хост на база на податоци', + 'database_host_description' => 'Ако користите Ushahidi на својот компјутер, тогаш ова повеќе од сигурно ќе биде "localhost". Ако користите Ushahidi од веб сервер, ќе добиете повеќе информации од вашиот веб-хостинг провајдер.', + 'database_name' => 'Име на база на податоци', + 'database_name_description' => 'Името на базата на податоци што саката да ја користите во Ushahidi', + 'db_information_link' => 'За повеќе информации, посетете ја следната страница this article што објаснува бази на податоци подетално.', + 'default_language' => 'Стандарден јазик (Локализација)', + 'disable' => 'Оневозможи', + 'enable' => 'Овозможи', + 'error_summary' => 'Подолу се наведени грешките на кои наидовме.', + 'files_location_text' => 'Локацијата на вашиот сервер, каде што се вашите Ushahidi датотеки. Автоматски ја го пронајдовме оваа вредност, ве молиме проверете дали е точна. Ако полето е празно, не грижете се, тоа значи Ushahidi е инсталиран на највисоко директориум ниво.', + 'finished' => 'Завршено', + 'general' => 'Генерално', + 'go_back' => 'Вратете се назад', + 'index' => array( + 'advanced' => 'НАПРЕДНА ИНСТАЛАЦИЈА', + 'advanced_installation_description' => 'Комплетирајте ги си те основни подесувања низ овој процес од 5 чекори. Ова вклучува сервер, мапа, име на страницата и контакт детали.', + 'basic_installation' => 'ОСНОВНА ИНСТАЛАЦИЈА', + 'basic_installation_description' => 'Едноставно и брзо. Се што ви треба е root папката на вашата страна и информациите околу вашата база на податоци. Одберете ја оваа опција ако сакате брзо да имате се спремно за работа, а се друго можете да подесите понатаму.', + 'proceed' => 'Продолжи', + 'welcome' => 'Добредојдовте на Ushahidi инсталациониот процес за серверот. Подолу Ве молиме изберете каков тип на инсталација саката да користите.', + ) , + 'installation_successful' => 'Успешна инсталација', + 'mail_server_password_description' => 'Лозинката која ја користите да се логирате во вашиот емаил', + 'mail_server_username_description' => 'Ако користите Gmail, Hotmail, or Yahoo Mail, внесете целосна емаил адреса како корисничко име.', + 'map' => 'Мапа', + 'map_provider_description' => 'Ushahidi работи подеднакво добро се следниве провајдери за мапи: Google, Bing или Open Street Map. Изберете го провајдерот кој има најмогу детали во твојата област.', + 'other_steps' => 'Други чекори...', + 'password' => 'Лозинка', + 'password_description' => 'Лозинка на базата на податоци', + 'previous' => 'Претходна', + 'restart_apache' => 'Ве молиме рестартирајте го вашиот Apache сервер', + 'select_mail_server_ssl' => 'Овозможи или оневозможи SSL', + 'site_email_alerts_description' => 'Кога вашите посетители ќе се регистрираат за емаил пораки, тие ќе примаат пораки од оваа адреса. Оваа адреса не мора да биде иста како и емаил адресата на сајдот.', + 'site_name' => 'Име на страницата', + 'site_name_description' => 'Името на вашата страница', + 'site_tagline' => 'Слоганот на страницата', + 'site_tagline_description' => 'Вашиот слоган', + 'summary' => array( + 'text_2' => '

Инструкции за промена на пермисиите на документите:

+ ', + 'text_3' => 'Пред да почнете, мора да се осигурате дека следниве документи и папки имаат дозвола за пишување од напиот веб сервер. Ова вклучува промена на промена на пермисиите на фајловите.', + 'text_4' => 'За инсталациониот процес, ве молиме имајте ги следниве информации при рака.', + ) , + 'table_prefix' => 'Префикс на табелата', + 'table_prefix_description' => 'Најчесто нема да сакате да го промените префиксот на табелата. Но, ако сакате да користите повеќе Ushahidi инсталации во една база на податоци, можете тоа да го направите со промена на префиксот овде.', + 'title' => 'Наслов', + 'to_login' => 'За да се логирате, одете до', + 'upload_data' => 'Качете податоци за пријавите', + 'username' => 'Корисничко име', + 'username_description' => 'Вашето корисничко има за базата на податоци', + 'use_credentials' => 'и ги корисите следниве информации за највување', + 'view_site' => 'Види ја твојата веб страна', +); diff --git a/application/i18n/mk_MK/layer.php b/application/i18n/mk_MK/layer.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/mk_MK/layer.php @@ -0,0 +1,7 @@ + 'Се извинуваме, нашата страница е во моментов не достапна поради одржување. Ве молиме обидете се повторно за неколку минути.', +); diff --git a/application/i18n/mk_MK/message.php b/application/i18n/mk_MK/message.php new file mode 100755 index 0000000000..0639a2fa56 --- /dev/null +++ b/application/i18n/mk_MK/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Ве молиме внесете валиден сигурносен код.', + 'required' => 'Ве молиме внесете го сигурносниот код.', + ) , + 'email' => array( + 'email' => 'Email полето не изгледа како да содржи валидна email адреса?', + 'length' => 'Email полето мора да биде најмалку 4 а не подолго 64 карактери.', + 'required' => 'Email полето е задолжително ако сте штиклирале.', + ) , + 'message' => array( + 'required' => 'Полето со коментари е задолжително', + ) , + 'name' => array( + 'length' => 'Името мора да е барем 3 карактери долго.', + 'required' => 'Полето со име е задолжително.', + ) , + 'phone' => array( + 'length' => 'Полето за телефон не е валидно', + ) , +); diff --git a/application/i18n/mk_MK/mhi.php b/application/i18n/mk_MK/mhi.php new file mode 100755 index 0000000000..2108cca437 --- /dev/null +++ b/application/i18n/mk_MK/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Ве молиме внесете валиден сигурносен код.', + 'required' => 'Ве молиме внесете го сигурносниот код.', + ) , + 'contact_email' => array( + 'email' => 'Email полето не изгледа како да содржи валидна email адреса?', + 'required' => 'Ве молиме внесете валидна email адреса.', + ) , + 'contact_message' => array( + 'required' => 'Пораката е задолжителна.', + ) , + 'contact_subject' => array( + 'length' => 'Насловот на пораката мора да е барем 3 карактери долг.', + 'required' => 'Насловот на пораката е задолжително поле', + ) , +); diff --git a/application/i18n/mk_MK/notifications.php b/application/i18n/mk_MK/notifications.php new file mode 100755 index 0000000000..aab09c64da --- /dev/null +++ b/application/i18n/mk_MK/notifications.php @@ -0,0 +1,35 @@ + 'Оваа порака е пратена од вашата страница.', + 'admin_login_url' => 'Администраторско најавување', + 'admin_new_comment' => array( + 'message' => 'Нов коментар е оставен на вашата страница како одговор на:', + 'subject' => 'Нов коментар', + ) , + 'admin_new_email' => array( + 'message' => 'Нова email порака е оставена на вашата страница.', + 'subject' => 'Нова email порака', + ) , + 'admin_new_report' => array( + 'message' => 'Нова пријава е оставена на вашата страница.', + 'subject' => 'Нова пријава', + ) , + 'admin_new_sms' => array( + 'message' => 'Нова текстуална порака е оставена на вашата страница.', + 'subject' => 'Нова текстуална порака', + ) , + 'member_new_alert' => array( + 'message' => 'Примивте ново предупредување', + 'subject' => 'Ново предупредување!', + ) , + 'member_new_message' => array( + 'message' => 'Имате приватна порака', + 'subject' => 'Нова приватна порака', + 'footer' => 'За да одговорите ве молиме одете на: ', + ) , +); diff --git a/application/i18n/mk_MK/page.php b/application/i18n/mk_MK/page.php new file mode 100755 index 0000000000..279cdcf4c2 --- /dev/null +++ b/application/i18n/mk_MK/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Ве молиме внесете наслов на страницата.', + 'length' => 'Насловот на страницата мора да биде најмалку 3 а не повеќе од 150 карактери.', + ) , + 'page_tab' => array( + 'required' => 'Ве молиме внесете име за табот на страницата.', + ) , + 'page_description' => array( + 'required' => 'Ве молиме внесете опис на страницата.', + ) , +); diff --git a/application/i18n/mk_MK/permissions.php b/application/i18n/mk_MK/permissions.php new file mode 100644 index 0000000000..9d34c56e99 --- /dev/null +++ b/application/i18n/mk_MK/permissions.php @@ -0,0 +1,17 @@ + 'Видете извештаи', + 'reports_edit' => 'Создадете/Променете/Избришете Извештаи', + 'reports_approve' => 'Одобри Извештаи', + 'reports_verify' => 'Потврди Извештаи', + 'reports_download' => 'Симни Извештаи', + 'reports_upload' => 'Внеси извештаи', + 'messages' => 'Менаџирај пораки', + 'stats' => 'Прикажи статистика', + 'settings' => 'Промени ги подесувањата', +); diff --git a/application/i18n/mk_MK/private_message.php b/application/i18n/mk_MK/private_message.php new file mode 100644 index 0000000000..8992dbcd66 --- /dev/null +++ b/application/i18n/mk_MK/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'ID-то на над-категоријата мора да биде нумерично', + ) , + 'private_to' => array( + 'required' => 'Полето "До" е задолжително', + 'exists' => 'Корисникот до кој сакате да испратите порака не постои', + ) , + 'private_subject' => array( + 'required' => 'Полето "Наслов" е задолжително', + 'length' => 'Насловот мора да биде помеѓу 3 и 150 букви', + ) , + 'private_message' => array( + 'required' => 'Полето "Порака" е задолжително', + ) , +); diff --git a/application/i18n/mk_MK/report.php b/application/i18n/mk_MK/report.php new file mode 100755 index 0000000000..3838c2a93c --- /dev/null +++ b/application/i18n/mk_MK/report.php @@ -0,0 +1,16 @@ + 'грешка!', + 'country_name' => array( + 'single_country' => 'Оваа инстанца се протега само низ една држава. Ве молиме осигурајте се дека локацијата на пријавата е во рамките на таа држава %s.', + ) , + 'location_name' => array( + 'length' => 'The "Refine Location Name" field must be at least 3 and no more 200 characters long.', + 'required' => 'The "Refine Location Name" field is required.', + ) , +); diff --git a/application/i18n/mk_MK/reporters.php b/application/i18n/mk_MK/reporters.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/mk_MK/reporters.php @@ -0,0 +1,7 @@ + array( + 'length' => 'Полето "Опис" мора да биде најмалку 3 и не повеќе од 100 карактери', + 'required' => 'Полето "Опис" е задолжително.', + ) , + 'name' => array( + 'alpha_numeric' => 'Полето "Име" мора да содржи само букви и бројки.', + 'length' => 'Полето "Име" мора да биде најмалку 2 и не повеќе од 30 карактери', + 'nomodify' => 'SuperAdmin улога не може да биде изменета.', + 'required' => 'Полето "Име" е задолжително.', + ) , + 'access_level' => array( + 'numeric' => 'Полето "Access Level" мора да биде број помеѓу 0 - 100.', + 'required' => 'Полето "Access Level" мора да биде број помеѓу 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Полето "Permissions" мора да биде број помеѓу 0 - 100.', + ) , +); diff --git a/application/i18n/mk_MK/settings.php b/application/i18n/mk_MK/settings.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/mk_MK/settings.php @@ -0,0 +1,7 @@ + 'Датум на додавање', + 'last_access' => 'Последно пристапено', + 'sharing_color' => array( + 'length' => 'Полето "Боја" мора да биде 6 карактери.', + 'required' => 'Полето "Боја" е задолжително.', + ) , +); diff --git a/application/i18n/mk_MK/stats.php b/application/i18n/mk_MK/stats.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/mk_MK/stats.php @@ -0,0 +1,7 @@ + array( + 'add_to_category' => 'Ова го додава извештајот во дополнителни категории. Ако одберете категорија 1 тука и извештајот веќе има категорија 2 прикачена на него, извештајот тогаш ќе има и Категорија 1 и Категорија 2.', + 'approve' => 'Одобрува или не одобрува извештај. Доколку извештајот е одобрен, ќе биде достапен јавно.', + 'email_body' => 'Содржината на пораката која ќе биде испратена.', + 'email_subject' => 'Наслов на пораката која ќе биде испратена.', + 'report_title' => 'Ова е стандардниот наслов кој ќе биде додаден на извештај.', + 'verify' => 'Обележува извештај за веруфикуван или не верификуван.', + ) , + 'default_value' => 'Оделете ја секоја вредност со запирка, на пример: вредност1, вредност2.', + 'private_subject' => 'Наслов на приватна порака', + 'private_message' => 'Содржина на приватна порака', + 'profile_email' => 'Ваша електронска адреса', + 'profile_username' => 'Вашето корисничко име може да биде променето.', + 'settings_access_level' => 'Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0).', + 'settings_site_tagline' => 'Во неколку зборови, објаснете што е функцијата на овој сајт.', +); diff --git a/application/i18n/mk_MK/ui_admin.php b/application/i18n/mk_MK/ui_admin.php new file mode 100755 index 0000000000..574a9ed3ff --- /dev/null +++ b/application/i18n/mk_MK/ui_admin.php @@ -0,0 +1,87 @@ + 'Пристапот е одбиен. Или вашите податоци не се валидни или вашето барање е одбиено.', + 'add_to_category' => 'Додај во категорија', + 'admin_role' => 'Администратор', + 'are_you_sure_you_want_to' => 'Дали сте сигурни дека сакате', + 'are_you_sure_you_want_to_delete_this_item' => 'Дали сте сигурни дека сакате да ја избришете оваа содржина?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Дали сте сигурни дека сакате да ја избришете оваа слика?', + 'author' => 'Автор', + 'author_email' => 'Електронска пошта на авторот', + 'categories' => 'Категории', + 'check_message_valid' => 'Ве молиме проверете дали вашата порака е валидна.', + 'check_number' => 'Ве молиме проверете дали вашиот број е валиден.', + 'check_sms_settings' => 'Ве молиме проверете ги вашите СМС подесувања.', + 'color' => 'Боја', + 'comments' => 'Коментари', + 'confirm_msg' => 'Корисникот е', + 'country_not_found' => 'Земјата не е пронајдена', + 'create_report' => 'Создадете извештај', + 'currently_active' => 'Моментално Активен', + 'currently_inactive' => 'Моментално Неактивен', + 'daily' => 'Дневно', + 'description' => 'Опис', + 'disabled' => 'Исклучено', + 'download_reports' => 'Симни извештаи', + 'edited' => 'ИЗМЕНЕТО', + 'edited_by' => 'Изменето од', + 'edit_action' => 'Измени', + 'email' => 'Електронска адреса', + 'error_msg' => 'Грешка', + 'error_post_incident' => 'Грешка, инцидентот не може да биде објавен.', + 'every_six_hours' => 'Секои шест часа', + 'every_twelve_hours' => 'Секои дванаесет часа', + 'field_default' => 'Стандардна вредност', + 'field_toggle_no' => 'Не', + 'from' => 'Од', + 'from_date' => 'Од', + 'ispublic_visible' => 'Кој ќе може да ги види одговорите', + 'ispublic_submit' => 'Кој ќе може да одговори', + 'label_email' => 'Електронска Адреса:', + 'label_full_name' => 'Име и презиме:', + 'label_password' => 'Лозинка:', + 'label_username' => 'Корисничко име:', + 'logout' => 'Одјависе', + 'manage_users' => 'Види Корисници', + 'manage_users_edit' => 'Додај/Промени Корисници', + 'message' => 'Порака', + 'messages' => 'Пораки', + 'messages_twitter' => 'Твитер Пораки', + 'message_sent' => 'Твојата порака е пратена!', + 'minute' => 'Минута', + 'minutes' => 'Минути', + 'new_private' => 'Создадете нова порака', + 'page_not_found' => 'Страницата не е пронајдена', + 'password' => 'Лозинка', + 'password_reset' => 'Рестартирање на лозинката', + 'password_reset_message_line_1' => 'Драги', + 'password_reset_message_line_2' => 'Добивме барање за ресетирање на лозинката за', + 'password_reset_message_line_3' => 'За да ја промените лозинката, кликнете на линкот подолу (или копирајте го и ставете го линкот во вашито прелистувач)', + 'password_reset_message_line_4' => 'Како што побаравте, вашата лозинка беше ресетирана. Вашите нови детали се следниве', + 'phone' => 'Телефон', + 'please_select' => 'Ве молиме изберете', + 'preview' => 'Преглед', + 'private_message' => 'Порака', + 'private_messages' => 'Приватна Порака', + 'private_sent' => 'Приватната порака е испратена', + 'private_subject' => 'Наслов', + 'private_to' => 'До', + 'search' => 'Барај', + 'search_reports' => 'Барај извештаи', + 'select_item' => 'Ве молиме изберете содржина', + 'sender' => 'Испраќач', + 'send_to' => 'Испрати до', + 'sent_from_website' => 'Оваа порака е испратена од твојот веб сајт во', + 'settings' => 'Прилагодувања', + 'special_category' => 'Специјална категорија', + 'user' => 'Корисник', + 'users' => 'Корисници', + 'version' => 'Верзија', + 'welcome' => 'Добредојдовте', + 'yes' => 'Да', +); diff --git a/application/i18n/mk_MK/ui_main.php b/application/i18n/mk_MK/ui_main.php new file mode 100755 index 0000000000..d1abbb8218 --- /dev/null +++ b/application/i18n/mk_MK/ui_main.php @@ -0,0 +1,546 @@ + 'За ', + 'access' => 'Пристап', + 'access_limits' => 'Ограничувња на пристап', + 'account_name' => 'Име на сметката', + 'actions' => 'Акции', + 'action_confirm' => 'Оваа акција не може да се откаже. Дали сте сигурни дека сакате да продолжите?', + 'activate' => 'Активирај', + 'active' => 'Активно', + 'add' => 'Додади', + 'added_by' => 'Додадено од', + 'additional_data' => 'Повеќе податоци', + 'additional_reports' => 'Повеќе пријави', + 'add_edit' => 'Додади/Измени', + 'add_field' => 'Додади поле', + 'add_language' => 'Додади јазик', + 'add_new' => 'Додади ново', + 'add_new_category' => 'Додади нова категорија', + 'add_translation' => 'Додади превод', + 'admin' => 'Администрација', + 'alerts' => 'Предупредувања', + 'alerts_alert_me' => 'Предупредиме ако има пријава во, or или околу:', + 'alerts_btn_send' => 'Зачувај го моето предупредување', + 'alerts_email' => 'Email адреса:', + 'alerts_enter_email' => 'внеси email адреса', + 'alerts_enter_mobile' => 'внеси број на мобилен телефон со кодот на државата', + 'alerts_get' => 'Предупредувања', + 'alerts_mobile_phone' => 'Телефон:', + 'alerts_place_spot' => 'Или означете место на мапата доле, и ние ќе ве известиме кога пријава ќе биде додадена на 20 километри.', + 'alerts_place_spot2' => 'Ако не можете да ја најдете вашта локација, означете ја на мапата.', + 'alerts_rss' => 'RSS новости (копирај го URL доле)', + 'alerts_select_city' => 'Одбери град', + 'alerts_step1_select_city' => 'Чекор 1: Одберете го вашиот град или локација:', + 'alerts_step2_send_alerts' => 'Чекор 2: Пратете го предупредувањата на:', + 'alerts_step3_select_catgories' => 'Чекор 3 (Незадолжително): Одберете категорија', + 'alert_confirm_previous' => 'ПОтврдете побарување за претходно предупредување', + 'alert_saved' => 'Вашето предупредување е зачувано!', + 'all' => 'Сите', + 'allowed' => 'Одобрено', + 'all_categories' => 'Сите катетории', + 'all_time' => 'Отсекогаш', + 'and' => 'и', + 'approve' => 'Одобри', + 'approved' => 'Одобрено', + 'approved_reports' => 'Одобрени пријави', + 'approve_this_report' => 'Одобри ја оваа пријава', + 'approximate' => 'Приближно', + 'archive' => 'Архива', + 'archived' => 'Архивирано', + 'at' => 'во', + 'author' => 'Автор', + 'auto_checkin' => 'Автоматско пријавување', + 'avg_reports_per_day' => 'Просечно пријави дненвно', + 'awaiting_approval' => 'Се чека одобрување', + 'awaiting_verification' => 'Се чека верификација', + 'badge' => 'Беџ', + 'badges' => 'Беџови', + 'badge_image' => 'Слика на беџот', + 'badge_image_upload_your_own' => 'Или можете да прикачите ваша слика.', + 'badge_pack' => 'Група беџови', + 'badge_select' => 'Одбери беџ', + 'blog' => 'Блог', + 'browse_profiles' => 'Разгледај профили', + 'cancel' => 'Откажи', + 'categories' => 'Категории', + 'category' => 'Категорија', + 'category_filter' => 'Филтер на категории', + 'category_has_been' => 'Оваа категорија е ', + 'category_name' => 'Име на категоријата', + 'change_date_range' => 'Промени го опсегот на датите', + 'change_password' => 'Промени лозинка', + 'change_picture' => 'Промени ја сликата', + 'choose' => 'Избери', + 'choose_data_points' => 'Одберете што да симнете', + 'choose_date_range' => 'Или одберете сопствен опсег', + 'choose_field_type' => 'Одберете тип на поле', + 'cleanurl' => 'Чисти URL', + 'clear' => 'Откажи', + 'clear_map' => 'Изчисти ја мапата', + 'close' => 'Затвори', + 'clusters' => 'кластери', + 'color' => 'Боја', + 'comment' => 'Коментар', + 'comments' => 'Коментари', + 'comment_details' => 'Повеќе', + 'configuration_saved' => 'Твоите подесувања се зачувани!', + 'configure' => 'Подеси', + 'confirm_email_successful' => 'Успешно ја потврдивте вашата email адреса! Ве молиме логирајте се подоле.', + 'contact' => 'Контактирајте нè', + 'contact_code' => 'Сигурносен код', + 'contact_email' => 'Вашата email адреса', + 'contact_message' => 'Порака', + 'contact_message_has_send' => 'Вашата порака е испртена!', + 'contact_name' => 'Име', + 'contact_phone' => 'Телефонски број', + 'contact_send' => 'Испрати порака', + 'contact_subject' => 'Наслов на пораката', + 'create' => 'Креирај', + 'create_edit' => 'Креирај/Измени', + 'create_new' => 'Креирај нов', + 'create_new_password' => 'Креирај нова лозинка', + 'create_report' => 'Пријави', + 'credibility' => 'Веродостојност', + 'current_password' => 'Вашата лозинка во моментов', + 'custom_fields' => 'Повеќе опции', + 'data' => 'Информации', + 'date' => 'Дата', + 'date_format' => '(dd/mm/yyyy)', + 'date_time' => 'Датум и време', + 'day' => 'ден', + 'deactivate' => 'Деактивирај', + 'default_location_name' => 'Скопје, Македонија', + 'delete' => 'Избриши', + 'deleted' => 'Избришано', + 'deletes' => 'Избришани', + 'delete_disabled' => 'Избриши неактивни', + 'delete_last' => 'Избриши последно', + 'delete_report' => 'Избриши ја пријавата', + 'delete_selected' => 'Избриши ги селектираните', + 'delete_spam' => 'Избриши спам', + 'demo' => 'Демо', + 'description' => 'Опис', + 'detailed_location_example' => 'Пример: позади Рамстор, Железничка, Скопје', + 'details' => 'Повеќе', + 'direct_report' => 'Директна Пријава', + 'disabled' => 'Оневозможено', + 'disapprove' => 'Не одобрувај', + 'download_reports' => 'Симни пријави', + 'edit' => 'Измени', + 'edit_form_fields' => 'Измени ги полињата во формата', + 'edit_report' => 'Измени извештај', + 'email' => 'Електронска пошта', + 'email_address' => 'Адреса на електронска пошта', + 'email_configuration' => 'Mail Server Подесувања', + 'email_server_host' => 'Mail Server Хост', + 'email_server_password' => 'Mail Server Лозинка', + 'email_server_port' => 'Mail Server Порта', + 'email_server_ssl_support' => 'Mail Server SSL поддршка', + 'email_server_type' => 'Mail Server Тип', + 'email_server_username' => 'Mail Server корисничко име', + 'email_settings_comment_0' => 'па вашите подесувања мораат да бидат асоцирани со оваа email address', + 'email_settings_comment_00' => 'За да добивате пријави на email, ве молиме внесете ја вашата email адреса во подесувањата доле. Ве молиме имајте во предвид emails пораките ќе бида доставени до вашето', + 'email_settings_comment_1' => 'Некои сервери бараат комплетна email адреса', + 'email_settings_comment_2' => 'Email лозинка', + 'email_settings_comment_4' => 'Примери: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Примери: pop3, imap', + 'email_settings_comment_6' => 'Овозможи или оневозможи SSL конекции', + 'empty' => '---ПРАЗНО---', + 'end_point' => 'до', + 'error' => 'Грешка!', + 'example' => 'Пример', + 'example_country' => 'Македонија', + 'external_apps' => 'Надворешни апликации', + 'external_video_link' => 'Надворешен видео линк', + 'feed' => 'Новости', + 'feedback' => 'Кажете ни ->', + 'feeds' => 'Новости', + 'feed_has_been' => 'Овие новости се', + 'feed_items' => 'Новости', + 'feed_name' => 'Име на новостите', + 'feed_url' => 'URL на новостите', + 'field_unused' => 'Неискоритено поле', + 'file' => 'Документ', + 'file_over_max_allowed' => 'Вашиот документ е над максимално дозволената големина.', + 'filters' => 'Филтри', + 'filter_reports' => 'Филтрирј пријави', + 'filter_reports_by' => 'Филтрирај ги пријавите по', + 'filter_reports_contain' => 'Филтрирај ги пријавите кои содржат', + 'find' => 'Најди', + 'find_location' => 'Најди локација', + 'first_name' => 'Име', + 'forgot_password' => 'Ја заборавивте лозинката?', + 'form' => 'Форма', + 'forms' => 'Форми', + 'form_description' => 'Опис на формата', + 'form_edit' => 'Измени ја оваа форма', + 'form_has_been' => 'Оваа форма е', + 'form_title' => 'Наслов на формата', + 'from' => 'Од', + 'full_name' => 'Име и презиме', + 'geolocation_available' => 'Геолокација достапна', + 'geometry_color' => 'Боја', + 'geometry_comments' => 'Коментари', + 'geometry_label' => 'Ознака', + 'go' => 'Промени', + 'hashtag' => 'Хаштаг', + 'has_been' => 'Било', + 'help' => 'Како да помогнете', + 'hidden' => 'Скриено', + 'hide' => 'Скри', + 'hide_this_message' => 'скриј ја оваа порака', + 'home' => 'Насловна', + 'how_to_report' => 'Како да пријавам', + 'identify_you' => 'Служи за да те идентификува на страната од другите корисници.', + 'image' => 'Слика', + 'images' => 'Слики', + 'image_icon' => 'Слика/Икона', + 'inactive' => 'Неактивно', + 'inbox' => 'Сандаче', + 'incident' => 'Инцидент', + 'incidents_nearby' => 'Инциденти близу', + 'incident_location' => 'Локација на инцидентот', + 'include' => 'Вклучи', + 'include_categories' => 'Вклучи категории', + 'include_custom_fields' => 'Вклучи сопствени полиња', + 'include_description' => 'Вклучи опис', + 'include_detail' => 'Вклучи колку што е можно повеќе детали', + 'include_latitude' => 'Вклучи латитуда', + 'include_location_information' => 'Вклучи информација за локацијата', + 'include_longitude' => 'Вклучи лонгитуда', + 'incoming_media' => 'Надворешно прикачени материјали', + 'information_evaluation' => 'Евалуација на информациите', + 'input_location' => 'Внесете ја вашата прецизна локација', + 'insufficient_role' => 'Вашата сметка ги нема потребните одобрувања за да се логирате. Ве молиме контактирајте го администраторот.', + 'in_response_to' => 'Како одговор на', + 'ip_address' => 'IP адреса', + 'is_this_your_profile' => 'Дали е ова вашиот профил?', + 'key' => 'Клуч', + 'kml_kmz_upload' => 'Качи KMZ/KML File', + 'language' => 'Јазик', + 'last' => 'Последно', + 'last_month' => 'Последниот месец', + 'last_name' => 'Презиме', + 'last_year' => 'Последната година', + 'latitude' => 'Латитуда', + 'layers' => 'Слоеви', + 'layers_filter' => 'Други слоеви', + 'layer_has_been' => 'Овој слој бил', + 'layer_name' => 'Име на слојот', + 'layer_url' => 'URL на слојот', + 'leave_a_comment' => 'Оставете коментар', + 'less_information' => 'помалку', + 'level' => 'Ниво', + 'level_has_been' => 'Ова ниво било', + 'level_name' => 'Име на нивото', + 'limited' => 'Ограничени', + 'link' => 'Линк', + 'list' => 'Листа', + 'loading_reports' => 'Пријавите се вчитуваат', + 'location' => 'Локација', + 'locations' => 'Локации', + 'location_example' => 'место(населба), град, држава', + 'login' => 'Логирање', + 'login_account_creation_successful' => 'Профилот е успешно креиран. Сега можете да се логирате.', + 'login_confirmation_sent' => 'Одобрување е пратено на вашата email адреса.', + 'login_email_doesnt_exist' => 'Email адресата не постои. Пробајте различна адреса или креирајте нова.', + 'login_select_openid' => 'Ве молам кликнете на провајдерот на вашта сметка', + 'login_with' => 'Логирајте се со', + 'login_userpass' => 'Email и лозинка', + 'login_signup' => 'Регистрирајте се', + 'login_signup_click' => 'Креирајте профил', + 'login_signup_confirmation_subject' => 'Повтврда на регистрирањето', + 'login_signup_text' => 'Креирајте смета сега за да искористите повеќе од можностите на страницата.', + 'longitude' => 'Лонгитуда', + 'map' => 'Мапа', + 'mark_read' => 'Означи како прочитано', + 'mark_unread' => 'Означи како непрочитано', + 'maximum_filesize' => 'Максимум големина', + 'media' => 'Слики, видеа, вести', + 'media_filter' => 'Филтер', + 'members' => 'Членови', + 'manage_your_account' => 'Подеси го твојот профил', + 'message' => 'Порака', + 'messages' => 'Пораки', + 'message_details' => 'Детали на пораката', + 'message_non_numeric_source' => 'Порака од не-нумерички извор:', + 'mobile' => 'Мобилен', + 'modify' => 'Измени', + 'modify_date' => 'Измени ја датата', + 'month' => 'месец', + 'more' => 'Повеќе', + 'more_information' => 'Повеќе информации', + 'multi_country_instance' => 'Дали оваа Ushahidi инстанца се протега низ повеќе држави', + 'must_confirm_email_address' => 'За да и пристапите на оваа инстанца морате да ја потврдите вашата email адреса. Ако сте го изгубиле потврдниот email, можете да побарате нов подоле.', + 'name' => 'Име', + 'nearby_report' => 'Пријава близу', + 'new' => 'Нов', + 'news' => 'Вести', + 'news_feeds' => 'Новости', + 'news_source' => 'Извор на вестите', + 'new_category' => 'Нова категорија', + 'new_password' => 'Нова лозинка', + 'new_report' => 'Нова пријава', + 'next' => 'Следно', + 'no' => 'Не', + 'no_checkins' => 'Нема пријавувања за приказ.', + 'no_data' => 'Нема податоци', + 'none' => 'Нема', + 'not_approved' => 'Не одобрени', + 'not_approved_singular' => 'Не одобрен', + 'not_selected' => '---Не селектирани---', + 'not_spam' => 'не е спам', + 'not_specified' => 'Не специфицирано', + 'no_reports' => 'Нема пријави', + 'no_results' => 'Нема резултати', + 'official_news' => 'Официјални и мејнстрим вести', + 'option' => 'Опции', + 'optional' => 'Опционални', + 'options' => 'Опции', + 'organization' => 'Организација', + 'organizations' => 'Организации', + 'organization_description' => 'Опис на оргнизацијата', + 'organization_email' => 'Email на организацијата', + 'organization_has_been' => 'Организацијата била', + 'organization_name' => 'Име на организацијата', + 'organization_phone_1' => 'Телефон на оргнизацијата 1', + 'organization_phone_2' => 'Телефон на организацијата 2', + 'organization_website' => 'Страница на орранизацијата', + 'original' => 'Првично', + 'original_description' => 'Првичен опис', + 'original_title' => 'Првичен наслов', + 'other_ushahidi_instances' => 'Други Ushahidi инстанци', + 'outbox' => 'Пратени', + 'outgoing' => 'Испратена', + 'page' => 'Страница', + 'pages' => 'Страници', + 'page_description' => 'Опис на страницата', + 'page_has_been' => 'Стрницата била', + 'page_tab_name' => 'Наслов на табот', + 'page_title' => 'Наслов на страницата', + 'parent_category' => 'Категорија родител', + 'password' => 'Лозинка', + 'password_again' => 'Потврдете лозинка', + 'password_changed_successfully' => 'Лозинката е успешно променета! Логирајте се подоле.', + 'password_forgot' => 'Ја заборавивте лозинката?', + 'password_reset_confirm' => 'Проверете го вашето email сандаче за нова лозинка.', + 'password_save' => 'Останете логирани на овој компјутер?', + 'past_month' => 'Изминатиот месец', + 'past_year' => 'Изминатата година', + 'pending' => 'Се вчитува', + 'personal_information' => 'Лични информации Незадолжително.', + 'phone' => 'Телефон', + 'photos' => 'Фотографии', + 'pictures' => 'Слики', + 'pictures_and_videos' => 'Слики и видеа', + 'pinpoint_location' => '* Барајте ја вашата локација користејќи го името ИЛИ координатите латитуда, лонгитуда (формат: 38.19, 85.61), ИЛИ кликнете на мапата за да ја означите точната локација.', + 'play' => 'Пушти', + 'please_note' => 'Ве молиме имајте во предвид', + 'plugins' => 'Плагини', + 'plugin_url' => 'Веб страницата на плагинот', + 'public_profile' => 'Јавен профил', + 'public_profile_url' => 'URL за јавниот профил', + 'preview' => 'Преглед', + 'preview_item' => 'Прегледај', + 'preview_message' => 'Прегледај порака', + 'previous' => 'Претходно', + 'private' => 'Приватно', + 'profile_color' => 'Боја на профилот', + 'profile_saved' => 'Вашиот профил е зачуван', + 'quick_stats' => 'Брза статистика', + 'rating' => 'Оцена', + 'read' => 'Прочитај', + 'receive' => 'Добиј', + 'receive_from' => 'Добиј од', + 'receive_notifications' => 'Добиј известување', + 'recent_reports' => 'Скорешни пријави', + 'refresh_news_feeds' => 'Освежи новости', + 'registered_email' => 'Регистриран email', + 'remove' => 'Отстрани', + 'reply' => 'Одговори', + 'report' => 'Пријава', + 'reports_listed' => 'Пријави (од мапата, излистани по хронолошки редослед)', + 'reporter' => 'Пријавувач', + 'reporters' => 'Пријавувачи', + 'reporter_date' => 'Дата на пријавувачот', + 'reporter_email' => 'email на пријавувачот', + 'reporter_first_name' => 'Име на пријавувачот', + 'reporter_ip' => 'IP адреса на пријавувачот', + 'reporter_last_name' => 'Презиме на пријавувачот', + 'reporter_level' => 'Ниво на пријавувачот', + 'reporter_levels' => 'Нивоа на пријавувачот', + 'reporter_phone' => 'Телефон на пријавувачот', + 'reports' => 'Статистика', + 'reports_btn_browse' => 'Разгледај', + 'reports_btn_submit' => 'Поднеси', + 'reports_by_this_user' => 'Пријави од овој корисник', + 'reports_categories' => 'Категории', + 'reports_date' => 'Датум', + 'reports_description' => 'Опис', + 'reports_download_csv' => 'Пријавите ќе бидат симнати во CSV формат', + 'reports_find_location' => 'Најди локација блиску до тебе', + 'reports_first' => 'Име', + 'reports_last' => 'Презиме', + 'reports_location_name' => 'Прецизирај го местото на локацијата', + 'reports_news' => 'Линк од вести', + 'reports_optional' => 'Незадолжителни информации', + 'reports_photos' => 'Прикачи фотографија', + 'reports_return' => 'Врати се до страната со пријавите', + 'reports_select_city' => 'Одбери град', + 'reports_submitted' => 'Вашата пријава е испратена до нашиот персонал за преглед. За подобри резултати, секоја пријава е администрирана. Ви благодариме за трпението.', + 'reports_submit_new' => 'Пријави нов инцидент', + 'reports_time' => 'Време', + 'reports_timeline' => 'Времески распоред', + 'reports_title' => 'Наслов на пријавата', + 'reports_video' => 'Видео линк', + 'report_an_incident' => 'Пријави инцидент', + 'report_details' => 'Детали на пријавата', + 'report_option_1' => 'Со исраќање на порака на', + 'report_option_2' => 'Со испраќање email', + 'report_option_3' => 'Со праќање на tweet со хаштагот', + 'report_option_4' => 'Со пополнување на овој формулар на нашата страница.', + 'report_option_external_apps' => 'Со користење на апликација', + 'report_saved' => 'Вашата пријава е сочувана', + 'report_title' => 'Наслов на пријвата', + 'request_information' => 'Побарај повеќе информации', + 'request_location' => 'Побарај локација', + 'required' => 'Задолжително', + 'requirements' => 'Задолжителни', + 'resend_confirm_email' => 'Препрати ja email поракат за одобрување', + 'reset' => 'Ресетирај', + 'reset_all_filters' => 'Ресетирај ги сите', + 'reset_password' => 'Ресетирај ја лозинката', + 'retrieve_city_names' => 'Повлечи ги имињата на градовите за избраната држава', + 'riverid_information' => 'Профилите се менаџирни од службата на %s.', + 'role' => 'Улога', + 'save' => 'Зачувај', + 'saved' => 'Зачувано', + 'save_add_new' => 'Зачувај и додади ново', + 'save_close' => 'Зачувај и затвори', + 'save_report' => 'Зачувај извештај', + 'schedule' => 'Распоред', + 'scheduler' => 'Распоредувач', + 'scheduler_day' => 'Ден', + 'scheduler_hour' => 'Час', + 'scheduler_log' => 'Лог на распоредувачот', + 'scheduler_minute' => 'Минута', + 'scheduler_weekday' => 'Ден од неделата', + 'search' => 'ПРЕБАРАЈ', + 'search_results' => 'Резултати од пребарувањето', + 'security_code' => 'Сигурносен код', + 'select_all' => 'Селектирај ги сите', + 'select_field_type' => 'Одбери тип на поле', + 'select_form_type' => 'Одбери тип на форма', + 'select_in_map' => 'Одбери во мапата', + 'select_multiple' => 'Селектирај колку и да се потребни', + 'select_one' => 'Ве молиме осигурајте се дека сте одбрале нешто', + 'select_theme' => 'Избери тема', + 'send' => 'Прати', + 'send_confirmation' => 'Прати потврда', + 'sending_to' => 'Се праќа на', + 'sent' => 'Пратено', + 'sent_by' => 'Пртено од', + 'server_address' => 'Адреса на серверот', + 'server_type' => 'Тип на серверот', + 'service' => 'Опслужувач', + 'service_username' => 'Корисничко име на опслужувачот', + 'service_user_id' => 'Корисничко ID на опслужувачот', + 'share' => 'Сподели', + 'shared_data' => 'Споделени податоци', + 'share_has_been' => 'Споделувањето е', + 'sharing' => 'Споделување', + 'show' => 'Покажи', + 'show_all' => 'Покажи ги сите', + 'show_messages' => 'Покажи ги пораките', + 'site' => 'Страница', + 'site_email_address' => 'email адреса на страницата', + 'site_url' => 'URL на страницата', + 'sorry_no_badges' => 'За жал, вие сеуште немате никаков беџ.', + 'source' => 'Извор', + 'source_name' => 'Име на изворот', + 'source_url' => 'URL на изворот', + 'spam' => 'Спам', + 'ssl_support' => 'SSL поддршка?', + 'start_point' => 'Од', + 'step' => 'Чекор', + 'submit' => 'Пријави нов инцидент', + 'submit_sms' => 'Поднеси преку SMS', + 'submit_sms1' => 'Пратете ја вашата SMS порака до', + 'submit_sms2' => 'на вашиот телефон', + 'success' => 'Успешно!', + 'successfuly_imported' => 'Успешно импортирано', + 'surname' => 'Презиме', + 'survey' => '新开线路', + 'system' => 'Систем', + 'themes' => 'Теми', + 'theme_settings' => 'Подесувања за темите', + 'this' => 'Ова', + 'this_day' => 'Денес', + 'this_month' => 'Овој месец', + 'this_week' => 'Оваа недела', + 'this_year' => 'Оваа година', + 'this_is_your_profile' => 'Ова е вашиот профил.', + 'time' => 'Време', + 'title' => 'Наслов ', + 'to' => 'до', + 'today' => 'Денес', + 'today_at' => 'Денес во', + 'token' => 'Токен', + 'total_reports' => 'Вкупно пријави', + 'translated' => 'Преведено', + 'translated_description' => 'Преведен опис', + 'translated_title' => 'Преведен наслов', + 'translate_to' => 'Преведи на', + 'translation' => 'Превод', + 'translation_saved' => 'Преводот е зачуван', + 'type' => 'Тип', + 'unable_send_email' => 'Не може да се испрати email.', + 'uncategorized_reports' => 'Некатегоризирани пријави', + 'unread' => 'непрочитани', + 'unverified' => 'Неверифицирани', + 'update_feeds' => 'Обнови новости', + 'upload' => 'Прикачи', + 'upload_file' => 'Фајл за качување', + 'upload_reports' => 'Качи пријави', + 'upload_reports_detail_1' => 'Со формата подоле, можете да импортирате инциденти со Ushahidi енџинот.', + 'upload_successful' => 'Качувањето успешно', + 'upload_video' => 'Прикачи видео', + 'user' => 'Корисник', + 'username' => 'Корисничко име', + 'ushahidi_admin' => 'Ushahidi Админ', + 'verification' => 'Верификација', + 'verified' => 'Верифицирано', + 'verified_reports' => 'Верифицирани пријави', + 'verify' => 'Верифицирај', + 'verify_this_report' => 'Верифицирај ја оваа пријава', + 'version' => 'Верзија', + 'via' => 'од', + 'video' => 'Видео', + 'view' => 'Види', + 'views' => 'Види', + 'view_all' => 'Види ги сите', + 'view_all_feeds' => 'Види ги сите новости', + 'view_all_reports' => 'Види ги сите пријави', + 'view_items' => 'Види ги сите', + 'view_more' => 'Види повеќе', + 'view_public_profile' => 'Види го јавниот профил', + 'view_report' => 'Види пријава', + 'view_reports' => 'Види пријави', + 'visible' => 'видливо', + 'waiting_approval' => 'Чека одобрување', + 'waiting_verification' => 'Чека верификација', + 'web_form' => 'Бев форма', + 'weight' => 'Тежина', + 'yes' => 'Да', + 'yesterday' => 'Вчера', + 'your_dashboard' => 'Вашата работа табла', + 'your_file' => 'Вашиот фајл', + 'zoom_in' => 'Зголеми', + 'zoom_out' => 'Намали', +); diff --git a/application/i18n/mk_MK/upgrade.php b/application/i18n/mk_MK/upgrade.php new file mode 100755 index 0000000000..4f35971a8e --- /dev/null +++ b/application/i18n/mk_MK/upgrade.php @@ -0,0 +1,27 @@ + array( + 'between' => 'Невалиден внес на податоци. Може да биде 0 за Не или 1 за Да.', + ) , + 'upgrade_automatic' => 'Автоматско надоградување', + 'upgrade_available' => 'Достапни ажурирања', + 'upgrade_continue_btn_text' => 'Продолжи', + 'upgrade_db_btn_text' => 'Ажурирај', + 'upgrade_db_text_1' => 'Ќе ја надоградиме вашата база на податоци од верзија', + 'upgrade_db_text_2' => 'до најновата база на податоци', + 'upgrade_db_text_3' => 'Кликнете на "Ажурирај" копчето и само кулирајте додека јас изведувам магија.', + 'upgrade_db_text_4' => 'Доколку сакате да ја заштитите вашата база на податоци, само кликнете на копчето подолу и јас ќе ја заштитам базата за вас.', + 'upgrade_db_text_5' => 'Заштитете ја базата на податоци пред ажурирање? (Препорачливо)', + 'upgrade_text_1' => 'Подолу се инструкциите за рачно надоградување на вашата Ushahidi верзија', + 'upgrade_text_2' => '
Превземи
', + 'upgrade_text_6' => 'За автоматско ажурирање, кликнете на копчето подолу.', + 'upgrading' => 'Надоградување', + 'upgrade_status_info' => 'Вие ја имате најновата верзија на Ushahidi.', + 'upgrade_db_version' => 'Верзија на базата на податоци: %d', + 'upgrade_database' => 'База на податоци:', +); diff --git a/application/i18n/ne_NP/alerts.php b/application/i18n/ne_NP/alerts.php new file mode 100644 index 0000000000..fe5355c49c --- /dev/null +++ b/application/i18n/ne_NP/alerts.php @@ -0,0 +1,14 @@ + array( + 'email' => 'इमेल छेत्र मा मान्य इमेल नभएको आवस्था', + 'email_check' => 'यो इमेल पहिलेनै यो स्थानको लागि सतर्क संदेश पाउनको लागि प्रयोग भैसकेको छ ', + 'length' => 'इमेल क्षेत्र मा कम्तिमा 4 र बढीमा 64 वर्ण मात्र हुन सक्छ ', + 'required' => 'बक्स मा ठिक लागिएको छ भने इमेल क्षेत्र आनिबार्य छ ', + ) , +); diff --git a/application/i18n/ne_NP/auth.php b/application/i18n/ne_NP/auth.php new file mode 100644 index 0000000000..d8ee7af885 --- /dev/null +++ b/application/i18n/ne_NP/auth.php @@ -0,0 +1,11 @@ + array( + 'required' => 'नाम भएको क्षेत्र आवश्यक छ ', + ) , +); diff --git a/application/i18n/ne_NP/bug.php b/application/i18n/ne_NP/bug.php new file mode 100644 index 0000000000..c03f3fdbe1 --- /dev/null +++ b/application/i18n/ne_NP/bug.php @@ -0,0 +1,7 @@ + 'म', +); diff --git a/application/i18n/ne_NP/feeds.php b/application/i18n/ne_NP/feeds.php new file mode 100644 index 0000000000..d091d4e37f --- /dev/null +++ b/application/i18n/ne_NP/feeds.php @@ -0,0 +1,9 @@ + 'स्रोत', +); diff --git a/application/i18n/ne_NP/installer.php b/application/i18n/ne_NP/installer.php new file mode 100644 index 0000000000..d622d85fca --- /dev/null +++ b/application/i18n/ne_NP/installer.php @@ -0,0 +1,14 @@ + array( + 'advanced' => 'उन्नत स्थापना', + ) , + 'title' => 'शीर्षक', + 'upload_data' => 'अपलोड रिपोर्ट डाटा', + 'username' => 'प्रयोगकर्ता नाम', +); diff --git a/application/i18n/ne_NP/notifications.php b/application/i18n/ne_NP/notifications.php new file mode 100644 index 0000000000..4be25eeafb --- /dev/null +++ b/application/i18n/ne_NP/notifications.php @@ -0,0 +1,11 @@ + array( + 'subject' => 'नयाँ इमेल सन्देश', + ) , +); diff --git a/application/i18n/ne_NP/permissions.php b/application/i18n/ne_NP/permissions.php new file mode 100644 index 0000000000..66a7d61e89 --- /dev/null +++ b/application/i18n/ne_NP/permissions.php @@ -0,0 +1,7 @@ + array( + 'info' => 'नक्सा छान्न , नक्सा को सोर्र्त छान्नुहोस्, नक्सा को सोर्र्तको साईट बाट ए.पी.आइ की प्राप्त गर्नुहोस र ए.पी.आइ की हल्नुहॊस', + 'name' => 'नक्शा सोर्र्त', + ) , + 'map_timeline' => 'नक्शा समयरेखा', + 'map_settings' => 'नक्शा प्राथमिकता', + 'multiple_countries' => 'के यो उशाहिदी दीप्लोय्मेंट एक भन्दा बदी राष्ट्र मा फैलिएको छ ?', + 'set_location' => 'तपाईं को सहि स्थान रखन् नक्सा लाई थिचेर सर्नुहूस', + 'site' => array( + 'allow_clustering' => 'प्रतिबेदन्हारू लाई नक्सा मा समूह मा देखाउनुहोस', + 'allow_comments' => 'प्रयोगकर्ताहरु लाई परतिबेदनमा पर्तिक्रिया जनाउन दिनुहोस', + ) , +); diff --git a/application/i18n/ne_NP/stats.php b/application/i18n/ne_NP/stats.php new file mode 100644 index 0000000000..a9ed022d37 --- /dev/null +++ b/application/i18n/ne_NP/stats.php @@ -0,0 +1,11 @@ + 'देशहरु', + 'reports_status' => 'रिपोर्टको स्थिति', + 'verified' => 'प्रमाणित', +); diff --git a/application/i18n/ne_NP/tooltips.php b/application/i18n/ne_NP/tooltips.php new file mode 100644 index 0000000000..26e7a557fe --- /dev/null +++ b/application/i18n/ne_NP/tooltips.php @@ -0,0 +1,9 @@ + 'तपाईंको इमेल ठेगाना', +); diff --git a/application/i18n/ne_NP/ui_admin.php b/application/i18n/ne_NP/ui_admin.php new file mode 100644 index 0000000000..577e0120ee --- /dev/null +++ b/application/i18n/ne_NP/ui_admin.php @@ -0,0 +1,44 @@ + 'जिम्मेवारीहरु', + 'count' => 'गणना', + 'country_not_found' => 'देश फेला परेन', + 'currently_inactive' => 'हाल निष्क्रिय', + 'daily' => 'दैनिक', + 'days_of_the_week' => 'साताका दिनहरु ', + 'deleted' => 'मेटिएको', + 'phone' => 'फाेन', + 'private_message' => 'सन्देश', + 'private_messages' => 'गाेप्य सन्देश', + 'private_subject' => 'विषय', + 'required' => 'अावश्यक', + 'results' => 'नतिजाहरू', + 'search' => 'खाेज', + 'select_item' => 'एक आइटम चयन गर्नुहोस्', + 'sender' => 'प्रेषक', + 'server_time' => 'सर्भरको समय', + 'settings' => 'सेटिङ', + 'showing_page' => 'देखाइँदै पृष्ठ', + 'shown' => 'देखाइएको', + 'subject' => 'विषय', + 'theme_name' => 'नाम', + 'unapproved' => 'अनुमोदन नगरिएको', + 'unknown' => 'अज्ञात', + 'unknown_failure' => 'अज्ञात विफलता', + 'unread' => 'नपढेको', + 'view_private' => 'गाेप्य सन्देशहरू', + 'view_site' => 'साइट हेर्नुहाेस्', + 'view_report' => 'रिपाेर्ट हेर्नुहाेस्', + 'welcome' => 'स्वागतम्,', + 'xml' => 'एक्स एफ एल', + 'yes' => 'हाे', + 'delete_all_confirm' => 'तपाईं सबै रिपोर्ट मेटाउन चाहनुहुन्छ तपाईं पक्का हुनुहुन्छ ?', + 'delete_all_no_reports' => 'मेटिने कुनै रिपोर्टहरू छन् ', + 'user_no_logins' => 'लगिन संख्या', + 'user_last_login' => 'पछिल्लो लगिन', +); diff --git a/application/i18n/ne_NP/ui_main.php b/application/i18n/ne_NP/ui_main.php new file mode 100755 index 0000000000..1f7edb08e3 --- /dev/null +++ b/application/i18n/ne_NP/ui_main.php @@ -0,0 +1,560 @@ + 'हाम्रो बारेमा', + 'access' => 'पहुँच', + 'access_limits' => 'सीमित पहुँच', + 'account_name' => 'खाताको नाम', + 'actions' => 'कार्यहरू', + 'action_confirm' => 'यो कार्य लाई उल्टाउन सकिदैन। के तपाई अगाडी बढ्न चाहनुहुन्छ?', + 'activate' => 'सक्रिय गर्नुहोस्', + 'active' => 'सक्रिय', + 'add' => 'थप्नुहोस/हल्नुहोस', + 'added_by' => 'कसले हालेको ', + 'additional_data' => 'अतिरिक्त डाटा', + 'additional_reports' => 'अतिरिक्त प्रतिवेदनहरु', + 'add_edit' => 'जोड्नुहोस्/बदल्नुहोस्', + 'add_field' => 'फिल्ड थप्नुहोस्', + 'add_language' => 'भाषा थप्नुहोस्', + 'add_new' => 'नयाँ थप्नुहोस्', + 'add_new_category' => 'नयाँ श्रेणी जोड़्नुहोस्', + 'add_translation' => 'अनुवाद जोड़्नुहोस्', + 'admin' => 'प्रशासन', + 'alerts' => 'अलर्टहरु प्राप्त गर्नुहोस्', + 'alerts_alert_me' => ' यस क्षेत्रमा वा यसको नजिकबाट रिपोर्ट प्राप्त भएमा मलाई अलर्ट पठाउँनुहोस्', + 'alerts_btn_send' => 'मेरो अलर्ट सेभ गर्नुहोस्', + 'alerts_email' => 'ईमेल ठेगाना', + 'alerts_enter_email' => 'ैईमेल पता हाल्नुहोस्', + 'alerts_enter_mobile' => 'कन्ट्री कोड सहीत मोबाईल न. हाल्नुहोस्', + 'alerts_get' => 'चेतावनी प्राप्त गर्नुहोस्', + 'alert_has_been' => 'चेतावनी गरिएको छ', + 'alerts_mobile_phone' => 'मोबाईल फोन', + 'alerts_place_spot' => 'तल दिएको नक्शामा आफ्नो ठाँउ हेर्नुस् र हामी तपाईको 20 कि.मि भित्रको रिपोर्टको बारेमा अधिसूचना दिनेछम्।', + 'alerts_place_spot2' => 'यदि आफ्नो ठाँउ भेटाउनु भए छैन भने क्रिपया नक्शामा सहि ठाँउमा pinpoint गर्नुहोस् ', + 'alerts_rss' => 'फ़ीड आरएसएस (तल को यूआरएल लार्इ कपी गर्नुस )', + 'alerts_select_city' => 'नगर/शहर चयन गर्नुहोस', + 'alerts_step1_select_city' => 'क्रम १: आफ्नो शहर अथवा ठाऊ छान्नुहाेस् : ', + 'alerts_step2_send_alerts' => 'क्रम २: मलाई सचेत गर्नुहोस् :', + 'alerts_step3_select_catgories' => ' क्रम 3(वैकल्पिक):विभाग चयन गर्नुहोस ', + 'alert_confirm_previous' => 'पछिल्लो एउटा अलर्ट अनुरोध को पुष्टि गर्नुहोस ', + 'alert_saved' => 'अलर्ट सुरक्षित गरियो ', + 'all' => 'सबै', + 'allowed' => 'अनुमति ', + 'all_categories' => 'सबै श्रेणी हरु ', + 'all_time' => 'सधै ', + 'and' => 'अरु', + 'api' => 'ए पि आइ', + 'approve' => 'अनुमोदन', + 'approved' => 'अनुमोदित', + 'approved_reports' => 'अनुमोदित रिपोर्ट', + 'approve_this_report' => 'रिपोर्ट लाइ अनुमोदन गर्नुहोस ', + 'approximate' => 'लगभग', + 'archive' => 'संग्रह', + 'archived' => 'संग्रहीत', + 'ascending' => 'आरोही', + 'at' => 'मा', + 'author' => 'लेखक', + 'auto_checkin' => 'ओटो चेक इन ', + 'Auto' => 'अटाे', + 'avg_reports_per_day' => 'प्रति दिन औसत रिपोर्ट', + 'awaiting_approval' => 'अनुमोदन को लगी प्रतीक्षा मा ', + 'awaiting_verification' => 'सत्यापन को लागी प्रतीक्षा मा ', + 'badge' => 'बिल्ला', + 'badges' => 'बिल्लाहरु ', + 'badge_image' => 'बिल्लाको प्रतिरूप', + 'badge_image_upload_your_own' => 'तपाई को आफ्नै बिल्ला प्रतिरूप अपलोड गर्नुहोस ', + 'badge_pack' => 'बिल्ला पैक', + 'badge_select' => 'एउटा बिल्ला चयन गर्नुहोस ', + 'blog' => 'ब्लोग', + 'browse_profiles' => 'प्रोफाइल ब्राउज़', + 'cancel' => 'रद्द गर्नुहोस ', + 'categories' => 'श्रेणीहरु ', + 'category' => 'श्रेणी ', + 'category_filter' => 'श्रेणी छान्नु', + 'category_has_been' => 'श्रेणीमा', + 'category_name' => 'श्रेणीको नाम ', + 'change_date_range' => 'मिति सीमा बदलिनुहोस', + 'change_password' => 'पासवर्ड बदलिनुहोस ', + 'change_picture' => 'मेरो तस्वीर बदलिनुहोस ', + 'choose' => 'एउटा छान्नुहोस ', + 'choose_data_points' => 'डाउनलोड गर्न लाइ डाटा बिंदु हरु रोज्नुस ', + 'choose_date_range' => 'अथवा आफ्नो मिति सीमा रोज्नुहोस ', + 'choose_field_type' => 'फील्ड को प्रकार रोज्नुहोस ', + 'cleanurl' => ' URLs मेट्नुहोस', + 'clear' => 'मेट्नुहोस', + 'clear_map' => 'नक्शा सफा पारनुहोस', + 'close' => 'बन्द गर्नुहोस ', + 'clusters' => 'समूह हरु', + 'color' => 'रंग', + 'comment' => 'टिप्पणी', + 'comments' => 'टिप्पणी हरु ', + 'comment_details' => 'टिप्पणी विवरण', + 'configuration_saved' => 'सेटिंग सुरक्षित ', + 'configure' => 'कॉन्फ़िगर', + 'confirm_email_successful' => 'तपाईंले सफलताका साथ आफ्नु ए-मेल पक्का गर्नुभो! लोग इन गर्नुहोस्', + 'contact' => 'सम्पर्क गर्नुहोस ', + 'contact_code' => 'सुरक्षा कोड', + 'contact_email' => ' ईमेल ', + 'contact_message' => 'संदेश', + 'contact_message_has_send' => 'तपाइको सन्देश प्रेषित ', + 'contact_name' => 'तपाइको नाम', + 'contact_phone' => 'तपाइको फोन नंबर', + 'contact_send' => 'सन्देश पठाउनुहोस ', + 'contact_subject' => 'सन्देश को बिषय ', + 'copyright' => 'कपीराइट ©', + 'create' => 'सृजना गर्नुहोस ', + 'create_edit' => 'सृजना गर्नुहोस / संपादित', + 'create_new' => 'नया सृजना गर्नुहोस ', + 'create_new_password' => 'नया पासवर्ड सृजना गर्नुहोस ', + 'create_report' => 'रिपोर्ट बनाउहोस', + 'credibility' => 'विश्वसनीयता', + 'current_password' => 'वर्तमान पासवर्ड', + 'custom_fields' => 'कस्टम फ़ील्ड', + 'data' => 'सूचना', + 'date' => 'मिति', + 'date_format' => 'माहिना /दिन / साल ', + 'date_time' => 'मिति र समय ', + 'day' => 'दिन', + 'Daily' => 'दैनिक', + 'deactivate' => 'निष्क्रिय ', + 'default_location_name' => 'नैरोबी, केन्या', + 'delete' => 'मेट्नुहोस ', + 'deleted' => 'मेटेको ', + 'deletes' => 'मेट्छ', + 'delete_disabled' => ' + +निर्योग्य मेट्नुहोस ', + 'delete_last' => 'अंतिम मेटेको ', + 'delete_report' => 'रिपोर्ट लाइ मेट्नुहोस ', + 'delete_selected' => 'चयनित मेट्नुहोस ', + 'delete_spam' => 'स्पैम मेट्नुहोस ', + 'demo' => 'प्रदर्शन', + 'description' => 'विवरण', + 'descending' => 'अवरोही', + 'detailed_location_example' => 'उदाहरण : बजार को कुना मा, ward no 5, Gulariya Bardiya', + 'details' => 'विवरण', + 'direct_report' => 'प्रत्यक्ष प्रतिवेदन', + 'disabled' => ' + +निर्योग्य', + 'disapprove' => 'अनुमोदन न भएको ', + 'download_reports' => 'प्रतिवेदनहरु डाउनलोड गर्नुहोस', + 'download' => 'डाउनलोड गर्नुहोस', + 'edit' => 'संपादन गर्नुहोस ', + 'edit_form_fields' => ' फ़ील्ड प्रपत्र संपादन गर्नुहोस ', + 'edit_report' => 'प्रतिवेदन संपादन गर्नुहोस ', + 'email' => 'ईमेल', + 'email_address' => 'ेईमेल पता', + 'email_configuration' => 'mail server setting ', + 'email_server_host' => 'मेल सर्वर होस्ट', + 'email_server_password' => 'मेल सर्वर पासवर्ड', + 'email_server_port' => 'मेल सर्वर पोर्ट', + 'email_server_ssl_support' => 'मेल सर्वर SSL को समर्थन', + 'email_server_type' => 'मेल सर्वर को प्रकार', + 'email_server_username' => 'मेल सर्वर उपयोगकर्ता को नाम', + 'email_settings_comment_0' => 'तेसैले तपाईंको प्राथमिकता एस ई-मेल संग जडान हुनुपर्छ ', + 'email_settings_comment_2' => 'ईमेल खाता को पासवर्ड', + 'email_settings_comment_4' => 'उदाहरण: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'उदाहरण: POP3, IMAP', + 'email_settings_comment_6' => 'एसएसएल कनेक्शन सक्षम या अक्षम', + 'empty' => ' +खाली', + 'end_point' => 'सम्म ', + 'error' => 'त्रुटि!', + 'example' => 'उदाहरण', + 'example_country' => 'केन्या', + 'external_apps' => 'बाहरी ऐप्स', + 'external_video_link' => 'बाहरी वीडियो लिंक', + 'facebook' => 'फेसबुक ', + 'feed' => 'फ़ीड, भरण', + 'feedback' => 'प्रतिक्रिया प्रदान गर्नुहोस ', + 'feeds' => 'फ़ीड', + 'feed_has_been' => 'भरण गरियो ', + 'feed_items' => 'फ़ीड विषय ', + 'feed_name' => 'फीड नाम ', + 'feed_url' => 'फीड यूआरएल', + 'field_unused' => 'प्रयोग नभएको फिल्ड', + 'file' => 'फ़ाइल', + 'file_over_max_allowed' => 'तपाईंको फाईल को आकार ठुलो भयो', + 'filters' => 'चाल्नी हरु ', + 'filter_reports' => 'प्रतिवेदनहरु चाल्नुहोस ', + 'filter_reports_by' => 'प्रयोगकर्ता अनुसार प्रतिबेदन छान्नुहोस्', + 'filter_reports_contain' => 'फ़िल्टर प्रतिवेदनहरु शामिल छ', + 'find' => 'खोज्नुहोस ', + 'find_location' => 'स्थान पत्ता लगाउनुहोस ', + 'first_name' => 'प्रथम नाम', + 'force_run_scheduler' => 'समयबद्धक', + 'forgot_password' => 'आफ्नो पासवर्ड बिर्सिनुभयो ?', + 'form' => 'प्रपत्र', + 'forms' => 'प्रपत्र हरु ', + 'form_description' => 'प्रपत्र विवरण', + 'form_edit' => ' प्रपत्र संपादन गर्नुहोस ', + 'form_has_been' => 'प्रपत्र ', + 'form_title' => 'प्रपत्र शीर्षक', + 'from' => 'द्वारा', + 'full_name' => 'पूरा नाम', + 'geolocation_available' => 'भू स्थान उपलब्ध ', + 'geometry_color' => 'रंग', + 'geometry_comments' => 'टिप्पणी', + 'geometry_label' => 'नामपत्र', + 'geometry_strokewidth' => 'स्ट्रोक चौड़ाई', + 'go' => 'जनुहोस ', + 'hashtag' => 'हैशटैग', + 'has_been' => 'भाको छ', + 'help' => 'सहायता कसरी गर्ने', + 'hidden' => 'गुप्त', + 'hide' => 'लुकेको ', + 'hide_this_message' => 'यो सन्देश लुकाउनुहोस ', + 'home' => 'गृहपृष्ठ', + 'Hourly' => 'प्रतिघण्टा', + 'how_to_report' => 'रिपोर्ट कसरी गर्ने', + 'https' => 'HTTPS', + 'id' => 'पहचान', + 'identify_you' => 'तपाईंलाई अरु प्रयोगकर्ता संग चिनाउन प्रयोग गरिन्छ', + 'image' => 'प्रतिरूप', + 'images' => 'प्रतिरूप हरु ', + 'image_icon' => 'छवि / आइकॉन', + 'inactive' => 'निष्क्रिय', + 'inbox' => 'इनबॉक्स', + 'incident' => 'घटना', + 'incidents_nearby' => 'निकटवर्ती घटनाहरु', + 'incident_location' => 'घटना स्थान', + 'include' => 'समावेश', + 'include_categories' => 'श्रेणी हरु समावेश गरनुहोस', + 'include_custom_fields' => 'कस्टम फ़ील्ड हरु समावेश गरनुहोस', + 'include_description' => 'पृष्ठ विवरण समावेश गरनुहोस', + 'include_detail' => 'जती सक्दो विवरण समावेश गर्नुहोस ', + 'include_latitude' => 'अक्षांश समावेश गरनुहोस', + 'include_location_information' => 'स्थान सूचना समावेश गरनुहोस', + 'include_longitude' => 'देशान्तर समावेश गरनुहोस', + 'include_personal_info' => 'व्यक्तिगत सूचना समावेश', + 'incoming_media' => 'आउने मीडिया ', + 'information_evaluation' => 'सूचना को मूल्यांकन', + 'input_location' => 'आफ्नो यथार्थ स्थान दर्ता गर्नुहोस ', + 'interval' => 'अन्तराल', + 'in_response_to' => 'को जवाब मा', + 'ip_address' => 'आईपी ​​पता', + 'is_this_your_profile' => 'के यो तपाइको प्रोफाइल हो ?', + 'item' => 'विषय', + 'items' => 'विषय हरु ', + 'item_details' => 'विषय_विवरण', + 'item_title' => 'विषय शीर्षक', + 'key' => 'समाधान', + 'kml_kmz_file' => 'KMZ/KML फईल', + 'kml_kmz_upload' => 'KMZ/KML फईल अपलोड गर्नुहोस', + 'kml_url' => 'KML URL', + 'laconica' => 'संक्षिप्त', + 'language' => 'भाषा ', + 'last' => 'अंतिम', + 'last_month' => 'गएको महिना ', + 'last_name' => ' उप नाम', + 'last_year' => 'गएको वर्ष', + 'latitude' => 'अक्षांश', + 'layers' => 'तह हरु ', + 'layers_filter' => 'अन्य तह ', + 'layer_has_been' => 'यो लेयर', + 'layer_name' => 'तह को नाम', + 'layer_url' => 'तह URL', + 'leave_a_comment' => 'टिप्पणी लेखी छोड्नुहोस', + 'less_information' => 'थोरै सूचना', + 'level' => 'स्तर', + 'level_has_been' => 'यो श्रेणी ', + 'level_name' => 'स्तर को नाम ', + 'limited' => 'सीमित', + 'link' => 'लिंक', + 'list' => 'सूची', + 'loading_reports' => 'प्रतिवेदनहरु लोड हुँदै छ', + 'location' => 'स्थान ', + 'locations' => 'स्थानहरु', + 'location_example' => 'शहर, राज्य / देश', + 'login' => 'लॉगिन', + 'login_with' => 'लॉगिन', + 'login_userpass' => 'ईमेल तथा पासवर्ड', + 'login_openid' => 'खुला आईडी', + 'login_signup' => 'साइन अप', + 'login_signup_click' => 'एउटा खाता बनाउहोस', + 'login_signup_confirmation_subject' => 'साइनअप प्रमाणीकरण ', + 'login_signup_approval_subject' => 'प्रयोगकर्ता खाता अनुमोदित', + 'longitude' => 'देशान्तर ', + 'map' => 'नक्शा', + 'maximum_filesize' => 'अधिकतम फाइल को आकार', + 'media' => 'मीडिया', + 'media_filter' => 'मीडिया चाल्नी ', + 'members' => 'सदस्य', + 'manage_your_account' => 'आफ्नो खता प्रबंधन गर्नुहोस ', + 'message' => 'संदेश', + 'messages' => 'संदेशहरु', + 'message_details' => 'संदेश विवरण', + 'mobile' => 'मोबाइल', + 'modify' => 'संशोधित', + 'modify_date' => 'मिति संशोधित', + 'month' => 'महीना', + 'Monthly' => 'मासिक', + 'more' => 'ज़्यादा', + 'more_information' => 'ज़्यादा सूचना', + 'name' => 'नााम', + 'nearby_report' => 'निकट प्रतिवेदन ', + 'new' => 'नयाँ ', + 'news' => 'समाचार', + 'news_feeds' => 'समाचार फ़ीड', + 'news_source' => 'समाचार स्रोत', + 'new_category' => 'नयाँ श्रेणी ', + 'new_password' => 'नया पासवर्ड ', + 'new_report' => 'नया प्रतिवेदन ', + 'next' => 'आर्को ', + 'no' => 'अस्वीकार', + 'no_data' => 'कुनै डाटा छैन', + 'none' => 'कुनै पनि हैन ', + 'notices' => 'सूचना हरु', + 'not_approved' => 'अनुमोदित', + 'not_approved_singular' => 'अनुमोदित न भएको ', + 'not_selected' => '---चयनित न भएको---', + 'not_spam' => 'स्पैम हैन ', + 'not_specified' => 'निर्दिष्ट हैन ', + 'no_reports' => 'कुनै पनी प्रतिवेदन छैन', + 'no_results' => 'कुनै पनी प्रतिवेदन हरु छैन', + 'off' => 'बंद', + 'official_news' => 'अधिकारिक र मूलधारका समाचारहरु', + 'on' => 'चालू', + 'option' => 'विकल्प', + 'optional' => 'वैकल्पिक', + 'options' => 'विकल्पहरु', + 'organization' => 'संगठन', + 'organizations' => 'संगठनहरु', + 'organization_description' => 'संगठन विवरण', + 'organization_email' => 'संगठन ईमेल', + 'organization_name' => 'संगठन को नाम', + 'organization_phone_1' => 'संगठन फोन 1', + 'organization_phone_2' => 'संगठन फोन 2', + 'organization_website' => 'संगठन वेबसाइट', + 'original' => 'मूल', + 'original_description' => 'मूल विवरण', + 'original_title' => 'मूल शीर्षक', + 'other_ushahidi_instances' => 'अन्य तैनाती', + 'outbox' => 'आउटबॉक्स', + 'outgoing' => 'Outgoing ', + 'page' => 'पेज', + 'pages' => 'पृष्ठ हरु', + 'page_description' => 'पृष्ठ विवरण', + 'page_tab_name' => 'पृष्ठ टैब को नाम', + 'page_title' => 'पृष्ठ शीर्षक', + 'parent_category' => 'जनक श्रेणी', + 'password' => 'पासवर्ड', + 'password_again' => 'पासवर्ड सत्यापित', + 'password_changed_successfully' => 'पासवर्ड सफलतापूर्वक बदली गरिएको छ ! तल लोग इन गर्नुहोस ', + 'password_forgot' => 'आफ्नो पासवर्ड बिर्सिनुभयो ?', + 'password_reset_confirm' => 'नया पासवर्ड को लागी आफ्नो इ मेल जान्च्नुहोस ', + 'past_month' => 'विगत माह', + 'past_year' => 'विगत वर्ष', + 'pending' => 'अपूर्ण', + 'per' => 'प्रति', + 'phone' => 'फ़ोन', + 'photos' => 'तस्वीर हरु ', + 'pictures' => 'तस्वीर हरु ', + 'pictures_and_videos' => 'तस्वीर हरु तथा विडियो हरु ', + 'play' => 'चलाउनुहोस', + 'please_note' => 'कृपया ध्यान दिनुहोस ', + 'plugins' => 'प्लगइन्स', + 'plugin_url' => 'प्लगइन्स वेबसाइट', + 'public_profile' => 'सार्वजनिक प्रोफ़ाइल ', + 'public_profile_url' => 'सार्वजनिक प्रोफ़ाइल यु र ल', + 'preview' => 'पूर्वावलोकन', + 'preview_item' => 'विषय पूर्वावलोकन गर्नुहोस ', + 'preview_message' => 'सन्देश पूर्वावलोकन गर्नुहोस ', + 'previous' => 'पूर्व', + 'private' => 'निजी', + 'profile_color' => 'प्रोफ़ाइल को रंग', + 'rating' => 'दर-निर्धारण', + 'read' => 'अध्ययन ', + 'receive' => 'स्वीकार ', + 'receive_from' => 'द्वारा प्राप्त ', + 'receive_notifications' => 'अधिसूचना प्राप्त ', + 'recent_reports' => 'ताज़ा प्रतिवेदनहरु', + 'refresh_news_feeds' => 'पुनश्चर्या समाचार फ़ीड', + 'registered_email' => 'पंजीकृत ईमेल', + 'remove' => 'निराकरण ', + 'reply' => 'उत्तर', + 'report' => 'प्रतिवेदन', + 'reports_listed' => 'प्रतिवेदनहरु (नक्शाबाटा, तिथिक्रमानुसार)', + 'reporter' => 'संवाद-दाता', + 'reporters' => 'संवाद-दाता हरु ', + 'reporter_date' => 'रिपोर्टर मिति', + 'reporter_email' => 'संवाद-दाता को ई मेल', + 'reporter_first_name' => 'संवाद-दाता प्रथम नाम', + 'reporter_ip' => 'संवाद-दाता को आईपी ​​पता', + 'reporter_last_name' => ' संवाद-दाता को उप नाम', + 'reporter_level' => 'संवाद-दाता स्तर', + 'reporter_levels' => 'संवाद-दाता को स्तर हरु', + 'reporter_phone' => 'संवाद-दाता को फ़ोन', + 'reports' => 'प्रतिवेदनहरु ', + 'reports_btn_browse' => 'ब्राउज़', + 'reports_btn_submit' => 'प्रस्तुत ', + 'reports_categories' => 'श्रेणी हरु ', + 'reports_date' => 'मिति', + 'reports_description' => 'विवरण', + 'reports_email' => 'ईमेल', + 'reports_features' => 'विशेषता हरु', + 'reports_find_location' => 'आफ्नो नजिक को स्थान पत्ता लगाउनुहोस ', + 'reports_first' => 'प्रथम नाम', + 'reports_last' => ' उप नाम', + 'reports_location_name' => 'स्थानको नाम', + 'reports_news' => 'समाचार स्रोत लिंक', + 'reports_optional' => 'वैकल्पिक सूचना', + 'reports_photos' => 'फोटो अपलोड', + 'reports_return' => 'रिपोर्टस पगे मा फर्कनुस', + 'reports_select_city' => 'नगर/शहर चयन गर्नुहोस', + 'reports_submit_new' => 'नया प्रतिवेदन बुझाउनु', + 'reports_time' => 'समय', + 'reports_timeline' => 'प्रतिवेदनहरु समय रेखा', + 'reports_title' => 'प्रतिवेदन शीर्षक', + 'reports_video' => ' वीडियो लिंक', + 'report_an_incident' => 'घटना को रिपोर्ट', + 'report_details' => 'प्रतिवेदन विवरण', + 'report_option_1' => 'sms बाटा मा पठाउन सकिन्छ', + 'report_option_2' => 'ईमेल बाटा', + 'report_option_4' => 'हाम्रो वेबसाईटमा भएको फारम भरेर', + 'report_option_external_apps' => 'app को प्रयोगबाटा', + 'report_saved' => 'रिपोर्ट सुरक्षित ', + 'report_title' => 'प्रतिवेदन शीर्षक', + 'request_information' => 'अधिक जानकारी को लागी अनुरोध गर्नुहोस ', + 'request_location' => 'अनुरोध स्थान', + 'required' => 'अपेक्षित', + 'requirements' => 'आवश्यकताहरु ', + 'resend_confirm_email' => 'पुष्टिकरण ईमेल पुन: पठाउनुस ', + 'reset_password' => 'पासवर्ड रीसेट', + 'role' => 'भूमिका', + 'rss' => 'अार एस एस', + 'save' => 'संचय ', + 'saved' => 'सहेजेको', + 'save_add_new' => 'संचय /नयाँ थप्नुहोस्', + 'save_close' => 'संचय ', + 'save_report' => 'प्रतिवेदन सुरक्षित गर्नुहोस ', + 'schedule' => 'अनुसूची', + 'scheduler' => 'समयबद्धक ', + 'scheduler_day' => 'दिन', + 'scheduler_hour' => 'घंटा', + 'scheduler_log' => 'समयबद्धक प्रवेश', + 'scheduler_minute' => 'मिनट', + 'scheduler_weekday' => 'सप्ताह को दिन', + 'search' => 'खोज', + 'search_results' => 'खोज परिणाम', + 'security_code' => 'सुरक्षा कोड', + 'select_all' => 'सबै चयन गर्नुहोस ', + 'select_field_type' => 'फील्ड प्रकार चयन गर्नुहोस', + 'select_form_type' => ' प्रपत्र को प्रकार चयन गर्नुहोस', + 'select_in_map' => 'नक्शामा चयन गर्नुहोस', + 'select_multiple' => 'चाहिए जति चयन गर्नुहोस', + 'send' => 'पठाउनुहोस ', + 'send_confirmation' => 'प्रमाणीकरण पठाउनुहोस ', + 'server_address' => 'सर्वर पता', + 'server_type' => 'सर्वर को प्रकार', + 'service' => 'सेवा', + 'service_username' => 'सेवा उपयोगकर्ता ', + 'service_user_id' => 'सेवा उपयोगकर्ता आईडी', + 'share' => 'योगदान', + 'shared_data' => 'साझा डेटा', + 'share_has_been' => 'योगदान गरियो ', + 'sharing' => 'सहभाजन', + 'shorter_map' => 'स्यानो नक्शा ', + 'show' => 'प्रदर्शन ', + 'show_all' => 'सबै प्रदर्शन गर्नुहोस ', + 'show_messages' => 'संदेश हरु प्रदर्शन गर्नुहोस ', + 'site' => 'वेबसाइट', + 'site_email_address' => 'साईट ईमेल ठेगाना', + 'site_url' => 'साइट URL', + 'smaller_map' => 'स्यानो नक्शा', + 'sms' => 'एस एम एस', + 'sorry_no_badges' => 'माफ गर्नुहोस्म, तपाइको कुनै पनि बिल्ला छैन।', + 'source' => 'स्रोत', + 'source_name' => 'स्रोत नाम', + 'sort' => 'छान्नुहोस ', + 'sort_by' => ' छान्नुहोस ', + 'source_url' => ' यूआरएल स्रोत', + 'spam' => 'स्पैम', + 'ssl_support' => 'एसएसएल समर्थन?', + 'start_point' => 'द्वारा', + 'step' => 'उपाय', + 'submit' => 'प्रतिवेदन बुझाउनुहोस्', + 'submit_sms' => 'एसएमएस को माध्यम द्वारा पठाउनुहोस ', + 'submit_sms1' => 'आफ्नो एस एम एस पठाउनुहोस ', + 'submit_sms2' => 'तपाई को फ़ोन मा', + 'success' => 'सफलता !', + 'successfuly_imported' => 'सफलतापूर्वक आयातित', + 'surname' => 'उपनाम', + 'survey' => 'सर्वेक्षण', + 'system' => 'प्रणाली', + 'taller_map' => 'लम्बेा मानचित्र', + 'tcp_port' => 'टिसिपि पाेर्ट', + 'themes' => 'थीम्स', + 'this' => 'यो ', + 'this_day' => 'आज', + 'this_month' => 'यो महिना ', + 'this_week' => 'यो सप्ताह ', + 'this_year' => 'यो वर्ष', + 'this_is_your_profile' => 'यो तपाइको प्रोफाइल हो ', + 'time' => 'समय', + 'title' => 'शीर्षक', + 'today' => 'आज', + 'token' => 'प्रतीक', + 'total_reports' => 'संपूर्ण प्रतिवेदनहरु', + 'translated' => 'अनुवादित', + 'translated_description' => 'अनुवादित विवरण', + 'translated_title' => 'अनुवादित शीर्षक', + 'translate_to' => 'अनुवादित', + 'translation' => 'अनुवाद ', + 'translation_saved' => 'अनुवाद सुरक्षित गरिएको छ', + 'trusted' => 'विश्वस्त', + 'type' => 'प्रकार', + 'twitter' => 'ट्विटर', + 'unable_send_email' => 'ईमेल पठाउनु असमर्थ.', + 'unread' => 'नपढेकाे', + 'unverified' => 'असत्यापित', + 'update_feeds' => 'अद्यतन फ़ीड', + 'upload' => 'अपलोड', + 'upload_guide' => 'वेब', + 'upload_docs_1' => 'XML अपलोड गाइड', + 'upload_docs_2' => 'CSV अपलोड गाइड ', + 'upload_file' => 'अपलोड गर्न को लागी फ़ाइल', + 'upload_reports' => 'प्रतिवेदनहरु अपलोड गर्नुहोस ', + 'upload_successful' => 'उप्लोद सिद्यो', + 'url' => 'यूआरएल', + 'user' => 'उपयोगकर्ता', + 'username' => 'प्रयोक्ता नाम', + 'ushahidi_admin' => 'Ushahidi व्यवस्थापक', + 'verification' => 'सत्यापन ', + 'verified' => 'सत्यापित', + 'verified_reports' => 'सत्यापित प्रतिवेदनहरु', + 'verify' => 'सत्यापित', + 'verify_this_report' => 'प्रतिवेदन सत्यापित गर्नुहोस ', + 'version' => 'संस्करण', + 'via' => 'माध्यम', + 'video' => 'विडियो', + 'view' => 'हेर्नुहोस ', + 'views' => 'दृष्टिकोण', + 'view_all' => 'सबै हेर्नुहोस ', + 'view_all_feeds' => 'सबै फ़ीड हेर्नुहोस ', + 'view_all_reports' => 'सबै रिपोर्ट हेर्नुहोस ', + 'view_items' => 'विषय हेर्नुहोस ', + 'view_more' => 'अधिक हेर्नुहोस', + 'view_public_profile' => 'सार्वजनिक प्रोफ़ाइल हेर्नुहोस', + 'view_report' => 'प्रतिवेदनहरु हेर्नुहोस', + 'view_reports' => 'प्रतिवेदनहरु हेर्नुहोस', + 'view_video' => 'विडियो हेर्नुहोस ', + 'visible' => 'दर्शनीय', + 'waiting_approval' => 'अनुमोदन को लगी प्रतीक्षा मा ', + 'waiting_verification' => 'सत्यापन को लागी प्रतीक्षा मा ', + 'wider_map' => 'व्यापक नक्शा', + 'web_form' => 'प्रपत्र', + 'web' => 'वेब', + 'weight' => 'भार', + 'Weekly' => 'साप्ताहिक', + 'yes' => 'हाे', + 'yesterday' => 'हिजाे', + 'your_file' => 'तपाइको फाइल', + 'zoom_in' => 'ठुलो पार्नुहोस् ', + 'zoom_out' => 'सानो पार्नुहोस् ', +); diff --git a/application/i18n/ne_NP/upgrade.php b/application/i18n/ne_NP/upgrade.php new file mode 100644 index 0000000000..5751c8a587 --- /dev/null +++ b/application/i18n/ne_NP/upgrade.php @@ -0,0 +1,11 @@ + array( + 'between' => 'गलत डाटा, होइन को लागि 0 र हो को लागि 1 राख्नुहोस', + ) , +); diff --git a/application/i18n/nl_NL/alerts.php b/application/i18n/nl_NL/alerts.php new file mode 100755 index 0000000000..5ff01688ac --- /dev/null +++ b/application/i18n/nl_NL/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Het e-mail adres wordt niet geaccepteerd, controleer het e-mail adres', + 'email_check' => 'Het e-mail adres is al geconfigureerd om notificaties te ontvangen voor deze locatie', + 'length' => 'Het e-mail adres dient uit tenminste 4 en maximaal 64 tekens te bestaan', + 'required' => 'Je hebt aangegeven e-mail te willen ontvangen, geef een geldig e-mail adres op', + ) , + 'alert_country' => array( + 'single_country' => 'Deze opstelling bestrijkt maar één land. Zorg dat de plaats van de waarschuwing in het land %s ligt.', + ) , + 'alert_lat' => array( + 'between' => 'Selecteer een locatie op de kaart', + 'required' => 'Selecteer een locatie op de kaart', + ) , + 'alert_lon' => array( + 'between' => 'Selecteer een locatie op de kaart', + 'required' => 'Selecteer een locatie op de kaart', + ) , + 'alert_mobile' => array( + 'length' => 'Het aantal opgegeven cijfers voor het mobiele nummer is ongeldig', + 'mobile_check' => 'Het mobiele nummer is al geconfigureerd om notificaties te ontvangen voor deze locatie', + 'numeric' => 'Het opgegeven mobiele nummer lijkt ongeldig. Gebruik alleen cijfers met landcode.', + 'one_required' => 'Geef een mobiel nummer en/of een e-mail adres op', + 'required' => 'Je hebt aangegeven mobiele notificaties te willen ontvangen, geef een geldig mobiel nummer op', + ) , + 'alert_radius' => array( + 'in_array' => 'Geef een zoekstraal aan op de kaart', + 'required' => 'Geef een zoekstraal aan op de kaart', + ) , + 'alert_recipient' => array( + 'required' => 'Je hebt geen ontvanger voor waarschuwingen ingesteld.', + ) , + 'alerts_subscribed' => 'Je bent ingeschreven voor waarschuwingen met de volgende categoriën', + 'code_already_verified' => 'Deze code is al eerder geverifieerd', + 'code_not_found' => 'De verificatiecode kon niet worden gevonden.Controleer of de gebruikte URL correct is', + 'code_verified' => ' De code is geverifieerd. Je ontvangt nu notificaties wanneer er berichten zijn.', + 'confirm_request' => 'Om je notificaties verzoek te bevestigen ga je naar ', + 'create_more_alerts' => 'Ga naar de notificaties pagina om meer notificaties te maken', + 'email_alert_request_created' => 'Je e-mail notificaties verzoek is aangemaakt. Een verificatie bericht is verzonden naar ', + 'email_code' => 'Vul de per e-mail ontvangen verificatiecode in: ', + 'email_error_head' => 'Je e-mail notificaties verzoek is niet opgeslagen!', + 'email_ok_head' => 'Je e-mail notificaties verzoek is opgeslagen!', + 'error' => 'Het systeem is niet instaat om je bevestiging te verwerken!', + 'mobile_alert_request_created' => 'Je mobiele notificaties verzoek is aangemaakt. Een verificatie bericht is verzonden naar ', + 'mobile_code' => 'Vul de per SMS ontvangen verificatiecode in: ', + 'mobile_error_head' => 'Je mobiele notificaties verzoek is niet opgeslagen!', + 'mobile_ok_head' => 'Je mobiele notificaties verzoek is opgeslagen', + 'settings_error' => 'De installatie is niet correct ingesteld om notificaties te verwerken. Neem contact op met de beheerder.', + 'unsubscribe' => 'Je ontvangt deze e-mail omdat je hebt aangegeven notificaties te willen ontvangen. Indien je in de toekomst geen notificaties meer wilt ontvangen, ga dan naar ', + 'unsubscribed' => 'Je zult niet langer notificaties ontvangen van ', + 'unsubscribe_failed' => 'Het systeem kan je niet uitschrijven voor notificaties. Controleer of je de juiste URL hebt opgegeven.', + 'verification_email_subject' => 'notificaties - verificatie', + 'verify_code' => 'Je zult geen notificaties ontvangen tot je verzoek bevestigd is.', +); diff --git a/application/i18n/nl_NL/auth.php b/application/i18n/nl_NL/auth.php new file mode 100755 index 0000000000..0b53b8eecf --- /dev/null +++ b/application/i18n/nl_NL/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'het ingevulde e-mailadres is ongeldig.', + 'exists' => 'Er bestaat al een gebruiker met het opgegeven e-mail adres', + 'length' => 'Het e-mail adres dient uit tenminste 4 en maximaal 64 tekens te bestaan', + 'required' => 'Een geldig e-mail adres is verplicht.', + ) , + 'name' => array( + 'length' => 'Een volledige naam moet tenminste 3 en niet meer dan 100 tekens bevatten.', + 'required' => 'Volledige naam is verplicht.', + 'standard_text' => 'De gebruikersnaam bevat ongeldige tekens', + ) , + 'current_password' => array( + 'length' => 'Het paswoordveld moet minstens 8 tekens lang zijn.', + 'login error' => 'Gelieve na te kijken of je het juiste e-mailadres en paswoord hebt ingevuld.', + 'matches' => 'Gelieve hetzelfde paswoord in te vullen in beide paswoordvelden.', + 'required' => 'Het paswoordveld is verplicht.', + 'alpha_dash' => 'Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan', + 'incorrect' => 'Het huidig paswoord dat je invoerde voor je account is onjuist. Gelieve nog een keer te proberen.', + ) , + 'new_password' => array( + 'length' => 'Het paswoordveld moet minstens 8 tekens lang zijn.', + 'login error' => 'Gelieve na te kijken of je het juiste e-mailadres en paswoord hebt ingevuld.', + 'matches' => 'Gelieve hetzelfde paswoord in te vullen in beide paswoordvelden.', + 'required' => 'Het paswoordveld is verplicht.', + 'alpha_dash' => 'Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan', + ) , + 'password' => array( + 'default' => 'Er is een fout opgetreden bij de poging om je in te loggen.', + 'length' => 'Een wachtwoord moet tenminste 5 en maximaal 16 tekens bevatten.', + 'login error' => 'Controleer het wachtwoord.', + 'matches' => 'Herhaal het wachtwoord.', + 'required' => 'Wachtwoord is verplicht.', + 'riverid server down' => 'Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan', + 'riverid' => '%s', + 'alpha_dash' => 'Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan', + ) , + 'password_confirm' => array( + 'matches' => 'De wachtwoord bevestiging moet hetzelfde zijn als het wachtwoord.', + ) , + 'resetemail' => array( + 'email' => 'Er is geen geldig e-mail adres ingevuld', + 'invalid' => 'Het e-mail adres is niet bekend', + 'required' => 'E-mail is verplicht.', + ) , + 'role' => array( + 'superadmin_modify' => 'Alleen een superbeheerder mag een superbeheerder wijzigen of een gebruiker promoveren tot beheerder.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Ongeldige rol.', + 'length' => 'Een rol moet tenminste 5 en maximaal 30 tekens bevatten.', + 'required' => 'Er dient tenminste een rol te worden gedefinieerd.', + 'values' => 'Selecteer ADMIN of USER als rol.', + ) , + 'token' => array( + 'invalid' => 'Het token voor vergeten wachtwoord is ongeldig', + 'required' => 'Een vergeten wachtwoord token is verplicht', + ) , + 'username' => array( + 'admin' => 'De ADMIN rol kan niet worden gewijzigd.', + 'alpha_numeric' => 'Het veld \'Openbaar profiel URL\' mag alleen cijfers en letter bevatten.', + 'exists' => 'De opgegeven gebruikersnaam is al in gebruik.', + 'length' => 'Een gebruikersnaam moet tenminste 2 en maxiimaal 16 tekens bevatten', + 'login error' => 'Controleer of de gebruikersnaam juist is.', + 'required' => 'Gebruikersnaam is verplicht', + 'superadmin' => 'De SUPER ADMIN rol kan niet worden gewijzigd.', + 'csrf' => 'Mogelijke CSRF-aanval. Wou je echt een gebruiker aanmaken/bewerken?', + ) , +); diff --git a/application/i18n/nl_NL/bug.php b/application/i18n/nl_NL/bug.php new file mode 100755 index 0000000000..709202a474 --- /dev/null +++ b/application/i18n/nl_NL/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Geef een geldige veiligheidscode op', + 'required' => 'Geef een veiligheidscode op', + ) , + 'email' => array( + 'email' => 'Geef een geldig e-mail adres op', + 'length' => 'Een e-mail adres dient tenminste 4 en maximaal 64 tekens te bevatten', + 'required' => 'Een e-mail adres is verplicht wanneer het vinkje is aangekruisd.', + ) , + 'error' => array( + 'required' => 'De foutmelding is verplicht.', + ) , + 'subject' => array( + 'length' => 'Een onderwerp moet tenminste 3 tekens bevatten.', + 'required' => 'Onderwerp is verplicht.', + ) , + 'yourname' => array( + 'length' => 'Een naam moet tenminste 3 tekens bevatten.', + 'required' => 'Naam is verplicht.', + ) , +); diff --git a/application/i18n/nl_NL/category.php b/application/i18n/nl_NL/category.php new file mode 100755 index 0000000000..0eaec1f043 --- /dev/null +++ b/application/i18n/nl_NL/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Vul een kleurcode in van 6 tekens, zonder # er voor.', + 'required' => 'kleur is verplicht.', + ) , + 'category_description' => array( + 'required' => 'Omschrijving is verplicht.', + ) , + 'category_image' => array( + 'size' => 'Afbeeldingen mogen niet groter zijn dan 50KB.', + 'type' => 'De afbeelding wordt niet geaccepteerd. Selecteer een afbeelding van het type .JPG, .PNG of .GIF.', + 'valid' => 'Het bestand met de afbeelding is ongeldig', + ) , + 'category_title' => array( + 'length' => 'Titel moet tenminste 3 en maximaal 80 tekens bevatten', + 'required' => 'Titel is verplicht.', + ) , + 'parent_id' => array( + 'already_parent' => 'Je kan van een categorie met subcategoriën geen subcategorie maken.', + 'exists' => 'De hoofdcategorie bestaat niet.', + 'numeric' => 'De hoofdcategorie moet een nummer zijn.', + 'parent_trusted' => 'De oudercategorie mag geen speciale categorie zijn.', + 'required' => 'De hoofdcategorie is verplicht.', + 'same' => 'Categorie en hoofdcategorie kunnen niet hetzelde zijn.', + 'special' => 'Speciale categoriën kunnen geen subcategoriën krijgen.', + ) , +); diff --git a/application/i18n/nl_NL/comments.php b/application/i18n/nl_NL/comments.php new file mode 100755 index 0000000000..ae5662293c --- /dev/null +++ b/application/i18n/nl_NL/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Geef een geldige veiligheidscode', + 'required' => 'Geef een veiligheidscode', + 'valid' => 'Je hebt een verkeerde beveiliingscode ingegeven.', + ) , + 'comment_author' => array( + 'length' => 'Naam moet tenminste 3 tekens bevatten.', + 'required' => 'Naam is verplicht.', + ) , + 'comment_description' => array( + 'required' => 'Commentaar is verplicht.', + ) , + 'comment_email' => array( + 'email' => 'Het e-mail adres is ongeldig', + 'length' => 'Het e-mail adres moet tenminste 4 en maximaal 64 tekens bevatten.', + 'required' => 'Het e-mail adres is verplicht wanneer het vinkje is aangekruisd.', + ) , +); diff --git a/application/i18n/nl_NL/contact.php b/application/i18n/nl_NL/contact.php new file mode 100755 index 0000000000..217d3a6258 --- /dev/null +++ b/application/i18n/nl_NL/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Geef een geldige veiligheidscode', + 'valid' => 'Gelieve een geldige beveiligingscode in te geven.', + 'required' => 'Geef de veiligheidscode', + ) , + 'contact_email' => array( + 'email' => 'Het e-mail adres is ongeldig', + 'length' => 'Het e-mail adres moet tenminste 4 en maximaal 64 tekens bevatten.', + 'required' => 'Het e-mail adres is verplicht wanneer het vinkje is aangekruisd.', + ) , + 'contact_message' => array( + 'required' => 'Berichttekst is verplicht.', + ) , + 'contact_name' => array( + 'length' => 'Naam moet tenminste 3 tekens bevatten.', + 'required' => 'Naam is verplicht.', + ) , + 'contact_subject' => array( + 'length' => 'Onderwerp moet tenminste 3 tekens bevatten.', + 'required' => 'Onderwerp is verplicht.', + ) , + 'email_send' => array( + 'failed' => 'Er was een fout bij het verzenden van je bericht.', + ) , +); diff --git a/application/i18n/nl_NL/core.php b/application/i18n/nl_NL/core.php new file mode 100755 index 0000000000..5ceee48e34 --- /dev/null +++ b/application/i18n/nl_NL/core.php @@ -0,0 +1,35 @@ + 'configuratie bestand', + 'controller' => 'controller', + 'driver' => 'stuurprogramma', + 'driver_implements' => 'De %s driver voor de %s library moet de %s interface implementeren', + 'driver_not_found' => 'De %s driver voor de %s library kon niet worden gevonden', + 'errors_disabled' => 'Ga naar de home page of probeer opnieuw.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Verzoek kan niet worden verwerkt.', + 'helper' => 'helper', + 'invalid_filetype' => 'Het gevraagde bestandstype, .%s, is niet toegestaan in het view configuratie bestand', + 'invalid_method' => 'Ongeldige methode %s aangeroepen door %s', + 'invalid_property' => 'De %s eigenschap bestaat niet in de %s klasse.', + 'library' => 'bibliotheek', + 'log_dir_unwritable' => 'Logbestanden kunnen niet worden geschreven naar map: %s', + 'model' => 'model', + 'no_controller' => 'Er kan geen controller worden bepaald op verzoek %s te verwerken', + 'no_default_route' => 'Stel een standaard route in in config/routes.php', + 'page_not_found' => 'De gevraagde pagina, %s, kan niet worden gevonden.', + 'report_bug' => 'Meld dit probleem', + 'resource_not_found' => 'De gevraagde %s, %s, kan niet worden gevonden', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Geladen in {execution_time} seconden, gebruikmakend van {memory_usage} RAM geheugen. Systeemversie v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Er kan maar een instantie van het systeem actief zijn per paginaverzoek', + 'uncaught_exception' => 'Ongecontroleerde fout %s: %s in bestand %s op regel %s', + 'view' => 'weergave', + 'view_set_filename' => 'De bestandsnaam voor de weergave moet ingesteld worden vooraleer een render te beginnen.', +); diff --git a/application/i18n/nl_NL/database.php b/application/i18n/nl_NL/database.php new file mode 100755 index 0000000000..56c75f1c99 --- /dev/null +++ b/application/i18n/nl_NL/database.php @@ -0,0 +1,10 @@ + 'Database fout: %s', + 'table_not_found' => 'Tabel "%s" is niet gevonden in de database. Controleer of de database versie en de versie van het systeem in overeenstemming zijn', +); diff --git a/application/i18n/nl_NL/datetime.php b/application/i18n/nl_NL/datetime.php new file mode 100755 index 0000000000..ddee51fb3b --- /dev/null +++ b/application/i18n/nl_NL/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Vr', + 'full' => 'Vrijdag', + ) , + 'monday' => array( + 'abbv' => 'Ma', + 'full' => 'Maandag', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Za', + 'full' => 'Zaterdag', + ) , + 'sunday' => array( + 'abbv' => 'Zo', + 'full' => 'Zondag', + ) , + 'thursday' => array( + 'abbv' => 'Do', + 'full' => 'Donderdag', + ) , + 'tuesday' => array( + 'abbv' => 'Di', + 'full' => 'Dinsdag', + ) , + 'wednesday' => array( + 'abbv' => 'Wo', + 'full' => 'Woensdag', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Januari', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februari', + ) , + 'march' => array( + 'abbv' => 'Maa', + 'full' => 'Maart', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'Mei', + 'full' => 'Mei', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juni', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juli', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'Augustus', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Oktober', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'December', + ) , +); diff --git a/application/i18n/nl_NL/feeds.php b/application/i18n/nl_NL/feeds.php new file mode 100755 index 0000000000..f0ae1c0975 --- /dev/null +++ b/application/i18n/nl_NL/feeds.php @@ -0,0 +1,19 @@ + 'Datum', + 'feed_name' => array( + 'length' => 'Een feed naam dient tenminste 3 en maximaal 70 tekens te bevatten.', + 'required' => 'Geef de feed een naam.', + ) , + 'feed_url' => array( + 'required' => 'Geef de feed URL.', + 'url' => 'Geef een geldige URL op, b.v. http://www.ushahidi.com', + ) , + 'source' => 'Bron', + 'title' => 'Titel', +); diff --git a/application/i18n/nl_NL/footer.php b/application/i18n/nl_NL/footer.php new file mode 100755 index 0000000000..fdba72c8e2 --- /dev/null +++ b/application/i18n/nl_NL/footer.php @@ -0,0 +1,9 @@ + 'php5-curl is niet geinstalleerd op dit systeem', +); diff --git a/application/i18n/nl_NL/form.php b/application/i18n/nl_NL/form.php new file mode 100755 index 0000000000..ff22123a0d --- /dev/null +++ b/application/i18n/nl_NL/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'De ingegeven standaardwaarde voor dit veld is ongeldig.', + 'length' => 'De veldnaam moet tenminste 3 en maximaal 100 tekens bevatten.', + ) , + 'field_height' => array( + 'between' => 'Geef een waarde tussen de 0 en 50 voor de veldhoogte', + ) , + 'field_isdate' => array( + 'between' => 'De datum is ongeldig', + 'required' => 'Selecteer Ja of Nee voor de datum', + ) , + 'field_name' => array( + 'length' => 'De veldnaam moet tenminste 3 en maximaal 100 tekens bevatten.', + 'required' => 'Veldnaam is verplicht.', + 'duplicate' => 'Er bestaat al een veld met deze naam op dit formulier. Kies een andere naam.', + ) , + 'field_required' => array( + 'between' => 'Geef aan of het veld verplicht is', + 'required' => 'Selecteer Ja of Nee voor verplicht', + ) , + 'field_type' => array( + 'numeric' => 'Selecteer een geldig veldtype.', + 'required' => 'Selecteer een veldtype.', + ) , + 'field_width' => array( + 'between' => 'Geef een waarde tussen 0 en 300 voor de veldbreedte', + ) , + 'form_description' => array( + 'required' => 'Omschrijving is verplicht.', + ) , + 'form_id' => array( + 'default' => 'Het standaardformulier kan niet worden verwijderd.', + 'numeric' => 'Selecteer het formulier waar aan dit veld moet worden toegevoegd.', + 'required' => 'Selecteer het formulier voor dit veld.', + ) , + 'form_title' => array( + 'length' => 'De formuliernaam moet tenminste 3 en maximaal 100 tekens bevatten.', + 'required' => 'Geef het formulier een naam.', + 'exists' => 'Er bestaat al een formulier met deze titel. Kies een andere titel.', + ) , +); diff --git a/application/i18n/nl_NL/imap.php b/application/i18n/nl_NL/imap.php new file mode 100755 index 0000000000..4c4e0eeed5 --- /dev/null +++ b/application/i18n/nl_NL/imap.php @@ -0,0 +1,10 @@ + 'Er kan geen IMAP verbinding worden opgebouwd', + 'unsupported_service' => 'De e-mail dienst wordt niet ondersteund', +); diff --git a/application/i18n/nl_NL/installer.php b/application/i18n/nl_NL/installer.php new file mode 100755 index 0000000000..6d26fdb72d --- /dev/null +++ b/application/i18n/nl_NL/installer.php @@ -0,0 +1,84 @@ + 'Systeempad', + 'database' => 'Database', + 'database_host' => 'Database server', + 'database_host_description' => 'Wanneer je Ushahidi uitvoert op je eigen computer, dan is dit waarschijnlijk "localhost". Wanneer je Ushahidi uitvoert op een web server, controleer dan de server naam en informatie van de provider', + 'database_name' => 'Databasenaam', + 'database_name_description' => 'De naam van de database waarin de gegevens van Ushahidi worden opgeslagen', + 'db_information_link' => 'Voor meer informatie kunt u dit artikel op de wiki raadplegen dat dieper ingaat op databases.', + 'default_language' => 'Standaard taal (Landinstelling)', + 'default_language_description' => 'Elke installatie van Ushahidi bevat een aantal ingebouwde talen. U kunt ook uw eigen vertaling toevoegen.', + 'disable' => 'Uitschakelen', + 'enable' => 'Inschakelen', + 'error_summary' => 'Hieronder zie je een lijst van de fouten die we tegenkwamen.', + 'files_location_text' => 'De plaats op uw server waar u Ushahidi bestanden heeft neergezet. We hebben dit automatisch gedetecteerd. Overtuig u ervan dat het correct is. Als het veld leeg is, hoeft u zich geen zorgen te maken. Het betekent dat ushahidi op het hoogste niveau in de mappenstructuur is geïnstalleerd. ', + 'finished' => 'Gereed', + 'general' => 'Algemeen', + 'google_key' => 'Google API sleutel', + 'google_key_description' => 'API sleutels voor Google Maps zijn hier aan te vragen', + 'go_back' => 'Terug', + 'index' => array( + 'advanced' => 'Geavanceerde installatie', + 'advanced_installation_description' => 'Voltooi alle belangrijkste instellingen met dit 5-stappen proces. Dit omvat server, kaart, website naam en contact details.', + 'basic_installation' => 'Standaard installatie', + 'basic_installation_description' => 'Eenvoudig en snel. Alles wat u nodig heeft is de root map van uw website en de database informatie. Kies deze optie als u snel aan de slag wilt. U kunt altijd later de rest configureren.', + 'proceed' => 'Doorgaan', + 'welcome' => 'Welkom bij het Ushahidi server installatie proces. Kies hieronder welk type installatie u wilt gebruiken.', + ) , + 'installation_successful' => 'Installatie gelukt', + 'mail_server' => 'Mail server', + 'mail_server_host' => 'Mail server adres', + 'mail_server_host_description' => 'Voorbeelden: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Paswoord voor de mailserver', + 'mail_server_password_description' => 'Het paswoord dat je gewoonlijk gebruikt om in te loggen op je e-mail', + 'mail_server_port' => 'Poort voor de mailserver', + 'mail_server_port_description' => 'Veel gebruikte poorten: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Type mailserver', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) of Post Office Protocol (POP). Wat is het verschil?', + 'mail_server_username' => 'Gebruikersnaam voor de mailserver', + 'mail_server_username_description' => 'Als u Gmail, Hotmail, or Yahoo Mail gebruikt, vul dan een volledig e-mailadres in als gebruikersnaam.', + 'map' => 'Kaart', + 'map_provider' => 'Kaartaanbieder', + 'map_provider_description' => 'Ushahidi werkt met elk van de volgende drie mapping providers even goed: Google, Bing of Open Street Map. Kies er een die de meeste details heeft in uw gebied.', + 'other_steps' => 'Andere stappen...', + 'password' => 'Wachtwoord', + 'password_description' => 'Het paswoord voor je database', + 'previous' => 'Vorige', + 'restart_apache' => 'Geleive je Apache server te herstarten.', + 'select_mail_server_ssl' => 'SSL in- of uitschakelen', + 'select_mail_server_ssl_description' => 'Sommige mail servers geven u de optie SSL te gebruiken voor het maken van een verbinding. SSL is aanbevolen, aangezien het een extra beschermingslaag geeft.', + 'setup_sms' => 'SMS server instellen', + 'site_email' => 'E-mail adres van deze website', + 'site_email_alerts' => 'Website alert e-mailadres', + 'site_email_alerts_description' => 'Wanneer uw website bezoekers zich registreren voor alert e-mails zullen ze e-mailberichten ontvangen van dit adres. Dit e-mailadres hoeft niet hetzelfde te zijn als het Website E-mailadres.', + 'site_email_description' => 'Algemene website communicatie zal geleid worden door dit adres', + 'site_name' => 'Website Naam', + 'site_name_description' => 'Naam van de website', + 'site_tagline' => 'Website tagline', + 'site_tagline_description' => 'Uw tagline', + 'summary' => array( + 'text_1' => 'Onderstaande bestanden en mappen moeten door uw webserver beschrijfbaar zijn.', + 'text_2' => '

Hier staan de instructies voor het veranderen van de bestandsrechten:

+ ', + 'text_3' => 'Voor u begint moet u zorgen dat de volgende bestanden en mappen door je webserver beschrijfbaar zijn. Dit betreft wijzigingen van de bestandsrechten.', + 'text_4' => 'Geleive de volgende gegevens bij de hand te hebben voor het installatieproces:', + ) , + 'table_prefix' => 'Tabel Prefix', + 'table_prefix_description' => 'Normaal gezien zult u de tabel prefix niet veranderen. Als u echter meerder Ushahidi installaties van één database wilt draaien, kunt u dat doen door hier de prefix te veranderen.', + 'title' => 'Titel', + 'to_login' => 'Om aan te melden, ga naar', + 'upload_data' => 'Verslaggegevens uploaden', + 'username' => 'Gebruikersnaam', + 'username_description' => 'Database gebruikersnaam', + 'use_credentials' => 'en gebruik de volgende inloggegevens', + 'view_site' => 'Website bekijken', +); diff --git a/application/i18n/nl_NL/layer.php b/application/i18n/nl_NL/layer.php new file mode 100755 index 0000000000..803d7af268 --- /dev/null +++ b/application/i18n/nl_NL/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Het Kleurveld moet 6 tekens lang zijn.', + 'required' => 'Het kleurveld is verplicht.', + ) , + 'layer_file' => array( + 'type' => 'The file field does not appear to contain a valid file. The only accepted formats are .KMZ, .KML.', + 'valid' => 'Het bestandsveld lijkt geen geldige waarde te bevatten.', + ) , + 'layer_name' => array( + 'length' => 'Het naamveld moet tenminste 3 en ten hoogste 80 tekens lang zijn.', + 'required' => 'Het naamveld is verplicht.', + ) , + 'layer_url' => array( + 'atleast' => 'Either a KML Url or File is required', + 'both' => 'You can\'t have both a KML file and a url', + 'url' => 'Please enter a valid URL. Eg. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/nl_NL/libraries.php b/application/i18n/nl_NL/libraries.php new file mode 100755 index 0000000000..600dfbc19c --- /dev/null +++ b/application/i18n/nl_NL/libraries.php @@ -0,0 +1,27 @@ + 'Could not connect to akismet server', + 'akismet_cannot_retrieve' => 'The response from Akismet could not be retrieved', + 'api_library_not_found' => 'De API-bibliotheek: %s voor de %s klasse is niet gevonden. Gelieve je API taakrouteringstabel na te kijken.', + 'askimet_invalid_apikey' => 'Your Akismet API key is not valid', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2', + 'clickatell_message_too_long' => 'Your unicode message is too long! (Current lenght=', + 'clickatell_no_destination_address' => 'Specificeer een bestemmingsadres (NAAR)!', + 'clickatell_no_sender_address' => 'Specificeer een oorsprongsadres (VAN)!', + 'clickatell_unicode_message_too_long' => 'Your unicode message is too long! (Current lenght=', + 'clickatell_unsupported_method' => 'Niet ondersteunde verzendmethode!', + 'invalid_api_library' => 'De API-bibliotheek %s is ongeldig. Alle API-bibliotheken moeten subklasses zijn van %s.', + 'upgrade_directory_not_deleted' => 'Directory %s could not be deleted', + 'upgrade_extracting_error' => 'Fout bij het uitpakken: %s', + 'upgrade_failed' => 'Downloading the latest ushahidi failed. HTTP status code', + 'upgrade_file_not_copied' => 'File %s could not be copied', + 'upgrade_file_not_deleted' => 'File %s could not be deleted', + 'upgrade_title' => 'Ushahidi upgrade script', + 'upgrade_zip_error' => 'The downloaded ushahidi zip file %s, could not be written', + 'riverid_variable_not_available' => '%s is niet beschikbaar in de RiverID klasse.', +); diff --git a/application/i18n/nl_NL/maintenance.php b/application/i18n/nl_NL/maintenance.php new file mode 100644 index 0000000000..afcaaa66b7 --- /dev/null +++ b/application/i18n/nl_NL/maintenance.php @@ -0,0 +1,9 @@ + 'Sorry, onze site is momenteel niet beschikbaar i.v.m. werkzaamheden. Probeer het over een paar minuten opnieuw.', +); diff --git a/application/i18n/nl_NL/message.php b/application/i18n/nl_NL/message.php new file mode 100755 index 0000000000..1edcdff91b --- /dev/null +++ b/application/i18n/nl_NL/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Please enter a valid security code', + 'required' => 'Please enter the security code', + ) , + 'email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'length' => 'Het e-mailveld dient uit tenminste 4 en tenhoogste 64 tekens te bestaan.', + 'required' => 'Het e-mailveld is verplicht wanneer het vinkje is aangekruisd.', + ) , + 'message' => array( + 'required' => 'Het commentaarveld is verplicht.', + ) , + 'name' => array( + 'length' => 'Het naamveld dient tenminste 3 tekens lang te zijn.', + 'required' => 'Het naamveld is verplicht.', + ) , + 'phone' => array( + 'length' => 'Het telefoonveld is niet geldig.', + ) , +); diff --git a/application/i18n/nl_NL/mhi.php b/application/i18n/nl_NL/mhi.php new file mode 100755 index 0000000000..81f4db81c0 --- /dev/null +++ b/application/i18n/nl_NL/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Geef een geldige veiligheidscode op.', + 'required' => 'Vul de veiligheidscode in.', + ) , + 'contact_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'required' => 'Please provide a valid email address', + ) , + 'contact_message' => array( + 'required' => 'Het berichtenveld is verplicht.', + ) , + 'contact_subject' => array( + 'length' => 'Het onderwerpveld moet tenminste 3 tekens lang zijn.', + 'required' => 'Het onderwerpveld is verplicht.', + ) , +); diff --git a/application/i18n/nl_NL/notifications.php b/application/i18n/nl_NL/notifications.php new file mode 100755 index 0000000000..d03e8692f6 --- /dev/null +++ b/application/i18n/nl_NL/notifications.php @@ -0,0 +1,35 @@ + 'This message was sent from your website', + 'admin_login_url' => 'Administrator Login', + 'admin_new_comment' => array( + 'message' => 'Een nieuwe reactie is ingediend bij uw website in antwoord op:', + 'subject' => 'Nieuwe reactie', + ) , + 'admin_new_email' => array( + 'message' => 'een nieuw e-mailbericht is ingediend bij uw website.', + 'subject' => 'Nieuw e-mailbericht', + ) , + 'admin_new_report' => array( + 'message' => 'een nieuw rapport is ingediend bij uw website.', + 'subject' => 'Nieuw rapport', + ) , + 'admin_new_sms' => array( + 'message' => 'Een nieuw tekstbericht is ingediend bij uw website.', + 'subject' => 'Nieuw tekstbericht', + ) , + 'member_new_alert' => array( + 'message' => 'Je hebt een nieuw alarm ontvangen', + 'subject' => 'Nieuw alarm!', + ) , + 'member_new_message' => array( + 'message' => 'Je hebt een nieuw privébericht ontvangen', + 'subject' => 'Nieuw privébericht', + 'footer' => 'Om te antwoorden ga naar:', + ) , +); diff --git a/application/i18n/nl_NL/page.php b/application/i18n/nl_NL/page.php new file mode 100644 index 0000000000..728461c049 --- /dev/null +++ b/application/i18n/nl_NL/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Gelieve een paginatitel in te geven.', + 'length' => 'De paginatitel moet minstens 3 en hoogstens 150 letters lang zijn.', + ) , + 'page_tab' => array( + 'required' => 'Gelieve een tabnaam in te geven', + ) , + 'page_description' => array( + 'required' => 'Gelieve een paginabeschrijving in te geven.', + ) , +); diff --git a/application/i18n/nl_NL/permissions.php b/application/i18n/nl_NL/permissions.php new file mode 100644 index 0000000000..ad3ba8bc4d --- /dev/null +++ b/application/i18n/nl_NL/permissions.php @@ -0,0 +1,26 @@ + 'Verslagen bekijken', + 'reports_edit' => 'Verslagen aanmaken/bewerken/verwijderen', + 'reports_approve' => 'Goedkeuren rapporten', + 'reports_verify' => 'Rapporten controleren', + 'reports_comments' => 'Beheren verslag commentaren', + 'reports_download' => 'Verslagen downloaden', + 'reports_upload' => 'Verslagen uploaden', + 'messages' => 'Berichten beheren', + 'messages_reporters' => 'Berichten beheren verslaggevers', + 'stats' => 'Statistieken bekijken', + 'settings' => 'Instellingen wijzigen', + 'manage' => 'Beheerpaneel', + 'users' => 'Gebruikers beheren', + 'manage_roles' => 'Beheer rollen', + 'checkin' => 'Kan inchecken', + 'checkin_admin' => 'Beheer checkins', + 'admin_ui' => 'Toegang Admin UI', + 'member_ui' => 'Toegang leden UI', +); diff --git a/application/i18n/nl_NL/private_message.php b/application/i18n/nl_NL/private_message.php new file mode 100644 index 0000000000..4e7e3580e1 --- /dev/null +++ b/application/i18n/nl_NL/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'De hoofdcategorie moet een nummer zijn.', + ) , + 'private_to' => array( + 'required' => 'Er dient een geldige ontvanger te worden opgegeven', + 'exists' => 'De opgegeven ontvanger bestaat niet', + ) , + 'private_subject' => array( + 'required' => 'Er dient een onderwerp te worden opgegeven', + 'length' => 'Het onderwerp dient tussen de 3 en 150 tekens te bevatten', + ) , + 'private_message' => array( + 'required' => 'Er dient een berichttekst te worden ingevoerd', + ) , +); diff --git a/application/i18n/nl_NL/report.php b/application/i18n/nl_NL/report.php new file mode 100755 index 0000000000..727ac6f5de --- /dev/null +++ b/application/i18n/nl_NL/report.php @@ -0,0 +1,109 @@ + 'fout!', + 'country_name' => array( + 'single_country' => 'Deze opstelling bestrijkt maar één land. Gelieve te zorgen dat de plaats van verslag binnen het land %s ligt.', + ) , + 'data_include' => array( + 'between' => 'Please select a valid item to include in the download', + 'numeric' => 'Please select a valid item to include in the download', + ) , + 'data_active' => array( + 'between' => 'Gelieve "Verslagen in afwachting van goedkeuring" of "Goedgekeurde verslagen" te kiezen of beide.', + 'numeric' => 'Gelieve "Verslagen in afwachting van goedkeuring" of "Goedgekeurde verslagen" te kiezen of beide.', + 'required' => 'Gelieve "Verslagen in afwachting van goedkeuring" of "Goedgekeurde verslagen" te kiezen of beide.', + ) , + 'data_verified' => array( + 'between' => 'Gelieve "Verslagen in afwachting van nazicht" of "Nageziene verslagen" te kiezen of beide.', + 'numeric' => 'Gelieve "Verslagen in afwachting van nazicht" of "Nageziene verslagen" te kiezen of beide.', + 'required' => 'Gelieve "Verslagen in afwachting van nazicht" of "Nageziene verslagen" te kiezen of beide.', + ) , + 'data_point' => array( + 'between' => 'Please select a valid type of report to download', + 'numeric' => 'Please select a valid type of report to download', + 'required' => 'Please select a valid type of report to download', + ) , + 'format' => array( + 'required' => 'Selecteer een download formaat. Mogelijke formaten zijn CSV of XML.', + 'valid' => 'Selecteer een formaat voor het downloaden van rapporten', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'The FROM date field does not appear to contain a valid date?', + 'range' => 'Geef een geldige begindatum op. De begindatum mag niet later zijn dan de huidige datum.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'The am/pm field does not appear to contain a valid value?', + ) , + 'incident_category' => array( + 'numeric' => 'The category field does not appear to contain a valid category?', + 'required' => 'The category field is required.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'The date field does not appear to contain a valid date?', + 'date_mmddyyyy' => 'The date field does not appear to contain a valid date?', + ) , + 'incident_description' => array( + 'required' => 'The description field is required.', + ) , + 'incident_hour' => array( + 'between' => 'The hour field does not appear to contain a valid hour?', + ) , + 'incident_information' => array( + 'alpha' => 'Please enter a valid value for Information Probability', + 'length' => 'Please enter a valid value for Information Probability', + ) , + 'incident_minute' => array( + 'between' => 'The minute field does not appear to contain a valid value?', + ) , + 'incident_news' => array( + 'url' => 'The news source links field does not appear to contain a valid URL?', + ) , + 'incident_photo' => array( + 'size' => 'Please ensure that photo uploads sizes are limited to 2MB.', + 'valid' => 'The Upload Photos field does not appear to contain a valid file', + ) , + 'incident_source' => array( + 'alpha' => 'Please enter a valid value for Source Reliability', + 'length' => 'Please enter a valid value for Source Reliability', + ) , + 'incident_title' => array( + 'length' => 'The title field must be at least 3 and no more 200 characters long.', + 'required' => 'The title field is required.', + 'csrf' => 'Mogelijke CSRF aanval. Wou je echt een verslag aanmaken/bewerken?', + ) , + 'incident_verified' => array( + 'between' => 'Please enter a valid value for Verify This Report', + 'required' => 'Please enter a valid value for Verify This Report', + ) , + 'incident_video' => array( + 'url' => 'The video links field does not appear to contain a valid URL?', + ) , + 'latitude' => array( + 'between' => 'The latitude field does not appear to contain a valid latitude?', + ) , + 'locale' => array( + 'exists' => 'This report already has a translation for this language', + 'locale' => 'The Original Report and the Translation have the same locale (language)', + ) , + 'location_name' => array( + 'length' => 'The location name field must be at least 3 and no more 200 characters long.', + 'required' => 'The location name field is required.', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude?', + ) , + 'person_email' => array( + 'email' => 'The email field does not appear to contain a valid email address?', + ) , + 'person_last' => array( + 'length' => 'The last name field must be at least 3 and no more 100 characters long.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'The TO date field does not appear to contain a valid date?', + ) , +); diff --git a/application/i18n/nl_NL/reporters.php b/application/i18n/nl_NL/reporters.php new file mode 100755 index 0000000000..22efc7fddf --- /dev/null +++ b/application/i18n/nl_NL/reporters.php @@ -0,0 +1,18 @@ + array( + 'between' => 'The latitude field does not appear to contain a valid latitude?', + ) , + 'level_id' => array( + 'numeric' => 'The Reporter Level field does not appear to contain a valid Level?', + 'required' => 'The Reporter Level field does not appear to contain a valid Level?', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude?', + ) , +); diff --git a/application/i18n/nl_NL/reports.php b/application/i18n/nl_NL/reports.php new file mode 100644 index 0000000000..be1bfac6a3 --- /dev/null +++ b/application/i18n/nl_NL/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Controleer of er een keuze is aangevinkt', + 'numeric' => 'Controleer of er een keuze is aangevinkt', + 'categories_required' => 'Rapporten dienen aan een categorie te zijn toegekend alvorens ze kunnen worden goedgekeurd', + ) , + 'action' => array( + 'permission' => 'Onvoldoende rechten om de handeling uit te voeren', + ) , + 'uploadfile' => array( + 'required' => 'Selecteer een bestand om te uploaden', + 'type' => 'Het formaat voor het te uploaden bestand moet .csv of .xml zijn', + 'valid' => 'Er is geen geldig bestand opgegeven in het upload veld', + ) , +); diff --git a/application/i18n/nl_NL/roles.php b/application/i18n/nl_NL/roles.php new file mode 100755 index 0000000000..3d4801aa3f --- /dev/null +++ b/application/i18n/nl_NL/roles.php @@ -0,0 +1,15 @@ + array( + 'numeric' => 'Het veld Toegangsniveau moet een cijfer tussen 0 en 100 zijn.', + 'required' => 'Het veld Toegangsniveau moet een cijfer tussen 0 en 100 zijn.', + ) , + 'permissions' => array( + 'numeric' => 'Het veld Toelatingen moet een cijfer tussen 0 en 100 zijn.', + ) , +); diff --git a/application/i18n/nl_NL/settings.php b/application/i18n/nl_NL/settings.php new file mode 100755 index 0000000000..7ed04c0622 --- /dev/null +++ b/application/i18n/nl_NL/settings.php @@ -0,0 +1,107 @@ + array( + 'between' => 'The allow comments field does not appear to contain a valid value?', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value?', + ) , + 'allow_reports' => array( + 'between' => 'The allow reports field does not appear to contain a valid value?', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value?', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value?', + 'length' => 'The Akismet field does not appear to contain a valid value?', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs. Without "index.php" in the URL.', + ) , + 'default_map_all' => array( + 'alpha_numeric' => 'The color feed field does not appear to contain a valid value?', + ) , + 'default_map_view' => 'Standaard kaartweergave', + 'default_zoom_level' => 'Standaard zoomniveau', + 'download_city_list' => 'Steden ophalen van Geonames', + 'email_host' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'email_port' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'email_servertype' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'https' => array( + 'enable_https' => 'HTTPS inschakelen', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value?', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value?', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'zoom' => 'Zoomniveau', + ) , + 'map_provider' => array( + 'info' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + ) , + 'map_timeline' => 'Tijdlijn van de kaart', + 'map_settings' => 'Kaartinstellingen', + 'multiple_countries' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'select_default_location' => 'Gelieve een standaardland te kiezen', + 'site' => array( + 'banner' => 'Sitevlag', + 'copyright_statement' => 'Auteursrechtenverklaring van de site', + 'default_category_icons' => 'Standaardpictogram voor alle categorieën', + 'delete_banner_image' => 'Vlagafbeelding verwijderen', + 'delete_default_map_all_icon' => 'Standaardpictogram verwijderen', + 'display_contact_page' => 'Contactpagina weergeven', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'language' => 'Sitetaal', + 'manually_approve_users' => 'Gebruikers handmatig goedkeuring', + 'message' => 'Sitebericht', + 'name' => 'Sitenaam', + 'tagline' => 'Siteslogan', + 'timezone' => 'Tijdzone', + 'title' => 'Site-instellingen', + 'twitter_configuration' => 'Twitter zoektermen', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address?', + ) , + 'site_name' => array( + 'required' => 'Het sitenaamveld is verplicht.', + ) , + 'site_tagline' => array( + 'required' => 'Het sloganveld is verplicht.', + ) , + 'sms' => array( + 'clickatell_load_balance' => 'Kredietbalans laden', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value?', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long', + ) , + 'twitter' => array( + 'title' => 'Opties voor Twitterinstelling', + ) , + 'test_settings' => 'Testinstellingen', +); diff --git a/application/i18n/nl_NL/sharing.php b/application/i18n/nl_NL/sharing.php new file mode 100755 index 0000000000..31d54cc542 --- /dev/null +++ b/application/i18n/nl_NL/sharing.php @@ -0,0 +1,17 @@ + array( + 'length' => 'The Sharing name does not appear to be valid?', + ) , + 'sharing_url' => array( + 'exists' => 'The site url already exists', + 'length' => 'The site url does not appear to be valid?', + 'required' => 'The site url is required.', + 'url' => 'The site url field does not appear to contain a valid URL?', + ) , +); diff --git a/application/i18n/nl_NL/stats.php b/application/i18n/nl_NL/stats.php new file mode 100755 index 0000000000..186ccfeb44 --- /dev/null +++ b/application/i18n/nl_NL/stats.php @@ -0,0 +1,31 @@ + 'Goedgekeurd', + 'categories' => 'Categorieën', + 'category_impact_description' => 'This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details', + 'choose_date_range' => 'Kies een datumbereik.', + 'countries' => 'Landen', + 'country' => 'Land', + 'description' => 'Hello, this is the statistics section. General description going here soon. For now, browse around using the sub category links above', + 'error' => 'Fout', + 'glossary' => 'Woordenlijst', + 'legend' => 'Legenda', + 'reports' => 'Berichten', + 'reports_categories' => 'Berichtcategorieën', + 'reports_statistics' => 'Berichtstatistiek', + 'reports_status' => 'Berichtstatus', + 'time_range_1' => '1 maand', + 'time_range_2' => '3 maanden', + 'time_range_3' => '6 maanden', + 'time_range_all' => 'Alle', + 'unique_visitors' => 'Unieke bezoekers', + 'unique_visitors_description' => 'The number of individuals coming to your deployment; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc', + 'unverified' => 'Onbevestigd', + 'verified' => 'Bevestigd', + 'visits_description' => 'A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview', +); diff --git a/application/i18n/nl_NL/tooltips.php b/application/i18n/nl_NL/tooltips.php new file mode 100755 index 0000000000..ef9a516376 --- /dev/null +++ b/application/i18n/nl_NL/tooltips.php @@ -0,0 +1,37 @@ + array( + 'email_subject' => 'Onderwerp van het bericht dat verzonden zal worden.', + 'report_title' => 'Dit is de standaardtitel om aan het verslag toe te voegen.', + ) , + 'default_value' => 'Scheid elke waarde met een komma, bvb. waarde1, waarde2.', + 'private_subject' => 'Onderwerp van privébericht', + 'private_message' => 'Privébericht', + 'profile_email' => 'Je e-mailadres', + 'profile_name' => 'Your full name', + 'profile_notify' => 'Selecting YES lets you get alerts via email when new reports or comments are posted on your website', + 'profile_password' => 'Your password. Leave this field blank if you wish to keep your current password', + 'profile_public_url' => 'Dit is het adres waar je publiek profiel te vinden is.', + 'profile_username' => 'Your username cannot be changed', + 'settings_alert_email' => 'Dit is het e-mailadres dat gebruikt zal worden om e-mailwaarschuwingen te sturen.', + 'settings_configure_map' => 'Set the map to cover a specific location ', + 'settings_default_category_colors' => 'Set one color code for all the categories on the site', + 'settings_default_category_icons' => 'Eén pictogram instellen voor alle categorieën van de site.', + 'settings_default_location' => 'This is the country the site is being deployed', + 'settings_flsms_download' => 'This is the hub for incoming messages', + 'settings_flsms_synchronize' => 'This synchronizes the messages in the hub with the Ushahidi platform', + 'settings_flsms_text_1' => 'Phone numbers through which the text messages are received', + 'settings_google_analytics' => 'Tracks visitors of your site. Get detailed visitor statistics', + 'settings_map_provider' => 'This defines which map is to be used on the site', + 'settings_server_password' => 'This is the password for the email address that receives reports', + 'settings_server_port' => 'This is required to accept incoming connections from the email address', + 'settings_server_ssl_support' => 'This is required to enhance a secure connection', + 'settings_server_type' => 'This is required to retrieve e-mails from the host server', + 'settings_server_username' => 'This is the email address that receives reports', + 'settings_site_tagline' => 'Leg in een paar woorden uit waar de site over gaat.', +); diff --git a/application/i18n/nl_NL/ui_admin.php b/application/i18n/nl_NL/ui_admin.php new file mode 100755 index 0000000000..8a6c3ca958 --- /dev/null +++ b/application/i18n/nl_NL/ui_admin.php @@ -0,0 +1,298 @@ + 'Toegang geweigerd. Ofwel uw gegevens zijn niet geldig of uw aanvraag is afgewezen.', + 'access_denied_others' => 'Toegang geweigerd. Uw aanvraag is ontvangen, maar afgewezen vanwege toegangslimieten zoals tijd. Probeer het later nog eens. ', + 'access_level' => 'Toegangsniveau', + 'actions' => 'Acties', + 'add_to_category' => 'Toevoegen aan categorie', + 'added' => 'toegevoegd', + 'added_edited' => 'toegevoegd/bewerkt', + 'addons' => 'Addons', + 'admin_role' => 'Admin', + 'alerts' => 'Ontvang notificaties', + 'alerts_received' => 'Alarm ontvangen', + 'all' => 'Alles', + 'am' => 'VM', + 'anonymous' => 'Anoniem', + 'anyone_role' => 'Iedereen', + 'anywhere' => 'Overal', + 'api_banned' => 'API verbannen', + 'api_logs' => 'API Logs', + 'api_settings' => 'API instellingen', + 'api_unban' => 'UNBAN', + 'api_unban_all' => 'UNBAN allemaal', + 'approved' => 'toegestaan', + 'approve_auto' => 'automatisch toestaan', + 'approve_manual' => 'Handmatig toestaan', + 'archived' => 'Gearchiveerd', + 'are_you_sure_you_want_to' => 'Ben je zeker dat je wil', + 'are_you_sure_you_want_to_delete_this_item' => 'Ben je zeker dat je dit wil verwijderen?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Ben je zeker dat je deze foto wil verwijderen?', + 'are_you_sure_you_want_to_switch_forms' => 'Weet u zeker dat u wilt schakelen tussen de formulieren ?', + 'assign' => 'Toewijzen', + 'assignments' => 'Toewijzingen', + 'author' => 'Auteur', + 'author_email' => 'Auteur e-mail', + 'back' => 'Terug', + 'banip_action' => 'IP verbannen', + 'between_times' => 'Tussen de tijden', + 'blocks' => 'blokken', + 'body' => 'kern', + 'cancel' => 'Annuleer', + 'categories' => 'Categorieën ', + 'chart_display_error' => 'Foutmelding tijdens het vertonen van kaart', + 'check_message_valid' => 'Please make sure your message is valid', + 'check_number' => 'Please make sure the number is valid', + 'check_sms_settings' => 'Controleer uw SMS instellingen a.u.b!', + 'checkin_details' => 'Checkin Details', + 'checkins' => 'Checkins', + 'cities_loaded' => 'Steden geladen', + 'code' => 'code', + 'code_out_of_sync' => 'Code versie niet synchroon.', + 'color' => 'Kleur', + 'comments' => 'Commentaar', + 'confirmation_code' => 'Uw alarm bevestigingscode is:', + 'confirm_msg' => 'De gebruiker is', + 'count' => 'Aantal', + 'country_not_found' => 'Land niet gevonden', + 'created_edited' => 'aangemaakt/bewerkt', + 'create_report' => 'Maak een verslag', + 'critical_upgrade' => 'Kritische upgrade', + 'csv' => 'CSV', + 'currently_active' => 'Momenteel actief', + 'currently_inactive' => 'Momenteel niet actief', + 'custom_forms_insufficient_permissions' => 'U heeft onvoldoende bevoegdheid om de volgende velden te bewerken.', + 'daily' => 'Dagelijks', + 'dashboard' => 'Overzicht', + 'database' => 'database', + 'date_time' => 'Datum & Tijd', + 'date_added' => 'Datum toegevoegd', + 'date_modified' => 'Datum aangepast', + 'days_of_the_week' => 'Dagen van de week', + 'db_out_of_sync' => 'DB versie is niet synchroon.', + 'deleted' => 'verwijderd', + 'delete_action' => 'Verwijder', + 'delete_all' => 'Alle rapporten verwijderen', + 'delete_badge' => 'Verwijder badge', + 'demo' => 'Demo', + 'description' => 'Omschrijving', + 'disabled' => 'Uitgeschakeld', + 'divider_start_field' => 'Verdeler start', + 'divider_end_field' => 'Verdeler einde', + 'divider_class' => 'div class', + 'download_reports' => 'Download verslagen', + 'dropdown_choices' => 'Dropdown keuzes', + 'edited' => 'BEWERKT', + 'edited_by' => 'Bewerkt door', + 'edit_action' => 'Muteren', + 'edit_log' => 'Bewerk Logboek', + 'email' => 'e-mail', + 'entire_collective' => 'Hele gemeenschap', + 'error_geocoding' => 'Er is een fout bij het verbinden met de geocodeerservice', + 'error_msg' => 'Fout', + 'error_post_incident' => 'Error, incident kon niet gepost worden', + 'every_six_hours' => 'Elke zes uur', + 'every_twelve_hours' => 'Elke twaalf uur', + 'experimental' => 'Experimenteel', + 'faqs' => 'Veel gestelde vragen', + 'feed' => 'feed', + 'feedback' => 'terugkoppeling', + 'feeds' => 'feeds', + 'field_choices' => 'Keuzelijst', + 'field_default' => 'Standaardwaarde', + 'field_datatype' => 'Datatype', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Opmaak', + 'field_datatype_numeric' => 'Numeriek', + 'field_datatype_text' => 'Vrije tekst', + 'field_height' => 'Hoogte (in rijen)', + 'field_hidden' => 'Verborgen veld', + 'field_maxlength' => 'Maximale lengte karakter', + 'field_name' => 'Veld naam', + 'field_toggle' => 'Afwisselen', + 'field_toggle_no' => 'Nee', + 'field_toggle_yes_close' => 'Ja, standaard gesloten', + 'field_toggle_yes_open' => 'Ja, standaard open', + 'file_not_found_upload' => 'Kan geüploade bestand niet vinden', + 'file_open_error' => 'Kan het bestand niet openen om te lezen', + 'form_not_exists' => 'Dat formulier bestaat niet!', + 'forum' => 'Forum', + 'free_text_field' => 'Tekstveld (Vrije tekst)', + 'date_field' => 'Datumveld', + 'radio_field' => 'keuzerondjes veld', + 'checkbox_field' => 'Checkboxes veld', + 'dropdown_field' => 'dropdown veld', + 'from' => 'Van', + 'from_date' => 'Van', + 'geonames_timeout' => 'Geonames onderbrekingsfout', + 'get_help' => 'Help', + 'header_actions' => 'Acties', + 'header_add_edit' => 'toevoegen/bewerken', + 'header_email' => 'e-mail', + 'header_manage_users' => 'Gebruikersbeheer', + 'header_role' => 'Rol', + 'header_user' => 'Gebruiker', + 'help' => 'help', + 'hourly' => 'ieder uur', + 'incident_feed' => 'Incident feed voor', + 'instance' => 'voorbeeld', + 'instances' => 'voorbeelden', + 'instance_details' => 'Voorbeeld informatie', + 'invalid_parameter' => 'Ongeldige parameter', + 'ip_address' => 'IP adres', + 'is_date' => 'Is dit een datum veld?', + 'ispublic_visible' => 'Wie kan antwoorden zien', + 'ispublic_submit' => 'Wie kan antwoorden geven', + 'keyword' => 'Sleutelwoord', + 'keywords' => 'Sleutelwoorden', + 'label_email' => 'e-mail adres:', + 'label_full_name' => 'Volledige naam:', + 'label_password' => 'Wachtwoord:', + 'label_role' => 'Rol:', + 'label_username' => 'Gebruikersnaam:', + 'layers' => 'Kaartlagen', + 'login_role' => 'Moderator', + 'logout' => 'Afmelden', + 'logs' => 'Logs', + 'manage' => 'Beheer', + 'manage_roles' => 'Rollen & rechtenbeheer', + 'manage_users' => 'Gebruikersoverzicht', + 'manage_users_edit' => 'Gebruikers toevoegen/muteren', + 'mark_as' => 'Markeer als', + 'marked_as_not_spam' => 'markeer als geen spam', + 'marked_as_spam' => 'gemarkeerd als spam', + 'match_no_documents' => 'heeft geen overeenkomstige documenten opgeleverd', + 'message' => 'Bericht', + 'messages' => 'Postvak', + 'messages_laconica' => 'Laconica-berichten', + 'messages_twitter' => 'Tweets', + 'message_sent' => 'Uw bericht is verzonden!', + 'minute' => 'Minuut', + 'minutes' => 'Minuten', + 'missing_parameter' => 'Ontbrekende parameter', + 'moderator' => 'Moderator', + 'modified' => 'Aangepast', + 'modify_timezone' => 'Tijdzone-instelling wijzigen', + 'move_down_action' => 'naar beneden', + 'move_up_action' => 'naar boven', + 'my_alerts' => 'Mijn alarmeringen', + 'my_checkins' => 'Mijn Checkins', + 'my_profile' => 'Mijn profiel', + 'my_reports' => 'Mijn verslagen', + 'my_votes' => 'Uitgebrachte stemmen', + 'my_votes_up' => 'Positief', + 'my_votes_down' => 'Negatief', + 'name' => 'Naam', + 'new_alert' => 'Maak nieuwe alarmering aan', + 'new_private' => 'Nieuw bericht aanmaken', + 'new_password' => 'Nieuw wachtwoord', + 'no' => 'Nee', + 'notification' => 'Notificatie', + 'not_case_sensitive' => 'Deze is niet hoofdletter gevoelig', + 'not_found' => 'Niet gevonden', + 'no_data' => 'Geen gegevens. Er zijn geen resultaten om weer te geven.', + 'no_error' => 'Geen fout', + 'no_result_display_msg' => 'Geen resultaten om te tonen!', + 'of' => 'of', + 'openids' => 'OpenID\'s ', + 'page' => 'pagina', + 'pages' => 'pagina\'s', + 'page_not_found' => 'Pagina niet gevonden', + 'parameters_used' => 'Gebruikte parameters', + 'password' => 'Wachtwoord', + 'password_reset' => 'Wachtwoord opnieuw instellen', + 'password_reset_message_line_1' => 'Beste', + 'password_reset_message_line_2' => 'Wij hebben een verzoek voor het wijzigen van het wachtwoord ontvangen van', + 'password_reset_message_line_3' => 'Om uw wachtwoord te wijzigen, klik op de link hier beneden (of kopieer en plak deze link in uw browser).', + 'password_reset_message_line_4' => 'Zoals u verzocht is uw wachtwoord nu gewijzigd. Uw nieuwe gegevens zijn', + 'password_reset_subject' => 'Ushahidi wachtwoord herstel', + 'phone' => 'Telefoon', + 'please_select' => 'Selecteer alstublieft', + 'pm' => 'PB', + 'preview' => 'Voorvertonen', + 'private_message' => 'Bericht', + 'private_messages' => 'Privéberichten', + 'private_sent' => 'Privébericht verzonden', + 'private_subject' => 'Onderwerp', + 'private_to' => 'Aan', + 'public_listing' => 'Publieke lijst', + 'read' => 'lezen', + 'relevance' => 'Relevantie', + 'report_title' => 'Verslag titel', + 'report_date' => 'Verslag datum', + 'reporters' => 'Verslaggever', + 'reporter_levels' => 'Verslaggever niveau', + 'reports' => 'Berichten', + 'reputation' => 'Reputatie score', + 'required' => 'Verplicht', + 'response' => 'Antwoord', + 'results' => 'Resultaten', + 'revoke' => 'Intrekken', + 'riverid_exists_admin' => 'Dit e-mailadres bestaat al bij CrowdmapID. De gebruiker dient zijn bestaande Crowdmap wachtwoord te gebruiken om in te loggen. ', + 'save_settings' => 'Instellingen opslaan', + 'search' => 'Zoeken', + 'search_reports' => 'Zoek verslagen', + 'searching_for' => 'zoekend voor', + 'security_info_encryption_key' => 'De encryptiesleutel is nog steeds ingesteld op de standaardwaarde. Dit is onveilig en moet veranderd worden. ', + 'security_info_https' => 'Deze website wordt getoond over HTTP. Deze moet worden ingesteld op HTTPS voor extra beveiliging. ', + 'security_info_instructions' => 'Instructies zijn beschikbaar op de wiki:', + 'select_field_type' => '--- Selecteer een veldtype ---', + 'select_item' => 'Selecteer een item', + 'sender' => 'Afzender', + 'send_to' => 'Sturen naar', + 'sent_from_website' => 'Dit bericht werd verstuurd van je website om', + 'server_time' => 'Servertijd', + 'settings' => 'Instellingen', + 'showing_page' => 'Pagina vertonen', + 'showing_results' => 'Resultaten tonen', + 'shown' => 'vertoond ', + 'special_category' => 'Speciale categorie', + 'specific_area' => 'Specifiek gebied', + 'statistics' => 'Statistieken', + 'stats' => 'Statistiek', + 'stats_collection_error' => 'Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!', + 'specific_days' => 'Specifieke dagen', + 'subject' => 'Onderwerp', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Taak voltooid', + 'text_field' => 'Tekstveld', + 'theme_name' => 'Naam', + 'title' => 'Gebruikersbeheer', + 'to' => 'aan', + 'to_date' => 'aan', + 'translate_reports' => 'Vertaal verslagen', + 'unapproved' => 'niet goedgekeurd', + 'unknown' => 'Onbekend', + 'unknown_failure' => 'Onbekende storing', + 'unread' => 'ongelezen', + 'unsubscribe_message' => 'U ontvangt geen alarmeringen meer van', + 'update_link' => 'Klik hier om nu te upgraden', + 'upgrade_ushahidi' => 'Upgrade Ushahidi', + 'upgrade_ushahidi_status' => 'Upgrade Ushahidi Status', + 'upload_reports' => 'Upload verslagen', + 'user' => 'Gebruiker', + 'users' => 'Gebruikers', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Gecontroleerd/Ongecontroleerd', + 'verify_unverify' => 'Bevestigd/Onbevestigd', + 'version' => 'Versie', + 'version_available' => 'is beschikbaar voor upgrade', + 'video_encoding' => 'Video codering', + 'view_private' => 'Privé berichten', + 'view_site' => 'Website', + 'view_report' => 'Toon verslag', + 'welcome' => 'Welkom, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Ja', + 'your_search_for' => 'Je zoekopdracht naar', + 'delete_all_confirm' => 'Weet je zeker dat je alle rapporten wil verwijderen?', + 'delete_all_no_reports' => 'Er zijn geen rapporten om te verwijderen.', + 'user_no_logins' => 'Aantal aanmeldingen', + 'user_last_login' => 'Laatste aanmelding', +); diff --git a/application/i18n/nl_NL/ui_main.php b/application/i18n/nl_NL/ui_main.php new file mode 100755 index 0000000000..e610d1a090 --- /dev/null +++ b/application/i18n/nl_NL/ui_main.php @@ -0,0 +1,592 @@ + 'Over', + 'access' => 'Toegang', + 'access_limits' => 'Toegangslimieten', + 'account_name' => 'Accountnaam', + 'actions' => 'Acties', + 'action_confirm' => 'Deze actie kan niet ongedaan worden gemaakt. Weet je het zeker dat je verder wilt gaan?', + 'activate' => 'Activeren', + 'active' => 'Actief', + 'add' => 'Toevoegen', + 'added_by' => 'Toegevoegd door', + 'additional_data' => 'Aanvullende gegevens', + 'additional_reports' => 'Aanvullende rapporten', + 'add_edit' => 'Toevoegen/bewerken', + 'add_field' => 'Veld toevoegen', + 'add_language' => 'Taal toevoegen', + 'add_new' => 'Nieuwe toevoegen', + 'add_new_category' => 'Categorie toevoegen', + 'add_translation' => 'Vertaling toevoegen', + 'admin' => 'Beheer', + 'alerts' => 'Notificaties ontvangen', + 'alerts_alert_me' => 'Waarschuw mij als er een rapport is ingevuld of rond:', + 'alerts_btn_send' => 'Mijn notificatie opslaan', + 'alerts_email' => 'E-mailadres:', + 'alerts_enter_email' => 'E-mailadres invoeren', + 'alerts_enter_mobile' => 'Mobiel nummer inclusief landcode (b.v. 0031) invoeren', + 'alerts_get' => 'Notificaties ontvangen', + 'alert_has_been' => 'Notificatie is', + 'alerts_mobile_phone' => 'Mobiele telefoon:', + 'alerts_place_spot' => 'Of plaats een prikker op de kaart, je ontvangt een notificatie wanneer er berichten zijn in de door jou opgegeven straal. Gebruik de schuif om de gewenste straal op te geven.', + 'alerts_place_spot2' => 'Als je de plaats niet kunt vinden, klik dan op de kaart om je locatie te verbeteren.', + 'alerts_rss' => 'RSS Feeds (kopieer onderstaande hyperlink)', + 'alerts_select_city' => 'Selecteer een stad', + 'alerts_step1_select_city' => 'Stap 1: Selecteer jouw stad of locatie:', + 'alerts_step2_send_alerts' => 'Step 2: Selecteer hoe je notificaties wilt ontvangen:', + 'alerts_step3_select_catgories' => 'Step 3 (Optional): Selecteer categorieën', + 'alert_confirm_previous' => 'Bevestig een eerder notificatieverzoek', + 'alert_saved' => 'Je notificatie is opgeslagen!', + 'all' => 'Alles', + 'allowed' => 'Toegestaan', + 'all_categories' => 'Alle categorieën', + 'all_time' => 'Altijd', + 'and' => 'en', + 'api' => 'API', + 'approve' => 'Goedkeuren', + 'approved' => 'Goedgekeurd', + 'approved_reports' => 'Goedgekeurde rapporten', + 'approve_this_report' => 'Dit rapport goedkeuren', + 'approximate' => 'Ongeveer', + 'archive' => 'Archiveren', + 'archived' => 'Gearchiveerd', + 'ascending' => 'Oplopend', + 'at' => 'op', + 'author' => 'Auteur', + 'auto_checkin' => 'Automatisch controleren', + 'avg_reports_per_day' => 'Gem. rapporten per dag', + 'awaiting_approval' => 'Wachtend op goedkeuring', + 'awaiting_verification' => 'Wachtend op verificatie', + 'badge' => 'Badge', + 'badges' => 'Badges', + 'badge_image' => 'Badgeafbeelding', + 'badge_image_upload_your_own' => 'Of je kunt ook je eigen badgeafbeelding gebruiken.', + 'badge_pack' => 'Badgepakket', + 'badge_select' => 'Selecteer een badge', + 'blog' => 'Blog', + 'browse_profiles' => 'Door profielen bladeren', + 'cancel' => 'Annuleren', + 'categories' => 'Categorieën', + 'category' => 'Categorie', + 'category_filter' => 'Categoriefilter', + 'category_has_been' => 'De categorie is', + 'category_name' => 'Categorienaam', + 'change_date_range' => 'Datumbereik wijzigen', + 'change_password' => 'Wachtwoord wijzigen', + 'change_picture' => 'Mijn afbeelding wijzigen', + 'choose' => 'Selecteer een', + 'choose_data_points' => 'Kies datapunten om te downloaden', + 'choose_date_range' => 'Of kies je eigen datumbereik', + 'choose_field_type' => 'Veldtype kiezen', + 'cleanurl' => 'Wis URL\'s', + 'clear' => 'Leegmaken', + 'clear_map' => 'Kaart leegmaken', + 'close' => 'Sluiten', + 'clusters' => 'clusters', + 'color' => 'Kleur', + 'comment' => 'Opmerking', + 'comments' => 'Opmerkingen', + 'comment_details' => 'Opmerkingdetails', + 'configuration_saved' => 'Je instellingen zijn bewaard!', + 'configure' => 'Configureren', + 'confirm_email_successful' => 'Je e-mail is bevestigd! Log hieronder in.', + 'confirm_email_failed' => 'E-mailbevestiging mislukt! Je kunt hieronder een nieuwe e-mailbevestiging aanvragen.', + 'contact' => 'Contact', + 'contact_code' => 'Beveiligingscode', + 'contact_email' => 'Je e-mailadres', + 'contact_message' => 'Bericht', + 'contact_message_has_send' => 'Je bericht is verstuurd!', + 'contact_name' => 'Je naam', + 'contact_phone' => 'Je telefoonnummer', + 'contact_send' => 'Bericht sturen', + 'contact_subject' => 'Onderwerp van bericht', + 'copyright' => 'Copyright ©', + 'create' => 'Aanmaken', + 'create_edit' => 'Aanmaken/bewerken', + 'create_new' => 'Nieuwe maken', + 'create_new_password' => 'Nieuw wachtwoord aanmaken', + 'create_report' => 'Rapport maken', + 'credibility' => 'Geloofwaardigheid', + 'current_password' => 'Huidig wachtwoord', + 'custom_fields' => 'Aangepaste velden', + 'data' => 'Informatie', + 'date' => 'Datum', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => 'Datum & tijd', + 'day' => 'dag', + 'deactivate' => 'Deactiveren', + 'default_location_name' => 'Nairobi, Kenia', + 'delete' => 'Verwijderen', + 'deleted' => 'Verwijderd', + 'deletes' => 'Verwijdert', + 'delete_disabled' => 'Verwijderen niet mogelijk', + 'delete_last' => 'Laatste verwijderen', + 'delete_report' => 'Verwijder dit rapport', + 'delete_selected' => 'Geselecteerde verwijderen', + 'delete_spam' => 'Verwijder spam', + 'demo' => 'Demo', + 'description' => 'Omschrijving', + 'descending' => 'Aflopend', + 'detailed_location_example' => 'B.v.: Op de hoek van de markt, Dorp & Kerkstraat, Willemstad', + 'details' => 'Details', + 'direct_report' => 'Direct rapport', + 'disabled' => 'Uitgeschakeld', + 'disapprove' => 'Afkeuren', + 'download_reports' => 'Rapporten downloaden', + 'download' => 'Downloaden', + 'edit' => 'Bewerken', + 'edit_form_fields' => 'Formuliervelden bewerken', + 'edit_report' => 'Rapport wijzigen', + 'email' => 'E-mail', + 'email_address' => 'E-mailadres', + 'email_configuration' => 'Instellingen mailserver', + 'email_server_host' => 'Mailserverhost', + 'email_server_password' => 'Wachtwoord mailserver', + 'email_server_port' => 'Mailserverpoort', + 'email_server_ssl_support' => 'SSL-ondersteuning mailserver', + 'email_server_type' => 'Soort mailserver', + 'email_server_username' => 'Gebruikersnaam mailserver', + 'email_settings_comment_0' => 'dus je instellingen moeten worden gekoppeld aan dit e-mailadres', + 'email_settings_comment_00' => 'Vul om rapporten per e-mail te ontvangen je e-mailaccountinstellingen hieronder in. Houd er rekening mee dat e-mails worden ontvangen via je', + 'email_settings_comment_1' => 'Sommige servers eisen een volledig e-mailadres', + 'email_settings_comment_2' => 'Wachtwoord e-mailaccount', + 'email_settings_comment_3' => 'Veelgebruikte poorten: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Voorbeelden: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Voorbeelden: pop3, imap', + 'email_settings_comment_6' => 'In- of uitschakelen SSL-verbindingen', + 'empty' => '---LEEG---', + 'end_point' => 'tot', + 'error' => 'Fout!', + 'example' => 'Voorbeeld', + 'example_country' => 'Nederland', + 'external_apps' => 'Externe apps', + 'external_video_link' => 'Externe videolink', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Geef feedback', + 'feeds' => 'Feeds', + 'feed_has_been' => 'De feed is', + 'feed_items' => 'onderhouden items', + 'feed_name' => 'Naam', + 'feed_url' => 'URL', + 'field_unused' => 'Ongebruikt veld', + 'file' => 'Bestand', + 'file_over_max_allowed' => 'Uw bestand is meer dan de maximaal toegestane bestandsgrootte.', + 'filters' => 'filters', + 'filter_reports' => 'Verslagen filteren', + 'filter_reports_by' => 'Verslagen filteren op', + 'filter_reports_contain' => 'Filter rapporten met', + 'find' => 'Zoek', + 'find_location' => 'Zoek locatie', + 'first_name' => 'Voornaam', + 'force_run_scheduler' => 'Geldende Uitvoeren Planner', + 'forgot_password' => 'Wachtwoord vergeten?', + 'form' => 'Formulier', + 'forms' => 'Formulieren', + 'form_description' => 'Beschrijvingsformulier', + 'form_edit' => 'Dit formulier bewerken', + 'form_has_been' => 'Het formulier is', + 'form_title' => 'Titel', + 'from' => 'van', + 'full_name' => 'Volledige naam', + 'geolocation_available' => 'Geolocatie beschikbaar', + 'geometry_color' => 'Kleur', + 'geometry_comments' => 'Opmerkingen', + 'geometry_label' => 'etiket', + 'geometry_strokewidth' => 'slag Breedte', + 'go' => 'Uitvoeren', + 'hashtag' => 'hashtag', + 'has_been' => 'Is geweest', + 'help' => 'Meehelpen', + 'hidden' => 'Verborgen', + 'hide' => 'verbergen', + 'hide_this_message' => 'Verberg deze melding', + 'home' => 'Startpagina', + 'how_to_report' => 'Hoe plaats ik een bericht?', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Wordt gebruikt om u te identificeren op de site voor andere gebruikers.', + 'image' => 'Afbeelding', + 'images' => 'Afbeeldingen', + 'image_icon' => 'Afbeelding/pictogram', + 'inactive' => 'Inactief', + 'inbox' => 'Postvak In', + 'incident' => 'Incident ', + 'incidents_nearby' => 'Incidenten nabijgelegen', + 'incident_location' => 'Locatie', + 'include' => 'Inclusief', + 'include_categories' => 'Inclusief Categorieën', + 'include_custom_fields' => 'Inclusief op maat velden', + 'include_description' => 'Omschrijving toevoegen', + 'include_detail' => 'Geef zoveel mogelijk details', + 'include_latitude' => 'Latitude toevoegen', + 'include_location_information' => 'Locatie informatie toevoegen', + 'include_longitude' => 'Longitude toevoegen', + 'include_personal_info' => 'Persoonlijke informatie toevoegen', + 'incoming_media' => 'nieuws', + 'information_evaluation' => 'Informatie evaluatie', + 'input_location' => 'Geef de exacte locatie', + 'insufficient_role' => 'Uw account beschikt niet over de juiste rechten om volledig te loggen je naar binnen Neem contact op met de beheerder.', + 'in_response_to' => 'In antwoord op', + 'ip_address' => 'IP Adres', + 'is_this_your_profile' => 'Is dit uw profiel?', + 'item' => 'item', + 'items' => 'item', + 'item_details' => 'item details', + 'item_title' => 'Titel', + 'key' => 'Sleutel', + 'keywords' => 'Sleutelwoorden', + 'kml_kmz_file' => 'KMZ/KML bestand', + 'kml_kmz_upload' => 'KMZ/KML bestand uploaden', + 'kml_url' => 'URL naar KML', + 'laconica' => 'Laconica', + 'language' => 'Taal', + 'last' => 'Laatste', + 'last_month' => 'Laatste maand', + 'last_name' => 'Achternaam', + 'last_year' => 'Laatste jaar', + 'latitude' => 'Latitude', + 'layers' => 'Lagen', + 'layers_filter' => 'Kaartlagen', + 'layer_has_been' => 'De kaartlaag is ', + 'layer_name' => 'Naam', + 'layer_url' => 'URL', + 'leave_a_comment' => 'Opmerkingen', + 'less_information' => 'Minder informatie', + 'level' => 'Niveau', + 'level_has_been' => 'Niveau is', + 'level_name' => 'Naam', + 'limited' => 'Beperkt', + 'link' => 'URL', + 'list' => 'Lijst', + 'loading_reports' => 'Rapporten aan het laden', + 'location' => 'Locatie', + 'locations' => 'Locaties', + 'location_example' => 'Plaats, Provincie en/of Land', + 'login' => 'Aanmelden', + 'login_account_creation_successful' => 'Account is succesvol aangemaakt. U kunt nu inloggen.', + 'login_confirmation_sent' => 'Een bevestiging is gestuurd naar uw e-mail adres. ', + 'login_email_doesnt_exist' => 'E-mailadres bestaat niet. Probeer een ander e-mailadres of maak een nieuw account aan. ', + 'login_select_openid' => 'Selecteer je account provider', + 'login_with' => 'Inloggen met', + 'login_userpass' => 'e-mail en paswoord', + 'login_openid' => 'OpenID', + 'login_signup' => 'Inschrijven', + 'login_signup_click' => 'Een account aanmaken', + 'login_signup_confirmation_subject' => 'Bevestiging van inschrijving', + 'login_signup_text' => 'Maak nu een account om te profiteren van meer functies op de site.', + 'longitude' => 'Longitude', + 'map' => 'Kaart', + 'mark_read' => 'Markeren als gelezen', + 'mark_unread' => 'Markeren als ongelezen', + 'maximum_filesize' => 'Maximum bestandsgrootte', + 'media' => 'Media', + 'media_filter' => 'Media filter', + 'members' => 'Leden', + 'manage_your_account' => 'Je account beheren', + 'message' => 'Bericht', + 'messages' => 'Postvak', + 'message_details' => 'Berichtdetails', + 'message_non_numeric_source' => 'Bericht van een niet-numerieke bron:', + 'mobile' => 'Mobiel', + 'modify' => 'Wijzigen', + 'modify_date' => 'Datum wijziging', + 'month' => 'maand', + 'more' => 'meer', + 'more_information' => 'meer informatie', + 'multi_country_instance' => 'Is deze toepassing voor meedere landen', + 'must_confirm_email_address' => 'U dient uw e-mailadres bevestigen om toegang tot te krijgen tot dit gedeelte. Als u uw bevestigingsmail kwijt bent, kunt u een hieronder een nieuwe aanvragen.', + 'name' => 'Naam', + 'nearby_report' => 'Rapporten dicht in de buurt.', + 'new' => 'Nieuw', + 'news' => 'Nieuws', + 'news_feeds' => 'Nieuwsfeeds', + 'news_source' => 'Nieuwsbron', + 'new_category' => 'Nieuwe categorie', + 'new_password' => 'Nieuw wachtwoord', + 'new_report' => 'Nieuw bericht', + 'next' => 'Volgende', + 'no' => 'Nee', + 'no_checkins' => 'Geen checkins om weer te geven', + 'no_data' => 'Geen gegevens', + 'none' => 'Geen', + 'notices' => 'Notities', + 'not_approved' => 'Niet goedgekeurd', + 'not_approved_singular' => 'Niet goedgekeurd', + 'not_selected' => '---Niet geselecteerd---', + 'not_spam' => 'Geen spam', + 'not_specified' => 'Niet gespecifieerd', + 'no_reports' => 'Er zijn geen rapporten', + 'no_results' => 'Geen resultaten', + 'off' => 'Uit', + 'official_news' => 'Officieel & openbaar nieuws', + 'on' => 'Aan', + 'option' => 'Optie', + 'optional' => 'Optioneel', + 'options' => 'Opties', + 'organization' => 'Organisatie', + 'organizations' => 'Organisaties', + 'organization_description' => 'Omschrijving', + 'organization_email' => 'E-mail', + 'organization_has_been' => 'De organisatie is ', + 'organization_name' => 'Naam', + 'organization_phone_1' => 'Telefoon', + 'organization_phone_2' => 'Fax', + 'organization_website' => 'Website', + 'original' => 'Origineel', + 'original_description' => 'Originele omschrijving', + 'original_title' => 'Originele titel', + 'other_ushahidi_instances' => 'Overige implementaties', + 'outbox' => 'Postvak Uit', + 'outgoing' => 'Uitgaand', + 'page' => 'Pagina', + 'pages' => 'Pagina\'s', + 'page_description' => 'Omschrijving', + 'page_has_been' => 'De pagina is', + 'page_tab_name' => 'Naam', + 'page_title' => 'Titel', + 'parent_category' => 'Hoofdcategorie', + 'password' => 'Wachtwoord', + 'password_again' => 'Wachtwoord controle', + 'password_changed_successfully' => 'Wachtwoord is succesvol veranderd! Log hier beneden in. ', + 'password_forgot' => 'Wachtwoord vergeten?', + 'password_reset_confirm' => 'Controleer de e-mail, er is een nieuw wachtwoord verzonden.', + 'password_save' => 'Aangemeld blijven op deze computer?', + 'past_month' => 'Maand', + 'past_year' => 'Jaar', + 'pending' => 'in afwachting van', + 'per' => 'per', + 'personal_information' => 'Persoonlijke informatie Optioneel.', + 'phone' => 'Telefoon', + 'photos' => 'Foto\'s', + 'pictures' => 'Afbeeldingen', + 'pictures_and_videos' => 'Afbeeldingen en video\'s', + 'pinpoint_location' => '* Zoek de locatie door het invullen van een naam, adres of coördinaten (lat/lon, b.v. 51.19,4.21). Of klik op de kaart om de locatie te prikken', + 'play' => 'Afspelen', + 'please_note' => 'Let op', + 'plugins' => 'Plugins', + 'plugin_url' => 'Plugin Website', + 'public_profile' => 'Openbaar profiel', + 'public_profile_url' => 'Openbaar profiel URL', + 'preview' => 'Voorbeeld', + 'preview_item' => 'Voorbeeld bekijken', + 'preview_message' => 'Voorbeeld bekijken', + 'previous' => 'Vorige', + 'private' => 'Privébericht', + 'profile_color' => 'Profielkleur', + 'profile_saved' => 'Je profiel is opgeslagen', + 'quick_stats' => 'Statistieken', + 'rating' => 'Waardering', + 'read' => 'Lees', + 'receive' => 'Ontvang', + 'receive_from' => 'Ontvang van', + 'receive_notifications' => 'Notificaties ontvangen', + 'recent_reports' => 'Recente Rapportages', + 'refresh_news_feeds' => 'Nieuwsfeeds ophalen', + 'registered_email' => 'Geregistreerd E-mailadres', + 'remove' => 'verwijder', + 'reply' => 'Beantwoord', + 'report' => 'Rapport', + 'reports_listed' => 'Rapporten (van de kaart, gesorteerd in chronologische volgorde)', + 'reporter' => 'Rapporteur', + 'reporters' => 'Rapporteurs', + 'reporter_date' => 'Datum', + 'reporter_email' => 'E-mail', + 'reporter_first_name' => 'Voornaam', + 'reporter_has_been' => 'Rapporteur is', + 'reporter_ip' => 'IP adres', + 'reporter_last_name' => 'Achternaam', + 'reporter_level' => 'Niveau', + 'reporter_levels' => 'Niveau\'s', + 'reporter_phone' => 'Telefoon', + 'reports' => 'Rapporten', + 'reports_btn_browse' => 'Bladeren', + 'reports_btn_submit' => 'OK', + 'reports_by_this_user' => 'Verslagen van deze gebruiker', + 'reports_categories' => 'Categorieën', + 'reports_count' => '%d Rapporten', + 'reports_date' => 'Datum', + 'reports_description' => 'Omschrijving', + 'reports_download_csv' => 'Rapporten worden gedownload in CSV formaat', + 'reports_email' => 'E-mail', + 'reports_features' => 'Opties', + 'reports_find_location' => 'Zoek een locatie in de buurt', + 'reports_first' => 'Voornaam', + 'reports_last' => 'Achternaam', + 'reports_location_name' => 'Locatie detaileren', + 'reports_news' => 'URL naar het nieuwsbericht', + 'reports_optional' => 'Optionele informatie', + 'reports_photos' => 'Foto\'s uploaden', + 'reports_return' => 'Terug naar de rapporten', + 'reports_select_city' => 'Selecteer een plaats', + 'reports_submitted' => 'Uw verslag is aan onze staf ter beoordeling voorgelegd. Wij nemen zo snel mogelijk contact met u op indien nodig.', + 'reports_submit_new' => 'Plaats een nieuw bericht', + 'reports_time' => 'Tijd', + 'reports_timeline' => 'historie', + 'reports_title' => 'Titel', + 'reports_video' => 'Video URL', + 'report_an_incident' => 'Plaats een bericht', + 'report_details' => 'Bericht details', + 'report_option_1' => 'Door een bericht te sturen aan', + 'report_option_2' => 'Stuur een e-mail naar ', + 'report_option_3' => 'Tweet met de hashtag ', + 'report_option_4' => 'Vul het formulier in', + 'report_option_external_apps' => 'Door het gebruiken van een app', + 'report_saved' => 'Rapport is opgeslagen', + 'report_title' => 'Titel', + 'request_information' => 'Verzoek om meer informatie', + 'request_location' => 'Verzoek om locatie', + 'required' => 'Verplicht', + 'requirements' => 'Vereisten', + 'resend_confirm_email' => 'Verstuur bevestigingsmail nogmaals', + 'reset' => 'Reset', + 'reset_all_filters' => 'Reset alle filters', + 'reset_password' => 'Wachtwoord opnieuw instellen', + 'retrieve_city_names' => 'Gemeenten ophalen voor het geselecteerde land', + 'riverid_information' => 'Accounts beheerd door de %s dienst', + 'role' => 'Rol', + 'rss' => 'RSS', + 'save' => 'Opslaan', + 'saved' => 'Opgeslagen', + 'save_add_new' => 'Opslaan & Nieuwe toevoegen', + 'save_close' => 'Opslaan & sluiten', + 'save_report' => 'Opslaan', + 'schedule' => 'Schema', + 'scheduler' => 'Schema', + 'scheduler_day' => 'Dag', + 'scheduler_hour' => 'Uur', + 'scheduler_log' => 'Schema log', + 'scheduler_minute' => 'Minuut', + 'scheduler_weekday' => 'Dag van de week', + 'search' => 'Zoeken', + 'search_results' => 'Resultaten', + 'security_code' => 'Beveiligingscode ', + 'select_all' => 'Alles selecteren', + 'select_field_type' => 'Selecteer een veld type', + 'select_form_type' => 'Selecteer een formulier', + 'select_in_map' => 'Selecteer op de kaart', + 'select_multiple' => 'Selecteer zo veel als nodig', + 'select_one' => 'Bevestig alstublieft of u een item heeft aangevinkt', + 'select_theme' => 'Selecteer een thema', + 'send' => 'Verzenden', + 'send_confirmation' => 'Verstuur bevestigingsmail nogmaals', + 'sending_to' => 'Verstuur naar', + 'sent' => 'Verzonden', + 'sent_by' => 'Verzonden door', + 'server_address' => 'Server adres', + 'server_type' => 'Server type ', + 'service' => 'Dienst', + 'service_username' => 'Gebruikersnaam dienst', + 'service_user_id' => 'Gebruikers-ID dienst', + 'share' => 'Delen', + 'shared_data' => 'Gedeelde gegevens', + 'sharing' => 'Delen', + 'shorter_map' => 'Kortere kaart', + 'show' => 'tonen', + 'show_all' => 'Alle berichten', + 'show_messages' => 'Toon berichten', + 'site' => 'Website', + 'site_email_address' => 'site e-mailadres', + 'site_url' => 'Site URL', + 'smaller_map' => 'Kleinere kaart', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Sorry, u heeft niet genoeg badges.', + 'source' => 'Bron', + 'source_name' => 'Naam', + 'sort' => 'Sorteren', + 'sort_by' => 'Sorteren op', + 'source_url' => 'URL', + 'spam' => 'Spam', + 'ssl_support' => 'SSL inschakelen?', + 'start_point' => 'Van', + 'step' => 'Stap', + 'submit' => 'Plaats een bericht', + 'submit_sms' => 'gemeld via SMS', + 'submit_sms1' => 'SMS sturen naar', + 'submit_sms2' => 'op uw telefoon', + 'success' => 'Succes!', + 'successfuly_imported' => 'Succesvol geïmporteerd ', + 'surname' => 'Achternaam', + 'survey' => 'Enquête', + 'system' => 'Systeem', + 'taller_map' => 'Langere kaart', + 'tcp_port' => 'TCP Poort', + 'themes' => 'Thema\'s', + 'theme_default' => 'Standaard Ushahidi Thema', + 'theme_settings' => 'Thema instellingen', + 'this' => 'Deze', + 'this_day' => 'Vandaag', + 'this_month' => 'Deze maand', + 'this_week' => 'Deze week', + 'this_year' => 'Dit jaar', + 'this_is_your_profile' => 'Dit is uw profiel', + 'time' => 'tijd', + 'title' => 'Titel ', + 'to' => 'tot', + 'today' => 'Vandaag', + 'today_at' => 'Vandaag om', + 'token' => 'Token', + 'total_reports' => 'Aantal rapporten', + 'translated' => 'Vertaald', + 'translated_description' => 'Vertaalde omschrijving', + 'translated_title' => 'Vertaalde titel', + 'translate_to' => 'Vertalen naar', + 'translation' => 'Vertaling', + 'translation_saved' => 'Vertaling is opgeslagen', + 'trusted' => 'Vertrouwd', + 'type' => 'Type', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Niet mogelijk om e-mail te versturen', + 'uncategorized_reports' => 'Ongecategoriseerde verslagen', + 'unread' => 'Ongelezen', + 'unverified' => 'Niet bevestigd', + 'update_feeds' => 'Feeds bijwerken', + 'upload' => 'Upload', + 'upload_file' => 'Bestand', + 'upload_reports' => 'Uploaden', + 'upload_reports_detail_1' => 'Met het formulier hier beneden kan u incidenten importeren in het Ushahidi systeem.', + 'upload_reports_detail_4' => 'het moet tenminste incident titel en incident datum betvatten', + 'upload_reports_detail_5' => 'een voorbeeld van een CSV verslag', + 'upload_successful' => 'Upload Succesvol', + 'upload_video' => 'Upload Video', + 'url' => 'URL', + 'user' => 'Gebruiker', + 'username' => 'Gebruikersnaam', + 'ushahidi_admin' => 'Beheerder', + 'verification' => 'Verificatie', + 'verified' => 'Bevestigd', + 'verified_reports' => 'Bevestigde berichten', + 'verify' => 'Bevestigen', + 'verify_this_report' => 'Bevestig dit bericht', + 'version' => 'Versie', + 'video' => 'Video', + 'view' => 'Bekijk', + 'views' => 'Weergaven', + 'view_all' => 'Bekijk alles', + 'view_all_feeds' => 'Bekijk alle feeds', + 'view_all_reports' => 'Bekijk alle berichten', + 'view_items' => 'Items bekijken', + 'view_more' => 'Lees meer...', + 'view_public_profile' => 'Openbaar profiel bekijken', + 'view_report' => 'Bekijk bericht', + 'view_reports' => 'Bekijk berichten', + 'view_video' => 'Video bekijken', + 'visible' => 'Zichtbaar', + 'waiting_approval' => 'Wachtend op goedkeuring', + 'waiting_verification' => 'Wachtend op bevestiging', + 'wider_map' => 'Bredere kaart', + 'web_form' => 'Webformulier', + 'web' => 'Web', + 'weight' => 'Gewicht', + 'yes' => 'Ja', + 'yesterday' => 'Gisteren', + 'your_dashboard' => 'Je dashboard', + 'your_file' => 'Je bestand', + 'zoom_in' => 'Inzoomen', + 'zoom_out' => 'Uitzoomen', +); diff --git a/application/i18n/nl_NL/upgrade.php b/application/i18n/nl_NL/upgrade.php new file mode 100755 index 0000000000..ea066f296a --- /dev/null +++ b/application/i18n/nl_NL/upgrade.php @@ -0,0 +1,34 @@ + array( + 'between' => 'Ongeldige invoer. De geaccepteerde waarden zijn 0 voor Nee en 1 voor Ja.', + ) , + 'upgrade_automatic' => 'Automatisch upgraden', + 'upgrade_available' => 'Beschikbare updates', + 'upgrade_continue_btn_text' => 'Doorgaan', + 'upgrade_db_text_1' => 'Ik zal dus je database upgraden van versie', + 'upgrade_db_text_2' => 'naar de nieuwste databaseversie', + 'upgrade_failed' => 'De upgrade is niet gelukt', + 'upgrade_manual' => 'Handmatige upgrade', + 'upgrade_text_2' => 'Stap 1: Download de meest recente ushahidi versie op http://download.ushahidi.com', + 'upgrade_text_3' => '
- Download de meest recente Ushahidi build van', + 'upgrade_text_6' => 'Klik de knop hieronder voor automatisch upgraden', + 'upgrading' => 'Bezig met het uitvoeren van de upgrade', + 'upgrade_ftp_password' => 'FTP paswoord:', + 'upgrade_ftp_username' => 'FTP gebruikersnaam:', + 'upgrade_status_info' => 'Je hebt de meest recente versie van Ushahidi.', + 'upgrade_db_version' => 'Databaseversie: %d', + 'upgrade_database' => 'Database:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Bezig met het downloaden van de meest recente versie van Ushahidi...', + 'log_file' => 'Logbestand', + 'failed_downloading' => 'Het downloaden is mislukt.', + 'failed_unpacking' => 'Het uitpakken is mislukt.', + 'deleting_files' => 'Bezig met het verwijderen van de gedownloade bestanden...', +); diff --git a/application/i18n/no/alerts.php b/application/i18n/no/alerts.php new file mode 100644 index 0000000000..3663d41948 --- /dev/null +++ b/application/i18n/no/alerts.php @@ -0,0 +1,7 @@ + 'Se rapporter', + 'reports_edit' => 'Lag/Rediger/Slett rapporter', + 'reports_approve' => 'Godkjenn rapporter', + 'reports_verify' => 'Valider rapporter', + 'reports_comments' => 'Behandle rapportkommentarer', + 'reports_download' => 'Last ned rapporter', + 'reports_upload' => 'Last opp rapporter', + 'messages' => 'Behandle meldinger', + 'messages_reporters' => 'Behandle meldingsrapporterere', + 'stats' => 'Se statistikk', + 'settings' => 'Endre innstillinger', +); diff --git a/application/i18n/no/private_message.php b/application/i18n/no/private_message.php new file mode 100644 index 0000000000..590fbc3fee --- /dev/null +++ b/application/i18n/no/private_message.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Pole adresu email nie zawiera ważnego adresu', + 'email_check' => 'Podany adres email otrzymuje już powiadomienia z tej lokalizacji.', + 'length' => 'Adres email musi zawierać co najmniej 4 i nie więcej niż 64 znaki.', + 'required' => 'Pole adresu email musi być wypełnione, jeśli zaznaczono pole wyboru.', + ) , + 'alert_country' => array( + 'single_country' => 'Ta mapa jest ograniczona do jednego kraju. Proszę się upewnić, że raport znajduje się na terytorium kraju: %s.', + ) , + 'alert_lat' => array( + 'between' => 'Poprawna lokalizacja nie została wybrana na mapie.', + 'required' => 'Poprawna lokalizacja nie została wybrana na mapie.', + ) , + 'alert_lon' => array( + 'between' => 'Poprawna lokalizacja nie została wybrana na mapie.', + 'required' => 'Poprawna lokalizacja nie została wybrana na mapie.', + ) , + 'alert_mobile' => array( + 'length' => 'Pole telefonu komórkowego prawdopodobnie nie zawiera odpowiedniej ilości cyfr.', + 'mobile_check' => 'Ten numer telefonu komórkowego został już zarejestrowany jako otrzymujący alarmy dla tej lokalizacji', + 'numeric' => 'Pole telefonu komórkowego prawdopodobnie nie zawiera ważnego numeru telefonu. Prosimy wprowadzać numery jedynie wraz z prefiksem kraju.', + 'one_required' => 'Musisz wprowadzić swój numer telefonu komórkowego lub adres emailowy.', + 'required' => 'Pole telefonu komórkowego musi być wypełnione, jeśli zaznaczono pole wyboru.', + ) , + 'alert_radius' => array( + 'in_array' => 'Proszę zaznaczyć promień alertów na mapie.', + 'required' => 'Proszę zaznaczyć promień alertów na mapie.', + ) , + 'alert_recipient' => array( + 'required' => 'Nie ustawiono odbiorcy alertów!', + ) , + 'alerts_subscribed' => 'Utworzono subskrypcję dla następujących kategorii', + 'code_already_verified' => 'Ten kod weryfikacujny już został potwierdzony.', + 'code_not_found' => 'Kod weryfikacyjny nie został odnaleziony. Proszę zweryfikuj czy wprowadziłeś do przeglądarki poprawny URL.', + 'code_verified' => ' Weryfikacja przebiegła pomyślnie, będziesz na bieżąco informowany o alertach.', + 'confirm_request' => 'Aby potwierdzić notyfikację o alertach na Twój adres email, kliknij na poniższy link (bądź skopiuj go i wklej w okno adresu przeglądarki): ', + 'create_more_alerts' => 'Powróć do strony z alertami, aby utworzyć kolejne notyfikacje.', + 'email_alert_request_created' => 'Notyfikacja o alertach na Twój adres email została utworzona a wiadomość wraz z kodem weryfikacyjnym została wysłana do:', + 'email_code' => 'Proszę wprowadź poniżej kod weryfikujący, który otrzymałeś drogą poczty elektronicznej: ', + 'email_error_head' => 'Notyfikacja o alertach na Twój adres email NIE została zachowana!', + 'email_ok_head' => 'Notyfikacja o alertach na Twój adres email została zachowana!', + 'error' => 'Nastąpił błąd systemu. Zgłoś to proszę obsłudze systemu.', + 'mobile_alert_request_created' => 'Zgłoszenie zostało przyjęte, kod SMS został wysłany na', + 'mobile_code' => 'Proszę wpisać otrzymany kod SMS:', + 'mobile_error_head' => 'Zgłoszenie NIE zostało zapisane!', + 'mobile_ok_head' => 'Zgłoszenie zostało zapisane!', + 'settings_error' => 'Ta instalacja nie została skonfigurowana do obsługi powiadomień o alertach.', + 'unsubscribe' => 'Otrzymałeś tę wiadomość, ponieważ Twój adres email został zapisany w naszym systemie w celu notyfikacji o tworzonych na bieżąco alertach. Jeżeli pragniesz otrzymywać notyfikacje, kliknij na poniższy link (bądź skopiuj go i wklej w okno adresu przeglądarki): ', + 'unsubscribed' => 'Notyfikacja o alertach została anulowana dla adresu ', + 'unsubscribe_failed' => 'Niestety ale nie byliśmy w stanie anulować notyfikacji. Proszę sprawdź czy wprowadzileś prawidłowy adres URL do przeglądarki.', + 'verification_email_subject' => 'notyfikacje o alertach - weryfikacja', + 'verify_code' => 'Nie będziesz otrzymywał alertów dot. danej lokalizacji, do momentu kiedy Twój email nie zostanie potwierdzony (po przez kod weryfikacyjny).', +); diff --git a/application/i18n/pl_PL/auth.php b/application/i18n/pl_PL/auth.php new file mode 100755 index 0000000000..946dc102dc --- /dev/null +++ b/application/i18n/pl_PL/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Pole adresu email nie zawiera ważnego adresu emailowego', + 'exists' => 'Przepraszamy, dla tego adresu emailowego już istnieje konto użytkownika.', + 'length' => 'Adres emailowy musi mieć co najmniej 4 i nie więcej niż 64 znaki.', + 'required' => 'Pole adresu emailowego musi być wypełnione.', + ) , + 'name' => array( + 'length' => 'Pełna nazwa pola musi mieć co najmniej 3 i nie więcej niż 100 znaków.', + 'required' => 'Wymagane jest wypełnienie pełnej nazwa pola.', + 'standard_text' => 'Pole nazwy użytkownika zawiera niedozwolone znaki.', + ) , + 'current_password' => array( + 'length' => 'Hasło musi mieć co najmniej 8 znaków.', + 'login error' => 'Proszę sprawdzić, czy e-mail i hasło są poprawne.', + 'matches' => 'Proszę wpisać dwukrotnie to samo hasło.', + 'required' => 'Pole "hasło" jest wymagane.', + 'alpha_dash' => 'Hasło może składać się wyłącznie z liter, cyfr lub znaków # @ - _', + 'incorrect' => 'Podano złe hasło.', + ) , + 'new_password' => array( + 'length' => 'Hasło musi mieć co najmniej 8 znaków.', + 'login error' => 'Proszę sprawdzić, czy podany e-mail i hasło są poprawne.', + 'matches' => 'Proszę wpisać dwukrotnie to samo hasło.', + 'required' => 'Pole "hasło" jest wymagane.', + 'alpha_dash' => 'Hasło może składać się wyłącznie z liter, cyfr lub znaków # @ - _', + ) , + 'password' => array( + 'default' => 'Wystąpił błąd logowania.', + 'length' => 'Pole hasła musi mieć co najmniej 5 i nie więcej niż 16 znaków.', + 'login error' => 'Sprawdź, czy wprowadziłeś właściwe hasło.', + 'matches' => 'Wprowadź to samo hasło w obydwu polach hasła.', + 'required' => 'Pole hasła musi być wypełnione.', + 'riverid server down' => 'Serwer nie działa. Spróbuj później.', + 'riverid' => '%s', + 'alpha_dash' => 'Hasło może składać się wyłącznie z liter, cyfr lub znaków # @ - _', + ) , + 'password_confirm' => array( + 'matches' => 'Pole potwierdzenia hasła musi odpowiadać polu hasła.', + ) , + 'resetemail' => array( + 'email' => 'Pole adresu emailowego prawdopodobnie nie zawiera ważnego adresu emailowego', + 'invalid' => 'Przepraszamy, nie mamy twojego adresu emailowego', + 'required' => 'Pole adresu emailowego musi być wypełnione.', + ) , + 'role' => array( + 'superadmin_modify' => 'Tylko superadministrator może zmienić konto superadministratora lub awansować użytkownika na administratora.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Niewłaściwe pole formatu.', + 'length' => 'Pole Roli musi składać się z minimum 5 znaków i maksymalnie z 30.', + 'required' => 'Musisz zdefiniować co najmniej jedną funkcję.', + 'values' => 'Musisz wybrać funkcję albo ADMINISTRATORA, albo UŻYTKOWNIKA.', + ) , + 'token' => array( + 'invalid' => 'Nieprawidłowy token podczas odzyskiwania hasła.', + 'required' => 'Do odzyskania hasła potrzebny jest token', + ) , + 'username' => array( + 'admin' => 'Funkcja administratora/użytkownika nie może być zmodyfikowana.', + 'alpha_numeric' => 'URL profilu publicznego może zawierać tylko litery i cyfry.', + 'exists' => 'Przepraszamy, ta nazwa użytkownika jest już używana.', + 'length' => 'Pole nazwy użytkownika musi mieć co najmniej 2 i nie więcej niż 16 znaków.', + 'login error' => 'Sprawdź, czy wprowadziłeś właściwą nazwę użytkownika.', + 'required' => 'Pole nazwy użytkownika musi być wypełnione.', + 'superadmin' => 'Rola superadministratora nie może być zmodyfikowana.', + 'csrf' => 'Podejrzenie ataku CSRF! Czy rzeczywiście chcesz utworzyć/zmienić użytkownika?', + ) , +); diff --git a/application/i18n/pl_PL/bug.php b/application/i18n/pl_PL/bug.php new file mode 100755 index 0000000000..e1faf54458 --- /dev/null +++ b/application/i18n/pl_PL/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Wpisz poprawny kod zabezpieczający', + 'required' => 'Wpisz kod zabezpieczający', + ) , + 'email' => array( + 'email' => 'Pole adresu e-mail ma nieznaną wartość', + 'length' => 'E-mail musi mieć od 4 do 64 znaków', + 'required' => 'E-mail jest wymagany jeżeli okienko jest odznaczone', + ) , + 'error' => array( + 'required' => 'Proszę wypełnić pole błędu', + ) , + 'subject' => array( + 'length' => 'Temat musi mieć przynajmniej 3 znaki', + 'required' => 'Proszę wypełnić pole tematu', + ) , + 'yourname' => array( + 'length' => 'Nazwa musi mieć przynajmniej 3 znaki', + 'required' => 'Proszę podać nazwę', + ) , +); diff --git a/application/i18n/pl_PL/category.php b/application/i18n/pl_PL/category.php new file mode 100755 index 0000000000..17dfa1e932 --- /dev/null +++ b/application/i18n/pl_PL/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Pole koloru musi zawierać 6 znaków.', + 'required' => 'Pole koloru musi być wypełnione.', + ) , + 'category_description' => array( + 'required' => 'Pole opisu musi być wypełnione.', + ) , + 'category_image' => array( + 'size' => 'Upewnij się, czy wielkość przesyłanego obrazu nie przekracza 50KB.', + 'type' => 'Pole obrazu prawdopodobnie nie zawiera ważnego obrazu. Jedynymi dopuszczalnymi formatami są .JPG, .PNG i .GIF.', + 'valid' => 'Pole obrazu prawdopodobnie nie zawiera ważnego pliku', + ) , + 'category_title' => array( + 'length' => 'Pole tytułu musi mieć co najmniej 3 i nie więcej niż 80 znaków.', + 'required' => 'Pole tytułu musi być wypełnione.', + ) , + 'parent_id' => array( + 'already_parent' => 'Nie można utworzyć podkategorii dla podkategorii.', + 'exists' => 'Podana kategoria nadrzędna nie istnieje.', + 'numeric' => 'Pole kategoria nadrzędna musi być numeryczne.', + 'parent_trusted' => 'Kategoria nadrzędna nie może być kategorią specjalną.', + 'required' => 'Pole kategoria nadrzędna musi być wypełnione.', + 'same' => 'Pola kategoria i nadrzędna kategoria nie mogą być jednakowe.', + 'special' => 'Nie można utworzyć podkategorii dla kategorii specjalnej.', + ) , +); diff --git a/application/i18n/pl_PL/comments.php b/application/i18n/pl_PL/comments.php new file mode 100755 index 0000000000..dec3c418b6 --- /dev/null +++ b/application/i18n/pl_PL/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Wprowadź ważny kod bezpieczeństwa', + 'required' => 'Wprowadź kod bezpieczeństwa', + 'valid' => 'Nieprawidłowy kod zabezpieczający.', + ) , + 'comment_author' => array( + 'length' => 'Pole nazwy musi zawierać co najmniej 3 znaki.', + 'required' => 'Pole nazwy musi być wypełnione.', + ) , + 'comment_description' => array( + 'required' => 'Pole komentarza musi być wypełnione.', + ) , + 'comment_email' => array( + 'email' => 'Pole adresu email prawdopodobnie nie zawiera ważnego adresu emailowego', + 'length' => 'Pole adresu email musi zawierać co najmniej 4 i nie więcej niż 64 znaki.', + 'required' => 'Pole adresu email musi być wypełnione, jeżeli zaznaczono pole wyboru.', + ) , +); diff --git a/application/i18n/pl_PL/contact.php b/application/i18n/pl_PL/contact.php new file mode 100755 index 0000000000..60b1726c12 --- /dev/null +++ b/application/i18n/pl_PL/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Wprowadź poprawny kod bezpieczeństwa', + 'valid' => 'Proszę wpisać prawidłowy kod zabezpieczający.', + 'required' => 'Wprowadź kod bezpieczeństwa', + ) , + 'contact_email' => array( + 'email' => 'Pole adresu emailowego prawdopodobnie nie zawiera poprawnego adresu mailowego', + 'length' => 'Pole adresu email musi zawierać co najmniej 4 i nie więcej niż 64 znaki.', + 'required' => 'Pole adresu email musi być wypełnione, jeśeli zaznaczone zostało pole wyboru.', + ) , + 'contact_message' => array( + 'required' => 'Pole wiadomości musi być wypećnione.', + ) , + 'contact_name' => array( + 'length' => 'Pole nazwy musi mieć co najmniej 3 znaki.', + 'required' => 'Pole nazwy musi być wypełnione.', + ) , + 'contact_subject' => array( + 'length' => 'Pole tematu musi zawierać co najmniej 3 znaki.', + 'required' => 'Pole tematu musi być wypełnione.', + ) , + 'email_send' => array( + 'failed' => 'Wystąpił błąd podczas wysyłania wiadomości.', + ) , +); diff --git a/application/i18n/pl_PL/core.php b/application/i18n/pl_PL/core.php new file mode 100755 index 0000000000..56992c466a --- /dev/null +++ b/application/i18n/pl_PL/core.php @@ -0,0 +1,35 @@ + 'plik konfiguracyjny', + 'controller' => 'kontroler', + 'driver' => 'sterownik', + 'driver_implements' => 'Sterownik %s sterownik dla biblioteki %s musi wykorzystywać interface %s', + 'driver_not_found' => 'Sterownik %s dla biblioteki %s nie został znaleziony', + 'errors_disabled' => 'Możesz przejść do home page or try again.', + 'error_file_line' => '% [%]:', + 'generic_error' => 'Żądanie nie może być zrealizowane', + 'helper' => 'pomocnik', + 'invalid_filetype' => 'Żądany typ pliku, .%s, nie jest dozwolony w twoim pliku konfiguracji widoku', + 'invalid_method' => 'Nieprawidłowa metoda %s zastosowana w %s', + 'invalid_property' => 'Właściwość %s nie istnieje w klasie %s.', + 'library' => 'biblioteka', + 'log_dir_unwritable' => 'Ten katalog logowania nie jest zapisywalny: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi nie był w stanie określić kontrolera do przetworzenia tego żądania: %s', + 'no_default_route' => 'Określ domyślną ścieżkę w config/routes.php', + 'page_not_found' => 'Żądana strona, %s, nie została znaleziona.', + 'report_bug' => 'prześlij ten problem do Ushahidi', + 'resource_not_found' => 'Żądane %s, %s, nie mogą być znalezione', + 'stack_trace' => 'obraz stosu', + 'stats_footer' => 'Przesłane w {czas wykonania} sekund, przy użyciu {używana pamięć} pamięci. Wygenerowane przez Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Może być tylko jeden przypadek Ushahidi na żądanie strony', + 'uncaught_exception' => 'Niewychwycone %s: %s w pliku %s na linii %s', + 'view' => 'widok', + 'view_set_filename' => 'Musisz określić nazwę pliku widoku przed obrazowaniem', +); diff --git a/application/i18n/pl_PL/database.php b/application/i18n/pl_PL/database.php new file mode 100755 index 0000000000..b4e1d2b5db --- /dev/null +++ b/application/i18n/pl_PL/database.php @@ -0,0 +1,10 @@ + 'Błąd bazy danych: %s', + 'table_not_found' => 'Tabela "%s" nie może być znaleziona w bazie danych. Upewnij się, czy używasz najnowszej wersji bazy danych dla tej wersji Ushahidi', +); diff --git a/application/i18n/pl_PL/datetime.php b/application/i18n/pl_PL/datetime.php new file mode 100755 index 0000000000..0fdc0078e1 --- /dev/null +++ b/application/i18n/pl_PL/datetime.php @@ -0,0 +1,86 @@ + 'przed południem', + 'friday' => array( + 'abbv' => 'Pia', + 'full' => 'Piątek', + ) , + 'monday' => array( + 'abbv' => 'Pon', + 'full' => 'Poniedziałek', + ) , + 'pm' => 'po południu', + 'saturday' => array( + 'abbv' => 'Sob', + 'full' => 'Sobota', + ) , + 'sunday' => array( + 'abbv' => 'Nie', + 'full' => 'Niedziela', + ) , + 'thursday' => array( + 'abbv' => 'Czw', + 'full' => 'Czwartek', + ) , + 'tuesday' => array( + 'abbv' => 'Wto', + 'full' => 'Wtorek', + ) , + 'wednesday' => array( + 'abbv' => 'Śro', + 'full' => 'Środa', + ) , + 'january' => array( + 'abbv' => 'Sty', + 'full' => 'Styczeń', + ) , + 'february' => array( + 'abbv' => 'Lut', + 'full' => 'Luty', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marzec', + ) , + 'april' => array( + 'abbv' => 'Kwi', + 'full' => 'Kwiecień', + ) , + 'may' => array( + 'abbv' => 'Maj', + 'full' => 'Maj', + ) , + 'june' => array( + 'abbv' => 'Cze', + 'full' => 'Czerwiec', + ) , + 'july' => array( + 'abbv' => 'Lip', + 'full' => 'Lipiec', + ) , + 'august' => array( + 'abbv' => 'Sie', + 'full' => 'Sierpień', + ) , + 'september' => array( + 'abbv' => 'Wrz', + 'full' => 'Wrzesień', + ) , + 'october' => array( + 'abbv' => 'Paź', + 'full' => 'Październik', + ) , + 'november' => array( + 'abbv' => 'Lis', + 'full' => 'Listopad', + ) , + 'december' => array( + 'abbv' => 'Gru', + 'full' => 'Grudzień', + ) , +); diff --git a/application/i18n/pl_PL/feeds.php b/application/i18n/pl_PL/feeds.php new file mode 100755 index 0000000000..4123a98022 --- /dev/null +++ b/application/i18n/pl_PL/feeds.php @@ -0,0 +1,19 @@ + 'Data', + 'feed_name' => array( + 'length' => 'Nazwa musii zawierać co najmniej 3 i nie więcej niż 70 znaków.', + 'required' => 'Wprowadź nazwę RSS.', + ) , + 'feed_url' => array( + 'required' => 'Wprowadź URL RSS.', + 'url' => 'Wprowadź ważny URL. Np. http://www.ushahidi.com', + ) , + 'source' => 'Źródło', + 'title' => 'Tytuł', +); diff --git a/application/i18n/pl_PL/footer.php b/application/i18n/pl_PL/footer.php new file mode 100755 index 0000000000..f676dbd1d1 --- /dev/null +++ b/application/i18n/pl_PL/footer.php @@ -0,0 +1,9 @@ + 'php5-curl nie jest zainstalowany w tym systemie', +); diff --git a/application/i18n/pl_PL/form.php b/application/i18n/pl_PL/form.php new file mode 100755 index 0000000000..0789b1c7cd --- /dev/null +++ b/application/i18n/pl_PL/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Domyślna wartość wprowadzona dla pola jest nieprawidłowa.', + 'length' => 'Nazwa pola musi zawierać co najmniej 3 i nie więcej niż 200 znaków.', + ) , + 'field_height' => array( + 'between' => 'Wprowadź wartość do 0 do 50 dla wysokości pola', + ) , + 'field_isdate' => array( + 'between' => 'Wprowadziłeś nieważną wartość dla daty pola', + 'required' => 'Wybierz odpowiedź Tak lub Nie dla daty pola', + ) , + 'field_name' => array( + 'length' => 'Nazwa pola musi zawierać co najmniej 3 i nie więcej niż 100 znaków.', + 'required' => 'Wprowadź nazwę pola.', + 'duplicate' => 'Wpisana nazwa pola już istnieje. Proszę wpisać inną nazwę.', + ) , + 'field_required' => array( + 'between' => 'Wprowadziłeś nieważną wartość w wymaganym polu', + 'required' => 'Wybierz odpowiedź Tak lub Nie dla wymaganego pola', + ) , + 'field_type' => array( + 'numeric' => 'Wybierz ważny typ pola.', + 'required' => 'Wybierz typ pola.', + ) , + 'field_width' => array( + 'between' => 'Wprowadź wartość do 0 do 300 dla szerokości pola', + ) , + 'form_description' => array( + 'required' => 'Wprowadź opis formularza.', + ) , + 'form_id' => array( + 'default' => 'Domyślny formularz nie może być usunięty.', + 'numeric' => 'Wybierz formularz, który chcesz dodać do tego pola.', + 'required' => 'Wybierz formularz, który chcesz dodać do tego pola.', + ) , + 'form_title' => array( + 'length' => 'Pole nazwy formularza musi mieć co najmniej 3 i nie więcej niż 100 znaków.', + 'required' => 'Wprowadź nazwę formularza.', + 'exists' => 'Istnieje już formularz o tej nazwie. Proszę wybrać inną nazwę.', + ) , +); diff --git a/application/i18n/pl_PL/imap.php b/application/i18n/pl_PL/imap.php new file mode 100755 index 0000000000..ef83d5bb1e --- /dev/null +++ b/application/i18n/pl_PL/imap.php @@ -0,0 +1,10 @@ + 'Nie udało się otworzyć strumienia serwera IMAP', + 'unsupported_service' => 'Ta usługa email nie jest obsługiwana w systemie', +); diff --git a/application/i18n/pl_PL/installer.php b/application/i18n/pl_PL/installer.php new file mode 100755 index 0000000000..a39171fe35 --- /dev/null +++ b/application/i18n/pl_PL/installer.php @@ -0,0 +1,84 @@ + 'Ścieżka bazowa', + 'database' => 'Baza danych', + 'database_host' => 'Host bazy danych', + 'database_host_description' => 'Jeśli uruchamiasz Ushahidi na własnym komputerze, zapewne będzie to "localhost". Jeśli uruchamiasz Ushahidi na serwerze WWW, potrzebne dane otrzymasz od administratora.', + 'database_name' => 'Nazwa bazy danych', + 'database_name_description' => 'Nazwa bazy danych dla Ushahidi.', + 'db_information_link' => 'Więcej informacji znajdziesz w tym artykule na wiki, który szczegółowo omawia bazy danych.', + 'default_language' => 'Domyślny język', + 'default_language_description' => 'Each instance of Ushahidi comes with a set of built in language translations. You can also add your own', + 'disable' => 'Wyłącz', + 'enable' => 'Włącz', + 'error_summary' => 'Poniżej jest lista napotkanych błędów.', + 'files_location_text' => 'Lokalizacja na serwerze, gdzie znajdują się pliki Ushahidi.Została wykryta automatycznie, sprawdź poprawność! Jeśli pole jest puste, oznacza to że Ushahidi zainstalowano w katalogu najwyższego poziomu.', + 'finished' => 'Zakończone', + 'general' => 'Ogólne', + 'google_key' => 'Klucz API Google', + 'google_key_description' => 'Każdy może otrzymać api key. Zdobądź własny', + 'go_back' => 'Powrót', + 'index' => array( + 'advanced' => 'ZAAWANSOWANA INSTALACJA', + 'advanced_installation_description' => 'Ustaw wszystkie najważniejsze parametry w 5 krokach: serwer, mapa, nazwa strony i dane kontaktowe.', + 'basic_installation' => 'PODSTAWOWA INSTALACJA', + 'basic_installation_description' => 'Szybka instalacja - wszystko, czego potrzebujesz to katalog w którym znajduje się strona oraz dane połączenia z bazą danych. Wybierz tę opcję, jeśli chcesz mieć działającą stronę natychmiast i skonfigurować wszystko później.', + 'proceed' => 'Kontynuuj', + 'welcome' => 'Witamy w instalacji Ushahidi. Wybierz rodzaj instalacji poniżej.', + ) , + 'installation_successful' => 'Instalacja zakończyła się pomyślnie.', + 'mail_server' => 'Serwer poczty', + 'mail_server_host' => 'Host serwera poczty', + 'mail_server_host_description' => 'Przykłady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Hasło serwera poczty', + 'mail_server_password_description' => 'Hasło, którego używasz do logowania do poczty.', + 'mail_server_port' => 'Port serwera poczty', + 'mail_server_port_description' => 'Popularne poty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Typ serwera poczty', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) lub Post Office Protocol (POP). Jaka jest różnica?', + 'mail_server_username' => 'Nazwa użytkownika e-mail', + 'mail_server_username_description' => 'Jeżeli używasz Gmail, Hotmail lub Yahoo, wpisz pełny adres jako nazwę użytkownika.', + 'map' => 'Mapa', + 'map_provider' => 'Dostawca mapy', + 'map_provider_description' => 'Ushahidi może działać z mapami Bing, Google lub OpenStreetMap. Wybierz najlepszą dla swojego obszaru.', + 'other_steps' => 'Inne kroki', + 'password' => 'Hasło', + 'password_description' => 'Hasło bazy danych', + 'previous' => 'Poprzedni', + 'restart_apache' => 'Zrestartuj Serwer Apache', + 'select_mail_server_ssl' => 'Włącz lub wyłącz SSL', + 'select_mail_server_ssl_description' => 'Niektóre serwery używają SSL do połączenia. Zwiększa to poziom bezpieczeństwa.', + 'setup_sms' => 'Skonfiguruj serwers SMS', + 'site_email' => 'Adres email strony', + 'site_email_alerts' => 'Adres email raportów', + 'site_email_alerts_description' => 'Jeśli goście strony zechcą otrzymywać subskrypcje na e-mail, otrzymają ją z tego adresu. Nie musi być taki sam jak adres strony.', + 'site_email_description' => 'Komunikacja na stronie będzie obsługiwana przez ten adres', + 'site_name' => 'Nazwa strony', + 'site_name_description' => 'Nazwa Twojej strony', + 'site_tagline' => 'Hasło strony', + 'site_tagline_description' => 'Hasło Twojej strony', + 'summary' => array( + 'text_1' => 'Pliki i katalogi które muszą mieć prawa do zapisu.', + 'text_2' => '

Oto jak zmienić prawa do zapisu:

+ ', + 'text_3' => 'Zanim zaczniesz, upewnij się czy następujące pliki i katalogi mają prawa do zapisu.', + 'text_4' => 'Dla instalacji potrzebujesz następujących informacji,.', + ) , + 'table_prefix' => 'Prefiks tabel', + 'table_prefix_description' => 'Najczęściej nie potrzebujesz tu nic zmieniać. Jeżeli jednak chcesz utrzymać kilka instalacji Ushahidi w jednej bazie danych, zmień prefiks tutaj.', + 'title' => 'Tytuł', + 'to_login' => 'Aby się zalogować, odwiedź', + 'upload_data' => 'Wgraj dane raportów', + 'username' => 'Nazwa użytkownika', + 'username_description' => 'Nazwa użytkwb bazy danych', + 'use_credentials' => 'i użyj następujących danych', + 'view_site' => 'Zobacz swoją stronę', +); diff --git a/application/i18n/pl_PL/layer.php b/application/i18n/pl_PL/layer.php new file mode 100755 index 0000000000..656c230fb1 --- /dev/null +++ b/application/i18n/pl_PL/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Pole koloru musi mieć min. 6 znaków', + 'required' => 'Pole koloru jest wymagane.', + ) , + 'layer_file' => array( + 'type' => 'Pole nie zawiera prawidłowego pliku. Jedyne akceptowalne formaty to .KMZ, .KML.', + 'valid' => 'Pole nie zawiera prawidłowego pliku.', + ) , + 'layer_name' => array( + 'length' => 'Nazwa tego pola musi posiadać min. 3 znaki i być nie dłuższa niż 80 znaków.', + 'required' => 'Nazwa tego pola jest wymagana.', + ) , + 'layer_url' => array( + 'atleast' => 'Wymagane jest podanie albo pliku albo KML URL', + 'both' => 'Nie możesz dodać obu (pliku KML albo adresu URL) - wybierz jedno', + 'url' => 'Podaj prawidłowy URL, np. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/pl_PL/libraries.php b/application/i18n/pl_PL/libraries.php new file mode 100755 index 0000000000..eb3bb6a788 --- /dev/null +++ b/application/i18n/pl_PL/libraries.php @@ -0,0 +1,27 @@ + 'Nie można połączyć z serwerem akismet', + 'akismet_cannot_retrieve' => 'Nie można otrzymać odpowiedzi od Akismet', + 'api_library_not_found' => 'Bilbioteka API %s, dla klasy %s nie została znaleziona. Sprawdź tablicę przekierowań zadań swojego API.', + 'askimet_invalid_apikey' => 'Klucz APi Akismet jest niepoprawny.', + 'clickatell_fopen_error' => 'Wystąpił błąd podczas wykonywania metody wysyłania fopen! Sprawdź czy PHP obsługuje OpenSSL i cz wersja jest większa niż 5.2', + 'clickatell_message_too_long' => 'Twoja wiadomość unicode jest za długa! (Obecna długość=', + 'clickatell_no_destination_address' => 'Podaj adres docelowy (DO)!', + 'clickatell_no_sender_address' => 'Podaj adres źródła (OD)!', + 'clickatell_unicode_message_too_long' => 'Twoja wiadomość unicode jest za długa! (Obecna długość=', + 'clickatell_unsupported_method' => 'Nieobsługowana metoda przesyłania!', + 'invalid_api_library' => 'Biblioteka API % jest niewłaściwa. Wszystkie biblioteki API muszą być podklasami %', + 'upgrade_directory_not_deleted' => 'Folder %s nie został usunięty.', + 'upgrade_extracting_error' => 'Błąd przy rozpakowywaniu: %s', + 'upgrade_failed' => 'Pobieranie najnowszej wersji Ushahidi nie powiodło się.', + 'upgrade_file_not_copied' => 'Plik %s nie został skopiowany', + 'upgrade_file_not_deleted' => 'Plik %s nie został skasowany', + 'upgrade_title' => 'Skrypt aktualizacji Ushahidi', + 'upgrade_zip_error' => 'Pobrany plik zip Ushahidi %s, nie może zostać zapisany', + 'riverid_variable_not_available' => '%s nie jest dostępny w klasie RiverID.', +); diff --git a/application/i18n/pl_PL/maintenance.php b/application/i18n/pl_PL/maintenance.php new file mode 100644 index 0000000000..d6390c8667 --- /dev/null +++ b/application/i18n/pl_PL/maintenance.php @@ -0,0 +1,9 @@ + 'Przepraszamy, strona została wyłączona w celu konserwacji. Prosimy spróbować później.', +); diff --git a/application/i18n/pl_PL/message.php b/application/i18n/pl_PL/message.php new file mode 100755 index 0000000000..6b5ef3b3bb --- /dev/null +++ b/application/i18n/pl_PL/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Podaj prawidłowy kod bezpieczeństwa.', + 'required' => 'Podaj prawidłowy kod bezpieczeństwa.', + ) , + 'email' => array( + 'email' => 'To chyba nie jest prawidłowy adres email?', + 'length' => 'Email musi mieć min 4 znaki i być nie dłuższy niż 64 znaki.', + 'required' => 'Polę email jest wymagane (jeżeli jest zaznaczone).', + ) , + 'message' => array( + 'required' => 'Pole komentarz jest wymagane.', + ) , + 'name' => array( + 'length' => 'Polę "nazwa" musi zawierać min. 3 znaki.', + 'required' => 'Pole "nazwa" jest wymagane.', + ) , + 'phone' => array( + 'length' => 'Podany został nieprawidłowy numer telefonu.', + ) , +); diff --git a/application/i18n/pl_PL/mhi.php b/application/i18n/pl_PL/mhi.php new file mode 100755 index 0000000000..06cf87cd51 --- /dev/null +++ b/application/i18n/pl_PL/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Wpisz poprawny kod zabezpieczający', + 'required' => 'Wpisz kod zabezpieczający', + ) , + 'contact_email' => array( + 'email' => 'Pole adresu e-mail ma nieznaną wartość', + 'required' => 'Proszę podać adres e-mail', + ) , + 'contact_message' => array( + 'required' => 'Proszę podać wiadomość', + ) , + 'contact_subject' => array( + 'length' => 'Temat musi mieć przynajmniej 3 znaki', + 'required' => 'Proszę wypełnić pole tematu', + ) , +); diff --git a/application/i18n/pl_PL/notifications.php b/application/i18n/pl_PL/notifications.php new file mode 100755 index 0000000000..44d7dac5d4 --- /dev/null +++ b/application/i18n/pl_PL/notifications.php @@ -0,0 +1,35 @@ + 'Ta wiadomość została wysłana z serwisu', + 'admin_login_url' => 'Logowanie do panelu administracyjnego', + 'admin_new_comment' => array( + 'message' => 'Do systemu został dodany nowy komentarz, jako odpowiedź do:', + 'subject' => 'Nowy komentarz', + ) , + 'admin_new_email' => array( + 'message' => 'Do systemu została dodana nowa wiadomość email.', + 'subject' => 'Nowa wiadomość email', + ) , + 'admin_new_report' => array( + 'message' => 'Do systemu został dodany nowy raport.', + 'subject' => 'Nowy Raport', + ) , + 'admin_new_sms' => array( + 'message' => 'Do systemu została dodana nowa wiadomość tekstowa SMS.', + 'subject' => 'Nowa wiadomość tekstowa', + ) , + 'member_new_alert' => array( + 'message' => 'Otrzymano nowy alert!', + 'subject' => 'Nowy alert!', + ) , + 'member_new_message' => array( + 'message' => 'Otrzymano nową Prywatną Wiadomość', + 'subject' => 'Nowa Prywatna Wiadomość', + 'footer' => 'Aby odpowiedzieć, odwiedź:', + ) , +); diff --git a/application/i18n/pl_PL/page.php b/application/i18n/pl_PL/page.php new file mode 100644 index 0000000000..5749cbf962 --- /dev/null +++ b/application/i18n/pl_PL/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Proszę wpisać tytuł strony.', + 'length' => 'Tytuł strony musi mieć co najmniej 3 i nie więcej niż 150 znaków.', + ) , + 'page_tab' => array( + 'required' => 'Proszę wpisać nazwę zakładki.', + ) , + 'page_description' => array( + 'required' => 'Proszę wpisać opis strony.', + ) , +); diff --git a/application/i18n/pl_PL/permissions.php b/application/i18n/pl_PL/permissions.php new file mode 100644 index 0000000000..787db118e5 --- /dev/null +++ b/application/i18n/pl_PL/permissions.php @@ -0,0 +1,27 @@ + 'Przeglądaj raporty', + 'reports_edit' => 'Twórz,edytuj lub kasuj raporty', + 'reports_approve' => 'Zatwierdź raporty', + 'reports_verify' => 'Weryfikuj raporty', + 'reports_comments' => 'Zarządzaj komentarzami', + 'reports_download' => 'Pobierz raporty', + 'reports_upload' => 'Wyślij raporty', + 'messages' => 'Zarządzaj wiadomościami', + 'messages_reporters' => 'Zarządzaj zgłaszającymi', + 'stats' => 'Obejrzyj statystyki', + 'settings' => 'Zmień ustawienia', + 'manage' => 'Zarządzaj panelem', + 'users' => 'Zarządzaj użytkownikami', + 'manage_roles' => 'Zarządzaj rolami', + 'checkin' => 'Uprawnienia do check-in?', + 'checkin_admin' => 'Zarządzaj check-in', + 'admin_ui' => 'Dostęp do panelu administratora', + 'member_ui' => 'Dostęp do panelu użytkownika', + 'delete_all_reports' => 'Usuń wszystkie raporty', +); diff --git a/application/i18n/pl_PL/private_message.php b/application/i18n/pl_PL/private_message.php new file mode 100644 index 0000000000..681b40f377 --- /dev/null +++ b/application/i18n/pl_PL/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'ID musi być liczbą', + ) , + 'private_to' => array( + 'required' => 'Pole "Do" jest wymagane', + 'exists' => 'Użytkownik, do którego próbujesz wysłać wiadomość, nie istnieje.', + ) , + 'private_subject' => array( + 'required' => 'Pole "Temat" jest wymagane.', + 'length' => 'Temat musi mieć co najmniej 3 i co najwyżej 150 znaków.', + ) , + 'private_message' => array( + 'required' => 'Treść wiadomości jest wymagana.', + ) , +); diff --git a/application/i18n/pl_PL/report.php b/application/i18n/pl_PL/report.php new file mode 100755 index 0000000000..b18a7b5f01 --- /dev/null +++ b/application/i18n/pl_PL/report.php @@ -0,0 +1,139 @@ + 'błąd!', + 'country_name' => array( + 'single_country' => 'Ta mapa jest ograniczona do obszaru jednego kraju. Proszę się upewnić, że raport znajduje się na terytorium kraju %s.', + ) , + 'custom_field' => array( + 'values' => 'Proszę podać poprawną wartość dla pola "%s" .', + 'numeric' => 'Pole "%s" musi być liczbą.', + 'required' => 'Pole "%s" jest wymagane.', + 'not_exist' => 'Pole "%s" nie istnieje..', + 'permission' => 'Nie masz uprawnień do zmiany pola "%s".', + 'email' => 'Pole "%s" powinno zawierać poprawny adres mailowy.', + 'phone' => 'Pole "%s" powinno zawierać poprawny numer telefonu.', + 'date_mmddyyyy' => 'Pole "%s" musi zawierać datę o formacie (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'Pole "%s" musi zawierać datę o formacie (MM/DD/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Proszę wybrać właściwy obiekt do pobrania.', + 'numeric' => 'Wybierz właściwe elementy do pobrania', + ) , + 'data_active' => array( + 'between' => 'Proszę wybrać "Oczekujące akceptacji", "Zaakceptowane" lub wszystkie. ', + 'numeric' => 'Proszę wybrać "Oczekujące akceptacji", "Zaakceptowane" lub wszystkie. ', + 'required' => 'Proszę wybrać "Oczekujące akceptacji", "Zaakceptowane" lub wszystkie. ', + ) , + 'data_verified' => array( + 'between' => 'Proszę wybrać "Oczekujące weryfikacji", "Zweryfikowane" lub wszystkie. ', + 'numeric' => 'Proszę wybrać "Oczekujące weryfikacji", "Zweryfikowane" lub wszystkie. ', + 'required' => 'Proszę wybrać "Oczekujące weryfikacji", "Zweryfikowane" lub wszystkie. ', + ) , + 'data_point' => array( + 'between' => 'Podaj właściwy typ raportu do pobrania', + 'numeric' => 'Podaj właściwy typ raportu do pobrania', + 'required' => 'Podaj właściwy typ raportu do pobrania', + ) , + 'format' => array( + 'required' => 'Należy wybrać format pobieranego pliku. Wybierz CSV albo XML.', + 'valid' => 'Podaj prawidłowy format pliku, w jakim chcesz pobrać raport.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Pole DATA OD zawiera nieprawidłowe dane.', + 'range' => 'Pole DATA OD zawiera nieprawidłowe dane (nie może być większe od dzisiejszej daty).', + ) , + 'incident_active' => array( + 'between' => 'Proszę podaj właściwe dane przy akceptacji alertu.', + 'required' => 'Proszę podaj właściwe dane przy akceptacji alertu.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Pole AM/PM zawiera nieprawidłową wartość', + ) , + 'incident_category' => array( + 'numeric' => 'Pole kategoria zawiera nieprawidłowe dane.', + 'required' => 'Kategoria jest wymagana.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Format daty jest nieprawidłowy.', + 'date_mmddyyyy' => 'Format daty jest nieprawidłowy.', + 'required' => 'Data jest wymagana.', + ) , + 'incident_description' => array( + 'required' => 'Opis jest wymagany.', + ) , + 'incident_hour' => array( + 'between' => 'Format albo zakres godzinowy jest nieprawidłowy.', + 'required' => 'Podaj godzinę!', + ) , + 'incident_information' => array( + 'alpha' => 'Określ stopień Prawdopodobieństwa Informacji', + 'length' => 'Określ stopień Prawdopodobieństwa Informacji', + ) , + 'incident_minute' => array( + 'between' => 'Format albo zakres pola minutowego jest nieprawidłowy.', + 'required' => 'Pole z minutą jest wymagane.', + ) , + 'incident_news' => array( + 'url' => 'Źródło alertu zawiera nieprawidłowy adres URL.', + ) , + 'incident_photo' => array( + 'size' => 'Limit wielkości zdjęcia to 2MB.', + 'type' => 'Wgrywane zdjęcie nie wydaje się być w prawidłowym formacie. Akceptowalne formaty to: .JPG, .PNG and .GIF.', + 'valid' => 'Wgrywane zdjęcie nie wydaje się być w prawidłowym formacie.', + ) , + 'incident_source' => array( + 'alpha' => 'Proszę podaj właście dane źródła alertu.', + 'length' => 'Proszę podaj właście dane źródła alertu.', + ) , + 'incident_title' => array( + 'length' => 'Tutuł raportu musi mieć min. 3 znaki (max. 200).', + 'required' => 'Tutuł raportu jest wymagany.', + 'csrf' => 'Podejrzenie ataku CSRF! Czy rzeczywiście chcesz utworzyć/edytować raport?', + ) , + 'incident_verified' => array( + 'between' => 'Proszę podaj właście dane przy weryfikacji raportu', + 'required' => 'Proszę podaj właście dane przy weryfikacji raportu.', + ) , + 'incident_video' => array( + 'url' => 'Video zwiera nieprawidłowy adres URL.', + ) , + 'latitude' => array( + 'between' => 'Pole szerokości geograficznej zawiera nieprawidłową wartość.', + 'required' => 'Wartość szerokości geograficznej musi zostać podana. Proszę zaznacz ja na mapie.', + ) , + 'locale' => array( + 'alpha_dash' => 'Pole locale zawiera nieprawidłowe dane. ', + 'exists' => 'Ten raport już posiada tłumaczenie w tym języku.', + 'length' => 'Pole locale posiada nieprawidłową długość. ', + 'locale' => 'Orginaly raport oraz tłumaczenie zawierają tą samą wartość locale.', + 'required' => 'Pole locale jest wymagane.', + ) , + 'location_name' => array( + 'length' => 'Nazwa lokalizacji musi zawierać min. 3 znaki (max. 200)', + 'required' => 'Nazwa lokalizacji jest wymagana.', + ) , + 'longitude' => array( + 'between' => 'Pole długości geograficznej zawiera nieprawidłową wartość.', + 'required' => 'Wartość długości geograficznej musi zostać podana. Proszę zaznacz ja na mapie.', + ) , + 'person_email' => array( + 'email' => 'Proszę podaj prawidłowy adres email.', + 'length' => 'Adres email musi posiadać min 4 znaki (max 64).', + ) , + 'person_first' => array( + 'length' => 'Imię musi zawierać min 3 znaki (max 100).', + ) , + 'person_last' => array( + 'length' => 'Nazwisko musi zawierać min 3 znaki (max 100).', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Pole DATA DO zawiera nieprawidłowe dane.', + 'range' => 'Pole DATA DO zawiera nieprawidłowe dane (nie może być większe od dzisiejszej daty).', + 'range_greater' => 'Pole DATA DO zawiera nieprawidłowe dane (nie może być większe od dzisiejszej daty).', + ) , +); diff --git a/application/i18n/pl_PL/reporters.php b/application/i18n/pl_PL/reporters.php new file mode 100755 index 0000000000..3a993602f8 --- /dev/null +++ b/application/i18n/pl_PL/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Szerokość geograficzna nie zawiera poprawnej wartości?', + 'required' => 'Szerokość geograficzna jest wymagana. Kliknij na mapie aby wskazać odpowiednią lokalizację.', + ) , + 'level_id' => array( + 'numeric' => 'Stopień Reportera nie zawiera odpowiedniej wartości', + 'required' => 'Stopień Reportera nie zawiera odpowiedniej wartości', + ) , + 'location_name' => array( + 'length' => 'Nazwa lokalizacji musi się składać z minimu 3 znaków a maksymalnie z 200', + 'required' => 'Nazwa lokalizacji jest wymagana.', + ) , + 'longitude' => array( + 'between' => 'Długość geograficzna nie zawiera poprawnej wartości', + 'required' => 'Długość geograficzna jest wymagana. Kliknij na mapie aby wskazać odpowiednią lokalizację.', + ) , + 'reporter_id' => array( + 'numeric' => 'Nieprawidłowy reporter', + 'required' => 'Nieprawidłowy reporter', + ) , +); diff --git a/application/i18n/pl_PL/reports.php b/application/i18n/pl_PL/reports.php new file mode 100644 index 0000000000..06979e423b --- /dev/null +++ b/application/i18n/pl_PL/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Proszę sprawdzić, czy zaznaczono element', + 'numeric' => 'Proszę sprawdzić, czy zaznaczono element', + 'categories_required' => 'Raporty muszą zostać przypisane do jednej z kategorii, by zostały zaakceptowane.', + ) , + 'action' => array( + 'permission' => 'Nie masz uprawnień do wykonania tej czynności.', + ) , + 'uploadfile' => array( + 'required' => 'Wybierz plik, który chcesz przesłać ', + 'type' => 'Przesyłany plik musi być w formacie .csv lub .xml ', + 'valid' => 'W polu przesyłania plików nie znajduje się żaden poprawny plik', + ) , +); diff --git a/application/i18n/pl_PL/roles.php b/application/i18n/pl_PL/roles.php new file mode 100755 index 0000000000..b7cf2c6669 --- /dev/null +++ b/application/i18n/pl_PL/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Opis musi mieć od 3 do 100 znaków', + 'required' => 'Proszę podać opis', + ) , + 'name' => array( + 'alpha_numeric' => 'Nazwa może zawierać tylko litery lub liczby', + 'length' => 'Pole nazwy musi mieć od 2 do 30 znaków', + 'nomodify' => 'Rola SuperAdmina nie może ulec zmianie', + 'required' => 'Proszę podać nazwę', + ) , + 'access_level' => array( + 'numeric' => 'Poziom dostępu musi być liczbą z zakresu 0-100.', + 'required' => 'Poziom dostępu musi być liczbą z zakresu 0-100.', + ) , + 'permissions' => array( + 'numeric' => 'Uprawnienia muszą być liczbą z zakresu 0-100.', + ) , +); diff --git a/application/i18n/pl_PL/settings.php b/application/i18n/pl_PL/settings.php new file mode 100755 index 0000000000..5413987667 --- /dev/null +++ b/application/i18n/pl_PL/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'Pole "zezwalaj na komentarze" zawiera nieprawidłową wartość.', + 'required' => 'Pole "zezwalaj na komentarze" jest wymagane.', + ) , + 'allow_feed' => array( + 'between' => 'Pole "uwzględnij kanał" zawiera nieprawidłową wartość.', + 'required' => 'Pole "uwzględnij kanał" zawiera nieprawidłową wartość.', + ) , + 'allow_feed_category' => array( + 'between' => 'Pola kategorii RSS raczej nie zawierają poprawnej wartości.', + 'required' => 'Pole kategorii treści RSS jest wymagane.', + ) , + 'allow_alerts' => array( + 'between' => 'Pole "zezwalaj na alerty" zawiera nieprawidłową wartość.', + 'required' => 'Pole "zezwalaj na alerty" jest wymagane.', + ) , + 'allow_reports' => array( + 'between' => 'Pole "zezwalaj na raporty" zawiera nieprawidłową wartość.', + 'required' => 'Pole "zezwalaj na raporty" jest wymagane.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Pole "udostępnianie statystyk" zawiera nieprawidłową wartość.', + 'required' => 'Pole "udostępnianie statystyk" jest wymagane.', + ) , + 'api' => array( + 'default_record_limit' => 'Domyślna liczba rekordów do dostarczenia na zapytanie do API', + 'maximum_record_limit' => 'Maksymalna liczba rekordów do dostarczenia na zapytanie do API', + 'maximum_requests_per_ip_address' => 'Maksymalna liczba zapytań do API na jeden adres IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Pole "Aksimet" zawiera nieprawidłową wartość.', + 'length' => 'Pole Akismet nie zawiera poprawnej wartości', + ) , + 'banner_image' => array( + 'type' => 'Baner strony nie zawiera obrazka w obsługiwanym formacie. Użyj pliku .JPG, .GIF lub .PNG', + 'size' => 'Upewnij się proszę, że obrazek na baner jest mniejszy niż 250 KB.', + 'valid' => 'Pole z banerem strony zawiera nieprawidłowy format obrazka.', + ) , + 'cache_pages' => array( + 'between' => 'Pole "pamięć podręczna" jest wymagane.', + 'required' => 'Pole "pamięć podręczna" zawiera nieprawidłową wartość.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Pole "czas przechowywania pamięci podręcznej" zawiera nieprawidłową wartość.', + 'required' => 'Pole "czas przechowywania pamięci podręcznej" jest wymagane.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Serwer nie jest przystosowany do przyjaznych URL. W przypadku Apache, musisz włączyć rozszerzenie mod_rewrite.', + 'clean_url_enabled' => 'Włącza używanie "przyjaznych URL" (bez index.php)', + 'enable_clean_url' => 'Aktywuj przyjazne adresy URL', + 'title' => 'Przyjazne URLe', + ) , + 'clickatell_api' => array( + 'length' => 'Pole "Clickatell API" może zawierać maksymalnie 20 znaków.', + 'required' => 'Pole "Clickatell API" jest wymagane.', + ) , + 'clickatell_password' => array( + 'length' => 'Hasło Clickatell musi mieć co najmniej 5 i nie więcej niż 50 znaków.', + 'required' => 'Hasło Clickatell jest wymagane.', + ) , + 'clickatell_username' => array( + 'length' => 'Nazwa użytkownika Clickatell może zawierać maksymalnie 50 znaków.', + 'required' => 'Nazwa użytkownika Clickatell jest wymagana.', + ) , + 'configure_map' => 'Konfiguracja mapy', + 'default_location' => 'Domyślna lokalizacja', + 'default_map_all' => array( + 'alpha_numeric' => 'Pole "kolor" zawiera nieprawidłową wartość.', + 'length' => 'Pole "kolor" może zawierać maksymalnie 6 znaków.', + 'required' => 'Pole "kolor" jest wymagane.', + ) , + 'default_map_view' => 'Domyślny widok mapy', + 'default_zoom_level' => 'Domyślny poziom zoomu', + 'download_city_list' => 'Pobierz miasta z Geonames', + 'email_host' => array( + 'length' => 'Pole "port serwera poczty" jest wymagane.', + 'numeric' => 'Pole "port serwera poczty" może zawierać wyłącznie liczby.', + ) , + 'email_password' => array( + 'length' => 'Pole "hasło serwera poczty" musi mieć co najmniej 5 i nie więcej niż 50 znaków.', + 'required' => 'Pole "hasło serwera poczty" jest wymagane.', + ) , + 'email_port' => array( + 'length' => 'Pole "port serwera poczty" jest za długie.', + 'numeric' => 'Pole "port serwera poczty" może zawierać wyłącznie liczby.', + ) , + 'email_servertype' => array( + 'length' => 'Pole "port serwera poczty" jest za długie.', + 'required' => 'Pole "typ serwera poczty" jest wymagane.', + ) , + 'email_username' => array( + 'length' => 'Pole "nazwa użytkownika poczty" może zawierać maksymalnie 50 znaków.', + 'required' => 'Pole "nazwa użytkownika poczty" jest wymagane.', + ) , + 'facebook' => array( + 'title' => 'Opcje Facebook', + 'description' => 'Aby uzyskać informacje, utwórz nową aplikację Facebook na', + 'description_2' => 'Te ustawienia umożliwiają logowanie się użytkowników za pomocą kont Facebooka. Ustawienia nie są tożsame z utworzeniem aplikacji da strony.l', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Pole "Google Analytics" musi zawierać prawidłowy Web Property ID w formacie UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Włącz HTTPS', + 'https_disabled' => 'Ta opcja umożliwia dostęp do Ushahidi z użyciem zwykłego protokołu HTTP.', + 'https_enabled' => 'Ta opcja umożliwia dostęp do Ushahidi z użyciem bezpiecznego protokołu HTTPS.', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Pole "liczba elementów na stronie (Front-end)" zawiera nieprawidłową wartość.', + 'required' => 'Pole "liczba elementów na stronie (Front-end)" jest wymagane.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Pole "liczba elementów na stronie (Panel administracyjny)" zawiera nieprawidłową wartość.', + 'required' => 'Pole "liczba elementów na stronie (Panel administracyjny)" jest wymagane.', + ) , + 'map' => array( + 'default_location' => 'Wybór dostawcy map jest prosty. Wybierz dostawcę, zdobądź API key jeśli jest wymagany i wpisz go tutaj.', + 'zoom' => 'Poziom zoom', + ) , + 'map_provider' => array( + 'choose' => 'Wybierz dostawcę map', + 'enter_api' => 'Podaj nowy klucz API', + 'get_api' => 'Zdobądź klucz API', + 'info' => 'Wybór dostawcy map jest prosty. Wybierz dostawcę, zdobądź API key jeśli jest wymagany i wpisz go tutaj.', + 'name' => 'Dostawca map', + ) , + 'map_timeline' => 'Oś czasu mapy', + 'map_settings' => 'Ustawienia mapy', + 'multiple_countries' => 'Does this Ushahidi Instance Span Multiple Countries', + 'select_default_location' => 'Wybierz domyślny kraj', + 'set_location' => 'Kliknij i przeciągnij, by ustawić właściwą lokalizację', + 'site' => array( + 'allow_clustering' => 'Grupuj raporty na mapie', + 'allow_comments' => 'Zezwalaj użytkownikom na komentowanie raportów', + 'allow_feed' => 'Umieść kanał RSS na stronie', + 'allow_feed_category' => 'Utwórz nową kategorię z wpisów RSS.', + 'allow_alerts' => 'Zezwalaj użytkownikom na subskrypcję alertów', + 'allow_reports' => 'Zezwalaj użytkownikom na zgłaszanie raportów', + 'api_akismet' => 'Klucz Akismet', + 'banner' => 'Banner strony', + 'blocks_per_row' => 'Bloków na wiersz', + 'cache_pages' => 'Przechowuj strony w pamięci podręcznej', + 'cache_pages_lifetime' => 'Czas przechowywania w pamięci podręcznej', + 'checkins' => 'Włącz check-in', + 'copyright_statement' => 'Nota copyrightowa strony', + 'default_category_colors' => 'Domyślny kolor dla wszystkich kategorii', + 'default_category_icons' => 'Domyślna ikona dla wszystkich kategorii', + 'delete_banner_image' => 'Skasuj banner', + 'delete_default_map_all_icon' => 'Skasuj domyślną ikonę', + 'display_contact_page' => 'Wyświetl stronę "Kontakt"', + 'display_howtohelp_page' => 'Wyświetl stronę "Jak pomóc?"', + 'email_alerts' => 'Adres e-mail do alertów', + 'email_notice' => 'Aby otrzymywać raporty na e-mail, skonfiguruj swoją skrzynkę.', + 'email_site' => 'Adres e-mail strony', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Format: UA-XXXXX-XX', + 'items_per_page' => 'Liczba elementów na stronie (Front-end)', + 'items_per_page_admin' => 'Liczba elementów na stronie (panel administracyjny)', + 'kismet_notice' => 'Zwalczaj spam za pomocą Akismet od Automattic.
Możesz otrzymać API Key przez rejestrację na wykorzystując konto WordPress.com', + 'laconica_configuration' => 'Dane dostępu do Laconica', + 'laconica_site' => 'Strona Laconica', + 'language' => 'Język strony', + 'manually_approve_users' => 'Manualna akceptacja użytkowników', + 'message' => 'Wiadomość strony', + 'name' => 'Nazwa strony', + 'private_deployment' => 'Prywatna instalacja?', + 'require_email_confirmation' => 'Wymagać potwierdzenia adresu e-mail?', + 'submit_report_message' => 'Wiadomość przy wysyłaniu raportów', + 'share_site_stats' => 'Share Site Statistics in API', + 'tagline' => 'Podpis strony', + 'timezone' => 'Strefa czasowa', + 'title' => 'Ustawienia Strony', + 'twitter_configuration' => 'Wyszukiwane frazy na Twitterze', + 'twitter_hashtags' => 'Hashtagi - odseparuj przecinkami', + 'feed_geolocation_user' => 'Lokalizacja wpisów RSS - Nazwa użytkownika z Geonames', + ) , + 'site_email' => array( + 'email' => 'Adres e-mail strony jest nieprawidłowy.', + 'length' => 'Adres e-mail strony musi zawierać co najmniej 4 i nie więcej niż 100 znaków.', + ) , + 'site_name' => array( + 'length' => 'Nazwa strony musi mieć co najmniej 3 i nie więcej niż 50 znaków.', + 'required' => 'Nazwa strony jest wymagana', + ) , + 'site_tagline' => array( + 'length' => 'Podpis strony musi zawierać co najmniej 3 i nie więcej niż 100 znaków.', + 'required' => 'Podpis strony jest wymagany.', + ) , + 'sms' => array( + 'clickatell_api' => 'Numer API Clickatell', + 'clickatell_check_balance' => 'Sprawdź balans na koncie Clickatell', + 'clickatell_load_balance' => 'Załaduj balans kredytowy', + 'clickatell_password' => 'Hasło Clickatell', + 'clickatell_text_1' => 'Zarejestruj się w Clickatell klikając tutaj', + 'clickatell_text_2' => 'Wpisz swoje dane dostępowe do Clickatell poniżej', + 'clickatell_username' => 'Nazwa użytkownika Clickatell', + 'flsms_description' => 'FrontlineSMS to oprogramowanie na licencji Open Source umożliwiające wysyłanie i odbieranie SMSów od dużej grupy ludzi za pomocą telefonów komórkowych. Pobierz najnowszą wersję FrontlineSMS z frontlinesms.com.', + 'flsms_download' => 'Pobierz i zainstaluj FrontlineSMS', + 'flsms_instructions' => 'Dokładne instrukcje jak odbierać SMSy znajdują siętutaj. URL i Klucz API są konieczne do uruchomienia synchronizacji FrontlineSMS.', + 'flsms_link' => 'Skopiuj i wklej to do pola adresu FrontlineSMS.', + 'flsms_key' => 'Skopiuj to i wklej do pola klucz API Ushahidi w FrontlineSMS', + 'flsms_synchronize' => 'Trwa łączenie z FrontlineSMS', + 'flsms_text_1' => 'Numery(y) telefonów FrontlineSMS', + 'flsms_text_2' => 'Wpis numer bez znaków + i - poniżej', + 'option_1' => 'Opcja 1: Użyj FrontlineSMS', + 'option_2' => 'Opcja 2: Użyj globalnej bramki SMS', + 'title' => 'Ustawienia SMS', + ) , + 'sms_no1' => array( + 'length' => 'Pole "telefon 1" zawiera nieprawidłową wartość.', + 'numeric' => 'Pole "telefon 1" może zawierać wyłącznie liczby.', + ) , + 'sms_no2' => array( + 'length' => 'Pole Telefon #2 jest za długie', + 'numeric' => 'Pole Telefon #2 powinno zawierać tylko cyfry', + ) , + 'sms_no3' => array( + 'length' => 'Pole Telefon #3 jest za długie', + 'numeric' => 'Pole "telefon 3" może zawierać wyłącznie liczby.', + ) , + 'twitter' => array( + 'title' => 'Ustawienia konfiguracji konta Twitter.', + 'description' => 'Aby pobrać tutaj dane ustaw jako nową aplikację Twittera na', + 'api_key' => 'Klucz klienta', + 'api_key_secret' => 'Tajny klucz klienta', + 'token' => 'Klucz dostępu', + 'token_secret' => 'Tajny klucz dostępu', + ) , + 'test_settings' => 'Testuj ustawienia', +); diff --git a/application/i18n/pl_PL/sharing.php b/application/i18n/pl_PL/sharing.php new file mode 100755 index 0000000000..950e6ae420 --- /dev/null +++ b/application/i18n/pl_PL/sharing.php @@ -0,0 +1,25 @@ + 'Data wejścia', + 'date_added' => 'Data dodania', + 'last_access' => 'Ostatnie wejście', + 'sharing_color' => array( + 'length' => 'Pole koloru musi mieć co najmniej 6 znaków.', + 'required' => 'Pole koloru jest wymagane.', + ) , + 'sharing_name' => array( + 'length' => 'Nazwa ', + 'required' => 'Nazwa Udostępniania jest wymagana.', + ) , + 'sharing_url' => array( + 'exists' => 'Adres URL strony już istnieje', + 'length' => 'Adres URL jest niepoprawny', + 'required' => 'Adres URL strony jest wymagany.', + 'url' => 'Adres strony jest niepoprawny', + ) , +); diff --git a/application/i18n/pl_PL/stats.php b/application/i18n/pl_PL/stats.php new file mode 100755 index 0000000000..81fedbf9e9 --- /dev/null +++ b/application/i18n/pl_PL/stats.php @@ -0,0 +1,42 @@ + 'Zaakceptowane', + 'categories' => 'Kategorie', + 'category_impact' => 'Siła Kategorii', + 'category_impact_description' => 'To jest wykres liniowy dla raportów według kategorii w czasie. Przewiń w prawo by obejrzeć porównanie różnych kategorii. Najedź myszką, by uzyskać więcej informacji.', + 'choose_date_range' => 'Wybierz zasięg czasowy', + 'countries' => 'Państwa', + 'country' => 'Kraj', + 'country_breakdown' => 'Rozłóż na kraje', + 'description' => 'To jest sekcja statystyczna i niedługo będzie zawierała ogólny opis. Tymczasem możesz przejrzeć podkategorie korzystając z powyższych linków.', + 'error' => 'Błąd', + 'glossary' => 'Słowniczek', + 'hit_summary' => 'Podsumowanie', + 'legend' => 'Legenda', + 'pageviews' => 'Odsłony', + 'pageviews_description' => 'Całkowita liczba podstron, jakie odwiedzili goście tej strony', + 'reports' => 'Raporty', + 'reports_categories' => 'Kategorie Raportów', + 'reports_statistics' => 'Statystyki Raportów', + 'reports_status' => 'Status Raportów', + 'report_punchcard' => 'Karta raportów', + 'report_stats' => 'Statystyki Raportów', + 'stats_not_setup' => 'Statystyki nie ustawione', + 'time_range_1' => '1 miesiąc', + 'time_range_2' => '3 miesiące', + 'time_range_3' => '6 miesięcy', + 'time_range_all' => 'Wszystkie', + 'unapproved' => 'Niezaakceptowane', + 'unique_visitors' => 'UU', + 'unique_visitors_description' => 'The number of individuals coming to your instance; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc', + 'unverified' => 'Niepotwierdzone', + 'verified' => 'Potwierdzone', + 'visitor_summary' => 'Podsumowanie wizyt', + 'visits' => 'Wizyty', + 'visits_description' => 'Jako wizyta traktowane są odwiedziny unikalnego użytkownika, które nastąpiły w odstępie nie mniejszym niż 30 minut.', +); diff --git a/application/i18n/pl_PL/tooltips.php b/application/i18n/pl_PL/tooltips.php new file mode 100755 index 0000000000..46a762f488 --- /dev/null +++ b/application/i18n/pl_PL/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'Dodaje raport do dodatkowych kategorii. Jeśli wybierzesz kategorię nr 1 a raport jest przypisany do kategorii nr 2 to zostanie on w tym momencie przypisany jednocześnie do kategorii nr 1 i kategorii nr 2.', + 'approve' => 'Zatwierdza (bądź nie) raport. Jeśli zostanie zatwierdzony, będzie widoczny publicznie.', + 'assign_badge' => 'Możesz przypisać odznakę, którą otrzyma użytkownik. Wybierz odpowiednią odznakę.', + 'between_times' => 'To jest zakres czasu', + 'category' => 'Jeśli chcesz aktywować powiadomienia tylko wtedy, gdy są używane pewne kategorie, możesz to zrobić w tym miejscu. Spowoduje to, że powiadamianie będzie aktywowane jeśli jedna z kategorii będzie w użyciu. Oznacza to, że jeśli wybierzesz kategorię nr 1 i kategorię nr 2 oraz dodasz raport do kategorii nr 2 i kategorii nr 3 to wpisze się on w wybrane filtrowanie, a powiadomienie zostanie uruchomione.', + 'days_of_the_week' => 'Jeśli wydarzenia przypisane są do konkretnych dni tygodnia, ustaw je tutaj. Pamiętaj, że ma to związek z ustawioną strefą czasową.', + 'email_body' => 'Treść e-mail.', + 'email_subject' => 'Temat e-mail.', + 'feed_id' => 'Można wybrać wyzwalanie akcji od jednego kanału, wybranych, lub wszystkich.', + 'from' => 'Nazwa użytkownika Twitter (lub lista nazw rozdzielona przecinkami). ', + 'keywords' => 'Możesz pozostawić puste, jeśli nie chcesz sprawdzać słów kluczowych. W przeciwnym wypadku rozdziel słowa kluczowe przecinkami.', + 'location' => 'Do wyboru masz "nigdzie" lub konkretną lokalizację. Jeśli ją wybierzesz, zostaniesz poproszony aby narysować box dookoła tego terenu. Na przykład jeśli chcesz wyzwolić akcję, jeśli ktoś doda raport w Brazylii - wybierz "konkretną lokalizację" i narysuj box dookoła Brazylii. Możesz też rysować je mniejsze lub większe, wybór należy do Ciebie. Możesz też rysować wiele boxów jednocześnie.', + 'on_specific_count' => 'Ten kwalifikator wyzwoli powiadamianie dla N kont, dla całej bazy użytkownika lub dla każdego z indywidualnych użytkowników. Możesz pozostawić to pole pustym, aby zignorować ten komunikat.', + 'report_title' => 'To jest domyślny tytuł raportu.', + 'response' => 'Jeśli wszystkie powyższe kwalifikatory są spełnione, powiadamiacz zainicjuje odpowiedź. To zależy od akceptacji raportu przez użytkownika. Wybierz "odpowiedź" by aktywować dodatkowe opcje odpowiedzi wysyłanych użytkownikom.', + 'send_to' => 'Jeśli zaznaczysz "Powiadamianie użytkownika" wiadomość e-mail zostanie wysłana do tego, kto wykonał tę akcję. Jeśli wybierzesz przycisk radio będziesz mieć możliwość wpisania niestandardowych adresów e-mail. Jest to użyteczne jeśli pewne części mapy mają przypisane raporty, miejsca lub jakieś inne elementy.', + 'specific_days' => 'Możesz wybrać wiele dni. Zależne od ustawionej strefy czasowej.', + 'trigger' => 'Wyzwalanie jest elementem konfiguracji akcji powiadamiających. Możesz w tym miejscu określić co się stanie jeśli ktoś doda raport, wykona jakąś akcję itp. Możesz też przefiltrować odpowiedzi do konkretnych akcji po ich wybraniu.', + 'user' => 'Możesz ustawić wywoływanie akcji przez wszystkich lub tylko wybranych użytkowników.', + 'verify' => 'Określa, czy raport jest zweryfikowany czy nie.', + ) , + 'change_picture' => 'Profile na tej stronie wykorzystują Gravatar. Aby zmienić, kliknij na obraz.', + 'default_value' => 'Rozdziel kolejne wartości przecinkami, np. Wartość 1, Wartość 2 itd.', + 'radio_choices' => 'Rozdziel kolejne wartości przecinkami, np. Wartość 1, Wartość 2 itd. Jeśli chcesz ustawić wartość domyślą, zakończ listę znakami ::', + 'dropdown_choices' => 'Rozdziel kolejne elementy przecinkami, np. Element 1, Element 2 itd.', + 'private_to' => 'Zacznij pisać, aby utworzyć listę członków.', + 'private_subject' => 'Temat Prywatnej Wiadomości', + 'private_message' => 'Prywata Wiadomość', + 'profile_color' => 'Możesz wybrać kolor, który będzie używany w Twoim profilu publicznym i dla check-ins na mapie.', + 'profile_email' => 'Twój adres email', + 'profile_name' => 'Twoja pełna nazwa (imie i nazwisko)', + 'profile_new_password' => 'Jeśli jest wypełnione, posłuży do zmiany hasła. Zostaw puste jeśli chcesz pozostawić dotychczasowe hasło.', + 'profile_new_users_password' => 'Wymagane przy tworzeniu nowego użytkownika i będzie jego hasłem. Pamiętaj o poinformowaniu nowego użytkownika o konieczności zmiany hasła po pierwszym logowaniu.', + 'profile_notify' => 'Wybież TAK, jeżeli pragniesz uzyskiwać notyfikacje.', + 'profile_password' => 'Twoje hasło (pozostaw to pole puste, jeżeli pragniesz aby pozostało niezmienione)', + 'profile_public' => 'Jeśli zaznaczysz tę opcję, Twój profil będzie widoczny dla każego w sieci.', + 'profile_public_url' => 'Adres, pod którym można znaleźć profil publiczny.', + 'profile_username' => 'Twoja nazwa użytkownika nie może być zmieniona', + 'settings_access_level' => 'Poziomy dostępu są używane dla kontroli dostępu do dodatkowych danych. Superadministrator ma najwyższy poziom równy 100, administrator - 90, członkowie - 10. Dane dostępne publicznie to poziom 0.', + 'settings_alert_email' => 'Adres e-mail, na który będą wysyłane raporty.', + 'settings_allow_alerts' => 'Zezwól użytkownikom na subskrypcje', + 'settings_allow_clustering' => 'Agreguj podobne raporty do jednej kropki na mapie', + 'settings_allow_comments' => 'Zezwól na umieszczanie komentarzy na stronie głównej.', + 'settings_allow_feed' => 'Zezwól na wyświetlanie kanałów RSS na stronie głównej.', + 'settings_allow_feed_category' => 'Umożliwia tworzenie nowych kategorii z RSS.', + 'settings_allow_reports' => 'Zezwól użytkownikom na wysyłanie informacji przez formularz.', + 'settings_api_default_record_limit' => 'Domyślna liczba wierszy dostarczana na zapytanie do API', + 'settings_api_max_record_limit' => 'Maksymalna liczba wierszy dostarczana na zapytanie do API', + 'settings_api_max_requests_per_ip' => 'Maksymalna liczba zapytań do API na jeden adres IP', + 'settings_banner' => 'Banner pokazuje się w górnej części strony głównej, jeśli Twój szablon pozwala na jego używanie. Rozmiar bannera zależy od szablonu. Pamiętaj, że banner zastępuje tytuł i podpis strony.', + 'settings_blocks_per_row' => 'Liczba kolumn na każdy wiersz.', + 'settings_cache_pages' => 'Włącz lub wyłącz pamięć podręczną. Zalecane do stron o dużym natężeniu ruchu - skraca czas ładowania.', + 'settings_cache_pages_lifetime' => 'Ustaw czas przechowywania pamięci podręcznej.', + 'settings_checkins' => 'Włącza "check-in" na tej stronie. To jest uproszczony typ raportu, który nie jest moderowany przed upublicznieniem i wymaga odpowiedniej konfiguracji strony. Jeśli włączasz tą opcję, upewnij się, że strefa czasowa jest ustawiona na UTC i używany przez Ciebie szablon obsługuje check-in. Po włączeniu tej opcji dodatkowe szablony, wykorzystujące wyłącznie check-in, zostaną pokazane w panelu administracyjnym.', + 'settings_configure_map' => 'Ustaw mapę, by pokazywała właściwy obszar.', + 'settings_default_category_colors' => 'Przypisz jeden kolor wszystkim kategoriom.', + 'settings_default_category_icons' => 'Przypisz jedną ikonę wszystkim kategoriom.', + 'settings_default_location' => 'Kraj, którego dotyczy strona.', + 'settings_display_contact' => 'Włącza lub wyłącza zakładkę "Kontakt"', + 'settings_display_howtohelp' => 'Włącza i wyłącza zakładkę "Jak pomóc?" na stronie głównej.', + 'settings_display_items_per_page' => 'Liczba raportów wyświetlanych na stronie głównej', + 'settings_display_items_per_page_admin' => 'Liczba raportów wyświetlanych na stronie w panelu administracyjnym', + 'settings_flsms_download' => 'Hub dla wiadomości', + 'settings_flsms_synchronize' => 'Synchronizuje wiadomości z Ushahidi', + 'settings_flsms_text_1' => 'Numery telefonów do otrzymywania SMS', + 'settings_google_analytics' => 'Śledzi użytkowników strony i zbiera dokładne statystyki odwiedzin.', + 'settings_locale' => 'Ustawia język strony.', + 'settings_manually_approve_users' => 'Gdy opcja zostanie ustawiona na "Tak", musisz akceptować każde nowo utworzone konto użytkownika.', + 'settings_map_provider' => 'Wskazuje, która mapa ma być używana na stronie.', + 'settings_map_timeline' => 'Pokazuje oś czasu na podstawie daty i czasu nadesłania raportu', + 'settings_private_deployment' => 'Jeśli opcja zostanie ustawiona na "Tak", wyłącznie wyznaczeni użytkownicy będą mogli uzyskać dostęp.', + 'settings_require_email_confirmation' => 'Użytkownicy otrzymają link aktywacyjny zanim będą mogli używać Ushahidi.', + 'settings_server_host' => 'Miejsce przechowywania e-mail', + 'settings_server_password' => 'Hasło skrzynki e-mail dla raportów.', + 'settings_server_port' => 'Wymagane dla akceptacji połączeń przychodzących z adresu e-mail.', + 'settings_server_ssl_support' => 'Wymagane dla bezpiecznego połączenia.', + 'settings_server_type' => 'Wymagane do otrzymywania wiadomości e-mail z serwera.', + 'settings_server_username' => 'To jest adres e-mail, który otrzymuje raporty.', + 'settings_share_site_stats' => 'Statystyki są zbierane przez serwer kontrolowany prze Ushahidi. Jeśli włączysz tę opcję, zdobędziesz dostęp do statystyk bezpośrednio w panelu administracyjnym. ', + 'settings_site_copyright_statement' => 'Czy inni mają mieć prawo ponownego wykorzystania tekstu, obrazów i wideo z tej strony? Aby dowiedzieć się więcej, odwiedź https://creativecommons.org/choose/', + 'settings_site_email' => 'To jest adres e-mail, na który będą przychodziły raporty i wiadomości z formularza kontaktowego.', + 'settings_site_message' => 'To jest tekst, który pojawi się powyżej mapy na stronie głównej.', + 'settings_site_name' => 'To jest tytuł, który pokaże się na górze strony głównej.', + 'settings_site_submit_report_message' => 'To jest wiadomość, która pokaże się przy zgłaszaniu raportu.', + 'settings_site_tagline' => 'Wyjaśnij w kilku słowach, o czym jest ta strona.', + 'settings_site_timezone' => 'Strefa czasowa strony. Ma wpływ na wszystkie akcje dokonywane na stronie, które wykorzystują datę i czas.', + 'settings_twitter_configuration' => 'Hashtag Twitter, który będzie używany', +); diff --git a/application/i18n/pl_PL/ui_admin.php b/application/i18n/pl_PL/ui_admin.php new file mode 100755 index 0000000000..6483e1c33f --- /dev/null +++ b/application/i18n/pl_PL/ui_admin.php @@ -0,0 +1,329 @@ + 'Dostęp zabroniony.', + 'access_denied_others' => 'Dostęp zabroniony.', + 'access_level' => 'Poziom dostępu', + 'actions' => 'Akcje', + 'add_to_category' => 'Dodaj do kategorii', + 'added' => 'dodany', + 'added_edited' => 'dodanie/edycja', + 'addons' => 'Dodatki', + 'admin_role' => 'Administrator', + 'alerts' => 'Alerty', + 'alerts_received' => 'Otrzymane alerty', + 'all' => 'Wszystkie', + 'am' => 'AM', + 'anonymous' => 'Anonim', + 'anyone_role' => 'Ktokolwiek', + 'anywhere' => 'Gdziekolwiek', + 'api_banned' => 'Zablokowane API', + 'api_logs' => 'Logi API', + 'api_settings' => 'Ustawienia API', + 'api_unban' => 'Odbanuj', + 'api_unban_all' => 'Odbanuj wszystko', + 'approved' => 'zaakceptowane', + 'approve_auto' => 'Auto Akceptacja', + 'approve_manual' => 'Akceptuj manualnie', + 'archived' => 'zarchiwizowane', + 'are_you_sure_you_want_to' => 'Czy na pewno chcesz', + 'are_you_sure_you_want_to_delete_this_item' => 'Czy na pewno chcesz skasować ten element?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Czy na pewno chcesz skasować to zdjęcie?', + 'are_you_sure_you_want_to_switch_forms' => 'Czy na pewno chcesz przełączyć formularze?', + 'assign' => 'Przypisz', + 'assignments' => 'Przypisania', + 'assign_badge' => 'Przyznaj odznakę', + 'author' => 'Autor', + 'author_email' => 'Email autora', + 'back' => 'Powrót', + 'banip_action' => 'Zbanuj adres IP', + 'between_times' => 'Pomiędzy momentami czasowymi', + 'blocks' => 'Bloki', + 'body' => 'Treść', + 'cancel' => 'Anuluj', + 'categories' => 'Kategorie', + 'chart_display_error' => 'Wykres błędów', + 'check_message_valid' => 'Proszę zweryfikuj poprawność wiadomości', + 'check_number' => 'Proszę zweryfikuje poprawność numeru', + 'check_sms_settings' => 'Proszę zweryfikuje ustawienia SMS!', + 'checkin_details' => 'Szczegóły check-in', + 'checkins' => 'Check-in', + 'cities_loaded' => 'Miasta załadowane', + 'code' => 'kod', + 'code_out_of_sync' => 'Wersja źródeł nieakutlana', + 'color' => 'Kolor', + 'comments' => 'Komentarze', + 'confirmation_code' => 'Twój kod potwierdzenia notyfikacji alertów to: ', + 'confirm_msg' => 'Użytkownik został', + 'count' => 'Liczba', + 'country_not_found' => 'Kraj nie został znaleziony', + 'created_edited' => 'utwórz/edytuj', + 'create_report' => 'Utwórz alert', + 'critical_upgrade' => 'Krytyczna aktualizacja', + 'csv' => 'CSV', + 'currently_active' => 'Aktualnie aktywne', + 'currently_inactive' => 'Aktualnie nieaktywne', + 'custom_forms_insufficient_permissions' => 'Nie posiadasz uprawnień, aby edytować dodatkowe pola.', + 'daily' => 'Dzienne', + 'dashboard' => 'Strona główna', + 'database' => 'baza danych', + 'date_time' => 'Data i czas', + 'date_added' => 'Data dodania', + 'date_modified' => 'Data modyfikacji', + 'days_of_the_week' => 'Dni tygodnia', + 'db_out_of_sync' => 'Wersja bazy nieaktualna', + 'deleted' => 'skasowane', + 'delete_action' => 'Skasuj', + 'delete_all' => 'Usuń wszystkie raporty', + 'delete_badge' => 'Skasuj odznakę', + 'demo' => 'Demo', + 'description' => 'Opis', + 'disabled' => 'Wyłączony', + 'divider_start_field' => 'Początek', + 'divider_end_field' => 'Koniec', + 'divider_class' => 'div class', + 'download_reports' => 'Pobierz alerty', + 'dropdown_choices' => 'Elementy listy rozwijanej', + 'edited' => 'Edytowany', + 'edited_by' => 'Edytowane przez', + 'edit_action' => 'Edytuj', + 'edit_log' => 'Edytuj log', + 'email' => 'Email', + 'entire_collective' => 'Wszyscy', + 'error_geocoding' => 'Błąd w geolokalizacji. Kod HTTP', + 'error_imap' => 'Biblioteka IMAP PHP nie jest zaktualizowana', + 'error_twitter' => 'Nie masz uprawnień.', + 'error_msg' => 'Błąd', + 'error_post_incident' => 'Nastąpił błąd przy dodawaniu alertu', + 'every_six_hours' => 'Co sześć godzin', + 'every_twelve_hours' => 'Co dwanaście godzin', + 'experimental' => 'Eksperymentalny', + 'faqs' => 'FAQ', + 'feed' => 'kanał', + 'feedback' => 'Komentarze', + 'feeds' => 'feedy', + 'field_choices' => 'Lista wyboru', + 'field_default' => 'Domyślna wartość', + 'field_datatype' => 'Typ danych', + 'field_datatype_javascript' => 'JavaScript', + 'field_datatype_markup' => 'Kod HTML', + 'field_datatype_numeric' => 'Liczba', + 'field_datatype_text' => 'Tekst', + 'field_height' => 'Wielkość (w wierszach)', + 'field_hidden' => 'Ukryte pole', + 'field_maxlength' => 'Maksymalna liczba znaków', + 'field_name' => 'Nazwa pola', + 'field_toggle' => 'Przełącz', + 'field_toggle_no' => 'Nie', + 'field_toggle_yes_close' => 'Tak, domyślnie zamknięte', + 'field_toggle_yes_open' => 'Tak, domyślnie otwarte', + 'file_not_found_upload' => 'Nie mogłem odnaleźć wgranego pliku', + 'file_open_error' => 'Nie mogłem otworzyć pliku', + 'form_not_exists' => 'Ten formularz nie istnieje!', + 'forum' => 'Forum', + 'free_text_field' => 'Pole tekstowe', + 'date_field' => 'Pole daty', + 'radio_field' => 'Pole przełącznika', + 'checkbox_field' => 'Pole do zaznaczania', + 'dropdown_field' => 'Pole listy rozwijanej', + 'from' => 'Od', + 'from_date' => 'Od', + 'geonames_timeout' => 'Błąd przekroczenia czasu (geonames)', + 'get_help' => 'Pomoc', + 'get_more_themes' => 'Więcej szablonów', + 'get_more_plugins' => 'Więcej wtyczek', + 'header_actions' => 'Akcje', + 'header_add_edit' => 'Dodaj/Edytuj', + 'header_email' => 'Email', + 'header_manage_users' => 'Zarządzaj użytkownikami', + 'header_role' => 'Rola', + 'header_user' => 'Użytkownik', + 'help' => 'pomoc', + 'hourly' => 'Godzinowo', + 'incident_feed' => 'Subskrypcja alertów', + 'installer_info' => 'Katalog instalacyjny nadal istnieje! Skasuj go - stanowi potencjalne zagrożenie bezpieczeństwa serwera', + 'instance' => 'Instancja', + 'instances' => 'Instancje', + 'instance_details' => 'Dane instancji', + 'invalid_parameter' => 'Nieprawidłowy parametr', + 'ip_address' => 'Adres IP', + 'is_date' => 'Czy to pole daty?', + 'ispublic_visible' => 'Kto może przeglądać odpowiedzi?', + 'ispublic_submit' => 'Kto może wysyłać odpowiedzi?', + 'keyword' => 'Słowo kluczowe', + 'keywords' => 'Słowa kluczowe', + 'label_email' => 'Adres email:', + 'label_full_name' => 'Pełna nazwa:', + 'label_password' => 'Hasło:', + 'label_role' => 'Rola:', + 'label_username' => 'Nazwa użytkownika:', + 'layers' => 'Warstwy', + 'login_role' => 'Moderator', + 'logout' => 'Wyloguj', + 'logs' => 'Logi', + 'manage' => 'Zarządzaj', + 'manage_roles' => 'Zarządzaj rolami i uprawnieniami', + 'manage_users' => 'Zarządzaj użytkownikami', + 'manage_users_edit' => 'Dodaj/edytuj użytkowników', + 'manage_public_listing' => 'Zarządzaj listą publiczną', + 'mark_as' => 'Zaznacz jako', + 'marked_as_not_spam' => 'oznacz jako spam', + 'marked_as_spam' => 'oznacz jako spam', + 'match_no_documents' => 'nie znaleziono żadnych dokumentów', + 'message' => 'Wiadomość', + 'messages' => 'Wiadomości', + 'messages_laconica' => 'Wiadomości z Laconica', + 'messages_twitter' => 'Wiadomości Twitter', + 'message_sent' => 'Twoja wiadomość została wysłana.', + 'mhi' => 'MHI', + 'minute' => 'Minuta', + 'minutes' => 'Minut(y)', + 'missing_parameter' => 'Brakuje parametru', + 'moderator' => 'Moderator', + 'modified' => 'zmodyfikowane', + 'modify_timezone' => 'Zmień strefę czasową', + 'move_down_action' => 'przenieś do góry', + 'move_up_action' => 'przenieś w dół', + 'multiple_hosted_instances' => 'Wieloźródłowa instancja', + 'my_alerts' => 'Moje alerty', + 'my_checkins' => 'Moje check-in', + 'my_profile' => 'Mój profil', + 'my_reports' => 'Moje rapory', + 'my_votes' => 'Oddanych głosów', + 'my_votes_up' => 'Pozytywny', + 'my_votes_down' => 'Negatywny', + 'name' => 'Nazwa', + 'new_alert' => 'Nowy alert', + 'new_private' => 'Utwórz nowy alert', + 'new_password' => 'Nowe hasło', + 'no' => 'Nie', + 'none_category_explanation' => 'To jest kategoria specjalna, która nie jest widoczna przy zgłaszaniu raportów. Przechowuje raporty które wcześniej należały do kategorii, która została skasowana.', + 'notification' => 'Powiadomienie', + 'not_case_sensitive' => 'Wielkość liter nie ma znaczenia.', + 'not_found' => 'Nie znaleziono', + 'no_data' => 'Brak danych. Nie można wyświetlić rezultatów.', + 'no_error' => 'Nie stwierdzono błędu', + 'no_result_display_msg' => 'Żadnych rezultatów do wyświetlenia!', + 'of' => 'z', + 'on_specific_count' => 'Na specyficzną liczbę', + 'openids' => 'OpenID', + 'page' => 'strona', + 'pages' => 'strony', + 'page_not_found' => 'Strona nie znaleziona', + 'page_not_found_message_with_contact' => 'Strona, którą próbujesz odwiedzić, nie istnieje. Jeśli prowadził do niej link z tej strony, skontaktuj się z nami aby problem mógł zostac rozwiązany.W przeciwnym wypadku zgłoś, skąd pochodził link.', + 'page_not_found_message' => 'Strona, którą próbujesz odwiedzić, nie istnieje!', + 'parameters_used' => 'Paramatry wykorzystywane', + 'password' => 'Hasło', + 'password_reset' => 'Zresetuj hasło', + 'password_reset_message_line_1' => 'Drogi', + 'password_reset_message_line_2' => 'Otrzymaliśmy rządnie zresetowania hasła dla', + 'password_reset_message_line_3' => 'Aby zresetować hasło, kliknij łącze (bądź wkej je do przeglądarki).', + 'password_reset_message_line_4' => 'Zgodnie z poleceniem, hasło zostało zresetowane.', + 'password_reset_subject' => 'Zresetowanie hasła', + 'phone' => 'Telefon', + 'please_select' => 'Proszę wybrać', + 'pm' => 'PM', + 'post_method_not_used' => 'Dane nie zostały wysłane', + 'preview' => 'Podgląd', + 'private_message' => 'Wiadomość', + 'private_messages' => 'Prywatne Wiadomości', + 'private_sent' => 'Prywatna Wiadomość wysłana', + 'private_subject' => 'Temat', + 'private_to' => 'Do', + 'public_listing' => 'Lista publiczna', + 'qualifiers' => 'Kwalifikacje', + 'read' => 'przeczytane', + 'relevance' => 'Istotność', + 'report_title' => 'Tytuł', + 'report_date' => 'Data raportu', + 'reporters' => 'Zgłaszający', + 'reporter_levels' => 'Poziom zgłaszającego', + 'reports' => 'Alerty', + 'reputation' => 'Reputacja', + 'required' => 'Wymagane', + 'reset' => 'Resetuj', + 'response' => 'Odpowiedź', + 'results' => 'Rezultaty', + 'revoke' => 'Odrzuć', + 'riverid_exists_admin' => 'Ten adres e-mail ma już przypisane konto w CrowdmapID. Użytkownik powinien użyć istniejącego hasła oraz loginu.', + 'save_settings' => 'Zapisz ustawienia', + 'search' => 'Szukaj', + 'search_reports' => 'Szukaj raportu', + 'searching_for' => 'szukaj', + 'security_info_encryption_key' => 'Klucz szyfrowania wciąż ma wartość domyślną. Trzeba go zmienić.', + 'security_info_https' => 'Strona jest serwowana przez otwarty HTTP. Powinno być ustawione HTTPS dla lepszego bezpieczeństwa.', + 'security_info_instructions' => 'Instrukcje są dostępne na wiki:', + 'select_download_format' => 'Wybierz oczekiwany format pliku dla pobieranych raportów:-', + 'select_field_type' => '--- Wybierz typ pola ---', + 'select_item' => 'Wybierz element', + 'select_trigger_before_response' => 'Musisz wybrać Trigger przed wyborem odpowiedzi.', + 'select_trigger_before_qualifiers' => 'Musisz włączyć Trigger przed zdefiniowaniem.', + 'sender' => 'Nadawca', + 'send_to' => 'Wyślij do', + 'sent_from_website' => 'Ta wiadomość została wysłana z ', + 'server_time' => 'Czas serwera', + 'settings' => 'Ustawienia', + 'showing_page' => 'Strona', + 'showing_results' => 'Rezultaty', + 'shown' => 'pokazany', + 'special_category' => 'Kategoria Specjalna', + 'special_category_explanation' => 'To jest kategoria specjalna, której nie można wybrać zgłaszając raport. Używana w powiązaniu z "Zaufanymi zgłaszającymi"', + 'specific_area' => 'Specyficzny obszar', + 'state' => 'Stan', + 'statistics' => 'Statystyki', + 'stats' => 'Statystyki', + 'stats_collection_error' => 'Nie udało się zebrać statystyk, spróbuj później', + 'stats_collection_error_short' => 'Zbieranie statystyk nie powiodło się!', + 'specific_days' => 'Specyficzne dni', + 'subject' => 'Przedmiot', + 'superadmin_role' => 'Superadministrator', + 'task_performed' => 'Zadanie wykonane', + 'text_field' => 'Pole tekstowe', + 'theme_name' => 'Nazwa', + 'title' => 'Zarządzaj Użytkownikami', + 'timeout' => 'Błąd, przekroczono limit czasu.', + 'to' => 'do', + 'total_records' => 'Całkowita liczba wpisów', + 'to_date' => 'do', + 'translate_reports' => 'Tłumacz alerty', + 'trigger' => 'Trigger', + 'triggering_user' => 'Użytkownik który wywołał Trigger', + 'triggers' => 'Triggery', + 'unapproved' => 'niezaakceptowane', + 'unknown' => 'Nieznany', + 'unknown_failure' => 'Nieznany błąd', + 'unread' => 'nieprzeczytany', + 'unsubscribe_message' => 'Nie będziesz już otrzymywać alertów od', + 'update_link' => ' Kliknij tutaj aby uaktualnić', + 'upgrade_ushahidi' => 'Aktualizuj Ushahidi', + 'upgrade_ushahidi_status' => 'Postęp aktualizacji Ushahidi', + 'upload_reports' => 'Upload akcji', + 'user' => 'Użytkownik', + 'users' => 'Użytkownicy', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Zweryfikowane/Niezweryfikowane', + 'verify_unverify' => 'Weryfikuj/Odwołaj weryfikację', + 'version' => 'Wersja', + 'version_available' => ' jest nowa wersja do uaktualnienia.', + 'video_encoding' => 'Kodowanie wideo', + 'view_private' => 'Prywatne Wiadomości', + 'view_site' => 'Wyświetl stronę', + 'view_report' => 'Zobacz raport', + 'welcome' => 'Witaj, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Tak', + 'your_search_for' => 'Twoje wyszukiwanie', + 'delete_all_instructions' => 'Kliknięcie w poniższy przycisk usunie WSZYSTKIE raporty z bazy danych. Operacji nie będzie można cofnąć.', + 'delete_all_backup' => 'Zalecamy utworzenie kopii zapasowej bazy danych przed rozpoczęciem działania', + 'delete_all_button' => 'Jestem pewny że chcę skasować wszystkie %s raporty(ów) z bazy danych.', + 'delete_all_confirm' => 'Na pewno usunąć wszystkie raporty?', + 'delete_all_no_reports' => 'Żadne raporty nie zostaną usunięte.', + 'user_no_logins' => 'Liczba logowań.', + 'user_last_login' => 'Ostatnie logowanie', + 'user_confirmed_account' => 'Potwierdzić to konto?', +); diff --git a/application/i18n/pl_PL/ui_main.php b/application/i18n/pl_PL/ui_main.php new file mode 100755 index 0000000000..d4a6e284e1 --- /dev/null +++ b/application/i18n/pl_PL/ui_main.php @@ -0,0 +1,621 @@ + 'Informacje', + 'access' => 'Dostęp', + 'access_limits' => 'Limit dostępu', + 'account_name' => 'Nazwa konta', + 'actions' => 'Akcje', + 'action_confirm' => 'Czy potwierdzasz akcję (nie będzie później odwrotu)?', + 'activate' => 'Aktywuj', + 'active' => 'Aktywny', + 'add' => 'Dodaj', + 'added_by' => 'Dodane przez', + 'additional_data' => 'Dodatkowe dane', + 'additional_reports' => 'Dodatkowe akcje', + 'add_edit' => 'Dodaj/Edytuj', + 'add_field' => 'Dodaj pole', + 'add_language' => 'Dodaj język', + 'add_new' => 'Dodaj nowy', + 'add_new_category' => 'Dodaj nową kategorię', + 'add_translation' => 'Dodaj tłumaczenie', + 'admin' => 'Administracja', + 'alerts' => 'Zamów alerty', + 'alerts_alert_me' => 'Powiadom mnie, jeśli zostanie wysłany raport z obszaru:', + 'alerts_btn_send' => 'Zapisz mój alert', + 'alerts_email' => 'Adres email:', + 'alerts_enter_email' => 'podaj adres email', + 'alerts_enter_mobile' => 'podaj numer telefonu z kodem kraju (+48)', + 'alerts_get' => 'Zamów alerty', + 'alert_has_been' => 'Alert raporty', + 'alerts_mobile_phone' => 'Telefon:', + 'alerts_place_spot' => 'Albo umieść maker na mapie, a my powiadomimy Cię, jeżeli zostanie zgłoszony raport w obrębie wybranego przez Ciebie promienia.', + 'alerts_place_spot2' => 'Jeśli nie możesz znaleźć swojej lokalizacji, wybierz na mapie poprawną.', + 'alerts_rss' => 'RSS ze wszystkimi alertami:', + 'alerts_select_city' => 'Wybierz miasto', + 'alerts_step1_select_city' => 'Krok 1: Wybierz miasto bądź lokalizację:', + 'alerts_step2_send_alerts' => 'Krok 2: Alerty mają być wysłane na adres:', + 'alerts_step3_select_catgories' => 'Krok 3 (Optional): Wybierz kategorie', + 'alert_confirm_previous' => 'Jeżli otrzymałeś już kod weryfikacyjny - kliknij tutaj aby potwierdzić swoje zgłoszenie.', + 'alert_saved' => 'Twój alert został zachowany', + 'all' => 'Wszystkie', + 'allowed' => 'Dozwolone', + 'allowed_tags' => 'Dozwolone tagi HTML-a: "%s".', + 'allowed_iframes' => 'Ramki iframe dozwolone tylko z %s.', + 'all_categories' => 'Wszystkie kategorie', + 'all_time' => 'Dowolny czas', + 'and' => 'i', + 'api' => 'API', + 'approve' => 'Zatwierdź', + 'approved' => 'Zatwierdzone', + 'approved_reports' => 'Zatwierdzone Raporty', + 'approve_this_report' => 'Zatwierdź ten Raport', + 'approximate' => 'Przybliżony', + 'archive' => 'Zarchiwizuj', + 'archived' => 'Zarchiwizowane', + 'ascending' => 'Rosnąco', + 'at' => 'w', + 'author' => 'Autor', + 'auto_checkin' => 'Automatyczny check-in', + 'avg_reports_per_day' => 'Średnio Raportów Dziennie', + 'awaiting_approval' => 'Oczekujące akceptacji', + 'awaiting_verification' => 'Oczekujące weryfikacji', + 'badge' => 'Odznaka', + 'badges' => 'Odznaki', + 'badge_image' => 'Obraz odznaki', + 'badge_image_upload_your_own' => 'Lub załaduj własny obraz odznaki:', + 'badge_pack' => 'Zestaw odznak', + 'badge_select' => 'Wybierz odznakę', + 'blog' => 'Blog', + 'browse_profiles' => 'Przeglądaj profile', + 'cancel' => 'Anuluj', + 'categories' => 'Kategorie', + 'category' => 'Kategoria', + 'category_filter' => 'Filtr kategorii', + 'category_has_been' => 'Kategoria została ', + 'category_name' => 'Nazwa kategorii', + 'change_date_range' => 'Zmień zakres czasu', + 'change_password' => 'Zmień hasło', + 'change_picture' => 'Zmień obraz', + 'choose' => 'Wybierz', + 'choose_data_points' => 'Wybierz punkty do pobrania', + 'choose_date_range' => 'Lub wybierz własny zakres czasu', + 'choose_field_type' => 'Wybierz rodzaj pola', + 'cleanurl' => 'Przyjazne URLe', + 'clear' => 'Wyczyść', + 'clear_map' => 'Wyczyść mapę', + 'close' => 'Zamknij', + 'clusters' => 'klastry', + 'color' => 'Kolor', + 'comment' => 'Komentarz', + 'comments' => 'Komentarze', + 'comment_details' => 'Treść komentarza', + 'configuration_saved' => 'Ustawienia zostały zapisane!', + 'configure' => 'Skonfiguruj', + 'confirm_email_successful' => 'Adres e-mail został prawidłowo potwierdzony, możesz się zalogować!', + 'confirm_email_successful_and_approval' => 'E-mail został potwierdzony! Administrator musi jednak zaakceptować Twoje konto zanim będzie można się na nie zalogować', + 'confirm_email_failed' => 'Potwierdzenie adresu nie powiodło się. Możesz spróbować jeszcze raz.', + 'contact' => 'Kontakt', + 'contact_code' => 'Kod bezpieczeństwa', + 'contact_email' => 'Adres email', + 'contact_message' => 'Wiadomość', + 'contact_message_has_send' => 'Twoja wiadomość została wysłana!', + 'contact_name' => 'Imię', + 'contact_phone' => 'Numer kontaktowy', + 'contact_send' => 'Wyślij wiadomość', + 'contact_subject' => 'Tytuł', + 'copyright' => 'Copyright © 2009-2010 Ushahidi.com. All Rights Reserved.', + 'create' => 'Stwórz', + 'create_edit' => 'Stwórz/Edytuj', + 'create_new' => 'Dodaj nowy', + 'create_new_password' => 'Utwórz nowe hasło', + 'create_report' => 'Dodaj raport', + 'credibility' => 'Wiarygodność', + 'current_password' => 'Aktualne hasło', + 'custom_fields' => 'Pola użytkownika', + 'data' => 'Informacje', + 'date' => 'Data', + 'date_format' => '(mm/dd/rrrr)', + 'date_time' => 'Data i czas', + 'day' => 'dzień', + 'deactivate' => 'Deaktywuj', + 'default_location_name' => 'Warsaw, Poland', + 'delete' => 'Skasuj', + 'deleted' => 'Skasowane', + 'deletes' => 'Kasuje', + 'delete_disabled' => 'Kasowanie wyłączone', + 'delete_last' => 'Skasuj ostatni', + 'delete_report' => 'Skasuj ten raport', + 'delete_selected' => 'Skasuj zaznaczone', + 'delete_spam' => 'Skasuj Spam', + 'demo' => 'Demo', + 'description' => 'Opis', + 'descending' => 'Malejąco', + 'detailed_location_example' => 'Przykład: Skrzyżowanie Puławskiej i Goworka, Warszawa', + 'details' => 'Szczegóły', + 'direct_report' => 'Bezpośredni Raport', + 'disabled' => 'Wyłączone', + 'disapprove' => 'Usuń akceptację', + 'download_reports' => 'Pobierz raporty', + 'download' => 'Pobierz', + 'edit' => 'Edytuj', + 'edit_form_fields' => 'Edytuj pola formularza', + 'edit_report' => 'Edytuj raport', + 'email' => 'Email', + 'email_address' => 'Adres Email', + 'email_configuration' => 'Ustawienia serwera pocztowego', + 'email_server_host' => 'Host serwera poczty', + 'email_server_password' => 'Hasło serwera poczty', + 'email_server_port' => 'Port serwera poczty', + 'email_server_ssl_support' => 'Obsługa SSL serwera poczty', + 'email_server_type' => 'Typ serwera poczty', + 'email_server_username' => 'Nazwa użytkownika poczty', + 'email_settings_comment_0' => 'Twoje ustawienia zostały skojarzone ze skrzynką', + 'email_settings_comment_00' => 'W celu uzyskiwania raport przez email, proszę wprowadź dane swojego konta email. ', + 'email_settings_comment_1' => 'Niektóre serwery wymagają pełnego adresu email', + 'email_settings_comment_2' => 'Hasło do konta email', + 'email_settings_comment_3' => 'Popularne porty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Przykłady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Przykłady: pop3, imap', + 'email_settings_comment_6' => 'Włączy lub wyłącz połączenia SSL', + 'empty' => '---PUSTY---', + 'end_point' => 'do', + 'error' => 'Błąd!', + 'example' => 'Przykład', + 'example_country' => 'Polska', + 'external_apps' => 'Zewnętrzne aplikacje', + 'external_video_link' => 'Zewnętrzne wideo', + 'facebook' => 'Facebook', + 'feed' => 'Źródło', + 'feedback' => 'Wyślij swoją opinię', + 'feedback_reports' => 'Daj nam znać jak Ci się używa Ushahidi poprzez wysłanie emaila na', + 'feeds' => 'Źródła', + 'feed_has_been' => 'Źródła zostały', + 'feed_items' => 'Elementy RSS', + 'feed_name' => 'Nazwa źródła', + 'feed_url' => 'Adres RSS', + 'field_unused' => 'Pole nieużywane', + 'file' => 'Plik', + 'file_over_max_allowed' => 'Rozmiar pliku jest za duży!', + 'filters' => 'Filtry', + 'filter_reports' => 'Filtruj', + 'filter_reports_by' => 'Filtruj według', + 'filter_reports_contain' => 'Filtruj zawierające', + 'find' => 'Znajdź', + 'find_location' => 'Znajdź lokalizację', + 'first_name' => 'Imię', + 'force_run_scheduler' => 'Uruchom Scheduler', + 'forgot_password' => 'Zapomniałeś hasła?', + 'form' => 'Formularz', + 'forms' => 'Formularze', + 'form_description' => 'Opis formularza', + 'form_edit' => 'Edytuj formularz', + 'form_has_been' => 'Formularz został', + 'form_title' => 'Tytuł formularza', + 'from' => 'Od', + 'full_name' => 'Imię i nazwisko', + 'geolocation_available' => 'Dostępne dane Geolokalizacyjne', + 'geometry_color' => 'Kolor', + 'geometry_comments' => 'Komentarze', + 'geometry_label' => 'Etykieta', + 'geometry_strokewidth' => 'Grubość linii', + 'go' => 'Idź', + 'hashtag' => 'Hashtag', + 'has_been' => 'Został', + 'help' => 'Chcę pomóc', + 'hidden' => 'Ukryty', + 'hide' => 'Schowaj', + 'hide_this_message' => 'ukryj tę wiadomość', + 'home' => 'Strona główna', + 'how_to_report' => 'Jak zgłaszać raporty', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Używane, by zidentyfikować Ciebie na tej stronie.', + 'image' => 'Obraz', + 'images' => 'Zdjęcia', + 'image_icon' => 'Obraz/Ikona', + 'inactive' => 'NIeaktywne', + 'inbox' => 'Skrzynka odbiorcza', + 'incident' => 'Zdarzenie', + 'incidents_nearby' => 'Zdarzenia w pobliżu', + 'incident_location' => 'Lokalizacja zdarzenia', + 'include' => 'Dołącz', + 'include_categories' => 'Podaj kategorię', + 'include_custom_fields' => 'Dołącz pola użytkownika', + 'include_description' => 'Podaj opis', + 'include_detail' => 'Podaj jak najwięcej szczegółów', + 'include_latitude' => 'Podaj szerokość geograficzną', + 'include_location_information' => 'Podaj dane lokalizacji', + 'include_longitude' => 'Podaj długość geograficzną', + 'include_personal_info' => 'Dołącz dane personalne', + 'incoming_media' => 'Media przychodzące', + 'information_evaluation' => 'Ewaluacja Informacji', + 'input_location' => 'Podaj swoją dokładną lokalizację', + 'insufficient_role' => 'Twoje konto nie posiada uprawnień do prawidłowego zalogowania. Proszę skontaktować się z administratorem.', + 'in_response_to' => 'W odpowiedzi na', + 'ip_address' => 'Adres IP', + 'is_this_your_profile' => 'Czy to Twój profil?', + 'item' => 'element', + 'items' => 'elementy', + 'item_details' => 'Szczegóły elementu', + 'item_title' => 'Tytuł elementu', + 'key' => 'Klucz', + 'keywords' => 'Wyrazy kluczowe', + 'kml_kmz_file' => 'Plik KMZ/KML', + 'kml_kmz_upload' => 'Dodaj plik KMZ/KML', + 'kml_url' => 'URL KML', + 'laconica' => 'Laconica', + 'language' => 'Język', + 'last' => 'Ostatni', + 'last_month' => 'Ostatni miesiąc', + 'last_name' => 'Nazwisko', + 'last_year' => 'Ostatni rok', + 'latitude' => 'Szerokość geograficzna', + 'layers' => 'Warstwy', + 'layers_filter' => 'Inne warstwy', + 'layer_has_been' => 'Warstwa została', + 'layer_name' => 'Nazwa warstwy', + 'layer_url' => 'URL warstwy', + 'leave_a_comment' => 'Dodaj komentarz', + 'less_information' => 'Mniej informacji', + 'level' => 'Poziom', + 'level_has_been' => 'Ten poziom został', + 'level_name' => 'Nazwa poziomu', + 'limited' => 'Limit', + 'link' => 'Link', + 'list' => 'Lista', + 'loading_reports' => 'Ładowanie', + 'location' => 'Lokalizacja', + 'locations' => 'Lokalizacje', + 'location_example' => 'Miasto, stan i/lub kraj', + 'login' => 'Login', + 'login_account_creation_successful' => 'Konto utworzone! Możesz się zalogować.', + 'login_confirmation_sent' => 'Potwierdzenie zostało wysłane na podany adres e-mail.', + 'login_approval_required' => 'Konto zostało utworzone. Musi zostać zatwierdzone przez admina, zanim będzie można się na nie zalogować.', + 'login_email_doesnt_exist' => 'Ten adres nie istnieje lub nie działa. Spróbuj zarejestrować się z użyciem innego adresu.', + 'login_select_openid' => 'Kliknij Twojego dostawcę konta', + 'login_with' => 'Zaloguj przez', + 'login_userpass' => 'Email i hasło', + 'login_openid' => 'OpenID', + 'login_signup' => 'Zarejestruj się', + 'login_signup_click' => 'Utwórz konto', + 'login_signup_confirmation_message' => 'Dziękujemy za rejestrację %1$s. Aby potwierdzić swój adres e-mail, kliknij tutaj: %2$s', + 'login_signup_confirmation_subject' => 'Potwierdzenie rejestracji', + 'login_signup_admin_approval_message' => 'Nowy użytkownik założył konto jako %1$s. Żeby zaakceptować jego rejestrację przejdź do tego adresu: %2$s', + 'login_signup_admin_approval_subject' => 'Akceptacja nowych użytkowników', + 'login_signup_approval_message' => 'Twoje konto zostało zaakceptowane przez %1$s. Żeby się zalogować przejdź do tego adresu: %2$s', + 'login_signup_approval_subject' => 'Konto użytkownika zostało zatwierdzone', + 'login_signup_text' => 'Utwórz konto, aby w pełni wykorzystać możliwości tej strony.', + 'longitude' => 'Długość geograficzna', + 'map' => 'Mapa', + 'mark_read' => 'Oznacz jako przeczytane', + 'mark_unread' => 'Oznacz jako nieprzeczytane', + 'maximum_filesize' => 'Maksymalny rozmiar pliku', + 'media' => 'Multimedia', + 'media_filter' => 'Filtr mediów', + 'members' => 'Członkowie', + 'manage_your_account' => 'Zarządzanie kontem', + 'message' => 'Wiadomość', + 'messages' => 'Wiadomości', + 'message_details' => 'Treść wiadomości', + 'message_non_numeric_source' => 'Wiadomość z źródła nie-cyfrowego:', + 'mobile' => 'Mobilny', + 'modify' => 'Modyfikuj', + 'modify_date' => 'Modyfikuj datę', + 'month' => 'miesiąc', + 'more' => 'Więcej', + 'more_information' => 'Więcej informacji', + 'multi_country_instance' => 'Czy ta instancja Ushahidi wspiera wiele krajów', + 'must_confirm_email_address' => 'Musisz potwierdzić swój adres e-mail by uzyskać dostęp. Jeśli wiadomość z potwierdzeniem zginęła, możesz uzyskać nową poniżej.', + 'name' => 'Nazwa', + 'nearby_report' => 'Raport w pobliżu', + 'new' => 'Nowy', + 'news' => 'Newsy', + 'news_feeds' => 'Źródła wiadomości', + 'news_source' => 'Źródła newsów', + 'new_category' => 'Nowa kategoria', + 'new_password' => 'Nowe hasło', + 'new_report' => 'Nowy raport', + 'next' => 'Następny', + 'no' => 'Nie', + 'no_checkins' => 'Brak check-in do wyświetlenia.', + 'no_data' => 'Brak danych', + 'none' => 'Brak', + 'notices' => 'Powiadomienia', + 'not_approved' => 'Nie zaakceptowane', + 'not_approved_singular' => 'Nie zaakceptowane', + 'not_selected' => '---Nie zaznaczony---', + 'not_spam' => 'nie spam', + 'not_specified' => 'Nie sprecyzowany', + 'no_reports' => 'Brak raportów', + 'no_results' => 'Nie ma rezultatów', + 'off' => 'Wyłączony', + 'official_news' => 'Wiadomości', + 'on' => 'Włączony', + 'option' => 'Opcja', + 'optional' => 'Opcjonalny', + 'options' => 'Opcje', + 'organization' => 'Organizacja', + 'organizations' => 'Organizacje', + 'organization_description' => 'Opis organizacji', + 'organization_email' => 'Email organizacji', + 'organization_has_been' => 'Organizacja została', + 'organization_name' => 'Nazwa organizacji', + 'organization_phone_1' => 'Telefon organizacji', + 'organization_phone_2' => 'Drugi telefon do organizacji', + 'organization_website' => 'Adres www organizacji', + 'original' => 'Oryginalne', + 'original_description' => 'Opis', + 'original_title' => 'Tytuł', + 'other_ushahidi_instances' => 'Inne instancje ushahidi', + 'outbox' => 'Elementy wysłane', + 'outgoing' => 'Elementy wychodzące', + 'page' => 'Strona', + 'pages' => 'Strony', + 'page_description' => 'Opis strony', + 'page_has_been' => 'Strona została', + 'page_tab_name' => 'Tutuł strony', + 'page_title' => 'Tytuł strony', + 'parent_category' => 'Kategoria nadrzędna', + 'password' => 'Hasło', + 'password_again' => 'Powtórz hasło', + 'password_changed_successfully' => 'Hasło zmienione poprawnie! Zaloguj się poniżej.', + 'password_forgot' => 'Zapomniałeś hasła?', + 'password_reset_confirm' => 'Sprawdź swój email w celu uzyskania nowego hasła', + 'password_save' => 'Pozostań zalogowany na tym komputerze', + 'past_month' => 'Ostatni miesiąc', + 'past_year' => 'Ostatni rok', + 'pending' => 'Oczekujące', + 'per' => 'na', + 'personal_information' => 'Informacje dodatkowe Opcjonalne.', + 'phone' => 'Telefon', + 'photos' => 'Zdjęcia', + 'pictures' => 'Zdjęcia', + 'pictures_and_videos' => 'Zdjęcia i video', + 'pinpoint_location' => '* Wyszukaj lokalizację (podając nazwę miejscowości lub wpisując kod pocztowy np.: Polska,00-581), bądź wskaż ją na mapie', + 'play' => 'Graj', + 'please_note' => 'Proszę zanotuj', + 'plugins' => 'Wtyczki', + 'plugin_url' => 'Strona wtyczki', + 'public_profile' => 'Profil publiczny', + 'public_profile_url' => 'URL profilu publicznego', + 'preview' => 'Podgląd', + 'preview_item' => 'Podgląd', + 'preview_message' => 'Podgląd wiadomości', + 'previous' => 'Poprzedni', + 'private' => 'Prywatny', + 'profile_color' => 'Kolor profilu', + 'profile_saved' => 'Twój profil został zapisany', + 'quick_stats' => 'Statystyki', + 'rating' => 'Ocena', + 'read' => 'Przeczytane', + 'receive' => 'Otrzymane', + 'receive_from' => 'Otrzymane od', + 'receive_notifications' => 'Otrzymuj powiadomienia', + 'recent_reports' => 'Otrzymane Raporty', + 'refresh_news_feeds' => 'Odśwież źródła newsów', + 'registered_email' => 'Zarejestrowany e-mail', + 'remove' => 'usuń', + 'reply' => 'Odpowiedz', + 'report' => 'Raport', + 'reports_listed' => 'Raporty (z mapy, kolejność chronologiczna)', + 'reporter' => 'Zgłaszający', + 'reporters' => 'Zgłaszający', + 'reporter_date' => 'Data zgłaszającego', + 'reporter_email' => 'Email zgłaszającego', + 'reporter_first_name' => 'Imię zgłaszającego', + 'reporter_has_been' => 'Zgłaszający został', + 'reporter_ip' => 'IP Zgłaszającego', + 'reporter_last_name' => 'Nazwisko Zgłaszającego', + 'reporter_level' => 'Poziom Zgłaszającego', + 'reporter_levels' => 'Poziomy Zgłaszających', + 'reporter_phone' => 'Telefon Zgłaszającego', + 'reports' => 'Raporty', + 'reports_btn_browse' => 'Przeglądaj', + 'reports_btn_submit' => 'Wyślij', + 'reports_by_this_user' => 'Raporty tego użytkownika', + 'reports_categories' => 'Kategorie', + 'reports_count' => '%d raportów', + 'reports_date' => 'Data', + 'reports_description' => 'Opis', + 'reports_download_csv' => 'Raporty zostaną pobrane w formacie CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Właściwości', + 'reports_find_location' => 'Znajdź lokalizację w pobliżu', + 'reports_first' => 'Imię', + 'reports_last' => 'Nazwisko', + 'reports_location_name' => 'Określ nazwę lokalizacji', + 'reports_news' => 'Źródło wiadomości', + 'reports_optional' => 'Informacje dodatkowe', + 'reports_photos' => 'Dodaj zdjęcia', + 'reports_return' => 'Powróć do strony z raportami', + 'reports_select_city' => 'Wybierz miasto', + 'reports_submitted' => 'Twoje zgłoszeni zostało dodane i oczekuje akceptacji. Nasz zespół skontaktuje się z Tobą jeżeli będzie to konieczne.', + 'reports_submit_new' => 'Wyślij nowy raport', + 'reports_time' => 'Czas', + 'reports_timeline' => 'linia czasu', + 'reports_title' => 'Tytuł raportu', + 'reports_video' => 'Link do video', + 'report_an_incident' => 'Dodaj raport', + 'report_details' => 'Szczegóły raportu', + 'report_option_1' => 'Przez wysłanie wiadomośći do', + 'report_option_2' => 'Przez wysłanie emaila do ', + 'report_option_3' => 'Na Twitterze dodaj tag ', + 'report_option_4' => 'Przez wysłanie niniejszego formularza', + 'report_option_external_apps' => 'Używając aplikacji', + 'report_saved' => 'Twój Raport został wysłany', + 'report_title' => 'Tytuł Raportu', + 'request_information' => 'Poproś o więcej informacji', + 'request_location' => 'Poproś o lokalizację', + 'required' => 'Wymagane', + 'requirements' => 'Wymagania', + 'resend_confirm_email' => 'Ponownie wyślij', + 'reset' => 'Zresetuj', + 'reset_all_filters' => 'Zresetuj wszystkie filtry', + 'reset_password' => 'Zresetuj hasło', + 'retrieve_city_names' => 'Pobierz nazwy miast z wybranego kraju', + 'riverid_information' => 'Konta zarządzane przez usługę %s', + 'riverid_exists_login' => 'Już posiadasz konto CrowdmapID! By się zalogować, spróbuj użyć swojego adresu e-mail CrowdmapID i hasła.', + 'role' => 'Rola', + 'rss' => 'RSS', + 'save' => 'Zapisz', + 'saved' => 'Zapisane', + 'save_add_new' => 'Zapisz i dodaj nowe', + 'save_close' => 'Zapisz i zamknij', + 'save_report' => 'Zapisz raport', + 'schedule' => 'Harmonogram', + 'scheduler' => 'Scheduler', + 'scheduler_day' => 'Dzień', + 'scheduler_hour' => 'Godzina', + 'scheduler_log' => 'Log Schedulera', + 'scheduler_minute' => 'Minuta', + 'scheduler_weekday' => 'Dzień Tygodnia', + 'search' => 'Szukaj', + 'search_results' => 'Wyniki wyszukiwania', + 'security_code' => 'Kod bezpieczeństwa', + 'select_all' => 'Wybierz wszystko', + 'select_field_type' => 'Wybierz rodzaj pola', + 'select_form_type' => 'Wybierz rodzaj formularza', + 'select_in_map' => 'Wybierz na mapie', + 'select_multiple' => 'Wybierz wszystkie wymagane', + 'select_one' => 'Zweryfukuj czy wybrałeś', + 'select_theme' => 'Wybierz temat', + 'send' => 'Wyślij', + 'send_confirmation' => 'Wyślij potwierdzenie', + 'sending_to' => 'Wyślij do', + 'sent' => 'Wysłane', + 'sent_by' => 'Wysłane przez', + 'server_address' => 'Adres serwera', + 'server_type' => 'Typ serwera', + 'service' => 'Usługa', + 'service_username' => 'Nazwa użytkownika', + 'service_user_id' => 'ID nazwy użytkownika', + 'share' => 'Udostępnij', + 'shared_data' => 'Dane udostępniane', + 'share_has_been' => 'Udostępnianie zostało', + 'sharing' => 'Udostępnianie', + 'shorter_map' => 'Niższa mapa', + 'show' => 'Pokaż', + 'show_all' => 'Pokaż wszystkie', + 'show_messages' => 'Pokaż wiadomości', + 'showing_reports_from' => 'Pokazuje raporty od %1$s do %2$s', + 'site' => 'Strona', + 'site_email_address' => 'adres email strony', + 'site_url' => 'URL', + 'smaller_map' => 'Mniejsza mapa', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Nie masz w tej chwili żadnych odznak.', + 'source' => 'Źródło', + 'source_name' => 'Nazwa źródła', + 'sort' => 'Sortuj', + 'sort_by' => 'Sortuj według', + 'source_url' => 'URL źródła', + 'spam' => 'Spam', + 'ssl_support' => 'SSL wspierany?', + 'start_point' => 'Od', + 'step' => 'Krok', + 'submit' => 'Dodaj raport', + 'submitted_by' => 'Wysłane przez %1$s za pomocą %2$s', + 'submit_sms' => 'Zgłoś przez SMS', + 'submit_sms1' => 'Wyślij SMS do', + 'submit_sms2' => 'na telefon', + 'success' => 'Powiodło się!', + 'successfuly_imported' => 'Zaimportowane z sukcesem', + 'surname' => 'Nazwisko', + 'survey' => 'Ankieta', + 'system' => 'System', + 'taller_map' => 'Wyższa mapa', + 'tcp_port' => 'Port TCP', + 'themes' => 'Szablony', + 'theme_default' => 'Domyślny szablon Ushahidi', + 'theme_settings' => 'Ustawienia szablonu', + 'this' => 'Ten', + 'this_day' => 'Dzisiaj', + 'this_month' => 'Ten miesiąc', + 'this_week' => 'Ten tydzień', + 'this_year' => 'Ten rok', + 'this_is_your_profile' => 'To jest Twój profil.', + 'time' => 'czas', + 'title' => 'Tytuł', + 'to' => 'do', + 'today' => 'Dziś', + 'today_at' => 'Dziś o', + 'token' => 'Token', + 'total_reports' => 'Wszystkich Raportów', + 'translated' => 'Przetłumaczone', + 'translated_description' => 'Przetłumaczone Opisy', + 'translated_title' => 'Przetłumaczony tytuł', + 'translate_to' => 'Przetłumacz na', + 'translation' => 'Tłumaczenie', + 'translation_saved' => 'Tłumaczenie zostało zapisane', + 'trusted' => 'Zaufany', + 'type' => 'Typ', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Nie można wysłać wiadomości!', + 'uncategorized_reports' => 'Bez kategorii', + 'unread' => 'Brak nieprzeczytanych', + 'unverified' => 'Niezweryfikowane', + 'update_feeds' => 'Uaktualnij źródła', + 'upload' => 'Dodaj', + 'upload_guide' => 'Zobacz przewodnik wysyłania raportów:-', + 'upload_docs_1' => 'Przewodnik wysyłania XML', + 'upload_docs_2' => 'Przewodnik wysyłania CSV', + 'upload_file' => 'Plik do wgrania', + 'upload_reports' => 'Wgraj raporty', + 'upload_reports_custom_forms' => 'Niestandardowe pola kolumn muszą posiadać pole form_id. Np. pole Test, w standardowym formularzu, którego ID to 1 powinno prezentować się jako Test-1. Upewnij się czy tak jest podczas importowania formularza.', + 'upload_reports_detail_1' => 'Za pomocą poniższego formualrza możesz importować zdarzenia do silnika Ushahidi', + 'upload_reports_detail_2' => 'Raporty muszą być wysłane w formacie CSV lub XML.', + 'upload_reports_detail_3' => 'Gdy ID zdarzenia istnieje już w systemie, wpis z pliku CSV/XML zostanie pominięty.', + 'upload_reports_detail_4' => 'Plik musi zawierać co najmniej Tytuł Zdarzenia i Datę', + 'upload_reports_detail_4b' => 'Jeśli nie podasz współrzędnych, lokalizacje zostaną ustalone za pomocą usługi geokodowania Google', + 'upload_reports_detail_4c' => 'Jeżeli importujesz dodatkowe informacje, takie jak dane personalne lub pola użytkownika', + 'upload_reports_detail_4d' => 'Co najmniej jedno z pól danych personalnych (imię, nazwisko, email) MUSI być wypełnione. Puste rekordy zostaną pominięte', + 'upload_reports_detail_4e' => 'Twoje wpisy dla pól formularza zgadzają się z konfiguracją formularza w Twojej instalacji.', + 'upload_reports_detail_4f' => 'Opcje do zaznaczenia powinny być rozdzielone przecinkami.', + 'upload_reports_detail_4g' => 'Wartości pól daty powinny być w formacie: mm/dd/rrrr', + 'upload_reports_detail_5' => 'Przykładowy Raport CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",TAK,TAK', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Poznań","Radość kibiców Lecha","PROPERTY LOSS, ",TAK,NIE', + 'upload_successful' => 'Dodawanie powiodło się', + 'upload_video' => 'Załaduj wideo', + 'url' => 'URL', + 'user' => 'Użytkownik', + 'username' => 'Nazwa użytkownika', + 'ushahidi_admin' => 'Admin Ushahidi', + 'verification' => 'Weryfikacja', + 'verified' => 'Zweryfikowane', + 'verified_reports' => 'Zweryfikowane raporty', + 'verify' => 'Zweryfikuj', + 'verify_this_report' => 'Weryfikuj ten raport', + 'version' => 'Wersja', + 'via' => 'przez', + 'video' => 'Wideo', + 'view' => 'Pokaż', + 'views' => 'Odsłony', + 'view_all' => 'Pokaż wszystkie', + 'view_all_feeds' => 'Pokaż wszystkie feedy', + 'view_all_reports' => 'Pokaż wszystkie raporty', + 'view_items' => 'Pokaż elementy', + 'view_more' => 'Zobacz więcej', + 'view_public_profile' => 'Obejrzyj profil publiczny', + 'view_report' => 'Pokaż raport', + 'view_reports' => 'Pokaż raporty', + 'view_video' => 'Zobacz wideo', + 'visible' => 'Widoczne', + 'waiting_approval' => 'Oczekujące akceptacji', + 'waiting_verification' => 'Oczekujące weryfikacji', + 'wider_map' => 'Szersza mapa', + 'web_form' => 'Formularz', + 'web' => 'Sieć', + 'weight' => 'Ciężar', + 'yes' => 'Tak', + 'yesterday' => 'Wczoraj', + 'your_dashboard' => 'Twoja konsola', + 'your_file' => 'Twój plik', + 'zoom_in' => 'Przybliż', + 'zoom_out' => 'Oddal', +); diff --git a/application/i18n/pl_PL/upgrade.php b/application/i18n/pl_PL/upgrade.php new file mode 100755 index 0000000000..ae034211a0 --- /dev/null +++ b/application/i18n/pl_PL/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Nieprawidłowe dane. 0 to Nie a 1 to Tak.', + ) , + 'upgrade_automatic' => 'Automatyczna Aktualizacja', + 'upgrade_available' => 'Dostępne uaktualnienia', + 'upgrade_continue_btn_text' => 'Kontynuuj', + 'upgrade_db_btn_text' => 'Aktulizacja', + 'upgrade_db_text_1' => 'Aktualizacja bazy danych z wersji', + 'upgrade_db_text_2' => 'do najnowszej wersji bazy danych', + 'upgrade_db_text_3' => 'Kliknij przycisk "Aktualizacja" i zrelaksuj się :) ', + 'upgrade_db_text_4' => 'Jeśli chcesz wykonać kopię bazy danych, zaznacz poniższe pole wyboru.', + 'upgrade_db_text_5' => 'Wykonać kopię zapasową bazdy danych przed aktyalizacją? ', + 'upgrade_db_title' => 'Aktualizacj bazy danych Ushahidi', + 'upgrade_db_info' => 'Ushahidi został zaktualizowany! Przed kontynuacją musisz zaktualizować bazę danych do najnowszej wersji (%s).', + 'upgrade_db_up_to_date' => 'Wersja bazy danych jest już aktualna.', + 'upgrade_failed' => 'Aktualizacja nie powiodła się', + 'upgrade_manual' => 'Manualna Aktualizacja', + 'upgrade_status' => 'Postęp aktualizacji Ushahidi', + 'upgrade_text_1' => 'The instructions below details how to manually upgrade your Ushahidi instance', + 'upgrade_text_2' => 'Krok 1: Pobierz najnowszą wersję Ushahidi z http://download.ushahidi.com', + 'upgrade_text_3' => 'Krok 2: Depending on the operating system running the webserver, use your preferred tool/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. All EXCEPT:', + 'upgrade_text_4' => 'Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables', + 'upgrade_tables' => 'Krok 3:Zajrzyj do katalogu sql. Uruchom plik -.sql poczynając od obecnej wersji bazy danych do ostatniego pliku sql z aktualizacją.', + 'upgrade_text_5' => 'Aby uruchomić automatyczną aktualizację kliknij poniższy przycisk.', + 'upgrade_text_6' => 'Kliknij poniżej, aby zaktualizować automatycznie.', + 'upgrade_title_text' => 'Aktualnie używasz Ushahidi v%1$s, z bazą danych w wersji %2$d działającą na %3$s', + 'upgrading' => 'Aktualizaja', + 'upgrade_ftp_text' => 'Aby kontynuować prostą aktualizację, następujące informacje są potrzebne dla serwera FTP na którym utrzymywana jest Twoja strona.', + 'upgrade_ftp_hostname' => 'Nazwa hosta FTP:', + 'upgrade_ftp_password' => 'Hasło FTP:', + 'upgrade_ftp_username' => 'Nazwa użytkownika FTP:', + 'upgrade_status_info' => 'Ta wersja Ushahidi jest najnowsza.', + 'upgrade_status_info_2' => 'Aktualizacja nie wymagana.', + 'upgrade_db_version' => 'Wersja bazy danych: %d', + 'upgrade_warning_software_version' => 'Uwaga: Wersja oprogramowania w pliku version.php różni się od zapisanej w bazie danych.', + 'upgrade_warning_db_version' => 'Uwaga: Wersja bazy danych w pliku version.php różni się od zapisanej w bazie danych.', + 'upgrade_database' => 'Baza danych:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Pobieranie najnowszej wersji Ushahidi...', + 'log_file' => 'Plik logu', + 'successfully_downloaded' => 'Prawidłowo pobrano, trwa rozpakowywanie..', + 'failed_downloading' => 'Nie pobrano!', + 'successfully_unpacked' => 'Prawidłowo rozpakowano, kopiowanie plików...', + 'failed_unpacking' => 'Nie rozpakowano!', + 'successfully_copied' => 'Prawidłowo skopiowano, aktualizacja bazy danych...', + 'failed_copying' => 'Nie skopiowano plików!', + 'backup_success' => 'Stworzono kopię bazy danych i zaktualizowano do najnowszej wersji.', + 'backup_failed' => 'Nie utworzono kopii zapasowej!', + 'dbupgrade_success' => 'Zaktualizowano bazę danych.', + 'deleting_files' => 'Kasowanie plików tymczasowych...', + 'upgrade_success' => 'AKTUALIZACJA ZAKOŃCZONA. Szczegóły zawiera Log File', +); diff --git a/application/i18n/po/po-ach/alerts.po b/application/i18n/po/po-ach/alerts.po new file mode 100644 index 0000000000..9456bef36e --- /dev/null +++ b/application/i18n/po/po-ach/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ach/auth.po b/application/i18n/po/po-ach/auth.po new file mode 100644 index 0000000000..57127ff034 --- /dev/null +++ b/application/i18n/po/po-ach/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ach/bug.po b/application/i18n/po/po-ach/bug.po new file mode 100644 index 0000000000..ad980d18e2 --- /dev/null +++ b/application/i18n/po/po-ach/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ach/category.po b/application/i18n/po/po-ach/category.po new file mode 100644 index 0000000000..a69422d05d --- /dev/null +++ b/application/i18n/po/po-ach/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ach/comments.po b/application/i18n/po/po-ach/comments.po new file mode 100644 index 0000000000..bf948fcb3d --- /dev/null +++ b/application/i18n/po/po-ach/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-ach/contact.po b/application/i18n/po/po-ach/contact.po new file mode 100644 index 0000000000..8a7643a25f --- /dev/null +++ b/application/i18n/po/po-ach/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ach/core.po b/application/i18n/po/po-ach/core.po new file mode 100644 index 0000000000..c733183f97 --- /dev/null +++ b/application/i18n/po/po-ach/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-ach/database.po b/application/i18n/po/po-ach/database.po new file mode 100644 index 0000000000..f5f44170cd --- /dev/null +++ b/application/i18n/po/po-ach/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-ach/datetime.po b/application/i18n/po/po-ach/datetime.po new file mode 100644 index 0000000000..f63c0e7d5a --- /dev/null +++ b/application/i18n/po/po-ach/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ach/feeds.po b/application/i18n/po/po-ach/feeds.po new file mode 100644 index 0000000000..3344c09e2a --- /dev/null +++ b/application/i18n/po/po-ach/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ach/footer.po b/application/i18n/po/po-ach/footer.po new file mode 100644 index 0000000000..a2d6b6214d --- /dev/null +++ b/application/i18n/po/po-ach/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-ach/form.po b/application/i18n/po/po-ach/form.po new file mode 100644 index 0000000000..f8d1b9e55f --- /dev/null +++ b/application/i18n/po/po-ach/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ach/imap.po b/application/i18n/po/po-ach/imap.po new file mode 100644 index 0000000000..899542ead7 --- /dev/null +++ b/application/i18n/po/po-ach/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-ach/installer.po b/application/i18n/po/po-ach/installer.po new file mode 100644 index 0000000000..e373c22790 --- /dev/null +++ b/application/i18n/po/po-ach/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-ach/layer.po b/application/i18n/po/po-ach/layer.po new file mode 100644 index 0000000000..e212732217 --- /dev/null +++ b/application/i18n/po/po-ach/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-ach/libraries.po b/application/i18n/po/po-ach/libraries.po new file mode 100644 index 0000000000..2a0b962b14 --- /dev/null +++ b/application/i18n/po/po-ach/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ach/maintenance.po b/application/i18n/po/po-ach/maintenance.po new file mode 100644 index 0000000000..5294160d03 --- /dev/null +++ b/application/i18n/po/po-ach/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-ach/message.po b/application/i18n/po/po-ach/message.po new file mode 100644 index 0000000000..25494f8284 --- /dev/null +++ b/application/i18n/po/po-ach/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-ach/mhi.po b/application/i18n/po/po-ach/mhi.po new file mode 100644 index 0000000000..343c413af5 --- /dev/null +++ b/application/i18n/po/po-ach/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-ach/notifications.po b/application/i18n/po/po-ach/notifications.po new file mode 100644 index 0000000000..384904ec27 --- /dev/null +++ b/application/i18n/po/po-ach/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ach/page.po b/application/i18n/po/po-ach/page.po new file mode 100644 index 0000000000..146f727b4f --- /dev/null +++ b/application/i18n/po/po-ach/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-ach/permissions.po b/application/i18n/po/po-ach/permissions.po new file mode 100644 index 0000000000..40a42cebf6 --- /dev/null +++ b/application/i18n/po/po-ach/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ach/private_message.po b/application/i18n/po/po-ach/private_message.po new file mode 100644 index 0000000000..bdd8a79dc0 --- /dev/null +++ b/application/i18n/po/po-ach/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-ach/report.po b/application/i18n/po/po-ach/report.po new file mode 100644 index 0000000000..2c2398a345 --- /dev/null +++ b/application/i18n/po/po-ach/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ach/reporters.po b/application/i18n/po/po-ach/reporters.po new file mode 100644 index 0000000000..d248d6ff19 --- /dev/null +++ b/application/i18n/po/po-ach/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-ach/reports.po b/application/i18n/po/po-ach/reports.po new file mode 100644 index 0000000000..5b6ca27225 --- /dev/null +++ b/application/i18n/po/po-ach/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-ach/roles.po b/application/i18n/po/po-ach/roles.po new file mode 100644 index 0000000000..cb7d478025 --- /dev/null +++ b/application/i18n/po/po-ach/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ach/settings.po b/application/i18n/po/po-ach/settings.po new file mode 100644 index 0000000000..75d299eca0 --- /dev/null +++ b/application/i18n/po/po-ach/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Acoli (http://www.transifex.com/projects/p/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ach/sharing.po b/application/i18n/po/po-ach/sharing.po new file mode 100644 index 0000000000..df99ae6477 --- /dev/null +++ b/application/i18n/po/po-ach/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-ach/stats.po b/application/i18n/po/po-ach/stats.po new file mode 100644 index 0000000000..e9db5c611e --- /dev/null +++ b/application/i18n/po/po-ach/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-ach/tooltips.po b/application/i18n/po/po-ach/tooltips.po new file mode 100644 index 0000000000..125b068edb --- /dev/null +++ b/application/i18n/po/po-ach/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ach/ui_admin.po b/application/i18n/po/po-ach/ui_admin.po new file mode 100644 index 0000000000..0aeeae6422 --- /dev/null +++ b/application/i18n/po/po-ach/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ach/ui_main.po b/application/i18n/po/po-ach/ui_main.po new file mode 100644 index 0000000000..7c11fbac80 --- /dev/null +++ b/application/i18n/po/po-ach/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ach/upgrade.po b/application/i18n/po/po-ach/upgrade.po new file mode 100644 index 0000000000..eded4c5636 --- /dev/null +++ b/application/i18n/po/po-ach/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-08-07 12:43+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Acoli (http://www.transifex.com/ushahidi/ushahidi-v2/language/ach/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ach\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-ady/alerts.po b/application/i18n/po/po-ady/alerts.po new file mode 100644 index 0000000000..274cef15ac --- /dev/null +++ b/application/i18n/po/po-ady/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ady/auth.po b/application/i18n/po/po-ady/auth.po new file mode 100644 index 0000000000..2c0e47bdd1 --- /dev/null +++ b/application/i18n/po/po-ady/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ady/bug.po b/application/i18n/po/po-ady/bug.po new file mode 100644 index 0000000000..1a5612d791 --- /dev/null +++ b/application/i18n/po/po-ady/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ady/category.po b/application/i18n/po/po-ady/category.po new file mode 100644 index 0000000000..9460ea3092 --- /dev/null +++ b/application/i18n/po/po-ady/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ady/comments.po b/application/i18n/po/po-ady/comments.po new file mode 100644 index 0000000000..1f6603aebc --- /dev/null +++ b/application/i18n/po/po-ady/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-ady/contact.po b/application/i18n/po/po-ady/contact.po new file mode 100644 index 0000000000..5e3c6aec8a --- /dev/null +++ b/application/i18n/po/po-ady/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ady/core.po b/application/i18n/po/po-ady/core.po new file mode 100644 index 0000000000..1e65be81ee --- /dev/null +++ b/application/i18n/po/po-ady/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-ady/database.po b/application/i18n/po/po-ady/database.po new file mode 100644 index 0000000000..cff5c29c8a --- /dev/null +++ b/application/i18n/po/po-ady/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-ady/datetime.po b/application/i18n/po/po-ady/datetime.po new file mode 100644 index 0000000000..53bbb804c4 --- /dev/null +++ b/application/i18n/po/po-ady/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ady/feeds.po b/application/i18n/po/po-ady/feeds.po new file mode 100644 index 0000000000..239a7c4050 --- /dev/null +++ b/application/i18n/po/po-ady/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ady/footer.po b/application/i18n/po/po-ady/footer.po new file mode 100644 index 0000000000..3226b2a228 --- /dev/null +++ b/application/i18n/po/po-ady/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-ady/form.po b/application/i18n/po/po-ady/form.po new file mode 100644 index 0000000000..c3570caf83 --- /dev/null +++ b/application/i18n/po/po-ady/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ady/imap.po b/application/i18n/po/po-ady/imap.po new file mode 100644 index 0000000000..7a186892bf --- /dev/null +++ b/application/i18n/po/po-ady/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-ady/installer.po b/application/i18n/po/po-ady/installer.po new file mode 100644 index 0000000000..13e0efb37a --- /dev/null +++ b/application/i18n/po/po-ady/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-ady/layer.po b/application/i18n/po/po-ady/layer.po new file mode 100644 index 0000000000..4b6e860256 --- /dev/null +++ b/application/i18n/po/po-ady/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-ady/libraries.po b/application/i18n/po/po-ady/libraries.po new file mode 100644 index 0000000000..e3ab1ae223 --- /dev/null +++ b/application/i18n/po/po-ady/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ady/maintenance.po b/application/i18n/po/po-ady/maintenance.po new file mode 100644 index 0000000000..3fc5159653 --- /dev/null +++ b/application/i18n/po/po-ady/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-ady/message.po b/application/i18n/po/po-ady/message.po new file mode 100644 index 0000000000..8feeacff70 --- /dev/null +++ b/application/i18n/po/po-ady/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-ady/mhi.po b/application/i18n/po/po-ady/mhi.po new file mode 100644 index 0000000000..81fddca250 --- /dev/null +++ b/application/i18n/po/po-ady/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-ady/notifications.po b/application/i18n/po/po-ady/notifications.po new file mode 100644 index 0000000000..340fe6761d --- /dev/null +++ b/application/i18n/po/po-ady/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ady/page.po b/application/i18n/po/po-ady/page.po new file mode 100644 index 0000000000..52749e7c9e --- /dev/null +++ b/application/i18n/po/po-ady/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-ady/permissions.po b/application/i18n/po/po-ady/permissions.po new file mode 100644 index 0000000000..1d806c09d0 --- /dev/null +++ b/application/i18n/po/po-ady/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ady/private_message.po b/application/i18n/po/po-ady/private_message.po new file mode 100644 index 0000000000..3f6a4e3162 --- /dev/null +++ b/application/i18n/po/po-ady/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-ady/report.po b/application/i18n/po/po-ady/report.po new file mode 100644 index 0000000000..16410568d0 --- /dev/null +++ b/application/i18n/po/po-ady/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ady/reporters.po b/application/i18n/po/po-ady/reporters.po new file mode 100644 index 0000000000..709d34f731 --- /dev/null +++ b/application/i18n/po/po-ady/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-ady/reports.po b/application/i18n/po/po-ady/reports.po new file mode 100644 index 0000000000..b3db7c6922 --- /dev/null +++ b/application/i18n/po/po-ady/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-ady/roles.po b/application/i18n/po/po-ady/roles.po new file mode 100644 index 0000000000..fc2ac9f7b7 --- /dev/null +++ b/application/i18n/po/po-ady/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ady/settings.po b/application/i18n/po/po-ady/settings.po new file mode 100644 index 0000000000..47c77627e4 --- /dev/null +++ b/application/i18n/po/po-ady/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ady/sharing.po b/application/i18n/po/po-ady/sharing.po new file mode 100644 index 0000000000..14cc24e214 --- /dev/null +++ b/application/i18n/po/po-ady/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-ady/stats.po b/application/i18n/po/po-ady/stats.po new file mode 100644 index 0000000000..152537a28c --- /dev/null +++ b/application/i18n/po/po-ady/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-ady/tooltips.po b/application/i18n/po/po-ady/tooltips.po new file mode 100644 index 0000000000..b1bc9fa8c6 --- /dev/null +++ b/application/i18n/po/po-ady/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ady/ui_admin.po b/application/i18n/po/po-ady/ui_admin.po new file mode 100644 index 0000000000..f48c721089 --- /dev/null +++ b/application/i18n/po/po-ady/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ady/ui_main.po b/application/i18n/po/po-ady/ui_main.po new file mode 100644 index 0000000000..f9dfe6eea9 --- /dev/null +++ b/application/i18n/po/po-ady/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ady/upgrade.po b/application/i18n/po/po-ady/upgrade.po new file mode 100644 index 0000000000..6eb45d1767 --- /dev/null +++ b/application/i18n/po/po-ady/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 08:50+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Adyghe (http://www.transifex.com/ushahidi/ushahidi-v2/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-af/alerts.po b/application/i18n/po/po-af/alerts.po new file mode 100644 index 0000000000..6b157532f5 --- /dev/null +++ b/application/i18n/po/po-af/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-af/auth.po b/application/i18n/po/po-af/auth.po new file mode 100644 index 0000000000..4ef3a4e405 --- /dev/null +++ b/application/i18n/po/po-af/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-af/bug.po b/application/i18n/po/po-af/bug.po new file mode 100644 index 0000000000..67d9887e5c --- /dev/null +++ b/application/i18n/po/po-af/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-af/category.po b/application/i18n/po/po-af/category.po new file mode 100644 index 0000000000..d33e397edb --- /dev/null +++ b/application/i18n/po/po-af/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-af/comments.po b/application/i18n/po/po-af/comments.po new file mode 100644 index 0000000000..e5c440e240 --- /dev/null +++ b/application/i18n/po/po-af/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-af/contact.po b/application/i18n/po/po-af/contact.po new file mode 100644 index 0000000000..c6ff2e1291 --- /dev/null +++ b/application/i18n/po/po-af/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-af/core.po b/application/i18n/po/po-af/core.po new file mode 100644 index 0000000000..f70b0d22b2 --- /dev/null +++ b/application/i18n/po/po-af/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-af/database.po b/application/i18n/po/po-af/database.po new file mode 100644 index 0000000000..36dbdae4e7 --- /dev/null +++ b/application/i18n/po/po-af/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-af/datetime.po b/application/i18n/po/po-af/datetime.po new file mode 100644 index 0000000000..f801b738fb --- /dev/null +++ b/application/i18n/po/po-af/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-af/feeds.po b/application/i18n/po/po-af/feeds.po new file mode 100644 index 0000000000..9dd9a69897 --- /dev/null +++ b/application/i18n/po/po-af/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-af/footer.po b/application/i18n/po/po-af/footer.po new file mode 100644 index 0000000000..a25c7ba2c7 --- /dev/null +++ b/application/i18n/po/po-af/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-af/form.po b/application/i18n/po/po-af/form.po new file mode 100644 index 0000000000..35787d1e80 --- /dev/null +++ b/application/i18n/po/po-af/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-af/imap.po b/application/i18n/po/po-af/imap.po new file mode 100644 index 0000000000..9cf9d6af3e --- /dev/null +++ b/application/i18n/po/po-af/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-af/installer.po b/application/i18n/po/po-af/installer.po new file mode 100644 index 0000000000..34be33abf2 --- /dev/null +++ b/application/i18n/po/po-af/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-af/layer.po b/application/i18n/po/po-af/layer.po new file mode 100644 index 0000000000..fd725197f6 --- /dev/null +++ b/application/i18n/po/po-af/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-af/libraries.po b/application/i18n/po/po-af/libraries.po new file mode 100644 index 0000000000..5825f2c610 --- /dev/null +++ b/application/i18n/po/po-af/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-af/maintenance.po b/application/i18n/po/po-af/maintenance.po new file mode 100644 index 0000000000..a0f95ea3f0 --- /dev/null +++ b/application/i18n/po/po-af/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-af/message.po b/application/i18n/po/po-af/message.po new file mode 100644 index 0000000000..a041105277 --- /dev/null +++ b/application/i18n/po/po-af/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-af/mhi.po b/application/i18n/po/po-af/mhi.po new file mode 100644 index 0000000000..e251484d48 --- /dev/null +++ b/application/i18n/po/po-af/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-af/notifications.po b/application/i18n/po/po-af/notifications.po new file mode 100644 index 0000000000..3060d8362c --- /dev/null +++ b/application/i18n/po/po-af/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-af/page.po b/application/i18n/po/po-af/page.po new file mode 100644 index 0000000000..b75ae51579 --- /dev/null +++ b/application/i18n/po/po-af/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-af/permissions.po b/application/i18n/po/po-af/permissions.po new file mode 100644 index 0000000000..83d8c9066e --- /dev/null +++ b/application/i18n/po/po-af/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-af/private_message.po b/application/i18n/po/po-af/private_message.po new file mode 100644 index 0000000000..59fb28f6c9 --- /dev/null +++ b/application/i18n/po/po-af/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-af/report.po b/application/i18n/po/po-af/report.po new file mode 100644 index 0000000000..6d037f1240 --- /dev/null +++ b/application/i18n/po/po-af/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-af/reporters.po b/application/i18n/po/po-af/reporters.po new file mode 100644 index 0000000000..2ba2e4ae10 --- /dev/null +++ b/application/i18n/po/po-af/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-af/reports.po b/application/i18n/po/po-af/reports.po new file mode 100644 index 0000000000..00efceecca --- /dev/null +++ b/application/i18n/po/po-af/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-af/roles.po b/application/i18n/po/po-af/roles.po new file mode 100644 index 0000000000..ca78c9b3c8 --- /dev/null +++ b/application/i18n/po/po-af/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-af/settings.po b/application/i18n/po/po-af/settings.po new file mode 100644 index 0000000000..69eb5ae16b --- /dev/null +++ b/application/i18n/po/po-af/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/projects/p/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-af/sharing.po b/application/i18n/po/po-af/sharing.po new file mode 100644 index 0000000000..e8e743d8e0 --- /dev/null +++ b/application/i18n/po/po-af/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-af/stats.po b/application/i18n/po/po-af/stats.po new file mode 100644 index 0000000000..bbcd65b81f --- /dev/null +++ b/application/i18n/po/po-af/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-af/tooltips.po b/application/i18n/po/po-af/tooltips.po new file mode 100644 index 0000000000..f5015c4c88 --- /dev/null +++ b/application/i18n/po/po-af/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-af/ui_admin.po b/application/i18n/po/po-af/ui_admin.po new file mode 100644 index 0000000000..f724e79d79 --- /dev/null +++ b/application/i18n/po/po-af/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-af/ui_main.po b/application/i18n/po/po-af/ui_main.po new file mode 100644 index 0000000000..4c2c34a8af --- /dev/null +++ b/application/i18n/po/po-af/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-af/upgrade.po b/application/i18n/po/po-af/upgrade.po new file mode 100644 index 0000000000..816827b326 --- /dev/null +++ b/application/i18n/po/po-af/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2014-04-22 08:35+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Afrikaans (http://www.transifex.com/ushahidi/ushahidi-v2/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-am/alerts.po b/application/i18n/po/po-am/alerts.po new file mode 100644 index 0000000000..95398d5d0a --- /dev/null +++ b/application/i18n/po/po-am/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Rovcictor , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-05-27 21:43+0000\n" +"Last-Translator: Rovcictor \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "ትክክለኛ መገኛዎትን በካርታው ላይ አልመረጡም" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-am/auth.po b/application/i18n/po/po-am/auth.po new file mode 100644 index 0000000000..3b06d4fb4a --- /dev/null +++ b/application/i18n/po/po-am/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-am/bug.po b/application/i18n/po/po-am/bug.po new file mode 100644 index 0000000000..54bd781ebe --- /dev/null +++ b/application/i18n/po/po-am/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-am/category.po b/application/i18n/po/po-am/category.po new file mode 100644 index 0000000000..fb84b302f1 --- /dev/null +++ b/application/i18n/po/po-am/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-am/comments.po b/application/i18n/po/po-am/comments.po new file mode 100644 index 0000000000..c2ff0ecaf7 --- /dev/null +++ b/application/i18n/po/po-am/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-am/contact.po b/application/i18n/po/po-am/contact.po new file mode 100644 index 0000000000..4de7dc00f4 --- /dev/null +++ b/application/i18n/po/po-am/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-am/core.po b/application/i18n/po/po-am/core.po new file mode 100644 index 0000000000..79742ce7bc --- /dev/null +++ b/application/i18n/po/po-am/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-am/database.po b/application/i18n/po/po-am/database.po new file mode 100644 index 0000000000..c9809c8046 --- /dev/null +++ b/application/i18n/po/po-am/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-am/datetime.po b/application/i18n/po/po-am/datetime.po new file mode 100644 index 0000000000..0c7956a013 --- /dev/null +++ b/application/i18n/po/po-am/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-am/feeds.po b/application/i18n/po/po-am/feeds.po new file mode 100644 index 0000000000..4c61068367 --- /dev/null +++ b/application/i18n/po/po-am/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-am/footer.po b/application/i18n/po/po-am/footer.po new file mode 100644 index 0000000000..d06565f3c7 --- /dev/null +++ b/application/i18n/po/po-am/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-am/form.po b/application/i18n/po/po-am/form.po new file mode 100644 index 0000000000..f994a833f5 --- /dev/null +++ b/application/i18n/po/po-am/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-am/imap.po b/application/i18n/po/po-am/imap.po new file mode 100644 index 0000000000..3f574c71ff --- /dev/null +++ b/application/i18n/po/po-am/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-am/installer.po b/application/i18n/po/po-am/installer.po new file mode 100644 index 0000000000..c4003a7f3e --- /dev/null +++ b/application/i18n/po/po-am/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-am/layer.po b/application/i18n/po/po-am/layer.po new file mode 100644 index 0000000000..2f2ba57329 --- /dev/null +++ b/application/i18n/po/po-am/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-am/libraries.po b/application/i18n/po/po-am/libraries.po new file mode 100644 index 0000000000..7b22b04cbe --- /dev/null +++ b/application/i18n/po/po-am/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-am/maintenance.po b/application/i18n/po/po-am/maintenance.po new file mode 100644 index 0000000000..be67598e44 --- /dev/null +++ b/application/i18n/po/po-am/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-am/message.po b/application/i18n/po/po-am/message.po new file mode 100644 index 0000000000..aa5a8258d6 --- /dev/null +++ b/application/i18n/po/po-am/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-am/mhi.po b/application/i18n/po/po-am/mhi.po new file mode 100644 index 0000000000..1747959084 --- /dev/null +++ b/application/i18n/po/po-am/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-am/notifications.po b/application/i18n/po/po-am/notifications.po new file mode 100644 index 0000000000..a33043ef54 --- /dev/null +++ b/application/i18n/po/po-am/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-am/page.po b/application/i18n/po/po-am/page.po new file mode 100644 index 0000000000..922a901202 --- /dev/null +++ b/application/i18n/po/po-am/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-am/permissions.po b/application/i18n/po/po-am/permissions.po new file mode 100644 index 0000000000..d3e1ff42de --- /dev/null +++ b/application/i18n/po/po-am/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-am/private_message.po b/application/i18n/po/po-am/private_message.po new file mode 100644 index 0000000000..1557eb7ed3 --- /dev/null +++ b/application/i18n/po/po-am/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-am/report.po b/application/i18n/po/po-am/report.po new file mode 100644 index 0000000000..66d0ccb575 --- /dev/null +++ b/application/i18n/po/po-am/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-am/reporters.po b/application/i18n/po/po-am/reporters.po new file mode 100644 index 0000000000..ae42e29d05 --- /dev/null +++ b/application/i18n/po/po-am/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-am/reports.po b/application/i18n/po/po-am/reports.po new file mode 100644 index 0000000000..ae66591c50 --- /dev/null +++ b/application/i18n/po/po-am/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-am/roles.po b/application/i18n/po/po-am/roles.po new file mode 100644 index 0000000000..89db37d010 --- /dev/null +++ b/application/i18n/po/po-am/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-am/settings.po b/application/i18n/po/po-am/settings.po new file mode 100644 index 0000000000..0913b58e0b --- /dev/null +++ b/application/i18n/po/po-am/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Amharic (http://www.transifex.com/projects/p/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-am/sharing.po b/application/i18n/po/po-am/sharing.po new file mode 100644 index 0000000000..e422678340 --- /dev/null +++ b/application/i18n/po/po-am/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-am/stats.po b/application/i18n/po/po-am/stats.po new file mode 100644 index 0000000000..96125cd4cf --- /dev/null +++ b/application/i18n/po/po-am/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-am/tooltips.po b/application/i18n/po/po-am/tooltips.po new file mode 100644 index 0000000000..e11892e134 --- /dev/null +++ b/application/i18n/po/po-am/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-am/ui_admin.po b/application/i18n/po/po-am/ui_admin.po new file mode 100644 index 0000000000..d9a0e1fe3b --- /dev/null +++ b/application/i18n/po/po-am/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-am/ui_main.po b/application/i18n/po/po-am/ui_main.po new file mode 100644 index 0000000000..42f670f0ff --- /dev/null +++ b/application/i18n/po/po-am/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-am/upgrade.po b/application/i18n/po/po-am/upgrade.po new file mode 100644 index 0000000000..2dc956102f --- /dev/null +++ b/application/i18n/po/po-am/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 20:58+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Amharic (http://www.transifex.com/ushahidi/ushahidi-v2/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-ar/alerts.po b/application/i18n/po/po-ar/alerts.po new file mode 100644 index 0000000000..297bf23dcf --- /dev/null +++ b/application/i18n/po/po-ar/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr ".يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "عنوان البريد الإلكتروني مسجل بالفعل لإستقبال التنبيهات لهذه المنطقة" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr ".حقل البريد الإليكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr ".يجب ملء حقل البريد الإلكتروني اذا تم اختيار هذا الحقل" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "هذا الانتشار يمتد داخل دولة واحدة فقط. من فضلك تأكد من موقع التنبيه داخل البلاد %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr ".لم تختر موقع صحيح على الخريطة" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr ".لم تختر موقع صحيح على الخريطة" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr ".لم تختر موقع صحيح على الخريطة" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr ".لم تختر موقع صحيح على الخريطة" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr ".يبدو أن حقل رقم الهاتف المحمول لا يحتوى على العدد المناسب من الأرقام" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr ".هذا الرقم مسجل بالفعل لإستقبال تنبيهات لهذه المنطقة" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr ".يبدو أن الرقم المُدرج في حقل رقم الهاتف المحمول غير سليم. برجاء إدخال الرقم ورمز الدولة" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr ".عليك إدراج إما رقم الهاتف المحمول الخاص بك أو عنوان بريدك الإلكترونى" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr ".يجب ملء هذا الحقل في حال اختيار حقل الهاتف المحمول" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr ".لم تحدد نقطة صحيحة على الخريطة" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr ".لم تحدد النقطة الخاص بك على الخريطة" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "لم تختار اى اسم لمتلقى التنبيهات" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "لقد قمت بالتسجيل فى التنبيهات فى الفئات التالية" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "!لقد تم التحقق من هذا الرمز سابقاً" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr ".لم يتم العثور على رمز التحقق! يجب التأكد من أن لديك الرابط الصحيح" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " لقد تم التحقق من الرمز الخاص بك. الآن ستتلقى التنبيهات الخاصة بالأحداث فور حدوثها" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "للتأكيد على طلبك باستقبال التنبيهات، اذهب إلى" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "العودة إلى صفحة التنبيهات لإنشاء المزيد من التنبيهات" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "طلبك باستقبال تنبيهات على البريد الإليكتروني تم انشاءه وتم إرسال رسالة للتحقق إلى" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr ":برجاء إدخال رمز التحقق الذى استلمته عبر البريد الإلكتروني" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "!لم يتم حفظ طلبك باستقبال تنبيهات على البريد الإلكترونى" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "!تم حفظ طلبك باستقبال تنبيهات على البريد الإلكترونى" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "!لم يتمكن النظام من إجراء طلبك للتحقق" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "طلبك باستقبال تنبيهات على الهاتف المحمول تم إنشاءه وتم إرسال رسالة للتحقق إلى " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr ":برجاء إدخال رمز التحقق الذى استلمته على هاتفك المحمول" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "!لم يتم حفظ طلبك باستقبال تنبيهات على الهاتف المحمول" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "!تم حفظ طلبك باستقبال تنبيهات على الهاتف المحمول" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "هذه الخريطة غير مُعدة بصورة صحيحة لإجراء التنبيهات" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "لقد استلمت هذه الرسالة لأنك اشتركت فى خدمة استقبال التنبيهات. إذا رغبت فى عدم تلقي تنبيهات مستقبلية إذهب إلى " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "لن تستقبل أية تنبيهات بعد الآن من" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr ".لم نتمكن من إلغاء اشتراكك. برجاء التأكد من أن لديك الرابط الصحيح" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "تنبيهات - تحقق" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr ".لن تستقبل تنبيهات من هذه المنطقة حتى تقوم بالتأكيد على هذا الطلب" diff --git a/application/i18n/po/po-ar/auth.po b/application/i18n/po/po-ar/auth.po new file mode 100644 index 0000000000..b65e26236d --- /dev/null +++ b/application/i18n/po/po-ar/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr ".يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr ".عفواً، يوجد حساب مستخدم آخر لهذا البريد الإلكتروني" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr ".حقل البريد الإليكترونى يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr ".يجب إدخال بيانات حقل البريد الإلكترونى" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr ".حقل الاسم يجب أن يحتوى 3 رموز على الأقل ولا يتعدى 100 رمز" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr ".يجب إدخال حقل الاسم بالكامل" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr ".حقل اسم المستخدم يحتوى على رموز غير مسموح بها" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "كلمة المرور يجب ان لا تقل عن 8 حروف." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "برجاء التاكد من ادخال كلمة مرور وبريد اليكترونى صحيح" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "برجاء كتابة كلمة المرور فى الحقلين المخصصين لكلمة المرور" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "حقل كلمة المرور مطلوب" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "حقل كلمة المرور يجب ان يتكون من حروف و # و @ كرموز و ارقام و _ و / فقط." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "كلمة المرور التى ادخلتها لهذا الحساب غير صحيحة. اعد المحاولة." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "كلمة المرور يجب ان لا تقل عن 8 حروف." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "برجاء التاكد من ادخال كلمة مرور وبريد اليكترونى صحيح" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "برجاء كتابة كلمة المرور فى الحقلين المخصصين لكلمة المرور" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "حقل كلمة المرور مطلوب" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "حقل كلمة المرور يجب ان يتكون من حروف و # و @ كرموز و ارقام و _ و / فقط." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "هناك خطأ اثناء عملية الدخول" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "يجب ألا تقل كلمة المرور عن 5 أحرف أو أرقام وألا تزيد على 16 حرف أو رقم" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "تأكد من إدخال كلمة المرور الصحيحة" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr ".أدخل نفس كلمة السر فى الحقلين الخاصين بكلمة المرور" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr ".يجب ملء حقل كلمة المرور" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "هناك مشكلة فى السيرفير. أعد المحاولة" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "حقل كلمة المرور يجب ان يتكون من حروف و # و @ كرموز و ارقام و _ و / فقط." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr ".حقل تأكيد كلمة السر يجب أن تطابق حقل كلمة المسر" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr ".يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr ".ليس لدينا عنوان بريدك الإلكتروني" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr ".يجب ملء حقل البريد الإلكتروني" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "سوبر ادمن فقط يستطيع تعديل مستخدم سوبر ادمن او اعطاء صلاحية ادمن." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr ".صيغة المهمة غير صحيحة" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr ".حقل المهمة يجب أن يحتوى 5 رموز على الأقل ولا يتعدى 30 رمز" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr ".يجب أن تحدد مهمة واحدة على الأقل" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr ".يجب أن تختار مهمة مسئول إداري أو مستخدم" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "رمز استرداد كلمة المرور غير صحيح" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "مطلوب رمز لاسترداد كلمة المرور" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr ".لا يمكن تعديل مهمة اسم المستخدم الإداري" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "الملف الشخصى العام يجب ان يحتوى على ارقام وحروف فقط." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr ".عفواً، هذا اسم قيد الاستخدام" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr ".حقل اسم المستخدم يجب ألا يقل عن رمزين وألا يزيد على 16 رمز" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "تأكد من إدخال اسم المستخدم الصحيح" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr ".يجب ملء حقل اسم المستخدم" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr ".لا يمكن تعديل مهمة المسئول الإداري الأعلى" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "هل تعنى حقا تعديل/أنشا مستخدم؟" diff --git a/application/i18n/po/po-ar/bug.po b/application/i18n/po/po-ar/bug.po new file mode 100644 index 0000000000..5c19660ad5 --- /dev/null +++ b/application/i18n/po/po-ar/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "أدخل رمز سري صحيح" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "أدخل الرمز السري" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr ".حقل البريد الإلكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr ".يجب ملء هذا الحقل في حال اختيار حقل البريد الإلكتروني" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr ".يجب ملء حقل الخطأ" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr ".يجب ألا يقل حقل الموضوع عن 3 رموز" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr ".يجب ملء حقل الموضوع" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr ".يجب ألا يقل حقل الاسم عن 3 رموز" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr ".يجب ملء حقل الاسم" diff --git a/application/i18n/po/po-ar/category.po b/application/i18n/po/po-ar/category.po new file mode 100644 index 0000000000..4fd7d77445 --- /dev/null +++ b/application/i18n/po/po-ar/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr ".يجب ألا يقل حقل اللون عن 6 رموز" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr ".يجب ملء حقل اللون" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr ".يجب ملء حقل التوصيف" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr ".برجاء التأكد أن حجم ملف الصورة لا يتجاوز 50ك.ب" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "JPG, PNG و GIF يبدو أن الحقل الخاص بالصور لا يحتوى على صورة سليمة. إمتدادات الصور المقبولة" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr ".يبدو أن الحقل الخاص بالصور لا يحتوي على ملف صحيح" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr ".حقل العنوان يجب أن يحتوى 3 رموز على الأقل ولا يتعدى 80 رمز" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr ".يجب ملء حقل العنوان" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "لا يمكن وضع فئة فرعية فى فئة مصنفة كفرعية" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr ".التصنيف الأصلي غير موجود" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr ".يجب أن يكون التصنيف الرئيسي رقمي" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "الفئة الرئيسية لا يمكن ان تكون فئة خاصة" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr ".يجب ملء حقل التصنيف الرئيسي" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr ".لا يمكن تطابق التصنيف الفرعي والرئيسي" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "الفئة الخاصة لا يمكن ان تكون فئة فرعية" diff --git a/application/i18n/po/po-ar/comments.po b/application/i18n/po/po-ar/comments.po new file mode 100644 index 0000000000..ee1ce2ba61 --- /dev/null +++ b/application/i18n/po/po-ar/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "أدخل رمز سري صحيح" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "أدخل الرمز السري" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "لقد قمت بادخال رمز سرى خاطئ" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr ".يجب الا يقل حقل الاسم عن 3 رموز" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr ".يجب ملء حقل الاسم" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr ".يجب ملء حقل التعليقات" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr ".يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr ".حقل البريد الإلكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr ".يجب ملء حقل البريد الإلكتروني اذا تم اختيار هذا الحقل" diff --git a/application/i18n/po/po-ar/contact.po b/application/i18n/po/po-ar/contact.po new file mode 100644 index 0000000000..130814684c --- /dev/null +++ b/application/i18n/po/po-ar/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "أدخل رمز سري صحيح" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "برجاء ادخال رمز سرى صحيح" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "أدخل الرمز السري" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr ".يبدو أن العنوان المُدرج في حقل البريد الإلكتروني غير صحيح" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr ".حقل البريد الإلكتروني يجب أن يحتوي 4 رموز على الأقل ولا يتعدى 64 رمز" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr ".يجب ملء حقل البريد الإلكتروني إذا تم اختيار هذا الحقل" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr ".يجب ملء حقل الرسالة" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr ".يجب أن يحتوى حقل الاسم على 3 رموز على الأقل" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "يجب ملء حقل الاسم" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "يجب ألا يقل حقل الموضوع عن 3 رموز" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr ".يجب ملء حقل موضوع الرسالة" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "هناك خطأ فى ارسال رسالتك" diff --git a/application/i18n/po/po-ar/core.po b/application/i18n/po/po-ar/core.po new file mode 100644 index 0000000000..64412d7f31 --- /dev/null +++ b/application/i18n/po/po-ar/core.po @@ -0,0 +1,160 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Robbie MacKay , 2013 +# Mohannad Zalloom , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-18 21:07+0000\n" +"Last-Translator: Robbie MacKay \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "ملف التكوين" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "المتحكم" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "السائق" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver for the %s library must implement the %s interface" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "The %s driver for the %s library could not be found" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "يمكنك الذهاب إلى home page or try again." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "لم نتمكن من استكمال طلبك" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "المساعد" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "The requested filetype, .%s, is not allowed in your view configuration file" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "طريقة غير صالحة تم طلبها في %s %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "الخاصية %s غير موجود في الكلاس %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "المكتبة" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "لا يمكن الكتابة على هذا السجل %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "نموذج" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "أوشاهيدى لم تتمكن من إيجاد متحكم للإستمرار فى إجراءات الطلب %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "يرجى تحديد مسار تلقائي في الاعداد / routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "لم يتم إيجاد الصفحة التى طلبتها" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "أرسل هذه المشكلة إلى يوشاهيدي" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "The requested %s, %s, could not be found" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "تتبع الكومة " + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "تم التحميل في {execution_time} ثانية, باستخدام {memory_usage} من الذاكرة. المصدر يوشاهيدي النسخة رقم %s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "rtl" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "يجب ان يكون هناك طلب واحد فقط لأوشاهيدى للصفحة الواحدة" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "مشكلة %s: %s في الملف %s في السطر %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "معاينة" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "You must set the the view filename before calling render" diff --git a/application/i18n/po/po-ar/database.po b/application/i18n/po/po-ar/database.po new file mode 100644 index 0000000000..0363cd32f3 --- /dev/null +++ b/application/i18n/po/po-ar/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "خطأ في قاعدة البيانات" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "لم يمكن إيجاد الجدول فى قاعدة البيانات. برجاء التأكد من استخدام أحدث إصداره من قاعدة البيانات لهذه الإصداره من يوشاهيدي" diff --git a/application/i18n/po/po-ar/datetime.po b/application/i18n/po/po-ar/datetime.po new file mode 100644 index 0000000000..1d2daa088c --- /dev/null +++ b/application/i18n/po/po-ar/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "صباحاً" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "الجمعة" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "الجمعة" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "الاثنين" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "الاثنين" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "مساءً" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "السبت" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "السبت" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "الأحد" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "الأحد" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "الخميس" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "الخميس" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "الثلاثاء" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "الثلاثاء" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "الأربعاء" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "الأربعاء" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "يناير" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "يناير" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "فبراير" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "فبراير" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "مارس" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "مارس" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "ابريل" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "ابريل" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "مايو" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "مايو" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "يونيو" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "يونيو" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "يوليو" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "يوليو" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "اغسطس" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "اغسطس" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "سبتمبر" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "سبتمبر" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "اكتوبر" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "اكتوبر" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "نوفمبر" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "نوفمبر" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "ديسمبر" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "ديسمبر" diff --git a/application/i18n/po/po-ar/feeds.po b/application/i18n/po/po-ar/feeds.po new file mode 100644 index 0000000000..ed43c72fc9 --- /dev/null +++ b/application/i18n/po/po-ar/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "التاريخ" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "حقل التغذية المرجعية يجب أن يحتوى على الأقل 3 حروف \n\t\t\tولا يزيد عن 70 حرف" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "أدخل اسم التغذية المرجعية" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "أدخل رابط التغذية المرجعية" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "أدخل رابط فعّال. Eg. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "المصدر" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "العنوان" diff --git a/application/i18n/po/po-ar/footer.po b/application/i18n/po/po-ar/footer.po new file mode 100644 index 0000000000..ab054a23fc --- /dev/null +++ b/application/i18n/po/po-ar/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Mohannad Zalloom , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl غير مثبت على هذا النظام." diff --git a/application/i18n/po/po-ar/form.po b/application/i18n/po/po-ar/form.po new file mode 100644 index 0000000000..4109e1244e --- /dev/null +++ b/application/i18n/po/po-ar/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "القيمة الافتراضية التى وضعتها غير مقبولة" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "اسم الحقل يجب ألا يقل عن 3 حروف وألا يزيد عن 200 حرف" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "لتحديد طول الحقل أدخل قيمة من 0 إلى 50" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "لقد أدخلت قيمة غير صالح فى الحقل الخاص بالتاريخ" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "حدد نعم أو لا للحقل الخاص بالتاريخ" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "اسم الحقل يجب ألا يقل عن 3 حروف وألا يزيد عن 100 حرف" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "أدخل اسم الحقل" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "اسم الحقل الذي أدخلته موجود مسبقا على هذا النموذج. من فضلك ادخل احد آخر." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "لقد أدخلت قيمة غير صالحة للحقل المطلوب" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "حدد نعم أو لا للحقل المطلوب" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "حدد نوع حقل صحيح" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "حدد نوع الحقل" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "لتحديد عرض الحقل أدخل قيمة من 0 إلى 300" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "أدخل توصيف النموذج" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "لا يمكن حذف النموذج الأصلى" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "حدد النموذج الذى تريد إضافة هذا الحقل إليه" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "حدد النموذج الذى تريد إضافة هذا الحقل إليه" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "حقل اسم النموذج يجب ان يحتوى على الأقل 3 حروف ويجب ألا يزيد على 100 حرف." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "أدخل اسم النموذج" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "نموذج مع هذا العنوان موجود مسبقا. يرجى اختيار اسم آخر." diff --git a/application/i18n/po/po-ar/imap.po b/application/i18n/po/po-ar/imap.po new file mode 100644 index 0000000000..8ecefa9457 --- /dev/null +++ b/application/i18n/po/po-ar/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAP Stream لم نتمكن من تشغيل" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "خدمات البريد الإليكترونى غير متوفرة" diff --git a/application/i18n/po/po-ar/installer.po b/application/i18n/po/po-ar/installer.po new file mode 100644 index 0000000000..5d709c8d3c --- /dev/null +++ b/application/i18n/po/po-ar/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "مسار القاعدة" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "قاعدة البيانات" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "مضيف قاعدة البيانات" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "إن كنت تشغل أوشاهيدى من على الحاسب الخاص بك، ستكون عاملاً على المضيف المحلى. إن كنت تشغل أوشاهيدى من على خادم ويب، ستحصل معلومات عن المضيف من موفر الخدمة لديك" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "اسم قاعدة البيانات" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "اسم قاعدة البيانات التى تريد تشغيل أوشاهيدى من خلالها" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "للمزيد من المعلومات, تحقق من this article on the wiki that talks about databases in more detail" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "(اللغة الأساسية (محلية" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "إيقاف" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "تشغيل" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "التالى قائمة بالمشكلات التى واجهناها" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "مكان وضع الملفات الخاصة بأوشاهيدى على الخادم الخاص بك. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "انتهى" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "عام" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "يمكن لأى أحد الحصول على api مفتاح. Get yours now" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "العودة" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "تنصيب متقدم" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "قم بإكمال الإعدادات الأساسية في 5 خطوات. تتضمن الإعدادات: الخادم، الخريطة، اسم الموقع، وتفاصيل الاتصال" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "التنصيب والإعدادات الأساسية" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "كل ما تحتاجه هو الدليل الجذر لموقعك الإليكتروني ومعلومات قاعدة البيانات الخاصة بك. اختر هذا الخيار إذا كنت تريد التنفيذ بسرعة، ويمكنك دائماً العودة لضبط كل شيء في وقت لاحق" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "تقدم" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "مرحباً بك فى عمليات إنشاء خادم أوشاهيدى، اختر نوع الإعداد الذى تراه مناسباً فى الأسفل" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "نجح التنصيب" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "خادم البريد" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "مضيف خادم البريد" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "أمثلة: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "كلمة المرور لخادم البريد" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "كلمة المرور المعتادة التى تستخدمها للدخول إلى بريدك الإليكترونى" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "منفذ خادم البريد" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "نوع خادم البريد" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "اسم المستخدم لخادم البريد" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "قم بإدخال عنوان بريد إليكتروني كامل كاسم مستخدم، إذا كنت تستخدم أي من\nGmail/Hotmail/Yahoo Mail" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "خريطة" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "موفر الخرائط" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "أوشاهيدى تعمل بفاعلية مع كل من موفرى الخرائط التاليين: Google, Bing, Yahoo or Open Street Map. اختر الموفر الأكثر تفصيلاً فى منطقتك" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "...خطوات أخرى" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "كلمة المرور" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "كلمة المرور الخاصة بقاعدة البيانات الخاصة بك" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "السابق" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "الرجاء إعادة تشغيل الخادم أباتشي" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "SSL تمكين أو تعطيل" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "قم بإعداد خادم الرسائل القصيرة" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "البريد الإليكتروني للموقع" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "تنبيهات الموقع البريدية" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "عندما يقوم زوار موقعك بالتسجيل لاستقبال التنبيهات الإليكترونية، سيتم الاستقبال من هذا العنوان. ليس من الضروري أن يتطابق هذا العنوان البريدي مع العنوان البريدي للموقع" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "سيتم توجيه أي مراسلات من على الموقع عبر هذا البريد الإليكتروني" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "اسم الموقع" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "اسم الموقع الخاص بك" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "(Tagline) مانشيت الموقع" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "(Tagline) المانشيت الخاص بك" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "يجب التأكد من قدرة خادم الويب الخاص بك على كتابة الملفات التالية " + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

هذه هى التعليمات الخاصة بتغيير تصريحات الملفات:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "قبل أن تبدأ، تأكد من قدرة خادم الويب الخاص على كتابة الملفات الآتية. هذا يتضمن تغيير تصريحات الملفات" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "من أجل عملية التنصيب، تأكد من وجود المعلومات التالية" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Table Prefix بادئة الجدول" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "عادة لا تحتاج لتغيير بادئة الجدول. ومع ذلك، إذا كنت ترغب في تشغيل العديد من تنصيبات أوشاهيدي من قاعدة بيانات واحدة، يمكنك أن تفعل ذلك عن طريق تغيير البادئة هنا" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "العنوان" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "للدخول، اذهب إلى" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "تحميل بيانات التقرير" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "اسم المستخدم" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "اسم مستخدم قاعدة البيانات الخاص بك" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "واستخدم بيانات التفويض التالية" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "عرض موقع الويب الخاص بك" diff --git a/application/i18n/po/po-ar/layer.po b/application/i18n/po/po-ar/layer.po new file mode 100644 index 0000000000..cd82910358 --- /dev/null +++ b/application/i18n/po/po-ar/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "يجب ان يحتوى حقل اللون على 6 حروف" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "يجب إدخال حقل اللون" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "لايبدو ان حقل الملفات يحتوى على ملف صالح. The only accepted formats are .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "لا يبدو ان هذا الحقل يحتوى على قيمة صالحة" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "يجب ان يحتوى حقل الاسم على الأقل 3 حروف وليس اكثر من 80 حرف" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "يجب إدخال حقل الإسم" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "يجب إدخال رابط KML أو ملف" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "لا يمكنك الحصول على ملف KML ورابط فى نفس الوقت" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "أدخل رابط صحيح. Eg. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-ar/libraries.po b/application/i18n/po/po-ar/libraries.po new file mode 100644 index 0000000000..6752602b6f --- /dev/null +++ b/application/i18n/po/po-ar/libraries.po @@ -0,0 +1,119 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Akismet لم يمكن الاتصال بخادم" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Akismet لم يمكن الحصول على استجابة من " + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Your Akismet API key is not valid" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "=رسالة الكود الموحد طويلة للغاية! (الطول الحالى" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "حدد عنوان الجهة المقصودة (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "حدد عنوان جهة المصدر (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "=رسالة الكود الموحد طويلة للغاية! (الطول الحالى" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "طريقة إرسال غير صحيحة" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s could not be deleted" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "خطأ اثناء التحميل: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Downloading the latest ushahidi failed. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s could not be copied" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s could not be deleted" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "مخطوطة تحديث الأوشاهيدى" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "The downloaded ushahidi zip file %s, could not be written" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ar/maintenance.po b/application/i18n/po/po-ar/maintenance.po new file mode 100644 index 0000000000..382084c987 --- /dev/null +++ b/application/i18n/po/po-ar/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Mohannad Zalloom , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "عذرا، موقعنا حاليا متوقف لأعمال الصيانة. يرجى المحاولة مرة أخرى في بضع دقائق." diff --git a/application/i18n/po/po-ar/message.po b/application/i18n/po/po-ar/message.po new file mode 100644 index 0000000000..828ca74cff --- /dev/null +++ b/application/i18n/po/po-ar/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "أدخل رمز أمنى صحيح" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "أدخل الرمز الأمنى" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "حقل البريد لإليكترونى لايحتوى على عنوان بريد إليكترونى صالح" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "حقل البريد الإليكترونى يجب ألا يقل عن 4 حروف ولا يزيد عن 64 حرف او رقم" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "يجب ملء حقل البريد الإليكترونى ان تك اختيار هذا الحقل" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "يجب ملء حقل التعيقات" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "يجب ان يحتوى حقل الاسم على الأقل 3 حروف" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "يجب ملء حقل الإسم" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "حقل التليفون غير صالح" diff --git a/application/i18n/po/po-ar/mhi.po b/application/i18n/po/po-ar/mhi.po new file mode 100644 index 0000000000..110718a20c --- /dev/null +++ b/application/i18n/po/po-ar/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr ".برجاء إدخال كود أمان صحيح" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr ".برجاء إدخال كود الأمان" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "حقل البريد الإليكتروني لا يحتوي على عنوان صحيح" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "برجاء إدخال عنوان بريد إليكتروني صحيح" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr ".الرسالة حقل مطلوب" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr ".حقل الرسالة يجب أن يكون 3أحرف على الأقل" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr ".الموضوع حقل مطلوب" diff --git a/application/i18n/po/po-ar/notifications.po b/application/i18n/po/po-ar/notifications.po new file mode 100644 index 0000000000..ca35b2fdad --- /dev/null +++ b/application/i18n/po/po-ar/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "تم إرسال هذه الرسالة من الموقع الخاص بك" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "دخول المسئول الإدارى" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "تعليق جديد تم وضعه على الموقع الخاص بك رداً على:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "تعليق جديد" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "رسالة بريد إليكترونى جديدة تم وضعها على الموقع الخاص بك" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "رسالة بريد إليكترونى جديدة" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "تقرير جديد تم إرساله الى الموقع الخاص بك" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "تقرير جديد" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "رسالة نصية جديدة تم وضعها على الموقع الخاص بك" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "رسالة نصية جديدة" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "لقد قمت باستقبل تنبيهة جديد" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "تنبية جديد" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "لديك رسالى خاصة" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "رسالة خاصة جديدة" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "للرد اذهب الى:" diff --git a/application/i18n/po/po-ar/page.po b/application/i18n/po/po-ar/page.po new file mode 100644 index 0000000000..4df16faf2a --- /dev/null +++ b/application/i18n/po/po-ar/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "برجاء كتابة اسم الصفحة" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "عنوان الصفحة يجب ان يحتوى على 3 حروف على الاقل و150 حرف كحد اقصى" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "برجاء كتابة اسم الصفحة" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "برجاء كتابة وصف الصفحة" diff --git a/application/i18n/po/po-ar/permissions.po b/application/i18n/po/po-ar/permissions.po new file mode 100644 index 0000000000..1c44693001 --- /dev/null +++ b/application/i18n/po/po-ar/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Mohannad Zalloom , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "عرض التقارير" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "إنشاء / تحرير / حذف تقارير" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "الموافقة على تقارير" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "تحقق من التقارير" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "إدارة التعليقات" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "تنزيل التقارير" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "رفع التقارير" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "إدارة الرسائل" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "إدارة مراسلون الرسالة" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "عرض الإحصاءات" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "تعديل الإعدادات" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "إدارة اللوحة" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "إدارة المستخدمين" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "إدارة الأدوار" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "يستطيع الاختيار" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "إدارة الاختيارات" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "الدخول إلى واجهة المستخدم المسؤول " + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr " الدخول إلى واجهة المستخدم الأعضاء" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ar/private_message.po b/application/i18n/po/po-ar/private_message.po new file mode 100644 index 0000000000..d18d2c1951 --- /dev/null +++ b/application/i18n/po/po-ar/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Mohannad Zalloom , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "يجب أن تكون هوية الأم عددية" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "حقل إلى مطلوب" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "المستخدم الذي يتم محاولة إرسال رسالة إليه غير موجود" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "حقل الموضوع مطلوب" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "الموضوع يجب أن يكون بين 3 و 150 حرفا" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "حقل الرسالة مطلوب " diff --git a/application/i18n/po/po-ar/report.po b/application/i18n/po/po-ar/report.po new file mode 100644 index 0000000000..aadc8a0720 --- /dev/null +++ b/application/i18n/po/po-ar/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Ahmed Nagy Zekry , 2013 +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "!خطأ" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "هذا الانتشار يمتد داخل دولة واحدة فقط. يرجى التأكد من الموقع التقرير هو داخل البلاد %s" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "اختر مادة سارية المفعول لوضعها ضمن ملفات التحميل" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "اختر مادة سارية المفعول لوضعها ضمن ملفات التحميل" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "برجاء اختيار \"تقارير فى انتظار الموافقة\" او \" تقارير تم الموافقة عليها\" او الاثنين" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "برجاء اختيار \"تقارير فى انتظار الموافقة\" او \" تقارير تم الموافقة عليها\" او الاثنين" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "برجاء اختيار \"تقارير فى انتظار الموافقة\" او \" تقارير تم الموافقة عليها\" او الاثنين" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "برجاء اختيار \"تقارير فى انتظار التحقق\" او \" تقارير تم التحقق منها\" او الاثنين" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "برجاء اختيار \"تقارير فى انتظار التحقق\" او \" تقارير تم التحقق منها\" او الاثنين" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "برجاء اختيار \"تقارير فى انتظار التحقق\" او \" تقارير تم التحقق منها\" او الاثنين" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "اختر تقرير سارى المفعول لتحميله" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "اختر تقرير سارى المفعول لتحميله" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "اختر تقرير سارى المفعول لتحميله" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "يرجي اختيار امتداد صالح لتحميل تقاريرك" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "حقل التاريخ من لايحتوى على قيمة صالحة" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "أدخل قيمة صالحة فى حقل التاريخ من. لايمكن لهذه القيمة أن تتعدى اليوم" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "أدخل قيمة صالحة للموافقة على هذا التقرير" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "أدخل قيمة صالحة للموافقة على هذا التقرير" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "لا يبدو ان الحقل الخاص بالفترة الصباحية/المسائية يحتوى على قيمة صالحة" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "لا يبدو ان الحقل الخاص بالفئة يحتوى على قيمة صالحة" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "يجب ملء الحقل الخاص بالفئة" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "لا يبدو ان حقل التاريخ يحتوى على قيمة صالحة" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "لا يبدو ان حقل التاريخ يحتوى على قيمة صالحة" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "يجب ملء حقل التاريخ" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "يجب ملء حقل التوصيف" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "لا يبدو ان حقل الساعات يحتوى على قيمة صالحة" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "يجب ملء الحقل الخاص بالساعات" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "ادخل قيمة صالحة لإحتمالية مصداقية المعلومة" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "ادخل قيمة صالحة لإحتمالية مصداقية المعلومة" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "لا يبدو ان حقل الدقائق يحتوى على قيمة صالحة" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "يجب ملء الحقل الخاص بالدقائق" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "لا يبدو ان الحقل الخاص برابط مصدر الخبر يحتوى على قيمة صالحة" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "حجم ملفات الصور المرفوعة يجب ألا تتعدى 2 م.ب" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "لايبدو ان حقل رفع الصور يحتوى على ملفات صالحة. The only accepted formats are .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "لايبدو ان حقل رفع الصور يحتوى على ملفات صالحة" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "ادخل قيمة صالحة لموثوقية المصدر" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "ادخل قيمة صالحة لموثوقية المصدر" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "حقل العنوان يجب ان يحتوى على الأقل 3 وألا يزيد على 200 حرف" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "يجب ملء حقل العنوان" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "هل تقصد حقا تعديل او انشأ تقرير؟" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "أدخل قيمة صالحة للتحقق من صلاحية هذا التقرير" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "أدخل قيمة صالحة للتحقق من صلاحية هذا التقرير" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "لا يبدو ان حقل روابط الفيديو تحتوى على قيمة صالحة" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "لا يبدو ان الحقل الخص بخطوط العرض يحتوى على قيمة صالحة" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "يجب ملء الحقل الخاص بخطوط العرض. أنقر على الخريطة لتحديد المكان" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "حقل المكان يحتوى على قيمة غير صالحة" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "هذا التقرير لديه بالفعل ترجة بهذه اللغة" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "حقل المكان يحتوى على قيمة غير صالحة " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "التقرير الأصلى والترجمة لديهما نفس المكان (language)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "يجب تحديد مكان" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "يجب ان يحتوى حقل اسم المكان على الأقل 3 وألا يزيد على 200 حرف" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "يجب ملء حقل اسم المكان" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "لا يبدو ان الحقل الخاص بخطوط الطول يحتوى على قيمة صالحة" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "يجب ملء الحقل الخاص بخطوط الطول. أنقر على الخريطة لتحديد المكان" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "لايبدو ان حقل البريد الإليكترونى يحتوى على عنوان بريدى صالح" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "حقل البريد الإليكترونى يجب ألا يقل عن 4 وألا يزيد عن 64 حرف" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "حقل الإسم الأول يجب ألا يقل عن 3 وألا يزيد عن 100 حرف" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "حقل الإسم الأخير يجب ألا يقل عن 3 وألا يزيد عن 100 حرف" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "حقل التاريخ إلى لايحتوى على قيمة صالحة" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "أدخل قيمة صالحة فى حقل التاريخ إلى. لايمكن لهذه القيمة ان تتعدى اليوم" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "حقل التاريخ من لايمكن أن يتعدى التاريخ الحالى" diff --git a/application/i18n/po/po-ar/reporters.po b/application/i18n/po/po-ar/reporters.po new file mode 100644 index 0000000000..598e759c86 --- /dev/null +++ b/application/i18n/po/po-ar/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "حقل خط العرض يحتوي على قيمة تبدو غير صالحة" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "خط العرض مطلوب. برجاء النقر على الخريطة لتحديد مكان" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "حقل مستوى المراسل يحتوي على قيمة تبدو غير صالحة" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "حقل مستوى المراسل يحتوي على قيمة تبدو غير صالحة" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr ".حقل اسم المكان يجب ألا يقل عن 3 أحرف ولا يزيد عن 200 حرف" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr ".حقل اسم المكان مطلوب" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "حقل خط الطول يحتوي على قيمة تبدو غير صالحة" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "خط الطول مطلوب. برجاء النقر على الخريطة لتحديد مكان" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "مراسل غير صالح" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "مراسل غير صالح" diff --git a/application/i18n/po/po-ar/reports.po b/application/i18n/po/po-ar/reports.po new file mode 100644 index 0000000000..84d558466f --- /dev/null +++ b/application/i18n/po/po-ar/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Farid Boushra <>, 2014 +# Mohannad Zalloom , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-05-17 11:33+0000\n" +"Last-Translator: Farid Boushra <>\n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "يرجى التحقق من انك قد قمت باختيار عنصر" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "يرجى التحقق من انك قد قمت باختيار عنصر" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "التقارير يجب أن تصنف قبل أن يتم الموافقة عليها" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "أنك لا تملك إذن لتنفيذ هذا الإجراء" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "يجب ان تختار ملف للتحميل" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "الملف يجب ان يكون بصيغة .CSV او .XML" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "يبدو ان الملف يحتوى على حقول غير صالحة" diff --git a/application/i18n/po/po-ar/roles.po b/application/i18n/po/po-ar/roles.po new file mode 100644 index 0000000000..b107974ab8 --- /dev/null +++ b/application/i18n/po/po-ar/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr ".حقل الوصف يجب ألا يقل عن 3 أحرف ولا يزيد عن 100 حرف" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr ".حقل الوصف مطلوب" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr ".حقل الاسم يجب أن يحتوي على أرقام أو حروف فقط" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr ".حقل الاسم يجب ألا يقل عن حرفين ولا يزيد عن 30 حرف" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr ".لا يمكن تعديل دور الإداري الأعلى" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr ".حقل الاسم مطلوب" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "حقل الصلاحيات يجب ان يحتوى رقم من 0 - 100" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "حقل الصلاحيات يجب ان يحتوى رقم من 0 - 100" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "حقل الصلاحيات يجب ان يحتوى رقم من 0 - 100" diff --git a/application/i18n/po/po-ar/settings.po b/application/i18n/po/po-ar/settings.po new file mode 100644 index 0000000000..6c82dcaf54 --- /dev/null +++ b/application/i18n/po/po-ar/settings.po @@ -0,0 +1,861 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Ahmed Nagy Zekry , 2012 +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/projects/p/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "حقل التعليقات المسموحة لايحتوى على قيمة صالحة" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "يجب ملء حقل التعليقات المسموحة" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "حقل التنبيهات المسموحة لن تظهر لاحتوائها على قيمة خاطئة." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "حقل التنبيهات المسموحة مطلوب." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "حقل التقارير المسموحة لايحتوى على قيمة صالحة" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "يجب ملء حقل التقارير المسموحة" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "حقل ابدأ المشاركة مطلوب" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "حقل صفحات الكاش مطلوبة." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "حقل صفحات الكاس لن تظهر لاحتوائها على قيمة خاطئة" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "حقل مدة صفحات الكاش لن تظهر لاحتوائها على قيمة خاطئة" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "حقل مدة صفحات الكاش مطلوب" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "الخادم الخاص بم غير معرف على التعامل مع خاصية الروابط النظيفة. ستحتاج لتغيير خصائص الخادم الخاص بك ليتعامل مع خاصية الروابط النظيفة. تعرف على المزيد حول كيفية التعامل مع خاصية الروابط النظيفة بالذهاب إلىche-mod-rewrite\" target=\"_blank\">post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "هذه الخاصية تمكن من الولوج إلى أوشاهيدى من خلال الروابط النظيفة. Without \"index.php\" in the URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "تشغيل الروابط النظيفة" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "الروابط النظيفة" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "تكوين الخريطة" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "المكان الأصلى" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "حقل التغذية المرجعية بحسب اللون لا تحتوى على قيمة صالحة" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "حقل اللون يجب الا يتعدى 6 حروف" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "يجب ملء حقل اللون" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "الرؤية الأصلية للخريطة" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "مستوى التقريب الافتراضي" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "الحصول على المدن من الأسماء الجغرافية" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "محتوى حقل ميناء خادم البريد طويل" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "يجب ان يحتوى حقل ميناء خادم البريد على ارقام فقط" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "حقل كلمة المرور يجب ألا يقل عن 5 ولا يزيد عن 50 حرف" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "يجب ملء حقل كلمة المرور لخادم البريد" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "محتوى حقل ميناء خادم البريد طويل" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "يجب ان يحتوى حقل ميناء خادم البريد على ارقام فقط" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "محتوى حقل ميناء خادم البريد طويل" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "يجب ملء حقل نوع خادم البريد" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "حقل اسم المستخدم لخادم البريد يجب ألا يزيد عن 50 حرف" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "يجب ملء حقل اسم المستخدم لخادم البريد" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "خيارات الفيس بوك" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "لكى تحصل على المعلومات بالاسفل يجب ان تنشئ تطبيق للفيس بوك على" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "حقل تحليات جوجل يجب ان تحتوى على هوية صحيحة لملكية الويب بالهيئة الآتية UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "تشغيل HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "حقل البنود الصفحة الواحدة للواجهة لايحتوى على قيمة صالحة" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "يجب ملء حقل بنود الصفحة الواحدة للواجهة" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "حقل بنود الصفحة الواحدة للمسئول الإدارى لاتحتوى على قيمة صالحة" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "يجب ملء حقل بنود الصفحة الواحدة للمسئول الإدارى" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "مستوى التقريب" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "اختار موفر خرائط" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "أدخل مفتاح API جديد" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "أحصل على API مفتاح" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "إعداد موفر الخرائط الخاص بك هى عملية مباشرة. اختار موفر خرائط, أحصل على مفتاح API من الموقع, ثم أدخل هذا المفتاح" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "موفر الخرائط" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "سجل احداث الخريطة" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "إعدادات الخريطة" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "الدولة الأصلية" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "اضغط واسحب الخريطة لتحدد مكانك" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "جمع التقارير على الخريطة" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "صرح للمستخدمين بوضع تعليقات على التقارير" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "السماح بإرسال آخر الأخبار بنظام آر إس إس" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "اسمع بالمستخدمين باستقبال التنبيهات" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "صرح للمستخدمين بإصدار تقارير" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "بانر الموقع" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "المربعات بالصفوف" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "صفحات الكاش" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "اسمح بسجل الدخول" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "اسمح بسجل الدخول" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "موقف حقوق الملكية بالموقع" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "وضع لون أساسى لكل الفئات" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "ايقونة لكل الفئات الافتراضية" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "امسح صورة البانر" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "امسح الايقونى الافتراضية" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "اعرض صفحة معلومات الاتصال" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "اعرض صفحة كيف يمكننا المساعدة" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "عنوان البريد الإليكترونى الخاص بالتنبيهات" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "البريد الإليكترونى للموقع" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "تحاليل جوجل" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "هوية ملكية الشبكة - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "بنود الصفحة الواحدة - الواجهة النهائية" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "بنود الصحفة الواحدة - المسئول الإدارى" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "لغة الموقع" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "وافق على المستخدمين يدوى" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "رسالة الموقع" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "اسم الموقع" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "جعل التطبيق خاص" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "مطلوب تأكيد البريد الاليكترونى للمستخدم" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "ارسل تقرير" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Share Site Statistics in API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "سطر الوسم" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "الطاق الزمنى" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "إعدادات الموقع" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "اعتماد رسائل التويتر" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "الوسوم المختلطة - الفصل بفواصل " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "حقل البريد الإليكترونى للموقع لا يحتوى على قيمة صالحة" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "حقل البريد الإليكترونى للموقع يجب ألا يقل عن 4 وألا يزيد عن 100" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "حقل اسم الموقع يجب ألا يقل عن 3 والا يزيد عن 50 حرف" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "يجب ملء حقل اسم الموقع" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "حقل سطر الوسم يجب ألا يقل عن 3 وألا يزيد عن 100 حرف" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "يجب ملء حقل سطر الوسم" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Clickatell كلمة المرور" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "أدخل رقم (أرقام) الهاتف المتصلة ب Frontline SMS في الحقول ادناه" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "أدخل رقم دون أي + أو شرطات أدناه" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "الأختيار 1: استخدم Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "الأختيار 2: استخدم Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "خيارات تشغيل خدمة الرسائل القصيرة" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "لايبدو ان حقل التليفون 1 يحتوى على قيمة صالحة" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "حقل التليفون 1 يجب ان يحتوى على ارقام فقط" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "محتويات حقل التليفون 2 طويلة" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "حقل التليفون 2 يجب ان يحتوى على ارقام فقط" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "محتويات حقل التليفون 3 طويلة" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "يجب ان يحتوى على حقل التليفون 3 على ارقام فقط" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ar/sharing.po b/application/i18n/po/po-ar/sharing.po new file mode 100644 index 0000000000..54b31fff91 --- /dev/null +++ b/application/i18n/po/po-ar/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "تاريخ الدخول" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "تاريخ الإضافة" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "آخر دخول كان بتاريخ" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr ".حقل اللون يجب أن يحتوى على 6 أحرف" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr ".يجب ملء حقل اللون" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr ".اسم المشاركة لا يبدو صحيحاً" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr ".اسم المشاركة حقل مطلوب" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "رابط الموقع موجود بالفعل" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr ".رابط الموقع لا يبدو صالحاً" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr ".رابط الموقع حقل مطلوب" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr ".حقل رابط الموقع يحتوي على رابط لا يبدو صالحاً" diff --git a/application/i18n/po/po-ar/stats.po b/application/i18n/po/po-ar/stats.po new file mode 100644 index 0000000000..972130d651 --- /dev/null +++ b/application/i18n/po/po-ar/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "موافق عليه" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "الفئات" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "تأثير الفئة" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "إختر تاريخ الفترة" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "الدول" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "الدولة" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "تعطل فى الدولة" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "هنا قسم الاحصائات والتى سوف تحتوى على الوصف العام و لكن الان يمكنك التصفح باستخدام الفئات الفرعية من الرابط بالاعلى" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "خطأ" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "قاموس المصطلحات" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "اضغط على الملخص" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "أسطورة" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "مشاهدات الصفحة" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "إجمالى الصحفات التى إطلع عليها زوار الموقع" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "التقارير" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "فئات التقارير" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "إحصائيات التقارير" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "حالة التقرير" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "تقارير مدفوعة" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "إحصائيات التقارير" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "لم يتم إعداد الإحصائيات" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 شهر" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 شهر" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 شهر" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "الكل" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "لم يتم الموافقة عليه" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "زوار مميزين" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "The number of individuals coming to your deployment; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "لم يتم التحقق منه" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "تم التحقق منه" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "ملخص عن الزائر" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "الزيارات" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "الزيارة هى سجل للزوار المميزين والتى تتعدى مدة رؤيتهم لصفحة الموقع 30 دقيقة" diff --git a/application/i18n/po/po-ar/tooltips.po b/application/i18n/po/po-ar/tooltips.po new file mode 100644 index 0000000000..8f57b206c7 --- /dev/null +++ b/application/i18n/po/po-ar/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "ويضيف هذا التقرير إلى فئات إضافية. إذا قمت بتحديد الفئة 1 هنا والتقرير بالفعل الفئة 2 مرفقة به، فإن التقرير سوف يكون بعد ذلك كل من الفئة 1 والفئة 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "يوافق على تقرير أم لا. إذا تمت الموافقة عليها، سوف تظهر على الملأ." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "هل سيكون قادرا على تعيين شارة للمستخدم مما اثار. اختيار شارة أن يحصل على تعيين هنا." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "هذه هي المدى من الساعات و / أو الدقائق بين الوقتين في شكل 24 ساعة. إذا كنت إدخال وقت سابق في الحقل الثاني، سيكون انقلبت مع الأولى. يجب أن تكون هذه الأوقات في غضون يوم واحد. أيضا، يتم فحص هذه المرة ضد الوقت الذي تم تكوينه على موقع الويب الخاص بك في إعدادات موقع و لا وبالضرورة خط الزمن للمستخدم التفاعل مع النشر الخاصة بك. اترك هذا في 0:00 حتي 00:00 لتجاهل هذه التصفيات." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "موضوع البريد الذى تقوم بارسالة" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "عنوان البريد الذى ستقوم بارسالة" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "هذا هو العنوان الافتراضى الذى يضاف للتقرير" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "علم على التقرير ان كان موثق ام لا" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "افصل كل قيمة باستخدام الفاصلة. مثال value1, value2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "افصل كل بند مختار باستخدام الفاصلة. مثال Item 1, Item 2." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "ابدا بالكتابة لقائمة الاعضاء" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "عنوان الرسالة الخاصة" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "رسالة خاصة" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "بريدك الإليكترونى" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "اسمك بالكامل" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "اختيار \"نعم\" يمكنك من استقبال التنبيهات على بريدك الإليكترونى فور رفع تقارير أو تعليقات جديدة على الموقع الخاص بك" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "كلمة المرور الخاصة بك. اترك هذا الحقل فارغ إذا رغبت في استمرار استخدام كلمة المرور الحالية" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "هذا هو العنوان الذى ستجد ملف الشخصى بة" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "لايمكنك تغيير اسم المستخدم الخاص بك" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "سيتم إرسال تنبيهات البريد الإليكترونى بواسطة هذا العنوان البريدى" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "اسمح للمستخدمين بالاشتراك فى التنبيهات من خلال الويب" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "يسمح بتجميع التقرير المتشابهة فى نقطة واحدة على الخريطة" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "تمكن المستخدم من التعليق على التقارير على الموقع الرئيسي" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "يسمح للتغذية الإخبارية باستخدام آر إس إس أن تعرض على الموقع الرئيسي" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "تمكن المستخدم من وضع المعلومات على استمارة الشبكة" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "API عدد السجلات المستدعاة لكل طلب" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "API الحد الأقصى للسجلات المستدعاة لكل طلب" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "IP address الحد الأقصى للطلبات على كل عنوان " + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "عدد المربعات التى سوف تظهر فى كل واحد." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "قم بتمكين أو تعطيل التخزين المؤقت للصفحات. هذا يجعل عرض الصفحة أسرع عن طريق اختصار وقت الاستجابة. ونوصي باستخدام التخزين المؤقت للمواقع المزدحمة. **تذكر أن التقارير سوف يتم تجميعها على الواجهة الأمامية بناء ً على الأوقات التي ستقوم بتعيينها أدناه (المدى الزمني للتخزين المؤقت)ـ" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "حدد المدى الزمني للتخزين المؤقت" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "قم بإعداد الخريطة لتغطية منطقة معينة" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "حدد كود لونى واحد لكل الفئات على الموقع" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "استخدام رمز لجميع الفئات على الموقع" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "هذه هي الدولة التى يتم فيها التنفيذ" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "قم بتشغيل وإيقاف تبويب الاتصال فى الموقع الرئيسي" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "قم بتشغيل وإيقاف تبويب المساعدة على الموقع الرئيسي" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "هنا عدد التقارير التى يتم عرضها للصفحة الواحدة على الموقع الرئيسي" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "هنا عدد التقارير التى يتم عرضها للصفحة الواحدة على الواجهة الخلفية للإدارة" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "منطقة الرسائل القادمة" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "يقوم بمزامنة الرسائل القادمة لهذه المنطقة مع منصة يوشاهيدي" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "أرقام الهواتف التى يتم استقبال الرسائل عليها" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "يتابع من يزور الموقع الخاص بك. يحصل على إحصائيات مفصلة للزوار" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "يقوم بإعداد اللغة المستخدمة فى هذا الموقع" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "يتعرف على الخريطة التى ستستخدم على الموقع" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "هنا مكان رسائل البريد الإليكترونى" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "كلمة المرور للبريد الإليكترونى الذى يستقبل التقارير" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "مطلوب حتى يتم قبول الاتصالات القادمة على هذا البريد الإليكترونى" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "مطلوب للحفاظ على اتصال آمن" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "مطلوب لاسترجاع رسائل البريد الإليكترونى من الخادم المضيف" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "البريد الإليكترونى الذى يستقبل التقارير" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "API يسمح بالوصول إلى التقارير الإحصائية باسنخدام" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "نوصي دائماً بتأمين حقوق التأليف والنشر لأعمالك. للمساعدة في تحديد الترخيص http://creativecommons.org/choose/ المناسب، قم بزيارة " + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "سيتم إرسال الرسائل والتقارير على هذا البريد الإليكترونى" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "هذا هو النص الذي سيظهر فوق الخريطة على الصفحة الرئيسية. وهذا مفيد لإعطاء معلومات هامة للزوار على الموقع. لإزالة المربع ، احذف الرسالة هنا" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "هذا اسم الموقع والذى يظهر أعلى الموقع الرئيسي" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "فى خلاصة، قم بشرح معلومات عن هذا الموقع" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "يُعِد الوسم المختلط لتويتر والذى يتم إرساله فى رسائل التويتر" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ar/ui_admin.po b/application/i18n/po/po-ar/ui_admin.po new file mode 100644 index 0000000000..b5acb6d8a0 --- /dev/null +++ b/application/i18n/po/po-ar/ui_admin.po @@ -0,0 +1,1661 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Ahmed Nagy Zekry , 2012 +# Farid Boushra <>, 2012 +# faridboushra , 2012 +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "ممنوع الدخول. إما بيانات دخولك غير سليمة أو تم رفض طلبك" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "ممنوع الدخول. تم تمرير طلبك، لكن تم منعه بسبب محدودية الدخول مثل الوقت. حاول لاحقاً" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "مستوى الصلاحية" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "الإجراءات" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "اضف للفئة" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "تمت الإضافة" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "تم الإضافة/تم التحرير" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "إضافات" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "المسئول الإدارى" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "تنبية" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "استقبال التنبيهات" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "الكل" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "ص" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "مجهول" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "اى شخص" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "اى مكان" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API محظور بسبب" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API سجلات" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API إعدادات" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "ارفع الحظر" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "ارفع الحظر عن الكل" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "تمت الموافقة" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "موافقة أوتوماتيكية" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "موافقة يدوية" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "تمت الأرشفة" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "هل انت متاكد انك تريد" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "هل ترغب فى مسح هذا البند؟" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "هل ترغب فى مسح هذة الصورة" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "هل ترغب فى تبديل الفورم؟" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "تعيين" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "علامات" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "تعيين بادج" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "الكاتب" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "البريد الإلكتروني للكاتب" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "الرجوع" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "IP حظر للـ " + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "بين الاوقات" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "مربعات" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "الموضوع" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "إلغاء" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "الفئات" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "خطأ فى عرض الرسم البيانى" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "تأكد من أن رسالتك صالحة" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "تأكد من أن الرقم صالح" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "تأكد من إعدادات الرسائل النصية" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "التحقق من الدخول" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "التحقق" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "تم تحميل المدن" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "الرمز" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "كود الإصدار لايمكنه عمل تزامن" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "اللون" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "تعليقات" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "رمز تأكيد التنبيهات هو: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "المستخدم قد تم" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "عد" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "لم يتم إيجاد الدولة" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "تم الإنشاء/تم التحرير" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "أنشئ تقرير" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "ترقية هامة" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "الحالة الحالية مفعلة" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "الحالة الحالية غير مفعلة" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "ليس لديك صلاحيات لتعديل الحقوق المخصصة التالية" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "يومي" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "لوحة التحكم" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "قاعدة البيانات" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "التاريخ والساعة" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "تم إضافة التاريخ" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "تم تعديل التاريخ" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "ايام الاسبوع" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "نسخة قاعدة البيانات ليست متزامنة" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "تم الحذف" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "حذف" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "امسح البادج" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "تجريبي" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "الوصف" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "عطل" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "مقسم البداية" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "مقسم النهاية" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "تحميل التقارير" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "اختيارات من قائمة منسدلة" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "تم تحريرها" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "حررها" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "حرر" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "حرر السجل" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "البريد الإلكتروني" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "كامل الجماعية" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "!خطأ في التشفير الجغرافي HTTP error" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "مكتبة IMAP PHP ليست موجودة" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "خطأ" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "خطأ، لم نتمكن من نشر الحدث" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "كل 6 ساعات" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "كل 12 ساعة" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "اختيارى" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "أسئلة شائعة" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "تغذية" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "تغذية مرجعية" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "تغذيات" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "قائمة الاختيارات" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "القيمة الافتراضية" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "نوع البيانات" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "جافا" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "العلامات" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "ارقام" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "نص حر" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "الارتفاع للصفوف" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "حقول مخفية" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "أقصى عدد للحروف أو الأرقام" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "اسم الحقل" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "تبديل" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "لا" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "نعم, اغلق كأفتراضى" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "نعم, افتح كأفتراضى" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "لم نتمكن من العثور على الملف المرفوع" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "لم نتمكن من فتح الملف لقراءته" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "هذه الاستمارة غير موجودة!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "منتدى" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "حقل كتابة النص" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "بيانات الحقل" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "حقل راديو" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "حقل اختيارات" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "حقل قائمة منسدلة" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "من" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "من" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "خطأ اثناء الحصول على اسماء الأماكن" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "أحصل على مساعدة" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "أحصل علي مزيد من القوالب" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "أحصل علي مزيد من الإضافات" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "الإجراءات" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "أضف/حرر" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "بريد إليكترونى" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "إدارة المستخدمين" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "وظيفة" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "المستخدم" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "مساعدة" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "كل ساعة" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "تغذية عن الحدث لـ" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "ملف التثبيت مازال موجودا. إحذف ملف المثبت فهو ثغرة أمنية محتملة" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "اقتراح" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "اقتراحات" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "تفاصيل اقتراح" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "إحداثيات غير صالحة" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "عنوان بروتوكول الانترنت" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "هل هذا الحقل للتاريخ؟" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "من يستطيع رؤية الاجابات" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "من يستطيع كتابة سؤال" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "كلمة مفتاحية" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "كلمات مفتاحية" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "عنوان البريد الإلكتروني:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "الاسم بالكامل:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "كلمة المرور:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "الدور/الوظيفة:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "اسم المستخدم:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "طبقات" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "مسئول" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "الخروج" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "سجلات" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "إدارة" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "إدارة الصلاحيات" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "إدارة المستخدمين" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "أضف / تعديل مستخدم" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "تحكم في نشر موقعك " + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "علامة كـ" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "تم تعريفه أنه ليس سخام" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "تم تعريفه كسخام" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "لم توجد وثائق مطابقة" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "رسالة" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "الرسائل" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "رسائل لاكونيكا" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "رسائل تويتر" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "تم إرسال رسالتك" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "دقيقة" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "دقائق" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "إحداثيات مفقودة" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "مسئول" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "تم تعديله" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "تغيير اعدادات النطاق الزمنى" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "تحرك للأسفل" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "تحرك للأعلى" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Multiple Hosted Instances" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "تنبيهاتى" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "سجل دخولى" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "بروفايلى" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "تقاريرى" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "التصويت" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "ايجابى" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "سلبى" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "الاسم" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "أنشئ تنبية جديد" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "أنشئ رسالة جديدة" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "كلمة مرور جديدة" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "نعم" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "هذة الفئة الخاصة لن تظهر حينما يقوم المستخدمين بادخال تقارير. ولكنها تستخدم لوضع التقارير فى حالة انتظار ما لم تضعها فى فئة (تقارير غير مصنفة)" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "إشعار" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "لاتوجد قضية ذات حساسية" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "لم يتم العثور عليه" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "لا توجد بيانات. فلا توجد نتائج للعرض" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "لايوجد خطأ" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "لاتوجد نتائج للعرض" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "من" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "فى عد معين" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "صفحة" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "صفحات" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "لم يتم العثور على الصفحة" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "عذرا، الصفحة التي تحاول عرض غير موجود هنا. على

وهل اتباع ارتباط من مكان آخر على موقعنا؟
إذا وصلت إلى هذه الصفحة من جزء آخر من موقعنا يرجى الاتصال بنا href=\"%s\"> حتى نتمكن من تصحيح خطأ لدينا. على

وهل تتبع وصلة من موقع آخر؟ يمكن في بعض الأحيان
روابط من مواقع أخرى تكون قديمة أو بها أخطاء إملائية. href=\"%s\">
المكان الذي جئت منه، ويمكننا محاولة الاتصال بموقع الأخرى من أجل حل المشكلة. على

وهل اكتب URL ؟
كنت قد كتبته عنوان (URL) بشكل غير صحيح. تحقق للتأكد من أنك قد حصلت على حق الإملاء الدقيق، وما إلى ذلك " + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "عفوا, الصفحة التي تحاول عرضها ليست هنا" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "الإحداثيات مستخدمة" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "كلمة المرور" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "إعادة تعيين كلمة المرور" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "عزيزي/عزيزتي" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "قد تسلمنا طلب لإعادة تعيين كلمة مرور لأجل" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "لتغيير كلمة المرور, أنقر على الرابط التالى (أو قم بالنسخ واللصق في المتصفح الخاص) بك" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "بناء على طلبك, تم إعادة تعيين كلمة المرور الخاصة بك. التفاصيل الخاصة بك هى كالآتى" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "تم إعادة تعيين كلمة المرور ليوشاهيدي" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "تليفون" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "برجاء الاختيار" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "م" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "لم يتم إرسال البيانات بطريقة النشر" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "معاينة" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "رسالة" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "رسائل خاصة" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "رسالة خاصة مرسلة" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "عنوان" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "الى" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "قائمة للعامة" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "تصفيات" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "مقروءة" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "الصلة" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "عنوان التقرير" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "تاريخ التقرير" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "مُصدرى التقارير" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "مستويات مُصدر التقارير" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "التقارير" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "نقاط قوة" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "مطلوب" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "إعادة تعيين" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "استجابة" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "النتائج" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "سحب" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "هذا البريد الإلكتروني لديه بالفعل حساب يديره CrowdmapID. سوف يحتاج المستخدم إلى استخدام كلمة المرور الخاصة بهم للدخول Crowdmap القائمة." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "حفط الاعدادات" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "بحث" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "بحث التقارير" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "البحث عن" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "لا يزال مفتاح التشفير معين على إلى القيمة الافتراضية. هذا غير أمن، ويجب تغييرها." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "الموقع يخدم ببروتوكول HTTP. ويجب ان يكون HTTPS لزيادة الامان." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "التعليمات متاحة فى الويكى:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "اختار التنسيق المطلوب لتحميل التقارير:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- إختر نوع الحقل ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "حدد بند" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "يجب ان تختار تريجير قبل انت تختار الاستجابة" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "يجب ان تختار تريجير قبل انت تختار تصفيات" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "الراسل" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "ارسال الى" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "تم إرسال هذه الرسالة من الموقع الخاص بك على " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "توقيت السيرفير" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "الإعدادات" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "عرض صفحة" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "عرض نتائج" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "اظهار" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "فئة خاصة" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "هذه هي الفئة الخاصة التي لن تظهر على شكل تقديم تقرير للمستخدمين تقديم التقارير. ويستخدم هذا بالتزامن مع ميزة \"تقارير موثوقة\" ." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "مكان محدد" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "محافظة" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "إحصائيات" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "إحصائيات" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "فشلت محاولة جمع الإحصائيات! حاول مرة أخرى بعد قليل." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "محاولة جمع الإحصائيات لم تنجح!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "ايام محددة" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "عنوان" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "المدير الأعلى" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "تم أداء المهمة" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "حقل نصى" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "اسم" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "إدارة المستخدمين" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "لايوجد خطأ" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "إلى" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "جميع السجلات" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "إلى" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "ترجمة التقارير" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "تريجير" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "تريجير مستخدم" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "تريجيرز" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "لم يتم الموافقة عليه" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "غير معروف" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "خطأ غير معلوم" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "غير مقروء" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "لن نستقبل اى تنبيهات من" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " أنقر هنا للتحديث الآن" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "ترقية يوشاهيدي" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "ترقية حالة يوشاهيدي" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "رفع التقارير" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "مستخدم" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "المستخدمين" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "يوشاهيدي" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "تم التأكد/غير مؤكد" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "مؤكد/غير مؤكد" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "الإصدار" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " متاح للترقية" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "تشفير الفيديو" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "رسالة خاصة" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "الإطلاع على الموقع" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "شاهد التقارير" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "،مرحباً" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "ويكي" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "نعم" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "بحثك عن" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ar/ui_main.po b/application/i18n/po/po-ar/ui_main.po new file mode 100644 index 0000000000..9fa5935ec9 --- /dev/null +++ b/application/i18n/po/po-ar/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Farid Boushra <>, 2012,2014 +# faridboushra , 2012 +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "عن الموقع " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "الدخول" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "حدود الدخول" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "اسم الحساب" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "الإجراءات" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "لا يمكن التراجع عن هذا الإجراء. هل متأكد من رغبتك في الاستمرار؟" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "تفعيل" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "مُفعل" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "أضف" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "تمت الإضافة بواسطة" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "تقارير معلومات" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "تقارير إضافية" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "أضف/حرر" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "أضف حقل" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "أضف لغة" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "أضف جديد" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "أضف فئة جديدة" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "أضف ترجمة" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "الإدارة" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "استقبل تنبيهات" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "إعلمني إذا تم ملء تقرير، أو عند المحاولة:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "حفظ التنبيهات الخاصة بي" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "عنوان البريد الإلكتروني:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "أدخل عنوان البريد الإلكتروني" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "أدخل رقم هاتف المحمول مع رمز الدولة" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "استقبل تنبيهات" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "التنبيه تم " + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "الهاتف المحمول:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "أو ضع علامة في مكان على الخريطة لتتلقي تنبيه عند إضافة تقرير على مدار 20 كم حول العلامة" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "إذا لم تستطع معرفة مكانك. فضلا انقر على مكانك الصحيح بالخريطة." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "التغذية الاخبارية (انسخ الرابط التالى)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "إختر مدينة" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr " الخطوة الاولى:إختر مدينتك او موقعك:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr " الخطوة الثانية:إرسل التنبيهات إلي:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "الخطوة الثالثة (اختيارية): اختار فئة" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "أكد على طلب سابق للحصول على تنبيهات" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "تم حفظ التنبيه الخاص بك" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "الكل" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "مسموح" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "كل التصنيفات" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "كل الاوقات" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "و" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "واجهة برمجة التطبيقات - API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "وافق" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "تمت الموافقة" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "التقارير التى تم الموافقة عليها" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "وافق على هذا التقرير" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "تقريبى" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "أرشفة" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "تمت الأرشفة" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "تصاعدي" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "على" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "الكاتب" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "دخول تلقائى" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "معدل التقارير اليومي" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "في انتظار الموافقة" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "فى انتظار التحقق من المصداقية" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "شارة" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "شارات" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "صورة الشارة" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "أو يمكنك تحميل صورة الشارة الخاصة بك" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "حزمة الشارات" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "أختر شارة" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "المدونة" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "تصفح الملفات الشخصية" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "إلغاء" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "التصنيفات" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "التصنيف" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "تحديد التصنيفات" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "التصنيف " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "اسم التصنيف" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "تغيير نطاق التاريخ" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "تغيير كلمة المرور" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "غير صورتي" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "قم باختيار " + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "إختر بيانات محددة للتحميل" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "أو اختيار نطاق التاريخ المناسب لك" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "إختر نوع الحقل" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "روابط نظيفة" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "مسح" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "امسح الخريطة" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "إغلاق" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "المجموعات" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "اللون" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "التعليق" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "التعليقات" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "تفاصيل التعليق" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "تم حفظ الإعدادات الخاصة بك" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "ضبط" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "تم تأكيد عنوان البريد الالكتروني! الرجاء تسجيل الدخول في الأسفل." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "فشل تأكيد البريد الإلكتروني! يمكنك طلب تأكيد البريد الإلكتروني الجديد أدناه." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "اتصل بنا" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "الكود الأمني" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "عنوان بريدك الإلكتروني" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "رسالة" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "تم ارسال الرسالة" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "الأسم" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "رقم الهاتف" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "أرسل الرسالة" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "عنوان الرسالة" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "حقوق النسخ ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "إنشاء" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "إنشئ/حرر" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "أنشئ جديد" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "أنشئ كلمة مرور جديدة" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "إنشاء تقرير" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "المصداقية" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "كلمة المرور الحالية" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "حقول اضافية" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "معلومات" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "تاريخ" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "التاريخ والوقت" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "اليوم" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "تعطيل" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "نيروبى، كينيا" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "حذف" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "تم الحذف" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "المحذوفات" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "تم تعطيل الحذف" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "إحذف الأخير" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "إحذف هذا التقرير" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "إحذف المحدد" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "إحذف السخام" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "تجريبى" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "وصف" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "تنازلي" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "مثال: قصر الاتحادية شارع المرغنى مصر الجديدة القاهرة" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "تفاصيل" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "تقرير مباشر" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "معطل" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "لم تتم الموافقة" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "تحميل التقارير" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "تحميل" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "حرر" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "حرر حقول الاستمارة" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "حرر التقرير" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "البريد الإلكتروني" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "عنوان البريد الإلكتروني" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "إعدادات خادم البريد" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "مضيف خادم البريد" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "كلمة المرور لخادم البريد" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "منفذ خادم البريد" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "دعم الخادم البريدي لـ SSL " + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "نوع خادم البريد" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "اسم المستخدم لخادم البريد" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "يجب أن تكون الإعدادات مرتبطة بهذا البريد الإلكتروني" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "لتتمكن من استقبال التقارير عبر البريد، أدخل إعدادات حساب البريد الإلكتروني. برجاء العلم أنه سيتم تلقي الرسائل على البريد الخاص بالموقع" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "بعض الخوادم تتطلب عنوان البريد الإلكتروني بالكامل" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "كلمة المرور لحساب البريد الإلكتروني" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "مثال: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "امثلة: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "SSL تفعيل أو تعطيل الاتصال الآمن" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---فارغ---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "إلي" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "خطأ!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "مثال" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "كينيا" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "تطبيقات خارجية" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "رابط فيديو خارجي" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "فيس بوك" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "التغذية" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "شاركنا رأيك" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "التغذية" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "هذة التغذية تم" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "موضوعات للتغذية" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "اسم التغذية" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "رابط التغذية" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "حقل غير مستخدم" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "ملف" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "الملف الخاص بك يزيد على الحد الحد الأقصى المسموح به." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "تصفيات" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "أعد تصنيف التقارير" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "صنف التقارير بـ" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "صنف التثارير التي تحتوي على " + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "ابحث عن" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "ابحث عن مكان" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "الاسم الأول" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "تحديد وقت التشغيل القسري" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "لا تتذكر كلمة المرور الخاصة بك؟" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "استمارة" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "استمارات" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "وصف الاستمارة" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "حرر هذه الاستمارة" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "هذه الاستمارة تم " + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "نوان الاستمارة" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "من" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "الاسم الكامل" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "الموقع الجغرافى متاح" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "اللون" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "التعليقات" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "علامة" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "عرض التحديد" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "اذهب" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "الوسم" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "تم" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "كيفية المساعدة" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "مخفي" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "إخفاء" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "أخفى هذه الرسالة" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "الرئيسية" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "كيفية الإبلاغ" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "الهوية" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "تستخدم على الموقع لتعريفك بالأخرين" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "صورة" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "صور" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "صورة/أيقونة" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "غير فعَال" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "البريد الوارد" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "حدث" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "الأحداث القريبة" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "مكان الحدث" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "إدرج" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "إدرج فئات" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "أدرج حقول إضافية" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "إدرج توصيف" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "درج تفاصيل على قدر الامكان" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "إدرج خط عرض" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "إدرج معلومات عن المكان" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "إدرج خط طول" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "أضف البيانات الشخصية" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "ميديا واردة" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "تقييم المعلومات" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "أدخل موقعك بالتحديد" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "لا يوجد لحسابك الصلاحيات المناسبة للدخول. يرجى الاتصال بمدير الموقع." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "أستجابة لـ" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "عنوان بروتوكول الانترنت" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "هل هذه هو حسابك الشخصي؟" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "بند" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "بنود" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "تفاصيل البند" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "نوان البند" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "مفتاح" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "كلمات البحث" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML File" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "تحميل ملف KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "لاكونيا" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "اللغة" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "أخير" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "الشهر الأخير" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "الاسم الأخير" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "السنة الأخيرة" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "خط العرض" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "الطبقات" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "طبقات أخرى" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "الطبقات تم " + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "اسم الطبقة" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "رابط الطبقة" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "اترك تعليق" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "معلومات اقل" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "مستوى" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "هذه المستوى تم " + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "اسم المستوى" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "محدود" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "الرابط" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "قائمة" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "جاري تحميل التقارير" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "المكان" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "الأماكن" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "المدينة، المحافظة/الدولة" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "الدخول" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "تم انشاء حسابك بنجاح. يمكنك الدخول الأن" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "تم ارسال رسالة التأكيد إلى بريدك الإلكتروني" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "البريد الإلكتروني غير موجود. حاول مرة أخرى أو انشئ حساب جديد" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "أختار الموقع المناسب لك" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "الدخول بـ" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "البريد الإلكتروني وكلمة المرور" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "سجل" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "سجل حساب جديد" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "تأكيد التسجيل" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "الموافقة على عضو جديد" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "الموافقة على حساب عضو جديد" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "إنشاء حساب الآن للاستفادة من مميزات الموقع." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "خط الطول" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "خريطة" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "اجعلها مقروءة" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "اجعلها غير مقروءة" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "الحد الأقصى لحجم الملف" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "مواد إعلامية" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "تصفية المواد الإعلامية" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "أعضاء" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "تعديل حسابك" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "رسالة" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "الرسائل" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "تفاصيل الرسالة" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "رسالة من مصدر غير رقمي" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "الهاتف المحمول" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "تعديل" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "تعديل تاريخ" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "شهر" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "المزيد" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "المزيد من المعلومات" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "هل هذه الخريطة تشمل دول متعددة؟" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "يجب عليك تأكيد عنوان البريد الالكتروني للوصول إلى هذا الموقع. إذا كنت فقدت البريد الإلكتروني تأكيد، يمكنك طلب واحدة جديدة أدناه." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "الاسم" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "أحداث قريبة" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "جديد" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "أخبار" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "التغذية الإخبارية" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "مصدر الأخبار" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "تصنيف جديدة" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "كلمو مرور جديدة" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "تقرير جديد" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "التالي" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "لا" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "لا يوجد تسجيل دخول ليتم عرضه" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "لا يوجد معلومات" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "لا شئ" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "إشعارات" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "لم تتم الموافقة عليهم" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "لم تتم الموافقة عليه" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---غير محدد---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "ليس سخام" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "غير محدد" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "لا يوجد تقارير" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "لايوجد نتائج" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "مغلق" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "أخبار رسمية وعامة" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "متاح" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "خيارات" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "اختياري" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "خيارات" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "منظمة" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "منظمات" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "وصف المنظمة" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "البريد الإلكتروني للمنظمة" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "المنظمة تم " + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "اسم المنظمة" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "تليفون المنظمة 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "تليفون المنظمة 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "الموقع الإلكتروني للمنظمة" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "الأصل" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "الوصف الأصلي" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "العنوان الأصلي" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "تطبيقات يوشاهيدي أخرى" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "البريد الصادر" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "البريد الخارج" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "صفحة" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "الصفحات" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "وصف الصفحة" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "الصفحة تم " + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "اسم التبويب للصفحة" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "عنوان الصفحة" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "الصنيف الرئيسي" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "كلمة السر" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "أكتب كلمة المرور مرة أخرى" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "تم تغيير كلمة المرور بنجاح. ادخل الآن" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "تذكر كلمة المرور؟" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "إطلع على بريدك الإلكتروني لمعرفة كلمة المرور الجديدة" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "أدخل عنوان البريد الإلكتروني المستحدم في التسجيل" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "الشهر الماضي" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "العام الماضي" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "قيد الإرسال" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "لكل" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "اختياري معلومات شخصية" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "تليفون" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "صور" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "صور" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "صور وفيديو" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "*ابحث عن مكانك بتحديد إحداثيات الطول والعرض أو أنقر على الخريطة لتحديد المكان" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "تشغيل" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "برجاء الملاحظة" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "برامج مساعدة" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "البرامج المساعدة للموقع الإلكتروني" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "الملف العام" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "عنوان الملف الشخصي العام" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "معاينة" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "معاينة الموضوع" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "معاينة الرسالة" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "السابق" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "خاص" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "لون الملف الشخصي" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "تم حفظ ملفك الشخصى" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "إحصائيات سريعة" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "تقييم" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "قراءة" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "استقبل" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "استقبل من" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "استقبل إشعارات" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "أحدث التقارير" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "إنعاش التغذية الإخبارية" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "البريد الإلكتروني المسجل" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "احذف" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "الرد" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "تقرير" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "التقارير (حسب التسلسل الزمني)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "المحرر" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "المحررون" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "تاريخ التحرير" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "البريد الإلكترونى لمحرر التقرير" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "الاسم الأول للمحرر التقرير" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "المحرر قد تم " + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "عنوان بروتوكول الانترنت لمحرر التقرير" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "الاسم الأخير لمحرر التقرير" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "مستوى محرر التقرير" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "مستويات محرري التقارير" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "تليفون محرر التقرير" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "التقارير" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "تصفح" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "تقديم" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "أرسل بواسطة هذا المستخدم" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "فئات" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d تقارير" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "تاريخ" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "وصف" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "سيتم تحميل التقارير في صيغة CSV " + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "البريد الإلكتروني" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "خصائص" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "أعثر على أقرب مكان" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "الاسم الأول" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "الاسم الأخير" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "تفصيل اسم المكان" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "رابط مصدر الأخبار" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "معلومات اختيارية" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "رفع صور" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "العودة لصفحة التقرير" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "إختر مكان" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "تم إرسال التقرير إلي فريقنا للمعانية. سنتصل بك في حال وجود ضرورة" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "إنشاء تقرير جديد" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "الوقت" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "الخط الزمني" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "عنوان التقرير" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "رابط الفيديو" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "أبلغ عن واقعة" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "تفاصيل التقارير" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "من خلال إرسال رسالة إلى" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "بإرسال بريد إلكتروني إلى " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "من خلال رسالة تويتر بالوسوم التالية" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "من خلال ملء هذه الاستمارة" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "باستخدام تتطبيق" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "تم حفظ التقرير الخاص بك" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "عنوان التقرير" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "طلب الحصول على مزيد من المعلومات" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "طلب بالمكان" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "مطلوب" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "متطلبات" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "أعد ارسال رسالة التأكيد" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "إعادة" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "مسح كل التصنيفات" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "إعادة تعيين كلمة المرور" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "الحصول على أسماء المدن للدولة المُختارة" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "الحساب يدار بواسطة خدمة %s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "لديك حساب يديره CrowdmapID! حاول استخدام البريد الإلكتروني الخاص بك CrowdmapID وكلمة السر للدخول." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "دور" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "تغذية اخبارية" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "حفظ" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "تم الحفظ" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "احفظ وأضف جديد" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "حفظ وإغلاق" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "حفظ التقرير" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "الجدول" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "جدولة" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "يوم" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "ساعة" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "سجل توقيت الأعمال" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "ثوانى" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "يوم في الأسبوع" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "بحث" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "نتائج البحث" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "الكود الأمنى" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "إختر الكل" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "إختر نوع الحقل" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "إختر نوع الاستمارة" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "حدد فى الخريطة" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "إختر قدر الحاجة" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "رجاء التأكيد أنك قمت باختيار بند" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "إختر شكل" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "إرسل" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "أرسل التأكيد" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "الإرسال إلى" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "تم الإرسال" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "تم الإرسال بواسطة" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "عنوان الخادم" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "نوع الخادم" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "الخدمة" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "اسم مستخدم الخدمة" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "هوية مستخدم الخدمة" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "مشاركة" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "بيانات تم تشاركها" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "المشاركة قد تم" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "يتم المشاركة" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "خريطة أقصر" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "أظهر" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "أظهر الكل" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "أظهر الرسائل" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "الموقع الإلكتروني" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "عنوان البريد الإلكتروني للموقع" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "رابط الموقع الإلكتروني" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "خريطة أصغر" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "رسائل نصية قصيرة" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "نأسف. أنت لا تملك أي شارات" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "المصدر" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "اسم المصدر" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "ترتيب" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "رتب بـ" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "رابط المصدر" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "سخام" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "تغذية اخبارية" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "من" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "خطوة" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "أبلغ عن واقعة" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "الإبلاغ بواسطة رسالة نصية قصيرة" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "إرسل الرسالة النصية الخاصة بك إلى" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "على تليفونك" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "!نجحت" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "تم الاستيراد بنجاح" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "اسم العائلة" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "استطلاع رأى" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "نظام" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "خريطة أطول" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "قوالب" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "القالب الافتراضي لأوشاهيدي" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "إعدادات القالب" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "هذا" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "اليوم" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "هذا الشهر" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "هذا الاسبوع" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "هذا العام" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "هذا هو حسابك الشخصى" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "الوقت" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "عنوان " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "إلى" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "اليوم" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "اليوم على" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "أخذت" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "إجمالي التقارير" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "تمت الترجمة" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "الوصف المترجم" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "العنوان المترجم" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "الترجمة إلى" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "الترجمة" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "تم حفظ الترجمة" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "موثوق" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "نوع" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "تويتر" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "لم نتمكن من ارسال الرسالة." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "تقارير غير مصنفة" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "غير مقروء" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "لم يتم التحقق" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "حدث التغذية" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "رفع" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "يجرى مراجعة تقرير التحميل من ملف المساعدة" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "الملف للرفع" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "رفع التقارير" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "أعمدة الحقول المخصصة يجب ان تكون القيمة form_id مضافة لهم مثلا الحقل الممخصص Test على النموذج الافتراضي، الذي هو رقم 1، سوف يكون Test-1. خلال تحميل السجلات تأكد من أن" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "بالاستمارة أدناه يمكنك استيراد أحداث على محرك يوشاهيدي" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "يجب على الأقل وجود عنوان الحدث والتاريخ" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "وإذا لم يتم توفير خط العرض وخط الطول والعرض سيتم تحديد المكان باستخدام Geocoder جوجل" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "إذا استيراد أي معلومات إضافية معلومات شخصية و / أو حقول نموذج مخصص" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "يجب على الأقل احد حقول المعلومات الشخصية (الاسم واللقب والبريد الإلكتروني) أن يكون موجود. السجلات فارغة سيتم تجاهل استردادها." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "إدخالات القائمة المنسدلة للحقول، وأزرار الراديو وخانات تطابق الخيارات المنصوص عليها في الحقول المخصصة في موقعك" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "يتم فصل خيارات مربع من قبل مثل الفاصلة إذا اختيارك مختارة من الفواكه التفاح والمانجو والعنب، يجب الدخول الخاص بك لهذا تكون \"التفاح ,المانجو ,العنب\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "قيم حقل تاريخ في التنسيق التالي: شهر / يوم / سنة 3 أكتوبر 2012 على سبيل المثال = 2012/10/03" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "CSV عينة من تقرير في صيغة" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "نجح الرفع" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "أرسل ملف فديو" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "الرابط" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "المستخدم" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "اسم المستخدم" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "مدير أوشاهيدي" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "التحقق" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "تم التحقق منه" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "تقارير تم التحقق منها" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "تحقق" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "تحقق من هذا التقرير" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "إصدار" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "بواسطة" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "فيديو" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "عرض" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "مشاهدات" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "عرض الكل" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "عرض كل التغذيات" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "عرض كل التقارير" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "عرض البنود" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "عرض المزيد" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "شاهد ملفك العام" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "عرض تقرير" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "عرض التقارير" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "شاهد الفيديو" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "مرئي" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "في انتظار الموافقة" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "في انتظار التحقق منه" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "خريطة أعرض" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "نموذج ويب" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "شبكة" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "وزن" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "نعم" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "الأمس" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "لوحة القيادة" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "ملفك" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "تكبير" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "تصغير" diff --git a/application/i18n/po/po-ar/upgrade.po b/application/i18n/po/po-ar/upgrade.po new file mode 100644 index 0000000000..52cf94717b --- /dev/null +++ b/application/i18n/po/po-ar/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Abbas Adel Ibrahim , 2012 +# Farid Boushra <>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Arabic (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr ".البيانات المدخلة غير صحيحة. ادخل إما 0 = لا أو 1 = نعم" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "ترقية أوتوماتيكية" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "ترقيات متاحة" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "استمر" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "ترقية" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "إذن، سوف أقوم بترقية قاعدة معلوماتك من إصدار" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "إلى أحدث إصدار" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr ".انقر عل زر \"ترقية\" واسترخي بينما أصنع أنا السحر" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "وإذا أردت أن أقوم بالنسخ الاحتياطي لقاعدة البيانات الخاصة بك، فقط ضع علامة على زرالاختيار أدناه وسوف أنفذ في لحظة" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr " (Highly recommended) هل ترغب في النسخ الاحتياطي قبل الترقية؟" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "ترقية قاعدة بيانات يوشاهيدي" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "تم تحديث أوشاهيدي! قبل المتابعة، تحتاج إلى تحديث قاعدة البيانات الخاصة بك إلى الإصدار الأحدث (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "نسخة قاعدة البيانات محدثة." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "فشلت الترقية في مرحلة ما" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "ترقية يدوية" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "حالة ترقية اليوشاهيدي" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "الإرشادات التالية توضح كيفية تحديث عملية نشر يوشاهيدي يدوياً" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "

Download
" +msgstr "الخطوة 1 قم بتحميل أحدث إنشاء من أوشاهيدي على http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "الخطوة 2 بحسب نظام التشغيل الذى يعمل عليه خادم الويب, استخدم الإدارة المفضلة لديك/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. :الجميع ماعدا" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "للتحديث الآلى اضغط على الزر التالى" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "للتحديث التلقائى اضغط على الزر بالاسفل" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "الآن تتم الترقية" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "لمتابعة عملة التحديث المعلومات الاتية مطلوبة من السيرفير الموجود علية الموقع" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP اسم المستضيف: مثال: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP كلمة المرور:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP اسم المستخدم:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "لديك الان احدث اصدارة من يوشاهيدى" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "أنت لا تحتاج إلى ترقية." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "اصدار قاعدة البيانات: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "قاعدة البيانات:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "يوشاهيدى %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "نسخة بيتا!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "حمل اخر اصدارة من يوشهايدى" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "ملف لوج" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "فشل التحميل.." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "تم فك الضغط. نسخ الملفات..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "فشل فك الضغط" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "تم نسخ الملفات. تحديث قاعدة البيانات..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "فشل فى نسخ الملفات" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "تم نسخ و تحديث قاعدة البيانات بنجاح" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "فشل فى اخذ نسخة احتياطية من قاعدة البيانات" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "تم تحديث قاعدة البيانات بنجاح" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "يتم مسح الملفات التى تم تحمليها" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "نجح التحديث. View Log File" diff --git a/application/i18n/po/po-ar_EG/alerts.po b/application/i18n/po/po-ar_EG/alerts.po new file mode 100644 index 0000000000..7f433e1851 --- /dev/null +++ b/application/i18n/po/po-ar_EG/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/auth.po b/application/i18n/po/po-ar_EG/auth.po new file mode 100644 index 0000000000..898dc9315a --- /dev/null +++ b/application/i18n/po/po-ar_EG/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/bug.po b/application/i18n/po/po-ar_EG/bug.po new file mode 100644 index 0000000000..1db547fe01 --- /dev/null +++ b/application/i18n/po/po-ar_EG/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/category.po b/application/i18n/po/po-ar_EG/category.po new file mode 100644 index 0000000000..5fe1ed64c6 --- /dev/null +++ b/application/i18n/po/po-ar_EG/category.po @@ -0,0 +1,92 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:05+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/comments.po b/application/i18n/po/po-ar_EG/comments.po new file mode 100644 index 0000000000..d611521347 --- /dev/null +++ b/application/i18n/po/po-ar_EG/comments.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:23+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/contact.po b/application/i18n/po/po-ar_EG/contact.po new file mode 100644 index 0000000000..55a6f25855 --- /dev/null +++ b/application/i18n/po/po-ar_EG/contact.po @@ -0,0 +1,75 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:24+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/core.po b/application/i18n/po/po-ar_EG/core.po new file mode 100644 index 0000000000..d3b88f00e4 --- /dev/null +++ b/application/i18n/po/po-ar_EG/core.po @@ -0,0 +1,156 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/database.po b/application/i18n/po/po-ar_EG/database.po new file mode 100644 index 0000000000..8668d44175 --- /dev/null +++ b/application/i18n/po/po-ar_EG/database.po @@ -0,0 +1,27 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/datetime.po b/application/i18n/po/po-ar_EG/datetime.po new file mode 100644 index 0000000000..b9e64b29aa --- /dev/null +++ b/application/i18n/po/po-ar_EG/datetime.po @@ -0,0 +1,215 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/feeds.po b/application/i18n/po/po-ar_EG/feeds.po new file mode 100644 index 0000000000..a2542173a8 --- /dev/null +++ b/application/i18n/po/po-ar_EG/feeds.po @@ -0,0 +1,52 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/footer.po b/application/i18n/po/po-ar_EG/footer.po new file mode 100644 index 0000000000..7951a818a8 --- /dev/null +++ b/application/i18n/po/po-ar_EG/footer.po @@ -0,0 +1,20 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/form.po b/application/i18n/po/po-ar_EG/form.po new file mode 100644 index 0000000000..ae942364e1 --- /dev/null +++ b/application/i18n/po/po-ar_EG/form.po @@ -0,0 +1,120 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/imap.po b/application/i18n/po/po-ar_EG/imap.po new file mode 100644 index 0000000000..f2f9a39d4e --- /dev/null +++ b/application/i18n/po/po-ar_EG/imap.po @@ -0,0 +1,25 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/installer.po b/application/i18n/po/po-ar_EG/installer.po new file mode 100644 index 0000000000..d0fd09164d --- /dev/null +++ b/application/i18n/po/po-ar_EG/installer.po @@ -0,0 +1,408 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/layer.po b/application/i18n/po/po-ar_EG/layer.po new file mode 100644 index 0000000000..5838d00917 --- /dev/null +++ b/application/i18n/po/po-ar_EG/layer.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/libraries.po b/application/i18n/po/po-ar_EG/libraries.po new file mode 100644 index 0000000000..4af1a8c56c --- /dev/null +++ b/application/i18n/po/po-ar_EG/libraries.po @@ -0,0 +1,116 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/maintenance.po b/application/i18n/po/po-ar_EG/maintenance.po new file mode 100644 index 0000000000..a6107ed31e --- /dev/null +++ b/application/i18n/po/po-ar_EG/maintenance.po @@ -0,0 +1,22 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:42+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/message.po b/application/i18n/po/po-ar_EG/message.po new file mode 100644 index 0000000000..cf917c38fe --- /dev/null +++ b/application/i18n/po/po-ar_EG/message.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/mhi.po b/application/i18n/po/po-ar_EG/mhi.po new file mode 100644 index 0000000000..1c970ff795 --- /dev/null +++ b/application/i18n/po/po-ar_EG/mhi.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/notifications.po b/application/i18n/po/po-ar_EG/notifications.po new file mode 100644 index 0000000000..06129f2e97 --- /dev/null +++ b/application/i18n/po/po-ar_EG/notifications.po @@ -0,0 +1,90 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ar_EG/page.po b/application/i18n/po/po-ar_EG/page.po new file mode 100644 index 0000000000..f1aded993d --- /dev/null +++ b/application/i18n/po/po-ar_EG/page.po @@ -0,0 +1,35 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/permissions.po b/application/i18n/po/po-ar_EG/permissions.po new file mode 100644 index 0000000000..0f987a703e --- /dev/null +++ b/application/i18n/po/po-ar_EG/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/private_message.po b/application/i18n/po/po-ar_EG/private_message.po new file mode 100644 index 0000000000..b2e645200f --- /dev/null +++ b/application/i18n/po/po-ar_EG/private_message.po @@ -0,0 +1,45 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 21:14+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/report.po b/application/i18n/po/po-ar_EG/report.po new file mode 100644 index 0000000000..a07f83eb2c --- /dev/null +++ b/application/i18n/po/po-ar_EG/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/reporters.po b/application/i18n/po/po-ar_EG/reporters.po new file mode 100644 index 0000000000..5395a10523 --- /dev/null +++ b/application/i18n/po/po-ar_EG/reporters.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/reports.po b/application/i18n/po/po-ar_EG/reports.po new file mode 100644 index 0000000000..7a18796ea3 --- /dev/null +++ b/application/i18n/po/po-ar_EG/reports.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/roles.po b/application/i18n/po/po-ar_EG/roles.po new file mode 100644 index 0000000000..ab9e558e05 --- /dev/null +++ b/application/i18n/po/po-ar_EG/roles.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/settings.po b/application/i18n/po/po-ar_EG/settings.po new file mode 100644 index 0000000000..8542b2f738 --- /dev/null +++ b/application/i18n/po/po-ar_EG/settings.po @@ -0,0 +1,857 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/projects/p/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/sharing.po b/application/i18n/po/po-ar_EG/sharing.po new file mode 100644 index 0000000000..674ca6e6f3 --- /dev/null +++ b/application/i18n/po/po-ar_EG/sharing.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 07:00+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/stats.po b/application/i18n/po/po-ar_EG/stats.po new file mode 100644 index 0000000000..232a2b1780 --- /dev/null +++ b/application/i18n/po/po-ar_EG/stats.po @@ -0,0 +1,196 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-ar_EG/tooltips.po b/application/i18n/po/po-ar_EG/tooltips.po new file mode 100644 index 0000000000..529aa52bf4 --- /dev/null +++ b/application/i18n/po/po-ar_EG/tooltips.po @@ -0,0 +1,582 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/ui_admin.po b/application/i18n/po/po-ar_EG/ui_admin.po new file mode 100644 index 0000000000..d4abbd2e34 --- /dev/null +++ b/application/i18n/po/po-ar_EG/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/ui_main.po b/application/i18n/po/po-ar_EG/ui_main.po new file mode 100644 index 0000000000..ba8fc59648 --- /dev/null +++ b/application/i18n/po/po-ar_EG/ui_main.po @@ -0,0 +1,3167 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2012-06-07 02:50+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ar_EG/upgrade.po b/application/i18n/po/po-ar_EG/upgrade.po new file mode 100644 index 0000000000..e0055c08d4 --- /dev/null +++ b/application/i18n/po/po-ar_EG/upgrade.po @@ -0,0 +1,298 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:50+0000\n" +"Language-Team: Arabic (Egypt) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ar_EG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_EG\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-az_AZ/alerts.po b/application/i18n/po/po-az_AZ/alerts.po new file mode 100644 index 0000000000..4847c9646f --- /dev/null +++ b/application/i18n/po/po-az_AZ/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Nikki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-mail ünvanı səhfdi " + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Bu e-mail artıq bu yeri uyarıları üçün imzalanıb" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr " E-mail ünvanı 4 və 64 simvol arasında olmalıdır." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Bir e-mail ünvanı qeyd eliyin, və ya seçimini silin." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Siz xəritədə yanlış bir yeri seçdiniz" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Siz xəritədə bir yeri seçmediniz." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Siz xəritədə yanlış bir yeri seçdiniz." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Siz xəritədə yanlış bir yeri seçdiniz." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Telefon nömrəsi düzgün deyil, düzgün nömrəsini daxil edin." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Bu nömrə bu yeri ayarları üçün imzalanıb" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Telefon nömrəsi səhfdi.Rəqəmləri ölkə kodu ilə daxil edin." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Telefon nömrəsini və ya e-mail daxil edin." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Telefon nömrəsini daxil edin" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Siz xəritədə tədbir radiusu müəyyən etmədiniz." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Siz xəritədə tədbir radiusu müəyyən etmədiniz." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Siz xəbərlər üçün alıcı müəyyən etmədiniz." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Siz aşağıdakı kateqoriyalara uyğun ayarıları qeyd eləmisiniz." + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Bu kod artıq istifadə olunub." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Bu kod tapılmıyıb.URL düzgün olmasını yoxlıyın." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Sizin kodu təsdiq olunub.Bundan etibarən siz bütün xəbərlətdən məlumat alacaqsınız." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Xəbərləri almaq üçün, URL-a keçin:" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Geri,abunə almaq üçün." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Sizin abunə ərizəsi qeyd olundu və yoxlama məktubu e-mailə göndərildi." + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Zəhmət olmasa yoxlama kodunu daxil edin." + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Sizin abunə ərizəviz qeyd olunmayıb." + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Sizin abunə ərizəviz qeyd olunub." + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Kodu yoxlamaq alınmadı" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Sizin xəbərlərə əbunəviz qeyd olundu və yoxlama məktubu göndərilib." + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Zahmət olmasa sizə SMS-nən gələn yoxlama kodunu daxil edin" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Sizin telefon abunə ərizəviz qeyd olunmayıb." + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Sizin telefon abunə ərizəviz qeyd olunub." + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Doğru ayarıları almaq üçün kartın konfiqurasiyası düz deyil." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Siz ayarları almaq üçün qeydiyatdan keçmisiniz.İmtina eləmək üçün:" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Siz artiq ayarları almayacaqsınız" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Zəhmət olmasa URL-ı yoxlıyın" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Ayarları almaq üçün yoxlama" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Ərizəvizi yoxlamadan siz ayarları ala bilmərsiniz" diff --git a/application/i18n/po/po-az_AZ/auth.po b/application/i18n/po/po-az_AZ/auth.po new file mode 100644 index 0000000000..cf6f00947e --- /dev/null +++ b/application/i18n/po/po-az_AZ/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-az_AZ/bug.po b/application/i18n/po/po-az_AZ/bug.po new file mode 100644 index 0000000000..9ec9861133 --- /dev/null +++ b/application/i18n/po/po-az_AZ/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-az_AZ/permissions.po b/application/i18n/po/po-az_AZ/permissions.po new file mode 100644 index 0000000000..977f00da44 --- /dev/null +++ b/application/i18n/po/po-az_AZ/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-az_AZ/report.po b/application/i18n/po/po-az_AZ/report.po new file mode 100644 index 0000000000..390acec8fd --- /dev/null +++ b/application/i18n/po/po-az_AZ/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-az_AZ/settings.po b/application/i18n/po/po-az_AZ/settings.po new file mode 100644 index 0000000000..70e75f75cf --- /dev/null +++ b/application/i18n/po/po-az_AZ/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/projects/p/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-az_AZ/tooltips.po b/application/i18n/po/po-az_AZ/tooltips.po new file mode 100644 index 0000000000..4b06a8901d --- /dev/null +++ b/application/i18n/po/po-az_AZ/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-az_AZ/ui_admin.po b/application/i18n/po/po-az_AZ/ui_admin.po new file mode 100644 index 0000000000..7f7dcc154f --- /dev/null +++ b/application/i18n/po/po-az_AZ/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-az_AZ/ui_main.po b/application/i18n/po/po-az_AZ/ui_main.po new file mode 100644 index 0000000000..d4f025ab34 --- /dev/null +++ b/application/i18n/po/po-az_AZ/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/alerts.po b/application/i18n/po/po-bg_BG/alerts.po new file mode 100644 index 0000000000..3d7ced5d4e --- /dev/null +++ b/application/i18n/po/po-bg_BG/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Dimitar Tsonev , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-05-01 12:31+0000\n" +"Last-Translator: Dimitar Tsonev \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Полето за Email не съдържа правилен email адрес?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Този Email адрес вече е регистриран за получаване на съобщения за това място" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email адресът трябва да е между 4 и 64 символа." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email адресът е задължителен, ако се отбелязали отметката." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Не сте избрали правилно местопложение на картата." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Не сте избрали правилно местопложение на картата." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Не сте избрали правилно местопложение на картата." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Не сте избрали правилно местопложение на картата." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Полето за мобилен телефон не съдържа правилният брой цифри." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Този мобилен номер вече е регистриран за получаване на съобщения за това място" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Полето за мобилен телефон не съдържа валиден номер. Моля въведете код на страната." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Трябва да въведете или мобилен номер, или email адрес." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Мобилният телефон е задължителен, ако сте отбелязали отметката." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Не сте въвели валиден радиус на картата." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Не сте въвели радиус на картата." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Не е посочен получател на известията." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Този код вече е бил потвърден!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Този код не е намерен! Моля проверете дали имате правилният адрес." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Кодът ви е потвърден. Вече ще получавате съобщения за инциденти." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "За да потвърдите заявката си, моля посетете " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Върнете се на страницата за инциденти за други съобщения" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Заявката за съобщения по мейл е било създадено и изпратено на " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Моля въведете кода за потвърждение отдолу: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Вашата заявка за съобщения по mail НЕ е било записано!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Вашата заявка за съобщения по mail е било записано!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Системата не успя да обработи заявката!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Разпитването за съобщения по телефон е създадено и изпратено на " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Моля въведете кода, който получихте с SMS тук: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Заявката за съобщения по телефон НЕ е записано!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Заявката за съобщения по телефон е записано!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Тази система не поддържа съобщения по телефон" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Получавате този мейл, защото сте регистрирани за съобщения. Ако не искате да го получавате вече, посетете " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Вече няма да получавате съобщения от " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Не успяхме да ви отпишем. Моля проверете дали имате правилния адрес." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "съобщения - потвърждение" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Няма да получавате съобщения за това място докато не потвърдите заявката си." diff --git a/application/i18n/po/po-bg_BG/auth.po b/application/i18n/po/po-bg_BG/auth.po new file mode 100644 index 0000000000..6e49006b1b --- /dev/null +++ b/application/i18n/po/po-bg_BG/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Полето за email изглежда не съдържа валиден адрес." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Съжаляваме, но вече има потребител с този адрес." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Полето за email трябва да съдържа между 4 и 64 символа." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Email-ът е задължителен." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Пълното име трябва да е между 3 и 100 символа." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Пълното име е задължително." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Потребителското име съдържа непозволени символи." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Паролата трябва да е между 5 и 16 символа." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Моля проверете дали сте въвели правилната парола." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Моля въведете еднаква парола в двете полета." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Паролата е задължителна." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Моля въведете еднаква парола в двете полета." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Полето за email изглежда не съдържа валиден адрес." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Съжаляваме, но нямаме вашият мейл." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Email-ът е задължителен." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Невалиден формат на ролята." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Ролята трябва да е между 5 и 20 символа." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Трябва да дефинирате поне една роля." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Трябва да изберете или ADMIN, или USER роля." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Името на admin не може да бъде променено." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Съжалявам, това потребителско име е заето." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Потребителското име трябва да е между 2 и 16 символа." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Моля проверете дали сте въвели правилно потребителско име." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Потребителското име е задължително." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Ролята на супер администратор не може да бъде променян." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/bug.po b/application/i18n/po/po-bg_BG/bug.po new file mode 100644 index 0000000000..4b9c138190 --- /dev/null +++ b/application/i18n/po/po-bg_BG/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Моля въведете правилен код за сигурност" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Моля въведете код за сигурност" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Email адресът не изглежда валиден" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email адресът трябва да е между 4 и 64 символа." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email адресът се изисква, ако се отбелязали отметката." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Полето за грешка е задължително." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Заглавието трябва да е поне 3 символа дълго." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Заглавието е задължително." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името трябва да е поне 3 символа дълго." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Името е задължително." diff --git a/application/i18n/po/po-bg_BG/category.po b/application/i18n/po/po-bg_BG/category.po new file mode 100644 index 0000000000..98f8c79c33 --- /dev/null +++ b/application/i18n/po/po-bg_BG/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Цветът трябва да има 6 символа." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Цветът е задължителен." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Описанието е задължително." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Моля имайте предвид, че размерът на иконката трябва да е до 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Полето за иконката изглежда не съдържа валидна снимката. Поддържаните формати са .JPG, .PNG и .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Полето за иконката изглежда не съдържа валиден файл." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Заглавието трябва да е между 3 и 80 символа." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Заглавието е задължително." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Родителската категория не съществува." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Родителската категория трябва да е цифра." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Родителската категория е задължителна" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Категорията и родителската категория не може да са едни и същи." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-bg_BG/comments.po b/application/i18n/po/po-bg_BG/comments.po new file mode 100644 index 0000000000..e05d8f1617 --- /dev/null +++ b/application/i18n/po/po-bg_BG/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Dimitar Tsonev , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-05-01 12:31+0000\n" +"Last-Translator: Dimitar Tsonev \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Моля въведете правилен код за сигурност" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Моля въведете код за сигурност" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Въведен е грешен код за сигурност." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името трябва да е с поне 3 символа." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Името е задължително." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Трябва да въведете коментар." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email адресът не изглежда да е правилен?" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email трябва да съдържа между 4 и 64 символа." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email полето е задължително, ако сте отбелязали отметката." diff --git a/application/i18n/po/po-bg_BG/contact.po b/application/i18n/po/po-bg_BG/contact.po new file mode 100644 index 0000000000..06a2c5f318 --- /dev/null +++ b/application/i18n/po/po-bg_BG/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Моля въведете правилен код за сигурност" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Моля въведете код за сигурност" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email адресът не изглежда да е правилен?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email трябва да съдържа между 4 и 64 символа." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email полето е задължително, ако сте отбелязали отметката." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Съобщението е задължително." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името трябва да е с поне 3 символа." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Името е задължително." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Заглавието трябва е дълго поне 3 символа." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Заглавието е задължително." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-bg_BG/core.po b/application/i18n/po/po-bg_BG/core.po new file mode 100644 index 0000000000..c193277cf1 --- /dev/null +++ b/application/i18n/po/po-bg_BG/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "конфигурационен файл" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "контролер" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "драйвер" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Драйверът %s за библиотеката %s трябва да имплементира интерфейса %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Драйверът %s за библиотеката %s не беше намерен" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Може да отидете на началната страница или да опитате отново." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Заявката не беше успешно извършена" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "помощник" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Заявеният тип файл, .%s, не е сред позволените за преглед" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Неправилен метод %s беше извикан в %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Променливата %s не съществува в клас %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "библиотека" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Невъзможно е писането в папката за log файлове: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "модел" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi не можа да открие контролер за обработка на тази заявка: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Моля задайте път по подразбиране в config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Страницата, която поискахте, %s, не беше открита." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Съобщете за тази грешка на Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Искания %s, %s, не беше открит" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Път на изпълнение" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Зареден за {execution_time} секунди, използвайки {memory_usage} от паметта. Създадено от Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Може да има само един Ushahidi на заявка за страница" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Нехванато %s: %s във файл %s на ред %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "преглед" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Първо трябва да зададете файла за преглед преди да извикате изписването" diff --git a/application/i18n/po/po-bg_BG/database.po b/application/i18n/po/po-bg_BG/database.po new file mode 100644 index 0000000000..585e7ae4b0 --- /dev/null +++ b/application/i18n/po/po-bg_BG/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Грешка в базата данни: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Таблицата \"%s\" не беше намерена в базата данни. Моля проверете дали имате последната версия на базата данни за тази версия на Ushahidi" diff --git a/application/i18n/po/po-bg_BG/datetime.po b/application/i18n/po/po-bg_BG/datetime.po new file mode 100644 index 0000000000..18d24e39b5 --- /dev/null +++ b/application/i18n/po/po-bg_BG/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "сутрин" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "пет" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "петък" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "пон" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "понеделник" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "следобед" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "съб" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "събота" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "нед" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "неделя" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "чет" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "четвъртък" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "втр" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "вторник" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "сря" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "сряда" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/feeds.po b/application/i18n/po/po-bg_BG/feeds.po new file mode 100644 index 0000000000..6534c650ab --- /dev/null +++ b/application/i18n/po/po-bg_BG/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Името на абонамента трябва да е между 3 и 70 символа." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Моля въведете име на абонамента." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Моля въведете адрес на абонамента." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Моля въведете валиден адрес. Например: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ИЗТОЧНИК" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Заглавие" diff --git a/application/i18n/po/po-bg_BG/footer.po b/application/i18n/po/po-bg_BG/footer.po new file mode 100644 index 0000000000..2e14e019d0 --- /dev/null +++ b/application/i18n/po/po-bg_BG/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl не е инсталиран на тази система" diff --git a/application/i18n/po/po-bg_BG/form.po b/application/i18n/po/po-bg_BG/form.po new file mode 100644 index 0000000000..ed256f1063 --- /dev/null +++ b/application/i18n/po/po-bg_BG/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Полето Име трябва да е между 3 и 200 символа." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Моля въведете стойност между 0 и 50 за полето Височина" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Въвели сте неправилна стойност за полето Дата" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Моля изберете Да или Не за полето Дата" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Полето Име трябва да е между 3 и 100 символа." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Моля въведете стойност за полето Име." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Въвели сте неправилна стойност за полето Изисква се" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Моля изберете Да или Не за полето Изисква се" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Моля изберете валиден тип на поле." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Моля изберете тип на поле." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Моля въведете стойност между 0 и 200 за полето Широчина" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Моля въведете описание на формуляра." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Формулярът по подразбиране не може да бъде изтрит." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Моля изберете към кой формуляр да се добави това поле." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Моля изберете към кой формуляр да се добави това поле." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Името на формуляра трябва да е между 3 и 100 символа." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Моля въведете име на формуляра." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-bg_BG/imap.po b/application/i18n/po/po-bg_BG/imap.po new file mode 100644 index 0000000000..036350ace8 --- /dev/null +++ b/application/i18n/po/po-bg_BG/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Отварянето на IMAP поток беше неуспешно" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Email услугата ви не е използваема" diff --git a/application/i18n/po/po-bg_BG/installer.po b/application/i18n/po/po-bg_BG/installer.po new file mode 100644 index 0000000000..cefde80044 --- /dev/null +++ b/application/i18n/po/po-bg_BG/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Основен път" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "База данни" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Адрес на база данни" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Ако Ushahidi ще върви на вашия компютър, това най-вероятно ще е \"localhost\". Ако ще върви на сървър, моля попитайте доставчикът си" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Име на база данни" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Името на базата данни, с която искате Ushahidi да работи" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "За повече информация, моля прочетете тази статия във връзка с използването на бази данни" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Език по подразбиране (Локални настройки)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Всеки пакет на Ushahidi идва с вградени езици по подразбиране. Може да добавите и други" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Изключи" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Включи" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Това е списъка с грешките, които открихме" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Местоположението на сървъра, където ще се поставят файловете на Ushahidi. Ние автоматично засякохме това място. Моля проверете дали е вярно. Ако е празно, значи Ushahidi е инсталиран на най-горната папка" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Завършен" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Общи" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API ключ" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Всеки може да получи API ключ. Получете вашия сега" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Назад" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "Инсталация за напреднали" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Въведете всички основни настройки в 5 стъпки. Това включва сървъра, картата, името на сайта и контактите." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "Основна инсталация" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Бърза и лесна. Ще ви трябва само началната директория и информация за базата данни. Изберете тази опция, ако искате да започнете бързо. По-късно може да настроите всичко останало." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Продължи" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Добре дошли в инсталацията на сървъра на Ushahidi. Изберете кой тип инсталация искате:" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Инсталацията е успешна" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail сървър" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Адрес Mail сървър" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Примери: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Парола на Mail сървър" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Паролата, която използвате, за да влезете в мейла си" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Порт на Mail сървъра" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Най-чести портове: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Тип на Mail сървъра" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) или Post Office Protocol (POP). Вижте разликата?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Потребителско име на Mail сървъра" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Ако използвате Gmail, Hotmail или Yahoo Mail, въведете целия email адрес като потребителско име." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Карта" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Доставчик на картата" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi работи еднакво добре с тези четири доставчици на карти: Google, Bing, Yahoo и Open Street Map. Изберете тази, които има най-подробни карти във вашия регион." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Други стъпки..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Парола" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Паролата на базата данни" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Предишна" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Моля рестартирайте Apache сървъра си" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Включи/изключи SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Някои mail дават възможност да се използва SSL когато се прави връзка. Използването на SSL се препоръчва, тъй като ви дава допълнителна сигурност." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Настройте вашия SMS сървър" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Email адрес на страницата" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Email адрес за получаване на сигнали" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Когато посетителите ви се абонират за сигнали, ще ги получават от този адрес. Той не е трябва непременно да е същия като мейла на сайта." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Комуникацията на сайта ще минава през този адрес" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Име на сайта" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Името на вашия сайт" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Основно съобщение/мото на сайта" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Съобщението, с което сайта ще посреща посетителите" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Файловете и папките отдолу трябва да могат да се променят на сървъра ви" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Ето как да промените правата за писане:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Преди да започнете, проверете дали тези папки и файлове могат да бъдат променяни на сървъра ви. Това включва промяна на правата за писане." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "За процеса на инсталация, трябва да разполагате със следната информация:" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Префикс на таблиците" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "По принцип няма нужда да променяте префикса на таблиците. Понякога обаче, ако искате да инсталирате няколко платформи на един сървър и в една база данни, това е задължително, за да се различават данните една от друга." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Заглавие" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "За да се впишете, отидете на" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Качи файл със сигнали" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Потребителско име" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Потребителско име на базата данни" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "и използвайте тези потребителски данни" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Прегледайте сайта си" diff --git a/application/i18n/po/po-bg_BG/layer.po b/application/i18n/po/po-bg_BG/layer.po new file mode 100644 index 0000000000..c4de8bff66 --- /dev/null +++ b/application/i18n/po/po-bg_BG/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Цветът трябва да е 6 символа." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Цветът се изисква." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Файлът не изглежда да е с валиден формат. Приетите формати са само .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Файлът не изглежда да е валиден" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Името трябва да е между 3 и 80 символа." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Името се изисква." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Изисква се ли KML адрес, или файл." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Не може да зададете KML файл и адрес едновременно" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Моля въведете правилен адрес. Например: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-bg_BG/libraries.po b/application/i18n/po/po-bg_BG/libraries.po new file mode 100644 index 0000000000..a2e743f465 --- /dev/null +++ b/application/i18n/po/po-bg_BG/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Не успяхме да се свържем с Akismet сървъра" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Отговорът от Akismet не беше получен" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API библиотеката: %s, за класа %s не беше открита. Моля проверете API таблицата с пътища." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Вашият Akismet API ключ не е валиден" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Грешка докато изпълнявахме изпращане с fopen!
Моля проверете дали PHP има поддръжка за OpenSSL и проверете дали версията на PHP е над 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Съобщението в unicode е прекалено дълго! (дължина=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Моля задайте краен адрес (За)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Моля задайте изходящ адрес (От)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Съобщението в unicode е прекалено дълго! (дължина=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Неподдържан формат за изпращане!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API библиотека %s не е валидна. Всички API библиотеки трябва да са подкласове на %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Папката %s не може да бъде изтрита" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Грешка при извеждане: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Грешка при свалянето на последната версия. HTTP код" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Файла %s не може да се копира" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Файла %s не може да се изтрие" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi скрипт за подновяване" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Сваления zip на Ushahidi %s, не може да бъде записан" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-bg_BG/maintenance.po b/application/i18n/po/po-bg_BG/maintenance.po new file mode 100644 index 0000000000..e0c4d89198 --- /dev/null +++ b/application/i18n/po/po-bg_BG/maintenance.po @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, bg_BG/maintenance.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: bg_BG\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-bg_BG/message.po b/application/i18n/po/po-bg_BG/message.po new file mode 100644 index 0000000000..ebabfcad9e --- /dev/null +++ b/application/i18n/po/po-bg_BG/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Моля въведете правилен код за сигурност" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Моля въведете код за сигурност" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email адресът не изглежда да е правилен?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email трябва да съдържа между 4 и 64 символа." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email полето е задължително, ако сте отбелязали отметката." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Коментарът е задължителен." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името трябва да е с поне 3 символа." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Името е задължително." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Телефонният номер не е валиден." diff --git a/application/i18n/po/po-bg_BG/mhi.po b/application/i18n/po/po-bg_BG/mhi.po new file mode 100644 index 0000000000..71df9b5388 --- /dev/null +++ b/application/i18n/po/po-bg_BG/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Моля въведете правилен код за сигурност" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Моля въведете код за сигурност" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email адресът не изглежда да е правилен?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Моля задайте правилен email адрес." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Полето за съобщения трябва да съдържа нещо." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Заглавието трябва да е поне 3 символа." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Заглавието е задължително." diff --git a/application/i18n/po/po-bg_BG/notifications.po b/application/i18n/po/po-bg_BG/notifications.po new file mode 100644 index 0000000000..f86acf87f4 --- /dev/null +++ b/application/i18n/po/po-bg_BG/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Това съобщение е изпратено от вашия сайт" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Вход за администратори" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Нов коментар е пуснат в отговор на:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Нов коментар" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Ново email съобщение е пуснато на сайта." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Ново email съобщение" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Нов сигнал е пуснат на сайта." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Нов сигнал" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Нов SMS е пуснат на сайта." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Нов SMS" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-bg_BG/page.po b/application/i18n/po/po-bg_BG/page.po new file mode 100644 index 0000000000..e346646300 --- /dev/null +++ b/application/i18n/po/po-bg_BG/page.po @@ -0,0 +1,33 @@ +#. extracted from en_US/page.php, bg_BG/page.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: bg_BG\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-bg_BG/permissions.po b/application/i18n/po/po-bg_BG/permissions.po new file mode 100644 index 0000000000..2040201e47 --- /dev/null +++ b/application/i18n/po/po-bg_BG/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/private_message.po b/application/i18n/po/po-bg_BG/private_message.po new file mode 100644 index 0000000000..495e4a1647 --- /dev/null +++ b/application/i18n/po/po-bg_BG/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, bg_BG/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: bg_BG\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-bg_BG/report.po b/application/i18n/po/po-bg_BG/report.po new file mode 100644 index 0000000000..d20fe4ac24 --- /dev/null +++ b/application/i18n/po/po-bg_BG/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "грешка!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Моля изберете валиден запис за включване в свалянето" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Моля изберете валиден запис за включване в свалянето" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Моля изберете валиден тип сигнал за включване в свалянето" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Моля изберете валиден тип сигнал за включване в свалянето" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Моля изберете валиден тип сигнал за включване в свалянето" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Полето за \"от дата\" не изглежда да съдържа валидна стойност" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Моля въведете валидно поле \"от дата\". То не може да е след днес." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Моля въведете валидна стойност за \"Одобри този сигнал\"" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Моля въведете валидна стойност за \"Одобри този сигнал\"" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Полето предобед/следобед не изглежда да съдържа правилна стойност" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Полето за категория не изглежда да съдържа правилна стойност" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Полето за категория се изисква" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Полето за дата не изглежда да съдържа правилна стойност" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Полето за дата не изглежда да съдържа правилна стойност" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Полето за дата се изисква" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Полето за описание се изисква" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Полето за час не изглежда да съдържа правилна стойност" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Полето за час се изисква" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Въведете правилна стойност за Достоверност на Информацията" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Въведете правилна стойност за Достоверност на Информацията" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Полето за минути не изглежда да съдържа правилна стойност" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Полето за минути се изисква" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Полето за източник на новини не изглежда да съдържа правилна стойност" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Проверете дали снимката е под 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Полето за снимка не съдържа валидна снимка. Приемаме само форматите .JPG, .PNG и .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Полето за снимка не съдържа валиден файл." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Моля въведете валидна стройност за Благонадеждност на Източника" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Моля въведете валидна стройност за Благонадеждност на Източника" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Полето за заглавие трябва да съдържа между 3 и 200 символа" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Полето за заглавие се изисква" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Моля въведете правилна стойност за Потвърди Този Сигнал" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Моля въведете правилна стойност за Потвърди Този Сигнал" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Линка на видеото не изглежда да е валидна" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Полето за географска дължина не изглежда да съдържа валидна стойност" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Полето за географска дължина се изисква. Моля натиснете на картата, за да отбележите местоположението." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Полето за локализация не съдържа валидна стойност." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Този сигнал вече има превод на този език" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Полето за локализация не съдържа валидна стойност." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Оригиналният сигнал и превода има еднакви езици" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Полето за локализация се изисква" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Полето за име на местоположението трябва да е между 3 и 200 символа." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Полето за име на местоположението се изисква." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Полето за географска ширина не изглежда да съдържа валидна стойност" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Полето за географска ширина се изисква. Моля натиснете на картата, за да отбележите местоположението." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Полето за email не изглежда да съдържа правилен адрес" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Полето за email трябва да е между 4 и 64 символа" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Полето за първо име трябва да е между 3 и 100 символа" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Полето за фамилно име трябва да е между 3 и 100 символа" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Полето за \"до дата\" не изглежда да съдържа валидна стойност" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Моля въведете валидно поле \"до дата\". То не може да е след днес." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Полето \"до дата\" не може да е преди стройността за \"от дата\"." diff --git a/application/i18n/po/po-bg_BG/reporters.po b/application/i18n/po/po-bg_BG/reporters.po new file mode 100644 index 0000000000..112c860c3e --- /dev/null +++ b/application/i18n/po/po-bg_BG/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Полето за географска дължина не изглежда да съдържа валидна стойност" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Полето за географска дължина се изисква. Моля натиснете картата, за да отбележите местоположението." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Полето за ниво на сигнализиращия не изглежда да съдържа валидна стойност" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Полето за ниво на сигнализиращия се изисква." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Полето за име на местоположението трябва да е между 3 и 200 символа" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Полето за име на местоположението се изисква" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Полето за географска широчина не изглежда да съдържа валидна стойност" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Полето за географска широчина се изисква. Моля натиснете картата, за да отбележите местоположението." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Невалиден сигнализиращ" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Невалиден сигнализиращ" diff --git a/application/i18n/po/po-bg_BG/reports.po b/application/i18n/po/po-bg_BG/reports.po new file mode 100644 index 0000000000..59a7a59f0b --- /dev/null +++ b/application/i18n/po/po-bg_BG/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, bg_BG/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: bg_BG\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-bg_BG/roles.po b/application/i18n/po/po-bg_BG/roles.po new file mode 100644 index 0000000000..e0ebdd464d --- /dev/null +++ b/application/i18n/po/po-bg_BG/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Полето с описание трябва да е между 3 и 100 символа" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Полето с описание се изисква." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Полето за името трябва да съдържа само букви и цифри." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Полето за името трябва да е между 2 и 30 символа." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Ролята на Супер Администратор не може да бъде променяна." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Полето за името се изисква." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-bg_BG/settings.po b/application/i18n/po/po-bg_BG/settings.po new file mode 100644 index 0000000000..b516dfe1f0 --- /dev/null +++ b/application/i18n/po/po-bg_BG/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Полето за позволение на коментарите не съдържа валидна стойност." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Полето за позволение на коментарите е задължително." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Полето за включване на абонамент не съдържа валидна стойност." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Полето за включване на абонамент е задължително." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Полето за позволение на сигнали не съдържа валидна стойност." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Полето за позволение на сигнали е задължително." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Полето за споделяне на статистика не съдържа валидна стойност." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Полето за споделяне на статистика е задължително." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Брой на записите, които да се вземат при едно API запитване" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Максимален брой на записите, които да се вземат при едно API запитване" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Максимален брой на API запитвания към един IP адрес" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Полето Akismet е задължително." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Полето Akismet не съдържа валидна стойност." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Полето за кеширане на страниците е задължително." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Полето за кеширане на страниците не съдържа валидна стойност." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Полето за продължителността на кеша не съдържа валидна стойност." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Полето за продължителността на кеша е задължително" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Изглежда сървъра ви не е конфигуриран да работи с изчистени адреси. ще трябва да промените настройките на сървъра си преди да включите изчистените адреси. Вижте как във форума" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Тази опция ще позволи Ushahidi да бъде достъпен през изчистени адреси. Това означава без \"index.php\" в адреса." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Включи изчистени адреси" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Изчистени адреси" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Номера за API-то на Clickatell трябва да съдържа не повече от 20 символа." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Номера за API-то на Clickatell е задължителен." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Полето с паролата на Clickatell трябва да е между 5 и 20 символа." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Полето с паролата на Clickatell е задължително." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Полето с потребителското име на Clickatell трябва да е максимално 50 символа." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Полето с потребителското име на Clickatell е задължително." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Настройки на картата" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Местоположение по подразбиране" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Полето за цвят не съдържа валидна стойност." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Полето за цвят трябва да е не повече от 6 символа." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Полето за цвят е задължително." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Изглед на картата по подразбиране" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Ниво на увеличение по подразбиране" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Вземи имената на градовете от картата" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Порта на mail сървъра е твърде дълъг" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Порта на mail сървъра трябва да съдържа само цифри" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Полето за парола на мейла трябва да е между 5 и 50 символа." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Полето за парола на мейла е задължително." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Порта на mail сървъра е твърде дълъг" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Порта на mail сървъра трябва да съдържа само цифри" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Типа на mail сървъра е с грешна дължина." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Типа на mail сървъра е задължителен" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Полето с потребителското име на mail сървъра трябва да е не повече от 50 символа." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Полето с потребителското име на mail сървъра е задължително." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Полето за Google Analytics трябва да съдържа валидно Web Property ID във формата UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Полето за брой записи на страница (сайта) не съдържа валидна стойност." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Полето за брой записи на страница (сайта) е задължително." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Полето за брой записи на страница (администрация) не съдържа валидна стойност." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Полето за брой записи на страница (администрация) е задължително." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Настройването на доставчика на карта е лесен процес. Изберете доставчик, получете API ключ от техния сайт и го въведете тук" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Ниво на увеличение" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Изберете доставчик за карта" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Въведете нов API ключ" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Получете API ключ" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Настройването на доставчика на карта е лесен процес. Изберете доставчик, получете API ключ от техния сайт и го въведете тук" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Доставчик на карта" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Настройки на картата" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Тази инсталация на Ushahidi важи ли за няколко държави" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Моля изберете държава по подразбиране" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Натиснете и преместете картата, за да изберете точното си местоположение" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Групирай сигнали на картата" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Позволете на потребителите да коментират сигналите" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Включете RSS абонамент в сайта" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Позволете на потребители да пускат сигнали" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Ключ за Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Кеширай страниците" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Продължителност на кешираните страници" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Съобщение за правата върху сайта" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Цвят по подразбиране за всички категории" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Покажи страницата за контакт" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Покажи страницата \"Как да помогнем\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Email за сигнали" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "За да получавате сигнали по мейл, моля настройте email акаунта си." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Email адрес на сайта" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - формат: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Записи на страница - сайт" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Записи на страница - администрация" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Предотвратете спам с коментари с Akismet на Automattic.
Може да получите безплатен API ключ като се регистрирате WordPress.com потребителски акаунт" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica достъп" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica сайт " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Език на сайта" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Съобщение на сайта" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Име на сайта" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Позволи статистиката (държи се на сървъра на Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Бележка на сайта" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Настройки на сайта" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter думи за търсене" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Тагове разделени със запетайка " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Email адресът не изглежда да е правилен" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Полето за email адрес трябва да съдържа между 4 и 100 символа" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Полето за име на сайта трябва да е между 4 и 50 символа." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Полето за име на сайта е задължително." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Полето за бележката на сайта трябва да съдържа между 3 и 100 символа." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Полето за бележката на сайта е задължителна." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Вашият Clickatell API номер" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Проверете вашия Clickatell Credit баланс" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Зареди баланса" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Вашата Clickatell парола" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Запишете се за услугите на Clickatell като натиснете тук" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Въведете вашата информация за достъп до Clickatell тук" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Вашето Clickatell потребителско име" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Въведете телефонен номер или номера, които да се свържат към Frontline SMS в полето/полетата тук" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Въведете номер(а) без + или тирета в полетата" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Option 1: Използвайте Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Използвайте Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Настройки на SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Телефон 1 не изглежда да е валиден" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Телефон 1 трябва да съдържа само цифри" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Телефон 2 е твърде дълъг" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Телефон 2 трябва да съдържа само цифри" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Телефон 3 е твърде дълъг" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Телефон 3 трябва да съдържа само цифри" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/sharing.po b/application/i18n/po/po-bg_BG/sharing.po new file mode 100644 index 0000000000..e973c9d677 --- /dev/null +++ b/application/i18n/po/po-bg_BG/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Входяща дата" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Дата на добавяне" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Последен достъп" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Цветът трябва да е дълъг поне 6 знака." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Полето за цвят се изисква." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Името за споделяне не изглежда валидно" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Името за споделяне се изисква." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Адресът на този сайт вече съществува" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Адресът на този сайт не изглежда валиден" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Адресът на сайт се изисква." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Адресът на сайт не съдържа валиден URL." diff --git a/application/i18n/po/po-bg_BG/stats.po b/application/i18n/po/po-bg_BG/stats.po new file mode 100644 index 0000000000..b3e8274664 --- /dev/null +++ b/application/i18n/po/po-bg_BG/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Одобрени" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Категории" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Значение на категорията" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Тази графика показва промяната на броя сигнали в различните категории през времето. Минете отляво надясно за да видите сравнителен преглед на различните категории. Когато минете с мишката отгоре ще видите повече подробности" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Изберете период" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Държави" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Държава" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Разбивка по държави" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Здравейте, това е секцията за статистика. Скоро ще има обща информация тук. За сега разгледайте като изберете категории горе вляво" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Грешка" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Речник" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Обобщение на посещенията" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Легенда" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Прегледи" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Общият брой страници прегледани от посетителите ви" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Сигнали" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Категории на сигнали" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Статистика на сигнали" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Статус на сигнали" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Преглед за стигнал" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Статистика за сигнал" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Статистиката не е настроена" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 месец" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 месеца" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 месеца" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Всички" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Неодобрени" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Уникални посетители" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Броя хора, които са посетили сайта. Уникалните посетители се засичат с cookie-а. Когато посетителя не е включил cookie-тата, разпознаването става по IP адрес, резолюция, операционна система и прочие." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Непотвърден" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Потвърден" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Обобщение на посетителите" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Посещения" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Посещението е запис на един потребител, който се влиза в сайта поне 30 минути след последното си влизане." diff --git a/application/i18n/po/po-bg_BG/tooltips.po b/application/i18n/po/po-bg_BG/tooltips.po new file mode 100644 index 0000000000..cdd9c136cd --- /dev/null +++ b/application/i18n/po/po-bg_BG/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Вашият email адрес" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Вашето пълно име" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Избирайки ДА ще ви позволи да получавате сигнали по email или коментари оставени на сайта" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Вашата парола. Оставете я празна, ако искате да запазите сегашната си парола" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Потребителското име не може да се променя" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Това е email адресът, на който ще се изпращат съобщенията." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Това позволява групирането на подобни сигнали в една точка на картата" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Позволете на потребители да коментират на сигнали в сайта." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Това позволява на RSS абонаментите да се показват на заглавната страница." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Позволете на потребителите да подават информация чрез формуляра." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Брой на записите по подразбиране, които ще се изваждат при запитване към API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Максимален брой на записите, които ще се изваждат при запитване към API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Максимален брой на запитвания към API на IP адрес" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Включете или изключете кеширането на страниците. Това прави показването по-бързи като намалява времето за реакция на сървъра. Препоръчваме го при сайтове с голям трафик. **Запомнете, че сигналите ще се публикуват на заглавната страница на базата на настройките по-долу (срок на изтичане на кеша)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Задайте срок на изтичане на кеша" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Настройте картата да покрива определена територия" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Задайте един цвят за всички категории на сайта" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Това е държавата, за която сайта е направен" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Покажете или скрийте таба за контакти на началната страница." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Покажете или скрийте таба за помощ на началната страница." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Това е броя на сигналите показани на страница на заглавната страница." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Това е броя на сигналите показани на страница в администраторския панел." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Това е хъба за входящи съобщения" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Това синхронизира съобщенията с хъба и платформата" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Телефонни номера, от които са получени съобщения" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Следи посетителите на сайта. Получете подробна статистика" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Настройва езика, на който ще се вижда сайта." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Настройва коя карта ще се използва на сайта." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Това посочва къде се намира email адреса" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Това е паролата за email-а, който ще получава съобщенията" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Тива се изисква, за да се получават входящи съобщения от email адреса" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Това повишава сигурността на връзката" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Това се изисква, за да се получават съобщения от сървъра" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Това е email адресът, който ще получава сигнали" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Статистиката за посещенията се изпраща на сървър контролиран от Ushahidi. Като включите тази опция, вие получавате достъп до тази информация от административният си панел. Като я изключите, вие ще спрете да събирате и имате достъп до статистика за периода." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Винаги е добра идея да запазите правата над труда си. За помощ и информация за подходящите лицензи, моля посетете http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Този email адрес ще получава съобщения от формуляра за контакти." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Този текст ще се появи над картата на началната страница. Полезно е да дава важна информация на посетителите на сайта. За да махнете кутията, просто изтрийте съобщението тук." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Това е името на сайта, което ще се появи най-отгоре." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "В няколко думи за какво се отнася сайта." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Задайте Twitter таг, който да се използва при споделяне" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/ui_admin.po b/application/i18n/po/po-bg_BG/ui_admin.po new file mode 100644 index 0000000000..1788921204 --- /dev/null +++ b/application/i18n/po/po-bg_BG/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Достъпът е отказан. Или нямате права, или заявката ви е била отказана" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Достъпът е отказан. Заявката е разпозната, но отказана поради различни лимити като време. Моля опитайте по-късно." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Действия" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "добавен" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "добавен/променен" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Добавки" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Администрация" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "сутрин" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Анонимен" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Забранено" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API История" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Настройки" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Позволи" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Позволи Всички" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "одобрен" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Автоматично одобряване" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Одобри на ръка" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Архивирано" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Автор" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email на автора" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Зазад" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Забрани IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Отказ" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Категории" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Грешка при показването на графика" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Моля проверете дали съобщението е валидно" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Моля проверете дали цифрата е валидна" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Моля проверете настройките за SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Градовете са заредени" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "код" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Версията на кода не е синхронизирана." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "коментари" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Кода за активиране на уведомленията е: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Вашият потребител е бил" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Държавата не е намерена" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "създаден/променен" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Създай сигнал" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Критично подновяване" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Дневно" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Плот" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "база данни" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Дата и час" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Версията на базата данни не е в синхрон." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "изтрит" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Изтрий" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Проба" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Описание" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Свали сигналите" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Променено от" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Промени" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Промени историята" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Грешка в географските координати! HTTP грешка" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Библиотеката IMAP PHP не е инсталирана" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Грешка" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Грешка, не успяхме да съобщим за инцидента" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "На всеки 6 часа" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "На всеки 12 часа" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Въпроси и отговори" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "абонамент" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Обратна връзка" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "абонаменти" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Стройност по подразбиране" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Височина (в редове)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Максимална дължина в символи" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Име на поле" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Не успяхме да намерим качения файл" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Не успяхме да отворим файла за четене" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Този формуляр не съществува!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Форум" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Текстово поле (свободен текст)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "От" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "От" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Грешка в зареждането на географските имена" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Намери помощ" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Действия" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Добави/промени" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Настройки на потребителите" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Роля" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Потребител" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "помощ" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Всеки час" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Абонамент за инциденти на" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Случай" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Случаи" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Подробности за случай" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Невалиден параметър" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP адрес" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Това поле за дата ли е?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email адрес:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Пълно име:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Парола:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Роля:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Потребителско име:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Слоеве" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Модератор" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Излез" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "История" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Промени" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Промени ролите и правата" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Виж потребителите" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Добави/промени потребителите" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "маркирано като не спам" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "маркирано като спам" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "не отговаря на никакви документи" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Съобщение" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Съобщения" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica съобщения" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter съобщения" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Това съобщение е изпратено!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Минути" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Липсва параметър" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Модератор" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "Променен" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "премести надолу" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "премести нагоре" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Множество инсталации" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Моят профил" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Нова парола" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Не" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Известия" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Без значение за главни или малки букви." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Не е намерено" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Няма данни. Няма резултати за показване." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Няма грешка" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Няма резултати за показване!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "на" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "страница" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "страници" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Страницата не е намерена" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Използвани параметри" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Парола" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Възстановяване на парола" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Уважаеми" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Получихме запитване за възстановяване на парола от" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "За да промените паролата си, моля отворете този адрес или го копирайте в браузъра си." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Както пожелахте, паролата ви беше сменена. Новите данни са" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi смяна на парола" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "следобед" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Данните не са пратени с POST метод" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "чети" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Свързано" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Сигнализиращи" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Нива на сигнализиращи" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Сигнали" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Изисква се" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Възстанови" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Резултати" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Запази настройките" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Търси" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "търси се" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Изберете тип на полето ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Изберете обект" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Изпращач" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Това съобщение е пратено от сайта на " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Настройки" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Показва се страница" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Показват се резултати" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Статистика" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Статистика" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Събирането на статистика се провали! Или сървъра за статистика не работи, или има проблем в инсталацията на Ushahidi. Опитайте пак, за да проверите дали сървъра работи. За да възстановите ръчно статистиката, променете stat_id (на null) и stat_key (на 0) в таблицата за настройки в базата данни. ВНИМАНИЕ: Ще загубите достъп до статистиката си, ако направите това !" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Събирането на статистика се провали!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Супер администратор" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Задачата е изпълнена" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Текстово поле" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Име" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Настройки на потребителите" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "за" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Всички записи" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "до" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Преведи сигналите" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "неодобрено" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Непознат" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "непрочетен" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Натиснете тук, за да обновите сега" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Обновете Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Статус на Ushahidi обновяване" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Качи сигнали" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Потребители" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Версия" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " в на разположение за подновяване." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Виж сайта" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Добре дошли, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Да" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Вашето търсене за" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/ui_main.po b/application/i18n/po/po-bg_BG/ui_main.po new file mode 100644 index 0000000000..bc69c65a9d --- /dev/null +++ b/application/i18n/po/po-bg_BG/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "За " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Достъп" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Ограничения на Достъпа" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Име на акаунта" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Действия" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Това действие не може да бъде върнато. Сигурни ли сте, че искате да продължите?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Активирай" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Активно" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Добави" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Добавено от" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Допълнителни Справки" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Добави/Промени" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Добави Поле" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Добави Език" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Добави Ново" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Добави Нова Категория" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Добави Превод" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Администрация" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Абонамент за сигнали" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Прави ми сигнал, ако се съобщи за инцидент в или около:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Запази сигналът ми" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email адрес:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "въведете email адрес" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "въведете мобилен номер с код за страната" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Абонамент за сигнали" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Мобилен телефон:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Или поставете точка на картата долу и ще получавате сигнали в радиус от 20 километра." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS абонамент (копирайте адреса долу)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Изберете град" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Стъпка 1: Изберете вашият град или място:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Стъпка 2: Изпрати сигналите на:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Стъпка 3 (по избор): Избери категории" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Потвърди предишна заявка за сигнали" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Вашият сигнал е запазен!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Всички" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Разрешен" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Всички категории" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Всички" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "и" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Одобри" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Одобрени" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Одобрени инциденти" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Одобри този инцидент" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Приблизително" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Архив" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Архивирано" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "на" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Автор" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Изчаква одобрение" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Очаква потвърждение" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Блог" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Отказ" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Категории" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Категория" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Филтър на Категории" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Категорията беше " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Име на Категория" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Изберете " + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Изберете точки от данни за сваляне" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Изберете тип на поле" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Чисти адреси" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Изчисти" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Затвори" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "групи" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Цвят" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Коментар" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Коментари" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Подробности за коментар" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Настройките ви са запазени!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Настрой" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Свържете се с нас" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Код за потвърждение" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Вашия имейл адрес" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Съдържание" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Вашето име" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Вашия мобилен номер" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Изпрати съобщението" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Относно" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Авторско право © 2010 Ushahidi.com. Всички права са запазени." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Създай" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Създай/Промени" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Създай нов" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Създай сигнал" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Достоверност" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Информация" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Дата" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(dd.mm.yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Дата и Време" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "ден" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Деактивирай" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Sofia, Bulgaria" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Изтрий" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Изтрит" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Изтрива" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Изтрий Изключените" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Изтрий този сигнал" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Изтрий спама" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Демо" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Описание" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Пример: бул. Патриарх Евтимий 20, София" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Подробности" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Директен сигнал" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Изключен" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Махни одобрение" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Свали сигнали" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Промени" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Промени полетата на формуляра" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Промени сигнал" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Email Адрес" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Настройки на Mail Сървър" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Адрес на Mail Сървър" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Парола на Mail Сървър" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Порт на Mail Сървър" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "SSL Поддръжка на Mail Сървър" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Тъп на Mail Сървър" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Потребителско име на Mail Сървър" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr ", за да се свържат вашите настройки към email адресът" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "За да получавате инциденти по email, моля въведете email адресът си по-долу. Имайте в предвид, че всички мейли ще се получават на" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Някои сървъри изискват цялостен email адрес" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Email парола" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Стандартни портове: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Примери: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Примери: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Включи или изключи SSL връзка" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "на" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Грешка!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Пример" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "България" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Абонамент" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Дайте обратна връзка" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Абонаменти" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Този абонамент е" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Елементи на абонамента" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Име на абонамента" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Адрес на абонамента" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Неизползвани полета" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Файл" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Филтри" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Филтрирай сигнали съдържащи" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Намери" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Намери Място" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Първо Име" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Пусни на ръка периодичния изпълнител" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Забравихте си паролата?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Формуляр" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Формуляри" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Описание на формуляр" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Промени този формуляр" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Формулярът беше" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Заглавие на формуляр" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "От" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Пълно име" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Има геолокация" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Уникален номер" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Беше" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Как да помогнем" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Скрий" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "скрий това съобщение" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Начало" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Как да съобщим за престъпление" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "Номер" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Снимка" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Снимки" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Снимка/Иконка" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Неактивен" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Кутия" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Инцидент" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Инциденти наблизо" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Местоположение на инцидента" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Включи" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Включи категории" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Включи описание" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Включи колкото се може повече описания" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Включи географска широчина" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Включи информация за географска широчина" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Включи географска дължина" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Включи мултимедия" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Информация за надморското ниво" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Въведете точното си местоположение" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "В отговор на" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP адрес" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "запис" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "записи" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Подробности за запис" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Име на запис" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Ключ" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML файл" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Качи KMZ/KML файл" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML адрес" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Език" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Последен" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Последен месец" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Последно име" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Последна година" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Географска широчина" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Пластове" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Други пластове" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Пластът беше" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Име на пласт" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Адрес на пласт" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Остави коментар" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Ниво" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Това ниво беше" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Име на ниво" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Ограничен" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Връзка" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Местоположение" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Местоположения" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Градове, Области и/или Държави" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Влез" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Географска дължина" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Карта" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Маркирай като прочетено" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Маркирай като непрочетено" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Милтимедия" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Филтър за милтимедия" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Съобщение" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Съобщения" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Подробности за съобщение" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Мобилен" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Промени" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Промени дата" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "месец" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Още" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Тази инсталация на Ushahidi важи ли за повече държави?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Име" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Инциденти наблизо" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Нов" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Новини" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Абонаменти за новини" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Източници на новини" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Нова категория" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Нова парола" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Нов сигнал" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Следващ" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Не" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Съобщение" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Не одобрени" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Не одобрен" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "не е спам" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Не е дефиниран" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Няма резултати" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Официални новини" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Настройка" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Незадължителен" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Настройки" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Организация" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Организации" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Описание на организация" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email на организация" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Организацията беше" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Име на организацията" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Телефон на организация 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Телефон на организация 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Сайт на организация" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Оригинал" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Описание на оригинал" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Заглавие на оригинал" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Други инсталации на Ushahidi" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Изходяща поща" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Изгодящ" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Страница" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Страници" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Описание на страница" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Страницата беше" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Име на таб на страница" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Иеме на страница" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Родителска категория" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Парола" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Напишете отново паролата" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Забравихте паролата си?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Проверете мейла за новата си парола." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Останете вписани?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Последния месец" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Последната година" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "На изчакване" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "на" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Лична информация по желание." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Снимки" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Снимки" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Снимки и видео" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Потърсете местоположението си като въведете координати (формат: 38.19,-85.61), или кликнете веднъж на картата на правилното място." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Пусни" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Моля отбележете" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Добавки" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Сайт на добавката" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Преглед" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Прегледай записа" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Прегледай съобщението" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Предишен" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Профилът ви е запазен" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Бърза статистика" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Рейтинг" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Прочетени" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Получен" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Получен от" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Получавайте сигнали" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Скорошни справки" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Обнови новинарските емисии" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "махни" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Отговори" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Справка" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Сигнализиращ" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Сигнализиращи" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Дата на сигнал" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email на сигнализиращ" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Лично име на сигнализиращ" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Сигнализиращият беше" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP адрес на сигнализиращ" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Фамилно име на сигнализиращ" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Ниво на сигнализиращ" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Нива на сигнализиращ" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Телефон на сигнализиращ" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Сигнали" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Прегледай" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Изпрати" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Категории" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Дата" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Описание" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Сигналите ще бъдат свалени в CSV формат" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Намерете местоположение близо до вас" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Лично име" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Фамилно име" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Уточнете името на местоположението" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Нов адрес на източник" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Незадължителна информация" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Качете снимки" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Върнете на страницата за сигнали" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Изберете град" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Вашият сигнал е изпратен на екипа ни за одобрение. Ще се свържем с вас, ако е нужно." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Изпратете нов сигнал" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Време" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Линия на събитията" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Заглавие на сигнал" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Линк на видео" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Съобщете за инцидент" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Подробности за сигнала" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Като изпратите съобщение на " + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Като изпратите мейл на " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Като изпратите tweet с таг(ове) " + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Като попълните този формуляр" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Сигналът ви е запазен" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Заглавие на сигнал" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Поискайте повече информация" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Поискайте местоположение" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Изисквания" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Изчисти филтрите" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Възстанови парола" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Взимане на имена на градове в избраните държави" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Роля" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Запази" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Запазено" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Запази и Затвори" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Запиши сигнали" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "График" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Периодичен изпълнител" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Ден" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Час" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "История" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Минута" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Ден от седмицата" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "ТЪРСИ" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Резултати от търсенето" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Код за сигурност" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Избери всички" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Изберете тип на полето" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Изберете тип на формуляра" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Изберете в картата" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Изберете колкото ви трябват" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Моля проверете, че сте избрали запис" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Изберете външен вид" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Изпрати" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Изпраща се на" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Изпратен" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Изпратен от" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Сървърен адрес" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Тип на сървъра" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Услуга" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Име на услугата" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Потребителски номер на услугата" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Сподели" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Споделени данни" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Споделянето беше" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Споделя се " + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Покажи" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Покаци всички" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Сайт" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "email адрес на сайта" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Адрес на сайта" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Източник" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Име на източника" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Адрес на източника" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Спам" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL поддръжка?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "От" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Стъпка" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Изпратете Сигнал" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Изпратете със SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Изпратете SMS-а си на" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "на телефона си" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Успех!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Успешно въведено" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Бащино име" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Система" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP порт" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Външен вид" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Външен вид по подразбиране" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Настройки на външен вид" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Това" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Днес" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Този месец" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Тази седмица" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Тази година" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "време" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "ЗАГЛАВИЕ " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "до" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Днес" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Днес от" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Преведен" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Преведено описание" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Преведено заглавие" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Преведи на" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Превод" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Преводът беше запазен" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "непрочетен" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Непотвърден" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Обнови абонаментите" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Качи" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Файл за качване" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Качи сигнали" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "С този формуляр може да въвеждате сигнали в системата на Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Трябва да съдържа поне заглавие и дата" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Примерен CSV сигнал" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Обир в София\",\"2009-05-15 01:06:00\",\"София\",\"Потвърдено от полицията\",\"Кражба\",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Качването е успешно" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Потребител" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Потребителско име" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi администратор" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Потвърждение" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Потвърден" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Потвърдени сигнали" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Потвърди" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Потвърди този сигнал" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Версия" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "чрез" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Видео" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Преглед" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Прегледи" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Прегледай всички" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Прегледай всички абонаменти" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Прегледай всички сигнали" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Прегледай записите" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Вижте още" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Прегледай сигнал" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Прегледай сигнали" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Видим" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Изчаква одобрение" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Изчаква потвърждаване" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Тежест" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Да" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Вчера" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-bg_BG/upgrade.po b/application/i18n/po/po-bg_BG/upgrade.po new file mode 100644 index 0000000000..c4daed08c4 --- /dev/null +++ b/application/i18n/po/po-bg_BG/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Грешни входящи данни. Може да е само 0 за НЕ и 1 за ДА." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Автоматично обновяване." + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Има нова версия." + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Продължи" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Обновяване" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Ще обновя базата данни от версия" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "на версия" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Натиснете \"Обновяване\" и се гледайте докато направя магията." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Ако искаш да направя резервно копие на базата данни, отбележи отметката." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Да направя резервно копие на базата данни? (Много препоръчително)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Обновяване на базата данни Ushahidi " + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Обновяването се провали някъде" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Обновяване на ръка" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Статус на обновяване на Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "В тези инструкции ще научите как да обновите Ushahidi на ръка" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Стъпка 1: Свалете последната дистрибуция на ushahidi от http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Стъпка 2: В зависимост от операционната система на сървъра, използвайте предпочитания инструмент/маниер (i.e: telnet, ftp, ssh), за да се вържете и замените съдържанието на всички папки с най-новите от дистрибуцията. ВСИЧКИ ОСВЕН:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Стъпка 3: Натиснете \"Продължи\", за да обновите базата данни." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "За автоматично обновяване, натиснете бутона по-долу." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Обновяване" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-bn/alerts.po b/application/i18n/po/po-bn/alerts.po new file mode 100644 index 0000000000..4dc428fe68 --- /dev/null +++ b/application/i18n/po/po-bn/alerts.po @@ -0,0 +1,228 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi Web\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-bn/category.po b/application/i18n/po/po-bn/category.po new file mode 100644 index 0000000000..ed6caa503f --- /dev/null +++ b/application/i18n/po/po-bn/category.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi Web\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:05+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-bn/core.po b/application/i18n/po/po-bn/core.po new file mode 100644 index 0000000000..77f9354a51 --- /dev/null +++ b/application/i18n/po/po-bn/core.po @@ -0,0 +1,150 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi Web\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-bn_BD/alerts.po b/application/i18n/po/po-bn_BD/alerts.po new file mode 100644 index 0000000000..bc6914b2d8 --- /dev/null +++ b/application/i18n/po/po-bn_BD/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# shourav9884 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-07 10:42+0000\n" +"Last-Translator: shourav9884 \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ইমেইল ক্ষেত্রে গ্রহণযোগ্য ঠিকানা নেই" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "উক্ত ইমেইল ঠিকানাটি ইতমধ্যে নিবন্ধিত হয়েছে" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ইমেইল ক্ষেত্র সর্বনিম্ন ৪ এবং সর্বোচ্চ ৬৪ বর্ণবিশিষ্ট হতে হবে" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "চেকবক্স চেক করা তাকলে ইমেইল ক্ষেত্র আবশ্যক" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "অনুগ্রহ করে সতর্ক ক্ষেত্র নিজ দেশের অভ্যন্তরে নিশ্চিত করুন" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "আপনি মানচিত্র থেকে কোন গ্রহণযোগ্য এলাকা নির্বাচন করেন নি" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "মোবাইল ফোন লিখন ক্ষেত্রে গ্রহণযোগ্য সংখ্যক বর্ণ লেখা হয় নি" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "উক্ত মোবাইল নাম্বারটি ইতমধ্যে বার্তা গ্রহণের জন্য নিবন্ধিত হয়েছে" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "মোবাইল ফোন লিখন ক্ষেত্রে গ্রহণযোগ্য নাম্বার অনুপস্থিত। অনুগ্রহ করে কান্ট্রি কোড সহ ফোন নাম্বার লিখুন" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "মোবাইল নাম্বার অথবা ইমেইল ঠিকানা অন্তত একটি প্রদান বাঞ্ছনীয়" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "চেকবক্স চেক করা তাকলে মোবাইল নাম্বার আবশ্যক" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "মানচিত্রে গ্রহণযোগ্য ব্যাসার্ধ প্রদান করা হয় নি" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "মানচিত্রে কোন ব্যাসার্ধ প্রদান করা হয় নি" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "গ্রহণযোগ্য প্রাপক প্রদান করা হয় নি" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "আপনি নিচের প্রকারগুলোর এলার্টগুলো সাবস্ক্রাইব করেছেন" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "এই কোড আগেই ভেরিফাই করা হয়েছে!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "ভেরিফিকেশন কোড পাওয়া যায় নি। আপনার সঠিক URL আছে দয়া করে নিশ্চিত করুন।" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "আপনার কোড সঠিকভাবে যাচাই করা হয়েছে। আপনি এখন থেকে ঘটনা সম্পর্কে সতর্কতা গ্রহণ করা হবে।" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "আপনার সতর্কতা অনুরোধ নিশ্চিত করার জন্য, দয়া করে এখানে যান." + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-bn_BD/auth.po b/application/i18n/po/po-bn_BD/auth.po new file mode 100644 index 0000000000..f5f9c40c93 --- /dev/null +++ b/application/i18n/po/po-bn_BD/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-bn_BD/bug.po b/application/i18n/po/po-bn_BD/bug.po new file mode 100644 index 0000000000..833b7456dd --- /dev/null +++ b/application/i18n/po/po-bn_BD/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-bn_BD/mhi.po b/application/i18n/po/po-bn_BD/mhi.po new file mode 100644 index 0000000000..1d8872a474 --- /dev/null +++ b/application/i18n/po/po-bn_BD/mhi.po @@ -0,0 +1,49 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi Web\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-bn_BD/permissions.po b/application/i18n/po/po-bn_BD/permissions.po new file mode 100644 index 0000000000..73ffda22e0 --- /dev/null +++ b/application/i18n/po/po-bn_BD/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-bn_BD/report.po b/application/i18n/po/po-bn_BD/report.po new file mode 100644 index 0000000000..0d9e09247a --- /dev/null +++ b/application/i18n/po/po-bn_BD/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-bn_BD/settings.po b/application/i18n/po/po-bn_BD/settings.po new file mode 100644 index 0000000000..66089e24ac --- /dev/null +++ b/application/i18n/po/po-bn_BD/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-bn_BD/tooltips.po b/application/i18n/po/po-bn_BD/tooltips.po new file mode 100644 index 0000000000..d04de19598 --- /dev/null +++ b/application/i18n/po/po-bn_BD/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-bn_BD/ui_admin.po b/application/i18n/po/po-bn_BD/ui_admin.po new file mode 100644 index 0000000000..dc51168b14 --- /dev/null +++ b/application/i18n/po/po-bn_BD/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-bn_BD/ui_main.po b/application/i18n/po/po-bn_BD/ui_main.po new file mode 100644 index 0000000000..7b53e282bb --- /dev/null +++ b/application/i18n/po/po-bn_BD/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Mahay Alam Khan , 2014 +# shourav9884 , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "প্রসঙ্গে" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "প্রবেশাধিকার" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "প্রবেশাধিকার" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "অ্যাকাউন্টের নাম" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "কর্মসমূহ" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "এই কাজটি মুছে ফেলা সম্ভব নয়। আপনি কি চালিয়ে যেতে চান?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "চালু করা" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "চালু" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "যোগ করুন" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "যোগ করেছেনঃ" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "অতিরিক্ত তথ্য" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "অতিরিক্ত রিপোর্ট" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "যোগ/সম্পাদনা" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "ক্ষেত্র যোগ করুন" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "ভাষা যোগ করুন" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "যোগ করুন নতুন" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "নতুন বিভাগ অন্তর্ভুক্ত করুন" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "ভাষান্তর অন্তর্ভুক্ত করুন" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "প্রশাসন" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "সতর্ক বার্তা গ্রহণ করুন" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "কোনও রিপোর্ট নথিভুক্ত হলে আমাকে সতর্ক করুন" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "সতর্কবার্তা সংরক্ষণ করুন" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "ইমেইল ঠিকানা" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ইমেইল ঠিকানা প্রবেশ করুন" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "কান্ট্রি কোডসহ মোবাইল নাম্বার প্রবেশ করুন" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "সতর্কবাণী গ্রহণ করুন" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "সতর্কবাণীটি" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "মোবাইল ফোন" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "অথবা মানচিত্রে একটি স্থান নির্দিষ্ট করুন, ২০ কিলোমিটারের মধ্যে কোনও রিপোর্ট থাকলে আপনাকে সতর্ক করা হবে" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "যদি আপনি নিজের অবস্থান খুঁজে না পান, তাহলে মানচিত্রে নিজের অবস্থান পয়েন্ট করুন" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS সংবাদ" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "একটি শহর নির্বাচন করুন" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "ধাপ ১: আপনার শহর অথবা ঠিকানা নির্বাচন করুন:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "ধাপ ২: সতর্কবাণী প্রেরণ করুন:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "ধাপ ৩:(ঐচ্ছিক): বিভাগ নির্বাচন করুন" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "পূর্ববর্তী কোনও সতর্কবাণী নিশ্চিত করুন" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "আপনার সতর্কবার্তাটি সংরক্ষিত হয়েছে" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "সব" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "অনুমোদিত" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "অনুমোদিত HTML ট্যাগস: \"%s\"" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "আইফ্রেম গুলো শুধুমাত্র %s থেকে অনুমোদিত" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "সকল বিভাগ" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "সবসময়" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "এবং" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "এপিআই" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "অনুমোদন" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "অনুমোদিত" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "অনুমোদিত রিপোর্টসমূহ" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "এই রিপোর্টটি অনুমোদন করুন" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "প্রায়" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "আর্কাইভ" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "আর্কাইভ করা" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "ক্রমবর্ধমান" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "প্রতি" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "স্বত্বাধিকারী" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "স্বয়ংক্রিয় চেকিং" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "প্রতিদিনের গড় রিপোর্ট সংখ্যা" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "অনুমোদনের জন্য অপেক্ষমান" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "যাচাইকরণের জন্য অপেক্ষমান" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "ব্যাজ" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "ব্যাজসমূহ" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "ব্যাজের ছবি" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "অথবা আপনি আপনার নিজের ছবি আপলোড করতে পারেন" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "ব্যাজ প্যাক" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "একটি ব্যাজ নির্বাচন করুন" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "ব্লগ" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "প্রোফাইল ভ্রমণ করুন" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "বাতিল করুন" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "বিভাগসমূহ" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "বিভাগ" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "বিভাগ ছাঁকনিকরণ" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "এই বিভাগটি" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "বিভাগের নাম" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "তারিখ পরিধি পরিবর্তন করুন" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "পাসওয়ার্ড পরিবর্তন করুন" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "আমার ছবি বদলান" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "নির্বাচন করুন একটি" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "ডাউনলোড করার জন্য ডাটা পয়েন্ট পছন্দ করুন" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "অথবা নিজস্ব তারিখ পরিধি নির্বাচন করুন" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "ক্ষেত্র টাইপ নির্বাচন করুন" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL ক্লিন করুন" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "ক্লিয়ার করুন" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "ম্যাপ ক্লিয়ার করুন" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "বন্ধ করুন" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "গুচ্ছ" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "বর্ণ" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "মন্তব্য" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "মন্তব্যসমূহ" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "বিস্তারিত মন্তব্য" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "কনফিগারেশন সংরক্ষিত হয়েছে" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "কনফিগার" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "আপনি আপনার ইমেইল সফলভাবে নিশ্চিত করেছেন। অনুগ্রহ করে নিচে থেকে লগিন করুন" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "আপনি সফলভাবে আপনার ইমেল ঠিকানা নিশ্চিত করেছেন! আপনি লগইন করার আগে একজন এডমিনিস্ট্রেটর দ্বারা আপনার অ্যাকাউন্ট অনুমোদন আবশ্যক" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "ইমেইল নিশ্চিত করা সফল হয় নি" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "যোগাযোগ" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "যোগাযোগ কোড" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "যোগাযোগ ইমেইল" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "যোগাযোগ মেসেজ" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "আপনার বার্তাটি পাঠানো হয়েছে" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "পরিচিতের নাম" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "পরিচিতের ফোন" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "যোগাযোগ পাঠান" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "সাবজেক্টের সাথে যোগাযোগ করুন" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "স্বত্বাধিকার" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "তৈরি করুন" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "তৈরি/সম্পাদনা" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "নতুন তৈরি করুন" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "নতুন পাসওয়ার্ড তৈরি করুন" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "রিপোর্ট তৈরি করুন" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "ক্রেডিবিলিটি" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "বর্তমান পাসওয়ার্ড" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "কাস্টম ক্ষেত্রসমূহ" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "তথ্য" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "তারিখ" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(মম/দদ/বববব)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "দিন এবং সময়" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "দিন" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "অক্ষম করুন" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "নাইরোবি, কেনিয়া" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "মুছে ফেলুন" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "মুছে ফেলা হয়েছে" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "মুছে ফেলে" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "মুছে ফেলা অক্ষম করে রাখা হয়েছে" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "শেষটা মুছে ফেলুন" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "এই রিপোর্টটা মুছে ফেলুন" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "নির্বাচিতটি মুছে ফেলুন" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "স্প্যাম মুছে ফেলুন" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "ডেমো" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "বর্ণনা" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "ক্রমহ্রাসমান" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "সিটি মার্কেটের কোনায়, ৫ম রাস্তা এবং ৪র্থ এভিনিউ, জোহাননেসবার্গ" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "বিস্তারিত" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "সরাসরি রিপোর্ট" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "অক্ষম করে রাখা হয়েছে" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "অনুনমোদন করুন" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "রিপোর্ট ডাউনলোড করুন" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "ডাউনলোড" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "সম্পাদন করুন" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "ফর্ম ক্ষেত্র সম্পাদনা করুন" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "রিপোর্ট সম্পাদনা করুন" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "ইমেইল" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "ইমেইল ঠিকানা" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "মেইল সার্ভার সেটিং" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "মেইল সার্ভার হোস্ট" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "মেইল সার্ভার পাসওয়ার্ড" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "মেইল সার্ভার পোর্ট" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "মেইল সার্ভার SSL সাপোর্ট" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "মেইল সার্ভার টাইপ" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "মেইল সার্ভার ইউজারনেম" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "সুতরাং আপনার সেটিং ইমেইলের সাথে জড়িত হতে হবে" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "ইমেইল এর মাধ্যমে রিপোর্ট সমূহ পাওয়ার জন্য অনুগ্রহ করে নিচে আপনার ইমেইল এড্রেসটি প্রবেশ করান। " + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "কিছু কিছু সার্ভারে সম্পুর্ন ইমেইল এড্রেসএর প্রয়োজন হয়" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "ই-মেইল একাউন্টের পাসওয়ার্ড" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "উদাহরণঃ mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "উদাহরণঃ pop2,imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "SSL connections এনাবল বা ডিজেবল করুন" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr " ---EMPTY---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "প্রতি" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "ভুল!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "উদাহরণ" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "কেনিয়া" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "এক্সটার্নাল অ্যাপস" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "এক্সটার্নাল ভিডিও লিংক" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "ফেইসবুক" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "ফিড" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "ফিডব্যাক দিন" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "অনুগ্রহ করে আপনার অভিজ্ঞতা জানিয়ে আমাদের ইমেইল পাঠিয়ে দিন এই ঠিকানায়" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "সংবাদ" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "এই সংবাদটি" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "আইটেমসমূহ দিন" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "নাম দিন" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL দিন" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "অব্যবহৃত ক্ষেত্র" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "নথি" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "আপনার ফাইল সর্বোচ্চ আকারের সীমা ছাড়িয়ে গেছে" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "আলাদা করে" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "রিপোর্ট ছাঁকুন" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "রিপোর্ট গুলো ফিল্টার করুন" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "রিপোর্ট গুলো ফিল্টার করুন যেগুলোর মধ্যে আছে" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "খুঁজুন" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "অবস্থান খুঁজুন" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "প্রথন নাম" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Scheduler" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "পাসওয়ার্ড ভুলে গেছেন?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "ফর্ম" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "ফর্মসমূহ" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "ফর্ম বর্ণনা" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "ফর্মটি সম্পাদন করুন" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "এই ফর্মটি" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "ফর্মের শিরোনাম" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "হতে" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "পূর্ণ নাম" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "ভূঅবস্থান সহজলোভ্য" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "বর্ণ" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "মন্তব্যসমূহ" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "লেবেল" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "স্ট্রোক প্রস্থ" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "যান" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "হ্যাশট্যাগ" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "হয়ে আসছে" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "কীভাবে সাহায্য করবেন" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "লুকানো" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "লুকান" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "এই মেসেজটি লুকান" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "হোম" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "কীভাবে রিপোর্ট করবেন?" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "আইডি" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "আপনাকে অন্য ব্যবহারকারীদের কাছে সনাক্ত করার জন্য ব্যবহৃত হবে" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "ছবি" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "ছবিমালা" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "ছবি/আইকন" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "অচল" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "ইনবক্স" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "ঘটনা" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "কাছাকাছি ঘটনাসমূহ" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "ঘটনাস্তল" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "অন্তর্ভুক্ত" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "বিভাগ অন্তর্ভুক্ত করুন" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "কাস্টম ক্ষেত্র অন্তর্ভুক্ত করুন" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "বর্ণনা অন্তর্ভুক্ত করুন" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "যথাসম্ভব বিস্তারিত তথ্য দিন" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "অক্ষাংশ অন্তর্ভুক্ত করুন" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "এলাকার তথ্য অন্তর্ভুক্ত করুন" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "দ্রাঘিমাংশ অন্তর্ভুক্ত করুন" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "ব্যক্তিগত তথ্য অন্তর্ভুক্ত করুন" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "অন্তর্বর্তী মিডিয়া" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "তথ্য মূল্ল্যায়ন" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "আপনার সর্বোপযুক্ত ঠিকানা দ্বীন" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "অ্যাপনার অ্যাকাউন্টের সম্পূর্ণভাবে লগ ইন করার উপযুক্ত অনুমতি নেই। দয়াকরে, প্রশাসনের সাথে যোগাযোগ করূন।" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "প্রত্যুত্তরে" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "আইপি অ্যাড্রেস" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "এটা কি আপনার প্রোফাইল?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr " আইটেম" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "আইটেমসমূহ" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "বিস্তারিত আইটেম" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "আইটেমের শিরোনাম" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "চাবি" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "মূল শব্দ" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML ফাইল" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "KMZ/KML ফাইল আপলোড করুন" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "লাকোনিকা" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "ভাষা" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "শেষ" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "শেষ মাস" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "শেষ নাম" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "শেষ বছর" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "দ্রাঘিমাংশ" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "লেয়ারসমূহ" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "অন্যান্য লেয়ারসমূহ" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "এই লেয়ার" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "লেয়ার Name" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "লেয়ার URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "মন্তব্য দিন" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "আরো কম তথ্য" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "লেভেল" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "এই লেভেল" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "লেভেল নেইম" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "লিমিটেড" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "লিঙ্ক" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "লিস্ট" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "রিপোর্টসমূহ লোড করা" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "অবস্থান" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "অবস্থানসমূহ" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "শহর, রাজ্য এবং/ অথবা দেশ" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "লগ ইন" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "অ্যাকাউন্ট সফলভাবে তৈরি হয়েছে। আপনি লগইন করতে পারেন।" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "আপনার ইমেইলে নিশ্চিত করণ বার্তা পৌছে গেছে।" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "একাউন্ট তৈরি হয়েছে। আপনি লগইন করার আগে একজন এডমিনিস্ট্রেটর দ্বারা আপনার অ্যাকাউন্ট অনুমোদন আবশ্যক" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "ই-মেইলটি নেই। অন্য একটি ইমেইল আইডি চেষ্টা করূন অথবা নতুন আইডি তৈরি করূন।" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "দয়াকরে আপনার অ্যাকাউন্টদাতাতে ক্লিক করূন" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "লগ ইন করূন" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "ই-মেইল এবং পাসওয়ার্ড" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "খোলা আইডি" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "সাইন আপ" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "একটি অ্যাকাউন্ট তৈরি করূন" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "%1$s এ সাইন আপ করার জন্য আপনাকে ধন্যবাদ। আপনার ইমেইল এড্রেস টিকে কনফার্ম করার জন্য এই লিঙ্কে যানঃ %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "সাইন আপ নিশ্চিতকরণ" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "%1$s এ একজন নতুন ইউজার সাইন আপ করেছেন। তার রেজিস্ট্রেশন অনুমোদন করার জন্য এই লিঙ্কে যানঃ %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "নতুন ইউজার অনুমোদন" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "%1$s এর জন্য আপনার একাউন্ট অনুমোদন করা হয়েছে। লগইন করার জন্য এই লিঙ্কএ যানঃ %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "ইউজার অ্যাকাউন্ট অনুমোদিত " + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr " এই সাইটের আরো ফিচার ব্যবহারের জন্য এখনই একটি অ্যাকাউন্ট তৈরি করূন" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "অক্ষাংশ" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "মানচিত্র" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "পঠিত বলে মার্ক করে দিন" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "অপঠিত বলে মার্ক করে দিন" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "সর্বাধিক ফাইল আকার" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "মিডিয়া" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "মিডিয়া ফিল্টার" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "সদস্যগন" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "আপনার অ্যাকাউন্ট ব্যাবস্থা করূন" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "বার্তা" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "বার্তাসমূহ" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "বিস্তারিত বার্তা" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "একটি non-numeric সোর্স থেকে মেসেজঃ" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "মোবাইল" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "পরিবর্তন করূন" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "দিন পরিবর্তন করূন" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "মাস" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "আরও" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "আরও তথ্য" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "এই উশাহিদি Deployment টি কি একাধিক দেশ নিয়ে করা?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "এই সম্প্রসারণে অনুগমন করার জন্য আপনার ইমেইল ঠিকানাটি নিশ্চিত করুন। নিশ্চিতকরণ ইমেইলটি না পেলে নিচের লিঙ্কে ক্লিক করে মেইলের জন্য অনুরোধ করতে পারেন।" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "নাম" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "নিকটবর্তী রিপোর্ট" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "নতুন" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "সংবাদ" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "সংবাদসারি" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "তথ্যসূত্র" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "নতুন বিভাগ" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "নতুন পাসওয়ার্ড" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "নতুন রিপোর্ট" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "পরবর্তী" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "না" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "দেখানোর মত কোনও চেকিন নেই" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "কোনও তথ্য নয়" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "কোনটা নয়" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "নোটিশসমূহ" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "অনুমোদিত নয়" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "অনুমোদিত নয়" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---নির্বাচিত নয়---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "স্প্যাম নয়" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "অনির্দিষ্ট" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "কোনও রিপোর্ট নেই" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "কোনও ফলাফল নেই" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "অফ" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "অফিসিয়াল এবং মেইন্সট্রিম খবর" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "চালু" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "অপশন" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "ঐচ্ছিক" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "অপশনসমূহ" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "প্রতিষ্ঠান" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "প্রতিষ্ঠানসমূহ" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "প্রতিষ্ঠানের বর্ণনা" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "প্রতিষ্ঠানের ইমেইল" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "এই প্রতিষ্ঠানটি" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "প্রতিষ্ঠানের নাম" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "মুল ফোন ১" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "মুল ফোন ২" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "মূল ওয়েবসাইট" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "মূল" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "মূল বর্ণনা" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "মূল শিরোনাম" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "অন্যান্য সম্প্রসারণ" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "আউটবক্স" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "আউটগোয়িং" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "পেজ" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "পেজসমূহ" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "পেজের বর্ণনা" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "এই পেজটি" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "পেজ ট্যাবের নাম" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "পেজের শিরোনাম" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "প্যারেন্ট ডিরেক্টরি" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "পাসওয়ার্ড" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "পাসওয়ার্ড যাচাই করুন" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "পাসওয়ার্ড পুনরুদ্ধার হয়েছে। অনুগ্রহ করে লগিন করুন" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "পাসওয়ার্ড ভুলে গেছেন?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "নতুন পাসওয়ার্ডের জন্য আপনার ইমেইল চেক করুন" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "আপনি কি এই কম্পিউটারে লগ ইন করে থাকতে চান?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "গত মাস" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "গত বছর" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "বাকি" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "প্রতি" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "ব্যক্তিগত তথ্যাদি ঐচ্ছিক" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "ফোন" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "ছবিমালা" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "ছবিমালা" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "ছবি এবং ভিডিও" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* এলাকার নাম অথবা ল্যাটিটিউডের মাধ্যমে নিজের এলাকা খুঁজুন অথবা মানচিত্রে ক্লিক করে নিজের অবস্থান নির্দেশ করুন" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "চালান" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "অনুগ্রহ করে লক্ষ্য করুন" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "প্লাগিন" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "প্লাগিন ওয়েবসাইট" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "সাধারণের জন্য উন্মুক্ত প্রোফাইল" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Public Profile URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "দেখ" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "আইতেম দেখা" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "বার্তা দেখা" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "পূর্ববর্তী" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "প্রাইভেট" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "প্রোফাইল কালার" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "আপনার প্রোফাইলটি সংরক্ষিত হয়েছে" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "দ্রূত পরিসংখ্যান" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "রেটিং" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "পড়ুন" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "গ্রহণ" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "বার্তা গ্রহণ হচ্ছে যেখান থেকে" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "বার্তা গ্রহণ" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "সদ্য রিপোর্টসমূহ" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "সংবাদ রিফ্রেশ করুন" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "নিবন্ধনকৃত ইমেইল" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "দূর করুন" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "উত্তর দিন" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "রিপোর্ট" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "রিপোর্টসমূহ (মাপ থেকে, ক্রমবর্ধমান আক্ষরিক ক্রমে সাজানো)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "রিপোর্টার" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "রিপোর্টাররা" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "রিপোর্টারের তারিখ" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "রিপোর্টারের ই-মেইল" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "রিপোর্টারের প্রথম নাম" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "রিপোর্টার" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "রিপোর্টারের আইপি এড্রেস" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "রিপোর্টারের শেষ নেইম" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "রিপোর্টারের লেভেল" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "রিপোর্টারের লেভেল" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "রিপোর্টার ফোন" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "রিপোর্ট" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "ভ্রমন করূন" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "জমা দিন" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "এই ব্যাবহারকারীর রিপোর্ট" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "বিভাগসমুহ" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d রিপোর্ট" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "দিন" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "বিস্তারিত" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "রিপোর্টগুলো সিএসভি ফরম্যাটে ডাউনলোড হবে।" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "ইমেইল" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "ফিচারসমূহ" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "আপনার কাছাকাছি একটি জায়গা সন্ধান করুন" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "প্রথম নাম" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "শেষ নাম" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "এলাকার নাম" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "সংবাদের তথ্য লিঙ্ক" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "ঐচ্ছিক তথ্য" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "ছবি আপলোড করুন" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "রিপোর্টের পাতায় ফিরে যান" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "শহর নির্বাচন করুন" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "আপনার রিপোর্ট আমাদের স্টাফের কাছে নিরীক্ষণের জন্য পৌঁছে গেছে। প্রয়োজনে আপনার সাথে যোগাযোগ করা হবে" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "একটি নতুন রিপোর্ট জমা দিন" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "সময়" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "রিপোর্টের সময়রেখা" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "রিপোর্টের শিরোনাম" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "ভিডিও লিঙ্ক" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "একটি ঘটনা রিপোর্ট করুন" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "বিস্তারিত রিপোর্ট" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "একটি মেসেজ পাঠানোর মাধ্যমে" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "ইমেইল পাঠানোর মাধ্যমে" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "hashtag দিয়ে tweet পাঠানোর মাধ্যমে/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "আমাদের ওয়েবসাইটের এই ফর্ম পূরণ করার মাধ্যমে" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "অ্যাপ ব্যবহার করার মাধ্যমে" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "আপনার রিপোর্ট সংরক্ষিত হয়েছে" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "রিপোর্টের শিরোনাম" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "আরও তথ্যের জন্য অনুরোধ করুণ" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "এলাকা জানতে অনুরোধ করুন" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "প্রয়োজন" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "প্রয়োজনমূহ" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "নিশ্চিতকরণ মেইলটি আবার পাঠান" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "রিসেট" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "সকল ফিল্টার রিসেট করুন" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "পাসওয়ার্ড রিসেট করুন" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "নির্বাচিত দেশের শহরগুলো দেখান" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "অ্যাকাউন্টটি %s সার্ভিসের মাধ্যমে ম্যানেজ হচ্ছে." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "আপনার ইতমধ্যে একটি অ্যাকাউন্ট রয়েছে। আপনার ইমেইল এবং পাসওয়ার্ড ব্যবহার করে অনুগ্রহ করে লগিন করুন" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "ভূমিকা" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "আরএসএস" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "সংরক্ষণ করুন" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "সংরক্ষিত হয়েছে" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "সংরক্ষণ করুন এবং নতুন যোগ করুন" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "সংরক্ষণ করুন এবং বন্ধ করুন" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "রিপোর্টটি সংরক্ষণ করুন" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "শিডিউল" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "শিডিউলার" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "দিন" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "ঘণ্টা" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "শিডিলের লগ" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "মিনিট" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "সপ্তাহের দিনঃ" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "সন্ধান" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "সন্ধানের ফলাফল" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "নিরাপত্তা কোড" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "সব সিলেক্ট করুন" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "একটি ক্ষেত্র টাইপ নির্বাচন করুন" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "একটি ফর্ম টাইপ নির্বাচন করুন" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "মানচিত্রে নির্বাচন করুন" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "যতগুলো প্রয়োজন নির্বাচন করুন" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "অনুগ্রহ করে যাচাই করুন যে আপনি একটি আইটেম নির্বাচন করেছেন" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "থিম নির্বাচন করুন" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "পাঠান" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "নিশ্চিত করে পাঠান" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "এখানে পাঠানো হচ্ছেঃ" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "পাঠানো হয়েছে" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "পাঠানো হয়েছে, মাধ্যমঃ" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "সার্ভারের ঠিকানা" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "সার্ভারের প্রকার" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "সার্ভিস" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "সার্ভিস ব্যবহারকারীর নাম" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "সার্ভিস ব্যবহারকারীর আইডি" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "শেয়ার" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "শেয়ারকৃত তথ্য" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "শেয়ার" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "শেয়ার করা হচ্ছে" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "অপেক্ষাকৃত ছোট মানচিত্র" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "দেখান" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "সব দেখান" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "মেসেজ দেখুন" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "%1$s থেকে %2$s এর রিপোর্টসমূহঃ" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "ওয়েবসাইট" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "সাইটের ইমেইল" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "সাইটের URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "অপেক্ষাকৃত ছোট মানচিত্র" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "এসএমএস" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "দুঃখিত, আপনার কোনও ব্যাজ নেই" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "উৎস" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "উৎসের নাম" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "সাজানো" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "সাজানো" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "উৎস URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "স্প্যাম" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL সাপোর্ট?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "হতে" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "ধাপ" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "রিপোর্ট জমা দিন" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "জমা দিয়েছেন %1$s মাধ্যম %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "SMS এর মাধ্যমে নিবেদন করা" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "আপনার SMS পাঠান" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "আপনার ফোনে" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "সফল!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "সফল আমদানি" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "উপনাম" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "জরীপ" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "সিস্টেম" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "লম্বা মানচিত্র" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP পোর্ট " + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "থিমসমূহ" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "ডিফল্ট থিম" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "থিম সেটিংস" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "এটা" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "আজকে" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "এই মাসে" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "এই সপ্তাহে" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "এই বছর" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "এটি আপনার প্রোফাইল" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "সময়" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "শিরোনাম " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "প্রতি" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "আজকে" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "আজকে" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "টোকেন" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "মোট রিপোর্ট" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "ভাষান্তরিত" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "ভাষান্তরিত বর্ণনা" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "ভাষান্তরিত শিরোনাম" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "ভাষান্তরিত হয়েছে যে ভাষায়ঃ" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "ভাষান্তর" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "ভাষান্তর সংরক্ষিত হয়েছে" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "বিশ্বস্ত" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "টাইপ" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "টুইটার" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "মেইল পাঠাইতে অক্ষম" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "অবিভক্ত রিপোর্ট" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "অপঠিত" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "অযাচাইকৃত" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "সংবাদ হালনাগাদ করুন" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "আপলোড" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "আমাদের রিপোর্ট আপলোডের গাইড দেখুনঃ-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "এক্সএমএল আপলোড গাইড" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "সিএসভি আপলোড গাইড" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "আপলোড করার জন্য নথি" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "রি্পোর্টসমূহ আপলোড করুন" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "কাস্টম ক্ষেত্র কলাম এর সাথে তাদের form_id যুক্ত থাকতে হবে। যেমনঃ কাস্টম ফিল্ড Test এবং ফর্ম ID 1 হলে কাস্টম ফিল্ড এর নাম হবে Test-1। কাস্টম ফর্ম ফিল্ড ইম্পোর্ট করার সময় নিশ্চিত করুন" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "নিচের ফর্মটির মাধ্যমে আপনি ঘটনাগুলো উশাহিদি ইঞ্জিনে পাঠাতে পারবেন।" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "রিপোর্টসমূহ অবশ্যই CSV অথবা XML ফরম্যাটে আপলোড করতে হবে।" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "ঘটনার আইডি ইতিমধ্যে ডাটাবেসের মধ্যে উপস্থিত হলে, CSV/XML file এ এন্ট্রিগুলো উপেক্ষা করা হবে।" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "এটাতে অন্তত ঘটনা শিরোনাম এবং ঘটনা তারিখ থাকতেই হবে।" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "কোন অক্ষাংশ এবং দ্রাঘিমাংশ কলাম সরবরাহ করা না হলে, অবস্থান গুগল geocoder ব্যবহার geocoded করা হবে। " + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "যদি ইম্পোর্টিং বাড়তি তথ্য যথা ব্যাক্তিগত তথ্য এবং/অথবা কাস্টম ফর্ম ফিল্ডস" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "ব্যক্তিগত তথ্যসমুহ(নাম,ডাকনাম,ইমেইল) এর মধ্য থেকে অন্তত একটি তথ্য থাকতেই হবে। শুন্য রেকর্ডগুলো ইম্পোর্ট হবে না। " + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "ড্রপডাউন ক্ষেত্র, রেডিও বাটন ও চেকবক্সের জন্য আপনার এন্ট্রি কাস্টম ক্ষেত্রের যথাযথ অপশন মেলে" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "চেকবক্স অপ্সহন গুলো কমা দিয়ে আলাদা করা। যেমন আপনার আপনি যদি আপেল, আম এবং আঙ্গুর বাছাই করেন তাহলে আপনার এন্ট্রি হতে হবে-\"আপেল, আম, আঙ্গুর\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "তারিখ ফিল্ড এর তথ্য গুলো mm/dd/yyyy এই ফরম্যাট এ হতে হবে। অর্তাথঃ 3rd October 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "একটি সিএসভি রিপোর্টের উদাহরণ" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,ঘটনা শিরোনাম, ঘটনার তারিখ, ঘটনাস্থল, বিবরন, বিভাগ, অনুমোদিত, যাচাইকৃত , অক্ষাংশ, দ্রাঘিমাংশ
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "আপলোড সফল" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "ভিডিও আপলোড করুন" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "ইউআরএল" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "ব্যবহারকারী" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "ব্যবহারকারীর নাম" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "প্রশাসন" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "যাচাই করা" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "যাচাই করা হয়েছে" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "যাচাই করা রিপোর্টসমূহ" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "যাচাই করুন" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "এই রিপোর্টটি যাচাই করুন" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "সংস্করণ" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "মাধ্যম" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "ভিডিও" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "মতামত" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "মতামতসমূহ" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "সব দেখা" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "সকল সংবাদ দেখা" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "রিপোর্টসমূহ দেখা" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "আইটেম দেখা" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "আরও দেখা" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "সাধারণের জন্য উন্মুক্ত প্রোফাইল দেখা" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "রিপোর্ট দেখা" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "রিপোর্টসমূহ দেখা" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "ভিডিও দেখুন" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "দর্শনযোগ্য" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "অনুমোদনের অপেক্ষা" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "যাচাইকরণের অপেক্ষা" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "চওড়া মানচিত্র" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "অন্তর্জাল ফর্ম" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "ওয়েব" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "ওজন" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "হ্যাঁ" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "গতকাল" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "আপনার ড্যাশবোর্ড" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "আপনার নথি" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "বড় করে দেখুন" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "ছোট করে দেখুন" diff --git a/application/i18n/po/po-bs_BA/alerts.po b/application/i18n/po/po-bs_BA/alerts.po new file mode 100644 index 0000000000..df1d32f76a --- /dev/null +++ b/application/i18n/po/po-bs_BA/alerts.po @@ -0,0 +1,235 @@ +# +# Translators: +# Leila , 2012 +# prangec , 2012 +# Haris Alisic , 2012 +# Šejla K. , 2012 +# Alma Telibecirevic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Da li ste upisali ispravan email u polje za unos email adrese?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Navedena email adresa je vec registrovana da prima obavjestenja o toj lokaciji." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email polje mora imati najmanje 4 a najviše 64 znaka." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email polje je obavezno ukoliko je oznaceno." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Ovaj deployment pokriva samo jednu državu. Osigurajte se dali je lokacija na koju upozoravate unutar %s za tu državu." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Niste izabrali validnu lokaciju na mapi." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Niste izabrali validnu lokaciju na mapi." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Niste izabrali validnu lokaciju na mapi." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Niste izabrali validnu lokaciju na mapi." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Čini se da polje za mobilni telefon ne sadrzi ispravan broj karaktera." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Navedeni broj je već registriran za primanje obavještenja o toj lokaciji." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Polje za mobitel ne sadrži ispravan broj karaktera. Molimo unesite samo brojeve uključujući i pozivni broj." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Morate unjeti broj vašeg mobitela ili vašu email adresu." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Polje za mobitel je obavezno ukoliko je označeno." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Niste označili ispravan radius na mapi." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Niste podesili svoj radius na mapi." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Niste naveli primaoca upozorenja." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Pretplatili ste se za obavijesti u sljedećim kategorijama" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Ovaj kod je vec verificiran!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Ovaj kod za verifikaciju nije pronađen! Molimo potvrdite da imate tačan URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Vaš kod je uspješno verificiran. Od sada ćete primati upozorenja o incidentima kako se budu događali." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Za potvrdu zahtjeva za obavijesti, otidjite na" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Vratite se na stranicu Upozorenja kako biste kreirali dodatna upozorenja" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Vaš zahtjev za email obavijestima je kreiran i poruka za verifikaciju je poslana na" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Unesite email kod za potvrdu koji ste primili:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Vaš zahtjev za email obavijesti NIJE spašen!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Vaš zahtjev za email obavijesti je spašen!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Sistem nije bio u mogucnosti da procesira Vas zahtjev za potvrdom!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Vasa Mobilna Aplikacija Upozorenja je kreirana i poslata je poruka upozorenja" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Unesite SMS kod za potvrdu koji ste primili:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Vaš zahtjev za upozorenje preko mobilnog telefona NIJE snimljen!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Vaš Zahtjev za upozorenje preko mobilnog telefona je snimljen!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Ovaj deployment nije setovan za ispravno procesiranje upozorenja" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Dobili ste ovu poruku jer ste se prijavili da primate obavjesti. Ukoliko ubuduce ne zelite primati ovakve poruke idite na" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Nećeš iše primati upozorenja od" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Nismo bili u mogucnosti da Vas odjavimo. Molimo Vas potvrdite da Vam je URL ispravan." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "obavijesti - verifikacija" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Necete primati obavjesti na navedenoj lokaciji dok ne potvrdite zahtjev" diff --git a/application/i18n/po/po-bs_BA/auth.po b/application/i18n/po/po-bs_BA/auth.po new file mode 100644 index 0000000000..881cda13bd --- /dev/null +++ b/application/i18n/po/po-bs_BA/auth.po @@ -0,0 +1,256 @@ +# +# Translators: +# Almita , 2012 +# Leila , 2012 +# prangec , 2012 +# Fikret Muratović , 2012 +# Alma Telibecirevic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Email adresa koja je unesena nije validna." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Žao nam je, za Vaš email je već registrovan korisnički račun." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Polje email mora sadžavati najmanje 4, a najviše 64 karaktera." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Polje email je obavezno." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Polje ime, mora sadržavati najmanje 3, a najviše 100 karaktera." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Polje ime je obavezno." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Polje korisničko ime sadrži nedopuštene znakove." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Vaša šifra mora sadržati najmanje 8 znakova." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Provjerite da li ste unijeli tačan email i šifru." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Unesite istu šifru u oba polja pod nazivom šifra." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Polje šifra je obavezna." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Polje šifra mora da sadrži jedino alfabetske znakove, # i @simbole, brojeve i crtice" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Unijeli ste pogrešnu šifru. Molimo Vas pokušajte ponovo." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Vaša šifra mora sadržati najmanje 8 znakova." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Provjerite da li ste unijeli tačan email i šifru." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Unesite istu šifru u oba polja pod nazivom šifra." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Polje šifra je obavezna." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Polja za lozinku moraju sadrzavati jedino slova, potom simbole # i @, brojeve, znakove i crtice" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Prilikom vase prijave pojavila se greska." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Vaša šifra mora sadržati najmanje 8 znakova." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Molimo, provjerite da li ste unijeli ispravan email i šifru." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Unesite istu šifru u oba polja pod nazivom šifra." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Polje šifra je obavezna." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Server za autentifikaciju ne radi trenutno. Molimo Vas pokusajte kasnije." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Polja za lozinku moraju sadrzavati jedino slova, potom simbole # i @, brojeve, znakove i crtice" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Polje potvrdi šifru mora odgovarati polju šifra." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Email koji ste unijeli nije ispravna email adresa." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Žao nam je, unijeli ste nepostojeću email adresu." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Polje email je obavezno." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Jedino super-administrator moze kreirati izmjene ili unaprijediti korisnika u status administratora" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Invalidni format" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Polje uloge mora biti najmanje 5 i ne duze od 30 karaktera dugo" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Morate definirati najmanje jednu ulogu" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Morate odabrati bilo ADMIN ili KORISNIK ulogu" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Zaboravljeni token lozinke nije validan" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Unos zaboravljenog tokena lozinke je obavezno" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Uloga administratora ne moze biti modificirana" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Javni URL profil moze sasdrzavati jedino brojeve i slova" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Oprostite, ovaj javni URL profil je vec u upotrebi" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Javni URL profil mora biti najmanje 2 i ne vise od 100 karaktera dug" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Molimo Vas da provjerite da li ste unijeli ispravan javni URL profil" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Polje javnog URL profila je obavezno" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "uloga super administratora se ne moze modificirati" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Moguci CSRF napad. Da li ste zaista zeljeli kreirati/izmjeniti korisnika?" diff --git a/application/i18n/po/po-bs_BA/bug.po b/application/i18n/po/po-bs_BA/bug.po new file mode 100644 index 0000000000..fed9b6357e --- /dev/null +++ b/application/i18n/po/po-bs_BA/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Ljiljana Smiljanić , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Unesite važeći sigurnosni kod." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Unesite važeći kod." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Polje za e-mail ne sadrži važeću e-mail adresu?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-mail mora da sadrži najmanje 4 i ne više od 64 znaka." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-mail je neophodan ukoliko je kućica označena kvačicom." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Neophodno je polje za greške." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Naslov mora imati najmanje 3 znaka." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Neophodno je polje za naslov." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ime mora da ima najmanje 3 znaka." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Polje za ime je neophodno." diff --git a/application/i18n/po/po-bs_BA/category.po b/application/i18n/po/po-bs_BA/category.po new file mode 100644 index 0000000000..b588b4af0b --- /dev/null +++ b/application/i18n/po/po-bs_BA/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Leila , 2012 +# Fikret Muratović , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Označeno polje mora imati 6 znakova" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Označeno polje je obavezno" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Opis je obavezan" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Provjerite da slika koju želite postaviti ne prelazi 50K" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Polje slika ne sadrži ispravnu sliku. Prihvaćeni formati slika su .JPG, .PNG i . GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Polje slika ne sadrži ispravnu datoteku" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Naslov mora imati najmanje 3, a najviše 80 znakova" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Naslov je obavezan" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Ne možeš podkategorizirat kategoriju koja ima podkategorije." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Odabarana kategorija ne postoji" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Glavna kategorija mora biti numerička" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Glavna kategorija nemože biti specijalna kategorija" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Odabir glavne kategorije je obavezan" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kategorija i glavna kategorija ne mogu biti iste." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Posebne kategorije ne mogu biti podkategorizirane." diff --git a/application/i18n/po/po-bs_BA/comments.po b/application/i18n/po/po-bs_BA/comments.po new file mode 100644 index 0000000000..af8bf9ce79 --- /dev/null +++ b/application/i18n/po/po-bs_BA/comments.po @@ -0,0 +1,63 @@ +# +# Translators: +# Fikret Muratović , 2012 +# SaraCalkic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Unesite ispravan sigurnosni kod" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Unesite sigurnosni kod" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Unijeli ste pogrešan sigurnosni kod" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Polje ime zahtjeva najmanje 3 znaka" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Ime je obavezno" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Komentari su obavezni" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Vaša Email adresa je pogrešno unešena" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Polje Email zahtjeva najmanje 4 znaka, a najviše 64 znaka." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Unesite email adresu ukoliko je kockica oznacena." diff --git a/application/i18n/po/po-bs_BA/contact.po b/application/i18n/po/po-bs_BA/contact.po new file mode 100644 index 0000000000..ae423c3ed7 --- /dev/null +++ b/application/i18n/po/po-bs_BA/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# Fikret Muratović , 2012 +# Haris Ferizovic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Unesite ispravan sigurnosni kod." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Unesite ispravan sigurnosni kod." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Unesite sigurnosni kod." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Provjerite Vašu Email adresu." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Polje Email mora imati najmanje 4, a najviše 64 znakova." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email polje je obavezno ako je checkbox obilježen." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Polje poruke je obavezno." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Polje ime zahtjeva najmanje 3 znaka." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Ime je obavezno." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Polje predmet zahtjeva najmanje 3 znaka." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Polje predmet je obavezno." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Došlo je do greške prilikom slanja Vaše poruke." diff --git a/application/i18n/po/po-bs_BA/core.po b/application/i18n/po/po-bs_BA/core.po new file mode 100644 index 0000000000..48d7590cee --- /dev/null +++ b/application/i18n/po/po-bs_BA/core.po @@ -0,0 +1,160 @@ +# +# Translators: +# prangec , 2012 +# Fikret Muratović , 2012 +# nardev , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "konfiguracijska datoteka" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "kontroler" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "drajver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Drajver \"%s\" za \"%s\" biblioteku mora biti implementiran u \"%s\" interfejsu." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "\"%s\" drajver za \"%s\" biblioteku nije pronađen." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Može te otvoriti naslovnu stranicu ili pokušati ponovo" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Nemoguće izvršiti zahtjev." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "pomoćnik" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Traženi tip podatka, .%s, nije dozvoljen u konfiguracijskoj datoteci." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Ne postojeća metoda %s pozvana u %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Atribut \"%s\" ne postoji u klasi \"%s\"." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "biblioteka" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Log direktorij nije zaključan: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi nije mogao odrediti kontroler za procesiranje upita: \"%s\"" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Molimo podesi te početnu rutu u \"config/routes.php\"" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Stranica koju ste tražili, %s, nije pronađena." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Prijavi ovaj problem Ushahidi-u" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Upit \"%s\", \"%s\", nije mogao biti pronađen." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Prateća Poruka" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Učitano za {execution_time} s. , korišteno {memory_usage} memorije. Generisano sa Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Može biti samo jedna instanca Ushahidi po upitu." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Neuhvaćen %s: %s u datoteci %s na liniji %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "pogled" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Mora te podesiti naziv \"view\" datoteke prije početka render-a." diff --git a/application/i18n/po/po-bs_BA/database.po b/application/i18n/po/po-bs_BA/database.po new file mode 100644 index 0000000000..727b88aef3 --- /dev/null +++ b/application/i18n/po/po-bs_BA/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Fikret Muratović , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Greška baze podataka. %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabla \"%s\" nemože biti nađena u bazi podataka. Molimo Vas provjerite da koristite poslednju verziju baze podataka za ovo izdanje Ushahidi." diff --git a/application/i18n/po/po-bs_BA/datetime.po b/application/i18n/po/po-bs_BA/datetime.po new file mode 100644 index 0000000000..746e2a339f --- /dev/null +++ b/application/i18n/po/po-bs_BA/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# CcaricaA , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Pet" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Petak" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Pon" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Ponedjeljak" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sub" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Subota" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Ned" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Nedjelja" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Čet" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Četvrtak" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Uto" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Utorak" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Sri" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Srijeda" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Januar" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februar" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Mart" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Maj" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maj" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juni" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juli" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Avg" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Avgust" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sept" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Septembar" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Oktobar" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novembar" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Decembar" diff --git a/application/i18n/po/po-bs_BA/feeds.po b/application/i18n/po/po-bs_BA/feeds.po new file mode 100644 index 0000000000..245f986443 --- /dev/null +++ b/application/i18n/po/po-bs_BA/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# prangec , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATUM" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Polje za unošenje imena ne sme biti kraće od 3 i duže od 70 karaktera." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Molimo vas, upišite ime unosa." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Molimo vas, upišite URL adresu unosa." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Molimo vas unesite validnu URL adresu, na primjer, http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "IZVOR" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Naslov" diff --git a/application/i18n/po/po-bs_BA/footer.po b/application/i18n/po/po-bs_BA/footer.po new file mode 100644 index 0000000000..317cec3e01 --- /dev/null +++ b/application/i18n/po/po-bs_BA/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Fikret Muratović , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl nije instaliran" diff --git a/application/i18n/po/po-bs_BA/form.po b/application/i18n/po/po-bs_BA/form.po new file mode 100644 index 0000000000..f4d84faa53 --- /dev/null +++ b/application/i18n/po/po-bs_BA/form.po @@ -0,0 +1,125 @@ +# +# Translators: +# Leila , 2012 +# prangec , 2012 +# Jasmina Borovina , 2012 +# Samra Hodzic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Postavljena vrijednost namjenjena za polje je nevažeća." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Polje Ime treba da sadrži najmanje 3 i ne više od 200 karaktera. " + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Unesite vrijednost od 0 do 50 u polje Visina" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Unesena je pogrešna vrijednost za polje Datum." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Molimo izaberi Da ili Ne za polje Datum." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Polje Ime treba da sadrži najmanje 3 i ne više od 100 karaktera. " + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Molimo unesite ime polja. " + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Na formularu već postoji polje sa tim imenom. Molimo vas da odaberete drugo ime." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Unijeli ste nevažeću vrijednost za potrebno polje." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Molimo odaberite Da ili Ne za potrebno polje." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Molimo odaberite valjanu vrstu polja." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Molimo odaberite vrstu polja." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Unesite vrijednost od 0 do 300 za širinu polja." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Molimo unesite opis obrasca." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Zadani oblik se ne može izbrisati." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Molimo odaberite koju formu dodati ovom polju." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Molimo odaberite koju formu dodati ovom polju." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Forma naziva polja mora da sadrži najmanje 3 i ne više od 100 karaktera." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Unesite naziv obrasca." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Već postoji formular sa tim naslovom. Molimo vas da odaberete drugi naslov." diff --git a/application/i18n/po/po-bs_BA/imap.po b/application/i18n/po/po-bs_BA/imap.po new file mode 100644 index 0000000000..e32612e7ec --- /dev/null +++ b/application/i18n/po/po-bs_BA/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Leila , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Ne može otvoriti IMAP stream." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Email usluga nije podržana." diff --git a/application/i18n/po/po-bs_BA/installer.po b/application/i18n/po/po-bs_BA/installer.po new file mode 100644 index 0000000000..14d53690c1 --- /dev/null +++ b/application/i18n/po/po-bs_BA/installer.po @@ -0,0 +1,416 @@ +# +# Translators: +# Almita , 2012 +# prangec , 2012 +# Ena i Jasmin Mehic , 2012 +# Fikret Muratović , 2012 +# Samra Hodzic , 2012 +# Alma Telibecirevic , 2012 +# nardev , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Putanja do baze podataka" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Baza podataka " + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Baza podataka" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Ako koristi te Ushahidi na vašem lokalnom računaru, ovo će najvjerovatnije biti \"localhost\". Ako koristi te Ushahidi sa web servera, onda ćete dobiti podatke od vašeg web server poslužitelja." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Naziv baze podataka " + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Naziv baze podataka za Ushahidi koju želi te korititi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Za više informacija o bazi podataka molimo provjeri te ovdje." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Osnovni Jezik (lokalni)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Svaka instalacija Ushahidi-a dolazi sa nekoliko različitih prijevoda. Vi takođe može te dodati vaš prijevod." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Onemogući" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Omogući" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Ispod su ispisane greške na koje smo naišli." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Lokacija na vašem serveru gdje ste smjestili Ushahidi datoteke. Ova vrijednost je automatski detektovana, molimo provjeri te njenu ispravnost. Ako je polje prazno, to znači da je Ushahidi instaliran u početni direktorij." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Završeno" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Općenito" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Ključ" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Bilo ko može preuzeti API ključ. Preuzmi te vaš" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Idi nazad" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "Napredna instalacija" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Preuzmi sve osnovne postavke koje su unjete u ovom procesu od 5 koraka. To podrazumjeva server, mapu, naziv sajta i kontakt podatke." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "Osnovna instalacija" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Jednostavno i brzo. Sve što treba te je početni direktorij vaše web stranice i login za vašu bazu podataka. Izaberi te ovu opciju ako želi te brzo i jednostavno započeti, sve ostalo uvijek može te podesiti naknadno." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Nastavi" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Dobro došli. Ushahidi proces instalacije.\nOdaberi te koju vrstu instalacije želi te koristiti." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Uspješna instalacija" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail Server" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Adresa Mail Servera" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Ukoliko koristite Gmail, Hotmail ili Yahoo Mail, unesite puno ime vaše email adrese kao korisničko ime" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Lozinka za Mail Server" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Lozinka koju obično koristite za prijavu na svoj email" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Port za Mail Server" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Uobičajeni Portovi: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Vrsta Mail Servera" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) ili Post Office Protocol (POP). Šta je razlika?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Korisničko ime za Mail Server" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Ukoliko koristite Gmail, Hotmail ili Yahoo Mail, unesite puno ime vase email adrese kao korisničko ime" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Poslužitelj za Mape" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi radi podjednako dobro sa bilo kojim od ova tri poslužitelja za mape: Google, Bing or Open Street Map. Odaberi te onaj koji ima najviše detaljnih i tačnih informacija u vašem području." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Drugi koraci" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Lozinka" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Lozinka veše baze podataka" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Predhodni" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Molimo, restartuj te vaš Apache web server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Omogući te ili onemogući te SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Neki mail serveri vam omogućavaju korištenje SSL-a prilikom konektovanja. Korištenje SSL-a je preporučeno radi višeg stepena sigurnosti." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Podesi te vaš SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Sajt Email adresa" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Sajt Email adresa za obavijesti" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Posjetioci vašeg web sajta će sa ove email adrese primati obavijesti na koje se prijave. Ova adresa ne mora biti ista kao \"Sajt Email adresa\"." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Sva email komunikacija će biti preusmjeravana na ovu adresu." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Naziv sajta" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Puni naziv vašeg sajta" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Slogan stranice" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Vas slogan" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Datoteke i mape koje se nalaze dolje trebaju biti ispisani od strane vaseg internet servera." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Ovdje se nalaze uputstva za mijenjanje dozvola za upravljanje fajlovima:

" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Prije nego sto pocnete, moracete biti sigurni da su slijedece datoteke i mape ispisane od strane Vaseg internet servera. Ovo ukljucuje i promjenu dozvole za koristenje datoteke." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Za kompletiranje procesa instalacije, potrebne su vam slijedeće informacije." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefiks table" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Inače ne bi trebalo mijenjati prefiks table. Ali ako želite nekoliko instalacija Ushahidi na jednoj bazi podataka, onda promijenite prefiks table ovdje." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Naslov" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Za prijavu, idi na" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Ubacite podatke o izvjescu." + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Korisničko ime" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Korisničko ime vaše baze podataka" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "i upotrijebite slijedece akreditive." + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Poledaj svoju stranicu." diff --git a/application/i18n/po/po-bs_BA/layer.po b/application/i18n/po/po-bs_BA/layer.po new file mode 100644 index 0000000000..435384806c --- /dev/null +++ b/application/i18n/po/po-bs_BA/layer.po @@ -0,0 +1,65 @@ +# +# Translators: +# Haris Ferizovic , 2012 +# Samra Hodzic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Označeno polje " + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Označeno polje mora imati 6 znakova." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Polje datoteke ne pokazuje da sadrži važeći dokument. Jedini prihvaćeni formati su .KMZ i .KML " + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Polje datoteke ne pokazuje da sadrži važeći dokument. " + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Naziv polja mora da sadrži najmanje 3 i ne više od 80 znakova. " + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Naziv polja je potreban." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Obavezan KML URL ili fajl." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Ne možete imati oboje i KML dokument i URL. " + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Molim unesite važeći URL, npr. http://www.ushahidi.com/layerl.kml " diff --git a/application/i18n/po/po-bs_BA/libraries.po b/application/i18n/po/po-bs_BA/libraries.po new file mode 100644 index 0000000000..44b8abd9cc --- /dev/null +++ b/application/i18n/po/po-bs_BA/libraries.po @@ -0,0 +1,120 @@ +# +# Translators: +# Aleksandar , 2012 +# Leila , 2012 +# prangec , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Nije uspjela konekcija na Aksimet server." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Odgovor od Aksimet servera nije primljen." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API biblioteka: %s za %s kalsu nije nađena. Molimo provjerite API i njegovu tabelu smjerenja poslova. " + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Vaš Aksimet API ključ nije validan." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Greška u izvršavanju metode slanja fopen!
Provjerite dali PHP ima OpenSSL podršku i dali je verzija PHP-a novija od 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Vaša unicode poruka je previše duga! ( Trenutna dužina=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Molimo definišite destinacijsku adresu (ZA)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Molimo definišite adresu izvora (OD)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Vaša unicode poruka je previše duga! ( Trenutna dužina=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Nepodržani metod slanja!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Vrijednosti %s u API biblioteci nisu validne. Sve API biblioteke moraju biti potklase %s-a." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directorij %s ne može biti obrisan." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Grška prilikom raspakivanja: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Preuzimanje poslljednjeg Ushahidi nije uspješno. HTTP statusni kod" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Fajl %s ne može biti kopiran." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Fajl %s ne može biti obrisan." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Skripta za Ushahidi nadogradnju" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Preuzeti Ushahidi zip fajl %s, ne može biti zapisan." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s nije dostupni u RiverID klasi." diff --git a/application/i18n/po/po-bs_BA/maintenance.po b/application/i18n/po/po-bs_BA/maintenance.po new file mode 100644 index 0000000000..7ff59095f9 --- /dev/null +++ b/application/i18n/po/po-bs_BA/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Jasmina Borovina , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Izvinjavamo se što stranica trenutno nije dostupna zbog održavanja. Molimo da pokušate za nekoliko minuta." diff --git a/application/i18n/po/po-bs_BA/message.po b/application/i18n/po/po-bs_BA/message.po new file mode 100644 index 0000000000..815a885779 --- /dev/null +++ b/application/i18n/po/po-bs_BA/message.po @@ -0,0 +1,64 @@ +# +# Translators: +# Haris Alisic , 2012 +# SaraCalkic , 2012 +# avdictarik , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Molimo unesite ispravan sigurnosni kod." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Molimo unesite sigurnosni kod." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Molimo provjerite da li je unesena ispravna email adresa." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email adresa mora imati minimalno 4 i maksimalno 64 znaka." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Unesite email adresu ukoliko je kockica oznacena." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Polje sa komentarima mora biti popunjeno." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ime mora imati minimalno 3 znaka." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Polje sa imenom mora biti popunjeno." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Telefonski broj nije ispravan." diff --git a/application/i18n/po/po-bs_BA/mhi.po b/application/i18n/po/po-bs_BA/mhi.po new file mode 100644 index 0000000000..91b1ac8f43 --- /dev/null +++ b/application/i18n/po/po-bs_BA/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# hvale11 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Molimo vas da unesite validan sigurnosti kod" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Molim vas unesite validnu sigurnosnu šifru." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Ovo email polje ne pokazuje validnu email adresu." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Molim vas unesite validnu email adresu." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Obavezno ispunite polje poruke" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Polje predmeta mora sadržavati najmanje 3 slova." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Polje predmet je obavezan." diff --git a/application/i18n/po/po-bs_BA/notifications.po b/application/i18n/po/po-bs_BA/notifications.po new file mode 100644 index 0000000000..4511ac2691 --- /dev/null +++ b/application/i18n/po/po-bs_BA/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# Adi Zeljkovic , 2012 +# CcaricaA , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Ova poruka je poslata sa vaše web stranice." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Prijava Administratora" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Novi komentar je postavljen na vašoj web stranici kao odgovor na:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Novi komentar" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Nova e-mail poruka je poslana na vašoj web stranici." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nova e-mail poruka" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Novi izvještaj je podnešen na vašoj web stranici" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Novi izvještaj" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Nova tekstualna poruka je podnešena na vašoj web stranici." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nova tekstualna poruka" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Primiliste ste novo upozorenje" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Novo upozorenje" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Dobili ste privatnu poruku" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nova privatna poruka" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Za odgovor molimo idete na:" diff --git a/application/i18n/po/po-bs_BA/page.po b/application/i18n/po/po-bs_BA/page.po new file mode 100644 index 0000000000..384df873eb --- /dev/null +++ b/application/i18n/po/po-bs_BA/page.po @@ -0,0 +1,38 @@ +# +# Translators: +# Fikret Muratović , 2012 +# Jasmina Borovina , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Molimo unesite naziv stranice" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Naslov stranice mora biti dug najmanje 3, a najviše 150 karaktera " + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Molimo unesite naziv taba stranice" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Unesite opis stranice" diff --git a/application/i18n/po/po-bs_BA/permissions.po b/application/i18n/po/po-bs_BA/permissions.po new file mode 100644 index 0000000000..01abbdf2b5 --- /dev/null +++ b/application/i18n/po/po-bs_BA/permissions.po @@ -0,0 +1,116 @@ +# +# Translators: +# CcaricaA , 2012 +# prangec , 2012 +# Fikret Muratović , 2012 +# Samra Hodzic , 2012 +# SaraCalkic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Pogledaj izvjestaje" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Napravi/Izmjeni/izbriši izvještaj" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Odobri izvjestaj" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Potvrdi izvjestaj" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Upravljajte komentarima na izvještaje" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Preuzeti izvještaj" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Učitaj izvješća." + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Upravljanje porukama" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Upravljajte poruke izvještavača" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Pogledaj statistiku." + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modifikacija postavki" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Upravjlajte panelom" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Upravljanje korisnicima" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Uredi uloge." + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Može se prijaviti" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Upravljajte prijave" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Administratorski pristup UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Korisnički pristup UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-bs_BA/private_message.po b/application/i18n/po/po-bs_BA/private_message.po new file mode 100644 index 0000000000..509d3d075a --- /dev/null +++ b/application/i18n/po/po-bs_BA/private_message.po @@ -0,0 +1,49 @@ +# +# Translators: +# Leila , 2012 +# Haris Alisic , 2012 +# Šejla K. , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Osnovni ID mora biti numerički" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Prema polje je obavezno" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Korisnik kome pokušavate poslati poruku ne postoji." + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Obavezan unos predmeta poruke" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Predmet mora sadržavati od 3 do 150 karaktera" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Polje za poruku je obavezno" diff --git a/application/i18n/po/po-bs_BA/report.po b/application/i18n/po/po-bs_BA/report.po new file mode 100644 index 0000000000..1109ef2b06 --- /dev/null +++ b/application/i18n/po/po-bs_BA/report.po @@ -0,0 +1,398 @@ +# +# Translators: +# Leila , 2012 +# prangec , 2012 +# Dragan Lalos , 2013 +# Dražana , 2012 +# Fikret Muratović , 2012 +# Samra Hodzic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "graška!\n\n\ndetalji prijedlozi istorija" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Ova implementacija proteže se unutar jedne zemlje samo. Molimo provjerite izvješće lokacija unutar države %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Polje \"%s\" mora biti numeričko." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Polje \"%s\" je obavezno." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "\"%s\" polje ne postoji." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Polje \"%s\" nije moguće mijenjati sa tvojim nalogom." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Polje \"%s\" ne sadrži ispravnu e-mail adresu. " + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Polje \"%s\" mora sadržati ispravan broj telefona." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Polje \"%s\" mora sadr\\ati ispravan datum (d.m.YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Polje \"%s\" mora sadr\\ati ispravan datum (d.m.YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Molimo obilježite važeću stavku da je uključite u preuzimanje." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Molimo obilježite važeću stavku da je uključite u preuzimanje." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Odaberite \"Izvješća čekaju odobrenje\" ili \"Odobrena izvješća\" ili oboje." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Odaberite \"Izvješća čekaju odobrenje\" ili \"Odobrena izvješća\" ili oboje." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Odaberite \"Izvješća čekaju odobrenje\" ili \"Odobrena izvješća\" ili oboje." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Odaberite \"Izvješća čekaju potvrdu\" ili \"Potvrđena izvješća\" ili oboje." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Odaberite \"Izvješća čekaju potvrdu\" ili \"Potvrđena izvješća\" ili oboje." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Odaberite \"Izvješća čekaju potvrdu\" ili \"Potvrđena izvješća\" ili oboje." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Molimo odaberite važeći tip izvještaja za preuzimanje." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Molimo odaberite važeći tip oizvještaja za preuzimanje." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Molimo odaberite važeći tip izvještaja za preuzimanje." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Morate izabrati format snimanja. Izaberite ili CSV ili XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Molimo vas da odaberete validni format za snimanje vaših izvještaja na" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Polje OD kojeg datuma ne sadrži validni datum." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Unesite validni datum u polje OD kojeg datuma. Datum ne može biti kasnije od današnjeg datuma." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Molimo unesite ispravnu vrijednost za odobri ovaj izvještaj" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Molimo unesite ispravnu vrijednost za odobri ovaj izvještaj" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Am/pm polje ne sadrži ispravnu vrijednost." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Polje \"Kategorije\" ne pokazuje da sadrži ispravnu kategoriju." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Polje \"Kategorije\" je obavezno." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Polje datum ne pokazuje da sadrži ispravan datum. " + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Polje datum ne pokazuje da sadrži ispravan datum." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Polje datum je obavezno." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Polje \"Opis\" je obavezno." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Polje sat ne pokazuje da sadrži ispravan sat. " + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Polje sati je obavezno." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Molimo unesite ispravnu vrijednost za informacijske vjerojatnosti." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Molimo unesite ispravnu vrijednost za informacijske vjerojatnosti." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Polje minute ne pokazuje da sadrži ispravnu vrijednost." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Polje minuta je obavezno." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Polje izvori linkova vijesti ne sadrži ispravan URL. " + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Molimo osigurajte da je postavljena fotografija veličine do 2 MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Polje postavljanje fotografija ne sadrži ispravnu fotografiju. Jedini prihvaćeni formati su .JBG, .PNG i .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Polje postavljanje fotografija ne sadrži ispravan dokument. " + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Unesite važeću vrijednost za izvor pouzdanosti." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Unesite važeću vrijednost za izvor pouzdanosti." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Polje \"Naslov izvješća\" mora da sadrži najmanje 3 i ne više od 200 karaktera." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Polje \"naslov prijave\" je obavezno." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Mogući CSRF napad. Jeste li stvarno htjeli kreirati / urediti ​​izvješće?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Molimo unesite ispravnu vrijednost za Provjeri ovaj izvještaj." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Molimo unesite ispravnu vrijednost za Provjeri ovaj izvještaj." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Polje Video poveznice ne sadrže ispravan URL." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Polje za unos geografske širine ne sadrži validnu vrijednost geografske širine." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Unošenje geografske širine je obavezno. Kliknite na mapu kako bi odredili tačnu lokaciju." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Polje regionalno ima neispravnu vrijednost." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Ovo izvješće već ima prijevod za ovaj jezik." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Polje regionalno ima neispravnu vrijednost." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Izvorni izvještaj i prijevod već imaju isti regionalni (jezik). " + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Ime lokaliteta je obavezno." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Polje \"Naziv lokacije\" mora da sadrži najmanje 3 i ne više od 200 karaktera. " + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Polje \"Lokacija\" je obavezno." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Polje za unos geografske dužine ne sadrži validnu vrijednost geografske širine." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Unošenje geografske dužine je obavezno. Kliknite na mapu kako bi odredili tačnu lokaciju." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Polje e-mail ne sadrži ispravne e-mail adrese. " + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Polje e-mail mora da sadrži najmanje 4 i ne više od 64 karaktera. " + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Polje ime mora da sadrži najmanje 3 i ne više od 100 karaktera. " + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Polje prezime mora da sadrži najmanje 2 i ne više od 100 karaktera. " + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Polje DO kojeg datuma ne sadrži validni datum." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Unesite validni datum u polje DO kojeg datuma. Datum ne može biti kasnije od današnjeg datuma." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Datum u polju OD ne može biti noviji od datuma u polju DO." diff --git a/application/i18n/po/po-bs_BA/reporters.po b/application/i18n/po/po-bs_BA/reporters.po new file mode 100644 index 0000000000..a0e47c81b0 --- /dev/null +++ b/application/i18n/po/po-bs_BA/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# prangec , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Polje za unos geografske širine ne sadrži validnu vrednost geografske širine." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Polje za unos geografske širine se mora popuniti. Molimo vas, kliknite na mapu kako biste odredili tačnu lokaciju." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Polje za Nivo Izvještavača ne sadrži validni Nivo." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Polje za Nivo Izvještavača ne sadrži validni Nivo." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Unos u polje za ime lokacije ne sme biti kraće od 3 i duže od 200 karaktera." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Polje sa imenom lokacije se mora popuniti." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Polje za unos geografske dužine ne sadrži validnu vrednost geografske dužine." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Polje za unos geografske dužine se mora popuniti. Molimo vas, kliknite na mapu kako biste odredili tačnu lokaciju." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Ime izvještavača nije validno" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Ime izvještavača nije validno" diff --git a/application/i18n/po/po-bs_BA/reports.po b/application/i18n/po/po-bs_BA/reports.po new file mode 100644 index 0000000000..dd348544b9 --- /dev/null +++ b/application/i18n/po/po-bs_BA/reports.po @@ -0,0 +1,54 @@ +# +# Translators: +# prangec , 2012 +# Jasmina Borovina , 2012 +# SaraCalkic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Molimo potvrdite da ste odabrali stavku" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Molimo potvrdite da ste odabrali stavku" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Izvještaji moraju biti kategorizovani prije nego se odobre" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Nemate odobrenje za ovu vrstu zahtjeva" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Morate odabrati fajl za postavljanje" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Postavljeni fajl mora biti u formatu .csv ili .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Polje za postavljanje fajlova ne sadrži validni dokument" diff --git a/application/i18n/po/po-bs_BA/roles.po b/application/i18n/po/po-bs_BA/roles.po new file mode 100644 index 0000000000..748daa435a --- /dev/null +++ b/application/i18n/po/po-bs_BA/roles.po @@ -0,0 +1,64 @@ +# +# Translators: +# Jasmina Borovina , 2012 +# Samra Hodzic , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Polje opis mora da sadrži najmanje 3 i ne više od 100 karaktera. " + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Polje Opis je neophodno ispuniti" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Polje Ime mora sadržavati slova ili brojeve" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Polje ime mora da sadrži najmanje 2 i ne više od 30 karaktera." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Super Admin uloga se ne može mijenjati." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Polje Ime je neophodno ispuniti" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Polje razina pristupa mora biti broj između 0-100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Polje razina pristupa mora biti broj između 0-100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Polje dozvole mora biti broj između 0-100." diff --git a/application/i18n/po/po-bs_BA/settings.po b/application/i18n/po/po-bs_BA/settings.po new file mode 100644 index 0000000000..2b1cead857 --- /dev/null +++ b/application/i18n/po/po-bs_BA/settings.po @@ -0,0 +1,865 @@ +# +# Translators: +# CcaricaA , 2012 +# prangec , 2012-2013 +# Dragan Lalos , 2013 +# Eldar Manđuka , 2012 +# Fikret Muratović , 2012 +# Haris Alisic , 2012 +# Jasmina Borovina , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Polje Dozvoli komentare ne sadrži validne vrijednosti" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Polje odobri komentare je obavezno." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "U polje include nije unešena validna vrijednost." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Polje include je obavezno polje." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "U polje za aktiviranje upozorenja nije unešena validna vrijednost." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Polje dopusti obavještenja je obavezno." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Polje za davanje dozvole za primanje izvještaja ne sadrži validnu vrijednost." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Polje dopusti obavještenja je obavezno." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "U polje za dijeljenje statistika nije unešena validna vrijednost." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Polje za dijeljenje statistika je obavezno polje." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Broj izvještaja koji se automatski dobija svakim API zahtjevom" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maksimalni broj zapisa za preuzimanje po API zahtjevu" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maksimalni broj API zahtjeva po IP adresi" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "U polje Akismet nije unešena validna vrijednost." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "U polje Akismet nije unešena validna vrijednost." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Polje za keširane strane je obavezno polje." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "U polje za keširane strane nije unešena validna vrijednost." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "U polje za rok trajanja keširanih strana nije unešena validna vrijednost." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Polje za rok trajanja keširanih strana obavezno je." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Izgleda da server nije podešen za procesiranje čistih URLova. Moraćete da promjenite konfiguraciju vašeg servera pre nego što omogućite otvaranje čistih URLova. Više informacija o tome kako omogućiti čiste URLove imate na ovom postu na forumu" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Ova opcija omogućava pristup Ushahidiju putem \"čistih\" URLova (bez \"index.php\" u URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Dozvolite čišćenje URL" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Očisti URLove" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Polje Clickatell API broja ne može imati više od 20 karaktera." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Polje Clickatell API broja je obavezno polje." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Polje Clickatell lozinke mora biti duže od 5, ali najviše 50 karaktera." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Polje Clickatell lozinke je obavezno polje." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Polje Korisnički nalog na Clickatellu ne smije biti duže od 50 karaktera. " + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Clickatell korisničko ime je obavezno." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Konfigurirajte mapu." + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Zadana lokacija" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "U polje za unos boje nije unešena validna vrednost." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Polje za unos boje ne smije biti duže od 6 karaktera." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Polje boja je obavezno." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Automatski prikaz mape" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Zadani nivo zumiranja" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Povucite imena gradova iz Geonames-a" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Polje za unos porta Mail servera predugačko je." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Polje za unos porta Mail servera treba sadržati samo brojeve." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Polje Lozinka Mail servera mora biti duže od 5 karaktera, ali ne više od 50 karaktera." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Polje Lozinka Mail servera je obavezno za popunjavanje." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Polje Mail server port je predugačko." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Polje Mail server port treba sadržati samo brojeve." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Polje Mail server port je predugačko." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Polje Mail Server Type je obavezno za popunjavanje." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Polje Mail Server Username ne smije biti duže od 50 karaktera." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Polje Mail Server Username je obavezno za popunjavanje." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opcije za podešavanje Facebooka " + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Kako bi ste dobili informaciju ispod potrebno je da kreirate novu Facebook aplikaciju za" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebookov App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebookob App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Polje Google Analytics mora sadržati validni Web Property ID kod u formatu UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Omogući HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Ova opcija omogućava pristup Ushahidiju u nebezbjednom modu; bez \"https://\" u prefiksu URLa" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Ova opcija omogućava pristup Ushahidiju u bezbjednom modu; sa https u prefiksu URLa" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "U Polje za unos broja članaka koji će se prikazivati po strani (Frontend) nije unešena validna vrijednost. " + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Polje Broj članaka po strani (Frontend) je obavezno za popunjavanje." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "U polje za unos broja članaka po strani (Admin) nije unešena validna vrijednost." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Polje Broj članaka po strani (Admin) je obavezno za popunjavanje." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Podešavanje vašeg provajdera mapa jednostavan je proces. Odaberite provajder, uzmite API kluč sa websajta provajdera i unesite API ključ." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nivo zumiranja" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Odaberite Provajder mape" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Unesite novi API ključ" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Preuzmite API ključ" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Podešavanje vašeg provajdera mapa jednostavan je proces. Odaberite provajder, uzmite API kluč sa websajta provajdera i unesite API ključ." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Provajder mape" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Hronologija mape" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Postavke mape" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Dali ova implementacija Ushahidija obuhvata više država?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Odaberite državu." + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Kliknite i povucite mapu da postavite svoju tačnu lokaciju" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Izvještaji o klasterima na mapi" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Dozvoli korisnicima komentiranje prijava." + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Uključi RSS News Feed na web stranici" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Dozvoli korisnicima da se pretplate za obavještenja" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Dozvoli korisnicima da unesu izvještaje" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet ključ" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Baner stranice" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Broj blokova u redu" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache-irane strane" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Rok trajanja Cacheiranih strana" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Dozvolite Prijave" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Izjava o autorskim pravima stranice" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Osnovna boja za sve kategorije" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Osnovna ikona za sve kategorije" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Obriši sliku banera" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Obriši osnovnu ikonu" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Prikaži kontakt stranicu" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Prikaži stranicu \"Kako pomoći\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "E-mail adresa za obavještenja" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Za dobijanje izvještaja elektronskom poštom, konfigurirajte postavke vašeg korisničkog računa elektronske pošte." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "E-mail adresa stranice" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Broj članaka po strani - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Broj članaka po strani - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Onemogućite spamiranje komentara korištenjem Automatticovog Akismeta.
Besplatni API kluč možete dobiti registracijom za korisnički nalog na WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Akreditivi Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Website Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Jezik stranice" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Ručna potvrda korisnika" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Poruka stranice" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Ime stranice" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Privatna implementacija" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Potrebna potvrda korisničkog e-maila" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Postavi poruku izvještaja " + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Omogućite sakupljanje statistika (čuvane na serveru Ushahidija)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Tagline sajta" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Vremenska zona" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Postavke stranice" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Termini za pretraživanje Twittera" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtag - odvojeni zarezima" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Polje za unos email adrese ne sadrži validnu email adresu." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Polje za unos email adrese ne može imati manje od 4 i više od 100 karaktera." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Polje za unos imena sajta ne može biti kraće od 3 i duže od 50 karaktera." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Polje naziv stranice je obavezno." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Polje za unos tagline-a ne može biti kraće od 3 i duže od 100 karaktera." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Obavezno popuniti polje za unos tagline-a." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Upišite vaš Clickatell API broj" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Provjerite stanje na vašem kretitnom računu na Clickatell-u." + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Dopunite kreditni račun" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Vaša Clickatell lozinka" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Prijavite se za Clickatellove usluge na ovom linku" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "U polje ispod unesite vaše pristupne informacije za Clickatell-ov račun" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Vaše Clickatell korisničko ime" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Unesite telefonski broj (ili brojeve) povezane na Frontline SMS u polje (polja) ispod" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Unesite broj u polje ispod, bez korištenja + ili crtica" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Opcija 1: Koristi Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Opcija 2: Iskoristite Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Opcije za podešavanje SMS-a" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Polje Telefon 1 ne sadrži validnu vrijednost." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "U polje Telefon 1 treba unijeti samo brojeve." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Polje telefon 2 je predugačko." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Polje telefon 2 treba sadržati samo brojeve." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Polje telefon 3 je predugačko." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Polje telefon 3 treba sadržati samo brojeve." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Postavke testa" diff --git a/application/i18n/po/po-bs_BA/sharing.po b/application/i18n/po/po-bs_BA/sharing.po new file mode 100644 index 0000000000..c1436100eb --- /dev/null +++ b/application/i18n/po/po-bs_BA/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# prangec , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Ulazni datum" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Datum dodavanja" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Zadnji pristup" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Obojeno polje mora biti duži od 6 karaktera." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Obojeno polje se mora popuniti." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Nevažeće ime za Razmjenu." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Unesite ime za Razmjenu." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Već postoji websajt sa tim URL-om." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL websajta nije validan." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Unos URL adrese websajta je obavezan." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Polje za unos URL websajta ne sadrži validnu URL adresu." diff --git a/application/i18n/po/po-bs_BA/stats.po b/application/i18n/po/po-bs_BA/stats.po new file mode 100644 index 0000000000..9e7b381a4f --- /dev/null +++ b/application/i18n/po/po-bs_BA/stats.po @@ -0,0 +1,201 @@ +# +# Translators: +# Almita , 2012 +# prangec , 2012 +# Fikret Muratović , 2012 +# Šejla K. , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Odobreno" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategorije" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Kategorija utjecaja" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Na ovom grafikonu imate linearni i hronološki prikaz izvještaja po kategorijama. Listajte s lijeva na desno kako bi dobili komparativni pregled razčilitih kategorija. Pređite mišem preko grafikona kako bi dobili više detalja." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Odaberite vremensko razdoblje." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Države" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Država" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Pregled po državama" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Ovo je statistička sekcija na kojo će se uskoro nalaziti i opšti opis. Za sada možete pregledati informacije preko linkova za podkategorije koji se nalaze iznad." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Greška" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Pojmovnik" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Sumirani prikaz hitova" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Posjete individualnih stranica" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Ukupan broj stranica koje su posjetitelji vidjeli na tvom sajtu" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Izvještaji" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Kategorije izvještaja" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statistike izvještaja" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Statusi izvještaja" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Perforirana kartica izvještaja" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Statistički izvještaj" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistika nije postavljena" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mjesec" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 mjeseca" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 mjeseci" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Ukupno" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Neodobreno" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Pojedinačni posjetitelji" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Broj osoba koji prilaze vašoj postavci. Unikatni posjetioci određuju se korištenjem cookie-ja. Posjetioci/teljke koji nisu aktivirali korištenje cookie-ja biće identificirani/ne korištenjem jednostavnim heurističkim pregledom IP adresa, rezolucija, pregledača, pluginova, operativnih sistema, itd." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Ne odobreno" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Odobreno" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Pregled posjetioca." + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Posjete" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Posjetom se smatra zapis dolaska unikatnog posjetioca/teljke više od 30 minuta nakon njegove/njene posledne posjete neke individualne strane" diff --git a/application/i18n/po/po-bs_BA/tooltips.po b/application/i18n/po/po-bs_BA/tooltips.po new file mode 100644 index 0000000000..8f465f766f --- /dev/null +++ b/application/i18n/po/po-bs_BA/tooltips.po @@ -0,0 +1,588 @@ +# +# Translators: +# Almita , 2012 +# prangec , 2013 +# Fikret Muratović , 2012 +# Jasmina Borovina , 2012 +# SamirBL , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Ovo dodaje izvještaj u dodatne kategorije. Ako ste ovdje izabrali Kategoriju 1 a izvještaj je već unesen pod Kategoriju 2 onda će izvještaj biti i pod Kategorijom 1 i pod Kategorijom 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Odobrava izvještaj ili ne. Odobreni izvještaj se prikazuje javno." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Moći ćete da korisniku koji inicira proces dodjelite odgovarajući bedž. Ovdje odaberite bedž koji ćete dodjeliti." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Radi se o opsegu sati i/ili minuta između dva data vremena u 24-časovnom formatu. Ako u drugo polje unesete ranije vreme, dva polja će automatski biti zamjenjena. Oba termina moraju se nalaziti unutar jednog dana. Takođe, unešeno vreme upoređuje se sa vremenom koje ste konfigurirali na vašem sajtu u setinzima a ne nužno sa vremenskom zonom u kojoj se nalazi korisnik koji komunicira sa vašom instalacijom. Ako želite da ignorirate ovaj kvalifikator, ostavite oba polja na vrijednosti 00:00 do 00:00." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Ako želite da aktivirate okidače samo kada se koristi određena kategorija, ta podešavanja možete obaviti ovdje. To će omoogućiti aktiviranje okidača ako se koristi samo jedna od kategorija. Na primjer, ako odaberete Kategoriju 1 i Kategoriju 2, a izvještaj je podnešen korištenjem Kategorije 2 i Kategorije 3, proći će test. " + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Ako se te akcije dešavaju određenih dana u nedelji, to možete podesiti ovdje. Imajte u vidu da se dan određuje preko časovne zone konfigurirane u vašoj instalaciji. Pritisnite shift, command ili control dugme na tastaturi za odabir više dana istovremeno. " + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Tijelo e-mail poruke." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Predmet e-mail poruke." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Unos se može odnositi i na sve unose i na specifične unose. Ako želite da samo specifični unosi aktiviraju okidač, odabraćete ih ovdje. Ako ne, ovdje ćete ostaviti opciju \"all\"." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Korisničko ime autora na Twitter-u (ili više korisničkih imena odvojenih zarezima). Ako želite da aktivirate okidače samo za tweetove tačno određenog korisnika ili korisnice, unesite njegovo ili njeno korisničko ime ovdje (bez @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Ako ne želite da upoređujete sa datim ključnim riječima, ovo polje možete ostaviti prayno. Ako ćete unositi riječi, trebate ih odvojiti zarezom (,). Na primjer, ako želite da aktivirate okidač kada neko pomene \"ljubav\" ili \"mir\" u svojoj poruci, onda ćete u polje za ključne riječi unijeti \"ljubav, mir\"." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Možete odabrati koje bilo mjesto ili neku specifičnu lokaciju. Ako odaberete specifičnu lokaciju, od vas će biti zatraženo da iscrtate pravougaonik oko oblasti koja kvalifikuje neku akciju. Na primjer, ako želite da taj okidač bude aktiviran kada neko podnese izvještaj u Brazilu, odabraćete \"specifičnu oblast\" i onda nacrtati pravougaonik oko Brazila. Te pravougaonike možete napravite onoliko mali ili veliko koliko želite. Možete iscrtati i više pravougaonika. " + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Ovaj kvalifikator će aktivirati okidač na N-tom odbrojavanju kako za kolektivnu bazu korisnika tako i za pojedinačne korisnike i korisnice. Ako želite da ga ignorirate, ostavite polje prazno." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Ovo je automatski naslov koji će biti dodan na izvještaj." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Ako su prošli svi gorenavedeni kvalifikatori, okidać će inicirati odgovor. Odgovor može ići u opsegu od odobravanja izvještaja do izvještavanja korisnika elektronskom poštom. Odaberite odgovor kako bi aktivirali dopunske opcije za svaki pojedinačni odgovor." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Ako odaberete \"Korisnik sa dozvolom za aktiviranje\", korisniku koji obavlja tu akciju će dobiti poruku elektronskom poštom. Ako odaberete radio dugme koje se nalazi pored polja za unos, moći ćete da unesete specijalnu email adresu. To je veoma korisno ako postavljate okidače da obavještavaju ljude kada se javljaju izvještaji, prijave ili druge aktivnosti na određenim djelovima mape." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Možete označiti više od jednog dana. Datume određuje podešavanje časovnih zona na vašoj instalaciji. Nemojte odabrati nijedan datum ako želite da se akcija automatski odnosi na sve datume. " + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Okidač je ključna komponenta za podešavanje vaših Okidača akcije. Ovdje odlučujete dali želite da se nešto desi kada neko podnese izvještaj, prijavi se, itd. Moći ćete da filtrirate odgovore na te akcije izborom određenog filtra." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Korisnik može biti bilo ko ili tačno određeni korisnik. Ako želite da samo određeni korisnici mogu aktivirati okidač, odabraćete ih ovdje. Inače, ostavićete opciju \"Anyone\" u ovom polju, znajući da je većina okidača podešena za sve korisnike koji su u sistemu" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Označava izvještaj kao potvrđen ili nepotvrđen" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Profil stranica koristi Gravatar fotografiju. Klik na vašu fotografiju će vas odvesti na Gravatar stranicu gdje možete promjeniti fotografiju." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Razdvojite svaku vrijednost sa zarezom, npr. vrijednost1, vrijednost2" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Odvojite sve vrijednosti zarezom, na primjer, vrijednost1, vrijednost2. Ako želite da postavite automatsku vrijednost, završite vašu listu opcija sa :: na primjer, ako želite da napravite value3 automatskom vrijednošću, linija će glasitei value1, value2, value3::value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Odvojite svaku izabranu stavku zarezom. Npr. Stavka 1, Stavka 2 itd." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Započnite unos da izlistate članove." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Naslov privatne poruke" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Privatna poruka" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Možete odabrati boju pozadine ispod vaše slike profila na vašem javnom profilu. Te boje će biti i tačka koja će se pojaviti na mapi kada se prijavite." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Vaša e-mail adresa" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Ovo je jedan od načina kako možete biti identifikovani na stranici. Imajte na umu da je ova informacija javna." + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Ako želite da promjenite šifru, unesite je u ovo polje. Ako ne želite da promjenite šifru, ostavite ovo polje prazno." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Ova informacija je obavezna pri kreiranju novog korisnika i inicijalno će služiti kao korisnička šifra. Obavijestite novog korisnika da promjeni šifru nakon prve registracije." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Izbor opcije DA vam omogućava da dobijate obavijesti putem elektronske pošte kada se novi izvještaji ili komentari postave na vašu stranicu." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Vaša šifra. Neophodno je unijeti šifru da bi spriječili neovlašten pristup vašem nalogu." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Ako odaberete ovu opciju, vaš profil mogu gledati svi korisnici interneta. To je takođe i najlakši način da pokažete izvještaje koje ste postavili, prijave, bedževe, itd. na jednoj strani." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Ovo je adresa gdje se može pronaći vaš javni profil." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Vaše korisničko ime nije promjenjivo" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Nivoa pristupa se koriste kako bi ograničili pristup terenskim podacima iz namjenskih formulara. Viši nivoi pristupa mogu pristupiti poljima iz nižih nivoa. Superadmin ima najviši nivo pristupa (100). Javni podaci su izloženi na najnižem nivou pristupa (0). Članovi imaju nivo pristupa 10. Admin korisnik automatski dobija nivo 90." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Ovo je e-mail adresa koja će biti korištena za e-mail obavještenja" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Dozvolite korisnicima da se pretplate na obavještenja putem web-a" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Ovo omogućuje grupisanje sličnih izvještaja u jednu tačku na karti." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Dozvolite korisnicima da komentarišu izvještaj na glavnoj stranici" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Ovo omogućuje RSS Novosti da budu prikazane na glavnoj stranici." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Dozvoljava korisnicima da postave informaciju preko web forme" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Automatski broj izvještaja koji se prikazuje po API zahtjevu" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maksimalni broj izvještaja koji se prikazuje po API zahtjevu" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maksimalni broj API zahtjeva po IP adresi" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Banner sajta prikazuje se na vrhu naslovne strane vašeg sajta, ako to podržava tema koju koristite. Preporučene dimenzije bannera zavisiće od teme koju koristite. Imajte u vidu da će baner zamjeniti naslov sajta i tagline na vrhu strane." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr " Broj blokova sa kolonama koji će se prikazivati u svakom redu." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Aktivirajte ili isključite keširanje strane. To omogućava brže prikazivanje strana skraćivanjem vremena reakcije. Preporučujemo korištenje keširanja kod sajtova sa velikim saobraćajem. **Upamtite da će izvještaji biti postavljeni na front endu na osnovu rasporeda koji ste podesili dolje (Cache Lifetime)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Podesite rok trajanja keša." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Ova postavka omogućava prijavljivanje na vašu instalaciju. Ovo je pojednostavljen tip izvještaja koji nije moderiran pre postavljanja na homepage i zahtjeva samo da vaš sajt bude konfiguriran na određeni način. Kada aktivirate ovu mogućnost, osigurajte se da je časovna zona podešena na UTC i da vaša tema podržava prijave. Kada aktivirata ovu mogućnost, u strani sa setinzima addonova/tema biće aktivirane samo teme teme koje su dostupne uz prijavu." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Podesite mapu da pokriva specifičnu lokaciju." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Podesite jednu boju za sve kategorije na stranici." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Podesite jednu ikonu za sve kategorije na stranici." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Ovo je država u kojoj je instaliran sajt." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Uključite ili isključite Tab za kontakte na glavnom sajtu." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Uključite ili isključite Tab za pomoć na glavnom sajtu." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Ovdje imate broj izvještaja koji će se prikazati po strani na glavnom sajtu." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Ovdje imate broj izvještaja koji se prikazuje po strani na administratorskim stranama u Back Endu." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Ovoj je čvorište za dolazeće poruke." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Ovdje se sinhroniziraju poruke u čvorištu sa Ushahidi platformom." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Broj telefona za primanje SMS poruka." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Pratite posjetioce Vaše stranice. Dobijte detaljne statističke podatke posjetioca." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Postavite jezik koji će se koristiti na stranici." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Ako postavite ovu opciju na yes, morate da odobrite svakog individualnog korisnika koji kreira račun na vašem sajtu i dodjeliti im uloge (t.j. Član, Administrator, Superadministrator)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Ovo odredžuje koja mapa će koristiti za stranicu." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Ovdje je prikazana hronologija na osnova datuma i vremena podnošenja izvještaja" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Ako postavite ovu vrijednost na true ili yes, vaša instalacija postaje privatna i samo korisnici sa korisničkim računima koje ćete vi odrediti moći će pristupiti instalaciji." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Korisnici će emailom dobiti link za potvrdu koji moraju da kliknu prije nego se mogu logirati u instalaciju, ako ste ovdje odabrali yes. Ako ste aktivirali ovu opciju nakon što je vaša instalacija već primila neke korisnike, od njih će biti zatraženo da potvrde svoj račun prije nego što im bude dozvoljeno da ga nastave koristiti." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Ovdje se čuvaju email poruke" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Ovo je lozinka za email adresu koja prima izvještaje." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Ovo je potrebno za prihvatanje ulaznih konekcija sa email adrese." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Ovo je potrebno kako bi se pojačala bezbjedna konekcija." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Ovo je potrebno za povlačenje email poruka sa servera." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Ovo je email adresa koja prima izvještaje." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Statistike o hitovima čuvaju se na serveru koji je pod kontrolom Ushahidija. Aktiviranjem ove opcije, dobijate pristup statistici o hitovima direktno u vaš administratorski panel. Deaktiviranjem ćete zaustaviti sakupljanje statistika i nećete moći da obnovite statistike o saobraćaju sakupljene dok je ova opcija bila isključena. " + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Dali druge osobe imaju pravo da ponovo objave tekst, slike, video i/ili dizajnerske teme koje ste kreirali vi ili vaši korisnici? Posjetite https://creativecommons.org/choose/ ako želite da tačno odredite šta drugi ljudi mogu raditi sa vašim djelima. Upamtite da trebate biti precizni i određeni koje elemente sajta licencirate!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Ova email adresa će primati izvještaje i poruke podnešene preko formulara za kontakt elektronskom poštom." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Ovaj tekst će stajati iznad mape na homepage-u i koristan je zato što nudi važne informacije posjetiocima sajta. Ako želite da uklonite taj box, jednostavno izbrišite ovu poruku." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Ovo je ime stranice koje se pojavljuje na vrhu glavne stranice." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Ovo je poruka koja će se pojaviti na strani za podnošenje izvještaja. Može se iskoristiti za disklejmere i davanje dopunskih uputstava posjetiocima koji podnose izvještaje." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Opišite stranicu u nekoliko riječi." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Ovdje je navedena časovna zona u kojoj će raditi vaš sajt. To će uticati na sve akcije koje ste podesili a koje ovise o tačnom vremenu i datumu, a postavljaće automatski i vreme objavljivanja izvještaja na front endu i na back endu sajta." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Odredite twitter hashtag koji će biti korišten u tweetu." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-bs_BA/ui_admin.po b/application/i18n/po/po-bs_BA/ui_admin.po new file mode 100644 index 0000000000..69fa3dee11 --- /dev/null +++ b/application/i18n/po/po-bs_BA/ui_admin.po @@ -0,0 +1,1667 @@ +# +# Translators: +# Almita , 2012 +# CcaricaA , 2012 +# Leila , 2012 +# prangec , 2012 +# Dragan Lalos , 2013 +# Haris Alisic , 2012 +# Haris Alisic , 2013 +# Haris Ferizovic , 2012 +# Samra Hodzic , 2012 +# SaraCalkic , 2012 +# nardev , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Pristup odbijen. Ili vaše službene potvrde nisu važeće ili je vaš zahtjev odbijen." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Pristup odbijen. Vaš zahtjev je prihvaćen, ali je njegovo odobrenje ograničeno vremenom. Molimo pokušajte kasnije. " + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nivo pristupa" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Akcije" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Dodaj u kategoriju" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "Dodano" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Dodano/Ažurirano" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Dodaci" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Upozorenja" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Primljena upozorenja" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Sve" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anoniman" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Bilo ko" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Bilo gdje" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API blokiran" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API logovi" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API postavke" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Dozvoli pristup" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Dozvoli pristup svima" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "odobreno" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Odobri automatski" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Odobri manuelnim putem" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arkivirano" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Da li ste sigurni da želite da" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Da li ste sigurni da zelite da obrisete ovu stavku?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Da li ste sigurni da zelite da obrisete ovu fotografiju?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Da li ste sigurni da želite zamjeniti formulare?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Dodijeli" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Zadaci" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Dodijeli oznaku" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email autora" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Nazad" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Blokiraj IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Između vremena" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blokovi" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Body" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Otkaži" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategorije" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Grške u prikazivanju grafikona" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Molimo provjerite je li vaša poruka valjana. " + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Molimo provjerite je li broj važeći." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Molimo provjerite vaše SMS postavke!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalji prijave" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Prijave" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Učitani gradovi" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kod" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Kodirana verzija nije sinkronizirana. " + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Boja" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Komentari" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Vaš kod za potvrdu obavijesti je:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Korisnik je" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Broj" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Zemlja nije nađena" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "kreirano/uređivano" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Kreiraj izvještaj" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Važna nadogradnja" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Trenutno aktivan" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Trenutno neaktivan" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Nemate odgovarajuće dopuštenje da uređujete naredna polja" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Dnevno" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Kontrolna ploča" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "baza podataka" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Daum i vrijeme" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Datum dodan" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Datum promjenjen" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dani u sedmici" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB verzija nije sinhronizovana." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "obrisano" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Obriši" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Izbrisati oznaku" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Opis" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Onemogućeno" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Početak Razdjelnika" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Kraj Razdjelnika" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Preuzmi izvještaje" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Dropdown Izbori" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "UREĐENO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Oredio/la" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Uredi" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Izmjeniti log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Cjelokupan kolektiv" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Geocoding greška! HTTP greška" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP Biblioteka nije instalirana" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Neispravni kredencijali" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Greška" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Greška, nije moguće postaviti incident" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Svakih šest sati" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Svakih dvanaest sati" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Eksperimentalno" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Često postavljena pitanja" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "unos" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Povratna informacija" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "unosi" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista izbora" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Zadata vrijdnost" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tip podatka" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Označivač" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerički" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Slobodan tekst" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Visina (u koloni)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Sakrivena polja" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maksimalan broj karaktera" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Polje ime" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Preklopnik" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Ne" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Da, zatvoriti prema zadanom" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Da, otvoriti prema zadanom" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "NIje moguće pronaći podignutu datoteku." + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Nije moguće otvoriti datoteku za čitanje." + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ta Forma ne postoji!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Polje za tekst (slobodan tekst)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Polje za \"Datum\"" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Polje \"Radio Buttons\"" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Polje \"Checkboxes\"" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Polje \"Dropdown\"" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Od" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Od" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Greška prekida za Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Dobij pomoć" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Dobij više tema" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Više dodataka" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Akcije" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Dodaj/uredi" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Upravljanje korisnicima" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Uloga" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Korisnik/ca" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Pomoć" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Po satu" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Unos incidenta za" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Instalacioni folder još postoji. Izbrišite instalacioni folder, zato što je potencijalna ranjiva tačka po sigurnost." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Primjer" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Primjeri" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalji primjera" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Nepostojeći parametar" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP adresa" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Dali je ovo polje za unos datuma?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Ko može vidjeti odgovore" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Ko može dati odgovor" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Ključna riječ" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Ključne riječi" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email adresa" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Puno ime" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Šifra" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Uloga" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Korisničko ime" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Slojevi" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moredator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Odjava" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logovi" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Upravljaj" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Upravljanje ulogama i dozvolama" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Vidi korisnike/ce" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "dodaj/uredi korisnike/ce" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Upravljaj svojim javnim listingom" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Obilježi kao" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "obilježeno kao da nije spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "obilježeno kao spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "nije odgovaralo nijednom dokumentu" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Poruka" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Poruke" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Poruke Laconice" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter poruke" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Tvoja poruka je poslana!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuta" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minute" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Nedostajući Parametar" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modifikovano" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Izmjeniti postavke vremenske zone" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "premjesti dole" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "premjesti gore" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Slučajevi sa više hostova" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Moja upozorenja " + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Moja prijavljivanja" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Moj profil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Moji izvještaji" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Ubačeni glasovi" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Pozitivno" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativno" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Naziv" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Kreiraj novo upozorenje" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Kreiraj novu poruku" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nova šifra" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Ne" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Ovo je posebna kategorija koja se neće prikazati na formularu za podnošenje izvještaja za korisnike koji podnose izvještaje. Korisiti se za zadržavanje izvještaja bez kategorizacije (nekategorizirani izvještaji) kao rezultat brisanja kategorije." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Obavijest" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Ne morate paziti na velika i mala slova." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Nije pronađeno" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Nema podataka. Nema rezultata za prikazivanje." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Nema greške" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Nema rezultata za prikazivanje" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "od" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Po Specifičnom brojanju" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID-evi" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "stranica" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "stranice" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Stranica nije pronađena" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Nažalost, strana koju želite da pogledate ne nalazi se ovdje.

Dali ste pratili neki link koji ste našli na drugom mjestu na našem sajtu?
Ako ste na ovu stranu došli sa nekog drugog mjesta na našem sajtu, molimo vas da na kontaktirate kako bi mogli popraviti našu pogrešku.

Dali ste pratili link sa nekog drugog sajta?
Linkovi na drugim sajtovima ponekad mogu biti zastareni ili imati slovne pogreške. Recite nam odakle dolazite i mi ćemo pokušati da kontaktiramotaj sajt kako bi ispravili problem.

Dali ste sami upisali URL?
Možda ste pogrešno upisali adresu (URL). Provjerite da možda niste napravili slovnu grešku, dali možda negdje niste koristili velika slova, itd.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Izvini, ali stranica koju tražiš nije ovdje." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Korišteni parametri" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Šifra" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Reset šifre" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Draga/i" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Primili smo zahtjev za promjenu šifre u " + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Da promjenjite šifru, molimo da klikneš na link ispod (ili ga kopiraš i zalijepiš na pretraživač)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Po zahtjevu, tvoja šifra je sada resetovana. Slijede tvoji novi podaci" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi reset šifre" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Molim obilježi" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Podaci nisu poslani metodom postivanja " + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Pregled" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Poruka" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Privatna poruka" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Privatna poruka poslana" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Naslov" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Prema" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Javni spisak" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Kvalifikatori" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "čitaj" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevantnost" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Naslov izvještaja" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Datum izvještaja" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Repoteri/ke" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivoa izvještača" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Izvještaji" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Bodovi za reputaciju" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Potrebno" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Resetiraj" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Odgovor" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Rezultati" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Povuci" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Već postoji korisnički račun kojim upravlja CrowdmapID sa tom email adresom. Korisnik će morati iskoristiti svoju postojeću Crowdmap lozinku za prijavljivanje." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Spasi postavke" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Traži" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Traži izvještaje" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "tražim" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Ključ za šifriranje još uvijek je postavljen na automatsku vrijednost. To nije bezbjedno i mora biti promjenjeno." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Ovaj se sajt opslužuje putem HTTP-a. Za povećanu sigurnost, treba postaviti na HTTPS." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Upute su dostupne na wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Izaberite željeni format za snimanje izvještaja:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Odaberite tip polja ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Izaberi stavku" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Pre nego što daberete Odgovor, morate odabrati Okidač" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Morate odabrati Okidač prije nego što definirate Kvalifikatore." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Šalje" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Prema" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Ova poruka je poslana sa tvoje web stranice na" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Server vrijeme" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Postavke" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Prikazivanje stranice" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Prikazivanje rezultata" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "Prikazano" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Posebna kategorija" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Ovo je specijalna kategorija koja se neće prikazati na formularu za podnošenje izvještaja za korisnike koji podnose izvještaje. Koristi se zajedno za opcijom \"Trusted Reporters\" - izvještavači kojima vjerujemo." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Posebna oblast" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Država" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistike" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistike" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Sakupljanje statistika nije uspjelo! Pokušajte ponovo kasnije." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Sakupljanje statistika nije uspjelo!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Određeni dani" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Naslov" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Superadministrator" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Obavljeni zadatak" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Polje za unos teksta" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Ime" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Upravljajte korisnicima" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Timeout greška. " + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "do" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Ukupno izvještaja" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "do" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Prevedite izvještaje" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Okidač" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Korisnik okidača" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Okidači" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "neodobreno" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Nepoznato" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Nepoznata greška" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "unread" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Više nećete primati obavijesto od " + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Kliknite ovdje za nadgradnju" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Nadgradite Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Nadgradite Status na Ushahidiju" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Postavite Izvještaje" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Korisnik/ca" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Korisnici" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verifikovano/neverifikovano" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verifikuj/Poništi verifikaciju" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Verzija" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "je dostupno za nadogradnju" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Kodiranje videa" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Privatne poruke" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Pogledaj stranicu" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Pogledaj izvještaj" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Dobrodošle/i" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Da" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Tvoje pretraživanje za" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-bs_BA/ui_main.po b/application/i18n/po/po-bs_BA/ui_main.po new file mode 100644 index 0000000000..8f7426ff78 --- /dev/null +++ b/application/i18n/po/po-bs_BA/ui_main.po @@ -0,0 +1,3178 @@ +# +# Translators: +# Adi Zeljkovic , 2012 +# Leila , 2012 +# prangec , 2012 +# Dragan Lalos , 2013 +# Ena i Jasmin Mehic , 2012 +# Fikret Muratović , 2012 +# Haris Alisic , 2012 +# Samra Hodzic , 2012 +# SaraCalkic , 2012 +# avdictarik , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "O Nama " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Pristup" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Ograničenje pristupa" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Ime naloga" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Akcije" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ova akcija se ne može poništiti. Jeste li sigurni da želite nastaviti?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktiviraj" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktivno" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Dodaj" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Dodano od" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dodatni podaci" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Dodatni izvještaji" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Dodaj/Uredi" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Dodaj polje" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Dodaj jezik" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Novi" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Dodaj novu kategoriju" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Dodaj prevod" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administriranje" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Dobij upozorenja" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Obavijesti me ako je izvješće podneseno, ili otprilike:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Spasi moje upozorenje" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email adresu:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Unesi email adresu" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "unesi mobilni broj sa pozivnim brojem" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Primi upozorenja" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Upozorenje je " + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobitel" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ili, mjesto na mapi ispod, i bit ćeš obavješten/a u vidu izvještaja koji pokriva područje unutar 20 km." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Ako nisi našao/la traženu lokaciju, molimo da klikneš na mapu i obilježiš ispravnu lokaciju." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS (kopiraj url ispod)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Izaberi grad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Korak 1: Obilježi tvoj grad ili lokaciju:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Korak 2: Pošalji upozorenje na moju:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Korak 3 (Proizvoljno): Obilježi kategorije " + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Potvrdi prethodni zahtjev za upozorenje" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Vaše upozorenje je pohranjeno!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Sve kategorije" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Dozvoljeno" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Dopušteni HTMl tagovi: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframe-ovi su jedino dopušteni sa: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Sve kategorije" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Cijelo vrijeme" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "i" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Odobri" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Odobreno" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Odobrene prijave" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Odobri prijavu" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Odprilike" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arhiviraj" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arhivirano" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Rastuće" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "kod" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Automatska provjera" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Prosjek prijava po danu" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Čeka se odobrenje" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Čeka se potvrda" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Bedž" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Bedževi" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Slika bedža" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ili možete upload vašu vlastiti sliku bedža." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Značka paketa" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Izaberite bedž" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Pretražite profile" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Odustani" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategorije" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategorija" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategorija filtera" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategorija je" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Naziv kategorije" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Promijenite opseg datuma" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Promijeni password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Promijeni moju sliku" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Odaberi" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Odaberite podatke za preuzimanje" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "ili izaberite proizvoljni opseg datuma" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Izaberite tip polja" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Izbriši URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Obriši" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Očisti mapu" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Zatvori" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "klasteri" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Boja" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Komentirajte" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Komentari" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalji komentara" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Vaše postavke su pohranjene." + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Podesite" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Uspješno ste potvrdili vašu e-mail adresu! Molimo, prijavite se na donji link." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Email potvrda neuspješna! možeš zahtjevati novi email za potvrdu ispod." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontaktiraj nas" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Sigurnosni kod" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Vaša e-mail adresa" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Poruka" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Vaša poruka je poslana!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Vaše ime" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Vaš broj telefona" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Pošalji poruku" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Naslov poruke" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Autorska prava" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Kreiraj" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Kreiraj/Uredi" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Kreiraj novi" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Kreiraj novu lozinku" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Kreiraj izvještaj" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Povjerenje" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Trenutna lozinka" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Prilagođena polja" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informacija" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/gggg)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Datum i vrijeme" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dan" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deaktiviraj" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenija" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Izbriši" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Izbrisano" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Obrisani" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Onemogućeno brisanje" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Izbriši zadnje" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Izbriši ovaj izvještaj" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Izbriši odabrano" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Izbriši spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Opis" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Opadajuće" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "npr. Obala Maka Dizdara 32, Sarajevo" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalji" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Direktni izvještaj" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Onemogućeno" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Neodobren" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Preuzmi izvještaje" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Preuzmi." + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Uredi" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Uredi polja formulara" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Uredi izvještaj" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "E-mail adresa" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Postavke e-mail servera" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail server host" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Lozinka e-mail servera" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mail server port" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Mail server SSL podrška" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tip e-mail servera" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Korisničko ime e-mail servera" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "jer se vaše postavke moraju povezati sa ovom e-mail adresom" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Kako biste dobijali izvještaje putem e-maila, molimo unesite postavke vašeg e-mail naloga. E-mailovi će biti isporučeni na vaš" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Neki serveri zahtijevaju potpunu e-mail adresu" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Lozinka e-mail naloga" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Uobičajeni portovi: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Primjeri: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Primjeri: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Omogući ili onemogući SSL veze" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---PRAZNO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "za" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Greška!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Primjer" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenija" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Spoljne aplikacije" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Spoljni video link" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Izvor" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Pošalji povratne informacije" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Izvori" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Izvor je" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Sadržaj izvora" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Naziv izvora" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL izvora" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Neiskorišteno polje" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Datoteka" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Vaša datoteka prelazi maksimalnu odobrenu veličinu." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filteri" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtriraj izvještaje" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtriraj izvještaje po" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtriraj izvještaje koji sadrže" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Pronađi" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Pronađi lokaciju" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Ime" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Prisilno pokreni planer" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Zaboravili ste lozinku?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formular" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulari" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Opis formulara" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Uredi ovaj formular" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Formular je" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Naslov formulara" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Od" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Puno ime" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Goelociranje omogućeno" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Boja" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Komentari" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Oznaka" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Širina poteza" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Idi" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Rešetka" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "je bio" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Kako pomoći" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Sakriveno" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Sakrij" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "sakrij ovu poruku" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Naslovna" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Kako prijaviti" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "Identifikacioni broj" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "se koristi da vas identificira za druge korisnike stranice." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Slika" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Slike" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Slika/Ikona" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Neaktivan" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Ulazne poruke" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Događaj" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Događaji u blizini" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Lokacija događaja" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Uključi" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Uključi kategorije" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Uključi prilagođena polja" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Uključi opis" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Uključi što više detalja" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Uključi geografsku širinu" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Uključi informacije o lokaciji" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Uključi geografsku dužinu" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Uključi lične podatke" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Dolazni mediji" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Procjena informacije" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Unesite vašu tačnu lokaciju" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Vaš nalog nema odobrenje da vas u potpunosti prijavi. Molimo, kontaktirajte administratora." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Kao odgovor na" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP adresa" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Da li je ovo vaš profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "predmet" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "predmeti" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalji predmeta" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Naslov predmeta" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Ključ" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Ključne riječi" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML datoteka" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Ušitaj KMZ/KML datoteku" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Jezik" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Posljednji" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Prošli mjesec" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Prezime" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Prošle godine" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Geografska širina" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Slojevi" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Ostali slojevi" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Sloj je" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Ime sloja" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL sloja" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Ostavi komentar" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Manje informacija" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivo" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Ovaj nivo je" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Ime nivoa" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Ograničen" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Učitavanje izvješća" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Lokacija" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Lokacije" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Grad, Država" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Prijava" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Nalog je uspješno kreiran. Možete se prijaviti." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Potvrda je poslana na vašu e-mail adresu." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-mail adresa ne postoji. Pokušajte sa drugom adresom ili kreirajte nalog." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Kliknite na ime provajdera vašeg korisničkog računa" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Prijavite se sa" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-mail i lozinka" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Pridruži se" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Kreiraj nalog" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Hvala vam što ste se prijavili na %1$s. Kako bi potvrdili email adresu, molimo vas posjetite sledeći URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Potvrda pridruženja" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Kreirajte nalog i iskoristite mnoge prednosti na stranici." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Geografska dužina" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Označi kao pročitano" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Označi kao nepročitano" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maksimalna dozvoljena veličina" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Medij" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Medija filter" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Članovi" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Upravljanje nalogom" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Poruka" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Poruke" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalji poruke" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Poruka od nenumeričkog izvora:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobilni" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Izmijeni" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Izmijeni datum" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mjesec" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Više" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Više informacija" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Dali ovaj Ushahidi Deployment obuhvata više država" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Kako biste pristupili ovome, morate potvrditi vašu e-mail adresu. Ako izgubite e-mail s potvrdom, ispod možete zatražiti novi." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Ime" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Obližnji izvještaj" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Novo" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Novosti" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Izvor vijesti" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Novi izvor" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Kategorija vijesti" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nova šifra" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Novi izvještaj" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Slijedeće" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Ne" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Nema prijava za prikaz." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Nema podataka" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Ništa" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Zabilješke" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Nije odobreno" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Nije odobreno" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Nije izabrano---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "nije spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Nije specificirano" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Nema izvještaja" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nema rezultata" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Isključi" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Zvanične i ostale novosti" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Uključi" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opcija" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Dodatne" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opcije" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organizacija" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizacije" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Opis organizacije" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "E-mail organizacije" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organizacija je" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Ime organizacije" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telefonski broj organizacije 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Telefonski broj organizacije 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Website oganizacije" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Originalni opis" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Originalni naslov" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Ostali dijelovi" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Izlazne poruke" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Odlazne poruke" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Stranica" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Stranice" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Opis stranice" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Stranica je" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Ime taba stranice" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Naslov stranice" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Roditeljska kategorija" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Lozinka" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Ponovno unesite lozinku" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Lozinka je uspješno promijenjena! Prijavite se ispod." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Zaboravili ste lozinku?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Za novu lozinku provjerite vaš e-mail." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Želite li ostati prijavljeni na ovom računaru?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Prošli mjesec" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Prošle godine" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Na čekanju" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "po" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Osobni podaci" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotografije" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Slike" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Slike i videi" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Pretražite vašu lokaciju koristeći naziv lokacije i podatke o geografskoj dužini i širini (u formatu: 38.19,-85.61), ili idite na mapu i odaberite tačnu lokaciju." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Pusti" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Molimo zabilježite" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Dodaci" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Website za dodatke" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Javni profil" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL javnog profila" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Pregled" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Pregledaj predmet" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Pregledaj poruku" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Prethodno" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privatno" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Boja profila" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Vaš profil je pohranjen" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Brze statistike" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Ocjene" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Čitaj" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Primi" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Primi od" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Primi obavijesti" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Posljednji izvještaji" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Osvježi izvore vijesti" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registrovani e-mail" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Ukloni" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Odgovori" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Prijavi" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Izvještaji (sa mape, hronološki poredani)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Izvjestitelj/ka" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Izvjestiteljke/i" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Datum Izvestitelj*" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email Izvjestitelj*" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Ime izvjestitelj*" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Izvjetitelj* je" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP adresa izvjestitelj*" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Prezime izvjestitelj*" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nivo izvjestelja/ke" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivoi izvjestelja/ke" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefon izvjestitelja" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Izvještaji" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Pretraži" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Pošalji" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Izvještaji od ovog korisnika" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategorije" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d izvještaji" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Datum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Opis" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Izvještaj će biti preuzet u CSV formatu" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "e-mail" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "odlike" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Nađi lokaciju blizu tebe" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Ime" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Prezime" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Dajte detaljniju lokaciju" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Link izvora vijesti" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Dodatne Informacije" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Postavi fotografije" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Vrati se na stranicu sa izvještajima" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Odaberi grad" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Tvoj izvještaj je dostavljen našem osoblju na provjeru. Uskoro se javljamo ako je neophodno." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Novi Izvještaj" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Vrijeme" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Timeline" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Naslov izvještaja" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Video link" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Prijavi incident" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalji izvještaja" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Slanjem poruke prema" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Pošalji email na " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Slanjem tweet-a sa jednim ili više hastaga" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Ispuni ovaj formular." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Koristeći aplikaciju" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Vaš raport je spašen" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Naslov raporta" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Zatražite više informacija" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Zatražite lokaciju" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Obavezno" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Zahtjevi" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Ponovi slanje odobravajućeg emaila" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Poništi." + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Isključi sve filtere" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Poništi lozinku." + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Vrati nazive gradova za obilježenu zemlju" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Računima upravlja %s usluga." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Već imaš račun za CrowdmapID! Pokušaj koristiti taj CrowdmapID i šifru za prijavu. " + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Uloga" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Spasi" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Spašeno" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Spasi i dodaj novi" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Spasi i zatvori" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Spasi dojavu" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Raspored" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Planer" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dan" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Sat" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Dnevnik scheduler-a" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuta" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Dan u sedmici" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "SEARCH" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Rezultati pretraživanja" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Sigurnosni kod" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Obilježi sve" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Odaberi tip polja" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Obilježi oblik forme" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Obilježi na mapi" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Obilježi koliko je potrebno" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Molimo potvrdi da je stavka provjerena" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Obilježi temu" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Pošalji" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Pošalji potvrdu" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Pošalji prema" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Poslano" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Šalje" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adresa servera" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tip servera" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Usluga" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Korisničko ime usluge" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID korisnice/ka usluge" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Podijeli" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Dijeljeni podaci" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Podjeljeno je" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Dijeljenje" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Kraća mapa" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Prikaži" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Prikaži sve" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Prikaži poruke" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Prikazani izvještaji od %1$s do %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Web sajt " + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Email adresa sajta" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL sajta" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Manja mapa" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Žao nam je, nemate nijednu značku." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Izvor" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Naziv izvora" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Razvrstaj" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Razvrstaj po" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL izvora" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL podrška?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Od" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Korak" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Izvijestite" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Podnijeo/la %1$s preko %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Objavi SMSom." + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Pošalji SMS prema" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "na tvoj telefon" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Uspješno!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Uspješno umetnuto" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Prezime" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "新开线路" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistem" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Veća mapa" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP ulaz" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Teme" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Ushahidi zadana tema" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Postavke teme" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Ovo" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Danas" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Ovaj mjesec" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Ova sedmica" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Ova godina" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Ovo je Vaš profil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "time" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "TITLE " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "do" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Danas" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Danas u" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Ukupno prijava." + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Precedeno" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Prevedeni opis." + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Prevedeni naslov." + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Prevedi na" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Prevod" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Prevod je sacuvan" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Provjereno" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tip" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Nije moguce poslati email" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Nekategorisane prijave." + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "nepročitano." + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Nepotvrdjeno" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Unosi za ažuriranje" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Učitaj" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Pogledajte naša uputstva za postavljanje izvještaja:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Vodič za postavljanje u XML formatu" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Vodič za postavljanje CSV formatu" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Datoteka za učitavanje" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Učitani izvještaji" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Kolonama kojima su polja -field- podešena prema vašim zahtjevima moraju se dodati njihove form_id vrijednosti, na pr. specijalni test polja, na difoltnom formularu, sa id-jem 1 biće Test-1. Osigurajte se da je to slučaj prilikom importiranja specijalno podešenog polja. " + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "With the form below, you can import incidents into the Ushahidi engine" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Izvještaji se moraju postavljati u CSV ili u XML formatu." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Kada identifikacijski broj ID incidenta već postoji u bazi podataka, unos u fajl SCV/XML biće ignoriran" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "It must contain at least Incident Title and Incident Date" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Ukoliko nisu zadane geografska dužina i širina, lokacija će biti određena korištenjem Google Geocodera." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Ukoliko ubacujete lične podatke npr. lične podatke i/ili posebna polja" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Najmanje jedno polje koje se odnosi na lične podatke (ime, prezime, email) mora postojati. Prazni zapisi neće biti unešeni " + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Vaši unosi za padajuće menije, radio prekidači i polja za štikliranje slažu se sa opcijama koje se nude za polja podešena prema vašim zahtjevima" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Opcije za izbor su odvojene zarezom, npr. ako nudite izbor između jabuka, manga i grožđa, vaš upis za to bi trebao biti \"jabuke, mango, grožđe\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Format koji se unosi u polje datum: mm/dd/gggg npr. 3. oktobar 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Uzorak CSV izvještaja" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Učitavanje uspješno" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Učitavanje videa" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Korisnik" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Korisnicko ime" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi administrator" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verifikacija" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Potvrdjeno" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Potvrdjeni izvjestaji" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Potvrdi" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Potvrdi ovaj izvjestaj" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Verzija" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "putem" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Pregled" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Pregledi" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Pogledaj sve" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Pogledaj sva polja" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Pogledaj sve izvjestaje" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Pogledaj stavke" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Prikaži više" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Pogledaj javni profil" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Pogledaj izvještaj" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Pogledaj izvještaje" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Pogledajte video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Vidljivo" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Čeka na odobrenje" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Verifikacija čekanja" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Šira mapa" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web forma" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Težina" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Da" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Juce" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Vaša kontrolna konzola" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Vaša datoteka." + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Povećaj" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Smanji" diff --git a/application/i18n/po/po-bs_BA/upgrade.po b/application/i18n/po/po-bs_BA/upgrade.po new file mode 100644 index 0000000000..ad874ae352 --- /dev/null +++ b/application/i18n/po/po-bs_BA/upgrade.po @@ -0,0 +1,304 @@ +# +# Translators: +# Almita , 2012 +# prangec , 2012 +# Fikret Muratović , 2012 +# Haris Alisic , 2012 +# Šejla K. , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/bs_BA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Unešeni podaci nisu validni. Prihvatljive vrijednosti jesu 0 za Ne ili 1 za Da." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatska nadogradnja" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Raspoložive nadogradnje" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Nastavi" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Nadogradi" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Spremam se nadograditi vašu bazu podataka sa verzije" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "na novu verziju baze podataka" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Klik na dugme \"Nadogradi\" i opusti te se dok se magija dešava" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Također, ako želite backup vaše baze podataka, štiklirajte polje ispod i to ću odmah učiniti." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Uradite backup baze podataka prije nadgradnje novom verzijom? (Preporučujemo da to uradite)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi baza podataka nadograđena" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi je nadgrađen! Pre nego što nastavite, treba da svoju bazu podataka ažurirate na najnoviju verziju (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Vaša verzija baze podataka je svježa." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Nadogradnja nije uspjela" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Ručna nadogradnja" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Status nadgradnje Ushahidi-ja" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Slijede uputstva kao možete manuelno nadgraditi vašu Ushahidi postavku!" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Snimi
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Snimi zadnju verziju Ushahidija sa" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Za svaki slučaj, da bi ste se osigurali u slučaju kakvog bilo problema, preporuča se da napravite puni backup vaše Ushahidi postavke.
Kopiraj fajlove
- Ekstrahiraj snimljeni zipovani fajl
- Ovisno od operativnog sistema koji koristi web server, koristite preferiranu alatku/način (na pr. Telnet, FTP, SSH) za logiranje na webserveri i zamjenite sadržaj svih foldera sa najnovijima iz poslednje nadgradnje.
Nadgradite bazu podataka
- Najpre odredite shematsku verziju vaše baze podataka tako što ćete provjeriti db_version vrijednost na tabeli setinga ili informacije o nadgradnji Ushahidija na vrhu ove stranice.
- Ako ste kod verzije 25, trebate nadgraditi sa 25-26, 26-27, 27-28 i tako dalje sve do najnovijeg SQL fajla u vašem /sql direktoriju.
- Preko klijenta za baze podataka koji koristite, nadgradite bazu podataka izvršavanjem potrebnog upgradex-x.sql fajla.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Korak 3: Pogledajte unutar sql foldera. Ručno pokrenite nadgradnju -.sql fajla počevši sa trenutnom db verzijom vaše instalacije pa do zadnjeg fajla za nadgradnju sql." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Korak 4: Kliknite na dugme \"Continue\" za nadgradnju potrebnih tabela." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Za automatsku nadogradnju kliknite ispod" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Trenutno koristite Ushahidi v%1$s sa verzijom %2$d baze podataka koju pokreće %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Nadograđujem" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Za nastavak lake nadgradnje, FTP serveru na kojem je hostiran vaš website potrebne su slijedeće informacije." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Primjer: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP lozinka:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP korisničko ime:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Imate najnoviju verziju Ushahidija." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Nemate potrebe za nadogradnjom." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Verzija baze podataka: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Upozorenje: Verzija softvera u version.php i u bazi podataka ne slažu se." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Upozorenje: Verzija baze podataka u version.php i bazi podataka ne slažu se." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Baza podataka" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Preuzimanje najnovije verzije Ushahidi-a" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log fajl" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Uspješno snimljeno. Raspakujemo..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Neuspješno preuzimanje" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Uspješno raspakivanje. Kopiram datoteke..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Neuspješno raspakivanje." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Uspješno kopirane datoteke. Nadograđujem bazu podataka..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Neuspješno kopiranje datoteka." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Uspješno pohranjivanje i nadogradnja baze podataka" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Neuspješno pohranjivanje baze podataka" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Uspješna nadogradnja baze podataka." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Brisanje preuzetih datoteka" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "NADGRADNJA USPJELA. Pogledajte Log File" diff --git a/application/i18n/po/po-ca_ES/alerts.po b/application/i18n/po/po-ca_ES/alerts.po new file mode 100644 index 0000000000..c1cc4bcf82 --- /dev/null +++ b/application/i18n/po/po-ca_ES/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El camp Correu Electrònic no apareix o conté una adreça de correu electrònic invàlida?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Aquesta adreça de correu electrònic ja ha estat registrada per a rebre alertes per aquesta localització." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El camp Correu Electrònic ha de tenir entre 4 i 64 caracters." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El camp Correu Electrònic és obligatori si el checkbox està marcat." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Aquest servei está limitat dins d`un estat només. Si us plau, assegureu-vos que la localització de l`alerta és dins l`estat %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "No heu sel.leccionat una localització vàlida al mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "No heu sel.leccionat una localització vàlida al mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "No heu sel.leccionat una localització vàlida al mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "No heu sel.leccionat una localització vàlida al mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "El camp Telèfon Mòbil sembla no contenir una quantitat correcta de dígits." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Aquest telèfon mòbil ja ha estat registrat per a rebre alertes per aquesta localització." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "El camp Telèfon Mòbil sembla no contenir un telèfon vàlid. Si us plau, introduiu els números incloent només el Codi de País." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Heu d`introduir el número de telèfon mòbil o l`adreça de correu electrònic." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "El camp Telèfon Mòbil és obligatori si el checkbox està marcat." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "No heu sel.leccionat un radi vàlid al mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "No heu sel.leccionat un radi vàlid al mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "No heu establert un destinatari per les alertes." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Us heu subscrit a les alertes per a les seguents categories" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Aquest codi ja ha estat verificat amb anterioritat!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Aquest codi de verificaciõ no s`ha trobat! Si us plau, confirmeu que teniu la URL correcta." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " El seu codi s`ha verificat correctament. A partir d`ara rebrà les alertes sobre incidències a mida que vagin succeint." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Per a confirmar la seva peticiõ d`alerta, si us plau, vagi a" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Torneu a la pàgina d`Alertes per crear més alertes" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "La seva petició d`alerta per correu electrònic ha estat creada i s`ha enviat un missatge de verificació a " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Si us plau, entreu el codi de confirmació que heu rebut per correu electrònic: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "La seva petició d`alerta per correu electrònic NO s`ha guardat!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "La seva petició d`alerta per correu electrònic s`ha guardat!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "El sistema no ha pogut processar la seva sol.licitud de confirmació!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "La seva petició d`alerta al mòbil ha estat creada i s`ha enviat un missatge de verificació a " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Si us plau, entreu el codi de confirmació SMS que heu rebut al mòbil: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "La seva petició d`alerta al mòbil NO s`ha guardat!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "La seva petició d`alerta al mòbil s`ha guardat!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Aquest servei no està configurat per processar correctament les alertes" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Heu rebut aquest correu electrònic perqué us heu subscrit al servei d`alertes. Si no voleu seguir rebent alertes, aneu a " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Ja no rebrà més alertes de " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "No hem pogut eliminar la seva subscripció. Si us plau, confirmeu que teniu la URL correcta." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertes - verificació" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "No rebreu alertes en aquesta localització fins que confirmeu la vostra petició." diff --git a/application/i18n/po/po-ca_ES/auth.po b/application/i18n/po/po-ca_ES/auth.po new file mode 100644 index 0000000000..48fd31d0cf --- /dev/null +++ b/application/i18n/po/po-ca_ES/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "El correu electrònic entrat no sembla una adreça vàlida." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Ho sentim, ja existeix un compte d`usuari per aquesta adreça de correu electrònic." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El camp Correu Electrònci ha de tenir entre 4 i 64 caracters." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "El camp Correu Electrònic és obligatori." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "El camp Nom ha de tenir entre 3 i 100 caracters." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "El camp Nom és obligatori." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "El Camp Nom d`Usuari conté caracters no permesos." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "El camp Password ha de tenir 8 caracters com a mínim." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Si us plau, reviseu que heu entrat correctament el correu electrònic i el password." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Si us plau, poseu el mateix password als dos camps de Password." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "El camp Password és obligatori." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El camp Password només pot contenir caracters alfanumérics, els símbols # i @, números, subratllats i guions" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "El password que heu entrat és incorrecte. Si us plau, prove-ho altra cop." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "El camp Password ha de tenir 8 caracters com a mínim." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Si us plau, reviseu que heu entrat correctament el correu electrònic i el password." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Si us plau, poseu el mateix password als dos camps de Password." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "El camp Password és obligatori." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El camp Password només pot contenir caracters alfanumérics, els símbols # i @, números, subratllats i guions" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Hi ha hagut un error intentant entrar." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "El camp Password ha de tenir 8 caracters com a mínim." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Si us plau, reviseu que heu entrat correctament el correu electrònic i el password." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Si us plau, poseu el mateix password als dos camps de Password." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "El camp Password és obligatori." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "El servidor d`autenticació està caigut. Si us plau, prove-ho més tard." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El camp Password només pot contenir caracters alfanumérics, els símbols # i @, números, subratllats i guions" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "El camp de Confirmació de Password ha de coincidir amb el camp Password." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "El correu electrònic que heu posat no sembla una adreça de correu electrònic vàlida." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Perdoneu, no tenim la seva adreça de correu electrònic" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "El camp Correu Electrònic és obligatori." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Només un superadmininstrador pot modificar un superadministrador o promocionar un usuari a administrador." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Format de rol invàlid." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "El camp Rol ha de tenir entre 5 i 30 caracters." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Cal definir un rol com a mínim." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Heu de sel.leccionar el rol ADMIN o USUARI." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "El rol de l`usuari admin no es pot modificar." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "El nom d`usuari només pot tenir lletres i números." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Perdoneu, aquest usuari ja està en ús." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "El camp Nom d`Usuari ha de tenir entre 2 i 100 caracters." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Si us plau, reviseu que heu posat correctament el nom d`usuari." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "El camp Nom d`Usuari és obligatori." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "El rol de l`usuari superadministrador no es pot modificar." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Possible atac CSRF. Segur que volieu crear / editar un usuari?" diff --git a/application/i18n/po/po-ca_ES/bug.po b/application/i18n/po/po-ca_ES/bug.po new file mode 100644 index 0000000000..3ac4c2f080 --- /dev/null +++ b/application/i18n/po/po-ca_ES/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Si us plau, entreu un codi de seguretat vàlid" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Si us plau, entreu el codi de seguretat" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El camp Correu Electrònic no conté una adreça vàlida" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El camp Correu Electrònic ha de tenir entre 4 i 64 caracters." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Cal omplenar el camp Correu Electrònic si el checkbox està sel.leccionat." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "El camp Error és obligatori." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El camp Assumpte ha de ser, pel cap baix, de 3 caracters." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "El camp Assumpte és obligatori." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "El camp Nom ha de ser, pel cap baix, de 3 caracters." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "El camp Nom és obligatori." diff --git a/application/i18n/po/po-ca_ES/category.po b/application/i18n/po/po-ca_ES/category.po new file mode 100644 index 0000000000..f872d78a21 --- /dev/null +++ b/application/i18n/po/po-ca_ES/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "El camp Color ha de tenir 6 caracters." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "El camp Color és obligatori." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "El camp Descripció és obligatori." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Si us plau, assegureu que la mida de les imatges que es pugen estigui limitada a 50Kb." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "El camp Imatge no conté una imatge vàlida. El format acceptats són només .JPG, .PNG i .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "El camp Imatge no conté una imatge vàlida." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "El camp Títol ha de tenir entre 3 i 80 caracters." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "El camp Títol és obligatori." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "No es pot subcategoritzar una categoria amb subcategories." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "La categoria Pare no existeix." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "El camp de la categoria Pare ha de ser numéric." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "La categoria pare no pot ser una categoria especial" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "El camp de la categoria Pare és obligatori." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "La categoria i la categoria Pare no poden ser iguals." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Les categories especials no es poden subcategoritzar" diff --git a/application/i18n/po/po-ca_ES/comments.po b/application/i18n/po/po-ca_ES/comments.po new file mode 100644 index 0000000000..7e91043a28 --- /dev/null +++ b/application/i18n/po/po-ca_ES/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Si us plau, entreu un codi de seguretat vàlid" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Si us plau, entreu el Codi de Seguretat" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Ha introduït un codi incorrecte." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "El camp Nom ha de tenir, pel cap baix, 3 caracters." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "El camp Nom és obligatori." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "El camp Comentaris és obligatori." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El camp Correu Electrònic sembla tenir una adreça invàlida" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El camp Correu Electrònic ha de tenir entre 4 i 64 caracters." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El camp Correu Electrònic és obligatori si el checkbox està sel.leccionat." diff --git a/application/i18n/po/po-ca_ES/contact.po b/application/i18n/po/po-ca_ES/contact.po new file mode 100644 index 0000000000..5cc1d468fc --- /dev/null +++ b/application/i18n/po/po-ca_ES/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Si us plau, entreu un codi de seguretat vàlid" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Si us plau, introduïu un codi de seguretat vàlid." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Si us plau, entreu el codi de seguretat" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El camp Email no sembla contenir una adreça vàlida de correu electrònic." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El camp de correu electrònic ha de tenir entre 4 i 64 caràcters." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El camp Email és obligatori si la casella està marcada." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "El camp Missatge és obligatori." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El camp Nom ha de tenir, pel cap baix, 3 caracters." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "El camp Nom és obligatori." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El camp Assumpte ha de tenir, pel cap baix, 3 caracters." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "El camp Assumpte és obligatori." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "S'ha produït un error en enviar el missatge." diff --git a/application/i18n/po/po-ca_ES/core.po b/application/i18n/po/po-ca_ES/core.po new file mode 100644 index 0000000000..e0da6b0334 --- /dev/null +++ b/application/i18n/po/po-ca_ES/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Jaume Fortuny , 2013 +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "fitxer de configuraciõ" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controlador" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "dispositiu" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "El dispositiu %s per la llibreria %s ha d`implementar l`interfície %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "No s`ha trobat el dispositiu %s per la llibreria %s" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Podeu anar a la pàgina principal o provar-ho altra cop." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Incapaç de completar la petició" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ajudant" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "El tipus de fitxer sol.licitat, .%s, no és permés pel seu fitxer de configuració" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Métode invàlid %s cridat a %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "La propietat %s no existeix a la classe %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "llibreria" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "No es pot escriure al directori log: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "L`Ushahidi no ha pogut trobar un controlador per processar aquesta petició: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Si us plau, sel.leccioneu una ruta per defecte a config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "La pàgina sol.licitada, %s, no s`ha trobat." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Reporteu això a l`Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "La %s demanada, %s, no s`ha trobat" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Pila de traça" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Carregat en {execution_time} segons, fent servir {memory_usage} de memòria. Generat per l`Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Només pot haver una instància de l`Ushahidi per cada pàgina demanada" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Excepció no capturada %s: %s dins el fitxer %s a la línia %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "vista" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Heu de sel>leccionar el fitxer de vistes abans de renderitzar" diff --git a/application/i18n/po/po-ca_ES/database.po b/application/i18n/po/po-ca_ES/database.po new file mode 100644 index 0000000000..06f8bfb456 --- /dev/null +++ b/application/i18n/po/po-ca_ES/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Error de Base de Dades: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "La Taula \"%s\" no es troba a la Base de Dades. Si us plau, assegureu-vos dèstar utilitzant la darrera versió de la base de dades per aquesta versiõ de l`Ushahidi" diff --git a/application/i18n/po/po-ca_ES/datetime.po b/application/i18n/po/po-ca_ES/datetime.po new file mode 100644 index 0000000000..4910f2c320 --- /dev/null +++ b/application/i18n/po/po-ca_ES/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Div" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Divendres" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Dil" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Dilluns" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Dis" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Dissabte" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Diu" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Diumenge" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Dij" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Dijous" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Dim" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Dimarts" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Dix" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Dimecres" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Gen" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Gener" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Febrer" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Març" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Abr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Abril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maig" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juny" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juliol" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agost" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Set" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Setembre" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Octubre" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novembre" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Des" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Desembre" diff --git a/application/i18n/po/po-ca_ES/feeds.po b/application/i18n/po/po-ca_ES/feeds.po new file mode 100644 index 0000000000..f05507b40d --- /dev/null +++ b/application/i18n/po/po-ca_ES/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "El camp Nom de Feed ha de tenir entre 3 i 70 caracters." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Si us plau, entre el Nom de Feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Si us plau, entreu la URL del Feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Si us plau, entreu una URL vàlida. P.ex. http://www.coettc.cat" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "FONT" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Títol" diff --git a/application/i18n/po/po-ca_ES/footer.po b/application/i18n/po/po-ca_ES/footer.po new file mode 100644 index 0000000000..3f2527cb69 --- /dev/null +++ b/application/i18n/po/po-ca_ES/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "El php5-curl no està instal.lat en aquest sistema" diff --git a/application/i18n/po/po-ca_ES/form.po b/application/i18n/po/po-ca_ES/form.po new file mode 100644 index 0000000000..eef91c6974 --- /dev/null +++ b/application/i18n/po/po-ca_ES/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "El valor per defecte subministrat per aquest camp és invàlid." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "El camp Nom ha de tenir entre 3 i 200 caracters." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Si us plau, entreu un valor entre 0 i 50 pel camp Alçada" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Heu entrat un valor invàlid pel camp Data" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Si us plau, seleccioneu Si o No pel camp Data" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "El camp Nom ha de tenir entre 3 i 100 caaracters." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Si us plau, entreu el camp Nom." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Heu entrat un valor invàlid pel camp demanat" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Si us plau, seleccioneu Si o No pel camp demanat" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Si us plau, seleccioneu un Tipus de Camp vàlid." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Si us plau, seleccioneu un Tipus de Camp." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Si us plau, entreu un valor entre 0 i 50 pel camp Amplada" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Si uns plau, entreu la Descripciõ del formulari." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "El formulari per defecte no es pot eliminar." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Si us plau, seleccioneu a quin formulari cal afegir aquest camp." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Si us plau, seleccioneu a quin formulari cal afegir aquest camp." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "El camp Nom del Formulari ha de tenir entre 3 i 100 caaracters." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Si us plau, entreu el nom del formulari." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ca_ES/imap.po b/application/i18n/po/po-ca_ES/imap.po new file mode 100644 index 0000000000..162c479ab3 --- /dev/null +++ b/application/i18n/po/po-ca_ES/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "No es pot obrir el stream de IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "El servei de correu electrònic no està suportat" diff --git a/application/i18n/po/po-ca_ES/installer.po b/application/i18n/po/po-ca_ES/installer.po new file mode 100644 index 0000000000..e68afd2af3 --- /dev/null +++ b/application/i18n/po/po-ca_ES/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Directori Base" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Base de Dades" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Servidor de Base de Dades" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Si esteu fent servir Ushahidi al vostre propi ordinador, aquesta adreça hauria de ser \"localhost\". Si l`esteu fent servir en un servidor extern, heu d`agafar la informaciõ del proveidor del servei" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nom de la Base de Dades" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "El nom de la base de dades que utilitzarà l`Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Per a més informaciõ, llegiu aquest article a la wiki que tracta les bases de dades amb més detall" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Idioma per Defecte (Local)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Cada desenvolupament d`Ushahidi ve amb un conjunt de paquets d`idiomes. També podeu afegir-ne d`altres" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Deshabilitat" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Habilitat" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Resum dels errors trobats" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "El directori al servidor on s`han posat els fitxers d`Ushasidi. Aquest valor ha estat detectat automàticament. Si us plau, reviseu que sigui correcte. Si el camp és buit, no us amoineu. Vol dir que l`Ushasidi està instal.lat al directori arrel" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Finalitzat" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "General" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google Clau API " + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Qualsevol pot fer-se amb una API Key. Aconseguiu la vostra ara" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Tornar" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTAL.LACIÓ AVANÇADA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Obteniu tota la informació per a la instal.lació en un procés de 5 pases. Això inclou servidor, mapa, nom del site i detalls de contacte" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTAL.LACIÓ BÀSICA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple i ràpida. Tot el que es necessita és el nom del directori arrel del servidor web i la informaciõ de la base de dades. Trieu aquesta opciõ si voleu fer una instal.lació ràpida. Acabada aquesta instal.lació, es pot complertar la configuració en un altre moment" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Procedir" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Benvingut al procés d`instal.laciõ del servidor d`Ushahidi. Trieu quin tipus d`instal.lació voldrieu realitzar" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instal.lació Exitosa" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Servidor de Correu" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Host del Servidor de Correu" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemples: mail.latevaweb.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Password del Servidor de Correu" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "El password del compte de correu" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Port del Servidor de Correu" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Ports comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipus de Servidor de Correu" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). Quina és la diferència?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Usuari del Servidor de Correu" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Si utilitzeu el Gmail, el Hotmail, o el Yahoo Mail, feu servir l`adreça complerta com a nom d`usuari" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Proveidor de Mapa" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi treballa correctament amb qualsevol d-aquests tres proveidors de mapes: Google, Bing or Open Street Map. Trieu el que tingui major nivell de detall a la vostra àrea" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Altres pases..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Password" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "El password de la base de dades" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Previ" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Si us plau, reinicieu el Servidor Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Habilitar o Deshabilitar SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Alguns servidors de correu donen lòpció de fer servir SSL a l`establir una connexió. Es recomana fer servir SSL ja que ofereix un nivell addicional de seguretat" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Configurar un Servidor SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Adreça de correu electrònic del sistema" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Adreça de correu electrònic per alertes" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Adreça de correu electrònic per l`enviament d`alertes als usuaris que ho sol.licitin. Aquesta adreça de correu electrònic no ha de ser la mateixa que l`adreça de correu electrònic del sistema" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Tots els missatges del sistema faran servir aquesta adreça de correu electrònic" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nom del Sistema" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "El nom del sistema" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Subtítol" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "El subtítol del sistema" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Cal que els fitxers i directoris seguents disposin de permisos d`escriptura" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Podeu trobar més informaciõ per canviar permisos de fitxers a:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Abans de comançar, assegureu-vos que els seguents fitxers i directoris tenen permisos d`escriptura. Pot ser necessari canviar els permisos de forma manual" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Pel procés d`instal.laciõ serà necessària la seguent informació" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefix per les Taules" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalment no es fa servir cap prefix. Tot i això, si voleu executar vàries instal.lacions d`Ushasidi a la mateixa base de dades, es pot fer canviant el prefix de les taules aquí" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Títol" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Pel login, aneu a" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Pujar raports" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Usuari" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "L`usuari de la base de dades" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "i feu servir les credencials seguents" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Veure el vostre website" diff --git a/application/i18n/po/po-ca_ES/layer.po b/application/i18n/po/po-ca_ES/layer.po new file mode 100644 index 0000000000..a910703b86 --- /dev/null +++ b/application/i18n/po/po-ca_ES/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "El camp Color ha de tenir 6 caracters." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "El camp Color és obligatori." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "El camp Fitxer sembla contenir un fitxer invàlid. Els únics formats acceptats són .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "El camp Fitxer no sembla contenir un fitxer vàlid" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "El nom de Fitxer ha de tenir entre 3 i 80 caracters." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "El nom de fitxer és obligatori." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Es requereix un fitxer o una URL d`un KML" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "No es pot especificar alhora una URL i un arxiu KML" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Si us plau, entreu una URL vàlida. P.ex. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-ca_ES/libraries.po b/application/i18n/po/po-ca_ES/libraries.po new file mode 100644 index 0000000000..d4589e20f5 --- /dev/null +++ b/application/i18n/po/po-ca_ES/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "No es pot connectar al servidor Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "No es pot rebre resposta d`Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "La llibreria API: %s, per la classe %s no es troba. Si us plau, reviseu la taula d`enrutament de les tasques de l`API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "La clau API de l`Akismet no és vàlida" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error executant el métode d`enviament fopen!
Si us plau, reviseu que el PHP suporta OpenSSL i que la versióde PHP és superior a la 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "El missatge es massa llarg! (Llargada actual=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Si us plau, especifiqueu un adreça de destinació (TO-A)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Si us plau, especifiqueu una adreça d`origen (FROM-DE)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "El missatge unicode es massa llarg! (Llargada actual=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Métode d`enviament no suportat!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "La llibreria API %s no és vàlida. Totes les llibreries d`API han de ser subclasses de %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "El directori %s no es pot esborrar" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Error a l`extreure: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "La descàrrega de la darrera versió de l`Ushahidi ha fallat. Codi d`estat HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "El fitxer %s no es pot copiar" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "El fitxer %s no es pot esborrar" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Script d`actualització de l`Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Al fitxer zip d`Ushahidi descarregat: %s, no es pot escriure" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s no està disponible en la classe RiverID." diff --git a/application/i18n/po/po-ca_ES/maintenance.po b/application/i18n/po/po-ca_ES/maintenance.po new file mode 100644 index 0000000000..bb2c55c5af --- /dev/null +++ b/application/i18n/po/po-ca_ES/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Perdoneu, el nostre site està temporalment caigut per tasques de manteniment. Si us plau, proveu altre cop d`aquí a una estona." diff --git a/application/i18n/po/po-ca_ES/message.po b/application/i18n/po/po-ca_ES/message.po new file mode 100644 index 0000000000..0609702d06 --- /dev/null +++ b/application/i18n/po/po-ca_ES/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Si us plau, entreu un codi de seguretat vàlid" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Si us plau, entreu el codi de seguretat" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El camp Correu Electrònic sembla tenir una adreça invàlida" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El camp Correu Electrònic ha de tenir entre 4 i 64 caracters." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El camp Correu Electrònic és obligatori si el checkbox està sel.leccionat." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "El camp Missatge és obligatori." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El camp Nom ha de tenir, pel cap baix, 3 caracters." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "El camp Nom és obligatori." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "El camp Telèfon no és vàlid." diff --git a/application/i18n/po/po-ca_ES/mhi.po b/application/i18n/po/po-ca_ES/mhi.po new file mode 100644 index 0000000000..a409573d94 --- /dev/null +++ b/application/i18n/po/po-ca_ES/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Si us plau, entreu un codi de seguretat vàlid" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Si us plau, entreu el codi de seguretat" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El camp Correu Electrònic no sembla contenir una adreça vàlida" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Si us plau, entreu una adreça de correu electrònic vàlida" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "El camp Missatge és obligatori." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El camp Assumpte ha de tenir, pel cap baix, 3 caracters." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "El camp Assumpte és obligatori." diff --git a/application/i18n/po/po-ca_ES/notifications.po b/application/i18n/po/po-ca_ES/notifications.po new file mode 100644 index 0000000000..eb9658e5e2 --- /dev/null +++ b/application/i18n/po/po-ca_ES/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Aquest missatge ha estat enviat des del vostre site" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login d`Administrador" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "S`ha enviat un nou comentari al site en resposta a:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nou Comentari" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "S`ha enviat un nou missatge de correu electrònic al vostre site." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nou Missatge de Correu" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "S`ha enviat un nou llistat al vostre site." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nou Llistat" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "S`ha enviat un nou missatge de text al vostre site." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nou Missatge de Text" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Heu rebut una Nova Alerta" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nova Alerta!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Heu rebut un Missatge Privat" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nou Missatge Privat" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Per contestar el missatge, si us plau, Aneu A: " diff --git a/application/i18n/po/po-ca_ES/page.po b/application/i18n/po/po-ca_ES/page.po new file mode 100644 index 0000000000..9d5d537701 --- /dev/null +++ b/application/i18n/po/po-ca_ES/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Si us plau, poseu un Títol de Pàgina" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "El Títol de Pàgina ha de tenir entre 3 i 150 caracters." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Si us plau, poseu un Nom de Pestanya" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Si us plau, poseu una Descripció de Pàgina" diff --git a/application/i18n/po/po-ca_ES/permissions.po b/application/i18n/po/po-ca_ES/permissions.po new file mode 100644 index 0000000000..34ee50774f --- /dev/null +++ b/application/i18n/po/po-ca_ES/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Veure Informes" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crear/Editar/Esborrar Informes" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprovar Informes" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar Informes" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gestionar els comentaris dels Informes" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descarregar Informes" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Pujar Informes" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gestionar Missatges" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gestionar reporters de Missatges" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Veure Estadístiques" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificació de la Configuració" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gestionar el Panell" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gestionar Usuaris" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Gestionar Rols" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Pot registrar-se" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Gestionar Registres" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Accés a la interfície d'usuari Admin." + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Accés a la interfície d'usuari Membres." + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ca_ES/private_message.po b/application/i18n/po/po-ca_ES/private_message.po new file mode 100644 index 0000000000..6bff107786 --- /dev/null +++ b/application/i18n/po/po-ca_ES/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "ID principal ha de ser numèric" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "El camp Per és obligatori" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "L'usuari al que intenteu enviar un missatge no existeix" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "El camp Assumpte és obligatori" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "L'assumpte ha de tenir entre 3 i 150 caracters." + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "El camp Missatge és obligatori" diff --git a/application/i18n/po/po-ca_ES/report.po b/application/i18n/po/po-ca_ES/report.po new file mode 100644 index 0000000000..8b60d2dec3 --- /dev/null +++ b/application/i18n/po/po-ca_ES/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Jaume Fortuny , 2013 +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "error!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Aquest desplegament s'estén dins d'un sol país. Assegureu-vos que la ubicació de l'informe es troba al país %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Si us plau, seleccioneu \"Informes Pendents d'Aprovació\" o \"Informes Aprovats\" o ambdòs." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Si us plau, seleccioneu \"Informes Pendents d'Aprovació\" o \"Informes Aprovats\" o ambdòs." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Si us plau, seleccioneu \"Informes Pendents d'Aprovació\" o \"Informes Aprovats\" o ambdòs." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Si us plau, seleccioneu \"Informes Pendents de Verificació\" o \"Informes Verificats\" o ambdòs." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Si us plau, seleccioneu \"Informes Pendents de Verificació\" o \"Informes Verificats\" o ambdòs." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Si us plau, seleccioneu \"Informes Pendents de Verificació\" o \"Informes Verificats\" o ambdòs." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Heu de seleccionar un format de descàrrega. Pot ser CSV o XML" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Si us plau, seleccioneu un format vàlid per descarregar els informes en" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "El camp de data DES DE sembla no contenir una data vàlida" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Si us plau, entreu una data vàlida DES DE. No pot ser més gran que la data d`avui." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Si us plau, entreu un valor vàlid per a Aprovar Aquest Llistat" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Si us plau, entreu un valor vàlid per a Aprovar Aquest Llistat" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "El camp am/pm sembla contenir un valor no vàlid" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "El camp \"Categories\" no sembla tenir una categoria vàlida" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "El camp \"Categories\" és obligatori." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "El camp data no sembla tenir una data vàlida" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "El camp data no sembla tenir una data vàlida" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "El camp data és obligatori." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "El camp \"Descripció\" és obligatori." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "El camp hora no sembla tenir una hora vàlida" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "El camp hora és obligatori." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Si us plau, entreu un valor vàlid per a Information Probability" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Si us plau, entreu un valor vàlid per a Information Probability" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "El camp minut no sembla tenir un valor vàlid" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "El camp minut és obligatori." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "El camp enllaç a les fonts de notícies no sembla tenir una URL vàlida" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Si us plau, assegureu-vos que les mides de les fotos a pujar no tinguin més de 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "El camp Pujar Fotos no sembla tenir una imatge vàlida. Els únics format acceptats són .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "El camp Pujar Fotos no sembla tenir un fitxer vàlid" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Si us plau un valor vàlid per a Source Reliability" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Si us plau un valor vàlid per a Source Reliability" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "El camp \"Títol del Llistat\" ha de tenir entre 3 i 200 caracters." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "El camp \"Títol del Llistat\" es obligatori." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Possible atac CSRF. Segur que volieu crear/editar un informe?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Si us plau, entre un valor vàlid per a Verificar aquest Llistat" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Si us plau, entre un valor vàlid per a Verificar aquest Llistat" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "El camp enllaços a video sembla no tenir una URL vàlida" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "El camp latitud sembla no tenir una latitud vàlida" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El camp latitude és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "El camp locale té un valor incorrecte. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Aquest llistat ja disposa d`una traducció per aquest idioma" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "El camp locale té un valor incorrecte. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "El Llistat Original i la Traducció tenen el mateix locale (idioma)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "El locale és obligatori." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "El camp \"Nom Refinat d`Ubicació\" ha de tenir entre 3 i 200 caracters." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "El camp \"Nom Refinat d`Ubicació\" és obligatori." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "El camp longitud sembla no tenir un valor vàlid" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El camp longitud és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "El camp Correu Electrònic sembla contenir una adreça no vàlida" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El camp Correu Electrònic ha de tenir entre 4 i 64 caracters." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "El camp Primer Nom ha de tenir entre 3 i 100 caracters." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "El camp Segon Nom ha de tenir entre 2 i 100 caracters." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "El camp data A sembla tenir una data no vàlida" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Si us plau, entreu una data A vàlida.No pot ser més gran que la data d`avui." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "La vostra data DES DE no pot ser més gran que la vostra data A." diff --git a/application/i18n/po/po-ca_ES/reporters.po b/application/i18n/po/po-ca_ES/reporters.po new file mode 100644 index 0000000000..080ecb04f8 --- /dev/null +++ b/application/i18n/po/po-ca_ES/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "El camp latitud sembla tenir un valor de latitud no vàlid" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El camp latitude és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El camp Nivell de Report sembla no tenir un nivell vàlid" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El camp Nivell de Report sembla no tenir un nivell vàlid" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "El camp nom d`ubicació ha de tenir entre 3 i 200 caracters." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "El camp nom d`ubicació és obligatori." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "El camp longitud sembla tenir un valor de latitud no vàlid" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El camp longitud és obligatori. Si us plau, cliqueu al mapa per assenyalar una ubicació." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Report Invàlid" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Report Invàlid" diff --git a/application/i18n/po/po-ca_ES/reports.po b/application/i18n/po/po-ca_ES/reports.po new file mode 100644 index 0000000000..f487033404 --- /dev/null +++ b/application/i18n/po/po-ca_ES/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Si us plau, comproveu que heu marcat un punt" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Si us plau, comproveu que heu marcat un punt" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Els informes han de ser classificats abans que puguin ser aprovats" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "No teniu permís per realitzar aquesta acció" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-ca_ES/roles.po b/application/i18n/po/po-ca_ES/roles.po new file mode 100644 index 0000000000..e9f64c27f6 --- /dev/null +++ b/application/i18n/po/po-ca_ES/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "El camp Descripció ha de tenir entre 3 i 100 caracters." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "El camp Descripció és obligatori." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "El camp Nom només pot contenir lletres o números." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "El camp Nom ha de tenir entre 2 i 30 caracters." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "El Rol de SuperAdmin No es pot Modificar." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "El camp Nom és obligatori." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "El camp Nivell d`Accés ha de ser un número entre 0 i 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "El camp Nivell d`Accés ha de ser un número entre 0 i 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "El camp Permisos ha de ser un nombre entre 0 i 100." diff --git a/application/i18n/po/po-ca_ES/settings.po b/application/i18n/po/po-ca_ES/settings.po new file mode 100644 index 0000000000..0ac61202b5 --- /dev/null +++ b/application/i18n/po/po-ca_ES/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/projects/p/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "El camp Comentaris Permessos no sembla tenir un valor vàlid" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "El camp Comentaris Permesos és obligatori." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "El camp Incloure Feed no sembla tenir un valor vàlid" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "El camp Incloure Feed és obligatori." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "El camp Alertes Permesses no sembla tenir un valor vàlid" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "El camp Alertes Permesses és obligatori." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "El camp Informes Permessos no sembla tenir un valor vàlid" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "El camp Informes Permessos és obligatori." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "El camp Estadístiques Compartides no sembla tenir un valor vàlid" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "El camp Estadístiques Compartides és obligatori." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Núm. de registres per defecte a retornar per petició a l`API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Núm. de registres màxim a retornars per petició a l`API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Núm. màxim de peticions d`API per adreça IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El camp Akismet no sembla tenir un valor vàlid" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El camp Akismet no sembla tenir una llargada vàlida" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "El camp Pàgines Catxé no sembla tenir un valor vàlid" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "El camp Pàgines Catxé és obligatori." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "El camp Temps de Vida de les Pàgines Catxé no sembla tenir un valor vàlid" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "El camp Temps de Vida de les Pàgines Catxé és obligatori." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Sembla que el seu servidor no està configurat per a suportar URLs netes. Cal que canvieu la configuració del servidor com a pas previ a acceptar URLs netes. Si voleu més informació sobre com habilitar URLs netes, consulteu aquest missatge al fòrum (en anglès)" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Aquesta opció fa que l`Ushahidi sigui accessible via URLs \"netes\", és a dir, sense \"index.php\" a l`URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Habilitar URLs netes" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs Netes" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "El camp Número de l`API Clickatell no pot ser de més de 20 caracters." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "El camp número de l`API Clickatell és obligatori." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "El camp Password de l`API Clickatell ha de tenir entre 5 i 50 caracters." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "El camp password de l`API Clickatell és obligatori." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "El camp Nom d`Usuari de l`API Clickatell no pot ser de més de 50 caracters." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "El camp nom d`usuari de l`API Clickatell és obligatori." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configureu Mapa" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Ubicació Predeterminada" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "El camp Color del Feed no sembla tenir un valor vàlid" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "El camp color del feed no pot tenir més de 6 caracters." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "El camp color del feed és obligatori." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Vista de Mapa Predeterminada" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nivell de Zoom Predeterminat" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Descarregar Llista de Ciutats des de Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "El camp Servidor de Correu és massa llarg" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "El camp Servidor de Correu només pot contenir números." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "El camp Password del Servidor de Corrreu ha de tenir entre 5 i 50 caracters." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "El camp Password del Servidor de Corrreu és obligatori." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "El camp Port del Servidor de Correu és massa llarg" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "El camp Port del Servidor de Correu només pot contenir números." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "El camp Tipus de Servidor de Correu és massa llarg" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "El camp Tipus de Servidor de Correu és obligatori." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "El camp Nom d`Usuari del Servidor de Correu no pot tenir més de 50 caracters." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "El camp Nom d`Usuari del Servidor de Correu és obligatori." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Configuració d`opcions de Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Per agafar la informació següent, necessiteu fer una nova sol.licitud de Facebook a" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "El camp Google Analytics ha de contenir un Web Property ID vàlid amb el format UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Habilitar HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Aquesta opció fa l`Ushahidi accessible en mode no-segur; sense https\"://\" al prefix de l`URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Aquesta opció fa l`Ushahidi accessible en mode segur; amb https\"://\" al prefix de l`URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "El camp Items per Pàgina (Frontend) sembla no contenir un valor vàlid" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "El camp Items per Pàgina (Frontend) és obligatori." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "El camp Items per Pàgina (Admin) sembla no contenir un valor vàlid" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "El camp Items per Pàgina (Admin) és obligatori." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configurar el proveïdor de cartografia és un procés senzill. Seleccioneu un proveïdor, obteniu una clau API del site del proveïdor i entreu la clau de l`API" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nivell de Zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "SEscolliu un Proveïdor de Cartografia" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Entreu la nova Clau de l`API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Aconseguiu una Clau d`API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configurar el proveïdor de cartografia és un procés senzill. Seleccioneu un proveïdor, obteniu una clau API del site del proveïdor i entreu la clau de l`API" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Proveïdor de Cartografia" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Mapa Cronològic" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Configuració del Mapa" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Aquesta instal.lació de l`Ushahidi, ¿abasta varis països?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Si us plau, predetermineu un país" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Cliqueu i arrossegueu el mapa per indicar la vostra localització exacta" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Permetre Agrupar Informes Reportats al Mapa" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Permetre als Usuaris Enviar Comentaris als Informes Reportats" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Incloure Feed RSS de Notícies al Website" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Permetre Subscripcions dels Usuaris per Alertes" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Permetre als Usuaris Enviar Informes Reportats" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Clau Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Banner del Site" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocs Per Filera" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache de Pàgines" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Temsp de Vida de la Catxé de Pàgines" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Habilitar Registres" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Declaració de Copyright del Site" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Color Predeterminat Per Totes Les Categories" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Icona predeterminada per a totes les Categories" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Esborrar Imatge del Banner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Esborrar Icona Predeterminada" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Mostrar Pàgina de Contacte" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Mostrar Pàgina de \"Com Ajudar\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Adreça de Correu Electrònic per a les Alertes" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Per tal de poder rebre informes reportats per correu electrònic, si us plkau, configureu el vostre compte de correu electrònic." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Adreça de Correu Electrònic del Site" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "ID de Propietat Web - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Items Per Pàgina - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Items Per Pàgina - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Eviteu rebre correu brossa fent servir Akismet d`Automattic.
Podeu obtenir una clau d`API gratuïta registrant un compte d`usuari de WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Credencials de Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Site de Laconica " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Idioma del Site" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Aprovació Manual d`Usuaris" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Missatge del Site" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nom del Site" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Instal.lació Privada" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Requereix Confirmació del Correu Electrònic de l`Usuari" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Enviar Missatge d`Informe Reportat" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Habilitar Estadístiques (Enmagatzemades al servidor de l`Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Subtítol del Site" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Zona Horària" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Configuració del Site" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Termes de Recerca a Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Separats amb comes " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "El camp Correu Electrònic del Site no sembla tenir un valor vàlid" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "El camp Correu Electrònic del Site ha de tenir entre 4 i 100 caracters." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "El camp Nom del Site ha de tenir entre 3 i 50 caracters." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "El camp Nom del Site és obligatori." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "El camp Tagline ha de tenir entre 3 i 100 caracters." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "El camp Tagline és obligatori." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Clau de l`API de Clickatell" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Reviseu el Saldo del Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Carregueu Saldo" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Password del Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Registreu-vos al servei Clickatells clicant aquí" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Entreu les vostres dades d`accés a Clickatell a sota" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "El vostre Nom d`Usuari Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Entreu el(s) número(s) de telèfon connectats al Frontline SMS al(s) camp(s) següent(s)" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Entreu el número sense cap + ni guions" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Opció 1: Fer servir el Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Opció 2: Fer servir un sistema SMS extern" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Opcions de Configuració SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "El camp Telèfon 1 sembla no tenir un valor vàlid" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "El camp Telèfon 1 només hauria de tenir números." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "El camp Telèfon 2 és massa llarg" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "El camp Telèfon 2 només hauria de tenir números." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "El camp Telèfon 3 és massa llarg" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "El camp Telèfon 3 només hauria de tenir números." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ca_ES/sharing.po b/application/i18n/po/po-ca_ES/sharing.po new file mode 100644 index 0000000000..b231f80d3b --- /dev/null +++ b/application/i18n/po/po-ca_ES/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Data d`ingrés" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Data d`afegida" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Darrer Accés" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "El camp Color ha de ser de 6 caracters." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "El camp Color és obligatori." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "El nom Sharing sembla no ser vàlid" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "És obligatori un nom Sharing." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "L`URL del site ja existeix" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "L`URL del site sembla no tenir una llargada vàlida" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "L`URL del site és obligatori." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "El camp URL site sembla no tenir un URL vàlid" diff --git a/application/i18n/po/po-ca_ES/stats.po b/application/i18n/po/po-ca_ES/stats.po new file mode 100644 index 0000000000..ebe67e96c2 --- /dev/null +++ b/application/i18n/po/po-ca_ES/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprovat" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categories" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Per Categores" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Aquest gràfic dona una visió linial dels llistats, classificats per categories. Escrol.leu d`esquerra a dreta per a comparar les diferents categories. Moveu el punter per sobre del gràfic per a veure`n els detalls" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Trieu un rang de dates" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Països" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "País" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Per País" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Aquesta és la secció d`estadístiques. Aviat hi haurà una descripció general. De moment, podeu navegar fent servir els enllaços de les subcategories" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Error" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossari" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Connexions" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pàgines vistes" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Nombre total de pàgines vistes" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Llistats" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categories dels Llistats" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Estadístiques dels Llistats" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Estat dels Llistats" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Avaluació Puntual de Llistat" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Estadístiques de Llistats" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Configuració incomplerta de les estadístiques" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Mes" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Mesos" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Mesos" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Tots" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "No Aprovat" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitants Unics" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Nombre de visites individuals al site; determinats utilitzant les cookies. En el cas que un dels visitants no tingui les cookies habilitades, se l`identifica mitjançant l`adreça IP, la resolució, el navegador, els plug-ins, el sistema operatiu, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "No Verificat" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificat" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Resum de Visitants" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visites" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Una `visita` és un registre d`un únic visitant que fa més de 30 minuts que no ha estat en aquest site" diff --git a/application/i18n/po/po-ca_ES/tooltips.po b/application/i18n/po/po-ca_ES/tooltips.po new file mode 100644 index 0000000000..bd6ac100fb --- /dev/null +++ b/application/i18n/po/po-ca_ES/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Jaume Fortuny , 2012 +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Aquesta acció afegeix la informació reportada a categories addicionals. Si seleccioneu Categoria 1 i la informació reportada ja està vinculada a Categoria 2, la informació reportada tindrà Categoria 1 i Categoria 2 alhora." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprova un informe o no. Si s'aprova, es mostrarà públicament." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Podeu assignar un medalla a l`usuari que llença l`alerta. Seleccioneu aquí la medalla que voleu concedir." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Aquest és el rang d`hores i/o minuts entre dos horaris en format de 24 hores. Si indiqueu un valor inferior al segon camp de temps, s`intercanviarà amb el primer. Aquests horaris han d`estar dins el mateix dia. Aquest temps també es compara amb l`horari configurat en el site (en la configuració del site i NO necessàriament en la zona horària amb que l`usuari ha interactuat en l`instal.lació). Deixeu aquest camp de 00:00 a 00:00 per ignorar aquest rang." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Si només voleu activar alertes quan s`utilitza una certa categoria, ho podeu fer aquí. Això permetrà activar una alerta si només s`utilitza una de les categories. Per exemple, si seleccioneu aquí Categoria 1 i Categoria 2, i una informació reportada està presentada utilitzant Categoria 2 i Categoria 3, passarà el test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Si aquestes accions pasen en determinat dia de la setmana. Recordeu que el dia és determinat per la configuració de la zona horària de l`instal.lació. Premeu shift -majúscules- or control per seleccionar múltiples dies." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Cos del missatge que s`enviarà." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Subjecte del missatge que s`enviarà." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "El feed pot ser de tots els serveis o un feed específic. Si només voleu feeds específics per activar un disparador, haureu de seleccionar-los aquí. En cas contrari, haureu de deixar-ho com \"tots\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nom d'usuari de Twitter (o més noms d'usuari separats per comes). Si voleu activar disparadors només per als missatges de Twitter d'un usuari en particular, escriviu el seu nom d'usuari aquí (sense incloure @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Podeu deixar aquest camp en blanc si no voleu cercar per paraules clau. Si afegiu més d`una paraula, necessitareu separar-les amb una coma (,). Per exemple, si voleu activar una alerta quan algú mencioni \"amor\" o \"pau\" al seu missatge, haureu d`afegir \"amor,pau\" a la caixa de les paraules clau." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "També podeu seleccionar qualsevol lloc o una ubicació específica. Si seleccioneu una ubicació concreta, s`us demanarà que dibuixeu un rectangle al voltant de l`àrea on s`examina l`acció. Per exemple, si voleu activar aquesta alerta quan algú presenti una informació reportada de l`Empordà, haureu de seleccionar \"ubicació concreta\" i després dibuixar un rectangle al voltant de l`Empordà. Podeu fer aquests rectangles tant petites o grans com vulgueu. També podeu dibuixar múltiples rectangles." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Aquest classificador activarà l`alerta de l`enèssim comptador tant per la base col.lectiva d`usuaris com per cada usuari individual. Deixeu-ho en blanc per ignorar-ho." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Aquest és el títol predeterminat per afegir a l'informe." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Si es passen tots els classificadors anteriors, l`alarma iniciarà una resposta. Aquesta pot abastar des de aprovar una informació reportada, a enviar un missatge a un usuari. Seleccioneu la resposta aquí per a activar opcions addicionals per a les respostes concretes." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Si seleccioneu \"Alerta d`Usuari\", s`enviarà el correu a l`usuari que ha realitzat l`acció. Si seleccioneu el radio button proper a la caixa d`entrada de dades, podreu entrar una adreça de correu personalitzada. Això és útil si creeu alertes per notificar a la gent quan s`estan veient informacions reportades en certes parts del mapa, registres a qualsevol altra activitat." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Aquí podeu seleccionar múltiples dies. Les dates estan determinades per la zona horària de l`instal.lació.No seleccioneu cap data si voleu aplicar les dates per defecte." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "L`alarma és el component central de les Accions d`Alarmes. Aquí és on determinareu si voleu que passi alguna cosa quan algú reporti, registri, etc. Al seleccionar-ne una, podreu filtrar les respostes a aquestes accions." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "L`usuari pot ser qualsevol o un d`específic. Si només voleu permetre que determinats usuaris activin alarmes, haureu de seleccionar-los aquí. D`altra forma, haureu de deixar-ho amb l`indicació \"qualsevol\", doncs la majoria de les alarmes estan habilitades perquè tots els usuaris interactuin amb el sistema." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marca una informació reportada com a verificada o no." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Les pàgines de perfil d`aquest site fan servir Gravatar. Clicant sobre la vostra imatge, anireu al site de Gravatar on podreu canviar la vostra imatge de perfil." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separeu cada valor amb una coma p.ex. valor1, valor2" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separeu cada valor amb una coma, per exemple, valor1, valor2. En cas que desitgeu establir un valor per defecte, poseu fi a la seva llista d'opcions amb :: per exemple, si vol fer valor3 el valor per defecte, serà valor1, valor2, valor3 :: valor3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separeu cada opció amb una coma p.ex. Opció 1, Opció 2, etc" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Comenceu a teclejar la llista de membres" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Títol del missatge privat" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Missatge privat" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Podeu seleccionar un color que es mostrarà a sota de la vostra imatge de perfil al vostre perfil públic. Aquest serà el color també del punt que mostrarà sobre el mapa els vostres registres." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "La vostra adreça de correu electrònic" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Aquesta és una de les formes amb les que esteu identificats al site. Recordeu que es públic!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Si ho marqueu, aquest serà el vostre nou password. Deixeu-ho en blanc si voleu mantenir el password actual" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Aquest camp és obligatori quan es crea un nou usuari, ja que serà el nou password de l`usuari. Heu d`indicar al nou usuari que haurà de canviar el seu password després d`accedir per primer cop." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Seleccionant SI podreu rebre alertes per correu electrònic quan es publiquin noves informacions reportades o es facin comentaris al site" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Obliguem a entrar el password per a prevenir canvis no autoritzats al vostre compte." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Si marqueu aquesta opció, el vostre perfil pot ser vist per qualsevol a Internet. Aquesta es també la forma més senzilla per mostrar informacions que heu reportat, els vostres registres, medalles, etc., tot en una sola pàgina." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Aquesta és l`adreça on es pot trobar el vostre perfil públic." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "El vostre nom d`usuari no es pot canviar" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Els \"Nivells d`Accés\" es fan servir per a restringir l`accés a camps de dades específics. Els nivells d`accés més alts poden accedir als camps dels nivells inferiors. El Superadmin té el nivell d`accés més alt - 100. Les dades públiques es mostren al nivell més baix - 0." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Aquesta es l`adreça de correu electrònic que es farà servir per enviar alertes per correu electrònic." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Permet els usuaris subscriure`s a les alertes a través de la web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Aquesta opció permet agrupacions de informacions reportades similars en un únic punt del mapa" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permet als usuaris comentar sobre informacions reportades al site principal." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Aquesta opció permet mostrar feeds de notícies RSS al site principal." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Permet als usuaris reportar informació a través d`un formulari web." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Nombre predeterminat de registres retornats en cada crida a l`API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Nombre màxim de registres retornats en cada crida a l`API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Nombre màxim de crides a l`API per adreça IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "El banner del site apareixerà a dalt del front-end del site, si el tema que utilitzeu ho suporta. La mida recomanda del banner dependrà del tema emprat. Tingueu en compte que això reemplaçarà el títol del site i la línia present a dalt de la pàgina." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Nombre de blocs de columnes que es mostraran en cada filera" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Habilita o deshabilita el paginat de catxé. això accelera la càrrega de la pàgina, reduint els temps de resposta. Recomanem fer servir aquesta catxé en sites amb alt trànsit. **Recordeu que les informacions reportades es carregaran en el front-end en base al temps que es fixa més avall (temps de vida de la catxé)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Fixa el temps de vida de la catxé." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Aquesta opció habilita registres a la vostra instal.lació. Aquest és un tipus d`informació reportada simplificada que no està moderada abans d`anar a la homepage i requereix que el vostre site estigui configurat d`una determinada manera. Quan habiliteu aquesta característica, assegureu-vos que la zona horària està fixada a UTC i que el vostre tema suporta registres. Quan ho habiliteu, registreu només temes que siguin habilitables a través de la pàgina de configuració per addons i temes." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Fixa el mapa per cobrir una ubicació concreta " + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Fixa un codi de color per totes les categories del site" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Establiu una icona per a totes les categories del lloc." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "País on es site està funcionant" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Posa la llegüeta de Contacte On o Off al site principal." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Posa la llegüeta de Com Ajudar On o Off al site principal." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Nombre d`informació reportada que es mostra per pàgina al site principal." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Nombre d`informació reportada que es mostra per pàgina al back-end d`administració." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Concentrador pels missatges entrants" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Sincronitza els missatges del concentrador amb la plataforma Ushahidi" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Números de telèfon per on es reben els missatges de text" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Seguiment dels visitants del site. Obteniu estadístiques detallades dels visitants" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Fixa l`idioma que s`utilitza en aquest site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Si poseu aquesta opció a SI, haureu d`autoritzar cada usuari que crei un compte en aquest site, assignant-li rols (p.ex. Membre, Admin, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Aquesta opció defineix el mapa que utilitzarà el site" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Això mostra la línia de temps sobre la base de la data i l'hora en les que es van presentar els informes" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Fixant aquest valor a Veritable o Si convertirà la vostra instal.lació en privada i així només els usuaris dels comptes que especifiqueu podran accedir a aquest desenvolupament." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Si està fixat a Si, als usuaris se`ls enviarà un enllaç de confirmació per correu electrònic abans de permetres entrar. Si abiliteu aquesta opció després d`acceptar usuaris, se`ls demanarà que confirmin el seu compte abans de permetre`ls continuar utilitzant-lo." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Aquest és el host on resideixen els correus electrònics" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Aquest és el password de l`adreça de correu electrònic que rep els informes reportats" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Port obligatori per acceptar connexions entrants des de l`adreça de correu electrònic" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Obligatori per permetre una connexió segura" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Obligatori per recuperar correus electrònics del servidor host" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Aquest és el nom de l`adreça de correu electrònic que rep els informes reportats" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Les estadístiques de visites son enmagatzemades en un servidor control.lat per l`Ushahidi. Habilitant aquesta opció, podreu veure les estadístiques directament al panell d`administració. Deshabilitant-la, deixareu de veure les estadístiques de tràfic." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Doneu a tercers drets de republicació de text, imatges, video i/o disseny que vosaltres o els vostres usuaris han creat? Aneu a https://creativecommons.org/choose/ si esteu interessats en detallar el que altres poden fer amb el vostre treball. I recordeu ser concrets sobre quines elements del vostre site esteu licenciant!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Adreça de correu electrònic que rebrà els correus electrònics amb els informes reportats i els formularis de contacte." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Aquest és el text que apareixerà sobre el mapa de la homepage. És molt útil per a donar als visitants del site informació important. Per eliminar la caixa de text, simplement esborreu aquest text." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Aquest és el nom del site que apareixerà a la part superior del site principal." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Aquest és el missatge que es mostrarà en la pàgina d`enviament d`informes reportats. Això és bó per renúncies o més instruccions pels visitants que estan informant." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Expliqueu, en poques paraules, que es tracta en aquest site." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Aquesta es la zona horària sobre la que operarà aquest site. Això té un impacte en qualsevol acció que es duu a terme i que utilitzi hora i data, i també en l`hora per defecte de l`enviament d`informes al front i al back-end del site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Configura el hashtag de twitter que es farà servir als tweets" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ca_ES/ui_admin.po b/application/i18n/po/po-ca_ES/ui_admin.po new file mode 100644 index 0000000000..c733f78448 --- /dev/null +++ b/application/i18n/po/po-ca_ES/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Jaume Fortuny , 2012-2013 +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Accés denegat. Les credentials no són vàlides o la petició s`ha refusat" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Accés denegat. La petició s`ha entès, però s`ha denegat per superar límits com ara els de temps. Proveu-ho altra cop més tard" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nivell d`Accés" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Accions" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Afegir a Categoria" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "afegit" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "afegit/editat" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Afegits" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertes" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertes Rebudes" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Tot" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anònims" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Qualsevol" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "On sigui" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Bloquejada" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Logs d`API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Configuració d`API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "DESBLOQUEJAR" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "DESBLOQUEJAR-HO TOT" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "aprovat" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Auto Aprovat" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprovat Manual" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arxivat" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Esteu segur que voleu" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Esteu segur que voleu esborrar aquest item" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Esteu segur que voleu esborrar aquesta foto" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Esteu segur que voleu conmutar formularis" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Assignar" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Assignaments" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Medalla Assignada" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Correu electrònic de l`autor" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Tornar" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Bloquejar IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre Hores" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloquejos" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Cos" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancel.lar" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categories" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Error mostrant el gràfic" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Si us plau, assegureu-vos que el missatge és vàlid" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Si us plau, assegureu-vos que el número és vàlid" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Si us plau, reviseu la configuració del SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalls de Registre" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Registres" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Ciutats carregades" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "codi" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versió de codi sense sincronitzar." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Color" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentaris" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "El vostre codi de confirmació d`alertes és: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "L`Usuari Ha Estat" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Contar" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "País No Trobat" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "creat/editat" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Crear un Informe" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Actualització Crítica" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Actualment Actiu" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Actualment Inactiu" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "No teniu suficients permisos per editar els camps següents." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Diàriament" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Tauler" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "base de dades" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data & Hora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Data Afegida" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Data Modificada" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dies de la setmana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Versió de la Base de Dades sense sincronitzar." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "esborrat" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Esborrar" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Esborrar Medalla" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descripció" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Deshabilitat" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Inici de Divisor" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Final de Divisor" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "divisor de class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Descarregar Informes Reportats" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Opcions Desplegables" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITAT" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editat Per" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editar" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Editar Log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Correu Electrònic" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Col.lectiu Sencer" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Error en geocoding! error HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "La llibreria IMAP PHP no està instal.lada" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Error" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, incapaç de publicar incident" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Cada Sis Hores" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Cada Dotze Hores" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "PMF's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Llista d`Opcions" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valor per Defecte" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipus de Dades" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Marcat" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numeric" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Text Lliure" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Alçada (En Fileres)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Camp Amagat" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Màxima Longitud de Caracter" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nom de Camp" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Toggle" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "No" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Si, Tancat per defecte" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Si, Obert per defecte" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "No pot trobar el fitxer pujat" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "No pot obrir el fitxer per lectura" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Aquest Formulari No Existeix!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Fòrum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Camp d`Àrea de Text (Text Lliure)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Camp de Data" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Camp Radio Buttons" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Camp Checkboxes" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Camp Desplegable" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Des de" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Des de" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Error de Timeout en connexió a Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Obteniu Ajut" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obtenir més temes" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obtenir més plugiins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Accions" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "AfegirEditar" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Administrar Usuaris" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rol" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Usuari" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ajut" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Horàriament" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Feed d`incidents" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "La carpeta d'instal·lació encara existeix. Elimineu la carpeta d'instal·lació. Es tracta d'una potencial vulnerabilitat de la seguretat." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instància" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instàncies" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalls d`Instància" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Paràmetre Invàlid" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Adreça IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "És aquest un Camp de Data?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Quí Pot Veure Respostes" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Quí Pot Enviar Respostes" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Paraula Clau" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Paraules Clau" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Adreça de Correu Electrònic:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nom Sencer:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Password:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rol:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nom d`Usuari:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Capes" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Logout" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Administrar" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Administrar Rols & Permisos" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Veure Usuaris" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Afegir/Editar Usuaris" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Gestionar la llista pública" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marcar Com" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcat com a no spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcat com a spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "no coincideixen cap document" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Missatge" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Missatges" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Missatges Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Missatges Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "El vostre missatge s`ha enviat!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minut" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minuts" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Falta un Paràmetre" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificat" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modificar Configuració de la Zona Horària" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "moure avall" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "moure amunt" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Múltiples Instàncies Hostatjades" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Les Meves Alertes" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Els Meus Registres" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "El Meu Perfil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Els Meus Informes" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Vots Emesos" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positiu" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negatiu" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nom" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Crear Nova Alerta" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Crear Nou Missatge" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nou Password" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "No" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Aquesta és una categoria especial que no es mostrarà en el formulari de presentació d'informes pels usuaris que envien informes. S'utilitza per mantenir els informes pujats sense categories (informes no categoritzats) com a resultat de la supressió categoria." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificació" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "No distingeix entre majúscules i minúscules." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "No es troba" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "No hi ha dades. No hi ha resultats a ensenyar." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "No hi ha hagut errors" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "No hi ha resultats a mostrar!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Sobre un Comptador Concret" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "pàgina" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "pàgines" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Pàgina No Trobada" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Ho sentim, la pàgina que està intentant veure no és aquí.

Heu seguit un enllaç des d'un altre lloc a aquest site?
Si vau arribar a aquesta pàgina des d'una altra part del nostre lloc, si us plau poseu-vos en contacte amb nosaltres perquè puguem corregir el nostre error.

Heu seguit un enllaç des d'un altre lloc?
Els enllaços des d'altres llocs poden estar, de vegades, desactualitzast o mal escrits.
Explica'ns d'on véns i podrem intentar posar-nos en contacte amb l'altre site per tal de solucionar el problema.

Heu escrit vosaltres mateixos la URL?
És possible que hagueu escrit l'adreça (URL) incorrectament. Assegureu-vos de la grafia correctament, incloses les majúscules i altres detalls ortogràfics" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Ho sentim, la pàgina que està intentant veure no és aquí." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Paràmetres Utilitzats" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Password" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Restabliment de Password " + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Benvolgu-t/da" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Hem rebut un petició per resetejar el password de" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Per canviar el vostre password, si us plau, cliqueu al link següent (o copieu i exganxeu-lo al vostre navegador)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Tal i com heu sol.licitat, el vostre password ha estat resetejat. Els vostres nous detalls són els següents" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Restabliment del Password Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telèfon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Si us plau, seleccioneu" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Les Dades no s`han enviat per métode post" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Vista Prèvia" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Missatge" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Missatges Privats" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Missatges Privats Enviats" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Títol" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "A" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Llista Pública" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Classificació" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "llegir" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Rellevància" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Títol de l'informe" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Data de l'Informe" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporters" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivells de Reporter" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Informes Reportats" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Puntuació de Reputació" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Obligatori" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Resposta" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultats" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revocar" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Aquest correu electrònic ja té un compte administrat pel CrowdmapID. L'usuari haurà d'utilitzar la seva contrasenya a Crowdmap per iniciar sessió." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Guardar Configuració" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Cercar" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Reerca d´Informes" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "cercant per" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "La clau de xifrat està encara establerta en el valor predeterminat. Això és insegur i ha de ser canviat." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Aquest lloc respon a través d'HTTP. Caldria canviar-ho a HTTPS per millorar-ne la seguretat." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Les instruccions estan disponibles al wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Seleccioneu el format de llistat desitjat:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Seleccioneu un Tipus de Camp ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Si us plau, seleccioneu un item" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Heu de seleccionar una Alarma abans de poder seleccionar una Resposta." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Heu de seleccionar una Alarma abans de poder definir Classificacions." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Remitent" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Enviar A" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Aquest missatge s`ha enviat des del vostre website a " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Hora del Servidor" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Configuració" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Mostrant pàgina" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Mostrant resultats" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "mostrat/s" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoria Especial" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Aquesta és una categoria especial que no es mostrarà al formulari per reportar informació pels usuaris que reportin. Es fa servir conjuntament amb la característica \"Reportadors de Confiança\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Àrea Específica" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Estat" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estadístiques" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estadístiques" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Col.lecció d`estadístiques fallada! Si us plau, proveu-ho altra cop més tard." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Col.lecció d`estadístiques fallada!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Dies Concrets" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Títol" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tasca que es realitza" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Camp de Text" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nom" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Administrar Usuaris" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Error de Timeout" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "a" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Total de Registres" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "a" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traduïr Reports" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Usuari Triggering" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Alarmes" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "no aprovat" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Desconegut" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Error Desconegut" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "no llegit" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "No rebreu més alertes des de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Cliqueu aquí per actualitzar ara" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Actualitzar l`Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Estat de l`Actualització de l`Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Pujar Reports" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Usuari" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Usuaris" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificat/Desverificat" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verificat/Desverifica" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versió" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " és disponible per a actualitzar." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Codificació de Video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Missatges Provats" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Veure Site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Veure Report" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Benvingut, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Si" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "La vostra recerca de" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ca_ES/ui_main.po b/application/i18n/po/po-ca_ES/ui_main.po new file mode 100644 index 0000000000..5626edfdc7 --- /dev/null +++ b/application/i18n/po/po-ca_ES/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "About" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Accés" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Límits d`Accés" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nom del Compte" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Accions" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Aquesta acció no es pot desfer. Esteu segurs de voler continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Actiu" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Afegir" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Afegit per" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dades Addicionals" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Reports Addicionals" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Afegir/Editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Afegir un Camp" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Afegir un Idioma" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Afegir Nou" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Afegir Nova Categoria" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Afegir Traducció" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administració" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Rebre Alertes" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "AViseu-me si s`omple un informe o similar:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Enregistrar la Meva Alerta" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Adreça de Correu Electrònic per l`Alerta:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "entreu adreça de correu electrònic" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "entreu número de mòbil amb el codi de país" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Rebre Alertes" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "L´alerta ha estat" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Telèfon mòbil:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "O, marqui un punt al mapa següent, i l`avisarem quan s`envii un informe en 20 kilómetres al voltant." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Si no podeu trobar la vostra ubicació, si us plau, cliqueu al mapa per marcar la localització correcta." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Feeds de RSS Feeds (copieu l`url següent)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Seleccioneu una ciutat" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Pas 1: Seleccioneu la vostra ciutat o ubicació:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Pas 2: Envieu alertes a:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Pas 3 (Optional): Seleccioneu Categories" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmeu una Petició Prèvia d`Alerta" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "La Vostra Alerta s`ha Guardat!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Tot" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permés" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Totes les Categories" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Totes les Hores" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "i" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprovar" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprovat" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Reports Aprovats" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprovar aquest Report" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximat" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arxiu" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arxivat" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "a" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Registre" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Mitjana de Reports Diaris" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Esperant Aprovació" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Esperant Verificació" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Emblema" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Emblemess" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imatge d`Emblema" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "O, en el seu lloc, podeu pujar la vostra pròpia imatge d`Emblema" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Paquet d`Emblemes" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Seleccioneu una Emblema" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Veure perfils" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancel.lar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categories" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoria" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtre de Categoria" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "La categoria ha estat " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nom de la Categoria" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Canviar Marge de Dates" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Canviar Password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Canviar la Meva Imatge" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Trieu un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Trieu els punts de dades a descarregar" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "O trieu el vostre propi marge de dates" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Trieue el tipus de camp" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Neteja URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Netejar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Neteja Mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Tancar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "grups" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Color" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentari" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentaris" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalls del Comentari" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "La Vostra Configuració s`ha Guardat!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurar" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Heu confirmat exitosament la vostra adreça de correu electrònic! Si us plau, entreu a continuació." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Ha fallat l'email de confirmació !! Podeu sol·licitar una nova confirmació per correu electrònic a continuació." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contacteu-nos" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Codi de Seguretat" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "La Vostra Adreça de Correu Electrònic" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Missatge" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "El Vostre Missatge s`ha Enviat!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "El Vostre Nom" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "El Vostre Número de Telèfon" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar Missatge" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Títol del Missatge" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crear" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crear/Editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crear Nou" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crear Nou Password" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Crear Report" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilitat" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Password Actual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Camps Addicionals" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informació" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Dia & Hora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dia" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desactivar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Esborrar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Esborrat" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Esborrat/s" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Deshabilitat Esborrat" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Esborrar Últim" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Esborrar aquest Report" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Esborrar Seleccionat" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Esborrar Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descripció" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Exemple: Cantonada Passeig de Gràcia & Carrer Aragó, Barcelona" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalls" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Report Directe" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Deshabilitat" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Desaprovar" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Descarregar Reports" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Descarregar" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar Camps del Formulari" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar Report" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Correu Electrònic" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Adreça de Correu Electrònic" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Configuració del Servidor de Correu Electrònic" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Adreça del Servidor" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Password del Servidor" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port del Servidor de Correu Electrònic" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Suport per a connexions SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipus de Servidor de Correu Electrònic" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nom d`Usuari del Servidor" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "d`aquesta manera la vostra configuració s`ha associat a aquesta adreça de correu electrònic" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Per tal de rebre els informes reportats per correu electrònic, si us plau, entreu a continuació la vostra configuració del compte de correu electrònci. Els correus electrònics seran rebuts a" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Alguns servidors necessiten l`adreça complerta de correu electrònic" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Password del compte de correu" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Ports comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Exemples: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Habilitat or deshabilita connexions SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---BUIT---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "a" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Error!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Exemple" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Apps Externes" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Enllaç de Video Extern" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "El feed ha estat" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Items del Feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nom del Feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL del Feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Camp Sense Ús" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Fitxer" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "El vostre fitxer sobrepassa la mida de fitxer màxim permés." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtres" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrar Reports" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrar Reports Per" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrar reports que contenen" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Cercar" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Cercar Ubicació" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nom" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Forçar l`Execució del Planificador" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Heu oblidat el vostre password?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulari" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formularis" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descripció del Formulari" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editar aquest Formulari" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "El formulari ha estat" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Títol del Formulari" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Des de" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nom Complert" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocalització Disponible" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Color" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentaris" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiqueta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Amplada del Traç" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Anar" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Ha Estat" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Com Ajudar" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Amagat" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Amagar" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "amagar aquest missatge" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Inici" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Com Reportar" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Usat per identificar-vos a altres usuaris al site." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imatge" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imatges" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imatge/Icona" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactiu" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Missatges Entrants" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incidència" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidents Propers" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Localització de l`Incident" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Incluore" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Incloure Categories" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Incloure Camps Addicionals" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Incloure Descripció" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Incluore tant detall com sigui possible" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Incloure Latitud" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Incloure Informació d`Ubicació" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Incloure Longitud" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Fotos/Videos Entrants" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Avaluació de la Informació" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Entreu la vostra ubicació precisa" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "El vostre compte no té els permisos addients per logar-se totalment. Si us plau, contacteu amb l`administrador." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "En resposta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Adreça IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Es aquest el teu perfil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "article" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "articles" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalls de l`item" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Títol de l`Item" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Clau" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Fitxer KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Pujar fitxer KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL del fitxer KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Idioma" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Darrer" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Darrer Mes" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Darrer Nom" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Darrer Any" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitud" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Capes" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Altres Capes" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "La Capa Ha Estat" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nom de la Capa" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL de la Capa" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Deixar un Comentari" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menys Informació" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivell" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Aquest nivell ha estat" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nom del Nivell" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitat" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Enllaç" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Llista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Carregant Reports" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Ubicació" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Ubicacions" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Ciutat, Comarca, Província i/o País" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Compte creat satisfactòriament. Ara ja podeu entrar." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "S`ha enviat una confirmació a la vostra adreça de correu electrònic." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Aquest correu electrònic no existeix. Proveu una adreça diferent o creeu un compte." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Si us plau, cliqueu el vostre proveïdor del compte" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Login amb" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email i Password" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Registre" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Creeu un Compte" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmació de Registre" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Creeu un compte ara per prendre avantatge de més característiques d`aquest site." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitud" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marqueu com a Llegit" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marqueu com a No Llegit" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Mida Màxima de fitxer" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Mitjans de Comunicació" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtre de Media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Membres" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gestioneu el Vostre Compte" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Missatge" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Missatges" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalls del Missatge" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Missatge des d`una font no-numérica:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mòbil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modificar" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modificar Date" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mes" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Més" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Més Informació" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Aquesta instal.lació de l`Ushahidi, ¿Abasta Multiples Països?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Heu de confirmar la vostra adreça de correu electrònic per accedir a aquesta instal.lació. Si perdeu el vostre correu electrònic de confirmació, en podeu demanar un altre aquí sota." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nom" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Report Proper" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Noticia" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Notícies" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Feeds de Notícies" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Font de Notícies" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nova Categoria" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nou Password" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nou Report" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Següent" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "No" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "No hi ha registres per ensenyar." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "No hi ha dades" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Cap" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notícies" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "No Aprovat" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "No Aprovat" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---No Seleccionat---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "no spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "No Especificat" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "No hi ha reports" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "No hi ha resultats" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Off" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Font Principal de Notícies" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "On" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opció" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opcions" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organització" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organitzacions" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descripció de l`Organització" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Correu Electrònic de l`Organització" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "L`Organització Ha Estat" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nom de l`Organització" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telèfon 1 de l`Organització" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Telèfon 2 de l`Organització" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Website de l`Organització" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descripció Original" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Títol Original" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Altres Instal.lacions" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Missatges Sortints" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Sortint" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Pàgina" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Pàgines" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descripció de la Pàgina" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "La Pàgina Ha Estat" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Etiqueta" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Títol de la Pàgina" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoria Superior" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Password" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verificar Password" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "El Password ha canviat correctament! Entreu a continuació." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Heu oblidat el vostre password?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Reviseu el vostre correu electrònic pel nou password." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Voleu romandre logat en aquest ordinador?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mes Passat" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Any Passat" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pendent" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informació Personal Opcional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telèfon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Imatge" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Imatges i Videos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Cerqueu la vostre ubicació fent servir un nom de localització de coordinades latitud i longitud (format: 38.19,-85.61), o cliqueu al mapa per marcar la vostra actual ubicació" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Començar" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Atenció" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugin Website" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Perfil Públic" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL pel Perfil Públic" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Vista Prèvia" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Vista Prèvia de l`Item" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Vista Prèvia del Missatge" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Previ" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privat" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Perfil de Color" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "El Vostre Perfil s`ha Guardat" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estadístiques" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Calificació" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Llegit" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Rebre" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Rebre des de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Rebre Notificacions" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Reports Recents" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Actualitzar Feeds de Notícies" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Correu Electrònic Registrat" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Treure" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Contestar" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Informe" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Reports (des del mapa, llistats en ordre cronològic)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Informador" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Informadors" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Data" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Correu Electrònic" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nom de l`Informador" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "L`Informador Ha Estat" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Adreça IP de l`Informador" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Cognom de l`Informador" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nivell de l`Informador" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivells" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telèfon" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Informes" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Navegar" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Enviar" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Reports Per Aquest Usuari" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categories" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Informes" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descripció" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Els Reports es descarregaran en format CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Característiques" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Trobeu una ubicació prop vostre" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nom" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Cognom" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Ubicació Precisa" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Enllaç a Font de Notícies" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informació Opcional" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Pujar Fotos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Torneu a la pàgina de reports" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Seleccioneu una Ciutat" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "La informació que heu reportat ha estat enviada i serà revisada. Contactarem amb vostè en cas que sigui necessari." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Envieu un Nou Report" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Temps" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Línia de Temps" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Títol de l`Informe Reportat" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Enllaç de Video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Reportar un Incident" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalls del Report" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Enviant un missatge a" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Enviant un correu electrònic" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Enviant un Tweet amb el/s hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Omplenant aquest formulari a la nostra web" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Utilitzant una aplicació" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "El Seu Informe s`ha Guardat" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Títol de l`Informe" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Sol.licitar més informació" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Sol.licitat ubicació" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Obligatori" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requeriments" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Reenvia Correu Electrònic de Confirmació" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Neteja tots els flitres" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Canvia el Password" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Recupera els noms de ciutats del país seleccionat" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Comptes gestionats pel servei %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Desa" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Guardat" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Desa & Afegeix Nou" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Desa & Tanca" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Desa Informe" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Calendari" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Programador" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dia" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Log del Programador" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minut" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Dia de la setmana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "CERCA" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultats de la Cerca" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Codi de Seguretat" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Selecciona-ho Tot" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Seleccioneu un Tipus de Camp" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Seleccioneu un Tipus de Formulari" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Seleccioneu al Mapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Seleccioneu tants com calgui" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Si us plau, comproveu que heu marcat un item" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Seleccioneu Tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Envia" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Envia Confirmació" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Enviant A" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Enviat" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Enviat Per" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adreça del Server" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipus de Server" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servei" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nom d`usuari del Servei" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID d`Usuari de Servei" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Compartir" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Dades Compartides" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "La compartició ha estat" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Compartint" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa Petit" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Mostra" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Mostra`ls Tots" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mostra els Missatges" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "adreça de correu electrònic del site" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL del Site" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa Més Petit" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Perdoenu, no teniu cal emblema." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Font" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nom de la Font" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL de la Font" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Suport SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Des de" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Pas" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Enviar un Informe" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Enviat via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Enviar el vostre SMS a" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "al vostre telèfon" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Èxit!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importat Exitosament" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Cognoms" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Enquesta" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa Més Gran" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Port TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Temes" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema Predeterminat de l`Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Configuració del Tema" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Aquest" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Avui" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Aquest Mes" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Aquesta Setmana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Aquest Any" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Aquest és el seu perfil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Temps" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Títol " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "a" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Avui" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Avui a les" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Mostra" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Informes Totals" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traduït" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descripció Traduïda" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Títol Traduït" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traduït a" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traducció" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "La traducció s`ha guardat" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "De Confiança" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipus" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Incapaç d`enviar el correu electrònic." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Informes No Classificats" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "No llegit" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "No verificat" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Feeds actualitzats" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Pujada" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Fitxer per pujar" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Pujar Informes" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Amb el següent formulari, podeu importar els incidents al motor de l`Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Ha de contenir, pel cap baix, el Títol de l`Incident i la Data de l`Incident" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Si no es subministren les coordenades de latitud i longitud, l`ubicació serà geolocalitzada amb el Google Geocoder" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Una ostra de l`Informe CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,TÍTOL DE L`INCIDENT, DATA DE L`INCIDENT,LOCATITZACIÓ,DESCRIPCIÓ,CATEGORIA,APROVAT,VERIFICAT,LATITUD,LONGITUD
\"1\",\"Sospitós mort a Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"S`han confirmat tres casos a C.del Uruguay\",\"MORTS, CIVILS, \",SI,SI,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Saqueig\",\"2009-03-18 10:10:00\",\"Accra\",\"Hi ha saquejos per tot arreu\",\"DISTURBIS, MORTS, PÈRDUA DE PROPIETATS, \",SI,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Pujada Exitosa" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Pujar Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Usuari" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nom d`Usuari" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Admin de l`Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificació" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificat" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Informes Verificats" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verificar" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verificar aquest Informe" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versió" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Vista" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Vistes" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Veure`ls Tots" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Veure tots els feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Veure tots els informes" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Veure Items" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Veure`n Més" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Veure el Perfil Públic" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Veure Informe" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Veure Informes" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Esperant Aprovació" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Esperant Verificació" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa Gran" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulari Web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Pes" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Si" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ahir" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "El vostre Taulell" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "El vostre fitxer" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Apropar" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Allunyar" diff --git a/application/i18n/po/po-ca_ES/upgrade.po b/application/i18n/po/po-ca_ES/upgrade.po new file mode 100644 index 0000000000..19e75bab33 --- /dev/null +++ b/application/i18n/po/po-ca_ES/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Jaume Fortuny , 2013 +# Jaume Fortuny , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dada introduida no vàlida. Pot ser 0 per No i 1 per Si." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Actualització automàtica" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Actualització disponible" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continuar" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Actualitzar" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Procedeixo a actualitzar la base de dades des de la versió" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "a la nova versió de la base de dades" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Cliqueu sobre el botó \"Actualitzar\" i relaxeu-vos mentre faig la màgia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Oh, i si també voleu fer un backup de la vostra base de dades, marqueu el checkbox de sota i ho faré en un instant." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Faig un backup de la base de dades abans d`actualitzar? (Altament Recomanable)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Actualització de la base de dades de l`Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "L´Ushahidi ha estat actualitzat! Abans de continuar, cal actualitzar la base de dades a la nova versió (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "La versió de base de dades està actualitzada." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "L`actualització ha fallat en algun punt" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Actualització Manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Estat de l`actualització de l`Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Les següents instruccions us guiaran per a actualitzar manualment l`Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "

Download
" +msgstr "Pas 1: Descarregueu la versió més recent d`Ushahidi des de http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Pas 2: Depenent del sistema operatiu del servidor web, feu servir el vostre métode preferit (p.ex.: telnet, ftp, ssh) per entrar al servidor web i reemplaçar els continguts de totes les carpetes amb els de la darrera versió. TOTS EXCEPTE:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Pas 3: Cliqueu el botó \"Continuar\" per a actualitzar les taules necessàries." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Pas 3: Mira a l'interior de la carpeta sql.Executa manualment l'actualització -. L´arxiu sql a partir de la versió de base de dades actual de la teva instal.lació fins al fitxer sql actualitzat final." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Per a una actualització automàtica, cliqueu al botó de sota." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Per a l'actualització automàtica, feu clic al botó de sota." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Esteu fent servir l' Ushahidi v%1$s amb la Base de dades versió %2$d corrent sobre %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Actualitzant" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Per continuar amb l'actualització senzilla, el servidor FTP requereix la següent informació de la web on està allotjat." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Exemple: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Password:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP Nom d´Usuari:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Teniu l'última versió de Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "No cal actualitzar." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versió de la Base de Dades: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Avís: la versió de programari de version.php i la base de dades no coincideixen." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Avís: la versió base de dades de version.php i la base de dades no coincideixen." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Base de Dades:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Descarregant la darrera versió de Ushahidi ..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Fitxer de Log" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Descarrega exitosa. Descomprimint...." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "No s'ha pogut descarregar." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Descomprimits correctament. Copiant fitxers...." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "No s'ha pogut descomprimir" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copiats correctament. Actualitzant la Base de Dades....." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "No s'han pogut copiar els fitxers." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Backup de la Base de Dades i actualització correctes." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "No s'ha pogut fer el Backup de la Base de Dades." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Actualització de la Base de Dades correcta." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Esborrant fitxers descarregats..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "ACTUALITZACIÓ CORRECTA. Veieu el Fitxer de Logs" diff --git a/application/i18n/po/po-cs_CZ/alerts.po b/application/i18n/po/po-cs_CZ/alerts.po new file mode 100644 index 0000000000..83c85fa1f1 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Jiří Vírava , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Uvedl/a jste správně emailovou adresu?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Tato emailová adresa už je zaregistrována k odběru novinek z této oblasti na mapě" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailová adresa může obsahovat od 4 do 64 znaků." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Zadejte emailovou adresu." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr " Nevybral/a jste platnou lokalitu na mapě." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Nevybral/a jste platnou lokalitu na mapě." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Nevybral/a jste platnou lokalitu na mapě." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Nevybral/a jste platnou lokalitu na mapě." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "That Mobile Phone Number has already been registered to receive alerts for that location" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Musíte zadat buď číslo svého mobilního telefonu, nebo e-mailovou adresu." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Pole mobilní telefon je povinné v případě, že je zaškrtnut." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Nevymezil/a jste okruh, který Vás zajímá." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Nevymezil/a jste oblast, který Vás zajímá." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Nenastavili jste příjemce pro zasílání upozornění." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Tento kód už byl potvrzen!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Tento potvrzovací kód nebyl nalezen! Prosím, uveďte správnou adresu." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Váš kód byl potvrzen. Na Vaši adresu budou zasílány upozornění o nových zprávách na mapě." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Pro potvrzení, klikněte prosím na odkaz " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Vraťte se zpět, pokud máte zájem nastavit zasílání novinek z dalších oblastí." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Byl odeslán email na adresu " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Zadejte, prosím, kód, který jste obdrželi, pro potvrzení registrace: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr " Vaše žádost o zasílání novinek z mapy nebyla uložena!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Vaše žádost o zasílání novinek z mapy byla uložena!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Systém nebyl schopen zpracovat Vaši žádost o potvrzení odběru zpráv!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Chyba nastavení - není možné zasílat novinky" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Zasílání novinek z mapy zrušíte tak, že zkopírujete následující internetovou adresu do nového okna prohlížeče: " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Už nebudete dostávat novinky z " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Odhlášení se nezdařilo. Zkontrolujte, že jste správně zadali internetovou adresu." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "- potvrzení o zasílání novinek z mapy" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr " Novinky Vám začnou chodit až po potvrzení Vaší žádosti." diff --git a/application/i18n/po/po-cs_CZ/auth.po b/application/i18n/po/po-cs_CZ/auth.po new file mode 100644 index 0000000000..f5a7d95f83 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Emailová adresa nejspíše není ve správném formátu" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Je nám líto, uživatelský účet už pro tuto emailovou adresu existuje" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Emailová adresa musí mít ne méně než 4 znaky a ne více než 64 znaků" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Emailová adresa je povinná položka" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Políčko se jménem musí mít ne méně než 3 znaky a ne více než 100 znaků" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Políčko se jménem je povinná položka" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Uživatelský login obsahuje nepovolené znaky" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Heslo musí být alespoň 8 znaků dlouhé." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Zkontrolujte prosím, zda jste zadali správný e-mail a heslo." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Prosím, zadejte do obou polí pro heslo stejné heslo." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Heslo je vyžadováno." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Heslo musí obsahovat pouze abecední znaky, #, @, číslice, podtržítka a pomlčky " + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Aktuální heslo, které jste zadali pro váš účet je nesprávné. Prosím, zkuste to znovu." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Heslo musí být alespoň 8 znaků dlouhé." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Zkontrolujte prosím, zda jste zadali správný e-mail a heslo." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Prosím, zadejte do obou polí pro heslo stejné heslo." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Heslo je vyžadováno." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Heslo musí obsahovat pouze abecední znaky, #, @, číslice, podtržítka a pomlčky" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Došlo k chybě při pokusu o vaše přihlášení." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Heslo musí mít ne méně 5 a ne více než 16 znaků" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct password." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Vložte stejné heslo v obou políčkách pro zadání hesla" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Heslo je povinné položka" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Ověřovací server je vypnut. Prosím, zkuste to znovu později." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Heslo musí obsahovat pouze abecední znaky, #, @, číslice, podtržítka a pomlčky" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Hesla se musí shodovat" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Je emailová adresa zadaná ve správném formátu?" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Je nám líto, Vaše adresa nebyla rozpoznána" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Emailová adresa je povinná položka" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Jen superadmin může změnit superadmina, nebo povýšit uživatele na admina." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Neplatný formát role" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Políčko role musí mít ne méně než 5 a ne více než 30 znaků" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Je třeba definoval alespoň jednu roli" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Je třeba vybrat buď ADMIN anebo USER (uživatelskou) roli" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Role admina není možné upravit" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "URL pole veřejného profilu musí obsahovat pouze čísla a písmena." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Je nám líto, tento login už používá jiný uživatel/ka" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Položka uživatelský login musí mít méně než 2 a více než 16 znaků" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Please check that you entered the correct username." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Políčko s uživatelským jménem je povinná položka" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Roli super admina není možné upravit" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Možný CSRF útok. Opravdu jste zamýšlely vytvořit, nebo upravit uživatele?" diff --git a/application/i18n/po/po-cs_CZ/bug.po b/application/i18n/po/po-cs_CZ/bug.po new file mode 100644 index 0000000000..a9da2bcae7 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vložte platný potvrzovací kód" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Vložte potvrzovací kód" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Zadali jste emailovou adresu ve správném formátu?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailová adresa musí obsahovat ne méně než 4 a ne více než 64 znaků" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Emailová adresa se vyžaduje, když se vyžaduje" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Je třeba vyplnit políčko, kde se ukazuje chyba" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Pole předmět musí mít alespoň 3 znaky" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Pole předmět je povinná položka" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Pole se jménem musí mít alespoň 3 znaky" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Pole se jménem je povinná položka" diff --git a/application/i18n/po/po-cs_CZ/category.po b/application/i18n/po/po-cs_CZ/category.po new file mode 100644 index 0000000000..bdf9e4b8b4 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Políčko s barvou musí mít 6 znaků" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Barva je povinná položka" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Políčko popis je povinná položka" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Ujistěte se, že obrázky mají méně než 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Obrázek není ve správném formátu; nahrát je možné obrázky ve formátu .JPG, .PNG a .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Obrázek není ve správném formátu" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Název musí mít ne méně než 3 a ne více než 80 znaků" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Políčko název je povinná položka" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Nemůžete podkategorizovat kategorii s podkategorií." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Nadřazená kategorie neexistuje." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Nadřazená kategorie musí být v číselném tvaru." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Rodič kategorie nemůže být zvláštní kategorie" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Políčko nadřazená kategorie je povinná položka." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kategorie a nadřazená kategorie nemůže být stejná." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Zvláštní kategorie nelze podkategorizovat" diff --git a/application/i18n/po/po-cs_CZ/comments.po b/application/i18n/po/po-cs_CZ/comments.po new file mode 100644 index 0000000000..391ff53079 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vložte platný ověřovací kód" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Opište ověřovací kód" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Zadali jste nesprávný bezpečnostní kód." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Jméno má mít alespoň tři znaky." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Vyplňte jméno." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Vyplňte komentář." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Emailová adresa není ve správném formátu" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailová adresa má mít minimálně 4 a maximálně 64 znaků." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Vyplňte Váš email." diff --git a/application/i18n/po/po-cs_CZ/contact.po b/application/i18n/po/po-cs_CZ/contact.po new file mode 100644 index 0000000000..5839657659 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vložte platný ověřovací kód" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Zadejte prosím platný bezpečnostní kód." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Napište zde ověřovací kód" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Emailová adresa není ve správném formátu" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailová adresa má mít minimálně 4 a maximálně 64 znaků." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Vyplňte Váš email." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Vyplňte vaši zprávu." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Jméno má mít alespoň tři znaky." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Vyplňte vaše jméno." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Předmět zprávy má mít alespoň tři znaky." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Vyplňte předmět zprávy." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Došlo k chybě při odesílání zprávy." diff --git a/application/i18n/po/po-cs_CZ/core.po b/application/i18n/po/po-cs_CZ/core.po new file mode 100644 index 0000000000..448ee5fae6 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "konfigurační soubor" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "řadič" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "ovladač" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver for the %s library must implement the %s interface" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "The %s driver for the %s library could not be found" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "The requested filetype, .%s, is not allowed in your view configuration file" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "knihovna" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Adresář pro logy není zapisovatelný: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi nebyl schopen určit řadič pro zpracování tohoto požadaveku: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Prosím nastavte výchozí trasu do souboru config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Stránka, kterou požadujete, %s, nemohla být nalezena." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Oznámení tohoto problému Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "The requested %s, %s, could not be found" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Zísobník trasování" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "There can be only one instance of Ushahidi per page request" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "You must set the the view filename before calling render" diff --git a/application/i18n/po/po-cs_CZ/database.po b/application/i18n/po/po-cs_CZ/database.po new file mode 100644 index 0000000000..2a84c6b6af --- /dev/null +++ b/application/i18n/po/po-cs_CZ/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Chyba databáze: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabulka \"%s\" nebyla v databázi nalezena. Ujistěte se, že používáte nejnovější verzi databáze této verze Ushahidi." diff --git a/application/i18n/po/po-cs_CZ/datetime.po b/application/i18n/po/po-cs_CZ/datetime.po new file mode 100644 index 0000000000..2d837b0239 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "dop." + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Pá" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Pátek" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Po" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Pondělí" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "odp." + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "So" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sobota" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Ne" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Neděle" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Čt" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Čtvrtek" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Út" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Úterý" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Stř" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Středa" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Led" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Leden" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Úno" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Únor" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Bře" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Březen" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Dub" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Duben" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Kvě" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Květen" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Červen" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Červen" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Červenec" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Červenec" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Srp" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Srpen" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Zář" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Září" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Říj" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Říjen" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Říj" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Říjen" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Pro" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Prosinec" diff --git a/application/i18n/po/po-cs_CZ/feeds.po b/application/i18n/po/po-cs_CZ/feeds.po new file mode 100644 index 0000000000..1979895673 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATUM" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Název informačního kanálu musí mít nejméně 3 a ne více než 70 znaků." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Vložte název informačního kanálu." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Vložte URL informačního kanálu." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Vložte platnou adresu URL, např. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ZDROJ" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "NÁZEV" diff --git a/application/i18n/po/po-cs_CZ/footer.po b/application/i18n/po/po-cs_CZ/footer.po new file mode 100644 index 0000000000..4b98938031 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl není v systému nainstalováno" diff --git a/application/i18n/po/po-cs_CZ/form.po b/application/i18n/po/po-cs_CZ/form.po new file mode 100644 index 0000000000..23e5576a5e --- /dev/null +++ b/application/i18n/po/po-cs_CZ/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Jiří Vírava , 2013 +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Výchozí hodnota, kterou jste v poli poskytli je neplatná." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Název pole musí mít nejméně 3 znaky a ne více než 200 znaků." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Vložte hodnotu 0 až 50 pro udání výšky pole." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Vložil jste neplatnou hodnotu pro datové pole (date field)" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Zvolte \"Ano\" nebo \"Ne\" pro datové pole (date field)" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Název pole musí mít ne méně než 3 znaky a ne více než 100 znaků." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Vpište název pole." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Název, který jste zadali, v tomto formuláři již existuje. Prosím zadejte jiný." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Vložil jste neplatnou hodnotu pro dané pole." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Zvolte \"Ano\" nebo \"Ne\" pro dané pole" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Zvolte platný typ pole" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Zvolte typ pole." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Vložte hodnotu 0 až 300 pro udání šířky pole." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Napište popis formuláře." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Předem zadaný formulář (default form) není možné smazat." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Zvolte, jaký formulář je třeba přidat k tomuto poli." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Zvolte, jaký formulář je třeba přidat k tomuto poli." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Pole názvu formuláře (the form name field) musí mít ne méně než 3 a ne více než 100 znaků." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Napište název formuláře." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Formulář s tímto názvem již existuje. Prosím, vyberte si jiný." diff --git a/application/i18n/po/po-cs_CZ/imap.po b/application/i18n/po/po-cs_CZ/imap.po new file mode 100644 index 0000000000..49b0728748 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Nebylo možné otevřít \"IMAP stream\"" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Emailová služba není podporována" diff --git a/application/i18n/po/po-cs_CZ/installer.po b/application/i18n/po/po-cs_CZ/installer.po new file mode 100644 index 0000000000..2f3653a6cf --- /dev/null +++ b/application/i18n/po/po-cs_CZ/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Jiří Vírava , 2012 +# Jakub Sycha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Základní cesta" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Databáze" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Hostitel databáze" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Jméno databáze" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Název databáze, ve které chcete spustit Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "For more information, please check out this article on the wiki that talks about databases in more detail" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Výchozí jazyk (Národní prostředí)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Zakázat" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Povolit" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Listed below is a summary of the errors we encountered" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Dokončeno" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Obecné" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API klíč" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Každý se může dostat API klíč. Získat klíč" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Vrátit se" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "POKROČILÁ INSTALACE" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "ZÁKLADNÍ INSTALACE" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Pokračovat" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalace Úspěšná" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail Server" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Hostitel Mail Serveru" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Příklady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Hselo k Mail Serveru" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Heslo, které běžně používáte pro přihlášení k e-mailu" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Port Mail Serveru" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Běžné Porty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Typ Mail Serveru" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP), nebo Post Office Protocol (POP). Jaký je rozdíl? " + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Uživatelské jméno k Mail serveru" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Poskytovatel mapy" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi works equally well with any of these four mapping providers: Google, Bing, Yahoo or Open Street Map. Choose the one that has the most detail in your area" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Ostatní kroky..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Heslo" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Váše heslo k databázi" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Předchozí" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Prosím, restartujte Apache server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Povolit nebo zakázat SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Setup your SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "E-mailová aderesa stránky" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "E-mailová adresa stránky pro upozornění" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "When your site visitors sign up for email alerts, they will recieve emails from this address. This email address does not have to be the same as the Site Email Address" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "E-mailová adresa stránky, přes kterou bude proudit širší komunikace" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nízev stránky" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Název vaší stránky" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Slogan stránky" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Váš slogan" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "The files and folders listed below need to be writable by your webserver" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Here are instructions for changing file permissions:

\n\t " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "For the installation process, please have the following bits of information on hand" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Předpona tabulky" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normally you would not change the table prefix. However, If you want to run multiple Ushahidi installations from a single database you can do that by changing the prefix here" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Název" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Pro přihlášení, přejít na" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Nahrát data hlášení" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Uživatelské jméno" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Vaše uživatelské jméno k databázi" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "a použijte následující údaje" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Zobrazit váš web" diff --git a/application/i18n/po/po-cs_CZ/layer.po b/application/i18n/po/po-cs_CZ/layer.po new file mode 100644 index 0000000000..fe22484196 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Políčko barvy musí mít 6 znaků." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Políčko barva je povinná položka." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Políčko souboru neobsahuje platný soubor. Je možné použít pouze formáty .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Políčko souboru neobsahuje platný soubor" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Políčko se jménem musí mít alespoň 3 a ne více než 80 znaků." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Políčko se jménem je povinná položka." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Je nutné použít buď URL adresu KLM nebo soubor KLM" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Není možné zadat KML zároveň jako soubor i url adresu" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Vložte platnou URL adresu. Např. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-cs_CZ/libraries.po b/application/i18n/po/po-cs_CZ/libraries.po new file mode 100644 index 0000000000..3ad923c080 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Could not connect to akismet server" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "The response from Akismet could not be retrieved" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "The API library: %s, for the %s class could not be found. Please check your API task routing table." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Your Akismet API key is not valid" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current lenght=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Zadejte cílovou adresu (KOMU)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Zadejte cílovou adresu (OD)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current lenght=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Nepodporovaný způsob odeslání!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "The API library %s is invalid. All API libraries must be subclasses of %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s could not be deleted" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Chyba při extrahování: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Downloading the latest ushahidi failed. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s could not be copied" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s could not be deleted" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Aktualizační skript Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "The downloaded ushahidi zip file %s, could not be written" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s není k dispozici v RiverID třídě." diff --git a/application/i18n/po/po-cs_CZ/maintenance.po b/application/i18n/po/po-cs_CZ/maintenance.po new file mode 100644 index 0000000000..5146900bcc --- /dev/null +++ b/application/i18n/po/po-cs_CZ/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Je nám líto, ale naše stránky jsou v současné době nefunkční z důvodu údržby. Zkuste to prosím znovu za několik minut." diff --git a/application/i18n/po/po-cs_CZ/message.po b/application/i18n/po/po-cs_CZ/message.po new file mode 100644 index 0000000000..72af8c6036 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Zadejte, prosím, platný ověřovací kód" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Vložte ověřovací kód" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Je emailová adresa zadána ve správném formátu?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailová adresa musí mít ne méně než 4 a ne více než 64 znaků." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Emailová adresa se vyžaduje, když je zatrhnutý zaškrtávací rámeček." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Políčko s komentářem je vyžadováno." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Políčko se jménem musí obsahovat alespoň 3 znaky." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Políčko se jménem je povinná položka." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Políčko s telefonním číslem je neplatné." diff --git a/application/i18n/po/po-cs_CZ/mhi.po b/application/i18n/po/po-cs_CZ/mhi.po new file mode 100644 index 0000000000..8f2c3739e9 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Vložte, prosím, platný ověřovací kód." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Vložte, prosím, ověřovací kód." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Zadali jste správnou emailovou adresu?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Zadejte platnou emailovou adresu" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Políčko se zprávou je povinná položka." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Políčko předmět musí mít alespoň tři znaky." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Políčko předmět je povinnou položkou." diff --git a/application/i18n/po/po-cs_CZ/notifications.po b/application/i18n/po/po-cs_CZ/notifications.po new file mode 100644 index 0000000000..1b33f2dd2b --- /dev/null +++ b/application/i18n/po/po-cs_CZ/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Z vašeho webu byla zaslána tato zpráva" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login admina" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Na webu byl zadán nový komentář v odpověď na:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nový komentář" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Na web byla zaslána nová emailová zpráva" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nová emailová zpráva" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Nová zpráva byla zadána přes webové rozhraní" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nová zpráva" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Na web byla zaslána nová sms zpráva." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nová sms zpráva" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/page.po b/application/i18n/po/po-cs_CZ/page.po new file mode 100644 index 0000000000..8a44d79127 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/page.po @@ -0,0 +1,38 @@ +# +# Translators: +# Jiří Vírava , 2012 +# heather leson , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Zadejte prosím název stránky." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Název stránky musí být nejméně 3 a ne více než 150 znaků dlouhý." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Zadejte prosím jméno tabulky stránky." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Zadejte prosím popis stránky." diff --git a/application/i18n/po/po-cs_CZ/permissions.po b/application/i18n/po/po-cs_CZ/permissions.po new file mode 100644 index 0000000000..3093b0874d --- /dev/null +++ b/application/i18n/po/po-cs_CZ/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Zobrazit zprávy" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Vytvořit/Upravit/Odstranit zprávy" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Schválit zprávy" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Ověřit zprávy" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Správa komentářů zpráv" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Stáhnout zprávy" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Nahrát zprávy" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Spravovat Příspěvky" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Sparavovat Příspěvky reportérů" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ukázat statistiku" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Upravit nastavení" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Spravovat panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Spravovat uživatele" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Spravovat role" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Přístup správce UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Přístup uživatelů UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/private_message.po b/application/i18n/po/po-cs_CZ/private_message.po new file mode 100644 index 0000000000..3ce8b25d43 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Zdrojové ID musí být číslo" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Pole předmět je vyžadováno" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Předmět musí mít mezi 3 a 150 znaky" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Pole zprávy je vyžadováno" diff --git a/application/i18n/po/po-cs_CZ/report.po b/application/i18n/po/po-cs_CZ/report.po new file mode 100644 index 0000000000..c298dfc250 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Jiří Vírava , 2012 +# Pavel Dvořák , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-01-21 02:54+0000\n" +"Last-Translator: Pavel Dvořák \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "chyba!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Toto nasazení pokrývá hlášení pouze v rámci jedné země. Prosím, ujistěte se, že je umístění zprávy v rámci země %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Je nutné vyplnit povinné pole \"%s\"." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Je třeba zaškrtnout jednu nebo více kategorií." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Pole datum je povinné." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Chybí popis události." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Pole hodina je povinné." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Pole minuta je povinné." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Odkaz není ve správném formátu?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Prosím, zkontrolujte, že soubory s fotografiemi nemají více než 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Soubor s fotkou/obrázkem musí být ve formátu .JPG, .PNG a .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Soubor s fotkou/obrázkem není platným souborem" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Název má mít minimálně 3 a maximálně 100 znaků." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Chybí název události." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Zadejte prosím platnou hodnotu pro Ověřit toto hlášení." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Zadejte prosím platnou hodnotu pro Ověřit toto hlášení." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Odkaz není ve správném formátu?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Je zempisná šířka ve správném formátu?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Je třeba vyplnit zeměpisnou šířku. Klikněte na správné místo na mapě pro určení polohy." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Toto hlášení již má překlad pro tento jazyk." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Lokalita je vyžadována." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Položka \"Název lokality\" má mít minimálně 3 a maximálně 200 znaků." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Je třeba vyplnit položku \"Názav lokality\"." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Nezdá se, že pole zeměpisná délak obsahuje platnou zeměpisnou délku." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Pole zeměpisná délka je povinné. Prosím, klikněte na mapě a určite umístění." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Nezdá se, že pole e-mail obsahuje platnou e-mailovou adresu." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Email má mít minimálně 4 a maximálně 64 znaků." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Jméno má mít minimálně 3 a maximálně 100 znaků." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Příjmení má mít minimálně 3 a maximálně 100 znaků." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/reporters.po b/application/i18n/po/po-cs_CZ/reporters.po new file mode 100644 index 0000000000..7baad6eaf3 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude?" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Pole zeměpisná šířka je povinné. Prosím, klikněte do mapy a určete polohu." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level?" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level?" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude?" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/reports.po b/application/i18n/po/po-cs_CZ/reports.po new file mode 100644 index 0000000000..38efdaa4c6 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Ověřte prosím, že jste položku zkontrolovali" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Ověřte prosím, že jste položku zkontrolovali" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Hlášení musí být ketegorizovány před tím, než mohou být schváleny" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Nemáte oprávnění k provedení této akce" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/roles.po b/application/i18n/po/po-cs_CZ/roles.po new file mode 100644 index 0000000000..af5adf9ee4 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Popis pole musí být nejméně 3 a ne více než 100 znaků dlouhý." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Popis pole je povinný." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Název pole musí obsahovat pouze písmena nebo číslice." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Název pole musí být nejméně 2 a ne více než 30 znaků dlouhý." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Superadmin Role nelze změnit." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Název pole je povinný." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/settings.po b/application/i18n/po/po-cs_CZ/settings.po new file mode 100644 index 0000000000..c9e8c3b6eb --- /dev/null +++ b/application/i18n/po/po-cs_CZ/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "The allow comments field does not appear to contain a valid value?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "The allow reports field does not appear to contain a valid value?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default no. of records to be fetched per API request" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum no. of records to be fetched per API request" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum no. of API requests per IP address" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "The cache pages field does not appear to contain a valid value?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "The cache pages lifetime field does not appear to contain a valid value?" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs. Without \"index.php\" in the URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Konfigurace Mapy" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Výchozí místo" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "The color feed field does not appear to contain a valid value?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Pole Barva nesmí mít víc než 6 znaků." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Pole barva je vyžadováno." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Výchozí zobrazení mapy" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Výchozí úroveň přiblížení" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Načíst města z Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Pole portu Mail serveru by mělo obsahovat pouze čísla." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Pole Heslo pro Mail server je vyžadováno." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Nastavení možností - Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "To get the information below you will need to create a new facebook application at" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Povolit HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Úroveň přiblížení" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Vbrat poskytovatele map" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Zadat nový API klíč" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Získat API klíč" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Poskytovatel map" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Nastavení map" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Prosím vyberte výchozí zemi" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Zahrnout RSS News Feed do webových stránek" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Povolit uživatelům odeslat Hlášení" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet klíč" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Baner stránky" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Výchozí barva pro všechny kategorie" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Výchozí ikona pro všechny kategorie" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Odstarnit banerový obrázek" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Odstranit výchozí ikonu" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Zobrazit kontaktní stránku" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Zobrazit stránku \"Jak pomoci\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "E-mailová adresa pro upozornění" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "E-mailová adresa stránky" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Jazyk stránky" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Ručně schválovat uživatele" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Zpráva stránky" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Název stránky" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Soukromé nasazení" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Požadovat od uživatele e-mailové potvrzení" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Odeslat zprávu s hlášením" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Povolit Statistiky (uložené na serveru Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Slogan stránky" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Časové pásmo" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Nastavení stránky" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Pole e-mail musí být nejméně 4 a ne více 100 znaků dlouhé." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Pole název stránky musí být nejméně 3 a ne více 50 znaků dlouhé." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Pole název stránky je vyžadované." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Pole slogan musí být nejméně 3 a ne více 100 znaků dlouhé." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Pole slogan je povinné." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Vaše číslo pro Clickatell API" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Zkontrolujte, jaký je váš zůstatek kreditu na Clickatell " + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Načíst zůstatek kreditu" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Vače heslo pro Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Pro zaregistrování služeb Clickatellsklikněte zde" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Níže zadejte vaše přístupové informace pro Clikatell" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Vaše uživatelské jméno pro Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Níže zadejte v poli(ích) telefonní číslo(a) připojené k Frontline SMS" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Níže zadejte číslo bez + nebo pomlček" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Možnost 1: Použít Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Možnost 2: Použít globální SMS bránu" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Možnosti nastavení SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Pole telefon 1 by mělo obsahovat pouze čísla." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Pole telefon 2 by mělo obsahovat pouze čísla." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Pole telefon 3 by mělo obsahovat pouze čísla." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/sharing.po b/application/i18n/po/po-cs_CZ/sharing.po new file mode 100644 index 0000000000..1d0cbb8084 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Datum přidání" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Poslední přístup" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Barva musí být 6 znaků dlouhá." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Pole barva je povinné." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "The Sharing name does not appear to be valid?" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Jméno sdílení je povinné." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "The site url already exists" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "The site url does not appear to be valid?" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "The site url is required." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "The site url field does not appear to contain a valid URL?" diff --git a/application/i18n/po/po-cs_CZ/stats.po b/application/i18n/po/po-cs_CZ/stats.po new file mode 100644 index 0000000000..67d4138edf --- /dev/null +++ b/application/i18n/po/po-cs_CZ/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Schválené" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategorie" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Kategorie dopadů" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Tento graf podává přehled o zprávách v čase podle jejich zařazení v dané kategorii. Pohybujte se zleva doprava, abyste mohli porovnat různé kategorie. Přejeďte myší po grafu, abyste získali podrobnější informace." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Vyberte časové období." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Země" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Země" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Přehled podle zemí" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Vítejte, toto je sekce se statistikami. Obecné informace se zde objeví v blízké budoucnosti. Prozatím si tuto část můžete prohlednout (tím, že použijete odkazy na podkategorie)." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Chyba" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Slovníček" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Počet odkliků" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Zobrazení stránky" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Celkový počet stran, které si návštěvníci prohlédli na vašem webu" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Zprávy" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Kategorie zpráv" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statistiky zpráv" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Status zpráv" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Přehled zpráv (punchcard)" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Statistika zpráv" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistika není nastavena" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 měsíc" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 měsíce" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 měsíců" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Vše" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Neschválené" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Unikátní návštěvy" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Počet jednotlivců, kteří navštívili váš web; unikátní návštěvy se určují podle cookies. Pokud nemá internetový prohlížeč návštěvníka nastavené ukládání cookies, unikátní návštěvy se určují podle jednoduché heuristické metody (bere se v potaz IP adresa, rozlišení, prohlížeč, pluginy, operační systém, atd.) " + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Neprověřené" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Prověřené" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Shrnutí návštěv" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Počet návštěv" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Návštěva se chápe jako unikátní návštěva na webu po uplynutí 30 minut po posledním prohlížení webu tímto návštěvníkem." diff --git a/application/i18n/po/po-cs_CZ/tooltips.po b/application/i18n/po/po-cs_CZ/tooltips.po new file mode 100644 index 0000000000..47a1aed110 --- /dev/null +++ b/application/i18n/po/po-cs_CZ/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and NOT necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "If these actions happen on certain days of the week. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or shift for multiple day selection." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Tělo e-mailu, který bude odeslán." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Předmět e-mailu, který bude odeslán." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "You can select multiple days here. Dates are determined by your deployment timezone setting. Do not select any dates in order to default to all dates." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separate each value with a comma e.g value1, value2" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separate each choice item with a comma e.g. Item 1, Item 2 etc" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Start typing to list members" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Předmět soukromé zprávy" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Soukromá zpráva" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Vše e-mailová dresa" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Your full name" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Selecting YES lets you get alerts via email when new reports or comments are posted on your website" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Your password. Leave this field blank if you wish to keep your current password" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Toto je adresa, kde lze nalézt váš veřejný profil." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Your username cannot be changed" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level - 100. Public data is displayed at the lowest access level - 0." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default no. of records to be fetched per API request" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum no. of records to be fetched per API request" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum no. of API requests per IP Address" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "The site banner shows up at the top of the front end of your website, if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind, this will replace the site title and tagline from showing up at the top of the page." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Number of Block columns that will be displayed on each row" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin only themes will become enabled under your addons/themes settings page." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Set the map to cover a specific location " + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Set one color code for all the categories on the site" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "This is the country the site is being deployed" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "This is the hub for incoming messages" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "This synchronizes the messages in the hub with the Ushahidi platform" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Phone numbers through which the text messages are received" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Tracks visitors of your site. Get detailed visitor statistics" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "This defines which map is to be used on the site" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "This is the password for the email address that receives reports" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "This is required to accept incoming connections from the email address" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "This is required to enhance a secure connection" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "This is required to retrieve e-mails from the host server" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "This is the email address that receives reports" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "It is always a good idea to claim copyright on your work. For help in determining the right license for your needs, visit http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/ui_admin.po b/application/i18n/po/po-cs_CZ/ui_admin.po new file mode 100644 index 0000000000..9a199fac1d --- /dev/null +++ b/application/i18n/po/po-cs_CZ/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Přístup zamítnut. Buď jste nezadal správné ověřovací údaje anebo došlo k zamítnutí Vaší žádosti. " + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Přístup zamítnut. Váš požadavek byl systémem pochopen, ale zamítnut kvůli přístupovým omezením (např. časovým)." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Úroveň přístupu" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Akce" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Přidat do kategorie" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "Přidané" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Přidané/upravené" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "doplňky" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Upozornění" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Odeslat upozornění" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "dopoledne" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "anonymní" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Každý" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Kdekoli" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "zakázaný" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Logs/záznamy" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Nastavení API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "UNBAN (nezakázat)" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "UNBAN ALL (nezakázat vše)" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "schválené" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "schválené automaticky" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "schválené manuálně" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "archivované" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Jste si jisti, že to chcete" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Are you sure you want to delete this item" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Are you sure you want to delete this photo" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Are you sure you want to switch forms" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "emailová adresa autora" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "zpět" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Ban IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "zrušit" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategorie" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Chyba zobrazení (Error displaying chart)" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Ujistěte se, že je vaše zpráva platná" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Ujistěte se, že je zadané číslo platné" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Zkontrolujte nastavení SMS" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Nahraná města" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kód" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Barva" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Komentáře" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Potvrzující kód k zasílání novinek:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Uživatel byl:" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Země nebyla nalezena" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "vytvořené/upravené" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Nová zpráva" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritický upgrade" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "V současné době Aktivní" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "V současné době Neaktivní" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Nemáte dostatečná oprávnění k úpravám těchto uživatelských polí." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Denně" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Aktuálně" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "databáze" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Datum a čas" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dny v týdnu" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "smazáno" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Smazat" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Popis" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Zakázáno" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Stáhnout zprávy" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editoval" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editovat" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Není instalovaná knihovna IMAP PHP" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Chyba" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Chyba, zprávu není možné publikovat" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "každých šest hodin" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "každých dvanáct hodin" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimentální" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "informační kanál" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Zpětná vazba" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "Monitoring tisku (rss kanály)" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "předem nastavená hodnota (default value)" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Výška (v řádcích)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maximální počet písmen" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Název políčka" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Ano, Zavřeno ve výchozím nastavení" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Ano, Otevřeno ve výchozím nastavení" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Nebyl nalezen nahraný soubor" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Není možné otevřít soubor na čtení" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Tento formulář neexistuje! (That Form Does Not Exist!)" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Fórum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Místo pro text (Text Area Field - Free Text)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "z" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "od" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Nápověda" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Akce" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Přidat/upravit" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "E-mail" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Administrace uživatelů webu" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Oprávnění" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Uživatel" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Nápověda" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Každou hodinu" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Kanál zpráv pro (incident feed for)" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Instalační složka stále existuje. Odstraňte instalační složku. Je to potenciální chyba v zabezpečení." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Případ (instance)" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Případy (instances)" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detaily případu (instance details)" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Neplatný parametr" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP adresa" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Jedná se o políčko pro vyplnění data?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Kdo může zobrazit odpovědi" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Kdo může podat odpovědi" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Klíčové slovo" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Klíčová slova" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Emailová adresa" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Jméno a příjmení" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Heslo" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Role" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Login" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Vrstvy" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderátor" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Odhlásit se" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs (protokoly)" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Upravit části webu" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Nastavit role a oprávnění" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Zobrazit uživatele" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Přidat/upravit uživatele" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "Označeno, že se nejedná o spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "Označeno jako spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "jsme nenašli žádnou stránku." + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Zpráva" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Vzkazy" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Vzkazy z Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Vzkazy z twitteru" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Zpráva byla odeslána!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "schválené automaticky" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Chybí parametr" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderátor" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "pozměněné" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Upravit nastavení časového pásma" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "posunout dolů" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "posunout nahoru" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Můj profil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nové heslo" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Ne" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Oznámení" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Tato část není citlivá na velikost písmen." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Nenalezeno" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Žádná chyba" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Žádné výsledky k zobrazení!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "z" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "strana" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "stran" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Stránka nenalezena" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Použité parametry" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Heslo" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Resetovat heslo" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Dobrý den." + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Obdrželi jsme požadavek na resetování heslo pro " + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Pro změnu hesla, prosím, klikněte na odkaz níže anebo ho zkopírujte do nového okna prohlížeče." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Heslo bylo resetováno. Vaše údaje jsou následující" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Resetování hesla Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Prosím, vyberte" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "odpoledne" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Náhled" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Zpráva" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Soukromé zprávy" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Odeslat soukromé zprávy" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Předmět" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Komu" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Veřejný výpis" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "Přečíst/přečteno" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Zpravodajové" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Úrovně zpravodaje" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Admin zpráv" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Vyžadované" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Resetovat" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Výsledky" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Uložit nastavení" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Vyhledat" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Vyhledat hlášení" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "vyhledání" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Šifrovací klíč je stále nastavena na výchozí hodnotu. To je nebezpečné a je třeba ho změnit." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Pokyny jsou k dispozici na wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr " --- Zvolte typ pole --- " + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Zvolte položku" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Odesílatel" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Tato zpráva byla poslána z vašeho webu v" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Základní nastavení" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Strana" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Výsledky vyhledávání" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistika webu" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistika webu" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Chyba sběru statistiky webu! Buď nefunguje náš stats server nebo je problém ve vašem nastavení Ushahidi. Zkuste znovu později, jestli už je server funkční. Pokud chcete manuálně resetovat statistiky vašeho webu, změňte stat_id (nastavte na \"null\") a stat_key (nastavte na 0) v tabulce nastavení vaší databáze. Upozornění: přijdete o všechny dosavadní statistiky webu!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Sběr statistiky byl neúspěšný!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Superadmin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Úkol proveden" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Textové pole" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Jméno" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Nastavení uživatelů" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "do" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Celkový počet záznamů" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "do" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Přeložit zprávy" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "neschválené" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Neznámý" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "Nepřečtené" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Klikněte zde pro upgrade" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Nahrát zprávy (upload)" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Uživatelé" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Verzi" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "je možné nahradit zdokonalenou verzí programu (upgrade)." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Soukromé zprávy" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Zobrazit web" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Vítejte, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Ano" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Na váš dotaz" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-cs_CZ/ui_main.po b/application/i18n/po/po-cs_CZ/ui_main.po new file mode 100644 index 0000000000..4ba0a9bf2b --- /dev/null +++ b/application/i18n/po/po-cs_CZ/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# Jiří Vírava , 2013 +# Jiří Vírava , 2012-2013 +# Jakub Sycha , 2013 +# Pavel Dvořák , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "O nás" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Přístup" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Omezení přístupu" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Název účtu" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Opatření" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Tuto akci není možné vrátit zpět. Opravdu chcete pokračovat?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivovat" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktivní" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Přidat" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Přidal" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Další informace" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Další události" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Přidat/upravit" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Přidat pole" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Přidat jazyk" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Přidat nový" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Přidat novou kategorii" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Přidat překlad" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administrace" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Zasílání novinek" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Zaslat upozornění, když se objeví v okolí této oblasti:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Uložit" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr " E-mailová adresa:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "vložte emailovou adresu" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "vložte číslo mobilního telefonu spolu s mezinárodní předvolbou" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Zasílání novinek" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Upozornění bylo" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobilní telefon:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Zadejte pouze Vaši emailovou adresu, chcete-li dostávat jednou denně zprávy (ve 24:00) o nových událostech na mapě. Anebo vyberte níže konkrétní oblast, která Vás zajímá. Táhlem pod mapou můžete upřesnit i její velikost." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Nemůžete-li nalézt vaši adresu, označte ji na mapě špendlíkem" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr " RSS kanály (zkopírujte adresu)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Vyberte město" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "1) Zasílání novinek z mapy" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Zasílat upozornění na emailovou adresu:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Vyberte kategorie" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr " Potvrdit předešlý požadavek na upozornění" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Nastavení zasílání upozornění bylo uloženo!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Všechny" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Povoleno" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "všechny kategorie" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Kdykoliv" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "a" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Schválit" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Schváleno" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Schválené události" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Schválit tuto událost" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Přibližný" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "archiv" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "archivované" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Vzestupně" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "u" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Automatická kontrola" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Průměr zpráv za den" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Ke schválení" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "K ověření" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Značka" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Značky" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Obrázek značky" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Nebo si můžete místo toho nahrát svůj vlastní obrázek značky." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Balíček značek" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Vybrat zančku" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Prohlížet profily" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Zrušit" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategorie" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategorie" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtr kategorie" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategorie byla " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Název kategorie" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Změna časového období" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Změnit heslo" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Změnit můj obrázek" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Vybrat" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Vybrat data na nahrání" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Nebo si zvolte své vlastní časové období" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Vyberte typ pole" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Čisté url adresy" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Vyčistit" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Vyčistit mapu" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Zavřít" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "shluky" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Barva" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Komentář" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Komentáře" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detaily komentáře" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Vaše nastavení bylo uloženo!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Konfigurovat" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Úspěšně jste potvrdil svou e-mailovou adresu! Prosím, přihlaš te se." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Potvrzení e-mailem se nezdařilo! Níže můžete požádat o nové e-mailové potvrzení." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontakt" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Přepište kód" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Váš E-mail" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Vzkaz" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Váš vzkaz byl odeslán!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Vaše jméno" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Váš telefon" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Poslat vzkaz" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Předmět" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright (c) 2010 Ushahidi.com. Všechna práva vyhrazena." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Vytvořit" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Vytvořit/upravit" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Vytvořit novou" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Vytvořit nové heslo" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Nová zpráva" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Důvěryhodnost" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Současné heslo" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Vlastní pole" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informace" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(měsíc/den/rok v číslicích)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Datum & čas" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "den" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deaktivovat" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Praha, Česká republika" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Smazat" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Smazáno" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Vymazané" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Odstranění zakázáno" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Smazat poslední" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Smazat tuto zprávu" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Smazat vybrané" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Smazaný spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Popis" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Sestupně" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Například: roh ulic Lipanská a Seifertova, Praha" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detaily" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Přímá zpráva" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Zakázáno" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Neschválit" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Stáhnout zprávy" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Stáhnout" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Upravit" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Upravit pole formuláře" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Upravit zprávu" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Emailová adresa" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Mail Server Settings (nastavení mailového serveru)" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host (hostitel mailového serveru)" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Password (heslo)" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Mail Server SSL support (SSL podpora)" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Type (typ mailového serveru)" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Username (login mailového serveru)" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "je třeba, abyste uvedli nastavení odpovídající Vaší emailové schránce" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Pro zasílání událostí emailem, zadejte níže informace o Vaší emailové schránce. Vzhledem k tomu, že emaily budou chodit na Vaši emailovou adresu" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Některé servery vyžadují úplnou emailovou adresu" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Heslo emailového účtu" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Common ports (společné porty): 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Příklady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Příklady: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Umožnit nebo znemožnit SSL spojení" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "--- PRÁZDNÉ ---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "do" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Chyba!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Příklad" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Česká republika" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Externí Aplikace" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Externí video odkaz" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Zdroj" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Provide feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Zdroje" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Zdroj byl" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Položky zdroje" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Jméno zdroje" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL zdroje" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Nevyužitá pole" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Soubor" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Váš soubor má velikost přes maximální povolenou hodnotu." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtry" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtr zpráv" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrovat zprávy od" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrujte události obsahující" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Najít" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Vyhledejte adresu" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Jméno" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Spustit cron" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Zapomněl/a jste heslo?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulář" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formuláře" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Popis formuláře" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Upravit tento formulář" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Tento formulář byl" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Nadpis formuláře" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Od" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Celé jméno" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Dostupná GeoLocation" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Barva" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Komentáře" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Štítek" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Jdi" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "bylo" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Občanské iniciativy" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Skrytá" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "skrýt" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "schovat tuto zprávu" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Úvod" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Jak přidat" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Obrázek" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Obrázky" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Obrázek/ikonka" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Neaktivní" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Doručená pošta" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Událost" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Blízké události" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Poloha události" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Zahrnout" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Zahrnout kategorie" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Zahrnout vlastní pole" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Zahrnout popis" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Poskytnout co nejvíce detailů" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Zahrnout zeměpisnou šířku" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Zahrnout informace o poloze" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Zahrnout zeměpisnou délku" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Vložení osobních informací" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Z médií" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Vyhodnocení informace" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Zadat přesnou polohu" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Váš účet nemá dostatečná práva, pro plné přihlášení, kontaktujte prosím správce." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "V odpovědi na" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP adresa" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Je to váš profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "položka" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "položky" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detaily položky" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Název položky" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "klíč" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Klíčová slova" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "soubor KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Nahrát soubor KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Jazyk" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Minulý" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Minulý měsíc" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Příjmení" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Minulý rok" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Zeměpisná šířka" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Vrstvy" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Další vrstvy" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Vrstva byla" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Název vrstvy" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Adresa URL vrstvy" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Přidejte komentář" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Méně informací" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Úroveň" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Tato úroveň byla" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Název úrovně" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Omezené" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Odkaz" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Seznam" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Nahrávám události" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Poloha" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Polohy" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Modrava, Czech republic" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Přihlášení" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Účet byl úspěšně vytvořen. Můžete se nyní přihlásit." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Potvrzení bylo zasláno na váš email." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-mailová adresa neexistuje. Zkuste jinou adresu, nebo vytvořite účet." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Klikněte prosím na váš účet" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Přihlašte se" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email a heslo" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Registrace" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "zaregistrujte se" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Potvrzení registrace" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Schválení nového uživatele" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Uživatelský účet byl schválen" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Nemáte-li účet případně nechcete-li použít pro přihlášení některou z výše uvedených služeb" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Zeměpisná délka" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Označ jako přečtené" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Označ jako nepřečtené" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximální velikost souboru" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Média" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtr médií" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Členové" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Nastavení vašeho účtu" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Zpráva" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Zprávy" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detaily zprávy" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Zpráva z nečíselného zdroje:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobilní" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Upravit" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Upravit datum" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "měsíc" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Více" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Více informací" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Pro přístup musíte potvrdit svou e-mailovou adresu. Pokud jste ztratili svůj potvrzovací e-mail, můžete požádat níže o nový." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Jméno" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Nedaleká událost" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nový" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Novinky" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Zprávy z médií" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Zdroje" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nová kategorie" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nové heslo" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nová událost" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Další" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Ne" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Nezobrazovat žádné kontroly" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Žádná data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Žádné" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Upozornění" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Neschváleno" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Neschváleno" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "--- Nevybráno ---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Nejedná se o spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Neuvedeno" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Nejsou žádné události" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nenalezen žádný záznam" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Vyp." + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Monitoring tisku" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Zap." + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Možnost" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Volitelný" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Možnosti" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organizace" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizace" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Popis organizace" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email organizace" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organizace byla" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Název organizace" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telefonní číslo organizace 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Telefonní číslo 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Internetová stránka organizace" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Původní" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Původní popis" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Původní název" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Ostatní nasazení" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Odeslaná pošta" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Odchozí" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Stránka" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Stránky" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Popis stránky" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Stránka byla" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Název tabu stránky" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Název stránky" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Hlavní kategorie" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Heslo" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Vepište znovu heslo" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Heslo bylo úspěšně změněno ! Přihlašte se." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Zapomněli jste heslo?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Vyzvedněte si nové heslo ve Vaší poště." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Zůstat nalogovaný na tomto počítačí?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Minulý měsíc" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Minulý rok" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Čekající na schválení" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "na" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Osobní informace Optional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotografie" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Obrázky" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Obrázky a videa" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Vyhledejte polohu na mapě zadáním zeměpisné šířky a délky (formát: 38.19,-85.61) anebo klikněte na dané místo přímo na mapě" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Přehrát" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Všimněte si, prosím" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Pluginy" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Webová stránka Pluginů" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Veřejný profil" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL veřejného profilu" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Náhled" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Jednotlivý náhled" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Zpráva o náhledu" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Předchozí" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Soukromý" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Barva profilu" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Váš profil byl uložen" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Základní statistiky" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Hodnocení" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Číst" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Obdržet" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Obdržet od" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Obdržet upozornění" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Nedávno přidané události" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Načíst znovu zpravodajské kanály" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registrovaný Email" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Odstranit" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Odpovědět" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Událost" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Autor zprávy" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "autoři zprávy" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Datum" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email autora zprávy" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Jméno autora zprávy" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Zpravodaj byl" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP adresa autora zprávy" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Příjmení autora zprávy" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Úroveň zpravodaje" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Úrovně zpravodaje" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefonní číslo autora zprávy" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Události" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Prohlížet" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Přidat" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Události od tohoto uživatele" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategorie" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Zprávy" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Datum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Popis" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Události se nahrají ve formátu CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Možnosti" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Najít polohu" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Jméno" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Příjmení" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Upřesnění místa (pokud neexistuje přesná adresa)" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Odkaz na zdroje" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Volitelné informace" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Nahrát fotky/obrázky" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Zpět na přehled událostí" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Vybrat město" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Vaše zpráva byla odeslána. Děkujeme." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Přidat událost" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Čas" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Časová přímka" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Název" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Odkaz na video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Přidat událost" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Podrobnosti o zprávě" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Zasláním zprávy na " + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Mailem na " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Odesláním tweetu s hashtagem/y" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Vyplněním formuláře " + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Pomocí aplikace" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Vaše zpráva se uložila" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Název" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Žádost o více informací" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Vyžádat si polohu" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Požadováno" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Požadavky" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Znovu poslat potvrzovací e-mail" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Obnovit" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Smazat všechny filtry" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Resetovat heslo" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Získat názvy měst pro vybranou zemi" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Účty sparavuje %s služba." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Role" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Uložit" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Uloženo" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Uložit & Přidat nový" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Uložit & zavřít" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Uložit událost" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Rozvrh" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Tvůrce rozvrhu" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Den" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hodina" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Záznam tvůrce rozvrhu" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuta" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Den v týdnu" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Hledat" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Výsledky vyhledávání" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Bezpečnostní kód" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Vybrat vše" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Vybrat druh pole" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Vybrat druh formuláře" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Vybrat na mapě" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Vybrat tolik, kolik je třeba" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Prosím, zkontrolujte si, že jste zkontrolovali položku" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Vybrat téma" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Zaslat" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Odeslat Potvrzení" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Zasílané komu" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Zasláno" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Zasláno" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adresa serveru" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Typ serveru" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Služba" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Uživatelské jméno služby" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Uživatelské ID služby" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Sdílet" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Sdílená data" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Sdílení" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Kratší mapa" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Ukázat" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Ukázat vše" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Ukázat zprávy" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Webová stránka" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "kontakt na administrátora" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL internetové stránky" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Menší mapa" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Je nám líto, nemáte žádné značky." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Zdroj" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Název zdroje" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Seřadit" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Seřadit podle" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Zdrojové URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Podpora SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Od" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Krok" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Přidat událost" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Odeslat pomocí SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Odeslat SMS na" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "na telefonu" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Úspěch!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Import proběhl úspěšně" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Příjmení" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Prozkoumat" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Systém" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Vyšší Mapa" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Témata" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Předem nastavené Ushahidi téma" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Nastavení tématu" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Tento" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "dnes" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Tento měsíc" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Tento týden" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Tento rok" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Toto je váš profil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "čas" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "NÁZEV " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "do" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Dnes" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Dnes v" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Celkem událostí" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Přeloženo" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Přeložený popis" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Přeložený název" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Přeložit do" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Překlad" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Překlad byl uložen" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Důvěryhodné" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Typ" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Nelze odeslat e-mail." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Nezařazené Hlášení" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "nepřečteno" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Neověřeno" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Aktualizovat zpravodajské kanály" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Nahrát" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Průvodce nahráním XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Průvodce nahráním CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Soubor na nahrání" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Nahrát zprávy" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Pomocí níže umístěného formuláře můžete nahrát zprávy (into the Ushahidi engine)" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Hlášení musí být nahráno buď v CSV, nebo XML formátu." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Pokud již ID incidentu v databázi existuje, bude záznam v CSV / XML souboru ignorován." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Musí obsahovat alespoň název a datum incidentu." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Pokud nejsou zadány sloupce pro zeměpisnou šířku a délku, lze umístit geokódování pomocí Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Pokud importujete další informace, tj. osobní údaje a/nebo vlastní pole formuláře" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Nejméně jedeno z osobních informačních polí (jméno, příjmení, e-mail) položky MUSÍ existovat. Prázdné záznamy nebudou importovány" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Zaškrtávacího políčka jsou odděleny čárkou, např. pokud si vyberete volby z ovoce - jablka, manga a hrozny, měl by váš záznam být \"jablka, manga, hrozny\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Hodnoty polí Datum jsou v následujícím formátu: mm/dd/rrrr, např. 3. Října 2012 = 10.03.2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Ukázka hlášení přes CVS" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Nahrání proběhlo úspěšně" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Nahrát Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Uživatel" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Přihlašovací jméno" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Správce" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Ověření" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Ověřeno" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Ověřené události" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Ověřit" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Ověřit tuto událost" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Verze" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "přes" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Zobrazit" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Zobrazení" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Zobrazit vše" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Zobrazit všechny kanály" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Zobrazit všechny události" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Zobrazit položky" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Více" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Zobrazit veřejný profil" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Zobrazit událost" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Zobrazit události" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Zobrazit video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Viditelný" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Čeká na schválení" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Čeká na ověření" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Širší mapa" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Webový formulář" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Význam" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ano" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Včera" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Váš panel" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Váš profil" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "přiblížit" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "oddálit" diff --git a/application/i18n/po/po-cs_CZ/upgrade.po b/application/i18n/po/po-cs_CZ/upgrade.po new file mode 100644 index 0000000000..e7a8058d5b --- /dev/null +++ b/application/i18n/po/po-cs_CZ/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Jiří Vírava , 2013 +# Jiří Vírava , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Invalid input data. It can either be 0 for No and 1 for Yes." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatická aktualizace" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Dostupné aktualizace" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Pokračovat" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Aktualizovat" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Chystáte se aktualizovat databázi z verze" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "na nejnovější verzi" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Klikněte na tlačítko Aktualizovat a počkejte až se aktualizace provede." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Přejete-li si zálohovat databázi, zaškrtněte příslušné políčko." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Zálohovat databázi před aktualizací? (Silně doporučujeme!)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Databáze aktualizována" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi bylo aktualizováno! Než budete pokračovat, budete muset zaktualizovat databázi na nejnovější verzi (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Vaše verze databáze aktuální." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Aktualizace selhala" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Manuální aktualizace" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Průběh aktualizace" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Následující instrukce popisují, jak manuálně aktualizovat Váš systém Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "en_US: Krok 1: Stáhněte si poslední sestavení Ushahidi na stránkách http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Krok 2: Vyberte si mód, v jakém se připojíte k Vašemu webovému serveru (telnet, ftp, ssh) a nahraďte obsah složek soubory z nejnovějšího sestavení. Všechny KROMĚ:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Krok 4: Klikněte na tlačítko \"Pokračovat\" pro aktualizaci nezbytných tabulek." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr " Krok 3: Podívejte se dovnitř sql složky. Manuall run the upgrade-.sql soubory od aktuální verze db vaší instalace, až po finální aktualizační SQL soubor." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Pro automatickou aktualizaci klikněte na tlačítko níže" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Pro automatickou aktualizaci, klikněte na níže uvedené tlačítko." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "V současné době používáte Ushahidi v%1$s na databázi verze %2$d běžící na %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Aktualizuji" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Chcete-li pokračovat v jednoduché aktualizaci, jsou potřebné následující informace pro FTP server, kde je váš web umístěn." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP jméno hsotitele:" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP heslo:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP uživatelské jméno:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Máte nejnovější verzi Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Nemusíte aktualizovat." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Verze databáze: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Upozornění: Verze softwaru ve version.php a v databázi se neshodují." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Upozornění: Verze databáze ve version.php a databáze se neshodují." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Databáze:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Stahování nejnovější verze Ushahidi ..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Soubor Logu" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Úspěšně Staženo. Rozbalování ..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Stahování se nezdařilo." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Úspěšně Rozbaleno. Kopírování souborů ..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Rozbalování se nezdařilo." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Úspěšně zkopírováno. Aktualizace databáze ..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Kopírování souborů se nezdařilo." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Úspěšná záloha a aktualizace databáze." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Záloha databáze se nezdařila." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Úspěšní aktualizace databáze." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Mazání stažených souborů ..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "AKTUALIZACE ÚSPĚŠNÁ. Zobrazit Soubor Logu" diff --git a/application/i18n/po/po-cy/alerts.po b/application/i18n/po/po-cy/alerts.po new file mode 100644 index 0000000000..f90775bcfb --- /dev/null +++ b/application/i18n/po/po-cy/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-cy/auth.po b/application/i18n/po/po-cy/auth.po new file mode 100644 index 0000000000..5301c870cb --- /dev/null +++ b/application/i18n/po/po-cy/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-cy/bug.po b/application/i18n/po/po-cy/bug.po new file mode 100644 index 0000000000..c9eda3fb01 --- /dev/null +++ b/application/i18n/po/po-cy/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-cy/category.po b/application/i18n/po/po-cy/category.po new file mode 100644 index 0000000000..767901817d --- /dev/null +++ b/application/i18n/po/po-cy/category.po @@ -0,0 +1,92 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:05+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-cy/comments.po b/application/i18n/po/po-cy/comments.po new file mode 100644 index 0000000000..536e4b53bf --- /dev/null +++ b/application/i18n/po/po-cy/comments.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:23+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-cy/contact.po b/application/i18n/po/po-cy/contact.po new file mode 100644 index 0000000000..0c371669da --- /dev/null +++ b/application/i18n/po/po-cy/contact.po @@ -0,0 +1,75 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:24+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-cy/core.po b/application/i18n/po/po-cy/core.po new file mode 100644 index 0000000000..dbfa5fe113 --- /dev/null +++ b/application/i18n/po/po-cy/core.po @@ -0,0 +1,156 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-cy/database.po b/application/i18n/po/po-cy/database.po new file mode 100644 index 0000000000..996a261098 --- /dev/null +++ b/application/i18n/po/po-cy/database.po @@ -0,0 +1,27 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-cy/datetime.po b/application/i18n/po/po-cy/datetime.po new file mode 100644 index 0000000000..9db3680ff5 --- /dev/null +++ b/application/i18n/po/po-cy/datetime.po @@ -0,0 +1,215 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-cy/feeds.po b/application/i18n/po/po-cy/feeds.po new file mode 100644 index 0000000000..b98de8773f --- /dev/null +++ b/application/i18n/po/po-cy/feeds.po @@ -0,0 +1,52 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-cy/footer.po b/application/i18n/po/po-cy/footer.po new file mode 100644 index 0000000000..b747ca5ffc --- /dev/null +++ b/application/i18n/po/po-cy/footer.po @@ -0,0 +1,20 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-cy/form.po b/application/i18n/po/po-cy/form.po new file mode 100644 index 0000000000..960e4f425a --- /dev/null +++ b/application/i18n/po/po-cy/form.po @@ -0,0 +1,120 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-cy/imap.po b/application/i18n/po/po-cy/imap.po new file mode 100644 index 0000000000..bb27492f64 --- /dev/null +++ b/application/i18n/po/po-cy/imap.po @@ -0,0 +1,25 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-cy/installer.po b/application/i18n/po/po-cy/installer.po new file mode 100644 index 0000000000..c984d2c783 --- /dev/null +++ b/application/i18n/po/po-cy/installer.po @@ -0,0 +1,408 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-cy/layer.po b/application/i18n/po/po-cy/layer.po new file mode 100644 index 0000000000..9d7e83d8b5 --- /dev/null +++ b/application/i18n/po/po-cy/layer.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-cy/libraries.po b/application/i18n/po/po-cy/libraries.po new file mode 100644 index 0000000000..b439ee8e3d --- /dev/null +++ b/application/i18n/po/po-cy/libraries.po @@ -0,0 +1,116 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-cy/maintenance.po b/application/i18n/po/po-cy/maintenance.po new file mode 100644 index 0000000000..30e08671fd --- /dev/null +++ b/application/i18n/po/po-cy/maintenance.po @@ -0,0 +1,22 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:42+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-cy/message.po b/application/i18n/po/po-cy/message.po new file mode 100644 index 0000000000..1ef8b063a5 --- /dev/null +++ b/application/i18n/po/po-cy/message.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-cy/mhi.po b/application/i18n/po/po-cy/mhi.po new file mode 100644 index 0000000000..2a8cf3f99b --- /dev/null +++ b/application/i18n/po/po-cy/mhi.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-cy/notifications.po b/application/i18n/po/po-cy/notifications.po new file mode 100644 index 0000000000..a7ea4d2b14 --- /dev/null +++ b/application/i18n/po/po-cy/notifications.po @@ -0,0 +1,90 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-cy/page.po b/application/i18n/po/po-cy/page.po new file mode 100644 index 0000000000..17fbae975c --- /dev/null +++ b/application/i18n/po/po-cy/page.po @@ -0,0 +1,35 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-cy/permissions.po b/application/i18n/po/po-cy/permissions.po new file mode 100644 index 0000000000..685bffb164 --- /dev/null +++ b/application/i18n/po/po-cy/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-cy/private_message.po b/application/i18n/po/po-cy/private_message.po new file mode 100644 index 0000000000..65869af5e5 --- /dev/null +++ b/application/i18n/po/po-cy/private_message.po @@ -0,0 +1,45 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 21:14+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-cy/report.po b/application/i18n/po/po-cy/report.po new file mode 100644 index 0000000000..9b021e51e4 --- /dev/null +++ b/application/i18n/po/po-cy/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-cy/reporters.po b/application/i18n/po/po-cy/reporters.po new file mode 100644 index 0000000000..1d4afab85e --- /dev/null +++ b/application/i18n/po/po-cy/reporters.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-cy/reports.po b/application/i18n/po/po-cy/reports.po new file mode 100644 index 0000000000..dfb4efcf30 --- /dev/null +++ b/application/i18n/po/po-cy/reports.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-cy/roles.po b/application/i18n/po/po-cy/roles.po new file mode 100644 index 0000000000..58cd6959a5 --- /dev/null +++ b/application/i18n/po/po-cy/roles.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-cy/settings.po b/application/i18n/po/po-cy/settings.po new file mode 100644 index 0000000000..c560595d74 --- /dev/null +++ b/application/i18n/po/po-cy/settings.po @@ -0,0 +1,857 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/projects/p/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-cy/sharing.po b/application/i18n/po/po-cy/sharing.po new file mode 100644 index 0000000000..3af68ec73e --- /dev/null +++ b/application/i18n/po/po-cy/sharing.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 07:00+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-cy/stats.po b/application/i18n/po/po-cy/stats.po new file mode 100644 index 0000000000..3847d65250 --- /dev/null +++ b/application/i18n/po/po-cy/stats.po @@ -0,0 +1,196 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-cy/tooltips.po b/application/i18n/po/po-cy/tooltips.po new file mode 100644 index 0000000000..bf0228a642 --- /dev/null +++ b/application/i18n/po/po-cy/tooltips.po @@ -0,0 +1,582 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-cy/ui_admin.po b/application/i18n/po/po-cy/ui_admin.po new file mode 100644 index 0000000000..7b0727d6ed --- /dev/null +++ b/application/i18n/po/po-cy/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-cy/ui_main.po b/application/i18n/po/po-cy/ui_main.po new file mode 100644 index 0000000000..bd0347dfba --- /dev/null +++ b/application/i18n/po/po-cy/ui_main.po @@ -0,0 +1,3167 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2012-06-07 02:50+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-cy/upgrade.po b/application/i18n/po/po-cy/upgrade.po new file mode 100644 index 0000000000..830c07d433 --- /dev/null +++ b/application/i18n/po/po-cy/upgrade.po @@ -0,0 +1,298 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:50+0000\n" +"Language-Team: Welsh (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-cy_GB/alerts.po b/application/i18n/po/po-cy_GB/alerts.po new file mode 100644 index 0000000000..37ca609301 --- /dev/null +++ b/application/i18n/po/po-cy_GB/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-cy_GB/auth.po b/application/i18n/po/po-cy_GB/auth.po new file mode 100644 index 0000000000..3fc0c82196 --- /dev/null +++ b/application/i18n/po/po-cy_GB/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-cy_GB/bug.po b/application/i18n/po/po-cy_GB/bug.po new file mode 100644 index 0000000000..dd9e1144b5 --- /dev/null +++ b/application/i18n/po/po-cy_GB/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-cy_GB/category.po b/application/i18n/po/po-cy_GB/category.po new file mode 100644 index 0000000000..00e767a881 --- /dev/null +++ b/application/i18n/po/po-cy_GB/category.po @@ -0,0 +1,88 @@ +#. extracted from en_US/category.php, cy_GB/category.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/comments.po b/application/i18n/po/po-cy_GB/comments.po new file mode 100644 index 0000000000..1702aa9a22 --- /dev/null +++ b/application/i18n/po/po-cy_GB/comments.po @@ -0,0 +1,58 @@ +#. extracted from en_US/comments.php, cy_GB/comments.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/contact.po b/application/i18n/po/po-cy_GB/contact.po new file mode 100644 index 0000000000..e450bd352c --- /dev/null +++ b/application/i18n/po/po-cy_GB/contact.po @@ -0,0 +1,73 @@ +#. extracted from en_US/contact.php, cy_GB/contact.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/core.po b/application/i18n/po/po-cy_GB/core.po new file mode 100644 index 0000000000..df1011b889 --- /dev/null +++ b/application/i18n/po/po-cy_GB/core.po @@ -0,0 +1,143 @@ +#. extracted from en_US/core.php, cy_GB/core.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/database.po b/application/i18n/po/po-cy_GB/database.po new file mode 100644 index 0000000000..5066b60f02 --- /dev/null +++ b/application/i18n/po/po-cy_GB/database.po @@ -0,0 +1,23 @@ +#. extracted from en_US/database.php, cy_GB/database.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/datetime.po b/application/i18n/po/po-cy_GB/datetime.po new file mode 100644 index 0000000000..294c58a917 --- /dev/null +++ b/application/i18n/po/po-cy_GB/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Gwe" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Gwener" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Llun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Llun" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sad" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sadwrn" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Sul" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Sul" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Iau" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Iau" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Maw" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Mawrth" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ion" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Ionawr" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Chw" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Chwefror" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Maw" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Mawrth" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Ebr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Ebrill" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mai" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Meh" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Mehefin" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Gor" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Gorffennaf" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Awst" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Awst" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Medi" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Medi" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Hyd" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Hydref" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Tach" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Tachwedd" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Rhag" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Rhagfyr" diff --git a/application/i18n/po/po-cy_GB/feeds.po b/application/i18n/po/po-cy_GB/feeds.po new file mode 100644 index 0000000000..376104eb30 --- /dev/null +++ b/application/i18n/po/po-cy_GB/feeds.po @@ -0,0 +1,48 @@ +#. extracted from en_US/feeds.php, cy_GB/feeds.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/footer.po b/application/i18n/po/po-cy_GB/footer.po new file mode 100644 index 0000000000..bb76ab32af --- /dev/null +++ b/application/i18n/po/po-cy_GB/footer.po @@ -0,0 +1,18 @@ +#. extracted from en_US/footer.php, cy_GB/footer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/form.po b/application/i18n/po/po-cy_GB/form.po new file mode 100644 index 0000000000..7df6b78faa --- /dev/null +++ b/application/i18n/po/po-cy_GB/form.po @@ -0,0 +1,103 @@ +#. extracted from en_US/form.php, cy_GB/form.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/imap.po b/application/i18n/po/po-cy_GB/imap.po new file mode 100644 index 0000000000..77cd8dc7a6 --- /dev/null +++ b/application/i18n/po/po-cy_GB/imap.po @@ -0,0 +1,23 @@ +#. extracted from en_US/imap.php, cy_GB/imap.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/installer.po b/application/i18n/po/po-cy_GB/installer.po new file mode 100644 index 0000000000..c6cd092412 --- /dev/null +++ b/application/i18n/po/po-cy_GB/installer.po @@ -0,0 +1,353 @@ +#. extracted from en_US/installer.php, cy_GB/installer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/layer.po b/application/i18n/po/po-cy_GB/layer.po new file mode 100644 index 0000000000..f5d5dac017 --- /dev/null +++ b/application/i18n/po/po-cy_GB/layer.po @@ -0,0 +1,58 @@ +#. extracted from en_US/layer.php, cy_GB/layer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/libraries.po b/application/i18n/po/po-cy_GB/libraries.po new file mode 100644 index 0000000000..ab7942cc77 --- /dev/null +++ b/application/i18n/po/po-cy_GB/libraries.po @@ -0,0 +1,108 @@ +#. extracted from en_US/libraries.php, cy_GB/libraries.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/maintenance.po b/application/i18n/po/po-cy_GB/maintenance.po new file mode 100644 index 0000000000..f92d8d26a0 --- /dev/null +++ b/application/i18n/po/po-cy_GB/maintenance.po @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, cy_GB/maintenance.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/message.po b/application/i18n/po/po-cy_GB/message.po new file mode 100644 index 0000000000..5fa0ae9ad6 --- /dev/null +++ b/application/i18n/po/po-cy_GB/message.po @@ -0,0 +1,58 @@ +#. extracted from en_US/message.php, cy_GB/message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/mhi.po b/application/i18n/po/po-cy_GB/mhi.po new file mode 100644 index 0000000000..1efe9eaeb0 --- /dev/null +++ b/application/i18n/po/po-cy_GB/mhi.po @@ -0,0 +1,48 @@ +#. extracted from en_US/mhi.php, cy_GB/mhi.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/notifications.po b/application/i18n/po/po-cy_GB/notifications.po new file mode 100644 index 0000000000..26af3b2cbd --- /dev/null +++ b/application/i18n/po/po-cy_GB/notifications.po @@ -0,0 +1,88 @@ +#. extracted from en_US/notifications.php, cy_GB/notifications.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/page.po b/application/i18n/po/po-cy_GB/page.po new file mode 100644 index 0000000000..e4a9bd7a91 --- /dev/null +++ b/application/i18n/po/po-cy_GB/page.po @@ -0,0 +1,33 @@ +#. extracted from en_US/page.php, cy_GB/page.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/permissions.po b/application/i18n/po/po-cy_GB/permissions.po new file mode 100644 index 0000000000..12d4998450 --- /dev/null +++ b/application/i18n/po/po-cy_GB/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-cy_GB/private_message.po b/application/i18n/po/po-cy_GB/private_message.po new file mode 100644 index 0000000000..5346707279 --- /dev/null +++ b/application/i18n/po/po-cy_GB/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, cy_GB/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/report.po b/application/i18n/po/po-cy_GB/report.po new file mode 100644 index 0000000000..aece79773e --- /dev/null +++ b/application/i18n/po/po-cy_GB/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-cy_GB/reporters.po b/application/i18n/po/po-cy_GB/reporters.po new file mode 100644 index 0000000000..0ee1569017 --- /dev/null +++ b/application/i18n/po/po-cy_GB/reporters.po @@ -0,0 +1,63 @@ +#. extracted from en_US/reporters.php, cy_GB/reporters.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/reports.po b/application/i18n/po/po-cy_GB/reports.po new file mode 100644 index 0000000000..f75a0fefcc --- /dev/null +++ b/application/i18n/po/po-cy_GB/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, cy_GB/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/roles.po b/application/i18n/po/po-cy_GB/roles.po new file mode 100644 index 0000000000..16d2d84372 --- /dev/null +++ b/application/i18n/po/po-cy_GB/roles.po @@ -0,0 +1,58 @@ +#. extracted from en_US/roles.php, cy_GB/roles.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/settings.po b/application/i18n/po/po-cy_GB/settings.po new file mode 100644 index 0000000000..c08b5b472e --- /dev/null +++ b/application/i18n/po/po-cy_GB/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-cy_GB/sharing.po b/application/i18n/po/po-cy_GB/sharing.po new file mode 100644 index 0000000000..a2cf628d50 --- /dev/null +++ b/application/i18n/po/po-cy_GB/sharing.po @@ -0,0 +1,68 @@ +#. extracted from en_US/sharing.php, cy_GB/sharing.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:51+0000\n" +"PO-Revision-Date: 2012-08-17 06:51+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/stats.po b/application/i18n/po/po-cy_GB/stats.po new file mode 100644 index 0000000000..d657cd3487 --- /dev/null +++ b/application/i18n/po/po-cy_GB/stats.po @@ -0,0 +1,183 @@ +#. extracted from en_US/stats.php, cy_GB/stats.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-cy_GB/tooltips.po b/application/i18n/po/po-cy_GB/tooltips.po new file mode 100644 index 0000000000..f0cc637bdf --- /dev/null +++ b/application/i18n/po/po-cy_GB/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-cy_GB/ui_admin.po b/application/i18n/po/po-cy_GB/ui_admin.po new file mode 100644 index 0000000000..09c27514a9 --- /dev/null +++ b/application/i18n/po/po-cy_GB/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-cy_GB/ui_main.po b/application/i18n/po/po-cy_GB/ui_main.po new file mode 100644 index 0000000000..935f0e5dc6 --- /dev/null +++ b/application/i18n/po/po-cy_GB/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Am y wefan " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Mynediad" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Terfynau Mynediad" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Enw Cyfrif" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Gweithredoedd" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Nid yw’n bosib dadwneud y weithred hon. Ydych chi’n siwr eich bod am barhau?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Gweithredu" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Gweithredol" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Ychwanegu" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Ychwanegwyd Gan" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Data Ychwanegol" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Adroddiadau Ychwanegol" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Ychwanegu/Golygu" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Ychwanegu Maes" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Ychwanegu Iaith" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Ychwanegu" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Ychwanegu Categori Newydd" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Ychwanegu Cyfieithiad Newydd" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Gweinyddu" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Derbyn diweddariadau" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Anfonwch ddiweddariad i mi os caiff adroddiad ei gofnodi yn, neu yn agos at:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Cadw fy niweddariad" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Cyfeiriad E-bost:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "gosodwch eich cyfeiriad E-bost" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "gosodwch eich rhif ffôn gyda chôd y wlad" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Derbyn Diweddariadau" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Ffôn Symudol:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Neu, gosodwch ddot ar y map isod, a byddwn yn anfon neges atoch chi pan fyddwn yn derbyn adroddiad sydd o fewn 20 cilomedr i chi." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Os na allwch ddod o hyd i’ch lleoliad, yna cliciwch ar y map i nodi'r lleoliad cywir." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Ffrwd RSS (copiwch yr url isod)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Dewiswch ddinas" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Cam 1: Dewiswch eich dinas neu leoliad:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Cam 2: Anfon neges rybuddio i’m:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Cam 3 (Optional): Dewis Categoriau" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Cadarnhau Cais Blaenorol am Neges Ddiweddaru" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Cafodd Eich Cais ei Gadw!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Pob Un" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Wedi’u Caniatau" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Pob Categori" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Cyfnod Cyfan" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "ac" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Derbyn" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Derbyniwyd" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Adroddiadau a Dderbyniwyd" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Derbyn yr Adroddiad hwn" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Tua" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archif" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archifwyd" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "am" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Awdur" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Nodi Lle Awtomatig" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Cyfartaledd Adroddiadau y Dydd" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Aros i gael ei Dderbyn" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Aros i gael ei Wirio" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Bathodyn" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Bathodynnau" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Delwedd Bathodyn" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Neu gallwch lwytho eich delwedd bathodyn eich hun i fyny yn lle" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Pecyn Bathodynnau" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Dewiswch Fathodyn" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Pori Proffiliau" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Canslo" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorïau" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categori" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Hidlydd Categorïau" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Cafodd y categori hwn ei " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Enw Categori" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Newid Ystod Dyddiadau" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Newid Cyfrinair" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Newid Fy Llun" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Dewiswch" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Dewiswch bwyntiau data i’w lawrlwytho" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Neu dewiswch eich ystod dyddiadau eich hunan" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Dewiswch y math o faes" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLau Glân" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Clirio" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Clirio Map" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Cau" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "clystyrau" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Lliw" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Rhowch Sylw" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Sylwadau" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Manylion y Sylw" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Cadwyd Eich Gosodiadau!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Addasu" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Rydych chi wedi llwyddo i gadarnhau eich cyfeiriad e-bost! Mewngofnodwch isod." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Cysylltwch â Ni" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Cod Diogelwch" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Eich E-bost" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Neges" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Anfonwyd Eich Neges!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Eich Enw" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Eich Rhif Ffôn" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Anfon Neges" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Pwnc y Neges" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Hawlfraint ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Creu" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Creu/Golygu" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Creu un Newydd" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Creu Cyfrinair Newydd" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Creu Adroddiad" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credadwyedd" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Cyfrinair Cyfredol" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Meysydd Cyfaddas" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Gwybodaeth" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Dyddiad" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/bbbb)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Dyddiad ac Amser" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dydd" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Dadweithredu" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Aberystwyth, Cymru" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Dileu" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Dilëwyd" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Dileadau" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Analluogi Dileu" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Dileu y Diwethaf" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Dileu yr Adroddiad Hwn" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Dileu'r rhai a Ddewiswyd " + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Dileu Sbam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Disgrifiad" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Enghraifft: Gyferbyn â'r stadiwm, Stryd Westgate, Caerdydd" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Manylion" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Adroddiad Uniongyrchol" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Analluogwyd" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Dad-dderbyn" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Lawrlwytho Adroddiadau" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Golygu" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Golygu Maesydd y Ffurflen" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Golygu Adroddiad" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-bost" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Cyfeiriad E-bost" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Gosodiadau Gweinydd E-bost" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Gwesteiwr y Gweinydd E-bost" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Cyfrinair y Gweinydd E-bost" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Porth y Gweinydd E-bost" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Cefnogaeth SSL y Gweinydd E-bost" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Math o Weinydd E-bost" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Enw Defnyddiwr y Gweinydd E-bost" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "felly rhaid i’ch gosodiadau gael eu cysylltu gyda’r cyfeiriad E-bost hwn" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Er mwyn derbyn adroddiadau drwy E-bost, rhowch fanylion eich cyfrif E-bost isod. Noder y byddwch yn derbyn E-bost yn eich" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Mae angen cyfeiriad E-bost cyflawn ar rai gweinyddion" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Cyfrinair cyfrif E-bost" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Pyrth cyffredin: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Engh: mail.dywefan.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Enghreifftiau: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Galluogi neu analluogi cysylltiadau SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---GWAG---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "at" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Gwall!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Esiampl" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Cymru" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Apiau Allanol" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Dolen i Fideo Allanol" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Ffrwd" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Anfon Adborth" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Ffrydiau" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Mae’r ffrwd wedi cael ei" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Eitemau’r Ffrwd" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Enw’r Ffrwd" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL y Ffrwd" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Maes gwag" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Ffeil" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Mae eich ffeil yn rhy fawr. Mae’n fwy na’r maint mwyaf posibl" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Hidlau" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Hidlo adroddiadau" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Hidlo adroddiadau trwy" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Hidlo adroddiadau gyda" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Chwilio" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Chwilio am Leoliad" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Enw Cyntaf" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Gorfodi i Redeg y Amserlennydd" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Wedi anghofio dy gyfrinair?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Ffurflen" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Ffurflenni" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Disgrifiad y Ffurflen" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Golygwch y Ffurflen" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Mae eich ffurflen wedi cael ei" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Teitl y Ffurflen" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Oddi Wrth" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Enw Llawn" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLeoliad Ar Gael" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Lliw" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Sylwadau" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Lled Strôc" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Mynd" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Tag Hash" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Wedi Cael ei" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Sut i Helpu" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Cudd" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Cuddio" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "cuddio’r neges hon" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Adref" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Sut i Anfon Adroddiad" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Defnyddir fel y gall defnyddwyr eraill y wefan yn eich adnabod." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Delwedd" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Delweddau" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Delwedd/Eicon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Heb ei Alluogi" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Mewnflwch" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Digwyddiad" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Digwyddiadau Cyfagos" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Lleoliad Digwyddiad" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Cynnwys" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Cynnwys Categorïau" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Cynnwys Meysydd Cyfaddas" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Cynnwys Disgrifiad" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Rhowch gymaint o fanylion â sy’n bosibl" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Cynnwys Lledred" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Cynnwys Gwybodaeth am Leoliad" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Cynnwys Hydred" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Cyfryngau Sy’n Dod Mewn" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Asesu Gwybodaeth" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Rhowch eich lleoliad yn fanwl gywir" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Nid oes gan eich cyfrif yr hawliau cywir i’ch mewngofnodi. Cysylltwch â’r gweinyddwr." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Mewn ymateb i" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Cyfeiriad IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Ai hwn yw eich proffil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "eitem" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "eitemau" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "manylion eitem" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Teitl Eitem" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Allwedd" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Ffeil KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Llwytho Ffeil KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Iaith" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Blaenorol" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Mis Blaenorol" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Cyfenw" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Blwyddyn Flaenorol" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Lledred" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Haenau" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Haenau arall" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Mae’r Haen Wedi Cael Ei" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Enw haen" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL Haen" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Gwnewch Sylw" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Llai o Wybodaeth" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Lefel" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Mae’r lefel hwn wedi cael ei" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Enw Lefel" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Cyfyngedig" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Dolen" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Rhestr" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Wrthi’n Llwytho Adroddiadau" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Lleoliad" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Lleoliadau" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Tref, Sir a/neu Wlad" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Mewngofnodi" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Crëwyd y Cyfrif yn llwyddiannus. Fe allwch chi fewngofnodi nawr." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Mae neges gadarnhau wedi ei danfon i’ch cyfeiriad E-bost." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Nid yw’r cyfeiriad E-bost hwnnw’n bodoli. Darparwch gyfeiriad arall neu crëwch gyfrif" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Cliciwch ar ddarparwr eich cyfrif" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Mewngofnodi gyda" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-bost a Chyfrinair" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Cofrestru" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Creu Cyfrif" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Cadarnhad Cofrestru" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Crëwch gyfrif nawr i fanteisio ar fwy o nodweddion y wefan hon." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Hydred" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Nodi fel Darllenwyd" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Nodi fel heb ei ddarllen" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Uchafswm maint ffeil" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Cyfryngau" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Hidlydd Cyfryngau" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Aelodau" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Rheoli Eich Cyfrif" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Neges" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Negeseuon" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Manylion y Neges" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Neges o ffynhonnell an-rhifol:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Symudol" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Newid" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Newid Dyddiad" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mis" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Mwy" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Mwy o Wybodaeth" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Ydi’r Gosodiad Ushahidi Hwn yn Pontio Nifer o Wledydd" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Rhaid i chi gadarnhau eich cyfeiriad E-bost i cael mynediad i’r system hwn. Os ydych chi wedi colli eich E-bost cadarnhau, fe allwch chi ofyn am un arall isod." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Enw" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Adroddiad Cyfagos" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Newydd" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Newyddion" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Ffrydiau Newyddion" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Ffynhonnell Newyddion" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Categori Newydd" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Cyfrinair Newydd" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Adroddiad Newydd" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Nesaf" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Na" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Dim nodau lle i’w dangos." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Dim data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Dim byd" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Hysbysiadau" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Heb ei Gymeradwyo" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Heb ei Gymeradwyo" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Heb ei Ddewis---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "nid sbam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Heb ei Benodi" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Nid oes adroddiadau" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nid oes canlyniadau" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "I Ffwrdd" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Newyddion Swyddogol & Prif-ffrwd" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Ymlaen" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Dewis" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Dewisol" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Dewisiadau" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Sefydliad" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Sefydliad" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Disgrifiad Sefydliad" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "E-bost Sefydliad" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Mae’r Sefydliad wedi" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Enw’r Sefydliad" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Rhif ffôn Sefydliad 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Rhif ffôn Sefydliad 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Gwefan y Sefydliad" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Gwreiddiol" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Disgrifiad Gwreiddiol" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Teitl Gwreiddiol" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Gosodiad Arall" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Blwch allan" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "I’w Danfon" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Tudalen" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Tudalennau" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Disgrifiad Tudalen" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Mae’r Dudalen Wedi Cael Ei" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Enw Tab Tudalen" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Teitl Tudalen" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categori Rhiant" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Cyfrinair" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Gwirio Cyfrinair" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Newidwyd y cyfrinair yn llwyddiannus! Mewngofnodwch isod." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Wedi anghofio’ch cyfrinair?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Edrychwch am E-bost yn cynnwys eich cyfrinair newydd." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Cadw wedi mewngofnodi ar y cyfrifiadur hwn?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mis Diwethaf" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Blwyddyn Diwethaf" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Yn disgwyl" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "yr" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Gwybodaeth Bersonol Dewisol." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Ffôn" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Ffotograffau" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Lluniau" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Lluniau a Fideos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Chwiliwch am eich lleoliad drwy ddefnyddio enw lleoliad o gyfesurynnau lledred, hydred (fformat: 38.19,-85.61), neu cliciwch ar y map i nodi eich lleoliad cywir" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Chwarae" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Nodwch" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Ategion" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Gwefan Ategion" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Proffil Cyhoeddus" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL Proffil Cyhoeddus" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Rhagolwg" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Rhagolwg Eitem" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Rhagolwg Neges" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Blaenorol" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Preifat" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Lliw Proffil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Mae’ch Proffil wedi ei gadw" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Ystadegau Cyflym" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Graddiad" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Darllen" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Derbyn" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Derbyn oddi wrth" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Derbyn Hysbysiadau" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Adroddiadau Diweddar" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Adnewyddu Ffrydiau Newyddion" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "E-bost Cofrestredig" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Dileu" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Ymateb" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Adrodd" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Adroddiadau (o’r map, wedi eu rhestru yn nhrefn amser)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Adroddwr" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Adroddwyr" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Dyddiad Adroddwr" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "E-bost Adroddwr" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Enw Cyntaf Adroddwr" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Mae’r Adroddwr Wedi Bod" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Cyfeiriad IP Adroddwr" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Cyfenw Adroddwr" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Lefel Adroddwr" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Lefelau Adroddwr" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Ffôn Adroddwr" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Adroddiadau" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Pori" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Cyflwyno" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Adroddiadau Gan y Defnyddiwr Hwn" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorïau" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Dyddiad" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Disgrifiad" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Mi fydd Adroddiadau yn cael eu llwytho lawr mewn fformat CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-bost" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Nodweddion" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Canfod lleoliad sy’n agos i chi" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Enw Cyntaf" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Cyfenw" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Mireinio Enw Lleoliad" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Dolen Ffynhonnell Newyddion" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Gwybodaeth Dewisol" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Llwytho fyny Lluniau" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Dychwelyd i’r dudalen adroddiadau" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Dewiswch Dref" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Mae eich Adroddiad wedi ei ddanfon i’n staff i’w adolygu. Mi fyddwn yn ymateb cyn bo hir os oes angen." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Danfon Adroddiad Newydd" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Amser" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Llinell amser" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Teitl Adroddiad" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Dolen fideo" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Adrodd am Ddigwyddiad" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Manylion Adroddiad" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Drwy anfon neges at" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Drwy anfon E-bost at" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Drwy anfon trydariad gyda’r tag/tagiau hash" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Drwy lenwi’r ffurflen hon ar ein gwefan." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Drwy ddefnydio ap" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Mae eich Adroddiad wedi ei gadw" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Teitl Adroddiad" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Cais am fwy o wybodaeth" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Cais am leoliad" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Gofynnol" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Gofynion" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Ail-anfon E-bost Cadarnhau" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Ail-osod" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Ail-osod pob hidlydd" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Ail-osod Cyfrinair" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Gofyn am enwau trefi i’r wlad ddewisol" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Cyfrifon rheolir gan y gwasanaeth %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rôl" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Cadw" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Cadwyd" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Cadwyd & Ychwanegu Newydd" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Cadw a Chau" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Cadw Adroddiad" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Amserlen" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Amserlenydd" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Diwrnod" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Awr" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Cofnod Amserlenydd" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Munud" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Diwrnod yr Wythnos" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "CHWILIO" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Canlyniadau Chwilio" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Côd Diogelwch" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Dewis Popeth" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Dewiswch Math o Faes" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Dewiswch Math o Ffurflen" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Dewiswch yn y map" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Dewiswch gymaint â sydd angen" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Gwnewch yn siwr eich bod wedi dewis eitem" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Dewiswch Thema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Anfon" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Anfon Cadarnhad" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Yn Anfon At" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Anfonwyd" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Anfonwyd gan" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Cyfeiriad gweinydd" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Math gweinydd" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Gwasanaeth" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Enw defnyddiwr Gwasanaeth" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Rhif defnyddiwr Gwasanaeth" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Rhannu" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Data wedi’i rannu" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Cafodd y rhannu ei" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Rhannu" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Dangos" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Dangos popeth" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Dangos Negeseuon" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Gwefan" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "cyfeiriad E-bost gwefan" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL Gwefan" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Sori, ond does gennych chi ddim bathodynnau." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Ffynhonnell" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Enw ffynhonnell" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL ffynhonnell " + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Sbam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Cefnogaeth SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Oddi Wrth" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Cam" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Anfon Adroddiad" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Anfon drwy SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Anfon drwy SMS at" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "ar eich ffôn" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Llwyddiant!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Wedi’i fewnforio yn llwyddiannus" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Cyfenw" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Arolwg" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Porth TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Themau" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Thema Ushahidi Diofyn" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Gosodiadau Thema" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Hwn" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Heddiw" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Mis Yma" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Wythnos Yma" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Blwyddyn Yma" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Dyma eich proffil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Amser" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Teitl " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "i" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Heddiw" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Heddiw am" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Tocyn" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Cyfanswm Adroddiadau" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Cyfieithwyd" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Disgrifiad wedi eu gyfieithu" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Teitl wedi eu gyfieithu" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Cyfieithu i" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Cyfieithiad" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Cyfieithiad wedi eu gadw" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Math" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Methwyd anfon yr E-bost." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "heb ei ddarllen" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Heb ei wirio" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Diweddaru ffrydiau" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Llwytho i fyny" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Ffeil i’w lwytho" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Llwytho Adroddiadau" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Gyda’r ffurflen isod, gallwch chi fewnforio digwyddiadau i’r peiriant Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Rhaid iddo gynnwys o leiaf Teitl Digwyddiad a Dyddiad Digwyddiad" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Os na ddarperir colofnau lledred a hydred yna bydd yn cael ei geogôdio gyda Google Geocoder" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Sampl o Adroddiad CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,TEITL DIGWYDDIAD,DYDDIAD DIGWYDDIAD,LLEOLIAD,DISGRIFIAD,CATEGORI,CADARNHAWYD,GWIRIWYD,LLEDRED,HYDRED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Wedi Llwytho’n Llwyddiannus" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Llwytho Fideo" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Defnyddiwr" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Enw Defnyddiwr" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Gweinyddu Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Gwirio" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Wedi’u Gwirio" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Adroddiadau wedi’u Gwirio" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Gwirio" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Gwirio’r Adroddiad" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Fersiwn" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "trwy" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Fideo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Wedi Gweld" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Wedi Gweld" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Gweld i Gyd" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Gweld holl ffrydiau" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Gweld holl adroddiadau" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Gweld Eitemau" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Gweld Mwy" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Gweld Proffil Cyhoeddus" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Gweld Adroddiad" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Gweld Adroddiadau" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Gweladwy" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Disgwyl ei Awdurdodi" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Disgwyl ei Wirio" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Ffurflen We" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Pwysau" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ydw" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ddoe" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Dy Fwrdd Gwaith" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Dy ffeil" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zoom Mewn" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zoom Allan" diff --git a/application/i18n/po/po-cy_GB/upgrade.po b/application/i18n/po/po-cy_GB/upgrade.po new file mode 100644 index 0000000000..2a8d76c5ed --- /dev/null +++ b/application/i18n/po/po-cy_GB/upgrade.po @@ -0,0 +1,263 @@ +#. extracted from en_US/upgrade.php, cy_GB/upgrade.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 21:18+0000\n" +"PO-Revision-Date: 2012-08-17 21:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: cy_GB\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-da/alerts.po b/application/i18n/po/po-da/alerts.po new file mode 100644 index 0000000000..2b8277c218 --- /dev/null +++ b/application/i18n/po/po-da/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-mail-feltet ser ikke ud til at indeholde en valid e-mail-adresse?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Du har valgt en ikke valid lokalitet på kortet." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Du har valgt en ikke valid lokalitet på kortet." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Du har valgt en ikke valid lokalitet på kortet." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Du har valgt en ikke valid lokalitet på kortet." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Din e-mail advarsel er blevet gemt!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-da/auth.po b/application/i18n/po/po-da/auth.po new file mode 100644 index 0000000000..515634aa1e --- /dev/null +++ b/application/i18n/po/po-da/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-da/bug.po b/application/i18n/po/po-da/bug.po new file mode 100644 index 0000000000..f0210372d4 --- /dev/null +++ b/application/i18n/po/po-da/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Angiv en valid sikkerhedskode." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Angiv sikkerhedskoden." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-mail-feltet ser ikke ud til at indeholde en valid e-mail-adresse?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-mail feltet skal mindst være på 4 tegn og max. 64 tegn langt." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-mail feltet er påkrævet hvis tjekboksen er afkrydset." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Fejlfeltet skal angives." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Emnefeltet skal være mindst 3 tegn langt." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Emnefeltet skal angives." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Navnefeltet skal være på mindst 3 tegn." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Navnefeltet skal angives." diff --git a/application/i18n/po/po-da/category.po b/application/i18n/po/po-da/category.po new file mode 100644 index 0000000000..9a077d60e6 --- /dev/null +++ b/application/i18n/po/po-da/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 20:35+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Farvefeltet skal være på 6 tegn." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Farvefeltet skal angives." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Beskrivelsesfeltet skal angives" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Billedefeltet indeholder ikke en valid fil. De eneste accepterede formater er .JPG, .PNG eller .GIF" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Titelfeltet skal angives." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Forældre kategorien finde ikke." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-da/comments.po b/application/i18n/po/po-da/comments.po new file mode 100644 index 0000000000..7607209f11 --- /dev/null +++ b/application/i18n/po/po-da/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-da/contact.po b/application/i18n/po/po-da/contact.po new file mode 100644 index 0000000000..54f4a4a1d4 --- /dev/null +++ b/application/i18n/po/po-da/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:10+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Angiv en valid sikkerhedskode." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Angiv en valid sikkerhedskode." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Angiv en sikkerhedskode." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Denne e-mail ser ikke ud til at indholde en valid e-mail-adresse." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-mail feltet skal mindst være på 4 tegn og max. 64 tegn langt." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-mail feltet er påkrævet hvis tjekboksen er afkrydset." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Beskedfeltet skal angives." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Navnefeltet skal være på mindst 3 tegn." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Navnefeltet skal angives." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Emnefeltet skal være mindst 3 tegn langt." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Emnefeltet skal angives." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Der skete en fejl ved afsendelse af din besked." diff --git a/application/i18n/po/po-da/core.po b/application/i18n/po/po-da/core.po new file mode 100644 index 0000000000..c48da7bc6a --- /dev/null +++ b/application/i18n/po/po-da/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-27 20:02+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "Konfigurationsfil" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "Kontroller" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "Driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Denne %s driver til %s biblioteket må implementere %s grænsefladen." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s driveren til %s biblioteket kunne ikke findes." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Du kan gå til hjemmeside eller prøv igen." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Kan ikke gennemføre forespørgslen" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "Hjælper" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Denne ønskede filtype .%s er ikke tilladt i din vis konfigurationsfil." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Invalid metode %s med kald i %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "bibliotek" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "Kig" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-da/database.po b/application/i18n/po/po-da/database.po new file mode 100644 index 0000000000..06e03a8dac --- /dev/null +++ b/application/i18n/po/po-da/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 20:11+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Database fejl: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabel \"%s\" kan ikke findes i databasen. Vær sikker på at du bruger den seneste version af databasen for denne version af Ushadidi." diff --git a/application/i18n/po/po-da/datetime.po b/application/i18n/po/po-da/datetime.po new file mode 100644 index 0000000000..0504c2aad7 --- /dev/null +++ b/application/i18n/po/po-da/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 19:36+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Fre" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Fredag" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Man" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Mandag" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Lør" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Lørdag" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Søn" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Søndag" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Tor" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Torsdag" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Tir" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Tirsdag" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Ons" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Onsdag" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Januar" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februar" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marts" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Maj" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maj" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juni" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juli" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "August" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Oktober" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "December" diff --git a/application/i18n/po/po-da/feeds.po b/application/i18n/po/po-da/feeds.po new file mode 100644 index 0000000000..274380a258 --- /dev/null +++ b/application/i18n/po/po-da/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 11:34+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATO" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Angiv URL til feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "KILDE" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Titel" diff --git a/application/i18n/po/po-da/footer.po b/application/i18n/po/po-da/footer.po new file mode 100644 index 0000000000..09ac4e228c --- /dev/null +++ b/application/i18n/po/po-da/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:04+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl er ikke installeret på dette her system." diff --git a/application/i18n/po/po-da/form.po b/application/i18n/po/po-da/form.po new file mode 100644 index 0000000000..bbcd53c810 --- /dev/null +++ b/application/i18n/po/po-da/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-da/imap.po b/application/i18n/po/po-da/imap.po new file mode 100644 index 0000000000..6f285b2fe0 --- /dev/null +++ b/application/i18n/po/po-da/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:22+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Kunne ikke åbne IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Denne e-mail service understøttes ikke" diff --git a/application/i18n/po/po-da/installer.po b/application/i18n/po/po-da/installer.po new file mode 100644 index 0000000000..68ff6cab86 --- /dev/null +++ b/application/i18n/po/po-da/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 11:30+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titel" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Brugernavn" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Dit database brugernavn" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Vis din hjemmeside" diff --git a/application/i18n/po/po-da/layer.po b/application/i18n/po/po-da/layer.po new file mode 100644 index 0000000000..f8bad52f01 --- /dev/null +++ b/application/i18n/po/po-da/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:18+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Farvefeltet skal være på 6 tegn." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Farvefeltet skal angives." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Filfeltet indeholder ikke en valid fil. De eneste accepterede formater er .KMZ elle .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Filfeltet indeholder ikke en valid fil" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Navnefeltet skal være på mindst 3 tegn og på max. 80 tegn." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Navnefeltet skal angives." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Enten skal en KMLs URL eller en KML fil angives." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Du kan ikke have en KML fil og en URL på samme tid." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Angiv en valid URL, fx http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-da/libraries.po b/application/i18n/po/po-da/libraries.po new file mode 100644 index 0000000000..56ef2b1c6e --- /dev/null +++ b/application/i18n/po/po-da/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:02+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Kunne ikke få forbindelse til Akismet sereren." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Ingen respons fra Akismet kunne modtages." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Din unicode besked er for lang! (længde lige nu=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Understøtter ikke denne afsendelsesmetode!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Download af seneste Ushadidi mislykkes. HTTP statuskode" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Fil %s kunne ikke kopieres." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Fil %s kunne ikke slettes." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi opgraderingsscript" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-da/maintenance.po b/application/i18n/po/po-da/maintenance.po new file mode 100644 index 0000000000..a2e58a3f93 --- /dev/null +++ b/application/i18n/po/po-da/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 20:28+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Vi undskylder meget! vores hjemmeside er nede for at blive vedligeholdt. Prøv igen om et par minutter." diff --git a/application/i18n/po/po-da/message.po b/application/i18n/po/po-da/message.po new file mode 100644 index 0000000000..fa31e862a5 --- /dev/null +++ b/application/i18n/po/po-da/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:21+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Angiv en valid sikkerhedskode." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Angiv en sikkerhedskode." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-mail feltet ser ikke ud til at indholde en valid e-mail-adresse." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-mail feltet skal mindst være på 4 tegn og max. 64 tegn langt." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-mail feltet er påkrævet hvis tjekboksen er afkrydset." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Kommentarfeltet skal angives." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Navnefeltet skal være på mindst 3 tegn." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Navnefeltet skal angives." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Telefonfeltet er ikke valid." diff --git a/application/i18n/po/po-da/mhi.po b/application/i18n/po/po-da/mhi.po new file mode 100644 index 0000000000..4d8a9370aa --- /dev/null +++ b/application/i18n/po/po-da/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:51+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Angiv en valid sikkerhedskode." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Angive sikkerhedskoden." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-mail feltet ser ikke ud til at indholde en valid e-mail-adresse." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Angiv venligst en valid e-mail-adresse." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Beskedfeltet skal angives." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Emnefeltet skal være mindst 3 tegn langt." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Emnefeltet skal angives." diff --git a/application/i18n/po/po-da/notifications.po b/application/i18n/po/po-da/notifications.po new file mode 100644 index 0000000000..ac8f5bd80c --- /dev/null +++ b/application/i18n/po/po-da/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 19:54+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Denne besked fra sendt fra din hjemmeside." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Administrator login" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "En ny kommentar er blevet sendt til din hjemmeside som svar på:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Ny kommentar" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "En ny e-mail besked er blevet sendt til din hjemmeside." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Ny e-mail besked" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "En ny rapport er blevet sendt til din hjemmeside." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Ny rapport" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "En ny tekstbesked er blevet sendt til din hjemmeside." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Ny tekstbesked" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Du har modtaget en ny advarsel" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Ny advarsel!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Du har modtaget en privat besked" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Ny privat besked" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "For at svare gå venligst til:" diff --git a/application/i18n/po/po-da/page.po b/application/i18n/po/po-da/page.po new file mode 100644 index 0000000000..1d77071711 --- /dev/null +++ b/application/i18n/po/po-da/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 19:30+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Angiv en sidetitel" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Sidens titel skal være mindst 3 tegn og max. 150 tegn lang." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Angiv en side Tab navn" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Angiv en beskrivelse om siden" diff --git a/application/i18n/po/po-da/permissions.po b/application/i18n/po/po-da/permissions.po new file mode 100644 index 0000000000..2e22c019bf --- /dev/null +++ b/application/i18n/po/po-da/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Vis rapporter" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Lav/Ret/Slet rapporter" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Godkend rapporter" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Bekræft rapporter" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Administrer rapport kommentarer" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Download rapporter" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Opload rapporter" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Administrer beskeder" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Administrer besked rapportørerne" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Vis statistik" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Rediger indstillinger" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Administrer panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Administrer brugere" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Administrer roller" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Kan tjekke-ind" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Administrer tjek-inds" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Adgang Admin UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Adgang medlemer UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-da/private_message.po b/application/i18n/po/po-da/private_message.po new file mode 100644 index 0000000000..d184afcbe7 --- /dev/null +++ b/application/i18n/po/po-da/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 20:09+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Forældre ID skal være nummerisk" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Feltet Til skal angives" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Brugeren du prøver at sende en besked til findes ikke" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Emnefeltet skal angives" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Emnefeltet skal være mellem 3 og 150 tegn" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Beskedfeltet skal angives" diff --git a/application/i18n/po/po-da/report.po b/application/i18n/po/po-da/report.po new file mode 100644 index 0000000000..f6583c4d9b --- /dev/null +++ b/application/i18n/po/po-da/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-da/reporters.po b/application/i18n/po/po-da/reporters.po new file mode 100644 index 0000000000..6e9af2ef69 --- /dev/null +++ b/application/i18n/po/po-da/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 20:05+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Breddegrad feltet indeholder ikke en valid breddegrad." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-da/reports.po b/application/i18n/po/po-da/reports.po new file mode 100644 index 0000000000..8cea0428cf --- /dev/null +++ b/application/i18n/po/po-da/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:41+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Verificere lige om du har afkrydset en post" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Du har ikke tilladelse til at udføre denne handling" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Du skal vælge en fil for at oploade" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "En fil skal være af typen .csv eller .xml format for at kunne oploades." + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Fil-oploadet feltet ser ikke ud til at indeholde en valid fil" diff --git a/application/i18n/po/po-da/roles.po b/application/i18n/po/po-da/roles.po new file mode 100644 index 0000000000..bb7a120903 --- /dev/null +++ b/application/i18n/po/po-da/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:27+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Beskrivelsesfeltet skal være på mindst 3 tegn og på max. 100 tegn." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Beskrivelsesfeltet skal angives" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Navnetfeltet må kun indeholde bogstaver eller numre." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Navnefeltet skal være på mindst 2 tegn og på max. 30 tegn." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin rollen kan ikke ændres." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Navnefeltet skal angives." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-da/settings.po b/application/i18n/po/po-da/settings.po new file mode 100644 index 0000000000..f599e6dda0 --- /dev/null +++ b/application/i18n/po/po-da/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Danish (http://www.transifex.com/projects/p/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Farvefeltet skal angives." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Modtag bynavne fra Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet nøgle" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Tidszone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Testindstillinger" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-da/sharing.po b/application/i18n/po/po-da/sharing.po new file mode 100644 index 0000000000..36af7f3d1f --- /dev/null +++ b/application/i18n/po/po-da/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-da/stats.po b/application/i18n/po/po-da/stats.po new file mode 100644 index 0000000000..d6223c23a5 --- /dev/null +++ b/application/i18n/po/po-da/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:54+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Godkendt" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategorier" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Lande" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Land" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Fejl" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Sidevisninger" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Rapporter" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Rapport kategorier" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 måned" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 måneder" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 måneder" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Alle" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Antal besøg" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-da/tooltips.po b/application/i18n/po/po-da/tooltips.po new file mode 100644 index 0000000000..923bce5072 --- /dev/null +++ b/application/i18n/po/po-da/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Privat besked" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Din e-mail-adresse" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Indstil Twitter hashtag som vil blive brugt i et tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-da/ui_admin.po b/application/i18n/po/po-da/ui_admin.po new file mode 100644 index 0000000000..47512462cf --- /dev/null +++ b/application/i18n/po/po-da/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-da/ui_main.po b/application/i18n/po/po-da/ui_main.po new file mode 100644 index 0000000000..7a11d90216 --- /dev/null +++ b/application/i18n/po/po-da/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Om" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Adgang" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Adgangsbegræsning" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Kontonavn" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Aktioner" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Denne handling kan ikke fortrydes. Er du sikker på du vil fortsætte?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivere" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktiv" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Tilføj" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Tilføjet af" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Tilføj/Ret" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Tilføj et felt" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Tilføj sprog" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Tilføj ny" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Tilføj ny kategori" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Tilføj overstættelse" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administration" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Modtag nye beskeder" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Vælg en by" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Alle" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Tilladt" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Tilladte HTML tags: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Alle kategorier" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Altid" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "og" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Godkende" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Godkendt" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Forfatter" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto tjek-in" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Browse i profiler" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Fortryd" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategorier" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategori" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategorifilter" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Kategorinavn" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Ændre et datointerval" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Ændre adgangskode" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Ændre mit profilbillede" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Vælg en" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Luk" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Klynger" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Farve" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Kommentar" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Kommentarer" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontakt os" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Sikkerhedskode" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Send beskred" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Emnebesked" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Lav" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Lav/Ret" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Lav ny" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Lav ny adgangskode" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Lav rapport" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Information" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Dato" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/åååå)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Dato & Tid" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "Dag" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Slet" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Slettet" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Sletninger" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Slet spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Beskrivelse" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Ret" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "til" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Fejl!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Eksempel" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Fil" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Søg" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Søg lokalitet" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Fornavn" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Farve" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Kommentarer" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Gå" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Skjul" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Skjul denne besked" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Hjem" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Billede" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Billeder" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Billede/Ikon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP adresse" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Er dette din profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML fil" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Efternavn" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Sidste år" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Lag" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Andre lag" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Lag URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Skriv en kommentar" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Mindre information" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Liste" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Kort" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maksium filstørrelse" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Medie" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Medie filter" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Medlemmer" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Mere" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Mere information" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Navn" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Ny" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nyheder" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Nyheds feeds" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Nyhedskilde" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Ny kategori" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Ny adgangskode" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Ny rapport" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Næste" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nej" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Ingen tjek-ind at vise." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Ingen data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Ingen" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Ikke godkendt" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Ikke godkendt" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Titel på side" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Billeder" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Afspil" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Læs" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Fjern" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Besvar" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Rapport" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Send" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Dato" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Beskrivelse" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Gem" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Gemt" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Gem & tilføj ny" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Gem & luk" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Gem rapport" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dag" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Time" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Søg" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Vælg alle" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Send" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Service" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Del" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Del data" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Kortere kort" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mindre kort" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Fra" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Trin" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Højere kort" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "I dag" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Denne måned" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Denne uge" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Dette år" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Dette er din profil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "til" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "I dag" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Er ikke i stand til at sende e-mail." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Bruger" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Brugernavn" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Version" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Se" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Vis video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Breddere kort" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ja" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "I går" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-da/upgrade.po b/application/i18n/po/po-da/upgrade.po new file mode 100644 index 0000000000..30401ff5eb --- /dev/null +++ b/application/i18n/po/po-da/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Neogeografen , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 20:26+0000\n" +"Last-Translator: Neogeografen \n" +"Language-Team: Danish (http://www.transifex.com/ushahidi/ushahidi-v2/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Ugyldig input data. Det kan kun være et 0 for Nej eller 1 for Ja." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatisk opgradering" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Tilgængelige opdateringer" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Fortsæt" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Opgrader" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Så jeg vil nu opgradere din database fra version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "til den nyeste database version" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Klik på \"Opgrader\" knappen og slap helt roligt af mens jeg laver lidt magi." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Manuelt opgradering" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP brugernavn:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Du har den seneste udgave af Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Du behøver ikke at opgradere." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Database version: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Database:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Downloader den seneste version af Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Logfil" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Mislykket downloading." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Mislykket udpakning." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Mislykket backup af database." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Succes med database opgraderingen. " + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Sletter downloades filer..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-de_DE/alerts.po b/application/i18n/po/po-de_DE/alerts.po new file mode 100644 index 0000000000..a61be89c8c --- /dev/null +++ b/application/i18n/po/po-de_DE/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Ist Deine angegebene E-Mail-Adresse korrekt?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Diese E-Mail-Adresse ist bereits für Meldungen von diesem Ort registriert." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Die E-Mail-Adresse darf nicht weniger als 4 und mehr als 64 Zeichen lang sein." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Das E-Mail-Feld muss ausgefüllt sein, wenn das Kästchen angehakt wurde." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Diese Installation erstreckt sich nur über ein Land. Bitte stelle sicher, dass sich der Ort der Meldung nur innerhalb des Landes %s bewegt." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Du hast einen ungültigen Ort ausgewählt." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Du hast einen ungültigen Ort ausgewählt." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Du hast einen ungültigen Ort ausgewählt." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Du hast einen ungültigen Ort ausgewählt." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Das Feld für die Handynummer scheint eine falsche Anzahl von Nummern zu beinhalten." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Diese Handynummer wurde bereits für Benachrichtigungen zu diesem Ort registriert." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Die Handynummer scheint nicht gültig zu sein. Bitte füge der Nummer nur das Länderpräfix an." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Du musst entweder Deine Handynummer oder Deine E-Mail-Adresse eingeben." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Du musst Deine Handynummer angeben, wenn das Kästchen angehakt wurde." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Du hast einen ungültigen Radius gewählt." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Du hast keinen Radius auf der Karte gewählt." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Du hast keinen Empfänger für die Meldungen angegeben." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Du hast die folgenden Kategorien abonniert." + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Dieser Schlüssel wurde schon einmal verwendet!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Dieser Verifizierungsschlüssel wurde nicht gefunden! Bitte überprüfe, ob Du die richtige URL angegeben haben." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Dein Schlüssel wurde erfolgreich verifiziert. Du erhälst nun aktuelle Meldungen." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Um DeineAnfrage zu bestätigen, gehe bitte zu" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Zurück zur Benachrichtigungsseite gehen, um weitere Meldungen zu abonnieren " + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Deine Anfrage wurde erstellt. Eine Verifizierungs-eMail wurde geschickt an " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Bitte gib unten den E-Mail-Bestätigungscode ein" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Deine Anfrage wurde NICHT gespeichert!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Deine Anfrage wurde erfolgreich gespeichert!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Das System konnte den Bestätigungsvorgang nicht vollenden." + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Deine Meldungsanforderung via Mobiltelefon wurde bearbeitet und wurde gesendet an:" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Bitte gib den SMS-Bestätigungscode ein, den Du per SMS empfangen hast." + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Deine Meldungsanforderung via Mobiltelefon wurde NICHT gespeichert." + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Deine Anforderung für mobile Meldungen wurde gespeichert!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Fehler in den Einstellungen. Meldungen können nicht korrekt ausgeführt werden." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Du erhälst diese eMail aufgrund Deiner Anmeldung zum Erhalt aktueller Meldungen. Wenn Du keine weiteren Meldungen mehr erhalten möchtest, gehe bitte zu" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Du wirst keine weiteren Meldungen erhalten von" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Wir konnten Dich nicht abmelden. Bitte überprüfe, ob Du die korrekte URL angegeben hast." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Erhalte Meldungen - Bestätigung" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Du musst Deine Anfrage bestätigen, um Meldungen für diesen Ort zu erhalten." diff --git a/application/i18n/po/po-de_DE/auth.po b/application/i18n/po/po-de_DE/auth.po new file mode 100644 index 0000000000..e6ffa98b68 --- /dev/null +++ b/application/i18n/po/po-de_DE/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Das E-Mail-Feld enthält eine ungültige Mailadresse." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Sorry, diese E-Mailadresse ist bereits einem Konto zugeordnet." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Die E-Mail-Adresse muss zwischen 4 und 64 Zeichen lang sein." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Die E-Mail-Adresse ist ein Pflichtfeld" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Die E-Mail-Adresse muss zwischen 3 und 100 Zeichen lang sein." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Der vollständige Name ist notwendig." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Der Benutzername enthält nicht erlaubte Zeichen" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Das Passwort muss mindestens 8 Zeichen lang sein." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Bitte überprüfe, ob Du die korrekte E-Mail Adresse und das richtige Passwort eingegeben hast." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Bitte gib in beiden Felder das gleiche Passwort ein." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Das Passwort wird benötigt." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Das Passwort darf nur aus Buchstaben, den # und @ Symbolen, Nummern, Unter- und Bindestrichen bestehen." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Das eingegebene Passwort ist nicht korrekt. Bitte versuche es noch einmal." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Das Passwort muss mindestens 8 Zeichen lang sein." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Bitte überprüfe, ob Du die korrekte E-Mail Adresse und das richtige Passwort eingegeben hast." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Bitte gib in beiden Felder das gleiche Passwort ein." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Das Passwort wird benötigt." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Das Passwort darf nur aus Buchstaben, den # und @ Symbolen, Nummern, Unter- und Bindestrichen bestehen." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Es gab einen Fehler bei der Anmeldung." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Das Passwort muss zwischen 5 und 16 Zeichen lang sein" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Bitte überprüfe, ob Du die richtige E-Mail-Adresse und das richtige Passwort eingegeben hast." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Bitte gib das gleiche Passwort zwei Mal ein." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Das Passwortfeld ist notwendig." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Der Anmeldeserver ist nicht verfügbar. Bitte versuche es später noch einmal." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Das Passwort darf nur aus Buchstaben, den # und @ Symbolen, Nummern, Unter- und Bindestrichen bestehen." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Beide eingegeben Passwörter müssen übereinstimmen." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Die E-Mail-Adresse ist ungültig." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Entschuldigung, wir können Deine E-Mail-Adresse nicht zuordnen." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Die E-Mail-Adresse ist notwendig." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Nur ein Superadmin darf einen anderen Superadmin einstellen oder einen bestehenden Benutzer zum Admin ernennen." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Ungültiges Rollen-Format" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Die Feldlänge von ROLLE muss zwischen 5 und 30 Zeichen lang sein." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Du musst min. eine Rolle festgelegen" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Du musst entweder ADMIN oder USER wählen." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Das vergessene Passwortzeichen ist ungültig." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Das Zeichen für das vergessen Passwort wird benötigt." + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Die Admin-Rolle kann nicht verändert werden." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Das öffentliche Profil darf nur aus Nummern und Buchstaben bestehen." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Sorry, der Benutzername ist bereits vergeben." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Der Benutzername muss zwischen 2 und 16 Zeichen lang sein." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Bitte überprüfe, ob Du die korrekte URL für das öffentliche Profil eingegeben hast." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Der Benutzname ist ein Pflichtfeld." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Die Super-Admin-Rolle kann nicht verändert werden." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Mögliche CSRF Attacke. Willst Du wirklich einen Benutzer neu erstellen/bearbeiten?" diff --git a/application/i18n/po/po-de_DE/bug.po b/application/i18n/po/po-de_DE/bug.po new file mode 100644 index 0000000000..a7ce3cf133 --- /dev/null +++ b/application/i18n/po/po-de_DE/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Bitte gib einen gültigen Sicherheitscode ein." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Bitte gib den Sicherheitscode ein." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Das E-Mail-Feld scheint keine gültige E-Mailadresse zu enthalten." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Das E-Mail-Feld muss mindestens 4 und höchstens 64 Zeichen lang sein." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Das E-Mail-Feld ist erforderlich, wenn das Kästchen angehakt wurde." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Das Fehlerfeld ist notwendig." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Das Betreffeld muss mindestens 3 Zeichen lang sein." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Das Betreff-Feld ist notwendig." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Das Namensfeld muss mindestens 3 Zeichen lang sein." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Das Namensfeld ist notwendig." diff --git a/application/i18n/po/po-de_DE/category.po b/application/i18n/po/po-de_DE/category.po new file mode 100644 index 0000000000..8334552dd0 --- /dev/null +++ b/application/i18n/po/po-de_DE/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Das Farbfeld darf nur 6 Zeichen lang sein." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Die Angabe der Farbe ist notwendig." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Das Feld mit der Beschreibung muss ausgefüllt werden." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Beachte bitte, dass die Größe für hochgeladene Bilder auf 50KB beschränkt ist." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Das Bild scheint ein ungültiges Format zu haben. Die akzeptierten Formate sind: .JPG, .PNG und .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Das Bilderfeld enthält eine ungültige Datei." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Das Titelfeld muss mindestens 3 und darf höchstens 80 Zeichen lang sein." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Das Titelfeld ist notwendig." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Unterkategorien können nicht weiter unterteilt werden." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Die übergeordnete Kategorie existiert nicht." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Das Feld für die übergeordnete Kategorie darf nur Zahlen enthalten." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Die übergeordnete Kategorie kann keine Spezialkategorie sein." + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Die übergeordnete Kategorie ist erforderlich." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Die Kategorie und die übergeordnete Kategorie können nicht gleich sein." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Spezialkategorien können nicht weiter unterteilt werden." diff --git a/application/i18n/po/po-de_DE/comments.po b/application/i18n/po/po-de_DE/comments.po new file mode 100644 index 0000000000..97df9bd896 --- /dev/null +++ b/application/i18n/po/po-de_DE/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Bitte gib einen gültigen Sicherheitscode ein." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Bitte gib den Sicherheitscode ein." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Du hast den falschen Sicherheitscode eingegeben." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Das Namensfeld muss min 3 Zeichen lang sein." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Das Namensfeld ist notwendig" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Das Kommentarfeld ist notwendig" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Das E-Mail-Feld scheint eine ungültige Adresse zu enthalten." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Die E-Mail-Adresse muss zwischen 4 und 64 Zeichen lang sein." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Das eMailfeld ist notwendig wenn die Box angekreuzt ist" diff --git a/application/i18n/po/po-de_DE/contact.po b/application/i18n/po/po-de_DE/contact.po new file mode 100644 index 0000000000..d482bf7536 --- /dev/null +++ b/application/i18n/po/po-de_DE/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Bitte gib einen gültigen Sicherheitscode ein." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Bitte gib einen gültigen Sicherheitscode ein." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Bitte gib den Sicherheitscode ein." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Die E-Mail-Adresse scheint ungültig zu sein." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Die E-Mail-Adresse muss mindestens 4 und maximal 64 Zeichen lang sein." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Das Feld NACHRICHT muss ausgefüllt werden." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Das Feld NAME muss mindestens 3 Zeichen lang sein." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Das Feld NAME muss ausgefüllt werden." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Das BETREFF Feld muss mindestens 3 Zeichen lang sein." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Das BETREFF Feld muss ausgefüllt werden." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Es gab einen Fehler beim Verschicken Deiner Nachricht." diff --git a/application/i18n/po/po-de_DE/core.po b/application/i18n/po/po-de_DE/core.po new file mode 100644 index 0000000000..3d53a3726e --- /dev/null +++ b/application/i18n/po/po-de_DE/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Juergen Eichholz , 2012 +# Simon Zöllner, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "Konfigurationsdatei" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controller" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "Treiber" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver for the %s library must implement the %s interface" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "The %s driver for the %s library could not be found" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Du kannst auf die home page gehen oder es erneut versuchen." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Konnte die Anforderung nicht erfüllen" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "helper" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Der angeforderte Dateityp, .%s, ist nicht erlaubt entsprechend Ihren Einstellungen" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Ungültige Methode %s called in %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Die %s property existiert nicht in der %s class." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "library" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Das Log-Verzeichnis ist nicht beschreibbar: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi war nicht in der Lage, den Controller für diese Anforderung zu bestimmen: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Bitte setze eine Standardroute in config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Die angeforderte Seite, %s, konnte nicht gefunden werden." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Berichte diesen Punkt an Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Die Anforderung %s, %s, konnte nicht gefunden werden" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Geladen in {execution_time} Sekunden, Speicherplatz {memory_usage}. Erzeugt von Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Es kann nur eine Ushahidi Instanz geben pro Seitenanforderung." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Uncaught %s: %s in Datei %s in Linie %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "Zeige" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Du musst den Dateinamen festlegen bevor der Render aufgerufen wird." diff --git a/application/i18n/po/po-de_DE/database.po b/application/i18n/po/po-de_DE/database.po new file mode 100644 index 0000000000..c5da74d788 --- /dev/null +++ b/application/i18n/po/po-de_DE/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Datenbank Fehler: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabelle \"%s\" konnte in der Datenbank nicht gefunden werden. Bitte stelle sicher, dass Du die aktuellste Datenbankversion für diese Ushahidi-Version verwendest." diff --git a/application/i18n/po/po-de_DE/datetime.po b/application/i18n/po/po-de_DE/datetime.po new file mode 100644 index 0000000000..7f237d5d70 --- /dev/null +++ b/application/i18n/po/po-de_DE/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "vormittag" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "FR" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Freitag" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "MO" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Montag" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "nachmittag" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "SA" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Samstag" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "SO" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Sonntag" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "DO" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Donnerstag" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "DI" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Dienstag" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "MI" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Mittwoch" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Januar" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februar" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "März" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mai" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juni" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juli" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "August" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Oktober" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dez" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Dezember" diff --git a/application/i18n/po/po-de_DE/feeds.po b/application/i18n/po/po-de_DE/feeds.po new file mode 100644 index 0000000000..8ed6414531 --- /dev/null +++ b/application/i18n/po/po-de_DE/feeds.po @@ -0,0 +1,55 @@ +# +# Translators: +# Juergen Eichholz , 2012 +# Zukikototeka , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Datum" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Der Name muss zwischen 3 und 70 Zeichen lang sein." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Bitte gib den Feed Namen ein." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Bitte URL eingeben." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Bitte gültige Adresse eingeben. z.B. http://www.ushahidi.com." + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Quelle" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Titel" diff --git a/application/i18n/po/po-de_DE/footer.po b/application/i18n/po/po-de_DE/footer.po new file mode 100644 index 0000000000..7be401d952 --- /dev/null +++ b/application/i18n/po/po-de_DE/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl ist auf diesem System nicht installiert." diff --git a/application/i18n/po/po-de_DE/form.po b/application/i18n/po/po-de_DE/form.po new file mode 100644 index 0000000000..9ba224967e --- /dev/null +++ b/application/i18n/po/po-de_DE/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Juergen Eichholz , 2012 +# Zukikototeka , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Der eingetragene Standardwert ist ungültig." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Der Feldname muss zwischen 3 und 200 Zeichen lang sein." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Bitte wähle einen Wert zwischen 0 und 50 für die Feldhöhe." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Du hast einen ungültigen Wert für das Datumsfeld eingegeben." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Bitte gib an, ob das Datumsfeld erforderlich ist oder nicht." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Der Feldname muss zwischen 3 und 100 Zeichen lang sein." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Bitte gib den Feldnamen ein." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Bitte einen anderen Namen für dieses Feld eingeben. Der gewählte Feldname wird schon verwendet." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Du hast einen ungültigen Wert für das Feld PFLICHT eingegeben." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Wähle ob das Feld ein Pflichtfeld ist oder nicht." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Bitte wähle einen gültigen Feldtypus." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Wähle einen Feldtypus aus." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Bitte wähle einen Wert zwischen 0 und 300 für die Feldbreite." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Bitte gib eine Beschreibung der Form ein." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Die Standardform kann nicht gelöscht werden." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Bitte wähle aus zu welcher Form das Feld hinzugefügt werden soll." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Bitte wähle aus zu welcher Form das Feld hinzugefügt werden soll." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Das Formfeld muss zwischen 3 und 100 Zeichen lang sein." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Bitte gib den Namen der Form ein." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Ein Formular mit dieser Bezeichnung existiert bereits. Bitte eine andere Bezeichnung verwenden." diff --git a/application/i18n/po/po-de_DE/imap.po b/application/i18n/po/po-de_DE/imap.po new file mode 100644 index 0000000000..25eb39798a --- /dev/null +++ b/application/i18n/po/po-de_DE/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Kann IMAP Verbindung nicht öffnen" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Dieser E-Mail-Dienst wird nicht unterstützt." diff --git a/application/i18n/po/po-de_DE/installer.po b/application/i18n/po/po-de_DE/installer.po new file mode 100644 index 0000000000..fdca32d766 --- /dev/null +++ b/application/i18n/po/po-de_DE/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Base Path" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Datenbank" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Datenbank Host" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Wenn Du Ushahidi auf Deinem Computer installiert hast, ist es höchstwahrscheinlich \"localhost\". Wenn Du Ushahidi auf einem entfernten Webserver laufen lässt, kannst Du Deinen Hosting-Anbieter nach den entsprechenden Informatione fragen" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Datenbankname" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Der Name der Datenbank in der Du Ushahidi installieren möchtest" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Für mehr Informationen zu Datenbanken siehe diesen Beitrag im Ushahidi-Wiki." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Standardsprache (Gebietsschema)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Jedes Ushahidi-Paket hat bereits einige Übersetzungen eingebaut. Du kannst aber auch Deine eigene hinzufügen." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Deaktivieren" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Aktivieren" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Unten siehst Du eine Liste der Fehler die wir gefunden haben" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Der Ort auf Deinem Server an dem Du Deine Ushahidi-Dateien abgelegt hast. Wir haben diesen Wert automatisch berechnet, stelle sicher ob er korrekt ist. Wenn das Feld leer ist, keine Bange. Es bedeutet nur, dass Ushahidi im obersten Verzeichnis installiert ist. " + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Beendet" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Allgemein" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Jeder kann einen API-Schlüssel bekommen. Besorg' Dir Deinen jetzt" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Zurück" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "EXPERTEN INSTALLATION" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "In diesen 5-Schritten werden alle grundlegenden Einstellungen, d.h. Server, Karte, Seitenname und Kontaktdetails, erledigt." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "Standard INSTALLATION" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Einfach und schnell. Alles was Du brauchst ist das root-Verzeichnis Deiner Website und die Datenbankinformationen. Wähle diese Möglichkeit wenn Du schnell fertig werden willst. Alles Weitere kannst Du später noch konfigurieren." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Fortfahren" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Willkommen zum Ushahidi-Server Installationsprozess. Wähle unten die Art der Installation." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Installation erfolgreich." + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail Server" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Beispiele: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Passwort" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Das Passwort, das Du normalerweise benutzt um Dich in Deinen eMail-Konto einzuloggen." + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Standard Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Typ" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). Was ist der Unterschied (in Englisch)?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Benutzername" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Wenn Du Gmail, Hotmail, oder Yahoo Mail verwendest, gib die volle eMailadresse als Benutzernamen ein." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Karte" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Kartenanbieter" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi funktioniert mit allen dieser vier Anbieter einwandfrei: Google, Bing, Yahoo oder Open Street Map. Wähle am Besten denjenigen, der die genauesten Karten für Deine Gegend hat." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Weitere Schritte..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Passwort" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Datenbank Passwort" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Zurück" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Bitte starte Deinen Apache-Server neu" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Aktiviere oder deaktiviere SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Einige Mail-Server geben Dir die Möglichkeit beim Herstellen einer Verbindung SSL zu nutzen. SSL ist empfohlen da es für zusätzliche Sicherheit sorgt." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Setup your SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Hauptemailadresse" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Site Alert eMail-Adresse" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Wenn Deine Besucher eMail-Benachrichtigungen abonnieren, ist dies die Absenderadresse. Diese Adresse muss nicht identisch mit der Site eMail-Adresse sein." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Die seitenweite eMail-Kommunikation wird über diese Adresse abgewickelt. " + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Seitenname" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Name Deiner Seite" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Untertitel der Seite" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Dein Untertitel" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Die unten gelisteten DAteien und Ordner müssen vom Webserver beschreibbar sein." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Anweisungen wie man die Daterechte ändert:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Bevor to anfängst solltest to sicherstellen, dass folgende Dateien und Ordner für Deinen Webserver beschreibbar sind. Das bedeutet auch die Dateiberechtigungen zu ändern." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Für den Installationsprozess brauchst Du folgende Informationen" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Tabellen Präfix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalerweise brauchst Du das Präfix nicht zu ändern. Wenn Du allerdings mehrere Ushahidi-Installationen in derselben Datenbanken installieren willst, kannst Du das Präfix hier ändern." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titel" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Um Dich einzuloggen, gehe zu" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Hochladen von Berichtsdaten" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Benutzername" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Dein Datenbankbenutzername" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "und verwende die folgenden Zugangsdaten" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Website ansehen" diff --git a/application/i18n/po/po-de_DE/layer.po b/application/i18n/po/po-de_DE/layer.po new file mode 100644 index 0000000000..ab21d18876 --- /dev/null +++ b/application/i18n/po/po-de_DE/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Angabe der Farbe im Hex-Code (6 Zeichen)." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Die Farbeinstellung muss angegeben werden." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Das Dateifeld enthält eine ungültige Datei. Erlaubte Formate sind .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Das Dateifeld enthält eine ungültige Datei." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Das Namensfeld muss mindestens 3 und darf höchstens 80 Zeichen lang sein." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Das Namensfeld muss ausgefüllt sein." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Entweder muss eine KML-URL oder eine KML-Datei angegeben werden." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Beides geht nicht: Entweder Datei oder URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Bitte gib eine gültige URL an, bspw. http://www.ushahidi.com/layerl.kml." diff --git a/application/i18n/po/po-de_DE/libraries.po b/application/i18n/po/po-de_DE/libraries.po new file mode 100644 index 0000000000..aa59e99cc9 --- /dev/null +++ b/application/i18n/po/po-de_DE/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Keine Verbindung zum Akismet Server möglich." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Die Antwort von Akismet wurde nicht empfangen." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Die API Bibliothek %s für die %s Klasse wurde nicht gefunden. Bitte kontrolliere die API task routing Tabelle." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Dein Akismet API Schlüssel ist nicht gültig." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Fehler beim Ausführen der fopen Sendemethode!
Kontroliere ob PHP OpenSSL unterstützt und ob die PHP Version größer ist als 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Deine unicode Nachricht ist zu lang! (Aktuelle Länge=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Bitte spezifiziere die Zieladresse (NACH)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Bitte spezifiziere die Quelladresse (VON)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Deine unicode Nachricht ist zu lang! (Aktuelle Länge=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Nicht unterstützte Methode zum Senden!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Die API-Bibliothek %s ist ungültig. Alle API-Bibliotheken müssen Unterklassen sein von %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Verzeichnis %s kann nicht gelöscht werden." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Fehler beim Auspacken: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Herunterladen der Aktualisierung fehlgeschlagen. HTTP Status Code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Datei %s konnte nicht kopiert werden." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Datei %s konnte nicht gelöscht werden." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi Aktualisierungsscript" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Die heruntergeladene Ushahidi zip-Datei %s, konnte nicht geschrieben werden." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s ist in der RiverID Klasse nicht verfügbar." diff --git a/application/i18n/po/po-de_DE/maintenance.po b/application/i18n/po/po-de_DE/maintenance.po new file mode 100644 index 0000000000..14796bd4b8 --- /dev/null +++ b/application/i18n/po/po-de_DE/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Entschuldigung, unsere Seite ist derzeit offline und im Wartungsbetrieb. Bitte versuchen Sie es in ein paar Minuten erneut." diff --git a/application/i18n/po/po-de_DE/message.po b/application/i18n/po/po-de_DE/message.po new file mode 100644 index 0000000000..c5dee46d2b --- /dev/null +++ b/application/i18n/po/po-de_DE/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Bitte gib einen gültigen Sicherheitscode ein." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Bitte gib den Sicherheitscode ein." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Das E-Mail-Feld scheint keine gültige Mailadresse zu enthalten." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Das E-Mail-Feld muss zwischen 4 und 64 Zeichen lang sein." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Das E-Mail-Feld ist erforderlich, wenn die Box angehakt wurde. " + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Das Kommentarfeld ist notwendig." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Das Namensfeld muss min. 3 Zeichen lang sein." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Das Namensfeld ist notwendig." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Das Telefonfeld ist nicht gültig." diff --git a/application/i18n/po/po-de_DE/mhi.po b/application/i18n/po/po-de_DE/mhi.po new file mode 100644 index 0000000000..a180db2c33 --- /dev/null +++ b/application/i18n/po/po-de_DE/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Bitte gib einen gültigen Sicherheitscode ein." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Bitte gib den Sicherheitscode ein." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Das eMail-Feld scheint keine gültige eMail-Adresse zu enthalten." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Bitte gib eine gültige eMailadresse ein." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Das Nachrichtenfeld muss Text enthalten." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Die Betreffzeile muss min. 3 Zeichen lang sein." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Die Betreffzeile muss Text enthalten." diff --git a/application/i18n/po/po-de_DE/notifications.po b/application/i18n/po/po-de_DE/notifications.po new file mode 100644 index 0000000000..44422398af --- /dev/null +++ b/application/i18n/po/po-de_DE/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Diese Nachricht wurde von Deiner Webseite geschickt." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Administrator Login" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Ein neuer Kommentar wurde eingereicht bezogen auf:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Neuer Kommentar" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Eine neue eMail wurde an Deine Website geschickt." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Neue eMail." + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Ein neuer Bericht wurde auf Deiner Website eingereicht." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Neuer Bericht" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Eine neue Textnachricht wurde an Deine Website geschickt." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Neue Textnachricht" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Du hast eine neue Meldung bekommen." + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Neue Meldung!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Du hast eine private Nachricht erhalten" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Neue private Nachricht" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Für eine Antwort klicke bitte auf:" diff --git a/application/i18n/po/po-de_DE/page.po b/application/i18n/po/po-de_DE/page.po new file mode 100644 index 0000000000..010b7dd7c9 --- /dev/null +++ b/application/i18n/po/po-de_DE/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Bitte gib einen Seitentitel an." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Der Seitentitel muss mindestens 3 bis maximal 150 Zeichen lang sein." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Bitte gib einen Seitentab Namen an." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Bitte gib eine Seitenbeschreibung an." diff --git a/application/i18n/po/po-de_DE/permissions.po b/application/i18n/po/po-de_DE/permissions.po new file mode 100644 index 0000000000..9c5283ce75 --- /dev/null +++ b/application/i18n/po/po-de_DE/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# spaudanjo , 2014 +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-08-12 16:09+0000\n" +"Last-Translator: spaudanjo \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Berichte anzeigen" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Berichte erstellen/bearbeiten/löschen" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Berichte bestätigen" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Berichte beglaubigen" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Kommentare zu Berichten verwalten" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Berichte herunterladen" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Berichte hochladen" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Berichte verwalten" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Verwalte Berichterstatter" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Betrachte Statistiken" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Einstellungen verändern" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Panel verwalten" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Benutzer verwalten" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Rollenverteilung verwalten" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Kann einchecken" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Checkins verwalten" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Zugang Administrationsoberfläche" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Zugang Benutzeroberfläche" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Alle Berichte löschen" diff --git a/application/i18n/po/po-de_DE/private_message.po b/application/i18n/po/po-de_DE/private_message.po new file mode 100644 index 0000000000..6fcba44e9f --- /dev/null +++ b/application/i18n/po/po-de_DE/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Übergeordnete ID muss nummerisch sein" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Empfänger wird benötigt" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Der Empfänger existiert nicht" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Die Betreffzeile wird benötigt" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Die Betreffzeile muss mindestens 3 bis 150 Zeichen lang sein" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Das Benachrichtungsfeld ist notwendig" diff --git a/application/i18n/po/po-de_DE/report.po b/application/i18n/po/po-de_DE/report.po new file mode 100644 index 0000000000..bde95f2606 --- /dev/null +++ b/application/i18n/po/po-de_DE/report.po @@ -0,0 +1,395 @@ +# +# Translators: +# spaudanjo , 2014 +# Juergen Eichholz , 2012 +# Wasilis , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-08-12 16:11+0000\n" +"Last-Translator: spaudanjo \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Fehler!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Diese Installation erstreckt sich nur über ein Land. Bitte stelle sicher, dass sich der Ort des Berichts nur auf das Land %s bezieht." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Bitte geben Sie einen gültigen Wert für \"%s\" ein. " + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Das Feld \"%s\" darf nur Zahlen enthalten." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Das Feld \"%s\" wird benötigt." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Das feld \"%s\" existiert nicht." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Das Feld \"%s\" kann nicht von ihrem Profil aus bearbeitet werden." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Das Feld \"%s\" muss eine gültige E-Mail Adresse enthalten." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Das Feld \"%s\" muss eine gültige Telefonnummer enthalten." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Das Feld \"%s\" muss ein gültiges Datum enthalten (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Das Feld \"%s\" muss ein gültiges Datum enthalten (MM/DD/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Bitte wähle einen gültigen Eintrag aus für den Download." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Bitte wähle einen gültigen Eintrag aus für den Download." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Bitte wähle \"unbestätigte Berichte\" oder \"bestätigte Berichte\" oder Beides. " + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Bitte wähle \"unbestätigte Berichte\" oder \"bestätigte Berichte\" oder Beides." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Bitte wähle \"unbestätigte Berichte\" oder \"bestätigte Berichte\" oder Beides." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Bitte wähle \"unbestätigte Berichte\" oder \"bestätigte Berichte\" oder Beides." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Bitte wähle \"unbestätigte Berichte\" oder \"bestätigte Berichte\" oder Beides." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Bitte wähle \"unbestätigte Berichte\" oder \"bestätigte Berichte\" oder Beides." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Bitte wähle einen gültigen Bericht aus für den Download" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Bitte wähle einen gültigen Bericht aus für den Download" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Bitte wähle einen gültigen Bericht aus für den Download" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Für das Herunterladen muss zwischen dem CSV oder XML Format ausgewählt werden." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Bitte wähle ein Format zum Herunterladen Deiner Berichte" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Das Feld VON scheint ungültig zu sein." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Bitte geben Sie ein VON Datum ein. Es kann nicht größer sein als das heutige" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Gib einen gültigen Wert ein, um diesen Bericht zu bestätigen." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Gib einen gültigen Wert ein, um diesen Bericht zu bestätigen." + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Das am/pm Feld scheint ungültig zu sein." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Das Kategoriefeld scheint keinen gültigen Wert zu beinhalten." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Das Kategoriefeld ist ein Pflichtfeld." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Das Datumsfeld scheint keinen gültigen Wert zu beinhalten." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Das Datumsfeld scheint keinen gültigen Wert zu beinhalten." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Das Datumsfeld ist ein Pflichtfeld." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Das Beschreibungsfeld ist notwendig." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Das Stundenfeld scheint keinen gültigen Wert zu beinhalten." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Das Stundenfeld ist ein Pflichtfeld." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Bitte gib einen gültigen Wert ein für die Wahrscheinlichkeit der Information." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Bitte gib einen gültigen Wert ein für die Wahrscheinlichkeit der Information." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Das Minutenfeld scheint keinen gültigen Wert zu beinhalten." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Das Minutenfeld ist ein Pflichtfeld." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Das Feld für die Nachrichtenquelle scheint keine gültige URL zu beinhalten." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Foto-Uploads sind in der Grösse begrenzt auf 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Das Fotoformat scheint ungültig zu sein. Akzeptierte Formate sind .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Die hochzuladene Datei scheint fehlerhaft zu sein." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Bitte gib einen gültigen Wert ein für die Verlässlichkeit der Quelle" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Bitte gib einen gültigen Wert ein für die Verlässlichkeit der Quelle" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Das Titelfeld muss zwischen 3 und 200 Zeichen lang sein." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Das Titelfeld ist notwendig." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Mögliche CSRF Attacke. Möchtest du wirklich einen Bericht erstellen/bearbeiten?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Bitte gib einen gültigen Wert ein für die Verifizierung des Berichts" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Bitte gib einen gültigen Wert ein für die Verifizierung des Berichts" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Der Video-Link scheint ungültig zu sein." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Der Längengrad ist ungültig." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Der Längengrad ist notwendig. Bitte klicke auf die Karte um einen auszuwählen." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Das Ortsfeld ist ungültig. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Der Bericht hat bereits eine Übersetzung." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Das Ortsfeld ist ungültig." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Original und Übersetzung haben die gleiche Sprache." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Der Ort ist notwendig." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Der Ort muss zwischen 3 und 200 Zeichen lang sein." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Das Feld Ort ist notwendig." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Der Längengrad scheint ungültig zu sein?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Der Längengrad ist notwendig. Bitte klicke auf einen Punkt in der Karte." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Die E-Mail-Adresse scheint ungültig zu sein." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Das Feld muss eine Länge zwischen 4 und 64 Zeichen haben." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Das Feld muss eine Länge zwischen 3 und 100 Zeichen haben." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Das Feld muss eine Länge zwischen 3 und 100 Zeichen haben." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Das BIS Datum scheint keinen gültigen Wert zu enthalten." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Bitte geben Sie ein gültiges BIS-Datum ein. Es kann nicht größer sein als HEUTE." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Dein VON Datum kann nicht größer sein als das BIS Datum." diff --git a/application/i18n/po/po-de_DE/reporters.po b/application/i18n/po/po-de_DE/reporters.po new file mode 100644 index 0000000000..257be220c8 --- /dev/null +++ b/application/i18n/po/po-de_DE/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Das Feld 'Breitengrad' enthält einen ungültigen Wert." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Das Feld 'Breitengrad' ist notwendig. Klicke auf die Karte, um eine Position auszuwählen." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Das Reporterlevel scheint ungültig zu sein." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Das Reporterlevel scheint ungültig zu sein." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Das Feld 'Name' des Ortes muss zwischen 3 und 200 Zeichen lang sein." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Die Ortsbezeichnung ist ein Pflichtfeld." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Das Feld 'Längengrad' enthält einen ungültigen Wert." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Das Feld 'Längengrad' ist notwendig. Klicke auf die Karte, um eine Position auszuwählen." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Ungültiger Reporter" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Ungültiger Reporter" diff --git a/application/i18n/po/po-de_DE/reports.po b/application/i18n/po/po-de_DE/reports.po new file mode 100644 index 0000000000..dc499d77c7 --- /dev/null +++ b/application/i18n/po/po-de_DE/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Juergen Eichholz , 2012 +# Zukikototeka , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Bitte bestätige, dass Du ein Element ausgewählt hast" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Bitte bestätige, dass Du ein Element ausgewählt hast" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Berichte müssen kategorisiert werden, bevor sie bestätigt werden können" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Du verfügst nicht über die nötigen Rechte, um diese Aktion durchzuführen" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Du musst ein Feld zum Hochladen auswählen." + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Die hochzuladende Datei muss entweder im .csv oder .xml Format vorliegen." + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Die hochzulandende Datei ist ungültig." diff --git a/application/i18n/po/po-de_DE/roles.po b/application/i18n/po/po-de_DE/roles.po new file mode 100644 index 0000000000..65cec62efe --- /dev/null +++ b/application/i18n/po/po-de_DE/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Das Feld 'Beschreibung' muss zwischen 3 und 100 Zeichen lang sein." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Das Feld 'Beschreibung' ist notwendig." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Das Namensfeld darf nur Zeichen oder Zahlen beinhalten." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Das Namensfeld muss zwischen 2 und 30 Zeichen lang sein." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Die Rolle SuperAdmin kann nicht verändert werden." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Das Feld Name ist notwendig." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Für die Zugangsebene muss eine Nummer zwischen 0 und 100 ausgewählt werden." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Für die Zugangsebene muss eine Nummer zwischen 0 und 100 ausgewählt werden." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Für die Zugangsebene muss eine Nummer zwischen 0 und 100 ausgewählt werden." diff --git a/application/i18n/po/po-de_DE/settings.po b/application/i18n/po/po-de_DE/settings.po new file mode 100644 index 0000000000..a0b5f6a9cc --- /dev/null +++ b/application/i18n/po/po-de_DE/settings.po @@ -0,0 +1,861 @@ +# +# Translators: +# spaudanjo , 2014 +# Juergen Eichholz , 2012,2014 +# Wasilis , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-08-26 13:53+0000\n" +"Last-Translator: Juergen Eichholz \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Das \"Kommentare erlauben\"-Feld scheint keinen gültigen Wert zu haben." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Das \"Kommentare erlauben\"-Feld wird benötigt." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Das \"Beinhalte Feed\"-Feld scheint keinen gültigen Wert zu haben." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Das \"Feeds beinhalten\"-Feld wird benötigt." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "Die Feld für die Feed-Kategorie hat anscheinend keinen korrekten Wert." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Die Angaben für die Feed-Kategorie werden benötigt." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Das \"Erlaube Alarme\"-Feld beinhaltet keinen Wert." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Das \"Erlaube-Alarme\"-Feld wird benötigt." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Das \"Erlaube Berichte\"-Feld scheint keinen gültigen Wert zu haben." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Das \"Erlaube Berichte\"-Feld wird benötigt." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Das \"Stats teilen\"-Feld scheint keinen gültigen Wert zu haben." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Das \"Stat teilen\"-Feld wird benötigt." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Standardanzahl von Records der API-Anforderung" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximale Anzahl an Records die pro API-Anfrage geholt werden." + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maximale Anzahl an API-Anfragen durch pro IP-Adresse" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Das \"Akismet\"-Feld scheint keinen gültigen Wert zu haben." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Das \"Akismet\"-Feld scheint keinen gültigen Wert zu haben." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Der Banner scheint ein ungültiges Format zu haben. Die akzeptierten Formate sind: .JPG, .PNG und .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Bitte stellen Sie sicher, dass \"Bilderfeld\" die Größe von weniger als 250 KB hat." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Das Bilderfeld enthält eine ungültige Datei." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Das Cache Feld ist notwendig." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Das Cache Feld ist ungültig" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Das Cache Feld ist ungültig" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Das Cache Feld ist notwendig." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Es scheint, dass Dein Server keine sauberen URLs generieren kann. Du musst also erst die Konfiguration Deines Servers ändern, damit er saubere URLs (clean URLs) anbieten kann. Eine Hilfe zur Aktivierung sauberer URLs steht im Forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs. Without \"index.php\" in the URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Erlaube saubere URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Saubere URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Das Clickatell API Nummernfeld darf nicht länger als 20 Zeichen sein." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Das Clickatell API Nummernfeld wird benötigt. " + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Das Clickatell Passwort Feld muss mindestens 5 bis maximal 50 Zeichen lang sein." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Das Clickatell Passwort Feld wird benötigt." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Das Clickatell Benutzernamen Feld darf nicht länger als 50 Zeichen sein. " + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Das Clickatell Benutzernamen Feld wird benötigt." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Konfiguriere Karte" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Standardposition" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Das \"Farbe des Feeds\"-Feld scheint keinen gültigen Wert zu haben." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Die Angabe darf nicht länger als 6 Zeichen lang sein." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Die Angabe der Farbe wird benötigt." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Standard Kartenansicht" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Standard Zoom Level" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Empfange Staedte von Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Die Angaben beim Mailserver Port sind zu lang." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Die Portangabe für den Mailserver darf nur Nummern beinhalten." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Das Mailserver Passwort muss mindest 5 bis maximal 50 Zeichen lang sein." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Das Mailserver Passwort wird benötigt." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Die Angaben beim Server Port sind zu lang." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Der Port für den Mailserver wird benötigt." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Die Angaben beim Server Port sind zu lang." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Der Mailserver Typ wird benötigt." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Der Benutzername für den Mailserver darf nicht länger als 50 Zeichen sein." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Der Benutzername für den Mailserver wird benötigt." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Facebook Einstellungsoptionen" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Für die unten stehenden Informationen musst Du eine neue Facebook Anwendung einrichten bei" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Diese Einstellungen ermöglichen es Benutzern, sich über Facebook anzumelden, tut dies nicht erstellen Sie eine Facebook-Anwendung für die Bereitstellung " + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Für die Google Analytics Funkion muss die Web Property ID im Format UA-XXXXX-XX vorliegen." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "HTTPS erlauben" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Diese Option erlaubt den unsicheren Zugang zu Ushahidi; ohne \"https://\" im URL Prefix" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Diese Option erlaubt den sicheren Zugang zu Ushahid; mit https im URL Prefix" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Die Angabe zu den Elementen auf der Seite (im Frontend) wird benötigt." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Die Angabe zu den Elementen auf der Seite (als Admin) wird benötigt." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoom Level" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Wählen Sie einen Kartenanbieter" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Eingabe des API Key" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Fordern Sie einen API Key an" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Die Auswahl des Kartenanbieters ist ein ganz geradliniger Prozess. Wähle einen Anbieter aus, beantrage dort einen sog. \"API key\" und trage diesen API key hier ein." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Kartenanbieter" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Kartenhistorie" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Karteneinstellungen" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Umspannt diese Ushahidi Installation mehrere Länder?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Bitte wählen sie ihr Standardland" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Klicken Sie auf die Karte, um Ihre exakte Position zu setzen." + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Cluster Reports auf der Karte" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Erlaube Benutzern, Kommentare zu Berichten abzugeben" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Erlaube den RSS News Feed auf der Website" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Erzeuge neue Kategorie aus Feeds" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Erlaube Benutzern, Alarme zu abonnieren" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Erlaube Nutzern, Meldungen zu erzeugen." + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet Schlüssel" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Seitenbanner" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blöcke pro Reihe" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache Seiten" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Seitencache Lebenszeit" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Erlaube Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Copyright Statement" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Standardfarbe für alle Kategorien" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Default Icon für alle Kategorien" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Lösche das Bannerbild" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Lösche das Default Icon" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Zeige Kontaktseite" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Zeige \"Hilfe\" Seite" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Email Addresse fuer Alarme" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Zum Empfangen von Mails muessen Sie Ihre Email-Einstellungen konfigurieren." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Seite Emailaddresse" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Eintraege pro Seite - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Eintraege pro Seite - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Verhindere Kommentarspam durch den Gebrauch von Akismet, von Automattic.
Du kannst einen kostenlosen API Akismet key bekommen, indem Du bei WordPress.com ein Benutzerkonto anlegst " + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica Benutzerkennung" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica Seite" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Sprache der Seite" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Manuell bestätigte Benutzer" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Seiten Nachricht" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Seitenname" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Private Deployment" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Benötige Benutzermailbestätigung" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Schicke Bericht" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Share Site Statistics in API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Seiten Untertitel" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Zeitzone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Seiteneinstellungen" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter Credentials" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - trennen durch Kommas " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Feeds Ortsangaben - Ortsnamen Benutzername" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Die E-Mail Adresse für die Website muss mindestens 4 bis maximal 100 Zeichen lang sein." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Der Seitentitel muss mindestens 3 bis maximal 50 Zeichen lang sein." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Der Seitentitel wird benötigt." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Die Tagline muss mindestens 3 bis maximal 100 Zeichen lang sein." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Eine Tagline wird benötigt." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Ihre Clickatell API Nummer" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Checken Sie Ihr Clickatell Buthaben" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Lade Guthaben" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Ihr Clickatell Passwort" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Registriere Dich beim Clickatell Dienst indem Du hier klickst" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Geben Sie Ihre Clickatell Zugangsdaten ein." + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Ihr Clickatell Benutzername" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS ist eine freie Open Source Software, die einen Laptop und ein Mobilfunkgerät in einen zentralen Kommunikationshub verwandelt. Einmal installiert erlaubt das Programm den Benutzern, Textnachrichten über Mobilfunkgeräte an große Benutzergruppen zu schicken und von diesen zu empfangen. Klicke auf die graue Box, um einen Download von FrontlineSMS.com anzufordern." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "FrontlineSMS herunterladen und installieren" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Detaillierte Anweisungen zum Senden von SMS aus der FronlineSMS-Installation finden Siehier. Zum einrichten der Synchronisierung mit FrontlineSMS sind die URL und der API-Schlüssel erforderlich. " + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Kopieren und fügen Sie diese in das FrontlineSMS Feld \"Adresse\"" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Kopieren und fügen Sie diese in das FrontlineSMS Feld \"Ushahidi API Schlüssel\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "FrontlineSMS zu diesem Ereignis-Einsatz verbinden " + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Gib die Telefonnummer für die Verbindung zu Frontline SMS ein." + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Gib die Nummer ohne + oder Striche ein." + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Option 1: Nutze Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Nutze ein globales SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS Setup Optionen" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Das Telefonfeld 1 ist ungültig." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Das Telefonfeld 1 sollte nur Nummern enthalten." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Das Telefonfeld 2 ist zu lang." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Das Telefonfeld 2 sollte nur Nummern enthalten." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Das Telefonfeld 3 ist zu lang." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Das Telefonfeld darf nur Nummern enthalten" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Twitter Setup Optionen" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Für die unten stehenden Informationen musst Du eine neue Twitter Anwendung einrichten bei" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Konsumenten Schlüssel" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Komsumenten Geheimnis " + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Zugriffstoken " + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Zugriffstoken Geheim" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Test einstellungen" diff --git a/application/i18n/po/po-de_DE/sharing.po b/application/i18n/po/po-de_DE/sharing.po new file mode 100644 index 0000000000..c03778c296 --- /dev/null +++ b/application/i18n/po/po-de_DE/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Eintrittsdatum" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Datum hinzugefügt" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Letzter Zugriff" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Das Farbfeld muss 6 Zeichen lang sein (Hex-Code)" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Die Farbangabe ist notwendig." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Der SHARING-NAME ist ungültig" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Ein SHARING Name ist notwendig." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Die Seiten URL existiert bereits." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Die URL scheint ungültig zu sein." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Die Seiten URL ist notwendig." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Das URL Feld scheint keine gültige URL zu beinhalten." diff --git a/application/i18n/po/po-de_DE/stats.po b/application/i18n/po/po-de_DE/stats.po new file mode 100644 index 0000000000..0edcf78303 --- /dev/null +++ b/application/i18n/po/po-de_DE/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Juergen Eichholz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Kontrolliert" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategorien" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Betroffene Kategorien" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Diese Grafik gibt Dir einen Überblick der Meldungen über die Zeitspanne. Scrolle von links nach rechts um die verschiedenen Kategorien zu sehen. Bewege die Maus über die Grafik für mehr Details." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Datumsbereich wählen" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Länder" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Land" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Benutzerländer" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Hier ist der Statistikbereich. Nutze die Links und Untermenüs oben." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Fehler" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossar" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Trefferaufstellung" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legende" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Seitenaufrufe" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Gesamtsumme der Seitenaufrufe der Seite." + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Berichte" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Meldungs-Kategorie" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statistik der Meldungen" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Meldungsstatus" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Report Lochkarte" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Report Statistik" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistik noch nicht eingestellt." + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Monat" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Monate" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Monate" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Alle" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Nicht kontrolliert" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Besucher" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Anzahl der Benutzer, welche das System besuchen. Die Identifizierung erfolgt über Cookies. Im Fall das der Besucher Cookies gespert hat, erfolgt die Identifizierung über IP-Adresse, Auflösung, Browser, Plugins, Betriebssystem etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Ungeprüft" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Geprüft" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Besucherübersicht" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Besuche" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Ein Besuch wird gezählt wenn ein Besucher mindestens 30 Minuten vorher die Seite nicht besucht hat." diff --git a/application/i18n/po/po-de_DE/tooltips.po b/application/i18n/po/po-de_DE/tooltips.po new file mode 100644 index 0000000000..8803d350ef --- /dev/null +++ b/application/i18n/po/po-de_DE/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Juergen Eichholz , 2012,2014-2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-03-07 04:58+0000\n" +"Last-Translator: Juergen Eichholz \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Dies fügt den Bericht zu weiteren Kategorien hinzu. Wenn Du Kategorie 1 ausgewählt hast und der Bericht bereits mit Kategorie 2 verbunden ist, wird der Bericht beiden Kategorien 1 und 2 zugeordnet." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Bestätigt einen Bericht oder nicht. Falls bestätigt, wird der Bericht veröffentlicht." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Du wirst die Möglichkeit haben, einem auslösendem Benutzer ein Abzeichen zu vergeben. Wähle ein Abzeichen aus, das hier angezeigt wird." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Dies ist ein Zeitraum aus Stunden und/oder Minuten zwischen zwei Zeiten, im 24h Format. Wenn Du eine frühere Zeit in das zweite Feld eingibst, wird es mit dem Wert aus dem ersten Feld ersetzt. Diese Zeiten müssen beide innerhalb eines Tages liegen. Ebenso wird der Zeitraum mit der Serverzeit verglichen und nicht notwendigerweise mit der Zeitzone des Benutzers, der Deine Ushahidi Installaion verwendet. Lass diesen Wert auf 00:00 bis 00:00 um dieses Kriterium zu deaktivieren." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Wenn Du bestimmte Auslöser so verwenden möchtest, wenn eine bestimmte Kategorie verwendet wird, kannst Du dies hier einstellen. Dadurch wird der Auslöser nur dann aktiviert, wenn eine bestimmte Kategorie verwendet wird. Wenn Du zum Beispiel Kategorie 1 und Kategorie 2 auswählst und ein eingehender Bericht mit den Kategorien 2 und 3 reinkommt, wird diese Funktion ausgelöst." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Falls diese Aktionen an einem bestimmten Wochentag stattfinden, kannst Du dies hier einstellen. Der Wochentag wird über die Einstellung der Zeitzone auf dem Server bestimmt. Drücke Shift, Command oder Strg um mehrere Tage auszuwählen." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Text der E-Mail, die verschickt werden soll." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Betreffzeile der E-Mail, die verschickt werden soll." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Der Feed kann alle Feed beinhalten oder nur einen bestimmten. Wenn nur ein bestimmter Feed als Auslöser dienen soll, muss er hier ausgewählt werden. Andernfalls kann die Einstellung auf \"alle\" gelassen werden." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Twitter Benutzernamen (oder mehrere Benutzernamen, getrennt über Kommatas). Wenn nur für die Tweets eines bestimmten Benutzernamens die Auslöser funktionieren sollen, muss der jeweilige Benutzername hier (ohne @) eingegeben werden." + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Du kannst dieses Feld leer lassen wenn Du nicht nach Schlüsselwörtern überprüfen lassen möchtest. Wenn Du hier Wörter hinzufügst, musst Du sie mit einem Komma (,) voneinander abtrenen. Wenn Du zum Beispiel einen Auslöser aktivieren möchtest, bei dem jemand die Worte \"Liebe\" oder \"Frieden\" in der Nachricht erwähnt, müssen diese beiden Worte \"Liebe, Frieden\" in dieser Form eingetragen werden." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Du kannst entweder \"überall\" oder einen bestimmten Ort angeben. Wenn Du einen bestimmten Ort auswählst, wirst Du vom System danach gefragt, eine Box um das Zielgebiet zu setzen. Wenn Du beispielsweise einen Auslöser für das Land Brasilien erstellen möchtest, musst Du \"genauen Ort\" (\"specific area\") auswählen und eine Box um Brasilien zeichnen. Du kannst diese Boxen klein oder so groß machen wie Du möchtest. Du kannst auch mehrere Kästchen zeichnen." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Dieses Kriterium aktiviert den Auslöser für den n-ten Zähler für die gesamte Benutzerdatenbank oder für jeden einzelnen Benutzer. Lass dieses Feld frei um es nicht zu benutzen." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Dies ist der Standardtitel für den Bericht." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Wenn alle Abfagekriterien abgearbeitet sind, wird der Auslöser eine Antwort initiieren. Diese variert von der bloßen Berichtsbestätitung bis hin zu Bestätigungsemails an den Benutzer. Wähle die mögliche Antwortvariante hier aus um weitere Optionen für genauere Antworten zu ermöglichen." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Wenn Du \"auslösender Benutzer\" auswählst, wird die E-Mail an den Benutzer geschickt, der den Bericht eingereicht hat. Wenn Du den Knopf neben dem Eingabefeld auswählst, kannst Du eine eigene E-Mail Adresse eingeben. Dies ist bei der Erstellung von Auslösern hilfreich, die bestimmte Aktivitäten auf der Karte verfolgen." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Du kannst hier mehrere Tage auswählen. Die Daten werden von der Installation und der verbundenen Zeitzone bestimmt. Um alle Tagezeiten zu aktivieren, gib kein Datum ein." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Der Auslöser ist die Hauptkomponente des Systems und bestimmt die weitere Handlung. Wenn jemand z.B. einen Bericht einreicht, kann dieser Bericht nach verschiedenen Kriterien gefiltert werden und weitere Handlungsschritte auslösen." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Der Benutzer kann jederman oder ein ganz bestimmter Benutzer sein. Wenn nur ein bestimmter Benutzer einen Auslöser starten soll, kannst Du ihn hier bestimmen. Andernfalls ist das Feld frei zu lassen (\"niemand\") - auch weil die meisten Auslöser auf alle Benutzereingaben reagieren." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Markiert einen Bericht als bestätigt oder unbestätigt." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Die Profilseiten verwenden Gravatar. Beim Klicken auf das Bild wirst Du auf die Gravatar Website weitergeleitet, wo Du Dein Profilbild verändern kannst." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Unterteile jeden Wert mit einem Komma, z.B. Wert1, Wert2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Unterteile jeden Eintrag mit einem Komma, z.B. Wert1, Wert2. Wenn Du einen Standardeintrag erstellen möchtest, beende Deine Auflistung mit :: z.B. falls Wert3 der Standardeintrag sein soll, schreibe Wert1, Wert2, Wert3::Wert3." + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Unterteile jede Auswahl mit einem Komma, z.B. Wert 1, Wert 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Tippe hier zur Anzeige der Mitglieder." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Betreffzeile der privaten Nachricht" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Private Nachricht" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Du kannst eine Farbe auswählen, die unterhalb Deines öffentlichen Profilbildes erscheinen soll. Diese Farbe wird auch für Deine Checkins auf der Karte verwendet." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Deine Email-Adresse" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Dein vollständiger Name" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Falls ausgewählt, wird dies Dein neues Passwort. Lasse dieses Feld leer, wenn Du Dein aktuelles Passwort behalten möchtest." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Dies ist eine Voraussetzung bei der Erstellung eines neuen Benutzers und wird das neue Benutzerpasswort. Du solltest Deinen neuen Benutzer informieren, dass er direkt nach dem ersten Login sein Passwort verändert." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Wenn Du JA wählst, bekommst Du eine Information wenn neue Kommentare oder Ereignisse auf Deiner Seite gemeldet werden." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Dein Passwort. Lass das Feld leer, wenn Du Dein jetziges Passwort beibehalten möchtest." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Dein Profil kann von jedem im Internet angeschaut werden wenn Du diese Option aktivierst. Dies ist auch die einfachste Methode, um Deine eingereichten Berichte, Deine Checkins, Deine Badges, usw. auf einer Seite aufzulisten." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Hier wird die Adresse zu Deinem öffentlichen Profil stehen." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Dein Benutzername kann nicht geändert werden." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Zugangsebenen werden verwendet, damit der Zugang zu Benutzerdateneingaben kontrolliert werden kann. Höhere Zugangsebenen können die Daten niedrigerer Zugangsebenen einsehen. Der Superadmin hat den höchsten Zugangslevel (100). Öffentliche Daten haben den niedrigsten Level von (0). Einfache Mitglieder haben den Level 10, Administratoren haben den Zugangslevelwert 90." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Diese Mailadresse wird genutzt um Dir Meldungen zuzustellen." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Erlaube Benutzern, Ereignisse über das Web zu abonnieren." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Dies erlaubt das Bündeln von gleichen/ähnlichen Berichten in einem Punkt auf der Karte." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Erlaubt Nutzern das Kommentieren von Meldungen auf der Hauptseite." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Erlaubt die Anzeige von RSS Feeds auf der Hauptseite." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Diese Einstellung erstellt eine neue Kategorie aus RSS Nachrichten Feeds." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Erlaubt Nutzern die Übermittlung von Informationen via Web-Formular." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Standardanzahl an Records die pro API-Anfrage geholt werden." + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximale Anzahl an Records die pro API-Anfrage geholt werden." + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maximale Anzahl an API Anfragen per IP-Adresse." + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Der Seitenbanner wird oben auf der Seite angezeigt, sofern das verwendete Layouttheme dies unterstützt. Die empfohlene Größe für diesen Banner hängt vom verwendeten Theme ab. Bitte beachte, dass der Banner den Seitentitel und die Tagline ersetzt." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Nummer von Blöcken, die in jeder Zeile angezeigt werden." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Erlaube oder verbiete das Zwischenspeichern der Seite. Dies verbessert die Geschwindigkeit beim Seitenaufbau.Wir empfehlen dies bei Seiten die häufig genutzt werden.** Denke daran, dass Meldungen entsprechend Deiner Einstellung hier im Frontend veröffentlicht werden." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Setzen der Cache-Zeit." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Diese Einstellung erlaubt Check-Ins auf Deiner Installation. Dies ist ein vereinfachter Report-Typ, der nicht moderiert wird bevor er online geht und benötigt einen sicheren Weg. Wenn Du dies ankreuzt, stelle sicher, dass Deine Zeitzone auf UTC eingestellt ist und das Dein Theme Check-Ins erlaubt. " + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Setze die Karte, um einen spezifischen Ort zu überwachen." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Lege eine Farbe fest für alle Kategorien auf der Seite." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Setze ein Icon für alle Kategorien auf der Webseite." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Das ist das Land, in dem die Seite veröffentlicht wird." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Ein oder Ausschalten der Kontakt-Seite" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Ein oder Ausschalten der Hilfe Seite auf der Hauptseite." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Dies ist die Anzahl von Meldungen, die auf der Hauptseite angezeigt werden." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Dies ist die Anzahl der Berichte, die im Back-End angezeigt werden." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Dies ist der Hub für eingehende Nachrichten." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Dieses synchronisiert die Nachrichten im Hub mit der Ushahidi Plattform." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Telefonnummern, um die Textnachrichten zu empfangen." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Dokumentiert die Besucher Deiner Seite um eine Statistik zu erstellen." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Stellt die Sprache der Seite ein." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Wenn Du diese Option aktivierst, musst Du jeden Benutzer auf der Seite einzeln aktivieren und ihm Benutzerrollen bzw. Zugangsebenen zuweisen (z.B. Mitglied, Administrator, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Legt die Karte fest, die Du nutzt." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Dies stellt die Timeline so ein, dass Einträge bzw. Ereignisse chronologisch sortiert aufgelistet werden." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Die Aktivierung dieser Einstellung führt dazu, dass diese Ushahidi Installation nur für ausgewählte Benutzer mit Benutzerkonten erreichbar ist." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Nach Aktivierung dieser Option wird den Benutzern eine E-Mail mit einem Bestätigungslink geschickt, den sie zuerst anklicken müssen bevor sie sich ins System einloggen können. Wenn Du diese Funktion erst nach der Registrierung von Benutzern aktivierst, müssen sie ihr Benutzerkonto erst bestätigen, bevor sie wie gewohnt weiterarbeiten können." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Hier wird der Speicherort der E-Mails festgelegt." + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Das ist das Passwort für die Emailadresse, welche die Meldungen empfängt." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Dies ist notwendig, um eingehende Verbindungen von der Mailadresse zu akzeptieren." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Dies ist notwendig zum Aufbau einer sicheren Verbindung." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Dies ist notwendig, um Mails vom Server zu empfangen." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Diese Emailadresse empfängt die Meldungen." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Dies ermöglicht den Zugriff auf die Statistik mit der API." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Es ist immer eine gute Idee, das Copyright für seine Arbeit zu sichern. Um auch die richtiges Rechte zu bestimmen, besuche https://creativecommons.org/choose/ und beachte, welche Elemte Deiner Seite Du damit lizensierst!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Das ist die Mailadresse zum Empfang von Eingaben aus dem Kontaktformular." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Dies ist der Text, der oberhalb der Karte auf der Homepage erscheint. Dies ist hilfreich, um wichtige Informationen an die Besucher der Seite weiterzugeben. Um die Box zu löschen, entferne einfach den Text." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Das ist der Seitenname, der ganz oben auf der Seite erscheint." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Dies ist eine Meldung, die auf der Eingabeseite erscheinen wird. Sie eignet sich gut für Haftungsbeschränkungen oder weitere Anleitungen für die Benutzer, die gerade einen Bericht ausfüllen." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Erläutere in wenigen Worten das Ziel der Seite." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Dies ist die Zeitzone, in der die Website aktiv sein soll. Sie hat Auswirkungen auf alle Aktionen, die sich nach der Uhrzeit oder einem Datum richten. Dies beinhaltet auch die Standardzeit für Berichte auf dem Front- und Backend dieser Website." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Bestimme den Twitter hashtag der für die Tweets verwendet werden soll." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "Falls Du Deine Feed-Eingabe georeferenzieren möchtest, registriere einen Benutzername bei http://geonames.org, aktiviere dort die freien Webservices und gibt diese hier ein. Oder leer lassen, um diese Funktion zu deaktiveren.

Beachte die Benutzungsbeschränkungen!" diff --git a/application/i18n/po/po-de_DE/ui_admin.po b/application/i18n/po/po-de_DE/ui_admin.po new file mode 100644 index 0000000000..19114c60df --- /dev/null +++ b/application/i18n/po/po-de_DE/ui_admin.po @@ -0,0 +1,1660 @@ +# +# Translators: +# spaudanjo , 2014 +# Juergen Eichholz , 2012-2014 +# Marius, 2012 +# Wasilis , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-08-26 13:56+0000\n" +"Last-Translator: Juergen Eichholz \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Zugriff verweigert. Entweder Deine Anmeldedaten sind nicht gültig oder Deine Anforderung wurde zurückgewiesen." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Zugriff verweigert. Deine Anforderung wurde verstanden, aber verweigert wegen Zeitüberschreitung. Probiere es später erneut." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Zugangslevel" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Aktionen" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Zur Kategorie hinzufügen" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "hinzugefügt" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Hinzugefügt/Bearbeitet" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Erweiterungen" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Meldungen" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Empfangene Meldungen" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Alle" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonym" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Jeder" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Überall" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API gesperrt" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Logs" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Einstellungen" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "entsperren" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "UNBAN Alle" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "geprüft" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Automatische Prüfung" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Manuelle Prüfung" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archiviert" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Bist Du sicher, dass Du" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Bist Du sicher, dass Du diesen Eintrag löschen möchtest?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Bist Du Dir sicher, dass Du dieses Foto löschen möchtest?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Bist Du Dir sicher, dass Du die Formulare austauschen willst?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Anweisen" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Anweisungen " + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Badge anweisen" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email des Verfassers" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Zurück" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "BAN IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Zwischen den Zeiten" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocks" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Body" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Abbrechen" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategorien" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Fehler bei der Anzeige des Charts" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Bitte stelle sicher, dass Deine Nachricht gültig ist." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Bitte stelle sicher, dass die Nummer richtig ist." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Kontrolliere Dein SMS-Einstellungen!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Checkin Details" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Städte geladen" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "Code" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Code Version nicht synchronisiert." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Farbe" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Kommentare" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Code zur Bestätigung der Meldung ist: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Der Benutzer hat" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Zähler" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Land nicht gefunden" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "bearbeitet" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Erstelle eine Meldung" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritisches Update" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Derzeit aktiv" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Derzeit inaktiv" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Du hast nicht die vollen Rechte, um die folgenden Felder zu bearbeiten." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Täglich" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Kontrollmonitor" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "Datenbank" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Datum + Zeit" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "hinzugefügt am" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "verändert am" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Tage der Woche" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB Version nicht synchronisiert." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "gelöscht" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Löschen" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Alle Berichte löschen" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Emblem löschen" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Beschreibung" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Ausgeschaltet" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Divider Start" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Divider End" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Download Meldungen" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Dropdown Auswahl" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "Bearbeitet" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Bearbeitet von" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Bearbeiten" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Bearbeitungs-Log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "E-Mail" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Gesamte Kollektion" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Fehler in Geocoding! HTTP Fehler" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP Bibliothek ist nicht installiert" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Falsche Benutzerkennung" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Fehler" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Fehler, Veröffentlichung des Ereignisses nicht möglich!" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Alle 6 Stunden" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Alle 12 Stunden" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Häufige Fragen" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "Feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Rückmeldung" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "Feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Auswahlmöglichkeiten" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Standardwert" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Datentyp" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerisch" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Freier Text" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Höhe (In Zeilen)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Verstecktes Feld" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maximale Zeichenlänge" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Feldname" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "umschalten" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Nein" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Ja, immer geschlossen" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Ja, immer geöffnet" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Datei zum Hochladen nicht gefunden" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Datei kann nicht zum Lesen geöffnet werden." + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Dieses Formular existiert nicht!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Textfeld (Freitext)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Datumsfeld" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Radio Buttons Felder" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Checkbox Felder" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Dropdown Felder" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Von" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Vom" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonames Zeitüberschreitungsfehler" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Hilfe" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Mehr Themes" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Mehr Plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Aktionen" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Hinzufügen/Bearbeiten" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "E-Mail" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Benutzerverwaltung" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rolle" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Benutzer" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Hilfe" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Stündlich" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Ereignis Feed für" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Der Installationsordner existiert noch. Bitte lösche den Installationsordner. Er ist ein potentielles Sicherheitsrisiko." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Vorgang/Fall" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Vorgänge/Fälle" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Falldetails" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Ungültige Parameter" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP Addresse" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Ist dies ein Datumsfeld?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Wer kann Antworten sehen" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Wer kann Antwort einreichen" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Schlüsselwort" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Schlüsselwörter" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email Adresse:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Vollständiger Name:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Passwort:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rolle:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Benutzername:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Ebenen" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Abmeldung" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logdateien" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Verwaltung" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Verwalte Rollen + Zugriffsrechte" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Benutzerverwaltung" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Hinzufügen/Bearbeiten von Benutzern" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Die öffentlichen Listing verwalten" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Markieren als" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "Markiert als kein Spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "Markiert als Spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "keine Übereinstimmung mit einem Dokument" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Nachrichten" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Nachrichten" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica Nachrichten" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter Nachrichten" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Ihre Nachricht wurde gesendet!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minute" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minuten" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Fehlende Parameter" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "aktualisiert" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Zeitzone verändern" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "nach unten" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "nach oben" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Mehrfach gehostete Ereignisse." + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Meine Meldungen" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Meine Checkins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Mein Profil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Meine Berichte" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "gezählte Stimmen" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "positiv" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "negativ" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Name" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Neue Melgung hinzufügen" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Neue Nachricht erstellen" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Neues Passwort" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Nein" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Dies ist eine spezielle Kategorie, die nicht in den eingereichten Berichten erscheinen wird. Hier werden diejenigen Berichte gespeichert, die (bisher) keiner Kategorie zugeordnet werden konnten weil die ursprüngliche Kategorie gelöscht wurde." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Benachrichtigung" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Groß- / Kleinschreibung wird nicht berücksichtigt." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Keine Daten. Nichts anzuzeigen." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Kein Fehler" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Keine Ergebnisse zum Anzeigen!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "von" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Genaue Zählung" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "Seite" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "Seiten" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Seite nicht gefunden" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Tut uns leid, die Seite existiert nicht.

Bist Du einem Link von unserer Seite gefolgt?
Wenn Du einem internen Link gefolgt bist, bitte kontaktiere uns damit wir den Fehler beheben können.

Bist Du von einer externen Seite gekommen?
Links von anderen Seiten sind manchmal veraltet oder falsch. Teile uns mit von welcher Seite Du gekommen bist damit wir auch hier ggf. den Fehler korrigieren können

Hast Du die URL eingegeben?
Vielleicht war die (URL) falsch. Kontrolliere die richtige Schreibweise, etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Entschuldigung, diese Seite ist nicht verfügbar." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "genutzte Parameters" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Passwort" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Sehr geehrte Damen und Herren" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "wir haben einen Anforderung erhalten, dass Passwort zurückzusetzen für" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Um Ihr Passwort zu erneuern klicken Sie bitte auf untenstehenden Link (oder kopieren Sie ihn in die Adresszeile Ihres Browsers)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Dein Passwort wurde zurückgesetzt. Die neuen Login-Daten sind:" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi Passwort zurücksetzen" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Bitte auswählen" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Daten wurden nicht gesendet durch post Methode" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Vorschau" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Nachricht" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Private Nachricht" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Private Nachricht gesendet" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Betreff" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "An" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "öffentliche Liste" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Abfragekriterium" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "gelesen" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevanz" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Berichtstitel" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Berichtet am" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporter" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Reporter Stufe" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Berichte" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Reputationswert" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Erforderlich" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Zurücksetzen" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Antwort" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Ergebnisse" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Aufheben" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Diese E-Mail Adresse ist bereits mit einer CrowdmapID verbunden. Der Benutzer muss sein bereits existierendes Crowdmap Passwort benutzen." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Speichereinstellungen" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Suche" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Suche Berichte" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "suchen nach" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Der Verschlüsselungsschlüssel wurde noch nicht verändert. Dies ist unsicher und sollte bald geändert werden." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Diese Seite wird über HTTP ausgeliefert. Die Einstellung sollte auf HTPPS verändert werden, um eine erhöhte Sicherheit zu gewährleisten." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Anleitungen sind im Wiki verfügbar:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Wähle Dein gewünschtes Format für den Bericht aus:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Wählen Sie einen Feldtyp ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Wähle einen Eintrag" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Du must zuerst einen Auslöser auswählen bevor Du eine Antwort auswählen kannst." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Du musst zuerst einen Auslöser auswählen bevor Du ein Abfragekriterium auswählen kannst." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Absender" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Senden an" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Diese Nachricht wurde von Deiner Webseite gesendet am" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Serverzeit" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Einstellungen" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Zeige Seite" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Zeige Ergebnisse" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "gezeigt" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Spezialkategorie" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Dies ist eine spezielle Kategorie, die nicht in den eingereichten Berichten erscheinen wird. Dies wird in Kombination mit den \"Vertrauten Berichterstattern\" verwendet." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Genauer Bereich" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Staat" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistik" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistik" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Sammeln der Statistik fehlgeschlagen! Entweder der Server ist aus, oder in Deiner Ushahidi Konfiguration stimmt etwas nicht. Siehe bitte nach ob der Server erreichbar ist. Um die Statistik manuell zurückzusetzen, verändere stat_id (auf Null setzen) und stat_key (auf 0 setzen) in den Einstellungen Deiner Datenbank. WARNUNG: Bei diesem Vorgehen verlierst Du den Zugang zu Deinen Statistiken!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Sammeln der Statistik fehlgeschlagen!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "genaue Tage" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Betreff" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Aufgabe ausgeführt" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Textfeld" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Name" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Verwalte Benutzer" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Zeitüberschreitungsfehler" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "zu" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Summe Datensätze" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "Bis" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Übersetze Berichte" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Auslöser" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "auslösender Benutzer" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Auslöser" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "Ungeprüft" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Unbekannt" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "unbekannter Fehler" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "Ungelesen" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Du wirst keine weiteren Meldungen bekommen von" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Klick hier zum Update" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Ushahidi aktualisieren" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Ushahidi Status aktualisieren" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Berichte hochladen" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Benutzer" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Benutzer" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Bestätigt/Unbestätigt" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Bestätigen/Unbestätigen" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Version" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "ist verfügbar für Update." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Videoverschlüsselung" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Private Nachricht" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Zeige Seite" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Berichte anschauen" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Willkommen, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Ja" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Suche nach" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Bei Betätigung des Knopfes weiter unten werden alle Beiträge aus der Datenbank gelöscht. Du solltest Dir das genau überlegen, da dieser Schritt nicht rückgängig gemacht werden kann." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Wir empfehlen Dir, eine Sicherung Deiner Datenbank durchzuführen, bevor Du weitermachst." + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Ich bin mir sicher, dass ich alle %s Einträge in der Datenbank löschen möchte." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Sind Sie sicher, dass Sie alle Berichte löschen möchten?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Keine Berichte zum Löschen vorhanden. " + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Anzahl der Logins" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Letzter Login" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Bestätigtes Benutzerkonto?" diff --git a/application/i18n/po/po-de_DE/ui_main.po b/application/i18n/po/po-de_DE/ui_main.po new file mode 100644 index 0000000000..319ff4fe6e --- /dev/null +++ b/application/i18n/po/po-de_DE/ui_main.po @@ -0,0 +1,3173 @@ +# +# Translators: +# spaudanjo , 2014 +# Juergen Eichholz , 2012-2015 +# Marius, 2012 +# Simon Zöllner, 2013 +# Wasilis , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-03-07 04:58+0000\n" +"Last-Translator: Juergen Eichholz \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Über" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Zugang" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Zugangsbeschränkung" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Kontoname" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Aktionen" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Bist Du Dir sicher, dass Du damit fortfahren möchtest?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivieren" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktiv" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Hinzufügen" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Hinzugefügt durch" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "weitere Daten" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Weitere Meldungen" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Bearbeiten" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Feld hinzufügen" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Sprache hinzufügen" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Neu" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Neue Kategorie" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Übersetzung hinzufügen" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Verwaltung" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Alarme" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alarmiere mich, wenn eine Meldung in der Umgebung eingeht." + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Speichere meine Meldung" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "E-Mail Addresse:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Eingeben der E-Mailaddresse" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Eingabe der Mobilnummer mit Landescode" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Empfange Alarme" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Meldung wurde" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobiltelefon:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "oder positioniere einen Spot auf der Karte um Alarme zu empfangen, wenn sich im Umkreis des eingestellten Bereiches etwas ereignet." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Wenn Du Deinen genauen Ort nicht finden kannst, klicke auf die Karte und bestimme dort Deinen Ort." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (kopiere die URL unten)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Wähle eine Stadt" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Schritt 1: Standort oder Stadt auswählen:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Schritt 2: Sende Meldungen an:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Schritt 3 (optional): Kategorie auswählen" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Bestätigen Sie einen vorher angeforderten Meldung" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Die Alarmierung wurde gespeichert!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Alle" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Erlaubt" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Ertlaubte HTML tags: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes sind nur erlaubt aus: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Alle Kategorien" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Jederzeit" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "und" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Prüfen" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Geprüft" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Geprüfte Berichte" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Wurde diese Bericht geprüft?" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Geschätzt" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archiv" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "archiviert" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Aufsteigend" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "um " + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Auto" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "durschnittliche Berichte pro Tag" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Wartet auf Prüfung " + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Wartet auf Bestätigung" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Abzeichen" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Abzeichen" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Abzeichen Bild" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Oder lade Dein eigenes Abzeichen hoch" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Abzeichen Packet" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Abzeichen auswählen" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Profile durchstöbern" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Abbrechen" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategorien" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategorie" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategorie-Filter" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Die Kategorie wurde " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Name der Kategorie " + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Datumsbereich ändern" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Passwort ändern" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Bild ändern" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Wähle" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Wähle Daten zum Download" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Oder wählen Sie einen Datumsbereich aus" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Wähle Feldtyp" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Säubere URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Löschen" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Karte zurücksetzen" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Schließen" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Clusters" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Farbe" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Kommentar" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Kommentare" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Details" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Ihre Einstellungen wurden gespeichert!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Konfiguriere" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Du hast Deine E-Mail Adresse erfolgreich bestätigt! Bitte melde Dich jetzt an." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Sie haben Ihre Email-Adresse erfolgreich bestätigt! Ein Administrator muss ihren Account noch freischalten, bevor Sie sich einloggen können. " + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "E-Mail Bestätigung nicht erfolgreich! Du kannst eine neue E-Mailbestätigung weiter unten beantragen." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontakt" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Sicherheitscode" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Deine E-Mail Adresse" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Nachricht" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Deine Nachricht wurde verschickt!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Dein Name" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Deine Telefonnummer" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Nachricht verschicken" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Betreff" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © " + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Neu..." + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Erstellen/Bearbeiten" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "neu erstellen" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Neues Passwort erstellen" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Meldung erzeugen" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Glaubwürdigkeit" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Derzeitiges Passwort" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Eigene Felder" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Information" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(MM/TT/JJJJ)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Datum & Zeit" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "Tag" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "Täglich" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deaktiviere" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Berlin, Germany" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Löschen" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Gelöscht" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Gelöschte" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Löschen gesperrt" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "letzten löschen" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Löschen der Meldung" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "ausgewählten löschen" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Löschen Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Beschreibung" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Absteigend" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Bsp: Ecke Kaufhaus, Hauptstr Kreuzung, Berlin" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Details" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Direktmeldung" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Gesperrt" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Ungeprüft" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Download Berichte" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Herunterladen" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Bearbeiten" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Bearbeite Formularfelder" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Meldungen bearbeiten" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-Mail" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Email Addresse" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Mail Server Einstellungen" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Passwort" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Mail Server SSL Unterstützung" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Typ" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Benutzername" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Ihre Einstellungen müssen im Zusammenhang stehen mit Ihrer E-Mail-Adresse." + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Um Berichte per Mail zu empfangen, geben Sie bitte Ihre Account-Einstellungen unten ein. Beachten Sie das Ihre E-Mails empfangen werden von: " + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Einige Server benötigen eine komplette E-Mail Adresse" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Passwort des E-Mailkontos" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Normale Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Beispiele: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Beispiele: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Erlaube oder verbiete SSL Verbindungen" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "--LEER--" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "zu" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Fehler!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Beispiel" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Germany" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "externe Apps" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "externer Videolink" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Feedback abgeben" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Bitte gib uns eine Rückmeldung zu Deinen bisherigen Erfahrungen und schreibe eine E-Mail an" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Der Feed wurde" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Feed-Elemente" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Feed Name" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Feed URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Unbenutztes Feld" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Datei" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Die Datei ist größer als die maximal erlaubte Dateigröße." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filter" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Berichte filtern" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Berichte filtern nach" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Berichte filtern die folgendes beinhalten" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Finde" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Finde Standort" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Vorname" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Planer" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formular" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulare" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Formularbeschreibung" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Bearbeite dieses Formular" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Das Formular ist" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Formulartitel" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Von" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Name" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Geo-Location verfügbar" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Farbe" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Kommentare" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Label" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Strichstärke" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Go" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "wurde" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Hilfe" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Versteckt" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "verstecken" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "verberge diese Nachricht" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Startseite" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "Stündlich" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Meldewege" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Wird verwendet um Dich auf der Seite zu identifizieren." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Bild" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Bilder" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Bild/Icon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inaktive" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Eingang" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Unglück/Einsatz" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Einsätze in der Nähe" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Einsatzort" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Eingeschlossen" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Mit Kategorien" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Eigene Felder hinzufügen" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Mit Beschreibungen" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Soviele Details wie möglich" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Mit Breitengrad" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Mit Standortinformationen" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Mit Längengrad" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Erfasse persönliche Daten" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Eingehende Medien" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Bewertung der Informationen" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Gib Deine genaue Position an" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Dein Konto hat leider nicht die richtigen Rechte für die Anmeldung. Bitte den Administrator kontaktieren." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Interval" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Als Antwort auf" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Addresse" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Ist das Dein Profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Eintrag" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "Einträge" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Details der Einträge" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Titel des Eintrages" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Schlüssel" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Stichwörter" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML Datei" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "KKMZ/KML Datei hochladen" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Sprache" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Letzte" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Letzter Monat" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Nachname" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Letztes Jahr" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Breite" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Layer" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Andere Layer" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Der Layer wurde" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Layer Name" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Layer URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Geben Sie einen Kommentar" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "weniger Information" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Level" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Dieses Level wurde" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Level Name" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "begrenzt" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Liste" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Berichte laden" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Standort" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Standorte" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Stadt Staat und/oder Land" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Einloggen" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Konto wurde erfolgreich erstellt. Du kannst Dich jetzt einloggen." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Eine Bestätigung wurde jetzt jetzt an Deine E-Mail Adresse verschickt." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Das Konto wurde erstellt und muss von einem Administrator freigeschaltet werden, bevor Du Dich einloggen kannst." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Die E-Mail Adresse existiert nicht. Bitte verwende Deine andere Adresse oder erstelle ein Konto." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Bitte Kontoprovider auswählen" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Einloggen mit" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-Mail und Passwort" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Anmelden" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Konto erstellen" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Danke für die Registrierung bei %1$s. Um ihre E-Mail-Adresse zu bestätigen, besuchen Sie bitte die URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Anmeldebestätigung" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Ein neuer Benutzer hat sich bei %1$s registriert. Um die Registrierung freizuschalten, gehe bitte auf die folgende URL: %2$s." + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Freischaltung neuer Benutzer" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Dein Benutzerkonto für %1$s wurde freigeschaltet. Gehe bitte zum Login auf die URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Ihr Account wurde freigeschaltet. " + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Erstelle ein Benutzerkonto, um weitere Vorteile dieser Website nutzen zu können." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Länge" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Karte" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Markiere als gelesen" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Markiere als ungelesen" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximale Dateigröße" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Medien" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Medienfilter" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Mitglieder" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Konto verwalten" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Nachricht" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Nachrichten" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Nachrichten Details" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Nachricht aus einer nicht-nummerischen Quelle:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Korrigiere" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Korrigiere Datum" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "Monat" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "Monatlich" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Mehr" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Mehr Informationen" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Umfasst diese Ushahidi Deployment mehrere Länder" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Du muss Deine E-Mail Adresse bestätigen. Falls Du die Anmeldebestätigungs-Email verloren hast, kannst Du hier eine weitere beantragen." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Name" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Benachbarter Bericht" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Neu" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nachrichten" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Nachrichten Feeds" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "News Quelle" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Neue Kategorie" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Neues Passwort" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Neue Meldung" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Weiter" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nein" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Kein Checkin zur Anzeige." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Keine Daten" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Nichts" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notizen" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Ungeprüft" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Ungeprüft" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Nicht ausgewählt---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "kein Spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "nicht festgelegt" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Es gibt keine Berichte" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Keine Ergebnisse" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Aus" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Offizielle Nachrichten & Meldungen" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "An" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Option" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Optional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Optionen" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organisation" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organisationen" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Organisations-Beschreibung" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Organisations-Email" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Die Organisation wurde" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Organisationsname" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Organisation Telefon 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Organisation Telefon 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Organisation Website" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Original Beschreibung" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Original Titel" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Andere Ushahidi Installationen" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Ausgang" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Ausgehend" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Seite" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Seiten" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Seitenbeschreibung" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Die Seite wurde" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Seiten Tab Name" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Seitentitel" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Übergeordnete Kategorie" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Passwort" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Passwort erneut eingeben" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Passwort erfolgreich verändert! Anmelden weiter unten." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Kontrolliere Deine E-Mails für das neue Passwort." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Eingeloggt bleiben an diesem PC?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Letzter Monat" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Letztes Jahr" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "unerledigt" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Angaben zur Person Optional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Bilder" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Bilder und Videos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Suche nach Deinem Standort auf der Karte oder über den Längen- und Breitengrad (Format: 38.19, 85.61)." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Abspielen" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Bitte beachten" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugins Webseite" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "öffentliches Profil" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL des öffentlichen Profils" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Vorschau" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Vorschau Eintrag" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Nachrichtenvorschau" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Vorher" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privat" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Farbe des Profils" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Dein Profil wurde gespeichert" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Kurzstatistik" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Bewertung" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Lese" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Empfang" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Empfangen von" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Empfange Notifications" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Neueste Meldungen" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Erneuere News Feeds" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registrierte E-Mail Adresse" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Entfernen" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Antwort" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Report1" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Berichte (aus der Karte, in chronologischer Reihenfolge)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Berichterstatter" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Melder" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Berichterstatter Datum" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Melder Email" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Vorname des Melder" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Der Reporter Has Been" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP Addresse des Melder" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Nachname des Melder" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Berichterstatter Ebene" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Berichterstatter Ebenen" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Melder Telefonnummer" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Meldungen" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Durchstöbern" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Übertragen" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Berichte dieses Benutzers" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategorien" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Berichte" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Datum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Beschreibungen" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Meldungen werden im CSV Format exportiert" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-Mail" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Features" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Finde Standort in der Nähe" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Vorname" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Nachname" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Exakte Standortbeschreibung" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Quellen-Link" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Optionale Informationen" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Upload Fotos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Zurück zu den Meldungen" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Wähle eine Stadt" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Deine Meldung wurde übertragen. Wir melden uns zeitnah bei Rückfragen." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Neue Meldung" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Zeit" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Zeitschiene" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Meldungs-Title" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Videolink" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Melden Sie ein Ereignis" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Meldungsdetails" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Senden einer Nachricht an " + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Senden einer E-Mail an " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Senden eines Tweed mit folgenden Hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Ausfüllen dieses Formulars " + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Bei der Verwendung einer App" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Ihre Meldung wurde gespeichert" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titel der Meldung" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Request weitere Informationen" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Request Standort" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Benötigt" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Bedingungen" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Bestätigungsmail erneut versenden" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Alle Filter zurücksetzen" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Reset Passwort" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Empfange Stadtnamen für das gewählte Land" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Konten verwaltet vom %s Dienst." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Du hast bereits ein Konto mit CrowdmapID! Bitte versuche, Deine CrowdmapID E-Mail Adresse und das zugehörige Passwort zu verwenden." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rolle" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Speichern" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Gespeichert" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Speichern & neu hinzufügen" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Speichern + Schliessen" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Speichern" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Planen" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Terminplaner" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Tag" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Stunde" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Terminplaner Log" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minute" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Wochentag" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "SUCHE" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Suchergebnisse" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Sicherheitscode" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Selektiere Alle" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Wähle einen Feldtyp" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Wähle einen Formulartyp" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Wähle in der Karte" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Wählen Sie soviele aus wie notwendig" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Kontrollieren Sie ob ein Eintrag ausgewählt ist" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Wähle Thema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Senden" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Bestätigung senden" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Senden an" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Gesendet" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Gesendet von" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Serveradresse" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Servertyp" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Dienst" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Dienst Benutzername" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Dienst Benutzer ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Teilen" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Daten teilen" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Die Mitteilung wurde" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Teilen" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "kürzere Karte" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Zeige" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Zeige Alle" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Nachricht zeigen" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Zeige Berichte von %1$s bis %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Webseite" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Seiten E-Mailadresse" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Seiten URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "kleinere Karte" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Entschuldigung, Sie haben keine Badges." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Quelle" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Quellenname" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sortieren" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sortieren nach" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL der Quelle" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL Unterstützung?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Von" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Schritt" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Ereignis-Meldung" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Gesendet von %1$s über %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Gemeldet via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Sende die SMS an" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "auf Ihr Telefon" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Erfolgreich!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Erfolgreich importiert" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Nachname" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Erfassung" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "System" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Größere Karte" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Gestaltungsvarianten" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Standard Ushahidi Theme" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Einstellungen des Layouts" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Diese" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Heute" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Aktueller Monat" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Diese Woche" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Aktuelles Jahr" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Dies ist Ihr Profil" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Zeit" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Titel" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "Bis" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Heute" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Heute um" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Gesamte Berichte" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Übersetzt" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Übersetzte Beschreibung" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Übersetzter Titel" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Übersetzen nach" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Übersetzung" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Übersetzung wurde gespeichert" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Vertraut" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tippen" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Kann keine E-Mails verschicken" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Nicht kategorisierte Berichte" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "ungelesen" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "unkontrolliert" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Feeds auffrischen" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Hochladen" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Schau Dir unsere Anleitungen zum Hochladen von Berichten an:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML Anleitung zum Hochladen" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV Anleitung zum Hochladen" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Datei zum Upload" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Berichte hochladen" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Benutzerdefiniertes Felder müssen mit dem numerischen Wert ihrer form_id ergänzt werden. Also z. B. das Feld \"Test\" mit seiner form_id = 1 wird zu \"Test-1\". Stelle während des Imports von solchen eigenen Feldern sollte sichergestellt sein, dass" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Mit diesem Formular kannst Du Ereignisse/Meldungen in das System importieren" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Berichte müssen entweder im CSV oder XML Format hochgeladen werden." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Wenn die Ereignis ID schon in der Datenbank vorhanden ist, wird der Eintrag in der CSV Datei ignoriert." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Es müssen der Ereignistitel und das Datum enthalten sein." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Falls keine Längen- und Breitengradkolumnen verfügbar sind, wird der Ort über den Google Geocoder lokalisiert." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Wenn weitere Daten wie z.B. persönliche Informationen und/oder eigene Formulare importiert werden sollen" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Mindestens ein Feld bei den persönlichen Daten (Vorname, Nachname, E-Mail Adresse) muss ausgefüllt werden. Leere Einträge werden nicht importiert" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Deine Einträge für die Auswahlmenüs, Auswahlknöpfe und Checkboxen entsprechend den Optionen, die in dem custom field Deiner Crowdmap Installation angegeben wurden" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Die Eingaben für die Checkboxen werden durch ein Komma und ohne Leerzeichen getrennt. In der Beispielauswahl Äpfel, Mangos und Weintrauben wird \"Äpfel,Mangos,Weintrauben\"." + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Datumsangabe erfolgen im folgenden Format: MM/TT/JJJJ, also z.B. 3. Oktober 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Beispiel für CSV-Datei" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Upload erfolgreich" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Video hochladen" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Benutzer" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Benutzername" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Admin" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Bestätitgung" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Bestätigt" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Bestätigte Meldungen" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Bestätigt" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Können Sie diese Information bestätigen? " + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Version" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "über" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Zeige" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Views" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Zeige Alle" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Zeige alle Feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Zeige alle Berichte" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Zeige Einträge" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Zeige mehr" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Öffentliches Profil einsehen" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Zeige Meldunng" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Zeige Meldungen" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Zeige Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Sichtbar" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Warten auf Bestätigung" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Warten auf Kontrolle" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Größere Karte" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Webformular" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Gewicht" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "Wöchentlich" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ja" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Gestern" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Dein Benutzermenü" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Deine Datei" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Vergrößern" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Verkleinern" diff --git a/application/i18n/po/po-de_DE/upgrade.po b/application/i18n/po/po-de_DE/upgrade.po new file mode 100644 index 0000000000..06443b4034 --- /dev/null +++ b/application/i18n/po/po-de_DE/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Juergen Eichholz , 2012-2013 +# Lidia Cibor , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: German (Germany) (http://www.transifex.com/ushahidi/ushahidi-v2/language/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Ungültige Eingabe. Enweder 1 für Ja oder 0 für Nein." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatisches Update" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Verfügbare Updates" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Fortfahren" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Aktualisieren" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "So, die Datenbank wird jetzt aktualisiert von Version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "auf die neueste Datenbank Version" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Klicke auf den Update Button und relax während ich das Wunder vollbringe." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Wen ich das Backup machen soll, musst Du auf den Button klicken und ich werde mein Bestes geben :-)." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Backup machen vor dem Update? (Sehr zu empfehlen!!)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi Datenbank Aktualisierung" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi wurde aktualisiert! Bevor Du weitermachen kannst, musst Du die Datenbank auf die neueste Version aktualisieren (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Deine Datenbankversion ist aktuell." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Aktualisierung fehlgeschlagen" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Manuelles Update" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi Aktualisierungsstatus" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Untenstehend ist erklärt, wie Du Deine Ushahidi-Instanz manuell aktualisieren kannst" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Herunterladen
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Lade die letzte Ushahidi Version herunter von" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Nur für den Fall dass etwas schief gehen könnte, erstelle bitte vorher ein Backup Deiner kompletten Ushahidi Installation
Kopiere Dateien
- Entpacke die heruntergeladene ZIP Datei
- Abhängig vom verwendeten Betriebssystem auf dem Server, kannst Du Dein bevorzugtest Tool (z.B. Telnet, FTP, SSH) zum Einloggen auf dem Server verwenden und alle alten Dateien mit neuen ersetzen.
Aktualisiere Datenbank
- Bestimme zuerst die Version des Datenbank Schemas über den db_version Wert in der Einstellungstablle oder schaue nach der Ushahidi Aktualisierunginfo ganz oben auf dieser Seite
- Wenn Du bei Version 25 bist, musst schrittweise upgraden, also von 25-26, 26-27, 27-28 und so weiter bis zur letzten SQL Datei in Deinem/sql Verzeichnis.
- Mit Deinem Datenbank Programm aktualisierst Du die Datenbank, indem Du den zugehörigen upgradex-x.sql Befehl in der Datei ausführst.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Schritt 3: Schau in den sql Ordner. Führe das Upgrade manuell durch-.sql Datei, ausgehend von der derzeitigen Datenbankversion Deiner Installation bis zur finalen sql Upgradedatei." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Für ein automatisches Update, klicke bitte auf die Schaltfläche unten." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Für ein automatisches Upgrade, klicke bitte auf den unten stehenden Knopf." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Du verwendest derzeit Ushahidi v%1$s mit der Datenbank Version %2$d läuft auf %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Updating..." + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Um mit dem einfachen Upgrade weiterzumachen, werden die folgenden Informationen für den FTP Server benötigt, auf dem die Website gehostet ist." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Example: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Passwort:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP Benutzername:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Du verwendest die neueste Version von Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Du brauchst nicht zu aktualisieren." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Datenbankversion: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Achtung: Die Software Version in der Datei version.php und in der Datenbank stimmen nicht überein." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Achtung: Die Software Version in der Datei version.php und in der Datenbank stimmen nicht überein." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Datenbank:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Herunterladen der neuesten Version von Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log Datei" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Erfolgreich heruntergeladen. Entpacke..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Fehler beim Herunterladen." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Erfolgreich entpackt. Kopiere Dateien.." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Fehler beim Entpacken." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Erfolgreich kopiert. Upgrae Datenbank..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Fehler beim Kopieren der Dateien." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Datenbankbackup und -upgrade erfolgreich." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Fehler beim Backup der Datenbank." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Datenbank Upgrade erfolgreich." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Löschen heruntergeladener Dateien..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "UPGRADE ERFOLGREICH. Zeige die Log Datei an" diff --git a/application/i18n/po/po-dv/alerts.po b/application/i18n/po/po-dv/alerts.po new file mode 100644 index 0000000000..08438b601c --- /dev/null +++ b/application/i18n/po/po-dv/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# shizleen , 2013 +# Umar Fikry , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-05 05:13+0000\n" +"Last-Translator: shizleen \n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "އީމެއިލް ފީލްޑްގައި ރަގަޅު އީމެއިލްއެއް ޖައްސަވާ" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "read" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-dv/auth.po b/application/i18n/po/po-dv/auth.po new file mode 100644 index 0000000000..fad2c8754e --- /dev/null +++ b/application/i18n/po/po-dv/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-dv/bug.po b/application/i18n/po/po-dv/bug.po new file mode 100644 index 0000000000..ea29e94fa9 --- /dev/null +++ b/application/i18n/po/po-dv/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-dv/permissions.po b/application/i18n/po/po-dv/permissions.po new file mode 100644 index 0000000000..478617c15a --- /dev/null +++ b/application/i18n/po/po-dv/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-dv/report.po b/application/i18n/po/po-dv/report.po new file mode 100644 index 0000000000..bf75354cdf --- /dev/null +++ b/application/i18n/po/po-dv/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-dv/settings.po b/application/i18n/po/po-dv/settings.po new file mode 100644 index 0000000000..82ef4a44d7 --- /dev/null +++ b/application/i18n/po/po-dv/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Divehi (http://www.transifex.com/projects/p/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-dv/tooltips.po b/application/i18n/po/po-dv/tooltips.po new file mode 100644 index 0000000000..081d3a96ff --- /dev/null +++ b/application/i18n/po/po-dv/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-dv/ui_admin.po b/application/i18n/po/po-dv/ui_admin.po new file mode 100644 index 0000000000..8330ba79a6 --- /dev/null +++ b/application/i18n/po/po-dv/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# shizleen , 2013 +# Umar Fikry , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-12-05 06:41+0000\n" +"Last-Translator: shizleen \n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "ފިޔަވަޅުތައް" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "އިތުރުކޮއްފި" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "އިދާރީ" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "އިންޒާރުތައް" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "ލިބިފައިވާ އިންޒާރުތައް" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "ނަން ހާމަކުރަން ބޭނުންނުވާ" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "ކޮންމެ މީލަކު ވިޔަސް" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "ކޮންމެ ތާކު" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "އޭ ޕީ އައި މަނާކޮއްފަ" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "އޭ ޕީ އައިގެ ލިޔެކިޔުން" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "ހުއްދަ ލިބިފައަ" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "ރައްކާކުރުން" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "ކުލަ" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-dv/ui_main.po b/application/i18n/po/po-dv/ui_main.po new file mode 100644 index 0000000000..5af8dbee39 --- /dev/null +++ b/application/i18n/po/po-dv/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# Umar Fikry , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Divehi (http://www.transifex.com/ushahidi/ushahidi-v2/language/dv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "އަބައުޓް" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "އެކްސެސް" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "އެކައުންޓްގެ ވެރިފަރާތުގެ ނަން" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "އެކްޓިވޭޓް" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "ތިޔަ ބޭފުޅާގެ އީމެއިލް ކޮންފާރމް ކުރެވިއްޖެއެވެ. އަވަހަށް ލޮގްއިން ވާށެވެ" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "އަހަރަމެންނާއި ގުޅުމަށް" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "ތިޔަބޭފުޅާގެ މެސެޖް ފޮނުވިއްޖެއެވެ" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "ނަން" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "ގުޅޭނެ ނަންބަރު" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "މެސެޖް ފޮނުއްވާ" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "އާޕާސްވާރޑެއް އުފައްދަވާ" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "ރިޕޯޓެއް އުފައްދަވާ" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "ތާރީޚް" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(މމ/ދދ/އއއއ)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "ދުވަހާއި ވަގުތު" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "ދުވަސް" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "އީމެއިލް" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "އީމެއިލް އެޑްރެސް" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "އީމެއިލް އެކައުންޓްގެ ޕާސްވާރޑް ޖައްސަވާ" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-el/alerts.po b/application/i18n/po/po-el/alerts.po new file mode 100644 index 0000000000..43a80478ad --- /dev/null +++ b/application/i18n/po/po-el/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου φαίνεται να μην περιέχει μια έγκυρη διεύθυνση e-mail;" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου έχει ήδη εγγραφεί για να λαμβάνει ειδοποιήσεις για την εν λόγω περιοχή." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου πρέπει να έχει μήκος τουλάχιστον 4 και όχι περισσότερο απο 64 χαρακτήρες." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου είναι υποχρεωτικό εάν το checkbox είναι επιλεγμένο." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Αυτή η εγκατάσταση αφορά μία μόνο χώρα. Παρακαλώ βεβαιωθείτε ότι η τοποθεσία για τις ειδοποιήσεις βρίσκεται εντός της χώρας %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Δεν έχετε επιλέξει μια έγκυρη τοποθεσία στο χάρτη." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Το πεδίο της κινητής τηλεφωνίας δεν φαίνεται να περιέχει τον σωστό αριθμό ψηφίων." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Αυτός ο αριθμός κινητού τηλεφώνου έχει ήδη εγγραφεί για να λαμβάνει ειδοποιήσεις για την εν λόγω περιοχή." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Το πεδίο του κινητού τηλεφώνου δεν φαίνεται να περιέχει ένα έγκυρο τηλέφωνο. Παρακαλούμε εισάγετε μόνο αριθμούς μαζί με τον κωδικό χώρας." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Πρέπει να εισάγετε είτε τον αριθμό κινητού τηλεφώνου σας, είτε τη διεύθυνση Email σας." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Το πεδίο \"κινητό τηλέφωνο\" είναι απαραίτητο εάν το checkbox είναι επιλεγμένο." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Δεν έχετε ορίσει μια έγκυρη ακτίνα στο χάρτη." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Δεν έχετε ρυθμίσει ακτίνα σας στο χάρτη." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Δεν έχετε ορίσει παραλήπτη για τις ειδοποιήσεις." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Έχετε εγγραφεί για ειδοποιήσεις για τις ακόλουθες κατηγορίες" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Αυτός ο κώδικας έχει ήδη χρησιμοποιηθεί!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Ο κωδικός επαλήθευσης δεν βρέθηκε! Επιβεβαιώστε ότι έχετε τη σωστή διεύθυνση URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Ο κωδικός σας επαληθεύτηκε ορθά. Θα λάβετε ειδοποιήσεις σχετικά με τα περιστατικά καθώς αυτά συμβαίνουν." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Για να επιβεβαιώσετε το αίτημά ειδοποίησης, παρακαλώ πηγαίνετε στο" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Επιστροφή στην σελίδα με τις ειδοποιήσεις για την δημιουργία περισσότερων" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Το αίτημά σας έχει για ειδοποιήσεις μέσω email έχει δημιουργηθεί και το μήνυμα επαλήθευσης έχει σταλεί στο" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Παρακαλώ εισάγετε τον κωδικό επιβεβαίωσης ηλεκτρονικού ταχυδρομείου που λάβατε:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Η Αίτηση σας για ειδοποιήσεις μεσώ email ΔΕΝ έχει αποθηκευτεί!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Η Αίτηση σας για ειδοποιήσεις μεσώ email έχει αποθηκευτεί!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Το σύστημα δεν ήταν σε θέση να επεξεργαστούμε το αίτημά επιβεβαίωσής σας !" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Το αίτημά σας έχει για ειδοποιήσεις μέσω κινητού έχει δημιουργηθεί και το μήνυμα επαλήθευσης έχει σταλεί στο" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Παρακαλώ εισάγετε τον κωδικό επιβεβαίωσης SMS που λάβατε στο κινητό σας:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Η αίτηση σας για ειδοποιήσεις στο κινητό σας ΔΕΝ έχει αποθηκευτεί!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Η αίτηση σας για ειδοποιήσεις στο κινητό σας έχει αποθηκευτεί!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Αυτή η εγκατάσταση δεν έχει παραμετροποιηθεί ώστε να επεξεργάζεται σωστά ειδοποιήσεις" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Έχετε λάβει αυτό το μήνυμα επειδή έχετε εγγραφεί για να λαμβάνετε ειδοποιήσεις. Εάν δεν επιθυμείτε να λαμβάνετε στο μέλλον ειδοποιήσεις πηγαίνετε στο" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Δεν θα λαμβάνετε πλέον ειδοποιήσεις από" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Δεν ήμασταν σε θέση να σας διαγράψουμε. Επιβεβαιώστε ότι έχετε τη σωστή διεύθυνση URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "ειδοποιήσεις - επαλήθευση" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Δεν θα λαμβάνετε ειδοποιήσεις για αυτήν τη περιοχή μέχρι να επιβεβαιώσετε το αίτημά σας" diff --git a/application/i18n/po/po-el/auth.po b/application/i18n/po/po-el/auth.po new file mode 100644 index 0000000000..ba0b0ba11b --- /dev/null +++ b/application/i18n/po/po-el/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Το email που έδωσες δεν έχει έγκυρη διεύθυνση email" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Συγγνώμη, υπάρχει ήδη λογαριασμός χρήστη με αυτό το email." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Το email πρέπει να περιέχει τουλάχιστον 4 και το πολύ 64 χαρακτήρες" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Το email απαιτείται" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Το όνομα πρέπει να περιέχει τουλάχιστον 3 και το πολύ 100 χαρακτήρες." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Το όνομα απαιτείται" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Το όνομα χρήστη περιέχει μη επιτρεπτούς χαρακτήρες" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Ο κωδικός πρέπει να είναι τουλάχιστον 8 χαρακτήρες" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Παρακαλώ έλεγξε ότι έβαλες τη σωστή διεύθυνση email και το σωστό κωδικό" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Παρακαλώ βάλε τον ίδιο κωδικό στα δύο πεδία" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Ο κωδικός απαιτείται" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Ο κωδικός μπορεί να περιέχει μόνο αλφαρηθμητικούς χαρακτήρες, τα σύμβολα # και @, αριθμούς, παύλα και κάτω παύλα" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Ο κωδικός που έδωσες δεν είναι σωστός. Παρακαλώ προσπάθησε ξανά." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Ο κωδικός πρέπει να είναι τουλάχιστον 8 χαρακτήρες." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Παρακαλώ έλεγξε ότι έβαλες τη σωστή διεύθυνση email και το σωστό κωδικό" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Παρακαλώ βάλε τον ίδιο κωδικό στα δύο πεδία" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Ο κωδικός απαιτείται" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Ο κωδικός μπορεί να περιέχει μόνο αλφαρηθμητικούς χαρακτήρες, τα σύμβολα # και @, αριθμούς, παύλα και κάτω παύλα" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Υπήρξε κάποιο σφάλμα στην προσπάθεια εισόδου στο σύστημα." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Ο κωδικός πρέπει να είναι τουλάχιστον 8 χαρακτήρες." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Παρακαλώ έλεγξε ότι έβαλες τη σωστή διεύθυνση email και το σωστό κωδικό" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Παρακαλώ βάλε τον ίδιο κωδικό στα δύο πεδία" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Ο κωδικός απαιτείται" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Ο server πιστοποίησης είναι πεσμένος. Παρακαλώ προσπάθησε ξανά αργότερα." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Ο κωδικός μπορεί να περιέχει μόνο αλφαρηθμητικούς χαρακτήρες, τα σύμβολα # και @, αριθμούς, παύλα και κάτω παύλα" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Το πεδίο επιβεβαίωση κωδικού πρέπει να περιέχει την ίδια τιμή με το πεδίο κωδικός" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Το email που έβαλες δεν είναι έγκυρο." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Συγγνώμη, δεν έχουμε τη διεύθυνση του email σου." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Το email απαιτείται." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Μόνο ο superadmin μπορεί να τροποποιήσει τις ρυθμίσεις ενός superadmin ή να προβιβάσει ένα χρήστη σε διαχειριστή." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Μη αποδεκτή μορφή ρόλου." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Ο ρόλος πρέπει να περιέχει τουλάχιστον 5 και όχι περισσότερους από 30 χαρακτήρες." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Πρέπει να ορίσεις τουλάχιστον ένα ρόλο." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Πρέπει να επιλέξεις ρόλο είτε ADMIN είτε USER." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Το token ξεχασμένου κωδικού δεν είναι έγκυρο." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Το token ξεχασμένου κωδικού απαιτείται." + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Ο ρόλος του admin δεν μπορεί να τροποποιηθεί." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Το URL του δημόσιου προφίλ πρέπει να περιέχει μόνο γράμματα και αριθμούς." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Συγγνώμη, αυτό το URL δημόσιου προφίλ χρησιμοποιείται ήδη." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Το URL του δημόσιου προφίλ πρέπει να περιέχει τουλάχιστον 2 και όχι περισσότερους από 100 χαρακτήρες." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Παρακαλώ έλεγξε ότι έχεις εισάγει το σωστό URL του δημόσιου προφίλ." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Το URL του δημόσιου προφίλ απαιτείται." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Ο ρόλος του super admin δεν μπορεί να τροποποιηθεί." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Πιθανή επίθεση CSRF. Ήθελες όντως να δημιουργήσεις / διορθώσεις ένα χρήστη;" diff --git a/application/i18n/po/po-el/bug.po b/application/i18n/po/po-el/bug.po new file mode 100644 index 0000000000..d8eddfcfc2 --- /dev/null +++ b/application/i18n/po/po-el/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Παρακαλώ εισάγετε τον κωδικό ασφαλείας." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Το πεδίο e-mail δεν φαίνεται να περιέχει μια έγκυρη διεύθυνση e-mail;" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Το πεδίο Email πρέπει να έχει μήκος τουλάχιστον 4 και όχι περισσότερο απο 64 χαρακτήρες" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Το πεδίο Email είναι υποχρεωτικό εάν η επιλογή είναι επιλεγμένη." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Το πεδίο \"σφάλμα\" είναι υποχρεωτικό" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Το πεδίο \"Θέμα\" πρέπει να είναι τουλάχιστον 3 χαρακτήρες." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Το πεδίο \"Θέμα\" είναι υποχρεωτικό" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Το πεδίο \"Όνομα\" πρέπει να είναι τουλάχιστον 3 χαρακτήρες." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Το πεδίο \"Όνομα\" είναι υποχρεωτικό" diff --git a/application/i18n/po/po-el/category.po b/application/i18n/po/po-el/category.po new file mode 100644 index 0000000000..23af4c6980 --- /dev/null +++ b/application/i18n/po/po-el/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Το πεδίο Χρώμα πρέπει να έίναι 6 χαρακτήρων." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Το πεδίο Χρώμα απαιτείται." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Το πεδίο Περιγραφή απαιτείται." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Παρακαλώ βεβαιωθείτε ότι το μέγεθος των φωτογραφιών δεν υπερβαίνει τα 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Το πεδίο Εικόνα δεν περιλαμβάνει έγκυρο αρχείο εικόνας. Τα μοναδικά αποδεκτά αρχεία είναι .JPG, .PNG και .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Το πεδίο Εικόνα δεν περιλαμβάνει έγκυρο αρχείο εικόνας." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Το πεδίο Τίτλος πρέπει να είναι από 3 εώς 80 χαρακτήρες." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Το πεδίο Τίτλος απαιτείται." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Δεν μπορείς να κάνεις υποκατηγορία μια κατηγορία που έχει υποκατηγορίες." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Η γονική κατηγορία δεν υπάρχει" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Το πεδίο της γονικής κατηγορίας πρέπει να είναι αριθμητικό" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Η γονική κατηγορία δεν μπορεί να είναι ειδική κατηγορία" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Το πεδίο γονικής κατηγορίας είναι προαπαιτούμενο" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Η κατηγορία δεν μπορεί να είναι ίδια με τη γονική της" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Ειδικές κατηγορίες δεν μπορούν να ενταχθούν στις υποκατηγορίες." diff --git a/application/i18n/po/po-el/comments.po b/application/i18n/po/po-el/comments.po new file mode 100644 index 0000000000..de5556cd53 --- /dev/null +++ b/application/i18n/po/po-el/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Παρακαλώ εισάγετε τον κωδικό ασφαλείας." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Εισάγατε λανθασμένο κωδικό ασφαλείας." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 3 χαρακτήρων." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Το πεδίο Όνομα απαιτείται." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Το πεδίο Σχόλια απαιτείται." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Στο πεδίο Ηλεκτρονική Διεύθυνση δεν εμφανίζεται έγκυρη ηλεκτρονική διεύθυνση." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Το πεδίο Ηλεκτρονική Διεύθυνση πρέπει να είναι από 4 εώς 64 χαρακτήρες." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Το πεδίο Ηλεκτρονική Διεύθυνση απαιτείται αν το κουτάκι επιλογής είναι επιλεγμένο." diff --git a/application/i18n/po/po-el/contact.po b/application/i18n/po/po-el/contact.po new file mode 100644 index 0000000000..2c6077736d --- /dev/null +++ b/application/i18n/po/po-el/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Παρακαλώ εισάγετε τον κωδικό ασφαλείας." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Το πεδίο Ηλεκτρονική Διεύθυνση δεν περιλαμβάνει έγκυρη ηλεκτρονική διεύθυνση." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Το πεδίο Ηλεκτρονικής Διεύθυνσης πρέπει να έιναι από 4 εως 64 χαρακτήρες." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Το πεδίο Ηλεκτρονικής Διεύθυνσης είναι απαραίτητο αν το κουτάκι επιλογής είναι επιλεγμένο." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Το πεδίο Μήνυμα απαιτείται." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 3 χαρακτήρων." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Το πεδίο Όνομα απαιτείται." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Το πεδίο Θέμα πρέπει να είναι τουλάχιστον 3 χαρακτήρων." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Το πεδίο Θέμα απαιτείται." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Υπήρξε πρόβλημα στην αποστολή του μηνύματός σας." diff --git a/application/i18n/po/po-el/core.po b/application/i18n/po/po-el/core.po new file mode 100644 index 0000000000..2c1af43b03 --- /dev/null +++ b/application/i18n/po/po-el/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "config file" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controller" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Ο %s driver της %s βιβλιοθήκης πρέπει να χρησιμοποιήσει το %s interface." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Ο %s driver της %s βιβλιοθήκης δεν βρέθηκε." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Μπορείς να πας στην αρχική σελίδα ή να δοκιμάσεις ξανά." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Δεν μπόρεσα να ολοκληρώσω το αίτημα." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "helper" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Ο τύπος αρχείου που ζητάς, .%s, δεν επιτρέπεται στο view configuration αρχείο." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Μη έγκυρη μέθοδος %s κλήθηκε στο %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Η ιδιότητα %s δεν υπάρχει στην %s class." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "βιβλιοθήκη" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Ο φάκελος log δεν είναι εγγράψιμος: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "μοντέλο" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Το Ushahidi δεν μπόρεσε να καθορίσει τον controller για την επεξεργασία αυτού του αιτήματος: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Παρακαλώ όρισε μια προκαθορισμένη διαδρομή στο config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Η σελίδα που ζήτησες, %s, δεν μπόρεσε να βρεθεί." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Ανάφερε αυτό το θέμα στο Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Το ζητούμενο %s, %s, δεν ήταν δυνατόν να βρεθεί." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Φορτώθηκε σε {execution_time} δευτερόλεπτα, χρησιμοποιώντας {memory_usage} μνήμης. Παράχθηκε από το Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Μόνο ένα Ushahidi instance μπορεί να υπάρχει σε κάθε αίτημα σελίδας." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Uncaught %s: %s in file %s on line %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "view" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Πρέπει να ορίσεις το view filename πριν καλέσεις το render." diff --git a/application/i18n/po/po-el/database.po b/application/i18n/po/po-el/database.po new file mode 100644 index 0000000000..0f578c1d18 --- /dev/null +++ b/application/i18n/po/po-el/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Σφάλμα βάσης δεδομένων: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Ο πίνακας \"%s\" δεν μπορεί να βρεθεί στη βάση δεδομένων. Παρακαλώ επιβεβαίωσε ότι χρησιμοποιείς την τελευταία έκδοση της βάσης δεδομένων για αυτή την έκδοση του Ushahidi." diff --git a/application/i18n/po/po-el/datetime.po b/application/i18n/po/po-el/datetime.po new file mode 100644 index 0000000000..7d79c7f4e3 --- /dev/null +++ b/application/i18n/po/po-el/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "πμ" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Παρ" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Παρασκευή" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Δευτ" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Δευτέρα" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "μμ" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Σαβ" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Σάββατο" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Κυρ" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Κυριακή" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Πεμ" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Πέμπτη" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Τρ" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Τρίτη" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Τετ" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Τετάρτη" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ιαν" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Ιανουάριος" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Φεβ" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Φεβρουάριος" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Μαρ" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Μάρτιος" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Απρ" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Απρίλιος" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Μάιος" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Μάιος" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Ιουν" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Ιούνιος" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Ιουλ" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Ιούλιος" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Αυγ" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Αύγουστος" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Σεπ" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Σεπτέμβριος" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Οκτ" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Οκτώβριος" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Νοβ" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Νοέμβριος" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Δεκ" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Δεκέμβριος" diff --git a/application/i18n/po/po-el/feeds.po b/application/i18n/po/po-el/feeds.po new file mode 100644 index 0000000000..6a474860ce --- /dev/null +++ b/application/i18n/po/po-el/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Ημερομηνία " + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Το πεδίο ροής πρέπει να είναι τουλάχιστον 3 και όχι παραπάνω από 70 χαρακτήρες." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Παρακαλώ εισάγετε το όνομα της ροής" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Παρακαλώ εισάγετε το URL της ροής." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση URL, π.χ. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Πηγή" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Τίτλος" diff --git a/application/i18n/po/po-el/footer.po b/application/i18n/po/po-el/footer.po new file mode 100644 index 0000000000..c4ca2c53c4 --- /dev/null +++ b/application/i18n/po/po-el/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "Το php5-curl δεν είναι εγκατεστημένο σε αυτό το σύστημα" diff --git a/application/i18n/po/po-el/form.po b/application/i18n/po/po-el/form.po new file mode 100644 index 0000000000..80378bfe14 --- /dev/null +++ b/application/i18n/po/po-el/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Η προκαθορισμένη τιμή που έχεις δώσει για το πεδίο δεν είναι έγκυρη." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Το πεδίο Όνομα πρέπει να είναι από 3 και μέχρι 200 χαρακτήρες." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Παρακαλώ επιλέξτε μια αξία από 0 εώς 50 για το πεδίο Ύψος." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Έχετε εισάγει μη αποδεκτή αξία στο πεδίο ημερομηνία." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Παρακαλώ επιλέξτε Ναί ή Όχι στο πεδίο ημερομηνία." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Στο πεδίο όνομα συμπληρώνουμε από 3 και μέχρι 100 χαρακτήρες." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Παρακαλώ συμπληρώστε το πεδίο Όνομα." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Το όνομα πεδίου που έδωσες υπάρχει ήδη στη φόρμα αυτή. Παρακαλώ δώσε ένα νέο όνομα." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Έχεις εισάγει μη έγκυρη τιμή για το απαιτούμενο πεδίο." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Παρακαλώ επίλεξε Ναι ή Όχι για το απαιτούμενο πεδίο." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Παρακαλώ επίλεξε ένα έγκυρο τύπο για το πεδίο." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Παρακαλώ επίλεξε ένα τύπο πεδίου" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Παρακαλώ επιλέξτε μια αξία από 0 εώς 300 για το πεδίο Πλάτος." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Παρακαλώ γράψε την περιγραφή της φόρμας." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Η προκαθορισμένη φόρμα δεν μπορεί να διαγραφεί." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Παρακαλώ επίλεξε σε ποια φόρμα θα προστεθεί αυτό το πεδίο." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Παρακαλώ επίλεξε σε ποια φόρμα θα προστεθεί αυτό το πεδίο." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Το πεδίο ονόματος της φόρμας θα πρέπει να έχει τουλάχιστον 3 και όχι περισσότερους από 100 χαρακτήρες." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Παρακαλώ δώσε το όνομα της φόρμας." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Αίτηση με αυτό τον τίτλο υπάρχει ήδη. Παρακαλώ επιλέξτε άλλο." diff --git a/application/i18n/po/po-el/imap.po b/application/i18n/po/po-el/imap.po new file mode 100644 index 0000000000..a7fb1dd7c5 --- /dev/null +++ b/application/i18n/po/po-el/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Η ροή IMAP δεν ήταν δυνατό να ενεργοποιηθεί" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Η υπηρεσία ηλεκτρονικής διεύθυνσης δεν υποστηρίζεται." diff --git a/application/i18n/po/po-el/installer.po b/application/i18n/po/po-el/installer.po new file mode 100644 index 0000000000..f0ae0653d7 --- /dev/null +++ b/application/i18n/po/po-el/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Μονοπάτι βάσης" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Βάση δεδομένων" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Εξυπηρετητής βάσης δεδομένων (Database Host)" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Εάν τρέχεις το Ushahidi στο δικό σου υπολογιστή, αυτό θα είναι πιθανότατα το \"localhost\". Εάν το τρέχεις σε κάποιο web server, θα πάρεις τις πληροφορίες για τον εξυπηρετητή (host) από τον πάροχό σου." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Όνομα βάσης δεδομένων" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Το όνομα της βάσης δεδομένων στην οποία θέλεις να τρέχει το Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Για περισσότερες πληροφορίες παρακαλώ κοίταξε σε αυτό το άρθρο, στο wiki που μιλάει με περισσότερες λεπτομέρειες για βάσεις δεδομένων." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Προεπιλεγμένη γλώσσα (γεωγραφική επιλογή)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Κάθε εγκατάσταση του Ushahidi έρχεται με ένα σετ από προεγκατεστημένες μεταφράσεις σε διάφορες γλώσσες. Μπορείς επίσης να προσθέσεις και τη δική σου." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Απενεργοποίηση" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Ενεργοποίηση" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Παρακάτω παρατίθεται μια λίστα με τα σφάλματα που εντοπίσαμε." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Η τοποθεσία του εξυπηρετητή, στον οποίο εγκατέστησες τα αρχεία του Ushahidi. Έχουμε εντοπίσει αυτή την τιμή αυτόματα, παρακαλούμε επιβεβαίωσε ότι είναι σωστή Εάν το πεδίο είναι άδειο, μην ανησυχείς, σημαίνει ότι το Ushahidi έχει εγκατασταθεί στο φάκελο του ανώτατου επιπέδου (top level folder)." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Ολοκληρώθηκε" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Γενικά" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Ο οποιοσδήποτε μπορεί να δημιουργήσει ένα κλειδί API. Φτιάξε τώρα το δικό σου" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Προηγούμενο" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "ΠΡΟΧΩΡΗΜΕΝΗ ΕΓΚΑΤΑΣΤΑΣΗ" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Ολοκλήρωσε όλες τις βασικές ρυθμίσεις μέσω αυτής της διαδικασίας 5 βημάτων. Αυτή συμπεριλαμβάνει τον εξυπηρετητή, το χάρτη, το όνομα του site και τις λεπτομέρειες επικοινωνίας." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "ΒΑΣΙΚΗ ΕΓΚΑΤΑΣΤΑΣΗ" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Απλή και γρήγορη. Χρειάζεσαι μόνο το ριζικό φάκελο (root directory) του site σου και τις πληροφορίες για τη βάση δεδομένων. Επίλεξε αυτή την επιλογή εάν θέλεις να στήσεις γρήγορα το Ushahidi σου. Μπορείς να αλλάξεις τις ρυθμίσεις αργότερα." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Συνέχισε" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Καλώς ήλθες στη διαδικασία εγκατάστασης του Ushahidi. Διάλεξε παρακάτω ένα τύπο εγκατάστασης." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Επιτυχής εγκατάσταση" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Διακομιστής αλληλογραφίας" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Εξυπηρετητής αλληλογραφίας" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Παραδείγματα: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Κωδικός εξυπηρετητή αλληλογραφίας" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Ο κωδικός που χρησιμοποιείς συνήθως για να μπεις στο email σου" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Θύρα εξυπηρετητή αλληλογραφίας" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Κοινές θύρες: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Τύπος εξυπηρετητή αλληλογραφίας" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). Ποια είναι η διαφορά?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Όνομα χρήστη εξυπηρετητή αλληλογραφίας" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Εάν χρησιμοποιείς Gmail, Hotmail, ή Yahoo Mail, χρησιμοποίησε την πλήρη διεύθυνση email ως όνομα χρήστη" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Χάρτης" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Πάροχος χάρτη" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Το Ushahidi αποδίδει εξίσου με οποιοδήποτε πάροχο χαρτογράφησης από τους τρεις: Google, Bing ή Open Street Map. Επίλεξε εκείνον που έχει την περισσότερη λεπτομέρεια για την περιοχή που σε ενδιαφέρει." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Λοιπά βήματα..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Κωδικός πρόσβασης" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Ο κωδικός της βάσης δεδομένων" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Προηγούμενο" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Επανεκκίνηση του Apache Server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Ενεργοποίηση ή Απενεργοποίηση SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Μερικοί εξυπηρετητές αλληλογραφίας παρέχουν την επιλογή για χρήση SSL κατά τη σύνδεση. Η χρήση SSL προτείνεται, καθώς σου παρέχει επιπλέον ασφάλεια." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Ρύθμισε τον εξυπηρετητή SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Διεύθυνση email του site." + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Διεύθυνση email για τις ειδοποιήσεις του site" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Όταν οι επισκέπτες του site σου εγγραφούν για \"ειδοποίηση\" μέσω email θα αρχίσουν να λαμβάνουν email από αυτή τη διεύθυνση. Αυτή η διεύθυνση email δεν είναι απαραίτητο να είναι η ίδια με εκείνη του site." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Όλη η επικοινωνία που αφορά στο site θα μεταδίδεται μέσω αυτού του email." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Τίτλος site." + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Ο τίτλος του site." + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Γραμμή ετικέτα (επεξηγηματική φράση του site)." + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Η γραμμή-ετικέτα σου." + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Τα αρχεία και οι φακέλοι που αναφέρονται ακολούθως πρέπει να είναι εγγράψιμα από το webserver σου." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Ακολουθούν οι οδηγίες για την αλλαγή περιορισμών προσβασιμότητας των αρχείων

" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Πριν ξεκινήσεις θα χρειαστεί να επιβεβαιώσεις ότι τα ακόλουθα αρχεία και φάκελοι είναι εγγράψιμα από το webserver σου. Ίσως χρειαστεί να αλλάξεις τους περιορισμούς προσβασιμότητας των αρχείων." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Για τη διαδικασία εγκατάστασης, παρακαλώ να έχεις έτοιμες τις παρακάτω πληροφορίες." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Πρόθεμα πίνακα" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Κανονικά δε θα χρειαστεί να αλλάξεις το πρόθεμα του πίνακα. Ωστόσο, εάν θέλεις να τρέξεις πολλούς χάρτες Ushahidi από μία εγκατάσταση, μπορείς να το κάνεις αλλάζοντας το πρόθεμα εδώ." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Τίτλος" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Για να συνδεθείς, πήγαινε" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Ανέβασε δεδομένα Αναφοράς" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Όνομα χρήστη" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Το όνομα χρήστη για τη βάση δεδομένων" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "και χρησιμοποίησε τα ακόλουθα στοιχεία πρόσβασης" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Δες το website σου" diff --git a/application/i18n/po/po-el/layer.po b/application/i18n/po/po-el/layer.po new file mode 100644 index 0000000000..2a6e28c2f9 --- /dev/null +++ b/application/i18n/po/po-el/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Το πεδίο \"χρώμα\" πρέπει να είναι 6 χαρακτήρες." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Το πεδίο \"χρώμα\" είναι υποχρεωτικό" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Το πεδίο αρχείο δεν φαίνεται να περιέχει ένα έγκυρο αρχείο. Οι μόνες αποδεκτές μορφές είναι .KMZ και .KML" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Το πεδίο \"αρχείο\" δεν μοιάζει να περιέχει ένα έγκυρο αρχείο" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 3 και όχι περισσότερο από 80 χαρακτήρες" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Το πεδίο \"Όνομα\" είναι υποχρεωτικό" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Απαιτείται είτε ένα KML URL είτε ένα αρχείο." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Δεν μπορείς να έχετε ταυτόχρονα και ένα αρχείο KML και μια διεύθυνση URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση URL, π.χ. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-el/libraries.po b/application/i18n/po/po-el/libraries.po new file mode 100644 index 0000000000..01830f3e33 --- /dev/null +++ b/application/i18n/po/po-el/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Δεν μπόρεσα να συνδεθώ στον Akismet server." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Η απόκριση από το Akismet ήταν αδύνατο να ανακτηθεί." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Η βιβλιοθήκη API: %sγια την%s class δεν ήταν δυνατό να βρεθεί. Παρακαλώ έλεγξε το API task routing table." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Το κλειδί Akismet API δεν είναι έγκυρο." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Το μήνυμα unicode είναι πολύ μεγάλο! (Τρέχον μήκος=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Παρακαλώ προσδιόρισε μια διεύθυνση προορισμού (Προς)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Παρακαλώ προσδιόρισε μια διεύθυνση πηγής (ΑΠΟ)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Το μήνυμα unicode είναι πολύ μεγάλο! (Τρέχον μήκος=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Μη υποστηριζόμενη μέθοδος αποστολής!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Η βιβλιοθήκη API %s δεν είναι έγκυρη. Όλες οι βιβλιοθήκες API πρέπει να είναι subclasses του %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Ο φάκελος %s δεν μπόρεσε να σβηστεί." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Σφάλμα κατά την εξαγωγή: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Αποτυχία μεταφόρτωσης του τελευταίου Ushahidi. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Το αρχείο %s δεν μπόρεσε να αντιγραφεί." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Το αρχείο %s δεν μπόρεσε να διαγραφεί." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi upgrade script" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Το μεταφορτωμένο συμπιεσμένο αρχείο Ushahidi %s δεν μπόρεσε να εγγραφεί." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s is not available in the RiverID class." diff --git a/application/i18n/po/po-el/maintenance.po b/application/i18n/po/po-el/maintenance.po new file mode 100644 index 0000000000..e39a284980 --- /dev/null +++ b/application/i18n/po/po-el/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Λυπούμαστε, το site μας αυτή τη στιγμή βρίσκεται εκτός λειτουργίας για λόγους συντήρησης. Παρακαλώ δοκιμάστε ξανά σε λίγα λεπτά." diff --git a/application/i18n/po/po-el/message.po b/application/i18n/po/po-el/message.po new file mode 100644 index 0000000000..2bbd80ca8e --- /dev/null +++ b/application/i18n/po/po-el/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Παρακαλώ εισάγετε ένα έγκυρο κωδικό ασφαλείας." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Παρακαλώ εισάγετε τον κωδικό ασφαλείας." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου φαίνεται να μην περιέχει μια έγκυρη διεύθυνση e-mail;" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου πρέπει να έχει μήκος τουλάχιστον 4 και όχι περισσότερο απο 64 χαρακτήρες." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Το πεδίο διεύθυνση ηλεκτρονικού ταχυδρομείου είναι υποχρεωτικό εάν το checkbox είναι επιλεγμένο." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Το πεδίο \"Σχόλια\" είναι υποχρεωτικό." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Το πεδίο \"Όνομα\" πρέπει να είναι τουλάχιστον 3 χαρακτήρες." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Το πεδίο \"Όνομα\" είναι υποχρεωτικό" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Το πεδίο \"Τηλέφωνο\" είναι υποχρεωτικό" diff --git a/application/i18n/po/po-el/mhi.po b/application/i18n/po/po-el/mhi.po new file mode 100644 index 0000000000..2ce990bcd2 --- /dev/null +++ b/application/i18n/po/po-el/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Παρακαλώ εισάγετε έναν έγκυρο κωδικό ασφαλείας." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Παρακαλώ εισάγετε τον κωδικό ασφαλείας." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Το πεδίο Ηλεκτρονική Διεύθυνση δεν περιέχει έγκυρη ηλεκτρονική διεύθυνση." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Παρακαλώ εισάγετε μια έγκυρη ηλεκτρονική διεύθυνση." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Το πεδίο Μήνυμα απαιτείται." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Το πεδίο Θέμα πρέπει να είναι τουλάχιστον 3 χαρακτήρων." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Το πεδίο Θέμα απαιτείται." diff --git a/application/i18n/po/po-el/notifications.po b/application/i18n/po/po-el/notifications.po new file mode 100644 index 0000000000..2ac18f60e5 --- /dev/null +++ b/application/i18n/po/po-el/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Αυτό το μήνυμα έχει σταλθεί από την ιστοσελίδα σας." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Σύνδεση διαχειριστή." + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Ένα νέο σχόλιο έχει υποβληθεί στην ιστοσελίδας σας σε απάντηση του:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Νέο σχόλιο" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Ένα νέο ηλεκτρονικό μήνυμα έχει υποβληθεί στην ιστοσελίδα σας." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Νέο ηλεκτρονικό μήνυμα" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Μια νέα αναφορά έχει υποβληθεί στην ιστοσελίδα σας." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Νέα αναφορά" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Ένα νέο γραπτό μήνυμα έχει υποβληθεί στην ιστοσελίδα σας." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Νέο γραπτό μήνυμα" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Λάβατε νέα προειδοποιήσει " + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Νέα προειδοποιήσει" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Λάβατε ένα προσωπικό μήνυμα" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Νέο προσωπικό μήνυμα" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Για απάντηση παρακαλώ πηγαίνετε στο:" diff --git a/application/i18n/po/po-el/page.po b/application/i18n/po/po-el/page.po new file mode 100644 index 0000000000..226e4f1a61 --- /dev/null +++ b/application/i18n/po/po-el/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Παρακαλώ εισάγετε έναν τίτλο σελίδας." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Ο Τίτλος σελίδας θα πρέπει να είναι τουλάχιστον 3 και όχι περισσότερο από 150 χαρακτήρες." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Παρακαλώ εισάγετε ένα όνομα Tab." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Παρακαλώ εισάγετε μια περιγραφή σελίδας" diff --git a/application/i18n/po/po-el/permissions.po b/application/i18n/po/po-el/permissions.po new file mode 100644 index 0000000000..38dac77f4a --- /dev/null +++ b/application/i18n/po/po-el/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Επισκόπηση Αναφορών" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Δημιουργία/Επεξεργασία/Διαγραφή αναφορών" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Έγκριση αναφορών." + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Επαλήθευση αναφορών." + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Διαχείριση σχολίων σε Αναφορές" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Μεταφόρτωση Αναφορών" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Ανέβασμα Αναφορών" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Διαχείρηση μηνυμάτων." + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Διαχείριση ανταποκριτών μηνυμάτων" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Επισκόπηση στατιστικών" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Τροποποίηση ρυθμίσεων" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Διαχείριση πάνελ" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Διαχείριση χρηστών" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Διαχείριση ρόλων" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Μπορεί να κάνει check in" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Διαχείριση των check in" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Πρόσβαση στο χώρο διαχείρισης" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Πρόσβαση στο χώρο μελών" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-el/private_message.po b/application/i18n/po/po-el/private_message.po new file mode 100644 index 0000000000..9d9fb9b187 --- /dev/null +++ b/application/i18n/po/po-el/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Το ID γονέα πρέπει να είναι αριθμητικό" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Το πεδίο \"προς\" είναι υποχρεωτικό" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Ο χρήστης που προσπαθείτε να στείλετε ένα μήνυμα δεν υπάρχει" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Το πεδίο \"θέμα\" είναι υποχρεωτικό" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Το θέμα πρέπει να έχει μήκος μεταξύ 3 και 150 χαρακτήρων" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Το πεδίο μήνυμα είναι απαραίτητο" diff --git a/application/i18n/po/po-el/report.po b/application/i18n/po/po-el/report.po new file mode 100644 index 0000000000..3f5060d7ce --- /dev/null +++ b/application/i18n/po/po-el/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# mindthecam , 2013 +# Wasilis , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Σφάλμα" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Αυτή η εγκατάσταση αναφέρεται μόνο σε μια χώρα. Παρακαλώ επιβεβαίωσε ότι η τοποθεσία της αναφοράς βρίσκεται μέσα στη χώρα %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Το πεδίο \"%s\" πρέπει να είναι αριθμητικό." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Το πεδίο \"%s\" είναι υποχρεωτικό." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr " Το πεδίο \"%s\" δεν υπάρχει." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Το πεδίο \"%s\" δεν μπορεί να επεξεργαστεί από το λογαριασμό σας." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Το πεδίο \"%s\" πρέπει να περιέχει μια έγκυρη email διεύθυνση." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Το πεδίο \"%s\" πρέπει να περιέχει έναν έγκυρο αριθμό τηλεφώνου." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Το πεδίο \"%s\" πρέπει να περιέχει μια έγκυρη ημερομηνία (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Το πεδίο \"%s\" πρέπει να περιέχει μια έγκυρη ημερομηνία (DD/MM/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Παρακαλώ διάλεξε ένα έγκυρο αντικείμενο για να συμπεριληφθεί στην λήψη." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Παρακαλώ διάλεξε ένα έγκυρο αντικείμενο για να συμπεριληφθεί στην λήψη." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Παρακαλώ επίλεξε \"Αναφορές εν αναμονή έγκρισης\" ή \"Εγκεκριμένες Αναφορές\" ή και τα δύο." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Παρακαλώ επίλεξε \"Αναφορές εν αναμονή έγκρισης\" ή \"Εγκεκριμένες Αναφορές\" ή και τα δύο." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Παρακαλώ επίλεξε \"Αναφορές εν αναμονή έγκρισης\" ή \"Εγκεκριμένες Αναφορές\" ή και τα δύο." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Παρακαλώ επίλεξε \"Αναφορές εν αναμονή επαλήθευσης\" ή \"Επαληθευμένες Αναφορές\" ή και τα δύο." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Παρακαλώ επίλεξε \"Αναφορές εν αναμονή επαλήθευσης\" ή \"Επαληθευμένες Αναφορές\" ή και τα δύο." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Παρακαλώ επίλεξε \"Αναφορές εν αναμονή επαλήθευσης\" ή \"Επαληθευμένες Αναφορές\" ή και τα δύο." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Παρακαλώ διάλεξε ένα έγκυρο τύπο για να συμπεριληφθεί στην λήψη." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Παρακαλώ διάλεξε ένα έγκυρο τύπο για να συμπεριληφθεί στην λήψη." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Παρακαλώ επίλεξε ένα έγκυρο τύπο αναφοράς για μεταφόρτωση." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Πρέπει να επιλέξεις μια μορφή μεταφόρτωσης. Επίλεξε είτε CSV, είτε XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Παρακαλώ επίλεξε μια έγκυρη μορφή για τη μεταφόρτωση των αναφορών σου." + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Το πεδίο ΑΠΟ δεν περιλαμβάνει έγκυρη ημερομηνία" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Παρακαλώ εισήγαγε έγκυρη ημερομηνία στο πεδιο ΑΠΟ.Δεν μπορει να ειναι μεγαλυτερο απο σημερα." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Το πεδίο ΕΓΚΡΙΣΗ ΑΥΤΗΣ ΤΗΣ ΑΝΑΦΟΡΑΣ δεν ειναι έγκυρο" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Το πεδίο ΕΓΚΡΙΣΗ ΑΥΤΗΣ ΤΗΣ ΑΝΑΦΟΡΑΣ δεν ειναι έγκυρο" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Το πεδίο πμ/μμ δεν ειναι έγκυρο" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Το πεδίο \"Κατηγορίες\" δε φαίνεται να περιέχει κάποια έγκυρη κατηγορία." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Το πεδίο \"Κατηγορίες\" είναι προαπαιτούμενο." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Το πεδίο ημερομηνίας δεν ειναι έγκυρο" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Το πεδίο ημερομηνίας δεν ειναι έγκυρο" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Ημερομηνία απαιτείται" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Το πεδίο ΠΕΡΙΓΡΑΦΗ απαιτείται" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Το πεδίο ΩΡΑ δεν ειναι έγκυρο" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Το πεδίο ΩΡΑ δεν ειναι έγκυρο" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Παρακαλώ δωσε μια έγκυρη τιμή για την πιθανότητα της πληροφορίας." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Παρακαλώ δωσε μια έγκυρη τιμή για την πιθανότητα της πληροφορίας." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Το πεδίο ΛΕΠΤΑ δεν ειναι έγκυρο" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Το πεδίο ΛΕΠΤΑ απαιτείται" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Το πεδίο εισαγωγής ηλεκτρονικής διεύθυνσης νέων δε φαίνεται να περιέχει κάποια έγκυρη διεύθυνση URL. " + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Παρακαλώ εξασφάλισε ότι η φωτογραφίες που ανεβάζεις δεν ξεπερνούν σε μέγεθος τα 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Το πεδίο \"Ανέβασε φωτογραφίες\" δεν περιέχει κάποια έγκυρη εικόνα. Οι τύποι αρχείου που γίνονται αποδεκτοί από το σύστημα είναι .jpg, .png και .gif." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Το πεδίο \"Ανέβασε φωτογραφίες\" δεν περιέχει έγκυρο αρχείο." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Παρακαλώ δώσε μια έγκυρη τιμή για την Αξιοπιστία της Πηγής." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Παρακαλώ δώσε μια έγκυρη τιμή για την Αξιοπιστία της Πηγής." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Το πεδίοι \"Τίτλος αναφοράς\" πρέπει να έχει τουλάχιστον 3 χαρακτήρες και όχι περισσότερους από 200." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Το πεδίο \"Τίτλος αναφοράς\" είναι προαπαιτούμενο." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Πιθανή επίθεση CSRF. Ήθελες όντως να δημιουργήσεις / διορθώσεις κάποια αναφορά;" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Παρακαλώ δώσε μια έγκυρη τιμή για το πεδίο \"Επιβεβαίωσε αυτή την Αναφορά\"" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Παρακαλώ δώσε μια έγκυρη τιμή για το πεδίο \"Επιβεβαίωσε αυτή την Αναφορά\"" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Το πεδίο σύνδεσμου video δεν περιέχει σωστό URL." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Το πεδίο γεωγραφικού πλάτους δεν περιέχει έγκυρη τιμή." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Το πεδίο γεωγραφικού πλάτους είναι προαπαιτούμενο. Παρακαλώ κάνε κλικ στο χάρτη για να υποδείξεις την τοποθεσία." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Το πεδίο γεωγραφικoύ προσδιορισμού έχει μη έγκυρη τιμή." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Αυτή η αναφορά διαθέτει ήδη μετάφραση σε αυτή τη γλώσσα." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Το πεδίο γεωγραφικoύ προσδιορισμού έχει μη έγκυρη τιμή." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Η αρχική αναφορά και η μετάφραση έχουν την ίδια τιμή γεωγραφικoύ προσδιορισμού (γλώσσα)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Η τιμή γεωγραφικoύ προσδιορισμού είναι προαπαιτούμενη." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Το πεδίο \"Όνομα τοποθεσίας\" πρέπει να έχει τουλάχιστον 3 χαρακτήρες και όχι περισσότερους από 200." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Το πεδίο \"Όνομα τοποθεσίας\" είναι προαπαιτούμενο." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Το πεδίο γεωγραφικού μήκους δεν περιέχει έγκυρη τιμή." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Το πεδίο γεωγραφικού μήκους είναι προαπαιτούμενο. Παρακαλώ κάνε κλικ στο χάρτη για να υποδείξεις την τοποθεσία." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Το πεδίο διεύθυνσης ηλεκτρονικού ταχυδρομείου δεν περιέχει έγκυρη διεύθυνση." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Το πεδίο διεύθυνσης ηλεκτρονικού ταχυδρομείου πρέπει να περιέχει μεταξύ 4 και 64 χαρακτήρες." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Το πεδίο \"Όνομα\" πρέπει να περιέχει μεταξύ 3 και 100 χαρακτήρες." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Το πεδίο \"Επώνυμο\" πρέπει να περιέχει μεταξύ 3 και 100 χαρακτήρες." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Το πεδίο ημερομηνίας ΜΕΧΡΙ δεν περιέχει έγκυρη ημερομηνία." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Παρακαλώ δώσε μια έγκυρη ημερομηνία ΜΕΧΡΙ. Η ημερομηνία αυτή δεν μπορεί να είναι μεγαλύτερη από τη σημερινή." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Η ημερομηνία ΑΠΟ δεν μπορεί να είναι ύστερα από την ημερομηνία ΜΕΧΡΙ." diff --git a/application/i18n/po/po-el/reporters.po b/application/i18n/po/po-el/reporters.po new file mode 100644 index 0000000000..7f28e76fc4 --- /dev/null +++ b/application/i18n/po/po-el/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Το πεδίο Γεωγραφικό Πλάτος φαίνεται να μην περιλαμβάνει έγκυρο γεωγραφικό πλάτος." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Το γεωγραφικό πλάτος απαιτείται. Παρακαλώ κάνε κλικ στο χάρτη για να ορίσεις μια περιοχή." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Το πεδίο \"Επίπεδο Ανταποκριτή\" δεν περιέχει έγκυρη τιμή." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Το πεδίο \"Επίπεδο Ανταποκριτή\" δεν περιέχει έγκυρη τιμή." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Το πεδίο Όνομα Τοποθεσίας πρέπει να είναι τουλάχιστον 3 και μέχρι 200 χαρακτήρες." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Το πεδίο Όνομα Τοποθεσίας απαιτείται." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Το πεδίο Γεωγραφικό Μήκος φαίνεται να μην περιλαμβάνει έγκυρο γεωγραφικό μήκος." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Το γεωγραφικό μήκος απαιτείτε. Παρακαλώ κάντε κλικ στον χάρτη για να ορίσετε μια περιοχή." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Μη έγκυρος Ανταποκριτής" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Μη έγκυρος Ανταποκριτής" diff --git a/application/i18n/po/po-el/reports.po b/application/i18n/po/po-el/reports.po new file mode 100644 index 0000000000..d5ada30685 --- /dev/null +++ b/application/i18n/po/po-el/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Παρακαλώ βεβαιωθείτε ότι έχετε επιλέξει ένα αντικείμενο" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Παρακαλώ βεβαιωθείτε ότι έχετε επιλέξει ένα αντικείμενο" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Οι αναφορές θα πρέπει να ταξινομηθούν πριν μπορέσουν να εγκριθούν" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Δεν έχετε δικαίωμα να εκτελέσετε αυτή την ενέργεια" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Πρέπει να επιλέξετε το αρχείο που θα ανεβάσετε." + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Το αρχείο που θα ανεβάσετε των θα πρέπει να είναι είτε μορφής Csv ή. Xml " + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Το πεδίο \"ανέβασμα αρχείου\" δεν μοιάζει να περιέχει ένα έγκυρο αρχείο" diff --git a/application/i18n/po/po-el/roles.po b/application/i18n/po/po-el/roles.po new file mode 100644 index 0000000000..a37b846af6 --- /dev/null +++ b/application/i18n/po/po-el/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Το πεδίο Περιγραφή θα πρέπει να είναι τουλάχιστον 3 και όχι περισσότερο από 100 χαρακτήρες." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Το πεδίο Περιγραφή είναι απαραίτητο." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Το πεδίο Όνομα πρέπει να περιέχει μόνο γράμματα ή αριθμούς." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Το πεδίο Όνομα πρέπει να είναι τουλάχιστον 2 και όχι περισσότερο από 30 χαρακτήρες" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Ο ρόλος Superadmin δεν μπορεί να τροποποιηθεί." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Το πεδίο Όνομα είναι απαραίτητο." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Το πεδίο Επίπεδο Πρόσβασης πρέπει να είναι ένας αριθμός μεταξύ 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Το πεδίο Επίπεδο Πρόσβασης πρέπει να είναι ένας αριθμός μεταξύ 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Το πεδίο Δικαιώματα πρέπει να είναι ένας αριθμός μεταξύ 0 - 100." diff --git a/application/i18n/po/po-el/settings.po b/application/i18n/po/po-el/settings.po new file mode 100644 index 0000000000..f07c62e16e --- /dev/null +++ b/application/i18n/po/po-el/settings.po @@ -0,0 +1,861 @@ +# +# Translators: +# mindthecam , 2013 +# Wasilis , 2013 +# zio donnie , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/projects/p/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Το πεδίο \"επιτρέπω \" δεν περιέχουν έγκυρη αξία." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Το πεδίο \"επιτρέπω μηνύματα\" είναι υποχρεωτικό." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Το πεδίο \"περιλαμβάνω\" δεν περιέχει έγκυρη αξία." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Το πεδίο \"περιλαμβάνω\" είναι υποχρεωτικό." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Το πεδίο \"επίτρεψε ειδοποιήσεις\" δεν περιέχει κάποια έγκυρη τιμή" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Το πεδίο \"επίτρεψε ειδοποιήσεις\" απαιτείται." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Το πεδίο \"επίτρεψε αναφορές\" δεν περιέχει κάποια έγκυρη τιμή" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Το πεδίο \"επίτρεψε αναφορές\" απαιτείται." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Το πεδίο \"διαμοίραση στατιστικών\" δεν περιέχει κάποια έγκυρη τιμή" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Το πεδίο \"διαμοίραση στατιστικών\" απαιτείται." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Προκαθορισμένος αριθμός εγγραφών που ανακαλούνται ανά αίτημα API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Μέγιστος αριθμός εγγραφών που ανακαλούνται ανά αίτημα API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Μέγιστος αριθμός αιτημάτων API για κάθε διεύθυνση IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Το πεδίο Akismet δεν περιέχει κάποια έγκυρη τιμή" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Το πεδίο Akismet δεν περιέχει κάποια έγκυρη τιμή" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Το πεδίο Banner ιστοσελίδας δεν φαίνεται να περιέχει μια έγκυρη εικόνα. Οι μόνες αποδεκτές μορφές είναι .JPG, .PNG και .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Παρακαλώ βεβαιωθείτε ότι το \"Banner Image\" μέγεθος είναι μικρότερο από 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Το \"Image Banner\" πεδίο δεν φαίνεται να περιέχει ένα έγκυρο αρχείο." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Το πεδίο cache pages απαιτείται" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Το πεδίο cache pages δεν περιέχει έγκυρη τιμή" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Το πεδίο cache pages lifetime δεν περιέχει έγκυρη τιμή." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Το πεδίο cache pages lifetime απαιτείται." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Φαίνεται ότι ο εξυπηρετητής σου δεν είναι ρυθμισμένος να διαχειρίζεται clean URLs. Θα χρειαστεί να αλλάξεις τις σχετικές ρυθμίσεις " + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Αυτή η επιλογή ενεργοποιεί τα \"clean\" URLs για το Ushahidi (χωρίς το \"index.php\" στο URL)" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Ενεργοποίηση των clean URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Το πεδίο Clickatell API number δεν πρέπει να ξεπερνάει τους 20 χαρακτήρες." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Το πεδίο Clickatell API number απαιτείται." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Το πεδίο Κωδικός Clickatell πρέπει να περιέχει τουλάχιστον 5 και όχι περισσότερους από 50 χαρακτήρες." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Το πεδίο Κωδικός Clikcatell απαιτείται." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Το πεδίο Όνομα Χρήστη Clickatell δεν πρέπει να είναι μεγαλύτερο από 50 χαρακτήρες." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Το πεδίο Όνομα Χρήστη Clickatell απαιτείται." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Διαμόρφωση χάρτη" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Προεπιλεγμένη τοποθεσία" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Το πεδίο color feed δεν περιέχει έγκυρη τιμή.α" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Το πεδίο Χρώμα δεν μπορεί να είναι μεγαλύτερο από 6 χαρακτήρες." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Το πεδίο Χρώμα απαιτείται." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Προεπιλεγμένη απεικόνιση χάρτη" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Προεπιλεγμένο επίπεδο zoom" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Ανάκτηση πόλεων από τα γεω-ονόματα" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Το πεδίο Mail server port είναι πολύ μεγάλο" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Το πεδίο Mail server port θα πρέπει να περιέχει μόνο αριθμούς." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Το πεδίο Κωδικός Mail server πρέπει να περιέχει τουλάχιστον 5 και το πολύ 50 χαρακτήρες." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Το πεδίο Κωδικός Mail server απαιτείται." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Το πεδίο Mail Server port είναι πολύ μεγάλο." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Το πεδίο Mail server port πρέπει να περιέχει μόνο αριθμούς." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Το πεδίο Mail server port είναι πολύ μεγάλο." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Το πεδίο Mail server type απαιτείται." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Το πεδίο Όνομα Χρήστη Mail server πρέπει να είναι μέχρι 50 χαρακτήρες." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Το πεδίο Όνομα Χρήστη Mail server απαιτείται." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Επιλογές ρύθμισης Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Για να πάρεις τις παρακάτω πληροφορίες χρειάζεται να δημιουργήσεις μια νέα εφαρμογή Facebook στο" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Οι ρυθμίσεις αυτές επιτρέπουν στους χρήστες να συνδεθουν μέσω του Facebook, αυτό δεν θα δημιουργήσει μια εφαρμογή στο Facebook για την ανάπτυξη σας" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Το πεδίο Google Analytics πρέπει να περιέχει μια έγκυρη τιμή Όνομα Χρήστη Mail server της μορφής UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Ενεργοποίηση HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Αυτή η επιλογή ενεργοποιεί τη μη ασφαλή πρόσβαση στο Ushahidi. χωρίς \"https://\" στο πρόθεμα του URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Αυτή η επιλογή ενεργοποιεί την ασφαλή πρόσβαση στο Ushahidi. με https στο πρόθεμα του URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Το πεδίο αντικείμενα ανά σελίδα (frontend) δεν περιέχει έγκυρη τιμή." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Το πεδίο αντικείμενα ανά σελίδα (frontend) απαιτείται." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Το πεδίο αντικείμενα ανά σελίδα (Admin) δεν περιέχει έγκυρη τιμή." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Το πεδίο αντικείμενα ανά σελίδα (Admin) απαιτείται." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Η ρύθμιση του πάροχου χάρτη είναι μια απλή διαδικασία. Διάλεξε τον πάροχο, πάρε ένα API κλειδί από το site του και βάλε την τιμή του κλειδιού API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Επίπεδο zoom." + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Διάλεξε ένα πάροχο χάρτη" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Βάλε το νέο κλειδί API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Προμηθεύσου ένα κλειδί API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Η ρύθμιση του πάροχου χάρτη είναι μια απλή διαδικασία. Διάλεξε τον πάροχο, πάρε ένα API κλειδί από το site του και βάλε την τιμή του κλειδιού API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Πάροχος χάρτη" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Χρονογραμμή χάρτη" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Ρυθμίσεις χάρτη" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Αυτή η εγκατάσταση του Ushahidi αφορά σε περισσότερες από μία χώρες;" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Παρακαλώ, διάλεξε μια προεπιλεγμένη χώρα" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Κάνε κλικ και σύρε το χάρτη για να διαλέξεις την ακριβή τοποθεσία" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Απεικόνισε συγκεντρωμένες τις αναφορές στο χάρτη" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Επίτρεψε στους χρήστες να μπορούν να υποβάλλουν σχόλια στις Αναφορές" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Συμπεριέλαβε RSS News Feed στο site" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Επίτρεψε στους χρήστες να εγγράφονται για ειδοποιήσεις" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Επίτρεψε στους χρήστες να υποβάλλουν Αναφορές" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet Key" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Site Banner" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocks ανά γραμμή" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache Pages" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Cache Pages Lifetime" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Enable Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Δήλωση copyright του site" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Προεπιλεγμένο χρώμα για όλες τις κατηγορίες" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Προεπιλεγμένη εικόνα για όλες τις κατηγορίες" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Σβήσε την εικόνα του banner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Σβήσε την προεπιλεγμένη εικόνα" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Απεικόνισε τη σελίδα επικοινωνίας" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Απεικόνισε τη σελίδα \"Πως να βοηθήσω\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Διεύθυνση email για τις ειδοποιήσεις" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "προκειμένου να λαμβάνεις αναφορές μέσω email, παρακαλώ ρύθμισε το λογαριασμό email." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Λογαριασμός email του site" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Αντικείμενα ανά σελίδα - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Αντικείμενα ανά σελίδα - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Εμπόδισε τα κακόβουλα σχόλια χρησιμοποιώντας το Akismet από την Automattic.
Μπορείς να λάβεις ένα δωρεάν κλειδί API αν εγγραφείς στο WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica Credentials" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica Site " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Γλώσσα του site" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Χειροκίνητη έγκριση χρηστών" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Μήνυμα του site" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Όνομα του site" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Μη δημόσια εγκατάσταση" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Απαιτείται επιβεβαίωση του email του χρήστη" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Υποβολή μηνύματος Αναφοράς" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Ενεργοποίηση στατιστικών στοιχείων (αποθηκεύονται στο server του Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Φράση ταυτότητας (tagline) του site" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Ζώνη ώρας" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Ρυθμίσεις site" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Όροι αναζήτησης twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Διαχωρίζονται με κόμμα (χωρίς το σύμβολο #)" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Το πεδίο site email δεν περιέχει έγκυρη διεύθυνση email." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Το πεδίο site email πρέπει να περιέχει τουλάχιστον 4 και όχι περισσότερους από 100 χαρακτήρες." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Το πεδίο όνομα site πρέπει να περιέχει τουλάχιστον 3 και όχι περισσότερους από 50 χαρακτήρες. " + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Το πεδίο όνομα site απαιτείται." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Το πεδίο tagline πρέπει να περιέχει τουλάχιστον 3 και όχι περισσότερους από 100 χαρακτήρες. " + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Το πεδίο tagline απαιτείται." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Your Clickatell API Number" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Έλεγξε το ισοζύγιο μονάδων σου στο Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Load Credit Balance" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Ο κωδικός σου για το Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Εγγράψου στην υπηρεσία Clickatells κάνοντας κλικ εδώ" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Βάλε παρακάτω τις πληροφορίες πρόσβασης στο λογαριασμό σου του Clickatell" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Το όνομα χρήστη για το Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "Το FronlineSMS είναι ένα λογισμικό ανοιχτού κώδικα, το οποίο μετατρέπει έναν φορητο υπολογιστη και ένα κινητό τηλέφωνο σε κέντρο επικοινωνίας. Όταν εγκατασταθεί, το πρόγραμμα επιτρέπει στους χρήστες να στέλνουν και να λαμβάνουν μηνύματα κειμένου σε μεγάλες ομάδες ανθρώπων μέσω κινητού τηλεφώνου. Κάνε κλικ στο γκρι κουτί για να κατεβάσεις το πρόγραμμα από το FrontlineSMS.com" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Λυψη και εγκατασταση του FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Λεπτομερείς οδηγίες για το πώς να στείλθει SMS από την FronlineSMS εγκατάσταση είναι διαθέσιμες εδώ. Η διεύθυνση URL και το κλειδί API απαιτούνται για να δημιουργηθεί ο συγχρονισμός με το FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Αντιγράψτε και επικολλήστε αυτο στο FrontlineSMS πεδίο \"Διευθυνση\"" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Αντιγράψτε και επικολλήστε αυτο στο FrontlineSMS πεδίο \"Ushahidi API Κλειδι\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Σύνδεση του FrontlineSMS σε αυτή την Ushahidi ανάπτυξη" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Βάλε τον αριθμό του τηλεφώνου που είναι συνδεδεμένο στο Frontline SMS στο παρακάτω πεδίο." + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Βάλε παρακάτω τον αριθμό χωρίς + ή παύλες" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Επιλογή 1: Χρησιμοποίησε το Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Επιλογή 2: Χρησιμοποίησε ένα Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Επιλογές ρύθμισης SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Το πεδίο τηλέφωνο 1 δεν περιέχει έγκυρη τιμή." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Το πεδίο τηλέφωνο 1 θα πρέπει να περιέχει μόνο αριθμούς." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Το πεδίο τηλέφωνο 2 είναι πολύ μεγάλο." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Το πεδίο τηλέφωνο 2 θα πρέπει να περιέχει μόνο αριθμούς." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Το πεδίο τηλέφωνο 3 είναι πολύ μεγάλο." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Το πεδίο τηλέφωνο 3 θα πρέπει να περιέχει μόνο αριθμούς." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Επιλογές ρύθμισης του Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Για να πάρεις τις παρακάτω πληροφορίες χρειάζεται να δημιουργήσεις μια νέα εφαρμογή Twitter στο" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Κλειδί καταναλωτή " + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Μυστικό καταναλωτή " + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Διακριτικό πρόσβασης " + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Μυστικο διακριτικό πρόσβασης " + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Δοκιμαστικες ρυθμισεις" diff --git a/application/i18n/po/po-el/sharing.po b/application/i18n/po/po-el/sharing.po new file mode 100644 index 0000000000..6b0b983d5d --- /dev/null +++ b/application/i18n/po/po-el/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# headofthebored , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "ημερομηνία Εισόδου" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Ημερομηνία προσθήκης" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Τελευταία πρόσβαση" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Το πεδίο \"χρώμα\" πρέπει να είναι 6 χαρακτήρες." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Το πεδίο \"χρώμα\" είναι υποχρεωτικό" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Το όνομα κοινής χρήσης δεν φαίνεται να είναι έγκυρο." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Ένα όνομα κοινής χρήσης είναι υποχρεωτικό" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Η διεύθυνση URL υπάρχει ήδη." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Η διεύθυνση URL δεν φαίνεται να είναι έγκυρη." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Το πεδίο URL είναι υποχρεωτικό" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Το πεδίο URL δεν φαίνεται να περιέχει μια έγκυρη διεύθυνση URL." diff --git a/application/i18n/po/po-el/stats.po b/application/i18n/po/po-el/stats.po new file mode 100644 index 0000000000..d1ed62d934 --- /dev/null +++ b/application/i18n/po/po-el/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Έγκριση" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Κατηγορίες" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Επίδραση κατηγορίας" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Αυτός ο πίνακας σου δίνει μια γραμμική απεικόνιση των αναφορών με βάση τις κατηγορίες στο χρόνο. | Κύλισε από αριστερά προς δεξιά για να δεις μια συγκριτική απεικόνιση των διαφόρων κατηγοριών. Βάλε το ποντίκι σου πάνω από το γράφημα για περισσότερες λεπτομέρειες." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Επίλεξε ένα εύρος ημερομηνιών." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Χώρες" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Χώρα" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Απεικόνιση ανά χώρα." + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Αυτός είναι ο τομέας των στατιστικών στοιχείων και σύντομα θα περιέχει μια γενική περιγραφή. Για την ώρα μπορείς να γνωρίσεις τα διάφορα στοιχεία του μέσω των παραπάνω links." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Σφάλμα" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Γλωσσάριο" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Κάνε κλικ στο Περίληψη" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Υπόμνημα" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pageviews" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Ο συνολικός αριθμός σελίδων που έχουν δει οι επισκέπτες του site σου" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Αναφορές" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Κατηγορίες αναφορών" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Στατιστικά Αναφορών" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Κατάσταση Αναφορών" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Punchcard Αναφορών" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Στατιστικά Αναφορών" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Τα στατιστικά δεν έχουν ρυθμιστεί" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 μήνας" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 μήνες" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 μήνες" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Όλα" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Μη εγκεκριμένο" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Μοναδικοί επισκέπτες" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Ο αριθμός των ατόμων που επισκέπτονται το site σου. Οι μοναδικοί επισκέπτες ανιχνεύονται με τη χρήση cookies. Οι επισκέπτες που δεν έχουν ενεργοποιημένα τα cookies θα εντοπίζονται μέσω μιας απλής ευρετικής διαδικασίας που λαμβάνει υπόψη τη διεύθυνση IP, την ανάλυση της οθόνης, το browser που χρησιμοποιούν, τα πρόσθετα, το λειτουργικό σύστημα κλπ." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Μη επιβεβαιωμένο" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Επιβεβαιωμένο" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Περίληψη επισκεπτών" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Επισκέψεις" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Η επίσκεψη είναι μια εγγραφή ενός μοναδικού επισκέπτη που έρχεται στο site σε περισσότερα από 30 λεπτά από την τελευταία του επισκόπηση κάποια σελίδας." diff --git a/application/i18n/po/po-el/tooltips.po b/application/i18n/po/po-el/tooltips.po new file mode 100644 index 0000000000..c5bc3183c5 --- /dev/null +++ b/application/i18n/po/po-el/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Αυτό προσθέτει την αναφορά σε επιπλέον κατηγορίες. Εάν επιλέξεις εδώ την Κατηγορία 1 και η αναφορά ανήκει ήδη στην Κατηγορία 2, η αναφορά θα καταλήξει να ανήκει και στις δύο Κατηγορίες." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Εγκρίνει ή όχι μια αναφορά. Εάν η αναφορά εγκριθεί θα είναι ορατή δημόσια." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Θα μπορείς να αναθέτεις κάποιο σήμα στο χρήστη που έχει ενεργοποιήσει το γεγονός (triggering user). Διάλεξε εδώ το σήμα που θα ανατεθεί." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Αυτό είναι ένα χρονικό διάστημα σε ώρες ή/και λεπτά μεταξύ δύο ωρών σε μορφή 24ώρου. Εάν δώσεις προθύστερο χρόνο στο δεύτερο πεδίο, οι τιμές θα αντιστραφούν με το πρώτο. Το χρονικό διάστημα θα πρέπει να εμπίπτει σε μία ημέρα. Επίσης αυτό το χρονικό διάστημα ελέγχεται με το χρόνο που έχεις ρυθμίσει για το site σου στις \"ρυθμίσεις του site\" και όχι απαραίτητα με βάση τη ζώνη χρόνου του επισκέπτη του site σου. Άφησε τις προκαθορισμένες ρυθμίσεις για να αγνοήσεις αυτό τον qualifier." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Εάν θέλεις να ενεργοποιείται ένα γεγονός μόνο όταν χρησιμοποιείται μια συγκεκριμένη κατηγορία, μπορείς να το ρυθμίσεις εδώ. Αυτό θα επιτρέψει την ενεργοποίηση ενός γεγονότος μόνο όταν χρησιμοποιείται η συγκεκριμένη κατηγορία. Για παράδειγμα, εάν επιλέξεις εδώ τις Κατηγορίες 1 και 2 και η αναφορά που υποβάλλεται χρησιμοποιεί τις Κατηγορίες 2 και 3, θα γίνει η ενεργοποίηση του γεγονότος." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Εάν αυτές οι δράσεις συμβαίνουν σε συγκεκριμένες ημέρες της εβδομάδας, ρύθμισέ το εδώ. Έχε στο νου σου ότι η ημέρα καθορίζεται από τις ρυθμίσεις ζώνης χρόνου που έχεις κάνει στο site σου. Κράτησε πατημένο το shift, το command ή το control για περισσότερες επιλογές." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Το σώμα του email που θα αποσταλεί." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Το θέμα του email που θα αποσταλεί." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Το feed μπορεί να είναι γενικό ή να αφορά συγκεκριμένα feeds. Εάν επιθυμείς το trigger να ενεργοποιείται μόνο από συγκεκριμένα feeds θα πρέπει να τα επιλέξεις εδώ. Διαφορετικά άφησε την τιμή \"όλα\"." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Όνομα χρήστη του twitter (ή πολλαπλά ονόματα χωριζόμενα με κόμμα). Εάν επιθυμείς το trigger να ενεργοποιείται μόνο για tweets συγκεκριμένων χρηστών, βάλε εδώ τα ονόματά τους (χωρίς το @)." + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Μπορείς να το αφήσεις κενό, εάν δε θέλεις να κάνεις κάποιο έλεγχο με βάση συγκεκριμένες λέξεις - κλειδιά. Εάν προσθέσεις κάποιες λέξεις εδώ, χώρισέ τις με κόμμα (,). Για παράδειγμα, εάν θέλεις να ενεργοποιήσεις ένα trigger όταν κάποιος αναφέρει τη λέξη \"αγάπη\" ή \"ειρήνη\" στο μήνυμά του, θα πρέπει να κάνεις την προσθήκη \"αγάπη, ειρήνη\" (χωρίς εισαγωγικά)." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Μπορείς να επιλέξεις είτε \"οπουδήποτε\" ή κάποια συγκεκριμένη τοποθεσία. Εάν επιλέξεις μια συγκεκριμένη τοποθεσία θα σου ζητηθεί να σχηματίσεις ένα πλαίσιο γύρω από την περιοχή ενδιαφέροντος. Για παράδειγμα, εάν θέλεις να ενεργοποιηθεί ένα γεγονός όταν κάποιος υποβάλλει μια αναφορά στη Βραζιλία, θα πρέπει να επιλέξεις \"συγκεκριμένη τοποθεσία\" και να σχηματίσεις ένα πλαίσιο γύρω από τη Βραζιλία. Μπορείς να κάνεις αυτά τα πλαίσια όσο μεγάλα ή όσο μικρά επιθυμείς. Μπορείς επίσης να σχηματίσεις πολλαπλά πλαίσια." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Αυτός ο qualifier θα ενεργοποιήσει κάποιο γεγονός τη ν-οστή φορά είτε για το συνολικό αριθμό αναφορών, είτε για κάποιο συγκεκριμένο χρήστη. Άφησέ το κενό για να την αγνοήσεις." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Αυτός είναι ο προκαθορισμένος τίτλος που θα μπαίνει στην αναφορά." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Εάν όλοι οι παραπάνω qualifiers επιτύχουν, θα ενεργοποιηθεί κάποια απόκριση. Αυτή μπορεί να είναι η έγκριση κάποιας αναφοράς ή η αποστολή email σε κάποιο χρήστη. Επίλεξε εδώ την απόκριση για να ενεργοποιήσεις περισσότερες επιλογές για τις συγκεκριμένες αποκρίσεις." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Εάν επιλέξεις \"Triggering user\" το email θα αποσταλεί στο χρήστη που έκανε τη δράση. Εάν επιλέξεις το κουμπί δίπλα από το κουτί καταχώρησης θα μπορείς να βάλεις μια προσαρμοσμένη διεύθυνση email. Αυτό είναι χρήσιμο εάν ρυθμίζεις κάποια triggers για να ειδοποιείς τους χρήστες σχετικά με αναφορές που γίνονται σε συγκεκριμένα σημεία του χάρτη, ή άλλες δραστηριότητες." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Μπορείς να επιλέξεις πολλαπλές ημέρες εδώ. Οι ημερομηνίες καθορίζονται από τη ζώνη χρόνου του site σου. Για να αφήσεις τις προκαθορισμένες τιμές, μην επιλέξεις καμία ημερομηνία." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Το trigger είναι το βασικό στοιχείο της ρύθμισης των Action Triggers. Εδώ καθορίζεις εάν θέλεις να ενεργοποιείται ένα γεγονός όταν κάποιος υποβάλει μια αναφορά, μπαίνει στο σύστημα κλπ. Θα μπορείς να φιλτράρεις τις αποκρίσεις σε αυτές τις δράσεις μετά την επιλογή." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Ο χρήστης μπορεί να είναι οποιοσδήποτε ή κάποιος συγκεκριμένος. Εάν θέλεις να ενεργοποιείται το trigger μόνο από συγκεκριμένους χρήστες, θα πρέπει να τους επιλέξεις εδώ. Διαφορετικά μπορείς να αφήσεις την τιμή \"οποιοσδήποτε\", καθώς τα περισσότερα triggers αφορούν την αλληλεπίδραση οποιουδήποτε χρήστη με το σύστημα." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Μαρκάρει μια αναφορά ως επιβεβαιωμένη ή όχι." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Οι σελίδες προφίλ σε αυτό το site χρησιμοποιούν το Gravatar. Κάνοντας κλικ πάνω στην εικόνα σου θα μεταφερθείς στο site του Gravatar όπου μπορείς να αλλάξεις την εικόνα του προφίλ σου." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Χώρισε την κάθε τιμή με κόμμα, πχ τιμή1, τιμή2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Χώρισε την κάθε τιμή με κόμμα, πχ τιμή1, τιμή2. Σε περίπτωση που θέλεις να ορίσεις μια προεπιλεγμένη τιμή, πρόσθεσε στο τέλος :: πχ εάν θέλεις να είναι η τιμή3 η προεπιλεγμένη θα βάλεις τιμή1, τιμή2, τιμή3::τιμή3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Χώρισε κάθε επιλογή με κόμμα, πχ Αντικείμενο 1, Αντικείμενο 2 κλπ" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Ξεκίνα να πληκτρολογήσεις για να δεις τη λίστα με τα μέλη" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Θέμα ατομικού μηνύματος" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Ατομικό μήνυμα" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Μπορείς να επιλέξεις το χρώμα που θα φαίνεται κάτω από τη φωτογραφία του προφίλ σου στη σελίδα \"δημόσιο προφίλ\". Αυτό το χρώμα θα είναι επίσης το χρώμα της κουκίδας που θα φαίνεται στο χάρτη για τα δικά σου chekcins." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Η διεύθυνση email σου." + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Αυτός είναι ένας από τους τρόπους που προσδιορίζεσαι μέσα στο site. Έχε στο νου σου ότι φαίνεται δημόσια!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Εάν βάλεις κάποια τιμή, αυτός θα είναι ο νέος σου κωδικός. Άφησέ το κενό εάν επιθυμείς να διατηρήσεις τον κωδικό σου." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Αυτό απαιτείται όταν δημιουργείς ένα νέο χρήστη και θα είναι ο κωδικός του χρήστη. Θα πρέπει να ενημερώσεις το νέο χρήστη να αλλάξει τον κωδικό του όταν μπει στο σύστημα για πρώτη φορά." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Επιλέγοντας ΝΑΙ θα λαμβάνεις ειδοποιήσεις μέσω email όταν αναρτώνται νέα σχόλια ή αναφορές στο site σου." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Ο τρέχων κωδικός σου. Απαιτείται προκειμένου να εμποδιστεί μη εγκεκριμένη απόπειρα αλλαγής του λογαριασμού σου." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Εάν τσεκάρεις αυτή την επιλογή, το προφίλ σου θα είναι ορατό σε οποιονδήποτε στο διαδίκτυο. Αυτός είναι ο ευκολότερος τρόπος για να δημοσιοποιήσεις τις αναφορές που έχεις υποβάλει." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Αυτή είναι η διεύθυνση στην οποία μπορεί να βρεθεί το δημόσιο προφίλ σου." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Το όνομα χρήστη δεν μπορεί να αλλαχθεί." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Τα επίπεδα πρόσβασης χρησιμοποιούνται για να περιορίσουν την πρόσβαση σε προσαρμοσμένα πεδία δεδομένων. Τα υψηλότερα επίπεδα πρόσβασης έχουν πρόσβαση σε πεδία που έχουν δημιουργηθεί από χαμηλότερα επίπεδα πρόσβασης. Ο Superadmin έχει το υψηλότερο επίπεδο πρόσβασης (100). Τα δημόσια δεδομένα απεικονίζονται με το χαμηλότερο επίπεδο πρόσβασης (0). Τα μέλη έχουν επίπεδο πρόσβασης 10. Ο διαχειριστής έχει προκαθορισμένο επίπεδο πρόσβασης 90." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Αυτή είναι η διεύθυνση email που θα χρησιμοποιηθεί για να αποστέλλονται οι ειδοποιήσεις μέσω email." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Ενεργοποίησε τη δυνατότητα για τους χρήστες να μπορούν να λαμβάνουν ειδοποιήσεις μέσω του διαδικτύου." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Αυτό επιτρέπει τη συγκέντρωση παρόμοιων αναφορών σε μία μόνο κουκκίδα στο χάρτη." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Ενεργοποίησε τη δυνατότητα για τους χρήστες να μπορούν να σχολιάζουν τις αναφορές στο κεντρικό site." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Αυτό επιτρέπει στα RSS News feeds να απεικονίζονται στο κεντρικό site." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Ενεργοποίησε τη δυνατότητα για τους χρήστες να υποβάλλουν πληροφορίες μέσω της διαδικτυακής φόρμας." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Προκαθορισμένος αριθμός εγγραφών που θα λαμβάνονται για κάθε API request." + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Μέγιστος αριθμός εγγραφών που θα λαμβάνονται για κάθε API request." + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Μέγιστος αριθμός API request ανά διεύθυνση IP." + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "To banner του site απεικονίζεται στην κορυφή της σελίδας του site σου, εάν υποστηρίζεται από το θέμα που χρησιμοποιείς. Το συνιστώμενο μέγεθος για το banner εξαρτάται από το εκάστοτε θέμα. Έχε στο νου σου ότι το banner θα αντικαταστήσει τον τίτλο του site και το tagline στην κορυφή της σελίδας." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Ο αριθμός των στηλών block που θα απεικονίζονται σε κάθε σειρά." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Ενεργοποίησε ή απενεργοποίησε το page caching. Αυτό θα κάνει τις σελίδες να απεικονίζονται ταχύτερα, μειώνοντας τους χρόνους απόκρισης. Συνιστούμε να χρησιμοποιείς caching σε site μεγάλης κυκλοφορίας. **Θυμήσου ότι οι αναφορές θα συμπληρώνονται πάνω στο site με βάση το χρονοδιάγραμμα που ορίζεις ακολούθως (Cache lifetime)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Όρισε το χρόνο ζωής του cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Αυτή η ρύθμιση επιτρέπει την είσοδο χρηστών στο σύστημα. Αυτή είναι ένας απλοποιημένος τύπος αναφοράς, η οποία δεν ελέγχεται προτού δημοσιευτεί στην κεντρική σελίδα και απαιτεί συγκεκριμένες ρυθμίσεις για το site σου. Όταν το ενεργοποιήσεις, βεβαιώσου ότι η ζώνη ώρας είναι σε UTC και ότι το θέμα σου υποστηρίζει τα checkins. Όταν είναι ενεργοποιημένο θα μπορείς να βλέπεις μόνο τα θέματα που υποστηρίζουν checkins στη σελίδα addons/thems." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Όρισε συγκεκριμένη περιοχή για το χάρτη." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Όρισε συγκεκριμένο χρώμα για όλες τις κατηγορίες του χάρτη." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Όρισε ένα εικονίδιο για όλες τις κατηγορίες του χάρτη." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Αυτή είναι η χώρα στην οποία είναι ενεργός αυτός ο χάρτης." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Ενεργοποίησε ή απενεργοποίησε τη φόρμα επικοινωνίας στο κεντρικό site." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Ενεργοποίησε ή απενεργοποίησε το tab \"How to help\" στην κεντρική σελίδα." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Αυτός είναι ο αριθμός των αναφορών που φαίνονται ανά σελίδα στο κεντρικό site." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Αυτός είναι ο αριθμός των αναφορών που φαίνονται ανά σελίδα στο χώρο διαχείρισης του site." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Αυτό είναι το κεντρικό σημείο για τα εισερχόμενα μηνύματα." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Αυτό συγχρονίζει τα μηνύματα του κεντρικού σημείου με την πλατφόρμα Ushahidi." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Αριθμοί τηλεφώνου μέσω των οποίων λαμβάνονται τα μηνύματα κειμένου." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Ανίχνευσε τους επισκέπτες του site σου. Δες αναλυτικά στατιστικά για τους επισκέπτες." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Όρισε τη γλώσσα στην οποία θα χρησιμοποιείται αυτό το site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Εάν επιλέξεις ναι, θα πρέπει να εγκρίνεις κάθε χρήστη που δημιουργεί ένα λογαριασμό σε αυτό το site, δίνοντάς του κάποιο ρόλο (πχ Μέλος, Διαχειριστής, Υπερ-Διαχειριστής)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Αυτό καθορίζει ποιος χάρτης θα χρησιμοποιηθεί σε αυτό το site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Αυτό δείχνει το timeline με βάση την ημερομηνία και ώρα που δημιουργούνται οι αναφορές." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Ορίζοντας αυτή την τιμή ως true ή ναι θα μετατρέψει το site σου σε μη δημόσιο, ώστε μόνο οι χρήστες με λογαριασμό που καθορίζεις εσύ να μπορούν να έχουν πρόσβαση." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Στους χρήστες θα αποστέλλεται ένα email επιβεβαίωσης με ένα σύνδεσμο που θα πρέπει να επισκεφτούν προτού τους επιτραπεί η δυνατότητα εισόδου στο σύστημα, εάν επιλέξεις \"ναι\". Εάν το επιλέξεις αφότου έχεις ήδη δεχτεί κάποιους χρήστες, θα σταλθεί και σε εκείνους κάποιο email επιβεβαίωσης." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Εδώ βρίσκονται τα emails." + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Αυτός είναι ο κωδικός για τη διεύθυνση email που λαμβάνει τις αναφορές." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Αυτό απαιτείται προκειμένου να γίνονται δεχτές οι συνδέσεις από τη διεύθυνση email." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Αυτό απαιτείται για την ενίσχυση της ασφάλειας της σύνδεσης." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Αυτό απαιτείται για να μπορεί το σύστημα να λαμβάνει emails από το host server." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Αυτή είναι η διεύθυνση email που λαμβάνει τις αναφορές." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Τα στατιστικά των επισκέψεων διατηρούνται σε ένα διακομιστή που ελέγχεται από το Ushahidi. Ενεργοποιώντας αυτή την επιλογή μπορείς να δεις τα σχετικά στατιστικά στο admini panel. Απενεργοποιώντας την θα παύσει η συλλογή στατιστικών και δε θα μπορείς να τα ανακτήσεις για την περίοδο που είναι απενεργοποιημένη." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Έχουν άλλοι το δικαίωμα να αναδημοσιεύσουν κείμενο, φωτογραφίες, βίντεο ή/και σχεδιαστικά θέματα που φτιάχνεις εσύ και οι χρήστες σου; Πήγαινε στο https://creativecommons.org/choose/ εάν επιθυμείς να προσδιορίσεις τι μπορούν να κάνουν οι άλλοι με τη δουλειά σου. Και να θυμάσαι να είσαι συγκεκριμένος σε σχέση με το σε ποια στοιχεία του site σου αφορά η άδεια!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Αυτή είναι η διεύθυνση email που θα λαμβάνει τις αναφορές μέσω email και τα μηνύματα από τη φόρμα επικοινωνίας." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Αυτό είναι το κείμενο που θα εμφανίζεται πάνω από το χάρτη στην αρχική σελίδα. Είναι χρήσιμο για να δώσεις σημαντικές πληροφορίες στους επισκέπτες του site. Για να αφαιρέσεις το κουτί απλά διάγραψε το μήνυμα εδώ." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Αυτό είναι το όνομα του site που εμφανίζεται στην κορυφή του κεντρικού site." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Αυτό είναι ένα μήνυμα που θα φαίνεται στη σελίδα υποβολής αναφοράς. Είναι χρήσιμο για disclaimers ή περαιτέρω οδηγίες για τους ανταποκριτές." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Με λίγα λόγια εξήγησε το σκοπό αυτού του site." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Αυτή είναι η ζώνη ώρας στην οποία θα λειτουργεί το site σου. Η ρύθμιση αυτή επιδρά σε τυχόν δράσεις που έχεις ρυθμίσει, οι οποίες χρησιμοποιούν ώρα και ημερομηνία, καθώς και στην προκαθορισμένη ώρα για τις αναφορές που υποβάλλονται." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Όρισε το twitter hashtag που θα χρησιμοποιηθεί σε κάποιο tweet που αφορά σε αυτό το χάρτη." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-el/ui_admin.po b/application/i18n/po/po-el/ui_admin.po new file mode 100644 index 0000000000..4321f6f16f --- /dev/null +++ b/application/i18n/po/po-el/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# mindthecam , 2013 +# Wasilis , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Απαγόρευση πρόσβασης. Είτε τα στοιχεία πρόσβασης δεν είναι έγκυρα, ή το αίτημά σου έχει απορριφθεί." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Απαγόρευση πρόσβασης. Το αίτημά σου έγινε κατανοητό, αλλά απορρίφθηκε λόγω περιορισμών στο χρόνο πρόσβασης. Δοκίμασε ξανά αργότερα." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Επίπεδο πρόσβασης" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Δράσεις" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Προσθήκη στην κατηγορία" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "Προστέθηκε" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Προσθήκη/επεξεργασία" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Πρόσθετα" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Διαχειριστής" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Ειδοποιήσεις" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Ληφθείσες ειδοποιήσεις" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Όλα" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "ΑΜ" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Ανώνυμος" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Οποιοσδήποτε" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Οπουδήποτε" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "Απορριπτέο API" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Ημερολόγιο καταγραφής συμβάντων API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Ρυθμίσεις API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Αναίρεση κατάργησης" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Αναίρεση κατάργησης όλων " + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "εγκεκριμένο" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Αυτόματη Έγκριση" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Χειροκίνητη εγκριση" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Αρχειοθετημένο" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Είστε σίγουρος ότι θέλετε να" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Είστε σίγουρος ότι θέλετε να διαγράψετε αυτό το αντικείμενο;" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Είστε σίγουρος ότι θέλετε να διαγράψετε αυτή τη φωτογραφία;" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Είσαι σίγουρος ότι θέλεις να αλλάξεις φόρμες;" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Ανάθεσε" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Αναθέσεις" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Ανάθεσε σήμα" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Συντάκτης" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Συντάκτης email" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Πίσω" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Κατάργηση IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Μεταξύ χρονικών στιγμών" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocks" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Σώμα" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Ακύρωση" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Κατηγορίες" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Πίνακας σφαλμάτων" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Παρακαλώ βεβαιωθείτε ότι το μήνυμά σας είναι έγκυρο." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Παρακαλώ βεβαιωθείτε ότι το νούμερο είναι έγκυρο." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Παρακαλώ ελέγξτε τις ρυθμίσεις των μηνυμάτων σας!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Λεπτομέρειες checkin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Οι πόλεις φορτώθηκαν" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "κωδικός" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Η έκδοση του κώδικα είναι εκτός συγχρονισμού" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Χρώμα" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Σχόλια" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Ο κωδικός επιβεβαίωσης ειδοποιήσεων είναι: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Ο χρήστης έχει" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Μετράω" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Η χώρα δε βρέθηκε" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "δημιουργήθηκε / διορθώθηκε" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Φτιάξε μια Αναφορά" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Κρίσιμη αναβάθμιση" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Ενεργοποιημένα" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Ανενεργά" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Δεν έχεις επαρκή δικαιώματα για να διορθώσεις τα ακόλουθα προσαρμοσμένα πεδία." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Καθημερινά" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Πίνακας ελέγχου" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "βάση δεδομένων" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Ημερομηνία & Ώρα" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Προστέθηκε η ημερομηνία" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Τροποποιήθηκε η ημερομηνία" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Ημέρες της εβδομάδας" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Έκδοση βάσης δεδομένων εκτός συγχρονισμού" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "σβήστηκε" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Σβήσε" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Σβήσε το σήμα" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Περιγραφή" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Απενεργοποιήθηκε" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Αρχή διαχωριστικού" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Τέλος διαχωριστικού" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Κατέβασε τις Αναφορές" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Επιλογές πτυσσόμενης λίστας" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "ΔΙΟΡΘΩΘΗΚΕ" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Διορθώθηκε από τον/την" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Διόρθωσε" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Αρχείο καταγραφής συμβάντων διόρθωσης" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Ηλεκτρονικό μήνυμα" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Ολόκληρη η συλλογή" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Σφάλμα στην γεω-κωδικοποίηση. Σφάλμα HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Η βιβλιοθήκη IMAP PHP δεν έχει εγκατασταθεί." + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Εσφαλμένες πιστοποιήσεις " + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Σφάλμα" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Σφάλμα, αδύνατη η δημοσίευση του γεγονότος" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Κάθε έξι ώρες" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Κάθε δώδεκα ώρες" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Πειραματικό" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Συχνές ερωτήσεις" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "ροή πληροφοριών" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Ανατροφοδότηση" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "ροές πληροφοριών" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Λίστα επιλογών" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Προκαθορισμένη τιμή" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Είδος δεδομένων" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Αριθμητικό" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Ελεύθερο κείμενο" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Ύψος (σε σειρές)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Κρυμμένο πεδίο" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Μέγιστο μήκος χαρακτήρων" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Όνομα Πεδίου" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Εναλλαγή" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Όχι" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Ναι, προκαθορισμένη τιμή: κλειστό" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Ναι, προκαθορισμένη τιμή: ανοιχτό" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Δεν μπόρεσα να βρω το μεταφορτωμένο αρχείο" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Δεν μπόρεσα να ανοίξω το αρχείο για ανάγνωση" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Αυτή η φόρμα δεν υπάρχει!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Φόρουμ" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Πεδίο περιοχής κειμένου (ελεύθερο κείμενο)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Πεδίο ημερομηνίας" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Πεδίο ραδιοφωνικών κουμπιών" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Πεδίο checkboxes" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Πεδίο πτυσσόμενης λίστας" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Από" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Από" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Σφάλμα λήξης χρόνου γεω-ονομάτων" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Αναζήτησε βοήθεια" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Κατέβασε περισσότερα θέματα" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Κατέβασε περισσότερα πρόσθετα" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Δράσεις" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Προσθήκη / Διόρθωση" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Διαχείριση χρηστών" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Ρόλος" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Χρήστης" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "βοήθεια" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Ωριαίος" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Ροή περιστατικού για" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Ο φάκελος εγκατάστασης υπάρχει ακόμα. Διάγραψέ τον. Αποτελεί πιθανό κίνδυνο ασφάλειας για το σύστημά σου." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instance" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instances" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Λεπτομέρειες instance" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Μη έγκυρη παράμετρος" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Διεύθυνση IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Είναι αυτό ένα πεδίο ημερομηνίας;" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Ποιος μπορεί να βλέπει τις απαντήσεις" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Ποιος μπορεί να υποβάλλει απαντήσεις" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Λέξη κλειδί" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Λέξεις κλειδιά" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Ηλεκτρονική Διεύθυνση" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Πλήρες όνομα:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Κωδικός:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Ρόλος:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Όνομα χρήστη:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Επίπεδα" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Διαχειριστής" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Έξοδος από το σύστημα" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Αρχεία καταγραφής περιστατικών" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Διαχείρηση" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Διαχείριση ρόλων & επιπέδων πρόσβασης" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Δες τους χρήστες" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Προσθήκη/Επεξεργασία χρηστών" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Διαχείριση της δημόσιας καταχώρησης του χάρτη σου" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Επισήμανε ως" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "επισήμανε ως μη κακόβουλο" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "επισημασμένο ως κακόβουλο" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "δεν βρέθηκαν έγγραφα να ταιριάζουν" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Μήνυμα" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Μηνύματα" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Μηνύματα laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Μηνύματα twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Το μήνυμα εστάλει!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Λεπτό" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Λεπτά" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Λείπει κάποια παράμετρος" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Διαχειριστής" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "τροποποιημένο" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Τροποποίησε τις ρυθμίσεις της ζώνης χρόνου" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "κινήσου προς τα κάτω" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "κινήσου προς τα πάνω" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Πολλαπλές εγκαταστάσεις" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "ΟΙ ειδοποιήσεις μου" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Τα checkin μου" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Το προφίλ μου" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Οι αναφορές μου" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Ψήφοι που έχουν δοθεί" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Θετικό" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Αρνητικό" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Όνομα" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Δημιουργία νέας ειδοποίησης" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Δημιουργία νέου μηνήματος" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Νέος κωδικός πρόσβασης" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Όχι" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Αυτή είναι μια ειδική κατηγορία η οποία δε θα φαίνεται στους χρήστες που θα συμπληρώνουν τη φόρμα υποβολής αναφοράς. Χρησιμοποιείται για να αρχειοθετούνται οι αναφορές που δεν έχουν κατηγορία (μη-κατηγοριοποιημένες αναφορές), το οποίο προκύπτει όταν σβηστεί κάποια κατηγορία." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Ειδοποίηση" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Τα κεφαλαία και τα πεζά θεωρούνται τα ίδια." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Δε βρέθηκε" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Δεν υπάρχουν δεδομένα. Δεν υπάρχουν αποτελέσματα προς απεικόνιση." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Δεν υπάρχει σφάλμα." + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Δεν υπάρχουν αποτελέσματα!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "του" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "On Specific Count" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "σελίδα" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "σελίδες" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Η σελίδα δε βρέθηκε" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Συγγνώμη, η σελίδα που προσπαθείς να δεις δεν είναι εδώ.

Ακολούθησες κάποιο σύνδεσμο από κάποιο άλλο σημείο του site σου;
Εάν έφτασες εδώ από κάποιο άλλο σημείο του site σου, παρακαλούμε επικοινώνησε μαζί μας για να διορθώσουμε το σφάλμα.

Ακολούθησες κάποιο σύνδεσμο από ένα άλλο site;
Τα links από άλλα site μπορούν να είναι παρωχημένα ή να περιέχουν εσφαλμένη ορθογραφία Πες μας από που ήρθες και θα επικοινωνήσουμε μαζί τους για να διορθώσουν το πρόβλημα.

Πληκτρολόγησες τη διεύθυνση;
Μπορεί να έχεις πληκτρολογήσει λάθος διεύθυνση (URL). Κάνε έλεγχο για να βεβαιωθείς ότι η ορθογραφία, τα πεζά - κεφαλαία κλπ είναι σωστά.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Συγγνώμη, η σελίδα που προσπαθείς να δεις δεν είναι εδώ." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Παράμετροι που έχουν χρησιμοποιηθεί" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Κωδικός" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Αίτημα επανέκδοσης κωδικού" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Αγαπητέ/ή" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Λάβαμε ένα αίτημα επανέκδοσης κωδικού για" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Για να αλλάξεις τον κωδικό σου, παρακαλώ κάνε κλικ στον παρακάτω σύνδεσμο (ή ανέγραψε και επικόλλησέ τον στο browser σου)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Σύμφωνα με το αίτημα που μας έστειλες, ο κωδικός σου έχει επανεκδοθεί. Τα νέα στοιχεία έχουν ως ακολούθως" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Επανέκδοση κωδικού για το Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Τηλέφωνο" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Παρακαλώ επίλεξε" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "ΜΜ" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Τα δεδομένα δε στάλθηκαν με τη μέθοδο post" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Προεσκόπιση" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Μήνυμα" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Προσωπικό μήνυμα" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Αποστολή προσωπικού μηνύματος" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Θέμα" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Στον" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Δημόσια καταχώρηση του site" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Qualifiers" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "διάβασε" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Σχετικότητα" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Τίτλος αναφοράς" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Ημερομηνία Αναφοράς" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Ανταποκριτές" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Επίπεδα ανταποκριτών" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Αναφορές" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Σκορ φήμης" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Απαιτείται" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Μηδενισμός τιμής" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Απόκριση" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Αποτελέσματα" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Ανάκληση" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Αυτό το email αντιστοιχεί ήδη σε λογαριασμό, τον οποίο διαχειρίζεται το CrowdmapID. Ο χρήστης θα πρέπει να χρησιμοποιήσει τον υφιστάμενο κωδικό του για να μπει στο σύστημα." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Αποθήκευση ρυθμίσεων" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Αναζήτηση" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Αναζήτηση αναφορών" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "Αναζήτηση για" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Το κλειδί κρυπτογράφησης έχει ακόμα την προκαθορισμένη τιμή. Αυτό είναι μη ασφαλές και πρέπει να το αλλάξεις." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Το site αυτό χρησιμοποιεί HTTP. Θα πρέπει να το αλλάξεις σε HTTPS για αυξημένη ασφάλεια." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Θα βρεις οδηγίες στο wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Επίλεξε την επιθυμητή μορφή για τη μεταφόρτωση των Αναφορών:" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Διάλεξε ένα τύπο πεδίου ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Παρακαλώ επιλέξτε ένα αντικείμενο" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Πρέπει να διαλέξεις ένα γεγονός πυροδότησης (trigger) προτού μπορέσεις να επιλέξεις την απόκριση." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Πρέπει να διαλέξεις ένα γεγονός πυροδότησης (trigger) προτού μπορέσεις να επιλέξεις τα qualifiers." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Αποστολέας" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Αποστολή στο" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Αυτό το μήνυμα εστάλει από την ιστοσελίδας σας, στο" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Ώρα server." + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Ρυθμίσεις" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Βλέπεις τη σελίδα" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Βλέπεις τα αποτελέσματα" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "έχουν βρεθεί" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Ειδική κατηγορία" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Αυτή είναι μια ειδική κατηγορία η οποία δε θα φαίνεται στους χρήστες όταν υποβάλουν μια Αναφορά. Χρησιμοποιείται σε συνδυασμό με το χαρακτηριστικό \"Έμπιστος ανταποκριτής\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Ειδική περιοχή" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Πολιτεία" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Στατιστικά" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Στατιστικά" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Απέτυχε η συλλογή στατιστικών στοιχείων. Παρακαλώ προσπάθησε ξανά αργότερα." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Απέτυχε η συλλογή στατιστικών στοιχείων. " + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Συγκεκριμένες μέρες" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Θέμα" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Υπερ-Διαχειριστής" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Το έργο ολοκληρώθηκε" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Πεδίο κειμένου" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Όνομα" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Διαχείριση χρηστών" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Σφάλμα τέλους χρόνου" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "σε" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Σύνολο εγγραφών " + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "σε" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Μετάφρασε Αναφορές" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Γεγονός πυροδότησης" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Χρήστης που ενεργοποιεί ένα γεγονός πυροδότησης" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Γεγονότα πυροδότησης" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "μη εγκεκριμένο" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Άγνωστο" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Άγνωστο σφάλμα" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "μη αναγνωσμένο" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Δε θα λαμβάνεις πλέον ειδοποιήσεις από" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Κάνε κλικ εδώ για αναβάθμιση τώρα" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Αναβάθμισε το Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Κατάσταση αναβάθμισης Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Ανέβασε Αναφορές" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Χρήστης" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Χρήστες" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Επιβεβαιωμένο / Μη επιβεβαιωμένο" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Επιβεβαίωσε / Ακύρωσε επιβεβαίωση" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Έκδοση" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "είναι διαθέσιμο για αναβάθμιση." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Κωδικοποίηση βίντεο" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Προσωπικό μήνυμα" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Δες το site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Δες την Αναφορά" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Καλώς όρισες," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Ναι" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr " Η αναζήτηση σας για" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-el/ui_main.po b/application/i18n/po/po-el/ui_main.po new file mode 100644 index 0000000000..cfeb361f2f --- /dev/null +++ b/application/i18n/po/po-el/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# Jon Alexopoulos, 2014 +# mindthecam , 2013 +# headofthebored , 2012 +# Wasilis , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Περί" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Πρόσβαση" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Περιορισμοί Πρόσβασης" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Ονομα Λογαριασμού" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Ενέργειες" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Είστε βέβαιοι ότι θέλετε να συνεχίσετε;" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Ενεργοποίηση" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Ενεργό" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Προσθήκη" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Προσθήκη από" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Περισσότερα δεδομένα" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Περισσότερες μαρτυρίες" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Προσθήκη / Επεξεργασία" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Προσθήκη πεδίου" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Προσθήκη γλώσσας" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Προσθήκη νέου" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Προσθήκη νέας κατηγορίας" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Προσθήκη Μετάφρασης" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Διαχείριση" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Λήψη ειδοποιήσεων" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Ενημέρωσε με αν γίνει μια αναφορά στο ή γύρω από " + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Αποθήκευση της ειδοποίησης μου" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Εισάγετε τον αριθμό του κινητού περιλαμβανομένου του κωδικού της χώρας" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Λήψη ειδοποιήσεων" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Η ειδοποίηση έχει" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Κινητό τηλέφωνο:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "ή επιλέξτε ένα σημείο στο παρακάτω χάρτη, και εμείς θα σας ειδοποιήσουμε όταν μια αναφορά υποβάλλεται σε απόσταση 20 χιλιομέτρων." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Εάν δεν μπορείτε να βρείτε τη θέση σας, κάντε κλικ στο χάρτη για να εντοπίσετε τη σωστή θέση." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (αντιγράψτε την παρακάτω διεύθυνση URL)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Επιλέξτε μια πόλη" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr " Βήμα 1: Επιλέξτε πόλη ή την περιοχή σας:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Βήμα 2: Αποστολή ειδοποιήσεων:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Βήμα 3 (Προαιρετικό): Επιλογή Κατηγοριών" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Επιβεβαιώσει προηγούμενο αιτήματος ειδοποίησης" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Η ειδοποίησή σας έχει αποθηκευτεί!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Όλα" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Επιτρεπόμενα" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Επιτρεπόμενες ετικέτες HTML: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes επιτρέπονται μόνο από: %s. " + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Όλες οι κατηγορίες" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Όλοι οι χρόνοι" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "Και" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Έγκριση" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Εγκεκριμένο" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Εγκεκριμένες αναφορές" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Έγκριση αναφοράς" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Κατά προσέγγιση" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Αρχείο" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Αρχειοθετημένο" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Αύξουσα" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "στο" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Συγγραφέας" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Μέσος αριθμός εκθέσεων ανά ημέρα" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Εν αναμονή έγκρισης" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Εν αναμονή επαλήθευσης" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Έμβλημα" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Εμβλήματα" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Εικόνα εμβλήματος" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ή μπορείτε να ανεβάσετε την δική σας εικόνα εμβλήματος." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Πακέτο εμβλημάτων" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Επιλογή εμβλήματος" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Περιήγηση προφίλ" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Ακύρωση" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Κατηγορίες" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Κατηγορία" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Φίλτρο Κατηγοριών" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Αυτή η κατηγορία έχει" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Όνομα κατηγορίας" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Αλλαγή εύρους ημ/νιας" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Αλλαγή Password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Αλλαγή της εικόνας μου" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Επιλέξτε ένα" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Επιλέξτε τα σημεία δεδομένων για κατέβασμα" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Ή επιλέξτε δικό σας εύρος ημερομηνιών" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Επιλέξτε τον τύπο πεδίου" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Καθαρά URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Καθαρισμός" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Καθαρισμός Χάρτη" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Κλείσιμο" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "συστάδες" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Χρώμα" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Σχόλιο" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Σχόλια" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Λεπτομέρειες Σχόλιο" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Οι ρυθμίσεις σας αποθηκεύτηκαν!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Ρύθμιση" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Έχετε επιβεβαιώσει επιτυχώς τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας! Παρακαλούμε συνδεθείτε παρακάτω." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Έχετε επιβεβαιώσει επιτυχώς το email σας! Ένας διαχειριστής πρέπει να εγκρίνει τον λογαριασμό σας πριν μπορέσετε να συνδεθείτε" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Η επιβεβαίωσης του e-mail απέτυχε! Μπορείτε να ζητήσετε ένα νέο email επιβεβαίωσης." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Επικοινωνήστε μαζί μας" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Κωδικός Ασφαλείας" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Μήνυμα" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Το μήνυμά σας έχει σταλεί!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Το όνομά σας" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Ο αριθμός τηλεφώνου σας" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Αποστολή μηνύματος" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Θέμα μηνύματος" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © " + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Δημιουργία" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Δημιουργία/Επεξεργασία" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Δημιουργία νέου" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Δημιουργία νέου Password" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Δημιουργία Αναφοράς" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "αξιοπιστία" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "τρέχων Password" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Προσαρμοσμένα πεδία" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Πληροφορίες" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "ημερομηνία" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(ΜΜ/ΗΗ/ΕΕΕΕ)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Ημερομηνία & Ώρα" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "Ημέρα" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Απενεργοποίηση" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Ναϊρόμπι, Κένυα" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Διαγραφή" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Διαγραμμένο" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Διαγράφει" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Απενεργοποίηση Διαγραφής" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Διαγραφή τελευταίου" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Διαγραφή της αναφοράς" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Διαγραφή επιλεγμένου" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Διαγραφή Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Περιγραφή" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Φθίνουσα" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Παράδειγμα: Γωνιά , Πατησίων και Δεριγνί, Αθήνα" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Λεπτομέρειες" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Άμεση Αναφορά" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Απενεργοποιημένο" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Ανάκληση έγκρισης" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Κατέβασμα Αναφορών" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Κατέβασμα" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Επεξεργασία " + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Επεξεργασία πεδίων φόρμας" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Επεξεργασία Αναφοράς" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Ρυθμίσεις διακομιστή αλληλογραφίας" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Password" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Υποστήριξη SSL στον Mail Server " + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Τύπος Mail Server " + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Username" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "έτσι οι ρυθμίσεις σας πρέπει να σχετίζονται με αυτήν την ηλεκτρονική διεύθυνση" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Για να λαμβάνετε αναφορές μέσω ηλεκτρονικού ταχυδρομείου, παρακαλώ εισάγετε τις ρυθμίσεις του λογαριασμού e-mail σας παρακάτω. Σημειώστε ότι τα μηνύματα θα λαμβάνονται στο" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Ορισμένοι διακομιστές απαιτούν μια πλήρη διεύθυνση email" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Password του λογαριασμού e-mail" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Συχνές θύρες: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Παραδείγματα: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Παραδείγματα: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Ενεργοποίηση ή απενεργοποίηση συνδέσεων SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---KENO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "Προς" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Σφάλμα" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Παράδειγμα" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Κένια" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Εξωτερικές Εφαρμογές" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Εξωτερικό Link Βίντεο" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Υποβάλετε σχόλια" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Παρακαλούμε πείτε μας την γνώμη σας για την εμπειρία σας στέλνοντας ένα email στο" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "το feed έχει" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Feed αντικείμενα" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Όνομα feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Feed URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Αχρησιμοποίητο πεδίο" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Αρχείο" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Το αρχείο σας υπερβαίνει το μέγιστο επιτρεπόμενο μέγεθος αρχείου." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Φίλτρα" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Φιλτράρισμα Αναφορών" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Φιλτράρισμα Αναφορών με" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Φιλτράρισμα Αναφορών που περιέχουν" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Εύρεση" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Εύρεση Τοποθεσίας" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Το όνομά σας" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Scheduler" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Ξεχάσατε τον password σας;" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Φόρμα" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Φόρμες" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Περιγραφή φόρμας" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Επεξεργασία αυτής της φόρμας" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Η φόρμα έχει" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Τίτλος φόρμας" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Από" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Πλήρες όνομα" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Γεωαναφορά Διαθέσιμη" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Χρώμα" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Σχόλια" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Ετικέτα" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Πλάτος γραφής" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Έναρξη" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Έχει" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Πώς μπορείτε να βοηθήσετε" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Κρυφό" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Απόκρυψη" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Απόκρυψη αυτού του μηνύματος" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Αρχική" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Πώς αναφέρω" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Χρησιμοποιείται στην ιστοσελίδα για την αναγνώριση σας από άλλους χρήστες ." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Εικόνα" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Εικόνες" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Εικόνα/Εικονίδιο" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Ανενεργό" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Εισερχόμενα" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Περιστατικό" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Περιστατικά κοντά" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Τοποθεσία Περιστατικού" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Συμπερίληψη" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Συμπεριλάβετε Κατηγορίες" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Συμπεριλάβετε προσαρμοζόμενα πεδία" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Συμπεριλάβετε περιγραφή" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Συμπεριλάβετε όσο το δυνατόν περισσότερες λεπτομέρειες" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Συμπεριλάβετε γεωγραφικό πλάτος" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Συμπεριλάβετε πληροφορίες θέσης" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Συμπεριλάβετε γεωγραφικό μήκος" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Περιέλαβε προσωπικές πληροφορίες" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Εισερχόμενα πολυμέσα" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Αξιολόγηση πληροφορίας " + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Εισάγετε την ακριβή τοποθεσία σας" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Ο λογαριασμός σας δεν έχει τα κατάλληλη δικαιώματά για να συνδεθείτε πλήρως. Παρακαλούμε επικοινωνήστε με τον διαχειριστή." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Σε απάντηση του" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Διεύθυνση IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Είναι αυτό το προφίλ σας;" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Αντικείμενο" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "Αντικείμενα" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item_details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Τίτλος Αντικειμένου" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Κλειδί" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Λέξεις κλειδιά" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ / KML αρχείο" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Ανέβασμα αρχείο KMZ / KML " + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Γλώσσα" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Τελευταίο" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Τελευταίος μήνας" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Επώνυμο" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Πέρυσι" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "γεωγραφικό πλάτος" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Στρώματα" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Άλλα Στρώματα" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Το στρώμα έχει" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Όνομα Στρώματος" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL Στρώματος" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Αφήστε ένα σχόλιο" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Λιγότερες Πληροφορίες" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Επίπεδο" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Αυτό το επίπεδο έχει" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Όνομα επιπέδου" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Περιορισμένο" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Σύνδεσμος" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Κατάλογος" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Φόρτωση Αναφορών" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Τοποθεσία" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Τοποθεσίες" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Πόλη, Πολιτεία και / ή Χώρα" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Σύνδεση" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Ο λογαριασμός δημιουργήθηκε με επιτυχία. Μπορείτε να συνδεθείτε τώρα." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Μια επιβεβαίωση έχει σταλεί στη διεύθυνση ηλεκτρονικού ταχυδρομείου σας." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Ο λογαριασμός σας δημιουργήθηκε. Ο λογαριασμός σας πρέπει να εγκριθεί πρώτα από έναν διαχειριστή πριν μπορέσετε να συνδεθείτε." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Η διεύθυνση e-mail δεν υπάρχει. Δοκιμάστε μια διαφορετική διεύθυνση ή δημιουργήσετε λογαριασμό" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Παρακαλώ κάντε κλικ τον πάροχο του λογαριασμού σας" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Σύνδεση με" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "e-mail και κωδικός πρόσβασης" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Εγγραφή" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Δημιουργία Λογαριασμού" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Σας ευχαριστούμε για την εγγραφή στο %1$s. Για να επιβεβαιώσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας, παρακαλούμε επισκεφθείτε την παρακάτω διεύθυνση URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Επιβεβαίωση Εγγραφής" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Ένας νέος χρήστης έχει γραφτεί στο %1$s. Για να εγκρίνετε την αίτηση εγγραφής του παρακαλούμε ακολουθήστε τον παρακάτω σύνδεσμο: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Έγκριση Νέου Χρήστη" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Ο λογαριασμός χρήστη σας έχει εγκριθεί για %1$s. Για να συνδεθείτε ακολουθήστε τον παρακάτω σύνδεσμο: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Ο λογαριασμός χρήστη εγκρίθηκε" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Δημιουργήστε ένα λογαριασμό για να αποκτήστε περισσότερες δυνατότητες στο σύστημα." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "γεωγραφικό μήκος" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Χάρτης" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Σήμανση ως αναγνωσμένο" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Σήμανση ως μη αναγνωσμένο" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Μέγιστο μέγεθος αρχείου" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Μέσα" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Φίλτρο μέσων" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Μέλη" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Διαχείρηση του Λογαριασμού σου" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Μήνυμα" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Μηνύματα" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Λεπτομέρειες μηνύματος" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Μήνυμα από μη νουμερική πηγή" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Κινητό" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Τροποποίηση" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Τροποποίηση Ημερομηνίας" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "Μήνας" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Περισσότερα" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Περισσότερες Πληροφορίες" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Αφορά αυτός ο χάρτης πολλές χώρες" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Πρέπει να επιβεβαιώσετε την ηλεκτρονική σας διεύθυνση για να έχετε πρόσβαση σε αυτή τη πλατφόρμα. Αν χάσατε το μήνυμα επιβεβαίωσης μπορείτε να ζητήσετε ένα καινούριο παρακάτω" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Όνομα" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Πλησιέστερη αναφορά" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Νέο" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Νέα" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Τροφοδότηση Νέων" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Πηγή Νέων" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Νέα Κατηγορία" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Νέος Κωδικός " + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Νέα Αναφορά" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Επόμενο" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Όχι" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Δεν υπάρχουν checkins" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Δεν υπάρχουν δεδομένα" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Κανένα" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Ειδοποιήσεις" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Μη Εγκεκριμένο" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Μη Εγκεκριμένο" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Μη επιλεγμένο---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "δεν είναι spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Δεν έχει προσδιοριστεί" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Δεν υπάρχουν αναφορές" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Δεν υπάρχουν αποτελέσματα" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Κλειστό" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Νέα από επίσημες & κεντρικές πηγές" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Ανοιχτό" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Επιλογή" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Προεραιτικό" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Προερατικά" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Οργάνωση" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Οργανώσεις" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Περιγραφή Οργάνωσης" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Ηλεκτρονική Διεύθυνση Οργάνωσης" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Η οργάνωση έχει" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Όνομα Οργάνωσης" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Τηλέφωνο Οργάνωσης 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Τηλέφωνο Οργάνωσης 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Ιστοσελίδα Οργάνωσης" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Αρχικός / -ή" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Αρχική περιγραφή" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Πρωτότυπος Τίτλος" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Άλλοι χάρτες" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Απεσταλμένα" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Εξερχόμενο" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Σελίδα" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Σελίδες" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Περιγραφή σελίδας" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Η σελίδα έχει" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Όνομα page tab" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Όνομα σελίδας" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Υπο-κατηγορία του" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Κωδικός Πρόσβασης" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Επιβεβαίωση κωδικού πρόσβασης" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Ο κωδικός σας έχει αλλάξει επιτυχώς! Συνδεθείτε." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Ξεχάσατε τον κωδικό σας;" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Έλεγξε το email σου για το νέο κωδικό" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Παρέμεινε συνδεδεμένος σε αυτόν τον υπολογιστή." + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Προηγούμενος μήνας" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Προηγούμενος χρόνος" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Σε αναμονή" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "ανά" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Προσωπικές πληροφορίες Προαιρετικά" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Τηλέφωνο" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Φωτογραφίες" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Εικόνες" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Εικόνες και Βίντεο" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Αναζήτησε την τοποθεσία σου χρησιμοποιώντας όνομα τοποθεσίας ή συντεταγμένες - γεωγραφικό πλάτος / μήκος - (μορφή: 38.19, 85.61), ή κάνε κλικ στο χάρτη για να υποδείξεις τη σωστή τοποθεσία." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Αναπαραγωγή" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Σημείωσε" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Ιστοσελίδα για plugin" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Δημόσιο προφίλ" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Διεύθυνση URL του δημόσιου προφίλ" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Προεπισκόπηση" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Προεπισκόπηση" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Προεπισκόπηση μηνύματος" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Προηγούμενο" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Απόρρητο" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Χρώμα Προφίλ" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Το Προφίλ σας έχει αποθηκευτεί" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Γρήγορα στατιστικά" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Βαθμολόγηση" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Ανάγνωση" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Λήψη" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Λήψη από" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Λήψη ειδοποιήσεων" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Πρόσφατες αναφορές" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Ανανέωση της ροής ειδήσεων" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Καταχωρημένο email" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Αφαίρεση" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Απάντηση" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Αναφορά" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Αναφορές (από το χάρτη σε χρονολογική σειρά)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Ανταποκριτής" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Ανταποκριτές" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Ημερομηνία ανταποκριτή" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email ανταποκριτή" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Όνομα ανταποκριτή" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Ο ανταποκριτής έχει " + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP Address ανταποκριτή" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Επώνυμο ανταποκριτή" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Επίπεδο ανταποκριτή" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Επίπεδα ανταποκριτή" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Τηλέφωνο ανταποκριτή" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Αναφορές" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Περιήγηση" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Υποβολή" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Αναφορές από αυτό το χρήστη" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Κατηγορίες" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Αναφορές" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Ημερομηνία" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Περιγραφή" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Οι αναφορές θα μεταφορτωθούν σε μορφή CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Ηλεκτρονική διεύθυνση" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Χαρακτηριστικά" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Εντόπισε μια τοποθεσία κοντά σου" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Όνομα" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Επίθετο" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Όνομα τοποθεσίας" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Σύνδεσμος πηγής είδησης" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Προαιρετικές πληροφορίες" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Μεταφόρτωση φωτογραφιών" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Επιστροφή στη σελίδα Αναφορών" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Διάλεξε μια Πόλη" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Η αναφορά σας έχει προωθηθεί στο προσωπικό μας για ανασκόπηση. Θα σας απαντήσουμε σύντομα αν κριθεί απαραίτητο." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Υποβολή νέας Αναφοράς" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Ώρα" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Χρονολόγιο Αναφορών " + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Τίτλος Αναφοράς" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Σύνδεσμος video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Ανάφερε κάποιο περιστατικό" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Λεπτομέρειες Αναφοράς" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Στέλνωντας μήνυμα στο" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Στέλνωντας ένα ηλεκτρονικό μήνυμα" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Στέλνοντας ένα tweet με το hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Συμπληρώνοντας αυτή την αίτσησ στην ιστοσελίδα μας." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Χρησιμοποιώντας μια εφαρμογή" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Η Αναφορά σου έχει αποθηκευτεί" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Τίτλος Αναφοράς" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Αίτημα για περισσότερες πληροφορίες" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Αίτημα τοποθεσίας" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Προαπαιτούμενο" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Απαιτήσεις" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Ξαναστείλε το email επιβεβαίωσης" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Επαναφορά" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Επαναφορά όλων των φίλτρων" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Επανεκίνηση Κωδικού Πρόσβασης" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Ανάκτηση ονομάτων πόλεων για την επιλεγμένη χώρα" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Λογαριασμοί που διαχειρίζεται η %s υπηρεσία." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Έχετε ήδη ένα λογαριασμό που διαχειρίζεται η CrowdmapID! Δοκιμάστε να χρησιμοποιήσετε CrowdmapID e-mail και τον κωδικό πρόσβασης σας για να συνδεθείτε." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Ρόλος" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Αποθήκευση" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Αποθηκευμένα" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Αποθήκευση & Νέα Προσθήκη" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Αποθήκευση & Κλείσιμο" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Αποθήκευση Αναφοράς" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Χρονοπρογραμματισμός" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Εργαλείο χρονοπρογραμματισμού" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Ημέρα" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Ώρα" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Καταγραφή χρονοπρογραμματισμού" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Λεπτό" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Ημέρα της εβδομάδας" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Αναζήτηση" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Αποτελέσματα Αναζήτησης" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Κωδικός Ασφαλείας" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Επιλογή όλων" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Επίλεξε το είδος πεδίου" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Επίλεξε το είδος φόρμας" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Επιλογή στο χάρτη" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Πολλαπλή επιλογή" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Παρακαλώ επιβεβαιώστε ότι έχετε επιλέξει ένα αντικείμενο" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Διαλέξτε θέμα" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Αποστολή" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Αποστολή Επιβεβαίωσης" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Αποστολή στο" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Αποστολή" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Αποστολέας" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Διεύνση του εξυπηρετητή" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Είδος εξυπηρετητή" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Υπηρεσία" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Όνομα χρήστη υπηρεσίας" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID χρήστη υπηρεσίας" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Μοιράσου" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Διαμοιραζόμενα δεδομένα" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Το διαμοιραζόμενο αρχείο έχει" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Μοιράζομαι" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Κοντύτερος Χάρτης" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Εμφάνιση" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Εμφάνιση όλων" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Εμφάνιση μηνύματος" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Εμφάνιση Αναφορων Από %1$s εως %2$s " + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Ιστοσελίδα" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "διεύθυνση email του site" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Διεύθυνση Site" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Μικρότερος Χάρτης" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Μας συγχωρείς. δεν έχεις κανένα εύσημο." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Πηγή" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Όνομα πηγής" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ταξινόμηση" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ταξινόμηση με" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Ηλεκτρονική διεύθυνση πηγής " + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Ενοχλητικά μηνύματα" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Υποστήριξη SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Από" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Βήμα" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Υπόβαλλε μια Αναφορά" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Υποβλήθηκε από %1$s μέσω %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Υποβολή μέσω SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Στείλε το SMS σου στο" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "στο τηλέφωνό σου" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Επιτυχία!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Εισήχθηκε επιτυχώς" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Επίθετο" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Έρευνα" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Σύστημα" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Ψηλότερος Χάρτης" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Θέματα" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Προεπιλεγμένο θέμα Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Ρυθμίσεις θέματος" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Αυτό" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Σήμερα" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Αυτό το μήνα" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Αυτή την εβδομάδα" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Φέτος" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Αυτό είναι το προφίλ σου." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Χρόνος" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Τίτλος" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "σε" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Σήμερα" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Σήμερα στις" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Ένδειξη" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Συνολικές αναφορές" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Μεταφρασμένο" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Μεταφρασμένη περιγραφή" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Μεταφρασμένος Τίτλος" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Μετάφρασε σε" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Μετάφραση" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Η μετάφραση έχει αποθηκευτεί" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "έμπιστος" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Τύπος" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Το email δεν μπόρεσε να αποσταλεί" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Μη κατηγοριοποιημένες αναφορές" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Μη αναγνωσμένο" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Ανεπιβεβαίωτο" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Ανέβασμα feeds" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Ανέβασμα" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Δείτε τους οδηγούς υποβολής αναφοράς" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Οδηγός Αποστολής με XML " + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Οδηγός Αποστολής με CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Αρχείο για ανέβασμα" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Ανεβάστε Αναφορές" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Οι στήλες Προσαρμοσμένων πεδίων πρέπει να έχουν επισυναπτόμενο το form_id τους σε αυτά. π.χ. Αν το παιδιο ονομαζεται Test, και για την προεπιλεγμένη φόρμα, η ταυτότητα του είναι 1, θα είναι Test-1. Κατά τη διάρκεια της εισαγωγής έθιμο πεδίο φόρμας, βεβαιωθείτε ότι" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Με την παρακάτω φόρμα, μπορείτε να εισαγάγετε τα περιστατικά στη μηχανή Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Οι αναφορές θα πρέπει να υποβάλλονται σε μορφή CSV ή XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Αν το ID του περιστατικού υπάρχει ήδη στη βάση δεδομένων, η εγγραφή του CSV / XML αρχείο θα αγνοηθεί." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Θα πρέπει να περιέχει τουλάχιστον Τίτλο και Ημερομηνία Περιστατικού." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Αν το γεωγραφικό πλάτος και μήκος στήλες δεν παρέχονται, η τοποθεσία θα προσεγγιστεί γεωγραφικά με τη χρήση του Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Αν γίνεται εισαγωγή επιπλέον πληροφοριών όπως προσωπικές πληροφορίες και / ή προσαρμοσμένα πεδία φόρμας" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Τουλάχιστον ένα από τα πεδία προσωπικών πληροφοριών (όνομα, επώνυμο, e-mail) πρέπει να υπάρχει. Άδειες έγγραφες δεν θα εισαχθούν" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Οι καταχωρίσεις σας για dropdown fields, radio buttons και checkboxes ταιριάζουν με τις επιλογές που παρέχονται στο προσαρμοσμένο πεδίο στο παράδειγμα σας" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Οι επιλογές των checkboxes χωρίζονται από ένα κόμμα, π.χ. αν η επιλογή σας είναι ανάμεσα σε μήλα, σταφύλια και μάνγκο, θα πρέπει να είναι \"τα μήλα, τα μάνγκο, τα σταφύλια\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Οι Ημερομηνίες είναι στην ακόλουθη μορφή: ΗΗ/ΜΜ/ΕΕΕΕ π.χ. 3 Οκτωβρίου 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Ένα δείγμα αναφοράς με CSV " + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\", \"λεηλασία\", \"03/18/2009 10:10:00\", \"Άκρα\", \"λεηλασία συμβαίνει παντού\", \"ταραχές, θάνατοι, απώλεια περιουσίας,\", ΝΑΙ, ΟΧΙ, \"5,55\", \"-0,2166667 \"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Ανέβασμα ολοκληρώθηκε " + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Ανεβάστε Βίντεο" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "χρήστης" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Όνομα χρήστη" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Διαχειριστής" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Επιβεβαίωση" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Επιβεβαιωμένες " + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Επιβεβαιωμένες εκθέσεις" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Επιβεβαιώστε" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Επιβεβαιώστε την παρούσα έκθεση" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Έκδοση" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "μέσω" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Βίντεο" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Όψη" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Όψεις" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Προβολή όλων" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Προβολή όλων των feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Προβολή όλων των αναφορών" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Προβολή Αντικειμένων" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Προβολή περισσότερων" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Προβολή Δημόσιου Προφίλ" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Προβολή Αναφοράς" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Προβολή Αναφορών" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Δείτε το βίντεο" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Ορατό" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Αναμονή έγκρισης" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Αναμονή επαλήθευσης" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Ευρύτερος Χάρτης" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Φόρμα web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Βάρος" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ναι" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Χτες" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Το ταμπλό σας" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Το αρχείο σας" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Μεγέθυνση" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Σμίκρυνση" diff --git a/application/i18n/po/po-el/upgrade.po b/application/i18n/po/po-el/upgrade.po new file mode 100644 index 0000000000..0e7439f178 --- /dev/null +++ b/application/i18n/po/po-el/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# mindthecam , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Greek (http://www.transifex.com/ushahidi/ushahidi-v2/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Μη έγκυρη εισαγωγή δεδομένων. Μπορεί να είναι είτε 0 για ΟΧΙ, είτε 1 για ΝΑΙ." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Αυτόματη αναβάθμιση" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Διαθέσιμες ενημερώσεις." + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Συνέχεια" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Αναβάθμιση" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Θα αναβαθμήσω την βάση δεδομένων σου από την έκδοση" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "στην πιο πρόσφατη έκδοση" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Κάνε κλίκ στο κουμπί \"Αναβάθμιση\" και χαλάρωσε όσο κάνω τα υπόλοιπα." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Ακόμα, αν θέλεις αντίγραφο ασφαλείας της βάσης δεδομένων σου, απλά τσέκαρε το παρακάτω κουτάκι και θα το κάνω για σένα στο λεπτό." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Να φτιάξω αντίγραφο της βάσης δεδομένων πριν την αναβάθμιση; (Συστήνεται εμφατικά!)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Αναβάθμιση της βάσης δεδομένων του Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Το Ushahidi αναβαθμίστηκε! Πριν συνεχίσεις, χρειάζεται να αναβαθμίσεις τη βάση δεδομένων στη νεότερη έκδοση (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Η βάση δεδομένων σου βρίσκεται στην τελευταία έκδοση." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Η αναβάθμιση απέτυχε στην πορεία" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Χειροκίνητη αναβάθμιση" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Κατάσταση αναβάθμισης Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Οι παρακάτω οδηγίες αναλύουν πως να κάνεις χειροκίνητα την αναβάθμιση του Ushahidi σου!" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Μεταφόρτωση
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
-Μεταφόρτωσε την πιο πρόσφατη έκδοση του Ushahidi από" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "dt>Δημιουργία αντιγράφου ασφαλείας
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Σε περίπτωση που κάτι πάει στραβά, συστήνεται να κάνεις ένα πλήρες αντίγραφο ασφαλείας του Ushahidi σου.
Αντιγραφή αρχείων
- Εξαγωγή του μεταφορτωμένου συμπιεσμένου αρχείου
- Ανάλογα με το λειτουργικό σύστημα που τρέχει ο εξυπηρετητής web, χρησιμοποίησε το εργαλείο που προτιμάς (πχ Telnet, FPT, SSH) για να μπεις στον εξυπηρετητή και να αντικαταστήσεις το περιεχόμενο όλων των φακέλων με τα νεότερα αρχεία από την πρόσφατη αναβάθμιση.
Αναβάθμιση βάσης δεδομένων
- Πρώτα εντόπισε την έκδοση της βάσης δεδομένων σου κοιτάζοντας στην τιμή της μεταβλητής db_version στον πίνακα με τις ρυθμίσεις ή κοίτα στις πληροφορίες αναβάθμισης του Ushahidi στην κορυφή αυτής της σελίδας
- Εάν είσαι στην έκδοση 25, πρέπει να αναβαθμίσεις από τις 25-26, 26-27, 27-28 κλπ μέχρι το πιο πρόσφατο αρχείο SQL στο φάκελο /sql.
- Με το πρόγραμμα επεξεργασίας βάσης δεδομένων που επιθυμείς αναβάθμισε τη βάση δεδομένων εκτελώντας το κατάλληλο upgradex-x.sql αρχείο.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Βήμα 3: Κοίτα μέσα στο φάκελο sql. Εκτέλεσε χειροκίνητα το αρχείο upgrade-.sql ξεκινώντας από την τρέχουσα έκδοση της βδ της εγκατάστασής σου, μέχρι το τελικό αρχείο αναβάθμισης της sql." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Βήμα 4: Κάνε κλίκ στο κουμπί \"Συνέχεια\" για να αναβαθμίσεις τους απαραίτητους πίνακες." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Για αυτόματη αναβάθμιση, πάτησε το παρακάτω κουμπί." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Χρησιμοποιείς το Ushahidi v%1$s με έκδοση βάσης δεδομένων %2$d η οποία τρέχει σε %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Αναβαθμίζεται" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Για να συνεχίσεις με την εύκολη αναβάθμιση απαιτούνται οι ακόλουθες πληροφορίες για τον εξυπηρετητή FTP, πάνω στον οποίο φιλοξενείται το site σου." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "Όνομα διακομιστή FTP: Παράδειγμα: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP κωδικός πρόσβασης:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP όνομα χρήστη:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Έχετε την τελευταία έκδοση του Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Δεν χρειάζεσαι αναβάθμιση." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Έκδοση βάσης δεδομένων: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Προσοχή: η έκδοση λογισμικού στο version.php και στη βάση δεδομένων δεν είναι συμβατή." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Προσοχή: η έκδοση βάσης δεδομένων στο version.php και στη βάση δεδομένων δεν είναι συμβατή" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Βάση δεδομένων" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Μεταφορτώνεται η τελευταία έκδοση του ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Μεγάλο αρχείο." + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Επιτυχής μεταφόρτωση. Αποσυμπιέζω..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Αποτυχία μεταφόρτωσης." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Επιτυχής αποσυμπίεση των αρχείων. Αντιγράφω τα αρχεία..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Απέτυχε η αποσυμπίεση." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Επιτυχής αντιγραφή αρχείων. Αναβαθμίζω τη βάση δεδομένων..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Αποτυχία αντιγραφής αρχείων." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Επιτυχής αναβάθμιση και αντιγραφή ασφαλείας της βάσης δεδομένων." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Αποτυχής αναβάθμιση της βάσης δεδομένων." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Επιτυχής αναβάθμιση της βάσης δεδομένων." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Διαγραφή μεταφορτωμένων αρχείων..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "Η ΑΝΑΒΑΘΜΙΣΗ ΗΤΑΝ ΕΠΙΤΥΧΗΣ. Δες το Αρχείο καταγραφής συμβάντων" diff --git a/application/i18n/po/po-en_GB/alerts.po b/application/i18n/po/po-en_GB/alerts.po new file mode 100644 index 0000000000..bd205f8cf6 --- /dev/null +++ b/application/i18n/po/po-en_GB/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "The Email field does not appear to contain a valid email address?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "That Email address has already been registered to receive alerts for that location." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "This deployment spans within one country only. Please make sure the alert location is within the country %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "The Mobile Phone field does not seem to contain the right amount of digits." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "That Mobile Phone Number has already been registered to receive alerts for that location." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "The Mobile Phone field does not appear to contain a valid phone. Please input numbers only including Country Code." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "You must enter either your Mobile Phone Number or your Email Address." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "The Mobile Phone field is required if the checkbox is checked." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "You have not set a valid radius on the map." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "You have not set your radius on the map." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "You have not set a recipient for alerts." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "You have subscribed for alerts with the following categories" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "This code has been verified before!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "This verification code was not found! Please confirm that you have the correct URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Your code was verified correctly. You will now receive alerts about incidents as they happen." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "To confirm your alert request, please go to " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Return to the Alerts page to create more alerts" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Your Email Alert request has been created and verification message has been sent to " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Please enter the Email confirmation code you received below: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Your Email Alert Request Has NOT Been Saved!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Your Email Alert Request Has Been Saved!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "The system was not able to process your confirmation request!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Your Mobile Alert request has been created and verification message has been sent to " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Please enter the SMS confirmation code you received on your mobile phone below: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Your Mobile Alert Request Has NOT Been Saved!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Your Mobile Alert Request Has Been Saved!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "This deployment is not set up to correctly process alerts" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "You have received this email because you subscribed to receive alerts. If you do not wish to receive future alerts go to " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "You will no longer receive alerts from " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "We were not able to unsubscribe you. Please confirm that you have the correct URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alerts - verification" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "You will not receive alerts on this location until you confirm your request." diff --git a/application/i18n/po/po-en_GB/auth.po b/application/i18n/po/po-en_GB/auth.po new file mode 100644 index 0000000000..b8ca58cf12 --- /dev/null +++ b/application/i18n/po/po-en_GB/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "The email you entered is not a valid email address." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Sorry, a user account already exists for this email address." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "The email field must be at least 4 and no more 64 characters long." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "The email field is required." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "The name field must be at least 3 and no more 100 characters long." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "The username field contains disallowed characters." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "The password field must be at least 8 characters long." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct email and password." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Please enter the same password in the two password fields." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "The password field is required." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "The current password you entered for your account is incorrect. Please try again." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "The password field must be at least 8 characters long." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct email and password." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Please enter the same password in the two password fields." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "The password field is required." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "There has been an error attempting to log you in." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "The password field must be at least 8 characters long." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct email and password." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Please enter the same password in the two password fields." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "The password field is required." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "The authentication server is down. Please try again later." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "The password confirmation field must match the password field." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "The email you entered is not a valid email address." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Sorry, we do not have your email address" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "The email field is required." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Only a superadmin may modify a superadmin or upgrade a user to admin." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Invalid role format." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "The role field must be at least 5 and no more than 30 characters long." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "You must define at least one role." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "You must select either ADMIN or USER role." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "The forgotten password token is invalid" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Forgotten password token was required" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "The admin user role cannot be modified." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "The public profile URL field must only contain numbers and letters." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Sorry, this public profile URL is already in use." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "The public profile URL field must be at least 2 and no more 100 characters long." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Please check that you entered the correct public profile URL." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "The public profile URL field is required." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "The super admin role cannot be modified." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Possible CSRF attack. Did you really mean to create/edit a user?" diff --git a/application/i18n/po/po-en_GB/bug.po b/application/i18n/po/po-en_GB/bug.po new file mode 100644 index 0000000000..7771beb889 --- /dev/null +++ b/application/i18n/po/po-en_GB/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "The Email field does not appear to contain a valid email address?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "The error field is required." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "The subject field must be at least 3 characters long." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "The subject field is required." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "The name field is required." diff --git a/application/i18n/po/po-en_GB/category.po b/application/i18n/po/po-en_GB/category.po new file mode 100644 index 0000000000..aedfa9eec9 --- /dev/null +++ b/application/i18n/po/po-en_GB/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:55+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "The colour field must be 6 characters long." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "The colour field is required." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "The description field is required." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Please ensure that image uploads sizes are limited to 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "The image field does not appear to contain a valid file" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "The title field must be at least 3 and no more 80 characters long." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "The title field is required." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "You cannot subcategorise a category with subcategories." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "The parent category does not exist." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "The parent category field must be numeric." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "The parent category cannot be a special category" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "The parent category field is required." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "The category and the parent category cannot be the same." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Special categories cannot be subcategorised." diff --git a/application/i18n/po/po-en_GB/comments.po b/application/i18n/po/po-en_GB/comments.po new file mode 100644 index 0000000000..37f13f10e1 --- /dev/null +++ b/application/i18n/po/po-en_GB/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:53+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "You entered the wrong security code." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "The comments field is required." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." diff --git a/application/i18n/po/po-en_GB/contact.po b/application/i18n/po/po-en_GB/contact.po new file mode 100644 index 0000000000..0f6c5518c5 --- /dev/null +++ b/application/i18n/po/po-en_GB/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:46+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "The message field is required." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "The subject field must be at least 3 characters long." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "The subject field is required." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "There was an error sending your message." diff --git a/application/i18n/po/po-en_GB/core.po b/application/i18n/po/po-en_GB/core.po new file mode 100644 index 0000000000..d06eb35eaa --- /dev/null +++ b/application/i18n/po/po-en_GB/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-07-02 21:42+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "config file" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controller" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver for the %s library must implement the %s interface." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "The %s driver for the %s library could not be found." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "You can go to the home page or try again." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Unable to Complete Request" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "helper" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "The requested filetype, .%s, is not allowed in your view configuration file." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Invalid method %s called in %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "The %s property does not exist in the %s class." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "library" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "The log directory is not writable: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi was not able to determine a controller to process this request: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Please set a default route in config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "The page you requested, %s, could not be found." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Report This Issue To Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "The requested %s, %s, could not be found." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "There can be only one instance of Ushahidi per page request." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Uncaught %s: %s in file %s on line %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "view" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "You must set the the view filename before calling render." diff --git a/application/i18n/po/po-en_GB/database.po b/application/i18n/po/po-en_GB/database.po new file mode 100644 index 0000000000..1bb62fdce4 --- /dev/null +++ b/application/i18n/po/po-en_GB/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-02 21:42+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Database error: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." diff --git a/application/i18n/po/po-en_GB/datetime.po b/application/i18n/po/po-en_GB/datetime.po new file mode 100644 index 0000000000..8ba89d7523 --- /dev/null +++ b/application/i18n/po/po-en_GB/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 21:27+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Fri" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Friday" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Mon" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Monday" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sat" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Saturday" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Sun" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Sunday" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Thu" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Thursday" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Tue" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Tuesday" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Wed" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Wednesday" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "January" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "February" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "March" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "May" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "May" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "June" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "July" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "August" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "October" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "December" diff --git a/application/i18n/po/po-en_GB/feeds.po b/application/i18n/po/po-en_GB/feeds.po new file mode 100644 index 0000000000..87521b7b03 --- /dev/null +++ b/application/i18n/po/po-en_GB/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:40+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATE" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Please enter the name of the feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Please enter feed's URL." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Please enter a valid URL, e.g. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "SOURCE" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Title" diff --git a/application/i18n/po/po-en_GB/footer.po b/application/i18n/po/po-en_GB/footer.po new file mode 100644 index 0000000000..6ec5071337 --- /dev/null +++ b/application/i18n/po/po-en_GB/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-02 11:23+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl is not installed on this system." diff --git a/application/i18n/po/po-en_GB/form.po b/application/i18n/po/po-en_GB/form.po new file mode 100644 index 0000000000..df0d6c26f1 --- /dev/null +++ b/application/i18n/po/po-en_GB/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 21:22+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "The default value you have provided for the field is invalid." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "The Field Name must be at least 3 and no more than 200 characters long." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Please enter a value 0 to 50 for the Field Height." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "You have entered an invalid value for Date Field." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Please select Yes or No for the Date Field." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "The Field Name must be at least 3 and no more than 100 characters long." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Please enter Field Name." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "The field name you entered already exists on this form. Please enter another one." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "You have entered an invalid value for Field Required." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Please select Yes or No for Field Required." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Please select a valid Field Type." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Please select a Field Type." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Please enter a value 0 to 300 for the Field Width." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Please enter form's Description." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "The default form cannot be deleted." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Please select which form to add this field to." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Please select which form to add this field to." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "The form name field must be at least 3 and no more than 100 characters long." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Please enter the name of the form." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "A form with that title already exists. Please choose another." diff --git a/application/i18n/po/po-en_GB/imap.po b/application/i18n/po/po-en_GB/imap.po new file mode 100644 index 0000000000..3067022d21 --- /dev/null +++ b/application/i18n/po/po-en_GB/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:45+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Could not open IMAP stream." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "The email service is not supported." diff --git a/application/i18n/po/po-en_GB/installer.po b/application/i18n/po/po-en_GB/installer.po new file mode 100644 index 0000000000..4239185b36 --- /dev/null +++ b/application/i18n/po/po-en_GB/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-05 22:14+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Base Path" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Database" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Database Host" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Database Name" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "The name of the database you want to run Ushahidi in" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "For more information, please check out this article on the wiki that talks about databases in more detail." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Default Language (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Disable" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Enable" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Listed below is a summary of the errors we encountered." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means Ushahidi is installed at the top level directory." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Finished" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "General" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Anyone can get an API key. Get yours now" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Go Back" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "ADVANCED INSTALLATION" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "BASIC INSTALLATION" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Proceed" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Installation Successful" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail Server" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Password" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "The password you normally use to login in to your email" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Type" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Username" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Map" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Map Provider" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Other steps..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Password" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Your database password" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Previous" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Please restart your Apache Server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Enable or disable SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Set up your SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Site Email Address" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Site Alert Email Address" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Site wide email communication will be funnelled through this address" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Site Name" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "The name of your site" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Site Tagline" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Your tagline" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "The files and folders listed below need to be writable by your webserver." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Here are instructions for changing file permissions:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "For the installation process, please have the following bits of information on hand." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Table Prefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Title" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "To login, go to" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Upload report data" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Username" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Your database username" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "and use the following credentials" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "View your website" diff --git a/application/i18n/po/po-en_GB/layer.po b/application/i18n/po/po-en_GB/layer.po new file mode 100644 index 0000000000..ced7fded8c --- /dev/null +++ b/application/i18n/po/po-en_GB/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 21:23+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "The colour field must be 6 characters long." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "The colour field is required." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "The file field does not appear to contain a valid file" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "The name field must be at least 3 and no more 80 characters long." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Either a KML URL or File is required." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "You cannot have both a KML file and a URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-en_GB/libraries.po b/application/i18n/po/po-en_GB/libraries.po new file mode 100644 index 0000000000..ff9ebbd26c --- /dev/null +++ b/application/i18n/po/po-en_GB/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:45+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Could not connect to Akismet server." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "The response from Akismet could not be retrieved." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "The API library: %s for the %s class could not be found. Please check your API task routing table." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Your Akismet API key is not valid." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your Unicode message is too long! (Current length=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Please specify a destination address (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Please specify source address (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your Unicode message is too long! (Current length=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Unsupported sending method!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "The API library %s is invalid. All API libraries must be subclasses of %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s could not be deleted." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Error while extracting: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Downloading the latest Ushahidi failed. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s could not be copied." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s could not be deleted." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi upgrade script" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "The downloaded Ushahidi zip file %s, could not be written." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s is not available in the RiverID class." diff --git a/application/i18n/po/po-en_GB/maintenance.po b/application/i18n/po/po-en_GB/maintenance.po new file mode 100644 index 0000000000..dc65d41bae --- /dev/null +++ b/application/i18n/po/po-en_GB/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:39+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Sorry, our site is currently down for maintenance. Please try again in a few minutes." diff --git a/application/i18n/po/po-en_GB/message.po b/application/i18n/po/po-en_GB/message.po new file mode 100644 index 0000000000..57a2b3015a --- /dev/null +++ b/application/i18n/po/po-en_GB/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:51+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "The comments field is required." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "The phone field is not valid." diff --git a/application/i18n/po/po-en_GB/mhi.po b/application/i18n/po/po-en_GB/mhi.po new file mode 100644 index 0000000000..fb594ecfec --- /dev/null +++ b/application/i18n/po/po-en_GB/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:46+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Please provide a valid email address." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "The message field is required." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "The subject field must be at least 3 characters long." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "The subject field is required." diff --git a/application/i18n/po/po-en_GB/notifications.po b/application/i18n/po/po-en_GB/notifications.po new file mode 100644 index 0000000000..6846a79e0c --- /dev/null +++ b/application/i18n/po/po-en_GB/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:54+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "This message was sent from your website." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Administrator Login" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "A new comment has been submitted to your website in response to:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "New Comment" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "A new email message has been submitted to your website." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "New Email Message" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "A new report has been submitted to your website." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "New Report" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "A new text message has been submitted to your website." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "New Text Message" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "You Have Received a New Alert" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "New Alert!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "You Have Received a Private Message" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "New Private Message" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "To Reply Please Go To: " diff --git a/application/i18n/po/po-en_GB/page.po b/application/i18n/po/po-en_GB/page.po new file mode 100644 index 0000000000..82a4e9dc74 --- /dev/null +++ b/application/i18n/po/po-en_GB/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-02 21:29+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Please enter a Page Title." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Page Title must be at least 3 and no more than 150 characters long." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Please enter a Page Tab Name." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Please enter a Page Description." diff --git a/application/i18n/po/po-en_GB/permissions.po b/application/i18n/po/po-en_GB/permissions.po new file mode 100644 index 0000000000..37d2148c31 --- /dev/null +++ b/application/i18n/po/po-en_GB/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-17 10:19+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "View Reports" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Create/Edit/Delete Reports" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Approve Reports" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verify Reports" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Manage Report Comments" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Download Reports" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Upload Reports" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Manage Messages" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Manage Message Reporters" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "View Stats" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modify Settings" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Manage Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Manage Users" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Manage Roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Can checkin" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Manage checkins" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Access Admin UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Access Members UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Delete all reports" diff --git a/application/i18n/po/po-en_GB/private_message.po b/application/i18n/po/po-en_GB/private_message.po new file mode 100644 index 0000000000..57d9a688df --- /dev/null +++ b/application/i18n/po/po-en_GB/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 21:14+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Parent ID must be numeric" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "The To field is required" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "The user you are try to send a message to does not exist" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "The subject field is required" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Subject must be between 3 and 150 characters" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "The message field is required" diff --git a/application/i18n/po/po-en_GB/report.po b/application/i18n/po/po-en_GB/report.po new file mode 100644 index 0000000000..0acff5c1f7 --- /dev/null +++ b/application/i18n/po/po-en_GB/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-09-21 17:53+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "error!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "This deployment spans within one country only. Please make sure the report location is within the country %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Please enter a valid value for the \"%s\" field." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "The \"%s\" field must be numeric." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "The \"%s\" field is required." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "The \"%s\" field is does not exist." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "The \"%s\" field cannot be edited by your account." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "The \"%s\" field must contain a valid email address." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "The \"%s\" field must contain a valid phone number." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "The \"%s\" field must contain a valid date (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "The \"%s\" field must contain a valid date (DD/MM/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "You must select a download format. Select either CSV or XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Please select a valid format to download your reports in" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "The FROM date field does not appear to contain a valid date." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Please enter a valid FROM date. It cannot be greater than today." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Please enter a valid value for Approve This Report" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Please enter a valid value for Approve This Report" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "The am/pm field does not appear to contain a valid value." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "The \"Categories\" field does not appear to contain a valid category." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "The \"Categories\" field is required." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "The date field is required." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "The \"Description\" field is required." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "The hour field does not appear to contain a valid hour." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "The hour field is required." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "The minute field does not appear to contain a valid value." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "The minute field is required." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "The news source links field does not appear to contain a valid URL." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Please ensure that photo upload sizes are limited to 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "The Upload Photos field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "The Upload Photos field does not appear to contain a valid file." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The \"Report Title\" field must be at least 3 and no more 200 characters long." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "The \"Report Title\" field is required." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Possible CSRF attack. Did you really mean to create/edit a report?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "The video links field does not appear to contain a valid URL." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The latitude field is required. Please click on the map to pinpoint a location." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "The locale field has an incorrect value. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "This report already has a translation for this language." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "The locale field has an incorrect value. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "The Original Report and the Translation have the same locale (language)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "The locale is required." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The \"Location Name\" field must be at least 3 and no more 200 characters long." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "The \"Location Name\" field is required." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The longitude field is required. Please click on the map to pinpoint a location." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "The email field does not appear to contain a valid email address." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "The email field must be at least 4 and no more 64 characters long." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "The first name field must be at least 3 and no more 100 characters long." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "The last name field must be at least 2 and no more 100 characters long." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "The TO date field does not appear to contain a valid date." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Please enter a valid TO date. It cannot be greater than today." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Your FROM date cannot be greater than your TO date." diff --git a/application/i18n/po/po-en_GB/reporters.po b/application/i18n/po/po-en_GB/reporters.po new file mode 100644 index 0000000000..3eeb2d2ab1 --- /dev/null +++ b/application/i18n/po/po-en_GB/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-02 11:22+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The latitude field is required. Please click on the map to pinpoint a location." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "The location name field must be at least 3 and no more 200 characters long." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "The location name field is required." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The longitude field is required. Please click on the map to pinpoint a location." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Invalid Reporter" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Invalid Reporter" diff --git a/application/i18n/po/po-en_GB/reports.po b/application/i18n/po/po-en_GB/reports.po new file mode 100644 index 0000000000..5b1fc33ab1 --- /dev/null +++ b/application/i18n/po/po-en_GB/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 21:15+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Please verify that you have checked an item" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Please verify that you have checked an item" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Reports must be categorised before they can be approved" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "You do not have permission to perform this action" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "You must select a file to upload" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "The upload file must either be of .csv or .xml format" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "The file upload field does not seem to contain a valid file" diff --git a/application/i18n/po/po-en_GB/roles.po b/application/i18n/po/po-en_GB/roles.po new file mode 100644 index 0000000000..52fccc1141 --- /dev/null +++ b/application/i18n/po/po-en_GB/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-02 11:22+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "The Description field must be at least 3 and no more 100 characters long." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "The Description field is required." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "The Name field must only contain letters or numbers." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "The Name field must be at least 2 and no more than 30 characters long." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin Role Cannot Be Modified." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "The Name field is required." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level field must be a number between 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level field must be a number between 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Permissions field must be a number between 0 - 100." diff --git a/application/i18n/po/po-en_GB/settings.po b/application/i18n/po/po-en_GB/settings.po new file mode 100644 index 0000000000..19b8023640 --- /dev/null +++ b/application/i18n/po/po-en_GB/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Andi Chandler , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-04-10 09:59+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "The allow comments field does not appear to contain a valid value." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "The allow comments field is required." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "The include feed field is required." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "The include feed category field does not appear to contain a valid value." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "The include feed category field is required." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "The allow alerts field does not appear to contain a valid value." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "The allow alerts field is required." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "The allow reports field does not appear to contain a valid value." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "The allow reports field is required." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "The stat sharing field is required." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default number of records to be fetched per API request" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum number of records to be fetched per API request" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum number of API requests per IP address" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "The Site Banner field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Please ensure that \"Banner Image\" size is less than 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "The \"Banner Image\" field does not appear to contain a valid file." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "The cache pages field is required." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "The cache pages field does not appear to contain a valid value." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "The cache pages lifetime field does not appear to contain a valid value." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "The cache pages lifetime field is required." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs (without \"index.php\" in the URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Enable Clean URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "The Clickatell API number field must be no more 20 characters long." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "The Clickatell API number field is required." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "The Clickatell Password field must be at least 5 and no more 50 characters long." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "The Clickatell Password field is required." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "The Clickatell Username field must be no more 50 characters long." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "The Clickatell Username field is required." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configure Map" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Default Location" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "The colour feed field does not appear to contain a valid value." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "The colour field must be no more 6 characters long." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "The colour field is required." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Default Map View" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Default Zoom Level" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Retrieve Cities From Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "The Mail server port field should contain numbers only." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "The Mail Server Password field must be at least 5 and no more 50 characters long." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "The Mail Server Password field is required." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "The Mail server port field should contain numbers only." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "The Mail Server Type field is required." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "The Mail Server Username field must be no more 50 characters long." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "The Mail Server Username field is required." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Facebook Setup Options" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "To get the information below you will need to create a new Facebook application at" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "These settings allow users to login via Facebook, this does not create a facebook application for your deployment" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "The Google Analytics field must contain a valid Web Property ID in the format UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Enable HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "This option makes Ushahidi be accessed in unsecure mode; without \"https://\" in the URL prefix" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "This option makes Ushahidi be accessed in secure mode; with https in the URL prefix" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "The items per page (Frontend) field is required." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "The items per page (Admin) field is required." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoom Level" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Select a Map Provider" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Enter the new API Key" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Get an API Key" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight-forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Map provider" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Map Timeline" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Map Settings" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Deployment span multiple countries?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Please select a default country" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Click and drag the map to set your exact location" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Cluster Reports on Map" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Allow Users to Submit Comments to Reports" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Include RSS News Feed on Website" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Create New Category from Feeds" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Allow Users To Subscribe For Alerts" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Allow Users To Submit Reports" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet Key" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Site Banner" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocks Per Row" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache Pages" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Cache Pages Lifetime" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Enable Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Site Copyright Statement" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Default Colour For All Categories" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Default Icon For All Categories" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Delete Banner Image" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Delete Default Icon" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Display Contact Page" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Display \"How to Help\" Page" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Alerts Email Address" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "In order to receive reports by email, please configure your email account settings." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Site Email Address" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Items Per Page - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Items Per Page - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica Credentials" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica Site " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Site Language" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Manually Approve Users" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Site Message" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Site Name" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Private Deployment" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Require User Email Confirmation" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Submit Report Message" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Enable Statistics (Stored on Ushahidi's server)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Site Tagline" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Timezone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Site Settings" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter Search Terms" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Separate with commas " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Feeds geolocation - Geonames username" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "The site email field must be at least 4 and no more 100 characters long." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "The site name field must be at least 3 and no more 50 characters long." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "The site name field is required." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "The tagline field must be at least 3 and no more 100 characters long." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "The tagline field is required." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Your Clickatell API Number" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Check Your Clickatell Credit Balance" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Load Credit Balance" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Your Clickatell Password" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Sign up for Clickatells service by clicking here" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Enter your Clickatell access information below" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Your Clickatell User Name" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS is free and open source software that enables users to send and receive text messages with large groups of people through mobile phones. Click on the box below to download the latest version from FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Download and install FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Detailed instructions on how to send SMS from your FronlineSMS installation are available here. The URL and API Key below are required to set up the sync with FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Copy and paste this into the FrontlineSMS \"Address\" field" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Connecting FrontlineSMS to this Ushahidi deployment" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Enter phone number(s) connected to Frontline SMS in the field(s) below" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Enter the number without any + or dashes below" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Option 1: Use Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Use a Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS Setup Options" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "The phone 1 field should contain numbers only." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "The phone 2 field should contain numbers only." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "The phone 3 field should contain numbers only." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Twitter Setup Options" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "To get the information below, set up your deployment as a new Twitter application at" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Consumer Key" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Consumer secret" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Access Token" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Access Token Secret" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Test settings" diff --git a/application/i18n/po/po-en_GB/sharing.po b/application/i18n/po/po-en_GB/sharing.po new file mode 100644 index 0000000000..789c62629f --- /dev/null +++ b/application/i18n/po/po-en_GB/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:40+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Ingress date" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Date Added" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Last Access" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "The colour field must be 6 characters long." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "The colour field is required." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "The Sharing name does not appear to be valid." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "A Sharing name is required." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "The site URL already exists." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "The site URL does not appear to be valid." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "The site URL is required." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "The site URL field does not appear to contain a valid URL." diff --git a/application/i18n/po/po-en_GB/stats.po b/application/i18n/po/po-en_GB/stats.po new file mode 100644 index 0000000000..ec434e3e23 --- /dev/null +++ b/application/i18n/po/po-en_GB/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-01 17:54+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Approved" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categories" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Category Impact" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Choose a date range." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Countries" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Country" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Country Breakdown" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Error" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossary" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Hit Summary" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legend" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pageviews" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "The total number of pages that visitors have viewed on your site" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Reports" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Reports Categories" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Reports Statistics" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Reports Status" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Report Punchcard" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Report Stats" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Stats Not Set Up" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Month" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Months" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Months" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "All" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Unapproved" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Unique Visitors" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plug-ins, OS, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Unverified" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verified" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Visitor Summary" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visits" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." diff --git a/application/i18n/po/po-en_GB/tooltips.po b/application/i18n/po/po-en_GB/tooltips.po new file mode 100644 index 0000000000..536a593df9 --- /dev/null +++ b/application/i18n/po/po-en_GB/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Andi Chandler , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-11-26 13:09+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Approves a report or not. If approved, it will show up publicly." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instance, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Body of the email that will be sent." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Subject of email that will be sent." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"all\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for Twitter messages from a particular user, enter their username here (not including @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions \"love\" or \"peace\" in their message, you will want to add \"love, peace\" in the keywords box." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select \"specific area\" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "This is the default title to add to the report." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "If you select \"Triggering User\", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"anyone\" since most triggers are set up for all users interacting with the system" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marks a report as verified or not." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separate each value with a comma, e.g. value1, value2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Start typing to list members." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Private message subject" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Private message" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "You can select a colour that will show up under your profile picture on your public profile. This colour will also be the colour dot that shows up on the map for your check-ins." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Your email address" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "This is one of the ways that you are identified on the website. Keep in mind that this is public!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "If set, this will be your new password. Leave this field blank if you wish to keep your current password." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Selecting YES lets you get alerts via email when new reports or comments are posted on your website." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Your current password. We require you enter your password to prevent any unauthorised changes to your account." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you've submitted, your check-ins, badges, etc all on one page." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "This is the address where your public profile can be found." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Your username cannot be changed." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "This is the email address that will be used to send email alerts." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Allow users to subscribe for alerts via the web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "This allows bundling of similar reports into a single dot on the map" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Allow users to comment on reports on the main site." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "This allows RSS News feeds to be displayed on the main site." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "This allows creating new Category from RSS News feeds." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Allow users to submit information via the web form." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default number of records to be fetched per API request" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum number of records to be fetched per API request" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum number of API requests per IP address" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Number of Block columns that will be displayed on each row." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Set the lifetime of the cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "This setting enables check-ins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Set the map to cover a specific location." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Set one colour code for all the categories on the site." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Set one icon for all the categories on the site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "This is the country the site is being deployed." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Turn the Contact Tab on or off on the main site." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Turn the How to Help Tab on or off on the main site." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "This is the number of reports displayed per page on the main site." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "This is the number of reports displayed per page on the admin Back End." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "This is the hub for incoming messages." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "This synchronises the messages in the hub with the Ushahidi platform." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Phone numbers through which the text messages are received." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Tracks visitors of your site. Get detailed visitor statistics." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Sets the language that will be used in the site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "This defines which map is to be used on the site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "This shows the timeline based on the date and time reports were submitted" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "This is where the emails reside" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "This is the password for the email address that receives reports." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "This is required to accept incoming connections from the email address." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "This is required to enhance a secure connection." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "This is required to retrieve e-mails from the host server." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "This is the email address that receives reports." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "This is the email address that will receive email reports and messages from the contact form." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "This is the name of the site that appears at the top of the main site." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "In a few words, explain what this site is about." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilise time and date, as well as the default current time for reports on the front and back end of the site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Set the Twitter hashtag that will be used on a tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "If you want to geocode your feed entries, grab a user http://geonames.org, enable the free webservices and enter it here. Leave empty to disable this function.

Beware of the the use limits!" diff --git a/application/i18n/po/po-en_GB/ui_admin.po b/application/i18n/po/po-en_GB/ui_admin.po new file mode 100644 index 0000000000..d126168401 --- /dev/null +++ b/application/i18n/po/po-en_GB/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-17 10:18+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Access denied. Either your credentials are not valid or your request has been refused." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Access denied. Your request has been understood, but denied due to access limits like time. Try back later." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Access Level" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Add to Category" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "added" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "added/edited" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Addons" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alerts" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alerts Received" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "All" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonymous" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Anyone" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Anywhere" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Banned" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Logs" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Settings" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "UNBAN" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "UNBAN ALL" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "approved" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Auto Approve" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Manually Approve" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archived" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Are you sure you want to" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Are you sure you want to delete this item?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Are you sure you want to delete this photo?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Are you sure you want to switch forms?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Assign" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Assignments" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Assign Badge" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Author" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Author email" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Back" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Ban IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Between Times" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocks" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Body" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancel" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categories" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Error displaying chart" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Please make sure your message is valid." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Please make sure the number is valid." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Please check your SMS settings!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Checkin Details" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Cities loaded" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "code" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Code version out of sync." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Colour" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comments" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Your alerts confirmation code is: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "The User Has Been" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Count" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Country Not Found" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "created/edited" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Create a Report" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Critical Upgrade" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Currently Active" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Currently Inactive" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "You do not have sufficient permissions to edit the following custom fields." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Daily" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Dashboard" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "database" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Date & Time" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Date Added" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Date Modified" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Days of the week" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB version out of sync." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "deleted" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Delete" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Delete all reports" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Delete Badge" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Description" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Disabled" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Divider Start" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Divider End" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Download Reports" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Dropdown Choices" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITED" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Edited By" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Edit" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Edit Log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Entire Collective" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Error in geocoding! HTTP error" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP Library is not installed" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Incorrect Credentials" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Error" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, unable to post incident" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Every Six Hours" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Every Twelve Hours" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQs" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "List of Choices" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Default Value" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Data Type" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numeric" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Free Text" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Height (In Rows)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Hidden Field" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maximum Character Length" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Field Name" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Toggle" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "No" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Yes, Closed by default" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Yes, Open by default" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Could not find uploaded file" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Could not open file for reading" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "That Form Does Not Exist!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Text Area Field (Free Text)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Date Field" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Radio Buttons Field" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Checkboxes Field" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Dropdown Field" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "From" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "From" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonames Timeout Error" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Get Help" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Get more themes" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Get more plug-ins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Add/Edit" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Manage Users" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Role" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "User" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "help" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Hourly" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Incident feed for" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "The installer folder still exists. Delete the installer folder. It is a potential security vulnerability." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instance" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instances" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Instance Details" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Invalid Parameter" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP Address" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Is this a Date Field?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Who Can View Answers" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Who Can Submit Answers" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Keyword" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Keywords" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email Address:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Full Name:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Password:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Role:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Username:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Layers" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Logout" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Manage" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Manage Roles & Permissions" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "View Users" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Add/Edit Users" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Manage Your Public Listing" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Mark As" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marked as not spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marked as spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "did not match any documents" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Message" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Messages" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica Messages" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter Messages" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Your message has been sent!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minute" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutes" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Missing Parameter" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modified" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modify Timezone Setting" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "move down" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "move up" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Multiple Hosted Instances" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "My Alerts" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "My Check-ins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "My Profile" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "My Reports" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votes Cast" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positive" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negative" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Name" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Create New Alert" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Create New Message" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "New Password" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "No" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "This is a special category that will not show up on the report submission form for users submitting reports. This is used to hold reports left without categories(uncategorised reports) as a result of category deletion." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notification" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "This is not case sensitive." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Not Found" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "No data. There are no results to show." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "No Error" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "No Results To Display!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "of" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "On Specific Count" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "page" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "pages" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Page Not Found" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Sorry, the page you are trying to view is not here.

Did you follow a link from somewhere else on our site?
If you reached this page from another part of our site, please contact us so that we can correct our mistake.

Did you follow a link from another site?
Links from other sites can sometimes be outdated or misspelled. Tell us where you came from and we can try to contact the other site in order to fix the problem.

Did you type the URL?
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalisation, etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Sorry, the page you are trying to view is not here." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parameters Used" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Password" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Password Reset" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Dear" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "We received a request to reset the password for" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "To change your password, please click on the link below (or copy and paste it into your browser)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "As you requested, your password has now been reset. Your new details are as follows" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi password reset" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Phone" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Please Select" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Data was not sent by post method" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Preview" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Message" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Private Messages" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Private Message Sent" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Subject" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "To" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Public Listing" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Qualifiers" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "read" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevance" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Report Title" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Report Date" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporters" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Reporter Levels" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Reports" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Reputation Score" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Required" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Response" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Results" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revoke" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "This email already has an account managed by CrowdmapID. The user will need to use their existing Crowdmap password to login." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Save Settings" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Search" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Search Reports" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "searching for" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "The encryption key is still set to the default value. This is insecure and must be changed." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "This site being served over HTTP. This should be set to HTTPS for increased security." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instructions are available on the wiki: " + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Select your desired reports download format:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Select A Field Type ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Please select an item" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "You must select a Trigger before you can select a Response." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "You must select a Trigger before you can define Qualifiers." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Sender" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Send To" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "This message was sent from your website at " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Server Time" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Settings" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Showing page" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Showing results" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "shown" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Special Category" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "This is a special category that will not show up on the report submission form for users submitting reports. This is used in conjunction with the \"Trusted Reporters\" feature." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Specific Area" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "State" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistics" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Stats" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Stat collection failed! Please try again later." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Stat Collection Failed!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Specific Days" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Subject" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Task Performed" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Text Field" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Name" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Manage Users" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Timeout Error" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "to" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Total Records" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "to" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Translate Reports" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Triggering User" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Triggers" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "unapproved" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Unknown" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Unknown Failure" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "unread" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "You will no longer receive alerts from" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Click here to upgrade now" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Upgrade Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Upgrade Ushahidi Status" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Upload Reports" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "User" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Users" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verified/Unverified" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verify/Unverify" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Version" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " is available for upgrade." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Video Encoding" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Private Messages" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "View Site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "View Report" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Welcome, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Yes" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Your search for" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Clicking the button below will delete ALL reports on the database. You should use this with caution as this operation cannot be undone." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "We recommend you backup your database before proceeding" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "I'm sure I want to delete all %s report(s) from the database." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Are you sure you want to delete all reports?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "There are no reports to be deleted." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Number of logins" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Last login" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Confirmed account?" diff --git a/application/i18n/po/po-en_GB/ui_main.po b/application/i18n/po/po-en_GB/ui_main.po new file mode 100644 index 0000000000..572efbb8fc --- /dev/null +++ b/application/i18n/po/po-en_GB/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# Andi Chandler , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-11-26 13:09+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "About " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Access" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Access Limits" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Account Name" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Actions" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "This action cannot be undone. Are you sure you want to continue?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activate" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Active" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Add" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Added By" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Additional Data" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Additional Reports" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Add/Edit" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Add a Field" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Add Language" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Add New" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Add New Category" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Add Translation" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administration" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Get Alerts" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alert me if a report is filed in, or around:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Save My Alert" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email address:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "enter email address" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "enter mobile number with country code" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Get Alerts" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Alert has been" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobile phone:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Or place a spot on the map below, and we will alert you when a report is submitted within 20 kilometres." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "If you cannot find your location, please click on the map to pinpoint the correct location." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (copy the URL below)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Select a city" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Step 1: Select your city or location:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Step 2: Send alerts to my:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Step 3 (Optional): Select Categories" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirm A Previous Alert Request" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Your Alert Has Been Saved!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "All" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Allowed" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Allowed HTML tags: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes are only allowed from: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "All Categories" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "All Time" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "and" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Approve" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Approved" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Approved Reports" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Approve this Report" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Approximate" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archive" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archived" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascending" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "at" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Author" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Auto" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Avg Reports Per Day" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Awaiting Approval" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Awaiting Verification" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Badge" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Badges" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Badge Image" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Or you can upload your own badge image instead." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Badge Pack" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Select a Badge" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Browse Profiles" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancel" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categories" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Category" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Category Filter" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "The category has been " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Category Name" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Change Date Range" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Change Password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Change My Picture" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Choose a" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Choose data points to download" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Or choose your own date range" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Choose field type" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Clear" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Clear Map" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Close" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "clusters" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Colour" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comment" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comments" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Comment Details" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Your Settings Have Been Saved!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configure" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "You have successfully confirmed your email address! Please login below." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "You have successfully confirmed your email address! An administrator must approve your account before you login" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Email confirmation failed! You can request a new email confirmation below." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contact Us" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Security Code" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Your Email Address" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Message" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Your Message Has Been Sent!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Your Name" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Your Phone Number" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Send Message" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Message Subject" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Create" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Create/Edit" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Create New" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Create New Password" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Create Report" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibility" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Current Password" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Custom Fields" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Information" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Date" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Date & Time" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "day" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "Daily" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deactivate" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Delete" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Deleted" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Deletes" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Delete Disabled" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Delete Last" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Delete this Report" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Delete Selected" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Delete Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Description" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descending" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Details" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Direct Report" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Disabled" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Unapprove" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Download Reports" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Download" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Edit" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Edit Form Fields" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Edit Report" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Email Address" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Mail Server Settings" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Password" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Mail Server SSL support" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Type" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Username" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "so your settings have to be associated with this email address" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "In order to receive reports by email, please input your email account settings below. Please note that emails will be received at your" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Some servers require a complete email address" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Email account password" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Examples: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Enable or disable SSL connections" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---EMPTY---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "to" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Error!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Example" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "External Apps" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "External Video Link" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Provide Feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Please give us feedback about your experience by sending an email to " + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "The feed has been" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Feed Items" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Feed Name" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Feed URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Unused field" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "File" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Your file is over the maximum allowed filesize." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filters" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filter Reports" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filter Reports By" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filter reports that contain" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Find" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Find Location" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "First Name" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Scheduler" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Form" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Forms" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Form Description" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Edit this Form" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "The form has been" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Form Title" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "From" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Full Name" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation Available" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Colour" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comments" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Label" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Stroke Width" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Go" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Has Been" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "How to Help" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Hidden" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Hide" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "hide this message" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Home" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "Hourly" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "How to Report" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Used to identify you on the site to other users." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Image" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Images" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Image/Icon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactive" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Inbox" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incident" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidents Nearby" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Incident Location" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Include" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Include Categories" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Include Custom Fields" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Include Description" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Include as much detail as possible" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Include Latitude" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Include Location Information" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Include Longitude" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Include Personal Information" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Incoming Media" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Information Evaluation" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Enter your precise location" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Your account doesn't have the proper permission to fully log you in. Please contact the administrator." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Interval" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "In response to" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Address" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Is this your profile?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "item" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "items" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item_details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Item Title" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Key" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Keywords" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML File" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Upload KMZ/KML File" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Language" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Last" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Last Month" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Last Name" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Last Year" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitude" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Layers" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Other Layers" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "The Layer Has Been" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Layer Name" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Layer URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Leave a Comment" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Less Information" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Level" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "This level has been" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Level Name" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limited" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "List" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Loading Reports" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Location" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Locations" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "City, State and/or Country" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Account created successfully. You may log in now." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "A confirmation has been sent to your email address." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Account created. Your account must be approved by an admin before you can login." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Email address doesn't exist. Try a different address or create an account." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Please click your account provider" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Login with" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email and Password" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Sign Up" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Create an Account" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Thank you for signing up at %1$s. To confirm your email address, please go to the following URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Signup Confirmation" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "An new user has signed up at %1$s. To approve their registration please go to the following URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "New User Approval" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Your user account has been approved for %1$s. To login go to the following URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "User account approved" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Create an account now to take advantage of more features on the site." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitude" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Map" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Mark as Read" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Mark as Unread" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximum filesize" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Media Filter" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Members" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Manage Your Account" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Message" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Messages" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Message Details" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Message from a non-numeric source:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobile" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modify" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modify Date" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "month" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "Monthly" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "More" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "More Information" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Name" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Nearby Report" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "New" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "News" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "News Feeds" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "News Source" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "New Category" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "New Password" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "New Report" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Next" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "No" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "No checkins to display." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "No data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "None" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notices" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Not Approved" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Not Approved" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Not Selected---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "not spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Not Specified" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "There are no reports" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "There are no results" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Off" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Official & mainstream news" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "On" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Option" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Optional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Options" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organisation" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organisations" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Organisation Description" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Organisation Email" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "The Organisation Has Been" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Organisation Name" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Organisation Phone 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Organisation Phone 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Organisation Website" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Original Description" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Original Title" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Other Deployments" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Outbox" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Outgoing" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Page" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Pages" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Page Description" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "The Page Has Been" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Page Tab Name" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Page Title" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Parent Category" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Password" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verify Password" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Password changed successfully! Login below." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Check your email for the new password." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Stay logged in on this computer?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Past Month" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Past Year" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pending" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Personal Information Optional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Phone" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Photos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Pictures" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Pictures and Videos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Play" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Please Note" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugin Website" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Public Profile" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Public Profile URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Preview" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Preview Item" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Preview Message" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Previous" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Private" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profile Colour" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Your Profile Has Been Saved" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Quick Stats" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Rating" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Read" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Receive" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Receive from" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Receive Notifications" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Recent Reports" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Refresh News Feeds" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registered Email" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Remove" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Reply" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Report" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Reports (from the map, listed in chronological order)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Reporter" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Reporters" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Reporter Date" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Reporter Email" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Reporter First Name" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "The Reporter Has Been" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Reporter IP Address" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Reporter Last Name" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Reporter Level" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Reporter Levels" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Reporter Phone" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Reports" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Browse" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Submit" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Reports By This User" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categories" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Reports" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Date" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Description" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Reports will be downloaded in CSV format" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Features" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Find a location near you" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "First Name" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Last Name" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Location Name" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "News Source Link" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Optional Information" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Upload Photos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Return to the reports page" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Select a City" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Your Report has been submitted to our staff for review. We will get back to you shortly if necessary." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Submit a New Report" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Time" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Reports Timeline" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Report Title" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Video link" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Report an Incident" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Report Details" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "By sending a message to" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "By sending an email" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "By sending a tweet with the hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "By filling this form on our website." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "By using an app" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Your Report Has Been Saved" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Report Title" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Request more information" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Request location" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Required" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requirements" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Resend Confirmation Email" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Reset all filters" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Reset Password" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Retrieve city names for the selected country" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Accounts managed by the %s service." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Role" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Save" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Saved" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Save & Add New" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Save & Close" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Save Report" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Schedule" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Scheduler" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Day" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hour" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Scheduler Log" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minute" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Day of the Week" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Search" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Search Results" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Security Code" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Select All" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Select a Field Type" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Select A Form Type" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Select in the map" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Select as many as needed" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Please verify that you have checked an item" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Select Theme" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Send" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Send Confirmation" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Sending To" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Sent" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Sent by" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Server address" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Server type" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Service" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Service Username" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Service User ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Share" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Shared data" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "The share has been" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Sharing" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Shorter Map" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Show" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Show all" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Show Messages" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Showing Reports From %1$s to %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "site email address" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Site URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Smaller Map" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Sorry, you do not have any badges." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Source" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Source name" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sort" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sort By" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Source URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL Support?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "From" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Step" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Submit a Report" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Submitted by %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Submit via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Send your SMS to" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "on your phone" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Success!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Succesfully imported" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Surname" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Survey" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "System" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Taller Map" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Themes" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Default Ushahidi Theme" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Theme Settings" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "This" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Today" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "This Month" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "This Week" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "This Year" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "This is your profile." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Time" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Title " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "to" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Today" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Today at" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Total Reports" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Translated" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Translated Description" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Translated Title" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Translate to" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Translation" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Translation has been saved" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Trusted" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Type" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Unable to send email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Uncategorised Reports" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "unread" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Unverified" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Update feeds" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Upload" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "View our report upload guides:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML Upload guide" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV Upload guide" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "File to upload" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Upload Reports" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "With the form below, you can import incidents into the Ushahidi engine." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Reports must be uploaded in either CSV or XML format." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "When incident ID already exists in the database, the entry in the CSV/XML file will be ignored." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "It must contain at least Incident Title and Incident Date." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "If importing additional info i.e personal information and/or custom form fields" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "At least one of the personal information fields(name, surname,email) entries MUST exist. Empty records will not be imported" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Your entries for dropdown fields, radio buttons and checkboxes match the options provided for the custom field on your instance" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Checkbox options are separated by a comma e.g if your selected choice of fruits is apples,mangoes and grapes, your entry for this should be \"apples,mangoes,grapes\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Date field values are in the following format: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "A Sample CSV Report" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Upload Successful" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Upload Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "User" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Username" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Admin" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verification" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verified" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Verified Reports" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verify" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verify this Report" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Version" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "View" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Views" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "View All" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "View all feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "View all reports" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "View Items" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "View More" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "View Public Profile" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "View Report" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "View Reports" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "View Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Waiting Approval" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Waiting Verification" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Wider Map" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web Form" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Weight" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "Weekly" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Yes" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Yesterday" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Your Dashboard" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Your file" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zoom In" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zoom Out" diff --git a/application/i18n/po/po-en_GB/upgrade.po b/application/i18n/po/po-en_GB/upgrade.po new file mode 100644 index 0000000000..bd18ed0656 --- /dev/null +++ b/application/i18n/po/po-en_GB/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Andi Chandler , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 21:00+0000\n" +"Last-Translator: Andi Chandler \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/ushahidi/ushahidi-v2/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Invalid input data. It can either be 0 for No or 1 for Yes." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatic Upgrade" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Available Updates" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continue" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Upgrade" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "So, I'm going to upgrade your database from version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "to the newest database version" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Click on the \"Upgrade\" button and just chillax as I perform the magic." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Backup database before upgrade? (Highly recommended)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi database upgrade" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Your database version is up to date." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Upgrade failed at some point" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Manual Upgrade" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi upgrade status" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "The instructions below detail how to manually upgrade your Ushahidi deploymentl" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Download
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Download the most recent Ushahidi build from" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current DB version of your install through to the final SQL upgrade file." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "For automatic upgrade, click on the button below." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "You are currently using Ushahidi v%1$s with database version %2$d running on %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Upgrading" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Example: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Password:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP User Name:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "You have the latest version of Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "You do not need to upgrade." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Database version: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Warning: Software version in version.php and database do not match." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Warning: Database version in version.php and database do not match." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Database:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Downloading latest version of ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log File" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Successfully Downloaded. Unpacking..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Failed downloading." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Successfully Unpacked. Copying files..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Failed unpacking." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Successfully Copied. Upgrading Database..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Failed copying files." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Database backup and upgrade successful." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Failed backing up database." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Database upgrade successful." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Deleting downloaded files..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "UPGRADE SUCCESSFUL. View Log File" diff --git a/application/i18n/po/po-en_US/alerts.po b/application/i18n/po/po-en_US/alerts.po new file mode 100644 index 0000000000..7b90ee9fca --- /dev/null +++ b/application/i18n/po/po-en_US/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "The Email field does not appear to contain a valid email address?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "That Email address has already been registered to receive alerts for that location." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "This deployment spans within one country only. Please make sure the alert location is within the country %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "You have not selected a valid location on the map." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "The Mobile Phone field does not seem to contain the right amount of digits." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "That Mobile Phone Number has already been registered to receive alerts for that location." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "The Mobile Phone field does not appear to contain a valid phone. Please input numbers only including Country Code." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "You must enter either your Mobile Phone Number or your Email Address." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "The Mobile Phone field is required if the checkbox is checked." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "You have not set a valid radius on the map." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "You have not set your radius on the map." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "You have not set a recipient for alerts." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "You have subscribed for alerts with the following categories" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "This code has been verified before!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "This verification code was not found! Please confirm that you have the correct URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Your code was verified correctly. You will now receive alerts about incidents as they happen." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "To confirm your alert request, please go to " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Return to the Alerts page to create more alerts" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Your Email Alert request has been created and verification message has been sent to " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Please enter the Email confirmation code you received below: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Your Email Alert Request Has NOT Been Saved!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Your Email Alert Request Has Been Saved!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "The system was not able to process your confirmation request!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Your Mobile Alert request has been created and verification message has been sent to " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Please enter the SMS confirmation code you received on your mobile phone below: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Your Mobile Alert Request Has NOT Been Saved!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Your Mobile Alert Request Has Been Saved!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "This deployment is not set up to correctly process alerts" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "You have received this email because you subscribed to receive alerts. If you do not wish to receive future alerts go to " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "You will no longer receive alerts from " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "We were not able to unsubscribe you. Please confirm that you have the correct URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alerts - verification" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "You will not receive alerts on this location until you confirm your request." diff --git a/application/i18n/po/po-en_US/alerts.pot b/application/i18n/po/po-en_US/alerts.pot new file mode 100644 index 0000000000..edb955b217 --- /dev/null +++ b/application/i18n/po/po-en_US/alerts.pot @@ -0,0 +1,203 @@ +#. extracted from en_US/alerts.php, en_US/alerts.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "That Email address has already been registered to receive alerts for that location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "This deployment spans within one country only. Please make sure the alert location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "That Mobile Phone Number has already been registered to receive alerts for that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "The Mobile Phone field does not appear to contain a valid phone. Please input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "This verification code was not found! Please confirm that you have the correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid " Your code was verified correctly. You will now receive alerts about incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "Your Email Alert request has been created and verification message has been sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "Your Mobile Alert request has been created and verification message has been sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "Please enter the SMS confirmation code you received on your mobile phone below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "You have received this email because you subscribed to receive alerts. If you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "We were not able to unsubscribe you. Please confirm that you have the correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "You will not receive alerts on this location until you confirm your request." +msgstr "" + diff --git a/application/i18n/po/po-en_US/auth.po b/application/i18n/po/po-en_US/auth.po new file mode 100644 index 0000000000..23450fd470 --- /dev/null +++ b/application/i18n/po/po-en_US/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "The email you entered is not a valid email address." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Sorry, a user account already exists for this email address." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "The email field must be at least 4 and no more 64 characters long." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "The email field is required." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "The name field must be at least 3 and no more 100 characters long." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "The username field contains disallowed characters." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "The password field must be at least 8 characters long." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct email and password." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Please enter the same password in the two password fields." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "The password field is required." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "The current password you entered for your account is incorrect. Please try again." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "The password field must be at least 8 characters long." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct email and password." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Please enter the same password in the two password fields." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "The password field is required." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "There has been an error attempting to log you in." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "The password field must be at least 8 characters long." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct email and password." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Please enter the same password in the two password fields." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "The password field is required." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "The authentication server is down. Please try again later." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "The password confirmation field must match the password field." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "The email you entered is not a valid email address." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Sorry, we don't have your email address" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "The email field is required." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Only a superadmin may modify a superadmin or upgrade a user to admin." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Invalid role format." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "The role field must be at least 5 and no more than 30 characters long." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "You must define at least one role." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "You must select either ADMIN or USER role." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "The forgotten password token is invalid" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Forgotten password token was required" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "The admin user role cannot be modified." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "The public profile URL field must only contain numbers and letters." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Sorry, this public profile URL is already in use." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "The public profile URL field must be at least 2 and no more 100 characters long." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Please check that you entered the correct public profile URL." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "The public profile URL field is required." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "The super admin role cannot be modified." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Possible CSRF attack. Did you really mean to create/edit a user?" diff --git a/application/i18n/po/po-en_US/auth.pot b/application/i18n/po/po-en_US/auth.pot new file mode 100644 index 0000000000..739e85a329 --- /dev/null +++ b/application/i18n/po/po-en_US/auth.pot @@ -0,0 +1,238 @@ +#. extracted from en_US/auth.php, en_US/auth.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "The current password you entered for your account is incorrect. Please try again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "The public profile URL field must be at least 2 and no more 100 characters long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" + diff --git a/application/i18n/po/po-en_US/bug.po b/application/i18n/po/po-en_US/bug.po new file mode 100644 index 0000000000..bfb2763010 --- /dev/null +++ b/application/i18n/po/po-en_US/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "The Email field does not appear to contain a valid email address?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "The error field is required." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "The subject field must be at least 3 characters long." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "The subject field is required." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "The name field is required." diff --git a/application/i18n/po/po-en_US/bug.pot b/application/i18n/po/po-en_US/bug.pot new file mode 100644 index 0000000000..60216d0b91 --- /dev/null +++ b/application/i18n/po/po-en_US/bug.pot @@ -0,0 +1,63 @@ +#. extracted from en_US/bug.php, en_US/bug.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" + diff --git a/application/i18n/po/po-en_US/category.po b/application/i18n/po/po-en_US/category.po new file mode 100644 index 0000000000..823d8c046e --- /dev/null +++ b/application/i18n/po/po-en_US/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "The color field must be 6 characters long." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "The color field is required." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "The description field is required." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Please ensure that image uploads sizes are limited to 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "The image field does not appear to contain a valid file" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "The title field must be at least 3 and no more 80 characters long." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "The title field is required." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "You cannot subcategorize a category with subcategories." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "The parent category does not exist." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "The parent category field must be numeric." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "The parent category cannot be a special category" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "The parent category field is required." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "The category and the parent category cannot be the same." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Special categories cannot be subcategorised." diff --git a/application/i18n/po/po-en_US/category.pot b/application/i18n/po/po-en_US/category.pot new file mode 100644 index 0000000000..767830b814 --- /dev/null +++ b/application/i18n/po/po-en_US/category.pot @@ -0,0 +1,88 @@ +#. extracted from en_US/category.php, en_US/category.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-en_US/comments.po b/application/i18n/po/po-en_US/comments.po new file mode 100644 index 0000000000..e17813f57b --- /dev/null +++ b/application/i18n/po/po-en_US/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "You entered the wrong security code." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "The comments field is required." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." diff --git a/application/i18n/po/po-en_US/comments.pot b/application/i18n/po/po-en_US/comments.pot new file mode 100644 index 0000000000..3bcd07ab9a --- /dev/null +++ b/application/i18n/po/po-en_US/comments.pot @@ -0,0 +1,58 @@ +#. extracted from en_US/comments.php, en_US/comments.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-en_US/contact.po b/application/i18n/po/po-en_US/contact.po new file mode 100644 index 0000000000..d56d549e0c --- /dev/null +++ b/application/i18n/po/po-en_US/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "The message field is required." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "The subject field must be at least 3 characters long." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "The subject field is required." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "There was an error sending your message." diff --git a/application/i18n/po/po-en_US/contact.pot b/application/i18n/po/po-en_US/contact.pot new file mode 100644 index 0000000000..b8c543a55f --- /dev/null +++ b/application/i18n/po/po-en_US/contact.pot @@ -0,0 +1,73 @@ +#. extracted from en_US/contact.php, en_US/contact.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-en_US/core.po b/application/i18n/po/po-en_US/core.po new file mode 100644 index 0000000000..a48ee8ee0d --- /dev/null +++ b/application/i18n/po/po-en_US/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "config file" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controller" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver for the %s library must implement the %s interface." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "The %s driver for the %s library could not be found." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "You can go to the home page or try again." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Unable to Complete Request" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "helper" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "The requested filetype, .%s, is not allowed in your view configuration file." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Invalid method %s called in %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "The %s property does not exist in the %s class." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "library" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "The log directory is not writable: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi was not able to determine a controller to process this request: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Please set a default route in config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "The page you requested, %s, could not be found." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Report This Issue To Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "The requested %s, %s, could not be found." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "There can be only one instance of Ushahidi per page request." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Uncaught %s: %s in file %s on line %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "view" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "You must set the the view filename before calling render." diff --git a/application/i18n/po/po-en_US/core.pot b/application/i18n/po/po-en_US/core.pot new file mode 100644 index 0000000000..0c81e5ddbf --- /dev/null +++ b/application/i18n/po/po-en_US/core.pot @@ -0,0 +1,147 @@ +#. extracted from en_US/core.php, en_US/core.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-en_US/database.po b/application/i18n/po/po-en_US/database.po new file mode 100644 index 0000000000..06b0ab6f80 --- /dev/null +++ b/application/i18n/po/po-en_US/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Database error: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." diff --git a/application/i18n/po/po-en_US/database.pot b/application/i18n/po/po-en_US/database.pot new file mode 100644 index 0000000000..f611792ec7 --- /dev/null +++ b/application/i18n/po/po-en_US/database.pot @@ -0,0 +1,23 @@ +#. extracted from en_US/database.php, en_US/database.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-en_US/datetime.po b/application/i18n/po/po-en_US/datetime.po new file mode 100644 index 0000000000..7e76d89ab1 --- /dev/null +++ b/application/i18n/po/po-en_US/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Fri" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Friday" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Mon" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Monday" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sat" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Saturday" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Sun" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Sunday" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Thu" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Thursday" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Tue" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Tuesday" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Wed" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Wednesday" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "January" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "February" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "March" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "May" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "May" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "June" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "July" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "August" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "October" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "December" diff --git a/application/i18n/po/po-en_US/datetime.pot b/application/i18n/po/po-en_US/datetime.pot new file mode 100644 index 0000000000..fd193cc239 --- /dev/null +++ b/application/i18n/po/po-en_US/datetime.pot @@ -0,0 +1,213 @@ +#. extracted from en_US/datetime.php, en_US/datetime.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-en_US/feeds.po b/application/i18n/po/po-en_US/feeds.po new file mode 100644 index 0000000000..ebd83ffbbd --- /dev/null +++ b/application/i18n/po/po-en_US/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATE" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Please enter the name of the feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Please enter feed's URL." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Please enter a valid URL, e.g. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "SOURCE" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Title" diff --git a/application/i18n/po/po-en_US/feeds.pot b/application/i18n/po/po-en_US/feeds.pot new file mode 100644 index 0000000000..f4850b54e1 --- /dev/null +++ b/application/i18n/po/po-en_US/feeds.pot @@ -0,0 +1,48 @@ +#. extracted from en_US/feeds.php, en_US/feeds.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-en_US/footer.po b/application/i18n/po/po-en_US/footer.po new file mode 100644 index 0000000000..8d1b7ebd9a --- /dev/null +++ b/application/i18n/po/po-en_US/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl is not installed on this system." diff --git a/application/i18n/po/po-en_US/footer.pot b/application/i18n/po/po-en_US/footer.pot new file mode 100644 index 0000000000..297c6685d2 --- /dev/null +++ b/application/i18n/po/po-en_US/footer.pot @@ -0,0 +1,18 @@ +#. extracted from en_US/footer.php, en_US/footer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" + diff --git a/application/i18n/po/po-en_US/form.po b/application/i18n/po/po-en_US/form.po new file mode 100644 index 0000000000..1bcdf2e4ba --- /dev/null +++ b/application/i18n/po/po-en_US/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "The default value you have provided for the field is invalid." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "The Field Name must be at least 3 and no more than 200 characters long." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Please enter a value 0 to 50 for the Field Height." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "You have entered an invalid value for Date Field." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Please select Yes or No for the Date Field." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "The Field Name must be at least 3 and no more than 100 characters long." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Please enter Field Name." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "The field name you entered already exists on this form. Please enter another one." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "You have entered an invalid value for Field Required." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Please select Yes or No for Field Required." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Please select a valid Field Type." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Please select a Field Type." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Please enter a value 0 to 300 for the Field Width." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Please enter form's Description." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "The default form cannot be deleted." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Please select which form to add this field to." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Please select which form to add this field to." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "The form name field must be at least 3 and no more than 100 characters long." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Please enter the name of the form." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "A form with that title already exists. Please choose another." diff --git a/application/i18n/po/po-en_US/form.pot b/application/i18n/po/po-en_US/form.pot new file mode 100644 index 0000000000..40603db69e --- /dev/null +++ b/application/i18n/po/po-en_US/form.pot @@ -0,0 +1,113 @@ +#. extracted from en_US/form.php, en_US/form.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "The field name you entered already exists on this form. Please enter another one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" + diff --git a/application/i18n/po/po-en_US/imap.po b/application/i18n/po/po-en_US/imap.po new file mode 100644 index 0000000000..c5f636f21e --- /dev/null +++ b/application/i18n/po/po-en_US/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Could not open IMAP stream." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "The email service is not supported." diff --git a/application/i18n/po/po-en_US/imap.pot b/application/i18n/po/po-en_US/imap.pot new file mode 100644 index 0000000000..eb6ff5755a --- /dev/null +++ b/application/i18n/po/po-en_US/imap.pot @@ -0,0 +1,23 @@ +#. extracted from en_US/imap.php, en_US/imap.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-en_US/import.pot b/application/i18n/po/po-en_US/import.pot new file mode 100644 index 0000000000..e7308e80ca --- /dev/null +++ b/application/i18n/po/po-en_US/import.pot @@ -0,0 +1,148 @@ +#. extracted from en_US/import.php, en_US/import.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: import.csv.approved +msgctxt "import.csv.approved" +msgid "APPROVED must be either YES or NO on line " +msgstr "" + +#: import.csv.required_column +msgctxt "import.csv.required_column" +msgid "CSV file is missing required column" +msgstr "" + +#: import.csv.verified +msgctxt "import.csv.verified" +msgid "VERIFIED must be either YES or NO on line " +msgstr "" + +#: import.incident_exists +msgctxt "import.incident_exists" +msgid "Incident already exists for ID #" +msgstr "" + +#: import.incident_date +msgctxt "import.incident_date" +msgid "Could not parse incident date on report # " +msgstr "" + +#: import.new_category +msgctxt "import.new_category" +msgid "New category added to database: " +msgstr "" + +#: import.xml.category_error +msgctxt "import.xml.category_error" +msgid "The category title and category description fields are required. XML Import failed for category #" +msgstr "" + +#: import.xml.field_datatype +msgctxt "import.xml.field_datatype" +msgid "Field datatype option added for field " +msgstr "" + +#: import.xml.field_default +msgctxt "import.xml.field_default" +msgid "Default values are required for radio, checkbox and dropdown fields for the following field on form " +msgstr "" + +#: import.xml.field_error +msgctxt "import.xml.field_error" +msgid "Custom field name missing/field type not allowed. Import failed for the following field on form " +msgstr "" + +#: import.xml.field_hidden +msgctxt "import.xml.field_hidden" +msgid "Field hidden option added for field " +msgstr "" + +#: import.xml.file_empty +msgctxt "import.xml.file_empty" +msgid "Import failed. The file you have uploaded is empty." +msgstr "" + +#: import.xml.form_field_no_match +msgctxt "import.xml.form_field_no_match" +msgid "The following field does not exist on the form listed in report #" +msgstr "" + +#: import.xml.incident_title_date +msgctxt "import.xml.incident_title_date" +msgid "Both Report Title and Report Date are required for incident #" +msgstr "" + +#: import.xml.invalid_response +msgctxt "import.xml.invalid_response" +msgid "Invalid field response for the following field on report #" +msgstr "" + +#: import.xml.missing_elements +msgctxt "import.xml.missing_elements" +msgid "XML file selected for import must have at least one of the following: Categories, Custom forms or Reports" +msgstr "" + +#: import.xml.missing_form_title +msgctxt "import.xml.missing_form_title" +msgid "Form title must be provided for form #" +msgstr "" + +#: import.xml.missing_localization +msgctxt "import.xml.missing_localization" +msgid "Could not import empty category translation for localization for category #" +msgstr "" + +#: import.xml.new_field +msgctxt "import.xml.new_field" +msgid "New field added to database: " +msgstr "" + +#: import.xml.new_form +msgctxt "import.xml.new_form" +msgid "New form added to database: " +msgstr "" + +#: import.xml.no_categories +msgctxt "import.xml.no_categories" +msgid "There are no categories to import" +msgstr "" + +#: import.xml.no_category_exists +msgctxt "import.xml.no_category_exists" +msgid "The following category does not exist, listed in report #" +msgstr "" + +#: import.xml.no_custom_forms +msgctxt "import.xml.no_custom_forms" +msgid "There are no custom forms to import." +msgstr "" + +#: import.xml.no_form_exists +msgctxt "import.xml.no_form_exists" +msgid "The following form does not exist, listed on report #" +msgstr "" + +#: import.xml.no_reports +msgctxt "import.xml.no_reports" +msgid "There are no reports to import." +msgstr "" + +#: import.xml.translation_title +msgctxt "import.xml.translation_title" +msgid "Category translation import failed. Missing category title for the following localization on category #" +msgstr "" + +#: import.xml.translation_added +msgctxt "import.xml.translation_added" +msgid "Category translation added: Localization " +msgstr "" + diff --git a/application/i18n/po/po-en_US/installer.po b/application/i18n/po/po-en_US/installer.po new file mode 100644 index 0000000000..c255107a0d --- /dev/null +++ b/application/i18n/po/po-en_US/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Base Path" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Database" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Database Host" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Database Name" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "The name of the database you want to run Ushahidi in" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "For more information, please check out this article on the wiki that talks about databases in more detail." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Default Language (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Disable" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Enable" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Listed below is a summary of the errors we encountered." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Finished" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "General" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Anyone can get an api key. Get yours now" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Go Back" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "ADVANCED INSTALLATION" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "BASIC INSTALLATION" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Proceed" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Installation Successful" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail Server" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Password" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "The password you normally use to login in to your email" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Type" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Username" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Map" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Map Provider" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Other steps..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Password" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Your database password" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Previous" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Please restart your Apache Server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Enable or disable SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Set up your SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Site Email Address" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Site Alert Email Address" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Site wide email communication will be funneled through this address" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Site Name" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "The name of your site" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Site Tagline" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Your tagline" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "The files and folders listed below need to be writable by your webserver." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Here are instructions for changing file permissions:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "For the installation process, please have the following bits of information on hand." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Table Prefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Title" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "To login, go to" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Upload report data" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Username" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Your database username" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "and use the following credentials" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "View your website" diff --git a/application/i18n/po/po-en_US/installer.pot b/application/i18n/po/po-en_US/installer.pot new file mode 100644 index 0000000000..2d130e4753 --- /dev/null +++ b/application/i18n/po/po-en_US/installer.pot @@ -0,0 +1,353 @@ +#. extracted from en_US/installer.php, en_US/installer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-en_US/layer.po b/application/i18n/po/po-en_US/layer.po new file mode 100644 index 0000000000..ad5097765e --- /dev/null +++ b/application/i18n/po/po-en_US/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "The color field must be 6 characters long." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "The color field is required." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "The file field does not appear to contain a valid file" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "The name field must be at least 3 and no more 80 characters long." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Either a KML URL or File is required." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "You can't have both a KML file and a URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-en_US/layer.pot b/application/i18n/po/po-en_US/layer.pot new file mode 100644 index 0000000000..fbc4725ec5 --- /dev/null +++ b/application/i18n/po/po-en_US/layer.pot @@ -0,0 +1,58 @@ +#. extracted from en_US/layer.php, en_US/layer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-en_US/libraries.po b/application/i18n/po/po-en_US/libraries.po new file mode 100644 index 0000000000..aae199ab7d --- /dev/null +++ b/application/i18n/po/po-en_US/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Could not connect to Akismet server." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "The response from Akismet could not be retrieved." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "The API library: %s for the %s class could not be found. Please check your API task routing table." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Your Akismet API key is not valid." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current length=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Please specify a destination address (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Please specify source address (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current length=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Unsupported sending method!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "The API library %s is invalid. All API libraries must be subclasses of %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s could not be deleted." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Error while extracting: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Downloading the latest Ushahidi failed. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s could not be copied." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s could not be deleted." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi upgrade script" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "The downloaded Ushahidi zip file %s, could not be written." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s is not available in the RiverID class." diff --git a/application/i18n/po/po-en_US/libraries.pot b/application/i18n/po/po-en_US/libraries.pot new file mode 100644 index 0000000000..5555cdac66 --- /dev/null +++ b/application/i18n/po/po-en_US/libraries.pot @@ -0,0 +1,108 @@ +#. extracted from en_US/libraries.php, en_US/libraries.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-en_US/maintenance.po b/application/i18n/po/po-en_US/maintenance.po new file mode 100644 index 0000000000..4da49390e8 --- /dev/null +++ b/application/i18n/po/po-en_US/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Sorry, our site is currently down for maintenance. Please try again in a few minutes." diff --git a/application/i18n/po/po-en_US/maintenance.pot b/application/i18n/po/po-en_US/maintenance.pot new file mode 100644 index 0000000000..debb751d11 --- /dev/null +++ b/application/i18n/po/po-en_US/maintenance.pot @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, en_US/maintenance.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-en_US/message.po b/application/i18n/po/po-en_US/message.po new file mode 100644 index 0000000000..d5ab972a93 --- /dev/null +++ b/application/i18n/po/po-en_US/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "The Email field must be at least 4 and no more 64 characters long." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "The Email field is required if the checkbox is checked." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "The comments field is required." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "The name field must be at least 3 characters long." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "The name field is required." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "The phone field is not valid." diff --git a/application/i18n/po/po-en_US/message.pot b/application/i18n/po/po-en_US/message.pot new file mode 100644 index 0000000000..ccdbd05923 --- /dev/null +++ b/application/i18n/po/po-en_US/message.pot @@ -0,0 +1,58 @@ +#. extracted from en_US/message.php, en_US/message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-en_US/mhi.po b/application/i18n/po/po-en_US/mhi.po new file mode 100644 index 0000000000..00af3f721a --- /dev/null +++ b/application/i18n/po/po-en_US/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Please provide a valid email address." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "The message field is required." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "The subject field must be at least 3 characters long." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "The subject field is required." diff --git a/application/i18n/po/po-en_US/mhi.pot b/application/i18n/po/po-en_US/mhi.pot new file mode 100644 index 0000000000..85d34c3111 --- /dev/null +++ b/application/i18n/po/po-en_US/mhi.pot @@ -0,0 +1,48 @@ +#. extracted from en_US/mhi.php, en_US/mhi.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-en_US/notifications.po b/application/i18n/po/po-en_US/notifications.po new file mode 100644 index 0000000000..9fe5211b55 --- /dev/null +++ b/application/i18n/po/po-en_US/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "This message was sent from your website." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Administrator Login" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "A new comment has been submitted to your website in response to:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "New Comment" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "A new email message has been submitted to your website." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "New Email Message" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "A new report has been submitted to your website." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "New Report" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "A new text message has been submitted to your website." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "New Text Message" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "You Have Received a New Alert" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "New Alert!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "You Have Received a Private Message" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "New Private Message" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "To Reply Please Go To: " diff --git a/application/i18n/po/po-en_US/notifications.pot b/application/i18n/po/po-en_US/notifications.pot new file mode 100644 index 0000000000..f2224c5ffa --- /dev/null +++ b/application/i18n/po/po-en_US/notifications.pot @@ -0,0 +1,88 @@ +#. extracted from en_US/notifications.php, en_US/notifications.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-en_US/page.po b/application/i18n/po/po-en_US/page.po new file mode 100644 index 0000000000..09cf749c36 --- /dev/null +++ b/application/i18n/po/po-en_US/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Please enter a Page Title." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Page Title must be at least 3 and no more than 150 characters long." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Please enter a Page Tab Name." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Please enter a Page Description." diff --git a/application/i18n/po/po-en_US/page.pot b/application/i18n/po/po-en_US/page.pot new file mode 100644 index 0000000000..a484c33856 --- /dev/null +++ b/application/i18n/po/po-en_US/page.pot @@ -0,0 +1,33 @@ +#. extracted from en_US/page.php, en_US/page.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-en_US/permissions.po b/application/i18n/po/po-en_US/permissions.po new file mode 100644 index 0000000000..fa37c715cc --- /dev/null +++ b/application/i18n/po/po-en_US/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "View Reports" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Create/Edit/Delete Reports" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Approve Reports" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verify Reports" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Manage Report Comments" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Download Reports" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Upload Reports" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Manage Messages" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Manage Message Reporters" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "View Stats" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modify Settings" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Manage Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Manage Users" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Manage Roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Can checkin" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Manage checkins" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Access Admin UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Access Members UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Delete all reports" diff --git a/application/i18n/po/po-en_US/permissions.pot b/application/i18n/po/po-en_US/permissions.pot new file mode 100644 index 0000000000..b3bf345dca --- /dev/null +++ b/application/i18n/po/po-en_US/permissions.pot @@ -0,0 +1,107 @@ +#. extracted from en_US/permissions.php, en_US/permissions.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-en_US/private_message.po b/application/i18n/po/po-en_US/private_message.po new file mode 100644 index 0000000000..b1283a2f69 --- /dev/null +++ b/application/i18n/po/po-en_US/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Parent ID must be numeric" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "The To field is required" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "The user you are try to send a message to does not exist" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "The subject field is required" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Subject must be between 3 and 150 characters" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "The message field is required" diff --git a/application/i18n/po/po-en_US/private_message.pot b/application/i18n/po/po-en_US/private_message.pot new file mode 100644 index 0000000000..2ec8dd4632 --- /dev/null +++ b/application/i18n/po/po-en_US/private_message.pot @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, en_US/private_message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-en_US/report.po b/application/i18n/po/po-en_US/report.po new file mode 100644 index 0000000000..ef5f532320 --- /dev/null +++ b/application/i18n/po/po-en_US/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "error!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "This deployment spans within one country only. Please make sure the report location is within the country %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Please enter a valid value for the \"%s\" field." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "The \"%s\" field must be numeric." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "The \"%s\" field is required." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "The \"%s\" field is does not exist." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "The \"%s\" field cannot be edited by your account." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "The \"%s\" field must contain a valid email address." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "The \"%s\" field must contain a valid phone number." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "The \"%s\" field must contain a valid date (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "The \"%s\" field must contain a valid date (DD/MM/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "You must select a download format. Select either CSV or XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Please select a valid format to download your reports in" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "The FROM date field does not appear to contain a valid date." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Please enter a valid FROM date. It cannot be greater than today." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Please enter a valid value for Approve This Report" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Please enter a valid value for Approve This Report" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "The am/pm field does not appear to contain a valid value." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "The \"Categories\" field does not appear to contain a valid category." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "The \"Categories\" field is required." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "The date field is required." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "The \"Description\" field is required." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "The hour field does not appear to contain a valid hour." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "The hour field is required." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "The minute field does not appear to contain a valid value." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "The minute field is required." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "The news source links field does not appear to contain a valid URL." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Please ensure that photo upload sizes are limited to 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "The Upload Photos field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "The Upload Photos field does not appear to contain a valid file." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The \"Report Title\" field must be at least 3 and no more 200 characters long." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "The \"Report Title\" field is required." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Possible CSRF attack. Did you really mean to create/edit a report?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "The video links field does not appear to contain a valid URL." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The latitude field is required. Please click on the map to pinpoint a location." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "The locale field has an incorrect value. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "This report already has a translation for this language." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "The locale field has an incorrect value. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "The Original Report and the Translation have the same locale (language)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "The locale is required." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The \"Location Name\" field must be at least 3 and no more 200 characters long." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "The \"Location Name\" field is required." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The longitude field is required. Please click on the map to pinpoint a location." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "The email field does not appear to contain a valid email address." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "The email field must be at least 4 and no more 64 characters long." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "The first name field must be at least 3 and no more 100 characters long." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "The last name field must be at least 2 and no more 100 characters long." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "The TO date field does not appear to contain a valid date." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Please enter a valid TO date. It cannot be greater than today." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Your FROM date cannot be greater than your TO date." diff --git a/application/i18n/po/po-en_US/report.pot b/application/i18n/po/po-en_US/report.pot new file mode 100644 index 0000000000..35f4f01d62 --- /dev/null +++ b/application/i18n/po/po-en_US/report.pot @@ -0,0 +1,367 @@ +#. extracted from en_US/report.php, en_US/report.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "This deployment spans within one country only. Please make sure the report location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "The Upload Photos field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "The \"Report Title\" field must be at least 3 and no more 200 characters long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "The \"Location Name\" field must be at least 3 and no more 200 characters long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-en_US/reporters.po b/application/i18n/po/po-en_US/reporters.po new file mode 100644 index 0000000000..cb62c044d7 --- /dev/null +++ b/application/i18n/po/po-en_US/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The latitude field is required. Please click on the map to pinpoint a location." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "The location name field must be at least 3 and no more 200 characters long." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "The location name field is required." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The longitude field is required. Please click on the map to pinpoint a location." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Invalid Reporter" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Invalid Reporter" diff --git a/application/i18n/po/po-en_US/reporters.pot b/application/i18n/po/po-en_US/reporters.pot new file mode 100644 index 0000000000..beb4386e58 --- /dev/null +++ b/application/i18n/po/po-en_US/reporters.pot @@ -0,0 +1,63 @@ +#. extracted from en_US/reporters.php, en_US/reporters.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-en_US/reports.po b/application/i18n/po/po-en_US/reports.po new file mode 100644 index 0000000000..b81981e051 --- /dev/null +++ b/application/i18n/po/po-en_US/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Please verify that you have checked an item" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Please verify that you have checked an item" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Reports must be categorized before they can be approved" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "You don't have permission to perform this action" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "You must select a file to upload" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "The upload file must either be of .csv or .xml format" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "The file upload field does not seem to contain a valid file" diff --git a/application/i18n/po/po-en_US/reports.pot b/application/i18n/po/po-en_US/reports.pot new file mode 100644 index 0000000000..a31654b95d --- /dev/null +++ b/application/i18n/po/po-en_US/reports.pot @@ -0,0 +1,48 @@ +#. extracted from en_US/reports.php, en_US/reports.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" + diff --git a/application/i18n/po/po-en_US/roles.po b/application/i18n/po/po-en_US/roles.po new file mode 100644 index 0000000000..20e35e140c --- /dev/null +++ b/application/i18n/po/po-en_US/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "The Description field must be at least 3 and no more 100 characters long." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "The Description field is required." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "The Name field must only contain letters or numbers." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "The Name field must be at least 2 and no more than 30 characters long." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin Role Cannot Be Modified." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "The Name field is required." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level field must be a number between 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level field must be a number between 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Permissions field must be a number between 0 - 100." diff --git a/application/i18n/po/po-en_US/roles.pot b/application/i18n/po/po-en_US/roles.pot new file mode 100644 index 0000000000..f38b02b40a --- /dev/null +++ b/application/i18n/po/po-en_US/roles.pot @@ -0,0 +1,58 @@ +#. extracted from en_US/roles.php, en_US/roles.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-en_US/settings.po b/application/i18n/po/po-en_US/settings.po new file mode 100644 index 0000000000..3a2ea3df67 --- /dev/null +++ b/application/i18n/po/po-en_US/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/projects/p/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "The allow comments field does not appear to contain a valid value." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "The allow comments field is required." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "The include feed field is required." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "The include feed category field does not appear to contain a valid value." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "The include feed category field is required." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "The allow alerts field does not appear to contain a valid value." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "The allow alerts field is required." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "The allow reports field does not appear to contain a valid value." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "The allow reports field is required." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "The stat sharing field is required." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default number of records to be fetched per API request" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum number of records to be fetched per API request" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum number of API requests per IP address" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "The Site Banner field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Please ensure that \"Banner Image\" size is less than 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "The \"Banner Image\" field does not appear to contain a valid file." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "The cache pages field is required." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "The cache pages field does not appear to contain a valid value." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "The cache pages lifetime field does not appear to contain a valid value." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "The cache pages lifetime field is required." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs (without \"index.php\" in the URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Enable Clean URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "The Clickatell API number field must be no more 20 characters long." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "The Clickatell API number field is required." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "The Clickatell Password field must be at least 5 and no more 50 characters long." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "The Clickatell Password field is required." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "The Clickatell Username field must be no more 50 characters long." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "The Clickatell Username field is required." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configure Map" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Default Location" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "The color feed field does not appear to contain a valid value." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "The color field must be no more 6 characters long." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "The color field is required." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Default Map View" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Default Zoom Level" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Retrieve Cities From Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "The Mail server port field should contain numbers only." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "The Mail Server Password field must be at least 5 and no more 50 characters long." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "The Mail Server Password field is required." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "The Mail server port field should contain numbers only." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "The Mail Server Type field is required." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "The Mail Server Username field must be no more 50 characters long." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "The Mail Server Username field is required." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Facebook Setup Options" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "To get the information below you will need to create a new Facebook application at" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "These settings allow users to login via Facebook, this does not create a facebook application for your deployment" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "The Google Analytics field must contain a valid Web Property ID in the format UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Enable HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "This option makes Ushahidi be accessed in unsecure mode; without \"https://\" in the URL prefix" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "This option makes Ushahidi be accessed in secure mode; with https in the URL prefix" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "The items per page (Frontend) field is required." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "The items per page (Admin) field is required." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoom Level" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Select a Map Provider" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Enter the new API Key" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Get an API Key" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight-forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Map provider" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Map Timeline" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Map Settings" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Deployment span multiple countries?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Please select a default country" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Click and drag the map to set your exact location" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Cluster Reports on Map" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Allow Users to Submit Comments to Reports" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Include RSS News Feed on Website" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Create New Category from Feeds" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Allow Users To Subscribe For Alerts" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Allow Users To Submit Reports" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet Key" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Site Banner" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocks Per Row" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache Pages" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Cache Pages Lifetime" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Enable Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Site Copyright Statement" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Default Color For All Categories" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Default Icon For All Categories" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Delete Banner Image" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Delete Default Icon" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Display Contact Page" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Display \"How to Help\" Page" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Alerts Email Address" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "In order to receive reports by email, please configure your email account settings." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Site Email Address" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Items Per Page - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Items Per Page - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica Credentials" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica Site " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Site Language" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Manually Approve Users" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Site Message" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Site Name" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Private Deployment" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Require User Email Confirmation" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Submit Report Message" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Enable Statistics (Stored on Ushahidi's server)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Site Tagline" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Timezone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Site Settings" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter Search Terms" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Separate with commas " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Feeds geolocation - Geonames username" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "The site email field must be at least 4 and no more 100 characters long." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "The site name field must be at least 3 and no more 50 characters long." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "The site name field is required." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "The tagline field must be at least 3 and no more 100 characters long." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "The tagline field is required." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Your Clickatell API Number" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Check Your Clickatell Credit Balance" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Load Credit Balance" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Your Clickatell Password" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Sign up for Clickatells service by clicking here" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Enter your Clickatell access information below" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Your Clickatell User Name" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS is free and open source software that enables users to send and receive text messages with large groups of people through mobile phones. Click on the box below to download the latest version from FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Download and install FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Detailed instructions on how to send SMS from your FronlineSMS installation are available here. The URL and API Key below are required to set up the sync with FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Copy and paste this into the FrontlineSMS \"Address\" field" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Connecting FrontlineSMS to this Ushahidi deployment" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Enter phone number(s) connected to Frontline SMS in the field(s) below" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Enter the number without any + or dashes below" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Option 1: Use Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Use a Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS Setup Options" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "The phone 1 field should contain numbers only." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "The phone 2 field should contain numbers only." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "The phone 3 field should contain numbers only." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Twitter Setup Options" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "To get the information below, set up your deployment as a new Twitter application at" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Consumer Key" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Consumer secret" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Access Token" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Access Token Secret" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Test settings" diff --git a/application/i18n/po/po-en_US/settings.pot b/application/i18n/po/po-en_US/settings.pot new file mode 100644 index 0000000000..a4f37d46c1 --- /dev/null +++ b/application/i18n/po/po-en_US/settings.pot @@ -0,0 +1,802 @@ +#. extracted from en_US/settings.php, en_US/settings.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "The Site Banner field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "This option makes Ushahidi to be accessed via \"clean\" URLs (without \"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "The Clickatell Password field must be at least 5 and no more 50 characters long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "The Mail Server Password field must be at least 5 and no more 50 characters long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "To get the information below you will need to create a new Facebook application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "These settings allow users to login via Facebook, this does not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "The Google Analytics field must contain a valid Web Property ID in the format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "This option makes Ushahidi be accessed in unsecure mode; without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "This option makes Ushahidi be accessed in secure mode; with https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "The items per page (Frontend) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "Setting up your map provider is a straight-forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "In order to receive reports by email, please configure your email account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "FrontlineSMS is free and open source software that enables users to send and receive text messages with large groups of people through mobile phones. Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "Detailed instructions on how to send SMS from your FronlineSMS installation are available here. The URL and API Key below are required to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "To get the information below, set up your deployment as a new Twitter application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-en_US/sharing.po b/application/i18n/po/po-en_US/sharing.po new file mode 100644 index 0000000000..d24a713050 --- /dev/null +++ b/application/i18n/po/po-en_US/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Ingress date" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Date Added" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Last Access" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "The color field must be 6 characters long." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "The color field is required." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "The Sharing name does not appear to be valid." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "A Sharing name is required." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "The site URL already exists." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "The site URL does not appear to be valid." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "The site URL is required." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "The site URL field does not appear to contain a valid URL." diff --git a/application/i18n/po/po-en_US/sharing.pot b/application/i18n/po/po-en_US/sharing.pot new file mode 100644 index 0000000000..4fb3c89376 --- /dev/null +++ b/application/i18n/po/po-en_US/sharing.pot @@ -0,0 +1,68 @@ +#. extracted from en_US/sharing.php, en_US/sharing.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-en_US/stats.po b/application/i18n/po/po-en_US/stats.po new file mode 100644 index 0000000000..3d6b143ae5 --- /dev/null +++ b/application/i18n/po/po-en_US/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Approved" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categories" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Category Impact" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Choose a date range." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Countries" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Country" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Country Breakdown" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Error" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossary" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Hit Summary" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legend" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pageviews" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "The total number of pages that visitors have viewed on your site" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Reports" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Reports Categories" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Reports Statistics" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Reports Status" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Report Punchcard" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Report Stats" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Stats Not Set Up" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Month" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Months" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Months" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "All" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Unapproved" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Unique Visitors" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Unverified" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verified" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Visitor Summary" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visits" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." diff --git a/application/i18n/po/po-en_US/stats.pot b/application/i18n/po/po-en_US/stats.pot new file mode 100644 index 0000000000..a8d951e985 --- /dev/null +++ b/application/i18n/po/po-en_US/stats.pot @@ -0,0 +1,183 @@ +#. extracted from en_US/stats.php, en_US/stats.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-en_US/tooltips.po b/application/i18n/po/po-en_US/tooltips.po new file mode 100644 index 0000000000..eddc466025 --- /dev/null +++ b/application/i18n/po/po-en_US/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Woody Gilk , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Approves a report or not. If approved, it will show up publicly." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Body of the email that will be sent." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Subject of email that will be sent." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"all\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for twitter messages from a particular user, enter their username here (not including @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions \"love\" or \"peace\" in their message, you will want to add \"love, peace\" in the keywords box." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select \"specific area\" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "This is the default title to add to the report." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "If you select \"Triggering User\", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"anyone\" since most triggers are set up for all users interacting with the system" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marks a report as verified or not." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separate each value with a comma, e.g. value1, value2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Start typing to list members." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Private message subject" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Private message" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Your email address" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "This is one of the ways that you are identified on the website. Keep in mind that this is public!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "If set, this will be your new password. Leave this field blank if you wish to keep your current password." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Selecting YES lets you get alerts via email when new reports or comments are posted on your website." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Your current password. We require you enter your password to prevent any unauthorized changes to your account." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you've submitted, your checkins, badges, etc all on one page." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "This is the address where your public profile can be found." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Your username cannot be changed." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "This is the email address that will be used to send email alerts." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Allow users to subscribe for alerts via the web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "This allows bundling of similar reports into a single dot on the map" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Allow users to comment on reports on the main site." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "This allows RSS News feeds to be displayed on the main site." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "This allows creating new Category from RSS News feeds." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Allow users to submit information via the web form." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default number of records to be fetched per API request" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum number of records to be fetched per API request" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum number of API requests per IP address" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Number of Block columns that will be displayed on each row." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Set the lifetime of the cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Set the map to cover a specific location." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Set one color code for all the categories on the site." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Set one icon for all the categories on the site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "This is the country the site is being deployed." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Turn the Contact Tab on or off on the main site." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Turn the How to Help Tab on or off on the main site." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "This is the number of reports displayed per page on the main site." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "This is the number of reports displayed per page on the admin Back End." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "This is the hub for incoming messages." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "This synchronizes the messages in the hub with the Ushahidi platform." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Phone numbers through which the text messages are received." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Tracks visitors of your site. Get detailed visitor statistics." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Sets the language that will be used in the site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "This defines which map is to be used on the site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "This shows the timeline based on the date and time reports were submitted" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "This is where the emails reside" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "This is the password for the email address that receives reports." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "This is required to accept incoming connections from the email address." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "This is required to enhance a secure connection." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "This is required to retrieve e-mails from the host server." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "This is the email address that receives reports." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "This is the email address that will receive email reports and messages from the contact form." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "This is the name of the site that appears at the top of the main site." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "In a few words, explain what this site is about." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Set the twitter hashtag that will be used on a tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "If you want to geocode your feed entries, grab a user http://geonames.org, enable the free webservices and enter it here. Leave empty to disable this function.

Beware of the the use limits!" diff --git a/application/i18n/po/po-en_US/tooltips.pot b/application/i18n/po/po-en_US/tooltips.pot new file mode 100644 index 0000000000..08a8a5aaed --- /dev/null +++ b/application/i18n/po/po-en_US/tooltips.pot @@ -0,0 +1,447 @@ +#. extracted from en_US/tooltips.php, en_US/tooltips.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for twitter messages from a particular user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions \"love\" or \"peace\" in their message, you will want to add \"love, peace\" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select \"specific area\" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "If you select \"Triggering User\", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"anyone\" since most triggers are set up for all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "This is one of the ways that you are identified on the website. Keep in mind that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "If set, this will be your new password. Leave this field blank if you wish to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "Selecting YES lets you get alerts via email when new reports or comments are posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "Your current password. We require you enter your password to prevent any unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you've submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "This is the email address that will receive email reports and messages from the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "If you want to geocode your feed entries, grab a user http://geonames.org, enable the free webservices and enter it here. Leave empty to disable this function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-en_US/ui_admin.po b/application/i18n/po/po-en_US/ui_admin.po new file mode 100644 index 0000000000..499c26e9ed --- /dev/null +++ b/application/i18n/po/po-en_US/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Access denied. Either your credentials are not valid or your request has been refused." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Access denied. Your request has been understood, but denied due to access limits like time. Try back later." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Access Level" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Add to Category" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "added" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "added/edited" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Addons" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alerts" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alerts Received" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "All" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonymous" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Anyone" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Anywhere" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Banned" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Logs" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Settings" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "UNBAN" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "UNBAN ALL" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "approved" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Auto Approve" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Manually Approve" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archived" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Are you sure you want to" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Are you sure you want to delete this item?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Are you sure you want to delete this photo?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Are you sure you want to switch forms?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Assign" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Assignments" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Assign Badge" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Author" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Author email" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Back" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Ban IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Between Times" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocks" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Body" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancel" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categories" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Error displaying chart" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Please make sure your message is valid." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Please make sure the number is valid." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Please check your SMS settings!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Checkin Details" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Cities loaded" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "code" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Code version out of sync." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Color" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comments" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Your alerts confirmation code is: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "The User Has Been" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Count" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Country Not Found" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "created/edited" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Create a Report" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Critical Upgrade" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Currently Active" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Currently Inactive" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "You don't have sufficient permissions to edit the following custom fields." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Daily" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Dashboard" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "database" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Date & Time" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Date Added" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Date Modified" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Days of the week" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB version out of sync." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "deleted" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Delete" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Delete all reports" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Delete Badge" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Description" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Disabled" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Divider Start" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Divider End" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Download Reports" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Dropdown Choices" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITED" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Edited By" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Edit" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Edit Log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Entire Collective" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Error in geocoding! HTTP error" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP Library is not installed" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Incorrect Credentials" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Error" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, unable to post incident" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Every Six Hours" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Every Twelve Hours" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "List of Choices" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Default Value" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Data Type" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numeric" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Free Text" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Height (In Rows)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Hidden Field" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maximum Character Length" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Field Name" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Toggle" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "No" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Yes, Closed by default" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Yes, Open by default" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Could not find uploaded file" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Could not open file for reading" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "That Form Does Not Exist!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Text Area Field (Free Text)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Date Field" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Radio Buttons Field" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Checkboxes Field" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Dropdown Field" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "From" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "From" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonames Timeout Error" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Get Help" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Get more themes" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Get more plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Add/Edit" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Manage Users" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Role" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "User" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "help" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Hourly" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Incident feed for" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "The installer folder still exists. Delete the installer folder. It is a potential security vulnerability." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instance" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instances" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Instance Details" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Invalid Parameter" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP Address" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Is this a Date Field?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Who Can View Answers" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Who Can Submit Answers" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Keyword" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Keywords" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email Address:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Full Name:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Password:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Role:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Username:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Layers" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Logout" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Manage" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Manage Roles & Permissions" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "View Users" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Add/Edit Users" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Manage Your Public Listing" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Mark As" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marked as not spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marked as spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "did not match any documents" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Message" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Messages" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica Messages" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter Messages" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Your message has been sent!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minute" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutes" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Missing Parameter" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modified" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modify Timezone Setting" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "move down" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "move up" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Multiple Hosted Instances" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "My Alerts" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "My Checkins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "My Profile" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "My Reports" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votes Cast" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positive" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negative" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Name" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Create New Alert" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Create New Message" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "New Password" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "No" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "This is a special category that will not show up on the report submission form for users submitting reports. This is used to hold reports left without categories(uncategorized reports) as a result of category deletion." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notification" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "This is not case sensitive." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Not Found" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "No data. There are no results to show." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "No Error" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "No Results To Display!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "of" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "On Specific Count" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "page" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "pages" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Page Not Found" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Sorry, the page you are trying to view is not here.

Did you follow a link from somewhere else on our site?
If you reached this page from another part of our site, please contact us so that we can correct our mistake.

Did you follow a link from another site?
Links from other sites can sometimes be outdated or misspelled. Tell us where you came from and we can try to contact the other site in order to fix the problem.

Did you type the URL?
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalization, etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Sorry, the page you are trying to view is not here." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parameters Used" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Password" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Password Reset" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Dear" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "We received a request to reset the password for" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "To change your password, please click on the link below (or copy and paste it into your browser)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "As you requested, your password has now been reset. Your new details are as follows" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi password reset" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Phone" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Please Select" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Data was not sent by post method" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Preview" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Message" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Private Messages" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Private Message Sent" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Subject" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "To" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Public Listing" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Qualifiers" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "read" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevance" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Report Title" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Report Date" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporters" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Reporter Levels" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Reports" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Reputation Score" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Required" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Response" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Results" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revoke" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "This email already has an account managed by CrowdmapID. The user will need to use their existing Crowdmap password to login." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Save Settings" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Search" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Search Reports" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "searching for" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "The encryption key is still set to the default value. This is insecure and must be changed." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "This site being served over HTTP. This should be set to HTTPS for increased security." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instructions are available on the wiki: " + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Select your desired reports download format:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Select A Field Type ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Please select an item" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "You must select a Trigger before you can select a Response." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "You must select a Trigger before you can define Qualifiers." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Sender" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Send To" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "This message was sent from your website at " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Server Time" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Settings" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Showing page" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Showing results" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "shown" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Special Category" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "This is a special category that will not show up on the report submission form for users submitting reports. This is used in conjunction with the \"Trusted Reporters\" feature." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Specific Area" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "State" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistics" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Stats" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Stat collection failed! Please try again later." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Stat Collection Failed!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Specific Days" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Subject" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Task Performed" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Text Field" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Name" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Manage Users" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Timeout Error" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "to" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Total Records" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "to" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Translate Reports" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Triggering User" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Triggers" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "unapproved" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Unknown" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Unknown Failure" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "unread" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "You will no longer receive alerts from" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Click here to upgrade now" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Upgrade Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Upgrade Ushahidi Status" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Upload Reports" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "User" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Users" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verified/Unverified" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verify/Unverify" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Version" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " is available for upgrade." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Video Encoding" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Private Messages" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "View Site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "View Report" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Welcome, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Yes" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Your search for" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Clicking the button below will delete ALL reports on the database. You should use this with caution as this operation cannot be undone." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "We recommend you backup your database before proceeding" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "I'm sure I want to delete all %s report(s) from the database." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Are you sure you want to delete all reports?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "There are no reports to be deleted." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Number of logins" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Last login" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Confirmed account?" diff --git a/application/i18n/po/po-en_US/ui_admin.pot b/application/i18n/po/po-en_US/ui_admin.pot new file mode 100644 index 0000000000..9d708b4cea --- /dev/null +++ b/application/i18n/po/po-en_US/ui_admin.pot @@ -0,0 +1,1617 @@ +#. extracted from en_US/ui_admin.php, en_US/ui_admin.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "Access denied. Either your credentials are not valid or your request has been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "Access denied. Your request has been understood, but denied due to access limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "The installer folder still exists. Delete the installer folder. It is a potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "This is a special category that will not show up on the report submission form for users submitting reports. This is used to hold reports left without categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "Sorry, the page you are trying to view is not here.

Did you follow a link from somewhere else on our site?
If you reached this page from another part of our site, please contact us so that we can correct our mistake.

Did you follow a link from another site?
Links from other sites can sometimes be outdated or misspelled. Tell us where you came from and we can try to contact the other site in order to fix the problem.

Did you type the URL?
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "To change your password, please click on the link below (or copy and paste it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "As you requested, your password has now been reset. Your new details are as follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "This email already has an account managed by CrowdmapID. The user will need to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "The encryption key is still set to the default value. This is insecure and must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "This site being served over HTTP. This should be set to HTTPS for increased security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "This is a special category that will not show up on the report submission form for users submitting reports. This is used in conjunction with the \"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "Clicking the button below will delete ALL reports on the database. You should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-en_US/ui_main.po b/application/i18n/po/po-en_US/ui_main.po new file mode 100644 index 0000000000..b12201320b --- /dev/null +++ b/application/i18n/po/po-en_US/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "About " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Access" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Access Limits" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Account Name" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Actions" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "This action cannot be undone. Are you sure you want to continue?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activate" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Active" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Add" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Added By" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Additional Data" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Additional Reports" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Add/Edit" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Add a Field" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Add Language" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Add New" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Add New Category" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Add Translation" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administration" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Get Alerts" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alert me if a report is filed in, or around:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Save My Alert" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email address:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "enter email address" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "enter mobile number with country code" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Get Alerts" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Alert has been" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobile phone:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Or place a spot on the map below, and we will alert you when a report is submitted within 20 kilometers." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "If you can't find your location, please click on the map to pinpoint the correct location." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (copy the URL below)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Select a city" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Step 1: Select your city or location:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Step 2: Send alerts to my:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Step 3 (Optional): Select Categories" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirm A Previous Alert Request" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Your Alert Has Been Saved!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "All" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Allowed" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Allowed HTML tags: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes are only allowed from: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "All Categories" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "All Time" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "and" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Approve" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Approved" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Approved Reports" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Approve this Report" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Approximate" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archive" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archived" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascending" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "at" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Author" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Auto" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Avg Reports Per Day" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Awaiting Approval" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Awaiting Verification" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Badge" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Badges" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Badge Image" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Or you can upload your own badge image instead." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Badge Pack" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Select a Badge" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Browse Profiles" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancel" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categories" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Category" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Category Filter" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "The category has been " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Category Name" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Change Date Range" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Change Password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Change My Picture" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Choose a" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Choose data points to download" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Or choose your own date range" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Choose field type" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Clear" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Clear Map" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Close" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "clusters" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Color" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comment" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comments" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Comment Details" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Your Settings Have Been Saved!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configure" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "You have successfully confirmed your email address! Please login below." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "You have successfully confirmed your email address! An administrator must approve your account before you login" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Email confirmation failed! You can request a new email confirmation below." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contact Us" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Security Code" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Your Email Address" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Message" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Your Message Has Been Sent!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Your Name" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Your Phone Number" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Send Message" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Message Subject" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Create" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Create/Edit" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Create New" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Create New Password" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Create Report" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibility" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Current Password" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Custom Fields" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Information" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Date" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Date & Time" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "day" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "Daily" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deactivate" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Delete" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Deleted" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Deletes" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Delete Disabled" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Delete Last" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Delete this Report" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Delete Selected" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Delete Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Description" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descending" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Details" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Direct Report" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Disabled" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Unapprove" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Download Reports" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Download" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Edit" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Edit Form Fields" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Edit Report" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Email Address" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Mail Server Settings" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Password" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Port" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Mail Server SSL support" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Type" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Username" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "so your settings have to be associated with this email address" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "In order to receive reports by email, please input your email account settings below. Please note that emails will be received at your" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Some servers require a complete email address" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Email account password" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Examples: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Enable or disable SSL connections" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---EMPTY---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "to" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Error!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Example" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "External Apps" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "External Video Link" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Provide Feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Please give us feedback about your experience by sending an email to " + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "The feed has been" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Feed Items" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Feed Name" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Feed URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Unused field" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "File" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Your file is over the maximum allowed filesize." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filters" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filter Reports" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filter Reports By" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filter reports that contain" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Find" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Find Location" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "First Name" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Scheduler" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Form" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Forms" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Form Description" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Edit this Form" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "The form has been" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Form Title" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "From" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Full Name" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation Available" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Color" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comments" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Label" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Stroke Width" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Go" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Has Been" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "How to Help" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Hidden" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Hide" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "hide this message" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Home" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "Hourly" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "How to Report" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Used to identify you on the site to other users." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Image" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Images" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Image/Icon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactive" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Inbox" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incident" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidents Nearby" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Incident Location" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Include" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Include Categories" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Include Custom Fields" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Include Description" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Include as much detail as possible" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Include Latitude" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Include Location Information" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Include Longitude" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Include Personal Information" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Incoming Media" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Information Evaluation" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Enter your precise location" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Your account doesn't have the proper permission to fully log you in. Please contact the administrator." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Interval" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "In response to" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Address" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Is this your profile?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "item" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "items" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item_details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Item Title" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Key" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Keywords" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML File" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Upload KMZ/KML File" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Language" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Last" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Last Month" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Last Name" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Last Year" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitude" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Layers" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Other Layers" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "The Layer Has Been" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Layer Name" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Layer URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Leave a Comment" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Less Information" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Level" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "This level has been" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Level Name" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limited" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "List" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Loading Reports" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Location" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Locations" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "City, State and/or Country" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Account created successfully. You may log in now." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "A confirmation has been sent to your email address." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Account created. Your account must be approved by an admin before you can login." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Email address doesn't exist. Try a different address or create an account." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Please click your account provider" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Login with" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email and Password" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Sign Up" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Create an Account" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Thank you for signing up at %1$s. To confirm your email address, please go to the following URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Signup Confirmation" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "An new user has signed up at %1$s. To approve their registration please go to the following URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "New User Approval" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Your user account has been approved for %1$s. To login go to the following URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "User account approved" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Create an account now to take advantage of more features on the site." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitude" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Map" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Mark as Read" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Mark as Unread" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximum filesize" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Media Filter" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Members" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Manage Your Account" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Message" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Messages" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Message Details" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Message from a non-numeric source:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobile" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modify" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modify Date" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "month" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "Monthly" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "More" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "More Information" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Name" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Nearby Report" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "New" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "News" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "News Feeds" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "News Source" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "New Category" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "New Password" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "New Report" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Next" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "No" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "No checkins to display." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "No data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "None" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notices" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Not Approved" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Not Approved" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Not Selected---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "not spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Not Specified" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "There are no reports" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "There are no results" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Off" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Official & mainstream news" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "On" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Option" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Optional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Options" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organization" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizations" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Organization Description" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Organization Email" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "The Organization Has Been" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Organization Name" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Organization Phone 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Organization Phone 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Organization Website" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Original Description" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Original Title" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Other Deployments" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Outbox" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Outgoing" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Page" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Pages" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Page Description" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "The Page Has Been" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Page Tab Name" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Page Title" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Parent Category" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Password" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verify Password" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Password changed successfully! Login below." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Check your email for the new password." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Stay logged in on this computer?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Past Month" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Past Year" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pending" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Personal Information Optional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Phone" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Photos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Pictures" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Pictures and Videos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Play" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Please Note" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugin Website" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Public Profile" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Public Profile URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Preview" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Preview Item" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Preview Message" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Previous" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Private" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profile Color" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Your Profile Has Been Saved" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Quick Stats" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Rating" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Read" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Receive" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Receive from" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Receive Notifications" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Recent Reports" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Refresh News Feeds" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registered Email" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Remove" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Reply" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Report" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Reports (from the map, listed in chronological order)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Reporter" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Reporters" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Reporter Date" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Reporter Email" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Reporter First Name" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "The Reporter Has Been" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Reporter IP Address" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Reporter Last Name" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Reporter Level" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Reporter Levels" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Reporter Phone" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Reports" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Browse" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Submit" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Reports By This User" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categories" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Reports" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Date" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Description" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Reports will be downloaded in CSV format" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Features" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Find a location near you" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "First Name" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Last Name" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Location Name" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "News Source Link" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Optional Information" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Upload Photos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Return to the reports page" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Select a City" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Your Report has been submitted to our staff for review. We will get back to you shortly if necessary." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Submit a New Report" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Time" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Reports Timeline" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Report Title" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Video link" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Report an Incident" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Report Details" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "By sending a message to" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "By sending an email" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "By sending a tweet with the hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "By filling this form on our website." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "By using an app" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Your Report Has Been Saved" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Report Title" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Request more information" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Request location" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Required" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requirements" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Resend Confirmation Email" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Reset all filters" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Reset Password" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Retrieve city names for the selected country" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Accounts managed by the %s service." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Role" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Save" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Saved" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Save & Add New" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Save & Close" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Save Report" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Schedule" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Scheduler" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Day" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hour" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Scheduler Log" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minute" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Day of the Week" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Search" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Search Results" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Security Code" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Select All" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Select a Field Type" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Select A Form Type" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Select in the map" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Select as many as needed" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Please verify that you have checked an item" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Select Theme" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Send" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Send Confirmation" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Sending To" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Sent" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Sent by" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Server address" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Server type" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Service" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Service Username" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Service User ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Share" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Shared data" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "The share has been" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Sharing" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Shorter Map" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Show" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Show all" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Show Messages" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Showing Reports From %1$s to %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "site email address" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Site URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Smaller Map" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Sorry, you do not have any badges." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Source" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Source name" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sort" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sort By" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Source URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL Support?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "From" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Step" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Submit a Report" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Submitted by %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Submit via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Send your SMS to" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "on your phone" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Success!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Succesfully imported" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Surname" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Survey" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "System" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Taller Map" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Themes" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Default Ushahidi Theme" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Theme Settings" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "This" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Today" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "This Month" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "This Week" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "This Year" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "This is your profile." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Time" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Title " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "to" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Today" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Today at" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Total Reports" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Translated" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Translated Description" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Translated Title" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Translate to" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Translation" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Translation has been saved" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Trusted" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Type" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Unable to send email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Uncategorized Reports" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "unread" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Unverified" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Update feeds" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Upload" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "View our report upload guides:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML Upload guide" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV Upload guide" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "File to upload" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Upload Reports" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "With the form below, you can import incidents into the Ushahidi engine." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Reports must be uploaded in either CSV or XML format." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "When incident ID already exists in the database, the entry in the CSV/XML file will be ignored." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "It must contain at least Incident Title and Incident Date." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "If importing additional info i.e personal information and/or custom form fields" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "At least one of the personal information fields(name, surname,email) entries MUST exist. Empty records will not be imported" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Your entries for dropdown fields, radio buttons and checkboxes match the options provided for the custom field on your instance" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Checkbox options are separated by a comma e.g if your selected choice of fruits is apples,mangoes and grapes, your entry for this should be \"apples,mangoes,grapes\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Date field values are in the following format: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "A Sample CSV Report" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Upload Successful" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Upload Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "User" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Username" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Admin" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verification" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verified" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Verified Reports" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verify" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verify this Report" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Version" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "View" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Views" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "View All" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "View all feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "View all reports" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "View Items" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "View More" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "View Public Profile" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "View Report" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "View Reports" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "View Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Waiting Approval" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Waiting Verification" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Wider Map" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web Form" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Weight" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "Weekly" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Yes" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Yesterday" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Your Dashboard" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Your file" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zoom In" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zoom Out" diff --git a/application/i18n/po/po-en_US/ui_main.pot b/application/i18n/po/po-en_US/ui_main.pot new file mode 100644 index 0000000000..492e1746d2 --- /dev/null +++ b/application/i18n/po/po-en_US/ui_main.pot @@ -0,0 +1,3107 @@ +#. extracted from en_US/ui_main.php, en_US/ui_main.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "Or place a spot on the map below, and we will alert you when a report is submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "If you can't find your location, please click on the map to pinpoint the correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "You have successfully confirmed your email address! An administrator must approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "In order to receive reports by email, please input your email account settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "Your account doesn't have the proper permission to fully log you in. Please contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "Account created. Your account must be approved by an admin before you can login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "Thank you for signing up at %1$s. To confirm your email address, please go to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "An new user has signed up at %1$s. To approve their registration please go to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "Your user account has been approved for %1$s. To login go to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "Your Report has been submitted to our staff for review. We will get back to you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "When incident ID already exists in the database, the entry in the CSV/XML file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "If importing additional info i.e personal information and/or custom form fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "At least one of the personal information fields(name, surname,email) entries MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "Your entries for dropdown fields, radio buttons and checkboxes match the options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "Checkbox options are separated by a comma e.g if your selected choice of fruits is apples,mangoes and grapes, your entry for this should be \"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "Date field values are in the following format: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-en_US/upgrade.po b/application/i18n/po/po-en_US/upgrade.po new file mode 100644 index 0000000000..472fafbe61 --- /dev/null +++ b/application/i18n/po/po-en_US/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: English (http://www.transifex.com/ushahidi/ushahidi-v2/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Invalid input data. It can either be 0 for No or 1 for Yes." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatic Upgrade" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Available Updates" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continue" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Upgrade" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "So, I'm going to upgrade your database from version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "to the newest database version" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Click on the \"Upgrade\" button and just chillax as I perform the magic." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Backup database before upgrade? (Highly recommended)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi database upgrade" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Your database version is up to date." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Upgrade failed at some point" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Manual Upgrade" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi upgrade status" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "The instructions below detail how to manually upgrade your Ushahidi deploymentl" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Download
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Download the most recent Ushahidi build from" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "For automatic upgrade, click on the button below." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "You are currently using Ushahidi v%1$s with database version %2$d running on %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Upgrading" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Example: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Password:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP User Name:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "You have the latest version of Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "You do not need to upgrade." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Database version: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Warning: Software version in version.php and database do not match." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Warning: Database version in version.php and database do not match." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Database:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Downloading latest version of ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log File" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Successfully Downloaded. Unpacking..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Failed downloading." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Successfully Unpacked. Copying files..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Failed unpacking." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Successfully Copied. Upgrading Database..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Failed copying files." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Database backup and upgrade successful." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Failed backing up database." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Database upgrade successful." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Deleting downloaded files..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "UPGRADE SUCCESSFUL. View Log File" diff --git a/application/i18n/po/po-en_US/upgrade.pot b/application/i18n/po/po-en_US/upgrade.pot new file mode 100644 index 0000000000..6286d7bef3 --- /dev/null +++ b/application/i18n/po/po-en_US/upgrade.pot @@ -0,0 +1,262 @@ +#. extracted from en_US/upgrade.php, en_US/upgrade.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%1$s with database version %2$d running on %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-es_AR/alerts.po b/application/i18n/po/po-es_AR/alerts.po new file mode 100644 index 0000000000..88508c5803 --- /dev/null +++ b/application/i18n/po/po-es_AR/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El campo correo electrónico parece no tener una dirección de correo electrónica valida." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Ese correo electrónico ya esta registrado para recibir alertas para esa ubicación" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener entre 4 y 64 caracteres." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es obligatorio si el checkbox está marcado." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Por favor seleccione una ubicación dentro de %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "El campo teléfono móvil parece no contener la correcta cantidad de dígitos." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ese numero de teléfono móvil ya esta registrado para recibir alertas en esa ubicación" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "El campo teléfono móvil no parece contener un numero valido. Por favor ingrese los números solo incluyendo el código del paí­s." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Usted debe ingresar su número de teléfono móvil o su dirección de correo electrónico." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "El campo teléfono móvil es obligatorio si el checkbox está marcado." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "No ha seleccionado un radio válido en el mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "No ha configurado su radio en el mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "No tiene suscriptores con alertas" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Está subscripto a las alertas para las categorías siguientes" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "¡Este código ya ha sido verificado anteriormente!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "¡Este código de verificación no ha sido encontrado! Por favor confirme que lo ha ingresado correctamente. Puede usar el formulario que está mas abajo para re-ingresar su código de verificación:" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Su código fue verificado correctamente. Ahora usted va a recibir alertas sobre incidentes que vayan sucediendo." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Para confirmar su solicitud de alerta, por favor vaya a" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Regrese a la página de alertas para crear más alertas" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Su pedido de alerta por correo electrónico ha sido creado y el mensaje de verificación ha sido enviado a " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Por favor ingrese el código de confirmación que recibió por correo electrónico:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "¡Su pedido de alerta por correo electrónico NO ha sido guardado!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "¡Su pedido de alerta por correo electrónico ha sido guardado!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "¡El sistema no pudo procesar su solicitud de confirmación!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Su pedido de alerta móvil ha sido creado y el mensaje de verificación fue enviado a " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Por favor ingrese a continuación el código de confirmación SMS que recibió en su teléfono: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "¡Su pedido de alerta móvil NO ha sido guardada!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "¡Su pedido de alerta móvil ha sido guardada!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Este servidor no está configurado para procesar correctamente las alertas" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Usted ha recibido este correo electrónico porque está suscrito para recibir alertas. Si no quiere seguir recibiendo alertas vaya a" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Ya no recibirá alertas de " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "No pudimos eliminar su suscripción. Por favor confirme que tiene la URL correcta." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertas - verificación" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Usted no va a recibir alertas en esta ubicación hasta que confirme su pedido." diff --git a/application/i18n/po/po-es_AR/auth.po b/application/i18n/po/po-es_AR/auth.po new file mode 100644 index 0000000000..aa6b706df2 --- /dev/null +++ b/application/i18n/po/po-es_AR/auth.po @@ -0,0 +1,254 @@ +# +# Translators: +# audreylingstuyl , 2012 +# jhcaiced , 2012 +# Julia, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Julia\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "El campo correo electrónico parece no contener una dirección de correo electrónico válida." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Lo siento, ya existe una cuenta de usuario que usa ese correo electrónico." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener por lo menos 4 y no mas de 64 caracteres." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "El campo correo electrónico es obligatorio." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "El campo nombre completo debe tener por lo menos 3 y no mas de 100 caracteres." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "El campo nombre completo es obligatorio." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "El campo nombre de usuario contiene caracteres no permitidos." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La contraseña debe tener al menos ocho caracteres" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Combinación de nombre y contraseña incorrecta" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ingrese la misma contraseña en ambos campos" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "El campo contraseña es obligatorio" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El campo contraseña acepta caracteres alfanuméricaos, además de #, @, _ y -" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "La contraseña ingresada es incorrecta" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La contraseña debe tener al menos ocho caracteres" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Combinación de nombre y contraseña incorrecta" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ingrese la misma contraseña en ambos campos" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "El campo contraseña es obligatorio" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El campo contraseña acepta caracteres alfanuméricaos, además de #, @, _ y -" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Error al intentar validar la contraseña" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "El campo clave debe tener por lo menos 5 y no mas de 16 caracteres de largo." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor revise que ha ingresado la clave correcta." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor ingrese la misma clave en ambos campos." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "El campo clave es obligatorio." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "No se puede contactar el servidor de autenticación" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El campo contraseña acepta caracteres alfanuméricaos, además de #, @, _ y -" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "El campo confirmación de la clave debe ser igual al campo clave." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "El campo correo electrónico parece no contener una dirección de correo electrónico valida." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Lo siento, no tenemos su dirección de correo electrónico" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "El campo correo electrónico es obligatorio." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Solo el administrador general puede editar o crear otros administradores" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "El formato del rol es inválido." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "El campo rol debe tener al menos 5 y no más de 30 caracteres de largo." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Usted debe definir al menos un rol." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Usted debe seleccionar el rol ADMIN o USUARIO." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "El indicio de contraseña olvidada es inválido" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Indicio de contraseña olvidada requerido" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "El rol del usuario administrador no puede ser modificado." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "La URL sólo puede incluir números y letras" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Lo siento, este nombre de usuario ya está siendo usado." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "El campo nombre de usuario debe tener por lo menos 2 y no más de 16 caracteres." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Por favor revise que ingreso el nombre de usuario correcto." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "El campo nombre de usuario es obligatorio." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "El rol del usuario super-administrador no puede ser modificado." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Está intentando crear o editar un usuario? (Posible ataque CSRF)" diff --git a/application/i18n/po/po-es_AR/bug.po b/application/i18n/po/po-es_AR/bug.po new file mode 100644 index 0000000000..bcf9b373fe --- /dev/null +++ b/application/i18n/po/po-es_AR/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El campo correo electrónico no contiene una dirección de correo electrónico válida" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es requerido si el checkbox está seleccionado." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "El campo error es requerido." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo asunto debe tener al menos 3 caracteres de largo." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "El campo asunto es requerido." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre debe tener al menos 3 caracteres de largo." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "El campo nombre es requerido." diff --git a/application/i18n/po/po-es_AR/category.po b/application/i18n/po/po-es_AR/category.po new file mode 100644 index 0000000000..bc9b89dcea --- /dev/null +++ b/application/i18n/po/po-es_AR/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "El campo color debe ser de largo 6 caracteres." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "El campo color es obligatorio." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "El campo descripción es obligatorio." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Por favor asegúrese que los tamaños de carga de imágenes están limitados a 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "El campo imagen parece no contener una imagen válida.Los únicos formatos aceptados son .jpg, .png y .gif." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "El campo imagen parece no contener un archivo válido" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "El campo título debe tener por lo menos 3 y no mas de 80 caracteres de largo." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "El campo título es obligatorio." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Esta categoría ya tiene sub-categorías." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "La categoría padre no existe." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "El campo categoría padre debe ser un número." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "No puede utilizar una categoría especial como nivel superior" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "El campo categoría padre es obligatorio." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "La categoría y la categoría padre no pueden ser iguales." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Las categorías especial no pueden tener sub-categorías" diff --git a/application/i18n/po/po-es_AR/comments.po b/application/i18n/po/po-es_AR/comments.po new file mode 100644 index 0000000000..cbaae61d24 --- /dev/null +++ b/application/i18n/po/po-es_AR/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Has introducido un código de seguridad incorrecto" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre debe tener al menos 3 caracteres de largo." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "El campo comentarios es obligatorio." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico parece no tener una dirección de correo electrónico válida." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es obligatorio si el checkbox está marcado." diff --git a/application/i18n/po/po-es_AR/contact.po b/application/i18n/po/po-es_AR/contact.po new file mode 100644 index 0000000000..0943d1d494 --- /dev/null +++ b/application/i18n/po/po-es_AR/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Por favor introduce un código de seguridad válido" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico no contiene una dirección de correo electrónico válida." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es obligatorio si el checkbox está marcado." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "El campo mensaje es obligatorio." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre tiene que tener al menos 3 caracteres de largo." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo asunto tiene que tener al menos 3 caracteres de largo." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "El campo asunto es obligatorio." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Hubo un error al enviar tu mensaje" diff --git a/application/i18n/po/po-es_AR/core.po b/application/i18n/po/po-es_AR/core.po new file mode 100644 index 0000000000..a6c6d20ad8 --- /dev/null +++ b/application/i18n/po/po-es_AR/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "archivo de configuración" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controlador (controller)" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "controlador (driver)" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "El driver %s para la biblioteca %s debe implementar la interfaz %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "El driver %s para la biblioteca %s no puede ser encontrado" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Puede ir a la página principal o intentar de nuevo." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "No es posible completar este pedido" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ayudante (helper)" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "El tipo de archivo solicitado, .%s, no está permitido por el archivo de configuración" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Método inválido %s llamado en %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "La propiedad %s no existe en la clase %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "biblioteca (library)" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "El directorio de log no se puede escribir: %s " + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modelo (model)" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi no pudo encontrar un controlador para ejecutar este pedido: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Por favor seleccione una ruta predeterminada en config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "La página solicitada, %s, no fue encontrada." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Reporte esto a Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "El %s solicitado, %s, no fue encontrado" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Cargado en {execution_time} segundos, utilizando {memory_usage} de memoria. Generado por Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Sólo puede haber una instancia de Ushahidi por cada pedido de página" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Excepción no atrapada %: %s en el archivo %s en la línea %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "vista (view)" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Debe seleccionar el archivo de vistas antes de llamar al render" diff --git a/application/i18n/po/po-es_AR/database.po b/application/i18n/po/po-es_AR/database.po new file mode 100644 index 0000000000..0ae8dab7bf --- /dev/null +++ b/application/i18n/po/po-es_AR/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Error en la Base de Datos: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi" diff --git a/application/i18n/po/po-es_AR/datetime.po b/application/i18n/po/po-es_AR/datetime.po new file mode 100644 index 0000000000..6330434262 --- /dev/null +++ b/application/i18n/po/po-es_AR/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Vie" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Viernes" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Lun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Lunes" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sáb" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sábado" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dom" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Domingo" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Jue" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Jueves" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Martes" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mié" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Miércoles" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ene" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Enero" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Febrero" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marzo" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Abr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Abril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "May" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mayo" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Junio" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Julio" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosto" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Septiembre" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Octubre" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Noviembre" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dic" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Diciembre" diff --git a/application/i18n/po/po-es_AR/feeds.po b/application/i18n/po/po-es_AR/feeds.po new file mode 100644 index 0000000000..b90c7017f6 --- /dev/null +++ b/application/i18n/po/po-es_AR/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "FECHA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "El campo nombre de feed debe tener por lo menos y no más de 70 caracteres de largo." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Por favor ingrese el nombre del feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Por favor ingrese la URL del feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Por favor ingrese una URL válida. Ej: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "FUENTE" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Título" diff --git a/application/i18n/po/po-es_AR/footer.po b/application/i18n/po/po-es_AR/footer.po new file mode 100644 index 0000000000..7fa630106e --- /dev/null +++ b/application/i18n/po/po-es_AR/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl is not installed on this system" diff --git a/application/i18n/po/po-es_AR/form.po b/application/i18n/po/po-es_AR/form.po new file mode 100644 index 0000000000..cf27ea5d9e --- /dev/null +++ b/application/i18n/po/po-es_AR/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# audreylingstuyl , 2012 +# Julia, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 02:37+0000\n" +"Last-Translator: Julia\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "El valor default no es válido" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "El Nombre de Campo debe tener al menos 3 y no más de 200 caracteres de largo." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Por favor ingrese un valor entre 0 y 50 para Alto de Campo" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Usted ha ingresado un valor no valido para Campo Fecha" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Por favor seleccione Si ó³ No para Campo Fecha" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "El Nombre de Campo debe tener por lo menos 3 y no más de 100 caracteres de largo." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Por favor ingrese un Nombre de Campo." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "El nombre de campo que ha entrado ya existe en este formulario. Por favor, ingrese uno distinto." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Usted ha ingresado un valor no válido para Campo Obligatorio" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Por favor seleccione Si ó No para el Campo Obligatorio" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Por favor seleccione un Tipo de Campo Válido." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Por favor seleccione un Tipo de Campo." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Por favor ingrese un valor entre 0 y 200 para Ancho de Campo" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Por favor ingrese la descripción del formulario." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "El formulario por defecto no puede ser eliminado." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Por favor seleccione a cual formulario hay que agregarle este campo." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Por favor seleccione a cual formulario hay que agregarle este campo." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "El campo nombre de formulario debe tener al menos 3 y no más de 100 caracteres de largo." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Por favor ingrese el nombre del formulario." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Ya existe un formulario con este título. Por favor, escoja otro. " diff --git a/application/i18n/po/po-es_AR/imap.po b/application/i18n/po/po-es_AR/imap.po new file mode 100644 index 0000000000..14cd4da00a --- /dev/null +++ b/application/i18n/po/po-es_AR/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "No se pudo abrir el stream IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "El servicio de correo electrónico no está soportado" diff --git a/application/i18n/po/po-es_AR/installer.po b/application/i18n/po/po-es_AR/installer.po new file mode 100644 index 0000000000..27854ae48a --- /dev/null +++ b/application/i18n/po/po-es_AR/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Directorio base" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Base de datos" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Dirección del servidor de base de datos" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Si esta utilizando Ushahidi en su propio computador, esta dirección deberá ser \"localhost\". Si lo está utilizando en un servidor externo, deberá obtener esta información del proovedor del servidor" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "El nombre de la base de datos que utilizará Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Para más información vea este artículo en nuestro wiki, que describe bases de datos en más detalle" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Idioma" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Cada instancia de Ushahidi posee algunos idiomas. Ud también puede agreagar otros" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Deshabilitar" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Habilitar" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Esta es una lista de los errores que encontramos" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "El directorio en su servidor donde se han copiado los archivos de Ushahidi. Esta valor fue deetectado automáticamente, por favor verifique que sea correcto. Si este campo está vacío, significa que Ushahidi está instalado en el directorio raíz" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Terminado" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "General" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Llave del API de Google" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Obtenga su llave del API de Google. aquí" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Retroceder" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALACIÓN AVANZADA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Obtiene toda la información para la instalación por medio de un proceso de cinco pasos, incluyendo servidor, mapar, nombre del sitio y detalles de contacto" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALACIÓN BÁSICA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple y rápida. Todo lo que necesita es el nombre del directorio raíz del servidor web y la información de la base de datos. Elija esta opción para realizar una instalación rápida. Luego de la instalación, puede completar la configuración del sistema en otro momento" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Proceder" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Bienvenido al proceso de instalación de Ushahidi. Escoja que tipo de instalación le gustaría realizar" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalación Exitosa" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Servidor de Correo" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Servidor de email" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Ejemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Contraseña" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "La contraseña de la cuenta de correo" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Puerto TCP del servidor de email" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Puertos comunes: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipo de servidor de email" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). Cuál es la diferencia?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Usuario del servidor de email" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Si utiliza una cuenta de Gmail, Hotmail, o Yahoo Mail, use la direeción de email completa para el nombre de usuario" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Proveedor de Mapas" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi puede utilizar los siguientes proveedores de mapas: Google, Bing, Yahoo or Open Street Map. Escoja el que posea mayor nivel de detalle para el área que le interese" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Otros pasos..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Contraseña" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Contraseña de la base de datos" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Anterior" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Por favor reinicie Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Habilita o deshabilita conexiones seguras" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Algunos servidores de email tienen la opción de utilizar SSL al establecer una conexión. Se recomienda utilizar SSL ya que provee mayor seguridad al encriptar las comunicaciones" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Configure un servidor SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Dirección de email del sistema" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Dirección de email para alertas" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Dirección de email para enviar alertas a los usuarios que lo soliciten. Esta dirección debe ser distinta a la dirección de email del sistema" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Todos los mensajes del sitio utilizarán esta dirección" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nombre del sitio" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "El nombre que desea utilizar para este sitio web" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Subtítulo" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "El subtítulo del sitio" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "El servidor web debe tener permiso de escritura a los siguientes archivos y directorios" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Puede encontrar más información en cómo administrar permisos en:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Antes de comezar asegurese que el servidor web tenga permiso de escritura a los siguientes archivos y directorios. Puede ser necesario cambiar los permisos en forma manual" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "La siguiente información será necesaria para el proceso de instalación" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefijo para las tablas" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Usualmente no se utiliza ningún prefijo. Sin embargo, si se utilizan múltiples instancias del sistema en la misma base de datos, se debe colocar un prefijo para cada una" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Título" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Para ingresar, vaya a" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Subir reportes" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Usuario" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "El usuario de la base de datos" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "y utilice este usuario y contraseña" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Vea su sitio web" diff --git a/application/i18n/po/po-es_AR/layer.po b/application/i18n/po/po-es_AR/layer.po new file mode 100644 index 0000000000..1359310d2f --- /dev/null +++ b/application/i18n/po/po-es_AR/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "El color seleccionado debe tenere seis caracteres" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Se requiere un color" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "El archivo especificado no es v" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "El archivo especificado no es v" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "El nombre debe tener entre tres y 80 caracteres" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Se requiere un nombre" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Se requier un archivo o un URL de un KML" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "No se puede especificar un URL y un archivo KML. Utilize solamente uno" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Por favor ingrese un URL v" diff --git a/application/i18n/po/po-es_AR/libraries.po b/application/i18n/po/po-es_AR/libraries.po new file mode 100644 index 0000000000..a4b99c9127 --- /dev/null +++ b/application/i18n/po/po-es_AR/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-10 02:28+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "No es posible conectarse al servidor de Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "No es posible recibir una respuesta de Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "El API: %s para la clase %s no se encuentra. Verifique la tabla de ruteo del API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "La llave API de Akismet no es válida" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error intentando realizar un fopen al enviar.
Verifique que PHP soporta OpenSSL y que la versión de PHP es mayor a 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "El mensaje es demasiado largo. (Largo actual=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Debe especificar una dirección de destino (A)" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Debe especificar una dirección de origen (DE)" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "El mensaje en Unicode es demasiado largo. (Largo actual=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Método de envío no soportado" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "La librería de API %s no es válida. Todas las librerías de API deben ser subclases de %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "El directorio %s no puede ser borrado" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Error cuando se extraía: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "La descarga de la última versión de Ushahidi falló. Código HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "El archivo %s no puede ser copiado" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "El archivo %s no puede ser borrado" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Programa para la actualización de Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "El archivo comprimido %s, no puede ser escrito" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s no está disponible en la clase RiverID." diff --git a/application/i18n/po/po-es_AR/maintenance.po b/application/i18n/po/po-es_AR/maintenance.po new file mode 100644 index 0000000000..3a839b5954 --- /dev/null +++ b/application/i18n/po/po-es_AR/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Lo sentimos, estamos en mantenimiento. Por favor intenta de nuevo en algunos minutos. Gracias." diff --git a/application/i18n/po/po-es_AR/message.po b/application/i18n/po/po-es_AR/message.po new file mode 100644 index 0000000000..c7b150e181 --- /dev/null +++ b/application/i18n/po/po-es_AR/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo Email parece no tener una dirección de email válida?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo Email debe tener al menos 4 y no más de 64 caracteres de largo." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo Email es obligatorio cuando el checkbox está marcado.." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "El campo comentarios es obligatorio." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre debe tener al menos 3 caracteres de largo." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "El campo teléfono no es válido." diff --git a/application/i18n/po/po-es_AR/mhi.po b/application/i18n/po/po-es_AR/mhi.po new file mode 100644 index 0000000000..87482a808b --- /dev/null +++ b/application/i18n/po/po-es_AR/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico no contiene una dirección de correo electrónico válida." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Por favor ingrese una dirección de correo electrónico válida." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "El campo mensaje es requerido." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo asunto debe tener al menos 3 caracteres." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "El campo asunto es requerido." diff --git a/application/i18n/po/po-es_AR/notifications.po b/application/i18n/po/po-es_AR/notifications.po new file mode 100644 index 0000000000..983a12895c --- /dev/null +++ b/application/i18n/po/po-es_AR/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# panic , 2012 +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Este mensaje ha sido enviado desde su página web." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login Administrador" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Un nuevo comentario ha sido publicado en su página web en respuesta a: " + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nuevo Comentario" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Un nuevo email ha sido publicado en su página web" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nuevo mensaje email" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Su sitio ha recibido un nuevo reporte" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nuevo reporte" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Un nuevo mensaje de texto ha sido publicado en su página web" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nuevo mensaje de texto" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Ha recibido una alerta." + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nueva alerta." + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Ha recibido un mensaje privado" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nuevo mensaje privado" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Para responder diríjase a: " diff --git a/application/i18n/po/po-es_AR/page.po b/application/i18n/po/po-es_AR/page.po new file mode 100644 index 0000000000..aa86d0a0fd --- /dev/null +++ b/application/i18n/po/po-es_AR/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Por favor introduce un Título de Página" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "El Título de la página debe tener entre 3 y 150 caracteres" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Por favor introduce una etiqueta para la página" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Por favor introduce una descripción para la página" diff --git a/application/i18n/po/po-es_AR/permissions.po b/application/i18n/po/po-es_AR/permissions.po new file mode 100644 index 0000000000..018916967c --- /dev/null +++ b/application/i18n/po/po-es_AR/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Ver Reportes" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crear/Editar Reportes" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprobar Reportes" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar Reportes" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Administrar Comentarios" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descargar Reportes" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Subir Reportes" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Administrar Mensajes" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Administrar Informantes" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ver Estadísticas" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificar Configuración" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Administrar Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Administrar Usuarios" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Administrar Roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Ver Checkins" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Administrar Checkins" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acceso Administración" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acceso Miembros" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-es_AR/private_message.po b/application/i18n/po/po-es_AR/private_message.po new file mode 100644 index 0000000000..860fe1c67f --- /dev/null +++ b/application/i18n/po/po-es_AR/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "El Parent ID debe ser numérico" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "El campo \"A:\" es obligatorio" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "El usuario al que deseas hacer el envío, no existe" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "El campo \"Asunto\" es obligatorio." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "El Asunto debe tener entre 3 y 150 caracteres en total" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "El campo \"Mensaje\" es obligatorio" diff --git a/application/i18n/po/po-es_AR/report.po b/application/i18n/po/po-es_AR/report.po new file mode 100644 index 0000000000..f19c36896b --- /dev/null +++ b/application/i18n/po/po-es_AR/report.po @@ -0,0 +1,395 @@ +# +# Translators: +# audreylingstuyl , 2012 +# Julia, 2013 +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-30 03:13+0000\n" +"Last-Translator: Julia\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "¡Hubo un error!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "La ubicación del reporte debe estar dentro del país seleccionado en la configuración del sistema %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Por favor, introduzca un valor válido para el campo \"% s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "El campo \"%s\" debe ser numérico" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "El campo \"%s\" es requerido." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "El campo \"%s\" no existe." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "El campo \"%s\" no puede ser editado por su cuenta." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "El campo \"%s\" debe conterner una dirección de correo electrónico válida." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "El campo \"%s\" debe contener un número de teléfono válido" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "El campo \"%s\" debe contener una fécha válida (MM/DD/YYYY)" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "El campo \"%s\" debe contener una fecha válida (DD/MM/YYYY)" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Por favor seleccionar un item válido para incluir en la descarga" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Por favor seleccionar un item válido para incluir en la descarga" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor seleccione \"Reportes Esperando Verificación\" o \"Reportes Verificados\" o ambos." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor seleccione \"Reportes Esperando Verificación\" o \"Reportes Verificados\" o ambos." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor seleccione \"Reportes Esperando Verificación\" o \"Reportes Verificados\" o ambos." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Por favor seleccionar un tipo válido de informe a descargar" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Por favor seleccionar un tipo válido de informe a descargar" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Por favor seleccionar un tipo válido de informe a descargar" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Debe seleccionar un formato de descarga. Seleccione CSV o XML" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Por favor, seleccione un formato válido para descargar sus reportes." + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "El campo fecha DESDE parece no contener una fecha válida?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Por favor ingrese una fecha DESDE válida. No puede ser mayor al día de hoy." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Por favor ingrese un valor válido para Aprobar Este Informe" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Por favor ingrese un valor válido para Aprobar Este Informe" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "El campo am/pm parece no contener un valor válido?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "El campo categoría parece no contener una categoría válida?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "El campo categoría es obligatorio." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "El campo fecha parece no contener una fecha válida?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "El campo fecha parece no contener una fecha válida?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "El campo fecha es obligatorio." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "El campo descripción es obligatorio." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "El campo hora parece no contener una hora válida?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "El campo hora es obligatorio." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Por favor ingrese un valor válido para Information Probability" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Por favor ingrese un valor válido para Information Probability" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "El campo hora parece no contener una hora válida?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "El campo hora es obligatorio." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "El campo enlaces a fuentes de noticias parece no contener una URL válida?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Por favor que los tamaños de las fotos subidas no tienen más de 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "El campo Subir Fotos parece no contener una imágen válida. Los únicos formatos aceptados son .JPG, .PNG y .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "El campo Subir Fotos parece no contener un campo válido" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Por favor ingrese un valor válido para Source Reliability" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Por favor ingrese un valor válido para Source Reliability" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "El campo titulo debe tener al menos 3 y no más de 200 caracteres de largo." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "El campo titulo es obligatorio." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Posible ataque CSRF. ¿Realmente quiere crear/editar un reporte?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Por favor ingrese un valor válido para Verificar Este Informe" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Por favor ingrese un valor válido para Verificar Este Informe" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "El campo enlaces a vídeo parece no contener una URL válida?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The latitude field is required." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "El campo locale tiene un valor incorrecto. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Este informe ya tiene una traducción para ese idioma" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "El campo locale tiene un valor incorrecto. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "El Informe Original y la Traducción tienen el mismo locale (idioma)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "El locale es obligatorio." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "El campo nombre de lugar debe tener al menos 3 y no más de 200 caracteres de largo." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "El campo nombre de lugar es obligatorio." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "El campo longitud parece no contener una longitud válida?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El campo longitud es obligatorio." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "El campo email parece no contener una dirección de email válida?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El campo email debe tener al menos 4 y no más de 64 caracteres de largo." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "El campo nombre debe tener al menos 3 y no más de 100 caracteres de largo." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "El campo apellido debe tener al menos 3 y no más de 100 caracteres de largo." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "El campo fecha HASTA parece no contener una fecha válida?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Por favor ingrese una fecha HASTA válida. No puede ser mayor al día de hoy." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Su fecha DESDE no puede ser mayor a su fecha HASTA." diff --git a/application/i18n/po/po-es_AR/reporters.po b/application/i18n/po/po-es_AR/reporters.po new file mode 100644 index 0000000000..59bae32766 --- /dev/null +++ b/application/i18n/po/po-es_AR/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# audreylingstuyl , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "El campo latitud parece no contener una latitud válida." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El campo latitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El campo Nivel de Reporte parece no contener una nivel válido." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El campo \"Informante\" no parece ser válido" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "El campo nombre de ubicación debe tener al menos 3 y no más de 200 caracteres de largo." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "El campo ubicación es requerido." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "El campo longitud parece no contener una longitud válida." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El campo longitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Informante no válido" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "nformante no válido" diff --git a/application/i18n/po/po-es_AR/reports.po b/application/i18n/po/po-es_AR/reports.po new file mode 100644 index 0000000000..6a793fe962 --- /dev/null +++ b/application/i18n/po/po-es_AR/reports.po @@ -0,0 +1,54 @@ +# +# Translators: +# audreylingstuyl , 2012 +# José Jiménez , 2013 +# Oscar Caicedo , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-12 20:37+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifica que has seleccionado un ítem." + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifica que has seleccionado un ítem." + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Los reportes deben ser categorizados antes de ser aprobados." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "No tienes permisos para realizar esta acción." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Debes seleccionar un archivo para cargar" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "El archivo a subir debe ser del formato .csv o .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "El campo Carga de Archivos no parece contener un archivo válido" diff --git a/application/i18n/po/po-es_AR/roles.po b/application/i18n/po/po-es_AR/roles.po new file mode 100644 index 0000000000..93b9e48008 --- /dev/null +++ b/application/i18n/po/po-es_AR/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "El campo descripción debe tener al menos 3 y no más de 100 caracteres." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "El campo descripción es requerido." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "El campo nombre debe contener solo números y letras." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "El campo nombre debe tener al menos 2 y no más de 30 caracteres." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "El rol de SuperAdmin no puede ser modificado." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "El campo nombre es requerido." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Nivel de accesso debe ser un número entre 0 y 100" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Nivel de accesso debe ser un número entre 0 y 100" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Los permisos del campo deberá ser un número entre 0 - 100." diff --git a/application/i18n/po/po-es_AR/settings.po b/application/i18n/po/po-es_AR/settings.po new file mode 100644 index 0000000000..db25f38558 --- /dev/null +++ b/application/i18n/po/po-es_AR/settings.po @@ -0,0 +1,861 @@ +# +# Translators: +# audreylingstuyl , 2012 +# Juan Ignacio Lacueva , 2014 +# Julia, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "El campo comentarios permitidos no contiene un valor válido." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "El campo comentarios permitidos es obligatorio." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "El campo incluir feed no contiene un valor válido?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "El campo incluir feed es obligatorio." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "El campo incluir feed es obligatorio." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "El campo Permitir Alertas no contiene un valor válido." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Es campo Permitir Alertas es obligatorio." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "El campo informes permitidos no contiene un valor válido." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "El campo informes permitidos es obligatorio." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "El campo Compartir Estadísticas no contiene un valor válido." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "El campo Compartir Estadísticas es obligatorio." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Número de registros a obtener en cada llamada al API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Máximo número de registros a obtener en cada llamada al API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Máximo número de llamadas al API por cada dirección IP cliente" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El campo Akismet no contiene un valor válido." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El campo Akismet no contiene un valor válido." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "El campo Banner del Sitio parece contener una imagen no válida. Los únicos formatos aceptados son . JPG,. PNG y. GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Por favor, asegúrese de que el tamaño de la imagen del banner es menor que 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "El campo \"imagen de banner\" no contiene un archivo válido." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "El campo Páginas de Caché es obligatorio." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "El campo Páginas de Caché no contiene un valor válido." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "El campo Duración de Páginas en Caché no contiene un valor válido." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "El campo Duración de Páginas en Caché es obligatorio." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Parece que su servidor no está configurado para soportar URLs limpias. Es necesario que cambie la configuración de su servidor antes de que pueda habilitar las URLs limpias. Vea más información sobre cómo habilitar URLs limpias en este mensaje (en inglés)" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Esta opción permite que se pueda acceder a Ushahidi via URLs \"limpias\", es decir sin \"index.php\" en la URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Habilitar URLs limpias." + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs limpias." + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "El campo número de API Clickatell debe tener a lo más 20 caracteres de largo." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "El campo número de API Clickatell es obligatorio." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "El campo clave de Clickatell debe tener al menos 5 y no más de 50 caracteres de largo." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "El campo clave de Clickatell es obligatorio." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "El campo nombre de usuario Clickatell debe tener a lo más 50 caracteres de largo." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "El campo nombre de usuario Clickatell es obligatorio." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configure el Mapa" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Ubicación Predeterminada" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "El campo color del feed no contiene un valor válido." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "El campo color debe tener a lo más 6 caracteres." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "El campo color es obligatorio." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Vista predeterminada" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nivel de detalle predeterminado" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Descargar lista de ciudades" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "El puerto del servidor de correo es demasiado largo" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "El puerto del servidor de correo debe ser un número." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "La contraseña del servidor de correo debe tener al menos 5 y no más de 50 caracteres de largo." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "La contraseña del servidor de correo es obligatoria." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "El puerto del servidor de correo es demasiado largo" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "El puerto del servidor de correo debe ser un número." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "El campo Tipo de Servidor de Correo excede la longitud máxima." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "El campo Tipo de Servidor de Correo es obligatorio" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "El campo Usuario de Servidor de Correo excede la longitud máxima (50)." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "El campo Usuario de Servidor de Correo es obligatorio." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opciones de configuración de Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Para obtener esta información deberá crear una nueva apliçación en" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "ID de Aplicación de Facebook" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Secreto de Aplicación de Facebook" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "El campo Google Analytics debe contener un ID Web Property válido en el formato UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "habilitar HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Esta opción permite transmisión de datos sin cifrado (protocolo HTTP)" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Esta opción permite transmisión de datos cifrados (protocolo HTTPS) y brinda mayor seguridad" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "El campo items por página (Frontend) parece no contiene un valor válido." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "El campo items por página (Frontend) es obligatorio." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "El campo items por página (Admin) no contiene un valor válido." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "El campo items por página (Admin) es obligatorio." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Ingrese la información de configuración del proveedor de servicios de mapeo" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nivel de zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Escoja un proveedor" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Ingrese la llave del API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Obtenga la llave del API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Ingrese la información de configuración del proveedor de servicios de mapeo" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Proveedor de Mapas" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Línea de Tiempo" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Configuración del Mapa" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "¿Este sistema se utiliza en múltiples países?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Por favor escoja el país predeterminado" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Seleccione la ubicación exacta en el mapa" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Agrupar los reportes en el mapa" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Cualquiera puede agregar información a los reportes" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Incluir noticias?" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Crear nueva Categoría desde feeds" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Permitir que los usuarios se suscriban a las alertas" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Permitir a los usuarios a enviar reportes" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Llave API de Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Cartel en la página principal" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Bloques por fila" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Páginas de caché" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Duración de las páginas de caché" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Habilitar Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Mensaje de derechos de autor" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Colores predeterminados para las categorías" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Icono predeterminado para todas las categorías" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Borrar el cartel de la página principal" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Borrar ícono predeterminado" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Mostrar página de contactos" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Muestra página \"Cómo Ayudar\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Dirección de correo electrónico para las alertas" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Para recibir reportes por correo electrónico, por favor configure su cuenta de correo electrónico." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Dirección de correo electrónico del sistema" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Servicio de estadísticas de Google (Google Analytics)" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Items por Página - Página Inicial" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Items por Página - Administración" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Evite recibir correo basura utilizando Akismet.
Puede obtener una llave gratuita registrando una cuenta de WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Configuración de Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Website Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Idioma del sitio" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Aprobar nuevos usuarios manualmente" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Mensaje en página principal" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nombre del sitio" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Sitio privado" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Verificar la dirección de correo de los usuarios" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Enviar un mensaje con el reporte" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Compartir las estadísticas del sitio" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Subtítulo" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Zona horaria" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Configuración del Sistema" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Configuración de Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags (Separar con comas)" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "El campo email del sitio parece no contener una dirección de email válida?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "El campo email del sitio debe tener al menos 4 y no más de 100 caracteres de largo." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "El campo nombre del sitio debe tener al menos tres y no más de 50 caracteres de largo." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "El campo nombre del sitio es obligatorio." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "El campo tagline debe tener al menos 3 y no más de 100 caracteres de largo." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "El campo tagline es obligatorio." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Clave del API" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Saldo de Cuenta" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Cargar Saldo" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Clave" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Asociése al servicio Clickatells seleccionando aquí" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Ingrese su información de cuenta de Clickatell" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Usuario" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Descargar e instalar FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Ingrese el número telefónico para ingreso a Frontline SMS" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Ingrese el número sin \"+\" ni guiones" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Opción 1: Use Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Opción 2: Use un sistema SMS externo" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Opciones de Configuración SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "El campo teléfono 1 no es válido." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "El campo teléfono 1 debe contener sólo números." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "El campo teléfono 2 es demasiado largo" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "El campo teléfono 2 debe contener sólo números." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "El campo teléfono 3 es demasiado largo" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "El campo teléfono 3 debe contener sólo números." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Opciones de configuración de Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Para obtener la información a continuación, configura el sitio como una nueva aplicación de Twitter en" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Llave de seguridad" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Token de acceso" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Clave de Token de Acceso" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Probar la configuración" diff --git a/application/i18n/po/po-es_AR/sharing.po b/application/i18n/po/po-es_AR/sharing.po new file mode 100644 index 0000000000..e6d1679807 --- /dev/null +++ b/application/i18n/po/po-es_AR/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Fecha de ingreso" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Agregado el" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Último acceso" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "El campo color debe tener 6 caracteres de largo." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "El campo color es obligatorio." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "El nombre para Compartir no parece ser válido." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Un nombre para Compartir es requerido." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "The site url already exists" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "La URL del sitio no es válida." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "La URL del sitio es obligatoria." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "The site url field does not appear to contain a valid URL?" diff --git a/application/i18n/po/po-es_AR/stats.po b/application/i18n/po/po-es_AR/stats.po new file mode 100644 index 0000000000..11b6c614ab --- /dev/null +++ b/application/i18n/po/po-es_AR/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprobado" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorías" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Por Categorías" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Este gráfico presenta una vista linear de los reportes, clasificados por categoría. Desplácese de un lado a otro para comparar las diferentes categorías. Mueva el puntero sobre el gráfico para más detalles" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Escoja un rango de fechas" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Países" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "País" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Por País" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Esta es la sección de estadísticas. Use los enlaces para obtener diferentes vistas de la información recolectada" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Error" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glosario" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Conexiones" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Códigos" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Número de páginas visitadas" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "El número total de páginas que los visitantes han mirado en este sitio" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Reportes" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categorías de Reportes" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Estadísticas de Reportes" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Estado de los Reportes" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Incidencia Hora/Día" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Estadísticas de Reportes" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "La configuración de estadísticas no esta completa" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Mes" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Meses" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Meses" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Todos" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "No Aprobado" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitantes" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Es la cantidad de personas que han visitado este sitio, y se determina utilizando cookies. Si el navegador del visitante no acepta cookies, la visita es registrada utilizando su dirección de IP, el navegador, plugins instalados, sistema operativo, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "No Verificados" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificado" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Visitantes" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visitas" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Una \"visita\" es un visitante al sitio que hace al menos 30 minutos que no mira una página de esta sitio" diff --git a/application/i18n/po/po-es_AR/tooltips.po b/application/i18n/po/po-es_AR/tooltips.po new file mode 100644 index 0000000000..4e0ea18c1c --- /dev/null +++ b/application/i18n/po/po-es_AR/tooltips.po @@ -0,0 +1,586 @@ +# +# Translators: +# audreylingstuyl , 2012 +# Julia, 2013 +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Esto agrega el reporte a categorías adicional. Si aquí selecciona Categoría 1 y el reporte ya tiene Categoría 2 agregado a él, el reporte entonces tendrá Categoría 1 y Categoría 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprueba un reporte o no. Zi aprueba, " + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Será capaz de asignar una medalla al usuario siendo activado. Indique la medalla que será asignada aquí." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Este es un rango de horas y/o minutos entre dos tiempos en format 24 horas. Si ingresa un tiempo anterior en el segundo campo, este será intercambiado con el primero. Este tiempo deberá estar en un simple día. Además, este tiempo es chequeado nuevamente la veces que haya configurado en el área de ajustes de su sitio y no necesariamente la zona horaria del usuario interactuando con su instalación. Dejar esto en 00:00 a 00:00 para ignorar este cualificador." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Si desea que los disparadores se activen solamente cuando se está utilizando una determinada categoría, esto puede definirse aquí. Esto permitirá que un disparador sea activado sólo si se utiliza una de las categorías predefinidas. Por ejemplo, si se ha seleccionado \"categoría 1 y categoría 2\" y luego un informe es remitido utilizando las categorías 2 y 3, pasará la prueba." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Si estas acciones ocurren en ciertos días de la semana, configure aquí esa información. Tenga en cuenta la fecha que se determina según la zona horaria configurada en la implementación. Mantenga pulsado SHIFT, comando, o control para la selección de varios días." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "El cuerpo del email que será enviado." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Título del email que será enviado." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Este es el título por defecto para agregar al reporte." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Aquí pueden seleccionarse varios días. Las fechas son determinadas por el huso horario configurado en su implementación. Si no se selecciona ninguna fecha, el sistema mostrará por defecto todas las fechas." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marque un reporte como verificado o no." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separe cada valor con una coma. Ejemplo: valor1, valor2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separe cada valor con una coma. Ejemplo: valor1, valor2. En caso que quiera establecer una valor por defecto, finalice la lista de opciones con ::. Ejemplo: Si quiere hacer valor3 el valor por defecto, entonces deberá ser: valor1, valor2, valor3::valor3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Serpare cada item de elección con coma. Ejemplo Item 1, Item 2, etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Comenzar escribiendo la lista de miembros." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Título del mensaje privado" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mensaje Privado" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Puede seleccionar un color que aparecerá bajo la imagen de perfil de su perfil público. Este color será también el que aparecerá en el mapa en sus registros" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Su dirección de correo electrónico" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Su nombre completo" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Seleccionado YES le permite recibir alertas por correo electrónico cuando nuevos reportes o comentarios sean publicados en su sitio web" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Su contraseña. Deje este campo en blanco si desea mantener su contraseña actual" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Esta es la dirección donde su perfil público puede ser encontrado." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Su nombre de usuario no puede ser modificado" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Esta es la dirección de correo electrónico que será usada para enviar alertas." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Permite a los usuarios suscribirse a alertas vía la web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Esto permite agrupar reportes similares en un único punto en el mapa" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permite a los usuarios comentar en los reportes del sitio principal" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Permite mostrar feeds de noticias RSS en el sitio principal " + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Permite a los usuarios enviar información a través de un formulario web." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Número predeterminado de registros que serán devueltos en cada llamado a la API " + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Número máximo de registros que serán devueltos en cada llamado a la API " + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Número máximo de llamados a la API por dirección IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Número de columnas Bloques que será desplegado en cada fila." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Habilita o deshabilita el caché. Esto acelera la carga de página reduciendo los tiempos de respuesta. Recomendamos usar caché en sitios con alto tráfico. **Recuerde que los reportes serán cargados en el front end en base al tiempo que fije más abajo (Tiempo de vida del caché)" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Configura el tiempo de vida del caché." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Configura el mapa para cubrir un lugar en particular" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Establecer un código de color para todas las categorías en el sitio." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Establecer un ícono para todas las categorías en el sitio." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "País en que el sitio está funcionando" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Muestra o no la pestaña de Contacto en el sitio principal." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Muestra o no la pestaña de Ayuda en el sitio principal." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Número de reportes mostrados por página en el sitio principal." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Número de reportes mostrados por página en el Back End de administración." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Este es el hub para mensajes entrantes." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Sincroniza los mensajes en el hub con la plataforma Ushahidi." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Números de teléfonos donde los mensajes de texto son recibidos." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Sigue a los visitantes de su sitio. Obtenga estadísticas detalladas de los visitantes" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Configura el idioma que será usado en el sitio." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Define qué mapa será usado en el sitio" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Muestra la línea de tiempo basada en la fecha y hora en que los reportes fueron entregados." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Configurando este valor como true o yes hará que el sitio sea privado, de manera que sólo usuarios con cuentas podrán acceder al sitio." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Esto es donde los e-mails residen." + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Contraseña de la dirección de correo electrónico que recibe los reportes" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Requerido para poder aceptar conexiones entrantes desde la dirección de correo electrónico" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Requerido para permitir una conexión segura" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Esto es requerido para recibir e-mails desde el servidor." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Dirección de correo electrónico que recibe los reportes" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Las estadísticas de visitas son almacenadas en un servidor controlado por Ushahidi. Al habilitar esta opción, usted podrá ver las estadísticas directamente en el panel de administración. Deshabilitándola, dejará de poder ver las estadísticas de tráfico." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Siempre es una buena idea reclamar derechos de autor sobre su trabajo. Visite http://creativecommons.org/choose/ para determinar la licencia adecuada." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Dirección de correo electrónico que recibirá los reportes y los mensajes del formulario de contacto." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Texto que aparecerá sobre el mapa en la página de inicio. Esto es útil para entregar información importante a los visitantes del sitio. Para eliminar la caja, simplemente borre este mensaje." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Este es el nombre del sitio que aparece en la parte superior del sitio principal" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Explique en pocas palabras de que se trata este sitio." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Esta es la zona horaria con la que funcionará su sitio. Esto tendrá un impacto en las acciones que haya configurado que requieran hora y fecha, así como en los informes por defecto de la hora actualizada en el frente y parte trasera del sitio." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Configure el hashtag de twitter que será usado en los tweets" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-es_AR/ui_admin.po b/application/i18n/po/po-es_AR/ui_admin.po new file mode 100644 index 0000000000..c2cc5b0777 --- /dev/null +++ b/application/i18n/po/po-es_AR/ui_admin.po @@ -0,0 +1,1662 @@ +# +# Translators: +# panic , 2012 +# audreylingstuyl , 2012 +# jhcaiced , 2012 +# jose sabastizagal , 2013 +# Mauricio Manzo , 2013 +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Acceso denegado. Las credenciales no son válidas o el pedido ha sido denegado" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Acceso denegado. El pedido fue recibido, pero denegado. Intente más tarde" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nivel de acceso" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Agregar a categoría" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "agregado" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "agregado/editado" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Extensiones" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrador" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertas" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertas Recibidas" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Todos" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anónimo" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Todos" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Todo Lugar" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Bloqueadas" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Registros del API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Configuración API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "DESBLOQUEAR" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "DESBLOQUEAR TODOS" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "aprobado" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Aprobar automáticamente" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprobar manualmente" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archivado" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Está seguro que quiere" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Está seguro que quiere eliminar este item" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Está seguro que quiere eliminar esta foto" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Confirme cambio de formulario" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Assignar" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Asignaciones" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Assignar Distintivo" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Correo electrónico del autor" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Volver" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Bloquear IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre horas" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloques" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Cuerpo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Error al mostrar el gráfico" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Mensaje no válido" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Verifique el número de destino" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Revise la configuración de SMS" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalles de Checkin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Ciudades cargadas" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "Sistema" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versión del sistema fuera de syncronización" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Color" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Su código de verificación es: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "El usuario ha sido" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Conteo" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "No se encuentra el país" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "creado/editado" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Crear un Reporte" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Actualización crítica" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Actualmente active" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Actualmente inactivo" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "No posee permiso para editar estos campos." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Cada día" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Tablero de Control" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "Base de datos" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Fecha y Hora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Fecha (agregado)" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Fecha (modificado)" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Días de la semana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "La versión de la base de datos está desincronizada" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "borrado" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Borrar" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Borrar Distintivo" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demostración" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descripción" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Deshabilitado" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Comienza Divisor" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Finaliza Divisor" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Descargar Reportes" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Opciones del menú" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITADO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editado por" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editar" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Registro de ediciones" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Todos" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Error en la geocodificación" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "La librería IMAP PHP no está instalada" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Credenciales incorrectas" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Error" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, no se pudo publicar el incidente" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Cada seis horas" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Cada 12 horas" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Preguntas Frecuentes" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "Boletín" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "Boletines" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista de opciones" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valor predeterminado" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipo de dato" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerico" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Texto libre" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altura (en líneas)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Campo oculto" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Longitud en caracteres" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nombre del campo" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Invertir" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "No" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Si, cerrado por omisión" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Si, abierto por omisión" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "No se encuentra el archivo cargado" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "No se puede leer el archivo" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ese formulario no existe" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Foro" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Campo de texto libre" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Campo fecha" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Opciones excluyentes" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Opciones combinadas" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Lista de opciones" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Error de Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Obtener ayuda" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obtener más temas" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obtener más plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Agregar/Editar" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Administrar usuarios" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rol" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Usuario" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ayuda" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "por hora" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Suscripción de reportes por" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "La carpeta installer todavía existe. Borre la carpeta installer. Esto es una vulnerabilidad potencial de seguridad." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instancia" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instancias" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalles de la instancia" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parámetro inválido" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Dirección IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Es un campo de fecha?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Visible para" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Editable para" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Palabra clave" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Palabras clave" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Dirección de email:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nombre completo:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Contraseña:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rol:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Usuario:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Salir" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Bitácora" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Administrar" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Administrar Roles y Permisos" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Ver Usuarios" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Agregar/Editar Usuarios" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Administrar Vista Pública" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marcar como" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcar como mensaje válido" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcar como correo basura" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "no se encontraron documentos" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mensaje" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mensajes" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mensajes de Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Tweets" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Mensaje enviado" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutos" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Falta un parámetro" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificado" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modificar zona horaria" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "mover hacia abajo" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "mover hacia arriba" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Múltiples instancias" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "MisAlertas" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Mis Checkins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Mi Perfil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Mis Reportes" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votos" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positivo" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativo" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nombre" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Crear una alerta" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Crear un mensaje" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nueva contraseña" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "No" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Categoría especial que se asigna a los reportes cuando su categoría principal es eliminada." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificación" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "No hay proceso clasificado" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "No encontrado" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Sin datos, no hay resultados para mostrar." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Sin error" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "No hay resultados para mostrar." + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Sobre Conteo Específico" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "página" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "páginas" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "página no encontrada " + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Lamentablemente, la página a la que estás intentando acceder no está aquí.

¿Hiciste clic en un vínculo de alguna página de nuestro sitio?
Si llegaste a esta página desde otra parte de nuestro sitio, comunícate con nosotros para que podamos resolverlo.

¿Usaste un vínculo de otro sitio?
Los vínculos de otros sitios puedes estar desactualizados o incluir errores tipográficos. Indícanos de dónde provienes para que intentemos comunicarnos con el otro sitio y resolver el problema.

¿Escribiste la URL?
Es posible que hayas escrito incorrectamente la dirección (URL). Verifica que la hayas escrito sin errores tipográficos y que hayas usado correctamente las mayúsculas y minúsculas, etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Lamentablemente, la página a la que está intentando acceder no está aquí." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parámetros utilizados" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Contraseña" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Reiniciar contraseña" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Sr/Sra" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Hemos recibido un pedido para cambiar la contraseña de" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Para cambiar su contraseña, por favor seleccione el enlace siguiente (o copielo y péguelo en la barra de de direcciones de su navegador)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Como lo ha solicitado, su contraseña a sido cambiada. El usuario y contraseña son ahora estos" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Pedido de nueva contraseña" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Escoja" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Los datos no fueron enviados como post" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Vista previa" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mensaje" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mensajes privados" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mensaje privado enviado" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Sujeto" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "a" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Vista Pública" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Calificadores" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "leer" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevancia" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Denunciar título" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Fecha del informe" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporteros" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveles de denuncia" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Reportes" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Nivel de Reputación" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Requerido" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Respuesta" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultado" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revocar" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Este correo electrónico ya tiene una cuenta administrada por CrowdmapID. El usuario necesitará usar su contraseña existente de Crowmap para iniciar sesión." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Guardar Configuración" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Buscar" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Buscar Reportes" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "Buscando" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "La clave de encriptación será establecido al valor por defecto. Esto es inseguro y deberá ser cambiada." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Este sitio está siendo servido sobre HTTP. Debería ser puesto a HTTPS para incrementar la seguridad." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Las instrucciones están disponibles en el Wiki" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Seleccione el formato de informe que desea usar para descargarlo:" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Seleccione un tipo de campo ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Por favor selecciona un ítem" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Deberá seleccionar un Trigger antes que pueda seleccionar una Respuesta." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Deberá seleccionar un Trigger antes que pueda definir Calificadores." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Remitente" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Enviar a" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Este mensaje fue enviado desde su sitio web en " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Hora del servidor" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Configuración" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Mostrando página" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Mostrando resultados" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "Mostrando" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoría especial" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Categoría especial que se utiliza para clasificar reportes aprobados automáticamente" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Area específica" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Estado" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estadísticas" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estadísticas" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "No se pudieron obtener estadísticas. Reintente luego." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "No se pudieron obtener estadísticas" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Días específicos" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Tema" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Administrador" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tarea realizada" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Campo de texto" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nombre" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Administrar usuarios" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Error de tiempo de espera" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "a" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Registros" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "a" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traducir reportes" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Disparador" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Usuario disparados" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Disparadores" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "no approbado" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Desconocido" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Falla desconocida" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "no leído" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Ya no recibirá alertas de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Presione aquí para realizar la actualización" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Actualizar el sistema" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Estado de la actualización del sistema" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Subir reportes" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Usuario" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Usuarios" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificado/No Verificado" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "(Des)Verificar" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versión" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " dispone de una actualización." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Formato de video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mensajes privados" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Ver el sitio" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Ver el reporte" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Bienvenido, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Si" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Su búsqueda de" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-es_AR/ui_main.po b/application/i18n/po/po-es_AR/ui_main.po new file mode 100644 index 0000000000..786abdca94 --- /dev/null +++ b/application/i18n/po/po-es_AR/ui_main.po @@ -0,0 +1,3175 @@ +# +# Translators: +# panic , 2012 +# audreylingstuyl , 2012 +# jose sabastizagal , 2013 +# Julia, 2013 +# Mark Rauscher , 2012 +# Nathaniel Scrimshaw , 2012 +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Acerca de " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acceso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limites de Acceso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nombre de la Cuenta" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Esta acción no se puede revertir. ¿Está seguro que quiere continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Activo" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Agregar" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Ingresado por" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Información Adicional" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Reportes Adicionales" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Agregar/Editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Agregar un Campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Agregar Idioma" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Agregar Nuevo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Agregar nueva categoría" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Traducir" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administrar" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Recibir Alertas" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Aviseme si un reporte ha sido llenado en, o alrededor:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Enviar" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Dirección de correo electrónico:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ingrese dirección de correo electrónico" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "ingrese el número móvil con el código de país" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Recibir Alertas" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "La alerta ha sido" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Teléfono Móvil:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "O, ubique un lugar en el mapa siguiente, y vamos a avisarle cuando un reporte ha sido enviado en 20 kilómetros a la redonda" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Si no puede encontrar su ubicación, por favor haga click en el mapa para seleccionar la ubicación correcta." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Boletines RSS (copie la siguiente URL)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Seleccionar una ciudad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Paso 1: Seleccione su ciudad o ubicación:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Paso 2: Enviar alertas a mi:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Paso 3 (Opcional): Seleccione categorías" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmar un pedido de alertas" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "El alerta ha sido guardada" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Todo" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permitido" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Todas las Categorías" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Todo el tiempo" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "y" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprobar" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprobados" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Reportes Aprobados" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprobar este Reporte" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximada/o" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archivo" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archivado" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascendiente" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "a" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Reportes promedios por día" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Esperando Aprobación" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Esperando Verificación" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Distintivo" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Distintivos" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imagen del distintivo" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "o puede cargar una imagen personalizada para este distintivo" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Paquete de distintivos" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Elija un distintivo" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Ver perfiles" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoría" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro de Categorías" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "La categoría ha sido " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nombre" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Cambiar rango de fechas" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Cambiar contraseña" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Cambiar foto" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Escoja un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Elija los datos a descargar" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "o escoja un rango de fechas" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Elija el Tipo de Campo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLs limpias" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Quitar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Limpiar Mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Cerrar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Grupos de reportes" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Color" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentario" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Ver Comentario" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "La configuración fue guardada" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurar" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ha confirmado su dirección de correo. Puede acceder al sistema." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Confirmación de email fallida. Puede pedir una nueva confirmación de email bajo." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contacto" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Código de seguridad" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Su dirección de correo electrónico" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mensaje" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Su mensaje ha sido enviado." + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Su nombre" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Su número de teléfono" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar mensaje" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Asunto del mensaje" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright 2010 Ushahidi.com. Todos Los Derechos Reservados." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crear" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crear/Editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crear Nuevo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crear nueva contraseña" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Crear Reporte" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilidad" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Contraseña actual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Campos Adicionales" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Información" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Fecha" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(dd/mm/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Fecha y Hora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "día" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desactivar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Borrar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Borrado" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Borrado/s" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Borrar Deshabilitado" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Borrar último" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Borrar este Reporte" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Borrar seleccionado" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Borrar Correo Basura" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demostración" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descendiente" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Ej: Piso, nro. de puerta, referencia, etc" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalles" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Reporte Directo" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Deshabilitada/o" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Desaprobar" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Descargar Reportes" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Descargar" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar los campos del formulario" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar Reporte" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Correo Electrónico" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Dirección de Correo Electrónico" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Configuración de Correo Electrónico" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Dirección del Servidor" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Contraseña" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Puerto del servidor de correo" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Soporte para conexiones SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipo de Servidor de correo" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nombre de Usuario" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "por lo que esta es la configuración para esa dirección de correo electrónico" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Para recibir reportes por email, por favor ingrese su configuración de email en esta página. Los emails serán enviados a la" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Algunos servidores requieren la dirección de correo completa" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Clave de la cuenta de correo" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Puertos comunes: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Ejemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Ejemplos: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Habilita o deshabilita conexiones SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VACIO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "Hasta" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "¡Error!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Ejemplo" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Otras Applicaciones" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "URL de video" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Boletín" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Contáctenos" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Por favor cuéntanos tu experiencia, envíanos un correo a " + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Boletines" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Este boletín ha sido" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Boletines" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nombre del Boletín" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL del Boletín" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Campo Sin Uso" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Archivo" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "El archivo es más grande que el límite permitido." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtros" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrar Reportes" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtros Disponibles" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrar reportes que contengan" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Encontrar" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Encontrar ubicación" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nombre" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Ejecutar tareas programadas" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Olvidó su contraseña?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulario" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formularios" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descripción del Formulario" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editar el Formulario" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "El Formulario ha Sido" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Título del Formulario" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "De" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nombre Completo" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Información geográfica disponible" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Color" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiqueta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Trazo" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Comenzar" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Ha Sido" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Cómo Ayudar" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Oculto" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ocultar" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ocultar este mensaje" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Inicio" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Cómo Crear un Reporte" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Así lo verán otros usuarios del sitio." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imagen" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imágenes" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imagen/Icono" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactivo" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Mensajes Entrantes" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Reporte" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Reportes Cercanos" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Ubicación del Incidente" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Incluir" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Incluir Categorías" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Incluir Campos Adicionales" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Incluir Descripción" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Incluya tanto detalle como sea posible" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Incluir Latitud" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Incluir ubicación" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Incluir Longitud" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Incluir información personal" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Fotos/Vídeos Entrantes" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Calidad de la Información" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Ingrese una ubicación precisa" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Este cuenta no le permite acceder al sitio." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "En respuesta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Dirección IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "¿es este su perfil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "artículo" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "artículos" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalles del ítem" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Título" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Llave" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Palabras clave" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Archivo KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Subir archivo KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL del archivo KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Idioma" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Último" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Último Mes" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Apellido" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Último Año" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitud" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Otras capas " + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "La capa ha sido" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nombre de la capa" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL de la capa" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Deje un comentario" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menos información" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivel" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Este Nivel ha Sido" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nombre del Nivel" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitado" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Enlace" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Cargando reportes" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Ubicación" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Ubicaciones" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Ciudad, Estado y/o País." + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Ingresar" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Cuenta creada exitosamente." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Un correo de confirmación se envió a su dirección" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Esa dirección de correo no existe. Corríjala, o cree una nueva cuenta" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Seleccione su proveedor de acceso" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Conectarse con" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email y contraseña" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Crear una cuenta" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Crear una cuenta" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmación" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Cree una cuenta para tener acceso a más funciones" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitud" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marcar como Leído" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marcar como No Leído" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Tamaño máximo de archivo" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Fotos y Vídeos" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtro" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Miembros" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Administrar Cuenta" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mensaje" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mensajes" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Ver Mensaje" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mensaje:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Móvil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modificar" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modificar Fecha" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mes" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Más" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Más información" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Este sistema colecta reportes para más de un país" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Su dirección de email debe estar verificada para que pueda ingresar. Si no encuentra el email de verifición, puede pedir uno nuevo." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nombre" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Reporte Cercano" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nuevo" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Noticias" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Boletines" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Fuente de Noticias" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nueva Categoría" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nueva Contraseña" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nuevo Reporte" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Próximo" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "No " + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "No hay checkins para mostrar" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "No hay datos" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Ninguno" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Advertencias" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "No Aprobados" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "No Aprobado" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---No Seleccionado---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "No es Spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "No especificado" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "No hay reportes" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "No hay resultados" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Apagado" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Noticias" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Encendido" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opción" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opciones" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organización" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizaciones" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descripción" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "La organización ha sido" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nombre de la Organización" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Teléfono 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Teléfono 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Sitio Web" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descripción Original" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Título original" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Otros Sistemas" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Mensajes Salientes" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Saliente" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Página" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Páginas" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descripción" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "La página ha sido" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Etiqueta" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Título" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoría Superior" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Clave" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Reingrese la Contraseña" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Se ha cambiado la contraseña" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Olvidó su Clave?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Mire su e-mail por una nueva clave." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Mantener la sesión abierta" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mes Pasado" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Año Pasado" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pendientes" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "por" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Información Personal Opcional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Fotos" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Fotos y Vídeos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Busque la ubicación, o seleccione una ubicación en el mapa" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Comenzar" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Atención" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Extensiones" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "URL de la extensión" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Perfil público" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL del perfil público" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Vista previa" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Vista previa del ítem" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Vista previa del mensaje" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Anterior" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privado" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Color del perfil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Su perfil ha sido guardado" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estadísticas" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Calificación" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Leído" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Recibir" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Recibir de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Recibir Notificaciones" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Reportes Recientes" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Actualizar Boletines" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email registrado" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "quitar" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Responder" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Reporte" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Reportes (tomados del mapa, en order cronológico)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Informante" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Informantes" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Fecha" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nombre del Informante" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "El informante ha sido" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Dirección IP" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Apellido" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nivel del Informante" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveles del Informante" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Teléfono" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Reportes" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Navegar" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Enviar" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Reportes de este usuario" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Reportes" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Fecha" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Los reportes serán descargados en formato CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Correo Electrónico" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Características" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Encuentre una ubicación cerca de usted" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nombre" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Apellido" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Ubicación precisa" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Enlace a fuente de Noticias" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Información Opcional" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Subir Fotos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Retornar a la página de reportes" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Seleccionar una Ciudad" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "El reporte ha sido enviado y será revisado. Lo contactaremos de ser necesario." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Nuevo Reporte" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Hora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Línea de Tiempo" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Título del Reporte" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Enlace a Video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Reportar un Reporte" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalles del Reporte" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Enviando un Mensaje al Teléfono" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Enviando un Correo Electrónico a" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Enviando un Tweet con el/los hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Completando un Formulario" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Con la Aplicación Móvil" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "El reporte ha sido guardado" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Título" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Solicitar Más Información" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Solicitar Ubicación" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Requerido" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requerimientos" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Reenviar email de confirmación" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reiniciar" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Desactivar filtros" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Nueva Contraseña" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Completar automáticamente la lista de ciudades para el país seleccionado" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Administrada por el servicio %s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "Boletín RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Guardar" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Guardado" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Guardar y Crear Otro" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Guardar y Cerrar" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Guardar Reporte" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Programa" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Acciones Programadas" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Día" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Bitácora de acciones programadas" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Día de la semana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "BUSCAR" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultados de la Búsqueda" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Código de Seguridad" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Seleccionar Todos" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Elija un tipo de campo" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Elija un tipo de formulario" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Seleccione en el Mapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Selecciones todas las necesarias" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Por favor seleccion algún item" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Escoja un Estilo" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Enviar" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Enviar confirmación" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Enviar a" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Enviado" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Enviado por" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Dirección del servidor" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipo de Servidor" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servicio" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Usuario del servicio" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID del usuario del servicio" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Vínculo de intercambio de datos" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Información Compartida" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "El vínculo de intercambio de datos ha sido" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Compartir Datos" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa más cprto" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Mostrar" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Mostrar Todos/as" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mostrar mensajes" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Sitio Web" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "dirección de email del sitio web" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL del sitio web" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa más pequeño" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "No tiene ningún distintivo asignado" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Fuente" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nombre de la Fuente" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordenar" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ordenar por" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL de la Fuente" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Correo basura" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Soporta SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Desde" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Paso" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Nuevo Reporte" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Enviar vía SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Enviar su SMS a " + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "en su teléfono" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Funcionó!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Se han importado exitosamente" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "apellido" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Encuesta" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa más alto" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Puerto TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Estilos" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Estilo Preconfigurado" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Configuración de Estilos" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Este" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hoy" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Este Mes" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Esta Semana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Este Año" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Este es su perfil" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Hora" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Título " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "Para" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hoy" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hoy a las" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Ficha" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Total de reportes" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traducido" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Traducción de la Descripción" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Traducción del Título" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traducir a" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traducción" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "La Traducción ha sido Guardada" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Confiable" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipo" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Imposible enviar un email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Reportes sin categorizar" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "No Leído" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "No verificado" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Actualizar Boletines" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Subir" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Vea las guías para la carga de informes." + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML: Guía de carga" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV: Guía de carga" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Archivo a subir" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Subir Reportes" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "En esta página es posible importar reportes al sistema" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Los informes deben ser cargados en formato CSV o XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Título y Fecha (incident_title, incident_date) son campos obligatorios" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Si no hay latitud o longitud, la localización será asignada usando Google Geocoder" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Al menos debe ingresar información en uno de los campos de información personal (nombre, apellido, correo electrónico). Registros vacíos no serán importados." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Valores del campo fecha deben ser ingresados en el siguiente formato: mm/dd/aaaa ejemplo: 3 de Octubre de 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Archivo CSV de ejemplo. La primera linea son los encabezados, las siguientes dos líneas representa un reporte cada uno. Las categorías se ingresan por nombre, y puede haber más de una" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Amenazas en Parque Hernandez\",\"2009-05-15 01:06:00\",\"Santa Tecla\",\"Amenazas a comerciantes, etc, etc\",\"AMENAZAS\",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Robo seguido de muerte\",\"2009-03-18 10:10:00\",\"San Salvador\",\"Robo de un TV\",\"ROBO, HOMICIDIO\",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Carga Exitosa" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Subir Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Usuario" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Usuario" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Administrador del sistema" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificados" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificado" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Reportes Verificados" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verificar" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verificar este Reporte" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versión" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "vía" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Vídeo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Ver" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Vistas" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Ver Todos/as" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Ver Todos los Boletines" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Ver Todos los Reportes" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Ver Items" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Ver más" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Perfil público" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Ver reporte" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Ver reportes" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Ver video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Esperando Aprobación" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Esperando Verificación" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa más ancho" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulario Web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Peso" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Sí" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ayer" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Tablero de control" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Su archivo" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Acercar" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Alejar" diff --git a/application/i18n/po/po-es_AR/upgrade.po b/application/i18n/po/po-es_AR/upgrade.po new file mode 100644 index 0000000000..1d74f5839e --- /dev/null +++ b/application/i18n/po/po-es_AR/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Julia, 2013 +# Nicolás Pereyra , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 22:00+0000\n" +"Last-Translator: Julia\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dato de entrada inválido. Puede ser 0 para No o 1 para Si." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Actualización automática" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Actualizaciones disponibles" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continuar" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Actualizar" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Voy a actualizar su base de datos desde la versión" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "a la nueva versión de la base de datos." + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Haga click en el botón \"Actualizar\" y solo relajese mientras realizo la magia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Adicionalmente, si quiere respaladr su base de datos, marque el checkbox de abajo y yo lo haré en un instante." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "¿Respaldar base de datos antes de la actualización? (Altamente recomendado)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Upgrade de base de datos Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi ha sido actualizado! Antes de continuar, necesita actualizar su base de datos a la versión más nueva (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "La versión de su base de datos está actualizada." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "La actualización fallo en algún punto" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Actualización manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Estado de upgrade de Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Estas instrucciones lo guiarán para actualizar manualmente Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Paso 1: Descargue la última versión de Ushahidi desde http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Paso 2: Dependiendo del sistema operativo en que corre el servidor web, use su método preferido para ingresar al servidor (i.e: telnet, ftp, ssh) y reemplace el contenido de todos los directorios con los de la última versión. Todos EXCEPTO:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Paso 3: Utilizando un cliente de MySQL (ejemplo: phpMyAdmin) ejecute upgrade.sql. Este programa actualizar" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Paso 3: Fijarse en la carpeta sql. Ejecute manualmente el archivo upgrade-.sql iniciando desde el actual versión de la base de datos de su instalación hasta el archivo final de upgrade sql." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Para una actualización automática, haga click en el botón de abajo." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Para upgrade automática, click en el botón de abajo." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Está usando actualmente Usahidi v%1$s, base de datos versión %2$d ejecutando %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Actualizando" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Para continuar con el upgrade sencillo, la siguiente información es requerida para el servidor FTP que su sitio web posee." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Ejemplo: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Contraseña FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nombre de ususario FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Tiene la última versión de Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "No necesita upgrade." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versión de la base de datos: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Atención: La versión del software en version.php y la base de datos no coinciden." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Atención: La versión de la base de datos en version.php y la base de datos no coinciden." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Base de datos:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Baje la última versión de ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Archivo de Log" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Descarga exitosa. Descomprimiendo..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Falla en la bajada." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Exitosamente Descomprimido. Copiando archivos...." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Falla en descompresión." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Exitosamente copiado. Iniciando upgrade de la Base de datos..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Falla en la copia de archivos." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Backup de Base de datos y upgrade exitosos." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Falla en el backup de la Base de datos." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Upgrade de base de datos exitoso." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Borrano archivos bajados..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "UPGRADE EXITOSO. Ver Archivo de Log" diff --git a/application/i18n/po/po-es_CL/alerts.po b/application/i18n/po/po-es_CL/alerts.po new file mode 100644 index 0000000000..b05b31ba57 --- /dev/null +++ b/application/i18n/po/po-es_CL/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-es_CL/auth.po b/application/i18n/po/po-es_CL/auth.po new file mode 100644 index 0000000000..e8c7008fc6 --- /dev/null +++ b/application/i18n/po/po-es_CL/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-es_CL/bug.po b/application/i18n/po/po-es_CL/bug.po new file mode 100644 index 0000000000..f1d9f49b32 --- /dev/null +++ b/application/i18n/po/po-es_CL/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-es_CL/category.po b/application/i18n/po/po-es_CL/category.po new file mode 100644 index 0000000000..6a91bda116 --- /dev/null +++ b/application/i18n/po/po-es_CL/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-es_CL/comments.po b/application/i18n/po/po-es_CL/comments.po new file mode 100644 index 0000000000..b4dbe735a1 --- /dev/null +++ b/application/i18n/po/po-es_CL/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-es_CL/contact.po b/application/i18n/po/po-es_CL/contact.po new file mode 100644 index 0000000000..adb3047afe --- /dev/null +++ b/application/i18n/po/po-es_CL/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-es_CL/core.po b/application/i18n/po/po-es_CL/core.po new file mode 100644 index 0000000000..4488849c5f --- /dev/null +++ b/application/i18n/po/po-es_CL/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-es_CL/database.po b/application/i18n/po/po-es_CL/database.po new file mode 100644 index 0000000000..334b089bd2 --- /dev/null +++ b/application/i18n/po/po-es_CL/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-es_CL/datetime.po b/application/i18n/po/po-es_CL/datetime.po new file mode 100644 index 0000000000..876824b83b --- /dev/null +++ b/application/i18n/po/po-es_CL/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-es_CL/feeds.po b/application/i18n/po/po-es_CL/feeds.po new file mode 100644 index 0000000000..2768c4f71f --- /dev/null +++ b/application/i18n/po/po-es_CL/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-es_CL/footer.po b/application/i18n/po/po-es_CL/footer.po new file mode 100644 index 0000000000..f294745763 --- /dev/null +++ b/application/i18n/po/po-es_CL/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-es_CL/form.po b/application/i18n/po/po-es_CL/form.po new file mode 100644 index 0000000000..20615d64ed --- /dev/null +++ b/application/i18n/po/po-es_CL/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-es_CL/imap.po b/application/i18n/po/po-es_CL/imap.po new file mode 100644 index 0000000000..2758b98c9c --- /dev/null +++ b/application/i18n/po/po-es_CL/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-es_CL/installer.po b/application/i18n/po/po-es_CL/installer.po new file mode 100644 index 0000000000..1e1f7b0d45 --- /dev/null +++ b/application/i18n/po/po-es_CL/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-es_CL/layer.po b/application/i18n/po/po-es_CL/layer.po new file mode 100644 index 0000000000..7abb7e5c6a --- /dev/null +++ b/application/i18n/po/po-es_CL/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-es_CL/libraries.po b/application/i18n/po/po-es_CL/libraries.po new file mode 100644 index 0000000000..d5fb32ad4c --- /dev/null +++ b/application/i18n/po/po-es_CL/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-es_CL/maintenance.po b/application/i18n/po/po-es_CL/maintenance.po new file mode 100644 index 0000000000..dac578e92c --- /dev/null +++ b/application/i18n/po/po-es_CL/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-es_CL/message.po b/application/i18n/po/po-es_CL/message.po new file mode 100644 index 0000000000..697789764e --- /dev/null +++ b/application/i18n/po/po-es_CL/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-es_CL/mhi.po b/application/i18n/po/po-es_CL/mhi.po new file mode 100644 index 0000000000..f448e95aff --- /dev/null +++ b/application/i18n/po/po-es_CL/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-es_CL/notifications.po b/application/i18n/po/po-es_CL/notifications.po new file mode 100644 index 0000000000..0ab2f79a7e --- /dev/null +++ b/application/i18n/po/po-es_CL/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-es_CL/page.po b/application/i18n/po/po-es_CL/page.po new file mode 100644 index 0000000000..6113f9ee27 --- /dev/null +++ b/application/i18n/po/po-es_CL/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-es_CL/permissions.po b/application/i18n/po/po-es_CL/permissions.po new file mode 100644 index 0000000000..766a6d80c5 --- /dev/null +++ b/application/i18n/po/po-es_CL/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# NeobeatIKK , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Mirar reportes" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crear/Editar/Borrar reportes" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprovar reportes" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar reportes" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gestionar comentarios de reporte" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descargar reportes" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Subir reportes" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gestionar mensajes" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gestionar reportadores de mensajes" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Mirar estadísticas" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificar ajustes" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gestionar panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gestionar usuarios" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Gestionar roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Puede facturar" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Administrar facturas" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acceder a la interfaz de administrador" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acceder a la interfaz de los miembros" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-es_CL/private_message.po b/application/i18n/po/po-es_CL/private_message.po new file mode 100644 index 0000000000..9e0cb761a9 --- /dev/null +++ b/application/i18n/po/po-es_CL/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-es_CL/report.po b/application/i18n/po/po-es_CL/report.po new file mode 100644 index 0000000000..ded2939690 --- /dev/null +++ b/application/i18n/po/po-es_CL/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-es_CL/reporters.po b/application/i18n/po/po-es_CL/reporters.po new file mode 100644 index 0000000000..9e23a8347a --- /dev/null +++ b/application/i18n/po/po-es_CL/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-es_CL/reports.po b/application/i18n/po/po-es_CL/reports.po new file mode 100644 index 0000000000..01364a685e --- /dev/null +++ b/application/i18n/po/po-es_CL/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# NeobeatIKK , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 22:42+0000\n" +"Last-Translator: NeobeatIKK \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifique que ha revisado un articulo" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifique que ha revisado un articulo" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Los reportes deben ser categorizados antes de que puedan ser aprovados" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "No tienes los permisos para ejecutar esta accion" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Debes seleccionar un archivo para subir" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "El archivo de subida debe ser en formato .csv o .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "El campo de subida del archivo parece no contener un archivo válido" diff --git a/application/i18n/po/po-es_CL/roles.po b/application/i18n/po/po-es_CL/roles.po new file mode 100644 index 0000000000..cea95370f5 --- /dev/null +++ b/application/i18n/po/po-es_CL/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-es_CL/settings.po b/application/i18n/po/po-es_CL/settings.po new file mode 100644 index 0000000000..9ab1faf255 --- /dev/null +++ b/application/i18n/po/po-es_CL/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-es_CL/sharing.po b/application/i18n/po/po-es_CL/sharing.po new file mode 100644 index 0000000000..e59d8e46ee --- /dev/null +++ b/application/i18n/po/po-es_CL/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-es_CL/stats.po b/application/i18n/po/po-es_CL/stats.po new file mode 100644 index 0000000000..f3eb82e1be --- /dev/null +++ b/application/i18n/po/po-es_CL/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-es_CL/tooltips.po b/application/i18n/po/po-es_CL/tooltips.po new file mode 100644 index 0000000000..619fb6c901 --- /dev/null +++ b/application/i18n/po/po-es_CL/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-es_CL/ui_admin.po b/application/i18n/po/po-es_CL/ui_admin.po new file mode 100644 index 0000000000..1c0a82d378 --- /dev/null +++ b/application/i18n/po/po-es_CL/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-es_CL/ui_main.po b/application/i18n/po/po-es_CL/ui_main.po new file mode 100644 index 0000000000..58e47c9ef0 --- /dev/null +++ b/application/i18n/po/po-es_CL/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-es_CL/upgrade.po b/application/i18n/po/po-es_CL/upgrade.po new file mode 100644 index 0000000000..74368423cf --- /dev/null +++ b/application/i18n/po/po-es_CL/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:58+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-es_ES/alerts.po b/application/i18n/po/po-es_ES/alerts.po new file mode 100644 index 0000000000..718ea79e6a --- /dev/null +++ b/application/i18n/po/po-es_ES/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# lcs , 2014 +# enjolras , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-24 15:13+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El campo de correo electrónico parece que no contiene una dirección válida." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Esa dirección de correo electrónico ya está registrada para recibir alertas de esa ubicación." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo de correo electrónico debe tener entre 4 y 64 caracteres." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo de correo electrónico es obligatorio si la casilla está marcada." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Este despliegue afecta únicamente a un país. Asegúrese de que la ubicación de alerta está dentro de %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida en el mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida en el mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida en el mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida en el mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "El campo de teléfono móvil no parece tener la longitud correcta." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ese teléfono móvil ya ha sido registrado para recibir alertas desde esa ubicación." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "El campo de teléfono móvil no parece contener un número válido. Introduzca únicamente números que incluyan el prefijo internacional." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Es obligatorio introducir su teléfono móvil o su dirección de correo electrónico." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "El campo de teléfono móvil es obligatorio si la casilla está marcada." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "No ha fijado un radio válido en el mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "No ha fijado su radio en el mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "No ha fijado un receptor de las alertas." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Se ha suscrito a alertas de las siguientes categorías" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Este código ya ha sido verificado." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "No se ha encontrado el código de verificación. Confirme que la URL es correcta." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "El código se ha verificado correctamente. A partir de ahora recibirá alertas sobre incidentes en tiempo real." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Para confirmar su solicitud de alerta, visite" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Volver a la página de Alertas para crear más alertas" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Su solicitud de alerta por correo electrónico ha sido registrada y se ha enviado una verificación a" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Introduzca a continuación el código de verificación de correo electrónico:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Su solicitud de alerta por correo electrónico NO se ha registrado." + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Su solicitud de alerta por correo electrónico se ha registrado." + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "El sistema no ha podido procesar la solicitud de confirmación." + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Su solicitud de alerta por teléfono móvil ha sido registrada y se ha enviado una verificación a" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Introduzca a continuación el código de verificación de SMS:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Su solicitud de alerta por teléfono móvil NO se ha registrado." + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Su solicitud de alerta por teléfono móvil se ha registrado." + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Este despliegue no está configurado para procesar alertas correctamente" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Ha recibido este correo electrónico porque se ha suscrito para recibir alertas. Si no desea recibir alertas futuras, visite" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "No recibirá más alertas de" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "No hemos podido cancelar la suscripción. Compruebe que la URL es correcta." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertas - verificación" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "No recibirá alertas de esta ubicación hasta que confirme la solicitud." diff --git a/application/i18n/po/po-es_ES/auth.po b/application/i18n/po/po-es_ES/auth.po new file mode 100644 index 0000000000..e6199fd966 --- /dev/null +++ b/application/i18n/po/po-es_ES/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 18:31+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "El correo introducido no es válido." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Lo sentimos, ya existe una cuenta registrada con ese correo electrónico." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El campo de correo electrónico debe tener entre 4 y 64 caracteres." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "El campo de correo electrónico es obligatorio." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "El campo de nombre debe tener una longitud entre 3 y 100 carecteres" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "El campo Nombre es obligatorio." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "El campo Usuario tiene caracteres no permitidos." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La contraseña debe contener al menos 8 caracteres." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Compruebe que a escrito correctamente el correo electrónico y la contraseña." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor, escriba la misma contraseña en los dos compos de contraseña." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "La contraseña es obligatorio." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "La contraseña debe contener caracter alfabéticos, los símbolos # y @, numeros, guiones bajos y guiones." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "La contraseña que ha escrito es incorrecta. Vuelva a intentarlo." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La contraseña debe tener al menos 8 caracteres de longitud." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor compruebe que ha introducido correctamente el correo electrónico y la contraseña." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor escribe la misma contraseña en los dos campos de contraseña." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "La contraseña es obligatoria." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "La contraseña debe contener caracter alfabéticos, los símbolos # y @, numeros, guiones bajos y guiones." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Hubo un error en el acceso." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La contraseña debe contener al menos 8 caracteres." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor compruebe que ha escrito correctamente el correo electrónico y la contraseña." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor, escribe la misma contraseña en los dos campos de contraseña." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "La contraseña es obligatoria." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "El servidor de acceso no está operativo. Por favor, vuelva a intentarlo." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "La contraseña debe contener caracter alfabéticos, los símbolos # y @, numeros, guiones bajos y guiones." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "El campo de confirmación de contraseña debe coincidir con el campo de la contraseña." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "El correo electrónico que has escrito no es válido." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Perdón, pero no tenemos tu correo electrónico." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "El correo electrónico es obligatorio." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Solo un superadministrador puede modificar a una superadministrador o actualizar a un usuario a administrador." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Formato de papel inválido." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "El papel tiene que tener entre 5 y 30 caracteres." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Debe de definir al menos un papel." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Debe seleccionar ADMINISTRADOR o USUARIO." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "El token de contraseña obligatoria no es válido." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "El token de contraseña olvidada es obligatorio." + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "El papel de administrador no puede ser modificado." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "URL publica del perfil solo puede contener números y letras." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Perdón, URL pública en uso." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "La URL pública del perfil tiene que tener entre 2 y 100 caracteres de largo." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Compruebe que a escrito correctamente la URL publica de perfil." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "La URL pública de perfil es obligatoria." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "El papel de superadministrador no puede ser modificado." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Posible ataque CSRF. ¿De verdad quieres crear/editar un usuario?" diff --git a/application/i18n/po/po-es_ES/bug.po b/application/i18n/po/po-es_ES/bug.po new file mode 100644 index 0000000000..edcdbf0c82 --- /dev/null +++ b/application/i18n/po/po-es_ES/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Marta Gimeno , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduce un código de seguridad válido." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Introduce el código de seguridad." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "La dirección escrita en el campo Correo Electrónico es incorrecta." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo Correo Electrónico debe tener una longitud de 4-64 caracteres." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo Correo Electrónico es obligatorio si la casilla de verificación está marcada." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "El campo Error es obligatorio." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo Asunto debe contener al menos 3 caracteres." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "El campo Asunto es obligatorio." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo Nombre debe contener al menos 3 caracteres." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "El campo Nombre es obligatorio." diff --git a/application/i18n/po/po-es_ES/category.po b/application/i18n/po/po-es_ES/category.po new file mode 100644 index 0000000000..f2642dce4f --- /dev/null +++ b/application/i18n/po/po-es_ES/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Marta Gimeno , 2012 +# enjolras , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "El campo de color debe tener 6 caracteres." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "El campo de color es obligatorio." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "El campo de descripción es obligatorio." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Asegúrese de que las imágenes subidas ocupan un máximo de 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "El campo de imagen no contiene una imagen válida. Los formatos admitidos son .JPG, .PNG y .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "El campo de imagen no contiene un archivo válido" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "El campo de título debe tener entre 3 y 80 caracteres." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "El campo de título es obligatorio." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "No se puede subcategorizar una categoría con subcategorías." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "La categoría superior no existe." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "El campo de categoría superior debe de ser numérico." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "El campo de categoría superior no puede ser una categoría especial." + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "El campo de categoría superior es obligatorio." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "La categoría y la categoría superior no pueden ser la misma." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Las categorías especiales no pueden contener subcategorías." diff --git a/application/i18n/po/po-es_ES/comments.po b/application/i18n/po/po-es_ES/comments.po new file mode 100644 index 0000000000..bb2d0f5e04 --- /dev/null +++ b/application/i18n/po/po-es_ES/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 20:17+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduce un código de seguridad válido." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Introduce el código de seguridad." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "El código de seguridad es incorrecto." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo Nombre debe contener al menos 3 caracteres." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "El campo Nombre es obligatorio." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "El campo Comentarios es obligatorio." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "La dirección escrita en el campo Correo Electrónico es incorrecta." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo de correo electrónico debe tener entre 4 y 64 caracteres." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo de correo electrónico es obligatorio si la casilla está marcada." diff --git a/application/i18n/po/po-es_ES/contact.po b/application/i18n/po/po-es_ES/contact.po new file mode 100644 index 0000000000..5f55c20471 --- /dev/null +++ b/application/i18n/po/po-es_ES/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Marta Gimeno , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduce un código de seguridad válido." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Introduce un código de seguridad válido." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Introduce el código de seguridad." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "La dirección escrita en el campo Correo Electrónico es incorrecta." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo Correo Electrónico debe tener una longitud de 4-64 caracteres." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo Correo Electrónico es obligatorio si la casilla de verificación está marcada." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "El campo Mensaje es obligatorio." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo Nombre debe contener al menos 3 caracteres." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "El campo Nombre es obligatorio." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo Asunto debe contener al menos 3 caracteres." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "El campo Asunto es obligatorio." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Se ha producido un error al enviar el mensaje." diff --git a/application/i18n/po/po-es_ES/core.po b/application/i18n/po/po-es_ES/core.po new file mode 100644 index 0000000000..b69f19190a --- /dev/null +++ b/application/i18n/po/po-es_ES/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2014-03-27 14:38+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "fichero de configuracion" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controlador" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "El %s driver para la %s libreria debe añadirse en el %s interfaz." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "EL %s driver para la %s librería no ha sido encontrado." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Puedes ir a inicio o vuelve a intentarlo." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Imposible competar su solicitud." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ayudante" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "El tipo de archivo solicitado, .%s, no está permitido en el archivo de configuración." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Método inválido %s llamado en %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "La propiedad %s no existe en la clase %s" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "librería" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "El directorio del log no es escribible: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modelo" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi no pudo determinar un controlador para procesar esa solicitud: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Por favor escribe una ruta por defecto en config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "La página que ha solicitado, %s, no ha sido encontrada." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Informar de este echo a Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "La solicitud %s, %s, no ha sido encontrada." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Espacio de pila" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Cargado en {execution_time} segundos, usando {memory_usage} de memoria. Generado por Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Solo puede haber una instancia de ushahidi por solicitud de página." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "No detectado %s: %s en el archivo %s en la linea %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "ver" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Debe establecer el nombre del archivo de la vista antes de renderizar ." diff --git a/application/i18n/po/po-es_ES/database.po b/application/i18n/po/po-es_ES/database.po new file mode 100644 index 0000000000..6c954cb31c --- /dev/null +++ b/application/i18n/po/po-es_ES/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-27 14:39+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Error de la base de datos: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "La tabla \"%s\" no ha sido encontrada en la base de datos. Por favor, asegúrate de que estás utilizando la última versión de la base de datos para esta versión de Ushahidi." diff --git a/application/i18n/po/po-es_ES/datetime.po b/application/i18n/po/po-es_ES/datetime.po new file mode 100644 index 0000000000..315f8b9b0b --- /dev/null +++ b/application/i18n/po/po-es_ES/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-27 14:42+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "a.m." + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Vie" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Viernes" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Lun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Lunes" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "p.m." + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sab" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sabado" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dom" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Domingo" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Jue" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Jueves" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Martes" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mie" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Miércoles" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ene" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Enero" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Febrero" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marzo" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Abr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Abril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "May" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mayo" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Junio" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Julio" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosto" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Septiembre" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Octubre" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Noviembre" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dic" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Diciembre" diff --git a/application/i18n/po/po-es_ES/feeds.po b/application/i18n/po/po-es_ES/feeds.po new file mode 100644 index 0000000000..4f6bdc3e06 --- /dev/null +++ b/application/i18n/po/po-es_ES/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-27 14:44+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "FECHA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "El nombre del feed debe tener por lo menos 3 caracteres y no más de 70 caracteres de largo." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Por favor, escribe el nombre del feed" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Escribe la URL del feed" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Escribe una URL válida, ejemplo http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Fuente" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Titulo" diff --git a/application/i18n/po/po-es_ES/footer.po b/application/i18n/po/po-es_ES/footer.po new file mode 100644 index 0000000000..b82a95000e --- /dev/null +++ b/application/i18n/po/po-es_ES/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# enjolras , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl no está instalado en este sistema." diff --git a/application/i18n/po/po-es_ES/form.po b/application/i18n/po/po-es_ES/form.po new file mode 100644 index 0000000000..0a05e25d7b --- /dev/null +++ b/application/i18n/po/po-es_ES/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-27 14:51+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "El valor por defecto que has introducido para el campo es inválido." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "El campo de nombre debe tener una longitud entre 3 y 200 carecteres" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Por favor escribe un valor entre 0y 50 en el campo de Altura" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Fecha inválida." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Por favor, seleccione Si o No en el campo Fecha" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "El campo de nombre debe tener una longitud entre 3 y 100 carecteres" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Por favor escriba el campo nombre." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "El nombre de campo ya existe en este formulario, prueba con otro." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Valor inválido para un campo requerido." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Por favor seleccione Si o No para el campo requerido." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Por favor, seleccione un tipo de campo." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Seleccionar un tipo de campo" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Por favor, selecciona un valor entre 0 y 300 para el campo Ancho" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Introduzca la descripción del formulario" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "El formulario por defecto no se puede eliminar." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Por favor, selecciona a que formulario añadir este campo." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Selecciona a que formulario le vas a añadir este campo." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "El campo de nombre debe tener una longitud entre 3 y 100 carecteres" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Por favor, escribe el nombre del formulario." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Un formulario con ese título ya existe, prueba con otro." diff --git a/application/i18n/po/po-es_ES/imap.po b/application/i18n/po/po-es_ES/imap.po new file mode 100644 index 0000000000..0070ad7cea --- /dev/null +++ b/application/i18n/po/po-es_ES/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 20:14+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "No se pudo abrir el flujo IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "El servicio de correo electrónico no es soportado" diff --git a/application/i18n/po/po-es_ES/layer.po b/application/i18n/po/po-es_ES/layer.po new file mode 100644 index 0000000000..494512ff7c --- /dev/null +++ b/application/i18n/po/po-es_ES/layer.po @@ -0,0 +1,65 @@ +# +# Translators: +# Marta Gimeno , 2012 +# Luis Bonifacio Ramírez del Pino , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 22:33+0000\n" +"Last-Translator: Luis Bonifacio Ramírez del Pino \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "El campo Color debe contener al menos 6 caracteres." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "El campo Color es obligatorio." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "El campo fichero no parece contener un fichero válido. Los únicos formatos aceptados son .KMZ y .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "El campo fichero no parece contener un fichero válido" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "El nombre de campo debe tener una longitud entre 3 y 80 carecteres" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "El campo nombre es necesario." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Es necesario una URL KML o Fichero." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "No puede tener un fichero KML y una URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Por favor, introduzca una URL válida, ej. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-es_ES/maintenance.po b/application/i18n/po/po-es_ES/maintenance.po new file mode 100644 index 0000000000..bc19591905 --- /dev/null +++ b/application/i18n/po/po-es_ES/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# enjolras , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Este sitio está cerrado por mantenimiento. Vuelva a intentarlo pasados unos minutos." diff --git a/application/i18n/po/po-es_ES/message.po b/application/i18n/po/po-es_ES/message.po new file mode 100644 index 0000000000..19629503e0 --- /dev/null +++ b/application/i18n/po/po-es_ES/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# nachouve , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 11:13+0000\n" +"Last-Translator: nachouve \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor, introduzca un código de seguridad válido." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor, introduzca el código de seguridad." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo de correo electrónico parece no contener una dirección no válida." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo de correo electrónico debe tener entre 4 y 64 caracteres." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo de correo electrónico es obligatorio si la casilla está marcada." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "El campo de comentarios es obligatorio." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo Nombre debe contener al menos 3 caracteres." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "El campo Nombre es obligatorio." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "El campo Teléfono no es válido." diff --git a/application/i18n/po/po-es_ES/mhi.po b/application/i18n/po/po-es_ES/mhi.po new file mode 100644 index 0000000000..90ddad0e3e --- /dev/null +++ b/application/i18n/po/po-es_ES/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 20:08+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduce un código de seguridad válido." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Introduce el código de seguridad." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "La dirección escrita en el campo Correo Electrónico es incorrecta." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Introduce una dirección de correo electrónico válida." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "El campo Mensaje es obligatorio." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo Asunto debe contener al menos 3 caracteres." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "El campo Asunto es obligatorio." diff --git a/application/i18n/po/po-es_ES/notifications.po b/application/i18n/po/po-es_ES/notifications.po new file mode 100644 index 0000000000..ccef962e8d --- /dev/null +++ b/application/i18n/po/po-es_ES/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 20:04+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Este mensaje fue enviado desde tu sitio web." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Iniciar sesión del administrador" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Un nuevo comentario ha sido enviado a tu sitio web en respuesta de:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nuevo Comentario" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Un nuevo correo electrónico ha sido enviado a tu sitio web." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nuevo mensaje" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Un nuevo reporte ha sido enviado a tu sitio web." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nuevo Reporte" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Un nuevo mensaje de texto ha siado enviado a tu sitio web." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nuevo mensaje de Texto." + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Has recibido una Nueva Alerta" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "¡Nueva Alerta!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Has recibido un Mensaje Privado" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nuevo Mensaje Privado" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Para Responder por favor Ir a:" diff --git a/application/i18n/po/po-es_ES/page.po b/application/i18n/po/po-es_ES/page.po new file mode 100644 index 0000000000..b983310cca --- /dev/null +++ b/application/i18n/po/po-es_ES/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# enjolras , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Introduzca el título de la página." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "El título de la página debe tener entre 3 y 150 caracteres." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Introduzca el nombre de la pestaña." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Introduzca la descripción de la página." diff --git a/application/i18n/po/po-es_ES/permissions.po b/application/i18n/po/po-es_ES/permissions.po new file mode 100644 index 0000000000..4c6b68d4bf --- /dev/null +++ b/application/i18n/po/po-es_ES/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-03-27 15:58+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Ver informes" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crear/Editar/Eliminar informes" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprobar informes" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar informes" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gestionar comentarios" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descargar informes" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Subir informes" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gestionar mensajes" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gestionar mensajes de los reporteros." + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ver estadísticas." + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificar los ajustes" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gestionar el panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gestionar usuarios" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Gestionar Roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Puede comprobar" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Gestionar comprobaciones" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acceder a la interfaz de administrador." + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acceder a la interfaz de miembro." + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Borrar todos los informes." diff --git a/application/i18n/po/po-es_ES/private_message.po b/application/i18n/po/po-es_ES/private_message.po new file mode 100644 index 0000000000..86c072aa99 --- /dev/null +++ b/application/i18n/po/po-es_ES/private_message.po @@ -0,0 +1,48 @@ +# +# Translators: +# José Jiménez , 2013 +# enjolras , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 19:23+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "El ID debe ser numérico" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "El campo Para es obligatorio" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "El usuario al que está intentando enviar el mensaje no existe" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "La campo Asunto es obligatorio" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "El asunto debe tener entre 3 y 150 caracteres" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "El campo Mensaje es obligatorio" diff --git a/application/i18n/po/po-es_ES/report.po b/application/i18n/po/po-es_ES/report.po new file mode 100644 index 0000000000..ab33f5c654 --- /dev/null +++ b/application/i18n/po/po-es_ES/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-03-27 15:54+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "¡error!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Este despliegue se extiende dentro de un solo país. Por favor, asegúrese de que la ubicación de informe se encuentra dentro del país %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Por favor escribe un valor válido para el campo \"%s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "El campo \"%s\" tiene que ser numérico." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "El campo \"%s\" es obligatorio." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "El campo \"%s\" no existe." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "El campo \"%s\" no puede ser editado por tu cuenta." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "El campo \"%s\" tiene que contener un correo electrónico válido." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "El campo \"%s\" tiene que contener un número de teléfono válido." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "El campo \"%s\" debe contener una fecha válida (MM/DD/YYYY)" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "El campo \"%s\" debe contener una fecha válida (MM/DD/YYYY)" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Por favor seleccione un item válido para incluiro en la descarga" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Por favor seleccione un item válido para incluiro en la descarga" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor, selecciona \"Informes esperando aprobación\" , \"Informes aprobados\" o ambos." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor, selecciona \"Informes esperando aprobación\" , \"Informes aprobados\" o ambos." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor, selecciona \"Informes esperando aprobación\" , \"Informes aprobados\" o ambos." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor, selecciona \"Informes esperando aprobación\" , \"Informes aprobados\" o ambos." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor, selecciona \"Informes esperando aprobación\" , \"Informes aprobados\" o ambos." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor, selecciona \"Informes esperando aprobación\" , \"Informes aprobados\" o ambos." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Por favor, selecciona un tipo de informe válido para descargar." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Por favor, selecciona un tipo de informe válido para descargar." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Por favor, selecciona un tipo de informe válido para descargar." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Selecciona un formato de descarga, CSV o XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Por favor, selecciona un formato válido para descargar tus informes en " + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "El campo fecha DESDE no contiene un dato válido" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Por favor escribe una fecha DESDE válida. No puede ser superior a hoy." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Por favor escribe un valor válido para Aprovar este informe." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Por favor escribe un valor válido para Aprovar este informe." + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "El campo am/pm parece que no contiene un valor válido." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "El campo \"Categorías\" no contiene una categoría válida" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "La categoría es obligatoria." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "La fecha parece que no es válida." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "La fecha parece que no es válida." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "La fecha es obligatoria." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "La descripción es obligatoria" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "La hora parece que no es válida." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "La hora es obligatoria." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Por favor escribe un valor válido para la Probabilidad de la Información." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Por favor escribe un valor válido para la Probabilidad de la Información." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "El campo minutos parece que contiene un valor inválido." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Los minutos son obligatorios." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "La URL del campo de fuente de noticias parece no ser válida." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "El tamaño máximo de las imágenes es 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Solo se aceptan los formatos de imagen .JPG, .PNG y .GIF. Comprueba el formato de la imagen que quieres subir." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Las imágenes no son válidas." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Escribe un valor válido para la Fiabilidad de la fuente." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Escribe un valor válido para la Fiabilidad de la fuente." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "El \"Titulo del informe\" debe de tener entre 3 y 200 caracteres." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "El título es obligatorio." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Posible ataque CSRF. ¿Realmente quieres crear/editar un informe?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Por favor, escribe un valor válido para Verificar este informe." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Por favor, escribe un valor válido para Verificar este informe." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "El enlace al vídeo no es válido" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "La latitud no es válida." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "La latitud es obligatoria. Haz clic en el mapa para seleccionar una." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "La ubicación es incorrecta." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Este informe ya esta traducido a este idioma." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "La ubicación es incorrecta." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "El informe original y la traducción tienen el mismo idioma seleccionado (localización)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "El idioma es obligatorio." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "La ubicación no puede tener más de 200 caracteres ni menos de 3" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "La ubicación es obligatoria." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "La longitud no es válida" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "La longitud es obligatoria. Haz clic en el mapa para seleccionar una." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "El correo electrónico no es válido." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El campo de correo electrónico debe tener entre 4 y 64 caracteres." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "El campo de nombre debe tener una longitud entre 3 y 100 carecteres" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "El campo de apellido debe tener una longitud entre 2 y 100 carecteres" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "La campo fecha HASTA no contiene una fecha válida." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Por favor, escribe una fecha HASTA válida. No puede ser superior a hoy." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "El DESDE no puede ser superior al HASTA." diff --git a/application/i18n/po/po-es_ES/reporters.po b/application/i18n/po/po-es_ES/reporters.po new file mode 100644 index 0000000000..1a32b99136 --- /dev/null +++ b/application/i18n/po/po-es_ES/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-27 15:37+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "El campo latitud parece que no tiene una latitud válida." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "La latitud es obligatoria. Haz clic en el mapa para seleccionar una" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El campo de nivel de reportero parece que contiene un valor inválido" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El campo de nivel de reportero parece que contiene un valor inválido" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "La ubicación tiene que tener entre 3 y 200 caracteres." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "La ubicación es obligatoria." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "El campo de longitud parace que no contiene una longitud válida." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "La longitud es obligatoria. Haz clic en el mapa para seleccionar una." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Reportero inválido" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Reportero inválido" diff --git a/application/i18n/po/po-es_ES/reports.po b/application/i18n/po/po-es_ES/reports.po new file mode 100644 index 0000000000..54efcd0de3 --- /dev/null +++ b/application/i18n/po/po-es_ES/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# José Jiménez , 2013 +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-27 15:33+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verificar que ha marcado un elemento" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verificar que ha marcado un elemento" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Los informes deben pertenecer a una categoría antes de ser aprovados." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "No tienes permiso para realizar esa acción" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Tienes que seleccionar un archivo para subir" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "El archivo tiene que ser .csv o .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Parece que el archivo no es válido" diff --git a/application/i18n/po/po-es_ES/roles.po b/application/i18n/po/po-es_ES/roles.po new file mode 100644 index 0000000000..dd7c8e120d --- /dev/null +++ b/application/i18n/po/po-es_ES/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Marta Gimeno , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "El campo Descripción debe contener 3-100 caracteres." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "El campo Descripción es obligatorio." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "El campo Nombre solo puede contener letras o números." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "El campo Nombre debe contener 2-30 caracteres." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "No se puede modificar el rol SuperAdmin." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "El campo Nombre es obligatorio." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "El campo Nivel de Acceso debe contener un número entre 0 y 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "El campo Nivel de Acceso debe contener un número entre 0 y 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "El campo Permisos debe contener un número entre 0 y 100." diff --git a/application/i18n/po/po-es_ES/settings.po b/application/i18n/po/po-es_ES/settings.po new file mode 100644 index 0000000000..7dcb5d63d5 --- /dev/null +++ b/application/i18n/po/po-es_ES/settings.po @@ -0,0 +1,862 @@ +# +# Translators: +# Gonzalo Vidal , 2013 +# José Jiménez , 2013 +# lcs , 2014 +# xhiena , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-28 16:41+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "El campo de permitir comentarios no parece que contenga un valor válido," + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "El campo de permitir comentarios es obligatorio." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "El campo de incluir feed no parece que contenga un valor válido." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "El campo de incluir feed es obligatorio." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "El campo de permitir alertas no contiene un valor válido." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "El campo de permitir alertas es obligatorio." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "El campo Reportes Permitidos no contiene un valor correcto." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "El campo Reportes Permitidos es requerido." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "El campo compartir parece que contiene un valor inválido." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "El campo de compartir estadísticas es obligatorio." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Numero de registos para mostrar en una solicitud de API por defecto." + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Numero de registos para mostrar en una solicitud de API." + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Máximo numero de solicitudes de APi por IP." + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El campo de Askimet no contiene un dato válido." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El campo de Askimet no contiene un dato válido." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "El campo de Caché e página es obligatorio." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "El campo de caché parece que no contiene un valor válido." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "La duración de la caché de las páginas contiene un dato inválido." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "La duración de la caché es obligatoria." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Parece que tu servidor no está configurado para utilizar URLs limpias. Tienes que configurar tu servidor antes de poder activar las URLs limpias. Más información sombre como activar las URLs limpias en este post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Esta opción hace que Ushahidi pueda acceder via URLs limpiar (sin \"index.php\" en la URL)" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Activar URL limpias" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs limpias." + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "La API de Clickatell no puede tener más de 20 caracteres." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "La API de clickatell es obligatoria." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "La contraseña de Clickatell tiene que tener entre 5 y 50 caracteres." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "La contraseña de Clickatell es obligatorio." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Esta configuración permite a los usuarios entrar mediante Facebook, this no crea una aplicación de facebook para su despliegue" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Color Por Defecto Para Todas las Categorías" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Icono Por Defecto Para Todas Las Categorías" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Eliminar Icono Por Defecto" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Mostrar Página De Contacto" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Dirección de Correo Electrónico de Alertas" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Para recibir reportes por correo electrónico, por favor configure los datos de su cuenta de correo electrónico" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Dirección de Correo Electrónico del Sitio" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Idioma del Sitio" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Mensaje del Sitio" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nombre del Sitio" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Despliegue Privado" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Requiere Confirmación por Correo Electrónico del Usuario" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Habilitar Estadísticas (Se almacenarán en el servidor de Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Términos de Búsqueda de Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "El campo de correo electrónico del sitio no parece contenter una dirección de correo válida." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "El campo de correo electrónico del sitio debe tener entre 4 y 100 caracteres de longitud." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "El campo del nombre del sitio debe tener entre 3 y 50 caracteres de longitud." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "El campo de nombre del sitio es obligatorio" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Descargar e Instalar FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "El campo teléfono 1 no parece tener un valor válido." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "El campo teléfono 1 debe contener sólo números." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "El campo teléfono 2 es demasiado largo" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "El campo teléfono 2 debe contener sólo números." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "El campo teléfono 3 es demasiado largo" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "El campo teléfono 3 debe contener sólo números." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Probar configuración" diff --git a/application/i18n/po/po-es_ES/stats.po b/application/i18n/po/po-es_ES/stats.po new file mode 100644 index 0000000000..3582711826 --- /dev/null +++ b/application/i18n/po/po-es_ES/stats.po @@ -0,0 +1,199 @@ +# +# Translators: +# Luis Bonifacio Ramírez del Pino , 2013 +# nachouve , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 23:12+0000\n" +"Last-Translator: Luis Bonifacio Ramírez del Pino \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprobado" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorías" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Impacto de la categoría" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Este gráfico ofrece una visión lineal de los informes por categoría en el tiempo. Desplazar de izquierda a derecha pata ver una vista comparativa de diferentes categorías. Pasar el puntero sobre el gráfico para más detalles." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Elegir un rango de fechas" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Países" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "País" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Desglose por países" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Esta es la sección de estadísticas y contendrá una descripción general pronto. Por ahora, navegar usando los enlaces de sub categoría de arriba." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Error" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glosario" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Sumario de aciertos" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Leyenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Vistas de página" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "El número total de páginas que los visitantes han visto en tu sitio" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Informes" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categorías de informe" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Estadísticas de informe" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Informes de estado" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Informe de tarjeta perforada" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Estadísticas de informes" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Estadísticas no establecidas" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mes" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 meses" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 meses" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Todos" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "No aprobado" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitantes únicos" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "El número de individuos que vienen a tu implementación. Los visitantes únicos se determinan utilizando cookies. Los visitantes que no tienen las cookies activas serán identificados utilizando una heurística simple teniendo en cuenta su dirección IP, resolución, navegador, plugins, SO, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "No comprobado" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Comprobado" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Resumen de visitantes" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visitas" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Una visita es un registro de un visitante único que viene al sitio más de 30 minutos después de su última vista de página." diff --git a/application/i18n/po/po-es_ES/tooltips.po b/application/i18n/po/po-es_ES/tooltips.po new file mode 100644 index 0000000000..24b50d8632 --- /dev/null +++ b/application/i18n/po/po-es_ES/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# lcs , 2014 +# nachouve , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Esto agrega el informe a categorías adicionales. Si selecciona la categoría 1 y el informe ya tiene la categoría 2, entonces se le asignarán las categorías 1 y 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprueba un informe o no. Si se aprueba, se mostrará públicamente." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Usted será capaz de asignar una tarjeta de identificación para la activación del usuario. Elija la tarjeta de identificación que se asigna aquí." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Contenido del correo electrónico que será enviado." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Asunto del correo electrónico que será enviado." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-es_ES/ui_admin.po b/application/i18n/po/po-es_ES/ui_admin.po new file mode 100644 index 0000000000..8dc8009fbf --- /dev/null +++ b/application/i18n/po/po-es_ES/ui_admin.po @@ -0,0 +1,1661 @@ +# +# Translators: +# Gonzalo Vidal , 2013 +# José Jiménez , 2013 +# lcs , 2014 +# Luis Bonifacio Ramírez del Pino , 2013 +# nachouve , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-03-24 19:07+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Acceso denegado. Sus credenciales no son válidas o su petición ha sido denegada." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Acceso denegado. Su petición ha sido recibida correctamente, pero denegada debido a límites de acceso como el tiempo. Inténtelo de nuevo más tarde." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nivel de acceso" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Añadir a la Categoría" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "añadido" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "añadido/editado" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Complementos" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrador" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertas" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertas Recibidas" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Todo" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anónimo" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Cualquiera" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "En cualquier sitio" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API prohibida" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Logs API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Configuración API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "DESBLOQUEAR" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "DESBLOQUEAR TODOS" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "aprobado" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Aprobar automáticamente" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprobar Manualmente" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archivado" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Está seguro de que quiere" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "¿Está seguro de que quiere eliminar este elemento?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "¿Está seguro de que quiere eliminar esta foto?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "¿Está seguro de que quiere cambiar formularios?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Asignar" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Asignaciones" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Asignar insignia" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email del autor" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Atrás" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Bloquear IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre horas" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloques" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Cuerpo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Error mostrando la gráfica" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Por favor, asegúrese que su mensaje es válido" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Por favor, asegúrese de que el número es válido." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Por favor revise su configuración de SMS" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalles de registro" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Registros" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Ciudades cargadas" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "código" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versión de código fuera de sincronización." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Color" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Su código de confirmación de alertas es:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "El Usuario Ha Sido" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Cuenta" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "País no encontrado" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "creado/editado" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Crear Reporte" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Actualización Crítica" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Actualmente Activa" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Actualmente Inactiva" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "No tiene permisos suficientes para editar los siguientes campos personalizados." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Diariamente" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Tablero" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "base de datos" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Fecha y Hora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Fecha Añadida" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Fecha Modificada" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Días de la semana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Versión DB no sincronizada." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "borrado" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Borrar" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Borrar todos los informes" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Borrar insignia" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demostración" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descripción" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Deshabilitado" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Separador Inicial" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Separador Final" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Informes de descarga" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Opciones desplegables" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITADO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editado Por" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editar" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Editar log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Colectivo completo" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "¡Error en la geocodificación! Error HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "La librería IMAP de PHP no está instalada" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Credenciales Incorrectas" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Error" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, imposible publicar incidente" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Cada Seis Horas" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Cada Doce Horas" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Preguntas Frecuentes" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "alimentar" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Retroalimentación" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "Flujos" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista de Opciones" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valor por defecto" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipo de Dato" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Marcador" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numérico" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Texto libre" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altura (En Filas)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Campo Oculto" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Longitud de Caracteres Máxima" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nombre del Campo" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Alternar" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "No" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Sí, Cerrado por defecto" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Sí, Abierto por defecto" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "No puede encontrarse el fichero subido" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "No pudo abrirse el fichero para lectura" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "¡Ese Formulario No Existe!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Foro" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Campo Área de Texto (Texto Libre)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Campo de Fecha" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Campos radio boton" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Campos de verificación" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Campo desplegable" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Error de tiempo expirado en Geonombres" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Obtener Ayuda" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obtener más temas" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obtener más complementos" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Añadir/Editar" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Administrar Usuarios" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rol" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Usuario" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ayuda" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Cada hora" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Alimentación de incidente para" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "La carpeta de instalación todavía existe. Borre la carpeta de instalación. Se trata de una vulnerabilidad de seguridad potencial." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instancia" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instancias" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalles de la Instancia" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parámetro Inválido" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Dirección IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "¿Es un campo de Fecha?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Quién Pude Ver las Respuestas" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Quién Puede Enviar Respuestas" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Palabra clave" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Palabras clave" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nombre Completo:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Contraseña:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rol:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nombre de usuario:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Desconectar" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Administrar" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Administrar Roles y Permisos" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Ver usuarios" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Añadir/Editar Usuarios" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Administrar tu Listado Público" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marcar como" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcado como no spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcado como spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "no coincide con ningún documento" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mensaje" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mensajes" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mensajes Lacónica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Mensajes de Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Su mensaje ha sido enviado!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutos" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Falta parámetros" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificado" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modificar Configuración Horaria" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "mover abajo" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "mover arriba" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Múltiples Instancias Alojadas" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Mis Alertas" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Mis registros" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Mi Perfil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Mis Reportes" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votos Emitidos" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positivo" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativo" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nombre" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Crear Nueva Alerta" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Crear Nuevo Mensaje" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nueva Contraseña" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "No" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Esta es una categoría especial que no se mostrará en el formulario de envío de reportes a los usuarios. Esta categoría será usada para mantener los informes que se han quedado sin categoría (informes no categorizados) como resultado del borrado de una categoría." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificación" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "No sensible a mayúsculas/minúsculas" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "No encontrado" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Sin datos. No hay resultados que mostrar." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Sin Error" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "No Hay Resultados Que Mostrar!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "En cuenta específica" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "página" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "páginas" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Página No Encontrada" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Lo sentimos, la página que está intentando ver no está aquí.

¿Ha seguido un enlace desde otro sitio en nuestro sitio?
Si llegó a esta página desde otra parte de nuestro sitio , por favor contáctanos para que podamos corregir nuestro error. ¿Ha seguido un enlace desde otro sitio?
Enlaces desde otros sitios a veces pueden ser obsoletos o mal escritos.
Cuéntanos de donde vienes y nosotros trataremos de ponernos en contacto con el otro sitio con el fin de solucionar el problema. ¿Escribiste el URL?
Es posible que haya escrito la dirección (URL) incorrectamente. Asegúrese de que usted tiene la ortografía exacta, mayúsculas, etc " + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Lo sentimos, la página que está intentando ver no está aquí." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parámetros Utilizados" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Contraseña" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Restablecer Contraseña" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Estimado" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Hemos recibido una solicitud para restablecer la contraseña de" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Para modificar su contraseña, por favor pulse sobre el enlace inferior (o cópielo y péguelo en su navegador)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Tal y como ha solicitado, su contraseña ha sido restaurada. Los nuevos detalles son los siguientes" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Restablecer contraseña de Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Por favor, Seleccione" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Datos no enviados por método Post" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Vista previa" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mensaje" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mensajes Privados" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mensaje Privado Enviado" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Asunto" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Para" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Listado Público" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Clasificación" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "leer" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevancia" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Título del Reporte" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Fecha del Reporte" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporteros" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveles Reportero" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Reportes" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Puntuación de Reputación" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Obligatorio" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Restaurar" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Responder" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultados" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revocar" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Esta dirección de correo electrónico ya tiene una cuenta administrada por CrowdmapID. El usuario deberá utilizar su contraseña de Crowdmap para entrar." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Guardar Configuración" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Buscar" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Buscar Reportes" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "buscando" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "La clave de encriptación todavía tiene el valor por defecto. Esto es inseguro y debe cambiarse." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Este sitio está siendo servido sobre HTTP. Debería establecerse HTTPS para mayor seguridad" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Las instrucciones están disponibles en la wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Seleccione el formato para la descarga de informes:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Seleccione un Tipo de Campo ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Por favor, seleccione un elemento" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Debe seleccionar un disparador antes de seleccionar una respuesta." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Debe seleccionar un disparador antes de definir una clasificación." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Remitente" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Enviar A" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Este mensaje fue enviado desde su sitio web en" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Hora del Servidor" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Configuración" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Mostrando página" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Mostrando resultados" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "mostrado" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoría Especial" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Esta es una categoría especial que no se mostrará en el informe de formulario de envío para los usuarios que envían informes. Esto se utiliza en conjunción con la característica de \"Los reporteros de confianza\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Área Específica" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Estado" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estadísticas" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estadísticas" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Falló la obtención de estadísticas! Por favor, inténtelo de nuevo más tarde." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Falló la obtención de estadísticas!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Días Específicos" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Asunto" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Administrador" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tarea Realizada" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Campo de Texto" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nombre" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Administrar Usuarios" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Error por tiempo agotado" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "Para" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Registros totales" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "Para" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traducir Reportes" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Disparador" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Activación del Usuario" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Disparadores" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "no aprovado" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Desconocido" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Fallo Desconocido" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "no leído" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "No recibirá más alertas de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Pulse aquí para actualizar ahora" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Actualizar Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Actualizar el Estado de Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Subir Reportes" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Usuario" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Usuarios" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificado/No Verificado" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verificar/No Verificar" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versión" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "está disponible para actualización." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Codificación de Vídeo" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mensajes Privados" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Ver Sitio" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Ver Reporte" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Bienvenido," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Si" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Su búsqueda de" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Haciendo clic en el boton inferior, borrarás TODOS los informes de la base de datos. Ten cuidado, esta operación no puede ser deshecha." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Recomendamos hacer una copia de seguridad de la base de datos antes de proceder" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Estoy seguro, quiero borrar %s informe(s) de la base de datos" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "¿Está seguro de que quiere borrar todos los informes?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "No hay informes para borarr." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Numero de accesos." + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Último acceso" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "¿Cuenta confirmada?" diff --git a/application/i18n/po/po-es_ES/ui_main.po b/application/i18n/po/po-es_ES/ui_main.po new file mode 100644 index 0000000000..1b7c5d5b33 --- /dev/null +++ b/application/i18n/po/po-es_ES/ui_main.po @@ -0,0 +1,3175 @@ +# +# Translators: +# José Jiménez , 2013 +# Marta Gimeno , 2012 +# lcs , 2014 +# Luis Bonifacio Ramírez del Pino , 2013 +# Rodrigo , 2013 +# xhiena , 2013 +# enjolras , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Acerca de" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acceso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Límites de acceso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nombre de la cuenta" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Esta acción no se puede deshacer. ¿Desea continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Activado" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Añadir" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Añadido por" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Información adicional" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Informes adicionales" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Añadir/Editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Añadir un campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Añadir idioma" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Añadir nuevo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Añadir categoría nueva" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Añadir traducción" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administración" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Recibir alertas" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alertarme si se registra un informe:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Guardar mi alerta" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Correo electrónico:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "introducir dirección de correo electrónico" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "introducir número de teléfono móvil con prefijo internacional" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Recibir alertas" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "La alerta ha sido" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Teléfono móvil:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "O indique un punto en el siguiente mapa y le enviaremos una alerta cuando se registre un informe en un radio de 20 kilómetros." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Si no encuentra una ubicación, selecciónela en el mapa." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS (copiar la siguiente URL)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Seleccionar una ciudad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Paso 1: Seleccione su ciudad o ubicación:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Paso 2: Enviar alertas a mi:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Paso 3 (opcional): Seleccionar categorías" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmar una solicitud de alerta anterior" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Se ha guardado la alerta." + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Todos" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permitido" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Etiquetas HTML permitidas: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Los Iframes sólo son permitidos de: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Todas las categorías" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Siempre" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "y" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprobar" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprobado" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Informes aprobados" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprobar este informe" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximado" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archivaar" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archivado" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Subiendo" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "en" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Registro automático" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Media de informes por día" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Esperando aprobación" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Esperando verificación" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Insignia" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Insignias" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imagen de la insignia" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "O puede subir su propia imagen para la insignia." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Grupo de insignias" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Seleccione una insignia" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Explorar perfiles" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoría" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro de categorías" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Esta categoría ha sido" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nombre de la categoría" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Cambiar rango de fechas" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Cambiar contraseña" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Cambiar mi imagen" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Elegir un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Elegir puntos de datos para descargar" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "O elegir su propio rango de fechas" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Elegir tipo de campo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Limpiar URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Limpiar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Limpiar mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Cerrar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "grupos" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Color" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentario" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalles del comentario" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Se han guardado las preferencias." + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurar" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ha confirmado correctamente su dirección de correo electrónico. Puede acceder a continuación." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "¡Ha confirmado satisfactoriamente su dirección de correo electrónico! Su cuenta tiene que ser aprobada por el administrador para poder acceder." + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "¡Ha fallado la confirmación de e-mail! Puede solicitar una nueva confirmación más abajo." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contacte con nosotros" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Código de seguridad" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Su correo electrónico" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mensaje" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Se ha enviado el mensaje." + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Su nombre" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Su teléfono" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar mensaje" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Asunto del mensaje" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crear" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crear/Editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crear nuevo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crear nueva contraseña" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Crear informe" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilidad" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Contraseña actual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Campos propios" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Información" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Fecha" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Fecha y hora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "día" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desactiar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenia" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Eliminar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Eliminado" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Eliminados" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Eliminar desactivado" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Elimina último" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Eliminar este informe" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Eliminar seleccionados" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Eliminar spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Bajando" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Ejemplo: Cruce de City Market, 5th Street y 4th Avenue, Johanesburgo" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalles" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Informe directo" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Desactivavo" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Desaprobar" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Descargar informes" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Descargar" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar campos" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar informe" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Correo electrónico" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Preferencias del servidor de correo" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Servidor de correo" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Contraseña del servidor" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Puerto del servidor" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Soporte SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipo del servidor" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Usuario del servidor" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "para que sus preferencias queden asociadas a esta dirección de correo electrónico" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Para recibir informes, por favor introduzca a continuación la información de su cuenta de correo electrónico. Tenga en cuenta que recibirá los correos en su" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Algunos servidores requieren la dirección completa" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Contraseña de la cuenta de correo" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Puertos habituales: 25, 110, 995 (GMail POP3 SSL), 993 (GMail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Ejemplos: correo.supaginaweb.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Ejemplos: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Activar o desactivar conexiones SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VACÍO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "para" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Error" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Ejemplo" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenia" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Aplicaciones externas" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Enlace de vídeo externo" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Flujo" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Opinar" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Por favor, danos tu opinión sobre tu experiencia enviando un correo electrónico a " + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Flujos" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Este flujo ha sido" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Elementos del flujo" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nombre del flujo" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL del flujo" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Campo no utilizado" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Archivo" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "El archivo supera el tamaño máximo." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtros" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrar informes" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrar informes por" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrar informes que contengan" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Buscar" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Buscar ubicación" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nombre" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Forzar ejecución programada" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "¿Ha olvidado su contraseña?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulario" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formularios" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descripción del formulario" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editar este formulario" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Este formulario ha sido" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Título del formulario" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Desde" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nombre completo" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Geolocalización disponible" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Color" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiqueta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Grosor del trazo" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Ir" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Etiqueta" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Ha sido" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Cómo ayudar" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Oculto" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ocultar" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ocultar este mensaje" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Inicio" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Cómo enviar un informe" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Utilizado para identificarte ante otros usuarios de la página." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imagen" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imágenes" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imagen/Icono" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactivo" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incidente" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidentes cercanos" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Ubicación del incidente" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Incluir" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Incluir categorías" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Incluir campos personalizados" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Incluir descripción" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Incluir todos los detalles posibles" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Incluir latitud" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Incluir información de la ubicación" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Incluir longitud" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Incluir información personal" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Medios de Entrada" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Evaluación de la información" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Introduce tu ubicación exacta" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Tu cuenta no tiene los permisos necesarios para iniciar sesión. Contacta con el administrador." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "En respuesta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Dirección IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "¿Es este tu perfil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "elemento" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elementos" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalles_elemento" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Titulo del Elemento" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Clave" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Palabras clave" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Archivo KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Subir archivo KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Idioma" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Último" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Último mes" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Apellidos" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Último año" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitud" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Otras capas" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "La capa ha sido" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nombre de la capa" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL de la capa" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Deja un comentario" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menos información" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivel" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "El nivel ha sido" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nombre del nivel" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitado" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Enlace" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Cargando informes" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Ubicación" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Ubicaciones" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Ciudad, estado y/o país" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Iniciar sesión" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Has creado tu cuenta. Inicia sesión." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Se ha enviado un mensaje de confirmación a tu correo electrónico." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Cuenta creada. Tiene que ser aprobada por un administrador antes de poder acceder." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "La cuenta de correo electrónico no existe. Prueba con una diferente o crea una nueva." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Elige tu proveedor" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Iniciar sesión con" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Correo electrónico y contraseña" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Registrarse" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Crear una cuenta" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Gracias por registrarte en %1$s. Para confirmar tu dirección de correo electrónico ve a la siguiente URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmación de registro" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Un nuevo usuario a accedido en %1$s. Para aprovarlo vaya a esta URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Aprovación de un nuevo usuario." + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Su cuenta de usuario a sido aprobada para %1$s. Puede acceder en la siguiente URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Cuenta de usuaio aprobada." + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Crea una cuenta para disfrutar de más opciones." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitud" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marcar como leído" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marcar como no leído" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Tamaño máximo del archivo" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Multimedia" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtro multimedia" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Miembros" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gestione su Cuenta" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mensaje" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mensajes" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalles del mensaje" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mensaje de una fuente no numérica:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Móvil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modificar" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modificar fecha" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mes" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Más" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Más información" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Abarca este despliegue de Ushahidi varios países" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Debe confirmar su dirección e-mail para acceder a este despliegue. Si pierde su e-mail de confirmación, puede solicitar otro nuevo abajo." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nombre" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Informe cercano" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nuevo" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Noticias" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Canales de noticias" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Fuentes de Noticias" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nueva categoría" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nueva contraseña" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nuevo informe" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Siguiente" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "No" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "No hay confirmaciones para mostrar." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "No hay datos" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Ninguno" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Avisos" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "No aprobado" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "No aprobado" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Elige---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "no es spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "No especificado" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "No hay informes" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "No hay resultados" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Apagado" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Noticias Oficiales & principales" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Encendido" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opción" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opciones" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organización" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizaciones" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descripción de la organización" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Correo electrónico de la organización" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "La organización ha sido" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nombre de la organización" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Teléfono de la organización 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Teléfono de la organización 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Página web de la organización" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descripción original" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Título original" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Otras implementaciones" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Bandeja de salida" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Salida" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Página" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Páginas" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descripción de la página" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "La página ha sido" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Nombre de pestaña" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Título de la página" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoria Padre" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Contraseña" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verificar contraseña" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Contraseña cambiada correctamente! Inicie sesión abajo." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "¿Ha olvidado su contraseña?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Compruebe su e-mail para la nueva contraseña." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "¿Permanecer logado en este ordenador?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mes pasado" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Año pasado" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pendiente" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "por" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Información personal Opcional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotografías" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Imágenes" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Imágenes y Vídeos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Buscar su ubicación utilizando un nombre de ubicación O coordenadas de latitud, longitud (formato: 38.19, 85.61), O pinchar en el mapa para localizar la ubicación correcta" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Empezar" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Tenga en cuenta" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Website plugin" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Perfil Publico" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL del Perfil Publico" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Vista previa" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Previsualizar elemento" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Vista previa del mensaje" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Previo" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privado" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Color del perfil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Se ha guardado tu perfil" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estadísticas" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Puntuación" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Leer" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Recibir" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Recibir de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Recibir notificaciones" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Informes recientes" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Refrescar canales de noticias" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Correo electrónico registrado" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Eliminar" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Responder" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Aviso" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Avisos(extraídos del mapa y en orden cronológico)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Avisa" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Periodistas" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Fecha del Reporte" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Correo electrónico de la persona que avisa" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nombre de la persona que avisa" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "La persona que ha dado el aviso ha sido" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Dirección IP de la persona que avisa" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Apellido de la persona que avisa" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nivel del Reporte" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveles del Reporte" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Teléfono de la persona que avisa" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Avisos" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Buscar" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Enviar" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Avisos de este usuario" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d avisos" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Fecha" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Los avisos se descargarán en formato CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Características" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Encuentra una ubicación cerca de ti" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nombre" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Apellidos" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Ubicación" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Enlace de fuente de noticias" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Información opcional" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Subir fotografías" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Volver a la página de avisos" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Elige una ciudad" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Tu aviso ha sido enviado a nuestro equipo para que lo revise. Nos pondremos en contacto contigo en breve si fuera necesario." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Enviar nuevo aviso" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Hora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Cronología de informes" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Título del aviso" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Enlace a video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Avisar de un incidente" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalles del informe" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Enviando un mensaje a" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Enviando un e-mail a" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Enviando un tweet con el hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Rellenando este formulario en nuestro sitio web." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Usando una app" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Su informe ha sido guardado" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titulo de informe" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Solicitar más información" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Solicitar ubicación" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Requerido" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requisitos" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Volver a enviar e-mail de confirmación" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Resetear" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Resetear todos los filtros" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Resetear password" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Obtener los nombres de ciudades del país seleccionado" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Cuentas gestionadas por el servicio %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Ya tiene una cuenta gestionada por CrowdmapID! Intente usar su e-mail CrowdmapID y password para logar." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Guardar" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Guardado" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Guardar & Añadir Nuevo" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Guardar & Cerrar" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Guardar Informe" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Planificar" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Planificador" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Día" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Log del planificador" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Dia de la Semana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Buscar" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultados de búsqueda" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Código de seguridad" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Seleccionar todo" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Seleccionar un tipo de campo" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Seleccionar un tipo de formulario" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Seleccionar en el mapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Seleccionar tantas como se necesite" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verificar que ha marcado un elemento" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Seleccionar tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Enviar" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Enviar confirmación" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Enviar a" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Enviado" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Enviado por" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Dirección del servidor" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipo de servidor" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servicio" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nombre de usuario del servicio" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID del usuario del servicio" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Compartir" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Datos compartidos" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "La participación ha sido" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Compartiendo" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa más corto" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Mostrar" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Mostrar todo" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mostrar mensajes" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Viendo informes de %1$s a %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Sitio web" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Dirección del sitio web" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Url del site" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa más pequeño" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Lo siento, no tiene ninguna insignia" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Fuente" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nombre de la fuente" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordenar" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ordenar por" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL de la fuente" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Soporte SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "De:" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Paso" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Enviar un informe" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Enviado por %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Enviar via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Enviar su SMS a" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "en su telefono" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Exito!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importado correctamente" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Apellido" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Encuesta" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa más grande" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Puerto TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Themas" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema Ushahidi por defecto" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Configuración de temas" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Este" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hoy" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Este mes" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Esta semana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Este año" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Este es su perfil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Hora" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Titulo" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "a" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hoy" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hoy a" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Informes totales" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traducido" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descripción traducida" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Titulo traducido" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traducido a" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traducción" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "La traducción ha sido guardada" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Confiado" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipo" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Imposible enviar e-mail." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Informes no categorizados" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "no leído" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "No verificado" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Actualizar canales" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Cargar" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Ver nuestras guias de carga de informes:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Guia de carga XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Guía de Subida por CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Fichero a cargar" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Informes de carga" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Los campos personalizados deben tener su form_id adjunto a ellos, ej el campo personalizado Test, en el formulario por defecto, cuyo id es 1, debe ser Test-1. Durante la importación de los campos personalizados, asegurese de que" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Con el formulario a continuación, puede importar incidentes al motor Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Los informes deben ser subidos en formato CSV o XML" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Cuando el ID de incidencia ya exista en la base de datos, la entrada en el CSV/XML será ignorada." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Debe contener al menos Titulo del Incidente y Fecha del Incidente" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "si no se proporciona las columnas latitud y longitud, la ubicación será geocodificada utilizando Google Geodecoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Si importa información adicional, p.ej. información personal y/o campos de formulario personalizados" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Por lo menos uno de los campos de información personal (nombre, apellido, e-mail) DEBE existir. Los registros vacíos no serán importados" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Sus entradas para campos desplegables, botones de selección y cajas de verificación concuerdan con las opciones proporcionadas para el campo personalizado en su instancia" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Las opciones de selección se separan por comas, p.ej. si su selección de frutas es manzanas, mangos y uvas, su entrada para esto debería ser \"manzanas,mangos,uvas\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Los valores de campo tienen el siguiente formato: mm/ddd/yyyy ej. 3 de Octubre de 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Un ejemplo de informe CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Presunta muerte en Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Tres casos han sido confirmados en C. del Uruguay\",\"MUERTES, CIUDADANOS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Saqueo\",\"2009-03-18 10:10:00\",\"Accra\",\"Saqueo sucediendo en todas partes\",\"MOTINES, MUERTES, PÉRDIDA DE PROPIEDAD, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Carga realizada correctamente" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Cargar video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Usuario" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nombre de usuario" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Administrador Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificación" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificado" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Informes verificados" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verificar" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verificar este informe" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versión" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Ver" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Vistas" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Ver todo" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Ver todos los canales" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Ver todos los informes" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Ver elementos" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Ver más" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Ver perfil público" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Ver informe" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Ver informes" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Ver Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Esperando aprobación" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Esperando verificación" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa más amplio" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulario Web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Peso" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Si" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ayer" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Su tablero" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Su fichero" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Acercar" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Alejar" diff --git a/application/i18n/po/po-es_ES/upgrade.po b/application/i18n/po/po-es_ES/upgrade.po new file mode 100644 index 0000000000..90beeb4923 --- /dev/null +++ b/application/i18n/po/po-es_ES/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# xhiena , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 21:29+0000\n" +"Last-Translator: xhiena \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Datos de entrada no válidos. Puede ser 0 para No o 1 para Si" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Actualización automática" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Actualizaciones Disponibles" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continuar" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Actualizar" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Voy a actualizar tu base de datos de la version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "a la nueva versión de la base de datos " + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Click en el botón \"Actualizar\" y relajate mientras hago la magia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Asi que quieres que yo actualice tu base de datos, marca la casilla de verificacion de abajo y lo haré en un momento." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "¿Hacer un respaldo de la base de datos antes de actualizar? (Muy recomendado)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Actualización de la base de datos de Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "¡Ushahidi ha sido actualizado! Antes de continuar, necesitas actualizar la base de datos a la última versión (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Tu base de datos está actualizada." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "La actualización falló en algun punto" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Actualización manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Estado de la actualización de Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Las instrucciones de abajo detallan como actualizar manualmente tu implementacion de Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "

Download
" +msgstr "
Descargar
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Descarga la versión más reciente de Ushahidi desde" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Respaldo
- .htaccess, ./applications/config/config.php, ./applications/config/database.php y ./applications/config/auth.php files.
- Por si algo sale mal, es recomendable que hagas un respaldo completo de tu implementacion de Ushahidi.
Copiar archivos
- Extraer el zip descargado
- Dependiendo del sistema operativo de tu servidor, usa tu herramienta o modo favorito (p.e. Telnet, FTP, SSH) para entrar en el servidor y reemplazar los contenidos de todas las carpetas con los ficheros de la compilación más reciente.
Actualizar Base de datos
- Primero determina la version del esquema de tu base de datos mirando el valor db_version en la tabla de configuración o mira en la información de la actualización de Ushahidi al principio de esta página.
- Si tienes la version 25, necesitas actualizar de 25-26, 26-27, 27-28 y así sucesivamente hasta el último archivo SQL en el directorio /sql.
- Con tu cliente de base de datos, actualiza la base de datos ejecutando el archivo upgradex-x.sql apropiado.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Paso 3: Mira en el directorio sql. Ejecuta manualmente el fichero de actualización upgrade-.sql empezando desde la versión actual de tu instalación hasta el ultimo fichero sql de actualización." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Paso 4: Click en el botón \"Continuar\" para actualizar las tablas necesarias." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Para actualizaciones automaticas, haz clic en el botón de abajo." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Estás usando Ushahidi v%1$s con la versión de la base de datos %2$d ejecutándose en %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Actualizando" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Para continuar con la actualización fácil, es necesario saber en que servidor FTP esta alojada tu web." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "Servidor FTP: Ejemplo: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Contraseña de FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Usuario FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Tienes la última versión de Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "No necesitas actualizar." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Version de la Base de datos: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Aviso: La versión del software en version.php y en la base de datos no concuerda." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Aviso: La version de la base de datos en version.php y la base de datos no concuerda." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Base de datos:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "¡BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Descargando la última versión de ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Fichero de logs" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Bajado correctamente. Descomprimiendo..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Error descargando." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Descomprimido correctamente. Copiando Archivos..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Error al descomprimir." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copiado correctamente. Actualizando Base de datos..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Error copiando los archivos." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Respaldo de la base de datos y actualización correctas." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Error al respaldar la base de datos." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Actualización de la base de datos correcta." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Borrando los archivos descargados..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "ACTUALIZACIÓN CORRECTA. Ver archivo de log" diff --git a/application/i18n/po/po-es_PE/alerts.po b/application/i18n/po/po-es_PE/alerts.po new file mode 100644 index 0000000000..672c1e1c73 --- /dev/null +++ b/application/i18n/po/po-es_PE/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El campo correo electrónico parece no tener una dirección de correo electrónica valida." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Ese correo electrónico ya esta registrado para recibir alertas para esa ubicación" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener entre 4 y 64 caracteres." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es obligatorio si el checkbox está marcado." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Por favor seleccione una ubicación dentro de %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación valida en el mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "El campo teléfono móvil parece no contener la correcta cantidad de dígitos." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ese numero de teléfono móvil ya esta registrado para recibir alertas en esa ubicación" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "El campo teléfono móvil no parece contener un numero valido. Por favor ingrese los números solo incluyendo el código del paí­s." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Usted debe ingresar su número de teléfono móvil o su dirección de correo electrónico." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "El campo teléfono móvil es obligatorio si el checkbox está marcado." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "No ha seleccionado un radio válido en el mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "No ha seleccionado un radio válido en el mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "No tiene suscriptores con alertas" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Está subscripto a las alertas para las categorías siguientes" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "¡Este código ya ha sido verificado anteriormente!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "¡Este código de verificación no ha sido encontrado! Por favor confirme que lo ha ingresado correctamente. Puede usar el formulario que está mas abajo para re-ingresar su código de verificación:" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Su código fue verificado correctamente. Ahora usted va a recibir alertas sobre incidentes que vayan sucediendo." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Para confirmar su solicitud de alerta, por favor vaya a" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Regrese a la página de alertas para crear más alertas" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Su pedido de alerta por correo electrónico ha sido creado y el mensaje de verificación ha sido enviado a " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Por favor ingrese el código de confirmación que recibió por correo electrónico:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "¡Su pedido de alerta por correo electrónico NO ha sido guardado!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "¡Su pedido de alerta por correo electrónico ha sido guardado!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "¡El sistema no pudo procesar su solicitud de confirmación!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Su pedido de alerta móvil ha sido creado y el mensaje de verificación fue enviado a " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Por favor ingrese a continuación el código de confirmación SMS que recibió en su teléfono: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "¡Su pedido de alerta móvil NO ha sido guardado!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "¡Su pedido de alerta móvil ha sido guardado!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Este servidor no está configurado para procesar correctamente las alertas" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Usted ha recibido este correo electrónico porque está suscrito para recibir alertas. Si no desea seguir recibiendo alertas vaya a" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Ya no recibirá alertas de " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "No pudimos eliminar su suscripción. Por favor confirme que tiene la URL correcta." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertas - verificación" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Usted no va a recibir alertas en esta ubicación hasta que confirme su pedido." diff --git a/application/i18n/po/po-es_PE/auth.po b/application/i18n/po/po-es_PE/auth.po new file mode 100644 index 0000000000..99dbd7f864 --- /dev/null +++ b/application/i18n/po/po-es_PE/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "El campo correo electrónico parece no contener una dirección de correo electrónico válida." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Lo siento, ya existe una cuenta de usuario con ese correo electrónico." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener por lo menos 4 y no mas de 64 caracteres." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "El campo correo electrónico es obligatorio." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "El campo nombre completo debe tener por lo menos 3 y no mas de 100 caracteres." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "El campo nombre completo es obligatorio." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "El campo nombre de usuario contiene caracteres no permitidos." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La contraseña debe tener al menos ocho caracteres" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Combinación de nombre y contraseña incorrecta" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ingrese la misma contraseña en ambos campos" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "El campo contraseña es obligatorio" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El campo contraseña acepta caracteres alfanuméricos, además de #, @, _ y -" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "La contraseña ingresada es incorrecta. Por favor intente nuevamente" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La contraseña debe tener al menos ocho caracteres" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Combinación de nombre y contraseña incorrecta. Por favor verifique" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ingrese la misma contraseña en ambos campos" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "El campo contraseña es obligatorio" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El campo contraseña acepta caracteres alfanuméricos, además de #, @, _ y -" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Error al intentar validar la contraseña" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "El campo contraseña debe tener por lo menos 8 caracteres de longitud." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor revise que ha ingresado el correo electrónico y la clave correcta." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor ingrese la misma contraseña en ambos campos." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "El campo contraseña es obligatorio." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "No se puede contactar el servidor de autenticación. Por favor intente más tarde" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "El campo contraseña acepta caracteres alfanuméricos, además de #, @, _ y -" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "El campo confirmación de la contraseña debe ser igual al campo contraseña." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "El campo correo electrónico parece no contener una dirección de correo electrónico valida." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Lo siento, no tenemos su dirección de correo electrónico" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "El campo correo electrónico es obligatorio." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Solo el administrador general puede editar o crear otros administradores" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "El formato del rol es inválido." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "El campo rol debe tener al menos 5 y no más de 30 caracteres de largo." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Usted debe definir al menos un rol." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Usted debe seleccionar el rol ADMIN o USUARIO." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "El indicio de contraseña olvidada es inválido" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Indicio de contraseña olvidada es obligatorio" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "El rol del usuario administrador no puede ser modificado." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "La URL sólo puede incluir números y letras" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Lo siento, este nombre de usuario ya está siendo usado." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "El campo nombre de usuario debe tener por lo menos 2 y no más de 100 caracteres." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Por favor revise que ingreso el nombre de usuario correcto." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "El campo nombre de usuario es obligatorio." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "El rol del usuario super-administrador no puede ser modificado." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Está intentando crear o editar un usuario? (Posible ataque CSRF)" diff --git a/application/i18n/po/po-es_PE/bug.po b/application/i18n/po/po-es_PE/bug.po new file mode 100644 index 0000000000..e280b554e9 --- /dev/null +++ b/application/i18n/po/po-es_PE/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El campo correo electrónico no contiene una dirección de correo electrónico válida" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es requerido si el checkbox está seleccionado." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "El campo error es obligatorio." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo asunto debe tener al menos 3 caracteres de largo." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "El campo asunto es obligatorio." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre debe tener al menos 3 caracteres de largo." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." diff --git a/application/i18n/po/po-es_PE/category.po b/application/i18n/po/po-es_PE/category.po new file mode 100644 index 0000000000..b4c428058c --- /dev/null +++ b/application/i18n/po/po-es_PE/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 01:57+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "El campo color debe tener al menos 6 caracteres de largo." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "El campo color es obligatorio." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "El campo descripción es obligatorio." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Por favor asegúrese que los tamaños de carga de imágenes están limitados a 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "El campo imagen parece no contener una imagen válida.Los únicos formatos aceptados son .jpg, .png y .gif." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "El campo imagen parece no contener un archivo válido" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "El campo título debe tener por lo menos 3 y no mas de 80 caracteres de largo." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "El campo título es obligatorio." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Esta categoría ya tiene sub-categorías." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "La categoría padre no existe." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "El campo categoría padre debe ser un número." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "No puede utilizar una categoría especial como nivel superior" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "El campo categoría padre es obligatorio." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "La categoría y la categoría padre no pueden ser iguales." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Las categorías especial no pueden tener sub-categorías" diff --git a/application/i18n/po/po-es_PE/comments.po b/application/i18n/po/po-es_PE/comments.po new file mode 100644 index 0000000000..a93772e4ee --- /dev/null +++ b/application/i18n/po/po-es_PE/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 02:04+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Has introducido un código de seguridad incorrecto" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre debe tener al menos 3 caracteres de largo." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "El campo comentarios es obligatorio." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico parece no tener una dirección de correo electrónico válida." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es obligatorio si el checkbox está marcado." diff --git a/application/i18n/po/po-es_PE/contact.po b/application/i18n/po/po-es_PE/contact.po new file mode 100644 index 0000000000..3add821ef8 --- /dev/null +++ b/application/i18n/po/po-es_PE/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 02:08+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Por favor introduce un código de seguridad válido" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico no contiene una dirección de correo electrónico válida." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener al menos 4 y no más de 64 caracteres de largo." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es obligatorio si el checkbox está marcado." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "El campo mensaje es obligatorio." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre debe tener al menos 3 caracteres de largo." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo asunto debe tener al menos 3 caracteres de largo." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "El campo Asunto es obligatorio." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Ocurrió un error al enviar su mensaje" diff --git a/application/i18n/po/po-es_PE/core.po b/application/i18n/po/po-es_PE/core.po new file mode 100644 index 0000000000..56bdb19f69 --- /dev/null +++ b/application/i18n/po/po-es_PE/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-08-09 02:19+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "archivo de configuración" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controlador (controller)" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "controlador (driver)" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "El driver %s para la biblioteca %s debe implementar la interfaz %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "El driver %s para la biblioteca %s no puede ser encontrado" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Puede ir a la página principal o intentar de nuevo." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "No es posible completar este pedido" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ayudante (helper)" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "El tipo de archivo solicitado, .%s, no está permitido por el archivo de configuración" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Método inválido %s llamado en %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "La propiedad %s no existe en la clase %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "biblioteca (library)" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "El directorio de log no se puede escribir: %s " + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modelo" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi no pudo encontrar un controlador para ejecutar este pedido: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Por favor seleccione una ruta predeterminada en config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "La página solicitada, %s, no fue encontrada." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Reporte esto a Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "El %s solicitado, %s, no fue encontrado" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Cargado en {execution_time} segundos, utilizando {memory_usage} de memoria. Generado por Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "izquierda-a-derecha" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Sólo puede haber una instancia de Ushahidi por cada pedido de página" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Excepción no atrapada %s: %s en el archivo %s en la línea %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "vista (view)" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Debe seleccionar el archivo de vistas antes de llamar al render" diff --git a/application/i18n/po/po-es_PE/database.po b/application/i18n/po/po-es_PE/database.po new file mode 100644 index 0000000000..b3f8ebf460 --- /dev/null +++ b/application/i18n/po/po-es_PE/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 17:23+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Error en la Base de Datos: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "No se puede encontrar la Tabla \"%s\" en la base de datos. Por favor asegúrese que esta utilizando la base de datos más reciente para esta versión de Ushahidi." diff --git a/application/i18n/po/po-es_PE/datetime.po b/application/i18n/po/po-es_PE/datetime.po new file mode 100644 index 0000000000..9e9db020e8 --- /dev/null +++ b/application/i18n/po/po-es_PE/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 17:40+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Vie" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Viernes" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Lun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Lunes" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sab" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sabado" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dom" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Domingo" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Jue" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Jueves" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Martes" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mie" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Miércoles" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ene" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Enero" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Febrero" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marzo" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Abr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Abril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "May" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mayo" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Junio" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Julio" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosto" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Set" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Setiembre" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Octubre" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Noviembre" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dic" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Diciembre" diff --git a/application/i18n/po/po-es_PE/feeds.po b/application/i18n/po/po-es_PE/feeds.po new file mode 100644 index 0000000000..6cdcf972a9 --- /dev/null +++ b/application/i18n/po/po-es_PE/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 18:13+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "FECHA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "El campo nombre de feed debe tener por lo menos 3 y no más de 70 caracteres de largo." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Por favor ingrese el nombre del feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Por favor ingrese la URL del feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Por favor ingrese una URL válida. Ej: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ORIGEN" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Titulo" diff --git a/application/i18n/po/po-es_PE/footer.po b/application/i18n/po/po-es_PE/footer.po new file mode 100644 index 0000000000..c264141887 --- /dev/null +++ b/application/i18n/po/po-es_PE/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 18:32+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl no esta instalado en este servidor" diff --git a/application/i18n/po/po-es_PE/form.po b/application/i18n/po/po-es_PE/form.po new file mode 100644 index 0000000000..43e180c219 --- /dev/null +++ b/application/i18n/po/po-es_PE/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 18:40+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "El valor default no es válido" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "El Nombre de Campo debe tener al menos 3 y no más de 200 caracteres de largo." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Por favor ingrese un valor entre 0 y 50 para Alto de Campo" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Usted ha ingresado un valor no valido para Campo Fecha" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Por favor seleccione \"Si\" o \"No\" para Campo Fecha" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "El Nombre de Campo debe tener por lo menos 3 y no más de 100 caracteres de largo." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Por favor ingrese un Nombre de Campo." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "El nombre de campo que ha registrado ya existe en este formulario. Por favor, ingrese uno distinto." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Usted ha ingresado un valor no válido para Campo Obligatorio" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Por favor seleccione Si ó No para el Campo Obligatorio" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Por favor seleccione un Tipo de Campo Válido." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Por favor seleccione un Tipo de Campo." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Por favor ingrese un valor entre 0 y 200 para Ancho de Campo" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Por favor ingrese la descripción del formulario." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "El formulario por defecto no puede ser eliminado." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Por favor seleccione a cual formulario hay que agregarle este campo." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Por favor seleccione a cual formulario hay que agregarle este campo." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "El campo nombre de formulario debe tener al menos 3 y no más de 100 caracteres de largo." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Por favor ingrese el nombre del formulario." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Ya existe un formulario con este título. Por favor, escoja otro. " diff --git a/application/i18n/po/po-es_PE/imap.po b/application/i18n/po/po-es_PE/imap.po new file mode 100644 index 0000000000..801aff0b4f --- /dev/null +++ b/application/i18n/po/po-es_PE/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 21:21+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "No se pudo abrir el stream IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "El servicio de correo electrónico no está soportado" diff --git a/application/i18n/po/po-es_PE/installer.po b/application/i18n/po/po-es_PE/installer.po new file mode 100644 index 0000000000..1a36e3dbed --- /dev/null +++ b/application/i18n/po/po-es_PE/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 21:46+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Directorio base" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Base de datos" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Dirección del servidor de base de datos" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Si esta utilizando Ushahidi en su propio computador, esta dirección deberá ser \"localhost\". Si lo está utilizando en un servidor externo, deberá obtener esta información del proovedor del servidor" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "El nombre de la base de datos que utilizará Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Para más información vea este artículo en nuestro wiki, que describe bases de datos en más detalle" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Idioma" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Cada instancia de Ushahidi posee algunos idiomas. Ud también puede agregar otros" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Deshabilitar" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Habilitar" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Esta es una lista de los errores que encontramos" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "El directorio en su servidor donde se han copiado los archivos de Ushahidi. Este valor fue detectado automáticamente, por favor verifique que sea correcto. Si este campo está vacío, significa que Ushahidi está instalado en el directorio raíz" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Terminado" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "General" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Obtenga su llave del API de Google. aquí" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Retroceder" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALACIÓN AVANZADA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Obtiene toda la información para la instalación por medio de un proceso de cinco pasos, incluyendo servidor, mapa, nombre del sitio y detalles de contacto" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALACION BASICA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple y rápida. Todo lo que necesita es el nombre del directorio raíz del servidor web y la información de la base de datos. Elija esta opción para realizar una instalación rápida. Luego de la instalación, puede completar la configuración del sistema en otro momento" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Proceder" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Bienvenido al proceso de instalación de Ushahidi. Seleccione que tipo de instalación le gustaría realizar" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalación exitosa" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Servidor de Correo" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Servidor de correo" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Ejemplos: email.susitioweb.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Contraseña del servidor de correo" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "La contraseña de la cuenta de correo" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Puerto TCP del servidor de correo" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Puertos comunes: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipo de servidor de correo" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). ¿Cuál es la diferencia?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Usuario del servidor de correo" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Si utiliza una cuenta de Gmail, Hotmail, o Yahoo Mail, use la direeción de correo electrónico completa para el nombre de usuario" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Proveedor de Mapas" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi puede utilizar los siguientes proveedores de mapas: Google, Bing, Yahoo u Open Street Map. Escoja el que posea mayor nivel de detalle para el área que le interese" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Otros pasos..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Contraseña" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Contraseña de la base de datos" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Anterior" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Por favor reinicie el Servidor Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Habilita o deshabilita conexiones seguras (SSL)" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Algunos servidores de correo tienen la opción de utilizar SSL al establecer una conexión. Se recomienda utilizar SSL ya que provee mayor seguridad al encriptar las comunicaciones" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Configure su servidor SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Dirección de correo del sistema" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Dirección de correo para alertas" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Dirección de correo para enviar alertas a los usuarios que lo soliciten. Esta dirección debe ser distinta a la dirección de correo del sistema" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Todos los mensajes del sitio utilizarán esta dirección" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nombre del Sitio" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "El nombre de su sitio" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Subtítulo" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "El subtítulo del sitio" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "El servidor web debe tener permiso de escritura a los siguientes archivos y directorios" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Puede encontrar más información en cómo administrar permisos en:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Antes de comezar asegurese que el servidor web tenga permiso de escritura para los siguientes archivos y directorios. Puede ser necesario cambiar los permisos en forma manual" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "La siguiente información será necesaria para el proceso de instalación" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefijo para las tablas" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Usualmente no se utiliza ningún prefijo. Sin embargo, si se utilizan múltiples instancias del sistema en la misma base de datos, se debe colocar un prefijo para cada una" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titulo" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Para ingresar, vaya a" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Subir reportes" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nombre de usuario:" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "El usuario de la base de datos" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "y utilice este usuario y contraseña" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Vea su sitio web" diff --git a/application/i18n/po/po-es_PE/layer.po b/application/i18n/po/po-es_PE/layer.po new file mode 100644 index 0000000000..2594757d74 --- /dev/null +++ b/application/i18n/po/po-es_PE/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 21:54+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "El campo color debe tener al menos 6 caracteres de largo." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "El campo color es obligatorio." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "El campo Archivo parece no contener un archivo válido. Los únicos formatos aceptados son .KMZ y .KML" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "El campo Archivo parece no contener un archivo válido" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "El nombre del campo debe tener por lo menos 3 y no mas de 80 caracteres de largo." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Se requiere un archivo o un URL de un KML" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "No se puede especificar un URL y un archivo KML. Utilice solamente uno." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Por favor ingrese una URL válida. Ej: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-es_PE/libraries.po b/application/i18n/po/po-es_PE/libraries.po new file mode 100644 index 0000000000..baa07f3bed --- /dev/null +++ b/application/i18n/po/po-es_PE/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-10 02:27+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "No es posible conectarse al servidor de Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "No es posible recibir una respuesta de Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "El API: %s para la clase %s no se encuentra. Verifique la tabla de ruteo del API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "La llave API de Akismet no es válida" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error intentando realizar un fopen al enviar.
Verifique que PHP soporta OpenSSL y que la versión de PHP es mayor a 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "El mensaje es demasiado largo. (Largo actual=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Debe especificar una dirección de destino (A)" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Debe especificar una dirección de origen (DE)" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "El mensaje en Unicode es demasiado largo. (Largo actual=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Método de envío no soportado" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "La librería de API %s no es válida. Todas las librerías de API deben ser subclases de %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "El directorio %s no puede ser borrado" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Error cuando se extraía: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "La descarga de la última versión de Ushahidi falló. Código HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "El archivo %s no puede ser copiado" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "El archivo %s no puede ser borrado" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Programa para la actualización de Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "El archivo comprimido descargado %s, no puede ser escrito" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s no está disponible en la clase RiverID." diff --git a/application/i18n/po/po-es_PE/maintenance.po b/application/i18n/po/po-es_PE/maintenance.po new file mode 100644 index 0000000000..eb82056054 --- /dev/null +++ b/application/i18n/po/po-es_PE/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 21:20+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Lo sentimos, estamos en mantenimiento. Por favor intenta de nuevo en algunos minutos. Gracias." diff --git a/application/i18n/po/po-es_PE/message.po b/application/i18n/po/po-es_PE/message.po new file mode 100644 index 0000000000..22d7e05758 --- /dev/null +++ b/application/i18n/po/po-es_PE/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-10 23:54+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese un código de seguridad" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico parece no tener una dirección de correo electrónica valida." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener entre 4 y 64 caracteres." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo correo electrónico es obligatorio si el checkbox está marcado." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "El campo comentarios es obligatorio." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "El campo nombre debe tener al menos 3 caracteres de largo." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "El campo nombre es obligatorio." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "El campo telefono no es válido." diff --git a/application/i18n/po/po-es_PE/mhi.po b/application/i18n/po/po-es_PE/mhi.po new file mode 100644 index 0000000000..c8769a17f5 --- /dev/null +++ b/application/i18n/po/po-es_PE/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-11 00:01+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor ingrese un código de seguridad válido" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Por favor ingrese el código de seguridad" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico no contiene una dirección de correo electrónico válida." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Ingrese una dirección de correo electrónico válida" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "El campo mensaje es obligatorio." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "El campo asunto debe tener al menos 3 caracteres de largo." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "El campo asunto es obligatorio." diff --git a/application/i18n/po/po-es_PE/notifications.po b/application/i18n/po/po-es_PE/notifications.po new file mode 100644 index 0000000000..4d2ee32b34 --- /dev/null +++ b/application/i18n/po/po-es_PE/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-11 00:10+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Este mensaje ha sido enviado desde su página web." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Acceso Administrador" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Un nuevo comentario ha sido publicado en su página web en respuesta a: " + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nuevo Comentario" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Un nuevo correo ha sido publicado en su página web" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nuevo mensaje de correo" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Su sitio ha recibido un nuevo reporte" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nuevo reporte" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Un nuevo mensaje de texto ha sido publicado en su página web" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nuevo mensaje de texto" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Ha recibido una alerta." + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nueva alerta" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Ha recibido un mensaje privado" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nuevo mensaje privado" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Para responder diríjase a: " diff --git a/application/i18n/po/po-es_PE/page.po b/application/i18n/po/po-es_PE/page.po new file mode 100644 index 0000000000..b75e5eb6d6 --- /dev/null +++ b/application/i18n/po/po-es_PE/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 17:17+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Por favor ingrese un Título de Página" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "El Título de la página debe tener entre 3 y 150 caracteres" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Por favor introduce una etiqueta para la página" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Por favor añada una descripción de la página" diff --git a/application/i18n/po/po-es_PE/permissions.po b/application/i18n/po/po-es_PE/permissions.po new file mode 100644 index 0000000000..8bf2246e99 --- /dev/null +++ b/application/i18n/po/po-es_PE/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Johnattan Rupire , 2014 +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-04-03 16:09+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Ver reportes" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crear/Editar/Borrar reportes" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprobar reportes" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar Reportes" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Administrar comentario y reportes" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descargar reportes" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Subir reportes" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Administrar mensajes" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Administrar informantes" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ver estadísticas" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificar configuración" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Administrar panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Administrar usuarios" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Administrar roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Ver verificaciones" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Administrar verificaciones" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acceso administración" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acceso a miembros" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Eliminar todos los reportes" diff --git a/application/i18n/po/po-es_PE/private_message.po b/application/i18n/po/po-es_PE/private_message.po new file mode 100644 index 0000000000..a48450dff1 --- /dev/null +++ b/application/i18n/po/po-es_PE/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-09 02:02+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "El Parent ID debe ser numérico" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "El campo \"A:\" es obligatorio" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "El usuario al que deseas enviar el mensaje, no existe" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "El campo \"Asunto\" es obligatorio." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "El Asunto debe tener entre 3 y 150 caracteres" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "El campo \"Mensaje\" es obligatorio" diff --git a/application/i18n/po/po-es_PE/report.po b/application/i18n/po/po-es_PE/report.po new file mode 100644 index 0000000000..26c255bece --- /dev/null +++ b/application/i18n/po/po-es_PE/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Johnattan Rupire , 2014 +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-04-03 01:45+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "¡Error!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "La ubicación del reporte debe estar dentro del país seleccionado en la configuración del sistema %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Por favor ingrese un valor válido para el \"%s\" campo." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "El campo \"%s\" debe ser numérico" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "El campo \"%s\" es requerido." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "El campo \"%s\" no existe." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "El campo \"%s\" no puede ser editado por su cuenta." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "El campo \"%s\" debe contener una dirección de correo electrónico válida." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "El campo \"%s\" debe contener un número de teléfono válido" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "El campo \"%s\" debe contener una fécha válida (MM/DD/YYYY)" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "El campo \"%s\" debe contener una fecha válida (DD/MM/YYYY)" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Por favor seleccionar un item válido para incluir en la descarga" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Por favor seleccionar un item válido para incluir en la descarga" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor seleccione \"Reportes Esperando Aprobación\" o \"Reportes Aprobados\" o ambos." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Por favor seleccionar un tipo válido de informe a descargar" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Por favor seleccionar un tipo válido de informe a descargar" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Por favor seleccionar un tipo válido de informe a descargar" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Debe seleccionar un formato de descarga. Seleccione CSV o XML" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Por favor, seleccione un formato válido para descargar sus reportes." + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "El campo fecha DESDE parece no contener una fecha válida." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Por favor ingrese una fecha DESDE válida. No puede ser mayor al día de hoy." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Por favor ingrese un valor válido para Aprobar Este Informe" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Por favor ingrese un valor válido para Aprobar Este Informe" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "El campo am/pm parece no contener un valor válido" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "El campo Categorías parece no contener una categoría válida" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "El campo Categorías es obligatorio." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "El campo fecha parece no contener una fecha válida." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "El campo fecha parece no contener una fecha válida?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "El campo fecha es obligatorio" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "El campo descripción es obligatorio." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "El campo hora parece no contener una hora válida" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "El campo hora es obligatorio." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Por favor ingrese un valor válido para Probabilidad de Información" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Por favor ingrese un valor válido para Probabilidad de Información" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "El campo minuto parece no contener un valor válido" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "El campo minuto es obligatorio." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "El campo enlaces a fuentes de noticias parece no contener una URL válida" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Por favor asegurese que los tamaños de las fotos subidas no tengan más de 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "El campo Imagen Subida parece no contener una imagen válida. Los únicos formatos aceptados son .jpg, .png y .gif." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "El campo Imagen subida parece no contener un archivo válido" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Por favor ingrese un valor válido para Confiabilidad de la fuente" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Por favor ingrese un valor válido para Confiabilidad de la fuente" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "El campo \"Titulo de Reporte\" debe tener al menos 3 y no más de 200 caracteres de largo." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "El campo \"Título de Reporte\" es obligatorio." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Posible ataque CSRF. ¿Realmente quiere crear/editar un reporte?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Por favor ingrese un valor válido para Verificar Este Informe" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Por favor ingrese un valor válido para Verificar Este Informe" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "El campo enlaces a vídeo parece no contener una URL válida" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "El campo latitud parece no contener una latitud válida." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El campo latitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "El campo \"local\" tiene un valor incorrecto. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Este informe ya tiene una traducción para ese idioma" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "El campo local tiene un valor incorrecto. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "El Informe Original y la Traducción tienen el mismo idioma local (idioma)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "El idioma es obligatorio" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "El campo nombre de ubicación debe tener al menos 3 y no más de 200 caracteres de largo." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "El campo \"Nombre de Ubicación\" es requerido." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "El campo longitud parece no contener una longitud válida." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El campo longitud es obligatorio. Por favor haga click en el mapa para seleccionar una ubicación." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "El campo correo electrónico parece no tener una dirección de correo electrónica valida." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "El campo correo electrónico debe tener por lo menos 4 y no mas de 64 caracteres." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "El campo nombre completo debe tener por lo menos 3 y no mas de 100 caracteres." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "El campo Apellido debe tener por lo menos 2 y no mas de 100 caracteres." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "El campo fecha HASTA parece no contener una fecha válida" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Por favor ingrese una fecha HASTA válida. No puede ser mayor al día de hoy." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Su fecha DESDE no puede ser mayor a su fecha HASTA." diff --git a/application/i18n/po/po-es_PE/reporters.po b/application/i18n/po/po-es_PE/reporters.po new file mode 100644 index 0000000000..f879ea955f --- /dev/null +++ b/application/i18n/po/po-es_PE/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-10 02:20+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "El campo latitud parece no contener una latitud válida." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El campo latitud es requerido. Por favor haga click en el mapa para seleccionar una ubicación." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El campo Nivel de Reporte parece no contener una nivel válido." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "El campo Nivel de Reporte parece no contener una nivel válido." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "El campo nombre de ubicación debe tener al menos 3 y no más de 200 caracteres de largo." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "El campo ubicación es requerido." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "El campo longitud parece no contener una longitud válida." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "El campo longitud es obligatorio. Por favor haga click en el mapa para seleccionar una ubicación." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Informante no válido" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Informante no válido" diff --git a/application/i18n/po/po-es_PE/reports.po b/application/i18n/po/po-es_PE/reports.po new file mode 100644 index 0000000000..ac0515bba7 --- /dev/null +++ b/application/i18n/po/po-es_PE/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-08 22:49+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifica que has seleccionado un ítem." + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifica que has seleccionado un ítem." + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Los reportes deben ser categorizados antes de ser aprobados" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "No tiene permisos para realizar esta acción" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Debe seleccionar un archivo para subir" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "El archivo a subir debe ser del formato .csv o .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "El campo Carga de Archivos no parece contener un archivo válido" diff --git a/application/i18n/po/po-es_PE/roles.po b/application/i18n/po/po-es_PE/roles.po new file mode 100644 index 0000000000..fe187ed7c6 --- /dev/null +++ b/application/i18n/po/po-es_PE/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-11 00:40+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "El campo descripción debe tener al menos 3 y no más de 100 caracteres." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "El campo descripción es requerido." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "El campo Nombre debe contener solo números y letras." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "El campo nombre debe tener al menos 2 y no más de 30 caracteres." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "El rol de SuperAdmin no puede ser modificado." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "El campo nombre es obligatorio." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Nivel de acceso debe ser un número entre 0 y 100" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Nivel de acceso debe ser un número entre 0 y 100" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Los permisos del campo deberá ser un número entre 0 - 100." diff --git a/application/i18n/po/po-es_PE/settings.po b/application/i18n/po/po-es_PE/settings.po new file mode 100644 index 0000000000..d7d56b3b59 --- /dev/null +++ b/application/i18n/po/po-es_PE/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Johnattan Rupire , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-07-26 22:08+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "El campo de permitir comentarios no parece que contenga un valor válido." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "El campo de permitir comentarios es requerido." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "El campo incluir feed no parece tener un valor válido." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "El campo incluir feed es obligatorio." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "El campo Incluir categoría de feed no parece contener un valor válido." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "El campo incluir feed es obligatorio." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "El campo permitir alertas no parece contener un valor válido." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "El campo de permitir alertas es requerido" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "El campo de permitir reportes no parece contener un valor válido." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "El campo de permitir reportes es requerido" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "El campo para compartir estadísticas parece no contener un valor válido." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "El campo compartir estadísticas es obligatorio" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Número de registros predefinidos a obtener en cada llamada API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Máximo número de registros a obtener en una llamada API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Máximo número de registros por llamada API por dirección IP cliente" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El campo Akismet no parece contener un valor válido." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "El campo Akismet no parece contener un valor válido." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "El campo Imagen del Sitio parece contener una imagen no válida. Los formatos aceptados son .JPG .PNG y .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Por favor, asegúrate que el peso de \"imagen del banner\" sea menor a 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "El campo \"Imagen de banner\" parece no contener un archivo válido." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "El campo de cache de páginas es requerido." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "El campo páginas de cache no parece contener un valor válido." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "El campo Duración de Páginas en Caché no contiene un valor válido." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "El campo Duración de Páginas en Caché es obligatorio." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Al parecer tu servidor no está configurado para manejar URLs limpias. Necesitas cambiar la configuración de tu servidor antes de que actives las URLs limpias. Puedes ver más información sobre cómo activar las URLs limpias en este foro" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Esta opción permite que se pueda acceder a Ushahidi via URLs \"limpias\", (es decir sin \"index.php\" en la URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Permitir URLs limpias" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs limpias" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "El campo número de API Clickatell debe tener a lo más 20 caracteres de largo." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "El campo número de API Clickatell es obligatorio." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "El campo clave de Clickatell debe tener al menos 5 y no más de 50 caracteres de largo." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "El campo Constraseña de Clickatell es obligatorio" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "El campo Usuario de Clickatell no debe contener más de 50 caracteres de largo." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "El campo Usuario de Clickatell es obligatorio." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configurar mapa" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Ubicación predeterminada" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "El campo color de feed no parece contener un valor válido." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "El campo color no debe contener más de 6 caracteres de largo." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "El campo color es obligatorio." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Vista de mapa predeterminada" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nivel de zoom predeterminado" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Descargar lista de ciudades desde Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "El puerto del servidor de correo es demasiado largo." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "El campo puerto del servidor de correo debe contener únicamente números." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "El campo Contraseña del Puerto del Servidor de Correo debe contener no menos de 5 ni más de 50 caracteres de largo." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "El campo Contraseña del Servidor de Correo es obligatorio." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "El campo puerto de servidor de correo es demasiado largo." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "El campo Puerto del Servidor de Correo debe contener únicamente números." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "El campo puerto de servidor de correos es demasiado largo." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "El campo Tipo de servidor de correo es obligatorio." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "El campo Usuario del Servidor de Correo no debe contener más de 50 caracteres de largo." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "El campo Nombre de usuario para el servidor de correo es obligatorio." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opciones de configuración de Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Para obtener esta información deberá crear una nueva aplicación de Facebook en" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Estas opciones permiten a sus usuarios acceder a través de facebook, esto no crea una aplicación de facebook para tu Ushahidi." + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "App Secreta de Facebook" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "El campo Google Analytics debe contener una Web Property ID válida, en formato UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Habilitar HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Esta opción hace que se pueda acceder Ushahidi en modo inseguro; sin \"https://\" el el prefijo de la URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Esta opción hace que Ushahidi puede ser accedido de modo seguro; con https en el prefijo de la URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "El campo Elementos por página (Frontend) no parece contener un valor válido." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "El campo Elementos por página (Frontend) es obligatorio." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "El campo Elementos por página (Administración) parece no contener un valor válido." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "El campo Elementos por página (Administración) es requerido" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configura tu proveedor de mapas en u proceso sencillo. Selecciona un proveedor, obtén una llave API desde el sitio del proveedor e introduce la llave API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nivel de zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Seleccionar proveedor de mapas" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Introduce una nueva clave de API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Obtén una clave API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configura tu proveedor de mapas en u proceso sencillo. Selecciona un proveedor, obtén una llave API desde el sitio del proveedor e introduce la llave API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Proveedor de Mapas" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Cronología del mapa" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Configuración del Mapa" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "¿Este Ushahidi abarca a múltiples países? " + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Por favor selecciona un país predeterminado" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Haz clic y señala en el mapa tu ubicación exacta" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Agrupar los reportes en el mapa" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Permitir a los usuarios hacer comentarios a los reportes" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Incluir feed de Noticias en tu sitio web" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Crear nuevas categorías desde los boletines" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Permitir a los usuarios suscribirse para recibir alertas" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Permitir a los usuarios generar reportes" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Clave Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Baner del sitio" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Bloques por fila" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Caché de las páginas " + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Tiempo de vida de la caché de las páginas" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Registros habilitados" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Declaración del copyright del sitio" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Color predeterminado para todas las categorías" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Icono predeterminado para todas las categorías" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Eliminar imagen de baner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Eliminar icono predeterminado" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Mostrar página de contacto" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Mostra página \"Cómo ayudar\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Dirección de correo para alertas" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "A fin de recibir reportes vía correo electrónico, por favor, configura tu cuenta de correo en la configuración." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Dirección de correo electrónico del sitio" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Ítems por página - Front end" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Ítems por páginas - Administración" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Puedes prevenir el spam usando Akismet.
Puedes obtener una llave API gratuita con tu cuenta de WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Credenciales de Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Sitio Laconica " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Idioma del sitio" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Aprobar usuarios manualmente" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Mensaje del sitio" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nombre del Sitio" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Implementación Privada" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Se requiere la confirmación del correo electrónico" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Enviar un reporte" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Activar Estadísticas (Almacenada en los servidores de Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Subtítulo del sitio" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Zona horaria" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Configuración del sistema" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Términos de búsqueda en Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Separados por comas" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Feeds geolocalización - Nombre de usuario de Geonames" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "El campo Dirección de correo para no contener una dirección de correo válida." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "El campo Email del sitio debe ser de al menos 4 y no más de 100 caracteres." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "El campo Nombre del sitio debe contener al menos 3 y no más de 50 caracteres." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "El campo Nombre del sitio es obligatorio." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "El campo Subtítulo del sitio debe tener al menos 3 y no más de 100 caracteres." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "El campo Subtítulo del sitio es obligatorio." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Tu número de API Clickatell" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Revisa tu Balance de Crédito Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Cargar Balance de Crédito" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Tu contraseña de Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Regístrate por el servicio Clickatells haciendo click aquí" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Ingresa tu información de acceso a Clickatell abajo" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Tu nombre de usuario de Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS es software gratis, libre y de código abierto que permite a sus usuarios enviar y recibir mensajes de textos con grandes grupos de personas a través de teléfonos móviles. Haz click en la caja de debajo para descargar la última versión desde FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Descargar e instalar FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Instrucciones detalladas sobre cómo enviar SMS desde tu instlación de FronlineSMS installation están disponibles aquí. La URL y la llave API de abajo son obligatorias para activar la sincronización con FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Copia y pega esto en el campo \"Dirección\" de FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Copia y pega esto en el campo \"Ushahidi llave API\" en FrontlineSMS" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Conectando FrontelineSMS a este Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Introduzca el/los número(s) teléfónico(s) conectados a FrontlinesSMS en el/los campo(s) de abajo" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Introduzca el número sin ningún + o guiones debajo" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Opción 1: Usar Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Opción 2: Usar un puerto SMS global" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Opciones de configuración de SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "El campo Teléfono 1 parece no contener un valor válido." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "El campo Teléfono 1 debe contener únicamente números" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "El campo Teléfono 2 es muy largo." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "El campo Teléfono 2 debe contener únicamente números." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "El campo teléfono 3 es demasiado largo" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "El campo teléfono 3 debe contener únicamente números." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Opciones de configuración de Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Obtén la información siguiente, configurando tu Ushahidi como una aplicación de Twitter nueva." + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "\"Consumer Key\" Llave de consumidor" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "\"Consumer secret\" Secreto de consumidor" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Token de acceso" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Acceso secreto Token" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Probar la configuración" diff --git a/application/i18n/po/po-es_PE/sharing.po b/application/i18n/po/po-es_PE/sharing.po new file mode 100644 index 0000000000..8105ff6043 --- /dev/null +++ b/application/i18n/po/po-es_PE/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-08-11 00:00+0000\n" +"Last-Translator: jose sabastizagal \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Fecha de ingreso" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Agregado el" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Último acceso" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "El campo color debe tener 6 caracteres de largo." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "El campo color es obligatorio." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "El nombre para Compartir no parece ser válido." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Un nombre para Compartir es requerido." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "La dirección URL del sitio ya existe" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "El sitio URL parace no ser válido" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Dirección URL del sitio es obligatoria" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "El campo URL parece no contener una URL valida " diff --git a/application/i18n/po/po-es_PE/stats.po b/application/i18n/po/po-es_PE/stats.po new file mode 100644 index 0000000000..2d5ec33e92 --- /dev/null +++ b/application/i18n/po/po-es_PE/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Johnattan Rupire , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-03 16:07+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "aprobado" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorias" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Impacto de la categoría " + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Este gráfico ofrece una visión lineal de los informes por categoría en el tiempo. Desplazar de izquierda a derecha pata ver una vista comparativa de diferentes categorías. Pasar el puntero sobre el gráfico para más detalles." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Elegir un rango de fechas" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Países" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "País " + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Desglose por países" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Esta es la sección de estadísticas y contendrá una descripción general pronto. Por ahora, navegar usando los enlaces de sub categorías de arriba. " + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Error" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glosario" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Resumen de impacto" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Leyenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Vistas de página" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "EL número total de páginas que los visitantes han visto en tu sitio" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Reportes" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categorías de reportes" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Estadísticas de reportes" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Estatus de reportes" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Informe tipo tarjeta perforada" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Estadística del reporte" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Estadísticas no establecidas" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mes" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 meses" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 meses" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Todo" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "No aprobado" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitantes únicos" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "El número de individuos que vienen a tu implementación. Los visitantes únicos se determinan utilizando cookies. Los visitantes que no tienen las cookies activas serán identificados utilizando una heurística simple teniendo en cuenta su dirección IP, resolución, navegador, plugins, SO, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "No verificado" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificado" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Resumen de visitantes" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visitas" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Una visita es un registro de un visitante único que viene al sitio más de 30 minutos después de su última vista de página." diff --git a/application/i18n/po/po-es_PE/tooltips.po b/application/i18n/po/po-es_PE/tooltips.po new file mode 100644 index 0000000000..400544eebb --- /dev/null +++ b/application/i18n/po/po-es_PE/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Johnattan Rupire , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-12-26 17:05+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Esto agrega categorías adicionales al reporte. Si aquí seleccionas Categoría 1 y el reporte ya tiene Categoría 2, el reporte entonces tendrá ambas, Categoría 1 y Categoría 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprueba un reporte o no. Si es aprobado, entonces se mostrará públicamente" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Podrás asignarle una insignia al usuario disparador. Escoja la insignia aquí." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Este es un rango de horas y/o minutos entre dos tiempos en formato de 24 horas. Si ingresa una hora anterior en el segundo campo, este será intercambiado con el primero. Estas horas deberán estar en un día simple. Además, esta hora es chequeada con la hora que hayas configurado en el área de ajustes del sitio y no necesariamente con la zona horaria del usuario, interactuando con tu instalación. Dejar esto en 00:00 a 00:00 para ignorar este indicador." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Si deseas que los disparadores se activen solamente cuando se está usando una determinada categoría, puedes configurarlo aquí. Esto permitirá que un disparador sea activado sólo si se utiliza una de las categorías predefinidas. Por ejemplo, si se ha seleccionado \"categoría 1 y categoría 2\" y luego un informe es remitido utilizando las categorías 2 y 3, pasará la prueba." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Si estas acciones ocurren en ciertos días de la semana, configura aquí esa información. Tenga en cuenta que la fecha es determinada según la zona horaria configurada en la implementación. Mantenga pulsado SHIFT, comando, o control para la selección de varios días." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Cuerpo del correo a enviarse" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Título del correo electrónico a enviarse" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "La feed puede ser una específica o todas en conjunto. Si tu quieres una feed específica para activar el disparador, puedes seleccionarlas aquí. De lo contrario, puedes dejarlas como \"todas\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nombre de usuario del autor en twitter (o múltiples nombres de usuario separados por comas). Si quieres activar disparadores solo para mensajes de un usuario particular de twitter, introduce su nombre de usuario aquí (sin incluir la @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Separe cada elemento de elección con coma. Ejemplo elemnto1, elemento2, etc." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Puedes seleccionar cualquier lugar o una ubicación específica. Si selecciona una ubicación específica, se le pedirá que dibuje un cuadro alrededor del área que califica una acción. Por ejemplo, si deseas que este disparador se active cuando alguien presenta un informe en Ayacucho, tendrás que elegir \"área específica\" y luego dibujar la caja alrededor de Ayacucho. Puedes hacer estos cuadros tan pequeño o tan grande como quieras. También puedes dibujar múltiples cajas." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Este calificador activará el disparador en el número N ya sea para toda la base de usuarios o para cada usuario individual. Dejar en blanco para ignorarlo." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Este es el asunto por defecto para agregar al reporte" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Si todas las cualificaciones anteriores se pasan, el disparador se iniciará una respuesta. Esto puede ir desde la aprobación de un reporte de un usuario enviado por correo electrónico. Seleccione la respuesta aquí para activar opciones adicionales para las respuestas específicas." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Si selecciona \"Usuario Disparador\", el correo electrónico se enviará al usuario que realizó la acción. Si selecciona el botón de opción situado junto al cuadro de entrada, serás capaz de introducir una dirección de correo electrónico personalizado. Esto es útil si está configurando disparadores para notificar a las personas cuando ciertas partes del mapa están recibiendo reportes, registros de entrada o alguna otra actividad." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Puede seleccionar varios días aquí. Las fechas se determina por la zona horaria en la configuración de este proyecto. Para seleccionar todas las fechas, no seleccione ninguna." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "El disparador es el componente principal de la configuración de tu Acción de Disparadores. Aquí es donde se determina si deseas que algo suceda cuando alguien presenta un informe, realiza una comprobación, un registro, etc. Serás capaz de filtrar las respuestas a estas acciones una vez seleccionadas." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "El usuario puede ser cualquiera o una específico. Si quieres únicamente uno específico para activar el disparador debes seleccionarlo aquí. Por lo contrario, tendrás que dejar esto como \"cualquiera\", ya que la mayoría de los disparadores se establecen para todos los usuarios que interactúan con el sistema" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marcas un reporte como verificado o no." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "La página de perfil en este sitio usa Gravatar. Clickando sobre tu imagen, irás a la web de Gravatar donde tu puedes cambiar tu imagen de perfil." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separa cada valor con una coma, p.e. valor1, valor2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separe cada valor con una coma. Ejemplo: valor1, valor2. En caso que quiera establecer un valor como predeterminado, finalice la lista de opciones con ::. Ejemplo: Si quiere hacer valor3 el valor por defecto, entonces deberá ser: valor1, valor2, valor3::valor3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separe con comas cada elemento de elección, por ejemplo, elemento 1, elemento 2, etc" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Comenzar escribiendo a la lista de miembros" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Asunto del mensaje privado" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mensajes privados" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Puedes seleccionar un color que se mostrará bajo tu imagen de perfil en tu perfil público. Este color será también el de tu reportes registrados en el mapa." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Tu dirección de correo electrónico" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Esta es una de las formas que te identificarán en la web. ¡Ten en cuenta que es público!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Si se establece, esta será su nueva contraseña. Deje este campo en blanco si desea mantener su contraseña actual." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Esto es un requerimiento cuando se crea un nuevo usuario y su contraseña. Debes informar al nuevo usuario que debe cambiar su contraseña después de ingresar por primera vez." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Seleccionando SÍ recibirás alertas vía correo electrónico cuando se registren nuevos reportes o comentarios en tu sitio web." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Tu contraseña actual. Necesitamos que introduzcas tu contraseña para prevenir cualquier cambio no autorizado en tu cuenta." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Tu perfil podrá ser visto por cualquiera en internet si habilitas esta opción. Esta es también la manera más fácil de mostrar los informes que nos has enviado, tus checkins, insignias, etc todo en una página." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Esta es la dirección donde tu perfil público puede ser encontrado." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Tu nombre de usuario no puede ser modificado" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Los niveles de acceso se utilizan para restringir el acceso a los campos de formulario personalizado. Niveles de acceso más altos pueden acceder a los campos de los niveles más bajos. Superadmin tiene el nivel de acceso más alto (100). Los datos públicos se visualizan en el nivel de acceso más bajo (0). Los miembros tienen nivel de acceso 10. Administración es el nivel de acceso 90 predefinido." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Esta es la dirección de correo que será usada para enviar correos de alerta." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Permitir a los usuarios suscribirse para recibir alertas vía web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Esto permite la agrupación de informes similares en un único punto en el mapa" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permitir a los usuarios comentar los reportes en la página principal del sitio." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Esto permite que las Noticias de boletines RSS se muestren en la página principal del sitio." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Esto permite crear nuevas categorias a partir de las Noticias de los boletines RSS." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Permitir a los usuarios enviar información vía el formulario web." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Número predeterminado de registros que serán devueltos en cada llamada a la API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Número máximo de registros que serán devueltos en cada llamada a la API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Número máximo de llamadas a la API por dirección IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "La imagen (banner) del sitio aparecerá en la parte superior de la página de inicio de tu web si el tema que estás utilizando es compatible con ella. El tamaño recomendado para esta imagen dependerá del tema que estés usando. Ten en cuenta que esto va a reemplazar el título del sitio y el subtítulo en la parte superior de la página." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Número de bloques de columnas que serán mostrados en cada fila." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Activar o desactivar la caché de páginas. Esto hace que las páginas se muestran más rápido mediante la reducción de los tiempos de respuesta. Le recomendamos que utilice el almacenamiento en caché de los sitios de alto tráfico. ** Recuerde que los informes se rellenarán en la parte pública de la web en base a la programación que ha configurado a continuación (Duración en caché)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Configura el tiempo de vida de la caché" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Esta configuración permite checkins en tu Ushahidi. Se trata de un tipo de informe simplificado que no está moderado antes de que entre en la página principal y requiere que tu sitio esté configurado de cierta manera. Cuando se activa esta opción, asegúrate de que la configuración de zona horaria está en hora UTC y su tema es compatible con checkins. Cuando se activa esta opción, temas únicamente para checkin podrán ser activados en la página de configuración de addons/themes." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Configura el mapa para cubrir una ubicación específica" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Configura un código de color para todas las categorías en este sitio" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Configura un icono para todas las categorías en este sitio" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Este es el país en el que este sitio web está funcionando" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Muestra o no la pestaña de Contacto en la página principal" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Muestra o no la pestaña de Ayuda en la página principal" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Este es el número de reportes mostrados en la página principal de este sitio" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Este es el número de reportes mostrados en la página en el Back End de administración" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Este es el hub para los mensajes entrantes" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Esto sincroniza los mensajes en el conector con la plataforma Ushahidi." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Los números de teléfono a través de los cuales se reciben los mensajes de texto." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Sigue a los visitantes de tu sitio. Obtén estadísticas detalladas de los visitantes" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Establece el idioma que se utilizará en el sitio." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Si configuras esta opción como Sí, deberás aprobar cada usuario individualmente en tu sitio web, asignándoles algún rol (ejemplo: Miembro, Administrador, Superadministrador)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Esto define qué mapa se utilizará en el sitio." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Esto muestra la línea de tiempo basada en la fecha y hora de los reportes registrados. " + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Al establecer este valor en verdadero \"true\" o sí \"yes\" hará que tu ushahidi sea una implementación privada de modo que sólo los usuarios con cuentas específicas serán capaces de acceder a la implementación." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Los usuarios recibirán un correo electrónico con un enlace de confirmación que deberá ser usado antes de que se les permita ingresar a la implementación de ushahidi si se configura en Sí. Si habilitas esto una vez que los usuarios de la implementación han sido aceptados, se les solicitará que confirmen su cuenta antes de que se les permitirá seguir utilizándola." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Esto es dónde los emails residen" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Esta es la contraseña para la dirección de correo electrónico donde se reciben los reportes." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Esto es requerido para aceptar conexiones desde la dirección de correo electrónico" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Esto es necesario para mejorar una conexión segura." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Esto es necesario para recuperar mensajes de correo electrónico desde el servidor host." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Esta es la dirección de correo electrónico que recibe los reportes." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Las estadísticas de ataque se almacenan en un servidor controlado por Ushahidi. Al activar esta opción, tendrás acceso a acceder a las estadísticas directamente en tu panel de administración. Con su desactivación, se detiene la recopilación de estadísticas y no serás capaz de recuperar las estadísticas de tráfico recogidas mientras estuvo desactivado." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "¿Otras personas tienen derecho de publicar los textos, imágenes, vídeos y/o diseños de temas que tú y tus usuarios a crearon? ve a https://creativecommons.org/choose/ si estás interesado en especificar qué cosas se pueden hacer con tu trabajo. Y recuerda ser específico acerca de qué elementos del sitio web están bajo esa licencia!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Esta es la dirección de correo que recibirá los reportes y mensajes que se envíen desde el formulario de Contacto." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Este es el texto que aparecerá sobre el mapa en la página de inicio. Esto es usado para dar información importante a los visitantes del sitio. Para quitar la caja del mensaje simplemente elimine el mensaje aquí. " + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Este es el nombre del sitio que aparecerá en la parte superior de la página principal." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Este es el mensaje que se mostrará en la página de Envía un reporte. Esto se puede aprovechar para señalar excepciones de responsabilidad o instrucciones para tus visitantes que publican reportes. " + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "En pocas palabras, explica sobre qué es este sitio" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Esta es la zona horaria en que tu sitio funcionará. Esto tiene un impacto en cualquier acción que haya configurado que utilizan la fecha y hora, así como la hora actual por defecto para informes sobre el lado visible, frente, y parte no visible, trasera, de tu web." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Establece el hashtag de Twitter que será usado en un tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "Si quieres geocodificar el feed de tus entradas, consigue un usuario en http://geonames.org, activa los servicios web libres e introdúcelo allí. Déjalo vacio para desactivar esta función.

Ten cuidado con los límites de uso! " diff --git a/application/i18n/po/po-es_PE/ui_admin.po b/application/i18n/po/po-es_PE/ui_admin.po new file mode 100644 index 0000000000..234112bf9f --- /dev/null +++ b/application/i18n/po/po-es_PE/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Johnattan Rupire , 2014 +# jose sabastizagal , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-04-03 01:53+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Acceso denegado. Sus credenciales no son válidas o se ha denegado su petición. " + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Acceso denegado. El pedido fue recibido, pero denegado. Intente más tarde" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nivel de acceso" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Añadir a categoría " + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "Añadido" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Añadido/editado" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Extensiones" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrador" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertas" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertas recibidas" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Todo" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonimo" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Todos" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Todo Lugar" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Bloqueadas" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Registros del API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Configuraciones de API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "DESBLOQUEAR" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "DESBLOQUEAR TODO" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "aprobado" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Auto aprobado" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprobar manualmente" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archivado" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Está seguro que quiere" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "¿Está seguro que quiere borrar este item?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "¿Esta seguro que desea borrar esta foto?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Confirme cambio de formulario" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Asignar" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Asignaciones" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Asignar Distintivo" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Correo electrónico del autor" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Volver" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Bloquear IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre horas" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloques" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Cuerpo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Error al mostrar el gráfico" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Mensaje no válido" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Verifique el número de destino" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Revise la configuración de SMS" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalles de Checkin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Ciudades cargadas" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "Sistema" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versión del sistema fuera de syncronización" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Color" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Su código de verificación es: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "El Usuario ha sido bloqueado" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Conteo" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "No se encuentra el país" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "creado/editado" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Crear un Reporte" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Actualización crítica" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Actualmente activo" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Actualmente inactivo" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "No posee permiso para editar estos campos." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Diariamente" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Tablero de Control" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "Base de datos" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Fecha y Hora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Fecha añadida" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Fecha Modificada" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Días de la semana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "La versión de la base de datos está desincronizada" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "Borrado" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Borrar" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Eliminar todos los reportes" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Borrar Distintivo" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descripción" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Deshabilitado" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Comienza Divisor" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Finaliza Divisor" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Descargar Reportes" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Opciones del menú" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITADO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editado por" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editar" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Editar Registro" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Todos" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Error en la geocodificación" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "La librería IMAP PHP no está instalada" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Credenciales incorrectas" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Error" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, no se pudo publicar el incidente" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Cada seis horas" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Cada doce horas" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Preguntas frecuentes" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "Boletín" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "Boletines" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista de opciones" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valor predeterminado" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipo de dato" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerico" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Texto libre" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altura (en líneas)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Campo oculto" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Longitud en caracteres" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nombre del campo" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Invertir" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "No" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Si, cerrado por omisión" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Si, abierto por omisión" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "No se encuentra el archivo cargado" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "No se puede leer el archivo" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ese formulario no existe" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Foro" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Campo de texto libre" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Campo fecha" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Opciones excluyentes" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Opciones combinadas" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Lista de opciones" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Error de Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Obtener ayuda" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obtener más temas" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obtener más plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Agregar/Editar" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Administrar usuarios" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Roles" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Usuario" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Ayuda" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Horario" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Suscripción de reportes por" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "La carpeta de instalación todavía existe. Borre la carpeta installer. Esto es una vulnerabilidad potencial de seguridad." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instancia" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instancias" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Instancia Detalles" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parámetro inválido" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Dirección IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "¿Es un campo de fecha?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Visible para" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Editable para" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Palabra clave" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Palabras clave" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nombre completo:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Contraseña:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rol:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nombre de usuario:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Salir" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Bitácora" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Administrar" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Administrar Roles y Permisos" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Ver Usuarios" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Agregar/Editar Usuarios" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Administrar Vista Pública" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marcar como" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcar como mensaje válido" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcar como correo basura" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "no se encontraron documentos" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mensaje" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mensajes" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mensajes de Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Tweets" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Mensaje enviado" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutos" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Falta un parámetro" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificado" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modificar zona horaria" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "mover hacia abajo" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "mover hacia arriba" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Múltiples instancias" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Mis Alertas" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Mis Checkins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Mi Perfil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Mis Reportes" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votos" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positivo" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativo" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nombre" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Crear una alerta" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Crear un mensaje" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nueva contraseña" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "No" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Categoría especial que se asigna a los reportes cuando su categoría principal es eliminada." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificación" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "No hay proceso clasificado" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "No encontrado" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Sin datos, no hay resultados para mostrar." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Sin error" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "No hay resultados para mostrar." + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Sobre Conteo Específico" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "página" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "páginas" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Página No Encontrada" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Lamentablemente, la página a la que estás intentando acceder no está aquí.

¿Hiciste clic en un vínculo de alguna página de nuestro sitio?
Si llegaste a esta página desde otra parte de nuestro sitio, comunícate con nosotros para que podamos resolverlo.

¿Usaste un vínculo de otro sitio?
Los vínculos de otros sitios puedes estar desactualizados o incluir errores tipográficos. Indícanos de dónde provienes para que intentemos comunicarnos con el otro sitio y resolver el problema.

¿Escribiste la URL?
Es posible que hayas escrito incorrectamente la dirección (URL). Verifica que la hayas escrito sin errores tipográficos y que hayas usado correctamente las mayúsculas y minúsculas, etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Lamentablemente, la página a la que está intentando acceder no está aquí." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parámetros utilizados" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Contraseña" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Reiniciar contraseña" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Sr/Sra" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Hemos recibido un pedido para cambiar la contraseña de" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Para cambiar su contraseña, por favor seleccione el enlace siguiente (o copielo y péguelo en la barra de de direcciones de su navegador)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Como lo ha solicitado, su contraseña a sido cambiada. El usuario y contraseña son ahora estos" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Pedido de nueva contraseña" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Escoja" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Los datos no fueron enviados como post" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Vista previa" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mensaje" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mensajes privados" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mensaje privado enviado" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Sujeto" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "A" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Vista Pública" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Calificadores" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "leer" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevancia" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Denunciar título" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Fecha del informe" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporteros" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveles de denuncia" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Reportes" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Nivel de Reputación" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Requerido" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Respuesta" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultado" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revocar" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Este correo electrónico ya tiene una cuenta administrada por CrowdmapID. El usuario necesitará usar su contraseña existente de Crowdmap para iniciar sesión." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Guardar Configuración" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Buscar" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Buscar Reportes" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "Buscando" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "La clave de encriptación será establecida al valor por defecto. Esto es inseguro y deberá ser cambiada." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Este sitio está siendo servido sobre HTTP. Debería ser puesto a HTTPS para incrementar la seguridad." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Las instrucciones están disponibles en el Wiki" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Seleccione el formato de informe que desea usar para descargarlo:" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Seleccione un tipo de campo ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Por favor selecciona un ítem" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Deberá seleccionar un Trigger antes que pueda seleccionar una Respuesta." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Deberá seleccionar un Trigger antes que pueda definir Calificadores." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Remitente" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Enviar a" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Este mensaje fue enviado desde su sitio web en " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Hora del servidor" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Configuración" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Mostrando página" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Mostrando resultados" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "Mostrando" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoría especial" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Categoría especial que se utiliza para clasificar reportes aprobados automáticamente. Es utilizada junto con la característica \"Reportes Verificados\"" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Area específica" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Estado" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estadísticas" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estadísticas" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "No se pudieron obtener estadísticas. Reintente luego." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "No se pudieron obtener estadísticas" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Días específicos" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Tema" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Administrador" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tarea realizada" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Campo de texto" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nombre" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Administrar usuarios" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Error de tiempo de espera" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "A" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Registros" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "A" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traducir reportes" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Disparador" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Usuario disparadores" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Disparadores" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "no aprobado" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Desconocido" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Falla desconocida" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "no leído" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Ya no recibirá alertas de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Presione aquí para realizar la actualización" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Actualizar el sistema" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Estado de la actualización del sistema" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Subir reportes" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Usuario" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Usuarios" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificado/No Verificado" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verificar/No Verificar" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versión" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " dispone de una actualización." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Formato de video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mensajes privados" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Ver el sitio" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Ver el reporte" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Bienvenido, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Si" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Su búsqueda de" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Clicando el botón de debajo eliminarás TODOS los reportes en la base de datos. Debes usar esto con precaución ya que esta operación no puede deshacerse. " + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Te recomendamos que hagas una copia de tu base de datos antes de proceder." + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Estoy seguro, quiero eliminar el/los %s reporte(s) desde la base de datos." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Está seguro que desea eliminar todos los reportes?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "No hay reportes para ser eliminados" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Número de ingresos" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Último ingreso" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "¿Cuenta confirmada?" diff --git a/application/i18n/po/po-es_PE/ui_main.po b/application/i18n/po/po-es_PE/ui_main.po new file mode 100644 index 0000000000..732b4fa9aa --- /dev/null +++ b/application/i18n/po/po-es_PE/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# Johnattan Rupire , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-11-27 17:27+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Acerca de" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acceso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Límites de acceso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nombre de cuenta" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Esta acción no puede deshacerse. ¿Estás seguro de querer continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Activo" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Agregar" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Agregado por" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Data adicional" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Reportes adicionales" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Agregar/Editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Agregar un campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Agregar un idioma" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Agregar nuevo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Agregar nueva categoria" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Agregar traducción" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administración" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Recibe alertas" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alertarme si se registra un reporte en, o cerca a:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Guardar mi alerta" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Dirección de correo electrónico:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Introducir dirección de correo electrónico" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Introducir número de teléfono con el código de país " + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Recibe alertas" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "La alerta ha sido" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Teléfono móvil" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "O indique un punto en el siguiente mapa y le enviaremos una alerta cuando se registre un reporte en un radio de 20 kilómetros." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Si no puedes encontrar tu ubicación, por favor, haz clic sobre el mapa para ubicar la localización correcta." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS (copia la siguiente dirección)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Seleccione una ciudad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Paso 1: Selecciona tu ciudad o ubicación:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Paso 2: Enviar alertas a mi:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Paso 3 (Opcional): Selecciona categorías" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmar una solicitud de alerta anterior" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "¡Tu alerta ha sido guardada!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Todas" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permitido" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Habilitar etiquetas HTML: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Los Iframes sólo son permitidos de: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Todas las categorías" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Siempre" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "y" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprobar" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprobado" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Reportes aprobados " + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprobar este reporte" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximado" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archivar" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archivado" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascendente " + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "en" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Registro automático" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Auto" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Media de reportes por día" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Esperando aprobación" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Esperando verificación" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Insignia " + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Insignias" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imagen de la insignia " + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "O puedes subir tu propia imagen para la insignia." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Grupo de insignias" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Selecciona una insignia" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Explorar perfiles" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoría" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro de categorías" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "La categoría fue" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nombre de la categoría" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Cambiar rango de fechas" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Cambiar contraseña" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Cambiar mi foto" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Elegir un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Elegir puntos de datos para descargar" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "O elegir tu propio rango de fechas" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Elegir tipo de campo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLs limpias" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Limpiar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Limpiar mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Cerrar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "grupos" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Color" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentario" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalles del comentario" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "¡Tus preferencias han sido guardadas!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurar" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ha confirmado correctamente su dirección de correo electrónico. Puede acceder a continuación." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "¡Ha confirmado satisfactoriamente su dirección de correo electrónico! Su cuenta tiene que ser aprobada por el administrador para poder acceder." + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "¡Ha fallado la confirmación del correo electrónico! Solicita una nueva confirmación más abajo." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contacta con nosotros" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Código de seguridad" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Tu dirección de correo electrónico" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mensaje" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Tu mensaje fue enviado" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Tu nombre" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Tu número de teléfono" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar mensaje" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Asunto del mensaje" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crear" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crear/editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crear nuevo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crear nueva contraseña" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Crear reporte" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilidad" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Contraseña actual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Campos propios" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Información" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Fecha" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Fecha y hora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "día" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "Diario" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desactivar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenia" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Eliminar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Eliminado" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Eliminados" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Eliminar desactivado" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Elimina último" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Eliminar este reporte" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Eliminar seleccionados" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Eliminar spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descendente" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Ejemplo: Esquina de jirón de la Unión y avenida Tacna cuadra 5. Centro de Lima." + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalles" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Reporte directo" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Desactivado" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Desaprobar" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Reportes desaprobados" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Descargar" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar campos" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar reportes" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Dirección de correo electrónico:" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Preferencias de servidor de correo" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Servidor de correo" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "contraseña del servidor de correo" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Puerto del servidor de correo" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Soporte SSL del servidor de correo" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipo de servidor de correo" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Usuario del servidor de correo" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Por lo que esta configuración está asociada a esta dirección de correo electrónico" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Para recibir informes, por favor introduzca a continuación la información de su cuenta de correo electrónico. Tenga en cuenta que recibirá los correos en su" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Algunos servidores requieren la dirección completa" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Contraseña de la cuenta de correo" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Puertos habituales: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Ejemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Ejemplos: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Habilitar o deshabilitar conexiones SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VACIO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "para" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "¡Error!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Ejemplo" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenia" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Aplicaciones externas" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Enlace de vídeo externo" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Boletín" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Danos tu opinión" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Por favor, danos tu opinión sobre tu experiencia enviado un correo electrónico a" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Boletines" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "El boletín ha sido" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Elementos del boletín" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nombre del boletín" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL del boletín" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Campo no utilizado" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Archivo" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Tu archivo supera el tamaño máximo permitido" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtros" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrar reportes" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrar reportes por" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrar reportes que contengan" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Buscar" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Buscar ubicación" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nombre" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Forzar ejecución programada" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "¿Olvidaste tu contraseña?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulario" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formularios" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descripción del formulario" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editar este formulario" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "EL formulario ha sido" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Título del formulario" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Desde" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nombre completo" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Geolocalización disponible" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Color" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiqueta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Grosor del trazo" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Ir" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Ha sido" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Cómo ayudar" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Oculto" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ocultar" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Ocultar este mensaje" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Inicio" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "A cada hora" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Cómo hacer un reporte" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Usado para identificarte ante otros usuarios de este sitio." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imagen" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imágenes" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imagen/icono" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactivo" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incidente" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidentes cercanos" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Localización del incidente" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Incluir" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Incluir categorías" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Incluir campos propios" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Incluir descripción" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Incluir todos los detalles posibles" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Incluir latitud" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Incluir información sobre la localización" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Incluir longitud" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Incluir información personal" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Fotos y vídeos entrantes" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Evaluación de la información" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Introduce tu ubicación exacta" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Tu cuenta no tiene los permisos necesarios para iniciar sesión. Contacta con el administrador." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Intervalo" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "En respuesta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Dirección IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "¿Es este tu perfil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "elemento" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elementos" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalles_elementos" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Título del elemento" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Clave" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Palabras clave" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Archivo KMZ/KML " + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "subir archivo KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL KML " + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Idioma" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Último" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Último mes" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Apellidos" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Último año" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitud" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Otras capas" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "La capa ha sido" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nombre de la capa" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL de la capa" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Dejas un comentario" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menos información" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivel" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Este nivel ha sido" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nombre de nivel" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitado" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Enlace" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Cargando reportes" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Ubicación" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Ubicaciones" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Ciudad, Región y/o País" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Entrar" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Cuenta creada con éxito, ahora puedes iniciar sesión" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Una conformación ha sido enviada a tu dirección de correo electrónico" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Cuenta creada. Tiene que ser aprobada por un administrador antes de poder acceder." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "La dirección de correo no existe. Prueba con una diferente o crea una nueva" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Elige tu proveedor" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Entrar con" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Correo y contraseña" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Regístrate " + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Crear una cuenta" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Gracias por registrarte en %1$s. Para confirmar tu correo electrónico ve a la siguiente URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmación de registro" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Un nuevo usuario a accedido en %1$s. Para aprobarlo vaya a esta URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Aprobación de nuevo usuario" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Tu cuenta de usuario ha sido aprobada por %1$s. Para entrar ve a la siguiente URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Cuenta de usuario aprobada" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Crear una cuenta para disfrutar de más opciones en este sitio." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitud" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marcar como leído" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marcar como no leído" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Tamaño máximo del archivo" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Multimedia" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtro de multimedia" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Miembros" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gestiona tu cuenta" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mensaje" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mensajes" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalles del mensaje" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mensaje de una fuente no numérica:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Móvil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modificar" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modificar fecha" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mes" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "Mensual" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Más" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Más información" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "¿Este Ushahidi abarca varios países?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Debe confirmar su dirección de correo para acceder a este despliegue. Si pierde su de correo de confirmación, puede solicitar otro nuevo abajo." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nombre" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Reporte cercano" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nuevo" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nuevos" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Canales de noticias" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Fuente de noticias" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nueva categoría" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nueva contraseña" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nuevo reporte" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Siguiente" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "No" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "No hay registros para mostrar" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "No hay data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Ninguno" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Avisos" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "No aprobado" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "No aprobado" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---No seleccionado---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "no es spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "No especificado" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "No hay reportes" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "No hay resultados" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Apagado" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Noticias oficiales & noticias principales" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Encendido" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opción" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opciones" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organización" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizaciones" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descripción de la organización" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Correo electrónico de la organización" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "La organización ha sido" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nombre de la organizción" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Teléfono 1 de la organización" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Teléfono 2 de la organización" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Sitio web de la organización" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descripción original " + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Título original" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Otros despliegues" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Bandeja de salida" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Salida" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Página" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Páginas" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descripción de la página" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "La página ha sido" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Nombre de pestaña" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Título de la página" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoría madre" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Contraseña" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verificar contraseña" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "¡Contraseña cambiada con éxito! inicia sesión" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "¿Olvidaste tu contraseña?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Comprueba tu dirección de correo para la nueva contraseña" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "¿Permanecer logeado en esta computadora?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mes pasado" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Año pasado" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pendiente" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "por" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Información personal Opcional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Imágenes" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Imágenes y vídeos " + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Busca una ubicación usando el nombre del lugar o las coordenadas de latitud, longitud (formato: 38.19, 85.61), o haciendo click en el mapa para señalar la ubicación correcta." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Empezar" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Tenga en cuenta" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Sitio web del plugin " + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Perfil público" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL del perfil público" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Vista previa" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Previsualizar Elemento" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Previsualizar mensaje" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Previo" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privado" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Color de perfil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Tu perfil ha sido guardado" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estadísticas" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Puntuación" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Leer" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Recibir" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Recibir de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Recibir notificaciones" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Reportes recientes" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Refrescar canales de noticias" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Correo electrónico registrado" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Remover" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Responder" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Reporte" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Reportes (del mapa, listados en orden cronológico)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Informante" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Informantes" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Fecha del reporte" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Correo electrónico del informante" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nombre del informante" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "El informante ha sido" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Dirección IP del informante" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Apellidos del informante" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nivel del informante" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Etiquetas del informante" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Teléfono del informante" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Reportes" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Navegar" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Enviar" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Reportes de este usuario" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Reportes" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Fecha" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Los reportes serán descargado en formato CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Correo electrónico" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Características" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Encuentra una ubicación cerca a ti" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nombre" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Apellidos" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Ubicación" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Enlace a fuente de noticias" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Información opcional" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Volver a la página de reportes" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Elige una ciudad" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Tu reporte ha sido enviado a nuestro equipo para que lo revise. Si fuera necesario nos pondremos en contacto contigo en breve." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Enviar un reporte nuevo" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Hora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Cronología de reportes" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Título del reporte" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Enlace a vídeo" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Reportar un incidente" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalles del reporte" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Enviando un SMS al teléfono" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Enviando un correo electrónico a" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Enviando un tweet con el/los hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Completando un formulario" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Con aplicación externa" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Tu reporte ha sido guardado" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titulo del reporte" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Solicitar más información" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Solicitar ubicación" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Requerido" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requerimientos" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Reenviar confirmación de correo electrónico" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Resetear" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Resetear todos los filtros" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Resetear contraseña" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Obtén los nombres de las ciudades del país seleccionado" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Cuentas gestionadas por el servicio %s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Ya tiene una cuenta gestionada por CrowdmapID! Intente usar su correo electrónico o CrowdmapID y su contraseña para entrar." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Guardar" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Guardado" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Guardar y agregar nuevo" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Guardar y cerrar" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Guardar reporte" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Programar" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Programador" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Día" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Log del programador" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Día de la semana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Buscar" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultados de búsqueda" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Código de seguridad" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Seleccionar todo" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Selecciona un tipo de campo" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Selecciona un tipo de formulario" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Selecciona en el mapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Selecciona todo cuento necesites" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verifica que has marcado un elemento" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Selecciona un tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Enviar" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Enviar confirmación" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Enviar a " + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Enviado" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Enviado por" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Dirección del servidor" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipo de servidor" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servicio" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nombre de usuario del servicio" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Id del usuario del servicio" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Compartir" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Data compartida" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "El vínculo de intercambio de datos ha sido" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Compartiendo" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa más corto" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Mostrar" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Mostrar todo" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mostrar mensajes" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Mostrando los reportes de %1$s a %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Sitio web" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Dirección de correo electrónico del sitio " + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL del sitio" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa pequeño" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Lo sentimos, tú no tienes ninguna insignia" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Fuente" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nombre de fuente" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordenar" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ordenar por" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL de la fuente" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "¿Soporte SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "De" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Paso" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Enviar un reporte" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Enviado por %1$s vía %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Enviar vía SMS " + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Envía tu SMS a " + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "en tu teléfono" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "¡Éxito! " + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importado exitosamente" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Apellido" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Encuesta" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa más alto" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Puerto TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Temas" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema por defecto para Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Configuración de temas" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Este" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hoy" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Este mes" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Esta semana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Este año" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Este es tu perfil" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Hora" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Título" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "para" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hoy" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hoy en" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Reportes totales" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traducidos" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descripción traducida" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Título traducido" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traducido a" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traducción" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "La traducción ha sido guardada" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Confiable" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipo" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Inhabilitado para enviar correos" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Reportes sin categorías" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "No leído" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "No verificado" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Actualizar canales" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Subir" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Ver nuestras guías para subir reportes" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Guía para subir XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Guía para subir CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Fichero a subir" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Reportes subidos" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Los campos personalizados deben tener su form_id adjunto a ellos, ej el campo personalizado Test, en el formulario por defecto, cuyo id es 1, debe ser Test-1. Durante la importación de los campos personalizados, asegura esto" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Con el siguiente formulario, tú puedes importar incidentes al sistema" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Los reportes deben ser subidos en formato CSV o XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Cuando el ID de incidencia ya existe en la base de datos, la entrada en el CSV/XML será ignorada." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Debe contener al menos Título y Fecha del incidente" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Si no hay latitud o longitud, la ubicación será asignada usando Google Geocoder" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Si importas información adicional, p.e. información personal y/o campos de formulario personalizados" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Al menos debe ingresar información en uno de los campos de información personal (nombre, apellido, correo electrónico). Registros vacíos no serán importados." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Sus entradas para campos desplegables, botones de selección y cajas de verificación concuerdan con las opciones proporcionadas para el campo personalizado en su caso" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Las opciones de selección se separan por comas, p.e. si su selección de frutas es manzanas, mangos y uvas, su entrada para esto debería ser \"manzanas,mangos,uvas\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Los valores del campo fecha deben ser ingresados en el siguiente formato: mm/dd/aaaa ejemplo: 31 de Agosto de 2012 = 31/08/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Reporte CSV de ejemplo. La primera linea son los encabezados, las siguientes dos líneas representa un reporte cada uno. Las categorías se ingresan por nombre, y puede haber más de una" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,TÍTULO DEL INCIDENTE,FECHA DEL INCIDENTE,UBICACIÓN,DESCRIPCIÓN,CATEGORÍA,APROBADO,VERIFICADO,LATITUD,LONGITUD
\"1\",\"Contaminación en Loreto\",\"2009-05-15 01:06:00\",\"Loreto\",\"Tres casos confirmados en río Corrientes\",\"MUERTES, CIVILES, \",SI,SI,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Saqueo\",\"2009-03-18 10:10:00\",\"Puno\",\"Saqueo sucediendo en todas partes\",\"MUERTES, PÉRDIDAS MATERIALES, \",SI,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Subida exitosa " + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Subir vídeo " + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Usuario" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nombre de usuario" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Administrador del ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificación" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificado" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Reportes verificados" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verificar" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verificar este reporte" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versión" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "vía" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Vídeo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Vista" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Vistas" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Ver todo" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Ver todos los boletines" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Ver todos los reportes" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Ver elementos" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Ver más" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Ver perfil público" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Ver reporte" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Ver reportes" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Ver vídeo" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Esperando aprobación" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Esperando verificación" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa más amplio" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulario web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Peso" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "Semanal" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Si" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ayer" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Tu escritorio" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Tu fichero" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Acercar" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Alejar" diff --git a/application/i18n/po/po-es_PE/upgrade.po b/application/i18n/po/po-es_PE/upgrade.po new file mode 100644 index 0000000000..a5cf05a967 --- /dev/null +++ b/application/i18n/po/po-es_PE/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Johnattan Rupire , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2014-07-16 23:29+0000\n" +"Last-Translator: Johnattan Rupire \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dato de entrada inválido. Puede ser 0 para No o 1 para Si." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Actualización automática" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Actualizaciones disponibles" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continuar" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Actualizar" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Entonces, voy a actualizar su base de datos desde la versión" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "para la nueva versión de la base de datos" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Haga click en el botón \"Actualizar\" y solo relájate mientras realizo la magia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Adicionalmente, si quieres respaldar tu base de datos, marca el checkbox de abajo y yo lo haré en un instante." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "¿Respaldar base de datos antes de la actualización? (Altamente recomendado)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Base de datos de Ushahidi actualizada" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi ha sido actualizado! Antes de continuar, necesitas actualizar tu base de datos a la nueva versión (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Tu versión de base de datos está actualizada" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "La actualización ha fallado en algún punto" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Actualización manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Estatus de actualización de Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Estas instrucciones lo guiarán para actualizar manualmente Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Descarga
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Descarga la más reciente versión de Ushahidi desde " + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Respaldo
- .htaccess, ./applications/config/config.php, ./applications/config/database.php y ./applications/config/auth.php files.
- Por si algo sale mal, es recomendable que hagas un respaldo completo de tu implementacion de Ushahidi.
Copiar archivos
- Extraer el zip descargado
- Dependiendo del sistema operativo de tu servidor, usa tu herramienta o modo favorito (p.e. Telnet, FTP, SSH) para entrar en el servidor y reemplazar los contenidos de todas las carpetas con los ficheros de la compilación más reciente.
Actualizar Base de datos
- Primero determina la version del esquema de tu base de datos mirando el valor db_version en la tabla de configuración o mira en la información de la actualización de Ushahidi al principio de esta página.
- Si tienes la version 25, necesitas actualizar de 25-26, 26-27, 27-28 y así sucesivamente hasta el último archivo SQL en el directorio /sql.
- Con tu cliente de base de datos, actualiza la base de datos ejecutando el archivo upgradex-x.sql apropiado.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Paso 3: Mira dentro de la carpeta sql. Ejecuta manualmente el archivo-.sql iniciando desde el actual versión de la base de datos de su instalación hasta el archivo final de upgrade sql." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Paso 4: Click en \"Continuar\" botón para actualizar las tablas necesarias." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Para una actualización automática, click en el siguiente botón" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Actualmente estás usando Ushahidi v%1$s con una versión de base de datos %2$d corriendo en %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Actualizando" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Para continuar con la actualización sencilla, la siguiente información es requerida para el servidor FTP que su sitio web posee." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "Nombre del host FTP: Ejemplo: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Contraseña de FTP" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nombre de usuario FTP" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Tienes la última versión de Ushahidi" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "No necesitas actualizar" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versión de base de datos: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Atención: La versión del software en version.php y la base de datos no coinciden." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Atención: La versión de la base de datos en version.php y la base de datos no coinciden." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Base de datos:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "¡BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Descargando la última versión de Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log File" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Descarga exitosa, desempaquetando..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Error mientras se descargaba" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Desempaquetado con éxito. Copiando archivos..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Error mientras se desempaquetaba" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copia exitosa, actualizando la base de datos..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Error copiando archivos" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "El backup y actualización de la base de datos ha sido exitosa." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Falla en el backup de la Base de datos." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Base de datos actualizada exitosamente " + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Eliminando archivos descargados" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "ACTUALIZACIÓN EXITOSA. Ver Log File" diff --git a/application/i18n/po/po-es_VE/alerts.po b/application/i18n/po/po-es_VE/alerts.po new file mode 100644 index 0000000000..2b235c01b1 --- /dev/null +++ b/application/i18n/po/po-es_VE/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "El campo Email no parece contener una dirección email válida" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Esa dirección Email ya está registrada para recibir alertas para esa ubicación." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "El campo Email debe tener entre 4 y 64 caracteres de longitud." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "El campo Email es obligatorio si la casilla de verificación está activa." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Esta implementación se extiende dentro de un único país. Por favor, asegúrese de que la alerta se encuentra dentro del país %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida dentro del mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida dentro del mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida dentro del mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "No ha seleccionado una ubicación válida dentro del mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "El campo Mobile Phone para no contener la cantidad correcta de dígitos." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ese número de Celular ya está registrado para recibir alertas para esa ubicación." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "El campo Mobile Phone para no contener un teléfono válido. Por favor, introduzca solo dígitos incluyendo el código del país." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Deberías ingresar tu número celular o tu dirección Email." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "El campo Celular es obligatorio si la casilla de verificación está activa." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "No has seleccionado un radio válido dentro del mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "No has configurado tu radio dentro del mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "No se ha establecido un receptor para las alertas." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Te has suscrito para recibir alertas dentro de las siguientes categorías" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "¡Este código ha sido verificado antes!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-es_VE/auth.po b/application/i18n/po/po-es_VE/auth.po new file mode 100644 index 0000000000..b2f12b1fa8 --- /dev/null +++ b/application/i18n/po/po-es_VE/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-es_VE/bug.po b/application/i18n/po/po-es_VE/bug.po new file mode 100644 index 0000000000..e5fb72591d --- /dev/null +++ b/application/i18n/po/po-es_VE/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-es_VE/category.po b/application/i18n/po/po-es_VE/category.po new file mode 100644 index 0000000000..08ed0183d8 --- /dev/null +++ b/application/i18n/po/po-es_VE/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-es_VE/comments.po b/application/i18n/po/po-es_VE/comments.po new file mode 100644 index 0000000000..9e1997b2c7 --- /dev/null +++ b/application/i18n/po/po-es_VE/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-es_VE/contact.po b/application/i18n/po/po-es_VE/contact.po new file mode 100644 index 0000000000..53f722e89b --- /dev/null +++ b/application/i18n/po/po-es_VE/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-es_VE/core.po b/application/i18n/po/po-es_VE/core.po new file mode 100644 index 0000000000..dfb1f30340 --- /dev/null +++ b/application/i18n/po/po-es_VE/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-es_VE/database.po b/application/i18n/po/po-es_VE/database.po new file mode 100644 index 0000000000..1cf1c88bd4 --- /dev/null +++ b/application/i18n/po/po-es_VE/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-es_VE/datetime.po b/application/i18n/po/po-es_VE/datetime.po new file mode 100644 index 0000000000..45917c1778 --- /dev/null +++ b/application/i18n/po/po-es_VE/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-es_VE/feeds.po b/application/i18n/po/po-es_VE/feeds.po new file mode 100644 index 0000000000..c14764c9c1 --- /dev/null +++ b/application/i18n/po/po-es_VE/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-es_VE/footer.po b/application/i18n/po/po-es_VE/footer.po new file mode 100644 index 0000000000..7e9924b3e3 --- /dev/null +++ b/application/i18n/po/po-es_VE/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-es_VE/form.po b/application/i18n/po/po-es_VE/form.po new file mode 100644 index 0000000000..88e7195ef4 --- /dev/null +++ b/application/i18n/po/po-es_VE/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-es_VE/imap.po b/application/i18n/po/po-es_VE/imap.po new file mode 100644 index 0000000000..9e8f0df050 --- /dev/null +++ b/application/i18n/po/po-es_VE/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-es_VE/installer.po b/application/i18n/po/po-es_VE/installer.po new file mode 100644 index 0000000000..e174b936ae --- /dev/null +++ b/application/i18n/po/po-es_VE/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-es_VE/layer.po b/application/i18n/po/po-es_VE/layer.po new file mode 100644 index 0000000000..cecf707e59 --- /dev/null +++ b/application/i18n/po/po-es_VE/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-es_VE/libraries.po b/application/i18n/po/po-es_VE/libraries.po new file mode 100644 index 0000000000..35d36d1f61 --- /dev/null +++ b/application/i18n/po/po-es_VE/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-es_VE/maintenance.po b/application/i18n/po/po-es_VE/maintenance.po new file mode 100644 index 0000000000..8bb73e860e --- /dev/null +++ b/application/i18n/po/po-es_VE/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-es_VE/message.po b/application/i18n/po/po-es_VE/message.po new file mode 100644 index 0000000000..124dae881f --- /dev/null +++ b/application/i18n/po/po-es_VE/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-es_VE/mhi.po b/application/i18n/po/po-es_VE/mhi.po new file mode 100644 index 0000000000..28f89cc3c6 --- /dev/null +++ b/application/i18n/po/po-es_VE/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-es_VE/notifications.po b/application/i18n/po/po-es_VE/notifications.po new file mode 100644 index 0000000000..0c73bc079a --- /dev/null +++ b/application/i18n/po/po-es_VE/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-es_VE/page.po b/application/i18n/po/po-es_VE/page.po new file mode 100644 index 0000000000..46a0f19e40 --- /dev/null +++ b/application/i18n/po/po-es_VE/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-es_VE/permissions.po b/application/i18n/po/po-es_VE/permissions.po new file mode 100644 index 0000000000..e3975a2288 --- /dev/null +++ b/application/i18n/po/po-es_VE/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Ver Reportes" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crear/Editar/Borrar Reportes" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprobar Reportes" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar Reportes" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Administrar Comentarios de los Reportes" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descargar Reportes" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Subir Reportes" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Administrar Mensajes" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Administrar Mensajes de los Informantes" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ver Estadísticas" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificar Configuraciones" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Administrar Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Administrar Usuarios" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Administrar Roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Puede Registrar" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Administrar registros" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acceso como Administrador" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acceso como Miembro" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-es_VE/private_message.po b/application/i18n/po/po-es_VE/private_message.po new file mode 100644 index 0000000000..0b570bb138 --- /dev/null +++ b/application/i18n/po/po-es_VE/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-es_VE/report.po b/application/i18n/po/po-es_VE/report.po new file mode 100644 index 0000000000..d207afbe3c --- /dev/null +++ b/application/i18n/po/po-es_VE/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-es_VE/reporters.po b/application/i18n/po/po-es_VE/reporters.po new file mode 100644 index 0000000000..1d1895718e --- /dev/null +++ b/application/i18n/po/po-es_VE/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-es_VE/reports.po b/application/i18n/po/po-es_VE/reports.po new file mode 100644 index 0000000000..ba54fa2047 --- /dev/null +++ b/application/i18n/po/po-es_VE/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-12 21:27+0000\n" +"Last-Translator: José Jiménez \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifica que has seleccionado un ítem" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Por favor verifica que has seleccionado un ítem" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Los reportes deben ser categorizados antes de ser aprobados" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "No tienes permiso para realizar esta acción" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Debes seleccionar un archivo a subir" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "El archivo a subir debe ser del formato .csv o .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "El campo Archivo a Subir no parece contener un archivo válido" diff --git a/application/i18n/po/po-es_VE/roles.po b/application/i18n/po/po-es_VE/roles.po new file mode 100644 index 0000000000..eeb8e50366 --- /dev/null +++ b/application/i18n/po/po-es_VE/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-es_VE/settings.po b/application/i18n/po/po-es_VE/settings.po new file mode 100644 index 0000000000..106b9ccab7 --- /dev/null +++ b/application/i18n/po/po-es_VE/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/projects/p/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-es_VE/sharing.po b/application/i18n/po/po-es_VE/sharing.po new file mode 100644 index 0000000000..125a64eab2 --- /dev/null +++ b/application/i18n/po/po-es_VE/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-es_VE/stats.po b/application/i18n/po/po-es_VE/stats.po new file mode 100644 index 0000000000..b59f3daf71 --- /dev/null +++ b/application/i18n/po/po-es_VE/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-es_VE/tooltips.po b/application/i18n/po/po-es_VE/tooltips.po new file mode 100644 index 0000000000..5629200dbc --- /dev/null +++ b/application/i18n/po/po-es_VE/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-es_VE/ui_admin.po b/application/i18n/po/po-es_VE/ui_admin.po new file mode 100644 index 0000000000..af5a0815a4 --- /dev/null +++ b/application/i18n/po/po-es_VE/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-es_VE/ui_main.po b/application/i18n/po/po-es_VE/ui_main.po new file mode 100644 index 0000000000..8093e3a67f --- /dev/null +++ b/application/i18n/po/po-es_VE/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# José Jiménez , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Acerca de" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acceso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limites de Acceso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nombre de la Cuenta" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Acciones" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Esta acción no se puede deshacer. ¿Está seguro que desea continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Activo" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Agregar" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Agregado Por" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Información Adicional" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Reportes Adicionales" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Agregar/Editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Agregar un Campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Agregar Idioma" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Agregar Nuevo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Agregar Nueva Categoría" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Agregar Traducción" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administración" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Recibir Alertas" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alértame si un reporte ha sido llenado en, o alrededor:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Guardar Mi Alerta" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Dirección de correo electrónico:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ingrese dirección de correo electrónico" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "ingrese el número móvil con el código de país" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Recibir Alertas" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Teléfono Móvil:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "O indique un lugar en el siguiente mapa y le enviaremos una alerta cuando se registre un informe en un radio de 20 kilómetros." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Si no puede encontrar su ubicación, por favor haga clic en el mapa para seleccionar la ubicación correcta." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS (copie la siguiente URL)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Seleccionar una ciudad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Paso 1: Seleccione su ciudad o ubicación:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Paso 2: Enviar alertas a mi:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Paso 3 (Opcional): Seleccione Categorías" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmar una solicitud de Alerta anterior" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "¡Tu Alerta ha sido Guardada!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Todo" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permitido" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Todas las Categorías" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Todo el tiempo" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "y" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprobar" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprobado" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Reportes Aprobados" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprobar este Reporte" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximado" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archivo" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archivado" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "en" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Registro automático" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Promedio de Reportes por Día" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Esperando Aprobación" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Esperando Verificación" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Insignia" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Insignias" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imagen de la Insignia" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "O puede subir una imagen personalizada para esta insignia." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Paquete de Insignias" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Seleccione una Insignia" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Explorar Perfiles" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoría" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro de Categoría" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "La categoría ha sido" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nombre de la Categoría" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Cambiar Rango de Fechas" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Cambiar Contraseña" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Cambiar Mi Foto" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Elija un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Elija los puntos de datos para descargar" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "O elija su propio rango de fechas" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Elija el tipo del campo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLs limpias" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Limpiar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Limpiar Mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Cerrar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "grupos" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Color" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentario" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalles del Comentario" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "¡Tus Configuraciones han sido Guardadas!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurar" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ha confirmado correctamente su dirección de correo electrónico. Puede acceder a continuación." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contáctanos" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Código de Seguridad" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Tu Dirección de correo electrónico" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mensaje" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "¡Tu Mensaje ha sido enviado!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Tu Nombre" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Tu Número Telefónico" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar Mensaje" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Título del Mensaje" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crear" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crear/Editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crear Nuevo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crear Nueva Contraseña" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Crear Reporte" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilidad" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Contraseña Actual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Campos Personalizados" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Información" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Fecha" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Fecha y Hora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "día" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desactivar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Eliminar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Eliminado" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Eliminados" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Eliminar Desactivado" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Eliminar Último" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Eliminar este Reporte" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Eliminar Seleccionados" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Eliminar Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demostración" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Ejemplo: Equina de City Market, 5th Street & 4th Avenue, Johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalles" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Reporte Directo" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Desactivado" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Desaprobar" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Descargar Reportes" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar los Campos del Formulario" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar Reporte" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Correo Electrónico" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Configuración del Servidor de Correo Electrónico" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-es_VE/upgrade.po b/application/i18n/po/po-es_VE/upgrade.po new file mode 100644 index 0000000000..b977139a3b --- /dev/null +++ b/application/i18n/po/po-es_VE/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 06:54+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/ushahidi/ushahidi-v2/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-eu/alerts.po b/application/i18n/po/po-eu/alerts.po new file mode 100644 index 0000000000..41faa2645b --- /dev/null +++ b/application/i18n/po/po-eu/alerts.po @@ -0,0 +1,234 @@ +# +# Translators: +# Iker Ibarguren, 2013 +# Iruneakoa , 2013 +# kokoteko , 2013 +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Email eremuak ez du baliozko email helbiderik" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Email hori dagoeneko kokaleku horretako alertak jasotzeko erregistratua izan da." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "email eremua beharrezkoa da kontrol-laukia hautatuta badago" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Hedaketa hau herrialde baterako bakarrik balio du. Ziurtatu berri emandako lekua herrialde %s barnean dagoela." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Ez duzu baliodun kokalekurik hautatu mapan" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Ez duzu mapan baliozko kokalekurik aukeratu." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Ez duzu mapan baliozko kokalekurik aukeratu." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Ez duzu mapan baliozko kokalekurik aukeratu." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Badirudi Sakelako telefonoa eremuak ez duela behar besteko digitu kopurua" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Sakelako telefono zenbaki hori dagoeneko erregistratuta dago kokaleku horretako alertak jasotzeko" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Sakelako telefonoa eremuak ez du baliozko telefonoa. Mesedez, idatzi Herrialdeko Kodea baino ez duten zenbakiak" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Mugikor zenbakia edo Email helbidea sartzea beharrezkoa da." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Sakelako Telefonoa eremua beharrezkoa da kontrol-laukia hautatuta badago" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Ez duzu baliodun erradioa hautatu mapan" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Ez duzu baliodun erradioa hautatu mapan" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Ez duzu ezarri alertentzako hartzailerik." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Honako kategorietako alertetan harpidetu zara" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Kode hori aldez aurretik egiaztatu dute!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Egiaztapen-kode hau ez da aurkitu! Mesedez, baieztatu URL zuzena duzula." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Zure kodea ongi egiaztatu da. Orain, alertak jasoko dituzu gorabeherak gertatu ahala." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Alerta eskaera berresteko, mesedez, joan hona" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Bueltatu Alerta orrira alerta berriak sortzeko" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Zure e-posta alerta eskaera sortu da eta egiaztapen mezua bidali da" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Idatzi behean e-postaz jaso duzun berrespen-kodea:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Zure e-posta alerta eskaera ez da gorde!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Zure e-posta alerta eskaera gorde da!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Sistema ez da gai izan zure konfirmazioa eskaera tramitatzeko!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Zure mugikor alerta eskaera sortu da eta egiaztapen mezua bidali da" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Idatzi zure mugikorrean jaso duzun SMS baieztapen kodea:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Zure mugikorreko alerta eskaera ez da gorde!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Zure mugikorreko alerta eskaera gorde da!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Hedapen hau ez da sortu behar bezala alertak prozesatzeko" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "E-posta hau jaso duzu alertak jasotzeko harpidetu zarekako. Ez baduzu alerta gehiago jaso nahi joan" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Aurrerantzean ez duzualertarik jasoko hemendik" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Ezin izan dugu harpidetza eten. Mesedez, baieztatu URL zuzena duzula." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertak - egiaztapena" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Ez duzu kokapena honetatik alertarik jasoko zure eskaera berretsi arte." diff --git a/application/i18n/po/po-eu/auth.po b/application/i18n/po/po-eu/auth.po new file mode 100644 index 0000000000..fdb4a6eb50 --- /dev/null +++ b/application/i18n/po/po-eu/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Iker Ibarguren, 2013 +# Iruneakoa , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Sartutako posta ez da baliozko posta" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Barkatu, helbide posta honen erabiltzaile-kontua existitzen da jada" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Postaren eremuak gutxienez 4 eta gehienez 64 karaktere izan behar ditu." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Postaren eremua betetzea beharrezkoa da." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Izenaren eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Izenaren eremua betetzea beharrezkoa da." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Erabiltzaile-izenaren eremuak debekatutako karaktereak dauzka." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Pasahitzaren eremuak gutxienez 8 karaktere izan behar ditu." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Mesedez, ziurtatu sartutako posta eta pasahitza egokiak direla." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Mesedez, pasahitz berdina sartu bi pasahitz eremuetan." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Pasahitzaren eremua betetzea beharrezkoa da." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Pasahitza eremuak alfabetoaren karaktereak, # eta @ ikurrak, zenbakiak, azpimarrak eta marratxoak bakarrik eduki behar ditu" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Sartu duzun pasahitza okerra da. Mesedez, saiatu berriz." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Pasahitzaren eremuak gutxienez 8 karaktere izan behar ditu." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Mesedez, ziurtatu sartutako posta eta pasahitza egokiak direla." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Mesedez, pasahitz berdina sartu bi pasahitz eremuetan." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Pasahitzaren eremua betetzea beharrezkoa da." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Pasahitza eremuak alfabetoaren karaktereak, # eta @ ikurrak, zenbakiak, azpimarrak eta marratxoak bakarrik eduki behar ditu" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Saioa hasterakoan errore bat egon da." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Pasahitzaren eremuak gutxienez 8 karaktere izan behar ditu." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Mesedez, ziurtatu sartutako posta eta pasahitza egokiak direla." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Mesedez, pasahitz berdina sartu bi pasahitz eremuetan." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Pasahitzaren eremua betetzea beharrezkoa da." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Autentikazio zerbitzaria erorita dago. Saiatu berriro beranduago." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Pasahitza eremuak alfabetoaren karaktereak, # eta @ ikurrak, zenbakiak, azpimarrak eta marratxoak bakarrik eduki behar ditu" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Pasahitza berrespena eremuak eta pasahitza eremuak berdinak izan behar dute." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Sartutako posta ez da baliozko posta" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Barkatu, ez daukagu zure e-posta helbidea" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Postaren eremua betetzea beharrezkoa da." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Bakarrik superadmin erabiltzaileak alda dezake superadmin erabiltzailea edo erabiltzaile bat superadmin bihutu." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Rol formatu baliogabea." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Rol eremuak gutxienez 5 eta gehienez 30 karaktere izan behar ditu." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Gutxienez rol bat definitu behar duzu." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "ADMIN edo USER rola aukeratu behar duzu." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Ahaztutako pasahitz tokena baliogabea da" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Ahaztuta pasahitz tokena beharrezkoa da" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Admin rola ezin da editatu." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Profil Publiko URL eremuak zenbakiak eta letrak bakarrik eduki behar ditu." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Barkatu, profil publiko URL hau dagoeneko erabiltzen da." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Profil publiko URL eremuak gutxienez 2 eta gehienez 100 karaktere izan behar ditu." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Mesedez, ziurtatu profil publiko URL zuzena sartu duzula." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Profil publiko URL eremua beharrezkoa da." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Super Admin rola ezin da editatu." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "CSRF eraso posible bat. Seguru hau sortu/editatu nahi duzula?" diff --git a/application/i18n/po/po-eu/bug.po b/application/i18n/po/po-eu/bug.po new file mode 100644 index 0000000000..e369b3700b --- /dev/null +++ b/application/i18n/po/po-eu/bug.po @@ -0,0 +1,69 @@ +# +# Translators: +# gerkoon , 2013 +# Iruneakoa , 2013 +# Urtzi Odriozola , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Urtzi Odriozola \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Sartu baliozko segurtasun kodea mesedez" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Sartu segurtasun kodea mesedez" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Email eremuak ez du baliozko email helbiderik duenik ematen" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email eremua beharrezkoa da laukitxoa hautatuta badago." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Akatsaren eremua betetzea beharrezkoa da." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Gaiaren eremuak gutxienez 3 karaktere izan behar ditu." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Gaiaren eremua betetzea beharrezkoa da." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Izenaren eremuak gutxienez 3 karaktere izan behar ditu." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Izenaren eremua betetzea beharrezkoa da." diff --git a/application/i18n/po/po-eu/category.po b/application/i18n/po/po-eu/category.po new file mode 100644 index 0000000000..90c995b57a --- /dev/null +++ b/application/i18n/po/po-eu/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Dabid Martinez , 2013 +# gerkoon , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:19+0000\n" +"Last-Translator: Dabid Martinez \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Koloredun eremuak 6 karaktere izan behar ditu." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Kolore eremua beharrezkoa da" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Deskribapen eremua beharrezkoa da" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Mesedez ziurtatu irudiaren tamaina 50 KBkoa dela." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Ez dirudi irudi eremuak baliozko fitxategirik duenik. JPG, PNG eta GIF formatuak bakarrik onartzen dira." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Ez dirudi irudi eremuak baliozko fitxategirik duenik" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Izenburu eremuak gutxienez 3 karaktere eta gehienez 80 izan ditzake." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Izenburu eremua beharrezkoa da." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Ezin duzu azpikategoriak dituen kategoria bat azpikategorietan sartu." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Azpikategoria ez da existitzen." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Azpikategoria numerikoa izan behar da." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Azpikategoria ezin da kategoria berezia izan" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Azpikategoria eremua beharrezkoa da." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kategoria eta azpikategoria ezin dira berdinak izan." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Kategoria bereziak ezin dira azpikategorietan sartu." diff --git a/application/i18n/po/po-eu/comments.po b/application/i18n/po/po-eu/comments.po new file mode 100644 index 0000000000..cc7ea21cb1 --- /dev/null +++ b/application/i18n/po/po-eu/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Aiora , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:43+0000\n" +"Last-Translator: Aiora \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Sartu baliozko segurtasun kodea, mesedez" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Sartu segurtasun kodea, mesedez" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Segurtasun kode okerra sartu duzu." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Izenaren eremuak gutxienez 3 karaktere izan behar ditu" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Izenaren eremua beharrezkoa da." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Iruzkin eremua beharrezkoa da" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email eremuak ez du baliozko email helbiderik" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email eremua beharrezkoa da kontrol-laukia hautatuta badago" diff --git a/application/i18n/po/po-eu/contact.po b/application/i18n/po/po-eu/contact.po new file mode 100644 index 0000000000..22bfc29926 --- /dev/null +++ b/application/i18n/po/po-eu/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# gerkoon , 2013 +# Iker Ibarguren, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 07:58+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Sartu baliozko segurtasun kodea mesedez" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Sartu baliozko segurtasun kodea mesedez" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Sar ezazu segurtasun kodea, mesedez." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Ez du ematen e-posta eremuak e-posta helbide baliagarria duenik." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email eremua beharrezkoa da kontrol-laukia hautatuta badago" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Mezu eremua beharrezkoa da" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Izenaren eremuak gutxienez 3 karaktere izan behar ditu" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Izena eremua beharrezkoa da" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Gaiaren eremuak gutxienez 3 karaktere izan behar ditu luzeran." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Gaiaren eremua beharrezkoa da." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Errore bat egon da zure mezua bidaltzean." diff --git a/application/i18n/po/po-eu/core.po b/application/i18n/po/po-eu/core.po new file mode 100644 index 0000000000..40c2f6b790 --- /dev/null +++ b/application/i18n/po/po-eu/core.po @@ -0,0 +1,161 @@ +# +# Translators: +# Dabid Martinez , 2013 +# gerkoon , 2013 +# Iker Ibarguren, 2013 +# Urtzi Odriozola , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-05-23 07:17+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "konfigurazio fitxategia" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "kontrolatzailea" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "kontrolatzailea" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s liburutegiarentzako %s kontrolatzaileak %s interfazea ezarri beharko luke." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s liburutegiarentzako %s kontrolatzailea ezin izan da aurkitu." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "hasiera orrira joan zintezke edo berriz saiatu." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Ezin da eskaera bete" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "laguntzailea" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Zure ikusteko konfigurazioak ez du %s, eskatutako fitxategi mota onartzen" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "%s baliogabeko methodoak %s-ra deitu du" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "%s propietatea ez da existitzen %s klasean" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "liburutegi" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "\"log\" direktorioa ez da idazgarria. %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "eredua" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi ez da gai izan kontrolatzaileari eskaera hau prozesatu dezan determinatzeko: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Mesedez zehaztu berezko ruta config/routes.php fitxategian" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Eskatu duzun orria, %s, ezin izan da aurkitu." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Ushahidiri arazoaren berri eman" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Eskatutako %s, %s, ezin izan da aurkitu." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Aztarna pilaketa" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "{execution_time} segundutan kargatua, {memory_usage} memoria erabiliaz. Ushahidik sortua v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Ushahidi istantzia bat bakarrik egon daiteke orri eskaera bakoitzeko." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Detektatu gabeko %s: %s %s fitxategian %s lerroan" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "ikusi" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Bistaren fitxategi izena jarri behar duzu renderizatu aurretik." diff --git a/application/i18n/po/po-eu/database.po b/application/i18n/po/po-eu/database.po new file mode 100644 index 0000000000..d0a80caca7 --- /dev/null +++ b/application/i18n/po/po-eu/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# gerkoon , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 11:15+0000\n" +"Last-Translator: gerkoon \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Datu basearen errorea: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "\"%s\" taula ezin da aurkitu datu basean. mesedez, zihurtatu Ushahidi bertsio honetarako azken datu base bertsioa erabiltzen duzula." diff --git a/application/i18n/po/po-eu/datetime.po b/application/i18n/po/po-eu/datetime.po new file mode 100644 index 0000000000..f283dc565b --- /dev/null +++ b/application/i18n/po/po-eu/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Theklan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:09+0000\n" +"Last-Translator: Theklan \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Os2" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Ostirala" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "As1" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Astelehena" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Lar" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Larunbata" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Iga" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Igandea" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Os1" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Osteguna" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "As2" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Asteartea" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "As3" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Asteazkena" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Urt" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Urtarrila" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Ots" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Otsaila" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Martxoa" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Api" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Apirila" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maiatza" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Eka" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Ekaina" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Uzt" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Uztaila" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Abu" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Abuztua" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Ira" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Iraila" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Urr" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Urria" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Aza" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Azaroa" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Abe" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Abendua" diff --git a/application/i18n/po/po-eu/feeds.po b/application/i18n/po/po-eu/feeds.po new file mode 100644 index 0000000000..040b7ff3cf --- /dev/null +++ b/application/i18n/po/po-eu/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Theklan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:03+0000\n" +"Last-Translator: Theklan \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Iturriaren izenak gutxienez 3 eta gehienez ⏎\n⇥⇥⇥70 karaktere izan bear ditu." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Sar ezazu, mesedez, iturriaren izena." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Sartu mesedez iturriaren URLa." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Sar ezazu, mesedez, URL baliagarri bat, adb. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "JATORRIA" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Izenburua" diff --git a/application/i18n/po/po-eu/footer.po b/application/i18n/po/po-eu/footer.po new file mode 100644 index 0000000000..6e5d0b21f8 --- /dev/null +++ b/application/i18n/po/po-eu/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# gerkoon , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:10+0000\n" +"Last-Translator: gerkoon \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl ez dago sisteman instalatua" diff --git a/application/i18n/po/po-eu/form.po b/application/i18n/po/po-eu/form.po new file mode 100644 index 0000000000..c9435d6c37 --- /dev/null +++ b/application/i18n/po/po-eu/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# gerkoon , 2013 +# sutokia , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 13:36+0000\n" +"Last-Translator: sutokia \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Eremuarentzat emandako balio lehenetsia baliogabea da" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Eremuaren izenak 3 hizki baino gehiago izan behar ditu eta 200 baino gutxiago" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "0 eta 50 bitarteko balore bat sartu eremuaren altuerarentzat, mesedez" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Data eremuarentzat balore baliogabea sartu duzu" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "aukeratu Bai edo Ez data eremuetan" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Eremuaren izenak 3 hizki baino gehiago izan behar ditu eta 100 baino gutxiago" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Sartu eremuaren izena, mesedez" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Sartu duzun eremu izena badago formulario honetan, Aukeratu beste bat, mesedez" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Beharrezko eremuarentzat balore baliogabea sartu duzu" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "aukeratu Bai edo Ez beharrezko eremuetan" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Aukeratu baliozko eremu mota, mesedez" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Aukeratu eremu mota, mesedez" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "0 eta 300 bitarteko balore bat sartu eremuaren zabalerarentzat, mesedez" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Sartu formularioaren deskribapena, mesedez" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Lehenetsitako formularioa ezaba ezina da." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Aukeratu zein formulariotara gehituko den eremu hau." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Aukeratu zein formulariotara gehituko den eremu hau." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Formularioaren eremuaren izenak 3 hizki baino gehiago izan behar ditu eta 100 baino gutxiago" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Sartu formularioaren izena, mesedez" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Dagoeneko titulu hau duen formularioa badago. Beste bat aukeratu mesedez" diff --git a/application/i18n/po/po-eu/imap.po b/application/i18n/po/po-eu/imap.po new file mode 100644 index 0000000000..699cc6b164 --- /dev/null +++ b/application/i18n/po/po-eu/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Theklan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:11+0000\n" +"Last-Translator: Theklan \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Ezin da ireki IMAP jarioa." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "E-posta zerbitzua ez dago baimendua." diff --git a/application/i18n/po/po-eu/installer.po b/application/i18n/po/po-eu/installer.po new file mode 100644 index 0000000000..e1267d6fbc --- /dev/null +++ b/application/i18n/po/po-eu/installer.po @@ -0,0 +1,413 @@ +# +# Translators: +# @atzerritik, 2013 +# gerkoon , 2013 +# Iruneakoa , 2013 +# sutokia , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-07 18:44+0000\n" +"Last-Translator: @atzerritik\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Basearen bidea" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Datu basea" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Datu Basearen ostalaria" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Ushahidi zure ordenagailuan erabiltzen ari bazara, \"localhost\" bezala agertuko da. Web-zerbitzari batetik ari bazara, zure ostalariaren informazioa lortuko duzu zure web hornitzailearengandik." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Datu Basearen izena" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Ushaidik erabiliko duen Datu Basearen izena" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Info gehiagorako, mesedez ikustatu ezazu artikulu hau datu baseak zehaztasun handiagorekin jorratzen dituen wikian." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Lehenetsitako hizkuntza(Lokala)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Desgaitua" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Gaitua" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Beheko zerrenda aurkitu diren akatsen laburpena da" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Amaiturik" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Orokorra" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Gakoa" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Atzera joan" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALAZIO AURRERATUA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "OINARRIZKO INSTALAZIOA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Jarraitu" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Ongi etorri Ushahidi-ren zerbitzari instalazio prosesura. Auikeratu zein instalazio mota erabili nahi duzun." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalazio arrakastasua" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Postaren zerbitzaria" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Posta zerbitzariaren host-a" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Adibideak: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Postaren zerbitzariaren pasahitza" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Zure postan normalean sartzeko erabilitako pasahitza" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Posta zerbitzariaren ataka" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Ohiko portuak: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Posta zerbitzariaren mota" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) edo Post Office Protocol (POP). Zein da ezberdintasuna?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Posta zerbitzariaren erabiltzailea" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Gmail, Hotmail, edo Yahoo Mail erabiltzen bazaude, sartu zure email helbide osoa erabiltzaile izen moduan." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Maparen hornitzailea" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidik mapa hornitzaile ezberdin hauekin berdin egiten du lan: Google, Bing edo Open Street Map. Aukeratu zure inguruko xehetasun handiena duena." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Beste pausuak..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Pasahitza" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Zure datu baseko paasahitza." + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Aurrekoa" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Berrabiarasi zure Apache Zerbitzaria, mesedez" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "SSL gaitu edo desgaitu" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Posta zerbitzari batzuk konexioa egiterakoan SSL erabiltzeko aukera ematen dizute. SSL erabiltzea gomendagarria da segurtasun maila gehitzen diolako." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "SMS zerbitzaria ezarri" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Guneko email helbidea" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Guneko email alerten helbidea" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Izenburua" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Erabiltzaile-izena" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Datu Baseko erabiltzaile-izena" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Zure webgunea ikusi" diff --git a/application/i18n/po/po-eu/layer.po b/application/i18n/po/po-eu/layer.po new file mode 100644 index 0000000000..7e9627b07b --- /dev/null +++ b/application/i18n/po/po-eu/layer.po @@ -0,0 +1,66 @@ +# +# Translators: +# Iruneakoa , 2013 +# sutokia , 2013 +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 11:05+0000\n" +"Last-Translator: sutokia \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Koloredun eremuak 6 karaktere izan behar ditu." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Koloredun eremua beharrezkoa da" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Badirudi fitxategi eremuan ez dagoela fitxategi egokirik . Onartzen diren formatuak .KMZ eta .KML dira soilik." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Badirudi fitxategi eremuan ez dagoela fitxategi egokirik" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Izen eremuak gutxienez 3 eta gehienez 80 karaktere izan behar ditu." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Izena eremua beharrezkoa da" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "KML URL edo Fitxategia beharrezkoak dira" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Ezin dituzu KML fitxategia eta URL-a batera izan" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Sar ezazu, mesedez, URL egoki bat, adb. http://www.ushahidi.com" diff --git a/application/i18n/po/po-eu/libraries.po b/application/i18n/po/po-eu/libraries.po new file mode 100644 index 0000000000..5a92cb2623 --- /dev/null +++ b/application/i18n/po/po-eu/libraries.po @@ -0,0 +1,119 @@ +# +# Translators: +# Iruneakoa , 2013 +# Urtzi Odriozola , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 21:52+0000\n" +"Last-Translator: Urtzi Odriozola \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Ezin da konektatu Akismet zerbitzarira." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Akismet-en erantzuna ezin da berreskuratu." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "%s API liburutegia ezin izan da bilatu %s klaserako. Mesedez begiratu zure APIko ataza bideratze taula." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Zure Akismet API giltza ez da baliozkoa." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Errorea fopen bidalketa metodoa exekutatzean!
Mesedez begiratu zure PHPk OpenSSL onartzen duen edota PHP bertsioa 5.2 baino handiagoa den." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Zure unicode mezua luzeegia da! (Momentuko luzera=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Mesedez zehaztu hartzaile helbidea (Nora)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Mesedez zehaztu igorlearen helbidea (Nondik)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Zure unicode mezua luzeegia da! (Momentuko luzera=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Ez onartutako bidaltzeko era!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "%s API liburutegia ez da baliozkoa. API liburutegi guztiak %s-ren azpi-klaseak izan behar dute." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "%s direktorioa ezin izan da ezabatu." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Errorea erauzketan: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Azken Ushahidi deskargatzean akatsa. HTTP egoera kodea" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "%s fitxategia ezin izan da kopiatu." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "%s fitxategia ezin izan da ezabatu." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi eguneraketa scripta" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Deskargatutako Ushahidi %s zip fitxategia, ezin da idatzi." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s ez dago erabilgarri RiverID kasean." diff --git a/application/i18n/po/po-eu/maintenance.po b/application/i18n/po/po-eu/maintenance.po new file mode 100644 index 0000000000..a85f56437c --- /dev/null +++ b/application/i18n/po/po-eu/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:11+0000\n" +"Last-Translator: Txapisotegi \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Barkatu baina gure gunea mantentze lanetan dago. Saiatu berriz minutu gutxi batzu barru." diff --git a/application/i18n/po/po-eu/message.po b/application/i18n/po/po-eu/message.po new file mode 100644 index 0000000000..1b4eefbc64 --- /dev/null +++ b/application/i18n/po/po-eu/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Aiora , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:34+0000\n" +"Last-Translator: Aiora \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Sartu baliozko segurtasun kodea, mesedez" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Sartu segurtasun kodea, mesedez" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email eremuak ez du baliozko email helbiderik" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email eremuak ezin du 4 hizki baino gutxiago eta 64 baino gehiago eduki" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "email eremua beharrezkoa da kontrol-laukia hautatuta badago" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Iruzkin eremua beharrezkoa da" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Izenaren eremuak gutxienez 3 karaktere izan behar ditu" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Izen eremua beharrezkoa da" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Telefonoaren eremua ez da baliozkoa" diff --git a/application/i18n/po/po-eu/mhi.po b/application/i18n/po/po-eu/mhi.po new file mode 100644 index 0000000000..819bf8af66 --- /dev/null +++ b/application/i18n/po/po-eu/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Theklan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 22:13+0000\n" +"Last-Translator: Theklan \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Sar ezazu, mesedez, segurtasun kode baliagarri bat." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Sar ezazu segurtasun kodea, mesedez." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Ez du ematen e-posta eremuak e-posta helbide baliagarria duenik." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Sar ezazu e-posta helbide baliagarri bat." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Mezuaren eremua nahitaezkoa da." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Gaiaren eremuak gutxienez 3 karaktere izan behar ditu luzeran." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Gaiaren eremua beharrezkoa da." diff --git a/application/i18n/po/po-eu/notifications.po b/application/i18n/po/po-eu/notifications.po new file mode 100644 index 0000000000..5002919ac6 --- /dev/null +++ b/application/i18n/po/po-eu/notifications.po @@ -0,0 +1,94 @@ +# +# Translators: +# Iker Ibarguren, 2013 +# kokoteko , 2013 +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 11:00+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Mezu hau zure webgunetik bidalia izan da" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Administratzaile saioa hasi" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Iruzkin berria bidali da zure webgunera, honakoari erantzunez:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Iruzkin berria" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "E-posta mezu berria bidali da zure webgunera." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "E-posta mezu berria" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Txosten berria bidali da zure webgunera" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Txosten berria" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Testu mezu berria bidalia izan da zure webgunera." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Textu mezu berria" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Alerta berria jaso duzu" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Alerta berria!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Mezu pribatu bat jaso duzu" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Mezu pribatu berria" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Erantzuteko, mesedez, joan hona:" diff --git a/application/i18n/po/po-eu/page.po b/application/i18n/po/po-eu/page.po new file mode 100644 index 0000000000..7112508ce8 --- /dev/null +++ b/application/i18n/po/po-eu/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Theklan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 21:51+0000\n" +"Last-Translator: Theklan \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Sartu orrialdearen izenburua, mesedez." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Orrialdearen izenburuak gutxienez 3 eta gehienez 150 karaktere izan behar ditu luzeran." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Mesedez, idatzi orrialde leihotxoaren izena." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Mesedez, sar ezazu orrialde deskribapena." diff --git a/application/i18n/po/po-eu/permissions.po b/application/i18n/po/po-eu/permissions.po new file mode 100644 index 0000000000..a05763f254 --- /dev/null +++ b/application/i18n/po/po-eu/permissions.po @@ -0,0 +1,114 @@ +# +# Translators: +# Iker Ibarguren, 2013 +# Txapisotegi , 2013 +# Urtzi Odriozola , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Txostenak ikusi" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Txostenak sortu/ezabatu/editatu" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Txostenak onartu" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Txostenak egiaztatu" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Kudeatu txostenen iruzkinak" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Txostenak jaitsi" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Txostenak kargatu" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Mezuak kudeatu" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Kudeatu mezu bidaltzaileak" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Estatistiken txostena" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Ezarpenak aldatu" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Kudeatzaile panela" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Kudeatu erabiltzaileak" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Kudeatu rolak" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Erregistratu daiteke" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Kudeatu erregistroak" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Admin interfaze sarrera" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Kide interfaze sarrera" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-eu/private_message.po b/application/i18n/po/po-eu/private_message.po new file mode 100644 index 0000000000..ed622b8c43 --- /dev/null +++ b/application/i18n/po/po-eu/private_message.po @@ -0,0 +1,49 @@ +# +# Translators: +# Dabid Martinez , 2013 +# kokoteko , 2013 +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-20 23:03+0000\n" +"Last-Translator: kokoteko \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "ID nagusia zenbakia izan behar du" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Izena eremua beharrezkoa da" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Mezua bidali nahi diozun erabiltzailea ez da existitzen" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Gaiaren eremua beharrezkoa da." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Orrialdearen izenburuak gutxienez 3 eta gehienez 150 karaktere izan behar ditu luzeran." + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Mezu eremua beharrezkoa da" diff --git a/application/i18n/po/po-eu/report.po b/application/i18n/po/po-eu/report.po new file mode 100644 index 0000000000..cbd956879b --- /dev/null +++ b/application/i18n/po/po-eu/report.po @@ -0,0 +1,396 @@ +# +# Translators: +# kakapo , 2013 +# atzerritik , 2013 +# Iker Ibarguren, 2013 +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Akatsa!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Hedaketa hau herrialde baterako bakarrik balio du. Ziurtatu berri emandako lekua herrialde %s barnean dagoela." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "\"%s\"(e)k zenbakia izan behar du." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "\"%s\" eremua betetzea beharrezkoa da." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Badirudi \"%s\" eremua ez dela existizen." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Zure kontuak ezin du \"%s\" eremua editatu." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "\"%s\" eremuak baliozko e-posta helbidea izan behar du." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "\"%s\" eremual baliozko telefono zenbakia izan behar du." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "\"%s\" eremuak baliozko data formatua izan behar du (YYYY/MM/DD)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "\"%s\" eremuak baliozko data (YYYY/MM/DD) izan behar du." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Aukeratu ezazu baliozkoa den gai bat deskargan biltzeko." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Aukeratu ezazu baliozkoa den gai bat deskargan biltzeko." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Mesedez aukeratu \"Txostenak onarpenaren zain\" edo \"onartutakoa txostenak\", edo biak." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Mesedez aukeratu \"Txostenak onarpenaren zain\" edo \"onartutakoa txostenak\", edo biak." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Mesedez aukeratu \"Txostenak onarpenaren zain\" edo \"onartutakoa txostenak\", edo biak." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Mesedez aukeratu \"Txostenak onarpenaren zain\" edo \"onartutakoa txostenak\", edo biak." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Mesedez aukeratu \"Txostenak onarpenaren zain\" edo \"onartutakoa txostenak\", edo biak." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Mesedez aukeratu \"Txostenak onarpenaren zain\" edo \"onartutakoa txostenak\", edo biak." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Aukeratu ezazu baliozko txosten mota deskargatzeko." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Aukeratu ezazu baliozko txosten mota deskargatzeko." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Aukeratu ezazu baliozko txosten mota deskargatzeko." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Deskarga formatu bat aukeratu behar duzu. CSV edo XML izan daiteke." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Aukeratu ezazu baliozko txosten formatua deskargatzeko." + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Ez dirudi NOIZTIK data eremuak baliozko datarik duenik." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Aukeratu ezazu data baliagarri bat. Ezin du izan gaur baino handiagoa." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Mesedez, sartu baliozko balio bat Txostena Onartu balioarentzako" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Sartu baliozko balioa Txosten hau Onestu eremuarentzako mesedez" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Ez dirudi irudi am/pm eremuak baliozko baliorik duenik" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Badirudi \"Kategoriak\" eremuak ez duela baliozko kategoria " + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "\"Kategoriak\" eremua beharrezkoa da." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Ez du ematen data eremuak data baliagarria duenik." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Ez dirudi data eremuak baliozko datarik duenik" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Dataren eremua betetzea beharrezkoa da." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "\"Deskribapena\" eremua beharrezkoa da." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Badirudi ordua eremuak ez duela balio egokirik." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Orduaren eremua betetzea beharrezkoa da." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Mesedez, sartu Informazioa Probabilitatearen baliozko balioa." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Sartu baliozko Informazio Probabilitate balioa mesedez." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Ez dirudi irudi minutu eremuak baliozko baliorik duenik" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Minutuaren eremua betetzea beharrezkoa da." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Badirudi iturburu lotura eremuak ez duela baliozko URLrik." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Mesedez ziurtatu argazkien tamaina 2 MBkoa dela." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Ez dirudi argazki eremuak baliozko fitxategirik duenik. JPG, PNG eta GIF formatuak bakarrik onartzen dira." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Badirudi Argazkiak Igo eremuaa ez duela fitxategi egokirik." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Sartu Iturri Fidagarritasun eremuaren baliozko balioa mesedez." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Sartu baliozko Informazio Probabilitate balioa mesedez." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "\"Txosten titulo\" eremuak gutxienez 3 eta gehienez 200 karaktere izan behar ditu." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "''Iruzkinaren izenburua'' eremua betetzea beharrezkoa da." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "CSRF eraso posible bat. Seguru hau sortu/editatu nahi duzula?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Mesedez, sartu baliozko balio bat Txostena Egiaztatu balioarentzako." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Mesedez, sartu baliozko balio bat Txostena Egiaztatu balioarentzako." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Badirudi bideo lotura eremuak ez duela baliozko URLrik." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Badirudi latitude eremuan ez dagoela latitude egokirik." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Latitude eremua beharrezkoa da. Mesedez klikatu mapa kokapena markatzeko." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Lokalizazio eremuak balio okerra dauka." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Txostenak dagoeneko badu hizkuntza horretarako itzulpen bat." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Kokapen eremuak balore okerra dauka." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Jatorrizko Txostenak eta Itzulpenak lokalizazio (hizkuntza) berdina dute." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Lokalizazioa beharrezkoa da." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "\"Lokalizazio izena\" eremuak gutxienez 3 eta gehienez 200 karaktere izan behar ditu." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "\"Kokapen izena\" eremua beharrezkoa da." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Badirudi longitude eremuko balioa ez dela zuzena." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Longitude eremua beharrezkoa da. Egun klik mapan kokapena zehazteko." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Ez du ematen e-posta eremuak e-posta helbide baliagarria duenik." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Postaren eremuak gutxienez 4 eta gehienez 64 karaktere izan behar ditu." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Izenaren eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Abizenaren eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Ez dirudi NORARTE data eremuak baliozko datarik duenik." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Aukeratu ezazu NOIZ-ARTE data baliagarri bat. Ezin du izan gaur baino handiagoa." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Zure NOIZTIK data ermuak ezindu izan NOIZ-ARTE baina handiagoa." diff --git a/application/i18n/po/po-eu/reporters.po b/application/i18n/po/po-eu/reporters.po new file mode 100644 index 0000000000..1bc6bf19ba --- /dev/null +++ b/application/i18n/po/po-eu/reporters.po @@ -0,0 +1,73 @@ +# +# Translators: +# Txapisotegi , 2013 +# Urtzi Odriozola , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 22:00+0000\n" +"Last-Translator: Urtzi Odriozola \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Badirudi latitude eremuan ez dagoela latitude egokirik." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Latitude eremua beharrezkoa da. Mesedez klikatu mapa kokapena markatzeko." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Badirudi txosten egile maila eremuak maila egokirik ez duela." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Badirudi txosten egile maila eremuak maila egokirik ez duela." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Kokapen izenaren eremuak gutxienez 3 eta gehienez 200 karaktere izan behar ditu." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Kokapen izenaren eremua beharrezkoa da." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Badirudi longitude eremuan ez dagoela longitude egokirik." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Longitude eremua beharrezkoa da. Mesedez klikatu mapa kokapena markatzeko." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Txosten egile baliogabea" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Txosten egile baliogabea" diff --git a/application/i18n/po/po-eu/reports.po b/application/i18n/po/po-eu/reports.po new file mode 100644 index 0000000000..71304d41ee --- /dev/null +++ b/application/i18n/po/po-eu/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Iker Ibarguren, 2013 +# Iruneakoa , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 08:02+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Mesedez ziurtatu gaia egiaztatu izana" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Mesedez ziurtatu gaia egiaztatu izana" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Informeak kategorizatuak izan behar dira onartu ahal izateko" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Akzio hau burutzeko baimenik ez duzu" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Deskargatzeko artxiboa aukeratu behar duzu" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Fitxategiak .csv edo .xml formatua izan behar du" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Ez dirudi fitxategi eremuak baliozko fitxategirik duenik" diff --git a/application/i18n/po/po-eu/roles.po b/application/i18n/po/po-eu/roles.po new file mode 100644 index 0000000000..4d28c2a78c --- /dev/null +++ b/application/i18n/po/po-eu/roles.po @@ -0,0 +1,64 @@ +# +# Translators: +# Txapisotegi , 2013 +# Urtzi Odriozola , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 15:44+0000\n" +"Last-Translator: Urtzi Odriozola \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Deskribapen eremuak gutxienez 3 eta gehienez 100 karaktere izan behar ditu." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Deskribapen eremua beharrezkoa da" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Izenaren eremuak letra eta zenbakiak bakarrik eduki behar ditu." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Izen eremuak gutxienez 2 eta gehienez 30 karaktere izan behar ditu." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin rola ezin da editatu." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Izena eremua beharrezkoa da" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Sarbide mailako eremuak 0 eta 100 bitarteko zenbakia izan behar du." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Sarbide mailako eremuak 0 eta 100 bitarteko zenbakia izan behar du." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Baimenen eremuak 0 eta 100 bitarteko zenbakia izan behar du." diff --git a/application/i18n/po/po-eu/settings.po b/application/i18n/po/po-eu/settings.po new file mode 100644 index 0000000000..6366136225 --- /dev/null +++ b/application/i18n/po/po-eu/settings.po @@ -0,0 +1,864 @@ +# +# Translators: +# atzerritik , 2013 +# Dabid Martinez , 2013 +# Theklan , 2013 +# gerkoon , 2013 +# Iruneakoa , 2013 +# sutokia , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Basque (http://www.transifex.com/projects/p/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Email eremuak ez du baliozko helbiderik." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Mezu eremua beharrezkoa da." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Badirudi feed-a sartu eremuan balio egokirik ez duela." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Feed-a sartu eremua beharrezkoa da." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Badirudi abisuak baimendu eremuak ez duela balio egokirik." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Abisuak baimendu eremua beharrezkoa da." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Badirudi txostenak baimendu eremuak balio egokirik ez duela" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Txostenak baimendu eremua beharrezkoa da." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Badirudi 'estatistikak elkarbanatu' eremuak ez du balio egokirik." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Estatistitak elkarbanatu eremua nahitaezkoa da." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Cache orrialdeen eremua" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Aukera eman URLak garbitzeko" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Garbitu URLak" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Mapa konfiguratu" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Berezko kokapena" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Badirudi feed-a sartu eremuan balio egokirik ez duela" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Koloredun eremuak 6 karaktere izan behar ditu." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Kolore eremua beharrezkoa da" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Berezko mapa ikuskera" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Berezko zoom maila" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Eskuratu hiriak Geonames-etik" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Mail serbitzariaren portuaren eremua luzeegia da." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Mail serbitzariaren portuaren eremuak bakarrik zenbakiak eduki beharko lituzke." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Mail serbitzariaren pasahitzaren eremua betetzea beharrezkoa da." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Mail serbitzariaren portuaren eremua luzeegia da." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Mail serbitzariaren portuaren eremuak bakarrik zenbakiak eduki beharko lituzke." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Mail serbitzariaren portuaren eremua luzeegia da. " + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Mail serbitzariaren erabiltzaile izenaren eremuak 50 karaktere baino gutxiago izan behar ditu." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Mail serbitzariaren erabiltzaile izenaren eremua betetzea beharrezkoa da." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Facebook Konfigurazio aukerak" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook erabiltzailea" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Gaitu HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoom maila" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Mapa hornitzailea aukeratu" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "API gako berria sartu" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "API gakoa lortu" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Maparen hornitzailea" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Maparen denbora lerroa" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Maparen ezarpenak" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Ushahidi instalazio honek herrialde anitz onartzen ditu?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Mesedez, lehenetsitako herria aukeratu" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Klik egin eta arrastatu, mapan zure kokapen zehatza ezartzeko." + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Lekuko bannerra" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blokeak ilarako" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache orriak" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Gaitu egiaztapenak" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Lehenetsitako koloreak kategori guztientzat" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Lehenetsitako ikonoak kategori guztientzat" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Banner irudia ezabatu" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Lehenetsitako ikonoa ezabatu" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Kontaktu orria erakutsi" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "\"Nola lagundu\" orria erakutsi" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Guneko email helbidea" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Elementuak orriko - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Elementuak orriko _ Administrazioa" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Guneko hizkuntza" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Erabiltzaileak eskuz onartu" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Gunearen mezua" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Gunearen izena" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Hedapen pribatuak" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Erabiltzailearen email baieztapena beharrezkoa da." + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Bidali txosten mezua" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Ordu gunea" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Gunearen ezarpenak" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitterren bilaketa zehaztapenak" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtag - komekin banandu" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Guneko emailaren eremuak ez du baliozko email helbidea" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Gunearen email eremuak gutxienez 4 eta gehienez 64 karaktere izan behar ditu." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Gune honetako izen eremuak gutxienez 3 eta gehienez 50 karaktere izan behar ditu." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Gunearen izen eremua beharrezkoa da" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS Konfigurazio aukerak" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Twitter Konfigurazio aukerak" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "testaren ezarpenak" diff --git a/application/i18n/po/po-eu/sharing.po b/application/i18n/po/po-eu/sharing.po new file mode 100644 index 0000000000..66b796aad1 --- /dev/null +++ b/application/i18n/po/po-eu/sharing.po @@ -0,0 +1,73 @@ +# +# Translators: +# Iker Ibarguren, 2013 +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 11:55+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "sarrera data" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Gehitutako data" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Azken sarrera" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Koloredun eremuak 6 karaktere izan behar ditu." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Kolore eremua beharrezkoa da" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Elkarbanatze izenak ez dirudi egokia denik" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Elkarbanatze izena beharrezkoa da." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "URL hori dagoeneko existitzen da." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL horrek ez dirudi zuzena denik." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "URLa ezartzea beharrezkoa da." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Badirudi URL eremuan ez dagoela baliozko URLrik." diff --git a/application/i18n/po/po-eu/stats.po b/application/i18n/po/po-eu/stats.po new file mode 100644 index 0000000000..c725b8fb5f --- /dev/null +++ b/application/i18n/po/po-eu/stats.po @@ -0,0 +1,200 @@ +# +# Translators: +# Theklan , 2013 +# gerkoon , 2013 +# sutokia , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 13:24+0000\n" +"Last-Translator: sutokia \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Onartua" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategoriak" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Kategoria arrakasta" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Estatistika honetan txostenen lerro ikuspegia duzu denboran zehar. Mugi sagua ezkerretik eskubira ikuspegi konparatiboa eskuratzeko kategoria ezberdinetan. Sagua grafikoaren gainean detaile gehiago lortzeko." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Aukeratu denbora tarte bat." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Herriak" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Herria" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Herri matxura" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Hau estatistiken sekzioa da eta deskribapen orokorra izango du laster. Momentuz nabigatzen has zaitezke gainean dauden azpi kategoriak erabiltzen." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Akatza" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Hiztegia" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Ikustaldi laburpena" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Bisitaldiak" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Zure orrialdeko bisitariek ikusi dituzten orrialdeen kopurua" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Txostenak" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Txosten kategoriak" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Txostenen estatistikak" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Txostenen egoera" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Orri zulatu txostena" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Estatistiken txostena" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Estatistikak ez dira ezarri" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "Hilabete 1" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 hilabete" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 hilabete" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Denak" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Aprobatu gabeak" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Bisitari bakarrak" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Zure hedapenera etorritako banakakoen kopurua. Bisitari bakarrak \"cookie\"-en bidez zehazten dira. \"Cookie\"-ak aktibaturik ez dituzten bisitariak identifikatzeko haien IP helbide, ebazpen, nabigatzaile, plugin, SO eta abarretik egindako heuristiko soil bat erabiliko da." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Ziurtatu gabeak" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Ziurtatua" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Bisitarien laburpena" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Bisitak" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Bisitaldi bat bisitari batek azken orrialde ikusitik gutxienez 30 minutu pasa direnean gordetzen da." diff --git a/application/i18n/po/po-eu/tooltips.po b/application/i18n/po/po-eu/tooltips.po new file mode 100644 index 0000000000..1702ad4270 --- /dev/null +++ b/application/i18n/po/po-eu/tooltips.po @@ -0,0 +1,586 @@ +# +# Translators: +# gerkoon , 2013 +# Iker Ibarguren, 2013 +# Iruneakoa , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Bialduko den emailaren gorputza" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Bialduko den emailaren gaia" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Txostenera gehituko den lehenetsitako izenburua da hau" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Bereiztu balio bakoitza komaz, adib. 1 balioa, 2 balioa, eta abar." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Bereiztu aukerautako elementu bakoitza komaz, adib. 1 elementua, 2 elementua, eta abar." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Hasi zerrendako bazkideei idazten." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Mezu pribatuaren subjektua" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mezu pribatua" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Zure posta helbidea" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Helbide honetan zure profil publikoa aurkitu daiteke." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Zure erabiltzailearen izena ezin izan da aldatu." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Helbide posta hau mezu alertak bidaltzeko erabiliko da." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "kokapen egokia erakusteko mapa ezarri" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Guneko kategoria guztientzako kolore kodea ezarri" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Guneko kategoria guztientzako ikono bat ezarri" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-eu/ui_admin.po b/application/i18n/po/po-eu/ui_admin.po new file mode 100644 index 0000000000..ec8a270196 --- /dev/null +++ b/application/i18n/po/po-eu/ui_admin.po @@ -0,0 +1,1660 @@ +# +# Translators: +# gerkoon , 2013 +# Iker Ibarguren, 2013 +# Iruneakoa , 2013 +# Txapisotegi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Sarbidea eragotzita. Zure ziurtagiria ez da baliozkoa edo zure eskakisuna ukatu egin da." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Sarbidea eragotzita. Zure eskakisuna ulertua, baina denbora moduko sarbide mugen ondorioz eragotzita. Saiatu berriz geroago" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Sarbide maila" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Ekintzak" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Kategoriara gehitu" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "gehitua" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "gehitua/zuzendua" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Gehigarriak" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administraria" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertak" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Jasotako alertak" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Guztia" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Ezezaguna" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Edozein" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Edozein lekutan" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API debekatua" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Saioak" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Ezarpenak" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "DEBEKUA KENDU" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "DEBEKUA KENDU DENEI" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "onartuta" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "auto onartu" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "eskuz onartu" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Artxibatu" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Ziur al zaude" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Ziur al zaude elementua ezabatu nahi duzula?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Zihur zaude argazki hau ezabatu nahi duzula?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Ziur zaude formularioak aldatu nahi dituzula?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Esleitu" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Zereginak" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Badge-a esleitu" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Egilea" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Egilearen email-a" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Atzera" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Debekatu IP-a" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Denboren artea" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blokeak" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Gorputza" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Ezeztatu" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategoriak" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Erakusketa grafikoen akatsa" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Ziurtatu zure mezua baliozkoa dela, mesedez" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Ziurtatu zenbakia baliozkoa dela, mesedez" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Egiaztatu zure SMS ezarpenak, mesedez" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Egiaztaturiko xehetasunak" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Egiaztapenak" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Hiriak kargatuta" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kodea" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Kode bertsioa sinkronizaziotik kanpo" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Kolorea" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Iruzkinak" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Zure alertaren baieztapen kodea:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Erabiltzailea izan da" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Zenbatu" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Herrialdea ez da aurkitu" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "Sortu/Editatu" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Txostena sortu" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Berritze kritikoa" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Aktiboa orain" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "desaktiboa orain" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Ez daukazu behar beste baimen hurrengo eremu pertsonalizatuak editatzeko." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Egunero" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Arbela" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "Datu basea" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data eta ordua" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Gehitutako data" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Aldatze-data" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Asteko eguna" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB bertsioa sinkronizaziotik kanpo." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "Ezabatua" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Ezabatu" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Bereizgarria ezabatuta" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Deskribapena" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Desgaitua" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Banatzailea hasi" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Banatzailea bukatu" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Txostenak jaitsi" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Goitibeherako aukerak" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITATUA" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "-k editatua" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editatu" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Saioa editatu" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Kolektibo osoa" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Geokodifikatze errorea! HTTP errorea" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP liburutegia ez da instalatu" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Okerreko Kredentzialak" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Akatsa" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Ohiko galderak" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Sei orduro" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Hamabi orduro" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Esperimentala" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Ohiko galderak" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "jarioa" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "jarioak" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Aukeren lista" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Balio lehenetsia" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Datu mota" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markaduna" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Zenbakizkoa" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Testu librea" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altuera (ilaretan)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "ezkutuko eremua" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Gehienezko hizkien luzera" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Eremu izena" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Ezkutatu" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Ez" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Bai, Itxita lehenetsita" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Bai, Irekita lehenetsita" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Ezin da igotako fitxategia aurkitu" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Ezin da fitxategia irakurtzeko zabaldu" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Formulario hau ez da existitzen!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Foroa" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Text Area eremua (testu librea)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Datu eremua" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Radio Button eremua" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Checkbox eremua" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Goitibeherako eremua" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Nondik" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Nondik" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geoizenen denbora-muga errorea" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Laguntza lortu" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Gai gehiago eskuratu" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Plugin gehiago eskuratu" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Ekintzak" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Gehitu/Aldatu" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Kudeatu erabiltzaileak" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rola" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Erabiltzailea" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "laguntza" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Orduro" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Jario-iturria honentzako" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Instalatzaile karpeta existitzen da oraindik. Instalatzaile karpeta ezabatu. Segurtasun ahultasun potentziala da." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instantzia" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instantziak" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Instantzia xehetasunak" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Baliogabeko parametroa" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP helbidea" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Hau datu eremua da?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Nork ikusi dezake erantzunak" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Nork eman dezake erantzunak" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Gakoa" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Gakoak" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email helbidea:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Izen-abizenak" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Pasahitza" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rola:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Erabiltzaile-izena" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Geruzak" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderatzailea" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Saiotik irten" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Saioak" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Kudeatu" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Rolak eta baimenak kudeautu" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Erabiltzaileak erakutsi" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Erabiltzaileak gehitu/aldatu" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Zure zerrenda publikoa kudeatu" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Markatu honela" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "ez spam moduan markatu" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "spam moduan markatu" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "Ez zen aurkitu dokumenturik" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mezua" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mezuak" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laronica mezuak" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter mezuak" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Zure mezua bidalia izan da!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minutu" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutuak" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Galdutako parametroa" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderatzailea" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "zuzenduta" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Denbora eremu ezarpenak" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "behera mugitu" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "gora mugitu" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Instantzia anitzak ostatuta" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Nire alertak" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Nire egiaztapenak" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Nire profila" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Nire txostenak" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Botoen" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positiboa" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "negatiboa" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Izena" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Alerta berria sortu" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Mezu berria sortu" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Pasahitz berria" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Ez" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Kategoria berezia da hau, txostenak bidaltzen dituzten erabiltzaileei ez zaie agertuko txostenak bidaltzeko formularioan. Hau erabiltzen da kategoria bat ezabatzen denean asignatzeko (kategoria gabeko txostenak)" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Jakinarazpena" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Ez ditu maiuskula eta miniskulak bereizten" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Ez da aurkitu" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Ez dago daturik. Ez dago emaitzik erakusteko." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Ez dago akatsik" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Emaitzik ez erakusteko!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Kontaketa espezifikoa" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID-ak" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "orria" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "orriak" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Orria ez da aurkitu" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Sentitzen dut, ikusten saiatzen ari zaren orria ez dago hemen.

Gure webgunetik kanpoko lotura bat jarraitu duzu?
Orri honetara guneko beste toki batetik iritsi bazata, mesedez jarri gurekin harremanetan, akatsa zuzendu dezagun.

Beste webgune bateko lotura jarraitu duzu?
Beste guneetako loturak batzuetan zaharkituta egon daitezke edo gaizki idatziak.Esaiguzu non zegoen eta saiatu gara beste gunearekin harremanetan jartzen arazoa konpontzeko.

Zuk idatzi duzu URLa?
Baliteke (URL) helbidea gaizki idatzia izana. Ziurtatu ongi idatzia dagoela, ortografia, maisukulak, eta abar.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Barkatu, ikusi nahi duzun orrialdia ez da hemen aurkitzen" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Erabilitako parametroak" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Pasahitza" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Pasahitza berrezarri" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Adiskide" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Pasahitza berrezartzeko eskaera jaso dugu" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Pasahitza aldatzeko, mesedez klik egin azpiko estekan (bestenaz kopiatu eta zure nabigatzailean itsasi)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Zuk eskatu bezala, zure pasahitza berrezarri da. Zure xehetasun berriak honako hauek dira" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi pasahitza berrezartu" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefonoa" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Mesedez aukeratu" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Datuak ez dira post metodoaz bidali" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Aurreikusi" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mezua" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mezu pribatuak" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mezu pribatua bidalia" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Gaia" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Nori" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Zerrenda publikoak" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Sailkatze" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "irakurri" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Garrantzia" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Txosten Titulua" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Txosten Data" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Txosten egileak" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Txosten-egile mailak" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Txostenak" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Ospe puntuazioa" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Nahitaezkoa" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Berrabiarazi" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Erantzuna" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Emaitzak" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Ezeztatu" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "E-posta horrek badu CrowdmapID-k kudeatutako kontua! Erabiltzaileak lehendik duen Crowdmap pasahitza erabili behar du saioa hasteko." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Ezarpenak gorde" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Bilatu" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Txostenak bilatu" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "honen bila" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Enkriptatze gakoak oraindik ere balio lehenetsia du. Hau da, ez da ziurra eta aldatu egin behar da." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Gune hau HTTP bidez hornitzen da. Segurtasuna handitzeko HTTPS ezarri behar da." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Argibideak wikian daude eskuragarri:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Aukeratu txostenak deskargatzeko nahi duzun formatua: -" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Aukeratu eremu mota ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Aukeratu elementua mesedez" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Abiarazle bat hautatu behar duzu erantzun bat hautatu aurretik." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Abiarazle bat hautatu behar duzu sailkatzea definitu ahal izateko." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Bidaltzailea" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Honi bidali" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Mezu hau zure webgunetik bidalia izan da ordu honetan " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Zerbitzari ordua" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Ezarpenak" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Orria erakusten" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Emaitzak erakusten" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "lagina" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Kategoria berezia" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Kategoria berezia da hau, txostenak bidaltzen dituzten erabiltzaileei ez zaie agertuko txostenak bidaltzeko formularioan. \"Erreportari fidagarriak\" ezaugarriarekin batera erabiltzen da." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Arlo jakina" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Rango" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estatistikak" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estatistikak" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Statistika bilketak huts egin du! Mesedez, saiatu berriro beranduago." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Statistika bilketak huts egin du!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Egun jakinak" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Gaia" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Administraria" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Zeregina burutua" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Textu eremua" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Izena" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Kudeatu erabiltzaileak" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Denbora-muga akatsa" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "nori" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Erregistroen totala" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "nori" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Txostenak itzuli" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Aktibatzailea" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Erabiltzaile aktibatzailea" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Aktibatzaileak" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "Aprobatu gabeak" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Ez-jakina" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Akats ezezaguna" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "Irakurri gabe" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Aurrerantzean ez duzualertarik jasoko hemendik" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Egin klik hemen orain eguneratzeko" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Ushahidi eguneratu" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Ushahidi egoeraren eguneraketa" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Txostenak kargatu" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Erabiltzailea" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Erabiltzaileak" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Egiaztatua/Egiaztatu gabea" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Egiaztatu/Egiaztatu gabe" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Bertsioa" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "eguneraketa eskuragarri dago." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Bideo kodeketa" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mezu pribatuak" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Gunea ikusi" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Txostena ikusi" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Ongi etorri," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Bai" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Zure bilaketa" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-eu/ui_main.po b/application/i18n/po/po-eu/ui_main.po new file mode 100644 index 0000000000..db09ef08b0 --- /dev/null +++ b/application/i18n/po/po-eu/ui_main.po @@ -0,0 +1,3175 @@ +# +# Translators: +# @atzerritik, 2013 +# Dabid Martinez , 2013 +# Theklan , 2013 +# Iker Ibarguren, 2013 +# Mikel Iturbe Urretxa , 2013 +# sutokia , 2013 +# Urtzi Odriozola , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Honi buruz" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Sarbidea" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Sarrera mugak" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Kontuaren izena" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Ekintzak" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ekintza hau ezin da desegin. Ziur zaude jarraitu nahi duzula?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktibatu" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktiboa" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Gehitu" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Gehitu duena" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Datu gehigarriak" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Txosten gehigarriak" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Gehitu/Aldatu" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Eremu bat gehitu" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Hizkuntza gehitu" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Gehitu berria" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Kategoria berria gehitu" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Itzulpena gehitu" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Kudeaketa" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Alertak eskuratu" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alerta bidalidazu txosten bat betetzen bada, edo gutxi gora behera:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Nire alarta gorde" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "E-posta helbidea:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "e-posta helbidea sartu" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Sartu mugikor zenbakia herrialde kodearekin" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Alertak lortu" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Alerta izan da" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mugikor zenbakia:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Edo gehitu kokapena beheko mapan eta jakinaraziko dizugu berri bat zugandik 20 kilometro edo gutxiagora bidaltzen denean" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Ezin baduzu zure kokapena aurkitu, klikatu mapan kokapen egokia markatzeko." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS jarioak (kopiatu beheko URLa)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Herria aukeratu" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Bat: Herria aukeratu:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Bi: Bidali alertak hona:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Hiru (hautazkoa): Kategoriak aukeratu" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Konfirmatu alerta eskakizuna" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Zure alerta gorde da!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Denak" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Baimenduta" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Onartutako HTML ekiketak: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "%s-eko Iframeak bakarrik daude baimenduak." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Kategoria guztiak" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Denbora guztia" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "eta" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Onartu" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Onartua" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Onartutako alertak" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Onartu alerta hau" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Gerturatu" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Artxibatu" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Artxibatua" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Goruntz" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "lekua" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Sortzailea" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Sarrera automatikoa" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Txostenak batazbeste eguneko" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Onartzearen zain" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Bereifikazioaren zain" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Ikurra" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Ikurrak" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Ikurraren irudia" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Zure ikur propioa igo dezakezu." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Ikur paketea" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Ikurra aukeratu" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Bloga" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Profilak nabigatu" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Ezeztatu" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategoriak" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategoria" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategoria filtroa" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategoria izan da" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Kategoria izena" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Data eremua aldatu" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "aldatu pasahitza" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Irudia aldatu" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Aukeratu" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Aukeratu datu puntuak deskargatzeko" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Edo zure data eremua aldatu" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Aukeratu datu mota" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL garbiak" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Garbitu" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Mapa garbitu" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Gorde" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "klusterrak" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Kolorea" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Iruzkina" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Iruzkinak" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Iruzkinaren zehetasunak" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Zure aukerak gorde dira!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Konfiguratu" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ondi baieztatu duzu zure e-posta! Saioa hasi behean." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "E-posta konfirmazioan huts! konfirmazio e-post berria eska dezakezu behean." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontaktatu" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Segurtasun kodea" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "E-posta helbidea:" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mezua" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Zure mezua bidali da!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Zure izena" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Zure telefono zenbakia" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Mezua bidali" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Mezuaren izenburua" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyleft ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Sortu" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Sortu/Editatu" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Berria sortu" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Pasahitz berria sortu" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Txostena sortu" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Sinesgarritasuna" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Egungo pasahitza" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Eremu pertsonalizatuak" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "informazioa" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(hh/ee/uuuu)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data eta ordua" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "eguna" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Ez-aktibo" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenia" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Ezabatu" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Ezabatua" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Ezabatuak" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Ezabatzea desgaitua" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Azkena ezabatu" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Txosten hau ezabatu" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Aukeratutako ezabatu" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Spam-a ezabatu" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Deskribapena" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Beheruntz" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Adibidez: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Xehetasunak" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Zuzeneko txostena" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Desgaitua" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Aprobatu gabeak" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Txostenak jaitsi" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Jeitsi" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editatu" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editatu formularioaren eremuak" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editatu txostenak" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-posta" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "E-posta helbidea:" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Posta zerbitzariaren ezarpenak" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Posta zerbitzariaren host-a" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Posta zerbitzariaren pasahitza" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Posta zerbitzariaren ataka" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Posta zerbitzarian SSL onartu" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Posta zerbitzariaren mota" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Posta zerbitzariaren erabiltzailea" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "beraz zure ezarpenak e-posta honekin erlazionatu behar dira" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Txostenak emailez jasotzeko, mesedez ezarri zure e-posta kontuaren ezarpenak behean. Gogoan izan e-posta hauek zure" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Zenbait zerbitzari e-posta helbide osoa eskatzen dute" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "E-posta pasahitza" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Ohiko portuak: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Adibidez: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Adibideak: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "SSL konexioak gaitu edo desgaitu" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "--HUTSIK---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "honi" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Akatsa" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Adibidea" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenia" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Kanpo aplikazioak" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Kanpo bideo esteka" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Jarioa" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Eman Feedback-a" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Jarioak" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Jario iturria izan da" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Jario iturri artikuluak" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Jario izena" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Jario URLa" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Erabili gabeko kolumna" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Fitxategia" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Ahalmendutako tamaina maximotik goragokoa da zure fitxategia" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Iragazkiak" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Iragazi txostenak" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Iragazi txostenak honen arabera" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Ondokoa duten txostenak iragazi" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Bilatu" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Bilatu kokapena" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Izena" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Ordutegia abiaraztea behartu" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Pasahitza ahaztu duzu?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Inprimakia" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Inprimakiak" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Inprimakiaren deskribapena" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editatu inprimakia" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Formularioarekin gertatu dena" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Inprimakiaren izenburua" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Nondik" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Izen-abizenak" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLokalizazioa eskuragarri" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Kolorea" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Iruzkinak" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiketa" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Zabalera tartea" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Joan" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Traola" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Izan da" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Nola lagundu" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Ezkutuan" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ezkutatu" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ezkutatu mezu hau" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Hasiera" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Txostena nola egin" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Gune honetan zu beste erabiltzaile batzuen aurrean identifikatzeko erabilia." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Irudia" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Irudiak" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Irudia/Ikonoa" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Ez-aktiboa" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Sarrera-ontzia" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Gertakaria" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Gertakariak hurbil" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Gertakariaren kokapena" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Erantsi" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Erantsi kategoriak" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Erantsi eremu pertsonalizatuak" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Erantsi deskribapena" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Erantsi ahalik eta zehaztapen handienarekin" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Erantsi latitudea" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Erantsi kokapen-informazioa" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Erantsi longitudea" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Informazio pertsona gehitu" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Sarrerako multimedia" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Informazioaren ebaluazioa" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Sartu zure kokapen zehatza" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Zure kontuak ez du baimen egokirik saioa hasteko. Mesedez jarri harremanetan administratzailearekin." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Erantzunez" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP helbidea" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Hau al da zure profila?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "elementua" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elementuak" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "elementu_detaileak" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Elementu Izenburua" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Giltza" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Gakoak" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML fitxategia" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Igo KMZ/KML fitxategia" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URLa" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Hizkuntza" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Azken" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Azken hilabetea" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Abizena" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Azken urtea" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitudea" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Geruzak" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Beste geruzak" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Geruza izan da" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Geruza izena" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Geruza URLa" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Utzi iruzkina" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Informazio gutxiago" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Maila" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Maila izan da" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Maila izena" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitatua" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Lotura" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Zerrenda" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Txostenak kargatzen" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Kokapena" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Kokapenak" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Hiria, lurraldea edota herrialdea" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Saio-hasiera" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Kontua ondo sortu da. Saioa hasi dezakezu." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Baieztapena zure e-posta helbidera bidali da." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-posta helbidea ez da existitzen. Sartu beste helbide bat edo sortu kontu bat." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Egin klik zure kontu-hornitzailean" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Hasi hasi honekin" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-posta eta pasahitza" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Eman izena" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Sortu kontua" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Eskerrik asko erregistratzeagatik %1$s (e)an. Zure e-posta helbidea egiaztatzeko, mesedez, ondorengo URLra joan: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Baieztapen harpidetzea" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Erabiltzaile Berriaran Onarpena" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Erabiltzaile kontua onartua izan da" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Sortu orain kontu bat eta aprobetxatu guneko ezaugarri gehiagoz." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitudea" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Markatu irakurritako gisa" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Markatu ez-irakurri gisa" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Fitxategi-tamaina maximoa" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Multimedia" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Multimedia iragazkia" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Bazkideak" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Kudeatu zure kontua" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mezua" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mezuak" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Mezuaren xehetasunak" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Ez zenbakizko iturburu batetik mezua:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mugikorra" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Aldatu" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Data aldatu" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "hilabetea" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Gehiago" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Informazio gehiago" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Ushahidi instalazio honek herrialde anitz onartzen ditu?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Zure e-posta helbidea baieztatu behar duzu hedapena honetan sartzeko. Zure baieztapen e-posta galdu baduzu, berri bat eskatu ahal izango duzu azpian." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Izena" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Hurbileko txostena" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Berria" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Berriak" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Berri-jarioa" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Berriaren iturria" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Kategoria berria" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Pasahitz berria" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Txosten berria" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Hurrengoa" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Ez" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Azterketarik ez erakusteko" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Daturik ez" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Ezer ez" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Jakinarazpenak" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Ez onartua" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Ez onartua" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Aukeratu gabe---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Ez da spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Zehaztu gabea" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Ez dago txostenik" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Ez dago emaitzarik" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Itzalita" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Berri ofizial & mainstream-ak" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Piztuta" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Aukera" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Hautazkoa" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Aukerak" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Erakundea" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Erakundeak" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Erakundearen deskribapena" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Erakundearen e-posta" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organizazioa izan da" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Erakundearen izena" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Erakundearen Telefonoa 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Erakundearen Telefonoa 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Erakundearen Webgunea" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Jatorrizkoa" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Jatorrizko deskribapena" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Jatorrizko izenburua" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Beste Hedapenak" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Irteerako erretila" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Bidaltzekoa" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Orria" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Orriak" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Orriaren deskribapena" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Orrialdea Izan Da" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Orrialde leihotxoaren izena" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Orriaren Izenburua" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Kategoria nagusia" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Pasahitza" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Pasahitza egiaztatu" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Pasahitza ongi aldatu da. Hasi saioa behean." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Pasahitza ahaztu duzu?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Begiratu zure emaila pasahitz berria eskuratzeko." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Konektatua egon ordenagailu honetan?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Aurreko hilabetea" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Aurreko urtea" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Egiteke" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informazio pertsonala Hautazkoa." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefonoa" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Argazkiak" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Irudiak" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Irudi eta bideoak" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "*Bilatu zure kokapena toki-izen bat erabiliz EDO latitude, longitude koordenadak (formatua: 38.19,85.61), EDO egin klik mapan kokapen egokia seinalatzeko." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Hasi" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Mesedez kontuan izan" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Gehigarriak" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Gehigarrien webgunea" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Profil publikoa" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Profil publikoaren URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Aurreikusi" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Aurreikusi elementua" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Aurreikusi mezua" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Aurrekoa" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Pribatua" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profil Kolorea" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Zure profila gorde da" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estatistika laburrak" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Balorazioa" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Irakurri" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Jaso" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Nondik jasoa" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Jakinarazpenak jaso" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Azken txostenak" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Berri-jarioa eguneratu" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Erregistratutako emaila" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Ezabatu" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Erantzun" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Txostena" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Txostenak(maparenak, ordena kronologikoan ordenatua)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Txosten egilea" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Txosten egileak" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Txosten Data" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Txosten-egile posta-e" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Txosten-egile Izena" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Txosten-egile Izan Da" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Txosten-egile IP Helbidea" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Txosten-egile Abizena" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Txosten-egile maila" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Txosten-egile mailak" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Txosten-egile telefonoa" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Txostenak" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Nabigatu" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Bidali" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Erabiltzaile Honen Txostenak" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategoriak" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Txosten" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Deskribapena" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Txostenak CSV formatuan deskargatuko dira" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-posta" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Ezaugarriak" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Aurkitu zugandik hurbil dagoen kokapen bat" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Izena" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Abizena" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Kokapenaren izena" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Berrien Iturriaren Esteka" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Hautazko informazioa" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Argazkiak igo" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Txostenen orrira bueltatu" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Hiria aukeratu" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Zure Txostena gure taldera bidali da berrikusteko. Bueltan bidaliko dizugu ahalik eta laisterren." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Bidali Txosten Berri bat." + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Denbora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Denbora-lerroaren txostenak" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Txosten Titulua" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Bideo esteka" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Gertaera baten Txostena egin." + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Txostenaren Zehaztasunak" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Mezu bat hona bidaliz" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "E-posta bat bidaliz" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Txio bat bidaliz Traolekin:" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Formulario hau betez gure webgunean." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "App bat erabiliz" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Zure Txostena gorde da" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Txosten Titulua" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Informazio geihago eskatu" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Kokapena eskatu" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Beharrezkoa" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Beharrezkoak" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Konfirmazio e-posta berbidali" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Berrabiarazi" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Iragazki guztiak Berrabiarazi" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Gakoa Berrabiarazi" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Aukeratutako nazioaren hiriburuak eskuratu" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "%s zerbitzuak kudeatutako kontuak" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Dagoeneko baduzu CrowdmapID-k kudeatzen kontua! Saiatu zure CrowdmapID e-posta eta pasahitza erabiliz saioa hasten." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rola" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Gorde" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Gordeta" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Gorde eta berria" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Gorde eta itxi" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Txostena gorde" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Planifikazioa" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Planifikatzailea" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Eguna" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Ordua" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Planifikazio loga" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minutu" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Asteko eguna" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Bilatu" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Bilaketaren emaitzak" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Segurtasun kodea" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Guztia aukeratu" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Aukeratu Eremu Tipoa" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Aukeratu Eremu Tipoa" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Mapan aukeratu" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Aukeratu behar beste" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Mesedez ziurtatu gaia egiaztatu izana" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Txantiloia aukeratu" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Bidali" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Baieztapena bidali" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Honi bidaltzen" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Bidali" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Honek bidalia" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Zerbitzariaren helbidea" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Zerbitzari mota" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Zerbitzua" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Zerbitzuaren erabiltzaile-izena" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Erabiltzaile ID zerbitzua" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Elkarbanatu" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Elkarbanatze data" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Elkarbanatu da" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Elkarbanatzen" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa laburragoa" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Ikusi" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Guztiak ikusi" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mezuak ikusi" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "%1$s (e)tik %2$s rainoko txostenak erakusten" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Webgunea" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "gunearen posta helbidea" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Gunearen URLa" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa txiliagoa" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Barkatu, ez duzu ikurrik" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Iturria" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Iturburu izena" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordenatu" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Honekin ordenatu" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Iturburu URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spama" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL euskarria?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Nondik" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Pauso" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Bidali txostena" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "%1$s (e)k bidalia %2$s bitartez" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "SMS bidez bidali" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Bidali zure SMSa honi" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "zure mugikorrean" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Arrakasta!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Inportazioak arrakasta izan du" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Abizena" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Inkesta" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa tailerra" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP portua" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Gaiak" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Ushahidi gai lehenetsia" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Gaiaren ezarpenak" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Hau" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Gaur" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Hilabete hau" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Aste hau" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Urte hau" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Hau da zure profila" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Ordua" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Izenburua" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "nori" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Gaur" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Gaur" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Txostenen totala" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Itzulita" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Itzulitako deskribapena" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Itzulitako izenburua" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Itzuli" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Itzulpena" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Itzulketa gorde da" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Egiaztatua" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Mota" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Ezinezkoa da e-posta bidaltzea." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Kategoriarik gabeko txostenak" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Irakurri gabe" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Ziurtatu gabeak" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Jario-iturriak eguneratu" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Igo" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Ikusi gure txosten Igoera gidak: -" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML igoera gida" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV igoera gida" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Igotzeko fitxategia" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Txostenak kargatu" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Eremu pertsonalizatuak diren zutabeek beraien form_id erantsita izan behar dute, adibidez Test eremu pertsonalizatua jatorrizko formarioren ID-a 1 bada orduan Test-1 izango da. Formulario pertsonalizatuen inportazioetan gogoan izan hau." + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Beheko formularioarekin, gertakariak inporta ditzakezu Ushahidiren motorrera." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Txostenak CSV edo XML formatuan igo behar dira." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Istilu ID bat dagoeneko datu-basean badago, CSV/XML fitxategiko sarrera horri ez ikusia egingo zaio." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Gutxienez Gertaeran izenburua eta Gertaeraren data behar dira" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Ez badira latitude eta longitude kolimnak zehazten, kokapena Google Geocoder erabiliz egingo da." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "informazio gehiago inportatzen ari bazara, informazio pertsonala adibidez edo/eta inprimaki-eremu pertsonalizatuak" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Gutxienez informazio pertsonal eremu bat (izena, abizenak, helbide elektronikoa) BEHARREZKOA da. Hutsik dauden erregistroak ez dira inportatuko" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Zure sarrerak goitibeherako eremuarentzako, irrati botoientzako eta kontrol-laukientzako bat datoz eremu pertsonalizatuan emandako instantziarekin" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Kontrol-lauki aukerak koma batez bereiztuak daude, adibidez, zure aukera sagar, mahats eta mango fruituen hautaketa bada, sarrerak honela izan behar du \"sagarrak, mahatsa, mangoak\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Data eremuan balioak honako formatua izan behar du: yyyy/mm/dd adibidez, 2012ko Urriak 3 = 2012/10/03" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "CSV txosten adibidea" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Ongi ingo da" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Bideoa igo" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Erabiltzailea" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Erabiltzaile-izena" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Administraria" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Egiaztepena" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Ziurtatua" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Ziurtatutako txostenak" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Ziurtatu" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Ziurtatu txosten hau" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Bertsioa" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "erabiliz" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Bideoa" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Ikusi" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Ikuspenak" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Guztia ikusi" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Ikusi jario-iturri guztiak" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Ikusi txosten guztiak" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Elementuak ikusi" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Ikus gehiago" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Ikusi profil publikoa" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Txostena ikusi" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Txostenak ikusi" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Bideoa ikusi" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Ikusgai" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Onartzearen zain" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Bereifikazioaren zain" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa zabalagoa" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web inprimakia" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Webgunea" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Pisua" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Bai" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Atzo" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Zure Arbela" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Zure fitxategia" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zooma gerturatu" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zooma urrundu" diff --git a/application/i18n/po/po-eu/upgrade.po b/application/i18n/po/po-eu/upgrade.po new file mode 100644 index 0000000000..5499ab7d9c --- /dev/null +++ b/application/i18n/po/po-eu/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Dabid Martinez , 2013 +# Iker Ibarguren, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-05-21 07:52+0000\n" +"Last-Translator: Iker Ibarguren\n" +"Language-Team: Basque (http://www.transifex.com/ushahidi/ushahidi-v2/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Data eremu baliogabea. 0 balioa Ez, 1 balioa, Bai" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Eguneraketa automatikoa" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Eskuragarri dauden eguneraketak" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Jarraitu" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Eguneratu" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Ongi da, zure datu basea eguneratuko da bertsiotik" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "datu base bertsiorik berriena" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Egin klik \"Eguneratu\" botoian eta erlaxatu magia egiten dudan bitartean." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Oh, eta gainera nik zure datu basea eguneratzea nahi baduzu, hautatu azpian aukera eta momentu batean burutuko dut." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Eguneratu aurretik datu basearen kopia egin? (gomendagarria oso)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi datu basea eguneratuta" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi eguneratua izan da! Jarraitu aurretik, zure base datua eguneratu behar duzu bertsio berrienera (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Zure datu base bertsioa eguneratuta dago." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Eguneraketa punturen baten huts egin du" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Eskuzko eguneraketa" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi eguneraketa egoera" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Beheko nola demontreak zure Ushahidi instalazioa nola eguneratu azaltzen du!" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Jaitsi
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Deskargatu Ushadidi-ren bertsio berriena hemendik" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Segurtasun kopia
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Zerbait oker joaten bada ere, gomendagarria da Ushadidi-ren segurtasun kopia izatea.
Fitxategiak kopiatu
- Deskargatutako zip fitxategia deskonprimitu
- Zerbitzariaren sistema eragilearen arabera, erabili zure gustuko aplikazioa (adib. Telnet, FTP, SSH) web zerbitzarira konektatzeko eta aldatu karpeta guztietako fitxategiak berriengatik.
Datu basea eguneratu
- Lehenbizi begiratu zure datu basearen eskema bertsioa, ezarpen taularen db_version balioa begiratuz edo begiratu Ushadidi-ren eguneraketa informazioan web gune honen goikaldean.
- Zure bertsioa 25 bada, eguneraketak burutu behar dituzu 25etik-26ra, 26etik-27ra, 27etik-28ra eta horrela azken SQL fitxategirarte zure /sql karpetan.
- Zure base datu bezeroarekin, eguneratu datu basea egokia den upgradex-x.sql ftxategia erabiliz.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "3: pausua Begiratu sql karpetan. Eskuz exekutatu -.sql eguneraketa fitxategia, zure datu base bertsiotik hasita, azken eguneraketa sql fitxategirarte." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "4 pausua: Egin klik \"Jarraitu\" botoian beharrezkoak diren taulak eguneratzeko." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Eguneraketa automatikoak egiteko, klik egin beheko botian" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Ushahidi v%1$s erabiltzen ari zara %2$d base datu bertsioarekin %3$s zerbitzarian" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Eguneratzen" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Eguneraketa errazarekin jarraitzeko, beharrezkoak dira zure webgunea dagoen zerbitzariaren hurrengo FTP datuak." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP host izena: Adibidez: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP pasahitza:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP erabiltzaile izena:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Ushahidi azken bertsioa duzu" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Ez duzu eguneraketarik egin behar." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Datu basearen bertsioa: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Erne: Software bertsioa version.php fitxategian eta datu basea ez datoz bat." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Erne: Datu base bertsioa version.php fitxategian eta datu basea ez datoz bat." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Datu basea" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Ushahidiren azken bertsioa jaisten" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Errore fitxategia" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Ongi jaitsia. Erauzten..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Jaisterakoan huts egin du." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Ondo erauzia. Fitxategiak kopiatzen..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Fitxategia erauzten." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Ongi kopiatua. Datu basea eguneratzen..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Fitxategien kopiak huts egin du." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Datu basearen segurtasun kopia eta eguneraketa ondo burutu dira." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Datu basearen segurtasun kopia egitean huts egin du." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Datu basearen eguneraketa ongi burutu da." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Jaitsitako fitxategiak ezabatzen..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "ONGI EGUNERATUA. Ikuso Log fitxategia" diff --git a/application/i18n/po/po-fa/alerts.po b/application/i18n/po/po-fa/alerts.po new file mode 100644 index 0000000000..e5e8495b51 --- /dev/null +++ b/application/i18n/po/po-fa/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Elayne , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "نشانی صحیحی در بخش فیلد ایمیل وارد نشده است." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "این ایمیل قبلا برای دریاقت هشدار برای مکان منظور ثبت شده است." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "این پیاده سازی تنها در یک کشور قابل به کارگیری است. لطفا از صدق مکان خود در کشور%s اطمینان حاصل کنید." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "مکان معتبری را بر روی نقشه انتخاب نکرده اید." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "مکان معتبری را بر روی نقشه انتخاب نکرده اید." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "مکان معتبری را بر روی نقشه انتخاب نکرده اید." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "مکان معتبری را بر روی نقشه انتخاب نکرده اید." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "فیلد تلفن همراه شامل تعداد کافی شماره نمی باشد." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "این شماره تلفن همراه قبلا برای دریاقت هشدار برای مکان منظور ثبت شده است." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "فیلد تلقن همراه دارای شناره صحیح نمی باشد. لطفا تنها شماره هایی را وارد کنید که شامل کد کشوراست." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "شماره تلفن همراه یا آدرس ایمیل خود را وارد کنید." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد شماره تلفن همراه را پر کنید." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "شعاع معتبری بر روی نقشه انتخاب نشده است." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "مکان خود را روی نقشه صحیح انتخاب نکرده اید." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "دریافت کننده هشدار را تعیین نکرده اید." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "شما مشترک دریافت این دسته هشدارها شده اید." + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "این کد پیشتر تایید شده است." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "کد تایید کننده یافت نشد! لطفا از صحت نشانی URL خود اطمینان حاصل کنید." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "کد تایید شد. شما از هم اکنون شما هشدار در مورد وقایع روز دریافت می کنید." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "برای تایید درخواست هشدار،‌لطفا مراجعه کنید به" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "برای ایجاد هشدارهای بیشتر به صفحه هشدارها مراجعه کنید." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "ایمیل هشدار شما ایجاد و پیغام تایید کننده فرستاده شد." + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "لطفا کد تایید را که از طریق ایمیل دریافت کرده اید را در زیر وارد کنید." + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "درخواست شما برای ایمیل هشدارذخیره نشده است." + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "درخواست شما برای ایمیل هشدارذخیره شد." + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "سامانه قادر به پردازش درخواست شما نیست." + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "ایمیل هشدار شما ایجاد و پیغام تایید کننده فرستاده شد." + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "لطفا کد SMS تایید کننده را که از طریق تلفن همراه دریافت کرده اید را در زیر وارد کنید." + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "درخواست شما برای هشدارتلفنی ذخیره نشده است." + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "درخواست شما برای هشدارتلفنی ذخیره شد." + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr " تنظیمات این پیاده سازی دریافت هشدارها صحیح نمی باشد." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "شما به علت مشترک دریافت هشدار بودن این ایمیل را دریافت کرده اید. در صورت عدم تمایل به دریافت ایمیل هایی از این دست مراجعه کنید به" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "شما دیگر هشدار دریافت نمی‌کنید از" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr " قادر به غیرفعال سازی اشتراک شما نبودیم. لطفا از صحت آدرس URL خود اطمینان حاصل کنید." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "هشدارها- تایید" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "شما تنها در صورت تایید درخواست خود، در این مکان هشدار دریافت خواهید کرد." diff --git a/application/i18n/po/po-fa/auth.po b/application/i18n/po/po-fa/auth.po new file mode 100644 index 0000000000..fff8f06aec --- /dev/null +++ b/application/i18n/po/po-fa/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "نشانی ایمیل وارد شده یک نشانی ایمیل معتبر نمی باشد." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "با عرض پوزش یک حساب کاربری به نام این نشانی ایمیل از قبل ایجاد شده است." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "فیلد ایمیل باید حداقل 4 و حداکثر 64 کاراکتر داشته باشد." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "فیلد ایمیل باید پر شود." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "فیلد نام باید حداقل 3 و حداکثر 100 نویسه باشد." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "فیلد نام باید پُر شود." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "فیلد نام کاربری شامل نویسه های غیر مجاز می باشد." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "طول فیلد گذرواژه باید حداکثر 8 نویسه باشد." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "لطفا چک کنید که ایمیل و گذرواژه صحیحی وارد کرده اید." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "لطفا در هر دو فیلد گذرواژه ی یکسانی وارد کنید." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "فیلد گذرواژه باید پر شود." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "فیلد گذرواژه باید تنها شامل نویسه های الفبایی، نماد های # و @ ، اعداد و خط فاصله باشد." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "گذرواژه ای که برای حساب کاربریتان وارد کرده اید صحیح نمی باشد. لطفا دوباره امتحان کنید." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "طول فیلد گذرواژه باید حداکثر 8 نویسه باشد." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "لطفا چک کنید که نشانی ایمیل و گذرواژه ی صحیحی وارد کرده اید." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "لطفا در هر دو فیلد گذرواژه ی یکسانی وارد کنید." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "فیلد گذرواژه باید پر شود." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "فیلد گذرواژه باید تنها شامل نویسه های الفبایی، نماد های # و @ ، اعداد و خط فاصله باشد." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "هنگام ورود شما به سایت خطایی رخ داده است." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "طول فیلد گذرواژه باید حداقل 8 نویسه باشد." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "لطفا چک کنید که نشانی ایمیل و گذرواژه ی صحیحی وارد کرده اید." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "لطفا در هر دو فیلد گذرواژه ی یکسانی وارد کنید." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "فیلد گذرواژه باید پر شود." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "سرور تصدیق کننده از کار افتاده است . لطفا دوباره امتحان کنید. " + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "فیلد گذرواژه باید تنها شامل نویسه های الفبایی، نماد های # و @ ، اعداد و خط فاصله باشد." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "فیلد تایید گذرواژه باید با فیلد گذرواژه همخوانی داشته باشد." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "نشانی ایمیل وارد شده یک نشانی ایمیل معتبر نمی باشد." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "با عرض پوزش ما نشانی ایمیل شما را نداریم." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "فیلد ایمیل باید پر شود." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "تنها یک مدیر ویژه می تواند مدیر ویژه را تغییر دهد یا یک کاربر را به ادمین ارتقا دهد." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "قالب نقش نامعتبر" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "فیلد نقش باید حداقل 5 و حداکثر 30 نویسه باشد." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "باید حداقل یک نقش تعریف کنید." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "باید یکی از نقش های ادمین یا کاربر را انتخاب کنید." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "رمز گذرواژه ی فراموش شده معتبر نیست." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "رمز گذرواژه ی فراموش شده اجباری است." + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "نقش مدیرویژه قابل اصلاح نیست." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "فیلد URL پروفایل همگانی فقط می تواند شامل اعداد و حروف الفبا باشد." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "با عرض پوزش این URL پروفایل همگانی در حال استفاده است." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "فیلد URL پروفایل همگانی باید حداقل 2 و حداکثر 100 نویسه باشد." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "لطفا چک کنید که URL پروفایل همگانی صحیحی وارد کرده اید." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "فیلد URL پروفایل همگانی باید پر شود." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "نقش مدیرویژه قابل اصلاح نیست." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "حمله ی احتمالی CSRF. آیا واقعا قصد ایجاد یا تغییر یک کاربر را دارید؟" diff --git a/application/i18n/po/po-fa/bug.po b/application/i18n/po/po-fa/bug.po new file mode 100644 index 0000000000..f288e164e1 --- /dev/null +++ b/application/i18n/po/po-fa/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "لطفا یک کد امنیتی معتبر وارد کنید." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "لطفا کد امنیتی معتبر را وارد کنید." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ایمیل وارد شده، یک ایمیل قابل قبول به نظر نمی رسد." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "فیلد خطا باید پُر شود." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "طول فیلد موضوع باید حداقل ۳ کاراکتر باشد." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "فیلد موضوع باید پُر شود." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "طول فیلد نام باید حداقل سه کاراکتر باشد." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "فیلد نام باید پُر شود." diff --git a/application/i18n/po/po-fa/category.po b/application/i18n/po/po-fa/category.po new file mode 100644 index 0000000000..7335d5107b --- /dev/null +++ b/application/i18n/po/po-fa/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# l , 2013 +# siamack , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "طول فیلد رنگ باید ۶ کاراکتر باشد." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "فیلد رنگ باید پُر شود." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "فیلد شرح باید پُر شود." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "لطفاً مطمئن شو که اندازه‌ی تصویر بارگذاری‌شده حداکثر ۵۰کیلوبایت است." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "فیلد تصویربنظر شامل یک فایل معتبر نیست. تنها فرمتهای قابل قبول JPG، PNG و GIF هستند" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "فیلد تصویربنظر شامل یک فایل معتبر نیست" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "فیلد عنوان باید حداقل ۳ و حداکثر ۸۰ نویسه باشد" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "فیلد عنوان باید پر شود. " + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "شما نمیتوانید یک طبقه که خود شامل زیر طبقه است را تبدیل به زیرطبقه کنید" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "رده مادر مورد نظر وجود ندارد" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "رده اصلی (مادر) باید عددی باشد." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "رده اصلی (مادر) نمیتواند یک رده خاص باشد" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "فیلد رده مادر باید پر شود" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "رده و رده بالایی (مادر) نباید یکی باشند" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "رده های (طبقه های) خاص نمیتوانند تبدیل به زیر رده (طبقه) شوند" diff --git a/application/i18n/po/po-fa/comments.po b/application/i18n/po/po-fa/comments.po new file mode 100644 index 0000000000..6594902675 --- /dev/null +++ b/application/i18n/po/po-fa/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "لطفاً یک کد معتبر امنیتی وارد کنید." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "لطفاً کد امنیتی را وارد کنید." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "شما کد امنیتی اشتباهی را وارد کردید." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "طول فیلد نام باید حداقل ۳ کاراکتر باشد." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "فیلد نام باید پُر شود." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "فیلد نظرات باید پُر شود." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ظاهراً یک نشانی ایمیل معتبر در بخش فیلد ایمیل وارد نشده است." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود." diff --git a/application/i18n/po/po-fa/contact.po b/application/i18n/po/po-fa/contact.po new file mode 100644 index 0000000000..55a0b84add --- /dev/null +++ b/application/i18n/po/po-fa/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# l , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "لطفاً یک کد امنیتی معتبر را وارد کن." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "لطفاً یک کد معتبر امنیتی وارد کن." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "لطفاً کد معتبر امنیتی را وارد کن." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ظاهراً یک نشانی ایمیل معتبر در بخش فیلد ایمیل وارد نشده است." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "فیلد پیغام باید پُر شود." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "طول نام فیلد باید حداقل ۳ کاراکتر باشد." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "فیلد نام باید پُر شود." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "طول فیلد موضوع باید حداقل ۳ کاراکتر باشد." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "فیلد موضوع باید پُر شود." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "خطایی در فرستادن پیغام‌ات به‌وجود آمد." diff --git a/application/i18n/po/po-fa/core.po b/application/i18n/po/po-fa/core.po new file mode 100644 index 0000000000..072a34983a --- /dev/null +++ b/application/i18n/po/po-fa/core.po @@ -0,0 +1,160 @@ +# +# Translators: +# l , 2013 +# Robbie MacKay , 2013 +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-18 21:09+0000\n" +"Last-Translator: Robbie MacKay \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "پرونده تنظیمات" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "کنترل‌کننده" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "گرداننده" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s گرداننده برای %s کتابخانه باید %s واسط کاربررا پیاده کند." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s گرداننده برای %s کتابخانه پیدا نمی‌شود." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "می‌توانید به صفحه‌ی آغازه بروید یا دوباره سعی کنید." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "قادر به کامل کردن درخواست شما نیستیم." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "کمک‌رسان (helper)" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "نوع فایل درخواست‌شده، .%s، در نمای تنظیمات فایل شما مجاز نیست." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "روش نامعتبر %s% s را صدا زد." + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "ویژگی %s در کلاس %s وجود ندارد." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "کتابخانه" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "شاخه‌ی لاگ قابل نوشتن نیست: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "مدل" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "یوشهیدی قادر به پیدا کردن کنترل‌کننده برای پردازش این درخواست نیست: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "لطفاً مسیر(route) پیش‌فرض را در config/routes.php تنظیم کنید." + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "صفحه‌ای که تقاضا کردید، %s، پیدا نشد." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "مشکل را به یوشهیدی گزارش کنید." + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "%s در خواست‌شده، %s، پیدا نمی‌شود." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "پشته اثر (stack trace) " + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "بارگیری‌شده در {execution_time} ثانیه، با استفاده از {memory_usage} حافظه. تولید شده توسط یوشهیدی v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "rtl" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "در هر تقاضای صفحه فقط یک نمونه از یوشهیدی می‌تواند وجود داشته باشد." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "%s گرفته نشده: %s در پرونده‌ی %s در خط %s." + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "نما" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "باید نام پرونده ی نمایش را پیش از فراخوانی رندر تنظیم کنید. " diff --git a/application/i18n/po/po-fa/database.po b/application/i18n/po/po-fa/database.po new file mode 100644 index 0000000000..93f507b6b8 --- /dev/null +++ b/application/i18n/po/po-fa/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# l , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "خطای پایگاه داده: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "جدول \"%s\" در پایگاه داده پیدا نشد. لطفاً مطمئن شو که آخرین نسخه‌ی پایگاه داده برای این نسخه‌ی یوشهیدی را داری." diff --git a/application/i18n/po/po-fa/datetime.po b/application/i18n/po/po-fa/datetime.po new file mode 100644 index 0000000000..9e790a28c0 --- /dev/null +++ b/application/i18n/po/po-fa/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# l , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "صبح" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "جمعه" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "جمعه" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "دوشنبه" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "دوشنبه" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "بعدازظهر" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "شنبه" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "شنبه" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "یکشنبه" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "یکشنبه" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "پنجشنبه" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "پنجشنبه" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "سه‌شنبه" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "سه‌شنبه" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "چهارشنبه" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "چهارشنبه" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "ژانویه" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "ژانویه" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "فوریه" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "فوریه" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "مارس" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "مارس" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "آوریل" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "آوریل" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "مِی" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "مِی" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "ٓژوئن" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "ٓژوئن" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "ٓژوئیه" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "ژوئیه" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "اوت" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "اوت" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "سپتامبر" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "سپتامبر" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "اکتبر" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "اکتبر" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "نوامبر" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "نوامبر" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "دسامبر" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "دسامبر" diff --git a/application/i18n/po/po-fa/feeds.po b/application/i18n/po/po-fa/feeds.po new file mode 100644 index 0000000000..3887738736 --- /dev/null +++ b/application/i18n/po/po-fa/feeds.po @@ -0,0 +1,55 @@ +# +# Translators: +# l , 2013 +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "تاریخ" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "فیلد نام فید باید حداقل ۳ کاراکتر و نه بیش از ۷۰ کاراکتر باشد." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "لطفا نام فید را وارد کنند." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "لطفا آدرس اینترنتی فید را وارد کنید." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "لطفا یک آدرس اینترنتی معتبر وارد کنید. برای مثال: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "منبع" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "عنوان" diff --git a/application/i18n/po/po-fa/footer.po b/application/i18n/po/po-fa/footer.po new file mode 100644 index 0000000000..85ce01be5c --- /dev/null +++ b/application/i18n/po/po-fa/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# l , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl روی این سیستم نصب نشده‌است." diff --git a/application/i18n/po/po-fa/form.po b/application/i18n/po/po-fa/form.po new file mode 100644 index 0000000000..3932383945 --- /dev/null +++ b/application/i18n/po/po-fa/form.po @@ -0,0 +1,124 @@ +# +# Translators: +# Behnam Esfahbod , 2013 +# l , 2013 +# siamack , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "مقدار پیش‌فرضی که برای این فیلد وارد کردید قابل قبول نیست." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "نام فیلد باید به طول حداقل سه (۳) و حداکثر دویست (۲۰۰) نویسه باشد." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "لطفاً مقداری بین صفر و پنجاه (۵۰) برای ارتفاع فیلد وارد کنید." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "مقدار وارد شده برای فیلد تاریخ قابل قبول نیست." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "لطفاً «بلی» یا «خیر» را برای فیلد تاریخ انتخاب کنید." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "نام فیلد باید به طول حداقل سه (۳) و حداکثر صد (۱۰۰) نویسه باشد." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "لطفاً نام فیلد را وارد کنید." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "نام فیلدی که شما انتخاب کردید قبلا انتخاب شده لطفا نام دیگری انتخاب کنید" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "مقدار واردشده برای اجباری‌بودن فیلد قابل قبول نیست." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "لطفاً «بلی» یا «خیر» را برای فیلد تاریخ انتخاب کنید." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "لطفا یک نوع معتبر برای فیلد انتخاب کنید" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "لطفا برای فیلد یک نوع انتخاب کنید" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "لطفاً مقداری بین صفر و پنجاه (۵۰) برای عرض فیلد وارد کنید." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "طلفاً توضیحات فرم را وارد کنید." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "فرم پیش فرض قابل پاک شدن نیست" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "لطفا تعین کنید این فیلد باید به کدام فرم اضا فه شود" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "لطفا تعین کنید این فیلد باید به کدام فرم اضافه شود" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "فیلد نام فرم باید حداقل ۳ و حداکثر ۱۰۰ نویسه باشد" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "لطفاً نام فرم را وارد کنید." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "فرمی با این عنوان در سیستم وجود دارد. لطفاً فرم دیگری انتخاب کنید." diff --git a/application/i18n/po/po-fa/imap.po b/application/i18n/po/po-fa/imap.po new file mode 100644 index 0000000000..235466aff1 --- /dev/null +++ b/application/i18n/po/po-fa/imap.po @@ -0,0 +1,28 @@ +# +# Translators: +# l , 2013 +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "امکان بازکردن جریان IMAP وجود ندارد." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "سرویس ایمیل پشتیبانی نمی‌شود." diff --git a/application/i18n/po/po-fa/installer.po b/application/i18n/po/po-fa/installer.po new file mode 100644 index 0000000000..12e63571e0 --- /dev/null +++ b/application/i18n/po/po-fa/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# l , 2013 +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "مسیر پایه" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "پایگاه داده" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "میزبان پایگاه داده" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "اگر یوشهیدی را در کامپیوتر خود اجرا می‌کنید، این به احتمال زیاد «localhost» است. اگر یوشهیدی را از یک کارگزار وب (web server) اجرا می‌کنید، اطلاعات مربوط به میزبان خود را از ارائه‌دهنده‌ی خدمات وِب خود می‌توانید دریافت کنید." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "نام پایگاه داده" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "نام پایگاه داده‌ای که می‌خواهید یوشهیدی را در آن اجرا کنید" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "برای اطلاعات بیشتر، لطفاً به this این مقاله که در مورد پایگاه داده‌ها شرح بیشتری داده است سر بزنید." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "زبان پیش‌فرض (محلی)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "هر پیاده‌سازی یوشهیدی با یک مجموعه از زبان‌ها می‌آید. در ضمن می‌توانید زبان مورد نظر خود را اضافه کنید." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "از کار انداختن" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "به کار انداختن" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "فهرست زیر خلاصه‌ی خطاهایی که ایجاد شده را نشان می‌دهد." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "نشانی مکانی که پرونده های یوشهیدی خود را آنجا روی سرورتان قرار داده اید. ما به طور خودکار این مکان را شناسایی کرده ایم، لطفا از صحت آن اطمینان یابید . . اگر این فیلد خالی است نگران نباشید، این بدین معنی است که یوشهیدی در لایه بالایی پوشه ی شما نصب شده است." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "تمام شده" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "عمومی" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "گوگل API کلید" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "هر کس می تواند یک کلید API بگیرد. کلید خود را هم اکنون دریافت کنید. " + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "برگرد به عقب" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "نصب پیشرفته" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "تمام تنظیمات پایه را با دنبال کردن این فرآیند 5 مرحله ای تمام کنید. این تنظیمات شامل سرور، نقشه، نام سایت و جزئیات ارتباط می باشد." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "نصب ابتدایی" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "ساده وسریع. تنها چیزی که احتیاج دارید، مسیر ریشه ی وبسایت و اطلاعات پایگاه داده است. اگر می خواهید سریع همه چیز را به کار بیندازید این گزینه را انتخاب کنید. می توانید بعدا چیزهای دیگر را تنظیم کنید." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "ادامه" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "به فرآیند نصب سرور یوشهیدی خوش آمدید. لطفا نوع نصب مورد نظر خود را در پایین انتخاب کنید." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "نصب با موفقیت انجام شد" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "سرور ایمیل" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "سرور میزبان ایمیل" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "مثال: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "گذرواژه ی سرویس ایمیل" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "گذرواژه ای که معمولا برای ورود به ایمیل خود از آن استفاده می کنید" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "درگاه سرور ایمیل" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "درگاه های رایج: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "نوع سرور ایمیل" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). تفاوتشان چیست؟ " + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "نام کاربری سرور ایمیل" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "اگز از Gmail یا Hotmail یا Yahoo Mail استفاده می کنید، نشانی ایمیل کامل خود را به عنوان نام کاربری وارد کنید." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "نقشه" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "تامین کننده نقشه" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "یوشهیدی با هرکدام از این تامین کننده های نقشه خوب کار می کند: Google, Bing,Open Street Map. هرکدام را که در منطقه ی شما شامل جزئیات بیشتری است انتخاب کنید." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "مراحل دیگر ..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "گذرواژه" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "گذرواژه دیتابیس شما" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "قبلی" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "لطفا سرور Apache خود را مجددا راه اندازی کنید." + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "فعال سازی یا از کار اندازی SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "بعضی سرورهای ایمیل به شما امکان استفاده از SSL در هنگام ایجاد ارتباط را می دهند. استفاده از SSL توصیه می شود چون باعث بالا بردن امنیت است." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "تنظیم سرور SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "نشانی ایمیل وبسایت" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "آدرس ایمیل هشدار سایت" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "وقتی بازدیدکنندگان سایت شما برای دریافت هشدارهای ایمیلی ثبت نام می کنند، از طرف این آدرس ایمیل دریافت می کنند. لزومی ندارد این آدرس ایمیل با آدرس ایمیل سایت یکسان باشد." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "ارتباطات ایمیلی کل سایت از درون این آدرس رد می شوند." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "نام سایت" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "نام سایت شما" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "برچسب سایت" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "برچسب شما" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "پوشه ها و پرونده هایی که در پایین لیست شده اند باید از طرف وب سرور شما قابل نوشتن باشند." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

در اینجا می توانید دستورالعمل های لازم برای تغییر اجازه ی دسترسی به فایل ها را بیابید:

" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "پیش از شروع، باید مطمئن شوید که پوشه ها و پرونده های زیر از طرف وب سرور شما قابل نوشتن هستند. برای اینکار باید اجازه ی دسترسی به پوشه ها را تغییر دهید." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "برای فرآیند نصب لطفا اطلاعات زیر را در دست داشته باشید." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "پیشوند جدول" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "معمولا شما احتیاجی به تغییر پسوند جدول ندارید. اما، اگر می خواهید نصب های متعددی از یوشهیدی را از روی یک پایگاه داده اجرا کنید، می توانید پسوند را اینجا تغییر دهید." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "عنوان" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "برای ورود بروید به" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "بارگذاری داده های گزارش" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "نام کاربری" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "نام کاربری دیتابیس شما" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "و از اعتبارهای زیر استفاده کنید." + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "نمایش وبسایت شما" diff --git a/application/i18n/po/po-fa/layer.po b/application/i18n/po/po-fa/layer.po new file mode 100644 index 0000000000..bec5001d56 --- /dev/null +++ b/application/i18n/po/po-fa/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# siamack , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "طول فیلد رنگ باید ۶ کاراکتر باشد." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "فیلد رنگ باید پُر شود." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "فیلد فایل بنظرشامل یک فایل معتبر نیست. تنها فرمتهای KMZ و KML قابل قبول هستند " + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "فیلد فایل شامل یک فایل معتبر نیست" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "فیلد نام باید حداقل ۳ و حداکثر ۸۰ نویسه باشد" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "فیلد نام باید پُر شود." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "یک فایل یا ادرس اینترنتی به فرمت KML لازم است" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "داشتن یک فایل KML و یک ادرس الکترونیکی KML بطور همزمان ممکن نیست " + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "لطفا یک آدرس اینترنتی معتبر وارد کنید. برای مثال: http://www.ushahidi.com" diff --git a/application/i18n/po/po-fa/libraries.po b/application/i18n/po/po-fa/libraries.po new file mode 100644 index 0000000000..b779abbfd0 --- /dev/null +++ b/application/i18n/po/po-fa/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "امکان اتصال به سرور Akismet وجود ندارد." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "امکان بازیابی پاسخ سرور Akismet وجود ندارد." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "کتابخانه ی API به نام %s برای رده ی %s پیدا نشد. لظفا جدول مسیریابی امور API خود را چک کنید." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "کلید API Akismet شما معتبر نیست." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "خطا هنگام اجرای متد ارسال fopen ! لطفا چک کنید که PHP پشتیبانی OpenSSL دارد و نسخه ی PHP جدیدتر از 5.2 است." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "پیام unicode شما بیش از حد طولانی است. ( طول فعلی = " + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "لطفا نشانی مقصد را تعیین کنید (به) !" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "لطفا نشانی مبدا را تعیین کنید ( از) !" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "پیام unicode شما بیش از حد طولانی است. ( طول فعلی = " + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "این روش ارسال پشتیبانی نشده است!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "کتابخانه ی API %s نامعتبر است. تمامی کتابخانه های API باید زیررده ی %s باشند." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "امکان پاک کردن فهرست %s وجود ندارد." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "خطا به هنگام بازکردن : %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "بارگیری آخرین نسخه یوشهیدی نا موفق بود. وضعیت کد HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "امکان کپی کردن پرونده ی %s وجود ندارد." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "امکان پاک کردن پرونده ی %s وجود ندارد." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "متن به روزرسانی یوشهیدی" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "امکان ثبت پرونده ی فشرده شده ی دریافتی یوشهیدی %s، وجود ندارد." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s در رده ی RiverID موجود نیست." diff --git a/application/i18n/po/po-fa/maintenance.po b/application/i18n/po/po-fa/maintenance.po new file mode 100644 index 0000000000..f8bea32174 --- /dev/null +++ b/application/i18n/po/po-fa/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "متاسفیم. وبسایت ما در حال حاضر به دلیل نگه‌داری فعال نیست. لطفا پس از چند دقیقه دوباره امتحان کنید." diff --git a/application/i18n/po/po-fa/message.po b/application/i18n/po/po-fa/message.po new file mode 100644 index 0000000000..e9410a35e3 --- /dev/null +++ b/application/i18n/po/po-fa/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "لطفا یک کد امنیتی معتبر وارد کنید." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "لطفا کد امنیتی معتبر را وارد کنید." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ایمیل وارد شده، یک ایمیل قابل قبول به نظر نمی رسد." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "اگر جعبه‌ی نشان‌زنی علامت دارد، فیلد ایمیل باید پُر شود." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "فیلد نظرات باید پُر شود." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "طول فیلد نام باید حداقل ۳ کاراکتر باشد." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "فیلد نام باید پُر شود." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "تلفن وارد شده معتبر نمی باشد." diff --git a/application/i18n/po/po-fa/mhi.po b/application/i18n/po/po-fa/mhi.po new file mode 100644 index 0000000000..6834759032 --- /dev/null +++ b/application/i18n/po/po-fa/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "لطفا یک کد امنیتی معتبر وارد کنید." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "لطفا کد امنیتی معتبر را وارد کنید." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ایمیل وارد شده، یک ایمیل قابل قبول به نظر نمی رسد." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "لطفا یک ایمیل معتبر وارد کنید." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "فیلد پیغام باید پُر شود." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "طول فیلد موضوع باید حداقل ۳ کاراکتر باشد." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "فیلد موضوع باید پُر شود." diff --git a/application/i18n/po/po-fa/notifications.po b/application/i18n/po/po-fa/notifications.po new file mode 100644 index 0000000000..2325688a25 --- /dev/null +++ b/application/i18n/po/po-fa/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "این پیغام از وبسایت شما فرستاده شده است." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "ورود مدیر" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "یک نظر جدید به وبسایت شما ارسال شده است. در پاسخ به:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "نظر جدید" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "یک پیغام ایمیل به وبسایت شما ارسال شده است." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "پیغام ایمیل جدید" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "یک گزارش جدید به وبسایت شما ارسال شده است." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "گزارش جدید" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "یک متن پیغام جدید به وبسایت شما ارسال شده است." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "متن پیغام جدید" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "شما یک هشدار جدید دریافت کرده اید." + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "هشدار جدید!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "شما یک پیغام خصوصی دریافت کرده اید." + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "پیغام خصوصی جدید" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "جهت ارسال پاسخ لطفا به اینجا مراجعه کنید:" diff --git a/application/i18n/po/po-fa/page.po b/application/i18n/po/po-fa/page.po new file mode 100644 index 0000000000..340dd04914 --- /dev/null +++ b/application/i18n/po/po-fa/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# l , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "لطفاً عنوان صفحه را وارد کنید." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "عنوان صفحه حداقل باید ۳ حرف و حداکثر ۱۵۰ حرف داشته باشد." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "لطفاً یک اسم برای زبانه‌ی صفحه وارد کن." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "لطفاً شرح صفحه را وارد کن." diff --git a/application/i18n/po/po-fa/permissions.po b/application/i18n/po/po-fa/permissions.po new file mode 100644 index 0000000000..056431c67c --- /dev/null +++ b/application/i18n/po/po-fa/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "دیدن گزارش‌ها" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "ایجاد/اصلاح/حذف گزارشات" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "تایید گزارشات" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "صحت گذاری گزارشات" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "مدیریت نظرات گزارشات" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "دانلود گزارش‌ها" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "بارگذاری گزارش‌ها" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "مدیریت پیغام ها" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "مدیریت گزارش کننده های پیغام ها" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "مشاهده ی آمار" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "اصلاح تنظیمات" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "مدیریت پَنِل" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "مدیریت کاربرها" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "مدیریت نقش ها" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "اجازی ورود کد" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "مدیریت ورودی های کد" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "دسترسی به واسط کاربریِ مدیر" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "دسترسی به واسطِ کاربریِ کاربران" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-fa/private_message.po b/application/i18n/po/po-fa/private_message.po new file mode 100644 index 0000000000..2add5f8f88 --- /dev/null +++ b/application/i18n/po/po-fa/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# l , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "شناسه‌ی مادر باید عددی باشد." + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "فیلد «به» باید پُر شود." + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "کاربری که می‌خواهید به اون پیغام بفرستید وجود ندارد." + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "فیلد موضوع باید پُر شود." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "موضوع باید بین ۳ تا ۱۵۰ کاراکتر باشد." + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "فیلد پیغام باید پُر شود." diff --git a/application/i18n/po/po-fa/report.po b/application/i18n/po/po-fa/report.po new file mode 100644 index 0000000000..2fa257e9ce --- /dev/null +++ b/application/i18n/po/po-fa/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# l , 2013 +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "خطا!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "این پیاده سازی تنها شامل یک کشور خواهد شد. لطفا اطمینان داشته باشید که محل وقوع گزارش در کشور %s است." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "لطفا یک مورد معتبر جهت شامل شدن در بارگیری انتخاب کنید." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "لطفا یک مورد معتبر جهت شامل شدن در بارگیری انتخاب کنید." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "لطفا \"گزارش منتطر تایید می باشد\" یا \"گزارش های تایید شده\" یا هر دو را انتخاب کنید." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "لطفا \"گزارش منتطر تایید می باشد\" یا \"گزارش های تایید شده\" یا هر دو را انتخاب کنید." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "لطفا \"گزارش منتطر تایید می باشد\" یا \"گزارش های تایید شده\" یا هر دو را انتخاب کنید." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "لطفا \"گزارش منتظر صحت گذاری می باشد\" یا \"گزارش های صحت گذاری شده\" یا هر دو را انتخاب کنید." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "لطفا \"گزارش منتظر صحت گذاری می باشد\" یا \"گزارش های صحت گذاری شده\" یا هر دو را انتخاب کنید." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "لطفا \"گزارش منتظر صحت گذاری می باشد\" یا \"گزارش های صحت گذاری شده\" یا هر دو را انتخاب کنید." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "لطفا یک نوع گزارش معتبر جهت بارگیری انتخاب کنید." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "لطفا یک نوع گزارش معتبر جهت بارگیری انتخاب کنید." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "لطفا یک نوع گزارش معتبر جهت بارگیری انتخاب کنید." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "باید یک نوع فایل جهت بارگیری انتخاب کنید. لطفا یا CSV و یا XML را انتخاب کنید." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "لطفا یک نوعِ فایلِ معتبر برای بارگیری گزارش ها انتخاب کنید." + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "فیلد \"از تاریخ\" به نظر شامل یک تاریخ معتبر نمی باشد." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "لطفا در فیلد \"از تاریخ\" یک تاریخ معتبر وارد نمایید. این تاریخ نباید از تاریخ امروز بزرگتر باشد." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "لطفا یک مقدار معتبر برای \"این گزارش را تایید کنید\" وارد نمایید." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "لطفا یک مقدار معتبر برای \"این گزارش را تایید کنید\" وارد نمایید." + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "فیلد am/pm به نظر شامل یک مقدار معتبر باشد." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "فیلد \"رده ها\" به نظر شامل یک رده ی معتبر نمی باشد." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "فیلد \"رده ها\" باید پر شود." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "فیلد تاریخ به نظر شامل یک تاریخ معتبر نمی باشد." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "فیلد تاریخ به نظر شامل یک تاریخ معتبر نمی باشد." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "فیلد تاریخ باید پر شود." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "فیلد شرح باید پُر شود." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "فیلد ساعت به نظر شامل یک ساعت معتبر نمی باشد." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "فیلد ساعت باید پر شود." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "لطفا یک مقدار معتبر جهت \"احتمال اطلاعات\" وارد نمایید." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "لطفا یک مقدار معتبر جهت \"احتمال اطلاعات\" وارد نمایید." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "فیلد دقیقه به نظر شامل یک مقدار معتبر نمی باشد." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "فیلد دقیقه باید پر شود." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "فیلد \"پیوندهای منبع خبر\" به نظر شامل یک آدرس اینترنتی معتبر نمی باشد." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "لطفا اطمینان حاصل کنید که تصویر بارگذاری شده از ۲ مگابایت بزرگتر نباشد." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "فیلد \"بارگذاری تصاویر\" به نظر شامل یک فایل تصویر معتبر نیست. تنها فرمتهای قابل قبول JPG، PNG و GIF هستند" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "فیلد \"بارگذاری تصاویر\" به نظر شامل یک فایل معتبر نمی باشد." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "لطفا یک مقدار معتبر جهت \"میزان قابل اعتماد بودن منبع\" وارد کنید." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "لطفا یک مقدار معتبر جهت \"میزان قابل اعتماد بودن منبع\" وارد کنید." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "طول فیلد «عنوان گزارش» باید حداقل ۳ وحداکثر ۲۰۰ نویسه باشد." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "فیلد «عنوان گزارش» باید پُر شود." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "حمله ی CSRF احتمالی. آیا واقعا قصد ایجاد یا اصلاح یک گزارش را داشتید؟" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "لطفا یک مقدار معتبر برای \"این گزارش را صحت گذاری کنید\" وارد نمایید." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "لطفا یک مقدار معتبر برای \"این گزارش را صحت گذاری کنید\" وارد نمایید." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "فیلد پیوندهای ویدیو به نظر شامل یک آدرس اینترنتی معتبر نمی باشد." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "فیلد \"عرض جغرافیایی\" به نظر شامل یک عرض جغرافیایی معتبر نمی باشد." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "فیلد \"عرض جغرافیایی\" باید پر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "فیلد \"زبان محلی\" شامل یک مقدار غیر صحیح است." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "این گزارش پیش از این به این زبان ترجمه شده است." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "فیلد \"زبان محلی\" شامل یک مقدار غیر صحیح است." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "\"گزارش اصلی\" و \"ترجمه\" هر دو یک زبان محلی را دارا می باشند." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "\"زبان محلی\" باید پُر شود." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "فیلد \"نام منطقه\" باید حداقل ۳ و حداکثر ۲۰۰ کاراکتر باشد." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "فیلد \"نام منطقه\" باید پُر شود." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "فیلد \"طول جغرافیایی\" به نظر شامل یک طول جغرافیایی معتبر نمی باشد." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "فیلد \"طول جغرافیایی\" باید پُر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "ظاهراً یک نشانی ایمیل معتبر در بخش فیلد ایمیل وارد نشده است." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "فیلد ایمیل باید حداقل ۴ و حداکثر ۶۴ کاراکتر داشته باشد." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "فیلد نام باید حداقل دارای ۳ و حداکثر ۱۰‬۰‬ کاراکتر باشد." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "فیلد نام خانوادگی باید حداقل دارای ۲ و حداکثر ۱۰‬۰‬ کاراکتر باشد." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "فیلد \"تا تاریخ\" به نظر شامل یک تاریخ معتبر نمی باشد." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "لطفا در فیلد \"تا تاریخ\" یک تاریخ معتبر وارد نمایید. این تاریخ نباید از تاریخ امروز بزرگتر باشد." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "مقدار فیلد \"از تاریخ\" نمی تواند از مقدار \"تا تاریخ\" بزرگتر باشد." diff --git a/application/i18n/po/po-fa/reporters.po b/application/i18n/po/po-fa/reporters.po new file mode 100644 index 0000000000..dacba65b17 --- /dev/null +++ b/application/i18n/po/po-fa/reporters.po @@ -0,0 +1,73 @@ +# +# Translators: +# Behnam Esfahbod , 2013 +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "فیلد \"عرض جغرافیایی\" به نظر شامل یک عرض جغرافیایی معتبر نمی باشد." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "فیلد \"عرض جغرافیایی\" باید پر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "ظاهرا فیلد سطح گزارشگر یک سطح معتبر ندارد." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "ظاهرا فیلد سطح گزارشگر یک سطح معتبر ندارد." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "فیلد \"نام منطقه\" باید حداقل ۳ و حداکثر ۲۰۰ کاراکتر باشد." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "فیلد نام محل باید پُر شود. " + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "فیلد \"طول جغرافیایی\" به نظر شامل یک طول جغرافیایی معتبر نمی باشد." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "فیلد \"طول جغرافیایی\" باید پُر شود. لطفا جهت مشخص کردن یک مکان روی نقشه کلیک کنید." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "گزارشگر نامعتبر" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "گزارشگر نامعتبر" diff --git a/application/i18n/po/po-fa/reports.po b/application/i18n/po/po-fa/reports.po new file mode 100644 index 0000000000..900f084c3e --- /dev/null +++ b/application/i18n/po/po-fa/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Mshahid , 2013 +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "لطفا تایید کنید که یک مورد را چک کرده‌اید." + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "لطفا تایید کنید که یک مورد را چک کرده‌اید." + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "گزارش‌ها پیش از تایید باید طبقه‌بندی شوند." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "شما اجازه انجام دادن این عمل را ندارید." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "باید یک فایل برای بارگذاری انتخاب کنید." + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "فایل مورد بارگذاری باید یا به نوع CSV و یا به نوع XML باشد." + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "فیلد \"بارگذاری فایل\" به نظر شامل یک مقدار معتبر نمی باشد." diff --git a/application/i18n/po/po-fa/roles.po b/application/i18n/po/po-fa/roles.po new file mode 100644 index 0000000000..b016b06ffc --- /dev/null +++ b/application/i18n/po/po-fa/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "فیلد شرح باید حداقل سه نویسه و حداکثر ۱۰۰ نویسه باشد." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "فیلد شرح باید پُر شود." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "فیلد «نام» تنها می‌تواند شامل حروف یا اعداد باشد." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "فیلد نام باید حداقل ۳ و حداکثر ۸۰ نویسه باشد" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "نقش مدیرویژه قابل اصلاح نیست." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "فیلد نام باید پُر شود." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "فیلد سطح دسترسی باید عددی بین ۰ تا ۱۰۰ باشد." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "فیلد سطح دسترسی باید عددی بین ۰ تا ۱۰۰ باشد." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "فیلد مجوز باید عددی بین ۰ تا ۱۰۰ باشد." diff --git a/application/i18n/po/po-fa/settings.po b/application/i18n/po/po-fa/settings.po new file mode 100644 index 0000000000..58ad9f4643 --- /dev/null +++ b/application/i18n/po/po-fa/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Mshahid , 2013 +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/projects/p/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "فیلد \"قبول نظرات\" به نظر شامل یک مقدار معتبر نمی باشد." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "فیلد \"قبول نظرات\" باید پُر شود." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "فیلد \"فید را شامل شو\" به نظر شامل یک مقدار معتبر نمی باشد." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "فیلد \"فید را شامل شو\" باید پُر شود." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "فیلد \"قبول هشدارها\" به نظر شامل یک مقدار معتبر نمی باشد." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "فیلد \"قبول هشدارها\" باید پُر شود." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "فیلد \"قبول گزارش ها\" به نظر شامل یک مقدار معتبر نمی باشد." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "فیلد \"قبول گزارشات\" باید پُر شود." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "فیلد \"اشتراک گذاری آمار\" به نظر شامل یک مقدار معتبر نمی باشد." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "فیلد \"اشتراک گذاری آمار\" باید پُر شود." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "پیش فرض تعداد رکوردی که با هر درخواست API آورده می شود" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "حداکثر تعداد رکوردی که با هر درخواست API آورده می شود" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "حداکثر تعداد درخواست های API برای هر آدرس API" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "ظاهرا فیلد Akismet شامل یک مقدار معتبر نمی باشد." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "ظاهرا فیلد Akismet شامل یک مقدار معتبر نمی باشد." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "فیلد صفحات مخزن باید پر شود." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "ظاهرا فیلد صفحات مخزن شامل مقدار معتبری نمی باشد." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "ظاهرا فیلد طول عمر صفحات مخزن شامل یک مقدار معتبر نمی باشد." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "فیلد طول عمر صفحات مخزن باید پر شود." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "به نظر می رسد سرور شما برای به کار بردن URL های پاک تنظیم نشده است. باید تنظیمات سرور خود را تغییر دهید تا URL های پاک را فعال کنید. برای دریافت اطلاعات بیشتر از چگونگی فعال سازی URL های پاک به این پست رجوع کنید. " + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "این گزینه امکان دسترسی به یوشهیدی توسط URL های پاک را فعال می کند (بدون \"index.php\" در URL)" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "فعال کردن URL های پاک" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URL های پاک" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "فیلد شماره ی API Clickatell نباید بیشتر از 20 نویسه باشد." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "فیلد شماره Clickatell API باید پر شود." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "فیلد گذرواژه Clickatell باید حداقل 5 و حداکثر 50 نویسه باشد." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "فیلد نام کاربری Clickatell باید پر شود." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "فیلد نام کاربری Clickatells نباید بیشتر از 50 نویسه باشد." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "فیلد نام کاربری Clickatell باید پر شود. " + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "تنظیم نقشه" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "مکان پیش فرض" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "ظاهرا فیلد رنگ شامل یک مقدار معتبر نمی باشد." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "فیلد رنگ نباید بیشتر از 6 نویسه باشد." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "فیلد رنگ باید پر شود." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "نمای پیش فرض نقشه" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "رده ی زوم پیش فرض" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "بازیابی شهرها از نام جغرافیایی " + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "فیلد سرور ایمیل بیش از حد طولانی است." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "فیلد درگاه سرور ایمیل فقط می تواند شامل عدد باشد." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "گذرواژه سرور ایمیل باید حداقل 5 و حداکثر 50 نویسه باشد." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "گذرواژه ی سرور ایمیل باید پر شود." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "فیلد درگاه سرور ایمیل بیش از حد طولانی است." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "فیلد درگاه سرور ایمیل باید فقط شامل کاراکتر عدد باشد." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "فیلد درگاه سرور ایمیل بیش از حد طولانی است." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "فیلد نوع سرور ایمیل باید پر شود." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "فیلد نام کاربری سرور ایمیل باید حداکثر 50 نویسه باشد." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "نام کاربری سرور ایمیل باید پر شود." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "گزینه های تنظیم فیس بوک" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "برای دریافت اطلاعات زیر باید یک درخواست فیس بوک جدید ایجاد کنید. " + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "فیلد Google Analytics باید شامل یک Web Property ID معتبر در قالب UA-XXXXX-XX باشد." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "فعال سازی HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "این گزینه امکان دسترسی به یوشهیدی در حالت ناامن را فعال می کند; بدون ورود https پیش از URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "این گزینه امکان دسترسی به یوشهیدی در حالت امن را فعال می کند; با ورود https پیش از URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "ظاهرا فیلد موارد در صفحه (Frontend) شامل مقدار معتبر نمی باشد." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "فیلد موارد در صفحه (Frontend) باید پر شود." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "ظاهرا فیلد موارد در صفحه (ادمین) شامل یک مقدار معتبر نمی باشد. " + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "فیلد موارد در هر صفحه (ادمین) باید پر شود." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "تنظیم تامین کننده ی نقشه فرآیند آسانی است. یک تامین کننده انتخاب کنید، از سایت تامین کننده یک کلید API بگیرید و کلید API خود را وارد کنید. " + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "رده ی زوم" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "یک تامین کننده نقشه انتخاب کنید." + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "وارد کردن کلید API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "دریافت کلید API " + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "تنظیم تامین کننده ی نقشه فرآیند آسانی است. یک تامین کننده انتخاب کنید، از سایت تامین کننده یک کلید API بگیرید و کلید API خود را وارد کنید. " + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "تامین کننده نقشه" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "محور زمانی نقشه " + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "تنظیمات نقشه" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "آیا این گسترش یوشهیدی شامل چند کشور می‌شود؟" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "کشور پیش فرض خود را انتخاب کنید" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "بر روی نقشه کلیک کرده و بکشید تا مکان دقیق خود را مشخص کنید." + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "گزارش های خوشه ای روی نقشه " + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "اجازه ی ثبت نظر بر گزارش به کاربرها" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "شامل کردن فید اخبار RSS در سایت" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "اجازه ی اشتراک برای دریافت هشدار ها به کاربرها" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "اجازه ی ثبت گزارش به کاربرها" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "کلید Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "برنمای سایت" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "بلوک ها در هر ردیف" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "صفحات مخزن" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "طول عمر صفحات مخزن" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "فعال کردن ورودها" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "بیانیه ی حق نسخه برداری سایت" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "رنگ پیش فرض برای تمام دسته ها" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "نمایه ی پیش فرض برای تمام دسته ها " + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "پاک کردن تصویر برنما" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "پاک کردن نمایه ی پیش فرض" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "نمایش صفحه ی ارتباط" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "نمایش صفحه \" چگونگی کمک\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "هشدار های نشانی ایمیل" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr " برای دریافت گزارش توسط ایمیل، لطفا تنظیمات حساب کاربری ایمیل خود را تغییر دهید." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "نشانی ایمیل سایت" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "آمار تحلیلی گوگل" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID در قالب : UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "تعداد موارد در صفحه - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "تعداد موارد در صفحه - ادمین" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "از نظرات جفنگ توسط Akismet از Automattic جلوگیری کنید.
با ایجاد حساب کاربری در WordPress.com می توانید کلید مجانی API دریافت کنید. " + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "اعتبار نامه Laconia" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr " سایت Laconia" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "زبان سایت" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "تایید دستی کاربرها" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "پیغام سایت" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "نام سایت" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "پیاده سازی شخصی " + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "درخواست تایید ایمیل کاربر" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "ثبت گزارش" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "آمار (ذخیره شده بر روی سرور یوشهیدی) را فعال کنید" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "برچسب سایت" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "منطقه ی زمانی" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "تنظیمات سایت" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "گزاره های جستجوی توییتر" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "هشتگ ها باید با ویرگول جدا شوند. " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "ظاهرا یک نشانی معتبر در فیلد ایمیل سایت وارد نشده است." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "فیلد ایمیل سایت باید حداقل 4 و حداکثر 100 نویسه باشد." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "فیلد نام مکان باید حداقل 3 و حداکثر 50 نویسه باشد" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "فیلد نام سایت باید پر شود." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "فیلد برچسب باید حداقل 3 و حداکثر 100 نویسه باشد." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "فیلد برچسب باید پر شود. " + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "شماره ی Clickatell API شما" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "میزان اعتبار Clickatel تان را چک کنید." + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "بارگذاری میزان اعتبار " + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "گذرواژه Clickatell شما" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "برای ثبت نام در خدمات Clickatells در اینجا کلیک کنید." + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "اطلاعات دسترسی Clickatell خود را اینجا وارد کنید." + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "نام کاربری Clickatell شما" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "شماره تلفن (های) متصل به Frontline SMS را در فیلد (های) زیر وارد کنید." + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "عدد مورد نظر را بدون علامت + یا خط فاصله وارد کنید." + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "گزینه 1: استفاده از Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "گزینه 2: استفاده از دروازه جهانی sms" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "گزینه های تنظیم sms" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "ظاهر در ا فیلد تلفن 1 مقدار معتبری وارد نشده است. " + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "فیلد تلفن 1 فقط می تواند شامل کاراکتر عدد باشد." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "فیلد تلفن 2 بیش از حد طولانی است." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "فیلد تلفن 2 فقط می تواند شامل کاراکتر عدد باشد." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "فیلد تلفن 3 بیش از حد طولانی است." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "فیلد تلفن 3 فقط می تواند شامل کاراکتر عدد باشد." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-fa/sharing.po b/application/i18n/po/po-fa/sharing.po new file mode 100644 index 0000000000..d7d308c864 --- /dev/null +++ b/application/i18n/po/po-fa/sharing.po @@ -0,0 +1,73 @@ +# +# Translators: +# l , 2013 +# Mshahid , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "تاریخ ورودی" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "تاریخ اضافه شد." + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "آخرین دسترسی" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "طول کاراکتر فیلد رنگ باید ۶ باشد." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "فیلد رنگ باید پُر شود." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "نامی که برای اشتراک‌گذاری انتخاب شده معتبر نیست." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "نام اشتراک‌گذاری لازم است." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "نشانی وب‌سایت وجود دارد." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "نشانی وب‌سایت معتبر نیست." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "نشانی وب‌سایت لازم است." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "آدرس اینترنتی وبسایت به نظر شامل یک آدرس اینترنتی معتبر نمی باشد." diff --git a/application/i18n/po/po-fa/stats.po b/application/i18n/po/po-fa/stats.po new file mode 100644 index 0000000000..c7d8f417cf --- /dev/null +++ b/application/i18n/po/po-fa/stats.po @@ -0,0 +1,199 @@ +# +# Translators: +# Mshahid , 2013 +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "تأیید‌ شده" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "دسته‌ها" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "میزان تاثیر دسته" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "این جدول یه شما یک دید خطی از دسته های مختلف گزارش ها در طول زمان می دهد. از چپ به راست حرکت کنید تا یک نمای تطبیقی از دسته های مختلف داشته باشید. موشواره را روی نمودار ببرید تا جزئیات بیشتری ببینید." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "بازه ی تاریخ را انتخاب کنید." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "کشور ها" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "کشور" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "تفکیک کشور" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "بخش آمار به زودی دارای شرح کلی ای خواهد شد. فعلا توسط این پیوند های زیر دسته ای جستجو کنید." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "خطا" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "واژه نامه" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "خلاصه نمایش" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "شرح" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "تعداد بازدید صفحه" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "تعداد کل صفحاتی که مراجعه کنندگان روی سایت شما بازدید کرده اند." + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "گزارش‌ها" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "دسته های گزارش ها" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "آمار گزارش ها" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "وضعیت گزارش ها" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "پانچ کارت گزارش" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "آمار گزارش ها" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "آمار تنظیم نشده است" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 ماه" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 ماه" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 ماه" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "همه" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "تأیید نشده" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "بازدید کننده های منحصر به فرد" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "تعداد افرادی که به گستره ی شما رجوع کرده اند. بازدید کنندگان منحصر به فرد توسط cookie ها شناسایی می شوند. بازدید کننده هایی که cookie های خود را فعال نکرده اند توسط آدرس IP ، تفکیک پذیری، جستجو گر ، پلاگین، سیستم عامل و غیره شناسایی می شوند. " + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "صحت گذاری نشده" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "صحت‌گذاری‌شده" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "خلاصه بازدید ها" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "بازدید ها" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "یک \"بازدید\" رکوردی از یک مراجعه کننده منحصر به فرد است که بیش از 30 دقیقه پس از آخرین بازدید خود به سایت مراجعه کرده است." diff --git a/application/i18n/po/po-fa/tooltips.po b/application/i18n/po/po-fa/tooltips.po new file mode 100644 index 0000000000..4417e06beb --- /dev/null +++ b/application/i18n/po/po-fa/tooltips.po @@ -0,0 +1,587 @@ +# +# Translators: +# Farshad Sadri , 2015 +# l , 2013 +# Mohammad Mahdian , 2013 +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-07-24 00:18+0000\n" +"Last-Translator: Farshad Sadri \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "در اینجا می توانید گزارش را به دسته های دیگری هم اضافه کنید. مثلا اگر گزارش شما از قبل در دسته ی 2 بوده باشد و شما اینجا دسته ی 1 را انتخاب کنید، گزارش در هر دو دسته ی 1 و 2 قرار خواهد گرفت. " + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "در اینجا می توانید یک گزارش را قبول یا رد کنید. در صورت قبول، گزارش به صورت عمومی نشان داده خواهد شد." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "شما می توانید یک نشان به هر کاربر تریگر اختصاص دهید. نشان مورد نظر را اینجا انتخاب کنید." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "این یک بازه‌ی زمانی بین دو زمان داده شده با فرمت 24 ساعته است. اگر زمانی که در فیلد دوم وارد می‌کنید زودتر از فیلد اول باشد، این دو مقدار با هم جابه‌جا خواهند شد. این زمان‌ها باید در یک روز باشند. همچنین، این زمان‌ با زمانی که شما در بخش تنظیمات سایت برای سایت‌تان پیکربندی کرده‌اید و نه لزوماً در برابر موقعیت زمانی کاربر چک خواهد شد. برای نادیده گرفته شدن این توصیف‌گر، مقدار 00:00 تا 00:00 را نگه‌دارید." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "اگر دوست دارید تریگرها تنها زمانی که یک دسته ی خاص در حال استفاده است فعال کردد، می توانید آن را اینجا تنظیم کنید. این کار تریگر را واردار می کند وقتی تنها یکی از دسته ها در حال استفاده است فعال شود. برای مثال اگر دسته ی 1 و 2 را اینجا انتخاب کنید و یک گزارش در دسته ی 2 و 3 ثبت شود، تریگر فعال خواهد شد." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "در صورتیکه این فعالیتها در روزهای خاصی از هفته اتفاق بیفتد، آن را اینجا تنظیم کنید. دقت کنید که روز از زوی منطقه زمانی که روی گسترش شما تنظیم شده است تعیین می گردد. کلید شیفت و کامند یا کنترل را نگه دارید تا بتواند روزهای متعددی انتخاب کنید." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "متن ایمیلی که ارسال خواهد شد." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "موضوع ایمیلی که ارسال خواهد شد." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "فید می تواند تمام فیدها یا چند فید خاص باشد. اگر مایلید تنها چند فید خاص تریگر را فعال کنند، باید آنها را اینجا انتخاب کنید. در غیر این صورت می توانید اینجا همان گزینه ی \"همه\" را بزنید." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "نام کاربر توئییتر (یا نام چندین کاربر توئییتر که با ویرگول از هم جدا شده اند). اگر می خواهید تریگر را تنها برای پیام های توئییتر یک کاربر خاص فعال کنید، نام کاربری آنها را اینجا وارد کنید. (بدون علامت @)." + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "اگر نمی خواهید مقایسه با کلمات کلیدی انجام شود، می توانید اینجا را خالی بگذارید. ولی اگر اینجا کلمه اضافه کنید، باید آنها را با ویرگول (،) از هم جدا کنید. برای مثال اگر می خواهید هرگاه کسی کلمات \"عشق\" یا \"صلح\" را در پیام خود به کار برد ماشه یا Trigger فعال شود، باید در جعبه کلمات کلیدی بنویسید \"عشق ، صلح\"." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "شما می‌توانید یا «هر جا» و یا «یک مکان مشخص» را انتخاب کنید. اگر یک مکان مشخص را انتخاب کنید، از شما خواسته خواهد شد که مستطیلی دور منطقه‌ای که یک کنش را توصیف می‌کند بکشید. برای نمونه، اگر می‌خواهید که این تریگر وقتی که کاربری گزارشی در برزیل ارسال می‌کند فعال شود، «یک مکان مشخص» را انتخاب کنید و مستطیل را دور برزیل بکشید. شما می‌توانید این مستطیل‌ها را هر مقدار که بخواهید کوچک یا بزرگ بکشید. همچنین، می‌توانید بیش از یک مستطیل‌ بکشید." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "این توصیف‌گر تریگر را وقتی فعال می‌کند که تعداد یا برای کل مجموعه و یا برای هر کاربری به N برسد. برای نادیده گرفته شدن خالی بگذارید." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "این عنوان پیش‌فرض است که می‌توانید به گزارش اضافه کنید." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "اگر همه‌ی توصیف‌گرهای بالا درست باشند، تریگر شروع به پاسخ می‌کند. این پاسخ می‌تواند چیزی مانند تأیید یک گزارش یا ایمیل زدن به یک کاربر باشد. در این‌جا نوع پاسخ را انتخاب کنید تا گزینه‌های بیشتر در باره‌ی این پاسخ فعال شوند." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "اگر «تریگر کردن کاربر»‌ را انتخاب کنید، ایمیل به کاربری که کنش مربوطه را انجام داده است فرستاده خواهد شد. اگر رادیو باتن کنار قسمت ورودی را انتخاب کنید، از شما خواسته خواهد شد که یک آدرس ایمیل وارد کنید. این برای وقتی مفید است که می‌خواهید تریگرهایی تنظیم کنید که وقتی گزارش، اعلام ورود، یا کنش‌های دیگر برای منطقه‌ی خاصی روی نقشه دریافت شود افراد خاصی را مطلع کنند." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "شما در این‌جا می‌توانید بیش از یک روز را انتخاب کنید. تاریخ‌ها با تنظیمات منطقه‌ی زمانی مکانی که سایت برای آن‌جا گسترش داده شده است تعیین می‌شوند. برای این که همه‌ی تاریخ‌ها را به عنوان پیش‌فرض داشته باشید، هیچ تاریخی را انتخاب نکنید." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "این تریگر بخش اصلی تنظیم کردن تریگرهای کنش‌تان است. این‌جا جایی است که باید تعیین کنید که آیا می‌خواهید مثلاً وقتی کسی گزارشی می‌فرستد یا اعلام ورود می‌کند اتفاق خاصی بیفتد. بعد از انتخاب، شما خواهید توانست پاسخ‌های به این کنش‌ها را فیلتر کنید." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "کاربر می‌تواند یا هر کس و یا یک کاربر خاص باشد. اگر شما فقط می‌خواهید که کاربرهای خاصی بتوانند تریگری را فعال کنند، باید این کاربرها را این‌جا انتخاب کنید. در غیر این صورت، باید گزینه‌ی «هر کس» را در این‌جا نگه‌دارید، چون بیشتر تریگرها برای همه‌ی کاربرهایی که با سیستم کار می‌کنند تنظیم می‌شوند." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "گزارش را به عنوان اعتبارسنجی شده یا اعتبارسنجی نشده علامت‌گذاری کنید." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "صفحه‌های پروفایل این سایت از Gravatar استفاده می‌کنند. می‌توانید با کلیک کردن روی تصویرتان، به سایت Gravatar بروید و تصویر پروفایل‌تان را تغییر دهید." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "مقدارها را با ویرگول از هم جدا کنید، برای نمونه مقدار1، مقدار 2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "مقدارها را با ویرگول از هم جدا کنید، برای نمونه مقدار‌1، مقدار 2. در صورتی که می‌خواهید مقداری را به عنوان پیش‌فرض قرار دهید، لیست گزینه‌ها را با :: تمام کنید. برای نمونه اگر می‌خواهید مقدار 3 پیش‌فرض باشد، بنویسید مقدار 1، مقدار 2، مقدار 3::مقدار 3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "انتخاب‌ها را با ویرگول از هم جدا کنید، برای نمونه مورد 1، مورد 2." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "فهرست اعضا را تایپ کنید." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "موضوع پیغام خصوصی" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "پیغام خصوصی" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "شما می توانید رنگی که در زیر عکس پروفایل شما در پروفایلتان ظاهر می شود را انتخاب کنید. این رنگ ضمنا رنگ نقطه ای خواهد بود که روی نقشه در هنگام ورود شما ظاهر می شود." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "آدرس ایمیل شما" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "این یکی از راه هایی است که شما روی وبسایت شناخته می شوید. دقت کنید که این اطلاعات عمومی است!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "اگر این گزینه تنظیم شود، این گذرواژه ی جدید شما خواهد بود. اگر می خواهید گذزواژه ی فعلی خود را نگه دارید، اینجا را خالی بگذارید." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "این برای ایجاد کاربر جدید ضروری است و گذرواژه کاربرها خواهد بود. شما باید از کاربر خود بخواهید پس از ورود برای بار اول گذرواژه خود را عوض کند." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "با انتخاب \"بلی\" می توانید وقتی گزارش ها یا نظرات جدید در وبسایت پست شد، از طریق ایمیل هشدار دریافت کنید." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "گذرواژه ی فعلی شما. ار شما می خواهیم که گذرواژه ی خود را وارد کنید تا از هر تغییر عیر مجاز در حساب کاربری شما جلوگیری شود." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "اکر این گزینه را انتخاب کنید هرکسی روی اینترنت می تواند پروفایل شما را ببیند. همچنین این راحت ترین راه برای نمایش گزارش هایی که ثبت کرده اید و ورودها و نشان ها و ... شما همه در یک صفحه می باشد." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "این آدرسی است که پروفایل عمومی شما در آنجا قرار گرفته." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "نام کاربری شما قابل تغییر نمی باشد." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "رده های دسترسی برای محدود کردن میزان دسترسی به داده های درون فیلدهای فرم دلخواه استفاده می شوند. رده های دسترسی بالا می توانند به فیلدهای رده های دسترسی پایین تر دسترسی پیدا کنند. مدیر ویژه بالاترین رده ی دسترسی را دارد (100). داده های عمومی با پایین ترین رده ی دسترسی نمایش داده می شوند (0). اعضا دارای رده ی دسترسی 10 هستند. مدید به صورت پیش فرض دارای رده دسترسی 90 می باشد." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "این نشانی ایمیلی است که هشدارهای ایمیلی از آن ارسال می شوند." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "دادن اجازه به کاربرها برای اشتراک برای دریافت هشدارها از طریق اینترنت." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "این گزینه امکان دسته بندی خبرهای مشابه را به صورت یک نقطه روی نقشه می دهد." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "دادن اجازه به کاربر برای نظردهی روی گزارش های سایت اصلی" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "این گزینه به فیدهای خبری RSS اجازه می دهد که در سایت اصلی شان داده شوند." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "این گزینه امکان ایجاد یک شاخه از فید خبری RSS را می‌دهد." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "دادن اجازه به کاربرها برای ثبت اطلاعات از طریق فرم اینترنتی." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr " پیش فرض تعداد رکوردهایی که با هر درخواست API آورده می شوند" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "حداکثر تعداد رکوردی که با هر درخواست API آورده می شود" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "حداکثر تعداد درخواست های API به ازای هر آدرس IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "اگر تمی که از آن استفاده می کنید برنما را پشتیبانی کند، برنمای سایت در بالای وبسایت شما در طرف کاربر نمایش داده خواهد شد. سایز پیشنهادی برای این برنما به تم انتخابی شما بستگی دارد. به خاطر داشته باشید که این برنما عنوان و برچسب سایت در بالای صفحه را جایگزین خواهد کرد." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "تعداد ستون های بلوکی که در هر ردیف نمایش داده خواهد شد." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "نگه داری صفحه در حافظه‌ی پنهان را فعال یا غیرفعال کنید. این باعث می‌شود که زمان پاسخ کم‌تر شود و صفحه سریع‌تر نمایش داده شود. توصیه‌ی ما این است که برای سایت‌های با ترافیک بالا این گزینه را فعال کنید. ** به یاد داشته باشید که گزارش‌ها گزارش‌ها در فرانت‌اند بر اساس زمان‌بندی‌ای که در پایین تعیین می‌کنید (مدت زنده بودن حافظه‌ی پنهان) پر می‌شوند." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "طول عمر مخزن را تعیین کنید." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "این تنظیم اعلام ورود را روی گسترش شما فعال می‌کند. اعلام ورود یک نوع ساده‌ی گزارش است که بدون نظارت بر صفحه‌ی اصلی نمایش داده می‌شود و لازم است که سایت‌تان به صورت خاصی پیکربندی شده باشد. وقتی که این گزینه را فعال می‌کنید، مطمئن شوید که منطقه‌ی زمانی به UTC تنظیم شده است و تم سایت اعلام ورود را پشتیبانی می‌کند. وقتی که این گزینه را فعال می‌کنید، تم‌هایی که فقط اعلام ورود را پشتیبانی می‌کنند در قسمت تنظیمات افزودنی‌ها/تم‌ها فعال می‌شوند." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "نتظیم نقشه برای پوشش دهی یک مکان خاص." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "برای همه‌ی رده‌های روی سایت یک کدبندی رنگی تعیین کنید." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "یک نقشک برای رده‌های روی سایت تعیین کنید." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "این، کشوری است که سایت برای آن گسترش یافته است." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "باریکه‌ی کانتکت‌ها را روی وب‌سایت اصلی نمایش دهید یا مخفی کنید." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "برگه ی چگونگی کمک کردن را روی وب‌سایت اصلی نمایش دهید یا مخفی کنید." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "این تعداد گزارش هایی هست که در هر صفحه در سایت اصلی نمایش داده خواهد شد." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "این تعداد گزارش هایی هست که در هر صفحه در طرف مدیر نمایش داده خواهد شد." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "اینجا قطب پیامهای دریافتی است." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "اینجا پیام های قطب با بستر نرم افزاری یوشهیدی همگام می شوند." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "شماره تلفنی که پیامک ها از طریق آن دریافت می شوند." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "بازدیدکنندگان سایتتان را پیگیری کنید. می توانید آمار دقیقی از بازدیدکننده ها داشته باشید." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "زبانی که در سایت استفاده خواهد شد را تنظیم کنید." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "اگر این گزینه را به بلی تغییر دهید، باید هر کاربر جدیدی را که در سایتتان حساب کاربری می سازد تایید کنید و به آنها نقش اختصاص دهید. (مثل عضو، مدیر، مدیر ویژه)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "اینجا می توانید تعیین کنید که کدام نقشه در سایت استفاده شود." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "اینجا محور زمانی ای بر اساس زمان و تاریخی که گزارش ها ثبت شده اند نشان داده می شود." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "اگر این گزینه را به بلی تغییر دهید، گستره ی شما خصوصی خواهد شد و تنها کاربران با حساب های خاصی که شما مشخص می کنید می توانند به آن دسترسی پیدا کنند." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "اگر این گزینه را به بلی تغییر دهید، یک پیوند تایید به کاربرها ایمیل خواهد شد که قبل از ورود به سایت باید آن را کلیک کنند. اگر این گزینه را پس از این که سایت شما کاربر پذیرفته فعال کنید، از کاربرها خواسته خواهد شد که حساب خود را تایید کنید پیش از آن که بتوانند به استفاده از آن ادامه دهند." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "این جایی است که ایمیل ها در آن قرار دارند." + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "این گذرواژه ی آدرس ایمیلی است که گزارش ها را دریافت می کند." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "این برای قبول ارتباطات برقرار شده از آدرس ایمیل لازم است." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "این گزینه برای بهبود امنیت ارتباط لازم است." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "این برای بازیابی ایمیل ها از سرور میزبان لازم است." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "این آدرس ایمیلی است که گزارش ها را دریافت می کند." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "آمار کلیک ها روی سروری که توسط یوشهیدی کنترل می شود، ذخیره خواهد شد. با فعال کردن این گزینه، شما به طور مستقیم به این آمار از روی پیشخوان مدیر دسترسی خواهید داشت. با غیر فعال کردن آن، شما دیگر آماری جمع آوری نخواهید کرد و نمی توانید هنگامی که این گزینه خاموش است، آمار رفت آمد های جمع آوری شده را بازیابی کنید." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "آیا دیگران حق نشر مجدد نوشته ها، عکس ها، ویدئو ها و/یا طرح هایی که شما و کاربرانتان ایجاد کرده اید دارند؟ اگر مایلید مشخص کنید که دیگران با کارهای شما چه می توانند کنند به پیوند https://creativecommons.org/choose/ بروید و به فراموش نکنید که در مورد اینکه چه عناصری از سایت را پروانه دار می کنید دقیق باشید." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "این آدرس ایمیلی است که گزارش های ایمیلی و پیامهای فرم ارتباط را دریافت می کند." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "این نوشته ای است که بالای نقشه در صفحه ی خانه ی سایت نمایش داده می شود. می توانید از این برای دادن اطلاعات مهم به بازدیدکنندگان سایت استفاده کنید. برای پاک کردن جعبه، تنها کافی است پیام را اینجا پاک کنید. " + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "این نام سایتی است که در بالای سایت اصلی نمایش داده می شود." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "این پیغامی است که در صفحه ثبت گزارش نمایش داده خواهد شد. اینجا محل خوبی است برای نوشتن بیانیه رفع مسئولیت یا دستورالعمل های بیشتر برای بازدیدکنندگانی که گزارش خواهند کرد." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "در چند جمله کوتاه توضیح دهید این سایت درباره ی چیست." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "این محدوده ی زمانی ای است که سایت شما در آن کار خواهد کرد. تنظیم این بر هریک ار عملیاتی که تنظیم کرده اید و از زمان و تاریخ استفاده می کنند و نیزبر زمان پیش فرض گزارش ها در جلو و عقب وبسایت تاثیر خواهد داشت." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "تنظیم هشتگ توئییتری که در توئییت ها به کار برده خواهد شد." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-fa/ui_admin.po b/application/i18n/po/po-fa/ui_admin.po new file mode 100644 index 0000000000..d367b238d5 --- /dev/null +++ b/application/i18n/po/po-fa/ui_admin.po @@ -0,0 +1,1660 @@ +# +# Translators: +# Amin Sabeti , 2013 +# l , 2013 +# Mohammad Mahdian , 2013 +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "اجازه‌ی دسترسی داده نشده است. یا اعتبارنامه‌ی شما معتبر نیست و یا درخواست شما رد شده است." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "اجازه‌ی دسترسی داده نشد. تقاضایتان دریافت شد اما به دلیل محدودیت‌های دسترسی مانند زمان اجازه‌ی دسترسی داده نشد. لطفاً دوباره دیرتر سعی کنید." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "سطح دسترسی" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "کنش‌ها" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "اضافه کن به دسته" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "اضافه شد" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "اضافه شد/ویرایش شد" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "افزونه‌ها" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "مدیر" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "هشدارها" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "هشدارها دریافت شد" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "همه" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "صبح" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "گمنام" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "هرکس" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "هرکجا" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "ای‌پی‌آی ممنوع شد" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "لاگ‌های ای‌پی‌آی" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "تنظیمات ای‌پی‌آی" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "لغو ممنوعیت" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "لغو ممنوعیت از همه" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "تأیید‌شده" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "تأیید خودکار" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "تأیید دستی" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "بایگانی‌شده" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "آیا مطمئنی که می‌خواهی " + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "آیا مطمئنی که می‌خواهی این بخش را پاک کنی؟" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "آیا مطمئنی که می‌خواهی این عکس را پاک کنی؟" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "آیا مطمئنی که می‌خواهی فرم‌ها را جابه‌جا کنی؟" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "تخصیص" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "کارها" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "تخصیص نشان" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "نویسنده" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "ایمیل نویسنده" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "قبلی" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "آی‌پی را مسدود کن" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "بین زمان‌ها" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "بلوک ها" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "بدنه" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "لغو" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "دسته‌ها" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "خطا در نمایش نمودار" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "لطفاً مطمئن شو که پیغام‌ات صحیح است." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "لطفاً مطمئن شو که شماره صحیح است." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "لطفاً تنظیمات اس‌ام‌اس‌ات را چک کن!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "جزئیات ورود" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "ورودها" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "شهرها بارگیری شدند." + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "کد" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "نسخه‌ی کد همگام نیست." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "رنگ" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "نظرات" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "کد تایید اخطارهای شما:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "کاربر" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "شماره" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "کشور پیدا نشد" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "ایجاد/ویرایش شده" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "ایجاد گزارش" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "ارتقای بحرانی" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "سی‌اس‌وی" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "در حال حاضر فعال" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "در حال حاضر غیرفعال" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "شما اجازه کافی برای ویرایش موارد زیر را ندارید." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "روزانه" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "پیشخوان" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "پایگاه داده‌ها" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "تاریخ و زمان" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "تاریخ اضافه شد" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "تاریخ تغییر داده شد" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "روزهای هفته" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "نسخه‌ی دیتابیس همگام نیست." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "حذف‌شده" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "حذف" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "حذف نشان" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "نمایشی" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "توضیح" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "غیرفعال" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "شروع دیوایدر" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "پایان دیوایدر" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "دانلود گزارش‌ها" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "انتخاب‌های دراپ‌داون" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "ویرایش‌شده" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "ویرایش‌شده توسط" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "ویرایش" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "ویرایش لاگ" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "ایمیل" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Entire Collective" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "خطا در کد کردن موقعیت جغرافیایی! خطای HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "کتابخانه‌ی IMAP PHP نصب نشده است." + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "اعتبارنامه نادرست" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "خطا" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "خطا، نتوانستم رویداد را پست کنم." + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "هر شش ساعت" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "هر دوازده ساعت" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "آزمایشی" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "سؤالات متداول" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "فید" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "بازخورد" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "فیدها" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "لیست گزینه‌ها" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "مقدار پیش‌فرض" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "نوع داده" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "جاوااسکریپت" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "نشانه گذاری" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "عددی" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "متن آزاد" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "ارتفاع (به تعداد سطرها)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "فیلد پنهان" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "بیشترین طول کاراکتر" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "نام فیلد" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "ضامن" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "نه" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "بله، بر مبنای پیش‌فرض بسته است" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "بله، بر مبنای پیش‌فرض باز است" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "فایل فرستاده شده پیدا نشد" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "نتوانستم فایل را برای خواندن باز کنم" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "فورم مورد نظر وجود ندارد!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "تالار گفتگو" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "فیلد متن آزاد" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "فیلد تاریخ" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "فیلد رادیو باتن" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "فیلد چک‌باکس" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "فیلد دراپ‌داون" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "از" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "از" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "خطای تایم‌آوت نام‌های جغرافیایی" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "کمک بگیر" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "دریافت تم‌های بیشتر" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "دریافت پلاگین‌های بیشتر" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "کنش‌ها" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "اضافه/ویرایش" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "ایمیل" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "مدیریت کاربرها" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "نقش" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "کاربر" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "کمک" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "ساعتی" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "فید وقایع برای" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "پوشه‌ی نصب هنوز وجود دارد. لطفاً این پوشه را حذف کنید. وجود این پوشه می‌تواند موجب آسیب‌پذیری امنیتی شود." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "نمونه" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "نمونه‌ها" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "شرح نمونه" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "پارامتر نامعتبر" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "نشانی آی‌پی" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "آیا این فیلد دیتاست؟" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "چه کسی می‌تواند جواب‌ها را ببیند" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "چه کسی می‌تواند جواب بدهد" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "کلیدواژه" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "کلیدواژه‌ها" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "آدرس ایمیل:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "نام کامل" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "گذرواژه:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "نقش:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "نام کاربری:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "لایه‌ها" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "مدیر" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "خروج" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "لاگ‌ها" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "مدیریت" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "مدیریت نقش‌ها واجازه‌ها" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "دیدن کاربرها" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "اضافه/ویرایش کردن کاربرها" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "اداره‌ی فهرست عمومی‌" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "نشان‌گذاری کن به عنوان" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "نشان گذاشته به عنوان غیرهرزنامه" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "نشان گذاشته به عنوان هرزنامه" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "با هیچ یک از متن‌ها مطابقت نداشت." + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "پیغام" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "پیغام‌ها" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "پیام‌های Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "پیغام توییتر" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "پیغام شما فرستاده شد!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "دقیقه" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "دقیقه" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "پارامتر مفقود" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "مدیر" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "تغییرداده‌شده" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "تغییر تنظیمات تایم‌زون" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "جابه‌جایی به پایین" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "جابه‌جایی به بالا" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Multiple Hosted Instances" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "هشدارهای من" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "ورودهای من" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "نمایه‌ی من" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "گزارش‌های من" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "رأی‌های داده‌شده" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "مثبت" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "منفی" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "نام‌" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "ایجاد هشدار جدید" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "ایجاد پیغام جدید" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "گذرواژه‌ی جدید" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "نه" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "این یک رده‌ی خاص است که در فرمی که کاربران با استفاده از آن گزارش می‌فرستند نشان داده نمی‌شود. از این رده برای نگهداری گزارش‌هایی که به دلیل حذف رده‌ی مربوطه بدون رده مانده‌اند (گزارش‌های بدون رده‌بندی) استفاده می‌شود." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "اطلاع‌رسانی" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "حروف بزرگ و کوچک در اینجا معادلند." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "پیدا نشد" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "داده وجود ندارد. هیچ نتیجه‌ای برای نمایش وجود ندارد." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "هیچ خطایی داده نشد" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "هیچ نتیجه‌ای برای نمایش وجود ندارد!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "از" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "On Specific Count" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID ها" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "صفحه" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "صفحه‌ها" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "صفحه پیدا نشد" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "متأسفانه صفحه‌ای که می‌خواهید مشاهده کنید وجود ندارد.

آیا با دنبال کردن از پیوندی از جای دیگری از این وبسایت به این‌جا رسیدید؟
اگر از طریق پیوندی از قسمت دیگری از وبسایت‌ ما به این‌جا رسیدید، لطفاً <\"a href=\"%s>به ما اطلاع دهید که بتوانیم ایراد موجود را رفع کنیم.

آیا از طریق پیوندی از وب‌سایت دیگری به این‌جا رسیدید؟
پیوندهای وب‌سایت‌های دیگر ممکن است قدیمی یا اشتباه باشند. <\"a href=\"%s>به ما اطلاع دهید که از کجا به این صفحه رسیدید و ما سعی خواهیم کرد که با وبسایت دیگر تماس بگیریم و ایراد را رفع کنیم.

آیا خودتان آدرس صفحه را تایپ کردید؟
ممکن است آدرس صفحه را اشتباه تایپ کرده باشید. لطفاً بررسی کنید که آدرس را حرف به حرف درست تایپ کرده باشید (از جمله بزرگ یا کوچک بودن حروف).

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "متأسفانه صفحه‌ای که می‌خواهید مشاهده کنید پیدا نشد." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "پارامترهای استفاده‌شده" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "گذرواژه" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "راه‌اندازی مجدد گذرواژه" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "عزیز" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "ما یک تقاضا برای راه‌اندازی مججد گذرواژه دریافت کردیم برای" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "برای تغییر گذرواژه‌ی خود لطفاً روی پیوند زیر بزنید (یا آن را کپی و در مرورگر خود بچسبانید)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "بر طبق درخواست شما، گذرواژه‌ی شما تغییر داده شد. جزئیات جدید اکانت شما به شرح زیر است" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "راه‌اندازی مجدد گذرواژه‌ی یوشهیدی" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "تلفن" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "لطفاً انتخاب کن" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "بعدازظهر" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "داده‌ها با روش post فرستاده نشدند" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "پیش‌نمایش" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "پیغام" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "پیغام خصوصی" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "پیغام خصوصی فرستاده شد" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "موضوع" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "به" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "فهرست عمومی" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "توصیف کننده‌ها" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "بخوان" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "مرتبط بودن" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "عنوان گزارش" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "گزارش تاریخ" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "گزارشگرها" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "رده ی گزارشگر" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "گزارش‌ها" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "امتیاز اعتبار" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "اجباری" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "راه‌اندازی مجدد" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "جواب" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "نتایج" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "پس بگیر" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "این ایمیل در حال حاضر اکانتی اداره شده توسط CrowdmapID دارد. کاربر باید از گذرواژه‌ی موجود خود در Crowdmap برای وارد شدن استفاده کند." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "ثبت تنظیمات" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "جستجو" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "جستجوی گزارش‌ها" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "در جستجوی " + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "کلید رمزگزاری هنوز مقدار پیش‌فرض را دارد. این امن نیست و باید تغییر داده شود." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "این وبسایت با استفاده از پروتکل HTTP سرو می‌شود. برای امنیت بیشتر، باید از پروتکل HTTPS استفاده کنید." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "دستورات روی ویکی در دسترس هستند:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "فرمت مورد نظرتان برای بارگیری گزارش‌ها را انتخاب کنید:" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- انتخاب نوع فیلد ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "لطفاً یک مورد را انتخاب کن" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "قبل از انتخاب پاسخ، باید یک تریگر را انتخاب کنید." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "قبل از انتخاب توصیف‌کننده، باید یک تریگر انتخاب کنید." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "فرستندده" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "بفرست به" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "این پیغام از وبسایت شما فرستاده شده است." + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "زمان سرور" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "تنظیمات" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "نمایش صفحه" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "نمایش نتایج" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "نمایش‌داده‌شده" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "دسته‌ی خاص" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "این یک رده‌ی خاص است که در فرمی که کاربران با استفاده از آن گزارش می‌فرستند نشان داده نمی‌شود. این رده در ترکیب با ویژگی «گزارش‌گران قابل اعتماد» استفاده می‌شود." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "محل خاص" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "استان (ایالت)" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "آمار" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "آمار" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "جمع‌آوری آمار موفق نبود! لطفاً دیرتر دوباره سعی کنید." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "جمع‌آوری آمار موفق نشد!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "روزهای مشخص" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "موضوع" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "مدیر ارشد" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "کار انجام شد" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "فیلد متنی" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "نام‌" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "مدیریت کاربرها" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "خطای تایم‌آوت" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "به" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "تعداد کل رکوردها" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "به" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "گزارش‌ها را ترجمه کن" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "تریگر" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "تریگر کردن کاربر" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "تریگرها" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "تأییدنشده" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "نامعلوم" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "خطای نامعلوم" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "خوانده‌نشده" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "شما دیگر هشدار دریافت نمی‌کنید از" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "برای آپگرید به نسخه‌ی بالاتر اینجا را کلیک کنید" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "ارتقا یوشهیدی" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "ارتقا وضعیت یوشهیدی" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "بارگذاری گزارش‌ها" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "کاربر" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "کاربرها" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "یوشهیدی" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "اعتبارسنجی شده/اعتبارسنجی نشده" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "تبدیل به اعتبارسنجی شده/اعتبارسنجی نشده" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "نسخه" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "برای آپگرید در دسترس است." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "کدبندی ویدئو" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "پیغام خصوصی" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "مشاهده‌ی سایت" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "دیدن گزارش" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "خوش آمدی،" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "ویکی" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "بله" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "جستجوی تو برای" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-fa/ui_main.po b/application/i18n/po/po-fa/ui_main.po new file mode 100644 index 0000000000..c0feef8884 --- /dev/null +++ b/application/i18n/po/po-fa/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# Amin Sabeti , 2013 +# l , 2013 +# Mohammad Mahdian , 2013 +# snp , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "درباره" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "دسترسی" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "محدودیت‌های دسترسی" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "شناسه‌ی کاربری" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "کنش‌ها" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "این کنش برگشت‌ناپذیر است. آیا مطمئنی که می‌خواهی ادامه دهی؟" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "فعال کن" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "فعال" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "اضافه کن" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "اضافه‌شده توسط" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "داده‌های بیشتر" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "گزارش‌های بیشتر" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "اضافه/ویرایش" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "یک بخش اضافه کن" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "اضافه‌کردن زبان" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "مورد جدید اضافه کن" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "دسته‌ی جدید اضافه کن" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "اضافه‌کردن ترجمه" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "مدیریت" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "دریافت هشدارها" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "اگر گزارشی دقیقا در یا اطراف .... ثبت ش، به من خبر بده:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "هشدار من را ثبت کن" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "آدرس ایمیل" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "آدرس ایمیل خود را وارد کن" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "شماره‌ی تلفن همراه خود را با کد کشور وارد کن" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "دریافت هشدارها" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "هشدار " + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "تلفن همراه:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "یا نشانی روی نقشه زیر بگذارید و ما هنگامی که گزارشی در 20 کیلومتری این مکان ثبت شود شما را خبردار می کنیم." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "اگر مکان خود را پیدا نمی کنید، لطفا روی نقشه کلیک کنید تا مکان صحیح را علامت گذاری کنید." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "آر‌اس‌اس (پیوند زیر را کپی کن)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "یک شهر انتخاب کن" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "مرحله‌ی ۱: شهر یا محل خود را انتخاب کن:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "مرحله‌ی ۲: هشدارها را به" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "مرحله‌ی ۳ (اختیاری): دسته‌ها را انتخاب کن" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "تأیید درخواست هشدار قبلی" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "هشدار شما ذخیره شد!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "همه" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "مجاز" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "تگ‌های مجاز اچ‌تی‌ام‌ال: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframeها تنها از طریق %s اجازه دارند." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "تمام دسته‌ها" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "تمام زمان‌ها" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "و" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "رابط برنامه‌نویسی" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "تأیید" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "تأیید‌شده" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "گزارش‌های تأیید‌شده" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "این گزارش را تأیید کن" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "تقریبی" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "بایگانی" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "بایگانی‌شده" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "سعودی" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "در" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "نویسنده" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "ورود خودکار" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "متوسط گزارش‌ها در روز" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "در انتظار تأیید" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "در انتظار صحت‌گذاری" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "نشان" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "نشان‌ها" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "تصویر نشان" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "یا می توانید تصویر نشان خود را به جای این بارگذاری کنید." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "بسته‌ی نشان" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "یک نشان انتخاب کن" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "وبلاگ" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "مرورنمایه" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "لغو" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "دسته‌ها" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "دسته" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "فیلتر دسته" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "دسته‌ی مورد نظر " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "نام دسته" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "تغییر بازه‌ی تاریخ" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "تغییر گذرواژه" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "تغییر عکس من" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "انتخاب کن" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "داده‌ها برای بارگیری را انتخاب کن" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "یا بازه‌ی تاریخ خود را انتخاب کن" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "نوع فیلد را انتخاب کنید" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL های پاک" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "پاک کن" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "نقشه را پاک کن" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "ببند" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "مجموعه" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "رنگ" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "نظر" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "نظرات" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "جزئیات نظر" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "تنظیمات‌ات ذخیره شد!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "تنظیم" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "با موفقیت‌ات آدرس ایمیل‌ات را تأیید کردی! لطفاً وارد سیستم شو." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "ایمیل تایید نشد! شما می توانید اینجا یک امکان جدید تایید ایمیل درخواست کنید." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "تماس با ما" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "کد امنیتی" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "آدرس ایمیل شما" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "پیغام" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "پیغام‌ات فرستاده شد!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "نام‌" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "شماره‌ی تلفن‌" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "پیغام بفرست" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "موضوع پیغام" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "حق نشر و تألیف" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "ایجاد" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "ایجاد/ویرایش" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "ایجاد جدید" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "گذرواژه‌ی جدید ایجاد کن" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "ایجاد گزارش" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "اعتبار" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "گذرواژه‌ی فعلی" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "فیلد های دلخواه" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "اطلاعات" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "تاریخ" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(س‌س‌س‌س/رر/م‌م)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "تاریخ و زمان" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "روز" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "غیرفعال کن" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "نایروبی، کنیا" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "حذف" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "حذف شد" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "حذف‌شده‌ها" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "حذف غیرفعال‌ شده" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "حذف آخرین" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "این گزارش را پاک کن" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "انتخاب‌شده را پاک کن" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "حذف اِسپم" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "نمایشی" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "شرح" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "نزولی" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "مثال: یوسف آباد، خیابان بیستون، بین کوچه‌ی ۴ و ۵." + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "جزئیات" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "گزارش مستقیم" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "غیرفعال" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "تأیید نشده" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "دانلود گزارش‌ها" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "دانلود" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "ویرایش" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "ویرایش فیلد‌های فرم" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "ویرایش گزارش" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "ایمیل" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "آدرس ایمیل" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "تنظیمات سرور ایمیل" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "میزبان سرور ایمیل" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "گذرواژه‌ی سرور ایمیل" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "درگاه سرور ایمیل" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "پشتیبانی اس‌اس‌ال برای سرور" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "نوع سرور ایمیل" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "نام کاربری سرور ایمیل" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "چون تنظیمات‌ات باید به این نشانی ایمیل مرتبط شود" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "اگر تمایل دارید گزارش ها را از طریق ایمیل دریافت کنید، لطفا تنظیمات حساب کاربری ایمیل خود را پایین وارد کنید. لطفا توجه داشته باشید که ایمیل ها به ..... ارسال خواهند شد" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "بعضی سرورها نشانی ایمیل کامل لازم دارند." + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "گذرواژه‌ی ایمیل حساب" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "درگاه های رایج : 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "مثال: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "مثال: pop3، imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "اتصال اس‌اس‌ال را فعال یا غیرفعال کن" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---خالی---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "به" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "خطا!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "مثال" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "کنیا" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "برنامه‌های خارجی" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "پیوند ویدئو به بیرون" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "فیس‌بوک" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "فید" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "بازخورد بده" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "فیدها" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "فید" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "موارد فید" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "نام فیلد" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL فید" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "فیلد استفاده نشده" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "پرونده" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "اندازه‌ی پرونده‌ات بیشتر از حد مجاز است." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "فیلترها" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "فیلترکردن گزارش‌ها" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "فیلترکردن گزارش‌ها" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "فیلترکردن گزارش‌هایی که شامل" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "پیدا کن" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "پیدا کردن محل" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "نام" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "اجرای اجباری زمان بند" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "گذرواژه‌ات را فراموش کردی؟" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "فرم" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "فرم‌ها" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "شرح فرم" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "ویرایش این فرم" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "فرم" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "موضوع فرم" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "از" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "نام کامل" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "مکان جغرافیایی در دسترس" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "رنگ" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "نظرات" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "برچسب" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "پهنای قلم" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "برو" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "هشتگ" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "شده" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "چطور می‌توانم کمک کنم؟" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "پنهان" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "پنهان" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "این پیغام را پنهان کن" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "خانه" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "چگونگی گزارش" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "اچ‌تی‌تی‌پی‌اس (HTTPS)" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "شناسه" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "برای شناسایی شما به دیگر کاربران سایت استفاده می شود." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "تصویر" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "تصاویر" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "تصویر/شمایل" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "غیرفعال" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "صندوق ورودی" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "واقعه" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "وقایع نزدیک" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "مکان واقعه" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "شامل" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "اضافه کردن دسته ها" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "اضافه کردن فیلدهای دلخواه" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "شرح را نشان بده" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "اضافه کردن جزئیات تا حد ممکن" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "اضافه کردن عرض جغرافیایی" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "اضافه کردن اطلاعات مکان" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "اضافه کردن طول جغرافیایی" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "امکان شامل کردن اطلاعات شخصی " + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "رسانه‌ی ورودی" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "ارزیابی اطلاعات" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "مکان دقیق خود را وارد کنید." + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "حساب کاربری شما مجوز مناسب برای ورود کامل شما را ندارد. لطفا با مدیریت تماس بگیرید." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "در جواب" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "نشانی آی‌پی" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "آیا این نمایه‌ی تو است؟" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "بند" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "بندها" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "جزئیات بند" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "موضوع بند" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "کلید" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "کلمات کلیدی" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "پرونده‌ی KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "بارگذاری پرونده‌ی KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconia" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "زبان" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "آخرین" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "آخرین ماه" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "نام خانوداگی" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "آخرین سال" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "عرض جغرافیایی" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "لایه‌ها" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "لایه‌های دیگر" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "این لایه" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "نام لایه" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "نشانی اینترنتی لایه" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "نظر بگذار" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "اطلاعات کمتر" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "رده" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "این رده" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "نام رده" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "محدود" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "پیوند" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "فهرست" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "در حال بارکردن گزارش‌ها" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "محل" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "مکان‌ها" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "شهر، استان یا ایالت، و/یا کشور" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "ورود" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "حساب‌ات با موفقیت ایجاد شد. می‌توانی به سیستم وارد شوی." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "تآییدیه به نشانی ایمیل‌ات فرستاده شده." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "نشانی ایمیل وجود ندارد. آدرس دیگری را امتحان کن یا حساب جدیدی بساز." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "لظفا بر روی ارائه دهنده حساب کاربری خود کلیک کنید." + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "ورود با" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "ایمیل و گذرواژه" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "ثبت نام" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "ایجاد حساب" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "از اینکه در %1$s ثبت نام کردید متشکریم. برای تایید نشانی ایمیل خود، لطفا به URL زیر مراجعه کنید: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "تأیید ثبت‌نام" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "برای دسترسی به امکانات بیشتر سایت هم اکنون یک حساب کاربری ایجاد کنید." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "طول جغرافیایی" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "نقشه" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "علامت‌گذاری به عنوان خوانده‌شده" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "علامت‌گذاری به عنوان خوانده‌نشده" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "حداکثر اندازه‌ی فایل" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "رسانه" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "فیلتر رسانه" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "اعضأ" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "مدیریت حساب‌ات" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "پیغام" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "پیغام‌ها" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "جزئیات پیغام" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "پیغام از یک منبع غیرعددی:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "تلفن همراه" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "تغییر" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "تغییر تاریخ" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "ماه" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "بیشتر" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "اطلاعات بیشتر" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "آیا این گسترش یوشهیدی شامل چند کشور می‌شود؟" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "برای دسترسی به این گسترش باید نشانی ایمیل خود را تایید کنید. اگر ایمیل تاییدیه خود را گم کرده اید، می توانید یک تاییدیه جدید در پایین درخواست کنید." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "نام‌" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "گزارش نزدیک" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "جدید" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "اخبار" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "بازخورد اخبار" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "منبع خبر" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "دسته‌ی جدید" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "گذرواژه‌ی جدید" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "گزارش جدید" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "بعدی" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "نه" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "هیج ورود ثبت شده ای برای نمایش وجود ندارد." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "هیچ داده‌ای در دست نیست." + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "هیچکدام" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "اخطارها" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "تأییدنشده" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "تأییدنشده" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---انتخاب‌نشده---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "هرزنامه نیست" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "مشخص‌نشده" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "هیچ گزارشی وجود ندارد." + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "هیچ نتیجه‌ای وجود ندارد." + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "خاموش" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "& رسمی، اخبار رایج" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "روشن" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "گزینه" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "اختیاری" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "گزینه‌ها" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "ارگان" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "ارگان‌ها" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "شرح ارگان" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "ایمیل ارگان" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "این سازمان" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "نام ارگان" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "تلفن ۱ ارگان" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "تلفن ۲ ارگان" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "وب‌سایت ارگان" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "اصلی" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "شرح اصلی" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "موضوع اصلی" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "گسترش های دیگر" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "صندوق خروجی" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "خروجی" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "صفحه" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "صفحه‌ها" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "شرح صفحه" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "صفحه" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "نام برگه ی صفحه" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "موضوع صفحه" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "دسته‌ی مادر" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "گذرواژه" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "تأیید گذرواژه" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "گذرواژه با موفقیت عوض شد! در پایین وارد شوید." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "گذرواژه‌ات را فراموش کردی؟" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "لطفا ایمیل خود را برای گذرواژه جدید چک کنید." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "آیا می خوهید بر روی این کامپیوتر به خاطر سپرده شوید؟" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "ماه گذشته" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "سال گذشته" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "در تعلیق" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "در هر" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "اطلاعات شخصی اختیاری ." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "تلفن" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "عکس‌ها" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "عکس‌ها" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "تصاویر و ویدئوها" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* مکان خود را توسط نام مکان یا مختصات طولی و عرضی (در قالب 38.19 و 85.61 ) بیابید، یا روی نقشه کلیک کنید تا مکان صحیح را نشانه گذاری کنید." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "پخش" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "لطفاً دقت کن" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "پلاگین ها" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "وبسایت پلاگین" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "نمایه‌ی قابل رؤیت عموم" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "نشانی اینترنتی نمایه قابل رؤیت همگان" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "پیش‌نمایش" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "پیش‌نمایش بند" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "پیش‌نمایش پیغام" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "قبلی" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "خصوصی" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "رنگ نمایه" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "نمایه‌ات ذخیره شده است." + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "آمار سریع" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "رتبه" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "خوانده شده" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "دریافت" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "دریافت از" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "دریافت اخطار" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "گزارش‌های اخیر" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "تازه کردن فید اخبار" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "ایمیل ثبت شده" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "پاک کردن" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "جواب " + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "گزارش" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "گزارش ها (از نقشه، لیست شده به ترتیب زمانی )" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "گزارشگر" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "گزارشگرها" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "تاریخ گزارشگر" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "ایمیل گزارشگر" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "نام گزارشگر" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "گزارشگر" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "آدرس IP گزارشگر" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "نام‌خانوادگی گزارشگر" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "رده ی گزارشگر" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "رده های گزارشگر" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "تلفن گزارشگر" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "گزارش‌ها" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "جستجو" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "ثبت" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "گزارش‌های این کاربر" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "دسته‌ها" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "گزارش های %d" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "تاریخ" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "شرح" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "گزارش ها در قالب CSV بارگیری خواهند شد." + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "ایمیل" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "ویژگی ها" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "مکانی نزدیک خود بیابید" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "نام" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "نام خانوداگی" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "نام مکان" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "پیوند منبع اخبار" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "اطلاعات اختیاری" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "بارگذاری تصویر" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "بازگشت به صفحه ی گزارش ها" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "انتخاب یک شهر" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "گزارش شما برای بررسی به دست کادر ما رسیده است. در صورت نیاز به زودی با شما تماس خواهیم گرفت." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "ثبت یک گزارش جدید " + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "زمان" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "محور زمانی گزارش ها" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "موضوع گزارش" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "پیوند ویدئو" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "گزارش یک رویداد" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "جزئیات گذارش" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "به وسیله‌ی فرستادن یک پیغام به" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "با ارسال یک ایمیل" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "با ارسال یک توئییت با هشتگ" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "با پرکردن این فرم برروی وبسایت ما" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "با استفاده از موبایل" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "گزارش شما ذخیره شد." + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "موضوع گزارش" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "درخواست اطلاعات بیشتر" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "درخواست مکان" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "اجباری" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "مقررات" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "ارسال مجدد ایمیل تایید" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "تنظیم مجدد" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "تنظیم مجدد تمام فیلترها" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "تنظیم مجدد گذرواژه" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "بازیابی اسامی شهرها برای کشور انتخاب شده" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "حساب های مدیریت شده توسط سرویس %s. " + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "شما از قبل دارای حساب کاربری تحت مدیریت CrowdmapID می باشید! از نام کاربری و گذرواژه ی CrowdmapID خود برای ورود استفاده کنید." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "نقش" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "ذخیره" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "ذخیره شده" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "ذخیره و از نو اضافه کردن " + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "ذخیره و بستن" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "ذخیره ی گزارش" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "زمان بندی" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "زمان بند" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "روز" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "ساعت" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "تاریخچه ی زمان بند" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "دقیقه" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "روز هفته" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "جستجو" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "نتایج جستجو" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "کد امنیت" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "همه را انتخاب کن" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "انتخاب نوع فیلد" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "انتخاب یک نوع فرم" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "روی نقشه انتخاب کن" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "انتخاب به تعداد مورد نیاز" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "لطفا مطمئن شوید که یک مورد را انتخاب کرده اید." + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "انتخاب تم" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "فرستادن" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "ارسال تاییدیه" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "فرستادن به" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "ارسال شده" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "ارسال شده توسط" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "آدرس سرور" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "نوع سرور" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "خدمات" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "نام کاربری خدمات" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID کاربر خدمات" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "اشتراک گذاری" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "داده های به اشتراک گذاشته شده" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "به اشتراک گذاری" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "به اشتراک گذاری" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "نقشه ی کوتاه تر" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "نشان بده" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "همه را نشان بده" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "پیغام‌ها را نشان بده" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "نمایش گزارش ها از %1$s تا %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "وب‌سایت" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "نشانی ایمیل سایت" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL سایت" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "نقشه‌ی کوچک‌تر" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "با عرض پوزش شما هیچ نشانی ندارید." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "منبع" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "نام منبع" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "مرتب کردن" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "مرتب کردن توسط" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL منبع" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "هرزنامه" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "پشتیبانی SSL؟" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "از" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "مرحله" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "ثبت گزارش" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "ثبت شده توسط %1$s از %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "ثبت توسط SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "ارسال SMS به" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "بر روی تلفن شما" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "موفقیت!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "با موفقیت وارد شد" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "نام خانوادگی" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "برآورد" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "سامانه" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "نقشه ی درازتر" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "درگاه TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "تم ها" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "تم پیش فرض یوشهیدی" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "تنظیمات تم" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "این" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "امروز" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "این ماه" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "این هفته" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "امسال" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "این نمایه‌ی تو است." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "زمان" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "موضوع" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "به" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "امروز" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "امروز در" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "رمز" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "گزارش های کلی" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "ترجمه شده" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "شرح ترجمه‌شده" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "موضوع ترجمه‌شده" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "ترجمه‌کن به" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "ترجمه" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "ترجمه ثبت شده‌است" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "معتمد" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "نوع" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "توییتر" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "امکان ارسال ایمیل وجود ندارد." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "گزارش های دسته بندی نشده" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "خوانده نشده" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "صحت گذاری نشده" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "به روزرسانی فیدها" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "بارگذاری" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "راهنمای بارگذاری گزارش ما را ببینید: -" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "راهنمای بارگذاری XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "راهنمای بارگذاری CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "پرونده برای بارگذاری" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "باگذاری گزارش ها" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "form_id فیلدهای دلخواه باید به آنها ضمیمه شود. به طور مثال فیلد دلخواه تست روی فرم پیش فرض که دارای id 1 می باشد، باید به صورت Test-1 نامگذاری شود. هنگام واردکردن فیلدهای فرم دلخواه دقت کنید که" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "توسط فرم ذیل می توانید وقایع را وارد موتور یوشهیدی کنید." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "گزارش ها باید یا در قالب CSV یا در قالب XML بارگذاری شوند." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "هرگاه ID یک واقعه از قبل در دیتابیس موجود باشد، از آن مورد در پرونده ی CSV/XML صرفنظر می شود." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "باید حداقل شامل عنوان یا تاریخ واقعه باشد." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "اگر هیچ عرض و طول جغرافیایی وارد نشود، مکان توسط Google Geocoder ردیابی خواهد شد." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "در هنگام وارد کردن اطلاعات اضافه مانند اطلاعات شخصی و/یا فیلدهای فرم دلخواه" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "حداقل یکی از فیلدهای اطلاعات شخصی (نام، نام خانوادگی، ایمیل) باید پر شوند. رکوردهای خالی وارد نخواهند شد." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "اطلاعات ورودی شما در منوهای باز شونده، دکمه ها و سوالات گزینه ای با امکانات داده شده برای فیلد دلخواه شما سازگاری دارند" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "جواب های متعدد به سوالات گزینه ای توسط ویرگول ار هم جدا شده اند. به طور مثال اگر جواب شما به سوال میوه ها، سیب و مانگو و انگور بوده باشد، این جواب باید بدین صورت وارد شود: \"سیب، مانگو، انگور\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "مقادیر فیلد تاریخ باید در قالب زیر باشد: ماه/روز/سال. مثال: 3 اکتبر 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "یک نمونه گزارش CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#، عنوان واقعه، تاریخ واقعه، شرح، دسته، تاییدشده، صحت گذاری شده، تصدیق شده، طول و عرض جغرافیایی \"1\" ،\"مرگ مشکوک در نایروبی\" ، \"2009-05-15 01:06:00\" ، \"نایروبی\"، \"سه مورد در اروگوئه تایید شده\" ، \"مرگ، شهروندان\"، \"بلی\" ، \"بلی\" ، \"-1.287\"، \"36.821\"." + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\" ، \"غارت\" ، \"2009-03-18 10:10:00\" ، \"آکرا\" ، \"غارت همه جا دارد اتفاق می افتد\"، \"اعتصاب، مرگ، ضرر مالی\" ، \"بلی، خیر\"، \"5.55\"و \"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "بارگذاری موفقیت آمیز" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "بارگذاری ویدئو" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "کاربر" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "نام کاربری" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "مدیر یوشهیدی" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "صحت گذاری" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "صحت‌گذاری‌شده" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "گزارش‌های صحت‌گذاری‌شده" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "صحت گذاری" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "این گزارش را صحت‌گذاری کن" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "نسخه" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "از طریق" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "ویدئو" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "نما" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "نماها" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "همه را ببین" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "نمایش تمام فیدها" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "دیدن همه‌ی گزارش‌ها" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "نمایش موارد" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "بیشتر ببین" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "نمایه‌ی قابل رؤیت عموم‌ات را ببین." + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "دیدن گزارش" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "دیدن گزارش‌ها" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "دیدن ویدئو" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "قابل رویت" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "در انتظار تأیید" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "در انتظار صحت‌گذاری" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "نقشه‌ی پهن‌تر" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "فرم وب" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "وب" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "وزن" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "بله" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "دیروز" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "پیشخوان شما" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "پرونده ی شما" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "بزرگ نمایی بیشتر" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "بزرگ نمایی کمتر" diff --git a/application/i18n/po/po-fa/upgrade.po b/application/i18n/po/po-fa/upgrade.po new file mode 100644 index 0000000000..8401930b67 --- /dev/null +++ b/application/i18n/po/po-fa/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# l , 2013 +# farsitranslator , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Persian (http://www.transifex.com/ushahidi/ushahidi-v2/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "داده ورودی اشتباه است. این مورد باید یا ۰ برای «خیر» یا ۱ برای «آری» باشد." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "به روز رسانی اتوماتیک" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "به روزرسانی‌های موجود" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "ادامه" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "به روز رسانی" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "اکنون قصددارم پایگاه داده شما را به روزسازی کنم از نسخه " + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "به جدیدترین نسخه پایگاه داده" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "دکمه «به روزسازی» را فشاردهید و تا هنگامی که من حرکت جادویی خود را انجام می‌دهم خوش بگذران!" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "آها! همچنین اگر می خواهید که یک ذخیره از پایگاه داده شما بگیرم، تنها دکمه چک را تیک بزنید و من این کار را برای شما خواهم کرد." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "پیش از به روزسازی از پایگاه داده ذخیره برداریم؟ (اکیدا توصیه می‌شود)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "به روزسازی پایگاه داده‌ی یوشهیدی" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "یوشهیدی به روز شد! پیش از ادامه، لازم است که فایل پایگاه داده خود را به جدیدترین نسخه به روز کنید (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "نسخه پایگاه داده شما به روز شد." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "به روزرسانی در یک نقطه ناموفق بود." + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "به روزرسانی دستی" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "وضعیت به روزرسانی یوشهیدی" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "دستورالعمل‌های زیر روش به روزسازی دستی آرایش یوشهیدی (Ushahidi deployment) شما را به شکل دقیق توضیح می‌دهد." + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
بارگیری
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr " جدیدترین ساخت یوشهیدی را از
دانلود کنید." + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
ذخیره
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
تنها در صورتی که مشکلی پیش بیاید، توصیه می‌کنیم که یک ذخیره کامل از آرایش یوشهیدی خود داشته باشید.
فایل‌ها را کپی کنید
-فایل زیپ دانلودشده را باز کنید
بر اساس اینکه سیستم عامل سرور وب چیست، ابزار/حالت مورد نظر خورد را استفاده کنید (مثال: Telnet، FTP، SSH) تا به سرور وب وارد شوید و و محتویات تمام پرونده‌ها را از جدید ترین ساخت جایگزین کنید.
پایگاه داده را به روز رسانی کنید
-ابتدا " + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "قدم ۳:درون پرونده sql را نگاه کنید. به روز رسانی فایل -.sql را به شکل دستی اجرا کنید. برای این کار از نصب پایگاه داده فعلی آغاز کنید و تا آخرین فایل به روزرسانی sql ادامه دهید." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "قدم ۴: دکمه \"ادامه\" را فشار دهید تا به روزسازی جدول‌های ضروری انجام گیرد." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "برای به روزرسانی اتوماتیک، دکمه زیر را فشار دهید." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "شما در حال استفاده از یوشهیدی v%1$s با نسخه پایگاه داده %2$d در حال اجرا روی %3$s هستید." + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "در حال به روزسازی" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "برای ساده ادامه دادن به روزرسانی، اطلاعات زیر از سرور FTP ای که وبسایت شما را میزبانی می‌کند مورد نیاز است." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "نام میزبان FTP: مثال: \"میزبان محلی\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "رمز عبور FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "نام کاربری FTP: " + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "شما آخرین نسخه‌ی یوشهیدی را دارید." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "نیازی به به روزرسانی ندارید." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "نسخه‌ی پایگاه داده: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "اخطار: نسخه‌ی نرم‌افزار در version.php و پایگاه داده‌ها با یکدیگر جور نیستند." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "اخطار: نسخه‌ی پایگاه داده‌ها در version.php و پایگاه داده‌ها با یکدیگر جور نیستند." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "پایگاه داده‌ها:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "یوشهیدی %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "بتا !" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "در حال بارگذاری آخرین نسخه یوشهیدی..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "پرونده‌ی لاگ (Log File)" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "با موفقیت بارگذاری شد. در حال باز کردن..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "بارگذاری شکست خورد." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "با موفقیت باز شد. در حال کپی برداری از پرونده‌ها..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "بازکردن شکست خورد." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "با موفقیت کپی شد. در حال به روزرسانی پایگاه داده..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "کپی برداری از پرونده‌ها شکست خورد." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "ذخیره پایگاه داده‌ها و به روزرسانی موفقیت آمیز بود." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "ذخیره سازی پایگاه داده شکست خورد." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr " به روزرسانی پایگاه داده‌ها موفقیت آمیز بود." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "در حال پاک‌کردن پرونده‌های دانلود شده..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "به روزرسانی موفقیت آمیز بود. تماشای فایل لاگ (Log File)" diff --git a/application/i18n/po/po-fi/alerts.po b/application/i18n/po/po-fi/alerts.po new file mode 100644 index 0000000000..13594f538b --- /dev/null +++ b/application/i18n/po/po-fi/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Tomi Toivio , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Tomi Toivio \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Kentässä sähköposti ei näytä olevan kelvollista sähköpostiosoitetta?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Sähköpostiosoite saa jo hälytyksiä tästä sijainnista." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Kentän sähköposti täytyy olla vähintään 4 ja korkeintaan 64 merkkiä pitkä." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kenttä sähköposti vaaditaan, jos ruudussa on rasti." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Tämä asennus kattaa vain yhden maan. Varmista, että hälytysten paikkakunta on maan %s alueella." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Et ole valinnut kelvollista sijaintia kartalta." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Et ole valinnut kelvollista sijaintia kartalta." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Et ole valinnut kelvollista sijaintia kartalta." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Et ole valinnut kelvollista sijaintia kartalta." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Kentässä matkapuhelin ei ole oikeaa määrää numeroita." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Matkapuhelin on jo rekisteröity tästä sijainnista tulevia hälytyksiä varten." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Kentässä matkapuhelin ei näytä olevan kelvollista puhelinta. Ole hyvä ja kirjoita vain numeroita, sisältäen maakoodin." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Kirjoita joko matkapuhelinnumerosi tai sähköpostiosoitteesi." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Kenttä matkapuhelin tarvitaan, jos ruudussa on rasti." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Et ole valinnut kelvollista sädettä kartalta." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Et ole asettanut sädettä kartalle." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Et ole asettanut hälytyksille vastaanottajaa." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Olet tilannut hälytykset seuraavissa kategorioissa" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Tämä koodi on vahvistettu aiemmin!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Tätä vahvistuskoodia ei löytynyt! Tarkista, että sinulla on oikea URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Koodisi on vahvistettu oikein. Saat nyt hälytyksiä tapahtumista." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Vahvistaaksesi hälytyspyynnön, mene osoitteeseen" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Palaa sivulle hälytykset luodaksesi lisää hälytyksiä" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Sähköpostihälytyksesi on luotu ja vahvistusviesti lähetetty osoitteeseen" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Kirjoita saamasi sähköpostin vahvistuskoodi alle:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Sähköpostihälytyspyyntöäsi ei ole tallennettu!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Sähköpostihälytyspyyntösi on tallennettu!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Järjestelmä ei kyennyt käsittelemään vahvistuspyyntöäsi!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Matkapuhelinhälytyspyyntösi on luotu ja vahvistusviesti lähetetty" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Kirjoita alle puhelimeesi saamasi SMS-vahvistuskoodi:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Matkapuhelinhälytyspyyntöä ei ole tallennettu!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Matkapuhelinhälytyspyyntösi on tallennettu!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Tätä asennusta ei ole määritelty käsittelemään hälytyksiä oikein" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Olet saanut tämän sähköpostin, koska olet tilannut hälytykset. Jos et tahdo saada tulevia hälytyksiä, mene" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Et saa enää hälytyksiä " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Emme voineet peruuttaa tilaustasi. Vahvista, että sinulla on oikea URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "hälytykset - vahvistus" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Et saa hälytyksiä tästä sijainnista ennen kuin vahvistat pyyntösi." diff --git a/application/i18n/po/po-fi/auth.po b/application/i18n/po/po-fi/auth.po new file mode 100644 index 0000000000..2e9046a5e8 --- /dev/null +++ b/application/i18n/po/po-fi/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-fi/bug.po b/application/i18n/po/po-fi/bug.po new file mode 100644 index 0000000000..c474bcdfdf --- /dev/null +++ b/application/i18n/po/po-fi/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-fi/category.po b/application/i18n/po/po-fi/category.po new file mode 100644 index 0000000000..a02dbbc2ba --- /dev/null +++ b/application/i18n/po/po-fi/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-fi/comments.po b/application/i18n/po/po-fi/comments.po new file mode 100644 index 0000000000..09ab429a0a --- /dev/null +++ b/application/i18n/po/po-fi/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-fi/contact.po b/application/i18n/po/po-fi/contact.po new file mode 100644 index 0000000000..5bc8f1f4e8 --- /dev/null +++ b/application/i18n/po/po-fi/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-fi/core.po b/application/i18n/po/po-fi/core.po new file mode 100644 index 0000000000..1109a14102 --- /dev/null +++ b/application/i18n/po/po-fi/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-fi/database.po b/application/i18n/po/po-fi/database.po new file mode 100644 index 0000000000..fb292ec916 --- /dev/null +++ b/application/i18n/po/po-fi/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-fi/datetime.po b/application/i18n/po/po-fi/datetime.po new file mode 100644 index 0000000000..9da2d3fa1f --- /dev/null +++ b/application/i18n/po/po-fi/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-fi/feeds.po b/application/i18n/po/po-fi/feeds.po new file mode 100644 index 0000000000..7ac0394ed1 --- /dev/null +++ b/application/i18n/po/po-fi/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-fi/footer.po b/application/i18n/po/po-fi/footer.po new file mode 100644 index 0000000000..20d17fe8c7 --- /dev/null +++ b/application/i18n/po/po-fi/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-fi/form.po b/application/i18n/po/po-fi/form.po new file mode 100644 index 0000000000..4f037e7db7 --- /dev/null +++ b/application/i18n/po/po-fi/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Tomi Toivio , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 00:12+0000\n" +"Last-Translator: Tomi Toivio \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Tälle kentälle antamasi oletusarvo ei kelpaa." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Kentän nimi täytyy olla ainakin 3 ja korkeintaan 200 merkkiä pitkä." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Ole hyvä ja kirjoita arvo väliltä 0 ja 50 kenttään korkeus." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Olet kirjoittanut kelvottoman arvon kenttään päivämäärä." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Ole hyvä ja valitse kyllä tai ei kentälle päivämäärä." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Kentän nimi täytyy olla vähintään 3 ja korkeintaan 100 merkkiä pitkä." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Ole hyvä ja kirjoita kenttä nimi." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Kirjoittamasi kentän nimi on jo käytössä tällä lomakkeella. Ole hyvä ja kirjoita uusi." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Olet kirjoittanut väärän arvon vaaditulle kentälle." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Ole hyvä ja valitse kyllä tai ei vaadittuun kenttään." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Ole hyvä ja valitse kelvollinen kentän tyyppi." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Ole hyvä ja valitse kentän tyyppi." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Ole hyvä ja kirjoita arvo väliltä 0-300 kenttään leveys." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Ole hyvä ja kirjoita lomakkeen kuvaus." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Oletuslomaketta ei voida poistaa." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Ole hyvä ja valitse mihin lomakkeeseen tämä kenttä lisätään." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Ole hyvä ja valitse mihin lomakkeeseen tämä kenttä lisätään." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Lomakkeen nimikentän täytyy olla vähintään 3 ja korkeintaan 100 merkkiä pitkä." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Ole hyvä ja kirjoita kentän nimi." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Lomake tällä otsikolla on jo olemassa. Ole hyvä ja valitse uusi." diff --git a/application/i18n/po/po-fi/imap.po b/application/i18n/po/po-fi/imap.po new file mode 100644 index 0000000000..b97eae6d92 --- /dev/null +++ b/application/i18n/po/po-fi/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-fi/installer.po b/application/i18n/po/po-fi/installer.po new file mode 100644 index 0000000000..beafb3c167 --- /dev/null +++ b/application/i18n/po/po-fi/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-fi/layer.po b/application/i18n/po/po-fi/layer.po new file mode 100644 index 0000000000..0159f877d5 --- /dev/null +++ b/application/i18n/po/po-fi/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-fi/libraries.po b/application/i18n/po/po-fi/libraries.po new file mode 100644 index 0000000000..2d5dc4021c --- /dev/null +++ b/application/i18n/po/po-fi/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-fi/maintenance.po b/application/i18n/po/po-fi/maintenance.po new file mode 100644 index 0000000000..61d9110dc1 --- /dev/null +++ b/application/i18n/po/po-fi/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-fi/message.po b/application/i18n/po/po-fi/message.po new file mode 100644 index 0000000000..3efaccf364 --- /dev/null +++ b/application/i18n/po/po-fi/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-fi/mhi.po b/application/i18n/po/po-fi/mhi.po new file mode 100644 index 0000000000..ac0098ccf1 --- /dev/null +++ b/application/i18n/po/po-fi/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-fi/notifications.po b/application/i18n/po/po-fi/notifications.po new file mode 100644 index 0000000000..f3973bba75 --- /dev/null +++ b/application/i18n/po/po-fi/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-fi/page.po b/application/i18n/po/po-fi/page.po new file mode 100644 index 0000000000..3343f0c554 --- /dev/null +++ b/application/i18n/po/po-fi/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-fi/permissions.po b/application/i18n/po/po-fi/permissions.po new file mode 100644 index 0000000000..82a9ac0d1e --- /dev/null +++ b/application/i18n/po/po-fi/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-fi/private_message.po b/application/i18n/po/po-fi/private_message.po new file mode 100644 index 0000000000..987c99ba1a --- /dev/null +++ b/application/i18n/po/po-fi/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-fi/report.po b/application/i18n/po/po-fi/report.po new file mode 100644 index 0000000000..706acd380e --- /dev/null +++ b/application/i18n/po/po-fi/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-fi/reporters.po b/application/i18n/po/po-fi/reporters.po new file mode 100644 index 0000000000..5fbfea6427 --- /dev/null +++ b/application/i18n/po/po-fi/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-fi/reports.po b/application/i18n/po/po-fi/reports.po new file mode 100644 index 0000000000..076c1b5574 --- /dev/null +++ b/application/i18n/po/po-fi/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-fi/roles.po b/application/i18n/po/po-fi/roles.po new file mode 100644 index 0000000000..b33e3f6aa3 --- /dev/null +++ b/application/i18n/po/po-fi/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-fi/settings.po b/application/i18n/po/po-fi/settings.po new file mode 100644 index 0000000000..ea35ab97be --- /dev/null +++ b/application/i18n/po/po-fi/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Finnish (http://www.transifex.com/projects/p/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-fi/sharing.po b/application/i18n/po/po-fi/sharing.po new file mode 100644 index 0000000000..cc7eb9910b --- /dev/null +++ b/application/i18n/po/po-fi/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-fi/stats.po b/application/i18n/po/po-fi/stats.po new file mode 100644 index 0000000000..c50b7fb8fc --- /dev/null +++ b/application/i18n/po/po-fi/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-fi/tooltips.po b/application/i18n/po/po-fi/tooltips.po new file mode 100644 index 0000000000..a1bb9d3e97 --- /dev/null +++ b/application/i18n/po/po-fi/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-fi/ui_admin.po b/application/i18n/po/po-fi/ui_admin.po new file mode 100644 index 0000000000..0eaef3fed7 --- /dev/null +++ b/application/i18n/po/po-fi/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-fi/ui_main.po b/application/i18n/po/po-fi/ui_main.po new file mode 100644 index 0000000000..3c49b45387 --- /dev/null +++ b/application/i18n/po/po-fi/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# samisepp , 2014 +# Tomi Toivio , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Pääsy" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Pääsyn rajoitukset" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Tilin nimi" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Toiminnot" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivoi" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktiivinen" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Lisää" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Lisää/muokkaa" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Lisää kenttä" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Lisää uusi" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Lisää uusi kategoria" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Lisää käännös" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Ylläpito" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Valitse kaupunki" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Kaikki" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Sallittu" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Sallitut HTML elementit: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "ja" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "Rajapinta" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Hyväksy" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Hyväksytty" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategorian suodatin" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategoria on ollut" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Kategorian nimi" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Lähetä meille palautetta palvelun käyttökokemuksistasi lähettämällä sähköpostia" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Suodattimet" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Kuinka auttaa?" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Kuinka raportoida?" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Luo käyttäjätili nyt saadaksesi hyödyt sivuston lisäominaisuuksista." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Lisää" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Lisätietoja" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Uutiset" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Uutisvirta" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Uutislähde" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Uusi kategoria" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Ylempi kategoria" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Kuvat" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Kuvat ja videot" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Päivitä uutisvirrat" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Raportit (kartalla, listattu aikajärjestyksessä)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Uutislähteen linkki" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Lähettämällä viesti" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Lähettämällä sähköpostia" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Lähettämällä tweetti hashtagillä" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Täyttämällä tämä lomake sivuillamme." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Käyttämällä sovellusta" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Pyydä lisätietoja" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Tyhjennä suodattimet" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Lähetetään" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Näytä" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Näytä kaikki" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Näytä viestit" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Näytetään raportit %1$s to %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Katso lisää" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-fi/upgrade.po b/application/i18n/po/po-fi/upgrade.po new file mode 100644 index 0000000000..f04579ac22 --- /dev/null +++ b/application/i18n/po/po-fi/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-09-04 14:34+0000\n" +"Last-Translator: Henry Addo \n" +"Language-Team: Finnish (http://www.transifex.com/ushahidi/ushahidi-v2/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-fr_FR/alerts.po b/application/i18n/po/po-fr_FR/alerts.po new file mode 100644 index 0000000000..9026fbc0d8 --- /dev/null +++ b/application/i18n/po/po-fr_FR/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Adresse email invalide." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Cette adress email a déjà été enregistrée pour les alertes sur ce lieu" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Le champ e-mail doit être d'au moins 4 caractères et pas plus de 64 longues." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Une adresse email est requise si la case est cochée." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Ce déploiement s'étend à l'intérieur d'un seul pays. S'il vous plaît assurez-vous que l'emplacement d'alerte est dans le pays%s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Position sur la carte invalide." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Position sur la carte invalide." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Position sur la carte invalide." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Position sur la carte invalide." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Le numéro de téléphone de comporte pas le bon nombre de chiffres" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ce numéro de téléphone a déjà été enregistré pour les alertes sur ce lieu." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Numéro de téléphone invalide. Entrez uniquement des chiffres, sans oublier le préfixe international." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Précisez soit voitre numéro de téléphone portable, soit votre adresse email." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Un numéro de téléphone est requis si la case est cochée." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Vous n'avez pas réglé un rayon de validité de la carte." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Vous n'avez pas réglé votre rayon sur la carte." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Vous n'avez pas défini un destinataire pour les alertes." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Vous avez souscrit aux alertes avec les catégories suivantes" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Ce code a été vérifiée avant!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Ce code de vérification n'a pas été trouvé! S'il vous plaît confirmer que vous avez l'URL correcte." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Votre code a été vérifié correctement. Vous allez maintenant recevoir des alertes sur les incidents dès qu'ils se produisent." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Pour confirmer votre demande d'alerte, s'il vous plaît aller à" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Retour à la page Alertes pour créer plus d'alertes" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Votre demande de Alerte Email a été créé et le message de vérification a été envoyé à" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "S'il vous plaît entrez le code de confirmation que vous avez reçu par Email ci-dessous:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Votre demande d' Alerte e-mail n'a PAS été enregistrée!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Votre Demande d' Alerte e-mail a été sauvegardée!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Le système n'a pas pu traiter votre demande de confirmation!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Votre demande d'alerte mobile a été créé et le message de vérification a été envoyé à" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "S'il vous plaît entrez le code de confirmation SMS que vous avez reçu sur votre téléphone mobile ci-dessous:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Votre demande d'alerte mobile n'a PAS été enregistrée!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Votre demande mobile alerte a été sauvegardée!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Ce déploiement n'est pas configuré pour traiter correctement les alertes" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Vous avez reçu ce courriel parce que vous vous êtes inscrit pour recevoir des alertes. Si vous ne souhaitez pas recevoir des alertes futurs aller à" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Vous ne pourrez plus recevoir des alertes de" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Nous n'étions pas capable de vous désabonner. S'il vous plaît confirmer que vous avez l'URL correcte." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertes - vérification" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Vous ne recevrez des alertes à cette localisation jusqu'à ce que vous confirmez votre demande." diff --git a/application/i18n/po/po-fr_FR/auth.po b/application/i18n/po/po-fr_FR/auth.po new file mode 100644 index 0000000000..8d03376ac3 --- /dev/null +++ b/application/i18n/po/po-fr_FR/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Moro , 2013 +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Moro \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Adresse email invalide." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Cette adress email existe déja." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "L'adresse email doit comporter entre 4 et 64 caractères." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Veuillez indiquer une adresse email." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Le nom complet doit comporter entre 3 et 100 caractères." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Veuillez indiquer le nom complet." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Le nom d'utilisateur comporte des caractères invalides." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Le champ mot de passe doit comporter au moins 8 caractères." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "S'il vous plaît vérifiez que vous avez entré les correct e-mail et mot de passe." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "S'il vous plaît entrer le même mot de passe dans les deux champs de mot de passe." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Le champ mot de passe est nécessaire." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Le champ mot de passe doit avoir des caractères alphabétiques, les symboles # et @, des chiffres, des traits de soulignement et des tirets seulement" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Le mot de passe actuel que vous avez entré pour votre compte est incorrect. S'il vous plaît essayez de nouveau." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Le champ mot de passe doit être au moins 8 caractères." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "S'il vous plaît vérifiez que vous avez entré les correct e-mail et mot de passe." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "S'il vous plaît entrer le même mot de passe dans les deux champs de mot de passe." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Le champ mot de passe est nécessaire." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Le champ mot de passe doit avoir des caractères alphabétiques, les symboles # et @, des chiffres, des traits de soulignement et des tirets seulement" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Il ya eu une erreur en essayant de vous connecter. " + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Le mot de passe doit comporter entre 5 et 16 caractères." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Veuillez vérifier le mot de passe." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "S'il vous plaît entrer le même mot de passe dans les deux champs de mot de passe." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Veuillez entrer un mot de passe." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Le serveur d'authentification est en panne. S'il vous plaît réessayer plus tard." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Le champ mot de passe doit avoir des caractères alphabétiques, les symboles # et @, des chiffres, des traits de soulignement et des tirets seulement" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Les deux mots de passe doivent être les mêmes." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Le adresse e-mail que vous avez entré n'est pas une adresse email valide." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Désolé, nous n'avons pas votre adresse e-mail" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Le champ email est obligatoire." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Seul un superadministrateur peut modifier un superadministrateur ou promouvoir un utilisateur à administrateur." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Format rôle non valide." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Le champ de rôle doit être au moins 5 caractères et pas plus de 30 caractères de long." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Veuillez définier au moins un role." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Le rôle doit être ADMINISTRATEUR ou UTILISATEUR." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "La clé pour votre mot de passe perdu n'est pas valide" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Une clé pour votre mot de passe perdu est requise" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "The role de l'administrateur ne peut être modifié." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Le champ profil public URL doit contenir que des chiffres et des lettres." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Ce nom d'utilisateur est déjà pris." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Le nom d'utilisateur doit comporter entre 2 et 16 caractères." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Veuillez vérifier que le nom d'utilisateur est correct." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Veuillez indiquer un nom d'utilisateur." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Le rôle super administrateur ne peut pas être modifié." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Possible attaque CSRF. Avez-vous vraiment l'intention de créer / modifier un utilisateur?" diff --git a/application/i18n/po/po-fr_FR/bug.po b/application/i18n/po/po-fr_FR/bug.po new file mode 100644 index 0000000000..1a2a757751 --- /dev/null +++ b/application/i18n/po/po-fr_FR/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Veuillez entrer un code de sécurité valide." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Veuillez entrer le code de sécurité." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Le champ e-mail ne semble pas contenir une adresse email valide ?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "L\\'e-mail doit contenir entre 4 et 64 caractères." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "L\\'e-mail est obligatoire si la case est cochée." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Le champ d\\'erreur est requise." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Le sujet doit avoir au moins 3 caractères." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Le sujet est obligatoire." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Le nom doit comporter au moins 3 caractères." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Le nom est obligatoire." diff --git a/application/i18n/po/po-fr_FR/category.po b/application/i18n/po/po-fr_FR/category.po new file mode 100644 index 0000000000..607cd40089 --- /dev/null +++ b/application/i18n/po/po-fr_FR/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Le champ «couleur» doit comporter 6 caractères." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Veuillez spécifier une couleur." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Veuillez indiquer une description." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Veuillez vérifier que la taille d\\'upload des images est limitée à 50Ko." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "L\\'image ne ​​semble pas contenir une image valide. Les formats reconnus sont seulement .JPG, .PNG et .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "L\\'image ne ​​semble pas contenir un fichier valide" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Le titre doit comporter entre 3 et 80 caractères." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Veuillez indiquer un titre." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Vous ne pouvez pas sous-catégoriser une catégorie avec des sous-catégories." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "La catégorie parente n\\'existe pas." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "La catégorie parente doit être numérique." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "La catégorie parente ne peut pas être une catégorie spéciale" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "La catégorie parente est requise." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "La catégorie et la catégorie parente ne peuvent pas être les même." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Les catégories spéciales ne peuvent pas être sub-catégorisées." diff --git a/application/i18n/po/po-fr_FR/comments.po b/application/i18n/po/po-fr_FR/comments.po new file mode 100644 index 0000000000..3532d9b598 --- /dev/null +++ b/application/i18n/po/po-fr_FR/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Indiquez un code de sécurité valide" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Indiquez le code de sécurité" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Vous avez entré un code de sécurité erroné." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Le nom doit comporter au moins 3 caractères." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Veuillez indiquer un nom." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Veuillez remplir le champ «commentaire»." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Adresse email invalide." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "L'adresse email doit comporter entre 4 et 64 caractères." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Une adresse email doit être spécifiée si la case est cochée." diff --git a/application/i18n/po/po-fr_FR/contact.po b/application/i18n/po/po-fr_FR/contact.po new file mode 100644 index 0000000000..cc7d75042d --- /dev/null +++ b/application/i18n/po/po-fr_FR/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Veuillez entrer un code de sécurité valide" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Veuillez entrer un code de sécurité valide." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Veuillez entrer le code de sécurité" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Addresse email invalide." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "L'adresse email doit comporter entre 4 et 64 caractères." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Une adresse email est requise si la case est cochée." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Veuillez entrer un message." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Le nom doit comporter plus de 3 caractères." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Veuillez indiquer un nom." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "L'objet doit comporter plus de 3 caractères." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Veuillez indiquer un object." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Il y avais une erreur d'envoi de votre message." diff --git a/application/i18n/po/po-fr_FR/core.po b/application/i18n/po/po-fr_FR/core.po new file mode 100644 index 0000000000..7d5025259f --- /dev/null +++ b/application/i18n/po/po-fr_FR/core.po @@ -0,0 +1,161 @@ +# +# Translators: +# heather leson , 2012 +# Moro , 2013 +# wajdi tayachi , 2012 +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-26 07:46+0000\n" +"Last-Translator: Moro \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "fichier config" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controleur" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "le %s driver de la librairie %s doit implémenter l’interface %s." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "le %s driver de la librairie %s n'a pas pu être trouvé." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "vous pouvez aller à la page d’accueil ou réessayer." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Impossible de compléter la requête" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "le aidee" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Le type de fichier demandé, .%s, n\\'est pas autorisé dans votre fichier de configuration de la vue." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Méthode invalide %s appelée à %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "La propriété %s n\\'existe pas dans la classe %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "bibliothèque" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Le répertoire du journal n\\'est pas accessible en écriture : %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modèle" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi n\\'est pas en mesure de déterminer un dispositif de commande pour traiter cette demande : %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Veuillez définir une route par défaut dans config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "La page que vous avez demandé, %s, n\\'a pu être trouvée." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Signaler ce problème à Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "La demande %s, %s, n\\'a pu être trouvée." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Trace de la pile" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Chargé en {execution_time} secondes, utilise {memory_usage} de mémoire. Généré par Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Il ne peut y avoir qu\\'une seule instance d\\'Ushahidi par demande de page." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Non pris %s: %s dans le fichier %s en ligne %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "vue" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Vous devez définir le nom du fichier avant d\\'appeler la vue de rendu." diff --git a/application/i18n/po/po-fr_FR/database.po b/application/i18n/po/po-fr_FR/database.po new file mode 100644 index 0000000000..8d9cb8f772 --- /dev/null +++ b/application/i18n/po/po-fr_FR/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Erreur base de données: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Table \"%s\" non trouvée dans la base de données. Veuillez vérifier que vous utilisez la version correspondante à celle de votre version d'Ushahidi" diff --git a/application/i18n/po/po-fr_FR/datetime.po b/application/i18n/po/po-fr_FR/datetime.po new file mode 100644 index 0000000000..8cbacc49e8 --- /dev/null +++ b/application/i18n/po/po-fr_FR/datetime.po @@ -0,0 +1,218 @@ +# +# Translators: +# Jonathan Maura , 2012 +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Ven" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Vendredi" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Lun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Lundi" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "sam" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "samedi" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dim" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Dimanche" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Jeu" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "jeudi" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Mardi" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mer" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Mercredi" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Janvier" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Fev" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Fevrier" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Mars" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Avr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Avril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mai" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juin" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juillet" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aou" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Août" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Septembre" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Octobre" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novembre" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Décembre" diff --git a/application/i18n/po/po-fr_FR/feeds.po b/application/i18n/po/po-fr_FR/feeds.po new file mode 100644 index 0000000000..708ff49c65 --- /dev/null +++ b/application/i18n/po/po-fr_FR/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Date" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Le nom du fil doit comporter entre 3 et 70 caractères." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Entrez le nom du fil." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Veuillez entrer l'URL du fil." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Veuillez entrer un URL valide. Ex: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Source" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Titre" diff --git a/application/i18n/po/po-fr_FR/footer.po b/application/i18n/po/po-fr_FR/footer.po new file mode 100644 index 0000000000..ed84c195d3 --- /dev/null +++ b/application/i18n/po/po-fr_FR/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl n'est pas installé sur ce système" diff --git a/application/i18n/po/po-fr_FR/form.po b/application/i18n/po/po-fr_FR/form.po new file mode 100644 index 0000000000..c06d59cb94 --- /dev/null +++ b/application/i18n/po/po-fr_FR/form.po @@ -0,0 +1,125 @@ +# +# Translators: +# cheznouscarte , 2012 +# Cédric Lombion, 2013 +# Rémi Jonquières , 2013 +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 11:50+0000\n" +"Last-Translator: Cédric Lombion\n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "La valeur par défaut saisie dans le champ est invalide." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Le nom du champ doit comporter entre 3 et 200 caractères." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Veuillez indiquer la hauteur du champ, entre 0 et 50" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Vous avez entré un champ «date» invalide." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Veuillez selectionner Oui ou Non pour le champ «date»." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Le nom du champ doit comporter entre 3 et 100 caractères." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Veuillez spécifier le nom du champ." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Le nom de champ que vous avez entré existe déjà. Merci d'en essayer un autre." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Valeur «champ obligatoire» invalide" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Veuillez indiquer si ce champ est obligatoire (Oui ou Non)" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Veuillez sélectionner un type de champ valide." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Veuillez sélectionner un type de champ." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Veuillez indiquer la largeur du champ, entre 0 et 300" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Veuillez entrer une description du formulaire." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Le formulaire pas défault ne peut pas être supprimé." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Veuillez selectionner le formulaire auquel ce champ appartient." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Veuillez selectionner le formulaire auquel ce champ appartient." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Le nom du formulaire doit comporter entre 3 et 100 caractères." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Veuillez entrer le nom du formulaire." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Un formulaire avec ce titre existe déjà. Merci d'en essayez un autre." diff --git a/application/i18n/po/po-fr_FR/imap.po b/application/i18n/po/po-fr_FR/imap.po new file mode 100644 index 0000000000..06f79f66b1 --- /dev/null +++ b/application/i18n/po/po-fr_FR/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Impossible d'ouvrir le flux IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Le service email n'est pas disponible" diff --git a/application/i18n/po/po-fr_FR/installer.po b/application/i18n/po/po-fr_FR/installer.po new file mode 100644 index 0000000000..966e139b0c --- /dev/null +++ b/application/i18n/po/po-fr_FR/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Chemin de base" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Base de données" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Host" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Si vous utilisez Ushahidi sur votre propre ordinateur, le host est généralement \"localhost\". Si vous utilisez Ushahidi à partir d\\'un serveur Web, vous obtiendrez vos informations d\\'hôte de votre fournisseur d\\'hébergement Web." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nom de la base de données" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Le nom de la base de données souhaitée pour installer Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Pour plus d\\'informations, consultez cet article sur le wiki qui parle de bases de données plus en détail." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Langue par défaut (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Chaque déploiement de Ushahidi est livré avec plusieurs traductions (multi-langues). Vous pouvez également ajouter vos propres langues." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Désactiver" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Activer" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "La liste suivante est un résumé des erreurs que nous avons rencontrées." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Emplacement sur votre serveur où vous avez placé vos fichiers Ushahidi. Nous avons détecté automatiquement cette valeur, veuillez vous assurer qu\\'elle est correcte. Si le champ est vide, ne vous inquiétez pas, cela signifie qu\\'Ushahidi est installé dans le répertoire de niveau supérieur." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Terminé" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Général" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Clé API Google" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "N\\'importe qui peut obtenir une clé API. Obtenez la vôtre maintenant" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Retour" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALLATION AVANCEE" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Effectuez tous les réglages de base grâce à ce processus en 5 étapes. Cela inclut le serveur, la carte, le nom du site et les coordonnées." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALLATION BASIQUE" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple et rapide. Tout ce que vous avez besoin est le répertoire racine de votre site et vos informations de base de données. Choisissez cette option si vous voulez démarrer rapidement, vous pouvez toujours configurer le reste plus tard." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Commencer" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Bienvenue sur le processus d\\'installation du serveur Ushahidi. Choisissez le type d\\'installation que vous souhaitez utiliser ci-dessous." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Installation réussie" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Serveur de Mail" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Host du serveur de Mail" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mot de passe du serveur de Mail" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Le mot de passe que vous utilisez habituellement pour vous connecter à votre e-mail" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Port du serveur de Mail" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Ports courants : 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Type de serveur de Mail" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) ou Post Office Protocol (POP). Quelle est la différence ?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Nom d\\'utilisateur du serveur de Mail" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Si vous utilisez Gmail, Hotmail, ou Yahoo Mail, saisir une adresse e-mail complète en tant que nom d\\'utilisateur." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Carte" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Fournisseur de carte" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi fonctionne aussi bien avec un de ces trois fournisseurs de cartographie : Google, Bing ou Open Street Map. Choisissez celui qui a le plus de détails possible dans votre région." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "D\\'autres mesures..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Mot de passe" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Mot de passe de la base de données" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Précédent" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Veuillez redémarrer votre serveur Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Activer ou désactiver le SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Certains serveurs de messagerie vous donnent la possibilité d\\'utiliser le SSL lors de la connexion. L\\'utilisation du protocole SSL est recommandé car il vous donne un niveau de sécurité supplémentaire." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Configurez votre serveur SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Adresse e-mail du site" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Adresse e-mail d\\'alerte" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Lorsque vos visiteurs s\\'inscrivent aux alertes email, ils recevront des courriels à partir de cette adresse. Cette adresse e-mail ne doit pas être la même que l\\'adresse e-mail du site." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "La communication du site par courriel sera canalisé à travers cette adresse" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nom du Site" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Le nom de votre site web" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Slogan du site" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Votre slogan" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Les fichiers et les dossiers énumérés ci-dessous doivent être accessibles en écriture par le serveur web." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Voici les instructions pour changer les permissions de fichiers :

\n" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Avant de commencer, veuillez vous assurer que les fichiers et dossiers suivants sont accessibles en écriture par le serveur web. Cela implique de changer les permissions de fichiers." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Pour l\\'installation, veuillez conserver les informations suivantes à portée de main." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Préfixe de Table" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalement, vous ne modifiez pas le préfixe de table. Cependant, si vous voulez exécuter plusieurs installations Ushahidi sur une seule base de données, vous pouvez le faire en changeant le préfixe ici." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titre" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Pour vous connecter, passez à" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Télécharger les données du rapport" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nom d\\'utilisateur" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Nom d\\'utilisateur de base de données" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "et utiliser les informations d\\'identification suivantes" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Affichez votre site web" diff --git a/application/i18n/po/po-fr_FR/layer.po b/application/i18n/po/po-fr_FR/layer.po new file mode 100644 index 0000000000..1fe3580c03 --- /dev/null +++ b/application/i18n/po/po-fr_FR/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Le champ de couleur doit être de 6 caractères." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Le champ de couleur est nécessaire." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Le champ fichier ne semble pas contenir un fichier valide. Les formats reconnus sont seulement. KMZ et. KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Le champ fichier ne semble pas contenir un fichier valide" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Le champ nom doit avoir au moins 3 caractères et pas plus de 80 de long." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Le champ nom est nécessaire." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Entrer KML, URL ou un fichier est nécessaire." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Vous ne pouvez pas avoir à la fois un fichier KML et une URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Veuillez entrer une URL valide, par exemple http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-fr_FR/libraries.po b/application/i18n/po/po-fr_FR/libraries.po new file mode 100644 index 0000000000..87ae76a40e --- /dev/null +++ b/application/i18n/po/po-fr_FR/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Impossible de se connecter au serveur Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "La réponse de Akismet n\\'a pas pu être récupérée." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "La bibliothèque API : %s pour la classe %s n\\'a pu être trouvée. Veuillez vérifier votre tâche API de table de routage." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Votre clé API Akismet n\\'est pas valide." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Erreur lors de l\\'exécution de la méthode d\\'envoi fopen!
Veuillez vérifier si PHP a le support OpenSSL et si la version de PHP est supérieur à 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Votre message unicode est trop long ! (Longueur actuelle=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Veuillez indiquer une adresse de destination (A)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Veuillez spécifier l\\'adresse source (DE)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Votre message unicode est trop long ! (Longueur actuelle=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Méthode d\\'envoi non pris en charge !" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "La bibliothèque API %s est invalide. Toutes les bibliothèques d\\'API doit être sous-classes de %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Le répertoire %s ne peut pas être supprimé." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Erreur lors de l\\'extraction : %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Le téléchargement de la dernière version d\\Ushahidi a échoué. Code d\\'état HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Le fichier %s n\\'a pas pu être copié." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Le fichier %s ne peut pas être supprimé." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Script de mise à jour d\\'Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Le fichier zip téléchargé d\\'Ushahidi %s, ne peut pas être écrit." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s n\\'est pas disponible dans la classe RiverID." diff --git a/application/i18n/po/po-fr_FR/maintenance.po b/application/i18n/po/po-fr_FR/maintenance.po new file mode 100644 index 0000000000..56ef9213db --- /dev/null +++ b/application/i18n/po/po-fr_FR/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Désolé, notre site est actuellement en maintenance. Veuillez essayer de nouveau dans quelques minutes." diff --git a/application/i18n/po/po-fr_FR/message.po b/application/i18n/po/po-fr_FR/message.po new file mode 100644 index 0000000000..8a714539b9 --- /dev/null +++ b/application/i18n/po/po-fr_FR/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Veuillez taper un code de sécurité valide" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Veuillez taper le code de sécurité" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Adress email invalide" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "L'adresse email doit comporter entre 4 et 64 caractères." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Une adresse email est requise si la case est cochée." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Veuillez entrer un commentaire." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Le nom doit comporter plus de 3 caractères." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Veuillez indiquer un nom." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Numéro de téléphone invalide." diff --git a/application/i18n/po/po-fr_FR/mhi.po b/application/i18n/po/po-fr_FR/mhi.po new file mode 100644 index 0000000000..4ac01dac9a --- /dev/null +++ b/application/i18n/po/po-fr_FR/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Veuillez entrer un code de sécurité valide." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Veuillez entrer le code de sécurité." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Le champ e-mail ne semble pas contenir une adresse e-mail valide." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Veuillez fournir une adresse e-mail valide." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Le message est obligatoire." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Le sujet doit avoir au moins 3 caractères." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Le sujet est nécessaire." diff --git a/application/i18n/po/po-fr_FR/notifications.po b/application/i18n/po/po-fr_FR/notifications.po new file mode 100644 index 0000000000..1a9b6861a3 --- /dev/null +++ b/application/i18n/po/po-fr_FR/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Ce message a été envoyé de votre site web" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login Administrateur" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Un nouveau commentaire vient d'être envoyé sur votre site, en réponse à:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nouveau commentaire" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Un nouvel email vient d'être envoyé sur votre site." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nouvel email" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Un nouveau rapport vient d'être envoyé sur votre site." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nouveau rapport" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Un nouvel SMS vient d'être envoyé sur votre site." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nouveau SMS" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Vous avez reçue une Alerte" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nouvelle Alerte" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Vous avez reçue un message privé" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nouveau Message privé" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Pour répondre veuillez aller à :" diff --git a/application/i18n/po/po-fr_FR/page.po b/application/i18n/po/po-fr_FR/page.po new file mode 100644 index 0000000000..77f794f1fd --- /dev/null +++ b/application/i18n/po/po-fr_FR/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Veillez entrer le titre de la page." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Le titre de la page doit être entre 3 et 150 caractères." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Veuillez entrez le nom de d'onglet de page." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Veuillez entrez la description de la page." diff --git a/application/i18n/po/po-fr_FR/permissions.po b/application/i18n/po/po-fr_FR/permissions.po new file mode 100644 index 0000000000..31115a7e11 --- /dev/null +++ b/application/i18n/po/po-fr_FR/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Arnaud Boilleau , 2014 +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-02-03 21:03+0000\n" +"Last-Translator: Arnaud Boilleau \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Voir les rapports" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Créer/Modifier/Supprimer des rapports" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Approuver les rapports" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Vérifier les rapports" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gérer les commentaires des rapports" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Téléchargez les rapports" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Envoyer les rapports" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gérer les messages" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gérer les messages des reporters" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Voir les stats" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modifier les paramètres" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gérer le panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gérer les utilisateurs" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Gérer les rôles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Pouvez vérifier" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Gérer les vérifications" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Accès admin UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Accès membres UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Supprimer tous les rapports" diff --git a/application/i18n/po/po-fr_FR/private_message.po b/application/i18n/po/po-fr_FR/private_message.po new file mode 100644 index 0000000000..d6e86fb602 --- /dev/null +++ b/application/i18n/po/po-fr_FR/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "L\\'ID parent doit être numérique" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Le champ \"A\" est requis" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "L\\'utilisateur pour lequele vous essayez d\\'envoyer un message n\\'existe pas" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Le sujet est requis" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Le sujet doit contenir entre 3 et 150 caractères" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Le message est requis" diff --git a/application/i18n/po/po-fr_FR/report.po b/application/i18n/po/po-fr_FR/report.po new file mode 100644 index 0000000000..134e3752be --- /dev/null +++ b/application/i18n/po/po-fr_FR/report.po @@ -0,0 +1,395 @@ +# +# Translators: +# Arnaud Boilleau , 2013 +# cheznouscarte , 2012 +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-09-05 16:38+0000\n" +"Last-Translator: Arnaud Boilleau \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "erreur" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Ce déploiement s\\'étend à l\\'intérieur d\\'un seul pays. Veuillez vous assurer que l\\'emplacement du rapport se trouve dans le pays %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "S'il vous plaît entrer une valeur valide pour le champ \"% s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Le champ \"% s\" doit être numérique." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Le champ \"% s\" est nécessaire." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Le champ \"% s\" est n'existe pas." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Le champ \"% s\" ne peut pas être modifié par votre compte." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Le champ \"% s\" doit contenir une adresse email valide." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Le champ \"% s\" doit contenir un numéro de téléphone valide." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Le champ \"% s\" doit contenir une date valide (MM/JJ/AAAA)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Le champ \"% s\" doit contenir une date valide (JJ/MM/AAAA)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Veuillez sélectionner un élément valide à inclure dans le téléchargement." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Veuillez sélectionner un élément valide à inclure dans le téléchargement." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Veuillez sélectionner \"Rapports en attente d\\'approbation\" ou \"Rapports approuvés\" ou les deux." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Veuillez sélectionner \"Rapports en attente d\\'approbation\" ou \"Rapports approuvés\" ou les deux." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Veuillez sélectionner \"Rapports en attente d\\'approbation\" ou \"Rapports approuvés\" ou les deux." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Rapports en Attente de Vérification\" ou \"Rapports Vérifiés\", ou les deux." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Rapports en Attente de Vérification\" ou \"Rapports Vérifiés\", ou les deux." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Rapports en Attente de Vérification\" ou \"Rapports Vérifiés\", ou les deux." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Veuillez sélectionner un type valide de rapport à télécharger." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Veuillez sélectionner un type valide de rapport à télécharger." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Veuillez sélectionner un type valide de rapport à télécharger." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Vous devez sélectionner le format de téléchargement. Sélectionnez soit CSV ou XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Sélectionnez s'il vous plait un format valide pour télécharger vos repports dans" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Le champ FROM date ne semble pas contenir une date valide." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Veuillez entrer un date de validité. Elle ne peut pas être supérieure à aujourd\\'hui." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Veuillez entrer une valeur valide pour approuver le présent rapport" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Veuillez entrer une valeur valide pour approuver le présent rapport" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Champ «am/pm» invalide" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Catégorie invalide" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Veuillez indiquer une catégorie." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "date incorrecte" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "date incorrecte" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Veuillez indiquer la date." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Veuillez indiquer une description." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Format de l'heure invalide" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Veuillez indiquer une heure." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Veuillez entrer une valeur valide pour probabilité d\\'information." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Veuillez entrer une valeur valide pour probabilité d\\'information." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Format des minutes invalide" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Veuillez indiquer les minutes." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "URL de source d'actualité invalide" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Photo de taille supérieure à 2Mo. Veuiller choisir une photo plus petite." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Format de fichier image invalide. Seuls les formats .JPG, .PNG and .GIF. sont acceptés" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Fichier image invalide" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Veuillez entrer une valeur valide pour la fiabilité de la source." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Veuillez entrer une valeur valide pour la fiabilité de la source." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Le titre doit comporter entre 3 et 200 caractères" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Veuillez indiquer un titre." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Attaque CSRF possible. Avez-vous vraiment l\\'intention de créer/éditer un rapport ?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Veuillez entrer une valeur valide pour vérifier ce rapport." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Veuillez entrer une valeur valide pour vérifier ce rapport." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "URL de vidéo invalide" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Format de latitude invalide" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Veuillez indiquer une latitude." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Le champ locale a une valeur incorrecte." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Ce rapport a déjà une traduction dans cette langue." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Le champ locale a une valeur incorrecte." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Le rapport original et la traduction sont dans la même langue." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Les paramètres régionaux sont nécessaires." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Le champ «lieu» doit comporter entre 3 et 200 caractères." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Veuillez indiquer un lieu." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Format de longitude invalide" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Veuillez indiquer une longitude." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Adresse email invalide." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "L'adresse email doit comporter entre 4 et 64 caractères." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Le prénom doit comporter entre 3 et 100 caractères." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Le nom de famille doit comporter entre 3 et 100 caractères." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Le champ TO date ne semble pas contenir une date valide." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Veuillez entrer un identifiant valide à ce jour. Il ne peut pas être supérieure à aujourd\\'hui." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Votre FROM date ne peut pas être plus grand que votre TO date." diff --git a/application/i18n/po/po-fr_FR/reporters.po b/application/i18n/po/po-fr_FR/reporters.po new file mode 100644 index 0000000000..edc9be1dc9 --- /dev/null +++ b/application/i18n/po/po-fr_FR/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "La latitude ne semble pas contenir une latitude valide." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "La latitude est nécessaire. Veuillez cliquer sur la carte pour trouver un lieu." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Le niveau reporter ne semble pas contenir un niveau valide." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Le niveau reporter ne semble pas contenir un niveau valide." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Le champ nom de l\\'emplacement doit contenir entre 3 et 200 caractères." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Le nom de l\\emplacement est requis." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "La longitude ne semble pas contenir une longitude valide." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "La longitude est nécessaire. Veuillez cliquer sur la carte pour trouver un lieu." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Reporter invalide" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Reporter invalide" diff --git a/application/i18n/po/po-fr_FR/reports.po b/application/i18n/po/po-fr_FR/reports.po new file mode 100644 index 0000000000..31d57d2656 --- /dev/null +++ b/application/i18n/po/po-fr_FR/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Alexandre B. <0xfuture@gmail.com>, 2013 +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Veuillez vérifier que vous avez coché un élément" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Veuillez vérifier que vous avez coché un élément" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Les rapports doivent être classés avant d\\'être approuvés" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Vous n\\'avez pas la permission d\\'effectuer cette action" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Vous devez sélectionner un fichier à envoyer." + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Le fichier a envoyer doit être au format .csv ou .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Le champ fichier à envoyer ne semble pas contenir un fichier valide" diff --git a/application/i18n/po/po-fr_FR/roles.po b/application/i18n/po/po-fr_FR/roles.po new file mode 100644 index 0000000000..93c998c41d --- /dev/null +++ b/application/i18n/po/po-fr_FR/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "La Description doit contenir entre 3 et 100 caractères." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "La Description est requise." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Le Nom ne doit contenir que des lettres ou des chiffres." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Le Nom doit contenir entre 2 et 30 caractères." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Le rôle SuperAdmin ne peut pas être modifié." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Le Nom est requis." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Le Niveau d\\'accès doit être un nombre compris entre 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Le Niveau d\\'accès doit être un nombre compris entre 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Les Autorisations doivent être un nombre compris entre 0 - 100." diff --git a/application/i18n/po/po-fr_FR/settings.po b/application/i18n/po/po-fr_FR/settings.po new file mode 100644 index 0000000000..46817b2693 --- /dev/null +++ b/application/i18n/po/po-fr_FR/settings.po @@ -0,0 +1,862 @@ +# +# Translators: +# Arnaud Boilleau , 2013 +# Freddydelanuit Dec , 2013 +# Moro , 2014 +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-14 13:11+0000\n" +"Last-Translator: Moro \n" +"Language-Team: French (France) (http://www.transifex.com/projects/p/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Le champ des commentaires autorisés ne contient pas de valeur valide." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Le champs des commentaires autorisés est nécessaire." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Le champ de retours ne contient pas de valeur valide." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Le champs de retour inclus est nécessaire." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "Le champ de catégorie du flux ne semble pas contenir de valeur correcte." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Un champ de catégorie du flux est requis." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Le champ des alertes autorisées ne contient pas de valeur valide." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Le champ d'alertes autorisées est nécessaire." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Le champ de rapports autorisés ne contient pas de valeur valide." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Le champ de rapports autorisés est nécessaire." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Le champ de partage de statistiques ne contient pas de valeur valide" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Le champ de partage de statistiques est nécessaire." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Nombre d'enregistrements par défaut à récupérer par requête API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Nombre maximal d'enregistrements à récupérer par requête API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Nombre maximal de requêtes API par adresse IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Le champ Akismet ne semble pas contenir de valeur valide." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Le champ Akismet ne semble pas contenir une valeur valide." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Le champ de la Bannière du Site ne ​​semble pas contenir une image valide. Les formats reconnus sont seulement .JPG, .PNG et .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Veuillez vous assurer que la taille de «l'image bannière\" est inférieure à 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "L\\'image bannière ne ​​semble pas contenir un fichier valide." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Le cache des pages est nécessaire." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Le cache des pages ne semble pas contenir une valeur valide." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "La durée de vie du cache des pages ne semble pas contenir une valeur valide." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "La durée de vie du cache des pages est requis." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Il semble que votre serveur n\\'est pas configurer pour gérer les réécritures d\\'URL. Vous aurez besoin de changer la configuration de votre serveur avant de pouvoir activer la réécriture d\\'URL. Voir plus d\\'informations sur la façon d\\'activer la réécriture d\\'URL sur ce message du forum" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Cette option permet à Ushahidi d\\'être accessible pr réécriture d\\'URL (sans \"index.php\" dans l\\'URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Activer la réécriture d\\'URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Réécriture d\\'URL" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Le numéro d'API Clickatell doit comporter moins de 20 caractères." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Veuillez indiquer un numéro d'API Clickatell." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Le mot de passe Clickatell doit comporter entre 5 et 50 caractères." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Veuillez indiquer un mot de passe Clickatell." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Le nom d'utilisateur Clickatell doit comporter moins de 20 caractères." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Veuillez indiquer un nom d'utilisateur Clickatell." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configurer la Carte" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Emplacement par défaut" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Le code couleur ne semble pas contenir une valeur valide." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Le code couleur ne doit pas contenir plus de 6 caractères." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Le code couleur est requis." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Voir la carte par défaut" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Niveau de Zoom par défaut" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Récupérer les villes avec Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Le port du serveur de messagerie est trop long." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Le port du serveur de messagerie ne doit contenir que des chiffres." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Le mot de passe du serveur de messagerie doit contenir entre 5 et 50 caractères." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Le mot de passe du serveur de messagerie est requis." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Le port du serveur de messagerie est trop long." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Le port du serveur de messagerie ne doit contenir que des chiffres." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Le port du serveur de messagerie est trop long." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Le type de serveur de messagerie est requis." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Le nom du serveur de messagerie ne doit pas contenir plus de 50 caractères." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Le nom du serveur de messagerie est requis." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Options de configuration de Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Pour obtenir les informations ci-dessous, vous aurez besoin de créer une nouvelle application Facebook sur " + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Ces paramètres permettent aux utilisateurs de se connecter via Facebook, ceci ne créé pas une application Facebook pour votre déploiement" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Le champ «Google Analytics» doit contenir un identifiant «Web Property» au format UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Activer HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Cette option permet d\\'accéder à Ushahidi en mode non sécurisé; sans \"https://\" en préfixe d\\'URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Cette option permet d\\'accéder à Ushahidi en mode sécurisé; avec https en préfixe d\\'URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Le nombre d'éléments par page (Frontend) n'est pas valide" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Veuillez indiquer le nombre d'éléments par page (Frontend)." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Le nombre d'éléments par page (Admin) n'est pas valide" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Veuillez indiquer le nombre d'éléments par page (Admin)." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "La configuration de votre fournisseur de carte est un processus simple. Sélectionnez un fournisseur, obtenez une clé API du fournisseur du site et entrez la clé API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Niveau de zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Sélectionnez un fournisseur de carte" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Entrez la nouvelle clé API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Obtenez un clé API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "La configuration de votre fournisseur de carte est un processus simple. Sélectionnez un fournisseur, obtenez une clé API du fournisseur du site et entrez la clé API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Fournisseur de carte" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Carte chronologique" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Paramètres de la carte" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Est-ce que ce déploiement Ushahidi s\\'etend sur plusieurs pays ?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Sélectionnez un pays par défaut" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Cliquez et faites glisser la carte pour définir votre postion exacte" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Rapports de groupe sur la carte" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Autoriser les utilisateurs a formuler des commentaires aux rapports" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Inclure les News en flux RSS sur le site web" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Créer une nouvelle catégorie venant de Flux" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Autoriser les utilisateurs de souscrire à des alertes" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Autoriser les utilisateurs à soumettre des rapports" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Clé Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Bannière du Site" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocs par colonne" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache des pages" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Durée de vie du cache des pages" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Activer l\\'archivage" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Copyright du site" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Couleur par défaut pour toutes les catégories" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Icône par défaut pour toutes les catégories" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Supprimer l\\'image en bannière" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Supprimer l\\'icône par défaut" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Afficher la page Contact" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Afficher la page \"Comment aider\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Adresse e-mail d\\'alertes" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Afin de recevoir des informations par e-mai, veuillez configurer vos paramètres de compte de messagerie." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Adresse e-mail du Site" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Articles par page - Intervace Utilisateur" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Articles par page - Interface Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Prévenir les commentaires spam en utilisant Akismet à partir de Automattic.
Vous pouvez obtenir une clé API gratuite en s\\'inscivant sur WordPress.com (compte utilisateur)" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Certificat Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Site Laconica " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Langue du site" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Approuver manuellement les utilisateurs" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Message du Site" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nom du site" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Déploiement privé" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Exiger une confirmation e-mail de l\\'utilisateur" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Envoyer un message de rapport" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Activer les statistiques (Stockés sur le serveur Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Slogan du site" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Fuseau horaire" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Paramètres du Site" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Termes de recherche Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Tags - Séparez par des virgules " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Flux de géolocalisation - Utilisateur Geonames" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "L'adresse email du site n'est pas valide." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "L'adresse email du site doit comporter entre 4 et 100 caractères." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "le nom du site doit comporter entre 3 et 50 caractères." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Veuillez entrer le nom du site." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Le slogan doit comporter entre 3 et 100 caractères." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Veuiller entrer un slogan." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Votre numéro API Clickatell" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Vérifiez votre solde de crédit Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Chargez le solde de crédit" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Votre mot de passe Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Inscrivez-vous à un service Clickatell en cliquant ici" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Entrez vos informations d\\'accès Clickatell ci-dessous" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Votre nom d\\'utilisateur Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS est un logiciel libre open source qui donne la possibilité aux utilisateurs d\\'envoyer et de recevoir des messages texte avec de grands groupes de personnes par téléphones mobiles. Cliquez sur la case ci dessous pour télécharger la dernière application via FrontlineSMS.com" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Télécharger et installer FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Des instructions détaillées sur la façon d'envoyer des SMS à partir de votre installation FronlineSMS sont disponibles à here. L'URL et la clé de l'API ci-dessous sont nécessaires pour mettre en place la synchronisation avec FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Copiez et collez le dans le champ \"Adresse\" FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Copiez et collez le dans le champ FrontlineSMS \"Ushahidi API Key\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Connecter FrontlineSMS à ce déploiement Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Entrer ci-dessous le numéro de téléphone(s) connecté à FrontlineSMS" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Entrer ci-dessous le numéro sans tiret ni +" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Option 1: Utiliser Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Utiliser un service Global SMS" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Options de configuration SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Le premier numéro de téléphone a un format invalide" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Le premier numéro de téléphone ne doit comporter que des chiffres." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Le second numéro de téléphone a un format invalide" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Le second numéro de téléphone ne doit comporter que des chiffres." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Le troisième numéro de téléphone a un format invalide" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Le troisième numéro de téléphone ne doit comporter que des chiffres." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Options de configuration de Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Pour obtenir les informations ci-dessous, vous aurez besoin de créer une nouvelle application Twitter sur " + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Clef utilisateur" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Secret utilisateur" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Jeton d'accès" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Jeton secret d'accès" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Paramètres de test" diff --git a/application/i18n/po/po-fr_FR/sharing.po b/application/i18n/po/po-fr_FR/sharing.po new file mode 100644 index 0000000000..150d073f21 --- /dev/null +++ b/application/i18n/po/po-fr_FR/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Date d'entrée" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Date d'ajout" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Dernier Accès" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Le champ «couleur» doit comporter 6 caractères." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Veuillez indiquer une couleur." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Le nom de partage ne semble pas être valide." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Un nom de partage est nécessaire." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "L'URL du site existe déjà." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "L'URL du site ne semble pas être valide." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Veuillez spécifier l'URL du site." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "L'URL du site est incorrecte." diff --git a/application/i18n/po/po-fr_FR/stats.po b/application/i18n/po/po-fr_FR/stats.po new file mode 100644 index 0000000000..24aa314610 --- /dev/null +++ b/application/i18n/po/po-fr_FR/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Approuvé" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Catégories" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Rapport par Catégorie" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Ce tableau donne une vision linéaire des rapports par catégorie au fil du temps. Faites défiler de gauche à droite pour voir un tableau comparatif des différentes catégories. Passez la souris sur le graphique pour plus de détails." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Choisissez une période." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Pays" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Pays" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Répartition par pays" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Il s\\'agit de la section des statistiques qui contiendra une description générale d\\'ici peu. Pour l\\'instant, parcourez le site à l\\'aide des liens ci-dessus sous la catégorie." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Erreur" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossaire" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Résumé des Hits" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Légende" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pages vues" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Le nombre total de pages que les visiteurs ont vu sur votre site" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Rapports" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Rapports des Catégories" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Rapports des Statistiques" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Rapports des Status" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Rapport de Cartes" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Rapport des Stats" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistiques non mises en place" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mois" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 mois" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 mois" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Tous" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Non approuvés" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visiteurs Uniques" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Le nombre de personnes qui viennent sur votre déploiement. Le nombre de visiteurs uniques est déterminé en utilisant des cookies. Les visiteurs qui n\\'ont pas activé les cookies seront identifiés à l\\'aide d\\'un système heuristique simple prenant en compte l\\'adresse IP, la résolution, le navigateur, plugins, OS, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Non vérifiés" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Vérifié" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Résumé des visiteurs" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visites" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Une visite est un enregistrement d\\'un visiteur unique venant sur le site plus de 30 minutes après sa dernière pages vues." diff --git a/application/i18n/po/po-fr_FR/tooltips.po b/application/i18n/po/po-fr_FR/tooltips.po new file mode 100644 index 0000000000..0675df78f3 --- /dev/null +++ b/application/i18n/po/po-fr_FR/tooltips.po @@ -0,0 +1,587 @@ +# +# Translators: +# Alexandre B. <0xfuture@gmail.com>, 2013 +# Arnaud Boilleau , 2013 +# Lynda AMICHE, 2013 +# Moro , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Cela ajoute un rapport aux catégories additionnelles. Si vous sélectionnez la Catégorie 1 ici et que le rapport est déjà joint à la Catégorie 2, le rapport sera alors dans les deux catégories, 1 et 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Approuver un rapport ou pas. Si approuvé, il apparaîtra publiquement." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Vous serez en mesure d'attribuer un badge à l'utilisateur déclenchant. Choisissez le badge assigné ici." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Il s'agit d'une plage d'heures et / ou minutes entre deux heures au format 24 heures. Si vous entrez un temps plus court dans le deuxième champ, il sera basculé avec le premier. Ces délais doivent être en une seule journée. En outre, ce temps est vérifiée par rapport à l'heure que vous avez configuré sur votre site dans les paramètres du site et pas nécessairement le fuseau horaire de l'utilisateur inteférant avec votre déploiement. Laissez cela à 00 heures 00-00h00 pour ignorer ce qualificatif." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Si vous souhaitez activer les déclencheurs seulement quand une certaine catégorie est utilisée, vous pouvez régler cela ici. Cela permettra à un déclencheur d'être activé si l'une des catégories est utilisée. Pour instace, si vous sélectionnez des catégories 1 et 2 ici et un rapport est présenté à l'aide de catégories 2 et 3, il va passer le test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Si ces actions se produisent sur ​​certains jours de la semaine, réglez-le ici. Gardez à l'esprit de la journée est déterminée par le fuseau horaire configuré sur votre déploiement. Maintenez la touche shift ou de contrôle pour la sélection de plusieurs jours." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Corps de l'e-mail qui sera envoyé." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Sujet de l'e-mail qui sera envoyé." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Le flux peut être tous les flux ou un flux spécifique. Si vous souhaitez un flux spécifiques pour activer un déclencheur, vous voudrez le sélectionner ici. Sinon, laissez su \"tous\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nom d'utilisateur auteur Twitter(ou plusieurs noms d'utilisateurs séparés par des virgules). Si vous souhaitez que le déclencheur ne se déclenche que pour les messages Twitter d'un utilisateur particulier, entrez son pseudo ici (à l'exclusion de @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Vous pouvez choisir de laisser ce champ vide si vous ne voulez plus vérifier les mots clés. Si vous ajoutez des mots ici, vous aurez besoin de les séparer par une virgule (,). Par exemple, si vous souhaitez activer un déclencheur lorsque quelqu'un mentionne «amour» ou «paix» dans leur message, vous voudrez ajouter «amour,paix\" dans la zone des mots clés." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Vous pouvez sélectionner n'importe où ou un emplacement spécifique. Si vous sélectionnez un emplacement spécifique, vous serez invité à tracer un cadre autour de la zone qui qualifie une action. Par exemple, si vous voulez que ce déclencheur soit activé lorsque quelqu'un soumet un rapport au Brésil, vous devrez sélectionner \"zone spécifique\" puis dessiner la zone autour du Brésil. Vous pouvez effectuer ces boîtes aussi petite ou aussi grande que vous le souhaitez. Vous pouvez également dessiner plusieurs boîtes." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Ce qualificatif va activer la règle au bout de la N-ième fois, soit pour l'ensemble de la base d'utilisateurs collectif ou pour chaque utilisateur individuel. Laissez ce champ vide pour l'ignorer." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Ceci est le titre par défaut à ajouter au signalement." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Si tous les qualificatifs ci-dessus sont valides, le déclencheur lancera une réponse. Cela peut aller de l'approbation d'un rapport à l'envoi d'un mail à un utilisateur. Sélectionnez la réponse ici pour activer des options supplémentaires pour les réponses spécifiques." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Si vous sélectionnez \"Déclencheur personnalisé\", l'e-mail sera envoyé à l'utilisateur qui aura effectué l'action. Si vous sélectionnez le bouton radio à côté de la zone de saisie, vous serez en mesure de saisir une adresse email personnalisée. Ceci est utile si vous mettez en place des déclencheurs pour informer les gens lorsque certaines parties de la carte voient des rapports, vérifictions ou une autre activité." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Vous pouvez sélectionner plusieurs jours ici. Les dates sont déterminées par le paramètre de fuseau horaire de déploiement. Par défaut pour toutes les dates, ne sélectionnez pas de dates." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Le déclencheur est la composante de base de la configuration de vos déclencheurs d'action. C'est là que vous déterminez si vous souhaitez que quelque chose se passe lorsque quelqu'un soumet un rapport, effectue un enregistrement, etc Vous serez en mesure de filtrer les réponses à ces actions après en avoir sélectionné une." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "L'utilisateur peut être n'importe qui ou un utilisateur spécifique. Si vous souhaitez seulement que des utilisateurs spécifiques pour activer un déclencheur, vous voudrez les sélectionner ici. Autrement vous voudrez bien laisser «n'importe qui» puisque la plupart des éléments déclencheurs sont mis en place pour tous les utilisateurs interagissant avec le système" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Indiquer si un signalement est vérifié ou non." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Les pages de profil sur ce site utilisent Gravatar. En cliquant sur l'image, vous serez redirigé vers le site Gravatar où vous pouvez changer votre photo de profil." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Sépare chaque valeur avec une virgule, ex. valeur1, valeur2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Séparez chaque valeur par une virgule, par exemple valeur1, valeur2. Dans le cas où vous souhaitez définir une valeur par défaut, mettre fin à votre liste d'options avec par exemple :: Si vous voulez faire valeur3 la valeur par défaut, la liste sera valeur1, valeur2, valeur3 :: valeur3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Sépare chaque choix avec une virgule, ex. Item 1, Item 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Commencez à taper à la liste des membres." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Sujet du message privé" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Message privé" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Vous pouvez sélectionner une couleur qui apparaîtra sous votre photo de profil sur votre profil public. Cette couleur sera également le point de couleur qui apparaît sur ​​la carte pour vos vérifications." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Votre adresse email" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Votre nom" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "S'il est défini, ce sera votre nouveau mot de passe. Laissez ce champ vide si vous souhaitez garder votre mot de passe actuel." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "C'est une exigence lors de la création d'un nouvel utilisateur et sera le mot de passe des utilisateurs. Vous devez inviter votre nouvel utilisateur à changer son mot de passe après s'être connecté pour la première fois." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Choisissez OUI pour recevoir une alerte par email quand un nouveau rapport ou un commentaire est envoyé sur votre site." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Votre mot de passe. Laisser vide si vous ne désirez pas le changer." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Votre profil peut être consulté par n'importe qui sur Internet si vous cochez cette option. C'est aussi la meilleure façon de montrer les rapports que vous avez soumis, vos vérifications, insignes, etc tous sur une seule page." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Ceci est l'adresse ou votre profil public peut être accessible." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Vous ne pouvez pas changer votre nom d'utilisateur." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Les niveaux d'accès sont utilisés pour restreindre l'accès aux données de champ de formulaire personnalisés. Des niveaux d'accès plus élevés peuvent accéder aux champs des niveaux inférieurs. Superadmin a le niveau d'accès le plus élevé (100). Les données publiques sont affichées au niveau de l'accès le plus bas (0). Les membres ont un niveau d'accès 10. Admin est le niveau d'accès 90 par défaut." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Adresse à laquelle seront envoyées les alertes email." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Autoriser les utilisateurs de souscrire à des alertes via le web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Cela permet le regroupement des rapports similaires en un seul point sur la carte" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Autoriser les utilisateurs a formuler des commentaires aux rapports sur le site web principal." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Ceci autorise l'affichage des flux de nouvelles RSS sur le site principal." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Cela permet la création d'une nouvelle catégorie provenant des flux de nouvelles RSS." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Autorise les utilisateurs à envoyer des informations via le formulaire du site web." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Nombre par défaut d\\'enregistrement à extraire par requête API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Nombre maximum d\\'enregistrements à extraire par requête API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Nombre maximum de requêtes de l\\'API par dresse IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "La bannière du site apparaît dans la partie supérieure de la page public de votre site web si le thème que vous utilisez le prend en charge. La taille recommandée pour cette bannière dépendra du thème que vous utilisez. Gardez à l'esprit que cela va remplacer le titre du site et le slogan en haut de la page." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Nombre de blocs colonnes qui seront affichés sur chaque ligne." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Activer ou désactiver la mise en cache. Les pages s'affichent plus rapidement en réduisant les temps de réponse. Nous vous recommandons d'utiliser la mise en cache sur des sites à fort trafic. ** Rappelez-vous que les rapports seront remplis sur les pages publiques sur ​​la base du calendrier que vous définissez ci-dessous (temps de vie du cache)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Définir la durée de vie du cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Ce réglage permet des vérifications sur votre déploiement. Il s'agit d'un type de rapport simplifié qui n'est pas modérée avant qu'il ne passe sur la page d'accueil et nécessite que votre site soit configuré d'une certaine manière. Lorsque vous activez cette option, assurez-vous que votre réglage de fuseau horaire est UTC et sur ​​votre thème supporte les vérifications. Lorsque vous activez cette option, seul les thèmes type a vérifier seront activées sous vos addons / page Paramètres des thèmes." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Configurez la carte pour couvrir un emplacement spécifique." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Définir une couleur pour toutes les catégories sur ce site." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Défini une icône pour toutes les catégories sur ce site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Ceci est le pays depuis lequel le site web a été déployé." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Visibilité de l'onglet Contact." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Activer ou désactiver l'onglet Comment Aider sur le site principal." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Ceci est le nombre de signalements affichés par page sur le site principal." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Ceci est le nombre de signalements affichés par page sur l'interface d'administration." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "C'est le lieu pour les messages entrants." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Cela permet de synchroniser les messages avec la plate-forme Ushahidi." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Numéros de téléphones sur lesquels les messages sont reçus." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Suit les visiteurs de votre site. Obtenez des statistiques détaillées pour les visiteurs." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "La langue utilisée sur votre site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Si vous définissez cette option à oui, vous devez approuver chaque utilisateur individuel qui crée un compte sur votre site en leur attribuant des rôles (c.-à-Membre, Admin, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Ceci définit la carte qui doit être utilisée sur le site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Cela montre une ligne temporelle basé sur la date et l'heure de soumission des rapports" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "La définition de cette valeur sur vrai ou oui rendra votre déploiement privé de sorte que seuls les utilisateurs disposant de comptes que vous spécifiez seront en mesure d'accéder au déploiement." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Les utilisateurs recevront par courriel avec un lien de confirmation à cliquer avant qu'ils ne soient autorisés à se connecter sur le déploiement si ce paramètre est réglé sur Oui. Si vous activez cette option après que votre déploiement ai été accepté par les utilisateurs, ils seront invités à confirmer leur compte avant qu'ils ne soient autorisés à continuer à l'utiliser." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "C'est ici que résident les e-mails" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "C'est le mot de passe pour l'adresse e-mail qui reçoit des rapports." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Cela est nécessaire pour accepter des connexions entrantes à partir de l'adresse e-mail." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Ceci est requis pour améliorer la sécurisation de la connexion." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Cela est nécessaire pour récupérer les e-mails à partir du serveur hôte." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Ceci est l'adresse e-mail qui recevra les signalements." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Les statistiques sont stockés sur un serveur contrôlé par Ushahidi. En activant cette option, vous aurez accès aux statistiques directement dans votre panneau d'administration. En désactivant, vous allez arrêter de collecter des statistiques et ne serez pas en mesure de récupérer les statistiques de trafic collectées pendant que cette option est désactivée." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Ce que les autres ont le droit de publier de textes, images, vidéo et / ou des thèmes de conception que vous et vos utilisateurs créez? Aller à https://creativecommons.org/choose/ si vous êtes intéressé à préciser ce que les autres sont capables de faire avec votre travail. Et n'oubliez pas d'être précis sur les éléments du site, que vous soumettez à licence!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Adresse email à laquelle les rapports et les messages seront envoyés." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Ceci est un texte qui apparaîtra au-dessus de la carte sur la page d'accueil. Ceci est utile pour donner des informations importantes pour les visiteurs sur le site. Pour supprimer la boîte, il suffit de supprimer le message ici." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Nom de votre site (visite en haut de la page principale)." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "C'est un message qui s'affichera sur la page de soumission de rapport. C'est utile pour les avertissements ou des instructions supplémentaires pour vos visiteurs qui font des rapports." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Décrivez votre site en quelques mots." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "C'est le fuseau horaire que votre site va opérer. Cela a un impact sur ​​toutes les actions que vous avez mis en place qui utilisent l'heure et la date, ainsi que l'heure actuelle par défaut pour les rapports sur la partie public et privée du site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Défini le hashtag Twitter qui sera utilisé dans les tweets." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-fr_FR/ui_admin.po b/application/i18n/po/po-fr_FR/ui_admin.po new file mode 100644 index 0000000000..3bf4e01312 --- /dev/null +++ b/application/i18n/po/po-fr_FR/ui_admin.po @@ -0,0 +1,1662 @@ +# +# Translators: +# Arnaud Boilleau , 2014 +# cheznouscarte , 2012 +# Freddydelanuit Dec , 2013 +# Moro , 2013 +# wajdi tayachi , 2012 +# Thierry Gaillou , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-02-03 21:09+0000\n" +"Last-Translator: Arnaud Boilleau \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Accès refusé. Vos identifiants ne sont pas valides, ou votre demande est refusée" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Accès refusé. Votre demande dépasse les limites fixées (par ex: temps). Réessayez plus tard." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Niveau d'accès" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Ajouter à Catégorie" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "ajouté" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "ajouté/modifié" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Ajouts" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrateur" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertes" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertes reçues" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Tout" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonyme" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "n'importe qui" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "n'importe où" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API bloquée" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Logs de l'API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Réglage API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "AUTORISER" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "AUTORISER TOUT" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "accepté" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Approuver Automatiquement" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Approuver Manuellement" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archivé" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Etes-vous sûr que vous voulez" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Êtes-vous sûr de vouloir supprimer cet élément?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Êtes-vous sûr de vouloir supprimer cette photo?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Etes-vous sûr que vous voulez changer de formes?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "affecter" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "affectation" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "affecter Badge" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Auteur" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email de l'auteur" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Revenir" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Interdire IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre Temps" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloques" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Body" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Annuler" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Catégories" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Error d'affichage du graphe" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Veuillez vérifier que votre message est valide" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Veuillez vérifier que le nombre est valide" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Veuillez vérifier les réglages SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Vérifier les Détails" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Vérifier" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Villes chargées" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "Code" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Version du code incorrecte." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Couleur" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Commentaires" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Votre code de confirmation des alertes est: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "L'utilisateur a été" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Compte" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Pays non trouvé" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "créé/édité" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Créer un rapport" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Mise à jour critique" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Actuellement Actif" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Actuellement Inactif" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Vous n'avez pas les autorisations suffisantes pour modifier les champs personnalisés suivants." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Journalier" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Tableau de bord" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "base de données" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Date et heure" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Date d'ajout" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Date de modification" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Jours de la semaine" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Version de base de donnée incorrecte." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "effacé" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Effacer" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Supprimer tous les rapports" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Supprimer Badge" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demonstration" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "description" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Désactivé" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Démarrer Diviseur" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Fin Diviseur" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Télécharger les rapports" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Menue déroulant" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "RÉVISÉ" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Modifié par" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Modifier" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Voir les changements" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Courrier électronique" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Tout le collectif" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Erreur de géocodage! Erreur HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "La Library PHP IMAP n'est pas installée" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Certificat incorrect" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Erreur" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Erreur, impossible d'envoyer l'incident" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Toutes les 6 heures" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Toutes les 12 heures" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Expérimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "fil" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Réactions" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "fils" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Liste des choix" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valeur par défaut" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Type de données" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Marqueur" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numérique" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Texte Libre" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Hauteur (nombre de lighes)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "champ masqué" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Nombre maximal de caractères" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nom du champ" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "basculer" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Non" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Oui, Fermé par défaut" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Oui, Ouvert par défaut" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Impossible de trouver le fichier transmis" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Impossible de lire le fichier" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ce formulaire n'existe pas!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Texte libre" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Champs Date" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Champs Boutons Radio" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Champs Cases à cocher " + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "champ déroulant" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Temps dépassé pour Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Demander de l'aide" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obtenir plus de thèmes" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obtenez plus de plugin" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Ajouter/Modifier" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Courrier électronique" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Administration des utilisateurs" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rôle" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Utilisateur" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Aide" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "toutes les heures" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Fil d'incidents pour:" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Le dossier d'installation existe toujours. Supprimez le dossier d'installation. Il s'agit d'une vulnérabilité de sécurité potentielle." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Deployment" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Deployments" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Détails de l'deployment" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Paramètre non valide" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Addresse IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Est-ce un champ Date?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Qui peux voir les réponses" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Qui peut soumettre des réponses" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "mot-clé" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "mot-clé" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Addresse email:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nom complet:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Mot de passe:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rôle:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nom d'utilisateur:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Couches" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderateur" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Se déconnecter" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Journaux" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Administrer" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Gérer les rôles et les autorisations" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Administrer les utilisateurs" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Ajouter / Modifier les utilisateurs" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Gérer votre Liste publique" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marquer Comme" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "spécifié comme n'étant pas du spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "spécifié comme étant du spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "pas de documents correspondants" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Message" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Messages" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Messages Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Messages Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Votre message a bien été envoyé!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minute" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutes" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Paramètre manquant" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderateur" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modifié" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modifier les paramètres de fuseau horaire" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "déplacer vers le bas" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "déplacer vers le haut" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Instances Multiples Hébergées" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Mes Alertes" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Mes vérifications" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Mon profil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Mes Rapports" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr " votes émis" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positif" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negatif" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nom" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Créer une nouvelle alerte" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Créer un nouveau message" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Non" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Ceci est une catégorie spéciale qui ne sera pas affichée dans le formulaire de soumission de rapports pour les utilisateurs. C'est utilisé pour détenir des rapports laissés sans catégories (rapports non catégorisés) suite à une suppression de catégorie." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notification" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Majuscules/minuscules indifferenciées." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Pas trouvé" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Aucune données. Il n'y a aucun résultat à montrer." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Pas d'erreur" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Pas de résultats!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Au comte spécifique" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "page" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "pages" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Page non trouvée" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Désolé, la page que vous voulez voir n'est pas ici.

Avez vous suivi un lien depuis notre site ?
Si vous avez atteint cette page depuis un autre endrtoit de notre site, merci de nous contacter pour que nous puissions corriger cette erreur.

Avez vous suivi un lien depuis un autre site ?
Des liens depuis un autre site peuvent être périmés ou mal rédigés. Indiquez nous de quel site vous arrivez,, et nous pourrons essayer de contacter l'autre site de manière à régler cette question.

Avez vous directement tapé l'URL?
Vous pourriez avoir écrit cette URL de manière incorrecte. Vérifiez que la casse, l'orthographe, etc... sont exacts.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Désolé, la page que vous voulez voir n'est pas ici." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parametres utilisées" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Mot de passe" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Mot de passe réinitialisé" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Cher" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Nous avons reçu une demande de réinitialisation de mot de passe pour" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Pour changer votre mot de passe, cliquez sur le lien ci-dessous (ou copiez-le dans votre navigateur)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Comme demandé, votre mot de passe a été réinitialisé. Votre nouvel identifiant est" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Réinitialisation de mot de passe Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Téléphone" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Veuillez sélectionner" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Les données n'ont pas été envoyées par POST" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Aperçu" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Message" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Message Privé" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Message Privé envoyé" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Sujet" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "à" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Liste Publique" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Qualifications" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "lu(e)" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Pertinance" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Titre du Rapport" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Date d'indication" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Rapporteurs" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveaux de rapporteurs" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Rapports" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Score de réputation" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Obligatoire" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Remise à zéro" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Réponse" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultats" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "retirer" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Ce courriel a déjà un compte géré par CrowdmapID. L\\'utilisateur devra utiliser son mot de passe Crowdmap pour se connecter." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Enregistrer les paramètres" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Recherche" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "rechercher des Rapports" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "recherche de" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "La clé de chiffrement est toujours définie à la valeur par défaut. Ce n'est pas sûr et doit être changée." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Ce site est servis sur HTTP. Cela devrait être réglé sur HTTPS pour une sécurité accrue." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Les instructions sont disponibles sur le wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Sélectionnez le format de téléchargement des rapport souhaité : -" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Choisissez un type de champ ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Sélectionnez un élément" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Vous devez sélectionner un déclencheur avant de pouvoir sélectionner une réponse." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Vous devez sélectionner un déclencheur avant de pouvoir définir une qualification." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Envoyeur" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Envoyer à" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Ce message a été envoyé de votre site web à " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Temps serveur" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Réglages" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Page" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Résultats" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "montré" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Catégorie spéciale" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Ce ci est une catégorie spéciale qui ne sera pas affichée sur le formulaire de soumission de rapport pour les utilisateurs. Elle est utilisée en conjonction avec le \"Reporters de confiance\" caractéristique." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "zone spécifique" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Gouvernera" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistiques" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistiques" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Erreur de récuperation de statistiques!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "jours spécifiques" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Sujet" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Administrateur" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tâche accomplie" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Champ texte" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nom" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Administration des utilisateurs" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Erreur : temps expiré" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "à" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Nombre d'enregistrements" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "à" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traduire les rapports" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "déclencheur" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "déclenchement utilisateur" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "déclencheurs" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "non approuvé" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Inconnu(e)" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "échec inconnu" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "non lu(e)" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Vous ne recevrez plus des alertes de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Cliquer ici pour mettre à jour" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Mettre Ushahidi à jour" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Mettre à jour le statut d'Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Téléchargez Rapports" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "utilisateur" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Utilisateurs" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Vérifié / non vérifié" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Vérifié / Non Vérifié" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Version" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " is disponible." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Encodage vidéo" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Messages Privés" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Voir le site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Voir Rapport" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Bienvenue, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Oui" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Votre recherche de" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Appuyer sur ce bouton dessous effacera TOUS les rapports de la base de données. Vous devez utiliser cette opération avec précaution car elle ne peut être annulée." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Nous vous recomandons de sauvegarder votre base de donnée avec de procéder" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Je suis sûr de vouloir supprimer %s rapports de votre base de données" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Etres vous sûr que vous voulez supprimer tous les raports ?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Il n'y as pas de rapport à supprimer." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Nombre de login" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Dernier login" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Compte confirmé ?" diff --git a/application/i18n/po/po-fr_FR/ui_main.po b/application/i18n/po/po-fr_FR/ui_main.po new file mode 100644 index 0000000000..f3dea91bc5 --- /dev/null +++ b/application/i18n/po/po-fr_FR/ui_main.po @@ -0,0 +1,3177 @@ +# +# Translators: +# Alexandre B. <0xfuture@gmail.com>, 2013 +# Didinus , 2013 +# Arnaud Boilleau , 2013 +# Cédric Lombion, 2013 +# Jonathan Maura , 2012 +# Moro , 2013-2014 +# Robbie MacKay , 2012 +# Robbie MacKay , 2012 +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "à propos" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "accès" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limites d'accès" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nom du compte" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Actions" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Cette action ne peut pas être annulée. Êtes-vous sûr de vouloir continuer?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "activer" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "actif" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "ajouter" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "ajouté par" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Données supplémentaires" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Rapports supplémentaires" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Ajouter / Modifier" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Ajouter un champ" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Ajouter une langue" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Ajouter un nouveau" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Ajouter une nouvelle catégorie" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Ajouter Traduction" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administration" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Recevoir des mises à jour" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alerte-moi si un rapport est déposé dans ou autour de:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Envoyer" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Adresse Email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "entrer adresse Email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "entrer numéro de téléphone mobile avec le code du pays" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Obtenez des Alertes" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "L'alerte a été" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Téléphone mobile:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ou, choisissez un endroit sur la carte ci-dessous et nous allons vous alerter lorsque un rapport est présenté à l'intérieur de 20 kilomètres." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Si vous ne pouvez trouver l’emplacement recherché, bien vouloir cliquer sur la carte pour le repérer" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Fils RSS (copier l'URL ci-dessous)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Choisissez une ville" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "1ère étape: Choisissez votre ville ou lieu:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "2ème étape: Envoyer des alertes à mon:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "3ème étape (Facultative): Choisir catégories" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmer une demande précédente d'alerte" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Votre alerte a été sauvegardée!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Tout" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permis" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr " Les balises HTML autorisées sont :\"% s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Les iframes ne sont autorisés qu'à partir de % s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Toutes catégories" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "tous Les Temps" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "et" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Approuve" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Approuvé" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Rapports approuvés" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Approuver ce rapport" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "approximatif" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archives" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archivé" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascendant" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "à" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "auteur" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Vérification Auto" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Moyenne des Rapports par jour" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "En attente d'approbation" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "En attente de vérification" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "badge" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "badges" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "image Badge" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ou vous pouvez télécharger votre propre image de badge à la place." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "pack Badge" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Sélectionnez un badge" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Parcourir les profils" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Annuler" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Catégories" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Catégorie" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtre des catégories" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "La catégorie a été" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nom de la catégorie" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Modifier la période visée" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "changer le mot de passe" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Changer ma photo" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Choisissez un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Choisissez les données à télécharger" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Ou choisissez votre propre période" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Choisissez le type de champ" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL propre" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Effacer" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Effacer la carte" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Fermer" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Groupes" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "couleur" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "commenter" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Commentaires" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Détails des commentaires" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Vos paramètres ont été sauvegardés!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "configurer" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Vous avez réussi à confirmer votre adresse e-mail! S'il vous plaît connecter ci-dessous." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Vous avez réussi à confirmer votre adresse e-mail! Un administrateur doit approuver votre compte avant de vous logger" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Confirmation par e-mail échoué! Vous pouvez demander un nouvel e-mail ci-dessous." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contactez-nous" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "code de sécurité" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Votre adresse e-mail" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Message" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Votre Message a été envoyé" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Votre Nom" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Votre Numéro de téléphone" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Envoyer Message" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Sujet du message" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2010 Ushahidi.com. Tous droits réservés." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Créer" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Créer/éditer" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Créer nouveau" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Créer un nouveau mot de passe" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Créer un rapport" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Crédibilité" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Mot de passe actuel" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Champs personnalisés" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Information" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Date" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/jj/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Date & Heure" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "Jour" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Désactiver" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Effacer" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Supprimé" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Supprimés" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Supprimer désactivé" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Supprimer la dernière entrée" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "supprimer ce rapport" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Supprimer la sélection" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "supprimer SPAM" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Démo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Description" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descendant" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Exemple: Avenue du Martyr, Bangui" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Détails" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Rapport direct" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Inactif" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Non approuvé" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Téléchargez les rapports" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Télécharger" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Modifier" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editer les champs du formulaire" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Modifier la rapport" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Courrier électronique" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Adresse e-mail" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Configuration Serveur Email" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Host Serveur Email" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mot de passe Serveur Email" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port Serveur Email" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Support SSl Serveur Email" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Type Serveur Email" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "nom d'utilisateur Serveur Email" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "donc vos réglages doivent être associés à cette adresse e-mail" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Afin de recevoir des informations par e-mail,veuillez entrer vos paramètres de compte email ci-dessous. S'il vous plaît noter que les courriels seront reçus à votre" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Certains serveurs nécessitent une adresse email complète" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Mot de passe du compte de messagerie" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "ports habituels: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Exemples: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Activer ou désactiver les connexions SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VIDE---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "à" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Erreur!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Exemple" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Applications Externes" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Lien vidéo externe" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Fil" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Rétroaction" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Donnez-nous svp un retour de votre expérience en envoyant un email à" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Fils" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Le fil a été" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Eléments du flux" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nom du fil" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL du fil" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Champ non-utilisé" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Fichier" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Votre fichier dépasse la taille limite autorisée." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtres" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrage des rapports" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrage des rapports par" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrage des rapports contenant" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Chercher" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Trouver l’emplacement" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Prénom" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Forcer le lancement du Planifieur" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Mot de passe oublié ?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulaire" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulaires" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Description du formulaire" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editer ce formulaire" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Le formulaire a été" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Titre du formulaire" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "À partir de" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nom complet" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Géolocalisation disponible" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Couleur" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Commentaires" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Libellé" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Largeur du trait" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Go" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "A été" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Comment aider?" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Masqué" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Cacher" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Masquer ce message" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Accueil" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "COMMENT TEMOIGNER" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Utilisé pour que les autres utilisateurs puissent vous identifier sur lesite" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Image" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Images" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Image/Icône" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactif" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Boîte de réception" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incident" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidents à proximité" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Lieu de l'incident" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Inclure" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Inclure les catégories" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Inclure les champs personnalisés" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Inclure une description" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Inclure autant de détails que possible" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Inclure la latitude" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Inclure des informations sur l’emplacement" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Inclure la longitude" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Inclure les données personelles" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "les médias entrants" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Évaluation de l'information" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Entrez votre position précise" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Votre compte n'a pas la permission pour pouvoir vous identifier entièrement. Veuillez contacter l'administrateur." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "en réponse à" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Adresse IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Est-ce votre profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "élément" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "éléments" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item_details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Titre de l'élément" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Clé" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Mot-clés" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Ficihier KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Téléverser le fichier KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Langue" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Dernier" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Dernier Mois" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Nom de famille" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Dernière Année" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitude" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Couches" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "d'autres couches" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "La couche a été" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nom de la couche" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL de la couche" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Laisser un commentaire" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Moins d'informations" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Niveau" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Ce niveau a été" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nom du niveau" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limité" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Lien" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Liste" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Rapports de chargement" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Lieu" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Emplacement" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Ville, état et/ou pays" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Se connecter" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Compte créé avec succès. Vous pouvez maintenant vous connecter." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Une confirmation vous a été envoyé sur votre adresse e-mail." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Compte créé. Votre compte doit être approuvé par un administrateur avant de pouvoir vous logger." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Cette adresse email n'existe pas. Merci d'essayer avec une autre ou de créer un compte." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Veuillez cliquer sur votre fournisseur de compte" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Se connecter avec" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-mail et mot de passe" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "S'enregistrer. " + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Créer un compte." + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Merci de vous être enregistré à %1$s. Pour confirmer votre adresse e-mail, suivez s'il vous plait l'adresse URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmation d'inscription" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Un nouvel utilisateur s'est enregistré à %1$s. Pour approuver sont enregistrement suivez s'il vous plait l'URL suivante: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Nouvel Utilisateur Approuvé" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Votre compte utilisateur à été approuvé pour %1$s. Pour vous logger allez à l'URL suivante: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Compte utilisateur approuvé" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Créer maintenant un compte pour avoir accès à plus de fonctionnalités sur le site." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitude" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Carte" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marquer comme lu" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marquer comme non-lu" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Taille maximale" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Médias" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtre Des Médias" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Membres" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gérer votre compte" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Message" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Messages" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Détails du Message" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Message provenant d'une source non numérique:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobile" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modifier" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Changer Date" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mois" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Plus" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Plus d'informations" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Est-ce que ce déploiement Ushahidi s\\'etend sur plusieurs pays" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Vous devez confirmer votre adresse e-mail pour pouvoir accéder à ce déploiement. Si vous avez perdu votre e-mail de confirmation, vous pouvez en demander un nouveau ci-dessous." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nom" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Rapport à proximité" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nouveau" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nouvelles" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Flux de Nouvelles" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Source des nouvelles" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nouvelle catégorie" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nouveau rapport" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Suivant" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Non" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Pas de coches à afficher." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Aucune donnée" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Aucun" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notices" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Non approuvé" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Non approuvé" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Non sélectionné---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Pas un courrier indésirable" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Non spécifié" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Il n'y a aucun rapport" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Aucun résultat" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Off" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Nouvelles officielles et actualité" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "On" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Option" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Optionnel" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Options" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organisation" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organisations" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Description de l'organisation" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Adresse e-mail de l'organisation" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "L'organisation a été" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nom de l'organisation" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Téléphone de l'organisation n°1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Téléphone de l'organisation n°2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Site web de l'organisation" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Description de l'orginal" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Titre de l'orginal" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Autres déploiements" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Boîte d'envoi" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Sortant" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Page" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Pages" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Description de la page" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "La page a été" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Nom de l'onglet de la page" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Titre de la page" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Catégorie parente" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Mot de passe" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Vérifier le mot de passe" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Le mot de passe a été changé avec succès! Veuillez vous connecter ci-dessous." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Mot de passe oublié ?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Vérifiez vos e-mail pour votre nouveau mot de passe." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Rester connecté sur cet ordinateur?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mois précédent" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Année précédente" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "En attente" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "par" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Renseignements personnels" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Téléphone" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Photos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Photos" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Photos et vidéos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "Rechercher l’emplacement en utilisant un nom de lieu ou les coordonnées de latitude et de longitude(format: 38,19, 85,61), ou cliquer sur la carte pour trouver l’emplacement" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Jouer" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Bien vouloir prendre note" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Modules" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Site web du module" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Profil public" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL publique du profil" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Aperçu" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Aperçu de l'élément" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Aperçu du message" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Précédent" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privé" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Couleur du profil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Votre profil a été sauvé" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Statistiques en un coup d’oeil" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Evaluation" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Lire" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Reçu" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Reçu de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Notifications reçues" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Rapports récents" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Rafraichir le flux de nouvelles" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "E-mail enregistré" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Supprimer" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Répondre" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Signaler" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Signalements (à partir de la carte, listés dans l'ordre chronologique)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Signaleur" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Signaleurs" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Date de signalement" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "E-mail du signaleur" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Prénom du signaleur" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Le signaleur a été" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Adresse IP du signaleur" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Nom de famille du signaleur" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Niveau du signaleur" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveaux du signaleur" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Téléphone du signaleur" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Rapports" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Rechercher" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Soumettre" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Signalement relatifs à cet utilisateur" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Catégories" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d signalements" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "date" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Description" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Les rapports seront téléchargés en format CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Fonctionnalités" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Trouver un Lieu près de chez vous" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Prénom" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Nom de famille" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Nom de votre lieu" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Lien de sources de presse" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informations Facultatives" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Transférer les Photos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Retourner à la page des signalements" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Choisir une Ville" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Votre signalement a été envoyé à notre équipe pour analyse. Nous vous tiendrons au courant prochainement si nécessaire." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Soumettre un Nouveau Rapport" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Heure" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Chronologie des rapports" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Titre du Rapport" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Lien Vidéo" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Déclarer un incident" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Détails du rapport" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "En envoyant un SMS à" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "En envoyant un e-mail" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "En envoyant un tweet avec le hashtag" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "En remplissant ce formulaire sur notre site" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "En utilisant un app" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Votre signalement a été sauvé" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titre du signalement" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Demander plus d'informations" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Lieu de la requête" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Requis" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Exigences" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Renvoyer l'e-mail de confirmation" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Réinitialiser" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Réinitialiser tous les filtres" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Réinitialiser le mot de passe" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Récupérer les noms de villes pour le pays sélectionné" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Comptes gérés par le service %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Vous avez déjà un compte géré par CrowdmapID. Essayez d\\'utiliser vos courriel et mot de passe CrowdmapID pour vous connecter." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rôle" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Sauvegarder" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Sauvé" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Sauvegarder et ajouter du nouveau contenu" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Sauvegarder et fermer" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Sauvegarder le rapport" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Planifieur" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Planifieur" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Jour" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Heure" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Historique du planifieur" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minute" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Jour de la semaine" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Rechercher" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Résultats de la recherche" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Code de sécurité" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Tout sélectionner" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Sélectionnez le type de champ" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Sélectionnez un type deformulaires" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Sélectionnez sur la carte" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Sélectionner autant de catégories pertinentes que nécessaire" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Choisissez un élément" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Sélectionnez le thème" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Envoyer" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Envoyer la confirmation" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Envoi à" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Envoyé" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Envoyé par" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adresse du serveur" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Type de serveur" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Service" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nom d'utilisateur du service" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID de l'utilisateur du service" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Partager" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Données partagées" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Le partage a été" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "En cours de partage" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Carte Plus Courte" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Voir" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Voir tous" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Voir les messages" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Afficher les rapports de %1$s à %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Site web" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "adresse e-mail du site web" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL du site web" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Carte Petite" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Désolé, vous n'avez aucun badge." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Source" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nom de la source" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Trier" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Trier par" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL de la source" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Courrier indésirable" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Support SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "De" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Etape" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Soumettre un événement" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Envoyé par %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Envoyer par SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Envoyez votre SMS au" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "sur votre téléphone" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Succès!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importé avec succès" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Surnom" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Sondage" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Système" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Carte Plus Grand" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Port TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Thèmes" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Thème Ushahidi par défaut" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Paramètres du thème" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Ce" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Aujourd'hui" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Ce mois-ci" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Cette semaine" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Cette année" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Ceci est votre profil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "heure" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Titre" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "Jusqu’à" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Aujourd'hui" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Aujourd'hui à" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Jeton" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Nombre de signalements" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traduit" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Description traduite" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Titre traduit" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traduire en" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traduction" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "La traduction a été sauvée" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Rapport de fiabilité" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Genre" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Impossible d'envoyer l'e-mail." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Rapports non classés" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "non lu" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Non vérifié" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Mettre à jour les flux" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Téléversement" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Voir nos guides de téléchargement de rapports" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Guide de téléversement XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Guide de téléversement CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Fichier pour téléversement" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Charger des rapports" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Les colonnes de champs personnalisés doivent avoir leur form_id joint à eux par exemple essai de champ personnalisé, sur le formulaire par défaut, dont l'id est 1, seront Test-1. Pendant l'importation de champ personnalisé, faites en sorte que" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Avec le formulaire ci-dessous, vous pouvez importer des incidents dans le moteur Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Les signalements doivent être envoyés au format CSV ou XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Lorsque l'incident ID existe déjà dans la base de données, l'entrée dans le fichier CSV/XML sera ignorée." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Doit contenir au moins le titre et la date des incidents" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Si l’espace réservé aux indications de latitude et de longitude est vide, l'emplacement sera géocodé avec Geocoder Google" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Si en cours d'importations d'info supplémentaires, à savoir information personnelle et/ou champs personnalisés de formulaires" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Au moins un des champs sur les informations personnelles (nom, prénom, email) doit être renseigné. Les enregistrements vides ne seront pas importés. " + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Les champs avec liste déroulante, boutons radio et case à cocher que vous avez définis correspondent bien aux options fournies pour les champs personnalisés de votre projet" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Les options des Cases à cocher sont séparés par une virgule. Par exemple: si votre choix de fruits est «pommes, mangues et raisins, votre sélection doit être: «des pommes, mangues, raisins»." + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Les valeurs des champs de date sont au format suivant : mm/dd/yyyy - ex : 3rd October 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Un exemple de rapport CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Téléversement réussi" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Téléverser la vidéo" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Utilisateur" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nom d'utilisateur" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Administrateur Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Vérification" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Vérifié" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Rapports vérifiés" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Vérifier" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Vérifiez ce rapport" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Version" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Vidéo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Voir" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Affichage" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Voir tous" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Voir tous les flux" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Voir tous les rapports" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Voir les éléments" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Voir plus" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Voir le profil public" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Voir les signalements" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Voir les Rapports" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Voir la vidéo" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "En attente d'approbation" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "En attente de vérification" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Élargie carte" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulaire web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Largeur" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Oui" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Hier" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Votre tableau de bord" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Votre fichier" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zoom Avant" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zoom Arrière" diff --git a/application/i18n/po/po-fr_FR/upgrade.po b/application/i18n/po/po-fr_FR/upgrade.po new file mode 100644 index 0000000000..4c5cf7f39b --- /dev/null +++ b/application/i18n/po/po-fr_FR/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Alexandre B. <0xfuture@gmail.com>, 2013 +# Moro , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 07:45+0000\n" +"Last-Translator: Moro \n" +"Language-Team: French (France) (http://www.transifex.com/ushahidi/ushahidi-v2/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Donnée saisie invalide. Seuls 0 pour non ou 1 pour oui sont acceptés." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Mise à niveau automatique" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Mises à jour disponibles" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continuer" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Mettre à niveau" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Je suis donc en train de mettre à niveau votre base de données à partir de la version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "vers la nouvelle version de la base données" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Cliquez sur le bouton \"Mettre à niveau\" et laissez la magie opérer." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Si vous voulez faire une sauvegarde de votre base de données, cochez la case suivante." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Sauvegarder la base de données avant de mettre à niveau? (Hautement recommandé)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Mise à niveau de la base de donnée d'Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi a été mis à jour! Avant de continuer, vous devez mettre à jour votre base de données vers la nouvelle version (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Votre base données est à jour." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Mise à niveau échouée sur certains points" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Mise à niveau manuelle" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Statut de la mise à niveau de Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Les instructions suivantes donnent de plus amples détails sur le processus de mise à niveau de votre déploiement Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Télécharger
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Télécharger la construction la plus récent d'Ushahidi à partir de" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Sauvegarde
- .htaccess, ./applications/config/config.php, ./applications/config/database.php et ./applications/config/auth.php files.
- Au cas où il surviendrait un problème imprévu, il est recommandé d'effectuer une sauvegarde complète de votre déploiement Ushahidi.
Copiez les fichiers
- Décompressez le fichier zip téléchargé
- En fonction du système sur lequel tourne votre serveur web, utilisez votre outil/mode préféré (ex : Telnet, FTP, SSH) pour vous connecter à votre serveur web et remplacez les contenus de tous vos répertoires par les plus récents issus de votre nouvelle arborescence.
Mise à jour de la base de données
- Premièrement, déterminez la version de votre schéma de base de données en regardant à la valeur db_version dans les paramètres de table ou en repérant les informations de mise à jour d'Ushahidi en haut de cette page.
- Si vous en êtes à la versions 25, vous avez besoin de mettre à jour de 25 à 26, 26 à 27, 27 à 28 et donc, localement, vers le dernier fichier SQL dans votre répertoire /sql.
- Avec votre gestionnaire de base de données, mettez à jour la base de données en exécutant le fichier upgradex-x.sql approprié.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Etape 3: Rendez-vous dans le dossier sql. Exécutez manuellement les fichier de mise à niveau -.sql en partant de la version actuelle de votre base de données jusqu'au dernier fichier." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Etape 4: Cliquez sur le bouton \"Continuer\" pour mettre à niveau les tables nécessaires." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Pour mettre à niveau automatiquement, veuillez cliquer sur le bouton suivant." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Vous êtes actuellement en train d'utiliser Ushahidi v%1$s avec la version de la base de données %2$d sur %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Mise à niveau" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Pour continuer avec la mise à niveau facile, les informations suivantes sont requises concernant le serveur FTP sur lequel est votre site web." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "Hôte FTP: Exemple: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Mot de passe FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nom d'utilisateur FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Vous avez la dernière version d'Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Vous n'avez pas besoin de mettre à niveau." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Version de la base de données: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Attention: La version du logiciel dans version.php et dans la base de données est introuvable." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Attention: La version de la base de donnée dans version.php et dans la base de données est introuvable." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Base de données:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Téléchargement de la dernière version d'Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Fichier historique" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Téléchargement terminé. Décompression..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Echec du téléchargement." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Décompression terminée. Copie des fichiers..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Échec de la décompression." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copié terminée. Mise à niveau de la base de données..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Echec de la copie des fichiers." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Sauvegarde de la base de données et mise à niveau terminée." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Echec de la sauvegarde de la base de données." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Mise à niveau de la base de données terminée." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Suppression des fichiers téléchargés..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "Mise à niveau terminée. Voirle fichier historique" diff --git a/application/i18n/po/po-ga_IE/alerts.po b/application/i18n/po/po-ga_IE/alerts.po new file mode 100644 index 0000000000..43e1d78961 --- /dev/null +++ b/application/i18n/po/po-ga_IE/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Tá an seoladh ríomhphoist sin cláraithe cheana féin chun foláirimh a fháil don suíomh sin." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Níor roghnaigh tú suíomh bailí ar an mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Níor roghnaigh tú suíomh bailí ar an mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Níor roghnaigh tú suíomh bailí ar an mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Níor roghnaigh tú suíomh bailí ar an mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Níl ga bailí socraithe ar an mapa agat." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Níl ga bailí socraithe ar an mapa agat." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Tá an cód seo fíoraithe cheana féin!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Níor aimsíodh an cód fíoraithe!Deimhnigh go bhfuil an URL ceart agat." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Deimhníodh do chód i gceart. Gheobhaidh tú foláirimh faoi theagmhais de réir mar a tharlaíonn siad." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Chun d'iarratas ar foláireamh a dheimhniú, téigh " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Téigh air ais go dtí an bhileog Foláirimh chun tuilleadh foláireamh a chruthú" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Cruthaíodh d'iarratas ar Foláireamh Ríomhphoist agus seoladh teachtaireacht deimhnithe go dtí" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Iontráil an cód deimhnithe Ríomhphoist a fuair tú thíos:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "NÍOR sábháladh d'Iarratas ar Foláireamh Ríomhphoist!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Sábháladh d'Iarratas ar Fholáireamh ríomhphoist!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Ní raibh an córas in ann d’iarratas deimhnithe a phróiseáil!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Cruthaíodh d'iarratas ar Fholáireamh agus seoladh teachtaireacht deimhnithe go dtí " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Iontráil an cód deimhnithe SMS a fuair tú ar d'fhón póca thíos: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "NÍOR sábháladh d’iarratas ar Fholáireamh Fóin Phóca!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr " Sábháladh d’iarratas ar Fholáireamh Fóin Phóca!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Níl an úsáid seo socraithe i gceart chun foláirimh a phróiseáil" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Fuair tú an ríomhphost seo mar gur liostáil tú le foláirimh a fháil. Mura bhfuil fonn ort foláirimh a fháil amach anseo téigh chuig" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Ní bhfaighidh tú foláirimh arís " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Ní rabhamar in ann tú a dhíliostáil. Deimhnigh go bhfuil an URL ceart agat." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Foláirimh – deimhniú" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Ní bhfaighidh tú foláirimh ar an suíomh seo go dtí go ndeimhníonn tú d'iarratas." diff --git a/application/i18n/po/po-ga_IE/auth.po b/application/i18n/po/po-ga_IE/auth.po new file mode 100644 index 0000000000..72982111be --- /dev/null +++ b/application/i18n/po/po-ga_IE/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Ár leithscéal, tá Cuntas Úsáideora ann cheana féin don seoladh ríomhphoist seo." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Tá an réimse ríomhphoist ag teastáil." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Tá an réimse ainm ag teastáil." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Tá carachtar san ainm úsáideora nach bhfuil ceadaithe." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Caithfidh an réimse deimhnithe phasfhocail meaitseáil leis an réimse pasfhocail." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Ár leithscéal, níl do sheoladh ríomhphoist againn" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Tá an réimse ríomhphoist ag teastáil." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Tá an Ról Formáide neamhbhailí" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Ní mór don réimse róil a bheith 5 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 30 carachtar." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Ní mór duit sainmhiniú a thabhairt ról amháin ar a laghad." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Roghnaigh ról úsáideora nó riarthóra." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Ní féidir ról an riarthóra a mhodhnú." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Ár leithscéal, tá an t-ainm úsáideora sin in úsáid cheana féin." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Ní mór do réimse an ainm úsáideora a bheith 2 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 16 charachtar." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Deimhnigh go bhfuil an t-ainm úsáideora ceart agat." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Tá réimse an ainm úsáideora ag teastáil." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Ní féidir ról an príomhriarthóra a mhodnú." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ga_IE/bug.po b/application/i18n/po/po-ga_IE/bug.po new file mode 100644 index 0000000000..8425dab129 --- /dev/null +++ b/application/i18n/po/po-ga_IE/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Cuir isteach cód slándála bailí, le do thoil" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Cuir isteach an Cód Slándala" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Tá an réimse botúin ag teastáil." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ní mór don réimse ábhair a bheith 3 charachtar ar fhad ar a laghad." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Tá an réimse ábhair ag teastáil." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Tá an réimse ainm ag teastáil." diff --git a/application/i18n/po/po-ga_IE/category.po b/application/i18n/po/po-ga_IE/category.po new file mode 100644 index 0000000000..3862467000 --- /dev/null +++ b/application/i18n/po/po-ga_IE/category.po @@ -0,0 +1,89 @@ +#. extracted from en_US/category.php, ga_IE/category.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/comments.po b/application/i18n/po/po-ga_IE/comments.po new file mode 100644 index 0000000000..a070e49fe6 --- /dev/null +++ b/application/i18n/po/po-ga_IE/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Cuir isteach cód slándála bailí, le do thoil" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Cuir isteach an Cód Slándala" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Tá an réimse ainm ag teastáil." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Tá an réimse nótaí tráchta ag teastáil." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca." diff --git a/application/i18n/po/po-ga_IE/contact.po b/application/i18n/po/po-ga_IE/contact.po new file mode 100644 index 0000000000..2c4df25376 --- /dev/null +++ b/application/i18n/po/po-ga_IE/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Cuir isteach cód slándála bailí, le do thoil" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Cuir isteach an Cód Slándala" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Tá an chosúlacht nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Tá an réimse ríomhphoist ag teastáil má tá tic curtha sa bhosca." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Tá an réimse teachtaireachta ag teastáil." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Tá an réimse ainm ag teastáil." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ní mór don réimse ábhair a bheith 3 charachtar ar fhad ar a laghad." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Tá an réimse ábhair ag teastáil." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ga_IE/core.po b/application/i18n/po/po-ga_IE/core.po new file mode 100644 index 0000000000..62ce3003eb --- /dev/null +++ b/application/i18n/po/po-ga_IE/core.po @@ -0,0 +1,144 @@ +#. extracted from en_US/core.php, ga_IE/core.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/database.po b/application/i18n/po/po-ga_IE/database.po new file mode 100644 index 0000000000..774facb9c3 --- /dev/null +++ b/application/i18n/po/po-ga_IE/database.po @@ -0,0 +1,24 @@ +#. extracted from en_US/database.php, ga_IE/database.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/datetime.po b/application/i18n/po/po-ga_IE/datetime.po new file mode 100644 index 0000000000..b6bf9dc42d --- /dev/null +++ b/application/i18n/po/po-ga_IE/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Luan" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Dé Máirt" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Satharn" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Dé Sathairn" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Domhnach" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Dé Domhnaigh" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Déardaoin" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Déardaoin" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Máirt" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Dé Máirt" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Céadaoin" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Dé Céadaoin" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ean" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Eanáir" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feab" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Feabhra" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Márta" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Márta" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Aib" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Aibreán" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Beal" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Bealtaine" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Meith" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Meitheamh" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Iúil" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Iúil" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Lún" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Lúnasa" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "M. Fómh" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Meán Fómhair" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "D. Fómh." + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Deireadh Fómhair" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Samh" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Samhain" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Noll" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Nollaig" diff --git a/application/i18n/po/po-ga_IE/feeds.po b/application/i18n/po/po-ga_IE/feeds.po new file mode 100644 index 0000000000..18d673ce8f --- /dev/null +++ b/application/i18n/po/po-ga_IE/feeds.po @@ -0,0 +1,49 @@ +#. extracted from en_US/feeds.php, ga_IE/feeds.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/footer.po b/application/i18n/po/po-ga_IE/footer.po new file mode 100644 index 0000000000..9afbe7d551 --- /dev/null +++ b/application/i18n/po/po-ga_IE/footer.po @@ -0,0 +1,19 @@ +#. extracted from en_US/footer.php, ga_IE/footer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/form.po b/application/i18n/po/po-ga_IE/form.po new file mode 100644 index 0000000000..e581e95f39 --- /dev/null +++ b/application/i18n/po/po-ga_IE/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Tá an luach réamhshocraithe a thug tú don réimse seo neamhbhailí." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Ní mór don Réimse Ainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 200 charachtar." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Cuir isteach luach 0-50 don Réimse Airde, le do thoil." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Tá luach neamhbhailí curtha isteach sa Réimse Dáta agat." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Roghnaigh Tá nó Níl don Réimse Dáta, le do thoil." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Ní mór don Réimse Ainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 charachtar." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Cuir isteach an Réimse Ainm, le do thoil." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Tá luach neamhbhailí curtha isteach sa Réimse Ainm agat." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Roghnaigh Tá nó Níl don Réimse atá ag Teastáil, le do thoil." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Roghnaigh Cineál Réimse Bailí, le do thoil." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Roghnaigh Cineál Réimse, le do thoil." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Cuir isteach luach idir 0 agus 300 don Réimse Leithid, le do thoil." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Cuir isteach an Cur Síos ar an bhfoirm, le do thoil." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Ní féidir an foirm réamhshocraithe a scrios." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Roghnaigh an fhoirm lenabhfuil an réimse seo le cur, le do thoil." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Roghnaigh ann fhoirm lena bhfuil an réimse seo le cur, le do thoil." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Ní mór do réimse ainm na foirme a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Cuir isteach ainm na foirme, le do thoil." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ga_IE/imap.po b/application/i18n/po/po-ga_IE/imap.po new file mode 100644 index 0000000000..6e8a5747dd --- /dev/null +++ b/application/i18n/po/po-ga_IE/imap.po @@ -0,0 +1,24 @@ +#. extracted from en_US/imap.php, ga_IE/imap.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/installer.po b/application/i18n/po/po-ga_IE/installer.po new file mode 100644 index 0000000000..9fadeab7c6 --- /dev/null +++ b/application/i18n/po/po-ga_IE/installer.po @@ -0,0 +1,354 @@ +#. extracted from en_US/installer.php, ga_IE/installer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/layer.po b/application/i18n/po/po-ga_IE/layer.po new file mode 100644 index 0000000000..c7ea387423 --- /dev/null +++ b/application/i18n/po/po-ga_IE/layer.po @@ -0,0 +1,59 @@ +#. extracted from en_US/layer.php, ga_IE/layer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/libraries.po b/application/i18n/po/po-ga_IE/libraries.po new file mode 100644 index 0000000000..5ba105c4fd --- /dev/null +++ b/application/i18n/po/po-ga_IE/libraries.po @@ -0,0 +1,109 @@ +#. extracted from en_US/libraries.php, ga_IE/libraries.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/maintenance.po b/application/i18n/po/po-ga_IE/maintenance.po new file mode 100644 index 0000000000..a6be3681a1 --- /dev/null +++ b/application/i18n/po/po-ga_IE/maintenance.po @@ -0,0 +1,19 @@ +#. extracted from en_US/maintenance.php, ga_IE/maintenance.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/message.po b/application/i18n/po/po-ga_IE/message.po new file mode 100644 index 0000000000..df770585a6 --- /dev/null +++ b/application/i18n/po/po-ga_IE/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Cuir isteach cód slándála bailí, le do thoil" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Cuir isteach an Cód Slándála" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Tá an chosúlacht air nach seoladh ríomhphoist bailí atá sa réimse Ríomhphoist?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ní mór don réimse Ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Tá an réimse Ríomhphoist ag teastáil má tá tic curtha sa bhosca." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Tá an réimse nótaí tráchta ag teastáil." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ní mór don réimse ainm a bheith 3 charachtar ar fhad ar a laghad." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Tá an réimse ainm ag teastáil." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Níl an réimse fóin bailí." diff --git a/application/i18n/po/po-ga_IE/mhi.po b/application/i18n/po/po-ga_IE/mhi.po new file mode 100644 index 0000000000..5fcd46f6aa --- /dev/null +++ b/application/i18n/po/po-ga_IE/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Cuir isteach cód slándála bailí, le do thoil" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Cuir isteach an Cód Slándála" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Tá an chosúlacht air nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Cuir isteach seoladh ríomhphoist bailí, le do thoil" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Tá an réimse teachtaireachta ag teastáil." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ní mór don réimse ábhair a bheith 3 charachtar ar fhad ar a laghad." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Tá an réimse ábhair ag teastáil." diff --git a/application/i18n/po/po-ga_IE/notifications.po b/application/i18n/po/po-ga_IE/notifications.po new file mode 100644 index 0000000000..ffb46c6fe9 --- /dev/null +++ b/application/i18n/po/po-ga_IE/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Cuireadh an teachtaireacht seo ó do shuíomh Gréasáin" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Logáil Isteach an Riarthóra" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Tá nóta tráchta nua curtha ar aghaidh chuig do shuíomh Gréasáin mar fhreagra ar:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nóta Tráchta Nua" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Tá ríomhphost nua curtha ar aghaidh chuig do shuíomh Gréasáin" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Teachtaireacht Ríomhphoist Nua" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Tá tuairisc nua curtha ar aghaidh chuig do shuíomh Gréasáin" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Tuairisc Nua" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Tá teachtaireacht téacs nua curtha ar aghaidh chuig do shuíomh Gréasáin" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Teachtaireacht Téacs Nua " + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Tá Foláireamh Nua faighte agat" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Foláireamh Nua!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Tá Teachtaireacht phríobháideach faighte agat" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Teachtaireacht phríobháideach Nua" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Chun freagra a thabhairt téigh go dtí: " diff --git a/application/i18n/po/po-ga_IE/page.po b/application/i18n/po/po-ga_IE/page.po new file mode 100644 index 0000000000..e9c5641f64 --- /dev/null +++ b/application/i18n/po/po-ga_IE/page.po @@ -0,0 +1,34 @@ +#. extracted from en_US/page.php, ga_IE/page.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/permissions.po b/application/i18n/po/po-ga_IE/permissions.po new file mode 100644 index 0000000000..90f57332c1 --- /dev/null +++ b/application/i18n/po/po-ga_IE/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ga_IE/private_message.po b/application/i18n/po/po-ga_IE/private_message.po new file mode 100644 index 0000000000..57f3687173 --- /dev/null +++ b/application/i18n/po/po-ga_IE/private_message.po @@ -0,0 +1,44 @@ +#. extracted from en_US/private_message.php, ga_IE/private_message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/report.po b/application/i18n/po/po-ga_IE/report.po new file mode 100644 index 0000000000..9507df288c --- /dev/null +++ b/application/i18n/po/po-ga_IE/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "earráid!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Roghnaigh, le do thoil, mír bhailí le cur san áireamh san íoslódáil." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Roghnaigh, le do thoil, mír bhailí le cur san áireamh san íoslódáil." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Roghnaigh, le do thoil, cineál tuairisce bailí le híoslódáil." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Roghnaigh, le do thoil, cineál tuairisce bailí le híoslódáil" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Roghnaigh, le do thoil, cineál tuairisce bailí le híoslódáil" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Tá an chosúlacht air nach dáta bailí atá sa réimse 'Ó'?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Cuir isteach Dáta 'Ó' bailí Ní féidir leis a bheith níos mó ná inniu." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Cuir isteach luach bailí do 'Ceadaigh An Tuairisc Seo'" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Cuir isteach luach bailí do 'Ceadaigh An Tuairisc Seo'" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Tá an chosúlacht air nach bhfuil luach bailí sa réimse am/pm?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Tá an chosúlacht air nach bhfuil catagóir bhailí i réimse na catagóire?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Tá an réimse catagóire ag teastáil." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Tá an chosúlacht air nach dáta bailí atá sa réimse dáta?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Tá an chosúlacht air nach dáta bailí atá sa réimse dáta?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Tá an réimse dáta ag teastáil." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Tá an réimse Tuairisce ag teastáil." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Tá an chosúlacht air nach bhfuil uair bhailí i réimse uaire?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Tá réimse uaire ag teastáil." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Cuir isteach luach bailí do Dhóchúlacht Eolais" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Cuir isteach luach bailí do Dhóchúlacht Eolais" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Tá an chosúlacht air nach bhfuil luach bailí sa réimse nóiméid?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Tá an réimse nóiméid ag teastáil." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Tá an chosúlacht air nach bhfuil URL bailí sa réimse nasc foinse nuachta?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Déan cinnte, le do thoil, go bhfuil uasmhéid 2MB ar mhéideanna na ngrianghraf atá á n-uaslódáil." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Tá an chosúlacht air nach fís bhailí atá sa réimse uaslódála grianghraf. Is iad .JPG, .PNG agus .GIF amháin na formáidí a nglactar leo" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Tá an chosúlacht air nach bhfuil comhad bailí sa réimse uaslódála grianghraf." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Cuir isteach luach bailí do 'Iontaofacht Foinse'" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Cuir isteach luach bailí do 'Iontaofacht Foinse'" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Ní mór don réimse teidil a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 200 carachtar" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Tá an réimse teidil ag teastáil." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Cuir isteach luach bailí do 'Deimhnigh An Tuairsc Seo'" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Cuir isteach luach bailí do 'Deimhnigh An Tuairisc Seo'" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Tá an chosúlacht air nach bhfuil URL bailí sa réimse nasc físeáin?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Tá an chosúlacht air nach bhfuil leithead bailí sa réimse leithid?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Tá an réimse leithid ag teastáil. Cliceáil ar an mapa chun suíomh a mharcáil" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Tá luach mícheart sa réimse logchaighdeáin. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Tá aistriúchán don tuairisc seo don teanga seo cheana féin" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Tá luach mícheart sa réimse logchaighdeáin. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Tá an logchaighdeán (Teanga) céanna ag an buntuairisc agus ag an aistriúchán." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Tá an logchaighdeán ag teastáil." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Ní mór do réimse ainm an tsuímh a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó na 200 carachtar." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Tá ainm an tsuímh ag teastáil." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Tá an chosúlacht air nach bhfuil fad bailí sa réimse faid?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Tá an réimse faid ag teastáil. Cliceáil ar an mapa chun suíomh a mharcáil" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Tá an chosúlacht air nach seoladh ríomhphoist bailí atá sa réimse ríomhphoist?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Ní mór don réimse ríomhphoist a bheith 4 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 64 carachtar." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Ní mór don réimse céadainm a bheith 3 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Ní mór don réimse sloinne a bheith 2 charachtar ar fhad ar a laghad agus gan a bheith níos mó ná 100 carachtar." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Tá an chosúlacht air nach dáta bailí atá sa réimse 'GO'?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Cuir isteach Dáta 'GO' bailí. Ní féidir leis a bheith níos mó ná inniu." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Ní féidir an dáta 'Ó' a bheith níos mó ná an dáta 'GO'." diff --git a/application/i18n/po/po-ga_IE/reporters.po b/application/i18n/po/po-ga_IE/reporters.po new file mode 100644 index 0000000000..ab3399615e --- /dev/null +++ b/application/i18n/po/po-ga_IE/reporters.po @@ -0,0 +1,64 @@ +#. extracted from en_US/reporters.php, ga_IE/reporters.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/reports.po b/application/i18n/po/po-ga_IE/reports.po new file mode 100644 index 0000000000..99b06b9c7a --- /dev/null +++ b/application/i18n/po/po-ga_IE/reports.po @@ -0,0 +1,34 @@ +#. extracted from en_US/reports.php, ga_IE/reports.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/roles.po b/application/i18n/po/po-ga_IE/roles.po new file mode 100644 index 0000000000..943a4798b5 --- /dev/null +++ b/application/i18n/po/po-ga_IE/roles.po @@ -0,0 +1,59 @@ +#. extracted from en_US/roles.php, ga_IE/roles.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/settings.po b/application/i18n/po/po-ga_IE/settings.po new file mode 100644 index 0000000000..42d723f423 --- /dev/null +++ b/application/i18n/po/po-ga_IE/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/projects/p/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ga_IE/sharing.po b/application/i18n/po/po-ga_IE/sharing.po new file mode 100644 index 0000000000..0cbb4db40a --- /dev/null +++ b/application/i18n/po/po-ga_IE/sharing.po @@ -0,0 +1,69 @@ +#. extracted from en_US/sharing.php, ga_IE/sharing.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/stats.po b/application/i18n/po/po-ga_IE/stats.po new file mode 100644 index 0000000000..0690a90845 --- /dev/null +++ b/application/i18n/po/po-ga_IE/stats.po @@ -0,0 +1,184 @@ +#. extracted from en_US/stats.php, ga_IE/stats.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-ga_IE/tooltips.po b/application/i18n/po/po-ga_IE/tooltips.po new file mode 100644 index 0000000000..1773381a1b --- /dev/null +++ b/application/i18n/po/po-ga_IE/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ga_IE/ui_admin.po b/application/i18n/po/po-ga_IE/ui_admin.po new file mode 100644 index 0000000000..303b1c33ce --- /dev/null +++ b/application/i18n/po/po-ga_IE/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ga_IE/ui_main.po b/application/i18n/po/po-ga_IE/ui_main.po new file mode 100644 index 0000000000..16522c401e --- /dev/null +++ b/application/i18n/po/po-ga_IE/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Irish (Ireland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ga_IE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga_IE\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Faoi " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Rochtain" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Teorainneacha Rochtana" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Ainm Cuntais" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Gníomhaíochtaí" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ní féidir an Gníomhaíocht seo a chealú. An bhfuil tú cinnte go bhfuil tú ag iarraidh dul ar aghaidh?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Gníomhachtaigh" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Gníomhach" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Cuir leis" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Curtha leis ag" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Tuairiscí Breise" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Cuir leis/Cuir in eagar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Cuir Réimse Leis" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Cuir Teanga Leis" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Cuir Nua Leis" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Cuir Catagóir Nua Leis" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Cuir Aistriúchán Leis" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Riarachán" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Faigh Foláirimh" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "cuir ar an airdeall mé má chuirtear tuairisc i gcomhad, nó timeapll ar" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Sábháil m'fholáirimh" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Seoladh ríomhphoist" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Iontráil seoladh ríomhphoist" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Iontráil uimhir fhóin phóca le cód na tíre" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Faigh Foláirimh" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Fón Póca:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Nó cuir spota ar an mapa thíos agus tabharfaimid foláireamh duit nuair a thagann tuairisc isteach taobh istigh de 20 kiloméadair." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Fothaí RSS (cóipeáil an url thíos)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Roghnaigh cathair" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Céim 1: Roghnaigh do chathair nó suíomh:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Céim 2: Seol foláirimh chuig mo:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Deimhnigh foláireamh déanta roimhe seo" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Tá d'fholáireamh sábháilte!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Gach" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Ceadaithe" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Gach Catagóir" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "agus" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Ceadaigh" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "ceadaithe" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Tuairiscí Ceadaithe" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Ceadaigh an Tuairisc seo" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Garluach" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Cartlann" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "curtha i gcartlann" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "ag" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Údar" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Ag Fanacht ar Fhaomhadh" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Ag Fanacht ar Dheimhniú" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blag" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cuir ar ceal" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Catagóirí" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Catagóir" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Scagaire Catagóire" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Tá an chatagóir seo " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Ainm Catagóire" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Athraigh Mo Phictiúr" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Roghnaigh" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Roghnaigh pointí sonraí chun íoslódáil" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Roghnaigh cineál réimse" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Glan URLanna" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Glan" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Glan an Mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Dún" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "braislí" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Dath" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "nóta tráchta" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "nótaí tráchta" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Sonraí an Nóta tráchta" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Tá do chuid Socruithe sábháilte!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Cumraigh" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Téigh i dTeagmháil Linn" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Cóipcheart © 2010 Ushahidi.com. Gach ceart ar cosaint." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Cruthaigh" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Cruthaigh/Cuir in Eagar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Cruthaigh Nua" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Cruthaigh Tuairisc" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Creidiúnacht" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Sonraí" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Dáta" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(ll/mm/bbbb)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Dáta & Am" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "lá" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Díghníomhachtaigh" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, An Chéinia" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Scrios" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Scriosta" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Scriostaí" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Scrios díchumasaithe" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Scrios an Tuairisc Seo" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Scrios Turscar" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Taispeántas" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Cur Síos" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Sampla: Taobh an teach 15 ar Bhóthar Bhelgard, BÁC 24" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Sonraí" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Tuairisc Dhíreach" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "díchumasaithe" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Neamhcheadaigh" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Íoslódáil Tuairiscí" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Cuir in Eagar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Cuir Réimsí Foirme in Eagar" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Cuir an Tuairisc in Eagar" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "R-phost" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Seoladh Ríomhphoist" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Socruithe Freastalaí Ríomhphoist" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Óstfhreastalaí Ríomhphoist" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Pasfhocal Freastalaí Ríomhphoist" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port Freastalaí Ríomhphoist" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Tacaíocht SSS Freastalaí Ríomhphoist" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Cineál Freastalaí Ríomhphoist" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Ainm Úsáideora Freastalaí Ríomhphoist" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "ionas go bhfuil do shocruithe ceangailte leis an seoladh ríomhphoist seo" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Chun tuairisc a fháil trí ríomhphost, cuir isteach do shocruite ríomhphoist thíos, le do thoil. Tabhair faoi deara go gcuirfear ríomhphoist chuig do " + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Tá seoladh iomlán ríomhphoist ag teastáil ó roinnt freastalaithe" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Pasfhocal Cuntais Ríomhphoist" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Poirt Chomónta: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Samplaí: mail.doshuíomhgréasáin.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Samplaí: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Cumasaigh nó Díchumasaigh Naisc SSS" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "go" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Earráid!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Sampla" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Éire" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Fotha" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Tabhair Aiseolas" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Fothaí" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Tá an fotha seo" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Earraí Fotha" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Ainm Fotha" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL Fotha" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Réimsí nach bhfuil in úsáid" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Comhad" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Scagairí" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Faigh" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Aimsigh Suíomh" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Céad Ainm" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Sceidealóir Rite Faoi Iallach" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "An bhfuil dearmad déanta agat de do phasfhocal?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Foirm" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Foirmeacha" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Cur Síos ar an bhFoirm" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Cuir an Fhoirm Seo in Eagar" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Tá an Fhoirm seo" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Teideal Foirme" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Ó" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Ainm Iomlán" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Suíomh Geo ar fáil" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Haischlib" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Bhí sé" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Cén chaoi le cabhrú" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Cuir i bhfolach" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Cuir an teachtaireacht seo i bhfolach" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Baile" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Conas Tuairisciú a dhéanamh" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Íomhá" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Íomhánna" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Íomhá/Deilbhín" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Neamhghníomhach" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Bosca Isteach" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Teagmhas" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Teagmhais Chóngaracha" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Suíomh an Teagmhais" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Cuir San áireamh" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Cuir Catagóirí San Áireamh" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Cuir Cur Síos San Áireamh" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Cuir an méid sonra agus is féidir san áireamh" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Cuir Leithead san áireamh" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Cuir Eolas an tsuímh san áireamh" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Cuir Fad san áireamh" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Meáin ag teacht isteach" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Measúnú Eolais" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Cuir isteach do shuíomh cruinn" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Mar freagra ar" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Seoladh IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Mír" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "Míreanna" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "sonraí na míre" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Teideal na míre" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Eochair" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Comhad KMZ/KML " + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Uaslódáil Comhad KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Teanga" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Deireanach" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "An Mhí seo caite" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Sloinne" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "An bhliain seo caite" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Leithead" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Sraitheanna" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Sraitheanna Eile" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Tá an tsraith " + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Ainm na Sraithe" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL na Sraithe" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Fag nóta tráchta" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Leibhéal" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Tá an leibhéal seo" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Ainm an leibhéil" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Teoranta" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Nasc" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Suíomh" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Suíomhanna" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Cathair, Contae agus / nó Tír" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Logáil Isteach" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Fad" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marcáil mar Leite" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marcáil nach bhfuil sé léite" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Méain" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Scagaire Meán" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Teachtaireacht" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Teachtaireachtaí" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Sonraí Teachtaireachta" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Fón Póca" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Mionathraigh" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Mionathraigh an Dáta" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "Mí" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Tuilleadh" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Ainm" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Tuairisc Chóngarach" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nua" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nuacht" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Fothaí Nuachta" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Foinse Nua" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Catagóir Nua" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Pasfhocal Nua" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Tuairisc Nua" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Ar Aghaidh" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Níl" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Fógraí" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Níl sé ceadaithe" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Níl sé ceadaithe" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Ní turscar é seo" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Níl sé Sonraithe" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Níl aon torthaí" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Rogha" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Roghnach" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Roghanna" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Eagraíocht" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Eagraíochtaí" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Cur Síos ar an Eagraíocht" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Ríomhphost na nEagraíochta" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Tá an Eagraíocht..." + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Ainm na hEagraíochta" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Fón 1 na hEagraíochta" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Fón 2 na hEagraíochta" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Suíomh Gréasáin na hEagraíochta" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Buneolas" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Bunchur Síos" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Buntheideal" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "OTHER USHAHIDI DEPLOYMENTS" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Bosca Amach" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Ag dul Amach" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Leathanach" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Leathanaigh" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Cur Síos ar an Leathanach" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Bhí an leathanach" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Ainm táib an leathanaigh" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Teideal an leathanaigh" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Máthairchatagóir" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Pasfhocal" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Déan athchló ar do phasfhocal" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "An bhfuil dearmad déanta agat ar do phasfhocal?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Seiceáil do ríomhphost le haghaidh do phasfhocail nua." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "An bhfuil tú ag iarraidh fanacht logáilte isteach ar an ríomhaire seo?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "An Mhí seo caite" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "An Bhliain Seo caite" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Ar Feitheamh" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Eolas Pearsanta Roghnach." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Fón" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Pictiúir" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Pictiúir agus Físeáin" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Cuardaigh do shuíomh agus úsáid ainm suímh de leithead, comhordanáidí faid (formáid: 38.19,-85.61), nó cliceáil ar an mapa go dtí an pointe ceart" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Seinn" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Tabhair faoi deara, le do thoil" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Breiseáin" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Suíomh Gréasáin an Bhreiseáin" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Réamhamharc" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Réamhamharc ar an Earra" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Réamhamharc ar Theachtaireacht" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Roimhe" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Tá do phróifíl sábháilte" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Staitisticí Tapa" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "rátáil" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Léite" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Faigh" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Faigh ó" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Faigh Fógraí" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Na Fógraí is déanaí" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Athnuaigh na fothaí nuachta" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Bain amach" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Freagra" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Tuairisc" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Tuairisceoir" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Tuairisceoirí" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Dáta an Tuairisceora" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Ríomhphost an Tuairisceora" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Céadainm an Tuairisceora" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Tá an Tuairisceoir.." + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Seoladh IP an Tuairisceora" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Sloinne an Tuairisceora" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Leibhéal an Tuairisceora" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Leibhéil an Tuairisceora" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Fón an Tuairisceora" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Tuairiscí" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Brabhsáil" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Cuir Isteach" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Catagóirí" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Dáta" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Cuir Síos" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Íoslódálfar na Tuairiscí i bhformáid CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Ríomhphost" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Faigh Suíomh gar duit" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Céadainm" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Sloinne" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Athscag ainm an tsuímh" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Nasc Foinse Nuachta" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Eolas Roghnach" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Íoslódáil na Pictiúir" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Téigh ar ais go leathanach na dTuairiscí" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Roghnaigh Cathair" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Tá do thuairisc curtha ar aghaidh chuig ár bhfoireann le haghaidh athbhreithnithe. Beimid i dteagmháil leat go gairid más gá.." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Cuir isteach tuairisc nua" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Am" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Amlíne" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Teideal na Tuairisce" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Nasc Físeáin" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Tuairiscigh an Teagmhas" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Sonraí na Tuairisce" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Trí theachtaireacht a sheoladh chuig" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Trí ríomhphost a sheoladh chuig " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Trí thuít a sheoladh leis an haischlib/ na haischlibeanna" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Tríd an fhoirm seo a chomhlánú" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Tá do thuairisc sábháilte" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Teideal na Tuairisce" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Déan iarratas le haghaidh tuilleadh eolais" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Déan iarratais ar shuíomh" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Riachtanais" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Athshocraigh an Pasfhocal" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Aisghabh ainmneacha na gcathracha sa tír roghnaithe" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Ról" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Sábháil" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Sábháilte" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Sábháil agus Dún" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Sábháil an Tuairisc" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Sceideal" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Sceidealóir" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Lá" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Uair" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Loga an Sceidealóra" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Nóiméad" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Lá na Seachtaine" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Cuardaigh" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Torthaí an Chuardaigh" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Cód Slándála" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Roghnaigh Gach Rud" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Roghnaigh Cineál Réimse" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Roghnaigh Cineál Foirme" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Roghnaigh sa mhapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Roghnaigh a mhéad is atá ag teastáil" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Deimhnigh le do thoil go bhfuil earra seiceáilte agat" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Roghnaigh Téama" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Seol" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "á S(h)eoladh chuig" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Seolta" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Seolta Ag" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Seoladh an Fhreastalaí" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Cineál Freastalaí" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Seirbhís" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Ainm úsáideora na seirbhíse" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID úsáideora na seirbhíse" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Comhroinn" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Eolas Comhroinnte" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Tá an chomhroinnt" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Ag Comhroinnt" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Taispeáin" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Taispeáin Gach Rud" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Suíomh Gréasáin" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Seoladh ríomhphoist an tSuímh Ghréasáin" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL an tSuímh" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Foinse" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Ainm na Foinse" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL na Foinse" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Turscar" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Tacaíocht SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Ó" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Céim" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Cuir isteach Tuairisc" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Cuir isteach trí SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Seol do SMS go dtí" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "ar d'fhón" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Rath!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Iompórtáilte go Rathúil" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Sloinne" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Córas" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Port TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Téamaí" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Téama Ushahidi réamhshocraithe" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Téama na socruithe" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "É seo" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Inniu" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "An Mhí seo" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "An Bhliain Seo" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "am" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Teideal" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "go" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Inniu" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Inniu ag" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Aistrithe" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Cur Síos aistrithe" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Teideal Aistrithe" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Aistrigh go" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Aistriúchán" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Tá an t-aistriúchán sábháilte" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Níl sé léite" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Níl sé deimhnithe" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Nuashonraigh Fothaí" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Uaslódáil" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Comhad le uaslódáil" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Uaslódáil Tuairiscí" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "With the form below, you can import incidents into the Ushahidi engine" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Ní mór go mbeidh Teideal an Teagmhais agus Dáta an Teagmhais ann ar a laghad" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Sampla Tuairisc CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,TEIDEAL AN TEAGMHAIS, DÁTA AN TEAGMHAIS, SUÍOMH, CUR SÍOS, CEADAITHE, DEIMHNITHE
\"1\",\"Bás amhrasta i Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Tá trí chás deimhnithe in C. del Uruguay\",\"Bás, Saoranaigh, \",Sea, Sea" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Goid\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Uaslódáil Rathúil" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Úsaideoir" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Ainm Úsáideora" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Riarachán Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Deimhnithe" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Tuairiscí Deimhnithe" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Deimhnigh" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Deimhnigh an Tuairisc Seo" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Leagan" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "trí" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "físeán" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Amharc" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Amhairc" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Féach ar Gach Rud" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Féach ar na fothaí go léir" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Féach ar na tuairiscí go léir" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Féach ar earraí" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Féach ar thuilleadh" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Féach ar thuairisc" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Féach ar thuairiscí" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Infheicthe" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Ag Fanacht ar Fhaomhadh" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Ag Fanacht ar Dheimhniú" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Meáchan" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Tá" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Inné" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ga_IE/upgrade.po b/application/i18n/po/po-ga_IE/upgrade.po new file mode 100644 index 0000000000..41a4a54480 --- /dev/null +++ b/application/i18n/po/po-ga_IE/upgrade.po @@ -0,0 +1,264 @@ +#. extracted from en_US/upgrade.php, ga_IE/upgrade.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-10-07 20:46+0000\n" +"PO-Revision-Date: 2012-10-07 20:46+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ga_IE\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-gl/alerts.po b/application/i18n/po/po-gl/alerts.po new file mode 100644 index 0000000000..b42b422b50 --- /dev/null +++ b/application/i18n/po/po-gl/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# Xan das Bolas , 2013 +# Xan das Bolas , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 15:29+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "O campo de correo non semella conter un enderezo válido." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Este correo xa foi rexistrado para receber alertas desta ubicación." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo de correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O campo de correo é obrigatorio se a caixa de verificación está activada." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Este despregue concerne a un país só. Comprobe que a ubicación da alerta correspóndese a %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Non seleccionou unha ubicación válida no mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Non seleccionou unha ubicación válida no mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Non seleccionou unha ubicación válida no mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Non seleccionou unha ubicación válida no mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "O campo do móvil non semella conter un número de díxitos axeitado." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Este número de móvil xa foi rexistrado para receber alertas desta ubicación." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "O campo do móvil semella non conter un número válido. Introduza só números, incluindo o código do país." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "É obrigado introducir ou ben seu número de móvil ou ben seu enderezo de correo electrónico." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "O campo do móvil é obrigatorio se a caixa de selección está activada." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Non definiu un radio válido no mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Non definiu o seu radio no mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Non definiu un destinatario para as alertas." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Suscribiuse ás alertas das seguintes categorías" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Este código xa foi verificado!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Non se topou este código de verificación! Confirme se o URL é correcto. " + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "O seu código foi verificado correctamente. Dende agora recibirá as alertas sobre incidencias segundo acontezan." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Para confirmar a solicitude de alertas, por favor diríxase a " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Volte á páxina de alertas para crear mais alertas" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "A súa solicitude de alerta por mail foi creada e enviouse unha mensaxe de verificación a " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Introduza o código de verificación recibido por email embaixo: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "A súa solicitude de alertas por email NON foi gardada!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Gardouse a súa solicitude de alertas por email!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "O sistema non puido procesar a súa solicitude de verificación!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "A súa solicitude para Alertas a Móvil foi creada e enviouse unha mensaxe de verificación a " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Introduza o código SMS de verificación que recibiu no seu móvil embaixo: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "A súa solicitude de alertas a móvil Non foi gardada!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Gardouse a súa solicitude de alertas a móvil!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Este despregue non está configurado para procesar correctamente as alertas" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Recibiu este mail ao suscribirse para receber alertas.Se en adiante non as quixera receber diríxase a " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Non ha receber mais alertas de " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Non puidemos desuscribilo. Comprobe que o URL é correcto." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertas - verificación" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Non ha receber alertas desta ubicación ata que a solicitude sexa confirmada." diff --git a/application/i18n/po/po-gl/auth.po b/application/i18n/po/po-gl/auth.po new file mode 100644 index 0000000000..1ea424d513 --- /dev/null +++ b/application/i18n/po/po-gl/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Xan das Bolas , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 19:04+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "O correo que introduciu non é un enderezo válido." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Sentímolo pero xa existe unha conta asignada para ese correo." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "O correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "O correo é obrigatorio." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "O nome debe ter alomenos 3 caracteres de lonxitude e non mais de 100." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "O nome é obrigatorio." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "O nome de usuario contén caracteres non permitidos." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O contrasinal debe ter alomenos 8 caracteres de lonxitude." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Revise que introduciu correctamente o correo e o contrasinal." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Introduza o mesmo contrasinal en ambolos dous campos." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "O contrasinal é obligatorio." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O contrasinal só pode levar caracteres alfanuméricos, amais dos símbolos:#, @, _, -" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "O contrasinal que forneceu para a súa conta é incorrecto. Probe novamente." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O contrasinal debe contar con alomenos 8 caracteres de lonxitude." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Comprobe que introduciu correctamente o correo e o contrasinal." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Introduza o mesmo contrasinal en ambolos dous campos." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "O contrasinal é obrigatorio." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O contrasinal só pode levar caracteres alfanuméricos, amais dos símbolos:#, @, _, -" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Houbo un erro ao tentar iniciar a sesión." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O contrasinal debe contar con alomenos 8 caracteres de lonxitude." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "O contrasinal debe contar con alomenos 8 caracteres de lonxitude." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Introduza o mesmo contrasinal en ambolos dous campos." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "O contrasinal é obrigatorio." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "O servidor de autenticación caeu. Tenteo deiquí a un pedazo." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O contrasinal só pode levar caracteres alfanuméricos, amais dos símbolos:#, @, _, -" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "O contrasinal e a súa confirmación teñen que ser idénticos." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "O correo que forneceu non é un enderezo válido." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Perdoe, pero non temos o seu enderezo de correo" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "O correo é obrigatorio." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Únicamente un superadmin pode modificar a outro ou transformar en admina un usuario." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Formato de rol inválido." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "O rol debe contar con alomenos 5 caracteres de lonxitude e non mais de 30." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Debe definir alomenos un rol." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Debe seleccionar ou ben o rol ADMIN ou ben o rol USER." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "A chave de contrasinal esquencido non é válida." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "É precisa unha chave de contrasinal esquencido" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "O rol de usuario admin non se pode modificar." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "O campo do nome do usuario só pode levar caracteres alfanuméricos." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Sentímolo moito pero este nome de usuario xa está sendo empregado." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "O nome de usuario debe contar con alomenos 2 caracteres de lonxitudee non mais de 100." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Confirme que introduciu o nome de usuario correcto." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "O nome de usuario é obrigatorio." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "O rol de superadmin non se pode modificar." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Tenta crear ou editar un usuario? (Posible ataque CSRF)" diff --git a/application/i18n/po/po-gl/bug.po b/application/i18n/po/po-gl/bug.po new file mode 100644 index 0000000000..af70d1575e --- /dev/null +++ b/application/i18n/po/po-gl/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 19:17+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduza un código de seguridade válido." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Introduza o código de seguridade." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "O correo semella non ser un enderezo válido." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O correo é obrigatorio se a caixa de verificación está activada." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "É obrigado encher o campo erro." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O asunto debe contar con alomenos 3 caracteres de lonxitude." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "O asunto é obrigatorio." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "O nome debe contar con alomenos 3 caracteres de lonxitude." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "O nome é obrigatorio." diff --git a/application/i18n/po/po-gl/category.po b/application/i18n/po/po-gl/category.po new file mode 100644 index 0000000000..878fced234 --- /dev/null +++ b/application/i18n/po/po-gl/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 19:29+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo cor debe contar con alomenos 6 caracteres de lonxitude." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "O campo cor é obrigatorio." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "A descripción é obrigatoria." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Asegúrese de que o tamaño de súbida das imaxes estea limitado a 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "O campo da imaxe semella que non contén unha imaxe válida.Os únicos formatos aceitados son .JPG, .PNG e .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "O campo da imaxe semella que non contén un ficheiro válido" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "O título debe contar con alomenos 3 caracteres de lonxitude e non mais de 80." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "O Título é obrigatorio." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Non pode subcategorizar unha categoría que xa conta con subcategorías propias." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "A categoría nai non existe." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "A categoría nai debe ser numérica." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "A categoría nai non pode ser unha categoría especial" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "A categoría nai é obrigatoria." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "A categoría non pode ser a mesma que a categoría nai." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "As categorías especiais non poden ser subcategorizadas." diff --git a/application/i18n/po/po-gl/comments.po b/application/i18n/po/po-gl/comments.po new file mode 100644 index 0000000000..ef2258961b --- /dev/null +++ b/application/i18n/po/po-gl/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 19:34+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduza un código de seguridade válido." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Introduza o código de seguridade." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Introduciu un código de seguridade errado." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "O nome debe contar con alomenos 3 caracteres de lonxitude." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "O nome é obrigatorio." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Os comentarios son obrigatorios." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Semella que o correo non contén un enderezo válido." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O correo é obrigatorio se a caixa de verificación está activada." diff --git a/application/i18n/po/po-gl/contact.po b/application/i18n/po/po-gl/contact.po new file mode 100644 index 0000000000..4bb1c2d093 --- /dev/null +++ b/application/i18n/po/po-gl/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 19:40+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduza un código de seguridade válido." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Introduza un código de seguridade válido." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Introduza o código de seguridade." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Semella que o correo non contén un enderezo válido." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O Correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O Correo é obrigatorio se a caixa de verificación está activada." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "A mensaxe é obrigatoria." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "O nome debe contar con alomenos 3 caracteres de lonxitude." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "O nome é obrigatorio." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O asunto debe contar con alomenos 3 caracteres de lonxitude." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "O asunto é obrigatorio." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Houbo un erro ao enviar a súa mensaxe." diff --git a/application/i18n/po/po-gl/core.po b/application/i18n/po/po-gl/core.po new file mode 100644 index 0000000000..7fe8285b2d --- /dev/null +++ b/application/i18n/po/po-gl/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-12-02 20:17+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "arquivo de configuración" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controlador" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "O driver %s para a biblioteca %s ten que implementar a interface %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Non se atopa o driver %s para a biblioteca %s." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Pode ir á páxina principal ou tentar de novo." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Non foi posible completar a solicitude." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "asistente" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "A solicitude do tipo de arquivo .%s non é permitida na visualización do ficheiro de configuración." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Método %s inválido solicitado en %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "A propiedade %s non existe na clase %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "biblioteca" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Non se pode escribir no directorio de logs: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modelo" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi non pode atopar un controlador para o procesamento desta solicitude: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Estableza unha ruta por defecto en config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Non foi posible atopar a páxina %s solicitada." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Informe deste atranco a Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "A solicitude %s, %s, non foi topada." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Rastrexo na Pila de Memoria (Stack Trace)" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Cargado en {execution_time} segundos, empregando {memory_usage} de memoria. Xerado por Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ead" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Só pode haber unha instancia de Ushahidi por páxina solicitada." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Excepción non recollida %s: %s no arquivo %s na liña %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "visualizar" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Debe seleccionar a visualización do arquivo antes de renderizalo." diff --git a/application/i18n/po/po-gl/database.po b/application/i18n/po/po-gl/database.po new file mode 100644 index 0000000000..38bacc5072 --- /dev/null +++ b/application/i18n/po/po-gl/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 20:20+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Erro da base de datos: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "A táboa \"%s\" non se atopa na base de datos. Comprobe que está a empregara última versión do motor da base de datos para esta versión de Ushahidi." diff --git a/application/i18n/po/po-gl/datetime.po b/application/i18n/po/po-gl/datetime.po new file mode 100644 index 0000000000..03fb43f8a8 --- /dev/null +++ b/application/i18n/po/po-gl/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 20:26+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Ven" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Venres" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Lun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Luns" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sáb" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sábado" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dom" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Domingo" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Xov" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Xoves" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Martes" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mér" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Mércores" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Xan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Xaneiro" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Febreiro" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marzal" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Abr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Abril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maio" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Xun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Xuño" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Xul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Xullo" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosto" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Set" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Setembro" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Out" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Outubro" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novembro" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Nad" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Nadal" diff --git a/application/i18n/po/po-gl/feeds.po b/application/i18n/po/po-gl/feeds.po new file mode 100644 index 0000000000..2c05b18e3c --- /dev/null +++ b/application/i18n/po/po-gl/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-02 20:42+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "O nome do feed debe contar con alomenos 3 caracteres de lonxitude \n\t\t\t e non mais de 70." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Introduza o nome do feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Introduza o URL do feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Introduza un URL válido, p.ex. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "FONTE" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Título" diff --git a/application/i18n/po/po-gl/footer.po b/application/i18n/po/po-gl/footer.po new file mode 100644 index 0000000000..8f823b7752 --- /dev/null +++ b/application/i18n/po/po-gl/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-05 18:27+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl non se topa instalado no sistema." diff --git a/application/i18n/po/po-gl/form.po b/application/i18n/po/po-gl/form.po new file mode 100644 index 0000000000..e25915ca1e --- /dev/null +++ b/application/i18n/po/po-gl/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-05 18:47+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "O valor por defecto que forneceu para este campo non é válido." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "O Nome do Campo ha ter alomenos 3 caracteres de lonxitude e non máis de 200." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Introduza un valor entre 0 e 50 para a Altura do Campo." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Introduciu un valor inválido para o Campo de Data." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Seleccione Sí ou Non para o Campo de Data." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "O Nome do Campo debe contar con alomenos 3 caracteres de lonxitude e non máis de 100." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Introduza o Nome do Campo." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "O nome do campo que forneceu xa existe neste mesmo formulario.Por favor, introduza outro distinto." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Introduciu un valor inválido para o Campo Obrigatorio." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Seleccione Sí ou Non para o Campo Obrigatorio." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Seleccione un Tipo de Campo válido." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Seleccione un Tipo de Campo." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Introduza un valor entre 0 e 300 para a Anchura de Campo." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Forneza unha Descripción do formulario." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "O formulario predetermiñado non se pode borrar." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Seleccione qué formulario engadir a ese campo" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Seleccione qué formulario engadir a ese campo" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "O nome do campo de formulario debe contar con alomenos 3 caracteres de lonxitudee non máis de 100." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Introduza o nome do formulario." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Xa existe un formulario con ese mesmo título. Por favor, escolla outro." diff --git a/application/i18n/po/po-gl/imap.po b/application/i18n/po/po-gl/imap.po new file mode 100644 index 0000000000..e35ee11360 --- /dev/null +++ b/application/i18n/po/po-gl/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-05 18:52+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Fallo abrindo o fluxo IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Servizo de email non soportado." diff --git a/application/i18n/po/po-gl/installer.po b/application/i18n/po/po-gl/installer.po new file mode 100644 index 0000000000..ff6982920e --- /dev/null +++ b/application/i18n/po/po-gl/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-06 21:26+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Directorio Base" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Base de Datos" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Host da Base de Datos" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Se está a empregar Ushahidi no seu computador, o enderezo será: \"localhost\".Se o aloxa nun servidor web externo, deberá obter a información do provedor do servizo." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nome da Base de Datos" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "O nome da base de datos na que quere instalar o Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Para máis información consulte este artigo da wiki no que se explicao uso das bases de datos mais polo miúdo." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Lingua predetermiñada (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Cada instancia de Ushahidi ven cun conxunto propio de traduccións.Tamén pode engadir a súa propia lingua." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Deshabilitar" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Habilitar" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "A lista seguinte é un resumo dos erros atopados." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "O directorio no servidor onde se teñen copiado os arquivos do Ushahidi.éste dato foi detectado automáticamente, comprobe que é correcto.Se o campo estivera valeiro, non se priocupe: quere dicir que o Ushahidi foi instalado no directorio principal." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Rematado" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Xeral" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Chave API do Google." + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Quenqueira pode facerse cunha chave para a API.Obteña a súa agora." + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Voltar" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALACIÓN AVANZADA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Complete toda a configuración básica nos cinco pasos do proceso.Esto inclúe: servidor, mapa, nome do site e detalles de contacto." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALACIÓN BÁSICA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple e rápida. Todo o que precisa é a ruta do directorio principal do seu website e a información da base de datos. Escolla esta opción se quere poñer todo a andar axiña. O resto de configuracións sempre pode rematalas logo." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Continuar" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Benvida/o ao proceso de instalación do Ushahidi. Escolla de seguido qué tipo de instalación quere empregar." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalación Correcta" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Servidor de Correo" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Host do Servidor de Correo" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemplos: mail.oseusite.org, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Contrasinal do Servidor de Correo" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "O contrasinal que emprega normalmente para acceder ao seu email" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Porto do Servidor de Correo" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Portos Comúns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipo de Servidor de Correo" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP).Cál é a diferencia?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Nome de Usuaria/o do Servidor de Correo" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Se emprega unha conta de Gmail, Hotmail ou Yahoo Mail, introduza o correo completo como nome de usuaria/o" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Provedor do Mapa" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi traballa igualmente ben con calquera destes tres provedores de mapas: Google, Bing ou Open Street Map. Escolla o que proporcione maior detallena súa zona." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Outros pasos..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Contrasinal" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Contrasinal da base de datos" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Anterior" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Reinicie o seu servidor Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Activar ou desactivar SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Algúns servidores de correo permiten a opción de empregar SSL ao establecer unha conexión. Empregar SSL é sempre unha boa idea xa queengade un nivel extra de seguridade." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Configurar servidor de SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Email do Site" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Email para Alertas" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Cando as/os visitantes do site se suscriban ás alertas, recibirán os emails dende este enderezo. Este correo non ten porque ser necesariamente o mesmo co Email do Site." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Os comunicados do site serán canalizados por medio deste enderezo." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nome do Site" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "O nome do seu site" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Eslogan do Site" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Eslogan" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Os arquivos e directorios que se listan de seguido precisan ter permisos de escritura para o seu servidor web." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Eiquí ten instruccións para trocar os permisos dos arquivos e directorios:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Denantes de comenzar, é preciso asegurarse cos seguintes arquivos e directorios teñen permiso de escritura para o seu servidor web. Esto conleva trocar os permisos dos mesmos." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Para proseguir co proceso de instalación, teña a man os seguintes datos: " + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefixo da Táboa" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Polo xeral non é preciso trocar o prefixo da táboa. Con todo, no caso de ter a intención de empregar varias instalacións de Ushahidi sobre unha mesma base de datos será preciso modificar os prefixos eiquí." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Título" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Para acceder, vaia a" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Subir datos do informe" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nome de usuaria/o" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Usuaria/o da base de datos" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "e empregue as seguintes credenciáis" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Ver o site" diff --git a/application/i18n/po/po-gl/layer.po b/application/i18n/po/po-gl/layer.po new file mode 100644 index 0000000000..ac287833b0 --- /dev/null +++ b/application/i18n/po/po-gl/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-06 21:38+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo de cor debe contar con alomenos 6 caracteres de lonxitude." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "O campo de cor é obrigatorio." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "O campo de arquivo semella conter un ficheiro inválido. Os únicos formatos aceitados son .KMZ e .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "O campo de arquivo semella conter un fichero inválido." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "O campo de nome debe contar con alomenos 3 caracteres de lonxitudee non máis de 80." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "O campo de nome é obrigatorio." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "É preciso fornecer unha URL ou un arquivo KML." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Non se poden fornecer ao mesmo tempo unha URL e un arquivo KML." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Introduza unha URL válida, p.ex. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-gl/libraries.po b/application/i18n/po/po-gl/libraries.po new file mode 100644 index 0000000000..6732517f56 --- /dev/null +++ b/application/i18n/po/po-gl/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-06 21:59+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Non se pode conectar ao conector Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Non se puido obter unha resposta do Akismet." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Non se puido atopar a biblioteca %s para a clase %sVerifique a táboa de ruteo da API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "A chave da API do Akismet non é válida." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Erro durante a execución do método fopen de envío!
Verifique se o PHP ten soporte para SSL e se a versión de PHP do server é mais recente que a 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "A súa mensaxe unicode é longa de máis! (Tamaño actual=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Especifique a/o destinataria/o (PARA)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Especifique o enderezo fonte (DE)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "A súa mensaxe unicode é longa de máis! (Tamaño actual=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Método de envío non soportado!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "A biblioteca da API %s non é válida. Tódalas bibliotecas da API deben ser subclases de %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "O directorio %s non se pode borrar." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Erro na extracción: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Erro baixando a última versión do Ushahidi. Código de status do HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "O arquivo %s non pode ser copiado." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "O arquivo %s non pode ser borrado." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Script de actualización do Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Non se puido acabar de baixar o arquivo zip %s do Ushahidi." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s non está dispoñible na clase RiverID." diff --git a/application/i18n/po/po-gl/maintenance.po b/application/i18n/po/po-gl/maintenance.po new file mode 100644 index 0000000000..75c3bfca81 --- /dev/null +++ b/application/i18n/po/po-gl/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-07 20:50+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "O noso site atópase actualmente en mantimento. Intente acceder novamentede aí a un cacho." diff --git a/application/i18n/po/po-gl/message.po b/application/i18n/po/po-gl/message.po new file mode 100644 index 0000000000..c0aca4a604 --- /dev/null +++ b/application/i18n/po/po-gl/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-07 20:57+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduza un código de seguridade válido." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Introduza o código de seguridade." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Este campo de correo electrónico semella non conter un enderezo válido." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo de correo debe contar con alomenos 4 caracteres de lonxitude e non mais de 64." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O campo de correo é obrigatorio se a caixa de verificación está seleccionada." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "O campo de comentarios é obrigatorio." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo de nome debe contar con alomenos 3 caracteres de lonxitude." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "O campo de nome é obrigatorio." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "O campo de teléfono non é valido." diff --git a/application/i18n/po/po-gl/mhi.po b/application/i18n/po/po-gl/mhi.po new file mode 100644 index 0000000000..257e109c1a --- /dev/null +++ b/application/i18n/po/po-gl/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-07 21:01+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Introduza un código de seguridade válido." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Introduza o código de seguridade." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "O campo de correo semella non conter un enderezo de correo válido." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Forneza un enderezo de correo válido." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "O campo de mensaxe é obrigatorio." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O campo do Asunto debe contar con alomenos 3 caracteres de lonxitude." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "O campo de Asunto é obrigatorio." diff --git a/application/i18n/po/po-gl/notifications.po b/application/i18n/po/po-gl/notifications.po new file mode 100644 index 0000000000..bfe5b0f160 --- /dev/null +++ b/application/i18n/po/po-gl/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-07 21:09+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Esta mensaxe foi enviada dende o seu sitio web." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login de Administrador/a" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Enviouse un novo comentario ao site en resposta a:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Comentario Novo" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Enviouse un novo correo ao site." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Correo Novo" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Enviouse un novo informe ao site." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Informe Novo" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Enviouse unha nova mensaxe ao site." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nova Mensaxe de Texto" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Recibiu unha Nova Alerta" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Alerta Nova!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Recibiu unha Mensaxe Privada" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Mensaxe Privada Nova!" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Para respostar vaia a: " diff --git a/application/i18n/po/po-gl/page.po b/application/i18n/po/po-gl/page.po new file mode 100644 index 0000000000..19f39c4a23 --- /dev/null +++ b/application/i18n/po/po-gl/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-07 21:13+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Introduza un Título de Páxina." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "O Título da Páxina debe contar con alomenos 3 caracteres de lonxitude e non máis de 150." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Introduza un Nome de Etiqueta da Páxina." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Introduza unha Descripción da Páxina." diff --git a/application/i18n/po/po-gl/permissions.po b/application/i18n/po/po-gl/permissions.po new file mode 100644 index 0000000000..15328774ce --- /dev/null +++ b/application/i18n/po/po-gl/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-12-07 21:20+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Ver Informes" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crear/Editar/Borrar Informes" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprobar Informes" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar Informes" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Xestionar Comentarios dos Informes" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Baixar Informes" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Subir Informes" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Xestionar Mensaxes" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Xestionar Mensaxes dos Informantes" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ver Estadísticas" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificar Configuracións" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Xestionar Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Xestionar Usuarias/os" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Xestionar Roles" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Permitir checkin " + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Xestionar checkins" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acceder á UI de Admin" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acceder á UI de Membros" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Borrar tódolos informes" diff --git a/application/i18n/po/po-gl/private_message.po b/application/i18n/po/po-gl/private_message.po new file mode 100644 index 0000000000..0bc99bd807 --- /dev/null +++ b/application/i18n/po/po-gl/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-08 17:39+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "O ID pai debe ser numérico" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "O campo Para é obrigatorio" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "A/o usuaria/o ao que está tentando enviar a mensaxe non existe" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "O campo Asunto é obrigatorio" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "O Asunto debe ter unha lonxitude entre 3 e 150 caracteres" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "O campo de Mensaxe é obrigatorio" diff --git a/application/i18n/po/po-gl/report.po b/application/i18n/po/po-gl/report.po new file mode 100644 index 0000000000..75aa14b17e --- /dev/null +++ b/application/i18n/po/po-gl/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-12-08 18:41+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "erro!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Esta instancia do Ushahidi abrangue só un país. Asegúrese de que a localizacióndo informe está no referido país: %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Introduza un valor válido para o campo \"%s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "O campo \"%s\" debe ser numérico." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "O campo \"%s\" é obrigatorio." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "O campo \"%s\" non existe." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "O campo \"%s\" non pode ser editado dende a súa conta." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "O campo \"%s\" debe conter un enderezo de correo válido." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "O campo \"%s\" debe conter un número de teléfono válido." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "O campo \"%s\" debe conter unha data válida no formato (MM/DD/AAAA)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "O campo \"%s\" debe conter unha data válida (DD/MM/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Seleccione un elemento válido para incluir na descarga." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Seleccione un elemento válido para incluir na descarga." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Seleccione \"Informes Agardando Aprobación\" ou \"Informes Aprobados\" ouámbolos dous." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Seleccione \"Informes Agardando Aprobación\" ou \"Informes Aprobados\" ou ámbolos dous." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Seleccione \"Informes Agardando Aprobación\" ou \"Informes Aprobados\" ou ámbolos dous." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Seleccione \"Informes Agardando Verificación\" ou \"Informes Verificados\" ou ámbolos dous." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Seleccione \"Informes Agardando Verificación\" ou \"Informes Verificados\" ou ámbolos dous." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Seleccione \"Informes Agardando Verificación\" ou \"Informes Verificados\" ou ámbolos dous." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Seleccione un tipo válido de informe para descargar." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Seleccione un tipo válido de informe para descargar." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Seleccione un tipo válido de informe para descargar." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Debe seleccionar un formato de descarfa. Escolla entre CSV e XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Seleccione un formato válido no que descargar os seus informes" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "O campo de Data Inicial semella non conter unha data válida." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Introduza unha Data Inicial válida. Non pode ser posterior á de hoxe." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Introduza un valor correcto para o campo Aprobar este Informe" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Introduza un valor correcto para o campo Aprobar este Informe" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "O campo am/pm semella non conter un valor correcto." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "O campo \"Categoría\" semella non conter unha categoría válida." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "O campo \"Categoría\" é obrigatorio." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "O campo de Data semella non conter unha data válida." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "O campo de Data semella non conter unha data válida." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "O campo Data é obrigatorio." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "O campo \"Descripción\" é obrigatorio" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "O campo horario semella non conter unha hora válida." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "O campo horario é obrigatorio." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Introduza un valor correcto para o campo Probabilidade da Información." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Introduza un valor correcto para o campo Probabilidade da Información." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "O campo de minutaxe semella non conter un valor axeitado." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "O campo de minutaxe é obrigatorio." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "A ligazón da fonte de noticias semella non conter un URL válido." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Asegúrese de que o tamaño das fotos subidas está limitado a 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "O campo de Subida de Fotos semella non conter un formato de imaxe válido.Os únicos formatos admitidos son: .JPG, .PNG e .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "O campo de Subida de Fotos non semella conter un arquivo válido." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Introduza un valor correcto para o campo de Confiabilidade da Fonte." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Introduza un valor correcto para o campo de Confiabilidade da Fonte." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "O campo \"Título do Informe\" debe contar con alomenos 3 caracteres de lonxitude e non mais de 200." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "O campo \"Título do Informe\" é obrigatorio." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Posible ataque CSRF. Realmente está tentando crear/editar un informe?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Introduza un valor correcto para o campo Verificar este Informe." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Introduza un valor correcto para o campo Verificar este Informe." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "O ligazón do video semella non ser unha URL válida." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "O campo de Latitude semella non conter unha latitude válida." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo de Latitude é obrigatorio. Prema no mapa para establecer unha localización concreta." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "O campo de Localización presenta un valor incorrecto." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Este informe xa conta cunha traducción para este idioma." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "O campo de Localización presenta un valor incorrecto. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "O Informe Orixinal e a Traducción teñen o mesmo \"locale\" (lingua)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "O \"locale\" (lingua) é obrigatorio." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "O campo de Nome da Localización debe contar con alomenos 3 caracteres de lonxitude e non mais de 200." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "O campo \"Nome da Localización\" é obrigatorio." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "O campo de Lonxitude non semella conter unha lonxitude válida." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo de Lonxitude é obrigatorio. Prema no mapa para establecer unha localización." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "O campo Email non semella conter un enderezo de correo válido." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "O campo Email debe contar con alomenos 4 caracteres de lonxitude e non máis de 64." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "O campo Nome debe contar con alomenos 3 caracteres de lonxitude e non máis de 100." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "O campo Apelido debe contar con alomenos 2 caracteres de lonxitude e non máis de 100." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "O campo de Data Final non semella conter unha data válida." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Introduza unha Data Final válida. Non pode ser posterior á de hoxe." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "A Data Inicial non pode ser posterior á Data Final." diff --git a/application/i18n/po/po-gl/reporters.po b/application/i18n/po/po-gl/reporters.po new file mode 100644 index 0000000000..d5d4caf0bd --- /dev/null +++ b/application/i18n/po/po-gl/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-08 18:53+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "O campo de Latitude non semella conter unha latitude válida." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo de Latitude é obrigatorio. Prema no mapa para seleccionar unha localización concreta." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "O campo Nivel da/o Informante semella non conter un nivel válido." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "O campo Nivel da/o Informante semella non conter un nivel válido." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "O campo Nome da Localización debe contar con alomenos 3 e non máis de 200 caracteres de lonxitude." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "O campo Nome da Localización é obrigatorio." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "O campo de Lonxitude semella non conter unha lonxitude válida." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo de Lonxitude é obrigatorio. Prema no mapa para establecer unha localización concreta." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Informante Incorrecto/a" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Informante Incorrecto/a" diff --git a/application/i18n/po/po-gl/reports.po b/application/i18n/po/po-gl/reports.po new file mode 100644 index 0000000000..8fd3826481 --- /dev/null +++ b/application/i18n/po/po-gl/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-08 19:09+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Verifique que seleccionou un elemento." + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Verifique que seleccionou un elemento." + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Os informes han ser categorizados denantes de seren aprobados." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Non ten permisos para levar a cabo esta acción." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Debe seleccionar un arquivo para subir" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "O arquivo a subir ten que estar en formato .csv ou .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "O campo de arquivo a subir non semella conter un ficheiro válido" diff --git a/application/i18n/po/po-gl/roles.po b/application/i18n/po/po-gl/roles.po new file mode 100644 index 0000000000..a6f657760e --- /dev/null +++ b/application/i18n/po/po-gl/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-08 19:15+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "O campo Descripción debe contar cunha lonxitude entre 3 e 100 caracteres." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "O campo Descripción é obrigatorio." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "O campo Nome só pode conter caracteres alfanuméricos." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "O campo Nome debe contar cunha lonxitude entre 2 e 30 caracteres." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "O rol de SuperAdmin non pode modificarse." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "O campo Nome é obrigatorio." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "O campo de Nivel de Acceso debe ser un díxito entre 0 e 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "O campo de Nivel de Acceso debe ser un díxito entre 0 e 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "O campo Permisos debe ser un díxito entre 0 e 100." diff --git a/application/i18n/po/po-gl/settings.po b/application/i18n/po/po-gl/settings.po new file mode 100644 index 0000000000..3c0ac57048 --- /dev/null +++ b/application/i18n/po/po-gl/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Xnake, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-05-19 22:49+0000\n" +"Last-Translator: Xnake\n" +"Language-Team: Galician (http://www.transifex.com/projects/p/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "O campo Comentarios Permitidos semella non conter datos válidos." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "O campo Comentarios Permitidos é obrigatorio." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "O campo Incluir Feed semella non conter datos válidos." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "O campo Incluir Feed é obrigatorio." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "O campo de incluir categoría de feed parece non ter un valor válido." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Requírese o campo de incluir categoría de feed." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "O campo Permitir Alertas semella non conter datos válidos." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "O campo Permitir Alertas é obrigatorio." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "O campo Permitir Informes semella non conter datos válidos." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "O campo Permitir Informes é obrigatorio." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "O campo Compartillar Estatísticas semella non conter datos válidos." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "O Campo Compartillar Estatísticas é obrigatorio." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Número predetermiñado de rexistros a procurar en cada solicitude da API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Número máximo de rexistros a procurar en cada solicitude da API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Número máximo de solicitudes da API por enderezo IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "O campo Akismet semella non conter datos válidos." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "O campo Akismet semella non conter datos válidos." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "O campo Banner do Site semella non conter datos válidos.Os únicos formatos aceptados son .JPG, .PNG e .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Comprobe que o tamaño da \"Imaxe do Banner\" é menor de 250KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "O campo de \"Imaxe do Banner\" semella non conter datos válidos." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "O campo Páxinas en Caché é obrigatorio." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "O campo de Páxinas en Caché semella non conter datos válidos." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "O campo Duración de Páxinas na Caché semella non conter datos válidos." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "O campo Duración de Páxinas na Caché é obrigatorio." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Semella que o seu servidor non está configurado para empregar URLs limpos.É preciso trocar a configuración do server para activalos. Vexa máis información sobre cómo habilitar os URLs limpos neste post do foro." + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Esta opción permite a Ushahidi acceder por medio de URLs \"limpos\" (sen \"index.php\" no URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Activar URLs Limpos" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs Limpos" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "O campo de Número API Clickatell debe conter un máximo de 20 caracteres." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "O campo Número API CLickatell é obrigatorio." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "O campo Contrasinal Clickatell debe conter entre 5 e 50 caracteres de lonxitude." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "O campo Contrasinal Clickatell é obrigatorio." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "O campo Usuaria/o Clickatell non debe conter máis de 50 caracteres." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "O campo Usuaria/o Clickatell é obrigatorio." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configurar Mapa" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Localización Predetermiñada" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "O campo Cor do Feed semella non conter datos válidos." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "O campo Cor debe contar con non máis de 6 caracteres de lonxitude." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "O campo Cor é obrigatorio." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Visualización do Mapa Predetermiñado" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nivel de Zoom Predetermiñado" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Obter Cidades dende Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "O porto do servidor de correo é demasiado alto." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "O campo Porto do Servidor de Correo só pode conter números." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "O contrasinal do Servidor de Correo debe ter entre 5 e 50 caracteres." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "O Contrasinal do Servidor de Correo é obligatorio." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "O campo Porto do Servidor de Correo é demasiado longo." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "O campo Porto do Servidor de Correo só pode conter números." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "O campo Porto do Servidor de Correo é demasiado longo." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "O campo Servidor de Correo é obrigatorio." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "O campo Nome de Usuaria/o do Servidor de Correo non pode ter máis de 50 caracteres de lonxitude." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "O campo Nome de Usuaria/o do Servidor de Correo é obrigatorio." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opcións de configuración do Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Para obter a información referida embaixo é preciso crear unha nova aplicación do Facebook en " + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Esas configuracións permiten que as/os usuarias/os accedan via Facebook. Esto non crea una aplicación para a súa instancia de Ushahidi." + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "ID da App do Facebook" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "App Secret do Facebook" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "O campo Google Analytics debe conter un ID Web Property en formato UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Activar HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Esta opción fai que se poda acceder ao Ushahidi de xeito inseguro; sen \"https://\" no prefixo URL." + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Esta opción fai que se poda acceder ao Ushahidi de xeito seguro; con \"https://\" no prefixo URL." + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Semella que o campo Elementos por Páxina (Frontend) non contén un valor correcto." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "O campo Elementos por Páxina (Frontend) é obligatorio." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Semella que o campo Elementos por Páxina (Admin) non contén un valor correcto." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "O campo Elementos por Páxina (Admin) é obrigatorio." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configurar o provedor de mapas é un proceso sinxelo. Seleccione un provedor, obteña una chave para a API do site e dixite o código da mesma." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nivel de Zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Seleccione un Provedor de Mapas" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Introduza a nova Chave da API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Obteña unha Chave API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configurar o provedor de mapas é un proceso sinxelo. Seleccione un provedor, obteña una chave para a API do site e dixite o código da mesma." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Provedor de Mapas" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Liña de Tempo do Mapa" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Configuracións do Mapa" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Esta instancia do Ushahidi abrangue varios paises?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Seleccione o país predetermiñado" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Prema e arrastre no map para establecer a súa localización exacta" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Agrupar Informes no Mapa" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Permitir ás/aos usuarias/os enviar Comentarios nos Informes" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Incluir Feed de Novas no site" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Crear nova Categorñia dende os Feeds" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Permitir ás/aos usuarias/os suscribirse ás Alertas" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Permitir ás/aos usuarias/os Enviar Informes" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Chave do Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Banner do Site" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Bloques por Liña" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Páxinas en Caché" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Duración das Páxinas na Caché" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Activar Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Política sobre Direitos de Autoría" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Cor predetermiñada para as categorías" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Icona predetermiñada para as categorías" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Borrar Imaxe do Banner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Borrar Icona Predetermiñada" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Amosar Páxina de Contacto" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Amosar Páxina \"Cómo Axudar\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Enderezo de Mail para Alertas" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Para receber alertas por email, configure a súa conta de correo." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Enderezo de Correo do Site" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Elementos por Páxina - Frontend" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Elementos por Páxina - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Preveña spam nos comentarios empregando o Akismet do Automattic.
Pode obter gratuitamente unha chave API rexistrándose en WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Credenciáis de Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Site Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Lingua do Site" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Aprobar Manualmente Usuarias/os" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Mensaxe do Site" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nome do Site" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Instancia Privada" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Precisa Confirmación por Email da/o Usuaria/o" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Enviar Mensaxe co Informe" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Compartillar Estatísticas do Site" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Eslogan do Site" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Timezone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Configuracións do Site" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Configuracións do Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Separados por comas " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Geoloclaización dos Feeds - Nome de usuario Xeonomes" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "O campo Email do Site semella non conter una enderezo de correo válido." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "O campo Email do Site debe contar cun número de caracteres entre 4 e 100." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "O campo Nome do Site debe contar cun número de caracteres entre 3 e 50." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "O campo Nome do Site é obrigatorio." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "O campo Eslogan debe contar cun número de caracteres entre 3 e 100." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "O campo Eslogan é obrigatorio" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Número da API Clickatell" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Comprobar saldo dispoñible no Clickatell " + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Cargar Saldo" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Contrasinal do Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Suscríbase ao servizo Clickatell nesta ligazón." + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Introduza os datos de acceso a Clickatell de seguido" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Nome de Usuaria/o do Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS é un software libre e de código aberto que permite a usuarias/os enviar e recibir mensaxes de texto colectivamente por medio de teléfonos móviles. Prema na caixa abaixo para descargar a última versión dende FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Baixar e instalar FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Instruccións detalladas de cómo enviar SMS's dende FronlineSMS estam dispoñibles acó. O URL e a chave API son datos necesarios para a sincronización con FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Copiar e pegar esto no campo \"Enderezo\" do FrontlineSMS." + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Copiar e pegar esto no campo \"Ushahidi API Key\" do FrontlineSMS." + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Conectando FrontlineSMS con esta instancia do Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Conectar número(s) de teléfono ao Frontline SMS no campo seguinte" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Introducir o número sen nengún + e sen guións " + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Opción 1: Empregar Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Opción 2: Empregar unha pasarela SMS externa" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Opcións de configuración do SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "O campo Teléfono 1 semella conter un valor incorrecto." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "O campo Teléfono 1 debe conter únicamente números." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "O campo Teléfono 2 é demasiado longo." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "O campo Teléfono 2 debe conter únicamente números." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "O campo Teléfono 3 é demasiado longo." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "O campo Teléfono 3 debe conter únicamente números." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Opcións de Configuración do Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Para obter as informacións requeridas, configure a súa instancia do Ushahidicomo unha nova aplicación Twitter en " + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Consumer Key" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Consumer Secret" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Access Token" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Access Token Secret" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Configuracións de test" diff --git a/application/i18n/po/po-gl/sharing.po b/application/i18n/po/po-gl/sharing.po new file mode 100644 index 0000000000..33bc42288a --- /dev/null +++ b/application/i18n/po/po-gl/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-09 14:02+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Data de ingreso" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Data da Engádega" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Derradeiro Acceso" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo Cor debe contar con alomenos 6 caracteres de lonxitude." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "O campo Cor é obrigatorio." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "O nome para Compartillar semella non ser válido." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Un nome para Compartillar é obligatorio." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "O URL do site xa existe." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "O URL do site semella non ser válido." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "O URL do site é obrigatorio." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "O campo URL do Site semella no conter un URL válido." diff --git a/application/i18n/po/po-gl/stats.po b/application/i18n/po/po-gl/stats.po new file mode 100644 index 0000000000..d4a13ffd40 --- /dev/null +++ b/application/i18n/po/po-gl/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-09 15:00+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprobado" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorías" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Impacto da Categoría" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Este gráfico fornece unha visión liñal dos informes por categoría ao longo do tempo. Desprázese de esquerda a direita para visualizar compariativamente as diferentes categorías. Pase o rato por riba do gráfico para obter máis detalle." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Escolla un rango de datas." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Países" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "País" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Por País" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Esta é a sección de estatísticas. Haberá descripcións xerais a pouco. Polo de agora, navegue empregando as ligazóns das subcategorías enriba." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Erro" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glosario" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Resumo de Hits" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Lenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Páxinas Vistas" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "O número total das páxinas que as/os visitantes visualizaron no site" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Informes" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categorías de Informes" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Estatísticas dos Informes" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Estado dos Informes" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Avaliación Puntual do Informe" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Estatísticas do Informe" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Estatísticas non configuradas" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Mes" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Meses" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Meses" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Todos" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Non aprobado" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitantes Individuáis" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Cantidade de individuos visitando o site. Este dato é determiñado por medio de cookies. En caso de que a/o visitante non teña habilitado o uso de cookies, será identificada/o empregando unha análise heurística simple que terá en conta elementos como o enderezo IP, a resolución, o navegador, os plugins, o sistema operativo, etc. " + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Non Verificado" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificado" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Resumo de Visitantes" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visitas" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Unha visita é definida como o rexistro dunha única persoa accedendo ao site despois de teren transcurridos máis de 30 minutos dende a última páxina visualizada." diff --git a/application/i18n/po/po-gl/tooltips.po b/application/i18n/po/po-gl/tooltips.po new file mode 100644 index 0000000000..fc000cd0c4 --- /dev/null +++ b/application/i18n/po/po-gl/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Xnake, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Esto inclúe informes de categorías adicionáis. Se selecciona Categoría 1 eiquíe o Informe xa ten a Categoría 2 vencellada, o Informe terá asociadas ambalasdúas." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aproba o informe ou non. Se o aproba, aparecerá publicado." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Poderá asignar un distintivo a un/ha usuario/a disparador/a" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Trátase dun rango horario entre dous espazos de tempo en formato de 24hs. Se se introduce un tempo anterior no segundo campo, trocarase cara ao primeiro. Ambos tempos deben estar no mesmo día. Amais, este tempo é comparado co que se estableceu no site nas configuracións e pode non estar definidonecesariamente no mesmo fuso horario da/o usuaria/o que participa no Ushahidi.Deixe os valores a 00:00 e 00:00 para ignorar este habilitador." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Se quere activar un disparador só cando certa categoría estea sendo usada pode facelo eiquí. Esto permite cun disparador se active únicamente candose empregue determiñada categoría. Por exemplo, se se seleccionan as Categorías 1 e 2 eiquí e un informe é enviado empregando as Categorías 2 e 3, o informe pasará o test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Se esas accións acontecen en certos días da semana, defínao eiquí. Teña en conta que o día determíñase segundo o fuso horario configurado na súa instancia do Ushahidi. Empregue Shift, Command ou Control para seleccionar múltiples días." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Corpo do correo a enviar." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Asunto do correo a enviar." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "O feed pode ser de todolos feeds ou dun feed específico. Se se quere que só certos feeds activen un disparador, débense escoller eiquí. En caso contrario deixe esto co valor predetermiñado: \"todos\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nome da/o usuario/a no Twitter (ou múltiples nomes separados por comas). Se ten intención de activar disparadores só para twits dun/ha usuario/a concreto/a introduza o seu nome eiquí (sen incluir a @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Pódese deixar en branco se non se queren verificar palabras-chave. Se se engaden palabras eiquí, hainas que separar con comas (,). Por exemplo, se se queren activar disparadores cando alguén mencione \"amor\" ou \"paz\"na súa mensaxe, haberá que engadir: \"paz, amor\" na caixa de palabras-chave." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Pódese seleccionar calquera lugar ou unha localización específica. Neste último caso, solicitarase que debuxe unha caixa delimitando a área que require unha acción. Por exemplo, se se quere cun disparador se active cando alguén presente un informe sobre Ourense, hai que seleccionar \"área específica\" e deseguido debuxar unha \"caixa\" en torno a Ourense. Pódense facer éstas tan grandes ou pequenas como se queira. Tamén é posible debuxar múltiples caixas." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Este habilitador activará o disparador na conta nº X contrastándoa contra o conxunto de usuarias/os ou para cada usuaria/o individualmente. Deixeo en branco se prefire ignoralo." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Este é o título predetermiñado para engadir a un informe." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Se tódolos habilitadores enriba estivesen activos, o disparador iniciaría unha resposta. Esto pode ser dende aprobar un Informe a Enviar un Email a un/ha usuario/a. Seleccione eiquí a resposta para activar opcións adicionáis para respostas específicas." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Se selecciona \"Usuario/a Disparador/a\", o correo será enviado a/ao usuaria/o que executou a acción concreta. Se se selecciona o botón de radio ao carón da caixa de entrada, poderá incluir un enderezo de correo persoalizado. Ésto é útil se se están configurando disparadores para notificar á xente cando certas zonas no mapa reciben informes, chekins ou calqueira outra actividade." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Pode seleccionar múltiples días eiquí. As datas veñen determiñadas polo fuso horario definido na configuración do site. Se non selecciona nengunha data, o sistema amosará predetermiñadamente tódalas datas." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "O disparador é o compoñente central na configuración das Accións Disparadoras.Eiquí é onde se determiña qué acontecerá cando alguén envíe un informe, faga un checkin, etc. Eiquí pode filtrar as respostas a esas accións despois de seleccionar un disparador." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "A/o usuaria/o pode ser un/ha calquera ou un/ha específico/a. Se se quere traballar con un/ha concreto/a, hai que seleccionalo/a. En caso contrario, hai que deixar o valor a \"calquera\" xa que a maioría dos disparadores establécense para tódalas/os usuarias/os que interactúan co sistema." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marca o informe como verificado ou non." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "As páxinas de perfil no site empregan Gravatar. Ao premer na súa imaxe, será redirixida/o ao site Gravatar onde poderá trocar a súa foto de perfil." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separe cada valor cunha coma, p.ex. valor1, valor2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separe cada valor cunha coma, p.ex. valor1, valor2. No caso de querer definir un valor predetermiñado, remate a súa lista de opcións con: \"::\" P.ex. se quere que o valor3 sexa o predetermiñado, a cousa sería: valor1, valor2, valor3::valor3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separe cada elemento seleccionado cunha coma, p.ex.: Elemento1, Elemento2, etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Comence a escreber a lista de membros." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Asunto da mensaxe privada" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mensaxe privada" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Pode seleccionar unha cor que será a que apareza baixo a súa imaxe no perfil público. Esta cor será tamén asociada aos puntos dos seus checkins no mapa." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "O seu enderezo de correo" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Este é un dos xeitos nos que será identificado no site. Téñao en conta, pois é un dato público!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Se se define, éste ha ser o seu novo contrasinal. Deixe o campo en branco se prefire manter o actual." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Esto é un requisito cando se crea un/ha novo/a usuario/a e establece os seus respectivos contrasináis. Debe avisar ás/aos novas/os usuarias/os de que troquen o seu contrasinal ao acceder por vez primeira á conta." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Ao seleccionar SÍ, recibirá alertas via mail en canto un novo informe ou un comentario sexa publicado no site." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "O seu contrasinal actual. É preciso que introduza o seu contrasinal para impedir que alguén sen autorización poda trocar cousas na súa conta." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "O seu perfil será visible para calqueira en Internet se selecciona esto. Ao mesmo tempo é tamén o xeito máis sinxelo de amosar nunha soa páxina os informes que enviou, os seus checkins, identificativos, etc." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Este é o enderezo no que o seu perfil público pode ser topado." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "O seu nome de usuaria/o non pode ser cambiado." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Os nivéis de acceso son empregados para restrinxir o acceso aos datos dos campos persoalizados dos formularios. Maiores nivéis de acceso permiten manexar nivéis mais baixos. A/o superadmin ten o nivel máis alto de acceso (100). Os datos públicos son accesibles no máis baixo nivel (0). Os membros teñen o nivel de acceso 10. A/o admin ten predetermiñado o nivel 90." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Este é o enderezo de correo que será empregado para enviar alertas por email." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Permite ás/aos usuarias/os suscribirse a alertas via web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Permite agrupar informes similares nun só punto do mapa." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permite ás/aos usuarias/os comentar nos informes do site principal. " + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Permite amosar os RSS's de novas no site principal." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Isto permite crear unha nova Categoría dende as fontes de Noticias RSS" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Permite ás/aos usuarias/ps enviar información via formulario web." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Número predetermiñado de rexistros solicitados en cada chamada da API." + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Número máximo de rexistros solicitados en cada chamada á API." + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Número máximo de chamadas á API por enderezo IP." + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "O banner do site aparece na cima frontal do seu site se o tema que emprega o permite. O tamaño recomendado para esta faixa ha depender do tema. Teña en conta que o mesmo substitúe o título e o lema do site na mesma posición do frontal." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Número de columnas do bloque que serán amosadas en cada liña." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Activar ou desactivar a caché das páxinas. Esto permite que as páxinas se amosen mais axiña pois reduce o tempo de resposta. Recoméndase empregalo en sites con moito tráfico. Lembre que os informes aparecerán na páxina principal conforme o planexamento de tarefas que se definira (tempo de vida da caché)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Definir o tempo de vida da caché." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Esta configuración permite empregar checkins no seu Ushahidi. Trátase dunha clase de informe simplificado que non pasa por moderación antes de ser publicado e requiere que o site sexa configurado de certo xeito. Ao habilitar esta opción, comprobe que a súa configuración do fuso horario está en formato UTC e que o seu tema soporta os checkins. Cando active esta opción, os temas baseados en checkin aparecerán habilitados na páxina de configuración de addons/temas." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Configurar o mapa para cubrir unha localización concreta." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Seleccionar un código de cor para tódalas categorías no site." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Seleccionar unha icona para tódalas categorías no site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Este é o país sobre o que o site traballa." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Activa ou desactiva a lapela de Contacto no site principal." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Activa ou desactiva a lapela de Axuda no site principal." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Este é o número de informes que se amosan por páxina no site principal." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Este é o número de informes amosados por páxina no Panel de Control." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Este é o hub para as mensaxes de entrada." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Esto sincroniza as mensaxes no hub coa plataforma Ushahidi." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Números de teléfono atraverso dos que chegan mensaxes de texto." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Rastrexa os visitantes do seu site. Amosa estatísticas polo miúdo." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Selecciona a a lingua que será usada no site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Se fixa esta opción a \"sí\", deberá aprobar a cada usuaria/o individual que cree unha conta no site asignándolle os correspondentes roles (p.ex. Membro, Admin, SuperAdmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Esto define qué mapa será empregado no sitio." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Esto amosa unha liña de tempo baseada na data e hora dos informes que se envíen." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Fixando este valor a \"verdade\" ou \"sí\" o Ushahidi será privado e só as/os usuarias/os con conta que se especifiquen poderán acceder ao mesmo." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "As/os usuarias/os recibirán un email cunha ligazón de confirmación antes de poder acceder ao Ushahidi se isto é fixado a \"sí\". Se activa isto despois de que o site xa teña creado usuarias/os, solicitaráselles confirmar a súa conta antes de permitírselles continuar o acceso." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Este é o lugar onde os emails serán arquivados." + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Este é o contrasinal do enderezo de correo que recibirá os informes." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Esto é preciso para aceptar as conexións entrantes dende este enderezo de correo." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Esto é preciso para aumentar a seguridade da conexión." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Esto é preciso para recibir emails dende o servidor de correo." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Este é o enderezo de correo que recibirá os informes." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "As estatísticas de visitas son gardadas no server controlado polo Ushahidi. Activando esta opción, poderá visualizar os datos de acceso directamente dende o panel de administración. Deshabilitandoo déixanse de recabar estatísticas e non haberá acceso aos datos gardados mentras a función siga deshabilitada." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Quere permitir a outras persoas republicar o texto, as imaxes, os videos ou mesmo o deseño do site que vostede ou as/os usuarios teñen creado eiquí? Vaia a https://creativecommons.org/choose/ se ten interese en especificar cunha licenza o que outras/os poden facer co seu traballo. E lembre especificar claramente qué elementos do site está licenciando." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Este é o enderezo de correo que recibirá informes e mensaxes dende o formulario de contacto." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Este é o texto que aparecerá na cima do mapa ma páxina principal. É útil para ofrecer información importante as/aos visitantes do site. Para eliminar a caixa simplemente borre esta mensaxe." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Este é o nome do site que aparecerá na cima da páxina principal." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Esta é a mensaxe que aparecerá na páxina de envío dos informes. É un bó lugar para avisos ou instruccións adicionáis para as/os informantes." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "En poucas palabras, explique en qué consiste o site." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Este é o fuso horario no que o seu site traballa, cousa que terá repercusión en cada acción que se teña configurado que empregue datas ou horas, tanto no horario predetermiñado dos informes como na interacción externa ou nos mecanismos internos do site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Defina o hashtag asociado ao proxecto no twitter" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-gl/ui_admin.po b/application/i18n/po/po-gl/ui_admin.po new file mode 100644 index 0000000000..e51f6c572d --- /dev/null +++ b/application/i18n/po/po-gl/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-12-10 19:45+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Acceso denegado. As súas credenciáis non son correctas ou a súa solicitudefoi rexeitada." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Acceso denegado. A súa solicitude foi procesada mais denegada por exceder o límite de tempo. Probe de novo máis tarde." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nivel de Acceso" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Accións" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Engadir Categoría" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "engadido" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "engadido/editado" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Extensións" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertas" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertas Recibidas" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Todo" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anónimo" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Nengún" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "En calquera sitio" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Bloqueada" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Logs da API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Configuracións da API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "DESBLOQUEAR" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "DESBLOQUEAR TODO" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "aprobado" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Aprobar Automáticamente" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprobación Manual" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arquivado" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Confirme que quere" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Confirme que quere borrar este elemento." + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Confirme que quere borrar esta foto." + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Confirme o cambio de formulario." + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Asignar" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Asignacións" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Asignar Distintivo" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor/a" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email do/a Autor/a " + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Voltar" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Bloquear IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre Tempos" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloques" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Corpo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Erro amosando o gráfico" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Asegúrese de que a mensaxe é válida." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Asegúrese de que o número é válido." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Comprobe as configuracións SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalles de Checkin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Chekins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Cidades cargadas" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "código" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versión do código desincronizada." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Cor" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "O código de confirmación de alertas é: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "A/o Usuaria/o foi" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Contador" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "País Non Atopado" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "creado/editado" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Crear un Informe" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Actualización Crítica" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Activo Arestora" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Inactivo Arestora" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Non ten permisos abondo para editar os seguintes campos persoalizados." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Diario" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Panel de Control" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "base de datos" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data e Hora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Data Engadida" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Data Modificada" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Días da semana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Versión da base de datos desactualizada." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "borrado" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Borrar" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Borrar tódolos informes" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Borrar Distintivo" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descripción" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Desactivado" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Iniciar Divisor" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Rematar Divisor" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Baixar Informes" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Opcións do menú" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITADO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editado Por" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editar" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Editar Log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Colectivo" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Erro na xeocodificación! Erro HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "A Biblioteca PHP para IMAP non está instalada" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Credenciáis Incorrectas" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Erro" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Erro, non foi posible publicar o incidente " + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "A Cada Seis Horas" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "A Cada Doce Horas" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista de Opcións" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valor Predetermiñado" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipo de Dato" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numérico" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Texto Libre" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altura (en liñas)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Campo Oculto" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Lonxitude Máxima de Caracteres" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nome do Campo" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Alternar" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Non" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Sí, fechado por omisión" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Sí, aberto por omisión" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Non se topa o arquivo subido" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Non se pode abrir para lectura o arquivo" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Este Formulario Non Existe!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Foro" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Campo de Área de Texto (Texto Libre)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Campo de Data" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Campo de Botóns de Opción" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Campo de Caixas de Verificación" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Campo de Listado de Opcións" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Erro no Tempo de Espera en Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Obteña Axuda" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obteña máis Temas" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obteña máis plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Accións" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Engadir/Editar" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Xestión de Usuarias/os" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rol" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Usuaria/o" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "axuda" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "A cada hora" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Feed de Incidente para" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "O directorio de instalación ainda existe. Bórreo, é un burato potencial na seguridade!" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instancia" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instancias" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalles da Instancia" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parámetro non válido" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Enderezo IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "É un Campo de Data?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Quén pode visualizar respostas" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Quén pode enviar respostas" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Palabra Chave" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Palabras Chave" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Enderezo de Correo:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nome Completo" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Contrasinal:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rol" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nome de Usuaria/o:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderador/a" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Saír" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Xestión" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Xestión de Roles e Permisos" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Visualizar Usuarias/os" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Engadir/Editar Usuarias/os" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Xestione a súa Lista Pública" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marcar Como" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcado como non-spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcado como spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "non se atoparon coincidencias nos documentos" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mensaxe" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mensaxes" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mensaxes de Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Mensaxes de Twiter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "A súa mensaxe foi enviada!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutos" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Parámetro Faltante" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderador/a" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificado" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modificar Configuracións do Timezone" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "mover abaixo" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "mover arriba" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Instancias Múltiples Hospedadas" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "As miñas Alertas" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Os meus Chekins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "O meu Perfil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Os meus Informes" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votos Repartidos" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positivo" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativo" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Crear Alerta Nova" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Crear Mensaxe Nova" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Novo Contrasinal" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Non" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Ésta é unha categoría especial que non aparecerá no formulario de envío de informes das/os usuarias/os. Emprégase para gardar informes non categorizados de resultas de ter borrado explícitamente a categoría." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificación" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Non diferencia entre maiúsculas e minúsculas." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Non Atopado" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Sen datos. Non hai resultados que amosar." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Sen Erro" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Non hai resultados!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Nun conteo específico" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "páxina" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "páxinas" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Páxina Non Topada" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "A páxina á que está tentando acceder non existe.

Premeu nunha ligazóndalgunha páxina do noso site?
Se é así, por favorpóñase en contacto connosco para que podamos solucionar o problema.

Se premeu nunha ligazón doutro site, pode que ésta se atope desactualizada ou mal definida

Indíquenos quén a aloxa e entón tentaremos poñernos en contacto con elespara tentar amañar o problema.

Escribiu a URL?
Puidera ser que estea mal escrito o enderezo (URL). Compróbeo para desbotar erros tipográficos emprego de maiúsculas, etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "A páxina que está tentando visualizar non se atopa no site." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parámetros Empregados" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Contrasinal" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Redefinir Contrasinal" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Estimada/o" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Recibimos unha solicitude para restaurar o contrasinal de" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Para trocar o seu contrasinal, prema na ligazón seguinte (ou cópiea e péguea no seu navegador)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Tal como solicitou, o seu contrasinal foi redefinido. Éstes son agora os novo datos " + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Redefinición do contrasinal do Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Seleccione" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Os datos non foron enviados polo método POST" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Visualización Previa" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mensaxe" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mensaxes Privadas" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mensaxe Privada Enviada" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Asunto" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Para" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Lista Pública" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Habilitadores" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "ler" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevancia" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Título do Informe" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Data do Informe" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Informantes" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivel da/o Informante" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Informes" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Nivel de Reputación" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Obrigado" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Resposta" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultados" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revogar" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Este email xa ten unha conta asociada a CrowdmapID. A/o usuaria/o deberáempregar o seu contrasinal de Crowdmap para acceder." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Gardar Configuracións" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Procura" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Procurar Informes" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "procurando por" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "A chave criptográfica ainda está definida no seu valor predetermiñado.Esto é moi inseguro e débese trocar o antes posible." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "O site traballa con HTTP. Débese redefinir para HTTPS co galo de incrementara seguridade." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Ten instruccións dispoñíbleis na wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Seleccione o formato preferido para baixar os informes:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Seleccione un Tipo de Campo ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Seleccione un Elemento" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Seleccione un Disparador (Trigger) antes de seleccionar unha Resposta" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Seleccione un Disparador (Trigger) antes de definir Habilitadores." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Remitente" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Enviar a" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Esta mensaxe foi enviada dende o seu site a " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Hora do Servidor" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Configuracións" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Mostrando Páxina" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Mostrando Resultados" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "Amosar" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoría Especial" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Esta categoría especial non será presentada no formulario de envío de informesás/aos usuarias/os. Esta categoría emprégase xunto coa opción \"Informantes de Confianza\"" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Área Específica" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Estado" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estadísticas" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estadísticas" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Fallo na recollida de estadísticas! Probe novamente de aí a un cacho." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Fallou a recollida de estadísticas!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Días Específicos" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Asunto" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tarefa Executada" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Campo de Texto" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Xestión de Usuarias/os" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Erro no Tempo de Espera" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "a" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Rexistros Totáis" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "a" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traducir Informes" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Disparador" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Usuario/a Disparador/a" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Disparadores" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "non aprobado" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Descoñecido" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Fallo Descoñecido" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "non lido" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Non recibirá máis alertas de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Prema eiquí para actualizar xa" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Actualizar Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Status de Actualización do Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Subir Informes" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Usuaria/o" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Usuarias/os" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificado/Non Verificado" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verificar/Non Verificar" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versión" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " está dispoñible para actualizar." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Codificación de Video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mensaxes Privadas" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Ver Site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Ver Informe" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Benvida/o, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Sí" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "A súa procura por" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Prema no botón seguinte para borrar TODOS os informes da base de datos.Teña en conta que esta acción NON se pode defacer unha vez realizada!" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Recomendámoslle facer unha copia de seguridade da base de datosantes de proceder." + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Estou segura/o de que quero borrar o(s) %s informes da base de datos." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Está segura/o de que quere borrar TODOS os informes?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Non hai informes que borrar." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Número de accesos" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Último acceso" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Conta Confirmada?" diff --git a/application/i18n/po/po-gl/ui_main.po b/application/i18n/po/po-gl/ui_main.po new file mode 100644 index 0000000000..59c8188633 --- /dev/null +++ b/application/i18n/po/po-gl/ui_main.po @@ -0,0 +1,3171 @@ +# +# Translators: +# Xan das Bolas , 2013 +# Xan das Bolas , 2013 +# Xnake, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Encol " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acceso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Límites de acceso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nome da conta" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Accións" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Non é posible desfacer esta acción. Está seguro de querer continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Activado" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Engadir" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Engadido por" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Datos adicionáis" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Informes adicionáis" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Engadir/Editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Engadir un campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Engadir Lingua" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Engadir novo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Engadir nova categoría" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Engadir traducción" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administración" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Obter alertas" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Obter alertas de informes no lugar ou perto de: " + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Gardar a miña alerta" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Enderezo de correo electrónico:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "introducir o enderezo de correo electrónico" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "introducir o número do móvil co código de país" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Obter Alertas" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Houbo unha alerta" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Teléfono Móvil:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ou sitúe un lugar no mapa seguinte e avisarémoslle cando se envíe algúninforme en 20 kms." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Se non pode atopar a súa localización, clique no mapa para identificaro lugar correcto." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (copie o seguinte URL)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Seleccione unha cidade" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Paso 1: Seleccione a súa cidade ou lugar:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Paso 2: Envíe alertas ao seu:
" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Paso 3 (Opcional): Seleccione Categorías" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirme solicitudes de alerta anteriores" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "A súa alerta foi gardada!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Todo" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permitido" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Tags HTML permitidos: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Só se permiten Iframes dende: " + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Tódalas categorías" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Todo o tempo" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "e" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprobar" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprobados" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Informes Aprovados" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprobe este Informe" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximado" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arquivar" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arquivado" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascendente" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "en" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor/a" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Promedio de informes por día" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Agardando Aprobación" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Agardando Verificación" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Distintivo" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Distintivos" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imaxe do distintivo" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ou senón pode subir a súa propia imaxe de distintivo." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Paquete de distintivos" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Seleccione un distintivo" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Procurar perfís" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoría" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro de categoría" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "A categoría foi" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nome da categoría" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Cambiar rango de data" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Trocar contrasinal" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Trocar a miña imaxe" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Escolla un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Seleccionar datas para baixar" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Ou escolla o seu propio rango de datas" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Escolla tipo de campo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Limpar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Limpar mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Pechar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "grupo de informes" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Cor" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentario" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalles do comentario" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Gardáronse as súas configuracións!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurar" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Confirmou con suceso a súa conta de correo! Acceda embaixo." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Confirmou con suceso a súa conta de correo! Un/ha administrador/a ten queaprobar a súa conta antes de poderen ingresar nela." + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Fallou a súa confirmación por correo! Debe solicitar unha nova embaixo." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contacte connosco" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Código de Seguridade" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "O seu enderezo de correo" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mensaxe" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "A súa mensaxe foi enviada!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Nome" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Nº de teléfono" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar Mensaxe" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Asunto" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crear" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crear/Editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crear Novo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crear contrasinal novo" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Crear Informe" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilidade" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Contrasinal Actual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Información" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(dd/mm/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data & Hora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "día" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desactivar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Santiago de Compostela, Galiza" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Borrar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Borrado" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Borrados" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Borrado Deshabilitado" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Borrar Último" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Borrar este Informe" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Borrar Seleccionado" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Borrar Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descendente" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Exemplo: Saída da escalinata da Praza da Quintana á Catedral, Santiago de Compostela" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalles" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Informe Directo" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Deshabilitado" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Non aprobado" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Baixar Informes" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Baixar" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar Campos do Formulario " + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar Informe" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Enderezo de correo" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Configuracións do Servidor" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Enderezo do Servidor" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Contrasinal" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Porto do Servidor" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Soporte para conexións SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipo de Servidor" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nome do Usuaria/o " + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "polo tanto esta é a configuración para este enderezo de correo" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Para receber informes por email, introduza a súa configuración de correoembaixo. Teña en conta que os emails serán enviados a " + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Algúns servidores requiren o enderezo de correo completo" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Contrasinal da conta de correo" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Portos comúns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemplos: mail.oseusite.org, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Exemplos: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Activa ou desactiva conexións por SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VALEIRO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "a" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Erro!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Exemplo" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Galiza" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Apps Externas" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "URL de Video" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Envíe Comentarios" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Por favor cóntenos a súa experiencia enviando un email a" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "O feed foi" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Items do Feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nome do Feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL do Feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Campo sen uso" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Arquivo" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "O seu arquivo excede o tamaño máximo permitido." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtros" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtro de Informes" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrar Informes por" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrar informes que conteñan" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Procurar" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Procurar Localización" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nome" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Executar Tarefas Programadas" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Esqueceu o seu contrasinal?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulario" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formularios" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descripción do Formulario" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editar este Formulario" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "O formulario foi" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Título do Formulario" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "De" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nome Completo" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "XeoLocalización Dispoñible" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Cor" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentarios" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiqueta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Anchura do trazo" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Ir" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Foi" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Como Axudar?" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Oculto" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ocultar" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "oculta esta mensaxe" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Inicio" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Como Informar" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Emprégase para identificalo a vostede no sitio fronte a outros usuarios." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imaxe" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imáxenes" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imaxe/Icono" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactivo" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Caixa de Entrada" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incidente" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidentes Próximos" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Localización do Incidente" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Incluir" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Incluir Categorías" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Incluir Campos Personalizados" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Incluir Descripción" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Incluir a meirande cantidade de información posible" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Incluir Latitude" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Incluir Información da Localización" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Incluir Lonxitude" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Incluir Información Personal" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Foto/Video Entrante" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Evaliación da Información" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Introduza a localización concreta" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "A súa conta carece dos permisos necesarios para acceder.Por favor, contacte ca/o administrador/a" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "En resposta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Enderezo IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "É este o seu perfil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "elemento" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elementos" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalles do elemento" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Título do Elemento" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Chave" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Palabra Chave" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Arquivo KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Subir Arquivo KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Lingua" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Último" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Último Mes" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Último Nome" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Último Ano" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitude" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Capas" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Outras Capas" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "A Capa foi" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nome da Capa" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL da Capa" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Deixar un Comentario" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menos Información" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivel" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Este nivel foi" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nome do Nivel" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitado" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Ligazón" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Cargando Informes" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Localización" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Localizacións" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Cidade, Provincia e/ou País" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Inicio de Sesión" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Conta creada con éxito. Pode acceder agora." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Envióuselle unha confirmación ao seu e-mail. " + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Conta creada. A súa conta debe ser aprovada por un/ha admin antes de poder acceder." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "O enderezo de correo asociado non existe.Tente un enderezo distinto ou cree unha conta." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Clique na súa conta do provedor" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Acceder con" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email e Contrasinal" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Rexistro" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Crear unha Conta" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Grazas por rexistrarse con %1$s. Para confirmar o seu enderezo de correovaia ao seguinte URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmación de Rexistro" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Un novo usuario/a rexistrouse en %1$s. Para aprobar este rexistro vaia ao seguinte URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Aprobación de Nova/o Usuaria/o" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "A súa conta de usuaria/o foi aprobada por %1$s.Para acceder siga o seguinte URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Conta de usuaria/o aprobada" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Cree unha conta agora e aproveite o acceso aos recursos deste site. " + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Lonxitude" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marcado como Lido" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marcado como Non Lido" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Tamaño máximo do arquivo" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Multimedia" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtro Multimedia" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Membros" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Xestión de Conta" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mensaxe" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mensaxes" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalles da Mensaxe" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mensaxe dunha fonte non-numérica:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Móvil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modificar" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modificar Datos" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mes" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Máis" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Máis Información" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Esta instancia do Ushahidi abrangue informes de varios países" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Debe confirmar o seu enderezo de correo para poder acceder a esta instancia.Se perdeu a súa confirmación por email, pode solicitar outra nova de seguido." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nome" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Informes Próximos" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nova" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Novas" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Novos Feeds" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Novas Fontes" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nova Categoría" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Novo Contrasinal" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Novo Informe" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Seguinte" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Non" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Non hai checkins que amosar." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Sen datos" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Nengún" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Avisos" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Non Aprobado" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Non Aprobado" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Non Seleccionado---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "non é spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Non Especificado" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Non hai informes" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Non hai resultados" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Desconectado" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Novas oficiáis e dos medios xeneralistas" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Conectado" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opción" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opcións" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organización" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizacións" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descripción da Organización" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Correo da Organización" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "A Organización foi" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nome da Organización" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Teléfono 1 da Organización" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Teléfono 2 da Organización" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Web da Organización" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Orixinal" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descripción Orixinal" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Título Orixinal" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Outras Instancias" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Mensaxes Saíntes" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Saínte" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Páxina" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Páxinas" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descripción da Páxina" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "A Páxina foi" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Etiqueta da Páxina" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Título da Páxina" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoría Nai" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Contrasinal" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verificar Contrasinal" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Contrasinal modificado! Acceda agora." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Esqueceu o seu contrasinal?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Comprobe o novo contrasinal no seu correo." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Permanecer conectado neste computador?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mes Pasado" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Ano Pasado" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pendente" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "por" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Información Persoal Opcional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Teléfono" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Imaxes" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Imaxes e Videos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Procure a súa localización buscando polo nome OU coordenadas de latitude e lonxitude (formato: 38.19, 85.61), OU clique no mapa para situar a localizacióncorrecta." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Iniciar" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Observación" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Site dos Plugins" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Perfil Público" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL do Perfil Público" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Previsualización" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Previsualización do Elemento" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Previsualización da Mensaxe" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Anterior" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privado" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Cor do Perfil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "O seu Perfil foi gardado" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estatísticas Rápidas" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Avaliación" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Lido" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Receber" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Receber de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Reciber Notificacións" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Reciber Informes" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Actualizar Feeds de Novas" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email rexistrado" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Borrar" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Respostar" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Informar" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Informes (dende o mapa, listados en orde cronolóxica)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Informante" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Informantes" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Data do Informe" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email da/o Informante" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nome da/o Informante" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "O Informe foi" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP da/o Informante" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Apelido da/o Informante" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nivel da/o Informante" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivéis das/dos Informantes" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Teléfono da/o Informante" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Informes" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Procurar" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Enviar" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Informes da/o Usuaria/o" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorías" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%s Informes" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descripción" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Os informes baixaranse en formato CVS" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Recursos" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Procure unha localización perto súa" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nome" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Apelido" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Nome do Lugar" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Ligazón á Fonte de Novas" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Información Opcional" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Subir Fotos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Voltar á páxina de Informes" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Seleccionar unha Cidade" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "O seu Informe foi enviado ao noso equipo para ser revisado.Poñerémonos en contacto se fose necesario." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Enviar un Novo Informe" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Hora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Liña de Tempo dos Informes" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Título do Informe" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Ligazón a Video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Informe dun Incidente" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Informe polo miúdo" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Enviando unha mensaxe a" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Enviando correo" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Enviando un tweet co/s hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Preenchendo este formulario no noso site." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Empregando unha App" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "O seu informe foi gardado" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Título do Informe" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Solicitar máis información" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Solicitar localización" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Requerido" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requerimentos" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Reenviando Confirmación por Email" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Resetear" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Resetear tódolos filtros" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Resetear Contrasinal" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Atopar os nomes das cidades para os países seleccionados" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Contas administradas polo servizo %s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Xa ten unha conta administrada por CrowdmapID!Tente empregando as credenciáis de CrowdmapID para acceder." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Gardar" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Gardado" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Gardar e Engadir Novo" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Gardar e Pechar" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Gardar Informe" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Programar" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Programador de Tarefas" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Día" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Rexistro do Programador de Tarefas" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Día da Semana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Procura" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultados da Procura" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Código de Seguridade" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Seleccionar Todo" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Seleccionar un Tipo de Campo" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Seleccionar un Tipo de Formulario" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Seleccionar no mapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Seleccionar tantas como precisares" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Verifique que seleccionou un elemento" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Seleccionar Tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Enviar" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Enviar Confirmación" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Enviar a" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Enviado" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Enviado por" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Enderezo do Servidor" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipo de servidor" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servizo" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nome do Servizo" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID da/o usuaria/o do servidor" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Compartillar" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Datos compartillados" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "O compartillamento foi" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Compartillando" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa pequeno" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Amosar" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Amosar todo" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Amosar Mensaxes" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Amosa Informes dende o %1$s ata o %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Site" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "email do sitio" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL do sitio" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa grande" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Non ten nengún distintivo asignado." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Fonte" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Name da Fonte" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordear" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ordear por" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL da Fonte" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Soporte para SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "De" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Paso" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Envíe un Informe" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Enviado por %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Enviado por SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Envíe o seu SMS a" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "no seu móvil" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Éxito!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importado con éxito" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Alcume" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Vixilancia" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa mais alto" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Porto TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Temas" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema predetermiñado do Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Configuracións do Tema" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Este" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hoxe" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Este Mes" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Esta Semana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Este Ano" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Este é o seu perfil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Hora" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Título" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "a" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hoxe" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hoxe ás" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Mostra" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Tódolos Informes" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traducido" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descripción Traducida" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Título Traducido" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traducido ao" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traducción" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Gardouse a traducción" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Confiable" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipo" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Non se puido enviar o correo." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Informes sen Categoría" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "non lido" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Sen verificar" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Actualizar feeds" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Subir" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Vexa os nosos consellos para subir informes:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Consellos para subir XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Consellos para subir CVS" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Arquivo para subir" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Informes Subidos" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "As columnas dos campos persoalizados deben ter asociado o seu correspondenteform_id, p.ex. no campo Teste, no formulario predetermiñado, que ten id=1, seráTest-1 agora. Durante a importacióm de campos persoalizados do formularioasegúrese de que" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Co formulario seguinte, pode importar incidentes no sistema Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Os informes han ser subidos no formato CSV ou XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Cando unha ID de incidente xa exista na base de datos, a entrada do arquivoCSV/XML ha ser ignorada." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "É preciso fornecer alomenos o Título e a Data do Incidente." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Se non se fornecen datos de lonxitude e latitude, a localización será xeocodificada empregando o servizo do Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "No caso de estar importando información adicional, p.ex. información persoale/ou campos de formulario persoalizados" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Cando menos unha entrada nos campos de información persoal(nome, apelido, email)DEBE existir. Rexistros valeiros non serán importados." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "As súas entradas en opcións despregables, botóns de radio e caixas de seleccióncadran coas opcións fornecidas polos campos persoalizados na súa instancia" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "As opcións das caixas de selección van separadas por comas. Por exemplo, seseleccionou entre a categoría de froitas: mazáns, ameixas e amorodos, a súaentrada correspondente ha ser do xeito: \"mazáns,ameixas,amorodos\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Os valores para os campos de datas han ser do xeito: mm/dd/aaaa. P.ex. o 25 de Xuñodo 2014 será: 07/25/2014" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Exemplo de Informe CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#, TÍTULO DO INCIDENTE,DATA DO INCIDENTE,LOCALIZACIÓN,DESCRIPCIÓN,CATEGORÍA,APROBADO,VERIFICADO,LATITUDE,LONXITUDE
\"1\",\"Alcalde repón ilegalmente placas fascistas\",\"02/12/2013 17:12:00\",\"Vila de Cruces\",\"O alcalde Jesus Otero (PP) repón sendas placas fascistas, de Primo de Rivera e de Franco no local social municipal da parroquia de Carbia.\",\"EXALTACIÓN DO FASCISMO, PREVARICACIÓN\",SÍ,SÍ,\"42.798\",\"-8.233\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Lume\",\"2013-09-05 13:00\",\"As Neves\",\"Artefacto incendiario é lanzado dende unha avioneta sobre unha área de monte común veciñal e é neutralizado por eles mesmos\",\"LUME,INDUSTRIA DO LUME,INCENDIO PROVOCADO,MEDIOAMBIENTE\",SÍ,NO,\"42.105\",\"-8.376\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Enviado con éxito" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Subir Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Usuaria/o" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nome da/o usuaria/o" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Admin de Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificación" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificado" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Informes Verificados" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verificado" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verifique este Informe" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versión" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Visualización" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Visualizacións" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Visualizar Todo" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Visualizar tódolos feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Visualizar tódolos informes" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Visualizar Elementos" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Ver Mais" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Perfil Público" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Visualizar Informe" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Visualizar Informes" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Visualizar Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visible" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Agardando Aprobación" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Agardando Verificación" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa Extenso" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulario Web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Peso" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Sí" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Onte" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Panel de Control" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "O seu arquivo" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Achegar (zoom+)" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Alonxar (zoom-)" diff --git a/application/i18n/po/po-gl/upgrade.po b/application/i18n/po/po-gl/upgrade.po new file mode 100644 index 0000000000..7c22f7a4db --- /dev/null +++ b/application/i18n/po/po-gl/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-12-16 19:07+0000\n" +"Last-Translator: Xan das Bolas \n" +"Language-Team: Galician (http://www.transifex.com/ushahidi/ushahidi-v2/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Datos incorrectos. Empregue únicamente 0 para Non e 1 para Sí." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Actualización Automática" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Actualizacións Dispoñíbleis" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continúe" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Actualizar" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Entón, vou actualizar a súa base de datos dende a version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "á nova versión da base de datos" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Prema no botón \"Actualizar\" e reláxese mentras eu fago a maxia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Se a maiores quere facer unha copia de seguridade da base de datos, marque a caixa de selección enbaixo e fareino coma un lóstrego." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Facer copia de seguridade da base de datos antes da actualización?Moi recomendable!)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Actualización da base de datos" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "O Ushahidi foi actualizado! Antes de continuar, é preciso que actualice a súa base de datos á nova versión (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "A versión da base de datos xa está actualizada. " + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Houbo un fallo nalgún punto da actualización" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Actualización Manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Estatus da actualización do Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "As seguintes instrucciós explican cómo actualizar manualmente a súa instancia do Ushahidi." + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Baixar
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Baixe a máis recente versión do Ushahidi de" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Faga copia
dos ficheiros: .htaccess, ./applications/config/config.php, ./applications/config/database.php e ./applications/config/auth.php.
É recomendable que faga un backup completo da súa instalación do Ushahidi por se se dera o caso de que algo fose mal.
Copie arquivos
- Extraia o arquivo comprimido descargado.
- Segundo o sistema operativo no que traballe o seu aloxamento, empreguea súa ferramenta preferida (p.ex: Telnet, FTP, SSH) para acceder ao server e poder sustituir o contido de tódolos directorios polos novos da versión máis actualizada.
Actualize a base de datos
- Primeiro determiñe a versión do schema da súa base ollando para o valor db_version na táboa settings ou na cima da páxina coas informacións de actualización do Ushahidi
- Se estivera na versión 25, terá que actualizar da 25 á 26, da 26 á 27 e así sucesivamente ata o máis recente arquivo SQL do directorio /sql.
- Finalmente e coa axuda do seu cliente sql, actualize a mesma executando o arquivo upgradex-x.sql que corresponda.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Paso 3: Olle dentro do directorio sql.Execute manualmente o ficheiro upgrade-.sql comenzando dende a versión da súa instalación actual ata a o derradeiro ficheiro de actualización sql." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Paso 4: Prema no botón \"Continuar\" para actualizar as táboas necesarias." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Para actualización automática, prema no botón seguinte." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Actualmente estase a empregar o Ushahidi v%1$s coa versión da base de datos %2$den %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Actualizando" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Para continuar coa actualización simplificada, é precisa a seguinte información do servidor FTP no que o seu site está aloxado." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Exemplo: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Contrasinal FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nome de usuaria/o FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Ten a versión máis recente de Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Non é preciso actualizar." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versión da base de datos: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Atención: a versión do software no arquivo version.php e na base de datos, non cadran." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Atención: a versión da base de datos no arquivo version.php e o da propia base de datos, non cadran." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Base de datos:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Baixando a última versión do Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Arquivo de Log" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Baixado con éxito. Descomprimindo..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Erro na descarga." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Descomprimido con éxito. Copiando arquivos..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Erro na descompresión." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copiado correctamente. Actualizando a Base de Datos." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Erro copiando arquivos." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Copia de seguridade e actualización da base de datos correctas." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Erro na copia de seguridade da base de datos." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Actualización da base de datos correcta." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Borrando arquivos descargados..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "ACTUALIZACIÓN CORRECTA! Vexa o ficheiro de logs" diff --git a/application/i18n/po/po-he_IL/alerts.po b/application/i18n/po/po-he_IL/alerts.po new file mode 100644 index 0000000000..2cb5a63fc6 --- /dev/null +++ b/application/i18n/po/po-he_IL/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "לא הוזנה כתובת תקינה בשדה האימייל?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "כתובת אימייל זו רשומה כבר לקבלת התראות עבור מיקום זה" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "חובה להזין כתובת אימייל באורך שבין 4 ל-64 תווים" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "אם התיבה מסומנת, שדה האימייל הינו חובה" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "לא נבחר מיקום על המפה." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "לא נבחר מיקום על המפה." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "לא נבחר מיקום על המפה." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "לא נבחר מיקום על המפה." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "שדה הטלפון הנייד אינו מכיל מספר באורך תקין." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "מספר הטלפון הנייד רשום כבר לקבלת התראות עבור מיקום זה" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "המספר שהוזן בשדה הטלפון הנייד אינו תקין. יש להזין ספרות בלבד, כולל קדומת בינלאומית" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "חובה להזין מספר טלפון נייד או כתובת אימייל" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "אם התיבה מסומנת, שדה מספר הטלפון הנייד הינו חובה" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "לא הוגדר רדיוס תקין על המפה." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "לא הוגדר רדיוס על המפה." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "קוד זה אומת כבר בעבר!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "קוד האימות לא נמצא! יש לוודא כי כתובת ה-URL הינה נכונה." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "הקוד אומת בהצלחה. מעתה ישלחו אליך התראות בזמן אמת על תקריות שמתרחשות (ברדיוס הדיווחים שבחרת)" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "כדי לאשר את בקשת ההתראה, יש לגשת ל" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "חזרה לעמוד ההתראות ליצירת התראות נוספות" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "בקשתך להתראת אימייל נקלטה והודעת אימות נשלחה ל" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "הזן למטה את קוד האישור שקיבלת בדואר האלקטרוני:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "בקשתך להתראת אימייל לא נשמרה!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "בקשתך להתראת אימייל נשמרה!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "לא ניתן לאתר את בקשתך לאישור!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "בקשתך להתראה בטלפון הנייד נקלטה והודעת אימות נשלחה ל" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "יש להזין מטה את קוד האימות שקיבלת ב-SMS לטלפון הנייד:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "בקשתך להתראה בטלפון הנייד לא נשמרה!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "בקשתך להתראה בטלפון הנייד נשמרה!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "המערכת אינה מוגדרת כהלכה לעיבוד התראות" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "דואר זה נשלח אליך בשל הרשמתך לקבלת התראות. לביטול קבלת התראות יש לגשת ל" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "התראות לא יישלחו יותר מ" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "ביטול ההרשמה נכשל. יש לוודא תקינות כתובת URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "אימות הרשמה לקבלת התראות" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "התראות על מיקום זה לא יישלחו עד שתאושר בקשתך." diff --git a/application/i18n/po/po-he_IL/auth.po b/application/i18n/po/po-he_IL/auth.po new file mode 100644 index 0000000000..df58a00d56 --- /dev/null +++ b/application/i18n/po/po-he_IL/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "שדה האימייל אינו מכיל כתובת אימייל תקנית?" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "כבר קיים במערכת משתמש הרשום תחת כתובת אימייל זו." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "שדה האימייל חייב להכיל לפחות 4 תווים ולא יותר מ-64 תווים." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "שדה האימייל הינו שדה חובה." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "שם המלא חייב להכיל לפחות 34 תווים ולא יותר מ-100 תווים." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "שדה השם הינו שדה חובה." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "שדה שם המשתמש מכיל תווים שאינם מותרים לשימוש." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "הסיסמה חייבת להכיל לפחות 5 תווים ולא יותר מ-16 תווים." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "אנא בדוק שהזנת את הסיסמה הנכונה." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "אנא הקלד את אותה הסיסמה לכל אחד משני שדות הסיסמה." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "חובה להזין סיסמה." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "אנא הקלד את אותה הסיסמה שהוקלדה בשדה הסיסמה." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "שדה האימייל אינו מכיל כתובת אימייל תקנית?" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "אין ברשותנו את כתובת האימייל שלך" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "שדה האימייל הינו שדה חובה." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "תבנית תפקיד שגויה" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "שדה התפקיד חייב להכיל לפחות 5 תווים ולא יותר מ-30 תווים." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "עליך להגדיר לפחות תפקיד אחד." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "יש לבחור תפקיד בין משתמש (USER) לבין מפעיל (ADMIN)." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "לא ניתן לשנות את תפקיד המפעיל." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "שם המשתמש שבחרת כבר קיים במערכת." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "שם המשתמש חייב להכיל לפחות 2 תווים ולא יותר מ-16 תווים." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "אנא בדוק שהזנת את שם המשתמש הנכון." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "שם המשתמש הינו שדה חובה." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "לא ניתן לשנות את תפקיד מפעיל-על" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-he_IL/bug.po b/application/i18n/po/po-he_IL/bug.po new file mode 100644 index 0000000000..16bacfea6f --- /dev/null +++ b/application/i18n/po/po-he_IL/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "נא להזין קוד אבטחה חוקי" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "נא להזין את קוד האבטחה" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "נראה ששדה הדואר האלקטרוני אינו מכיל כתובת דואר אלקטרוני חוקית." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "על הדואר האלקטרוני להיות באורך של 4 עד 64 תווים." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "שדה הדואר האלקטרוני הוא שדה נדרש אם תיבת הסימון מסומנת." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "שדה השגיאה הוא שדה נדרש." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "על הנושא להיות באורך 3 תווים לפחות." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "שדה הנושא הוא שדה נדרש." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "על השם להיות באורך 3 תווים לפחות." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "שדה השם הוא שדה נדרש." diff --git a/application/i18n/po/po-he_IL/category.po b/application/i18n/po/po-he_IL/category.po new file mode 100644 index 0000000000..2060140fdb --- /dev/null +++ b/application/i18n/po/po-he_IL/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "על שדה הצבע להיות באורך 6 תווים בדיוק." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "שדה הצבע הינו שדה חובה." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "שדה התיאור הינו שדה חובה." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "אנא ודאו שגודל התמונה אינו עולה על 50 קילובייט." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "שדה התמונה אינו מכיל תמונה תקינה. ניתן להעלות תמונות מסוג .JPG, .PNG ו-.GIF בלבד." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "שדה התמונה אינו מכיל קובץ תקין." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "על שדה הכותרת להיות בן 3 עד 80 תווים." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "שדה הכותרת הינו שדה חובה." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "קטגורית-על אינה קיימת" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "ניתן להזין אך ורק מספרים בשדה קטגורית-על." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "שדה קטגורית-על הינו שדה חובה." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "הקטגוריה וקטגורית העל אינן יכולות להיות זהות." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-he_IL/comments.po b/application/i18n/po/po-he_IL/comments.po new file mode 100644 index 0000000000..42daa34d6a --- /dev/null +++ b/application/i18n/po/po-he_IL/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "נא להזין קוד אבטחה חוקי" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "נא להזין את קוד האבטחה" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "על השם להיות באורך 3 תווים לפחות." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "שדה השם הוא שדה נדרש." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "שדה ההערה הוא שדה נדרש." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "כתובת האימייל שהוזנה לא תקינה." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "על הדואר האלקטרוני להיות באורך 4 עד 64 תווים." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "שדה הדואר האלקטרוני הוא שדה נדרש אם תיבת הסימון מסומנת." diff --git a/application/i18n/po/po-he_IL/contact.po b/application/i18n/po/po-he_IL/contact.po new file mode 100644 index 0000000000..590a5c45e6 --- /dev/null +++ b/application/i18n/po/po-he_IL/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "נא העתק את הקוד" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "נא העתק את הקוד" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "כתובת האימייל אינה תקינה" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "על כתובת האימייל להכיל לפחות 4 תווים ולא יותר מ-64 תווים." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "חובה להזין כתובת אימייל אם תיבת הסימון מסומנת." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "חובה להזין הודעה." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "על השם להיות לפחות באורך 3 תווים." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "חובה להזין שם." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "על הנושא להיות לפחות באורך 3 תווים." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "חובה להזין נושא." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-he_IL/core.po b/application/i18n/po/po-he_IL/core.po new file mode 100644 index 0000000000..bc82748a4e --- /dev/null +++ b/application/i18n/po/po-he_IL/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Robbie MacKay , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-18 21:10+0000\n" +"Last-Translator: Robbie MacKay \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "קובץ הגדרות" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "בקר (controller)" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "דרייבר (driver)" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "יש ליישם את הדרייבר %s עבור הספרייה %s באמצעות הממשק %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "לא הצלחתי למצוא את הדרייבר %s, עבור הספרייה %s" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "באפשרותך לגשת לדף הבית או לנסות שוב." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "לא הצלחתי להשלים את הבקשה" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "סייען" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "סוג הקובץ המבוקש, .%s, אינו מאושר בקובץ צפיית ההגדרות שלך (view configuration file)" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "שיטה לא תקינה %s נקראה ב- %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "התכונה (property) %s איננה קיימת במחלקה (class) %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "ספרייה" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "לא ניתן לכתוב לתיקיית הלוג (log): %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "מודל" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "אושהידי לא הצליח לקבוע מהו הבקר (controller) לצורך ביצוע הבקשה: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "אנא הגדר נתיב ברירת מחדל ב config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "הדף שביקשת, %s, לא נמצא." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "דווח על השגיאה הזו לאושהידי" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "הבקשה %s, %s, לא אותרה" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "נטען ב {execution_time} שניות, באמצעות {memory_usage} של זכרון. נוצר על ידי אושהידי v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "rtl" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "יכול להיות רק הרצה אחת של אושהידי לכל בקשת עמוד" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "לא תפסתי %s: %s בקובץ %s בשורה %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "צפייה" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "עליך להגדיר את קובץ הצפייה (view filename) לפני שקוראים למריץ (render)" diff --git a/application/i18n/po/po-he_IL/database.po b/application/i18n/po/po-he_IL/database.po new file mode 100644 index 0000000000..267ff6e68b --- /dev/null +++ b/application/i18n/po/po-he_IL/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "שגיאה בבסיס הנתונים: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "לא ניתן למצוא את הטבלה \"%s\" בבסיס הנתונים. יש לוודא כי מתבצע שימוש בגירסה העדכנית ביותר של בסיס הנתונים עבור הגירסה הזו של אושהידי" diff --git a/application/i18n/po/po-he_IL/datetime.po b/application/i18n/po/po-he_IL/datetime.po new file mode 100644 index 0000000000..7a9b3c1fb0 --- /dev/null +++ b/application/i18n/po/po-he_IL/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "ו'" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "שישי" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "ב'" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "שני" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "ש'" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "שבת" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "א'" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "ראשון" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "ה'" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "חמישי" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "ג'" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "שלישי" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "ד'" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "רביעי" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "ינו" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "ינואר" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "פבר" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "פברואר" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "מרץ" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "מרץ" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "אפר" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "אפריל" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "מאי" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "מאי" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "יונ" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "יוני" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "יול" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "יולי" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "אוג" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "אוגוסט" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "ספט" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "ספטמבר" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "אוק" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "אוקטובר" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "נוב" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "נובמבר" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "דצמ" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "דצמבר" diff --git a/application/i18n/po/po-he_IL/feeds.po b/application/i18n/po/po-he_IL/feeds.po new file mode 100644 index 0000000000..df2ce5fa63 --- /dev/null +++ b/application/i18n/po/po-he_IL/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "תאריך" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "על שם הרסס (RSS) להיות בין 3 ל-70 תווים בדיוק." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "אנא מלא את שם הפיד (RSS)." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "אנא הזן את כתובת (ה-URL) של הפיד (RSS)" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "אנא הזן כתובת תקנית ומלאה, לדוגמא: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "מקור הפיד" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "כותרת" diff --git a/application/i18n/po/po-he_IL/footer.po b/application/i18n/po/po-he_IL/footer.po new file mode 100644 index 0000000000..02aead6238 --- /dev/null +++ b/application/i18n/po/po-he_IL/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl אינו מותקן במערכת זו" diff --git a/application/i18n/po/po-he_IL/form.po b/application/i18n/po/po-he_IL/form.po new file mode 100644 index 0000000000..ec66639052 --- /dev/null +++ b/application/i18n/po/po-he_IL/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "ערך ברירת המחדל שסיפקת עבור שדה זה אינו תקין." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "על שדה השם להיות באורך של בין3 ל- 200 תווים בדיוק." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "אנא הכנס ערך בין 0 ל- 50 עבור גובה השדה" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "הזנת ערך שגוי עבור שדה התאריך" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "אנא בחר כן או לא עבור שדה התאריך" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "שם השדה צריך להיות באורך של 3 עד 100 תווים בדיוק." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "אנא הכנס שם שדה." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "הזנת ערך שגוי עבור השדה הדרוש" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "אנא בחר כן או לא עבור השדה הדרוש" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "אנא בחר סוג שדה באופן תקין." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "אנא בחר סוג שדה." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "אנא הזן ערך בין 0 ל - 300 תווים בדיוק עבור רוחב השדה" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "אנא כתוב תיאור לטופס." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "לא ניתן למחוק את טופס ברירת המחדל." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "אנא בחר איזה טופס להוסיף לשדה." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "אנא בחר איזה טופס להוסיף לשדה." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "על שדה השם של הטופס להיות באורך של בין 3 ל- 100 תווים בדיוק." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "אנא מלא שם עבור הטופס." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-he_IL/imap.po b/application/i18n/po/po-he_IL/imap.po new file mode 100644 index 0000000000..3842351bd6 --- /dev/null +++ b/application/i18n/po/po-he_IL/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "לא ניתן לפתוח זרם IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "שירות האימייל אינו נתמך" diff --git a/application/i18n/po/po-he_IL/installer.po b/application/i18n/po/po-he_IL/installer.po new file mode 100644 index 0000000000..d61670bbac --- /dev/null +++ b/application/i18n/po/po-he_IL/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "נתיב הבסיס (Base Path)" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "דטהבייס (Database)" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "מארח הדטהבייס (Database Host)" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "אם אתה מריץ את אושהידי על המחשב שלך, סביר שזה יהיה \"localhost\". אם אתה מריץ את אושהידי על שרת באינטרנט, תוכל לקבל את מידע האיכסון שלך מספק האיכסון שלך." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "שם הדטבייס (Database Name)" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "השם של הדטהבייס עליו תרצה להריץ את אושהידי" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "למידע נוסף, אנא קרא את המאמר הזה בעמוד הויקי אשר מדבר בהרחבה על דטהבייסים" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "שפת ברירת המחדל (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "כל התקנה של אושהידי מגיע עם חבילה של תירגומי שפות. באפשרותך גם להוסיף שפה משלך" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "בטל" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "הפעל" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "סיכום רשימת השגיאות שהתרחשו" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "המיקום על השרת שלך אליו העלית את קבצי האושהידי. זיהינו את הערך הזה אוטומאטית, אנא וודא שהוא נכון. אם השדה הזה ריק, אל תדאג, זה בסך הכל אומר שאושהידי מותקן בתיקיית האב הכי גבוה בהיררכיית הספריות" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "סיימתי" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "כללי" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "מפתח API של גוגל" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "כל אחד יכול להשיג מפתח API. השג את שלך כאן" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "חזור לאחור" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "התקנה מתקדמת" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "מלא את כל ההגדרות הבסיסיות בחמשת השלבים הבאים. זה כולל שרת, מפה, שם האתר, ופרטי יצירת הקשר" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "התקנה בסיסית" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "מהיר ופשוט. כל מה שדרוש לך זה התיקייה שבה האתר יותקן ומידע על הדטהבייס שלך. בחר באופציה זו אם ברצונך שהאתר יהיה באוויר בזריזות, תמיד תוכל לעדכן את ההגדרות של האתר מאוחר יותר" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "המשך" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "ברוך הבא לתהליך ההתקנה של אושהידי על השרת. בחר מטה את סוג ההתקנה שברצונך לבצע" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "ההתקנה הושלמה בהצלחה" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "שרת דואר (Mail Server)" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "מאכסן שרת הדואר (Mail Server Host)" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "דוגמאות: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "סיסמת שרת הדואר" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "הסיסמא שבה אתה בדרך כלל מתחבר לאימייל שלך" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "פורט שרת הדואר (Mail Server Port)" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "פורטים נפוצים (Common Ports): 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "סוג שרת הדואר (Mail Server Type)" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). הסבר אודות ההבדל בין השניים." + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "שם משתמש לשרת הדואר (Mail Server Username)" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "אם אתה משתמש בג'ימייל, הוטמייל או דואר-יהאו, הכנס את כתובת האימייל המלאה בתור סיסמא" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "מפה" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "ספק מפות" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "אושהידי עובד טוב באותה המידה עם כל אחד מארבעת ספקי המפות הבאים: גוגל, בינג, יאהו, או שירות המפות הפתוחות (OSM = Open Street Map). בחר את שירות המפות אשר מציע את מירב הפירוט עבור איזורך. עבור התקנה שמיועדת לישראל רצוי להשתמש ב- OSM" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "צעדים נוספים..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "סיסמא" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "סיסמת הדטה-בייס" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "קודם" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "אנא אתחל את שרת האפצ'י שלך" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "הפעל או בטל SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "חלק משרתי הדואר נותנים לך את האופציה להשתמש ב SSL בזמן יצירת קשר. שימוש ב- SSL הוא מומלץ היות והוא מעניק לך שכבה נוספת של אבטחה" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "הגדר את שרת ה SMS שלך" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "כתובת אימייל האתר" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "כתובת אימייל להתראות האתר" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "כאשר המבקרים באתר שלך נרשמים לקבלת התראות באימייל, הם יקבלו מיילים מהכתובת הזו. כתובת האימייל הזו אינה חייבת להיות זהה לכתובת האימייל של האתר" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "תקשורת אימייל ברחבי האתר תוזרם דרך כתובת האימייל הזו" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "שם האתר" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "שם האתר שלך" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "כותרת המשנה של האתר" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "שורת כותרת המשנה שלך" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "הקבצים והתיקיות שמופיעים למטה צריכים להיות זמינים לכתיבה על ידי השרת שלך" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

תוכל למצוא הוראות לשינוי הרשאות הכתיבה של קבצים ותיקיות כאן:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "לפני שתתחיל, עליך לוודא שהקבצים והתקיות הבאים ניתנים לכתיבה על ידי השרת שלך. זה כולל שינוי הרשאות הקבצים" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "לצורך תהליך ההתקנה, דאג שברשותך פריטי המידע הבאים" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "קידומת הטבלה (Table Prefix)" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "לרוב אתה לא תרצה לשנות את קידומת הטבלה (Table Prefix). עם זאת, אם ברצונך להרציץ כמה אתרי אושהידי מאותו דטהבייס, באפשרותך לעשות כן באמצעות שינוי קידומת הטבלה (Table Prefix)." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "כותרת" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "כדי להיכנס למערכת, לך אל" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "העלה מידע דיווח" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "שם משתמש" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "שם המשתמש של הדטה בייס שלך (database username)" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "והשתמש באישורים הבאים" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "צפה באתר שלך" diff --git a/application/i18n/po/po-he_IL/layer.po b/application/i18n/po/po-he_IL/layer.po new file mode 100644 index 0000000000..d6bcf59002 --- /dev/null +++ b/application/i18n/po/po-he_IL/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "על שדה הצבע להיות באורך של 6 תווים בדיוק." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "יש להזין שדה צבע, בן 6 תווים." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "שדה הקובץ לא מכיל קובץ תקין. הפורמטים המקובלים היחידים הם .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "שדה הקובץ לא מכיל קובץ תקין." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "שדה השם חייב להיות באורך של בין 3 ל-80 תווים בדיוק" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "מילוי שדה השם הוא חובה." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "חובה להכניס כתובת או קובץ KML" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "לא ניתן להכניס גם כתובת וגם קובץ KML ביחד" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "אנא מלא כתובת אינטרנט תקינה. לדוגמא: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-he_IL/libraries.po b/application/i18n/po/po-he_IL/libraries.po new file mode 100644 index 0000000000..94ca056123 --- /dev/null +++ b/application/i18n/po/po-he_IL/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "החיבור לשרת akismet נכשל" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "לא ניתן לאחזר תשובה משרת Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "ספרית ה-API: %s, עבור ה-class %s לא נמצאה. יש לבדוק את טבלת ניתוב משימות ה-API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "מפתח ה-API עבור Akismet אינו תקין." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "שגיאה בעת ביצוע fopen sending method!
אנא בדוק האם ל- PHP יש תמיכה ב- OpenSSL כמו כן וודא שגירסת ה- PHP אשר מותקנת בשרת היא מעל 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "הודעה ה- unicode שלך ארוכה מדי! (אורך נוכחי =" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "אנא ציין את כתובת היעד אל (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "אנא ציין את כתובת המען (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "הודעה ה- unicode שלך ארוכה מדי! (אורך נוכחי =" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "שיטת משלוח אשר איננה נתמכת!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "ספריית ה- API %s איננה תקפה. כל ספריות ה- API צריכות להיות תת מחלקות (subclasses) של %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "לא הצלחתי למחוק את התיקייה %s" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "שגיאה התרחשה בזמן החילוץ מכיווץ של: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "ההורדה של הגירסה הכי עדכנית של אושהידי כשלה. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "לא הצלחתי להעתיק את הקובץ %s" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "לא הצלחתי למחוק את הקובץ %s" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "סקריפט עידכון לאושהידי" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "קובץ הזיפ של אושהידי, %s, חסום לכתיבה" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-he_IL/maintenance.po b/application/i18n/po/po-he_IL/maintenance.po new file mode 100644 index 0000000000..67aa0bdb56 --- /dev/null +++ b/application/i18n/po/po-he_IL/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "צר לנו, אך האתר כרגע מושבת לצורך תחזוקה. אנא נסו שוב בעוד מספר דקות." diff --git a/application/i18n/po/po-he_IL/message.po b/application/i18n/po/po-he_IL/message.po new file mode 100644 index 0000000000..5b938af151 --- /dev/null +++ b/application/i18n/po/po-he_IL/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "נא להזין קוד אבטחה חוקי" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "נא להזין את קוד האבטחה" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "נראה ששדה הדואר האלקטרוני אינו מכיל כתובת דואר אלקטרוני חוקית." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "על הדואר האלקטרוני להיות באורך של 4 עד 64 תווים." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "שדה הדואר האלקטרוני הוא שדה נדרש אם תיבת הסימון מסומנת." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "שדה ההערה הוא שדה נדרש." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "על השם להיות באורך 3 תווים לפחות." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "שדה השם הוא שדה נדרש." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "הטלפון אינו חוקי." diff --git a/application/i18n/po/po-he_IL/mhi.po b/application/i18n/po/po-he_IL/mhi.po new file mode 100644 index 0000000000..e4ef8db397 --- /dev/null +++ b/application/i18n/po/po-he_IL/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "נא להזין קוד אבטחה בתוקף." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "נא להזין קוד אבטחה." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "שדה האימייל אינו מכיל כתובת אימייל תקינה" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "נא להזין כתובת אימייל" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "שדה ההודעה הינו שדה חובה." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "שדה הנושא חייב להכיל 3 תווים לפחות." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "שדה הנושא הינו שדה חובה." diff --git a/application/i18n/po/po-he_IL/notifications.po b/application/i18n/po/po-he_IL/notifications.po new file mode 100644 index 0000000000..99ec355f48 --- /dev/null +++ b/application/i18n/po/po-he_IL/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "הודעה זו נשלחה מהאתר שלך." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "כניסת מנהל" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "תגובה חדשה נשלחה לאתר שלך, בתגובה ל:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "תגובה חדשה" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "הודעת דואר חדשה נשלחה לאתר שלך." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "הודעת דואר חדשה" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "דיווח חדש נשלח לאתר שלך." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "דיווח חדש" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "הודעת טקסט חדשה נשלחה לאתר שלך." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "הודעת טקסט חדשה" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "קיבלת התראה חדשה" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "התראה חדשה!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "קיבלת מסר פרטי" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "מסר פרטי חדש" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "על מנת להשיב אנא המשך אל: " diff --git a/application/i18n/po/po-he_IL/page.po b/application/i18n/po/po-he_IL/page.po new file mode 100644 index 0000000000..2f1b0e1be2 --- /dev/null +++ b/application/i18n/po/po-he_IL/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "הזן בבקשה כותרת לדף" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "על כותרת הדף להיות באורך של בין 3 ל-150 תווים." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "אנא הזן שם לשונית עבור הדף" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "הזן בבקשה תיאור לדף" diff --git a/application/i18n/po/po-he_IL/permissions.po b/application/i18n/po/po-he_IL/permissions.po new file mode 100644 index 0000000000..1c48b00a2c --- /dev/null +++ b/application/i18n/po/po-he_IL/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Dror Rapaport , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "צפה בדו\"חות" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "צור/ערוך/מחק דו\"חות" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "אשר דו\"חות" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "אמת דו\"חות" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "נהל דו\"חות תגובות" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "הורד דו\"חות" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "העלה דו\"חות" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "נהל מסרים" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "נהל דו\"חות הודעות" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "צפה בסטטיסטיקות" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "שנה הגדרות" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "לוח ניהול" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "נהל משתמשים" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "נהל תפקידים" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "יכול להירשם" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "נהל הרשמות" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "לגשת לממשק אדמין" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "לגשת לממשק חברים" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-he_IL/private_message.po b/application/i18n/po/po-he_IL/private_message.po new file mode 100644 index 0000000000..7b577b9435 --- /dev/null +++ b/application/i18n/po/po-he_IL/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, he_IL/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: he_IL\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-he_IL/report.po b/application/i18n/po/po-he_IL/report.po new file mode 100644 index 0000000000..6ee5a74a29 --- /dev/null +++ b/application/i18n/po/po-he_IL/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "שגיאה!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "This deployment spans within one country only. Please make sure the report location is within the country Uganda." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "אנא בחר פריט תקין על מנת לכלול אותו בהורדה" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "אנא בחר פריט תקין על מנת לכלול אותו בהורדה" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "אנא בחר סוג תקין של דיווח לצורך הורדתו" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "אנא בחר סוג תקין של דיווח לצורך הורדתו" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "אנא בחר סוג תקין של דיווח לצורך הורדתו" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "האם השדה של זמן התחלה כולל תאריך תקין?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "אנא מלא תאריך תקין עבור זמן התחלה. זמן ההתחלה לא יכול להיות גדול יותר מהיום הנוכחי." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "אנא הכנס ערך תקין על מנת לאשר את הדיווח" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "אנא הכנס ערך תקין על מנת לאשר את הדיווח" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "האם שדה ה-am/pm כולל ערך תקין?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "האם שדה הקטגוריה כולל ערך תקין?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "חובה למלא את שדה הקטגוריה." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "האם שדה התאריך כולל ערך תאריך תקין?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "האם שדה התאריך כולל ערך תאריך תקין?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "חובה למלא את שדה התאריך." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "חובה למלא את שדה התיאור." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "האם שדה השעות מכיל ערך תקין?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "חובה למלא את שדה השעות." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "אנא מלא ערך תקין עבור סבירות המידע" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "אנא מלא ערך תקין עבור סבירות המידע" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "האם שדה הדקות מכיל מידע תקין?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "חובה למלא את שדה הדקות." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "האם שדה הקישור למקור החדשות מכיל ערך תקין?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "אנא וודא שגודל קובץ התמונה שהעלית הוא עד 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "נראה ששדה העלאת התמונה לא כולל תמונה תקינה. סוגי קבצי התמונות האפשריים להעלאה הם .JPG .PNG ו .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "שדה העלאת התמונה איננו מכיל ערך תקין" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "אנא הזן ערך תקין עבור אמינות המקור" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "אנא הזן ערך תקין עבור אמינות המקור" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "על שדה הכותרת להכיל בין 3 ל- 200 תווים בדיוק." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "חובה למלא את שדה הכותרת." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "אנא הזן ערך תקין לאימות הדיווח" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "אנא הזן ערך תקין לאימות הדיווח" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "האם שדה הקישור לוידיאו מכיל קישור תקין?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "האם שדה קו-הרוחב מכיל ערך תקין??" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "שדה קו-הרוחב הוא חובה. אנא הקלק על המפה בשביל לבחור מיקום." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "שדה השפה (locale) מכיל ערך שגוי. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "לדיווח זה כבר יש תירגום לשפה זו" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "שדה השפעה (locale) מכיל ערך שגוי. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "לדיווח המקורי והתירגום שלו הם שניהם באותה שפה (locale)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "חובה למלא את השפה (locale)." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "על שדה המיקום שם להיות בין 3 ל- 200 תווים בדיוק." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "חובה למלא את שדה שם המיקום." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "האם שדה הקו-אורך מכיל ערך תקין?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "שדה קו-האורך הוא חובה. אנא הקלק על המפה בשביל לבחור מיקום." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "האם שדה האימייל מכיל ערך תקין?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "על שדה האימייל להיות באורך של 4 עד 64 תווים בדיוק." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "על שדה השם הפרטי להיות באורך של 3 עד 100 תווים בדיוק." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "על שדה שם המשפחה להיות באורך של 2 עד 100 תווים בדיוק." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "האם שדה תאריך הסיום מכיל ערך תקין?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "אנא מלא ערך תאריך סיום תקין. התאריך לא יכול להיות גדול מהיום." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "תאריך ההתחלה אינו יכול להיות גדול מתאריך הסיום." diff --git a/application/i18n/po/po-he_IL/reporters.po b/application/i18n/po/po-he_IL/reporters.po new file mode 100644 index 0000000000..fe65fb84af --- /dev/null +++ b/application/i18n/po/po-he_IL/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "קו הרוחב אינו מכיל ערך חוקי" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "חובה להזין קו רוחב. לבחירת מיקום מדויק יש ללחוץ על המפה." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "שדה רמת המדווח אינו מכיל ערך חוקי" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "חובה להזין רמת מדווח" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "על שם המיקום לכלול בין 3 ל200 תווים." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "חובה להזין את שם המיקום" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "קו האורך אינו מכיל ערך חוקי" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "חובה להזין קו אורך. לבחירת מיקום מדויק יש ללחוץ על המפה." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "מדווח לא חוקי" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "מדווח לא חוקי" diff --git a/application/i18n/po/po-he_IL/reports.po b/application/i18n/po/po-he_IL/reports.po new file mode 100644 index 0000000000..cf7509b550 --- /dev/null +++ b/application/i18n/po/po-he_IL/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, he_IL/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: he_IL\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-he_IL/roles.po b/application/i18n/po/po-he_IL/roles.po new file mode 100644 index 0000000000..2c4e0266f5 --- /dev/null +++ b/application/i18n/po/po-he_IL/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "על התיאור להיות באורך 3 עד 100 תווים." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "שדה התיאור הוא שדה נדרש." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "על השם להכיל רק אותיות ומספרים." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "על השם להיות באורך 2 עד 30 תווים." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "לא ניתן לשנות את התפקידים של משתמש המפעיל-על." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "שדה השם הוא שדה חובה." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "שדה הרשאת המשתמש צריך להיות מספר בין 0 ל- 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "שדה הרשאת המשתמש צריך להיות מספר בין 0 ל- 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-he_IL/settings.po b/application/i18n/po/po-he_IL/settings.po new file mode 100644 index 0000000000..137abaf64b --- /dev/null +++ b/application/i18n/po/po-he_IL/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "האם השדה להפעלת תגובות מכיל ערך תקין?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "השדה להפעלת תגובות הוא הכרחי." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "האם השדה שמאפשר לכלול פיד מכיל ערך תקין?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "השדה שמאפשר לכלול פיד הוא הכרחי." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "האם השדה שמאפשר לכלול דיווחים מכיל ערך תקין?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "השדה שמאפשר לכלול דיווחים הוא הכרחי." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "האם השדה שמאפשר שיתוף סטטיסטיקות מכיל ערך תקין?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "השדה שמאפשר שיתוף סטטיסטיקות הוא הכרחי." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "ברירת מחדל למספר הרשומות אשר ישלפו פר בקשת API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "המספר המקסימלי של רשומות אשר ישלפו פר בקשת API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "מספר מקסימלי של בקשות API לכל כתובת IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "האם שדה האקיזמט (Akismet) מכיל ערך תקין?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "האם שדה האקיזמט (Akismet) מכיל ערך תקין?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "השדה של מטמון (cache) העמוד הוא חובה." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "האם השדה של מטמון (cache) העמוד מכיל ערך תקין?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "האם השדה של משך זמן מטמון (cache) העמוד מכיל ערך תקין?" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "השדה של משך זמן מטמון (cache) העמוד הוא חובה." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "עושה רושם שהשרת שלך איננו מוגדר באופן שמאפשר לו להגיש קישורים נקיים. יהיה עליך להגדיר את השרת שלך על מנת לאפשר אופציה זו. עקוב אחר ההוראות בקישור המצורף על מנת לתקן את הבעיה." + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "האופציה הזו מפעילה קישורים \"נקיים\" באושהידי. כלומר ללא \"index.php\" בכתובת האתר." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "אפשר קישורים נקיים" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "קישורים נקיים" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "על שדה מספר ה-Clickatell API להיות באורך של עד 20 תווים בדיוק." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "שדה מספר ה-Clickatell API הוא חובה." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "על שדה סיסמאת ה-Clickatell להיות באורך של 5 עד 50 תווים בדיוק." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "שדה סיסמאת ה-Clickatell הוא חובה." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "על שדה שם משתמש ה Clickatell להיות באורך של עד 50 תווים בדיוק." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "שדה שם משתמש ה-Clickatell הוא חובה." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "הגדר מפה" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "מיקום ברירת מחדל" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "האם שדה צבע הפיד מכיל ערך תקין?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "על שדה הצבע להיות באורך של עד 6 תווים בדיוק." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "שדה הצבע הוא חובה." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "ברירת מחדל לתצוגת המפה" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "ברירת מחדל למידת ההגדלה" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "אחזר ערים מגאו-שמות (Geonames)" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "שדה הפורט (port) של שרת האימייל ארוך מידי" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "על שדה הפורט (port) של שרת האימייל להכיל מספרים בלבד." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "על שדה סיסמאת שרת הדואר להיות באורך של בין 5 ל- 50 תווים בדיוק." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "שדה סיסמאת שרת הדואר הוא חובה." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "שדה הפורט (port) של שרת האימייל ארוך מידי" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "על שדה הפורט (port) של שרת האימייל להכיל מספרים בלבד." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "שדה הפורט (port) של שרת האימייל ארוך מידי" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "על שדה שם המשתמש של שרת הדואר להיות באורך של עד 50 תווים בדיוק." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "שדה שם המשתמש של שרת הדואר הוא חובה." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "הגדרת אפשרויות הפייסבוק" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "על מנת להשיג את המידע שיש למלא למטה, ראשית יהיה עליך ליצור אפליקציית פייסבוק ב" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "חובה על שדה הגוגל אנליטיקס להכיל מספר זיהוי (Web Property ID) מהצורה UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "הפעל HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "האופציה הזו מאפשרת לגשת לאושהידי באופן לא מאובטח; כלומר ללא \"https://\" בקידומת לכתובת האתר" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "האופציה הזו מאפשרת לגשת לאושהידי באופן מאובטח; כלומר עם \"https://\" בקידומת לכתובת האתר" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "האם השדה של מספר הפריטים פר עמוד (עמוד ראשי) מכיל ערך תקין?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "השדה של מספר הפריטים פר עמוד (עמוד ראשי) הוא חובה." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "האם השדה של מספר הפריטים פר עמוד (עמוד ניהול) מכיל ערך תקין?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "השדה של מספר הפריטים פר עמוד (עמוד ניהול) הוא חובה." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "הגדרת ספק המפות עבור האתר הוא תהליך פשוט. בחר את הספק, השג את מפתח ה API מאתר הספק, והכנס את מפתח ה API" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "מידת ההגדלה" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "בחר ספק מפות" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "הכנס את מפתח ה- API החדש" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "השג מפתח API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "הגדרת ספק המפות עבור האתר הוא תהליך פשוט. בחר את הספק, השג את מפתח ה API מאתר הספק, והכנס את מפתח ה API" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "ספק המפות" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "הגדרות המפה" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "האם התקנת האושהידי מתייחסת למספר ארצות" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "בחר ארץ ברירת מחדל" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "הקלק וגרור את המפה כדי לבחור את מיקומך המדוייק" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "דיווחי אשכולות על המפה" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "אפשר למשתמש להשאיר תגובות לדיווחים" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "כלול פיד רסס חדשות (news RSS feed) באתר" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "אפשר למשתמשים לשלוח דיווחים" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "מפתח אקיזמט (Akismet)" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "באנר האתר" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "בלוקים לכל שורה" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "שמור מטמון עבור עמודים" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "צ'ק-אינים" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "הצהרת זכויות היוצרים של האתר" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "צבע ברירת המחדל לכל הקטגוריות" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "מחק את תמונת הבאנר של האתר" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "הצג עמוד יצירת קשר" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "הצג עמוד \"כיצד לעזור\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "התראות כתובות אימייל" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "על מנת לקבל דיווחים דרך האימייל, אנא הגדר את הגדרות חשבון האימייל שלך." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "כתובת האימייל של האתר" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "גוגל אנליטיקס" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - פורמט: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "פריטים לכל עמוד - עמוד ראשי" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "פריטים לכל עמוד - ממשק הניהול" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "מנע תגובות ספאם באמצות שימוש באקיזמט (Akismet from Automattic).
באפשרותך להשיג מפתח API בחינם על ידי רישום WordPress.com לחשבון משתמש ב-" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "שפת האתר" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "הודעת האתר" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "שם האתר" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "פריסת אתר פרטית" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "הודעת שליחת דיווח" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "הפעל סטטיסטיקות (מאוכסנות בשרת של אושהידי)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "כותרת משנה לאתר" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "איזור זמן" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "הגדרות האתר" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "מונחי חיפוש בטוויטר" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "האשתגים (Hashtags) - מופרדים באמצעות פסיקים " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "האם שדה האימייל של האתר מכיל ערך תקין?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "על שדה האימייל של האתר להיות באורך של 4 עד 100 תווים בדיוק." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "על שדה שם האתר להיות באורך של 3 עד 50 תווים בדיוק." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "שדה שם האתר הוא חובה." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "על שדה כותרת המשנה של האתר להיות באורך של 3 עד 100 תווים בדיוק." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "שדה כותרת המשנה היא חובה." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "מספר ה Clickatell API שלך" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "בדוק את מאזן הקרדיט שלך ב Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "העלה מאזן קרדיט" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "סיסמאת ה Clickatell שלך" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "הירשם לשירות ה Clickatells על ידי לחיצה כאן" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "הכנס את פרטי הגישה שלך של Clickatell למטה" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "שם המשתמש שלך ב Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "הכנס מספר(י) טלפון אשר מחוברים עם Frontline SMS בשדה(ות) למטה" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "הכנס את המספר ללא אף סימני פלוסים או מקפים (+/-)" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "אופציה 1: השתמש ב Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "אופציה 2: השתמש ב Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "אפשרויות הגדרת SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "השדה טלפון 1 ארוך מידי" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "על השדה טלפון 1 להכיל מספרים בלבד." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "השדה טלפון 2 ארוך מידי" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "על השדה טלפון 2 להכיל מספרים בלבד." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "השדה טלפון 3 ארוך מידי" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "על השדה טלפון 3 להכיל מספרים בלבד." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-he_IL/sharing.po b/application/i18n/po/po-he_IL/sharing.po new file mode 100644 index 0000000000..a8ef4703d0 --- /dev/null +++ b/application/i18n/po/po-he_IL/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Ingress תאריך" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "תאריך הוספה" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "גישה אחרונה" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "שדה הצבע צריך להיות באורך של 6 תווים בדיוק." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "יש להזין שדה צבע בן 6 תווים." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "האם שם השיתוף שהזנת תקין?" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "חובה להזין שם שיתוף." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "קיימת כבר כתובת אתר כזו" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "כתובת האתר שהזנת נראית לא תקינה?" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "יש להזין כתובת אתר (URL)." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "האם כתובת האתר שהזנת תקינה?" diff --git a/application/i18n/po/po-he_IL/stats.po b/application/i18n/po/po-he_IL/stats.po new file mode 100644 index 0000000000..207114ff15 --- /dev/null +++ b/application/i18n/po/po-he_IL/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "מאושר" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "קטגויות" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "דיווחי קטגוריות לאורך זמן" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "בתרשים זה מוצגת כמות הדיווחים לכל קטגוריה לאורך הזמן. יש לגלול משמאל לימין כדי לראות תצוגה השוואתית של הקטגוריות השונות. יש להעביר את הסמן מעל הגרף לפרטים נוספים." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "בחירת טווח תאריכים" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "מדינות" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "מדינה" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "מבקרים לפי מדינות" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "זהו אזור הסטטיסטיקה. ניתן להתרשם באמצעות הקישורים לתתי הקטגוריות למעלה" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "שגיאה" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "מילון מונחים" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "סיכום כניסות" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "מקרא" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "צפיות" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "המספר הכולל של דפים שנצפו על ידי המבקרים באתר" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "דיווחים" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "קטגוריות הדיווחים" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "סטטיסטיקת הדיווחים" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "מצב הדיווחים" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "דיווחים לאורך זמן" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "פילוח דיווחים" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "סטטיסטיקות אינן מוגדרות" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "חודש אחד" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "שלושה חודשים" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "חצי שנה" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "הכל" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "לא מאושר" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "מבקרים ייחודיים" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "מספר האנשים שהגיעו לאתר, מבקרים ייחודיים נקבעים באמצעות עוגיות (cookies). במקרה והמבקר חסם את האפשרות לשמירת עוגיות במחשבו, המבקר יזוהו באמצעות שיטה פשוטה אשר מתחשבת בכתובת חשבון ה-IP של המשתמש, הדפדפן, רזולוצית המסך, הפלאגינים שלו, מערכת ההפעלה וכדומה." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "לא מאומת" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "מאומת" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "מבקרים באתר" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "ביקורים" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "ביקור מתאר מבקר ייחודי שנכנס לאתר לאחר יותר מ-30 דקות מאז הפעם האחרונה בה צפה בדף" diff --git a/application/i18n/po/po-he_IL/tooltips.po b/application/i18n/po/po-he_IL/tooltips.po new file mode 100644 index 0000000000..7064dab0fc --- /dev/null +++ b/application/i18n/po/po-he_IL/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "זה מוסיף את הדוח לקטגוריות נוספות. אם תבחר להוסיף את קטגוריה 1 לדיווח, כאשר הדיווח כבר משוייך לקטגוריה 2, אזי הדיווח ישוייך גם לקטגוריה 1 ולקטגוריה 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "תוכל להקצות תג למשתמש המדווח. בחר את התג אשר יוקצה כאן" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "זהו טווח של שעות ו / או דקות בין שני זמנים בפורמט של 24 שעות. אם הזנת זמן מוקדם יותר בשדה השני, הזמן יוחלף בזמן שבשדה הראשון. הזמנים שהוזנו צריכים להיות בטווח של יום אחד. כמו כן, הזמן שהוזן מושווה כנגד הזמן שהגדרת בהגדרות האתר, ולאו דווקא למול אזור הזמן של המשתמש אשר משתמש במערכת. השאר את השדות ב 0:00 עד 00:00 בכדי להתעלם מהגדרה זו." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "באפשרותך להגדיר כאן, אם ברצונך שטריגרים יופעלו רק כאשר נעשה שימוש בקטגוריה מסוימת. זה יאפשר לטריגר להיות מופעל אם, ורק אם, יעשה שימוש באחת הקטגוריות. לדוגמא, אם תבחר בקטגוריות 1 ו-2 ולאחר מכן יוגש דיווח אשר ישוייך לקטגוריות 2 ו- 3, הדיווח יעבור את המבחן." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "אם פעולות אלו מתרחשות בימים מסוימים בשבוע. זכור שהיום נקבע לפי אזור-הזמן שהוגדר בהתקנת המערכת. לסימון של מספר ימים לחץ על Shift או Command ואז בחר את הימים." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "התוכן של הודעת הדואר-האלקטרוני שתישלח." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "הנושא של הודעת הדואר-האלקטרוני שתישלח." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "אתה יכול לבחור להשאיר את השדה הזה ריק אם אתה לא מעוניין לבדוק את הקלט מול מילות המפתח. אם תוסיף כאן מילים, תצטרך להפריד ביניהם באמצעות פסיק (,). לדוגמה, אם אתה רוצה להפעיל טריגר כאשר מישהו מזכיר את המילים \"אהבה\" או \"שלום\" במסר שלהם, יהיה עליך להוסיף \"אהבה, שלום\" בתיבת מילות המפתח." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "באפשרותך לבחור כל מקום או מיקום ספציפי. אם בחרת מיקום מסוים, תתבקש לסמן מלבן מסביב לאזור אשר מתאים לפעולה. לדוגמה, אם אתה רוצה שהטריגר הזה יופעל כאשר מישהו מגיש דיווח בברזיל, עליך לבחור \"אזור מסוים\" ולאחר מכן לסמן את המלבן מסביב לברזיל. אתה יכול לצייר מלבנים קטנים או גדולים לפי רצונך. ניתן גם לסמן מספר מלבנים שונים במשולב." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "המאשרר הזה מפעיל את הטריגר בספירה ה-N-ית, או עבור בסיס המשתמשים כולו, או עבור כל משתמש יחיד. השאר את השדה ריק כדי להתעלם ממנו." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "אם כל המאשרר מעל מאושרים, הטריגר יפעיל את התגובה. התגובה יכולה לנוע בין אישור הדיווח לבין משלוח דואר אלקטרוני למשתמש. בחר את התגובה הרצוייה לך כאן כדי להפעיל אפשרויות נוספות עבור התגובות הספציפיות." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "אם תבחר \"משתמש טריגר\", דואר אלקטרוני ישלח אל המשתמש שביצע את הפעולה. באפשרותך להזין כתובת דואר אלקטרוני אישית, על ידי בחירת לחצן האפשרויות שלצד תיבת הקלט. אפשרות זו שימושית אם אתה מגדיר טריגרים על מנת להודיע ​​לאנשים כאשר מתקבלים דיווחים, אישרור-הגעה או פעילויות אחרות, בחלקים מסוימים של המפה." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "באפשרותך לבחור פה מספר ימים. תאריכים נקבעים לפי הגדרת איזור הזמן של המערכת שלך. על מנת להפעיל את ברירת המחדל עבור כלל התאריכים, אל תסמן כאן אף תאריך." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "הטריגר הוא המרכיב המרכזי בהגדרת טריגרי הפעולה שלך. זה המקום שבו אתה קובע אם אתה רוצה שמשהו יקרה כאשר מישהו מגיש דיווח, מבצעת אישרור-הגעה, וכן הלאה. באפשרותך לסנן תגובות לפעולות אלה לאחר הבחירה של אחד מהם." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "המשתמש יכול להיות כל אחד או משתמש מסוים. אם אתה רוצה שרק למשתמשים מסוימים יפעילו את הטריגר, עליך לבחור אותם כאן. אחרת, עליך להשאיר את ההגדרה כאן בתור \"כל-אחד\", שכן רוב הטריגרים מוגדרים עבור כלל המשתמשים אשר משתמשים במערכת" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "מסמן דיווח כמאומת או לא" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "תמונות הפרופילים של דפי המשתמש באתר זה, עושים שימוש במערכת הגראווטר (Gravatar). על ידי לחיצה על התמונה שלך, תועבר לאתר Gravatar שבו תוכל לשנות את תמונת הפרופיל שלך." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "הפרד כל ערך באמצעות פסיק. לדוגמא: ערך 1, ערך 2 וכן הלאה" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "הפרד כל פריט בחירה באמצעות פסיק לדוגמה: פריט 1, פריט 2 וכן הלאה" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "התחל להקליד לחברי הרשימה" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "נושא ההודעה הפרטית" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "הודעה פרטית" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "אתה יכול לבחור צבע אשר יופיע מתחת לתמונת הפרופיל שלך בעמוד הפרופיל הציבורי שלך. צבע זה יהיה גם ישמש כנקודת הצבע אשר תופיע על המפה עבור אישרורי-ההגעה שלך." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "כתובת האימייל שלך" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "שמך המלא" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "בחירת \"כן\" תאפשר קבלת התרעות באימייל עם הופעת תגובות או דיווחים חדשים באתר שלך" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "הסיסמה שלך. כדי לשמור על הסיסמה הנוכחית, נא להשאיר את השדה ריק." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "הפרופיל שלך יהיה פתוח לצפייה על ידי כלל גולשי האינטרנט, באם תסמן באפשרות זו. זוהי גם הדרך הקלה ביותר להציג לראווה את הדיווחים אשר העלית לאתר, את אישרורי ההגעה שלך, האותות שלך וכן הלאה - כולם בדף אחד." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "אי-אפשר לשנות את שם המשתמש" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "רמות הרשאה משמשים כדי להגביל גישה לנתונים בשדות אשר מותאמים אישית. משתמשים ברמות הרשאה גבוהות יכולים לגשת לשדות אשר משוייכים לרמות נמוכות יותר. למפעיל-על יש את רמת ההרשאה הגבוהה ביותר - 100. נתונים ציבוריים מוצגים ברמת ההרשאה הנמוכה ביותר - 0." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "כתובת אימייל זו תשמש לשליחת התרעות באימייל." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "מאפשר ריכוז דיווחים דומים בנקודה אחת על המפה" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "מתן אפשרות למשתמשים להגיב לדיווחים באתר הראשי." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "מאפשר הזרמת רסס (RSS) באתר הראשי" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "מתן אפשרות למשתמשים לשלוח מידע דרך האתר" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "מספר הרשומות לאחזור בכל קריאת API כברירת מחדל" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "מספר הרשומות המקסימלי לאחזור בכל קריאת API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "מספר קריאות API מקסימלי לכתובת IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "הבאנר של האתר מופיע בחלק העליון של החלק הפתוח-לציבור של אתר האינטרנט שלך, בהינתן שערכת העיצוב בה אתה משתמש תומכת בכך. הגודל המומלץ עבור הבאנר יהיה תלוי בערכת העיצוב בה אתה משתמש. זכור, הבאנר יחליף את כותרת וכותרת-המשנה של האתר אשר מופיעים כעת בחלק העליון של הדף." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "מספר איזורי העמודות אשר יוצגו בכל שורה" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "הפעלה או ביטול של שמירת דפים בזכרון מטמון (Caching). אפשרות זו מקצרת את זמני התגובה וכך מאיצה את הצגת הדפים. מומלץ לשימוש באתרים בהם נפח פעילות גבוה. ** חשוב לזכור שהדיווחים יוצגו למשתמש על בסיס לוח הזמנים שמוגדר מטה (Cache Lifetime)" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "הגדרת משך הזמן לשמירת זכרון המטמון" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "הגדרה זו מאפשרת אישרור-הגעה (checkins) באתר שלך. זהו סוג דיווח פשוט יותר, אשר איננו עובר סינון לפני שהוא עולה לעמוד הבית, ואשר דורש שהאתר שלך יהיה מוגדר בצורה מסוימת. כאשר אתה מאפשר את זה, יש לוודא הגדרת אזור הזמן שלך הוא על UTC ושערכת העיצוב שלך תומכת באישרורי-הגעה. כאשר אתה מאפשר את האופציה הזו, רק ערכות-עיצוב אשר תומכות באישרורי-הגעה יהפכו מופעלות תחת עמודי הגדרות הערכות-עיצוב/תוספים." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "הגדרת מפה לכסוי מיקום ספציפי" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "הגדרת קוד צבע לכלל הקטגוריות באתר" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "האתר פועל במדינה זו" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "מפעיל/מכבה את לשונית הצור-קשר בעמוד הראשי." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "הפעלה או ביטול לשונית \"כיצד לעזור\" באתר הראשי." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "מספר הדיווחים המוצג בכל עמוד באתר הראשי." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "מספר הדיווחים המוצג בכל עמוד בממשק הניהול של האתר." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "המוקד להודעות נכנסות" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "סנכרון ההודעות שבמוקד עם פלטפורמת אושאהידי" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "מספרי הטלפון דרכם מתקבלות הודעות טקסט" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "מתעד את הגולשים באתר שלך. קבל נתונים סטטיסטיים מפורטים אודות גולשי האתר" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "הגדר את השפה של האתר." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "זה מגדיר באיזו מפה משתמש האתר" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "הגדרת ערך זה לאמת או כן יהפוך את האתר שלך לפרטי, כך שרק משתמשים עם חשבונות שציינת יוכלו לגלוש באתר." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "זה המקום שבו מצויים האי-מיילים" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "זוהי הסיסמה עבור כתובת הדואר-האלקטרוני אשר מקבל את הדיווחים" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "זה נדרש על מנת לקבל את החיבורים הנכנסים מכתובת הדואר האלקטרוני" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "זה נדרש כדי לשפר חיבור מאובטח" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "זה נדרש כדי לאחזר הודעות דואר אלקטרוני מן השרת המארח" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "זוהי כתובת הדואר האלקטרונית אשר מקבלת דיווחים" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "סטטיסטיקת כניסות מאוחסנים בשרת אשר נשלט על ידי אושהידי (Ushahidi). על ידי הפעלת אפשרות זו, תזכה בגישה לסטטיסטיקת כניסות ישירות בפאנל הניהול שלך. על ידי ביטול אופציה זו, יופסק איסוף נתונים סטטיסטיים על הגולשים ותמנע ממך האפשרות לשחזר את נתוני התנועה לאתר בזמן שהאופציה הייתה כבויה." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "זה תמיד רעיון טוב להגדיר את זכויות היוצרים על העבודה שלך. לקבלת עזרה בקביעת רישיון אשר יתאים לצרכים שלך, בקר בכתובת: http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "זוהי כתובת הדואר האלקטרונית שבה יתקבלו דיווחים באימייל והודעות מטופס הצור-קשר." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "זהו הטקסט שיופיע מעל המפה בדף הבית. זו שימושי לעדכן את הטקסט לצורך מתן מידע חשוב למבקרים באתר. כדי להסיר את קופסת הטקסט, עליך למחוק את ההודעה שכאן." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "זהו השם של האתר שמופיע בחלק העליון של האתר הראשי." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "זהו המסר אשר יופיע בעמוד הזנת הדיווחים. עידכון הטקסט הזה הוא טוב עבור ציון הסתייגויות או מתן הוראות נוספות עבור המבקרים שלך אשר מוסרים דיווחים." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "במילים ספורות, הסבר במה האתר עוסק." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "זהו אזור הזמן שהאתר שלך יפעל על פיו. הגדרה זו משפיעה על כל פעולה שהגדרת אשר עושה שימוש בזמנים ותאריכים, כמו גם משיעה על זמן ברירת המחדל אשר תיבחר עבור דיווחים שימולאו בחלק הגלוי ובחלק הניהולי של האתר." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "הגדר את ההשטג (hashtag) אשר ישמשו בציוצים בטוויטר" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-he_IL/ui_admin.po b/application/i18n/po/po-he_IL/ui_admin.po new file mode 100644 index 0000000000..92b9ca0687 --- /dev/null +++ b/application/i18n/po/po-he_IL/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "הגישה נדחתה. או שהאישורים שלך אינם תקפים או שבקשתך סורבה" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "הגישה נדחתה. בקשתך נתקבלה, אך נדחתה בשל מגבלות גישה כגון זמן. נסה שוב מאוחר יותר" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "דרגת גישה" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "פעולות" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "הוסף לקטגוריה" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "נוסף" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "נוסף/נערך" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "תוספים" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "מנהל" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "התראות" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "התקבלו התראות" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "אנונימי" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "כל אחד" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "כל מקום" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API נחסם" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API הגדרות" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "UNBAN כולם" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "מאושר" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "אשר אוטומאטית" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "אשר ידנית" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "נוסף לארכיון" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "האם אתה בטוח שאתה רוצה ל" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "האם אתה בטוח שאתה רוצה למחוק את הפריט הזה" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "האם אתה בטוח שאתה רוצה למחוק את התמונה הזו" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "האם אתה בטוח שאתה רוצה להחליף טפסים" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "הענק" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "מענקים" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "הענק אות" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "מחבר" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "דואר אלקטרוני של המחבר" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "חזור" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "חסום IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "בין הזמנים" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "תיבות" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "גוף" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "בטל" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "קטגוריות" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "שגיאה בהצגת התרשים" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "אנא וודא שההודעה שלך תקינה" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "אנא וודא שהמספר שהזנת תקין" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "אנא בדוק את הגדרות הס.מ.ס שלך!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "הגדרות צ'ק אין" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "צ'ק אינים" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "ערים נטענו" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "קוד" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "גירסאת הקוד אינה מסונכרנת." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "צבע" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "תגובות" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "קוד אישור ההתראות שלך הוא: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "המשתמש" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "ספירה" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "מדינה לא נמצאה" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "נמצא/נערך" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "צור דיווח" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "עידכון קריטי" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "כרגע פעיל" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "כרגע לא פעיל" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "יומי" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "לוח בקרה" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "דטה בייס" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "תאריך וזמן" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "ימים בשבוע" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "גירסת הדטה בייס איננה מסונכרנת." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "נמחק" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "מחק" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "מחק אות" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "דמו" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "תיאור" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "מבוטל" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "תחילת מפצל" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "סוף מפצל" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "מחלקת div" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "הורד דיווחים" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "בחירת נפתחות מטה" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "נערך בידי" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "ערוך" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "ערוך לוגים" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "דואר אלקטרוני" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "כל הקולקטיב" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "שגיאה בקידוד-גאו! שגיאת HTTP." + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "ספריית IMAP PHP איננה מותקנת" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "שגיאה" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "שגיאה, לא ניתן לשגר את התקרית" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "כל שש שעות" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "כל שתיים עשר שעות" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "נסיוני" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "שאלות נפוצות" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "פיד" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "משוב" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "פידים" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "רשימת אפשרויות" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "ערך ברירת מחדל" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "סוג מידע" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "ג'אווה סקריפט (javascript)" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "מרק-אפ (markup)" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "מספרי" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "טקסט חופשי" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "גובה (בשורות)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "שדה חבוי" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "אורך מקסימאלי של תווים" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "שם השדה" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "מתג" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "לא" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "כן, סגר כברירת מחדל" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "כן, פתח כברירת מחדל" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "לא הצלחתי למצוא את הקובץ שהועלה" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "לא הצלחתי לפתוח את הקובץ לקריאה" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "הטופס לא קיים!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "פורום" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "שדה טקסט (טקסט חופשי)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "שדה תאריך" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "שדה כפתורי רדיו" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "שדה סימון מרובה" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "שדה בחירה מתפריט נפתח" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "מ" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "מ" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "שגיאה geoname timeout" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "קבל עזרה" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "פעולות" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "הוסף\\ערוך" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "דואר אלקטרוני" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "נהל משתמשים" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "תפקיד" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "משתמש" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "עזרה" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "שעתי" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "פיד תקריות עבור" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "אירוע" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "אירועים" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "פרטי אירוע" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "פרמטר שגוי" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "כתובת IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "האם זה שדה תאריך?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "מי יכול לצפות בתשובות" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "מי יכול לשלוח תשובות" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "מילת מפתח" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "מילות מפתח" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "כתובת דואר אלקטרוני:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "שם מלא:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "סיסמא:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "תפקיד:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "שם משתמש:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "שכבות" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "מפקח" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "התנתק" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "לוגים" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "נהל" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "נהל תפקידים והרשאות" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "צפה במשתמשים" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "הוסף/ערוך משתמש" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "סמן כ" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "סמן כלא-ספאם" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "סומן כספאם" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "לא מתאים לאף מסמך" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "הודעה" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "הודעות" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica הודעות" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "הודעות טוויטר" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "ההודעה שלך נשלחה!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "דקות" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "פרמטר חסר" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "מפקח" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "עודכן" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "עדכן את הגדרות איזור הזמן" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "רד למטה" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "עלה למעלה" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "מספר הרצות מאוכסנות" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "ההתראות שלי" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "הצ'ק אינים שלי" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "הפרופיל שלי" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "הדיווחים שלי" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "הטלת הצבעות" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "חיובי" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "שלילי" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "שם" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "צור התראה חדשה" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "צור הודעה חדשה" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "סיסמא חדשה" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "לא" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "הודעות" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "זה לא רגיש לאותיות גדולות-קטנות." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "לא נמצא" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "אין נתונים. אין תוצאות להציג." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "אין שגיאות" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "אין תוצאות להציג!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "של" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "בספירה ספציפית" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "עמוד" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "עמודים" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "העמוד לא נמצא" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "פרמטרים בהם נעשה שימוש" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "סיסמה" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "איתחול סיסמה" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "יקירי" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "קיבלנו בקשה לאתחל את הסיסמא שלך" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "על מנת לשנות את הסיסמה שלך, אנא לחץ על הקישור למטה (או העתק והדבק אותו לתוך הדפדפן)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "כפי שביקשת, סיסמתך אותחלה כעת. פרטיך החדשים הם כדלקמן" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "איתחול סיסמת אושהידי" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "טלפון" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "אנא בחר" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "מידע לא נשלח באמצעות post method" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "תצוגה מקדימה" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "הודעה" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "הודעה פרטית" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "הודעה פרטית נשלחה" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "נושא" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "אל" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "רישום פומבי" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "וודאנים (Qualifiers)" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "קרא" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "רלוונטיות" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "מדווחים" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "דרגת מדווח" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "דיווחים" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "ציון מוניטין" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "חובה" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "אתחל" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "תגובה" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "תוצאות" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "לשלול" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "שמור הגדרות" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "חיפוש" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "מחפש עבור" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- בחר סוג שדה ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "אנא בחר פריט" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "עליך לבחור טריגר לפני שתבחר תגובה." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "עליך לבחור טריגר לפני שתוכל להגדיר מוודא (Qualifiers)." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "שולח" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "נשלח אל" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "הודעה זו נשלחה מאתר האינטרנט שלך ב " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "זמן שרת" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "הגדרות" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "מציג עמוד" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "מציג תוצאות" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "הצג" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "קטגוריה מיוחדת" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "זוהי קטגוריה מיוחדת אשר לא תופיע למשתמשים בטופס שליחת הדיווח. זה נעשה בשילוב עם תכונת \"המדווחים המהימנים\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "איזור ספציפי" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "מדינה" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "סטטיסטיקות" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "סטטיסטיקות" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "כשלון באיסוף סטטיסטיקות! אנא נסה שוב מאוחר יותר." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "כשלון באיסוף סטטיסטיקות!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "ימים ספציפיים" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "נושא" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "סופר אדמין" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "משימה שבוצעה" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "שדה טקסט" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "שם" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "נהל משתמשים" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "אל" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "סך כל הרשומות" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "אל" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "תרגם את הדיווח" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "טריגר" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "טריגרים למשתמש" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "טריגרים" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "לא מאושר" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "לא ידוע" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "לא נקרא" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " לחץ כאן כדי לשדרג כעת" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "שדרג את אושהידי" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "סטטוס שידרוג אושהידי" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "העלה דיווחים" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "משתמש" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "משתמשים" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "אושהידי" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "אושר/לא-אושר" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "מאושר/לא-מאושר" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "גירסה" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " זמין לשידרוג." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "מסר פרטי" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "צפה באתר" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "צפה בדיווח" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "ברוך הבא, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "ויקי" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "כן" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "החיפוש שלך עבור" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-he_IL/ui_main.po b/application/i18n/po/po-he_IL/ui_main.po new file mode 100644 index 0000000000..d33c037c39 --- /dev/null +++ b/application/i18n/po/po-he_IL/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "אודות" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "גישה" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "מגבלות גישה" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "שם החשבון" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "פעולות" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "לא ניתן לשחזר פעולה זו. האם ברצונך להמשיך?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "הפעל" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "פעיל" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "הוסף" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "נוסף על-ידי" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "נתונים נוספים" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "דווחים נוספים" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "הוספה/עריכה" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "הוספת שדה" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "הוספת שפה" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "הוספת חדש" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "הוספת קטגוריה חדשה" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "הוספת תרגום" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "מנהלה" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "קבל התראות" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "שלח לי התראה לגבי דיווחים באזור:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "שמור התראה" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "כתובת אימייל:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "הכנסת כתובת אימייל" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "מספר טלפון נייד כולל קידומת בינלאומית" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "קבל התראות" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "טלפון נייד:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "באפשרותך להזיז את המוקד של החץ האדום על ידי הקלקה על גבי המפה ולקבל התראות על דיווחים שהוגשו בטווח 20 קילומטרים ממוקד זה (ניתן גם לשנות את רדיוס הדיווחים מהמיקום)." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "אם מיקומך אינו מופיע, ניתן לסמן את המיקום הנכון על גבי המפה." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "פיד RSS (העתק את הקישור שלמטה)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "בחירת עיר" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "שלב 1: בחירת עיר או אזור: " + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "שלב 2: שלח לי התראות ל: " + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "שלב 3 (רשות): בחירת קטגוריות: " + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "אישור בקשת התראה קיימת" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "ההתראה נשמרה בהצלחה!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "הכל" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "מורשה" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "כל הקטגוריות" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "כל זמן" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "ו" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "אישור" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "מאושר" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "דיווחים מאושרים" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "לאשר לדיווח להופיע באתר" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "הערכה" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "ארכיון" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "מאורכב" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "יוצר" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "צ\\\"ק אין אוטומאטי" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "מספר דיווחים ממוצע ביום" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "שמחכים לאישור" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "שמחכים לאימות" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "אות" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "אותות" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "תמונת האות" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "בלוג" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "סייר בפרופילים" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "ביטול" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "קטגוריות" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "קטגוריה" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "סנן לפי קטגוריות" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "הקטגוריה" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "שם הקטגוריה" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "שינוי טווח התאריכים" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "החלף סיסמא" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "שנה את תמונת הפרופיל" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "בחירת " + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "בחר נקודות מידע להורדה" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "בחירת סוג שדה" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "קישורים נקיים" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "נקה" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "איפוס מפה" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "סגירה" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "מקבצים" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "צבע" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "הערה" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "הערות" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "פרטי הערה" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "ההגדרות נשמרו!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "הגדרות תצורה" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "צור קשר" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "קוד אבטחה" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "כתובת האימייל שלך" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "הודעה" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "הודעתך נשלחה!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "שמך" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "מספר הטלפון שלך" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "שליחת הודעה" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "נושא ההודעה" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr " © זכויות היוצרים" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "יצירה" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "יצירה/עריכה" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "יצירה מחדש" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "יצירת דיווח" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "אמינות" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "הסיסמא הנוכחית" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "שדות מותאמים אישית" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "מידע" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "תאריך" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "יי/חח/שששש" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "תאריך ושעה" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "יום" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "הפסקת פעולה" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "ניירובי, קניה" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "מחיקה" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "מחק" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "מוחק" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "מחיקה מבוטלת" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "מחיקת אחרון" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "מחיקת דיווח זה" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "מחיקת האפשרויות שנבחרו" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "מחק ספאם" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "דמו" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "תיאור" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "לדוגמא: בית העם, שדרות רוטשילד 69, תל אביב" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "פרטים" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "דיווח ישיר" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "מבוטל" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "בטל-אישור" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "הורד דיווחים" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "ערוך" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "ערוך שדות הטופס" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "ערוך הדיווח" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "דואר אלקטרוני" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "כתובת דואר אלקטרוני" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "הגדרות שרת הדואר" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "מאכסן (Host) שרת הדואר" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "סיסמאת שרת הדוואר" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port שרת הדואר" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "שרת הדואר תומך ב SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "סוג שרת הדואר" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "שם משתמש בשרת הדואר" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "על מנת שההגדרות שלך ישוייכו לשרת הדואר הזה" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "על מנת לקבל דיווחים אל תיבת הדואר האלקטרוני שלך, אנא מלא את הגדרות חשבון האימייל שלך מטה. אנא שים לב שאימיילים יתקבלו ב" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "חלק מהשרתים דורשים הגדרות אימייל מלאות" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "סיסמאת חשבון אימייל" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "פורטים (ports) נפוצים: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "לדוגמא: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "לדוגמא: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "אפשר או בטל חיבור SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---ריק---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "אל" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "שגיאה!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "דוגמא" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "קניה" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "אפליקציה חיצונית" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "קישור לוידיאו ברשת" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "פיד" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "הצע משוב לגבי אושהידי" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "פידים" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "הפיד" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "פריטי פיד" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "שם הפיד" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "כתובת הפיד" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "שדות שאינם בשימוש" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "קובץ" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "סנן לפי" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "סנן דיווחים" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "סנן דיווחים לפי" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "סנן דיווחים אשר מכילים" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "מצא" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "מצא מיקום" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "שם פרטי" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "כפה הרצה של המתזמן (scheduler)" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "שכחת את סיסמתך?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "טופס" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "טפסים" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "תיאור הטופס" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "ערוך טופס זה" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "הטופס" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "כותרת הטופס" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "מ" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "שם מלא" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "גיאו-מיקומים זמינים" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "צבא" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "תגובות" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "תוויות" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "רוחב הקו" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "סע" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "תגית-הש" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "נעשה" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "כיצד ניתן לעזור" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "מוסתר" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "הסתר" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "הסתר הודעה זו" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "ראשי" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "דרכים לדווח" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "תמונה" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "תמונות" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "תמונה/אייקון" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "לא-פעיל" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "תיבת דואר" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "תקרית" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "תקריות קרובות" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "מיקום התקרית" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "כלול" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "כלול קטגוריות" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "כלול שדות מותאמות אישית" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "כלול תיאור" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "פרט ככל שניתן" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "כלול קו-רוחב" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "כלול מידע על המיקום" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "כלול קו-אורך" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "מדיה נכנסת" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "הערכת מידע" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "נא להזין את מיקומך המדוייק" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "בתגובה ל" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "כתובת IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "האם זה הפרופיל שלך?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "פריט" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "פריטים" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "פרטי הפריט" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "כותרת הפריט" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "מפתח" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "קובץ KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "העלה קובץ KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML קישור" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "שפה" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "אחרון" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "חודש שעבר" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "שם משפחה" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "שנה שעברה" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "קו רוחב" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "שכבות" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "שכבות אחרות" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "השכבה" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "שם השכבה" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "קישור השכבה" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "השאר תגובה" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "רמה" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "הרמה הזו" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "שם הרמה" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "מוגבל" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "קישור" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "טוען דיווחים" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "מיקום" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "מיקומים" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "עיר ומדינה" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "התחבר" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "אישור נשלח אליך לתיבת הדואר האלקטרוני." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "אנא בחר את ספק החשבון שלך" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "הקש כאן כדי להירשם למערכת" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "אישור הרשמה" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "אם אין לך כבר חשבון עם אחת מהאפשרויות שלמעלה, או אם אינך מעוניין להשתמש באופן-אי-די (OpenID)" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "קו אורך" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "מפה" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "סמן כנקרא" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "סמן כלא-נקרא" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "מדיה" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "מסנן מדיה" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "משתמשים" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "נהל את חשבונך" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "מסר" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "מסרים" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "פרטי המסר" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "מסר ממקור לא-מספרי:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "סלולרי" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "עדכן" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "שינוי תאריך הדיווח" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "חודש" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "עוד" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "מידע נוסף" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "האם התקנת האושהידי צפויה לכלול בטוחה מדינות שונות" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "שם" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "דיווחים קרובים" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "חדש" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "חדשות" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "פידים של חדשות" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "מקור החדשות" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "קטגוריה חדשה" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "סיסמא חדשה" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "דיווח חדש" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "הבא" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "לא" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "הודעות" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "לא מאושרים" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "לא אושר" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "לא ספאם" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "לא מצויין" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "אין דיווחים" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "אין תוצאות" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "כבוי" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "מקורות חדשות רשמיים ומרכזיים" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "דלוק" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "אופציה" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "אופציונאלי" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "אופציות" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "אירגון" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "אירגונים" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "תיאור האירגון" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "אימייל האירגון" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "האירגון" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "שם האירגון" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "טלפון באירגון 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "טלפון באירגון 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "אתר האינטרנט של האירגון" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "מקורי" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "תיאור מקורי" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "כותרת מקורית" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "פריסות אחרות של אושהידי" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "דואר יוצא" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "יוצא" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "עמוד" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "עמודים" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "תיאור עמוד" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "העמוד" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "לשנות השם של העמוד" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "כותרת העמוד" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "קטגוריית אב" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "סיסמא" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "הקלד את סיסמתך בשנית" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "שכחת את סיסמתך?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "בדוק את תיבת הדואר שלך עבור סיסמא חדשה." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "הישאר מחובר במחשב זה?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "החודש האחרון" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "השנה האחרונה" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "ממתין" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "פר" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "מידע אישי אופציונאלי." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "טלפון" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "תמונות" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "תמונות" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "תמונות ווידיאו" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* \tחפש את מיקומך באמצעות שם המיקום (רחוב ועיר), או חיפוש קוארדינטות קווי הרוחב, אורך, (פורמט: 38.19,-85.61), או הזז את החץ האדום שעל המפה על מנת לאתר את המיקום הנכון" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "נגן" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "אנא שים לב" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "פלאגינים" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "אתר הפלאגין" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "פרופיל פומבי" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "תצוגה מקדימה" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "תצוגה מקדימה לפריט" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "תצוגה מקדימה למסר" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "קודם" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "פרטי" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "צבע הפרופיל" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "הפרופיל שלך נשמר" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "סטטיסטיקות עיקריות" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "דירוג" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "קרא" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "קבל" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "קבל מ" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "קבל עידכונים" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "דיווחים אחרונים" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "רענן את הפידים של החדשות" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "הסר" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "השב" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "דיווח" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "דיווחים (לקוחים מהמפה, ומסודרים כרונולוגית)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "עד" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "עדים" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "תאריך העד" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "כתובת האימייל של העד" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "שם פרטי של העד" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "העד" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "כתובת ה- IP של העד" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "שם משפחת העד" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "רמת העד" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "רמות העד" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "טלפון העד" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "דיווחים" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "סייר" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "שלח" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "דיווחים על ידי משתמש זה" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "קטגוריות" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "תאריך" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "תיאור" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "דיווחים יורדו בפורמט CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "אימייל" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "תכונות" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "בחר שם למיקום הקרוב אליך (ייתכן והשם בעברית)" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "שם פרטי" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "שם משפחה" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "דייק בשם המיקום" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "קישור לאתר חדשות עם עדות על הדיווח" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "מידע אופציונאלי" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "העלה תמונות" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "חזור לעמוד הדיווחים" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "בחר עיר" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "הדיווח שלך נשלח לבחינה על ידי הצוות שלנו. נשוב אליך בקצרה בהתאם לצורך." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "שלח דיווח חדש" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "זמן" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "במשך הזמן" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "כותרת הדיווח" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "קישור לוידיאו" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "דווח על תקרית" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "פרטי הדיווח" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "על ידי משלוח מסר אל" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "באמצעות משלוח אימייל אל " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "על ידי שליחה טוויט עם תגית ההש" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "על ידי מילוי טופס זה" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "בעזרת אפליקציית סמארטפון" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "הדיווח שלך נשמר" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "כותרת הדיווח" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "בקש עוד מידע" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "בקש מיקום" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "דרישות" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "אפס" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "אפס את כל המסננים" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "אפס סיסמא" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "מצא שם העיר עבור המדינה שנבחרה" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "תפקיד" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "רסס (RSS)" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "שמור" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "נשמר" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "שמור וסגור" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "שמור דיווח" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "לוח זמנים" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "מתזמן" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "יום" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "שעה" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "יומן המתזמן" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "דקה" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "יום בשבוע" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "חפש" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "תוצאות החיפוש" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "קוד אבטחה" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "בחר הכל" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "בחר סוג שדה" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "בחר סוג טופס" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "בחר במפה" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "בחר כמה שצריך" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "אנא וודא שסימנת פריט" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "בחר ערכת עיצוב" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "שלח" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "שולחים אל" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "נשלח" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "נשלח על ידי" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "כתובת השרת" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "סוג שרת" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "שירות" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "שם משתמש השירות" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "תגית זיהוי (ID) של המשתמש בשירות" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "שתף" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "מידע משותף" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "השיתוף" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "שיתוף" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "הצג" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "הצג הכל" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "הצג מסרים" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "אתר אינטרנט" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "דואר אלקטרוני לאתר" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "כתובת האתר" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "צר לנו, אין לך שום איתורים בשלב זה." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "מקור" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "שם המקור" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "כתובת הקישור של המקור" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "ספאם" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "תמיכת SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "מ" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "שלב" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "שלח דיווח" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "דווח על ידי SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "שלח SMS אל" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "בטלפון שלך" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "הצלחה!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "יובא בהצלחה" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "שם משפחה" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "סקר" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "מערכת" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "ערכות עיצוב" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "עיצוב ברירת המחדל של אושהידי" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "הגדרות העיצוב" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "זה" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "היום" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "החודש" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "השבוע" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "השנה" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "זה הפרופיל שלך." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "זמן" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "כותרת" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "אל" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "היום" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "היום ב" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "סך כל הדיווחים" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "תורגם" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "תיאור התירגום" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "כותרת התירגום" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "תורגם ל" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "תירגום" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "התירגום נשמר" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "סוג" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "טוויטר" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "לא נקרא" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "לא מאומת" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "עדכן את הפידים" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "העלה" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "קובץ להעלות" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "העלה דיווחים" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "בטופס למטה, באפשרותך לייבא דיווחים על תקריות לתוך מנוע האושהידי" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "הוא מוכרח להכיל לפחות את כותרת ותאריך הדיווח" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "קובץ דיווח CSV לדוגמא" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "הועלה בהצלחה" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "משתמש" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "שם משתמש" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "מנהל אושהידי" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "אימות" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "מאומת" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "דיווחים מאומתים" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "אימות" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "האם הדיווח הזה מאומת" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "גירסה" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "על ידי" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "וידאו" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "צפה" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "צפיות" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "צפה בכל" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "צפה בכל הפידים" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "צפה בכל הדיווחים" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "צפה בפריטים" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "ראה עוד" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "צפה בדיווח" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "צפה בדיווחים" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "מפורסם" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "ממתין לאישור" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "ממתין לאימות" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "טופס מקוון" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "משקל" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "כן" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "אתמול" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "הגדל מפה" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "הקטן מפה" diff --git a/application/i18n/po/po-he_IL/upgrade.po b/application/i18n/po/po-he_IL/upgrade.po new file mode 100644 index 0000000000..f85d8d7a37 --- /dev/null +++ b/application/i18n/po/po-he_IL/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/ushahidi/ushahidi-v2/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "קלט לא חוקי. בחר 0 עבור \"לא\", 1 עבור \"כן\"." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "שדרוג אוטומטי" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "שדרוגים זמינים" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "המשך" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "שדרוג" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "בסיס הנתונים עומד להשתדרג מגירסה" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "לגירסה החדשה ביותר" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "יש ללחוץ על הכפתור \"שדרוג\" ולהרגע בזמן שהקסם מתבצע" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "לגיבוי בסיס הנתונים יש לסמן בתיבת הסימון" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "האם לגבות את מסד הנתונים לפני השדרוג? (מומלץ מאוד)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "שדרוג בסיס הנתונים של אושהידי" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "השדרוג נכשל" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "שדרוג ידני" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "מצב השדרוג של אושהידי" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "ההוראות בהמשך מפרטות כיצד לשדרג ידנית את ההפצה של אושהידי" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "שלב 1: הורד את הגירסא העדכנית ביותר של אושהידי מhttp://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr " שלב 2: \nהשתמש בכלי המועדף עליך (כגון: Telnet, FTP, SSH), בהתאם למערכת ההפעלה אשר מריצה את שרת האינטרנט, כדי להתחבר אל השרת ולהחליף את התוכן של כל התיקיות עם התוכן החדש ביותר מגירסת התוכנה הכי עדכנית. החלף את כלל התכנים, מלבד הבאים: " + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "שלב 4: לחץ על הכפתור \"המשך\" לשדרוג הטבלאות הנחוצות." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "לשדרוג אוטומטי יש ללחוץ על הכפתור" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "משדרג" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-hi_IN/alerts.po b/application/i18n/po/po-hi_IN/alerts.po new file mode 100644 index 0000000000..ed4c8455a5 --- /dev/null +++ b/application/i18n/po/po-hi_IN/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# Pratik , 2013 +# Rishab Arora , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Pratik \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr " क्या यह ईमेल क्षेत्र एक मान्य ईमेल पता नहीं रखता ?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "यह ईमेल पता पहले से ही उस स्थान के लिए अलर्ट प्राप्त करने के लिए पंजीकृत किया जा चुका है|" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ईमेल क्षेत्र की लम्बाई कम से कम 4 और अधिकतम 64 वर्ण लंबा होनी चाहिए।" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr " चेकबॉक्स अंकित होने पर ईमेल क्षेत्र की आवश्यकता है।" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "यह प्रणाली एक देश तक ही सीमित है। कृपया सुनिश्चित करें कि अलर्ट स्थान %s देश के भीतर है।" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "आपने मानचित्र पर एक मान्य स्थान का चयन नही किया है|" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "आपने मानचित्र पर एक सही स्थान का चयन नही किया है| " + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "आपने मानचित्र पर एक सही स्थान का चयन नही किया है| " + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "आपने मानचित्र पर एक सही स्थान का चयन नही किया है| " + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "यह चल दूरभाष का क्षेत्र सही मात्रा मे अक्षर से युक्त नही है|" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "यह चल दूरभाष सूचना प्राप्त करने के लिए पहले से ही पंजीकृत है|" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "यह चल दूरभाष का क्षेत्र एक सही दूरभाष के ना होने का अनुमान होता है| कृपया वही संख्या निवेस करे जो राष्ट्र कूट सहित है| " + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "आप आपना दूरभाष संख्या या ईमेल पता प्रवेस करे|" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "अगर चेकबॉक्स जाँचा गया तो चल दूरभाष का क्षेत्र आवश्यक होगा| " + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "आपने मानचित्र पर एक सही त्रिज्या निर्धारित नही किया है|" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "आपने मानचित्र पर आपना त्रिज्या निर्धारित नही किया है|" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "आपना सूचनाओ के लिए एक प्राप्तकर्ता को निर्धारित नही किया है|" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "आपना निम्नलिखित विभगो के लिए सूचनाओ का अभिदत्त है|" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "यह कूट पहले भी सत्यापित की जा चुकी है!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "सत्यापित कूट प्राप्त नही किया गया! कृपया पुष्टि करे आपके पास सही URL है|" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "आपके कूट को सत्यापित कर दिया गया है| आपको अब सूचनाओ की प्राप्ति होगी जैसे जैसे घटनाए होती जाएँगी|" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "अपने सूचना आवेदन की पुष्टि के लिए कृपया यहा जाए" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "और सूचना प्राप्त करने के लिए सूचना पृष्ठ मे जाए" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "आपकी ईमेल सूचना के लिए आवेदन कर दिया गया है और प्रमाणन संदेस एस पर भेज दिया गया है|" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "कृपया नीचे दिए गए ईमेल पुष्टिकरण कूट को प्रवीस्ट करे|" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "आपकी ईमेल सूचना के लिए आवेदन को संचित नही किया गया है|" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "आपकी ईमेल सूचना के लिए आवेदन को संचित नही किया गया है|" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "यह तंत्र आपके प्रमाणन आवेदन को \tपरिष्कृत करने मे अस्मर्थ रहा|" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "आपके दूरभाष सूचना के आवेदन को तैयार कर दिया गया है और प्रमाणन संदेस एस पर भेज दिया गया है" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "कृपया चल दूरभाष मे प्राप्त किए गए पुष्टिकरण संदेस को नीचे प्रविष्ट करे:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "आपके चल दूरभाष सूचना आवेदन संचित नही किया गया है!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "आपके चल दूरभाष सूचना आवेदन संचित किया गया है!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "यह परिनियोजन चेतावनी की प्रक्रियाओ की सही से स्थापना नही की गई है" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "अपकको यह ईमेल एश्लेय प्राप्त हुआ है क्यूंकी आपने चेतावनियो की प्राप्ति के लिए सदस्यता ली है|अगर आप आगे यह चितवानिया प्राप्त नही करना चाहते तो एस पर जाए" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "आप आगे एन्से चेतावनिया प्राप्त नही करेंगे " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "हम आपकी असदस्यता नही कर पा रहे है| कृपया पुष्टि कर ले आपके पास सही यूआरएल है." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "चेतावनिया - सत्यापित करे" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "आपको एस स्थान पर चेतावनियो की प्राप्ति नही होगी जब तक आप अनुरोध की पुष्टि नही करते|" diff --git a/application/i18n/po/po-hi_IN/auth.po b/application/i18n/po/po-hi_IN/auth.po new file mode 100644 index 0000000000..4380cdedc9 --- /dev/null +++ b/application/i18n/po/po-hi_IN/auth.po @@ -0,0 +1,254 @@ +# +# Translators: +# Jayesh Vani , 2013 +# Pratik , 2013 +# Sandeep Satavlekar , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Jayesh Vani \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "जो ईमेल आपने प्रवेशित किया है वो एक सही ईमेल का पता नही है|" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "माफ़ करे! एस ईमेल के पते का उपभोक्ता खाता पहले से मौजूद है|" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "ईमेल क्षेत्र कम से कम से कम 4 और ज़्यादा से ज़्यादा 64 वर्ण के होने चाहिए" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "ईमेल क्षेत्र ज़रूरी है|" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "नाम क्षेत्र कम से कम 3 और ज़्यादा से ज़्यादा 100 वर्ण बरा होना चाहिए|" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "नाम क्षेत्र ज़रूरी है|" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "इस्तेमाल कर्ता नाम क्षेत्र अमान्य वर्णो से निहित है|" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "कूट शब्द कम से कम 8 वर्ण लंबी होनी चाहिए|" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "कृपया जाँच ले की आपने सही ईमेल और कूट शब्द को प्रवेशित किया है|" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "कृपया दोनो कूटशब्द क्षेत्रो में समान कूट शब्द प्रवेशित करे|" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "यह कूट शब्द क्षेत्र ज़रूरी है|" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "कूटशब्द क्षेत्र में सिर्फ वर्णाक्षर, # एवं @ चिन्ह, संख्याऐं, निम्नरेखाऐं और dashes हि होने चाहिये|" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "आप ने हाल हि में प्रवेशित किया हुआ कूटशब्द गलत हैं| कृपया फिर कोशिश करें|" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "यहा कूट शब्द क्षेत्र कम से कम 8 वर्ण लंबी होनी चाहिए|" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "कृपया जाँच ले की आपने सही ईमेल और कूट शब्द को प्रवेश किया है|" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "कृपया समान कूट शब्द को प्रवेश करे|" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "यहा कूट शब्द क्षेत्र ज़रूरी है|" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "कूटशब्द क्षेत्र में सिर्फ वर्णाक्षर, # एवं @ चिन्ह, संख्याऐं, निम्नरेखाऐं और dashes हि होने चाहिये|" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "आपको लॉगिन कराते वक़्त भूल हुई है." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "यहा कूट शब्द क्षेत्र कम से कम 8 वर्ण लंबी होनी चाहिए|" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "कृपया जाँच ले की आपने सही ईमेल और कूट शब्द को प्रवेशित किया है|" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "कृपया दोनो कूटशब्द क्षेत्रो में समान कूट शब्द प्रवेशित करे|" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "यह कूट शब्द क्षेत्र ज़रूरी है|" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "औथएंटिकेशन सर्वर बंद है! कृपया करके वापस प्रयतन् कीजिए !" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "कूटशब्द क्षेत्र में सिर्फ वर्णाक्षर, # एवं @ चिन्ह, संख्याऐं, निम्नरेखाऐं और dashes हि होने चाहिये|" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "पासवर्ड कन्फर्मेशन क्षेत्र और पासवर्ड क्षेत्र मेच होने चाईए." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "जो ईमेल आपने प्रवेश किया है वो एक सही ईमेल का पता नही है|" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "माफ़ करे ह्मारे पास आपके ईमेल का पता नही है|" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "ईमेल क्षेत्र ज़रूरी है|" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "केवल सूपर-एडमिन ही सूपर-आडमिन को मॉडिफाइ कर सकता है या यूज़र को एडमिन में अपग्रेड कर सकता है." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "ग़लत रोल फॉर्मॅट" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "रोल क्षेत्र कम से कम 5 और अधिकतम 30 अक्षर का होना चाहिए " + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "कम से कम एक रोल डिफाइन कीजिए." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "कृपया करके एडमिन रोल या यूज़र रोल में से किसी एक को चुने." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "फॉरगोटन पासवर्ड का टोकन ग़लत है" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "फॉरगोटन पासवर्ड का टोकन ज़रूरी है " + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Admin भूमिका नहीं बदली जा सकती " + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "पब्लिक प्रोफाइल URL क्षेत्र में केवल अंक या अक्षर हो सकते हैं " + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "क्षमा करे, यह पब्लिक प्रोफाइल URL पहले से इस्तेमाल में है." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "पब्लिक प्रोफाइल URL क्षेत्र कम से कम 2 और अधिकतम 100 अक्षर का होना चाहिए|" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "कृपया जाँच ले की आपने सही पब्लिक प्रोफाइल URL प्रवेशित किया है." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "पब्लिक प्रोफाइल URL क्षेत्र ज़रूरी हैं." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Super Admin भूमिका बदली नहीं जा सकती " + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "संभावित CSRF अटेक है. क्या आप सही माईने में यूज़र क्रियेट/एडिट करना चाहते थे?" diff --git a/application/i18n/po/po-hi_IN/bug.po b/application/i18n/po/po-hi_IN/bug.po new file mode 100644 index 0000000000..32e691ab79 --- /dev/null +++ b/application/i18n/po/po-hi_IN/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-hi_IN/category.po b/application/i18n/po/po-hi_IN/category.po new file mode 100644 index 0000000000..37b54b1cde --- /dev/null +++ b/application/i18n/po/po-hi_IN/category.po @@ -0,0 +1,89 @@ +#. extracted from en_US/category.php, hi_IN/category.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/comments.po b/application/i18n/po/po-hi_IN/comments.po new file mode 100644 index 0000000000..076f9f599f --- /dev/null +++ b/application/i18n/po/po-hi_IN/comments.po @@ -0,0 +1,59 @@ +#. extracted from en_US/comments.php, hi_IN/comments.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/contact.po b/application/i18n/po/po-hi_IN/contact.po new file mode 100644 index 0000000000..1012ee8c87 --- /dev/null +++ b/application/i18n/po/po-hi_IN/contact.po @@ -0,0 +1,74 @@ +#. extracted from en_US/contact.php, hi_IN/contact.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/core.po b/application/i18n/po/po-hi_IN/core.po new file mode 100644 index 0000000000..0657662bba --- /dev/null +++ b/application/i18n/po/po-hi_IN/core.po @@ -0,0 +1,144 @@ +#. extracted from en_US/core.php, hi_IN/core.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/database.po b/application/i18n/po/po-hi_IN/database.po new file mode 100644 index 0000000000..b1c27eeef2 --- /dev/null +++ b/application/i18n/po/po-hi_IN/database.po @@ -0,0 +1,24 @@ +#. extracted from en_US/database.php, hi_IN/database.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/datetime.po b/application/i18n/po/po-hi_IN/datetime.po new file mode 100644 index 0000000000..232ac3ffe4 --- /dev/null +++ b/application/i18n/po/po-hi_IN/datetime.po @@ -0,0 +1,214 @@ +#. extracted from en_US/datetime.php, hi_IN/datetime.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/feeds.po b/application/i18n/po/po-hi_IN/feeds.po new file mode 100644 index 0000000000..c25fb7bc76 --- /dev/null +++ b/application/i18n/po/po-hi_IN/feeds.po @@ -0,0 +1,49 @@ +#. extracted from en_US/feeds.php, hi_IN/feeds.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/footer.po b/application/i18n/po/po-hi_IN/footer.po new file mode 100644 index 0000000000..0a13d0fd2e --- /dev/null +++ b/application/i18n/po/po-hi_IN/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Shantanu Sarkar , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 20:32+0000\n" +"Last-Translator: Shantanu Sarkar \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "PHP5-curl इस सिस्टम पर स्थापित नहीं है." diff --git a/application/i18n/po/po-hi_IN/form.po b/application/i18n/po/po-hi_IN/form.po new file mode 100644 index 0000000000..fd8dda84a5 --- /dev/null +++ b/application/i18n/po/po-hi_IN/form.po @@ -0,0 +1,104 @@ +#. extracted from en_US/form.php, hi_IN/form.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/imap.po b/application/i18n/po/po-hi_IN/imap.po new file mode 100644 index 0000000000..4ff100ab32 --- /dev/null +++ b/application/i18n/po/po-hi_IN/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Shantanu Sarkar , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 20:31+0000\n" +"Last-Translator: Shantanu Sarkar \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAP धारा नहीं खोला जा सका." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "ईमेल सेवा समर्थित नहीं है." diff --git a/application/i18n/po/po-hi_IN/installer.po b/application/i18n/po/po-hi_IN/installer.po new file mode 100644 index 0000000000..7261ba6bb6 --- /dev/null +++ b/application/i18n/po/po-hi_IN/installer.po @@ -0,0 +1,354 @@ +#. extracted from en_US/installer.php, hi_IN/installer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/layer.po b/application/i18n/po/po-hi_IN/layer.po new file mode 100644 index 0000000000..0896d6e11a --- /dev/null +++ b/application/i18n/po/po-hi_IN/layer.po @@ -0,0 +1,59 @@ +#. extracted from en_US/layer.php, hi_IN/layer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/libraries.po b/application/i18n/po/po-hi_IN/libraries.po new file mode 100644 index 0000000000..b691797948 --- /dev/null +++ b/application/i18n/po/po-hi_IN/libraries.po @@ -0,0 +1,109 @@ +#. extracted from en_US/libraries.php, hi_IN/libraries.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/maintenance.po b/application/i18n/po/po-hi_IN/maintenance.po new file mode 100644 index 0000000000..5d6e9d3d92 --- /dev/null +++ b/application/i18n/po/po-hi_IN/maintenance.po @@ -0,0 +1,19 @@ +#. extracted from en_US/maintenance.php, hi_IN/maintenance.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/message.po b/application/i18n/po/po-hi_IN/message.po new file mode 100644 index 0000000000..f83db44ee7 --- /dev/null +++ b/application/i18n/po/po-hi_IN/message.po @@ -0,0 +1,59 @@ +#. extracted from en_US/message.php, hi_IN/message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/mhi.po b/application/i18n/po/po-hi_IN/mhi.po new file mode 100644 index 0000000000..b288db843f --- /dev/null +++ b/application/i18n/po/po-hi_IN/mhi.po @@ -0,0 +1,49 @@ +#. extracted from en_US/mhi.php, hi_IN/mhi.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/notifications.po b/application/i18n/po/po-hi_IN/notifications.po new file mode 100644 index 0000000000..442fed990b --- /dev/null +++ b/application/i18n/po/po-hi_IN/notifications.po @@ -0,0 +1,89 @@ +#. extracted from en_US/notifications.php, hi_IN/notifications.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/page.po b/application/i18n/po/po-hi_IN/page.po new file mode 100644 index 0000000000..e3d8742d2c --- /dev/null +++ b/application/i18n/po/po-hi_IN/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Shantanu Sarkar , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 20:36+0000\n" +"Last-Translator: Shantanu Sarkar \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "एक पृष्ठ शीर्षक दर्ज करें." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "पृष्ठ शीर्षक में कम से कम 3 वर्ण लंबा हो सकता है और 150 वर्ण से अधिक लंबा नही होना चाहिए." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "एक पृष्ठ टैब नाम दर्ज करें." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "पृष्ठ का विवरण दर्ज करें." diff --git a/application/i18n/po/po-hi_IN/permissions.po b/application/i18n/po/po-hi_IN/permissions.po new file mode 100644 index 0000000000..5131029922 --- /dev/null +++ b/application/i18n/po/po-hi_IN/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-hi_IN/private_message.po b/application/i18n/po/po-hi_IN/private_message.po new file mode 100644 index 0000000000..9e668f5767 --- /dev/null +++ b/application/i18n/po/po-hi_IN/private_message.po @@ -0,0 +1,44 @@ +#. extracted from en_US/private_message.php, hi_IN/private_message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/report.po b/application/i18n/po/po-hi_IN/report.po new file mode 100644 index 0000000000..de0cda6897 --- /dev/null +++ b/application/i18n/po/po-hi_IN/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-hi_IN/reporters.po b/application/i18n/po/po-hi_IN/reporters.po new file mode 100644 index 0000000000..9c779a9686 --- /dev/null +++ b/application/i18n/po/po-hi_IN/reporters.po @@ -0,0 +1,64 @@ +#. extracted from en_US/reporters.php, hi_IN/reporters.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/reports.po b/application/i18n/po/po-hi_IN/reports.po new file mode 100644 index 0000000000..2d20715d2c --- /dev/null +++ b/application/i18n/po/po-hi_IN/reports.po @@ -0,0 +1,34 @@ +#. extracted from en_US/reports.php, hi_IN/reports.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/roles.po b/application/i18n/po/po-hi_IN/roles.po new file mode 100644 index 0000000000..0e0b4b7efc --- /dev/null +++ b/application/i18n/po/po-hi_IN/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Arun Kumar Rathore , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 21:40+0000\n" +"Last-Translator: Arun Kumar Rathore \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "विवरण क्षेत्र कम से कम 3 और अधिकतम 100 अक्षर का होना चाहिए " + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "विवरण क्षेत्र की आवश्यकता है" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "नाम क्षेत्र में केवल अंक या अक्षर हो सकते हैं " + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "नाम क्षेत्र कम से कम 2 और अधिकतम 30 अक्षर का होना चाहिए " + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin भूमिका नहीं बदली जा सकती " + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "नाम क्षेत्र की आवश्यकता है" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level क्षेत्र 0-100 के बीच का अंक होना चाहिए " + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level क्षेत्र 0-100 के बीच का अंक होना चाहिए " + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Permission Level क्षेत्र 0-100 के बीच का अंक होना चाहिए " diff --git a/application/i18n/po/po-hi_IN/settings.po b/application/i18n/po/po-hi_IN/settings.po new file mode 100644 index 0000000000..e326a2bcb9 --- /dev/null +++ b/application/i18n/po/po-hi_IN/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hindi (India) (http://www.transifex.com/projects/p/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-hi_IN/sharing.po b/application/i18n/po/po-hi_IN/sharing.po new file mode 100644 index 0000000000..00b7af9875 --- /dev/null +++ b/application/i18n/po/po-hi_IN/sharing.po @@ -0,0 +1,69 @@ +#. extracted from en_US/sharing.php, hi_IN/sharing.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/stats.po b/application/i18n/po/po-hi_IN/stats.po new file mode 100644 index 0000000000..4450a0abb0 --- /dev/null +++ b/application/i18n/po/po-hi_IN/stats.po @@ -0,0 +1,184 @@ +#. extracted from en_US/stats.php, hi_IN/stats.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:16+0000\n" +"PO-Revision-Date: 2012-09-20 22:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hi_IN\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-hi_IN/tooltips.po b/application/i18n/po/po-hi_IN/tooltips.po new file mode 100644 index 0000000000..ea991b69c6 --- /dev/null +++ b/application/i18n/po/po-hi_IN/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-hi_IN/ui_admin.po b/application/i18n/po/po-hi_IN/ui_admin.po new file mode 100644 index 0000000000..e14ed7b84b --- /dev/null +++ b/application/i18n/po/po-hi_IN/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Jayesh Vani , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "प्रवेश निषेध. या तो आपका परिचय ग़लत है या फिर आपकी रिक्वेस्ट को इस वक़्त नामंज़ूर किया गया है." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "प्रवेश निषेध. आपकी रिक्वेस्ट समझी गयी है परंतु इस वक़्त समय की बाधा होने के कारण इसे रद्द किया गया है. कुछ समय के बाद पुनः प्रयत्न करें." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "प्रवेश का स्तर" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "कार्य" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "श्रेणी में जोड़ें" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "जोड़े" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "जोड़ा गया / एडिट किया गया" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "एड-ऑन्स" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "एडमिन" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "चेतावनी" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "दि गयी चेतावनी-याँ" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "सभी" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "अग्यात" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "कोई भी" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "कही भी" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "प्रतिबंधित API" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API लोग्स" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API सेट्टिंग्स" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "UNBAN" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "सभी को UNBAN किया जाए " + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "स्वीकृत" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "औटो स्वीकृति दे" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "मॅन्यूयेली स्वीकृति दे" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "संग्रहीत" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "क्या आपको सही मे यह चाईए" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "क्या आपको सही मे यह आइटम मिटा देनी है?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "क्या आपको सही मे यह फोटो मिटा देना है?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "क्या आपको सही मे यह फॉर्म स्विच करना है?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "निर्धारित करना" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "सौंपे हुए कार्य" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "बेड्ज निर्धारित करना" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "लेखक" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "लेखक का ईमेल" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "पीछे जाना" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "यह IP निषेद करे " + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "समय के बीच" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "ब्लॉक्स" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "बॉडी" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "रद्द करें" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "श्रेणियां" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "चार्ट दिखाते वक्त़ भूल हुई है" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "कृपया दुबारा अपना मेसेज जाँच ले! " + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "कृपया दुबारा अपना फोन जाँच ले!" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "कृपया करके अपने SMS सेट्टिंग्स जाँच ले!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "चेक इन विवरण" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "चेकइन्स" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "शहरो के नाम लोड हो गये है" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "कोड" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "कोड का वरजन सींक में नही है" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "रंग" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "टिप्पणिया" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "आपके अलर्ट का पुष्टिकृत कोड है :" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "यह यूज़र का" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "काउंट " + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "देश का नाम नही मिला" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "बनाए / संपादित करें" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "रिपोर्ट बनाए " + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "अत्यंत ज़रूरी अपग्रेड" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "सी.एस.वी" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "अभी कार्यरत" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "अभी निष्क्रिय" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "इन कस्टम फील्ड्स को बदलने के लिए आपके पास पर्याप्त इजाज़त नही है !" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "रोज़" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "डेशबोर्ड" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "डेटाबेस:" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "दिनांक और समय" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "इस तारीख को डाला गया" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "इस तारीख को बदला गया" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "हफ्ते के दिन" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB का वरजन सींक में नही है" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "हटाए गए" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "हटाएँ" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "बैज हटाएँ" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "प्रदर्शन" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "वर्णन" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "निषेध" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "डिवाइडर की शुरुआत" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "डिवाइडर का अंत" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "रिपोर्ट्स डाउनलोड करे" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "ड्रॉप-डाउन मे से चुने" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "बदला हुआ" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "बदलने वाले का नाम" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "बदले " + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "बदलो का लॉग" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "ईमेल" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "पूरा समूह" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "जियो-कोडिंग में भूल! HTTP में भूल" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP लाईब्रॅरी इनस्टॉल नही हुई है" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "ग़लत परिचय" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "भूल" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "भूल! यह घटना पोस्ट नही हुआ है" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "हर ६ घंटे में" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "हर १२ घंटे में" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "प्रायोगिक" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "फीड" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr " प्रतिक्रिया प्रदान करें" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "फीड्स" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "अपने पसन्दो की सूची" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "डिफॉल्ट वॅल्यू" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "डेटा का प्रकार" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "जावा-स्क्रिप्ट" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "मार्क-उप" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "संख्या" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "फ्री टेक्स्ट" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "उँचाई (पंक्ति मे)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "छिपा हुआ फील्ड" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "प्रवेश का स्तर" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "फील्ड नेम" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "टॉगल" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "नो" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "यस, क्लोस्ड बाइ डिफॉल्ट" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "यस, ओपन बाइ डिफॉल्ट" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "अपलोड की हुई फाइल मिल नही रही है" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "पढ़ने के लिए फाइल खुल नही रही है" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "यह फॉर्म अस्तित्व में ही नही है!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "फोरम" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "टेक्स्ट एरिया फील्ड (फ्री टेक्स्ट)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "डेट फील्ड" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "रेडियो बटन्स फील्ड" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "चेक-बॉक्सस फील्ड" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "ड्रॉप-डाउन फील्ड" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "से" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "से" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "जियो-नेम्स टाइम-आउट एरर" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "मदद लीजिए" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "और थीम्स लाए" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "और प्लग-इन्स लाए" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "कार्य" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "जोडें/बदलें" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "ईमेल" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "मेनेज यूज़र्स" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "रोल" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "यूज़र" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "मदद" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "घंटो में" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "इन्सिडेंट फीड फॉर" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "इनस्टॉलर फोल्डर अभी भी है. इसे तुरंत डेलीट करे. यह सेक्यूरिटी के लिए से हानिकारक हो सकता है." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "इन्स्टेन्स" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "इन्स्टेन्सस" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "इन्स्टेन्स डीटेल्स" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "ग़लत पेरामीटर" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "आइपी अड्रेस" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "क्या यह डेट फील्ड है?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "कौन जवाब देख सकता है" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "कौन जवाब दे सकता है" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "कीवर्ड" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "कीवर्ड्स" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "ईमेल पता :" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "पूरा नाम :" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "पासवर्ड :" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "रोल :" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "यूज़रनेम :" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "परतें" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "मॉडारेटर" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "लोग-आउट" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "लोग्स" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "मेनेज" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "मेनेज रोल्स & परमिशन्स" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "यूज़र्स दिखाएँ" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "जोडें/बदलें यूज़र्स" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "अपना पब्लिक लिसटिंग मेनेज करें" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "अंकित करे" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "स्पैम नहीं अंकित किया गया है" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "स्पैम अंकित किया गया है" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "किसी भी अन्य डॉक्युमेंट्स से मैच नही हुआ" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "संदेश" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "संदेश" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "संक्षिप्त संदेश" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "ट्विटर संदेश" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "आपका संदेश भेज दिया गया है!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "मिनिट" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "मिनिट्स" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "लापता पेरामीटर" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "मॉडारेटर" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "मॉडिफाइड" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "मॉडिफाइ टाइम-ज़ोन सेट्टिंग" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "नीचे चलें" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "उपर चलें" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "मल्टिपल होस्टेड इन्स्टेन्सस" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "मेरे अलर्ट्स" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "मेरे चेकइन्स" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "मेरा प्रोफाइल" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "मेरे रिपोर्ट्स" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "डालें गये वोट्स" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "पॉज़िटिव" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "नेगेटिव" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "नाम" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "नया अलर्ट बनाएँ" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "नया संदेश बनाएँ" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "नया पासवर्ड" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "नहीं" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "यह एक विशिष्ठ केटेगरी है जो यूज़र्स द्वारा दिए गये रिपोर्ट सबमिशन फॉर्म में देखिई नही देगी. यह केटेगरी उन रिपोर्ट्स के लिए है जिनकी केटेगरीस डेलीट की जा चुकी है (अन-कॅटेगरिज़्ड रिपोर्ट्स)." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "अधिसूचना" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "यह केस सेन्सिटिव नही है." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "नही मिला" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "यहा कोई परिणाम नही है " + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "कोई भूल नही है" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "यहा कोई परिणाम नही है " + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "ऑफ" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "ओन स्पेसिफिक काउंट" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "ओपन-आइड'स" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "पेज" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "पेजिस" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "पेज नही मिला" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "क्षमा करें, जो पेज आप देखना चाहते है वो मौज़ूद नही है.

क्या आप इस लिंक पर हमारी साइट पर से आए है?
अगर ऐसा है तो हमे यहाँ संपर्क कीजिए ताकि हम अपनी ग़लती सुधार सके.

क्या आप किसी दूसरी साइट से इस लिंक पर आए है?
कभी कभी दूसरी साइट्स पर लिंक्स आउटडेटेड हो जाते है या स्पेलिंग मिस्टेक्स हो जाती है. हमें बताए ताकि हम इस समस्या को सुलझा सके.

क्या आपने URL टाइप किया था?
हो सकता हैं आपने (URL) टाइप करने में कोई ग़लती कर दी हो. कृपया करके स्पेलिंग इत्यादि चेक करें.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "क्षमा करें, जो पेज आप देखना चाहते है वो मौज़ूद नही है." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "पेरामीटर यूज़्ड " + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "पासवर्ड" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "पासवर्ड रिसेट" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "डियर" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "आपके इस पासवर्ड को रिसेट करने का अनुरोध हमे मिला है" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "अपना पासवर्ड बदलने के लिए, कृपया करके नीचे दिए गये लिंक पर क्लिक करे (या उसे कॉपी करके अपने ब्राउज़र में पेस्ट करे)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "आपके के अनुरोध पर आपका पासवर्ड रिसेट किया गया है! आपका नया विवरण इस प्रकार है" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "उशहीदी पासवर्ड रिसेट" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "फोन" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "कृपया करके चुने" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "डेटा पोस्ट मेथड द्वारा नही भेजा गया है" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "पूर्व-दर्शन करना" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "संदेश" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "भेजे गये व्यक्तिगत संदेश" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "व्यक्तिगत संदेश" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "विषय" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "टू" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "पब्लिक लिसटिंग" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "क्वालिफाइयर्स" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "पढ़ा हुआ" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "रेलवेन्स" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "रिपोर्ट का शीर्षक" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "रिपोर्ट की तारीख़" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "रिपोर्टर्स" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "रिपोर्टर्स का स्तर" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "रिपोर्ट्स" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "रेप्युटेशन स्कोर" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "आवश्यक" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "रिसेट" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "जवाब में" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "परिणाम" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "रिवोक" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "इस ईमेल पर पहले से ही CrowdmapID का अकाउंट है! कृपया लॉगिन करने के लिए अपना Crowdmap पासवर्ड का इस्तेमाल करे !" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "सेट्टिंग्स बचाये" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "खोजें" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "रिपोर्टर्स खोजें" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "सर्चिंग फॉर" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "एनक्रिपशन-की कि वॅल्यू अभी तक डिफॉल्ट है. यह असुरक्षित है और इसे तुरंत बदल दें." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "यह साइट HTTP द्वारा प्रस्तुत की जा रही है. इसे ज़्यादा सुरक्षित करने के लिए इसे HTTPS पर कीजिए." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "सूचनाएँ सारी विकी पर मौजूद है:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "अपने डाउनलोड किए रिपोर्ट्स का फॉर्मॅट चुने:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "एक फील्ड प्रकार का चयन करें" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "कृपया करके एक आइटम चुने" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "रेस्पॉन्स सेलेक्ट करने पहले आपको ट्रिग्गर सेलेक्ट करना पड़ेगा." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "क्वालिफाइयर्स डिफाइन करने के पहले आपको ट्रिग्गर सेलेक्ट करना पड़ेगा." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "भेजनेवाला" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "जिसे भेजना है" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "यह संदेश आपके वेबसाइट पर से भेज गया था इस वक़्त" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "सर्वर समय" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "सेट्टिंग्स" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "पेज देखिए" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "परिणाम देखिए" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "दिखाया जाना" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "स्पेशल श्रेणी" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "यह एक विशिष्ठ केटेगरी है जो यूज़र्स द्वारा दिए गये रिपोर्ट सबमिशन फॉर्म में देखिई नही देगी. यह केटेगरी \"ट्रस्टेड रिपोर्टर्स\" से संबंधित है." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "स्पेसिफिक क्षेत्र" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "राज्य" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "आँकड़े" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "आँकड़े" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "आँकड़े प्राप्‍त नही हुए! कृपया करके वापस प्रयतन् कीजिए !" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "आँकड़े प्राप्‍त नही हुए !" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "स्पेसिफिक डेज़" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "विषय" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "सूपर एडमिन" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "टास्क पर्फॉर्म्ड" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "टेक्स्ट फील्ड" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "नाम" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "मेनेज यूज़र्स" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "टाइम-आउट एरर" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "से" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "कुल रेकॉर्ड्स" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "से" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "रिपोर्ट्स का अनुवाद करे" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "ट्रिग्गर" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "ट्रिगरिंग यूज़र्स" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "ट्रिगर्स" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "अस्वीकृत" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "अज्ञात" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "अज्ञात असफलता" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "अपठित" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "आपको इनसे से चेतावनिया प्राप्त नही होगी" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "अपग्रेड करने के लिए यहाँ क्लिक करे" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "अपग्रेड उशहीदी" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "अपग्रेड उशहीदी की स्थिति" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "अपलोड रिपोर्ट्स" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "उपभोक्ता" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "यूज़र्स" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "उशहीदी" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "वेरिफाइड/अनवेरिफाइड" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "वेरिफाइ/अनवेरिफाइ" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "संस्करण" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "अपग्रेड के लिए उप्लब्द है." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "विडियो एन्कोडिंग" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "व्यक्तिगत संदेश" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "साइट दिखाए" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "रिपोर्ट दिखाए" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "स्वागतम," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "विकि" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "हा" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "आपकी सर्च" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-hi_IN/ui_main.po b/application/i18n/po/po-hi_IN/ui_main.po new file mode 100644 index 0000000000..484b48478c --- /dev/null +++ b/application/i18n/po/po-hi_IN/ui_main.po @@ -0,0 +1,3175 @@ +# +# Translators: +# darkapex , 2012 +# Jayesh Vani , 2013 +# nikhil , 2012 +# Pratik , 2013 +# Rishab Arora , 2012 +# santhosh , 2013 +# Shantanu Sarkar , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "जानिये" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "पहुँच" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "पहुँच सीमा" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "खाते का नाम" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "कार्य" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "इस कार्य को पूर्ववत नहीं किया जा सकता। क्या आप निश्चित रूप से आगे बढ़ना चाहते हैं?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "सक्रिय करें" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "सक्रिय" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "जोडें" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "जोड़ने वाला" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "अतिरिक्त डेटा" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "अतिरिक्त रिपोर्ट" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "जोडें/बदलें" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "क्षेत्र जोडें" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "भाषा जोडें" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "नया जोडें" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "नई श्रेणी जोड़ें" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "अनुवाद जोड़ें" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "प्रशासन" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "अलर्ट प्राप्त करें" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "इस क्षेत्र में या उसके पास रिपोर्ट दर्ज होने पर मुझे अलर्ट भेजें" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "मेरे अलर्ट अंकित करें" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "ईमेल पता" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ईमेल पता भरें" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "देश कोड के साथ मोबाइल नंबर भरें" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "अलर्ट प्राप्त करें" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "चेतावनी भेजी गयी है" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "मोबाइल फ़ोन" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "या नीचे दिए गए नक्शे पर चिह्न लगायें, और 20 किलोमीटर की दूरी के भीतर रिपोर्ट दर्ज होने पर आप को अलर्ट भेज दिया जायेगा।" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "यदि आप अपना स्थान नहीं ढून्ढ पा रहे है तो सही स्थान चिह्नित करने के लिए नक्शे पर क्लिक करें।" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "आरएसएस फ़ीड (नीचे दी गई यूआरएल को कॉपी करें) " + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "शहर का चयन करें" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr " चरण 1: अपने शहर या स्थान का चयन करें:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr " चरण 2: मेरे अलर्ट भेजें यहाँ भेजें:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr " चरण 3 (वैकल्पिक): श्रेणियां चुनें" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "पिछले एक अलर्ट अनुरोध की पुष्टि करें" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "आपके अलर्ट को सहेज लिया गया है" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "सभी" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "अनुमति है" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "अनुमतित HTML टॅग्स : \"%s\"" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "आइफ्रेम्स जहाँ से अनुमतित है : \"%s\"" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "सभी श्रेणियां" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "सभी समय" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "और" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "स्वीकार करें" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "स्वीकृत" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "स्वीकृत रिपोर्टें" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "इस रिपोर्ट को स्वीकार करें" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "लगभग" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "संग्रह" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "संग्रहीत" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "उठता हुआ " + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "में" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "लेखक" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "ऑटो उपस्थिति" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "प्रति दिन औसत रिपोर्ट" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "स्वीकृति के लिए प्रतीक्षा में" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "सत्यापन का इंतजार है" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "पदक" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "पदक" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "पदक छवि" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "या आप अपना बैज चित्र अपलोड कर सकते हैं." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "बैज समूह" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "बैज चुनें" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "ब्लॉग" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "प्रोफाइलें देखें" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "रद्द करें" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "श्रेणियां" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "श्रेणी" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "श्रेणी छन्ना" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "यह वर्ग हो गया है " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "श्रेणी का नाम" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "तिथि सीमा बदलें" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "पासवर्ड बदलें" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "मेरा चित्र बदलें" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "एक चुनें" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "डाउनलोड करने के डेटा बिंदुओं को चुनें" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "या अपनी तिथि सीमा का चयन करें" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "फ़ील्ड प्रकार का चयन करें" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL साफ़ करें" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "साफ़ करें" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "नक्षा साफ़ करें" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "बंद करें" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "समूह" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "रंग" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "टिप्पणी" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "टिप्पणियाँ" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "टिप्पणी विवरण" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "आपकी सेटिंग्स अंकित हो गई हैं!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "कॉन्फ़िगर" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "आपने सफलतापूर्वक अपने ईमेल पते की पुष्टि की है!कृपया नीचे लॉगिन करें|" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "आपने सफलतापूर्वक अपने ईमेल पते की पुष्टि की है! एड्मिनिस्ट्रेटर द्वारा आपके अकाउंट को स्वीकृति मिलने के बाद ही आप लॉगिन कर सकते है!" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "ईमेल पुष्टिकरण विफल हुआ! नीचे से आप दोबारा नया ईमेल पुष्टिकरण माँग सकते है !" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "हमसे संपर्क करें" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "सुरक्षा कोड" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "आपका ईमेल पता" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "संदेश" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "आपका संदेश भेज दिया गया है!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "आपका नाम" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "आपका फोन नंबर" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "संदेश भेजें" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "संदेश का विषय" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "सर्वाधिकार ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "बनाएँ" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "नया बनाए / बदले " + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "नया बनाए " + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "नया पासवर्ड बनाएँ" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "रिपोर्ट बनाए " + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "विश्वसनीयता" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "वर्तमान पासवर्ड" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "अनुकूलित क्षेत्र" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "जानकारी" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "तारीख" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(माह / तिथि / वर्ष)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "दिनांक और समय" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "दिन" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "निष्क्रिय करें" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "नैरोबी, केन्या" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "हटाएँ" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "हटाए गए" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "हटाए गए" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "हटाना निषेध" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "पिछला हटाए" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "यह रिपोर्ट हटाए" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "चुने हुए हटाए" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "स्पैम हटाएँ" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "प्रदर्शन" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "वर्णन" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "गिरता हुआ" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "उदहारण : ३४, माहि बिल्डिंग, मेघ नगर गली क्र. ३, दिल्ली " + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "विस्तार" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "सीधा रिपोर्ट" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "बंद किया हुआ " + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "अनुमोदन वापिस लो" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "रिपोर्ट करो डाउनलोड" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "डाउनलोड" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "बदले " + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "प्रपत्र में क्षेत्र बदले" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "रिपोर्ट बदले" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "ईमेल" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "ईमेल पता" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "मेल सर्वर की स्थिति" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "मेल सर्वर मेजबान" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "मेल सर्वर पासवर्ड" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "मेल सर्वर द्वार" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "मेल सर्वर एस.एस.एल. के लिए समर्थन" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "मेल सर्वर का प्ररूप" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "मेल सर्वर प्रयोक्ता नाम" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "इस लिए आपके विकल्प इस ईमेल के साथ जुड़े होने चाहिए" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "ईमेल द्वारा रिपोर्ट मिलने के लिए कृपया आपके ईमेल अकाउंट के सेट्टिंग नीचे दीजिए. कृपया ध्यान दें की ईमेल इधर आएँगे :" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "कुछ सर्वर के लिए पूरा ईमेल एड्रेस चाहिए" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "ईमेल अकाउंट का गुप्त शब्द" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "सामान्य द्वार : 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "उदाहरण: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "उदाहरण: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "SSL कनेक्शन सक्रिय या निष्क्रिय करें" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "--खाली-- " + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "को" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "एरर" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "उदाहरण" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "केन्या" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "बाहरी ऐप्स" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "बहरी विडियो लिंक" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "फ़ेसबुक" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "फीड" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr " प्रतिक्रिया प्रदान करें" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "फीड" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "इस फीड को" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "फीड \tविषय - सूची" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "ख़बर नाम " + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "ख़बर URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "उपयोग नहीं किया गया क्षेत्र " + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "फ़ाइल" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "आपकी फाइल अधिकतम परिमाण से ज्यादा है " + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "छन्नियाँ" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "रिपोर्ट छानें" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "इस से रिपोर्ट छानें" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "वह रिपोर्ट छानें जिनमें यह है" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "खोजें" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "स्थान खोजें" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "प्रथम नाम" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Scheduler" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "पासवर्ड भूल गए हैं?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "फॉर्म" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "फॉर्म" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "फॉर्म विवरण" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "फॉर्म में बदलाव करें" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "इस फॉर्म को" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "फॉर्म शीर्षक" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "से" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "पूरा नाम" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "जियोलोकेशन उप्लब्द" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "रंग" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "टिप्पणिया" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "लेबल" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "रेखा की चौड़ाई" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "जाएं" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "हॅशटेग" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "हुआ है" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "मदद कैसे करें" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "छिपा हुआ " + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "छिपाएं" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "मेसेज को छुपाए" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "घर" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "रिपोर्ट कैसे करें" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "आइडी" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "दूसरे उपभोगताओं को आपकी यह पहचान दिखिए देगी !" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "चित्र" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "चित्र" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "चित्र/आइकॉन" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "निष्क्रिय" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "इनबॉक्स" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "घटना" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "नज़दीकी घटनाए" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "घटनास्थल" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "शामिल करे" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "वर्गीकरण शामिल करे" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "कस्टम फील्ड्स शामिल करे" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "वर्णन शामिल करे " + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "जितना हो सके उतना विस्तार मे वर्णन करे!" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "अक्षांश शामिल करे " + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "जगह की जानकारी शामिल करे" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "देशांतर शामिल करे" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "अपनी जानकारी शामिल कीजिये" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "आता हुआ संचार माध्यम" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "जानकारी का आंकलन" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "अपनी सटीक स्थान भरें" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "आपके अकाउंट को लॉगिन करने की पूर्ण अनुमति नही है ! कृपया करके प्रबंदक को संपर्क करे !" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "के जवाब में" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "आइपी अड्रेस" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "क्या यह आपकी प्रोफ़ाइल है?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "वस्तु" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "वस्तुएं" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "वस्तु-विवरण " + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "वस्तु शीर्षक" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "चाबी" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "कीवर्ड्स" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML फ़ाइल" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "फ़ाइल अपलोड करें" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "सांक्षिप्त रूप मे" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "भाषा" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "आखरी" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "पिछले महीने" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "अंतिम नाम" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "पिछले साल" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "अक्षांश " + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "परतें" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "दूसरी परतें" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "ये परत का" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "परत का नाम" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "परत का URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "आपकी टिप्पणी" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "संक्षिप्‍त जानकारी" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "स्तर" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "यह स्तर का" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "स्तर का नाम" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "सिमित" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "कड़ी" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "ds " + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "रिपोर्ट्स लोड हो रही है" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "जगह" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "जगोह" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "शहर, राज्या और/या देश." + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "लॉगिन" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "खाता सफलतापूर्वक बनाया गया। आप अब लॉग इन कर सकते हैं।" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "आपके ईमेल पते पर एक पुष्टिकरण भेजा गया है।" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "आपका अकाउंट बन गया है! एड्मिनिस्ट्रेटर द्वारा आपके अकाउंट को स्वीकृति मिलने के बाद ही आप लॉगिन कर सकते है!" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "ईमेल पता मौजूद नहीं है। एक अलग पते से कोशिश करो या नया खाता बनाएं।" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "कृपया कर के अपने अकाउंट प्रोवाइडर पर क्लिक करे" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "इसके साथ लोगिन करे" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "ईमेल और पासवर्ड" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "ओपन-आइडी" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "रजिस्टर करे" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "अपना अकाउंट बनाये" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "%1$s पर रजिस्ट्रेशन के लिए धन्यवाद! अपने ईमेल अड्रेस की पुश्ठी के लिए इस URL पर जाए : %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "रजिस्ट्रेशन का पुष्टिकरण" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "%1$s पर एक नये यूज़र ने रेजिस्टर किया है! उसके रेजिस्ट्रेशन को स्वीकृति देने के लिए इस URL पर जाए : %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "नये यूज़र की स्वीकृति" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "आपके यूज़र अकाउंट को इस %1$s की मंज़ूरी दी गयी है! लॉगिन करने के लिए इस URL पर जाए: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "यूज़र अकाउंट स्वीकृत" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "हमारे साइट पर अपना अकाउंट बनाए ताकि आप नये फीचर्स का फ़ायदा ले सके !" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "देशांतर" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "नक्शा" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "पढ़ा हुआ अंकित करे" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "नही पढ़ा हुआ अंकित करे" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "महत्तम फाइल की साइज़" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "संचार माध्यम" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "संचार माध्यम की छन्नियाँ" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "सदस्य" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "अपना खाता प्रबंधित करें" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "संदेश" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "संदेश" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "संदेश का विवरण" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "संदेश बिन-आंकी स्रोत से :" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "मोबाइल" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "सुधारे" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "तिथि बदले" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "माह" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "अधिक" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "अधिक जानकारी" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "क्या यह उशहीदी का डेप्लाय्मेंट एक से ज़्यादा राष्ट्रो मे है" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "एस प्रस्तरण को अभिगम करने के लाइ अपने ईमेल के पते की पुष्टि करे| अगर आपने स्वीकृति ईमेल को खो दिया है तो आप न्ये के लाइ आवेदन कर सकते है|" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "नाम" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "नज़दीकी रिपोर्ट" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "नई" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "समाचार" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "समाचार फ़ीड्स" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "समाचार स्रोत" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "नई श्रेणी" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "नया पासवर्ड" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr " नयी रिपोर्ट" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "अगला" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "नहीं" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "प्रदर्शित करने के लिए कोई चेकइन नहीं." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "कोई डेटा नहीं" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "कोई नहीं" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "नोटिस" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "स्वीकृत नही" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "स्वीकृत नही" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---चयनित नहीं---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "स्पैम नहीं" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "नही दर्शाया गया" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "यहा कोई रिपोर्ट्स नही है" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "यहा कोई परिणाम नही है " + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "बंद" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "अफीशियल & मुख्यधारा समाचार" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "चालू" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "विकल्प" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "वैकल्पिक" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "विकल्प" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "संस्था" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "संस्था" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "संगठन विवरण" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "संगठन का ईमेल" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "यह संस्थान का" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "संगठन का नाम" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "संगठन दूरभाष 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "संगठन का दूरभाष 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "संगठन की वेबसाइट" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "मूल" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "मूल वर्णन" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "मूल उपाधि" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "दूसरी डेप्लाय्मेंट्स" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "आउट-बॉक्स" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "आउट-गोयिंग" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "पेज" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "पेजिस" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "पेज वर्णन" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "ये पेज है" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "पेज टेब का नाम" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "पेज शीर्षक\n " + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "उत्पादक विभाग" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "पैस्वर्ड" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "पैस्वर्ड प्रमाणित करे" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "पैस्वर्ड सफलतापूर्वक बदल दिया गया है! लॉगिन करे|" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "क्या आप पैस्वर्ड भूल चुके है?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "नये पैस्वर्ड के लिए आपने ईमेल को जाचे|" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "ईस कम्प्यूटर पर लॉग्ड ईन्न रहे|" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "पिछला महीना" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "पिछला साल " + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "बाकी" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "प्रति" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "व्यक्तिगत सूचना वैकल्पिक " + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "फोन" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "तस्वीरे" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "चित्र" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "चित्र और वीडियो" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* स्थानीए नाम या विश्व रेखान्तर के सहारे आपने स्थान को खोजे, देशांतर निर्देशांक(फॉर्मॅट: 38.19, 85.61),सही स्थान को ठीक से निर्धारित करने के लिए मानचित्र पर क्लिक करें|" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "शुरू करे" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "कृपया ध्यान मे रखे" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "प्लगीन्स" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "प्लगिन वेबसाइट" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "लोकछवी" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "लोकछवी URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "पूर्व-दर्शन करना" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "वस्तु का पूर्व-दर्शन " + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "संदेश का पूर्व-दर्शन " + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "पिछला" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "व्यक्तिगत" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "लोकछवी का रंग" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "आपकी रूपरेखा संग्रह हो गई है " + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "क्विक स्टॅट्स" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "रेटिंग" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "पढ़ा हुआ" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "प्राप्त करना" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "किससे प्राप्त हुआ" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "अधिसूचना प्राप्त करना" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "हाल के रिपोर्ट्स" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "ताजे समाचार फीड्स के लिए क्लिक करे" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "रजिसटर्द ईमेल" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "निकाल दे" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "जवाब दे" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "रिपोर्ट" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "रिपोर्ट्स (नक्शे मे से, कालानूक्रम अधिसूचित)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "रिपोर्टर" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "रिपोर्टर्स" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "रिपोर्ट की तारीख़" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "रिपोर्टर का ईमेल" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "रिपोर्टर का नाम" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "यह रिपोर्टर क्या कर चुका है" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "रिपोर्टर का आइपी अड्रेस" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "रिपोर्टर का कुलनाम नाम" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "रिपोर्टर का स्तर" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "रिपोर्टर्स का स्तर" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "रिपोर्टर का फोन" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "रिपोर्ट्स" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "ब्राउज़" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "सब्मिट" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "रिपोर्ट्स" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "वर्गीकरण" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d रिपोर्ट्स" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "तारिक़्ख" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "वर्णन" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "रिपोर्ट्स CSV फॉर्मॅट मे डाउनलोड की जाएगी" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "ईमेल" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "फीचर्स" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "अपने नज़दीक की जगह ढूंदिए" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "पहला नाम" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "कुलनाम" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "जगह का नाम" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "समाचार स्रोत लिंक" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "वैल्काल्पिक जानकारी" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "तस्वीरे अपलोड करे" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "रिपोर्ट्स पेज पर वापस जाये" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "शहर का चयन करें" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "आपका रिपोर्ट समीक्षा के लिए प्रस्तुत हो गया है. अगर ज़रूरत पड़े तो हम आपको जल्द ही संपर्क करेंगे." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "नये रिपोर्ट जमा करे" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "समय" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "रिपोर्ट्स टाइमलाइन" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "रिपोर्ट का शीर्षक" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "विडियो लिंक" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "घटना की रिपोर्ट करे" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "विस्तुरित रिपोर्ट" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "संदेस भेज कर" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "ईमेल भेज कर" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "हैशटैग के साथ ट्वीट भेज कर" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "वेबसाईट पर एस फॉर्म को भरके" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "एस अप्प कआ प्रयोग करके" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "आपका रिपोर्ट संग्रह हो गया है " + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "रिपोर्ट का शीर्षक" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "अधिक जानकारी की विनती करे" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "स्थान की विनती करे" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "आवश्यक" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "आवश्यकता" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "स्वीकृति ईमेल को फिर से भेजे" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "रिसेट" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "सभी फिलटर्स को रिसेट करे" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "पासवर्ड को रिसेट करे" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "चयनित देश के शहरों के नाम पुन: प्राप्त करें" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "लेखा %s सेवा द्वारा प्रबंधित." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "आपका CrowdmapID अकाउंट हमारे पास रजिस्टरेड है! कृपया लॉगिन करने के लिए अपना CrowdmapID ईमेल और पासवर्ड इस्तेमाल करे !" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "रोल" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "बचाये" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "बचा चुके" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "बचाये और नया जोडें" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "बचाये और बंद करे" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "रिपोर्ट बचाये" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "कार्यक्रम" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "शेड्यूलर" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "दिन" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "घंटा" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "शेड्यूलर लॉग" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "मिनिट" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "हफ्ते का दिन" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "खोजें" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "परिणाम को खोजे" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "सुरक्षा कूट" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "सभी का चयन करे" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "एक फील्ड प्रकार का चयन करें" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "पर्चा एक प्रकार का चयन करें" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "नक्शे में चुने" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "जरूरत के रूप में चयन करें" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "यदि आपने किसी वस्तु की जाँच की है तो कृपया सत्यापित करें" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "थीम पसंद करे" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "भेज दे" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "पुष्टिकरण भेजे" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "भेजेने वाले" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "भेजा गया" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "भेजने वाले का नाम" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "सर्वर अड्रेस" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "सर्वर टाइप" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "सेवा" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "सेवा का यूज़रनेम" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "सेवा का यूज़र-आइडी" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "शेयर" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "साझा डेटा" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "इस शेयर को" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "सहभाजन" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "अल्प नक्शा" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "दिखाए" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "सब कुछ दिखाए" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "मेसेज दिखाए" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "रिपोर्ट्स दर्शाना %1$s to %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "वेबसाइट" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "साइट ईमेल अड्रेस" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "साइट URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "छोटा नक्शा" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "क्षमा कीजिए, आपके पास कोई भी बॅडजस नही है !" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "स्रोत" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "स्रोत का नाम" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "छांटना" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "इससे छांटना" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "स्रोत URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "स्पॅम" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL साहयता?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "किससे आया" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "स्टेप" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "रिपोर्ट जमा कीजिए" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "सॅबमिटेड बाइ %1$s वाया %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "SMS द्वारा भेजे" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "आपका SMS किसे भेजना है" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "आपके फोन पर" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "सफल !" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "सफलता पूर्वक इम्पोर्ट किया गया" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "कुलनाम" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "सर्वेक्षण" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "सिस्टम" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "लंबा नक्शा" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP पोर्ट" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "थीम्स" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "डिफॉल्ट उशहीदी थीम" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "थीम सेट्टिंग्स" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "यह" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "आज" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr " ये महीना" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr " ये साप्ताह" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr " ये वर्ष" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "आपका अपना वर्णन" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "समय" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "पद" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "को" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "आज" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "आज" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "टोकन" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "कुल रिपोर्टें" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "अनूवादित" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "अनूवादित विवरण" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "अनूवादित शीर्षक" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "अनुवाद करें" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "अनुवाद" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "अनुवाद संचय किया गया" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "विश्वसनीय" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "प्रकार" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "ट्विटर" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "ईमेल भेजने में असमर्थ." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "उनकटेगोरिज़ेड रिपोर्ट्स" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "अपठित" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "असत्यापित" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "अद्यतन फ़ीड" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "अपलोड करे" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "हमारे रिपोर्ट अपलोड गाइडस देखिए" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML अपलोड गाइड" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV अपलोड गाइड" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "ये फाइल अपलोड करे" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "अपलोड रिपोर्ट्स" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr " कस्टम क्षेत्र के फॉर्म_आईडी उनके साथ संलग्न रहने चाहिए उदाहरण के लिए कस्टम क्षेत्र जाँच, डिफॉल्ट फॉर्म पर, जिनका आईडी1 है उनका जाँच-1 होगा| कस्टम फॉर्म क्षेत्र के आयात के दौरान एस बात का ख्याल रखे की" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "नीचे दिए गए फार्म के साथ, आप Ushahidi इंजन में घटनाओं को आयात कर सकते हैं." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "रिपोर्ट्स CSV अथवा XML फॉर्मॅट मे अपलोड करे" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "अगर इन्सिडेंट ID डेटबेस में पहले से मौजूद है तो जो एंट्री CSV/XML में है, उसे नज़र-अंदाज़ किया जाएगा!" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "इसमे कम से कम घटनाओं के शीर्षक और घटनाओं के तिथि होने चाहिए." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "कोई अक्षांश और देशांतर कॉलम आपूर्ति की जाती है, तो स्थान गूगल Geocoder उपयोग कर भूकूटित किया जाएगा." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "अतिरिक्त जानकारी यानी व्यक्तिगत जानकारी और / या कस्टम प्रपत्र फ़ील्ड का आयात करते हैं" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "आपकी अपनी जानकारी के फील्ड्स मे कम से कम (नाम या कुलनाम या ईमेल) होना ज़रूरी है! यदी ये तीनो फील्ड्स खाली हुए तो वो रेकॉर्ड इम्पोर्ट नही होगा!" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "लटकती क्षेत्रों, रेडियो बटन और चेक बॉक्स के लिए अपनी प्रविष्टियां अपनी आवृत्ति पर कस्टम क्षेत्र के लिए उपलब्ध विकल्पों मैच करते हैं" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "चेकबॉक्स विकल्प एक अल्पविराम से अलग होती है उदाहरण अगर आपके चुने हुए फल के विकल्प सेब, आपकी प्रविष्टि \"सेब, आम, अंगूर\" होनी चाहिए" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "तारीख़ फील्ड का फॉर्मॅट ऐसा होना चाईए: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "एक नमूना CSV रिपोर्ट" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,इन्सिडेंट टाइटल,इन्सिडेंट डटे,लोकेशन,डिस्क्रिप्षन,केटेगरी,अप्रूव्ड,वेरिफाइड,लॅटिट्यूड,लॉंजिट्यूड<ब्र />\"1\",\" नैरोबी मे संदिग्ध की मौत\",\"2009-05-15 01:06:00\",\"नैरोबी\",\"सी. डेल यूवरग्वे मे तीन मामलो की पुष्टि हो गई है\",\"डेत्स, सिविलियेन्स, \",एस,एस,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"लूटिंग\",\"2009-03-18 10:10:00\",\"अक्रा\",\"सभी जगहो पर लूट हो रही है\",\"राइयट्स, डेत्स, प्रॉपर्टी लॉस, \",एस,नो,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "सफल अपलोड" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "अपलोड वीडियो" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "उपभोक्ता" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "यूज़रनेम" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "उशहीदी प्रबंधक" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "प्रमाण" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "प्रामाणिक" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "प्रामाणिक रिपोर्ट्स" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "प्रमाणित करना" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "रिपोर्ट प्रमाणित करें" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "संस्करण" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "वाया" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "वीडियो" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "दिखाए" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "दिखाए" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "सब कुछ दिखाए" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "सारे फीड्स दिखाए" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "सारे रिपोर्ट्स दिखाए" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "वस्तुए दिखाए" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "और दिखाए" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "लोकछवी दिखाए" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "रिपोर्ट दिखाए" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "रिपोर्ट्स दिखाए" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "वीडियो देखे" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "प्रत्यक्ष" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "अनुमति की प्रतीक्षा" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "प्रमाण की प्रतीक्षा" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "बड़ा नक्शा" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "वेब फॉर्म" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "वेब" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "वजन" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "हा" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "गत दिन" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "आपका डॅशबोर्ड" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "आपकी फाइल" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "पास जाए " + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "दूर जाए " diff --git a/application/i18n/po/po-hi_IN/upgrade.po b/application/i18n/po/po-hi_IN/upgrade.po new file mode 100644 index 0000000000..34535a92c7 --- /dev/null +++ b/application/i18n/po/po-hi_IN/upgrade.po @@ -0,0 +1,302 @@ +# +# Translators: +# Arun Kumar Rathore , 2013 +# Jayesh Vani , 2013 +# Shantanu Sarkar , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-07-05 06:21+0000\n" +"Last-Translator: Jayesh Vani \n" +"Language-Team: Hindi (India) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "अवैध इनपुट डाटा | यहाँ ना के लिए 0 या हाँ के लिए 1 हो सकता है । " + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "स्वचालित अपग्रेड" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "उपलब्ध अपडेट " + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "जारी" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "अपग्रेड" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "अतः, मैं आपका डेटाबेस अपग्रेड करने जा रहा हूँ " + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "नवीनतम डेटाबेस संस्करण से " + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "\"अपग्रेड\" बटन दबाएँ और निश्चिन्त रहे, जब तक मैं जादू करता हूँ " + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "और हाँ , यदि आप चाहतें हैं कि मैं आपके डेटाबेस का बैकअप करूँ , बस नीचे दिए गए चेक बटन को टिक करें और मैं आपके लिए ये चुटकियों में कर दूँगा " + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "नवीनीकरण से पहले डेटाबेस का बैकअप करें? (अत्यधिक सिफारिश)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi डेटाबेस अपग्रेड " + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi अपडेट हो चुका है! आगे बढ़ने से पहले, आपको अपने डेटाबेस को नवीनतम संस्करण(%s) तक अपडेट करने की आवश्यकता है " + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "आपका डेटाबेस संस्करण नवीनतम है " + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "किसी बिंदु पर अपग्रेड विफल रहा" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "मैन्युअल अपग्रेड" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi अपग्रेड की स्थिति" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "नीचे दिए गए अनुदेश आपको Ushahidi परिनियोजन को मैन्युअली अपग्रेड करना विस्तार से बतायेंगे " + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
डाउनलोड
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
-नवीनतम Ushahidi build से डाउनलोड करें " + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- हमारी यह सलाह है की आप उशहीदी के डेप्लोयमनेट का पूरा बॅकप ले कर रखे!
Copy files
- Extract the downloaded zip file
- वेब सर्वर में लॉगिन करने के लिए आप अपना चहिता टूल (e.g. Telnet, FTP, SSH) इस्तेमाल करे! लॉगिन करने के बाद नये बिल्ड से सारे फोल्डर्स रीप्लेस कर दीजिए!
Upgrde database
- पहले अपने डेटाबेज स्कीमा का वरजन ढूंदिए ! यह वरजन नंबर db_version आपको या तो सटिंग्स टेबल्स में मिलेगी या फिर उशहीदी की अपग्रेड इन्फर्मेशन - जो इस पेज के उपरी हिस्से में है, वहाँ मिलेगी !
- अगर आपका वरजन 25 है तो आपको अपग्रेड करना पड़ेगा - यानी के 25-26 या फिर 26-27 या फिर 27-28 इत्यादि! यह अपग्रेड आपको तब तक करना पड़ेगा जब तक आपके पास लेटेस्ट फाइल नही आ जाती इस/sql डाइरेक्टरी में!
- उचित upgradex-x.sql फाइल को अपने डेटाबेस क्लाइंट से एक्सेक्यूट करके अपना डेटाबेस अपग्रेड करे!
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Step 3: SQL फोल्डर में देखिए ! मॅन्यूयेली यह अपग्रेडेड फाइल -.sql रन करे! अपग्रेड की शुरुआत अपने इन्स्टलेशन के करंट db वरजन से कीजिए! और इसे फाइनल sql अपग्रेड फाइल तक रन कीजिए !" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Step 4: \"कंटिन्यू\" बटन को क्लिक कीजिए ताकी ज़रूरी टेबल्स अपग्रेड हो जाये !" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "स्वचालित अपग्रेड के लिए, नीचे दिए गए बटन पर क्लिक करें." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "आप अभी Ushahidi v%1$s, डेटाबेस संस्करण %2$d के साथ उपयोग कर रहे है जो %3$s चल रहा है " + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "अपग्रेड कर रहा है " + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "आसान अपग्रेड के साथ जारी रखने के लिए, निम्न जानकारी FTP सर्वर के लिए आवश्यक है जहाँ अपनी वेबसाइट होस्ट की है ." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP होस्ट का नाम: उदाहरण:\"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP पासवर्ड " + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP उपयोगकर्ता का नाम:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "आपके पास Ushahidi का नवीनतम संस्करण है " + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "आपको अपग्रेड की आवश्यकता नहीं है " + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "डेटाबेस संस्करण: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "चेतावनी: version.php तथा डेटाबेस का सॉफ्टवेयर संस्करण मेल नहीं कर रहा " + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "चेतावनी: version.php तथा डेटाबेस का डेटाबेस संस्करण मेल नहीं कर रहा " + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "डेटाबेस:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "बीटा!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Ushahidi का नवीनतम संस्करण डाउनलोड कर रहा है " + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "लॉग फ़ाइल" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "डाउनलोड सफल| Unpacking..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "डाउनलोड विफल रहा" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "सफलतापूर्वक unpacked, फाइलों की नकल की जा रही है " + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "unpacking विफल रही " + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "सफलतापूर्वक नकल की गयी. डेटाबेस अपग्रेड हो रहा है " + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr " फाइलों की नकल विफल रही " + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "डेटाबेस का बैकअप और अपग्रेड सफल " + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "बैकअप विफल रहा" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "डेटाबेस का अपग्रेड सफल " + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "डाउनलोड की गयी फ़ाइलें मिटा रहा है " + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "अपग्रेड सफल| लॉग फ़ाइलदेखें" diff --git a/application/i18n/po/po-hr/alerts.po b/application/i18n/po/po-hr/alerts.po new file mode 100644 index 0000000000..0695c08d48 --- /dev/null +++ b/application/i18n/po/po-hr/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-hr/auth.po b/application/i18n/po/po-hr/auth.po new file mode 100644 index 0000000000..d81193913e --- /dev/null +++ b/application/i18n/po/po-hr/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-hr/bug.po b/application/i18n/po/po-hr/bug.po new file mode 100644 index 0000000000..d684291e4c --- /dev/null +++ b/application/i18n/po/po-hr/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-hr/category.po b/application/i18n/po/po-hr/category.po new file mode 100644 index 0000000000..1aed080a24 --- /dev/null +++ b/application/i18n/po/po-hr/category.po @@ -0,0 +1,89 @@ +#. extracted from en_US/category.php, hr/category.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-hr/comments.po b/application/i18n/po/po-hr/comments.po new file mode 100644 index 0000000000..1e2edfba1c --- /dev/null +++ b/application/i18n/po/po-hr/comments.po @@ -0,0 +1,59 @@ +#. extracted from en_US/comments.php, hr/comments.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-hr/contact.po b/application/i18n/po/po-hr/contact.po new file mode 100644 index 0000000000..9cafa025e1 --- /dev/null +++ b/application/i18n/po/po-hr/contact.po @@ -0,0 +1,74 @@ +#. extracted from en_US/contact.php, hr/contact.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-hr/core.po b/application/i18n/po/po-hr/core.po new file mode 100644 index 0000000000..f6ae3d0ba8 --- /dev/null +++ b/application/i18n/po/po-hr/core.po @@ -0,0 +1,144 @@ +#. extracted from en_US/core.php, hr/core.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-hr/database.po b/application/i18n/po/po-hr/database.po new file mode 100644 index 0000000000..1f7db4e77c --- /dev/null +++ b/application/i18n/po/po-hr/database.po @@ -0,0 +1,24 @@ +#. extracted from en_US/database.php, hr/database.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-hr/datetime.po b/application/i18n/po/po-hr/datetime.po new file mode 100644 index 0000000000..6f2325aeb7 --- /dev/null +++ b/application/i18n/po/po-hr/datetime.po @@ -0,0 +1,214 @@ +#. extracted from en_US/datetime.php, hr/datetime.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-hr/feeds.po b/application/i18n/po/po-hr/feeds.po new file mode 100644 index 0000000000..08b5c62d0b --- /dev/null +++ b/application/i18n/po/po-hr/feeds.po @@ -0,0 +1,49 @@ +#. extracted from en_US/feeds.php, hr/feeds.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-hr/footer.po b/application/i18n/po/po-hr/footer.po new file mode 100644 index 0000000000..1effa7483e --- /dev/null +++ b/application/i18n/po/po-hr/footer.po @@ -0,0 +1,19 @@ +#. extracted from en_US/footer.php, hr/footer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" + diff --git a/application/i18n/po/po-hr/form.po b/application/i18n/po/po-hr/form.po new file mode 100644 index 0000000000..b7b8b6701f --- /dev/null +++ b/application/i18n/po/po-hr/form.po @@ -0,0 +1,104 @@ +#. extracted from en_US/form.php, hr/form.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-hr/imap.po b/application/i18n/po/po-hr/imap.po new file mode 100644 index 0000000000..3b8a7d2f58 --- /dev/null +++ b/application/i18n/po/po-hr/imap.po @@ -0,0 +1,24 @@ +#. extracted from en_US/imap.php, hr/imap.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-hr/installer.po b/application/i18n/po/po-hr/installer.po new file mode 100644 index 0000000000..4608d6218b --- /dev/null +++ b/application/i18n/po/po-hr/installer.po @@ -0,0 +1,354 @@ +#. extracted from en_US/installer.php, hr/installer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-hr/layer.po b/application/i18n/po/po-hr/layer.po new file mode 100644 index 0000000000..6d54409fdd --- /dev/null +++ b/application/i18n/po/po-hr/layer.po @@ -0,0 +1,59 @@ +#. extracted from en_US/layer.php, hr/layer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-hr/libraries.po b/application/i18n/po/po-hr/libraries.po new file mode 100644 index 0000000000..1e06b15145 --- /dev/null +++ b/application/i18n/po/po-hr/libraries.po @@ -0,0 +1,109 @@ +#. extracted from en_US/libraries.php, hr/libraries.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-hr/maintenance.po b/application/i18n/po/po-hr/maintenance.po new file mode 100644 index 0000000000..a250d0ba91 --- /dev/null +++ b/application/i18n/po/po-hr/maintenance.po @@ -0,0 +1,19 @@ +#. extracted from en_US/maintenance.php, hr/maintenance.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-hr/message.po b/application/i18n/po/po-hr/message.po new file mode 100644 index 0000000000..bd3185bd98 --- /dev/null +++ b/application/i18n/po/po-hr/message.po @@ -0,0 +1,59 @@ +#. extracted from en_US/message.php, hr/message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-hr/mhi.po b/application/i18n/po/po-hr/mhi.po new file mode 100644 index 0000000000..e1f899bc11 --- /dev/null +++ b/application/i18n/po/po-hr/mhi.po @@ -0,0 +1,49 @@ +#. extracted from en_US/mhi.php, hr/mhi.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-hr/notifications.po b/application/i18n/po/po-hr/notifications.po new file mode 100644 index 0000000000..69db4c5d3a --- /dev/null +++ b/application/i18n/po/po-hr/notifications.po @@ -0,0 +1,89 @@ +#. extracted from en_US/notifications.php, hr/notifications.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-hr/page.po b/application/i18n/po/po-hr/page.po new file mode 100644 index 0000000000..9fe949169c --- /dev/null +++ b/application/i18n/po/po-hr/page.po @@ -0,0 +1,34 @@ +#. extracted from en_US/page.php, hr/page.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-hr/permissions.po b/application/i18n/po/po-hr/permissions.po new file mode 100644 index 0000000000..cb2a9cbef9 --- /dev/null +++ b/application/i18n/po/po-hr/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-hr/private_message.po b/application/i18n/po/po-hr/private_message.po new file mode 100644 index 0000000000..8ccede59f7 --- /dev/null +++ b/application/i18n/po/po-hr/private_message.po @@ -0,0 +1,44 @@ +#. extracted from en_US/private_message.php, hr/private_message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-hr/report.po b/application/i18n/po/po-hr/report.po new file mode 100644 index 0000000000..b8cc5391c6 --- /dev/null +++ b/application/i18n/po/po-hr/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-hr/reporters.po b/application/i18n/po/po-hr/reporters.po new file mode 100644 index 0000000000..4f0e20e5f4 --- /dev/null +++ b/application/i18n/po/po-hr/reporters.po @@ -0,0 +1,64 @@ +#. extracted from en_US/reporters.php, hr/reporters.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-hr/reports.po b/application/i18n/po/po-hr/reports.po new file mode 100644 index 0000000000..610028e8fc --- /dev/null +++ b/application/i18n/po/po-hr/reports.po @@ -0,0 +1,34 @@ +#. extracted from en_US/reports.php, hr/reports.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-hr/roles.po b/application/i18n/po/po-hr/roles.po new file mode 100644 index 0000000000..ef5e9ff506 --- /dev/null +++ b/application/i18n/po/po-hr/roles.po @@ -0,0 +1,59 @@ +#. extracted from en_US/roles.php, hr/roles.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-hr/settings.po b/application/i18n/po/po-hr/settings.po new file mode 100644 index 0000000000..94c4d7de7a --- /dev/null +++ b/application/i18n/po/po-hr/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Croatian (http://www.transifex.com/projects/p/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-hr/sharing.po b/application/i18n/po/po-hr/sharing.po new file mode 100644 index 0000000000..773c1d52f2 --- /dev/null +++ b/application/i18n/po/po-hr/sharing.po @@ -0,0 +1,69 @@ +#. extracted from en_US/sharing.php, hr/sharing.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-hr/stats.po b/application/i18n/po/po-hr/stats.po new file mode 100644 index 0000000000..49afa956bb --- /dev/null +++ b/application/i18n/po/po-hr/stats.po @@ -0,0 +1,184 @@ +#. extracted from en_US/stats.php, hr/stats.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-hr/tooltips.po b/application/i18n/po/po-hr/tooltips.po new file mode 100644 index 0000000000..8f9bf38d76 --- /dev/null +++ b/application/i18n/po/po-hr/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-hr/ui_admin.po b/application/i18n/po/po-hr/ui_admin.po new file mode 100644 index 0000000000..da7b8289dd --- /dev/null +++ b/application/i18n/po/po-hr/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-hr/ui_main.po b/application/i18n/po/po-hr/ui_main.po new file mode 100644 index 0000000000..3df038c61c --- /dev/null +++ b/application/i18n/po/po-hr/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Jurica Železnjak , 2012 +# Marko Raspor , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Croatian (http://www.transifex.com/ushahidi/ushahidi-v2/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "O Nama " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Pristup" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Ovlasti pristupa" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Radnje" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ova radnja se ne može poništiti. Da li ste sigurni da želite nastaviti?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktiviraj" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktivno" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Dodaj" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Dodao/la" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Ostali podaci" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Ostali izvještaji" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Dodaj/Ažuriraj" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Dodaj polje" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Dodaj jezik" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Dodaj novo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Dodaj novu kategoriju" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Dodaj prijevod" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administracija" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Dobij upozorenja" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Sačuvaj moje upozorenje" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email adresu:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Unesi email adresu" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "unesi broj mobitela (zajedno s predbrojem)" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobitel" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ili, mjesto na mapi ispod, i bit ćeš obavješten/a u vidu izvještaja koji pokriva područje unutar 20 km." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Ako nisi našao/la traženu lokaciju, molimo da klikneš na mapu i obilježiš ispravnu lokaciju." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS (kopiraj url ispod)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Odaberi grad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Korak 1: Obilježi tvoj grad ili lokaciju:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Korak 2: Pošalji upozorenje na moju:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Korak 3 (Proizvoljno): Obilježi kategorije " + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Potvrdi prethodni zahtjev za upozorenje" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Sve kategorije" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Dopušteno" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Sve kategorije" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "i" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Odobri" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Odobreno" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Odobreni izvještaji" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Odobri ovaj izvještaj" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Otprilike" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arhiva" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arhivirano" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Prosječno izvještaja po danu" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Čeka odobrenje" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Čeka provjerju" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Oznaka" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Oznake" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategorija" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategorija filtera" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Obriši" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Očisti mapu" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontaktiraj nas" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Tvoja email adresa" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Tvoje ime" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Tvoj broj telefona (nije obavezno)" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Pošalji poruku" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Naslov poruke" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Datum i vrijeme" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Izbriši zadnje" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Izbriši odabrano" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Opis" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "npr. Obala Maka Dizdara 32, Sarajevo" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Povratne informacije" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filteri" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Pronađi lokaciju" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Ime" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Od" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Sakrij" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Naslovna" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Kako prijaviti" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Prezime" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Lokacija" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Grad, Država" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Medij" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Poruka" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Promjeni datum" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Novosti" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Slijedeće" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Zvanične i ostale novosti" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Dodatne" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Slike" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Pretražite vašu lokaciju koristeći naziv lokacije i podatke o geografskoj dužini i širini (u formatu: 38.19,-85.61), ili idite na mapu i odaberite tačnu lokaciju." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Pusti" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Prethodno" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "remove" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Izvještaji" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Pretraži" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Pošalji" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Datum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Ime" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Prezime" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Dajte detaljniju lokaciju" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Link izvora vijesti" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Dodatne Informacije" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Postavi fotografije" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Novi Izvještaj" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Vrijeme" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Naslov izvještaja" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Pošalji email na " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Ispuni ovaj formular." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Koristeći aplikaciju za" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Isključi sve filtere" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Sigurnosni kod" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Poslao/la:" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Prikaži" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Izvor" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Izvijestite" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "time" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "TITLE " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "do" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Danas" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Danas u" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tip" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verifikacija" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Prikaži više" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-hr/upgrade.po b/application/i18n/po/po-hr/upgrade.po new file mode 100644 index 0000000000..c7955ab967 --- /dev/null +++ b/application/i18n/po/po-hr/upgrade.po @@ -0,0 +1,264 @@ +#. extracted from en_US/upgrade.php, hr/upgrade.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hr\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/alerts.po b/application/i18n/po/po-ht_HT/alerts.po new file mode 100644 index 0000000000..69a19e184c --- /dev/null +++ b/application/i18n/po/po-ht_HT/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "That Email address has already been registered to receive alerts for that location" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "That Mobile Phone Number has already been registered to receive alerts for that location" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ht_HT/auth.po b/application/i18n/po/po-ht_HT/auth.po new file mode 100644 index 0000000000..4efce4cb00 --- /dev/null +++ b/application/i18n/po/po-ht_HT/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "The email field does not appear to contain a valid email address?" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "The full name field must be at least 3 and no more 100 characters long." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "The full name field is required." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "The password field must be at least 5 and no more 16 characters long." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Please check that you entered the correct password." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Sorry, this username is already in use." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "The username field must be at least 2 and no more 16 characters long." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Please check that you entered the correct username." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "The username field is required." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ht_HT/bug.po b/application/i18n/po/po-ht_HT/bug.po new file mode 100644 index 0000000000..0802a7d7f2 --- /dev/null +++ b/application/i18n/po/po-ht_HT/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ht_HT/category.po b/application/i18n/po/po-ht_HT/category.po new file mode 100644 index 0000000000..d33b7927fd --- /dev/null +++ b/application/i18n/po/po-ht_HT/category.po @@ -0,0 +1,88 @@ +#. extracted from en_US/category.php, ht_HT/category.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/comments.po b/application/i18n/po/po-ht_HT/comments.po new file mode 100644 index 0000000000..ac9fac3ff0 --- /dev/null +++ b/application/i18n/po/po-ht_HT/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-ht_HT/contact.po b/application/i18n/po/po-ht_HT/contact.po new file mode 100644 index 0000000000..2602476a75 --- /dev/null +++ b/application/i18n/po/po-ht_HT/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ht_HT/core.po b/application/i18n/po/po-ht_HT/core.po new file mode 100644 index 0000000000..2c3342c5af --- /dev/null +++ b/application/i18n/po/po-ht_HT/core.po @@ -0,0 +1,143 @@ +#. extracted from en_US/core.php, ht_HT/core.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/database.po b/application/i18n/po/po-ht_HT/database.po new file mode 100644 index 0000000000..d5229b8e7e --- /dev/null +++ b/application/i18n/po/po-ht_HT/database.po @@ -0,0 +1,23 @@ +#. extracted from en_US/database.php, ht_HT/database.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/datetime.po b/application/i18n/po/po-ht_HT/datetime.po new file mode 100644 index 0000000000..199220f655 --- /dev/null +++ b/application/i18n/po/po-ht_HT/datetime.po @@ -0,0 +1,213 @@ +#. extracted from en_US/datetime.php, ht_HT/datetime.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/feeds.po b/application/i18n/po/po-ht_HT/feeds.po new file mode 100644 index 0000000000..4a7405055b --- /dev/null +++ b/application/i18n/po/po-ht_HT/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "The feed name field must be at least 3 and no more \n\t\t\t\t70 characters long." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Please enter a valid URL. Eg. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ht_HT/footer.po b/application/i18n/po/po-ht_HT/footer.po new file mode 100644 index 0000000000..a5c011b2a7 --- /dev/null +++ b/application/i18n/po/po-ht_HT/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl is not installed on this system" diff --git a/application/i18n/po/po-ht_HT/form.po b/application/i18n/po/po-ht_HT/form.po new file mode 100644 index 0000000000..0542e8678d --- /dev/null +++ b/application/i18n/po/po-ht_HT/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "The Field Name must be at least 3 and no more \n\t\t\t\t200 characters long." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Please enter a value 0 to 50 for the Field Height" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "You have entered an invalid value for Date Field" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Please select Yes or No for the Date Field" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "The Field Name must be at least 3 and no more \n\t\t\t\t100 characters long." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "You have entered an invalid value for Field Required" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Please select Yes or No for Field Required" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Please enter a value 0 to 300 for the Field Width" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "The form name field must be at least 3 and no more \n\t\t\t\t100 characters long." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ht_HT/imap.po b/application/i18n/po/po-ht_HT/imap.po new file mode 100644 index 0000000000..706f2d5221 --- /dev/null +++ b/application/i18n/po/po-ht_HT/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Could not open IMAP stream" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "The email service is not supported" diff --git a/application/i18n/po/po-ht_HT/installer.po b/application/i18n/po/po-ht_HT/installer.po new file mode 100644 index 0000000000..ad0c798bc9 --- /dev/null +++ b/application/i18n/po/po-ht_HT/installer.po @@ -0,0 +1,353 @@ +#. extracted from en_US/installer.php, ht_HT/installer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/layer.po b/application/i18n/po/po-ht_HT/layer.po new file mode 100644 index 0000000000..63972dcf99 --- /dev/null +++ b/application/i18n/po/po-ht_HT/layer.po @@ -0,0 +1,58 @@ +#. extracted from en_US/layer.php, ht_HT/layer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/libraries.po b/application/i18n/po/po-ht_HT/libraries.po new file mode 100644 index 0000000000..0a645ea9db --- /dev/null +++ b/application/i18n/po/po-ht_HT/libraries.po @@ -0,0 +1,108 @@ +#. extracted from en_US/libraries.php, ht_HT/libraries.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/maintenance.po b/application/i18n/po/po-ht_HT/maintenance.po new file mode 100644 index 0000000000..98e5de476f --- /dev/null +++ b/application/i18n/po/po-ht_HT/maintenance.po @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, ht_HT/maintenance.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/message.po b/application/i18n/po/po-ht_HT/message.po new file mode 100644 index 0000000000..173f2eb1fa --- /dev/null +++ b/application/i18n/po/po-ht_HT/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-ht_HT/mhi.po b/application/i18n/po/po-ht_HT/mhi.po new file mode 100644 index 0000000000..13795aaa22 --- /dev/null +++ b/application/i18n/po/po-ht_HT/mhi.po @@ -0,0 +1,48 @@ +#. extracted from en_US/mhi.php, ht_HT/mhi.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/notifications.po b/application/i18n/po/po-ht_HT/notifications.po new file mode 100644 index 0000000000..61d61635db --- /dev/null +++ b/application/i18n/po/po-ht_HT/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "This message was sent from your website" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ht_HT/page.po b/application/i18n/po/po-ht_HT/page.po new file mode 100644 index 0000000000..84676b1933 --- /dev/null +++ b/application/i18n/po/po-ht_HT/page.po @@ -0,0 +1,33 @@ +#. extracted from en_US/page.php, ht_HT/page.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/permissions.po b/application/i18n/po/po-ht_HT/permissions.po new file mode 100644 index 0000000000..55c5916a1c --- /dev/null +++ b/application/i18n/po/po-ht_HT/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ht_HT/private_message.po b/application/i18n/po/po-ht_HT/private_message.po new file mode 100644 index 0000000000..ed7e10abab --- /dev/null +++ b/application/i18n/po/po-ht_HT/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, ht_HT/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/report.po b/application/i18n/po/po-ht_HT/report.po new file mode 100644 index 0000000000..dd76742f54 --- /dev/null +++ b/application/i18n/po/po-ht_HT/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "The am/pm field does not appear to contain a valid value?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "The category field does not appear to contain a valid category?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "The category field is required." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "The description field is required." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "The hour field does not appear to contain a valid hour?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "The hour field does not appear to contain a valid hour?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "The hour field is required." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "The news source links field does not appear to contain a valid URL?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Please ensure that photo uploads sizes are limited to 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "The Upload Photos field does not appear to contain a valid file" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The title field must be at least 3 and no more 200 characters long." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "The title field is required." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "The video links field does not appear to contain a valid URL?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The latitude field is required." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The location name field must be at least 3 and no more 200 characters long." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "The location name field is required." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "The longitude field is required." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "The email field does not appear to contain a valid email address?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "The last name field must be at least 3 and no more 100 characters long." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ht_HT/reporters.po b/application/i18n/po/po-ht_HT/reporters.po new file mode 100644 index 0000000000..4e89f30599 --- /dev/null +++ b/application/i18n/po/po-ht_HT/reporters.po @@ -0,0 +1,63 @@ +#. extracted from en_US/reporters.php, ht_HT/reporters.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/reports.po b/application/i18n/po/po-ht_HT/reports.po new file mode 100644 index 0000000000..b29af6c2c9 --- /dev/null +++ b/application/i18n/po/po-ht_HT/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, ht_HT/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/roles.po b/application/i18n/po/po-ht_HT/roles.po new file mode 100644 index 0000000000..ca1b416271 --- /dev/null +++ b/application/i18n/po/po-ht_HT/roles.po @@ -0,0 +1,58 @@ +#. extracted from en_US/roles.php, ht_HT/roles.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/settings.po b/application/i18n/po/po-ht_HT/settings.po new file mode 100644 index 0000000000..0432b633ec --- /dev/null +++ b/application/i18n/po/po-ht_HT/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/projects/p/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "The allow comments field does not appear to contain a valid value?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "The allow reports field does not appear to contain a valid value?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ht_HT/sharing.po b/application/i18n/po/po-ht_HT/sharing.po new file mode 100644 index 0000000000..6ea7fa967a --- /dev/null +++ b/application/i18n/po/po-ht_HT/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "The site url already exists" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "The site url is required." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "The site url field does not appear to contain a valid URL?" diff --git a/application/i18n/po/po-ht_HT/stats.po b/application/i18n/po/po-ht_HT/stats.po new file mode 100644 index 0000000000..2cf0cfcc4e --- /dev/null +++ b/application/i18n/po/po-ht_HT/stats.po @@ -0,0 +1,183 @@ +#. extracted from en_US/stats.php, ht_HT/stats.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-ht_HT/tooltips.po b/application/i18n/po/po-ht_HT/tooltips.po new file mode 100644 index 0000000000..59719b4dc0 --- /dev/null +++ b/application/i18n/po/po-ht_HT/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Your full name" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Selecting YES lets you get alerts via email when new reports or comments are posted on your website" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Your password. Leave this field blank if you wish to keep your current password" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Your username cannot be changed" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ht_HT/ui_admin.po b/application/i18n/po/po-ht_HT/ui_admin.po new file mode 100644 index 0000000000..4fcf36e6aa --- /dev/null +++ b/application/i18n/po/po-ht_HT/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Moderator" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ht_HT/ui_main.po b/application/i18n/po/po-ht_HT/ui_main.po new file mode 100644 index 0000000000..f784f1705e --- /dev/null +++ b/application/i18n/po/po-ht_HT/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Haitian (Haitian Creole) (Haiti) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ht_HT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ht_HT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Enfomasyon" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Resevwa nouvel" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alerte-moi si un rapport est déposé dans ou autour de:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Soumettre" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Adresse Email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "entrer adresse Email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "entrer numéro de téléphone mobile avec le code du pays" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Obtenez des Alertes" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Téléphone mobile:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ou, choisissez un endroit sur la carte ci-dessous et nous allons vous alerter lorsque un rapport est présenté à l'intérieur de 20 kilomètres." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Fils RSS (copier l'URL ci-dessous)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Choisissez une ville" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "1er pas: Choisissez votre ville ou lieu:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "2e pas: Envoyer des alertes à mon:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmer alerte precedente" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Tout" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtre des catégories" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Fermer" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Groupes" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontakte Nou" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2009 Ushahidi.com. Tous droits réservés." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Rétroaction" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtres" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Ki jan ou ka ede" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Accueil" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "KOUMAN RAPOTE" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "LIEU" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "FILTRE DES MÉDIAS" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nouvelles" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Nouvelles Officielles" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Photos" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Rapo" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Rechercher" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Soumettre" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Catégories" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Trouver un Lieu près de chez vous" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Prénom" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Nom de famille" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Nom de votre lieu" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Lien de sources de presse" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informations Facultatives" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Transférer les Photos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Choisir une Ville" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Soumettre un Nouveau Rapport" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Heure" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Titre du Rapport" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Lien Vidéo" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Déclarer un incident" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Anvoye yon mesaj SMS a" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Email:" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Twitter:" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Web Fom:" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "RECHERCHER" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "SOURCE" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Bay nou enfomasyon" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Envoyer par SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Envoyez votre SMS au" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "sur votre téléphone" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "heure" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "TITRE" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Vidéo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Affichage" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ht_HT/upgrade.po b/application/i18n/po/po-ht_HT/upgrade.po new file mode 100644 index 0000000000..2cd7f87974 --- /dev/null +++ b/application/i18n/po/po-ht_HT/upgrade.po @@ -0,0 +1,263 @@ +#. extracted from en_US/upgrade.php, ht_HT/upgrade.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 21:18+0000\n" +"PO-Revision-Date: 2012-08-17 21:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ht_HT\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-hu_HU/alerts.po b/application/i18n/po/po-hu_HU/alerts.po new file mode 100644 index 0000000000..4ad724bdc3 --- /dev/null +++ b/application/i18n/po/po-hu_HU/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# orsime , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Érvénytelen email cím szerepel az Email mezőben." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Ez az email cím már regisztrálva lett ehhez a helyszínhez." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Az Email cím legalább 4 és legfeljebb 64 karakter hosszú lehet." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Az Email cím mező kitöltése kötelező, ha jelölőnégyzet ki lett pipálva." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Ez a rendszer csak egy országra terjed ki. Kérjük győződj meg arról, hogy a riasztási helyszín az országon belül van: %s!" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Nem jelöltél ki érvényes helyszínt a térképen." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Nem jelöltél ki érvényes helyszínt a térképen." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Nem jelöltél ki érvényes helyszínt a térképen." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Nem jelöltél ki érvényes helyszínt a térképen." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "A Mobiltelefonszám mezőben nem megfelelő a számjegyek darabszáma." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ez a mobiltelefonszám már regisztrálva lett ehhez a helyszínhez." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "A Mobiltelefonszám mezőben nem megfelelő a számok mennyisége. Kérjük, hogy az ország hívószámát is írd be. Magyarország: 36" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "A mobiltelefonszám vagy az email cím megadása szükséges - jelenleg csak az emailben történő értesítés funkció működik." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "A mobiltelefonszám megadása szükséges, ha a jelölőnégyzet ki van pipálva." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Még nincs beállítva érvényes hatókör a térképen." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Még nincs beállítva a hatókör a térképen." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Nem adtál meg elérhetőségi adatot a riasztásokhoz." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "A következő kategóriájú riasztásokra iratkoztál fel:" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Ezt a kódot már hitelesítettük!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "A megadott hitelesítési kód nem található. Kérjük, hogy ellenőrizd a kapott linket!" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "A kód hitelesítése megtörtént. Mostantól riasztás értesítőt küldünk, ha a megadott körzetben megfelelő kategóriájú bejelentés érkezik." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Annak érdekében, hogy megerősítsd a riasztás kérést, kérjük, látogass el a " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Visszatérés a Riasztások oldalra" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "A kért riasztás értesítő elkészült, visszaigazoló üzenetet küldtünk a megadott email címre." + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Kérjük, add meg az emailben kapott visszaigazoló kódot: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Az emailben történő riasztás kérés NINCS elmentve!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Az emailben történő értesítéskérés elmentve!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "A rendszer nem volt képes feldolgozni a megerősítési kérést!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Az SMS-ben történő riasztás kérés létrejött, visszaigazoló üzenetet küldtünk a megadott mobiltelefonszámra. " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Kérjük, add meg a visszaigazoló SMS kódot, ami a mobiltelefonodra érkezett: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "AZ SMS-ben történő riasztás kérés NINCS elmentve!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Az SMS-ben történő riasztás kérés elmentve!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "A rendszer még nem alkalmas a riasztás kérések feldolgozására." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Azért kaptad ezt a levelet, mert feliratkoztál a joszolgalat.hu weboldal riasztásaira. Ha a jövőben nem szeretnél riasztást kapni, kérjük kattints ide:" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "A jövőben nem fogsz több riasztást kapni." + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Nem volt sikeres a leiratkozás. Kérjük, ellenőrizd, hogy a megfelelő linket adtad-e meg." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "riasztás - megerősítés " + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Nem fogsz riasztást kapni ehhez a helyszínhez, amíg meg nem erősíted a kérést." diff --git a/application/i18n/po/po-hu_HU/auth.po b/application/i18n/po/po-hu_HU/auth.po new file mode 100644 index 0000000000..6bf43492fb --- /dev/null +++ b/application/i18n/po/po-hu_HU/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# orsime , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Érvénytelen email cím szerepel az email mezőben." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Már létezik ezzel az email címmel regisztrált felhasználó." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Az email cím legalább 4 és legfeljebb 64 karakter hosszú lehet." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Az email mezőt kötelező kitölteni." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "A név mezőben legalább 3 és legfeljebb 100 karakter szerepelhet." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "A név mező kitöltése kötelező." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "A felhasználónévben nem engedélyezett karakter szerepel." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "A jelszónak legalább 8 karakter hosszúnak kell lennie." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Kérjük ellenőrizd, hogy a helyes email címet és jelszót adtad-e meg." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Kérjük, ugyanazt a jelszót adja meg mindkét jelszó mezőben." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "A jelszó mezőt kötelező kitölteni." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "A jelszó mezőben csak betűk, számok, # és @ jelek, aláhúzás jel és kötőjel szerepelhet." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "A megadott jelszó érvénytelen. Kérjük ismételd meg a jelszó beírását!" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "A jelszónak legalább 8 karakter hosszúnak kell lennie." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Kérjük ellenőrizd, hogy a helyes email címet és jelszót adtad-e meg." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Kérjük, hogy ugyanazt a jelszót add meg mindkét jelszó mezőben." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "A jelszó mező kitöltése kötelező." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "A jelszó minimum 5 és maximum 16 karakter hosszú lehet." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Kérem, ugyanazt a jelszót adja meg mindkét mezőben." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "A jelszó mezőt kötelező kitölteni." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "A két jelszó mezőben megadott jelszónak egyeznie kell." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Érvénytelen e-mail címet adott meg?" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "A megadott email cím nem létezik a rendszerben." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Az e-mail mező kitöltése kötelező." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Érvénytelen formátumú felhasználótípus." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "A felhasználó típusa mezőben legalább 5 és maximum 30 karakter szerepelhet." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Legalább egy felhasználói típust be kell állítani." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Kérjük, hogy válassz az ADMIN vagy a USER felhasználói típusok közül." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Az admin felhasználótípus nem változtatható meg." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Ez a felhasználónév már foglalt." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "A felhasználónév legalább 2, maximum 16 karakter hosszú lehet." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "A felhasználónév mező kitöltése kötelező" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "A szuper admin felhasználótípus módosítása nem lehetséges." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-hu_HU/bug.po b/application/i18n/po/po-hu_HU/bug.po new file mode 100644 index 0000000000..c72195d984 --- /dev/null +++ b/application/i18n/po/po-hu_HU/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Kérem, adjon meg érvényes biztonsági kódot" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Kérem, adja meg a biztonsági kódot" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Érvénytelen e-mail címet adott meg." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Az e-mail mezőben legalább 4 és nem több mint 64 karakter szerepelhet." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Az e-mail megadása kötelező, ha a jelölőnégyzet ki van pipálva." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "A hiba mező kitöltése kötelező." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "A témának legalább 3 karakter hosszúnak kell lennie." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "A téma mező kitöltése kötelező." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "A névnek legalább 3 karakter hosszúnak kell lennie." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "A név mező kitöltése kötelező." diff --git a/application/i18n/po/po-hu_HU/category.po b/application/i18n/po/po-hu_HU/category.po new file mode 100644 index 0000000000..fdb17cf297 --- /dev/null +++ b/application/i18n/po/po-hu_HU/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# toeri , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "A szín mező legalább 6 karakter hosszú kell hogy legyen." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "A szín mező kitöltése szükséges." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "A leírás mező kitöltése szükséges." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "A képek feltöltési mérete 50kb-ra van korlátozva." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "A kép meő nem tartalmaz megfelelő formátumú képet. Az elfogadott formátumok: JPG, PNG és GIF" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Az kép mező nem tartalmaz érvényes fájlt." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "A cím mező legalább 3 karakter kell tartalmazzon és nem lehet hosszabb 80 karakternél." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "A cím mező kitöltése szükséges." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Nem oszthat alkategóriákra egy kategáriót amely már rendelkezik alkategóriákkal." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "A szülő kategória nem létezik." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "A szülő kategória mezőnek számnak kell lennie." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "A szülő kategória nem lehet speciális" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "A szülő kategória mező kitöltése szükséges." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "A kategória és a szülő kategória nem lehet ugyanaz." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Speciális kategóriák nem oszthatók alkategóriákra." diff --git a/application/i18n/po/po-hu_HU/comments.po b/application/i18n/po/po-hu_HU/comments.po new file mode 100644 index 0000000000..3cd93d0524 --- /dev/null +++ b/application/i18n/po/po-hu_HU/comments.po @@ -0,0 +1,63 @@ +# +# Translators: +# orsime , 2013 +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Kérjük, érvényes biztonsági kódot adj meg!" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Kérjük, add meg a biztonsági kódot!" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Rossz biztonsági kódot adtál meg." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "A Névnek legalább 3 karakter hosszúnak kell lennie." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "A Név mező kitöltése kötelező." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "A Leírás mező kitöltése kötelező." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Az Email mező nem tartalmaz érvényes email címet." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Az Email címnek minimum 4, maximum 64 karakter hosszúnak kell lennie." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Az Email mező kitöltése kötelező, ha a jelölőnégyzetet bejelölted." diff --git a/application/i18n/po/po-hu_HU/contact.po b/application/i18n/po/po-hu_HU/contact.po new file mode 100644 index 0000000000..8e7404cad7 --- /dev/null +++ b/application/i18n/po/po-hu_HU/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# orsime , 2013 +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Kérjük, érvényes biztonsági kódot adj meg!" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Kérjük, adj meg egy érvényes biztonsági kódot." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Kérjük, add meg a biztonsági kódot!" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Az email mező nem tartalmaz érvényes email címet." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Az email címnek minimum 4, maximum 64 karakter hosszúnak kell lennie." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Az email mezőt kötelező kitölteni, ha a jelölőnégyzet ki van pipálva." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Az üzenet mezőt kötelező kitölteni." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "A névnek legalább 3 karakter hosszúnak kell lennie." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "A név mezőt kötelező kitölteni." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "A témának legalább 3 karakter hosszúnak kell lennie." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "A téma mező kitöltése kötelező." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Hiba történt az üzenet elküldése közben." diff --git a/application/i18n/po/po-hu_HU/core.po b/application/i18n/po/po-hu_HU/core.po new file mode 100644 index 0000000000..929ec54a1d --- /dev/null +++ b/application/i18n/po/po-hu_HU/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# toeri , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "konfigurációs fájl" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "vezérlő" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "meghajtó" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "A %s meghajtónak a %s könyvtárhoz a %s interfészt kell implementálnia" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "A %s meghajtó a %s könyvtárhoz nem található." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Látogasson el a főoldalra vagy próbálja újra." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "A kérést nem sikerült teljesíteni." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "kiegészítő" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "A kért fájltípust, .%s, nem támogatja a nézethez tartozó konfigurációs fájl." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Érvénytelen folyamatot %s indított el a %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "A %s property fájl nem található a %s osztályban." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "könyvtár" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "A log könyvtár nem írható: %s'" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modell" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Az 'Ushahidi nem tudott controllert meghatározni a kérés feldolgozásához: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Kérem, adjon meg egy alapértelmezett elérési utat a következőn: config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "A kért oldal, %s, nem található." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Jelentem ezt az esetet az Ushahidinek" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "A kért %s, %s, nem található" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Veremlenyomat - stack trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "A betöltéshez igénybevett idő {execution_time} másodperc, felhasznált memória {memory_usage}. Az Ushahidi v%s által létrehozva." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Csak egy Ushahidi eset lehet egy oldalkérésen" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Nem talált %s: %s %s fájlban %s sorban" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "nézet" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Beküldés előtt a nézet fájlnevet kell meg kell adni" diff --git a/application/i18n/po/po-hu_HU/database.po b/application/i18n/po/po-hu_HU/database.po new file mode 100644 index 0000000000..17a27d99e9 --- /dev/null +++ b/application/i18n/po/po-hu_HU/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Adatbázis hiba: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "A keresett mutató \"%s\" nem található az adatbázisban. Kérem, ellenőrizze, hogy az Ushahidi megfelelő verzióját használja-e az adatbázishoz" diff --git a/application/i18n/po/po-hu_HU/datetime.po b/application/i18n/po/po-hu_HU/datetime.po new file mode 100644 index 0000000000..72d09e2a1b --- /dev/null +++ b/application/i18n/po/po-hu_HU/datetime.po @@ -0,0 +1,218 @@ +# +# Translators: +# orsime , 2013 +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "de." + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Pén" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Péntek" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Hét" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Hétfő" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "du." + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Szo" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Szombat" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Vas" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Vasárnap" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Csü" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Csütörtök" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Ked" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Kedd" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Sze" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Szerda" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Január" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Február" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Márc" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Március" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Ápr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Április" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Máj" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Május" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jún" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Június" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Júl" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Július" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Augusztus" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Szept" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Szeptember" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Október" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "December" diff --git a/application/i18n/po/po-hu_HU/feeds.po b/application/i18n/po/po-hu_HU/feeds.po new file mode 100644 index 0000000000..08b76913b1 --- /dev/null +++ b/application/i18n/po/po-hu_HU/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DÁTUM" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "A feed neve legalább 3 és maximum 70 karakter hosszú lehet." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Kérjük, adja meg a feed nevét." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Adja meg a feedek URL címét." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Kérjük, megfelelő formátumú URL-t használjon. Pl.: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "FORRÁS" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "CÍM" diff --git a/application/i18n/po/po-hu_HU/footer.po b/application/i18n/po/po-hu_HU/footer.po new file mode 100644 index 0000000000..d35169b7f4 --- /dev/null +++ b/application/i18n/po/po-hu_HU/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "a php5-curl nincs telepítve ebben a rendszerben" diff --git a/application/i18n/po/po-hu_HU/form.po b/application/i18n/po/po-hu_HU/form.po new file mode 100644 index 0000000000..7b5eea0f49 --- /dev/null +++ b/application/i18n/po/po-hu_HU/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "A mezőhöz megadott alapértelmezett érték érvénytelen." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "A mező neve legalább 3 és legfeljebb 200 karakterből állhat." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "'Kérem, egy 0 es 50 közötti számmal adja meg a mező magasságát." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Érvénytelen értéket adott meg a dátum mezőben." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Kérem, válasszon az IGEN vagy NEM közül a dátum mező engedélyezéséhez" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "A mező neve legalabb 3 és legfeljebb 200 karakterből állhat." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Kérem, adja meg a mező nevét." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "A megadott mező már létezik ezen az űrlapon. Kérem adjon meg egy másikat!" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Érvenytelen számot adott meg a kötelező mezőben" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Kérem, válasszon az IGEN vagy a NEM közül a kötelező mezőben" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Kérem, adjon meg egy érvényes mező típust." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Kérem, válassza ki a mező típusát." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Kérem, egy 0 és 300 közötti számmal határozza meg a mező szelességét" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Kérem, adja meg az űrlap leírását." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Az alapértelmezett űrlap nem törölhető." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Kérem, válassza ki, melyik űrlaphoz tartozik ez a mező." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Kérem, válassza ki, melyik űrlaphoz tartozik ez a mező." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Az űrlap neve legalább 3 és legfeljebb 200 karakterből állhat." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Kérem, adja meg az űrlap nevét." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Egy ilyen nevű űrlap már létezik. Kérem válasszon másikat!" diff --git a/application/i18n/po/po-hu_HU/imap.po b/application/i18n/po/po-hu_HU/imap.po new file mode 100644 index 0000000000..40eace5210 --- /dev/null +++ b/application/i18n/po/po-hu_HU/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAP folyam nem nyitható meg" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Az e-mail szolgáltatás nem támogatott" diff --git a/application/i18n/po/po-hu_HU/installer.po b/application/i18n/po/po-hu_HU/installer.po new file mode 100644 index 0000000000..70462f1a9f --- /dev/null +++ b/application/i18n/po/po-hu_HU/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# orsime , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Alap elérési útvonal" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Adatbázis" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Adatbázis kiszolgáló" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Ha az Ushaidit a saját számítógépén futtatja, akkor az lesz a ,,helyi gazdagép\". Ha az Ushahidit egy web szerverről futtatja, a kiszolgáló adatait a szerver szolgáltatójától kapja meg." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Adatbázis neve" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Az adatbázis neve, amelybe az Ushahidit be fogja kötni" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Még több információ ezen az oldalon,this article a wikiben olvashat részletesebben az adatbázisokról " + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Alapértelmezett nyelv (Helyi)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Minden Ushahidi telepítőhöz vannak beépített fordítások. Ön is hozzáadhatja a sajátját" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Tilt" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Engedélyez" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Az alábbi egy lista az eddig tapasztalt hibákról" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "A server helye, ahová az Ushahidi fájljait feltöltötte.Automatikusan lekértük ezt az információt, kértjük, ellenőrizze, hogy helyes-e. Ha a mező üres, ne aggódjon, ez azt jeletni, hogy az Ushahidi a legfelső könyvtárba lett installálva" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Befejezve" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Általános" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API kulcs" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Bárki kaphat API kulcsot. Kérjen sajátot" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Vissza" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "HALADÓ TELEPÍTÉS" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Az összes alapvető beállítást keresztül bonyolódott az 5-lépéses folyamat.Ez magában foglalja a szervert, térképet, oldal nevet és elérhetőséget " + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "ALAP TELEPÍTÉS" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Egyszerű és gyors.Minden, amire szükséged van az egy honlapon gyökér könyvtár, és az adatbázisa adatait. Válassza ezt az opciót, ha azt akarja, hogy gyorsan üzembe hozni, és minden mást később beállítani" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Folytatás" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Udvozoljuk az Ushahidi szerver telepítése folyamatánál.Válassza ki, melyik típusú telepítést kíván használni " + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Telepítés sikeres " + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "E-mail szerver" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Hostja " + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Mintái: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Jelszó " + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "A jelszó, amit általában használ a bejelentkezéshez az e-mailje fiokaba valo bejelentkezéshez használ" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Portja " + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Közös Portok: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Tipusa " + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP), illetve Post Office Protocol (POP). Mi a különbség? " + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Mail Server Neve " + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Ha használja a Gmail, Hotmail, Yahoo fiokot írja be a teljes e-mail címet felhasználónévkent " + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Térkép" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Térkép Szolgáltató" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi egyenlően működik a következő 4 térkép szolgáltatóval:Googl, Yahoo, Bing vagy Open Street Map Azt válaszd, amelyik a legrészletesebb fedést nyújtja a célterületre" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "További lépséek" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Jelszó" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Az adatbázis jelszó" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Előző" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Apach szerver:restart!" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Engedélyezd vagy tiltsad az SSL-t!" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Kapcsolódás során néhány levelező szerver megadja a lehetőségét a SSL használatának. Az SSL használata akkor javasolt, amikor extra biztonsági szintre van szükség." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Állítsd be az SMS szervered" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Az oldal email címe" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Riasztásokat küldő email cím" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Amikor a látogatók feliratkoznak riasztás értesítőre, akkor erről a címről fogják kapni. Ennek az email címnek nem kell megegyeznie az oldal email címével." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Az weboldal szintű email kommunikáció ezen a címen keresztül fog olyni." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Mi legyen a neve?" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Részletes leírás" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Az oldal kulcsszavai" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "A te kulcsszavas leírásod" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Az alábbi fájlok és mappák írhatóaknak kell lenniük a webszervered által" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Itt vannak az instrukciók, hogy hogyan állítsd be a fájl jogosultságait:

" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Mielőtt nekiveselkedsz, győződj meg arról, hogy a következő fájlok és mappák írhatóak a webszervered által. Ez a hozzáférési beállítások módosítását is jelentheti." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Az installációs folyamathoz, ezt a morzsányi információt tartsd a kezed ügyében." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Tábla előtag" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normális esetben nem kell a táblázat prefix-ét változtatni. Azonban ha több Ushahidi installációt szeretnél egy adatbázisról futtatni, megteheted a prefix átállításával itten." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Cím" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Belépéshez, ide menj:" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "A jelentési adatok feltöltése" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Felasználó neved" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Az adatbázis-felhasználó neved" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "használd az alábbi ....t" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Látogasd meg a kész weboldalad!" diff --git a/application/i18n/po/po-hu_HU/layer.po b/application/i18n/po/po-hu_HU/layer.po new file mode 100644 index 0000000000..5f73886987 --- /dev/null +++ b/application/i18n/po/po-hu_HU/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "A színezett mezőnek legalább 6 karaktert kell tartalmaznia." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "A színezett mező kitöltése kötelező. " + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "A fájlmező nem tartalmaz érvényes fájlt. Lehetséges formátumok: .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "A fájlmező nem tartalmaz érvényes fájlt." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "A névmezőnek legalább 3 legfeljebb 80 karakter hosszúnak kell lennie." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "A névmező kitöltése kötelező." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Vagy egy KML Url vagy egy fájl kötelező. " + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Nem adhat meg egyszerre KML fájlt és Url-t." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Kérem, adjon meg egy érvényes URL-t. Például: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-hu_HU/libraries.po b/application/i18n/po/po-hu_HU/libraries.po new file mode 100644 index 0000000000..b29ac5ad5d --- /dev/null +++ b/application/i18n/po/po-hu_HU/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Nem tudtam kapcsolódni az Akismet spamszűrő szerveréhez." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Az Akismet spamszűrő válasza nem elérhető." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Az API könyvtár: %s, mint a %s osztálya nem található. Ellenőrizze az API utasítás routing táblázatát." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Az Akismet API kulcsa érvénytelen." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Hiba történt a fopen küldési mód használata közben. Ellenőrizze, hogy a PHP-nak van-e OpenSSL támogatottsága, és hogy a PHP verzió jobb-e az 5.2-nél." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Unicode üzenete túl hosszú! (Jelenlegi hossz=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Kérem, adjon meg egy rendeltetési címet (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Kérem, adja meg a forráscímet (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Unicode üzenete túl hosszú! (Jelenlegi hossz=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "A küldési mód nem támogatott!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Az API könyvtár %s érvénytelen. Minden API könyvtárnak egy %s alosztálynak kell lennie." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "A %s könyvtár nem törölhető." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Hiba történt a következő kibontása közben: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "A legutóbbi ushahidi fájl letöltése sikertelen. HTTP státuszkód" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "A %s fájl nem másolható." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "A %s fájl nem törölhető." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi frissítés leírása" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "A %s letöltött ushahidi zip fájl nem írható." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s nem elérhető a RiverID osztályban." diff --git a/application/i18n/po/po-hu_HU/maintenance.po b/application/i18n/po/po-hu_HU/maintenance.po new file mode 100644 index 0000000000..ef1522088b --- /dev/null +++ b/application/i18n/po/po-hu_HU/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Sajnáljuk, az oldalunk karbantartás miatt nem elérhető. Kérjük, próbálja újra pár perc múlva!" diff --git a/application/i18n/po/po-hu_HU/message.po b/application/i18n/po/po-hu_HU/message.po new file mode 100644 index 0000000000..3ed65ee1b3 --- /dev/null +++ b/application/i18n/po/po-hu_HU/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# orsime , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Kérem, adjon meg érvényes biztonsági kódot." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Kérjük add meg a biztonsági kódot." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Az Email mező nem tartalmaz érvényes email címet." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Az Email cím legalább 4 és legfeljebb 64 karakter hosszúságú lehet." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Az Email mező kitöltése kötelező, ha a jelölőnégyzetet bejelölte." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "A Leírás mező kitöltése kötelező." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "A Névnek legalább 3 karakter hosszúnak kell lennie." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "A Név mező kitöltése kötelező." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "A Telefonszám mező érvénytelen." diff --git a/application/i18n/po/po-hu_HU/mhi.po b/application/i18n/po/po-hu_HU/mhi.po new file mode 100644 index 0000000000..6f49b0b37d --- /dev/null +++ b/application/i18n/po/po-hu_HU/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Kérem, adjon meg érvényes biztonsági kódot." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Kérem, adja meg a biztonsági kódot." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Az email-mező nem tartalmaz érvényes email-címet." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Kérem, adjon meg érvényes email-címet." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Az üzenetmező kitöltése kötelező." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "A tárgymezőnek legalább 3 karakter hosszúnak kell lennie." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "A tárgymező kitöltése kötelező." diff --git a/application/i18n/po/po-hu_HU/notifications.po b/application/i18n/po/po-hu_HU/notifications.po new file mode 100644 index 0000000000..0b04d04d4f --- /dev/null +++ b/application/i18n/po/po-hu_HU/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# orsime , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Ezt az üzenetet a weboldaladról küldték." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Adminisztrátor bejelentkezés" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Új fejlemény érkezett a weboldaladra a következő bejelentéshez:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Új fejlemény" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Új email üzenet érkezett a weboldaladra." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Új email üzenet" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Új bejelentés érkezett a weboldaladra." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Új bejelentés" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Új SMS üzenet érkezett a weboldaladra." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Új SMS üzenet" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Új riasztás érkezett" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Új riasztás!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Új privát üzenetet kaptál" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Új privát üzenet" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Válaszoláshoz kérjük kattints ide:" diff --git a/application/i18n/po/po-hu_HU/page.po b/application/i18n/po/po-hu_HU/page.po new file mode 100644 index 0000000000..7a1ed2b1f5 --- /dev/null +++ b/application/i18n/po/po-hu_HU/page.po @@ -0,0 +1,38 @@ +# +# Translators: +# Peter K. , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Kérjük adja meg a Weblap Címét!" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "A weblap címe legalább 3 és legfeljebb 150 karakterből állhat." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Kérjük adja meg a Fül nevét!" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Kérjük adja mag az oldal leírását!" diff --git a/application/i18n/po/po-hu_HU/permissions.po b/application/i18n/po/po-hu_HU/permissions.po new file mode 100644 index 0000000000..69a6257dcb --- /dev/null +++ b/application/i18n/po/po-hu_HU/permissions.po @@ -0,0 +1,114 @@ +# +# Translators: +# Dragon, Gyorgy , 2013 +# orsime , 2013 +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Bejelentések megtekintése" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Bejelentések létrehozása/szerkesztése/törlése" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Bejelentések jóváhagyása" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Bejelentések ellenőrzése" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Bejelentésekhez fűzött megjegyzések kezelése" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Bejelentések letöltése" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Bejelentések feltöltése" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Üzenetek kezelése" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Üzenet bejelentők kezelése" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Staisztika megtekintése" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Beállítások módosítása" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Panelek kezelése" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Felhasználók kezelése" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Szerepkörök kezelése" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Hozzáférés a Rendszergazda felülethez" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Hozzáférés a Tagok felülethez" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-hu_HU/private_message.po b/application/i18n/po/po-hu_HU/private_message.po new file mode 100644 index 0000000000..241f6cdd11 --- /dev/null +++ b/application/i18n/po/po-hu_HU/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Szülő azonosító csak szám lehet" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "A To /címzett/ mező kitöltése kötelező" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "A felhasználó, akinek üzenetet próbál küldeni, nem létezik" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "A subject /tárgy/ mező kitöltése kötelező" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "A subjet /tágy/ mező hossza 3 és 150 katakter közé eshet" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "A message /üzenet/ mező kitöltése kötelező" diff --git a/application/i18n/po/po-hu_HU/report.po b/application/i18n/po/po-hu_HU/report.po new file mode 100644 index 0000000000..712dd785c0 --- /dev/null +++ b/application/i18n/po/po-hu_HU/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# orsime , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Hiba a bejelentésben!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Ez a rendszer csak egy országgal kapcsolatos bejelentéseket tartalmazhat. Kérjük ellenőrizd, hogy a bejelentés helyszíne a következő ország területén legyen: %s" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Kérjük, létező elemet válassz a letöltéshez." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Kérjük, létező elemet válassz a letöltéshez." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Kérjük válaszd ki a \"Jóváhagyásra vár\", a \"Jóváhagyott\" vagy mindkét típusú bejelentéseket." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Kérjük válaszd ki a \"Jóváhagyásra vár\", a \"Jóváhagyott\" vagy mindkét típusú bejelentéseket." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Kérjük válaszd ki az \"Ellenőrzésre vár\", az \"Ellenőrzött\" vagy mindkét típusú bejelentéseket." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Kérjük válaszd ki az \"Ellenőrzésre vár\", az \"Ellenőrzött\" vagy mindkét típusú bejelentéseket." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Kérjük, válassz érvényes bejelentés típust a letöltéshez." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Kérjük, válassz érvényes bejelentés típust a letöltéshez." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Kérjük, válassz érvényes bejelentés típust a letöltéshez." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Ki kell választanod egy letöltési formátumot. Kérjük, válassz a CSV vagy az XML formátum közül!" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "A belelentések letöltéséhez válassz ki egy érvényes formátumot! " + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "A \"-tól\" dátummező érvényelen dátumot tartalmaz." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Kérjük, érvényes dátumot adj meg a \"-tól\" mezőben. Ez nem lehet későbbi a mai dátumnál." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Kérjük, valós értéket adj meg a bejelentés jóváhagyásához!" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Kérjük, valós értéket adj meg a bejelentés jóváhagyásához!" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "A de./du. mező nem tartalmaz érvényes értéket." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Nincs érvényes kategória kiválasztva." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "A kategória kiválasztása kötelező!" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "A dátummező érvénytelen dátumot tartalmaz." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "A dátummező érvénytelen dátumot tartalmaz." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "A Dátum mező kitöltése kötelező." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "A \"Leírás\" mező kitöltése kötelező." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Az időpontnál az óra mező nem érvényes értéket tartalmaz." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Az időpontnál az óra megadása kötelező." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Kérjük, valós értéket adj meg a bejelentés valószínűsítéséhez." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Kérjük, valós értéket adj meg a bejelentés valószínűsítéséhez." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Az időpontnál a perc mező nem tartalmaz valós értéket." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Az időpontnál a perc megadása kötelező." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "A Hírforrás link mezőben megadott link nem érvényes." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Kérjük, vedd figyelembe, hogy a feltöltött képek összmérete 2 MB-ig terjedhet." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "A Kép feltöltése mezőben megadott kép nem érvényes. Elfogadott képfájl kiterjesztések: .jpg, .png és .gif." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "A Kép feltöltése mező nem tartalmaz valós fájlt." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Kérem, adjon meg valós értéket a forrás megbízhatósághoz." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Kérem, adjon meg valós értéket a forrás megbízhatósághoz." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "A Bejelentés címe legalább 3, legfeljebb 200 karakter lehet." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "A \"Bejelentés címe\" mező kitöltése kötelező." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Kérjük, valós értéket adj meg a bejelentés megerősítéséhez!" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Kérjük, valós értéket adj meg a bejelentés megerősítéséhez!" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "A Videó feltöltése mezőben megadott link nem érvényes." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "A földrajzi szélességi fok mező nem tartalmaz valós értéket." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "A földrajzi szélességi fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "A helyzet mező helytelen értéket tartalmaz." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Erről a bejelentésről már készült fordítás erre a nyelvre." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "A helyzet mező helytelen értéket tartalmaz." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Az eredeti bejelentés és a fordítás nyelve megegyezik." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "A helyszín meghatározása kötelező." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "A \"Helyszín pontosítása\" mező legalább 3, legfeljebb 200 karaktert tartalmazhat." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "A \"Helyszín pontosítása\" mező kitöltése kötelező." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "A földrajzi hosszúsági fok mező nem tartalmaz valós értéket." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "A földrajzi hosszúsági fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Az Email cím mező nem tartalmaz érvényes email címet." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Az Email cím mező legalább 4, legfeljebb 64 karaktert tartalmazhat." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "A Keresztnév mező legalább 3, legfeljebb 100 karaktert tartalmazhat." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "A Vezetéknév mező legalább 2, legfeljebb 100 karaktert tartalmazhat." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Az \"-ig\" dátummező nem tartalmaz érvényes dátumot." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Kérjük, adj meg egy érvényes dátumot az \"-ig\" mezőben. Ez nem lehet későbbi a mai dátumnál." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "A \"-tól\" mezőben megadott dátum nem lehet későbbi, mint az \"-ig\" mezőben megadott dátum." diff --git a/application/i18n/po/po-hu_HU/reporters.po b/application/i18n/po/po-hu_HU/reporters.po new file mode 100644 index 0000000000..1b2dc2025a --- /dev/null +++ b/application/i18n/po/po-hu_HU/reporters.po @@ -0,0 +1,73 @@ +# +# Translators: +# orsime , 2013 +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "A földrajzi szélesség mező nem tartalmaz valós szélességi fokot." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "A földrajzi szélességi fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "A Bejelentő szint mező nem tartalmaz valós értéket." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "A Bejelentő szint mező nem tartalmaz valós értéket." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "A helyzetmegnevezés mező legalább 3 legfeljebb 200 karaktert tartalmazhat." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "A \"Helyszín pontosítása\" mező kitöltése kötelező." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "A földrajzi hosszúság mező nem tartalmaz érvényes hosszúsági fokot." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "A földrajzi hosszúsági fok megadása kötelező. A pontos helyszínt a térképen tudod megjelölni." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Érvénytelen Bejelentő." + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Érvénytelen Bejelentő." diff --git a/application/i18n/po/po-hu_HU/reports.po b/application/i18n/po/po-hu_HU/reports.po new file mode 100644 index 0000000000..9c06352422 --- /dev/null +++ b/application/i18n/po/po-hu_HU/reports.po @@ -0,0 +1,54 @@ +# +# Translators: +# orsime , 2013 +# toeri , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Kérem ellenőrizze, hogy kiválasztott-e egy elemet" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Kérem ellenőrizze, hogy kiválasztott-e egy elemet" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Jóváhagyás előtt a bejelentéseket kategorizálni kell" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Önnek nincs engedélye a művelet elvégzésére" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Ki kell jelölnie egy fájlt a feltöltéshez" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "A feltölteni kívánt fájl formátuma .csv vagy .xml lehet" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "A feltöltés mező úgy tűnik, nem tartalmaz érvényes fájlnevet" diff --git a/application/i18n/po/po-hu_HU/roles.po b/application/i18n/po/po-hu_HU/roles.po new file mode 100644 index 0000000000..31cad01c26 --- /dev/null +++ b/application/i18n/po/po-hu_HU/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Peter K. , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "A Leírás mező legalább 3 legfeljebb 100 karaktert tartalmazhat." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "A Leírás mező kitöltése kötelező." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "A névmező csak betűket és számokat tartalmazhat." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "A névmező legalább 2 legfeljebb 30 karaktert tartalmazhat." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin Szerep nem módosítható." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "A névmező kitöltése kötelező." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "A Hozzáférési Szint mező értéke egy 0 és 100 közötti szám." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "A Hozzáférési Szint mező értéke egy 0 és 100 közötti szám." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "A Hozzáférési Szint mező értéke egy 0 és 100 közötti szám." diff --git a/application/i18n/po/po-hu_HU/settings.po b/application/i18n/po/po-hu_HU/settings.po new file mode 100644 index 0000000000..774215204e --- /dev/null +++ b/application/i18n/po/po-hu_HU/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# orsime , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "A megjegyzések engedélyezése mezőben érvénytelen értéket adott meg." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "A megjegyzések engedélyezése mezőt kötelező kitölteni." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "A tartalom mezőben érvénytelen értéket adott meg." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "A tartalom mező kitöltése kötelező." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "A jelentések engedélyezése mezőben érvénytelen értéket adott meg." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "A jelentések engedélyezése mezőt kötelező kitölteni." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "A statisztika megosztása mezőben érvénytelen értéket adott meg." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "A statisztika megosztása mező kitöltése kötelező." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Az Akismet mezőben érvénytelen értéket adott meg." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Az Akismet mezőben érvénytelen értéket adott meg." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "A cache oldalak mező kitöltése kötelez" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "A cache oldalak mező nem érvényes értéket tartalmaz?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "A gyorsítótár élettartam mezője nem tartalmaz megfelelő értéket" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "A gyorsítótár élettartam mezőjének kitöltése kötelező" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Úgy tűnik, az Ön szervere nincs beállítva arra, hogy a clean URL-eket kezelje. Meg kell változtatnia a szerver konfigurációját mielőtt engedélyezi a clean URL-eket. További információ arról, hogyan engedélyezze a clean URL-eket ebben a fórum posztban található (angolul)." + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Ez az opció lehetővé teszi, hogy \"clean\" URL-ről lehessen elérni az Ushahidit, \"index.php\" kiterjesztés nélkül a honlapcímben." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Clean URL-ek engedélyezése" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Clean URL-ek" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "A Clickatell API számának legalább 20 karakter hosszúnak kell lennie." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "A Clickatell API szám megadása kötelező." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "A Clickatell jelszavának legalább 5 és maximum 50 karakter hosszúnak kell lennie." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Clickatell jelszó megadása kötelező." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "A Clickatell felhasználónév nem lehet hosszabb 50 karakternél." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Clickatell felhasználónév megadása kötelező." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Térkép beállítás" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Alapértelmezett helyszín" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "A szín betöltés mezőben érvénytelen értéket adott meg." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "A szín mező nem lehet 6 karakternél hosszabb." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "A szín mező kitöltése kötelező." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Alapértelmezett térképnézet" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nézet alapértelmezett magassága" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Városnevek behúzása a Geonamesről." + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Az mail szerver port mezőben túl hosszú értéket adott meg." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "A mail szerver port mezőben csak számok szerepelhetnek." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "A mail szerver jelszó legalább 5 és maximum 50 karakter hosszú lehet." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "A mail szerverhez jelszó megadása kötelező." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Az mail szerver port mezőben túl hosszú értéket adott meg." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "A mail szerver port mezőben csak számok szerepelhetnek." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Az mail szerver port mezőben túl hosszú értéket adott meg." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Mail szerver típusa mező kitöltése kötelező." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "A mail szerverhez megadott felhasználónév nem lehet hosszabb 50 karakternél." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "A mail szerver felhasználónevének megadása kötelező." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "A Google Analyticshez megadott értéknek érvényes Web Property azonosító számot kell tartalmaznia a következő formátumban: UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Az elemem per oldal (Frontend) mező kitöltése szükséges" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Az elemem per oldal (Admin) mező kitöltése szükséges" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoom szint" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Válassz egy térkép szogálatatót" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Üsd be az API kulcsot" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Szerezz egy API kulcsot" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Térkép szolgáltató" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Térkép beállításai" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Válassz ki az országot" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Klikelj és húzd térképet hogy a pontos helyszínt beállítsad" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Klaszter jelentések a térképen" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Felhasználók megjegyzésének engedélyezése a felajánlásokhoz" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Legyen RSS hírcsatorna a website-on" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Felhasználók számára felajánlások beküldésének engedélyezése" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet kulcs" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Oldal cache" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Oldal cache élettartama" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Alapszín az összes kategóriára" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "A kapcsolati oldal megjelenítése" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "a \"Segítség\" oldal megjelenítése" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Riasztás email címe" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "hogy emailben értesítést kaphass a történtekről,kérlek állítsd be a postafiókodat." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Az oldal kapcsolattartójának email címe" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analitics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Elemek per oldal - Front end" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Elemek per oldal - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica oldal" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Az oldal nyelve" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Az oldal üzenet" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Az oldal neve" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Statisztikák engedélyezése (a szerveren, ahol ez az oldal fut)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Oldal tagline-ja" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Website beállításai" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter kereső kifejezések" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtag-ek - vesszővel elválasztva" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Az oldal email címe nem éppen érvényes. Valamit elrontottál?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Az email cím legalább 4 karakter és rövidebb mint 100 karakter hosszú legyen" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Ki kell tölteni a weboldal címe mezőt - legalább 3 karaktert írjál, de ne többet mint 50. " + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Az oldal címe mező kitöltése kötelező." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Ki kell tölteni a tagline mezőt - legalább 3 karaktert írjál, de ne többet mint 50. " + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "A tagline mező kitöltése kötelező" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "A Clickatell API száma" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Nézd meg a Clickatell egyenleged" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Egyenleg betöltése" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "A Clikatell jelszó" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Jelentkezz be a Clicatell szolgáltatásba úgy, hogy ide kattintasz" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Add meg a Clickatell hozzáférési adataidat" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "A Clicatell felhasználói neved" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Add meg a Frontline SMS-ben használatos telefonszámod(telefonszámaidat) a következő mezőkben" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "A Frontline SMS használata" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Global SMS gateway használata" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS beállítási opciók" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "A telefon '1' mező csak számokat tartalmazhat." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "A telefon '2' mező túl hosszú." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "A telefon '2' mező csak számokat tartalmazhat." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "A telefon '3' mező túl hosszú." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "A telefon '3' mező csak számokat tartalmazhat." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-hu_HU/sharing.po b/application/i18n/po/po-hu_HU/sharing.po new file mode 100644 index 0000000000..04b02effc5 --- /dev/null +++ b/application/i18n/po/po-hu_HU/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Belépés dátuma" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Bevitel dátuma" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Utolsó belépés" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "A szín mezőben legalább hat karakternek kell lennie." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "A szín mezőt kötelező kitölteni." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "A megosztó neve érvénytelen." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Kötelező megosztáshoz nevet megadni." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Ez az URL már létezik." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Az URL érvénytelen." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "URL megadása kötelező." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Az URL érvénytelen." diff --git a/application/i18n/po/po-hu_HU/stats.po b/application/i18n/po/po-hu_HU/stats.po new file mode 100644 index 0000000000..8672a0c155 --- /dev/null +++ b/application/i18n/po/po-hu_HU/stats.po @@ -0,0 +1,200 @@ +# +# Translators: +# Attila Kalmár , 2013 +# orsime , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-25 06:03+0000\n" +"Last-Translator: Attila Kalmár \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Jóváhagyott" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategóriák" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Kategória szerinti bontás" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Ez az ábra a bejelentések számának időben történő változását mutatja kategóriánkénti bontásban. Balról jobbra gördítve összehasonlíthatod a különböző kategóriák megoszlásának változását is. Ha az egeret az ábrák fölé viszed, még részletesebb információt kaphatsz." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Válassz egy időtartamot " + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Országok" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Ország" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Ország szerinti bontás" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Hello, ez a statisztikai szekció. Általános leírás a későbbiekben lesz. Most böngészd az alkategóriák linkjeit fent!" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Hiba" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Magyarázat" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Látogatók összegzése" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Jelmagyarázat" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Oldalletöltések" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Az összes oldalmegtekintés száma." + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Bejelentések" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Bejelentések kategóriák szerinti megoszlása" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Bejelentések" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Bejelentések státusz szerinti megoszlása" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Bejelentések" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statisztika nincs beállítva" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 hónap" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 hónap" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 hónap" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Teljes időszak" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Nem jóváhagyott" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Egyedi látogatók" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Az oldalra látogató egyedi látogatók száma. Az egyedi látogatókat cookie-k segítségével különítjük el és határozzuk meg a számukat. Azokat a látogatókat akiknél nincs cookie engedélyezve, az IP cím, a felbontás, a böngésző és az operációs rendszer alapján különítjük el egymástól." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Nem ellenőrzött" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Ellenőrzött" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Látogatások" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Látogatások" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Új látogatásnak számít, ha ugyanazon látogató két oldalletöltése között legalább 30 perc telt el." diff --git a/application/i18n/po/po-hu_HU/tooltips.po b/application/i18n/po/po-hu_HU/tooltips.po new file mode 100644 index 0000000000..47a458e5a1 --- /dev/null +++ b/application/i18n/po/po-hu_HU/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# orsime , 2013 +# Peter K. , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Így adhatja hozzá a bejelentést újabb kategóriákhoz. Ha itt kiválasztja az \"1-es Kategóriát\" és a bejelentés már a \"2-es Kategóriába\" van sorolva, ezután mindkét kategóriához hozzá lesz rendelve. " + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "A bejelentés jóváhagyása vagy elvetése. A jóváhagyott bejelentéseket minden látogató látni fogja." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Itt adhat érmet a felhasználónak, ha az teljesíti a feltételt. Válassza ki az érmet!" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Ez egy időszak hossza órákban és/vagy percekben kifejezve két időpont között 24 órás formátumban. Ha egy korábbi időpontot ír a második mezőbe, az helyet cserél az első mező tartalmával. Ezek a dátumok egyetlen napon belüli időpontokra kell, hogy vonatkozzanak. Sőt, ezt az időt az Ön által a portálra beállított idővel vetjük össze, amit a portál Beállítások-nál megadott és nem feltétlenül a felhasználó időzónájával. Ha nem kíván élni ezzel a lehetőséggel, hagyja meg ezt a beállítást: 00:00-tól 00:00-ig." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Ha azt szeretné, hogy csak egy bizonyos kategória esetén aktiválódjanak triggerek, azt itt tudja beállítani. Ilyen esetben a trigger csak akkor aktiválódik, ha ez a kategória egymagában jelenik meg. Például ha az 1-es kategóriát és a 2-es kategóriát választja itt ki és a bejelentéskor a 2-es és 3-as kategóriákat választja ki a felhasználó, teljesül a feltétel." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Ha ezek az intézkedések a hétnek csak meghatározott napjain történnek, az itt tudja beállítani. Ne feledje, hogy a napokat a portálra beállított időzóna szerint veszi majd figyelembe az eszköz. Tartsa lenyomva a Shift, Command (Cmd), vagy kontroll (Ctrl) gombokat több nap kiválasztásához." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "A kiküldendő e-mail szövege." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "A kiküldendő e-mail tárgya." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "A feed beállítása lehet \"minden feed\" vagy egy \"konkrét feed\". Ha csak konkrét feed-ek esetén szertné aktiválni a triggert, azokat itt állíthatja be. Egyébként a \"minden feed\" beállítás javasolt." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "A figyelt Twitter-ező felhasználóneve (vagy több felhasználónév vesszővel elválasztva). Ha csak bizonyos felhasználók Twitter üzeneteit szeretné triggernek beállítani, itt sorolhatja fel a Twitteres felhasználónevüket (elhagyva a @ jelet)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Ezt a részt szabadon lehet hagyni, ha nem szeretné a kulcsszavakkal összevetni. Ha beír ide szavakat, azokat vesszővel (,) kell elválasztani. Például ha szeretne egy triggert beállítani arra az esetre, ha valaki a \"szeretet\" vagy \"béke\" szavakat használja a bejegyzésében, a kulcsszó mezőbe ezt kell írnia: \"szeretet, béke\"." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Itt két lehetőség közül válaszhat: \"bárhol\" vagy \"konkrét hely\". Ha konkrét helyet választ, kérem jelölje négyzettel a térképen azt a területet, amit ez alatt ért. Például ha Brazíliára vonatkozik a bejelentése, válassza a \"konkrét hely\" lehetőséget és jelölje ki Brazília területét a négyzettel. Ezek a négyzetek tetszőlegesen kicsik vagy nagyok lehenek. Egyszerre több területet is bejelölhet." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Ez a jellemző aktiválja a triggert az N-edik alkalommal a teljes összevont felhasználói körben vagy egy konkrét felhasználó esetén. Ha üresen hagyja, nem vizsgáljuk ezt a feltételt." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Ez a bejelentés címének alapbeállítása." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Haz összes fenti feltétel teljesült, a trigger kiváltja a válaszeseményt. A válaszesemény bármi lehet a bejelentés jóváhagyásától a felhasználónak küldött e-mail üzenetig. Jelöljön meg itt egy válaszeseményt, hogy az arra jellemző beállítási lehetőségek megjelenjenek." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Ha a \"Felhasználó Értesítése\" lehetőséget választja, az illető felhasználó e-mail értesítést kap. Ha a szövegdoboz melletti választógombot bejelöli, meg tudja adni az értesítendő e-mail címet. Ez akkor lehet hasznos, ha arra állít be triggereket, hogy értesítést küldjenek bizonyos embereknek, ha a térkép bizonyos részeire bejelentések, bejelentkezések érkeznek vagy más aktivitást tapasztal a rendszer." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Itt több napot is kiválaszthat. A dátumokat a portálra beállított időzóna határozza meg. Tetszőleges dátum beállításához ne válasszon dátumot." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "A kiváltó esemény (trigger) az alapja a Kiváltó Esemény beállításoknak. Itt határozhatja meg, hogy mi történjen, amikor valaki bejelentést tesz, bejelentkezik a portálra, stb. Leszűrheti a válaszlahetőségeket, miután kiválasztott egy trigger eseményt." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "A felhasználó lehet \"bárki\" vagy egy konkrét felhasználó. Ha csak bizonyos felhasználóknak engedné aktiválni a triggert, ezeket a felhasználókat itt válaszhatja ki. Egyébként a \"bárki\" beállítást érdemes választani, hiszen a legtöbb trigger minden felhasználóra értelmezhető, aki a rendszerrel kapcsolatba lép." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "A bejelentés ellenőrzöttnek jelölése." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "A Profil oldalak ezen a portálon a Gravatar-t használják. A fényképére kattintva, a Gravatar oldalra irányítjuk át, ahol módosíthatja a profilképét." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "A felsorolás elemeit vesszővel válassza el! pl. érték1, érték2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "A felsorolás elemeit vesszővel válassza el! pl. érték1, érték2. Ha szeretne alapbeállított értéket meghatározni, a felsorolást zárja dupla kettősponttal :: pl, ha az érték3-at szeretné alapbeállításnak, ez lesz a felsorolás: érték1, érték2, érték3::érték3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "A kiválasztott elemeket vesszővel válassza el! pl. elem1, elem2." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Kezdjen gépelni, a listaelemek megjelenítéséhez." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Személyes üzenet tárgya" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Személyes üzenet" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Itt válaszhat színt, ami a nyilvános profilképe alatt fog megjelenni. Ugyanez a szín jelzi majd a térképen az Ön bejenentkezéseit." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Az Ön e-mail címe" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Ez az egyik név, amellyel Ön a portálon megjelenik. Ne feledje, hogy ez a név nyilvános lesz!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Ha beállítja, ez lesz az új jelszava. Hagyja üresen, ha a továbbra is a jelenlegi jelszavát szeretné használni." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Ez egy kötelező elem új felhasználó létrehozásához és ez lesz a felhasználó jelszava. Érdemes emlékeztetni az új felhasználót, hogy az első bejelentkezéskor változtassa meg a jelszavát." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Ha az IGEN-t választod, akkor emailben riasztást kapsz a joszolgalat.hu-ra érkező új bejelentésekről és fejleményekről (csak amelyek megfelelnek a megjelölt körzetnek és kategóriának)." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "A jelenlegi jelszó. Kötelező beírni a jelszót, nehogy illetéktelenek módosítsák a személyes beállításait." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Az ön Adatlapját bárki megtekintheti az interneten, ha ezt a beállítást választja. Ez egyébként a legegyszerűbb módja, hogy az Ön által küldött bejelentéseket, bejelentkezéseket, érmeket, stb egy oldalon megmutassa a külvilágnak." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Ezen a címen található a nyilvános Adatlapja." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "A felhasználónevet nem lehet módosítani." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "A Hozzáférési Szintek korlátozzák a hozzáférést a kérdőív mezőinek adataihoz. Magasabb hozzáférési szintek elérik az alacsonyabbakat. A Superadmin a legmagasabb hozzáférési szint (100). A nyilvános adatok jelentik a legalacsonyabb szintet (0). A tagok hozzáférési szintje 10-es. Az Admin hozzáférési szint 90-es alapbeállítással jön létre." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Erre az email címre fogjuk a küldeni a riasztásokat." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Itt engedélyezheti, hogy a felhasználók a weben feliratkozzanak a riasztásokra." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Ez teszi hehetővé, hogy hasonló bejelentések egyetlen pontként jelenjenek meg a térképen." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Itt engedélyezheti, hogy a felhasználók megjegyzésben reagálhassanak a főoldalon megjelenő bejelentésekre." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Itt engedélyezheti az RSS csatornák megjelenítését a főoldalon." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Itt engedélyezheti, hogy a felhasználók a web-es kérdőíven keresztül információt adjanak." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Alapbeállítás: hány rekordot engedjen letölteni a rendszer egy API request-ben?" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum hány rekordot engedjen letölteni a rendszer egy API request-ben?" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum hány API request-et teljesítsen a rendszer IP címenként?" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Az oldalfejléc (banner) a portál nyitóoldalának tetején jelenik meg, ha a használt oldalkép (theme) megengedi. Az oldalfejléc javasolt mérete az oldalkép méretétől függ. Ne feledje, hogy ez az oldal címe és tagline-ja HELYETT jelenik meg az oldal tetején!" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Hány blokk oszlop jelenjen meg soronként?" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Itt lehet engedélyezni és tiltani a gyorsítótár használatát. Engedélyezése esetén a lapok gyorsabban fognak betöltődni a böngészőbe, ami csökkenti a válaszidőt. Nagyforgalmú oldalakon, ajánlott az Engedélyezni. **Figyelem: a lapok a gyorsító tárban az alábbi beállítás szerint frissülnek. (gyorsítótár időtartam)" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Állítsa be a gyorsítótár időtartamát" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Ez a beállítás engedélyezi a bejelentkezéseket a portálon. A bejelentkezés egy egyszerűsített bejelentés, ami moderálás nélkül kerül a honlapra és emiatt meghatározott beállításokat feltételez a portálon. Amikor ezt engedélyezi, ellenőrizze, hogy az időzóna beállítás UTC és az oldalkép (theme) támogatja a bejelentkezéseket. Amint ezt engedélyezi, csak bejelentkezéses oldalképek lesznek elérhetők a kiegészítők/oldalképek beállítása oldalon." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Egy meghatározott helyre beállítja a térképet" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Egyetlen színkód kiválasztása az összes kategóriára az oldalon." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Egyetlen ikon kiválasztása az összes kategóriára az oldalon." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Ebben az országban telepítette az alkalmazást" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "A Kapcsolat fül be- és kikapcsolása a főoldalon." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "'Hogyan segíthet' fül be-, ill. kikapcsolása a főoldalon." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "A főoldalon megjelenő beJelentések száma oldalanként." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Az admin felületen megjelenő bejelentések Jelentések száma oldalanként." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Ez a bejövő üzenetek központja." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Ez szinkronizálja a központba érkezett üzeneteket az Ushahidi platformmal." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Telefonszámok, amelyekre az SMS-ek érkeznek." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Ez követi nyomon az oldalra látogatókat. Itt láthatók a részletes látogatói statisztikák." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Itt állíthatja be az oldalon használt nyelvet." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Ha ezt a lehetőséget igenre állítja, minden egyes felhasználót jóvá kell hagyni, aki regisztrál az oldalra és szerepekhez rendelni őket. (pl. Felhasználó, Admin, Superadmin)" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Itt lehet beállítani, melyik térképet használja az oldal." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Ez mutatja az időrendet a bejelentések beérkezésének dátuma és időpontja szerint." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Ha ez az érték igazra van állítva, a portált priváttá teszi, azaz csak a regisztrációt követően engedélyezett felhasználók számára lesz hozzáférhető." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "A felhasználók e-mailben kapnak egy igazoló linket, és első alkalommal csak azon keresztül léphetnek a portálra, ha ez a beállítás igenre van állítva. Ha már vannak a portálnak regisztrált felhasználói amikor ez a beállítás igenre változik, ezeknek a felhasználóknak is igazolniuk kell az e-mail címük valódiságát azzal, hogy a kapott linkre kattintanak mielőtt tovább használhatják a portált. " + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Itt tárolja a rendszer az e-maileket" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Ez a jelszava annak az e-mail címnek, ahova a bejelentések érkeznek." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Ez a beállítás kötelező a e-mail címre érkező bejövő kapcsolatok fogadásához." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Ez kötelező beállítás a biztonságos adatkapcsolat javításához." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Ez kötelező beállítás a kiszolgáló szerverre érkező e-mailek letöltéséhez." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Erre az e-mail címre érkeznek a bejelentések." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "A nézettségi statisztikákat az Ushahidi szerverei kontrollálják. Ennek a beállításnak az engedélyezése a nézettségi statisztikák közvetlenül megjelennek az admin oldalon. Ha ez a beállítás nincs engedélyezve, a rendszer nem gyűjt statisztikákat és erre az időre később sem lesznek kinyerhetők a forgalmi statisztikák, amíg ez a beállítás ki van kapcsolva." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Engedélyezi -e, hogy más kiszolgálók újrapublikálják az Ön és a felhasználók által létrehozott szöveget, videót, és/vagy design elemekei? Olvassa el a https://creativecommons.org/choose/ oldalt, ha pontosabban szeretné szabályozni, mit tehetnek mások az Önök munkájának eredményeivel. Fontos, hogy pontosan meghatározza, az oldal mely elemeit kívánja licenccel védeni!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Erre az e-mail címre érkeznek az e-mailes bejelentések és üzenetek a Kapcsolat adatlapról." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Ez a szöveg jelenik majd meg a honlapon a térkpé fölött. Érdemes itt fontos információt közölni a látogatókkal. Ha kitörli ezt az üzenetet, a szövegdoboz is eltűnik a honlapról." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Ez az oldalnév jelenik meg a főoldal tetején" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Ez az üzenetet látja a felhasználó, a \"bejelentés elküldése\" oldalon. Itt lehet jognyilatkozatot vagy további tájékoztatást adni a bejelentéseket kezelő látogatóknak." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Néhány mondatban írja le, miről szól ez az oldal." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Ezt az időzónát használja az oldal. Ez a beállítás befolyásol minden eseményt, ami dátumot és időt használ, ezen kívül ez adja a bejelentések alapbeállított időbélyegzőjét az oldal front és back endjén egyaránt." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Itt állíthatja be a twitter hash-tagjét." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-hu_HU/ui_admin.po b/application/i18n/po/po-hu_HU/ui_admin.po new file mode 100644 index 0000000000..5f6c0f5537 --- /dev/null +++ b/application/i18n/po/po-hu_HU/ui_admin.po @@ -0,0 +1,1660 @@ +# +# Translators: +# Attila Szalay , 2013 +# orsime , 2013 +# Peter K. , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Hozzáférés elutasítva. Vagy az azonosító adatok nem érvényesek, vagy a kérés lett elutasítva." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Hozzáférés elutasítva. A kérést megkaptuk, de hozzáférési korlátozások (pl. időkorlát) miatt nem teljesíthető. Próbálja meg később!" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Hozzáférési szint" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Műveletek" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Kategória hozzáadása" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "Hozzáadva" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Hozzáadva/szerkesztve" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Kiegészítések" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Adminsztrátor szerep" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Értesítések" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Kapott riasztások" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Mind" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "DE" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anoním" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Bárki" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Bárhol" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API letiltva" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API logok" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Beállítások" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Letiltás feloldása" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Minden letiltás feloldása" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "jóváhagyva" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Automatikusan jóváhagyás" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Manuális jóváhagyás" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archiválva" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Biztosan szeretnéd " + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Biztosan szeretnéd törölni ezt az elemet?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Biztosan szeretnéd törölni ezt a képet?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Biztosan űrlapot szeretnél váltani?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Hozzárendel" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Hozzárendelések" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Kitüntetés hozzárendelése" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Szerző" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Szerző email címe" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Vissza" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "IP cím letiltása" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "időpont között" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blokkok" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Törzs" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Mégsem" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategóriák" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Hiba a diagram megjelenítésében" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Kérem, ellenőrizze, hogy az üzenete érvényes!" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Kérem, ellenőrizze, hogy a szám érvényes!" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Kérem, ellenőrizze az SMS adatait!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Bejelentkezés adatai" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Bejelentkezések" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Települések betöltve" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kód" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Kód verzió nincsen szinkronizálva" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Szín" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Megjegyzések" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "A riasztás kérés visszaigazoló kódja:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "A felhasználó" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Darab" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Az ország nem található" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "elkészítve/szerkesztve" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Bejelentés létrehozása" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritikus frissítés" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Jelenleg aktív" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Jelenleg inaktív" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Nincs megfelelő jogosultságod az alábbi egényi mező szerkesztéséhez." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Napi" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Műszerfal" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "adatbázis" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Dátum és Idő" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Bevitel dátuma" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Módosítás dátuma" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Hét napjai" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Az adatbázis nincs szinkronizálva" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "törölve" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Törlés" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Jelvény törlése" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demó" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Leírás" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Letiltva" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Elválasztó kezdete" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Elválasztó vége" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Jelentések letöltése" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Lenyíló fálasztások" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "SZERKESZTVE" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Szerkesztve" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Szerkesztés" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Szerkesztési log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Teljes Közösség" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Hiba a geokódolásban!HTTP hiba" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP könyvtár nincs installálva" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Hiba" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Hiba, az eseményt nem tudtuk postolni" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Minden 6 órában" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Minden 12 órában" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Kísérleti" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "GYIK" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "folyam" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Visszajelzés" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "folyamok" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Választások listája" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Alapértelmezett érték" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Adattípusok" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Javascript" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerikus" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Szabad szöveg" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Magasság (sorban)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Rejtett mező" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maximális karakterhossz" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Mező neve" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Lapozás" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Nem" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Igen, alapesetben Zárva" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Igen, alapesetben Nyitva" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Nem található az feltöltött fájl" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Ne tudjuk megnyitni a fájlt olvasásra" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ez a form nem létezik" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Szabad szöveges mező" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Dátum mező" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Radio mező" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Checkbox mező" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Lenyíló mező" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Ettől" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Ettől" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonevek időtúllépési hibája" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Segítség" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "További oldalképek" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "További kiegészítők" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Akciók" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Hozzáadás/szerkesztés" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Felhasználó kezelés" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Szerep" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Felhasználó" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "segítség" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Óránkénti" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "esemény folyama" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "A telepítő mappa még létezik. Törölje a telepítő mappát. A megléte lehetséges biztonsági rés." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "eset" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "esetek" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "esetek részletei" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "érvénytelen paraméter" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP cím" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Ez egy dátum mező?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Ki láthatja a válaszokat" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Ki küldhet választ" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Kulcszó" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Kulcsszavak" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email cím:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Teljes név:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Jelszó" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Szerepkör" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Felhasználói név" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Rétegek" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderátor" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Kilépés" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logok" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Kezelés" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Szerepkörök és engedélyek kezelése" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "A felhasználók megtekintése" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Felhasználók hozzáadása/szerkesztése" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Publikus listáid szerkesztése" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Megjelölés mint" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "nem spamként jelölve" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "spamként jelölve" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "nem illeszkedik egy dokumentum sem ehhez" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Üzenet" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Üzenetek" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica üzenetek" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter üzenetek" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Az üzeneted elküldve!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Perc" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Auto elfogadás" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Hiányzó paraméter" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderátor" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "módosítva" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Időzóna beállítások módosítása" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "lefelé mozgatás" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "felfelé mozgatás" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Hosztolt pédányok" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Riasztásaim" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Bejelentkezéseim" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "A profilom" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Bejelentéseim" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Szavazatok" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Pozitív" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negatív" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Név" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Új riasztás létrehozása" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Új üzenet" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Új jelszó" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Nem " + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Ez egy különleges kategória, ami a bejelentés adatlapján nem látható a felhasználó számára. Ebben gyűlnek azok a kategorizálatlan bejelentések (uncategorized reports), amik a kategória törlése miatt kerültek ebbe az állapotba." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Értesítés" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Kis vagy nagybetű?Mindegy!" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Nem található" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Nincs adat. Nincs eredmény a megjelenítéshez." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Semmi hiba nincs itten!" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Nincs megjeleníthető eredmény!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Meghatározott számú esemény esetén" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID-k" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "oldal" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "oldalak" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Az oldal nem található" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Sajnálom, de a keresett oldal itt nem található

Külső linket követett, vagy a mi oldalunkról származót?
Ha ezt az oldalt a mi portálunk egy más részéről érte el, kérem vegye fel velünk a kapcsolatot, hogy ki tudjuk javítani a hibát!

Egy más oldalról érkezett?
A más oldalról származó linkek néha elavultak, vagy elírást tartalmaznak.Írja megl, melyik oldalról érkezett, hogy az üzemeltetőivel kijavíthassuk a problémát.

Ön írta be az oldalcímet?
Elképzelhető, hogy pontatlanul másolta be a címet. Kérem, ellenőrizze, a beírt címet figyelve minden karakter sorrendjére, a kis és nagybetűkre, stb. !

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Elnézést, de az oldal amit keresel nincs itt." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Paraméterek használva" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Jelszó" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Jelszó visszaállítás" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Kedves" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Megkaptuk a jelszó törlési kérést" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "A jelszó változtatáshoz, klikkeljen az alábbi linkre ( vagy másolja be a böngészőjébe )" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "A jelszó a kérésnek megfelelően törölve lett. Az Ön részletes adatai a következők" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Alkalmazás jelszó törlése" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Kérlek válassz" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "DU" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Az adat nem lett elküldve POST metódussal" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Előnézet" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Üzenet" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Privát üzenet" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Privát üzenet elküldve" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Tárgy" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Címzett" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Publikus listázás" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Tulajdonságok" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "olvasás" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "relevancia" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Felajánlás címe" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Felajánlás dátuma" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Bejelentők" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Bejelentő szintek" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Bejelentések" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Tekintélyérték" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Kötelező" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Törlés" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Válasz" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Eredmények" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Visszavonás" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Ehhez az e-mail címhet már tartozik CrowdmapID. A felhasználónak a meglévő Crowdmap jelszavával kell belépnie." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Beállítások mentése" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Keresés" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Felajánlás keresése" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "keresem" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "A titkosítási kulcs még mindig alapbeállításon van. Ez nem biztonságos. Írjon be másikat!" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Ez az oldal jelenleg HTTP-vel van kiszolgálva. A biztonság növelése érdekében válts HTTPS-re." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instrukciók elérhetők a wiki-n:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Milyen formátumban szeretné letölteni a bejeneltéseket?" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "---Mező választása ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Válassz egy dolgot" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Először a triggert (kiváltó eseményt) kell választania, csak azután a válaszreakciót." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Először a triggert (kiváltó eseményt) kell választania, csak azután a tulajdonságait." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Küldő" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Címzett" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Az üzenetet az oldal küldte " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Szerver idő" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Beállítások" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Az oldal mutatása" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Az eredmények mutatása" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "megtekintett" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Speciális kategória" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Ez egy különleges kategória, ami a bejelentés adatlapján nem látható a felhasználó számára. Ez a beállítás a \"Megbízható Bejelentők\" funkcióval együtt használatos." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Meghatározott Terület" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Állam" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statisztikák" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statisztikák" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Statisztika gyűjtése nem sikerült! Vagy a statisztikai szerver nem működik, vagy az Ushahidi szerver telepítési konfigurációja rossz. Próbáld meg kicsit később, hátha a szerver működik. Ahhoz, hogy kézzel töröld a statisztikát, állítsd a \"stat_id\"-et 0-ra és a \"stat_key\"-t is 0-ra a beállítások táblában az adatbázisban. Figyelmeztetés: Az eddigi statisztikákhoz elveszted a hozzáférést!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Statisztika gyűjtése nem sikerült!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Meghatározott Napok" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Téma" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Szuper Adminisztrátor" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Feladat elvégezve!" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Szöveges mező" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Név" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Felhasználók kezelése" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Időtúllépési hiba" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr " - " + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Összes rekord" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "dátummá" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Felajánlások lefordítása" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger (kiváltó esemény)" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Kiváltó Felhasználó" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Triggerek (kiváltó események)" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "nincs jóváhagyva" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "ismeretlen" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Ismeretlen hiba" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "olvasatlan" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Nem fog több riasztást kapni" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Ide kattints az azonnali frissítéshez" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Ushahidi frissítése" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Ushahidi státuszának frissítése" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Felajánlok" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Felhasználó" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Felhasználók" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Ellenőrzött/Ellenőrizetlen" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Elfogad/Elutasít" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Verzió" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "Verzió frissíthető" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Videó kódolás" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Privát üzenet" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Oldal megtekintése" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Felajánlás megtekintése" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Üdvözlégy," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Igen" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "A keresésed" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-hu_HU/ui_main.po b/application/i18n/po/po-hu_HU/ui_main.po new file mode 100644 index 0000000000..06a51846f4 --- /dev/null +++ b/application/i18n/po/po-hu_HU/ui_main.po @@ -0,0 +1,3173 @@ +# +# Translators: +# Attila Szalay , 2013 +# Gábor Nagymajtényi , 2013 +# orsime , 2013 +# Peter K. , 2013 +# Zoltan Medovarszky , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Leírás" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Hozzáférés" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Hozzáférés korlátai" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Felhasználónév" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Műveletek" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ez a lépés nem visszavonható. Biztosan folytatni akarod?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivizálás" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktív" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Hozzáadás" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Hozzáadta" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "További adatok" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "További bejelentések" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Hozzáadás/szerkesztés" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Mező hozzáadása" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Nyelv hozzáadása" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Új hozzáadása" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Új kategória hozzáadása" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Fordítás hozzáadása" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Adminisztráció" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Riasztás kérése" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Küldjön riasztást, ha bejelentés érkezett:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Riasztás kérés mentése" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email cím:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Email cím bevitele" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "mobiltelefonszám megadása országkóddal" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Riasztás kérése" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "A riasztás" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobiltelefonszám:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "... vagy helyezz egy pöttyöt az alábbi térképre, és riasztást küldünk, ha annak 20 km-es körzetéből bejelentés érkezett. A körzet nagyságát a térkép alatti csúszkával állíthatod. " + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Ha nem találod a helyzeted a térképen megjelölve, kérünk kattints a térképen a pontos koordinátáidnál!" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS hírfolyam (másold le az alábbi URL-t)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Válassz egy települést" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "1. lépés: Válassz egy települést vagy helyszínt:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "2. lépés: Riasztást kérek az alábbi elérhetőségekre:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "3. lépés (opcionális ): Válassz kategóriát:" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Riasztás kérés jóváhagyása" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "A riasztás kérést elmentettük." + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Mind" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Megengedve" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Minden kategória" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Összes" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "és" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Jóváhagy" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Jóváhagyva" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Jóváhagyott bejelentések" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Bejelentés jóváhagyása" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Kb." + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archívum" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archiválva" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Növekvő" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "@" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Szerző" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Automatikus belépés" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Napi átlagos riportok" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Jóváhagyásra vár" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Ellenőrzésre vár" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Jelvény" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Jelvény" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Arckép" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Vagy feltöltheted a saját arcképed " + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Azonosító kártyák" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Válassz azonosítót" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Profil böngészés" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Mégsem" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategóriák" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategória" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategóriaszűrő" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "A kategória" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Kategória neve" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Időtartam megváltoztatása" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Változtass jelszót" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Változtasd meg a Saját Képet" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Válassz egy " + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Válassz adatokat a lementéshez" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Vagy válassz saját dátum intervallumot" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Válassz mező típust!" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Tiszta URL-ek" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Törlés" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Üres térkép" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Becsuk" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Klaszterek" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Szín" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Fejlemény" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Fejlemények" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Fejlemény pár szóban:" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "A beállításaidat elmentettük." + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Beállít" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Sikeresen visszaigazoltad az email címedet. A rendszerbe az alábbi mezőkben tudsz belépni." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Az email cím megerősítése sikertelen! Az alábbiakban kérhetsz új megerősítő emailt." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kapcsolat" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Biztonsági kód" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Az email címed" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Üzenet" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Az üzeneted elküldve!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Neved" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Telefonszámod" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Üzenet küldése" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Tárgy" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2010 Ushahidi.com. Minden jog fenntartva!" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Készít" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Készít/Módosít" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Új létrehozása" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Új jelszó" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Bejelentés létrehozása" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Hitelesség" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Jelenlegi jelszó" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Egyedi mezők" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Információ" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Dátum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(hh/nn/éééé)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Dátum és időpont" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "nap" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deaktiválás" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Ajka, Magyarország" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Töröl" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Törölve" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Törlések" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Törlés funkció kikapcsolva" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Utolsó törlése" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Bejelentés törlése" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Kijelöltek törlése" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Spam törlése" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demó" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Leírás" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Csökkenő" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Például: Astoria sarok, a Rákóczi út felől, Budapest" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Részletek" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Direkt bejelentés" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Letiltva" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Nem hagy jóvá" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Bejelentések letöltése" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Letöltés" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Módosít" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "A form mezők szerkesztése" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Bejelentés szerkesztése" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Email cím" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Levelező szerver beállításai" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Levelező szerver hoszt" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Levelező szerver jelszó" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Levelező szerver port" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Levelező szerver ssl támogatás" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Levelező szerver típusa" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Levelező szerver felhasználói név" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Beállításaid az email címedhez lesznek alkalmazva." + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Ahhoz hogy emailben kapjál értesítést, meg kell adnod az email fiókod elérhetőségét." + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Valamelyik szerver teljes email címet kér" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Email fiók jelszó" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Jellemző portok: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Például: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Például: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Engedélyezi vagy tiltja az SSL kapcsolatot" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "--ÜRES--" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "Eddig:" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Hiba!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "pl." + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Magyarország" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Külső alkalmazások" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Hivatkozás külső videóra" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Folyam" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Küldj visszajelzést!" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Hírfolyamok" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Visszajelzés" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Hírfolyam eleme" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Hírfolyam neve" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Hírfolyam URL-je" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Nem használt mező" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Fájl" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "A fájl túl nagy." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Szűrő" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Bejelentések szűrése" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Bejelentések szűrése " + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Bejelentések, amik tartalmazzák" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Keresés" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Hely keresése" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Keresztnév" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Kényszerített időzítő indítás" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Elfelejtetted a jelszavad?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Űrlap" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Űrlapok" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Űrlap leírás" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Szerkeszd az űrlapot" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Az űrlap" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Űrlap cím" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Küldő" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Teljes név" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Geolokáció elérhető" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Szín" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Fejlemények" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Címke" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Vonal vastagság" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Mehet" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Volt" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Segítség" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Rejtett" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Elrejt" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Üzenet elrejtése" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Kezdőlap" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Hogyan tegyél bejelentést?" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "Azonosító" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "A többi felhasználó számára ez a név jelenik meg." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Kép" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Képek" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Kép/Ikon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inaktív" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Beérkező levelek" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Helyszínek" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "a közelben" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "helyszín" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Beszúr" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Kategória beszúrása" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Egyedi mezők beszúrása" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Leírás beszúrása" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Szúrj be annyi részletet, amennyit csak lehet!" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "csatolja a szélességi fokot!" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "adja meg a helyszín információit!" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Csatold a hosszúsági fokot!" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Személyes információk megadása" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Bejövő média" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Bejelentés értékelése" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Add meg a pontos címed" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "A hozzáférésed nem megfelelő a teljes beléptetéshez. Vedd fel a kapcsolatot az adminisztrátorral!" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Válaszul erre:" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP cím" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Ez a te profilod?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "elem" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elemek" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "elem részletei" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Elem címe" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Kulcs" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Kulcsszavak" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML fájl" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "KMZ/KML fájl feltöltés" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Nyelv" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Utolsó" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Utolsó hónap" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Vezetéknév" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Tavaly" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Szélességi fok" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Rétegek" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Egyéb rétegek" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "A réteget" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Réteg neve" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Réteg URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "A bejelentéssel kapcsolatos fejleményt ide írhatod:" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Kevesebb információ" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Szint" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Ezt a szintet" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Szint neve" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Korlátozott" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Hivatkozás" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Bejelentések betöltése" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Helyszín" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Helyszínek" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Település, Ország" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Belépés" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "A fiókodat sikeresen létrehoztuk. Mostantól be tudsz lépni az email címed és jelszavad megadásával." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "A megerősítő linket elküldtük egy email-ben." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-mail cím nem létezik. Próbáld másik e-mail címmel vagy regisztrálj." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Kérjük kattintson az előfizetés szolgáltatójára" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Belépés a következővel: " + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-mail és jelszó" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Regisztráció" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Fiók létrehozása" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Köszönjük regisztrációdat a %1$s weboldalon. Email címed megerősítéséhez kérjük kattints a következő linkre: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Regisztráció megerősítése" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Regisztrálj az oldalon, így további szolgáltatások is elérhetővé válnak számodra." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Hosszúság" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Térkép" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Megjelölés olvasottként" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Megjelölés olvasatlanként" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximásil fájl méret" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Média" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Médiaszűrő" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Tagok" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Fiók szerkesztése" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Üzenet" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Üzenetek" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Összes üzenet" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Üzenet egy nem numerikus forrásból:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Módosít" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Dátum módosítása" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "hónap" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Még több" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "További információ" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Ez az Ushahidi telepítés több országra is kiterjed" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Meg kell erősítenie email címét annak érdekében, hogy beléphessen a rendszerbe. Ha nem találja a megerősítő linket tartalmazó emailt emailjei között, az alábbiakban kérhet újat." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Név" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Közeli bejelentések" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Új" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Hírek" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Hírfolyamok" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Hír forrása" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Új kategória" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Új jelszó" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Új bejelentés" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Következő" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nem" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Nincs megjeleníthető bejelentkezés." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Nincs adat" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Nincs" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Hozzáfűzés" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Nem jóváhagyott" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Nem jóváhagyott" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "--Nincs kiválasztva--" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "nem spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Nem meghatározott" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Nincs bejelentés" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nincs eredmény" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Ki" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Hivatalos híreink és egyéb hírek" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Be" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opció" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcionális" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opciók" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Szervezet" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Szervezetek" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Szervezet Leírása" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Szervezeti email" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "A szervezet " + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Szervezet Neve" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Szervezet Telefon 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Szervezet Telefon 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Szervezet website" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Eredeti" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Eredeti leírás" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Eredeti Cím" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Egyéb csatornák" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Kimenő fiók" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Kimenő" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Oldal" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Oldalak" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Oldal leírás" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Az oldal ..." + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Oldal Tab Név" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Oldal címe" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Szülő kategória" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Jelszó" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Jelszó mégegyszer" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "A jelszót sikeresen megváltoztattuk, mostantól az új jelszóval tudsz belépni." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Elfelejtetted a jelszavad?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Az új jelszót elküldtük az email címedre." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Maradjon belépve a számítógépeden" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Múlt Hónap" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Tavaly" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Függő" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Személyes adatok Opcionális" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Képek" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Képek" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Képek és videók" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "Jelölje a helyszínt a szélességi, hosszúsági koordináták megadásával, vagy mutasson a térképen a pontos helyre!" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Lejátszás" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Jegyezd meg" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Pluginek" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Weblap hozzáadása" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Nyilvános profil" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Nyilvános profil URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Előnézet" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Elem előnézet" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Üzenet előnézet" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Előző" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privát" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profil színe" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "A profilodat elmentettük." + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Áttekintő statisztika" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Értékelés" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Olvasás" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Fogadás" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Fogadni innét" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Jelzések fogadása" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Friss bejelentések" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Hírfolyamok frissítése" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Regisztrált email cím" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "eltávolít" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "válasz" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Bejelentés" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Bejelentések (a térképről, listázás időrendi sorrendben)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Bejelentő" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Bejelentők" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Bejelentés ideje" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Bejelentő email címe" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Bejelentő keresztneve" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "A Bejelentő" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Bejelentő IP címe" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Bejelentő vezetékneve" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Bejelentő szint" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Bejelentő szintek" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Bejelentő telefonja" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Bejelentések" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "keresés" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "küld" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "A felhasználó bejelentései" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategóriák" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d bejelentés" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "dátum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Leírás" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Bejelentések letöltése CSV formátumban" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Szolgáltatás" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Válassz egy helyszínt a közeledben!" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Keresztnév" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Vezetéknév" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Helyszín pontosítása" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Hivatkozás külső hírre" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "További információ" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Fényképek feltöltése" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Vissza a Bejelentések oldalhoz" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Válassz egy települést" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "A bejelentésedet köszönjük! Továbbítottuk munkatársainknak és hamarosan jelentkezünk, ha szükséges." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Új bejelentés küldése" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Időpont" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Időtartam" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Bejelentés címe" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Videó hivatkozás" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Incidens bejelentése" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Összes bejelentés" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "üzenet küldésével ide:" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "email küldésével erre a címre:" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "twitter üzenettel a következő hashtaggel (egy is elegendő)" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "ennek az űrlapnak a kitöltésével" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Alkalmazás használatával" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "A bejelentésedet elmentettük." + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Bejelentés címe" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Több információ igénylése" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Helyszín pontosítása" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Kötelező" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Szükségletek" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Megerősítő email újraküldése" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Törlés" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Összes szűrő törlése" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Jelszó visszaállítása" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "A kiválasztott ország település neveinek kigyűjtése" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "%s szolgáltatás által kezelt fiókok." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Önnek már van egy CrowdmapID által kezelt fiókja. Próbálja a CrowdmapID e-mail és jelszó párost használni a belépéshez!" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Szerep" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Mentés" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Mentve" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Mentés és Új hozzáadása" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Mentés és Bezárás" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Bejelentés mentése" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Ütemezés" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Ütemező" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Nap" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Óra" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Ütemező Log" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Perc" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Napja a hétnek" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Keresés" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Keresési eredmények" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Biztonsági kód" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Összes kiválasztása" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Mezőtípus választása" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Űrlap kiválasztása" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Kiválasztás a térképen" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Több is választható" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Kérlek erősítsd meg, hogy ellenőrizted az elemet" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Téma választása" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Küldés" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Megerősítés küldése" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Erre a címre elküldeni:" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Elküldve" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "küldő:" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Szerver címe" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Szerver típusa" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Szolgáltatás" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Felhasználói név a szolgáltatásban" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Szolgáltatás felhasználói ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Megosztás" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Megosztott adat" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "A megosztás" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Megosztás" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Kisebb térkép" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Mutasd" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Mutasd mindet" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Üzenetek megtekintése" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Bejelentések megtekintése %1$s-tól %2$s-ig" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "az oldalhoz tartozó email cím" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Oldal URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Kisebb térkép" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Sajnálom, neked nincs jelvényed." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Forrás" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Forrás neve" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Rendezés" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Rendezés a kövezkező szerint:" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Forrás URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL támogatás?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Innen" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Lépés" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Bejelentés küldése" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Beküldte: %1$s, %2$s használatával" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Beküldés SMS-ben (jelenleg nem működő szolgálatatás)" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Küldj SMS-t ...-ra" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "telefonodon" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Siker!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Sikeres import" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Vezetéknév" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Kérdőív" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Rendszer" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Magasabb térkép" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Témák" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Alapértelmezett Ushahidi Sablon" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Téma beállítások" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Ez" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Ma" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Ebben a hónapban" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Ezen a héten" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Folyó év" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Ez a te profilod." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "idő" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Bejelentés címe" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr " Eddig:" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Ma" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Ma" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Összes bejelentés" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Lefordítva" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Lefordított leírás" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Lefordított cím" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Fordítás erre" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Fordítás" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "A fordítást elmentettük." + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Megbízható" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Típus" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Email küldése sikertelen." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Nem kategorizált" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "olvasatlan" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Ellenőrizetlen" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Mezők frissítése" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Feltöltés" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Tekintse meg a bejelentések feltöltéséről szóló útmutatót:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML feltöltési útmutató" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV feltöltési útmutató" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "feltöltendő fájl" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Bejelentések feltöltése" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "A saját mező oszlopának tartalmaznia kell a hozzá tartozó form_id-t. pl. a Teszt nevű saját mező az 1-es ID-val jelzett alap kérdőíven Teszt-1 lesz. A saját kérdőív-mező importálásakor erre figyelni kell." + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "részletes jelentés feltöltése" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "A bejelentéseket CSV vagy XML formátumban kell feltölteni." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Ha az eset azonosító szerepel az adatbázban akkor a bejegyzés a CSV/XML fájlban ki lesz hagyva." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Legalább a bejelentés címét és dátumát tartalmaznia kell." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Ha hosszúsági és szélességi koordináta nem áll rendelkezésre akkor a helyszín Google Geocoder által lesz geokódolva." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Ha importálsz hozzáadott információkat pl: személyes információk, és/vagy egyéni mezők" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Legalább egy személyes infromációt hordozó mezőnek (név, vezetéknév, email) léteznie kell. Az üres rekordok nem lesznek importálva" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "A saját mezőben adott válasza összhangban van a legördülő menük, választógombok és jelölőnégyzetek adataival." + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "A jelölőnégyzet opciókat vesszővel kell elválasztani, pl. ha a választható gyümölcsök alma, körte és szőlő, akkor a bevitt opció \"alma,körte,szőlő\" legyen" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "A dátum mezőket a következő formában kell kitölteni: hh/nn/éééé pl. 2013. március 15. = 03/15/2013" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Minta CSV jelentés" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,bejelentés címe,Bejelentés dátuma,Helyszín,Leírás,Kategória,Elfogadva,Igazolva
\"1\",\"1 db kanapé\",\"2010-11-15 01:06:00\",\"Szentbékálla\",\"Alig használt, 200X100-as disztingvált rökamié elvitehő\",\"Bútor, Hálószoba bútor, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr " \"2\",\"Kirablás\",\"2009-03-18 10:10:00\",\"Accra\",\"Bármerre történhet rablás\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Sikeres feltöltés" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Videó feltöltése" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Felhasználó" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Felhasználó neve" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi rendszergazda" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Ellenőrzés" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Ellenőrizve" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Ellenőrzött bejelentések" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Ellenőrzés" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Bejelentés ellenőrzése" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Verzió" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "keresztül" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Videó" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "nézet" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Nézetek" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Összes megtekintése" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Összes visszajelzés megtekintése" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Minden bejelentés megtekintése" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Elemek megtekintése" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Többet látnék" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Nyilvános profil megtekintése" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Bejelentés megtekintése" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Bejelentések megtekintése" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Videó megtekintése" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Látható" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Jóváhagyásra vár" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Ellenőrzésre vár" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Szélesebb térkép" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web űrlap" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Súly" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Igen" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Tegnap" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Műszerfal" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Te fájlod" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Nagyítás" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Kicsinyítés" diff --git a/application/i18n/po/po-hu_HU/upgrade.po b/application/i18n/po/po-hu_HU/upgrade.po new file mode 100644 index 0000000000..e5a131eb3f --- /dev/null +++ b/application/i18n/po/po-hu_HU/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Peter K. , 2013 +# toeri , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Hibás adat. A lehetséges értékek: 0 (nem) vagy 1 (igen)." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatikus frissítés" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Lehetséges frissítések" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Folytatás" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Frissítés" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Frissíteni fogom az adatbázist erről a verziószámról: " + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "a legfrissebb adatbázis verzióra" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Kattintson a \"Frissítés\" gombra és dőljön hátra amíg a csoda megvalósul." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Egyébként, ha szeretne egy biztonsági mentést az adatbázisról, pipálja be a dobozt és seperc alatt azt is megcsinálom." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Elemtsem az adatbázist frissítés előtt? (Erősen ajánlott)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Az Ushahidi adatbázis frissítése" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Az Ushahidi frissült! Mielőtt másba kezdene, frissíteni kell az adatbázist is a legújabb , (%s) verzióra." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Az adatbázis verzió naprakész." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "A frissítést nem sikerült végrehajtani" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Kézi frissítés" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Az Ushahidi frissítésenek az állapota" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Útmutató az Ushadishi letelepitése manuális frissítéséhez" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Lépés 1: Töltse le a legújabb Ushahidi buildet innen: http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Lépés 2: Válassza ki a webszervert futtató operációs rendszernek megfelelő eszközt/módszert (pl.: telnet, ftp, ssh), majd lépjen be a webszerverre, és a legújabb builddel írja felül a mappa tartalmát! Mindet, KIVÉTEL:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Lépés 4: A táblázatok frissítéséhez kattintson a \"Folytatás\" gombra" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "3. lépés: Látogasson el az sql mappába. \"Kézzel\" futtassa le a frissítő -.sql file-t a jelenlegi adatbázis verzióból kiindulva a legutolsó sql frissítő file-ig. " + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Automatikus frissítéshez kattintson az alábbi gombra." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Automatikus frissítéshez nyomja meg a lenti gombot." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Jelenleg az Ushahidi v%1$s verzióját az adatbázis %2$d verziójával használja %3$s környezetben." + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Frissítés" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Az egyszerű frissítés folytatásaként, a következő információra lesz szükség arról az FTP szerverről, amin a portál fut." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Kiszolgálónév: Például: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP jelszó:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP Felhasználói név:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Ez a legfrisebb Ushahidi verzió. " + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Nincs szükség frissítésre." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Adatbázis verzió: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Figyelem! A szoftver verziószáma a version.php-ben és az adatbázisban nem egyezik." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Figyelem! Az adatbázis verziószáma a version.php-ben és az adatbázisban nem egyezik." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Adatbázis:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "Béta!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Az ushahidi legfrissebb verziójának letöltése folyik..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log fájl" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Sikeresen letöltve. Kicsomagolás..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Sikertelen letöltés." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Sikeres kicsomagolás. Fájlok másolása..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Sikertelen kicsomagolás." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Sikeres fájl másolás. Adatbázis frissítése..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Sikertelen fájl másolás." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Sikeres adatbázis mentés és frissítés." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Sikertelen adatbázis mentés." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Sikeres adatbázis frissítés." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Letöltött fájlok törlése..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "SIKERES FRISSÍTÉS. View Log File" diff --git a/application/i18n/po/po-hy_AM/alerts.po b/application/i18n/po/po-hy_AM/alerts.po new file mode 100644 index 0000000000..38fb680085 --- /dev/null +++ b/application/i18n/po/po-hy_AM/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Այս էլեկտրոնային փոստի հասցեն արդեն գրանցվել է նշված տարածքի վերաբերյալ ծանուցումներ ստանալու համար:" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Դուք քարտեզի վրա ճիշտ վայր/տարածք չեք ընտրել:" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Դուք քարտեզի վրա վայր/տարածք չեք ընտրել:" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Դուք քարտեզի վրա ճիշտ վայր/տարածք չեք ընտրել:" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Դուք քարտեզի վրա ճիշտ վայր/տարածք չեք ընտրել:" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "«Բջջային հեռախոս» դաշտում նշված թվերի քանակը ճիշտ չէ:" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Այս բջջային հեռախոսահամարն արդեն գրանցվել է նշված տարածքի վերաբերյալ ծանուցումներ ստանալու համար:" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "«Բջջային հեռախոս» դաշտում նշված հեռախոսահամարը ճիշտ չէ: Խնդրում ենք մուտքագրել միայն թվեր` ներառյալ երկրի կոդը:" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Մուտքագրեք կամ Ձեր հեռախոսահամարը, կամ էլեկտրոնային փոստի հասցեն:" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Մուտքագրեք Բջջային հեռախոսը, կամ հանեք վանդակից համապատասխան նշումը:" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Դուք քարտեզի վրա չեք նշել ընդունելի շառավիղ:" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Դուք քարտեզի վրա չեք նշել նախընտրելի շառավիղը:" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Այս կոդն արդեն հաստատվել է նախկինում:" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Հաստատման այս կոդն անհայտ է: Խնդրում ենք ստուգել ինտերնետային կայքի հասցեն:" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Ձեր կոդը հաստատված է: Այժմ Դուք ծանուցումներ կստանաք Ձեր նշած տարածքում տեղի ունեցող միջադեպերի վերաբերյալ:" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Ծանուցումների վերաբերյալ Ձեր հայտը հաստատելու համար խնդրում ենք մտնել " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Վերադարնալ ծանուցումների էջ` ծանուցման նոր հայտ ստեղծելու համար:" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Էլեկտրոնային փոստով ծանուցումներ ստանալու վերաբերյալ Ձեր հայցը ստեղծված է, հաստատման հաղորդագրությունն ուղղարկված է հետևյալ հասցեին` " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Խնդրում ենք մուտքագրել այստեղ Էլեկտրոնային փոստի հաստատման այն կոդը, որը Դուք ստացել եք: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Էլեկտրոնային փոստով ծանուցումներ ստանալու վերաբերյալ Ձեր հայտը պահպանված Չէ:" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Էլեկտրոնային փոստով ծանուցումներ ստանալու վերաբերյալ Ձեր հայտը պահպանված է:" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Համակարգը չկարողացավ կատարել հաստատման վերաբերյալ Ձեր հայտը:" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Բջջային ծանուցման վերաբերյալ Ձեր հայցը ստեղծված է, հաստատման հաղորդագրությունն ուղղարկված է հետևյալ հասցեին` " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Խնդրում ենք մուտքագրել այստեղ հաստատման այն կոդը, որը կարճ հաղորդագրությամբ ստացել եք Ձեր բջջային հեռախոսահամարին: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Բջջային ծանուցման վերաբերյալ Ձեր հայտը պահպանված Չէ:" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Բջջաային ծանուցման վերաբերյալ Ձեր հայտը պահպանված է:" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Համակարգն անկարող է ճիշտ կերպով մշակել ծանուցումներն այս հայտի համար:" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Դուք ստացել եք այս էլեկտրոնային նամակը, քանի որ բաժանորդագրված եք ծանուցումներ ստանալու համար: Եթե չեք ցանկանում հետագայում ևս ծանուցումներ ստանալ, ապա մտեք " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Դուք այլևս ծանուցումներ չեք ստանա հետևյալ աղբյուրից` " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Մեզ չհաջողվեց դադարեցնել Ձեր բաժանորդագրությունը: Խնդրում ենք ստուգել Ձեր կողմից նշված Ինտերնետային կայքի հասցեն:" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Ծանուցումներ – հաստատում" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Դուք նշված տարածքի վերաբերյալ ծանուցումներ կստանաք Ձեր հայտի հաստատումից հետո միայն:" diff --git a/application/i18n/po/po-hy_AM/auth.po b/application/i18n/po/po-hy_AM/auth.po new file mode 100644 index 0000000000..fcaafd57af --- /dev/null +++ b/application/i18n/po/po-hy_AM/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Մուտքագրված էլ-փոստի հասցեն ճիշտ չէ:" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Ներողություն, բայց նշված էլ-փոստի հասցեով օգտագործող արդեն գոյություն ունի:" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Էլ-փոստի հասցեն պետք է պարունակի առնվազն 4 և ոչ ավելի, քան 64 նիշ:" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Մուտքագրեք էլ-փոստի հասցեն:" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Անունը պետք է պարունակի առնվազն 3 և ոչ ավելի, քան 100 նիշ:" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Մուտքագրեք անունը:" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Օգտագործողի անվան դաշտը պարունակում է անթույլատրելի նիշեր:" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Օգտագործողի անունը պետք է պարունակի առնվազն ջ և ոչ ավելի, քան 16 նիշ:" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Գաղտնաբառը սխալ է մուտքագրված:" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Երկու դաշտերում էլ մուտքագրեք միևնույն գաղտնաբառը:" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Մուտքագրեք գաղտնաբառը" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Գաղտնաբառը վերստուգող դաշտում մուտքագրվածը պետք է համապատասխանի գաղտնաբառի դաշտում մուտքագրվածին:" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Մուտքագրեք ճիշտ էլ-փոստի հասցե:" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Ներողություն, բայց ձեր էլ-փոստի հասցեն մեզ մոտ գրացնված չէ:" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Մուտքագրեք էլ-փոստի հասցեն:." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Դուք պետք է սահմանեք առնվազն մեկ դերակատարում" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Դուք պետք է ընտրեք ԱԴՄԻՆ կան ՕԳՏԱԳՈՐԾՈՂ դերակատարումներից մեկը:" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Ադմինիստրատորի դերակատարմամբ օգտագործողի գործառույթները չեն կարող փոփոխվել:" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Ներողություն, բայց տվյալ օգտագործողի անունն արդեն օգտագործվում է" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Օգտագործողի անունը պետք է պարունակի առնվազն 2 և ոչ ավելի, քան 16 նիշ:" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Մուտքագրեք ճիշտ օգտագործողի անուն:" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Մուտքագրեք օգտագործողի անունը:" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Գերակա դերակատարմամբ ադմինիստրատորի գործառույթները չեն կարող փոփոխվել:" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/bug.po b/application/i18n/po/po-hy_AM/bug.po new file mode 100644 index 0000000000..cc51aa30cd --- /dev/null +++ b/application/i18n/po/po-hy_AM/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Մուտքագրեք ճիշտ պաշտպանության կոդ:" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Մուտքագրեք պաշտպանության կոդը:" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Մուտքագրեք սխալի նկարագրությունը:" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "«Թեմա» դաշտը չի կարող պարունակել 3-ից պակաս նիշ:" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Մուտքագրեք «Թեմա» դաշտը:" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "«Անուն» դաշտը չի կարող պարունակել 3-ից պակաս նիշ:" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Մուտքագրեք «Անուն» դաշտը:" diff --git a/application/i18n/po/po-hy_AM/category.po b/application/i18n/po/po-hy_AM/category.po new file mode 100644 index 0000000000..e49f0c6e76 --- /dev/null +++ b/application/i18n/po/po-hy_AM/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Գույնը պետք է պարունակի 6 նիշ:" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Նշեք կատեգորիայի գույնը:" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Մուտքագրեք նկարագրությունը" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Վերբեռնվող նկարի չափը չի կարող գերազանցել 50KB-ը:" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Նկարի դաշտը ճիշտ նկար չի պարունակում. ընդունելի են միայն հետևյալ ձևաչափերը` .JPG, .PNG և .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Նկարի դաշտը ճիշտ ֆայլ չի պարունակում: " + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Վերնագիրը պետք է պարունակի առնվազն 3 և ոչ ավելի, քան 80 նիշ:" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Մուտքագրեք վերնագիրը:" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Ծնող կատեգորիան գոյություն չունի:" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Ծնող կատեգորիայի դաշտը պետք է պարունակի միայն թվեր:" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Մուտքագրեք ծնող կատեգորիայի դաշտը:" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Կատեգորիան և նրա ծնող կատեգորիան չեն կարող լինել միևնույնը:" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-hy_AM/comments.po b/application/i18n/po/po-hy_AM/comments.po new file mode 100644 index 0000000000..8b7a221b78 --- /dev/null +++ b/application/i18n/po/po-hy_AM/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Մուտքագրեք ճիշտ պաշտպանության կոդ:" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Մուտքագրեք պաշտպանության կոդը:" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Անվան դաշտը պետք է պարունակի առնվազն 3 նիշ:" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Մուտքագրեք անունը:" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Մուտքագրեք մեկնաբանությունը:" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:" diff --git a/application/i18n/po/po-hy_AM/contact.po b/application/i18n/po/po-hy_AM/contact.po new file mode 100644 index 0000000000..eb445270a5 --- /dev/null +++ b/application/i18n/po/po-hy_AM/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Մուտքագրեք ճիշտ պաշտպանության կոդ:" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Մուտքագրեք պաշտպանության կոդը:" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Մուտքագրեք հաղորդագրությունը:" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Անվան դաշտը պետք է պարունակի առնվազն 3 նիշ:" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Մուտքագրեք անունը:" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Վերնագրի դաշտը պետք է պարունակի առնվազն 3 նիշ: " + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Մուտքագրեք վերնագիրը:" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-hy_AM/core.po b/application/i18n/po/po-hy_AM/core.po new file mode 100644 index 0000000000..2933f0aa46 --- /dev/null +++ b/application/i18n/po/po-hy_AM/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver for the %s library must implement the %s interface" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "The %s driver for the %s library could not be found" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "The requested filetype, .%s, is not allowed in your view configuration file" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "The requested %s, %s, could not be found" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "There can be only one instance of Ushahidi per page request" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "You must set the the view filename before calling render" diff --git a/application/i18n/po/po-hy_AM/database.po b/application/i18n/po/po-hy_AM/database.po new file mode 100644 index 0000000000..0cad5a13cb --- /dev/null +++ b/application/i18n/po/po-hy_AM/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi" diff --git a/application/i18n/po/po-hy_AM/datetime.po b/application/i18n/po/po-hy_AM/datetime.po new file mode 100644 index 0000000000..dd4da9dbb8 --- /dev/null +++ b/application/i18n/po/po-hy_AM/datetime.po @@ -0,0 +1,213 @@ +#. extracted from en_US/datetime.php, hy_AM/datetime.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hy_AM\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-hy_AM/feeds.po b/application/i18n/po/po-hy_AM/feeds.po new file mode 100644 index 0000000000..cecc6135c5 --- /dev/null +++ b/application/i18n/po/po-hy_AM/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Ամսաթիվ" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Լրահոսի անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 70 նիշ:" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Մուտքագրեք լրահոսի անվանումը" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Մուտքագրեք լրահոսի URL-ն:" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "URL-ն ճիշտ մուտքագրեք, օր. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Աղբյուր" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Վերնագիր" diff --git a/application/i18n/po/po-hy_AM/footer.po b/application/i18n/po/po-hy_AM/footer.po new file mode 100644 index 0000000000..547b55afa6 --- /dev/null +++ b/application/i18n/po/po-hy_AM/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl is not installed on this system" diff --git a/application/i18n/po/po-hy_AM/form.po b/application/i18n/po/po-hy_AM/form.po new file mode 100644 index 0000000000..5e48a5b347 --- /dev/null +++ b/application/i18n/po/po-hy_AM/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Դաշտի Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Դաշտի Բարձրության համար մուտքագրեք 0-ից 50-ը արժեք:" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Ընտրված է ոչ ճիշտ արժեք:" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Ընտրեք Այո կամ Ոչ:" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Դաշտի Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Մուտքագրեք Դաշտի Անվանումը:" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Ընտրված է ոչ ճիշտ արժեք:" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Ընտրեք Այո կամ Ոչ:" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Ընտրեք ճիշտ Դաշտի Տիպ:" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Ընտրեք Դաշտի Տիպը:" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Դաշտի Լայնքի համար մուտքագրեք 0-ից 300-ը արժեք:" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Մուտքագրեք ֆորմայի Նկարագրությունը:" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Լռությամբ ֆորման չի կարող ջնջվել:" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Ընտրեք ֆորման, որին պետք է ավելացնել տվյալ դաշտը:" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Ընտրեք ֆորման, որին պետք է ավելացնել տվյալ դաշտը:" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Ֆորմայի անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Մուտքագրեք ֆորմայի անվանումը:" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-hy_AM/imap.po b/application/i18n/po/po-hy_AM/imap.po new file mode 100644 index 0000000000..4e2b43b8fa --- /dev/null +++ b/application/i18n/po/po-hy_AM/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAP հոսք չհաջողվեց բացել:" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Ծառայությունը չի ապահովվում:" diff --git a/application/i18n/po/po-hy_AM/installer.po b/application/i18n/po/po-hy_AM/installer.po new file mode 100644 index 0000000000..ce5a4243d6 --- /dev/null +++ b/application/i18n/po/po-hy_AM/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "For more information, please check out this article on the wiki that talks about databases in more detail" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Listed below is a summary of the errors we encountered" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi works equally well with any of these four mapping providers: Google, Bing, Yahoo or Open Street Map. Choose the one that has the most detail in your area" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Setup your SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "When your site visitors sign up for email alerts, they will recieve emails from this address. This email address does not have to be the same as the Site Email Address" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "The files and folders listed below need to be writable by your webserver" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "For the installation process, please have the following bits of information on hand" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normally you would not change the table prefix. However, If you want to run multiple Ushahidi installations from a single database you can do that by changing the prefix here" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/layer.po b/application/i18n/po/po-hy_AM/layer.po new file mode 100644 index 0000000000..1258e1cf3e --- /dev/null +++ b/application/i18n/po/po-hy_AM/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Գույնի երկարությունը պետք է լինի 6 նիշ:" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Նշեք շերտավորման գույնը:" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Ֆայլը վնասված է կամ չունի ճիշտ ձևաչափ: Ընդունելի ձևաչափերն են` .KMZ, .KML:" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Ֆայլը վնասված է կամ չունի ճիշտ ձևաչափ:" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 80 նիշ:" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Մուտքագրեք անվանումը:" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Նշեք կա՛մ KML/KMZ Url, կա՛մ KML/KMZ ֆայլ:" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Դուք չեք կարող միաժամանակ նշել և՛ KML/KMZ Url, և՛ KML/KMZ ֆայլ:" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Մուտքագրեք ճիշտ URL: Օր. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-hy_AM/libraries.po b/application/i18n/po/po-hy_AM/libraries.po new file mode 100644 index 0000000000..d02d8faaf9 --- /dev/null +++ b/application/i18n/po/po-hy_AM/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Չհաջողվեց միանալ akismet սերվերին:" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Չհաջողվեց ստանալ պատասխան Akismet սերվերից:" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Akismet API բանալին վավեր չէ:" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ձեր հաղորդագրությունը չափազանց երկար է (նիշերի քանակը=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Նշեք հասցեն (Դեպի):" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Նշեք աղբյուրի հասցեն (Որտեղից):" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ձեր հաղորդագրությունը չափազանց երկար է (նիշերի քանակը=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Ուղարկման մեթոդը ընդունելի չէ:" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s could not be deleted" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Downloading the latest ushahidi failed. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s could not be copied" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s could not be deleted" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "The downloaded ushahidi zip file %s, could not be written" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-hy_AM/maintenance.po b/application/i18n/po/po-hy_AM/maintenance.po new file mode 100644 index 0000000000..a225ebdbbe --- /dev/null +++ b/application/i18n/po/po-hy_AM/maintenance.po @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, hy_AM/maintenance.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hy_AM\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-hy_AM/message.po b/application/i18n/po/po-hy_AM/message.po new file mode 100644 index 0000000000..bcefea5b59 --- /dev/null +++ b/application/i18n/po/po-hy_AM/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Մուտքագրեք ճիշտ պաշտպանության կոդ:" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Մուտքագրեք պաշտպանության կոդը:" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Մուտքագրեք էլ-փոստի հասցեն, կամ հանեք վանդակից համապատասխան նշումը:" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Մուտքագրեք հաղորդագրությունը:" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Անվանումը պետք է պարունակի առնվազն 3 նիշ:" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Մուտքագրեք անվանումը:" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Հեռախոսահամարը ճիշտ չէ մուտքագրված:" diff --git a/application/i18n/po/po-hy_AM/mhi.po b/application/i18n/po/po-hy_AM/mhi.po new file mode 100644 index 0000000000..e0959cffbc --- /dev/null +++ b/application/i18n/po/po-hy_AM/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Please provide a valid email address" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-hy_AM/notifications.po b/application/i18n/po/po-hy_AM/notifications.po new file mode 100644 index 0000000000..4e9328c1e5 --- /dev/null +++ b/application/i18n/po/po-hy_AM/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Այս հաղորդագրությունը ուղարկվել է Ձեր կայքից:" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Ադմինիստրատորի Մուտք" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Ձեր կայքում նոր մեկնաբանություն է կատարվել ի պատասխան`" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Նոր Մեկնաբանություն" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Ձեր կայքին նոր էլեկտրոնային նամակ է ուղարկվել:" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Նոր նամակ" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Ձեր կայքում նոր ահազանգ է ստացվել:" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Նոր Ահազանգ" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Ձեր կայքին նոր կարճ հաղորդագրություն է ուղարկվել:" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Նոր Կարճ Հաղորդագրություն" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-hy_AM/organization.po b/application/i18n/po/po-hy_AM/organization.po new file mode 100644 index 0000000000..aa116ee75b --- /dev/null +++ b/application/i18n/po/po-hy_AM/organization.po @@ -0,0 +1,46 @@ +#. extracted from hy_AM/organization.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-06-29 11:18+1300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.9.0\n" + +#: $lang->'required' +msgid "Մուտքագրեք կազմակերպության անվանումը:" +msgstr "" + +#: $lang->'length' +msgid "" +"Կազմակերպության անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 70 " +"նիշ:" +msgstr "" + +#: $lang->'standard_text' +msgid "Օգտագործողի անունը ճիշտ չէ մուտքագրված:" +msgstr "" + +#: $lang->'required' +msgid "Մուտքագրեք կազմակերպության կայքի հասցեն:" +msgstr "" + +#: $lang->'url' +msgid "" +"Մուտքագրեք ճիշտ URL: Օր. http://www.ushahidi.com'\n" +"\t\t),\n" +"\t\t\n" +"\t\t'organization_description' => array\n" +"\t\t(\n" +"\t\t\t'required' => 'Մուտքագրեք կազմակերպության կարճ նկարագրությունը:'\n" +"\t\t),\n" +"\t\t\n" +"\t\t'organization_email' => array\n" +"\t\t(\n" +"\t\t\t'email'\t\t => 'Կազմակերպության էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/page.po b/application/i18n/po/po-hy_AM/page.po new file mode 100644 index 0000000000..1afb6fda40 --- /dev/null +++ b/application/i18n/po/po-hy_AM/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Please enter a Page Title" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Please enter a Page Tab Name" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Please enter a Page Description" diff --git a/application/i18n/po/po-hy_AM/permissions.po b/application/i18n/po/po-hy_AM/permissions.po new file mode 100644 index 0000000000..d3611bb89a --- /dev/null +++ b/application/i18n/po/po-hy_AM/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/private_message.po b/application/i18n/po/po-hy_AM/private_message.po new file mode 100644 index 0000000000..51b683d5f9 --- /dev/null +++ b/application/i18n/po/po-hy_AM/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, hy_AM/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hy_AM\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-hy_AM/report.po b/application/i18n/po/po-hy_AM/report.po new file mode 100644 index 0000000000..1c50b15406 --- /dev/null +++ b/application/i18n/po/po-hy_AM/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Բեռնման համար ընտրեք վավեր տվյալներ:" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Բեռնման համար ընտրեք վավեր տվյալներ:" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Բեռնման համար ընտրեք վավեր տվյալներ:" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Բեռնման համար ընտրեք վավեր տվյալներ:" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Բեռնման համար ընտրեք վավեր տվյալներ:" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Նշեք վավեր ամսաթիվ \"Սկսած\" դաշտի համար:" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Նշեք վավեր ամսաթիվ \"Սկսած\" դաշտի համար: Այն չի կարող նորկայացնել ավելի ուշ ամսաթիվ, քան այսօր է:" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Նշեք վավեր արժեք \"Հաստատել այս Ահազանգը?\"-ի համար:" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Նշեք վավեր արժեք \"Հաստատել այս Ահազանգը?\"-ի համար:" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "AM/PM դաշտը սխալ է մուտքագրված:" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Կատեգորիան ճիշտ չէ մուտքագրված:" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Նշեք Կատեգորիան:" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Ամսաթվը սխալ ձևաչափով է մուտքագրված:" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Ամսաթվը սխալ ձևաչափով է մուտքագրված:" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Մուտքագրեք Ամսաթիվը:" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Մուտքագրեք Նկարագրությունը:" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Ժամը սխալ ձևաչափով է մուտքագրված:" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Մուտքագրեք Ժամը:" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Նշեք վավեր արժեք \"Տեղեկատվության Հավանականությունը\" դաշտի համար:" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Նշեք վավեր արժեք \"Տեղեկատվության Հավանականությունը\" դաշտի համար:" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Րոպեները սխալ ձևաչափով են մուտքագրված:" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Մուտքագրեք րոպեները:" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Հղումը նորության վրա ճիշտ չէ մուտքագրված: Մուտքագրեք վավեր URL:" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Վերբեռնվող նկարի չափը չպետք է գերազանցի 2 Մեգաբայթը:" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Վերբեռնման համար նշված նկարները վնասված են կամ չունեն ճիշտ ձևաչափ: Ընդունելի ձևաչափերն են` .JPG, .PNG և .GIF:" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Վերբեռնման համար նշված նկարները վնասված են կամ չունեն ճիշտ ձևաչափ:" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Նշեք վավեր արժեք \"Աղբյուրի Հավաստիությունը\" դաշտի համար:" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Նշեք վավեր արժեք \"Աղբյուրի Հավաստիությունը\" դաշտի համար:" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Վերնագիրը պետք է պարունակի առնվազն 3 և առավելագույնը` 200 նիշ:" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Մուտքագրեք Վերնագիրը:" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Նշեք վավեր արժեք \"Հավաստել այս Ահազանգը?\"-ի համար:" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Նշեք վավեր արժեք \"Հավաստել այս Ահազանգը?\"-ի համար:" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Հղումը տեսահոլովակի վրա ճիշտ չէ մուտքագրված: Մուտքագրեք վավեր URL:" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Լայնությունը ճիշտ չէ մուտքագրված:" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Լայնությունը մուտքագրված չէ: Քարտեզի վրա նշեք տեղանքը:" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Լեզուն ճիշտ չէ մուտքագրված: " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Ահազանգն արդեն ունի այս լեզվով թարգմանություն:" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Լեզուն ճիշտ չէ մուտքագրված: " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Ահազանգը և նրա թարգմանությունը միևնույն լեզվով են:" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Նշեք լեզուն:" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Տեղանքի անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 200 նիշ:" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Մուտքագրեք տեղանքի անվանումը:" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Երկայնությունը ճիշտ չէ մուտքագրված:" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Երկայնությունը մուտքագրված չէ: Քարտեզի վրա նշեք տեղանքը:" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Էլ-փոստի դաշտում նշված հասցեն ճիշտ չէ:" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Էլ-փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 64 նիշ:" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Անունը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Ազգանունը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Նշեք վավեր ամսաթիվ \"Մինչ\" դաշտի համար:" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Նշեք վավեր ամսաթիվ \"Մինչ\" դաշտի համար: Այն չի կարող նորկայացնել ավելի ուշ ամսաթիվ, քան այսօր է:" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "\"Սկսած\" դաշտում նշված ամսաթիվը չի կարող մեծ լինել \"Մինչ\" դաշտում նշված ամսաթվից:" diff --git a/application/i18n/po/po-hy_AM/reporters.po b/application/i18n/po/po-hy_AM/reporters.po new file mode 100644 index 0000000000..62683b0ac3 --- /dev/null +++ b/application/i18n/po/po-hy_AM/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude?" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level?" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level?" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude?" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/reports.po b/application/i18n/po/po-hy_AM/reports.po new file mode 100644 index 0000000000..8642971810 --- /dev/null +++ b/application/i18n/po/po-hy_AM/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, hy_AM/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hy_AM\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-hy_AM/roles.po b/application/i18n/po/po-hy_AM/roles.po new file mode 100644 index 0000000000..96458414c9 --- /dev/null +++ b/application/i18n/po/po-hy_AM/roles.po @@ -0,0 +1,58 @@ +#. extracted from en_US/roles.php, hy_AM/roles.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: hy_AM\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-hy_AM/settings.po b/application/i18n/po/po-hy_AM/settings.po new file mode 100644 index 0000000000..9cf1a69479 --- /dev/null +++ b/application/i18n/po/po-hy_AM/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "\"Թույլատրե՞լ օգտագործողներին մեկնաբանել ահազանգերը\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "\"Թույլատրե՞լ օգտագործողներին մեկնաբանել ահազանգերը\" դաշտի արժեքը նշված չէ:" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "\"Ցուցադրե՞լ RSS լրահոսը կայքում\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "\"Ցուցադրե՞լ RSS լրահոսը կայքում\" դաշտի արժեքը նշված չէ:" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "\"Թույլատրե՞լ օգտագործողներին ահազանգել\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "\"Թույլատրե՞լ օգտագործողներին ահազանգել\" դաշտի արժեքը նշված չէ:" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "\"Ուղարկել կայքի վիճակագրությունը\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "\"Ուղարկել կայքի վիճակագրությունը\" դաշտի արժեքը նշված չէ:" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Մուտքագրեք Akismet դաշտի համար վավեր արժեք:" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet դաշտը չի պարունակում վավեր արժեք:" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Ձեր սերվերը թույլ չի տալիս օգտագործել մաքուր URL-ներ: Դուք պետք է փոփոխություններ կատարեք Ձեր սերվերի կարգավորումներում: Ավելի մանրամասն կարող եք կարդալ այստեղ" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Հնարավորություն է տալիս դիմել Ushahidi-ին առանց հասցեի տողում նշելով \"index.php\":" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Թույլատրել մաքուր URL-ներ" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Մաքուր URL-ներ" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Clickatell API Համարը պետք է պարունակի առավելագույնը 20 նիշ:" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Մուտքագրեք Clickatell API Համարը:" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Clickatell գաղտնաբառը պետք է պարունակի առնվազն 5 և առավելագույնը` 50 նիշ:" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Մուտքագրեք Clickatell գաղտնաբառը:" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Clickatell Օգտագործողի Անունը պետք է պարունակի առավելագույնը 50 նիշ:" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Մուտքագրեք Clickatell Օգտագործողի Անունը:" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Ճշգրտել Քարտեզը" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Լռությամբ վայրը" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Մուտքագրեք գույնի վավեր արժեք:" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Գույնի երկարությունը պետք է լինի 6 նիշ:" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Մուտքագրեք գույնի արժեքը:" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Լռությամբ քարտեզի տեսքը" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Լռությամբ քարտեզի Zoom-ի մակարդակը" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Ստանալ քաղաքների անունները ԳեոԱնուններից" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Էլ. փոստի սերվերի Host-ը չափազանց երկար է:" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Մուտքագրեք Էլ. փոստի սերվերի Host-ը:" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Էլ. փոստի սերվերի Գաղտնաբառը պետք է պարունակի առնվազն 5 և առավելագույնը` 50 նիշ:" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Մուտքագրեք Էլ. փոստի սերվերի Գաղտնաբառը:" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Էլ. փոստի սերվերի Պորտի համարը չափազանց երկար է:" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Էլ. փոստի սերվերի Պորտի համարը պետք է պարունակի միայն թվեր:" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Էլ. փոստի սերվերի Տիպը չափազանց երկար է:" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Մուտքագրեք Էլ. փոստի սերվերի Տիպը:" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Էլ. փոստի սերվերի Օգտագործողի անունը պետք է պարունակի առավելագույնը 50 նիշ:" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Մուտքագրեք Էլ. փոստի սերվերի Օգտագործողի անունը:" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Google Analytics դաշտը պետք է պարունակի վավեր Web Property ID UA-XXXXX-XX ձևաչափով:" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "\"Ահազանգերի քանակը մեկ էջում (կայքում)\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Մուտքագրեք \"Ահազանգերի քանակը մեկ էջում (կայքում)\":" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "\"Ահազանգերի քանակը մեկ էջում (ադմինիստրատորի վահանակում)\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Մուտքագրեք \"Ահազանգերի քանակը մեկ էջում (ադմինիստրատորի վահանակում)\":" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Ընտրեք քարտեզի ապահովման աղբյուրը, ստացեք API բանալի ապահովողի կայքից և մուտքագրեք այդ API բանալին" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoom-ի մակարդակը" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Ընտրեք քարտեզի ապահովման աղբյուրը" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Մուտքագրեք ստացված API բանալին" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Ստացեք API բանալին" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Ընտրեք քարտեզի ապահովման աղբյուրը, ստացեք API բանալի ապահովողի կայքից և մուտքագրեք այդ API բանալին" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Քարտեզի աղբյուրը" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Քարտեզի Կարգավորումներ" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Համակարգը ներառու՞մ է մի քանի երկրներ." + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Ընտրեք լռությամբ երկիրը" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Նշեք քարտեզի վրա ճշգրիտ վայրը" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Կլաստերավորե՞լ ահազանգերը քարտեզի վրա" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Թույլատրե՞լ օգտագործողներին մեկնաբանել ահազանգերը" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Ցուցադրե՞լ RSS լրահոսը կայքում" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Թույլատրե՞լ օգտագործողներին ահազանգել" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet Բանալի" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Բոլոր կատեգորիաների համար լռությամբ գույնը" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Ցուցադրել \"Կապ\" էջը" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Ցուցադրել \"Ինչպե՞ս օգնել\" էջը" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Ծանուցումների էլ. փոստի հասցեն" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Որպեսզի էլ. փոստով ստանաք ահազանգերը, կարգավորեք Ձեր էլ. փոստի պարամետրերը." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Կայքի էլ. փոստի հասցեն" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Ահազանգերի քանակը մեկ էջում (կայքում)" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Ահազանգերի քանակը մեկ էջում (ադմինիստրատորի վահանակում)" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Պաշտպանեք ՍՊԱՄ-ից, օգտագործելով AkismetAutomattic կողմից.
Դուք կարող եք ստանալ անվճար API բանալի գրանցելով WordPress.com հաշիվ" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica իրավագրերը" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica կայքը " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Կայքի լեզուն" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Կայքի Անվանումը" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Ուղարկել կայքի վիճակագրությունը API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Կայքի Վերնագիրը" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Կայքի կարգավորումներ" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter իրավագրերը" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Հեշտեգեր - բաժանեք ստորակետերով " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Կայքի էլ. փոստի դաշտում նշված հասցեն ճիշտ չէ:" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Կայքի էլ. փոստի դաշտում կարող եք մուտքագրել առնվազն 4 և առավելագույնը` 100 նիշ:" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Կայքի Անվանումը պետք է պարունակի առնվազն 3 և առավելագույնը` 50 նիշ:" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Մուտքագրեք Կայքի Անվանումը" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Կայքի Վերնագիրը պետք է պարունակի առնվազն 3 և առավելագույնը` 100 նիշ:" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Մուտքագրեք Կայքի Վերնագիրը" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Ձեր Clickatell API Համարը" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Ստուգեք Ձեր Clickatell Կրեդիտի Հաշվեկշիռը" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Բեռնել Կրեդիտի Հաշվեկշիռը" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Ձեր Clickatell գաղտնաբառը" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Միացեք Clickatell ծառայությանը հետևյալ հղման միջոցով" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Ստորև մուտքագրեք Clickatell-ի Ձեր տվյալները" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Ձեր Clickatell Օգտագործողի Անունը" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Մուտքագրեք հեռախոսահամարը(ները), որը միացված է FrontlineSMS-ին:" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Համարը մուտքագրեք առանց որևէ + կամ - նշանների" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Տարբերակ 1: Օգտագործել Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Տարբերակ 2: Օգտագործել Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Կարճ հաղորդագրությունների (SMS) կարգավորումներ" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "\"Հեռախոսահամար 1\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "\"Հեռախոսահամար 1\" դաշտը պետք է պարունակի միայն թվեր:" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "\"Հեռախոսահամար 2\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "\"Հեռախոսահամար 2\" դաշտը պետք է պարունակի միայն թվեր:" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "\"Հեռախոսահամար 3\" դաշտը չի պարունակում վավեր արժեք:" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "\"Հեռախոսահամար 3\" դաշտը պետք է պարունակի միայն թվեր:" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/sharing.po b/application/i18n/po/po-hy_AM/sharing.po new file mode 100644 index 0000000000..dc8a56d7cf --- /dev/null +++ b/application/i18n/po/po-hy_AM/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Մուտքի ամսաթիվ" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Ավելացման ամսաթիվ" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Վերջին այցելությունը" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Գույնի դաշտը պետք է պարունակի 6 նիշ:" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Մուտքագրեք գույնը:" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Նշված կայքի հասցեն արդեն գոյություն ունի:" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Մուտքագրեք կայքի հասցեն:" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Մուտքագրված կայքի հասցեն վավեր չէ:" diff --git a/application/i18n/po/po-hy_AM/stats.po b/application/i18n/po/po-hy_AM/stats.po new file mode 100644 index 0000000000..93c2698812 --- /dev/null +++ b/application/i18n/po/po-hy_AM/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Հաստատված" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Կատեգորիաներ" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Կատեգորիաների ազդեցությունը" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Այս գրաֆիկը հնարավորություն է տալիս նշված ժամանակահատվածում գծայնորեն դիտել ահազանգերը ըստ կատեգորիաների: Տեղաշարժելով ձախից աջ, կարող եք դիտել տարբեր կատեգորիաների համեմատությունը: Տեղաշարժելով մկնիկը գրաֆիկի վրայով, կարող եք դիտել մանրամասները:" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Ընտրեք ժամանակային միջակայքը" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Երկրներ" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Երկիր" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Ըստ երկրների" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Ողջույն: Սա վիճակագրության բաժինն է: Օգտվեք հղումներից համապատասխան վիճակագրությունը դիտելու համար:" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Սխալ" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Բառացանկ" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Հիթերի վիճակագրություն" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Պարզաբանում" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Էջերի դիտումներ" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Կայքի այցելուների կողմից դիտված էջերի ընդհանուր քանակը:" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Ահազանգեր" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Ահազանգերի կատեգորիաները" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Ահազանգերի վիճակագրություն" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Ահազանգերի կարգավիճակը" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Ահազանգեր" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Վիճակագրությունը պատրաստ չէ" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 ամիս" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 ամիս" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 ամիս" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Բոլորը" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Չհաստատված" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Ունիկալ Այցելուներ" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Կայքի այցելուների քանակը: Ունիկալ Այցելուները որոշվում են cookie-ների միջոցով: Եթե այցելուի մոտ cookie-ներ արգելափակված են, ապա նրանք հաշվառվում են օգտագործելով IP հասցեն, դիտարկիչը, օպերացիոն համակարգը և այլն:" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Չստուգված" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Ստուգված" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Այցելությունների վիճակագրություն" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Այցելություններ" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Այցելությունը ունիկալ այցելուի գրանցումն է իր վերջին էջի դիտումից ավելի քան 30 րոպե հետո:" diff --git a/application/i18n/po/po-hy_AM/tooltips.po b/application/i18n/po/po-hy_AM/tooltips.po new file mode 100644 index 0000000000..f54666fcff --- /dev/null +++ b/application/i18n/po/po-hy_AM/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Ձեր էլ. փոստի հասցեն" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Ձեր անուն ազգանունը" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Եթե ընտրեք 'Այո', ապա էլ. փոստի միջոցով կստանաք ծանուցումներ նոր ահազանգերի և մեկնաբանությունների մասին:" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Ձեր գաղտնաբառը: Դատարկ թողեք այս դաշտը, եթե չեք ցանկանում այն փոխել:" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Ձեր օգտագործողի անունը հնարավոր չէ փոփոխել:" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "էլ. փոստի հասցեն, որը կօգտագործվի էլ. փոստով ծանուցումներ ուղարկելու համար:" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Թույլատրել քարտեզի վրա մեկից ավելի ահազանգերի ցուցադրումը մեկ կետով:" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Թույլատրել օգտագործողներին մեկնաբանել ահազանգերը հիմնական կայքում:" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Ցուցադրել RSS լրահոսը հիմնական կայքում:" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Թույլատրել օգտագործողներին ահազանգել կայքի ֆորմայի միջոցով:" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Կարգավորել քարտեզը տեղանքի արտապատկերման համար:" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Ընտրել մեկ գույն կայքում բոլոր կատեգորիաների համար:" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Երկիրը, որի համար նախատեսված է աշխատեցնել համակարգը:" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Հիմնական կայքում ցուցադրել կամ ոչ 'Կապ' էջի հղումը:" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Հիմնական կայքում ցուցադրել կամ ոչ 'Ինչպե՞ս օգնել' հղումը:" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Մեկ էջում ցուցադրվող ահազանգերի քանակը հիմնական կայքում:" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Մեկ էջում ցուցադրվող ահազանգերի քանակը ադմինիստրատորի վահանակում:" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Մուտքային հաղորդագրությունների հաբը:" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Սինքրոնացնում է հաբի հաղորդագրությունները Ushahidi պլատֆորմի հետ:" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Հեռախոսահամարները, որոնց միջոցով ստացվում են տեքստային հաղորդագրությունները:" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Հետևում է կայքի այցելություններին: Տրամադրում է մանրամասն վիճակագրություն:" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Ընտրեք լեզուն, որը կօգտագործվի կայքը ցուցադրելու համար:" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Որոշել` որ քարտեզը պետք է օգտագործվի կայքում:" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Որտեղ է գտնվում էլ. փոստը:" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Ահազանգերը ստացող էլ. փոստի հասցեի գաղտնաբառը:" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Անհրաժեշտ է նշել էլ. փոստի հասցեի հետ կապ հաստատելու համար:" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Անհրաժեշտ է հաղորդագրությունների փոխանակումը ավելի պաշտպանված դարձնելու համար:" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Անհրաժեշտ է նշել սերվերից էլեկտրոնային նամակների ստացումը ապահովելու համար:" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Այս էլ. փոստի հասցեին կուղարկվեն ահազանգերը:" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Հնարավորություն է տալիս ստանալ ահազանգերի վիճակագրությունը API-ի միջոցով:" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "էլ. փոստի հասցեն, ուր կուղարկվեն էլ. փոստով ահազանգերը և կապի ֆորմայից հաղորդագրությունները:" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Անվանումը, որը երևում է հիմնական կայքի վերևի մասում:" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Մի քանի բառով նկարագրեք կայքը:" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Նշել Twitter-ի hashtag-ը:" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/ui_admin.po b/application/i18n/po/po-hy_AM/ui_admin.po new file mode 100644 index 0000000000..c0fef7bc2b --- /dev/null +++ b/application/i18n/po/po-hy_AM/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Մուտքը մերժված է: Սխալ օգտագործողի անուն կամ գաղտնաբառ:" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Մուտքը մերժված է: Կայքի սերվերը այս պահին ծանրաբեռնված է: Փորձեք մի փոքր ուշ:" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Գործողություններ" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "ավելացվել է" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "ավելացվել է/խմբագրվել է" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Ադմինիստրատոր" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Անանուն" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API-ն արգելափակված է" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API-ի լոգերը" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Հանել արգելափակումից" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Բոլորը հանել արգելափակումից" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "Հաստատված է" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Հեղինակ" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Հեղինակի էլ. փոստը" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Կատեգորիաներ" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Գրաֆիկի ցուցադրման սխալ" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Ստուգեք Ձեր հաղորդագրությունը" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Ստուգեք համարը" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Ստուգեք Ձեր SMS կարգավորումները" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Քաղաքներ բեռնվել են" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "կոդ" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Կոդի վերսիան սինքրոնացված չէ:" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Մեկնաբանություններ" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Ձեր ծանուցումների հաստատման կոդը հետևյալն է` " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Օգտագործողը" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Երկիրը չի գտնվել" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "ստեղծված/խմբագրված" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Ստեղծել Ահազանգ" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Ամենօրյա" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Վահանակ" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "տվյալների հենք" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Ամսաթիվ և Ժամ" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Տվյալների հենքի վերսիան սինքրոնացված չէ:" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "հեռացված" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Հեռացնել" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Ցուցադրում" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Նկարագրություն" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Բեռնել Ահազանգերը" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Խմբագրել" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Էլ. փոստ" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Գեոկոդավորման սխալ: HTTP սխալ" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP գրադարանը տեղադրված չէ" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Սխալ" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Տեղի է ունեցել սխալ, հնարավոր չէ ուղարկել միջադեպը" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Վեց ժամը մեկ" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Տասներկու ժամը մեկ" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Հաճախակի Տրվող Հարցեր" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "լրահոս" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Հետադարձ կապ" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "լրահոսեր" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Լռությամբ արժեք" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Բարձրությունը (տողերով)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Նիշերի մաքսիմալ քանակը" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Դաշտի անվանումը" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Վերբեռնված ֆայլը չի գտնվել" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Չհաջողվեց կարդալու համար բացել ֆայլը" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Այդ Ֆորման գոյություն չունի:" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Ֆորում" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Տեքստի դաշտ (Ազատ տեքստ)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Ից" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Ից" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Գեոանունների Սահմանված ժամանակի ավարտի սխալ" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Ստանալ օգնություն" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Գործողություններ" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Ավելացնել/Խմբագրել" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Էլ. փոստ" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Օգտագործողների Ղեկավարում" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Դեր" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Օգտագործող" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "օգնություն" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Ամեն ժամ" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Միջադեպերի լրահոս" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Օբյեկտ" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Օբյեկտներ" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Օբյեկտի մանրամասներ" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Սխալ Պարամետր" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP Հասցե" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Սա ամսաթվի՞ դաշտ է:" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Էլ. փոստի հասցե`" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Անուն, ազգանուն`" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Գաղտնաբառ`" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Դեր`" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Օգտագործողի անուն`" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Շերտավորումներ" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Մոդերատոր" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Դուրս գալ" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Լոգեր" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Ղեկավարել" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Օգտագործողների Ղեկավարում" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "նշված է որպես ոչ ՍՊԱՄ" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "նշված է որպես ՍՊԱՄ" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "նման փաստաթուղթ չգտնվեց" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Հաղորդագրություն" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Հաղորդագրություններ" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica Հաղորդագրություններ" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter Հաղորդագրություններ" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Ձեր հաղորդագրությունը ուղարկվեց:" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Բացակայում է պարամետր" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Մոդերատոր" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "փոփոխված" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "տեղափոխել ներքև" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "տեղափոխել վերև" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Բազմակի Օբյեկտներ" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Իմ պրոֆիլը" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Նոր Գաղտնաբառը" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Ոչ" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Ծանուցում" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Ռեգիստրի նկատմամբ զգայուն չէ (տարբերություն չկա` մեծատառ, թե փոքրատառ)" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Չի գտնվել" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Սխալ չկա" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Ցուցադրման համար արդյունքներ չկան:" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "էջ" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "Էջեր" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Էջը չի գտնվել" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Օգտագործված պարամետրեր" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Գաղտնաբառ" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Գաղտնաբառը փոխվեց" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Հարգելի" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Մենք գաղտնաբառը փոխելու խնդրանք ենք ստացել ոստացել հետևյալ օգտագործողի համար`" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Որպեսզի փոխեք գաղտնաբառը, սեղմեք ստորև բերված հղման վրա (կամ պատճենեք Ձեր դիտարկիչի հասցեի դաշտում):" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Ինչպես Դուք էիք խնդրել, Ձեր գաղտնաբառը այժմ փոխվել է: Ձեր նոր տվյալները հետևյալն են`" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi գաղտնաբառը փոխվեց" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Հեռախոս" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Տվյալները չեն ուղարկվել" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "կարդալ" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Հիմնավորվածություն" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Ահազանգողներ" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Ահազանգողների Մակարդակներ" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Ահազանգեր" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Անհրաժեծտ է" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Արդյունքներ" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Փնտրել" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "փնտրվում է" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Ընտրեք Դաշտի տիպը ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Ընտրեք որևէ մեկը" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Ուղարկող" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Այս հաղորդագրությունը ուղարկվել է Ձեր կայքից` " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Կարգավորումներ" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Ցուցադրվող էջը" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Ցուցադրվող արդյունքները" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Վիճակագրություն" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Վիճակագրություն" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Վիճակագրական տվյալների հավաքումը ձախողվեց:" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Սուպեր Ադմինիստրատոր" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Հանձնարարությունը կատարվել է" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Տեքստի դաշտ (Մեկ տողով)" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Անվանում" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Օգտագործողների Ղեկավարում" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "մինչև" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Գրառումնեւի Քանակ" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "մինչև" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Թարգմանել Ահազանգերը" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "հաստատված չէ" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Անհայտ" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "չկարդացված" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Սեղմեք այստեղ համակարգը թարմացնելու համար" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Թարմացնել Ushahidi համակարգը" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Թարմացնել Ushahidi-ի կարգավիճակը" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Վերբեռնել Ահազանգերը" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Օգտագործողներ" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Վերսիա" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " առկա է թարմացման համար:" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Դիտել կայքը" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Բարի գալուստ, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Այո" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Ձեր փնտրումը" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/ui_main.po b/application/i18n/po/po-hy_AM/ui_main.po new file mode 100644 index 0000000000..78e571b60b --- /dev/null +++ b/application/i18n/po/po-hy_AM/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Մեր մասին " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Մուտք" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Մուտքի սահմանափակումներ" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Օգտագործողի անուն" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Գործողություններ" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Այս գործողությունը հնարավոր չէ չեղարկել: Համոզվա՞ծ եք, որ ուզում եք շարունակել:" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Ավելացնել" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Ավելացրել է" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Լրացուցիչ հաղորդումներ" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Ավելացնել/Խմբագրել" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Ավելացնել Դաշտ" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Ավելացնել Լեզու" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Ավելացնել Նորը" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Ավելացնել Նոր Կատեգորիա" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Ավելացնել Թարգմանություն" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Ադմինիստրացիա" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Ստանալ Ծանուցումներ" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Ծանուցել ինձ, եթե միջադեպի մասին հաղորդագրությունը դրված է նշված կետի շուրջ:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Հիշել" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Էլեկտրոնային փոստին`" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "մուտքագրեք էլեկտրոնային փոստի հասցեն" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "մուտքագրեք բջջային հեռախոսահամարը երկրի կոդով" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Ստանալ ծանուցումներ" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Բջջային հեռախոսահամարին`" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Կամ նշեք քարտեզի վրա կետ, որպեսզի ստանաք ծանուցումներ, երբ կստացվեն ահազանգեր միջադեպերի վերաբերյալ այդ կետից 20 կիլոմետր շառավղով տիրույթում:" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS (պատճենեք հղումը)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Ընտրեք քաղաքը" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Քայլ 1: Ընտրեք Ձեր քաղաքը կամ տեղանքը`" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Քայլ 2: Ուղարկեք ծանուցումներ իմ`" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Հաստատել նախորդ ծանուցման հայտը" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Ձեր ծանուցման կարգավորումները հիշվել են:" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Բոլորը" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Թույլատրված է" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Բոլոր կատեգորիաները" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "և" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Հաստատել" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Հաստատված է" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Հաստատված Ահազանգեր" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Հաստատել այս Ահազանգը" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Մոտավորապես" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "մոտ" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Սպասում է Հաստատման" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Սպասում է Հավաստիացման" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Բլոգ" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Չեղարկել" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Կատեգորիաներ" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Կատեգորիա" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Կատեգորիաների ֆիլտր" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Կատեգորիա. " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Կատեգորիայի անուն" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Ընտրեք" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Ընտրեք բեռնման տվյալները" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Ընտրեք դաշտի տիպը" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Մաքուր URL-ներ" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Փակել" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Կլաստերներ" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Գույն" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Մեկնաբանություններ" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Մեկնաբանության մանրամասներ" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Կարգավորումները հիշվել են:" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Կարգավորել" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Կապ" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright В© 2010 Ushahidi.com. All Rights Reserved." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Ստեղծել" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Ստեղծել/Խմբագրել" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Ստեղծել Նորը" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Ստեղծել Ահազանգ" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Հավաստիություն" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Տվյալներ" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Ամսաթիվ" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Ամսաթիվ և Ժամ" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Նայրոբի, Քենիա" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Հեռացնել" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Հեռացված է" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Հեռացված" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Հեռացումը արգելափակված է" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Հեռացնել այս Ահազանգը" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Հեռացնել ՍՊԱՄը" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Դեմո" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Նկարագրություն" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Օրինակ` Մաշտոցի պողոտայի և Արամի փողոցի հատման մասում, այսինչ խանութի դիմաց:" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Մանրամասներ" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Ուղղակի Ահազանգ" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Արգելափակված է" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Մերժել" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Բեռնել Ահազանգերը" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Խմբագրել" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Խմբագրել ֆորմայի դաշտերը" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Խմբագրել Ահազանգը" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Էլ. փոստ" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Էլ. փոստի հասցե" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Էլ. փոստի սերվերի կարգավորումներ" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Էլ. փոստի սերվերի Host-ը" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Էլ. փոստի սերվերի Գաղտնաբառը" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Էլ. փոստի սերվերի Պորտի համարը" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Էլ. փոստի սերվերի SSL աջակցում" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Էլ. փոստի սերվերի Տիպը" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Էլ. փոստի սերվերի Օգտագործողի անունը" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "այնպես որ Ձեր կարգավորումները պետք է կապվեն այս էլ. փոստի հասցեի հետ" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Որպեսզի ստանաք ահազանգերը էլ. փոստով, մուտքագրեք ստորև Ձեր էլ. փոստի տվյալները: Նշում. նամակները ստացվելու են Ձեր" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Որոշ սերվերներ պահանջում են ամբողջական էլ. փոստի հասցե" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Էլ. փոստի գաղտնաբառը" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Ընդհանուր պորտի համարներ` 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Օրինակներ` mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Օրինակներ` pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Թույլատրել կամ արգելել SSL միացումներ" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "դեպի" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Տեղի է ունեցել սխալ" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Օրինակ" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Հայաստան" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Լրահոս" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Թողեք Ձեր կարծիքը" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Լրահոսեր" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Լրահոս:" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Լրահոսի տարրեր" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Լրահոսի անվանում" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Լրահոսի URL հասցեն" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Չօգտագործված դաշտեր" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Ֆայլ" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Ֆիլտրեր" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Փնտրել" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Փնտրել դեպքի վայրը" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Անուն" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Մոռացե՞լ եք գաղտնաբառը:" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Ֆորմա" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Ֆորմաներ" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Ֆորմայի նկարագրությունը" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Խմբագրել այս Ֆորման" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Ֆորման" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Ֆորմայի վերնագիրը" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Լրիվ անունը" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation-ը հասանելի է" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Ինչպե՞ս օգնել" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "թաքցնել այս հաղորդագրությունը" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Գլխավոր էջ" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Ինչպես Ահազանգել" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Նկար" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Նկար/Նախշապատկեր" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Մուտքային պահոց" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Միջադեպ" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Միջադեպեր մոտակայքում" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Միջադեպի վայրը" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Ներառել" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Ներառել Կատեգորիաները" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Ներառել հնարավորին չափ շատ մանրամասներ" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Ներառել Լայնությունը" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Ներառել տեղանքի մասին ինֆորմացիան" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Ներառել Երկայնությունը" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Մուտքային Մեդիա" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Ինֆորմացիայի գնահատում" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Մուտքագրեք ճշգրիտ տեղաբաշխումը" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Ի պատասխան" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP հասցե" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Տարր" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "Տարրեր" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Տարրի մանրամասներ" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Տարրի վերնագիր" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Բանալի" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML Ֆայլ" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Վերբեռնել KMZ/KML ֆայլ" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Լեզու" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Վերջին" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Վերջին Ամիսը" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Ազգանուն" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Վերջին Տարին" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Լայնություն" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Շերտեր" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Այլ Շերտեր" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Շերտը" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Շերտի Անվանումը" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Շերտի URL-ն" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Մակարդակ" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Մակարդակը" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Մակարդակի Անվանումը" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Սահմանափակված է" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Հղում" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Վայր" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Վայրեր" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Քաղաք, Նահանգ և/կամ Երկիր" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Երկայնություն" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Քարտեզ" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Նշել որպես կարդացված" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Նշել որպես չկարդացված" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Մեդիա" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Մեդիա Ֆիլտր" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Հաղորդագրություն" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Հաղորդագրություններ" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Հաղորդագրության մանրամասներ" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Փոփոխել" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Փոփոխել Ամսաթիվը" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Ավելին" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Պարունակում է արդյոք Ushahidi-ի այս օգտագործումը մեկից ավելի երկրներ" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Անվանում" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Նոր" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Նորություններ" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Լրահոսեր" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Նորությունների Աղբյուր" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Նոր Կատեգորիա" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Նոր Գաղտնաբառ" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Նոր Ահազանգ" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Հաջորդը" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Ոչ" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Նշումներ" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Հաստատված չէ" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Հաստատված չէ" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Սպամ չէ" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Արդյունքներ չկան" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Պաշտոնական և հիմնական նորություններ" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Ընտրանք" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Ոչ պարտադիր" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Ընտրանքներ" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Կազմակերպություն" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Կազմակերպություններ" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Կազմակերպության Նկարագրությունը" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Կազմակերպության Էլ. փոստի հասցեն" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Կազմակերպությունը" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Կազմակերպության Անվանումը" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Կազմակերպության Հեռախոսահամարը (1)" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Կազմակերպության Հեռախոսահամարը (2)" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Կազմակերպության Կայքը" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Օրիգինալ" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Օրիգինալ Նկարագրություն" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Օրիգինալ Վերնագիր" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "ԱՅԼ USHAHIDI ՕՐԻՆԱԿՆԵՐ" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Ելքային պահոց" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Ելքային" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Էջ" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Էջեր" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Էջի Նկարագրություն" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Էջը" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Էջի վահանակի անվանումը" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Էջի վերնագիրը" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Ծնող կատեգորիա" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Գաղտնաբառ" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Կրկին մուքագրեք գաղտնաբառը" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Մոռացե՞լ եք գաղտնաբառը" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Նոր գաղտնաբառը ուղարկվել է Ձեր էլեկտրոնային փոստին:" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Դուրս չգալ համակարգից այս համակարգչում" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Անցած Ամիս" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Անցած Տարի" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Առկախ" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Անձնական տվյալներ Կամածին." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Հեռախոսահամար" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Նկարներ" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Նկարներ և Տեսահոլովակներ" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Փնտրեք տեղանքը կամ քարտեզի վրա կետ դրեք տեղանքի ճշգրիտ նշման համար:" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Վերարտադրել" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Նշում" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Արտապատկերել" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Արտապատկերել Տարրը" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Արտապատկերել Հաղորդագրությունը" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Նախորդ" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Ձեր պրոֆիլը հիշվել է" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Արագ Վիճակագրություն" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Վարկանիշ" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Կարդալ" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Ստանալ" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Ստանալ (ումից)." + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Ստանալ Ծանուցումներ" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Վերջին Ահազանգերը" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Թարմացնել Լրահոսը" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "հեռացնել" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Պատասխանել" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Ահազանգ" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Ահազանգողը" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Ահազանգողներ" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Ահազանգի գրանցման Ամսաթիվը" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Ահազանգողի Էլ. փոստի հասցեն" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Ահազանգողի Անունը" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Ահազանգողը" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Ահազանգողի IP Հասցեն" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Ահազանգողի Ազգանունը" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Ահազանգողի Մակարդակը" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Ահազանգողի Մակարդակներ" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Ահազանգողի Հեռախոսահամարը" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Ահազանգեր" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Կցել ֆայլ" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Ուղարկել" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Կատեգորիաներ" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Ամսաթիվ" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Նկարագրություն" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Ահազանգերը կբեռնվեն CSV ձևաչափով" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Էլ. փոստ" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Գտնել տեղանք" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Անուն" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Ազգանուն" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Ճշգրտել տեղանքի անվանումը" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Հղումներ նորությունների վրա" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Լրացուցիչ տեղեկություններ" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Վերբեռնել նկարներ" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Վերադառնալ Ահազանգերի էջ" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Ընտրել քաղաք" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Ձեր Ահազանգը ընդունվել է: Անհրաժեշտության դեպքում մենք կկապվենք Ձեզ հետ:" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Նոր Ահազանգ" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Ժամ" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Ժամային սանդղակ" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Ահազանգի Վերնագիր" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Հղումներ տեսահոլովակների վրա" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Ահազանգել միջադեպի մասին" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Ահազանգի Մանրամասներ" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Ուղարկելով կարճ հաղորդագրություն հետևյալ հեռախոսահամարին` " + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Ուղարկելով էլեկտրոնային նամակ հետևյալ հասցեին` " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Ուղարկելով թվիտտերում hashtag-ով հաղորդագրություն" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Լրացնելով Web ֆորման" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Ձեր Ահազանգը հիշվել է" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Ահազանգի Վերնագիրը" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Հայցել ավելի շատ տեղեկություն" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Հայցել վայրը" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Պահանջներ" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Թարմացնել Գաղտնաբառը" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Ստանալ ընտրված երկրի քազաքների անունները" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Հիշել" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Հիշվել է" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Հիշել և Փակել" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Հիշել Ահազանգը" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Ժամատախտակ" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Պլանավորող" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Օր" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Ժամ" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Պլանավորողի Log-երը" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Րոպե" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Շաբաթվա Օր" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "ՓՆՏՐԵԼ" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Փնտրման Արդյունքները" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Պաշտպանության Կոդը" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Ընտրել Բոլորը" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Ընտրել դաշտի տիպ" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Ընտրել ֆորմայի տիպ" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Ընտրել քարտեզի վրա" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Ընտրել այնքան, որքան պետք է" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Ընտրեք առնվազն մեկ տարր" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Ընտրեք Թեման" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Ուղարկել" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Ուղարկվում է դեպի" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Ուղարկված է" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Ուղարկվել է (կողմից)." + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Սերվերի հասցեն" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Սերվերի տիպը" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Ծառայություն" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Ծառայության Օգտագործողի Անուն" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Ծառայության Օգտագործողի ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Համատեղ օգտագործել" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Համատեղ օգտագործվող տվյալներ" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Համատեղ օգտագործումը" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Կիսվել" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Ցուցադրել" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Ցուցադրել բոլորը" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Կայք" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "կայքի էլ. փոստի հասցե" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Կայքի URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Աղբյուր" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Աղբյուրի անվանում" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Աղբյուրի URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Սպամ" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL աջակցում" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "(ից)" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Քայլ" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Ահազանգել միջադեպի մասին" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Ահազանգել SMS-ի միջոցով" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Ուղարկել SMS դեպի" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "Ձեր հեռախոսին" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Հաջողվեց!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Հաջողությամբ ներմուծվեց" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Ազգանուն" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Համակարգ" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP պորտ" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Թեմաներ" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Ushahidi լռությամբ թեման" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Թեմայի կարգավորումներ" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Այս" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Այսօր" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Այս Ամիս" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Այս Տարի" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "ժամ" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Վերնագիր " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "դեպի" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Այսօր" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Այսօր`" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Թարգմանված է" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Թարգմանության նկարագրությունը" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Թարգմանության վերնագիրը" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Թարգմանել" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Թարգմանություն" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Թարգմանությունը հիշվել է" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "կարդացված չէ" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Թարմացնել լրահոսերը" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Վերբեռնել" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Վերբեռնման ֆայլը" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Վերբեռնել Ահազանգեր" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Հետևյալ ֆորմայի միջոցով Դուք կարող եք միջադեպերը ներմուծել Ushahidi համակարգ" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Պետք է պարունակի առնվազն Միջադեպի վերնագիրը և ամսաթիվը" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Նմուշ CSV Ահազանգ" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Վերբեռնումը հաջողությամբ ավարտվեց" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Օգտագործող" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Օգտագործողի անուն" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Ստուգված" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Ստուգված Ահազանգեր" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Հավաստել" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Հավաստել այս Ահազանգը" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Վերսիա" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "միջոցով" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Տեսահոլովակ" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Դիտել" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Արտապատկերումներ" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Դիտել Բոլորը" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Դիտել ամբողջ լրահոսը" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Դիտել բոլոր ահազանգերը" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Դիտել Տարրերը" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Դիտել Ահազանգը" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Դիտել Ահազանգերը" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Տեսանելի" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Սպասում է Հաստատման" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Սպասում է Հավաստիացման" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Քաշը" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Այո" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Երեկ" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-hy_AM/upgrade.po b/application/i18n/po/po-hy_AM/upgrade.po new file mode 100644 index 0000000000..f5b2d89ad7 --- /dev/null +++ b/application/i18n/po/po-hy_AM/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Armenian (Armenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/hy_AM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy_AM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "The instructions below details how to manually upgrade your Ushahidi deployment" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Step 1: Download the most recent ushahidi build from http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Step 2: Depending on the operating system running the webserver, use your preferred tool/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. All EXCEPT:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "For automatic upgrade, click on the button below" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-id_ID/alerts.po b/application/i18n/po/po-id_ID/alerts.po new file mode 100644 index 0000000000..7c43bcd5c6 --- /dev/null +++ b/application/i18n/po/po-id_ID/alerts.po @@ -0,0 +1,234 @@ +# +# Translators: +# kakaprakasa , 2013 +# Imron Fauzi , 2014 +# kakaprakasa , 2012-2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-06-10 02:32+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Format alamat surel yang tercantum pada kolom surel tidak valid ?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Alamat surel yang tercantum sudah terdaftar sebagai penerima peringatan untuk lokasi tersebut" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Panjang isian alamat surel harus minimal 4 dan tidak lebih dari 64 karakter." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Jika checkbox dicentang, isian surel tidak boleh kosong" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Cakupan penyebaran platform ini hanya dalam satu negara. Pastikan lokasi peringatan berada dalam negara %s" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Anda belum memilih lokasi yang benar pada peta" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Anda belum memilih lokasi yang benar pada peta" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Anda belum memilih lokasi yang benar pada peta" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Anda belum memilih lokasi yang benar pada peta" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Jumlah karakter pada isian Telepon Seluler salah." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Nomor telpon seluler yang dicantumkan sudah terdaftar untuk menerima peringatan dari lokasi itu." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Nomor telepon seluler pada kolom telepon seluler salah. Mohon isi hanya dengan angka termasuk kode negara." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Anda harus mencantumkan nomor telepon seluler anda atau alamat surel anda" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Jika kotak centang dicentang, isian telepon seluler tidak boleh kosong" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Anda belum menentukan radius yang benar pada peta" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Anda belum menentukan radius anda pada peta" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Anda belum menentukan penerima peringatan." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Anda telah berlangganan peringatan dengan kategori berikut ini" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Kode ini sudah pernah diverifikasi !" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Kode verifikasi ini tidak ditemukan ! Mohon periksa kembali URL yang digunakan." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Kode anda telah diverifikasi dengan benar. Anda akan menerima peringatan begitu ada kejadian." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Untuk mengkonfirmasikan permintaan peringatan anda, mohon lanjut ke" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Kembali ke laman Peringatan untuk membuat peringatan baru" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Permintaan Peringatan melalui surel anda telah dibuat dan pesan untuk memverifikasi ini telah dikirim ke" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Silakan masukan kode konfirmasi surel yang anda terima di bawah ini :" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Permintaan Peringatan melalui surel anda BELUM tersimpan !" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Permintaan Peringatan melalui surel anda telah tersimpan!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Sistem tidak bisa memroses permintaan konfirmasi anda!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Permintaan Peringatan melalui ponsel anda telah dibuat dan pesan untuk memverifikasi ini telah dikirim ke" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Silakan masukan kode konfirmasi SMS yang anda terima di telpon seluler anda di bawah ini :" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Permintaan Peringatan melalui ponsel anda BELUM tersimpan !" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Permintaan Peringatan melalui ponsel anda telah tersimpan !" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Instalasi ini tidak terkonfigurasi untuk memroses peringatan dengan benar" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Anda menerima surel ini karena anda telah berlangganan untuk memperoleh peringatan. Jika anda mau menghentikan pengiriman peringatan ini silakan ke" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Anda tidak lagi akan dikirimi peringatan dari" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Kami gagal membatalkan permintaan penghentian berlangganan anda. Mohon pastikan URL yg anda gunakan sudah benar." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "peringatan - verifikasi" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Anda tidak akan menerima peringatan dari lokasi ini sebelum anda konfirmasikan permintaan anda." diff --git a/application/i18n/po/po-id_ID/auth.po b/application/i18n/po/po-id_ID/auth.po new file mode 100644 index 0000000000..2efdafc831 --- /dev/null +++ b/application/i18n/po/po-id_ID/auth.po @@ -0,0 +1,255 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Suwandi Ahmad , 2013 +# Imron Fauzi , 2014 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-19 03:14+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Alamat surel yang Anda masukkan tidak benar." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Maaf, alamat surel ini sudah digunakan pengguna lain." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Panjang isian alamat surel setidaknya terdiri dari 4 dan tidak lebih dari 64 karakter." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Kolom isian surel wajib diisi." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Kolom nama lengkap setidaknya 3 dan tidak lebih dari 100 karakter." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Isian nama lengkap harus diisi." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Isian nama pengguna mengandung karakter yang tidak diperbolehkan." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Kolom kata sandi setidaknya harus terdiri atas 8 karakter." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Pastikan bahwa alamat surel dan kata sandi yang Anda masukkan sudah benar." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Masukkan kata sandi yang sama ke kedua kolom kata sandi." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Kolom kata sandi wajib diisi." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Kolom kata sandi setidaknya harus berisi karakter huruf, simbol # dan @, angka, garis bawah dan simbol -" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Kata sandi yang Anda masukkan salah. Silahkan coba lagi." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Kolom kata sandi setidaknya harus terdiri atas 8 karakter." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Pastikan bahwa alamat surel dan kata sandi yang Anda masukkan sudah benar." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Masukkan kata sandi yang sama ke kedua kolom kata sandi." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Kolom kata sandi wajib diisi." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Kolom kata sandi setidaknya harus berisi karakter huruf, simbol # dan @, angka, garis bawah dan tanda hubung" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Ada kesalahan saat mencoba login." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Kolom kata sandi setidaknya harus berisi 8 karakter." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Pastikan Anda sudah mengisi alamat surel dan kata sandi dengan benar." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Masukkan kata sandi yang sama dalam kedua kolom kata sandi." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Kolom kata sandi wajib diisi." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Server otentifikasi sedang mati. Coba beberapa saat lagi." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Kolom kata sandi setidaknya harus berisi karakter huruf, simbol # dan @, angka, garis bawah dan tanda hubung" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Kata sandi yang Anda masukkan pada kolom konfirmasi harus sama dengan isian pada kolom kata sandi." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Format alamat surel yang anda masukkan salah. " + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Maaf, alamat surel anda tidak terdaftar" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Kolom alamat surel wajib diisi." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Hanya superadmin yang boleh menyunting sebuah akun superadmin atau menaikkan akses user menjadi admin." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Format peran salah." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Kolom peran setidaknya terdiri dari 5 dan tidak lebih dari 30 karakter." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Anda harus tetapkan setidaknya satu peran." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Anda harus memilih ADMIN atau PENGGUNA." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Token untuk lupa kata sandi tidak benar." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Token untuk lupa kata sandi diperlukan" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Peran admin tidak boleh disunting." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Tautan di profil untuk publik hanya berisi angka dan huruf." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Maaf, tautan di profil untuk publik sudah pernah digunakan orang lain." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Tautan di profil untuk publik setidaknya terdiri atas 2 dan tidak lebih dari 100 karakter." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Pastikan Anda telah menuliskan tautan di profil untuk publik dengan benar." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Tautan di profil untuk publik wajib diisi." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Peran admin super tidak boleh disunting." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Ada potensi serangan CSRF. Apakah Anda yakin ingin membuat/menyunting seorang pengguna?" diff --git a/application/i18n/po/po-id_ID/bug.po b/application/i18n/po/po-id_ID/bug.po new file mode 100644 index 0000000000..97f58a222a --- /dev/null +++ b/application/i18n/po/po-id_ID/bug.po @@ -0,0 +1,68 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-19 03:20+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Pastikan kode keamanan yang Anda masukkan sudah benar." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Masukkan kode keamanan Anda." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Apakah Anda yakin kolom Surel sudah terisi dengan benar?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Panjang alamat surel minimal 4 dan tidak lebih dari 64 karakter." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kolom Surel harus diisi jika kotak cek dicentang." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Mohon kolom yang belum terisi dengan benar dikoreksi terlebih dahulu." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Isi kolom judul setidaknya 3 karakter." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Kolom judul tidak boleh dikosongkan." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Panjang nama setidaknya 3 karakter." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Kolom nama tidak boleh dikosongkan." diff --git a/application/i18n/po/po-id_ID/category.po b/application/i18n/po/po-id_ID/category.po new file mode 100644 index 0000000000..17a74d47ed --- /dev/null +++ b/application/i18n/po/po-id_ID/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-19 03:27+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Panjang kolom warna harus sejumlah 6 karakter." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Kolom warna tidak boleh dikosongkan." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Kolom keterangan tidak boleh dikosongkan." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Mohon pastikan ukuran gambar yang diunggah tidak lebih dari 50 KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Format gambar yang disertakan tidak diterima. Format yang berlaku hanya .JPG, .PNG dan .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Format gambar yang disertakan tidak diterima." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Panjang judul harus minimal 3 karakter tapi tidak lebih dari 80 karakter." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Kolom judul tidak boleh dikosongkan." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Anda tidak dapat mengubah sebuah kategori dengan beberapa sub-kategori menjadi sub-kategori tersendiri." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Induk kategorinya tidak ada." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Induk kategori harus berupa angka." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Induk kategori tidak bisa diubah menjadi kategori khusus" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Induk kategori tidak boleh dikosongkan." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kategori tidak boleh sama dengan induk kategori." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Kategori khusus tidak bisa dijadikan sub-kategori." diff --git a/application/i18n/po/po-id_ID/comments.po b/application/i18n/po/po-id_ID/comments.po new file mode 100644 index 0000000000..e3b1bbf147 --- /dev/null +++ b/application/i18n/po/po-id_ID/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-19 03:57+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Mohon masukan kode keamanan yang benar." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Masukan kode keamanan Anda." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Anda memasukkan kode keamanan yang salah." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Panjang nama setidaknya 3 karakter." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Nama tidak boleh dikosongkan." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Kolom komentar tidak boleh dikosongkan." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Alamat surel yang Anda masukkan salah." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Alamat surel setidaknya 4 dan tidak lebih dari 64 karakter." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Jika tanda cek tercentang, maka alamat Surel tidak boleh dikosongkan. " diff --git a/application/i18n/po/po-id_ID/contact.po b/application/i18n/po/po-id_ID/contact.po new file mode 100644 index 0000000000..5cf54162a8 --- /dev/null +++ b/application/i18n/po/po-id_ID/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-19 04:00+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Masukkan kode keamanan Anda." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Masukkan kode keamanan Anda." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Masukkan kode keamanan Anda." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Kolom Surel tidak benar." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Panjang alamat surel setidaknya 4 karakter tapi tidak lebih dari 64 karakter." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Jika tanda cek tercentang, maka Surel tidak boleh dikosongkan." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Kolom pesan tidak boleh kosong." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Panjang nama minimal 3 karakter." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Kolom Nama tidak boleh dikosongkan." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Panjang judul harus minimal 3 karakter." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Judul tidak boleh dikosongkan." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Ada kesalahan dalam proses pengiriman pesan Anda." diff --git a/application/i18n/po/po-id_ID/core.po b/application/i18n/po/po-id_ID/core.po new file mode 100644 index 0000000000..68d06c02a7 --- /dev/null +++ b/application/i18n/po/po-id_ID/core.po @@ -0,0 +1,160 @@ +# +# Translators: +# kakaprakasa , 2013 +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2015-06-09 08:28+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "Berkas konfigurasi" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "pengendali" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Driver %s untuk library %s harus diimplementasikan pada antar muka %s." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Driver %s untuk library %s tidak ditemukan." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Anda bisa kembali ke laman depan atau coba lagi." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s[%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Tidak Bisa Melengkapi Permintaan" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "pembantu" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Tipe berkas yang diinginkan, .%s, tidak diperbolehkan untuk melihat berkas konfigurasi." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Metode %s yang dipanggil dalam %s tidak benar." + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Properti %s pada class %s tidak ditemukan." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "library" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Direktori log tidak dapat digunakan untuk menulis : %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi tidak bisa menentukan pengendali untuk memroses permintaan ini: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Tentukan rute default di config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Laman yang Anda minta, %s, tidak ditemukan." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Laporkan Kejadian ini ke Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "%s, %s yang diminta tidak ditemukan." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Dijalankan dalam {executuion_time} detik, menggunakan {memory_usage} memori. Dihasilkan oleh Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Dalam satu laman permintaan Ushahidi hanya boleh ada satu masukan." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Tidak tertangani %s pada berkas %s pada baris %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "tampil" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Nama berkas untuk ditampilkan harus ditentukan sebelum memanggil render." diff --git a/application/i18n/po/po-id_ID/database.po b/application/i18n/po/po-id_ID/database.po new file mode 100644 index 0000000000..c0803d99e8 --- /dev/null +++ b/application/i18n/po/po-id_ID/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 03:32+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Galat basis data: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabel \"%s\" tidak ditemukan dalam basis data. Mohon pastikan anda menggunakan versi basis data terbaru untuk versi Ushahidi ini" diff --git a/application/i18n/po/po-id_ID/datetime.po b/application/i18n/po/po-id_ID/datetime.po new file mode 100644 index 0000000000..bf7a216b22 --- /dev/null +++ b/application/i18n/po/po-id_ID/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 03:35+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "AM" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Jum" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Jumat" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Sen" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Senin" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "PM" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sab" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sabtu" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Ming" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Minggu" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Kam" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Kamis" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Sel" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Selasa" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Rab" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Rabu" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Januari" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februari" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Maret" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mei" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mei" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juni" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juli" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Agus" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agustus" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Oktober" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Des" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Desember" diff --git a/application/i18n/po/po-id_ID/feeds.po b/application/i18n/po/po-id_ID/feeds.po new file mode 100644 index 0000000000..f2a3dbd94b --- /dev/null +++ b/application/i18n/po/po-id_ID/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 03:37+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Tanggal" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Panjang judul berita minimal 3 karakter dan tidak lebih dari 70 karakter" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Masukkan judul beritanya" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Masukkan URL dari beritanya" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Mohon pastikan URL yang dimasukkan sudah benar. Mis. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Sumber" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Judul" diff --git a/application/i18n/po/po-id_ID/footer.po b/application/i18n/po/po-id_ID/footer.po new file mode 100644 index 0000000000..d965fc58ad --- /dev/null +++ b/application/i18n/po/po-id_ID/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 03:38+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl tidak terinstal pada sistem ini." diff --git a/application/i18n/po/po-id_ID/form.po b/application/i18n/po/po-id_ID/form.po new file mode 100644 index 0000000000..d0e9902ad3 --- /dev/null +++ b/application/i18n/po/po-id_ID/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 04:01+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Nilai default yang Anda sediakan untuk kolom ini tidak benar." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Panjang Nama minimal 3 karakter tapi tidak boleh lebih dari 200 karakter." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Tinggi Kolom hanya boleh diisi angka antara 0 - 50." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Format Tanggal yang Anda masukkan salah." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Mohon hanya pilih Ya atau Tidak pada kolom Tanggal." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Panjang Nama minimal 3 karakter tapi tidak boleh lebih dari 100 karakter." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Masukan Nama Anda." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Kolom nama yang Anda masukkan sudah ada. Gunakan nama lain." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Ada kesalahan di salah satu nilai pada kolom yang wajib diisi." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Mohon hanya pilih Ya atau Tidak pada kolom yang diwajibkan." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Mohon pastikan Jenis Kolom yang Anda Pilih sudah benar." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Pilih Jenis Kolom." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Lebar Kolom hanya boleh diisi angka antara 0 - 300." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Mohon masukkan Deskripsi mengenai formulirnya." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Formulir default tidak bisa dihapus." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Silakan pilih ke formulir yang mana kolom ini akan ditambahkan." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Silakan pilih ke kolom yang mana isian ini akan ditambahkan." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Panjang nama minimal 3 karakter dan tidak boleh lebih dari 100 karakter." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Masukan nama formulir." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Sebuah formulir dengan judul sama sudah ada. Gunakan nama lain." diff --git a/application/i18n/po/po-id_ID/imap.po b/application/i18n/po/po-id_ID/imap.po new file mode 100644 index 0000000000..51e7df9423 --- /dev/null +++ b/application/i18n/po/po-id_ID/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 04:02+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Gagal mengakses aliran data IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Layanan surel tidak tersedia" diff --git a/application/i18n/po/po-id_ID/installer.po b/application/i18n/po/po-id_ID/installer.po new file mode 100644 index 0000000000..56456ab683 --- /dev/null +++ b/application/i18n/po/po-id_ID/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# kakaprakasa , 2012 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-06-10 02:39+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Lokasi Basis" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Basis data" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Induk Basis data" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Kalau anda menjalankan Ushahidi dari komputer anda sendiri, hampir pasti ini adalah \"localhost\". Jika anda menjalankan Ushahidi dari server web, anda akan mendapat info tentang mesin peladen (server) anda dari penyedia layanan hosting anda." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nama Basis data" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Nama Basis data dimana Ushahidi ingin anda jalankan" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Untuk keterangan lebih lanjut, silakan baca artikel ini di wiki yang membahas lebih rinci tentang basis data" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Bahasa bawaan (lokal)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Tiap memasang (install) Ushahidi disertai satu set terjemahan berbagai bahasa. Anda bisa juga menambahkan bahasa anda sendiri" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Matikan" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Hidupkan" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Daftar dibawah ini adalah rangkuman semua galat yg pernah dijumpai" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Lokasi dimana berkas-berkas Ushahidi ditempatkan. Kami telah mendeteksi isian ini secara otomatis, mohon dipastikan hasil pendeteksian ini tidak salah. Jika isiannya kosong, jangan khawatir, itu artinya Ushahidi terpasang di direktori utama." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Selesai" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Umum" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Kunci API Google" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Siapa saja bisa mendapatkan kunci api. Miliki segera" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Kembali" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALASI LANJUTAN" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Selesaikan semua konfigurasi dasar dengan proses 5 langkah ini. Ini termasuk server, pemetaan, nama situs dan rincian detil kontak." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALASI DASAR" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Sederhana dan cepat. Yang dibutuhkan hanya direktori utama situs dan informasi basis datanya. Pilih opsi ini jika anda mau menjalankan ushahidi secepatnya, anda masih tetap bisa melakukan konfigurasi lanjutan dikemudian hari." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Lanjutkan" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Selamat datang di proses instalasi server Ushahidi. Pilih tipe instalasi sesuai kebutuhan anda :" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalasi sukses" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail Server" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Induk Mail Server" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Contoh: mail.situsanda.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Kata sandi mail server" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Kata sandi yang biasa anda gunakan untuk login ke layanan surel" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Port Mail Server" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Port umum : 25,110,995 (Gmail ssl pop3), 993 (Gmail ssl imap)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipe Mail Server" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet message access protocol (IMAP) atau Post Office Protocol (POP). Apa bedanya? " + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Nama pengguna mail server" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Kalau anda menggunakan layanan surel dari Gmail, Hotmail atau Yahoo, masukan alamat surel lengkap anda sebagai nama penggunanya." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Peta" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Penyedia peta" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi bekerja sama baiknya dengan keempat penyedia layanan pemetaan ini: Google, Bing, Yahoo dan OpenStreetMap. Pilih yang tampilannya paling rinci di daerah anda." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Langkah lainnya..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Sandi" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Kata sandi basis data anda" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Sebelumnya" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Mohon restart server Apache anda" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Hidupkan atau matikan SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Beberapa mail server memberikan pilihan untuk menggunakan SSL ketika melakukan koneksi. Menggunakan SSL sangat dianjurkan untuk meningkatkan level keamanan anda." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Atur server SMS anda" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Alamat surel" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Alamat surel notifikasi" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Ketika pengunjung situs anda mendaftar untuk mendapat peringatan melalui surel, mereka akan menerima surel dari alamat surel ini. Alamat surel ini tidak harus sama dengan alamat surel situs." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Semua komunikasi surel situs menggunakan alamat ini" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nama situs" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Nama situs anda" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Slogan Situs" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Slogan anda" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Webserver harus punya hak menulis pada berkas dan direktori yg tercantum dibawah ini" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Berikut instruksi untuk mengubah hak akses berkas:

" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Sebelum memulai pastikan server web punya hak menulis pada berkas dan direktori berikut ini. Kalau perlu ubah hak aksesnya." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Untuk memperlancar proses pemasangan, siapkan informasi berikut ini" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Tabel prefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Umumnya anda tidak perlu mengubah apa-apa dari tabel Prefix. Tetapi bila anda ingin menjalankan beberapa instalasi Ushahidi dari basis data yang sama, anda dapat melakukannya dengan menyesuaikan prefix-nya disini" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Judul" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Untuk login, kunjungi" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Unggah laporan data" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nama pengguna" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Nama pengguna basis data anda" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "dan gunakan data akun berikut ini" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Periksa situs anda" diff --git a/application/i18n/po/po-id_ID/layer.po b/application/i18n/po/po-id_ID/layer.po new file mode 100644 index 0000000000..c645eb05bc --- /dev/null +++ b/application/i18n/po/po-id_ID/layer.po @@ -0,0 +1,65 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 06:46+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Isi kolom warna harus sepanjang 6 karakter." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Kolom warna tidak boleh dikosongkan." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Isian pada kolom berkas salah. Format yang berlaku hanya .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "File yang tercantum pada kolom berkas salah." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Panjang isi kolom nama setidaknya 3 dan tidak boleh lebih dari 80 karakter." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Kolom nama tidak boleh dikosongkan." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Dibutuhkan URL KML atau berkas KML" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Anda hanya bisa mencantumkan berkas KML atau URL-nya saja." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Masukan URL yang benar. Misalnya http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-id_ID/libraries.po b/application/i18n/po/po-id_ID/libraries.po new file mode 100644 index 0000000000..cb8d2b3b8f --- /dev/null +++ b/application/i18n/po/po-id_ID/libraries.po @@ -0,0 +1,120 @@ +# +# Translators: +# kakaprakasa , 2012 +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 06:58+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Tidak bisa terhubung dengan layanan Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Respon dari Akismet tidak bisa diperoleh." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Pustaka API: %s untuk %s tidak ditemukan. Mohon periksa tabel routing API task Anda." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Kunci API Akismet Anda tidak valid." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error terjadi pada saat melakukan metode pengiriman fopen!
Mohon pastikan PHP memiliki dukungan OpenAAL dan pastikan versi PHP-nya sudah lebih dari 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Pesan unicode Anda terlalu panjang! (Panjang sekarang=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Mohon sertakan alamat tujuan (KEPADA)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Mohon sertakan alamat pengirim (DARI)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Pesan unicode Anda terlalu panjang! (Panjang sekarang=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Metode pengiriman tidak dikenal!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Pustaka API %s tidak berlaku. Semua pustaka API harus merupakan subclass dari %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Direktori %s tidak bisa dihapus." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Error pada saat melakukan ekstraksi: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Pengunduhan versi terbaru Ushahidi gagal. Status kode HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Berkas %s tidak bisa disalin." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Berkas %s tidak bisa dihapus." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Skrip upgrade Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Berkas zip Ushahidi yang diunduh %s, tidak bisa ditulis." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s tidak tersedia di class RiverID." diff --git a/application/i18n/po/po-id_ID/maintenance.po b/application/i18n/po/po-id_ID/maintenance.po new file mode 100644 index 0000000000..3b090521f4 --- /dev/null +++ b/application/i18n/po/po-id_ID/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Sukma Budi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 06:59+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Maaf, situs kami sedang istirahat untuk pemeliharaan. Silahkan coba lagi beberapa menit." diff --git a/application/i18n/po/po-id_ID/message.po b/application/i18n/po/po-id_ID/message.po new file mode 100644 index 0000000000..a14c9249fb --- /dev/null +++ b/application/i18n/po/po-id_ID/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 07:03+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Masukan kode keamanan yang benar" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Masukan kode keamanan" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Kolom surel tampaknya tidak berisi alamat surel yang benar." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Panjang alamat surel minimal 4 karakter dan tidak boleh lebih dari 64 karakter" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kalau kotak centang dicentang kolom alamat surel tidak boleh dikosongkan" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Kolom komentar tidak boleh dikosongkan" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Panjang kolom nama minimal 3 karakter" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Kolom nama tidak boleh dikosongkan" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Isi kolom telpon salah." diff --git a/application/i18n/po/po-id_ID/mhi.po b/application/i18n/po/po-id_ID/mhi.po new file mode 100644 index 0000000000..f87d451d98 --- /dev/null +++ b/application/i18n/po/po-id_ID/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 07:04+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Masukkan kode keamanan yang benar." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Masukkan kode keamanan." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Surel yang Anda masukkan tidak benar." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Pastikan alamat surel diisikan sudah benar." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Kolom pesan tidak boleh kosong." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Panjang isi kolom subjek setidaknya 3 karakter." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Kolom subjek tidak boleh dikosongkan." diff --git a/application/i18n/po/po-id_ID/notifications.po b/application/i18n/po/po-id_ID/notifications.po new file mode 100644 index 0000000000..47c476b035 --- /dev/null +++ b/application/i18n/po/po-id_ID/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 07:13+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Pesan ini dikirim dari situs Anda." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login Administrator." + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Sebuah komentar baru dikirimkan ke situs Anda sebagai tanggapan atas:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Komentar Baru" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Sebuah surel baru telah dikirim ke situs Anda." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Surel Baru." + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Sebuah laporan baru telah dikirimkan ke situs Anda." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Laporan Baru" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Sebuah pesan teks telah dikirim ke situs Anda." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Pesan Teks Baru" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Anda Telah Menerima Satu Peringatan Baru" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Peringatan Baru!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Anda Telah Menerima Sebuah Pesan Pribadi" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Pesan Pribadi Baru" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Untuk Menjawabnya, Silahkan Pindah Ke: " diff --git a/application/i18n/po/po-id_ID/page.po b/application/i18n/po/po-id_ID/page.po new file mode 100644 index 0000000000..f2ceb7122a --- /dev/null +++ b/application/i18n/po/po-id_ID/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 07:14+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Masukkan Judul Halaman." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Panjang Judul Halaman setidaknya 3 karakter dan tidak boleh lebih dari 150 karakter." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Masukkan nama Tab Halaman." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Masukkan Keterangan Halaman." diff --git a/application/i18n/po/po-id_ID/permissions.po b/application/i18n/po/po-id_ID/permissions.po new file mode 100644 index 0000000000..9ef2c1380a --- /dev/null +++ b/application/i18n/po/po-id_ID/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2015-05-20 07:17+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Lihat Laporan" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Buat/Sunting/Hapus Laporan" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Menyetujui Laporan" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verifikasi Laporan" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Atur Komentar dalam Laporan" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Unduh Laporan" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Unggah Laporan" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Pengaturan Pesan" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Pengaturan Pesan Pelapor" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Lihat Status" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Ubah Pengaturan" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Pengaturan Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Pengaturan Pengguna" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Pengaturan Peran" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Bisa checkin" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Pengaturan checkin" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Akses UI Admin" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Akses UI Anggota" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Hapus semua laporan" diff --git a/application/i18n/po/po-id_ID/private_message.po b/application/i18n/po/po-id_ID/private_message.po new file mode 100644 index 0000000000..3873717c8e --- /dev/null +++ b/application/i18n/po/po-id_ID/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-20 07:18+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Parent ID harus dalam format numerik atau angka." + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Kolom Tujuan wajib diisi." + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Tujuan pengguna yang Anda hendak kirim pesan tidak ada." + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Kolom Subyek wajib diisi." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Kolom Subyek harus berisi antara 3 hingga 150 karakter." + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Kolom Isi Pesan wajib diisi." diff --git a/application/i18n/po/po-id_ID/report.po b/application/i18n/po/po-id_ID/report.po new file mode 100644 index 0000000000..03f46c9490 --- /dev/null +++ b/application/i18n/po/po-id_ID/report.po @@ -0,0 +1,395 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2015-06-10 02:36+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "error!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Pengembangan ini hanya mencakup satu negara saja. Pastikan posisi dalam laporan masuk dalam wilayah negara %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Masukkan nilai pada kolom \"%s\" yang tepat." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Kolom \"%s\" harus berupa angka. " + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Kolom \"%s\" wajib diisi." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Kolom \"%s\" tidak ditemukan." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Anda tidak diperkenankan menyunting kolom \"%s\"." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Kolom \"%s\" harus berisi alamat surel yang benar." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Kolom \"%s\" harus berisi nomor telepon seluler yang benar." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Kolom \"%s\" harus berupa tanggal dalam format yang tepat (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Kolom \"%s\" harus berupa tanggal dalam format yang tepat (DD/MM/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Pastikan hanya memilih bagian yang tepat untuk diunduh." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Pastikan hanya memilih bagian yang tepat untuk diunduh." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Pilih \"Laporan yang Menunggu Disetujui\" atau \"Laporan yang Disetujui\" atau keduanya." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Pilih \"Laporan yang Menunggu Disetujui\" atau \"Laporan yang Disetujui\" atau keduanya." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Pilih \"Laporan yang Menunggu Disetujui\" atau \"Laporan yang Disetujui\" atau keduanya." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Pilih \"Laporan yang Menunggu Diperiksa\" atau \"Laporan yang Sudah Diperiksa\" atau keduanya." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Pilih \"Laporan yang Menunggu Diperiksa\" atau \"Laporan yang Sudah Diperiksa\" atau keduanya." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Pilih \"Laporan yang Menunggu Diperiksa\" atau \"Laporan yang Sudah Diperiksa\" atau keduanya." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Pastikan memilih laporan yang tepat untuk diunduh." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Pastikan memilih laporan yang tepat untuk diunduh." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Pastikan memilih jenis laporan yang tepat untuk diunduh." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Anda harus memilih format file untuk diunduh, bisa CSV atau XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Masukkan format file yang hendak Anda unduh dalam" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Kolom SEJAK pada tanggal tidak benar." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Masukkan kolom SEJAK yang benar pada tanggal. Tidak boleh lebih dari saat ini." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Isi kolom Setujui Laporan Ini dengan benar." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Isi kolom Setujui Laporan Ini dengan benar." + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Kolom AM/PM tidak benar." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Kolom Kategori tidak benar." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Kolom Kategori wajib diisi." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Kolom tanggal tidak benar." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Kolom tanggal tidak benar." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Kolom tanggal wajib diisi." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Kolom keterangan wajib diisi." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Kolom jam tidak benar." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Kolom jam wajib diisi." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Pastikan yang tertera dalam kolom Peluang Informasi sudah benar." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Pastikan yang tertera dalam kolom Peluang Informasi sudah benar." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Kolom menit tidak benar." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Kolom menit wajib diisi." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Alamat pada kolom tautan sumber berita tidak benar." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Pastikan besar foto yang diunggah tidak lebih dari 2 MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Isi kolom Unggah Foto tidak benar. Format yang berlaku hanya .JPG, .PNG dan .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Isi kolom Unggah Foto tidak benar." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Masukkan Kehandalan Sumber yang tepat." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Masukkan Kehandalan Sumber yang tepat." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Panjang \"Judul Laporan\" setidaknya 3 karakter dan tidak lebih dari 200 karakter." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Kolom \"Judul Laporan\" wajib diisi." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Ada kemungkinan serangan CSRF. Apakah Anda yakin hendak membuat/menyunting laporan?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Isi kolom \"Periksa Laporan Ini\" dengan tepat." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Isi kolom \"Periksa Laporan Ini\" dengan tepat." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Alamat tautan video tidak benar." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Isi kolom Lintang salah." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Kolom Lintang wajib diisi. Klik lokasi pada peta." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Kolom pengaturan lokal tidak tepat." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Laporan ini sudah diterjemahkan dalam bahasa ini." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Kolom pengaturan lokal tidak tepat." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Bahasa Laporan Asli dan Terjemahan memiliki bahasa (lokal) yang sama." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Kolom pengaturan lokal wajib diisi." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Kolom \"Nama Lokasi\" setidaknya 3 karakter dan tidak lebih dari 200 karakter." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Kolom \"Nama Lokasi\" wajib diisi." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Kolom Bujur tidak benar." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Kolom Bujur wajib diisi. Klik lokasi pada peta." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Alamat surel Anda tidak benar." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Alamat surel setidaknya terdiri dari 4 karakter dan tidak lebih dari 64 karakter." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Kolom nama pertama setidaknya 3 karakter dan tidak lebih dari 100 karakter." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Kolom nama keluarga setidaknya 2 karakter dan tidak lebih dari 100 karakter." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Kolom SAMPAI pada tanggal tidak benar." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Masukkan kolom SAMPAI pada tanggal yang tepat. Tidak boleh melebihi hari ini." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Kolom SEJAK pada rentang waktu tidak boleh melebihi kolom SAMPAI." diff --git a/application/i18n/po/po-id_ID/reporters.po b/application/i18n/po/po-id_ID/reporters.po new file mode 100644 index 0000000000..c9ad38b926 --- /dev/null +++ b/application/i18n/po/po-id_ID/reporters.po @@ -0,0 +1,73 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-06-10 02:37+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Isi pada kolom Lintang tidak benar. " + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Kolom Lintang tidak boleh dikosongkan. Anda bisa klik lokasi di peta untuk lokasi yang diinginkan." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Isi pada kolom Level Pelapor tidak benar." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Isi pada kolom Level Pelapor tidak benar." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Nama lokasi setidaknya terdiri atas 3 dan tidak lebih dari 200 karakter." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Kolom nama lokasi tidak boleh dikosongkan." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Isi pada kolom Bujur tidak benar. " + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Kolom Bujur tidak boleh dikosongkan. Anda bisa klik lokasi di peta untuk lokasi yang diinginkan." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Pelapor Tidak Dikenal" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Pelapor Tidak Dikenal" diff --git a/application/i18n/po/po-id_ID/reports.po b/application/i18n/po/po-id_ID/reports.po new file mode 100644 index 0000000000..95360d61fb --- /dev/null +++ b/application/i18n/po/po-id_ID/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-06-10 02:40+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Pastikan Anda telah memilih satu pilihan." + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Pastikan Anda telah memilih satu pilihan." + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Laporan harus dikategorisasikan sebelum disetujui." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Anda tidak memiliki ijin untuk menjalankan perintah ini." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Anda harus memilih satu buah file untuk diunggah." + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "File yang diunggah harus dalam bentuk .csv atau .xml." + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "File yang Anda unggah sepertinya tidak benar." diff --git a/application/i18n/po/po-id_ID/roles.po b/application/i18n/po/po-id_ID/roles.po new file mode 100644 index 0000000000..1f084c525c --- /dev/null +++ b/application/i18n/po/po-id_ID/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-06-10 02:34+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Isi kolom Keterangan setidaknya 3 dan tidak boleh lebih dari 100 karakter." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Kolom Keterangan tidak boleh dikosongkan." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Kolom Nama hanya boleh diisi huruf atau angka." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Isi kolom Nama setidaknya 2 dan tidak boleh lebih dari 30 karakter." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Peran SuperAdmin Tidak Bisa Diubah." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Kolom Nama tidak boleh dikosongkan." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Kolom Level Akses harus berisi angka antara 0-100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Kolom Level Akses harus berisi angka antara 0-100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Kolom Ijin harus berisi angka antara 0-100." diff --git a/application/i18n/po/po-id_ID/settings.po b/application/i18n/po/po-id_ID/settings.po new file mode 100644 index 0000000000..33be898580 --- /dev/null +++ b/application/i18n/po/po-id_ID/settings.po @@ -0,0 +1,861 @@ +# +# Translators: +# Imron Fauzi , 2014 +# Suwandi Ahmad , 2013-2014 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2015-06-09 04:12+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Isian komentar tidak akan ditampilkan apabila tidak mengandung kebenaran." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Isian komentar tidak boleh dikosongkan." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Isian umpan tidak akan ditampilkan apabila tidak benar cara penulisannya." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Isian umpan harus diisi." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "Kolom isian kategori umpan tidak benar." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Kolom isian kategori umpan harus diisi." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Isian peringatan tidak akan ditampilkan apabila tidak diisi dengan benar." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Isian memperbolehkan peringatan harus diisi." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Isian memperbolehkan laporan tidak diisi dengan benar." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Isian memperbolehkan laporan harus diisi." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Isian berbagi stat tidak akan ditampilkan apabila tidak diisi dengan benar." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Isian berbagi stat harus diisi." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Jumlah standar rekaman yang diambil untuk setiap permintaan API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Jumlah maksimal rekaman yang diambil untuk setiap permintaan API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Jumlah maksimal permintaan API untuk tiap alamat IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Isian pada kolom Akismet tidak benar." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Isian pada kolom Akismet tidak benar." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Kolom banner situs harus menggunakan format berkas gambar yang sesuai. Situs ini hanya menerima berkas dalam bentuk .JPG, .PNG dan .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Pastikan bahwa ukuran \"Banner Situs\" tidak lebih dari 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "\"Banner Situs\" tidak benar." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Kolom cache halaman harus diisi." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Kolom cache halaman tidak benar." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Batas kadaluarsa cache halaman tidak benar." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Batas kadaluarsa cache halaman harus diisi." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Sepertinya server Anda tidak diatur supaya bisa mengatasi clean URL. Anda perlu mengubah konfigurasi server sebelum memperbolehkan penggunaan clean URL. Lihat lebih lanjut mengenai clean URL di forum diskusi ini" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Opsi ini akan menjadikan Ushahidi bisa diakses melalui clean URL (tanpa \"index.php\" dalam tautan)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Memperbolehkan Clean URL" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Clean URL" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Kolom nomor API Clickatell tidak boleh lebih dari 20 karakter." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Kolom isian nomor API Clickatell wajib diisi." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Kolom kata sandi Clickatell setidaknya terdiri atas 5 dan tidak lebih dari 50 karakter." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Kata sandi Cliackatell wajib diisi." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Kolom Nama Pengguna Clickatell tidak boleh lebih dari 50 karakter." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Kolom Nama Pengguna Clickatell tidak boleh kosong." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Pengaturan Peta" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Lokasi Standar" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Kolom warna umpan tidak benar." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Kolom warna tidak boleh lebih dari 6 karakter." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Kolom warna harus diisi." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Tampilan Peta Standar" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Tingkat Pembesaran Standar" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Menerima Daftar Kota dari Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Kolom port server mail terlalu panjang." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Kolom port Server Mail hanya bisa diisi dengan angka." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Kata sandi Mail Server setidaknya terdiri atas 5 dan tidak lebih dari 50 karakter." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Kata sandi untuk Mail Server tidak boleh dikosongkan." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Isi kolom Port Mail Server terlalu panjang." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Kolom port Mail Server hanya bisa diisi dengan angka." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Kolom port mail server terlalu panjang." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Kolom Jenis Mail Server wajib diisi." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Nama pengguna dalam mail server tidak boleh lebih dari 50 karakter." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Kolom Nama Pengguna Mail Server wajib diisi." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opsi Pengaturan Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Untuk memperoleh informasi di bawah ini Anda harus membuat aplikasi Facebook yang baru di" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Pengaturan ini memungkinkan pengguna untuk masuk melalui Facebook, tapi bukan membuat aplikasi Facebook di situs Anda." + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "ID Aplikasi Facebook" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Kode Rahasia Aplikasi Facebook" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Kolom Google Analytics harus mengandung Web Property ID yang benar dalam format UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "HTTPS Diijinkan" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Opsi ini memungkinkan Ushahidi bisa diakses dalam moda tidak aman; tanpa \"https://\" dalam awalan URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Opsi ini memungkinkan Ushahidi bisa diakses dalam moda aman; dengan awalan https di URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Isian dalam kolom jumlah item per halaman (Halaman Depan) tidak benar." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Isian dalam kolom jumlah item per halaman (Halaman Depan) tidak benar." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Isian dalam kolom jumlah item per halaman (Halaman Depan) tidak benar." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Kolom item per halaman (Admin) wajib diisi." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Pengaturan penyedia peta yang Anda pilih adalah proses yang searah. Pilih penyedianya, dapatnya kunci API dari situs penyedia peta tersebut, dan masukkan kunci API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Tingkat Pembesaran" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Pilih Penyedia Peta" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Masukkan kunci API yang baru" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Dapatkan kunci API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Pengaturan penyedia peta yang Anda pilih adalah proses yang searah. Pilih penyedianya, dapatnya kunci API dari situs penyedia peta tersebut, dan masukkan kunci API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Penyedia peta" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Linimasa Peta" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Pengaturan Peta" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Apakah Ushahidi ini akan digunakan untuk kawasan yang terdiri atas beberapa negara?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Pilih standar negara" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Klik dan geser peta ke lokasi yang Anda inginkan" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Sekelompok Laporan dalam Peta" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Ijinkan Pengguna untuk berkomentar dalam laporan" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Termasuk Umpan Berita RSS di Situs" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Membuat Kategori Baru dari Umpan" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Ijinkan Pengguna untuk Memperoleh Peringatan" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Ijinkan Pengguna untuk Mengirimkan Laporan" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Kunci Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Banner Situs" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Kotak per Lajur" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache Halaman" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Masa Berlaku Cache Halaman" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Memungkinkan Checkin" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Pernyataan Hak Cipta Situs" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Warna Standar untuk Seluruh Kategori" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Ikon Standar untuk Seluruh Kategori" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Hapus Gambar Banner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Hapus Ikon Standar" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Tampilkan Halaman Kontak" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Tampilkan Halaman \"Bagaimana Cara Membantu\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Alamat Surel untuk Peringatan" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "untuk menerima laporan melalui surel, atur akun surel Anda." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Alamat Surel Situs" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Bagian per Halaman - Halaman Muka" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Bagian per Halaman - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Cegah komentar berupa spam dengan menggunakan Akismet dari Automattic.
Anda bisa memperoleh kunci API secara gratis dengan mendaftarkan diri di WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Kredensial Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Situs Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Bahasa dalam Situs" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Menyetujui Pengguna Secara Manual" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Pesan dalam Situs" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nama Situs" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Situs untuk kalangan terbatas" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Membutuhkan Konfirmasi Surel Pengguna" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Kirim Pesan Laporan" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Memungkinkan Statistik (disimpan dalam server Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Slogan Situs" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Zona Waktu" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Pengaturan Situs" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Kalimat Pencarian di Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Tagar - Dipisahkan dengan koma" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Umpan geolocation - nama pengguna Geonames" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Kolom surel situs tidak benar." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Kolom surel situs setidaknya terdiri atas 4 dan tidak lebih dari 100 karakter." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Kolom nama situs setidaknya terdiri atas 3 dan tidak lebih dari 50 karakter." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Nama situs wajib diisi." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Kolom slogan situs setidaknya terdiri atas 3 dan tidak lebih dari 100 karakter." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Kolom slogan wajib diisi." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Nomor Clickatell API Anda" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Periksa Pulsa Clickatell Anda" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Lihat Saldo" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Kata Sandi untuk Clickatell Anda" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Dapatkan layanan gratis Clickatell dengan mendaftar di sini " + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Masukkan informasi mengenai akses Clickatell Anda di bawah" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Nama Pengguna dalam Clickatell Anda" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "Frontline SMS adalah program gratis dan berbasis kode terbuka yang memungkinkan pengguna untuk mengirim serta menerima SMS dari banyak orang dengan menggunakan ponsel. Klik pada kotak di bawah ini untuk memperoleh versi terkini dari FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Unduh dan instalasi FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Intruksi terperinci cara mengirim SMS melalui FrontlineSMS sudah tersedia di sini. URL dan kunci API di bawah ini diminta untuk pengaturan dan sinkronisasi data dengan FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Salin dan tempelkan ini dalam kolom \"Alamat\" FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Salin dan tempelkan ini dalam kolom \"Kunci API Ushahidi\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Menghubungkan antara FrontlineSMS dengan situs Ushahidi ini" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Masukkan nomor ponsel yang terhubung dengan Frontline SMS dalam kolom di bawah" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Masukkan angka tanpa disertai tanda + atau tanda hubung di bawah" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Pilihan 1: Menggunakan Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Pilihan 2: Menggunakan Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Pilihan Pengaturan SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Nomor ponsel 1 tidak benar." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Nomor ponsel 1 seharusnya hanya terdiri atas angka saja." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Nomor ponsel 2 terlalu panjang." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Nomor ponsel 2 seharusnya hanya terdiri atas angka saja." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Nomor ponsel 3 terlalu panjang." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Nomor ponsel 3 seharusnya hanya terdiri atas angka saja." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Pilihan Pengaturan Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Untuk memperoleh informasi di bawah ini, silahkan atur situs anda sebagai sebuah aplikasi Twitter baru terlebih dahulu di" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Kunci Pelanggan" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Kode Rahasia Pelanggan" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Token untuk Akses" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Kode Rahasia Token" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Ujicoba pengaturan" diff --git a/application/i18n/po/po-id_ID/sharing.po b/application/i18n/po/po-id_ID/sharing.po new file mode 100644 index 0000000000..dbd560fe65 --- /dev/null +++ b/application/i18n/po/po-id_ID/sharing.po @@ -0,0 +1,73 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-22 03:07+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Tanggal masuk" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Tanggal Ditambahkan" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Akses Terakhir" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Kolom warna setidaknya terdiri dari 6 karakter." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Kolom warna wajib diisi." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Nama Sharing tidak benar." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Nama untuk Sharing wajib diisi." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Alamat situs sudah ada." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Alamat situs yang Anda masukkan tidak benar." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Alamat situs wajib diisi." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Alamat situs yang Anda masukkan tidak benar." diff --git a/application/i18n/po/po-id_ID/stats.po b/application/i18n/po/po-id_ID/stats.po new file mode 100644 index 0000000000..9a4597cbef --- /dev/null +++ b/application/i18n/po/po-id_ID/stats.po @@ -0,0 +1,200 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-06-10 06:55+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Disetujui" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategori" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Dampak Kategori" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Bagan berikut ini menampilkan gambaran linear dari laporan yang masuk berdasarkan kategori yang ada. Tarik dari kiri ke kanan untuk melihat perbandingan tampilan dari kategori yang berbeda-beda. Gerakkan kursor di atas bagan untuk informasi yang lebih detil." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Pilih jeda tanggal." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Negara" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Negara" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Daftar Negara" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Ini adalah bagian statistik dan akan diisi gambaran umum. Saat ini, masih diisi dengan sub kategori di atas." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Error" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glosarium" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Ringkasan Kunjungan" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pageview" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Jumlah halaman di situs Anda yang dilihat pengunjung." + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Laporan" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Kategori Laporan" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statistik Laporan" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Status Laporan" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Laporan Punchcard" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Statistik Laporan" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistik Belum Diatur" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Bulan" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Bulan" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Bulan" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Semua" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Belum disetujui" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Pengunjung Unik" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Jumlah orang yang mengunjungi situs Anda. Pengunjung unik direkam berdasarkan cookies. Pengunjung yang tidak menjalankan cookies akan diidentifikasi menggunakan pendataan alamat IP, resolusi, browser, plugins, sistem operasi dan sebagainya." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Belum Diverifikasi" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Terverifikasi" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Ringkasan Data Pengunjung" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Kunjungan" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Satu kali kunjungan dari pengujung unik dihitung sekali bila kunjungan dilakukan 30 menit setelah kunjungan terakhirnya." diff --git a/application/i18n/po/po-id_ID/tooltips.po b/application/i18n/po/po-id_ID/tooltips.po new file mode 100644 index 0000000000..42e791d57a --- /dev/null +++ b/application/i18n/po/po-id_ID/tooltips.po @@ -0,0 +1,587 @@ +# +# Translators: +# Imron Fauzi , 2015 +# Imron Fauzi , 2014 +# Suwandi Ahmad , 2013-2014 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-06-10 06:55+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Hal ini akan menambahkan laporan ke kategori. Jika Anda memilih Kategori 1 di sini dan laporan sudah dimasukkan dalam Kategori 2, maka laporan akan masuk dalam Kategori 1 dan Kategori 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Setujui laporan atau tidak. Jika disetujui maka akan dipublikasikan." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Anda bisa menetapkan sebuah lencana untuk memicu pengguna memasukkan laporan. Pilih lencana yang anda tetapkan di sini." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Ini adalah rentang waktu dalam jam dan/atau menit antara dua batas waktu dalam format 24 jam. Jika Anda memasukkan waktu yang lebih dulu di kolom kedua, maka yang Anda masukkan akan diubah menjadi awal. Juga bila waktu dicentang berlawanan dengan konfigurasi situs dan tidak memerlukan zona waktu yang berbeda antara pengguna dengan situs ini. Masukkan rentang waktu 00:00 hingga 00:00 untuk mengabaikan aturan ini." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Jika Anda ingin mengaktifkan pemicu untuk satu kategori saja, Anda bisa mengaturnya di sini. Sebagai contoh, jika Anda memilih Kategori 1 dan Kategori 2 di sini, sedangkan laporan dimasukkan Kategori 2 dan 3 maka aturan Anda akan diabaikan." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Jika kejadian berlangsung selama beberapa hari dalam seminggu, atur di sini. Ingat bahwa ada aturan mengenai zona waktu. Gunakan tombol Shift, Command atau Control untuk memilih hari yang berbeda-beda." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Isi surel yang hendak dikirim." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Judul surel yang hendak dikirim." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Umpan ini bisa berisi seluruhnya atau umpan tertentu saja. Jika Anda menginginkan hanya umpan tertentu untuk mengaktifkan pemicu, Anda bisa memilihnya di sini. Namun jika Anda mengosongkan, maka seluruh umpan akan mengaktifkan pemicu." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nama akun Twitter (bisa lebih dari satu dan dipisahkan dengan koma). Apabila Anda ingin hanya satu akun pemicu saja, masukkan nama akun Twitter-nya (tanpa tanda @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Anda bisa mengosongkannya bila tidak ingin memeriksa kata kunci. Jika Anda memasukkan beberapa kata, pisahkan dengan tanda koma (,). Misalnya Anda ingin mengaktifkan pemicu jika ada yang menyebutkan \"cinta\" atau \"sayang\" dalam pesannya, Anda harus menuliskannya dengan \"cinta, sayang\" dalam kotak kata kunci." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Anda dapat memilih di mana saja atau lokasi tertentu. Jika Anda memilih lokasi tertentu, Anda akan diminta untuk menggambar kotak sekitar area sesuai kejadian. Misalnya, jika Anda ingin pemicu ini diaktifkan ketika seseorang menyampaikan laporan di Brazil, Anda akan memilih \"area spesifik\" dan kemudian menggambar kotak di sekitar Brazil. Anda dapat membuat kotak-kotak ini kecil atau besar sesuai keinginan. Anda juga dapat menggambar beberapa kotak sekaligus." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Kualifikasi ini akan mengaktifkan pemicu pada bilangan ke-N, baik untuk seluruh pengguna atau untuk satu pengguna saja. Jika Anda ingin mengabaikan, kosongkan saja." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Ini adalah judul standar untuk menambahkan laporan." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Jika semua kualifikasi di atas dilalui, maka pemicu akan memberi tanggapan. Hal ini dapat berupa menyetujui laporan ke surel pengguna. Pilih tanggapan di sini untuk mengaktifkan pilihan tambahan untuk tanggapan khusus." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Jika Anda memilih \"Pemicu Pengguna\", sebuah surel akan dikirim ke pengguna yang melakukan tindakan. Jika Anda memilih tombol radio di sebelah kotak input, Anda akan dapat masukkan alamat surel tertentu. Hal ini berguna jika Anda sedang mengatur pemicu untuk memberitahu orang-orang ketika bagian-bagian tertentu dari peta lihat laporan, cek in atau kegiatan lain." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Anda bisa memilih beberapa hari yang berbeda. Tanggal ditentukan berdasarkan zona waktu. Jika Anda menghendaki semua tanggal dipilih, kosongkan pilihan ini." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Pemicunya adalah komponen inti dari pengaturan Pemicu Aksi Anda. Ini adalah di mana Anda menentukan apakah ingin sesuatu terjadi ketika seseorang menyerahkan laporan, melakukan checkin dan sebagainya. Anda akan dapat menyaring tanggapan terhadap tindakan ini setelah memilih salah satu." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Pengguna di sini bisa siapa saja atau pengguna tertentu. Jika Anda menginginkan hanya pengguna tertentu sebagai pemicu, Anda bisa memilihnya di sini. Atau, Anda bisa memilih siapa saja sebagai pemicu." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Tandai sebuah laporan sudah diverifikasi atau belum." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Halaman profile di situs ini menggunakan Gravatar. Dengan melakukan klik pada gambar, Anda akan diarahkan ke situs Gravatar untuk mencari gambar yang sesuai dengan keinginan." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Pisahkan antar nilai dengan tanda koma. Misalnya bilangan1, bilangan2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Pisahkan antar nilai dengan tanda koma, misalnya bilangan1,bilangan2. Jika Anda menginginkan pengaturan nilai standar, akhiri daftar pilihan dengan ::. Misalnya Anda ingin agar bilangan3 menjadi standar, maka yang harus ditulis adalah bilangan1, bilangan2, bilangan3::bilangan3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Pisahkan setiap pilihan dengan sebuah tanda koma, misalnya Bagian 1, Bagian 2 dan seterusnya." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Silahkan mulai menulis untuk para anggota dalam daftar. " + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Judul pesan pribadi" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Pesan pribadi" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Anda bisa memilih warna yang muncul di bawah gambar profil dalam halaman profil Anda. Warna ini juga akan menjadi warna pada setiap titik yang muncul di peta di mana Anda melakukan checkin." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Alamat surel Anda" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Ini adalah salah satu cara Anda teridentifikasi dalam situs ini. Ingat bahwa ini bisa diakses oleh publik!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Jika diubah, maka ini akan menjadi kata sandi Anda yang baru. Namun jika Anda kosongkan, maka kata sandi Anda tetap seperti sebelumnya." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Permintaan ini muncul jika ada penambahan seorang pengguna dan kata sandinya. Anda harus memberitahu pengguna baru tersebut untuk mengubah kata sandi setelah masuk pertama kali." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Memilih YA memungkinkan Anda memperoleh peringatan melalui surel ketika ada laporan atau komentar diposting ke situs." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Kata sandi Anda saat ini. Kami minta Anda memasukkan kata sandi Anda guna mencegah penggunaan akun Anda secara tidak sah." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Profil Anda akan bisa dilihat oleh setiap orang di Internet jika Anda memberi centang pilihan ini. Pilihan ini juga cara termudah untuk menampilkan setiap laporan yang Anda kirimkan, lokasi checkin, lencana dan semua hal lainnya dalam satu halaman." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Ini adalah alamat profil publik Anda." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Nama pengguna tidak bisa diubah." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Tingkat akses digunakan untuk membatasi akses pada data. Semakin tinggi tingkat akses, semakin besar pula hak aksesnya. Tingkat Superadmin adalah pemilik Tingkat Akses tertinggi (100). Data untuk publik adalah Tingkat Akses terendah (0). Secara standar, anggota memiliki Tingkat Akses 10 dan Admin Tingkat Aksesnya 90. " + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Alamat surel ini akan digunakan dalam setiap pengiriman peringatan." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Ijinkan pengguna untuk mendaftarkan peringatan melalui situs." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Hal ini akan memperbolehkan agar beberapa laporan yang mirip digabungkan dalam satu titik di peta." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Ijinkan pengguna memberikan komentar pada laporan di situs utama." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Hal ini untuk memberikan ijin penayangan Umpan RSS Berita di situs utama." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Hal ini akan memungkinkan Anda untuk membuat Kategori dari umpan RSS News." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Ijinkan pengguna untuk mengirimkan informasi melalui formulir di situs." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Jumlah standar rekaman yang diambil untuk setiap permintaan API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Jumlah maksimal rekaman yang diambil untuk setiap permintaan API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Jumlah maksimal permintaan API untuk tiap alamat IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Banner ini akan muncul di bagian paling atas pada bagian depan situs Anda apabila tema yang Anda gunakan mendukung. Ukuran yang disarankan untuk banner ini tergantung pada tema yang Anda gunakan. Ingat, banner ini akan menggantikan judul situs dan slogan di bagian atas halaman." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Jumlah kotak kolom yang akan ditampilkan dalam setiap baris." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Pilihan cache halaman. Ini akan menjadikan halaman ditampilkan lebih cepat. Kami sarankan Anda mengaktifkan cache untuk situs yang banyak diakses. **Ingat, bahwa setiap laporan akan dikumpulkan di bagian depan situs berdasarkan jadwal yang Anda atur di bawah ini (Masa Berlaku Cache)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Atur masa berlaku cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Pengaturan ini memungkinkan checkin pada situs Anda. Ini adalah jenis laporan yang disederhanakan dan tidak dimoderasi sebelum ditampilkan dalam situs. Bila Anda mengaktifkan ini, pastikan pengaturan zona waktu standar UTC dan tema Anda mendukung checkin. Bila Anda mengaktifkan ini, checkin dalam tema akan diaktifkan di bawah addons/halaman pengaturan tema." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Atur peta untuk menampilkan wilayah tertentu." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Atur satu warna untuk semua kategori di situs ini." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Atur satu ikon untuk seluruh kategori di situs ini." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Negara di mana situs ini disebarkan." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Ubah Tab Kontak di situs ini menjadi aktif atau tidak." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Ubah tab Cara dan Bantuan di situs ini aktif atau tidak." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Ini adalah jumlah laporan yang ditampilkan per halaman di situs utama." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Ini adalah jumlah laporan yang ditampilkan per halaman di halaman Admin." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Ini adalah penghubung untuk semua pesan masuk." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Ini adalah sinkronisasi antara penghubung pesan dengan sistem Ushahidi." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Nomor ponsel untuk menerima SMS." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Lacak pengunjung di situs ini. Rincian statistik pengunjung." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Atur bahasa yang akan digunakan di situs ini." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Jika Anda mengaktifkan pilihan ini, Anda harus menyetujui setiap orang yang mendaftar dan mengatur peran masing-masing (misalnya sebagai Anggota, Admin atau Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Ini untuk memilih peta yang akan digunakan dalam situs." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Ini untuk menunjukkan linimasa pada setiap laporan yang dimasukkan." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Pengaturan ini menjadi Benar atau Ya akan menyebabkan situs menjadi terbatas. Sehingga hanya akun tertentu saja yang bisa mengaksesnya." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Setiap pengguna akan dikirim surel berisi tautan untuk konfirmasi bahwa sebelum mereka diperbolehkan masuk dalam sistem, jika Anda mengatur opsi ini aktif. Jika Anda mengaktifkannya setelah sistem sudah menerima pendaftaran pengguna, mereka akan diingatkan untuk konfirmasi akunnya sebelum diperbolehkan menggunakan lagi." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Lokasi penempatan surel" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Ini adalah kata sandi untuk alamat surel yang menerima laporan." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Ini diminta supaya setiap koneksi dari alamat surel diterima." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Ini adalah permintaan peningkatan keamanan koneksi." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Ini diminta agar Anda bisa menerima surel dari server." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Ini adalah alamat surel untuk menerima laporan." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Statistik pengakses disimpan dalam server yang dikelola Ushahidi. Dengan mengaktifkan opsi ini, Anda memperoleh laporan statistik pengunjung langsung ke panel admin. Jika tidak mengaktifkan opsi ini, Anda tidak lagi bisa merekam semua catatan lalu lintas data karena sudah dimatikan." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Apakah orang lain berhak untuk mempublikasikan teks, gambar dan video atau materi lainnya yang Anda dan para pengguna telah buat? Simak https://creativecommons.org/choose/ jika Anda ingin menentukan apa saja yang boleh orang lain lakukan dengan materi-materi ini. Dan ingatlah bahwa Anda perlu menyebutkan secara rinci bagian apa saja dalam situs ini yang memiliki hak cipta!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Ini adalah alamat surel yang akan menerima laporan dan pesan dari formulir kontak." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Teks ini akan muncul di atas peta dalam situs. Informasi ini penting bagi pengakses situs. Untuk menghapusnya, cukup hapus saja pesan ini." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Ini adalah nama situs yang akan ditampilkan di bagian paling atas halaman utama." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Pesan ini akan muncul dalam halaman pengiriman laporan. Informasi ini penting sebagai penambah informasi untuk pengakses yang melakukan pelaporan. " + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Dalam bahasa sederhana, uraikan secara singkat mengenai situs ini." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Ini adalah zona waktu yang digunakan. Zona waktu akan berimplikasi pada setiap tindakan, juga sebagai waktu standar yang akan digunakan di halaman depan dan di sisi admin." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Atur tagar Twitter yang akan digunakan pada tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "Jika Anda ingin geocode entri feed Anda, ambil pengguna http://geonames.org, aktifkan web services gratis dan masukkan di sini. Biarkan kosong untuk menonaktifkan fungsi ini.

Waspadalah terhadap batas penggunaan!" diff --git a/application/i18n/po/po-id_ID/ui_admin.po b/application/i18n/po/po-id_ID/ui_admin.po new file mode 100644 index 0000000000..ac362d97b3 --- /dev/null +++ b/application/i18n/po/po-id_ID/ui_admin.po @@ -0,0 +1,1659 @@ +# +# Translators: +# lbell , 2012 +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2015-06-09 08:02+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Akses ditolak. Entah kredensial Anda tidak valid atau permintaan Anda telah ditolak." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Akses ditolak. Permintaan Anda dipahami, namun ditolak karena batasan akses. Cobalah beberapa saat lagi." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Tingkat Akses" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Tindakan" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Tambahkan ke Kategori" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "ditambahkan" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "ditambahkan/disunting" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Addons" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Peringatan" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Peringatah Diterima" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Semua" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonim" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Siapapun" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Di manapun" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Dilarang" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Log API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Pengaturan API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "JANGAN DICEKAL" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "JANGAN DICEKAL SEMUA" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "disetujui" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Persetujuan Otomatis" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Menyetujui Manual" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Diarsipkan" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Apakah Anda yakin ingin" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Apakah Anda yakin ingin menghapus item ini?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Apakah Anda yakin ingin menghapus foto ini?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Apakah Anda yakin hendak mengganti form?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Menetapkan" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Penetapan" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Menetapkan Lencana" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Penulis" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Surel penulis" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Kembali" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "IP yang Dicekal" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Antara Waktu" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blokir" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Bagian dalam" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Batal" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategori" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Kesalahan dalam menampilkan bagan" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Pastikan pesan Anda sudah benar." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Silahkan periksa apakah nomor sah." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Pastikan pengaturan SMS Anda!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detil Checkin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkin" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Memuat daftar kota" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kode" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versi kode tidak bisa disinkronisasi." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Warna" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Komentar" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Kode peringatan untuk Anda adalah:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Pengguna telah" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Menghitung" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Negara Tidak Ditemukan" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "dibuat/diedit" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Buat laporan" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Upgrade Kritis" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Sedang Aktif" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Sedang Tidak Aktif" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Anda tidak memiliki cukup izin untuk menyunting bidang kustom berikut." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Harian" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Dasbor" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "basis data" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Tanggal & Jam" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Tanggal Ditambahkan" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Tanggal Diubah" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Hari dalam seminggu" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Versi DB tidak bisa disikronisasi." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "dihapus" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Hapus" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Hapus Semua Laporan" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Hapus Lencana" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Deskripsi" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Tidak bisa" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Batas Awal" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Batas Akhir" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Mengunduh Laporan" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Pilihan Ganda ke Bawah" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "DISUNTING" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Disunting oleh" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Sunting" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Sunting log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Surel" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Semua Kolektif" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Error dalam geocoding! HTTP Error" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Library IMAP PHP belum terpasang" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Kredensial Tidak Tepat" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Error!" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, tidak bisa melaporkan kejadian" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Setiap Enam Jam" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Setiap Duabelas Jam" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Eksperimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "umpan" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Umpan Balik" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "umpan" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Daftar Pilihan" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Nilai Standar" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Jenis Data" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Angka" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Teks Bebas" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Tinggi (dalam baris)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Kolom Tersembunyi" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Panjang Karakter Paling Banyak" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Kolom Nama" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Beralih" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Tidak" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Ya, secara standar ditutup" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Ya, secara standar dibuka" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Tidak bisa menemukan berkas yang diunggah" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Tidak bisa membuka berkas untuk dibaca" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Form Tersebut Tidak Ada!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Kolom Untuk Teks (Teks Bebas)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Kolom Tanggal" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Kolom Tombol Radio" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Kolom Tanda Centang" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Kolom Pilihan ke Bawah" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Dari" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Dari" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Error Waktu Habis untuk Penamaan Lokasi" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Dapatkan Bantuan" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Dapatkan tema lain" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Dapatkan plugin lain" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Tindakan" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Tambah/Sunting" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Surel" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Pengelolaan Pengguna" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Peran" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Pengguna" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "bantu" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Tiap Jam" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Umpan kejadian untuk" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Direktori instalasi masih ada. Hapus terlebih dahulu karena berpeluang membuka celah keamanan." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Contoh" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Contoh" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Rincian Contoh" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parameter Tidak Benar" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Alamat IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Apakah ini Kolom Tanggal?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Siapa yang Bisa Lihat Jawaban" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Siapa bisa Mengirimkan Jawaban" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Kata kunci" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Kata-kata kunci" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Alamat Surel:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nama Lengkap:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Kata Sandi:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Peran:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nama Pengguna:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Layer" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Keluar" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Log" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Mengelola" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Kelola Peran & Izin" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Lihat Pengguna" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Tambah/Sunting Pengguna" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Kelola Daftar Publik Anda" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Tandai Sebagai" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "tandai sebagai bukan spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "tandai sebagai spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "tidak sesuai dengan dokumen apapun" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Pesan" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Pesan" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Pesan Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Isi Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Pesan Anda telah terkirim!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Menit" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Menit" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Parameter Hilang" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "diubah" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Perubahan Zona Waktu" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "geser ke bawah" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "geser ke atas" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Beberapa Contoh Host" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Peringatanku" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Checkin-ku" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Profilku" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Laporanku" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Suara yang Diberikan" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positif" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negatif" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nama" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Buat Peringatan Baru" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Buat Pesan Baru" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Kata Sandi Baru" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Tidak" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Ini adalah kategori khusus yang tidak akan ditampilkan dalam formulir laporan. Ini digunakan untuk menampung laporan tanpa kategori (laporan tidak berkategori)." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notifikasi" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Bukan case sensitive." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Tidak Ditemukan" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Tidak ada data untuk ditampilkan." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Tidak Ada Kesalahan" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Tidak Ada Hasil yang Ditampilkan!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "dari" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Pada Hitungan yang Tepat" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "laman" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "laman" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Halaman Tidak Ditemukan" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Maaf, halaman yang Anda inginkan tidak ada di sini.

Apakah Anda mengikuti tautan dari sebuah alamat di situs Anda?
Jika Anda menemukan halaman ini dari bagian lain dalam situs ini, mohon hubungi kami agar kami bisa memperbaikinya.

Atau, apakah Anda menemukan tautan dari situs lain?
Tautan dari situs lain bisa saja terjadi kesalahan ejaan. Beritahu kami darimana Anda mengakses halaman ini, sehingga kami bisa mengirimkan ralat ke situs tersebut.

Atau, apakah Anda mengetik sendiri alamat tautan ini?
Tautan (URL) mungkin salah. Periksa lagi ejaan dan tulisan yang tepat.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Maaf, halaman yang Anda maksudkan tidak ada." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Penggunaan Parameter" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Kata Sandi" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Ubah Kata Sandi" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Hai" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Kami telah menerima permintaan untuk mengubah kata sandi untuk" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Untuk mengubah kata sandi, klik tautan di bawah ini (atau salin dan tempel di browser Anda)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Sesuai permintaan Anda, kata sandi telah diubah. Berikut ini perinciannya" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ubah kata sandi Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telepon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Pilih " + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Data tidak bisa dikirim dengan cara pengiriman via pos" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Pratinjau" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Pesan" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Pesan Pribadi" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Pesan Peribadi Terkirim" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Judul" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Kepada" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Daftar Publik" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Kualifikasi" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "membaca" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevansi" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Judul Laporan" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Tanggal Laporan" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Pelapor" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Tingkat Pelapor" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Laporan" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Skor Reputasi" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Diminta" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Tanggapan" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Hasil" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Mencabut" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Surel ini memiliki akun yang dikelola CrowdmapID. Pengguna bisa menggunakan kata sandi sesuai akun Crowdmap untuk masuk." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Simpan Pengaturan" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Cari" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Cari Laporan" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "penacarian untuk" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Kunci enkripsi masih dalam bentuk standar. Harus diubah agar aman." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Situs ini menggunakan HTTP. Sebaiknya diubah menjadi HTTPS untuk meningkatkan keamanan." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Panduan tersedia di wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Pilih format berkas unduhan yang Anda inginkan:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "-- Pilih Satu Jenis Bidang --" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Pilih satu" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Anda harus memilih Pemicu sebelum memilih Tanggapan." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Anda harus memilih Pemicu sebelum merinci Kualifikasi." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Pengirim" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Dikirim Ke" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Pesan ini dikirimkan dari situs" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Waktu Server" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Pengaturan" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Laman untuk ditampilkan" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Menampilkan hasil" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "ditampilkan" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Ketegori Khusus" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Ini adalah kategori khusus yang tidak ditampilkan di formulir pelaporan. Ini hanya digunakan untuk fitur \"Pelapor Terpercaya\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Wilayah Tertentu" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Negara Bagian" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistik" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Stats" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Pengumpulan stat gagal. Cobalah beberapa saat lagi." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Pengumpulan Stat Gagal!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Hari Tertentu" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Judul" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tugas Dijalankan" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Kolom Teks" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nama" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Kelola Pengguna" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Error Waktu Habis" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "untuk" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Jumlah Catatan" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "ke" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Terjemahkan Laporan" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Pemicu" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Memicu Pengguna" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Pemicu" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "tidak disetujui" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Tidak diketahui" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Kegagalan Tidak Diketahui" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "belum dibaca" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Anda tidak lagi menerima peringatan dari" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Klik di sini untuk meng-upgrade" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Upgrade Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Upgrade Status Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Unggah Laporan" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Pengguna" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Pengguna" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Terverifikasi/Belum Terverifikasi" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verifikasi/Tidak Diverifikasi" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versi" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "sudah tersedia untuk upgrade." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Encoding Video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Pesan Pribadi" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Lihat Situs" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Lihat Laporan" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Selamat datang," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Ya" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Pencarian Anda untuk" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Klik tombol di bawah ini akan menghapus SEMUA laporan dalam database. Anda harus melakukan dengan hati-hati karena data tidak bisa dikembalikan lagi." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Kami rekomendasikan untuk mem-backup database Anda sebelum memulai proses" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Saya yakin bahwa saya ingin menghapus (semua) laporan %s dari database." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Apakah Anda yakin ingin menghapus semua laporan?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Tidak ada laporan yang terhapus." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Jumlah masuk" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Masuk terakhir" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Akun dikonfirmasi?" diff --git a/application/i18n/po/po-id_ID/ui_main.po b/application/i18n/po/po-id_ID/ui_main.po new file mode 100644 index 0000000000..c06dd97c14 --- /dev/null +++ b/application/i18n/po/po-id_ID/ui_main.po @@ -0,0 +1,3175 @@ +# +# Translators: +# lbell , 2012 +# Imron Fauzi , 2015 +# lbell , 2012 +# Imron Fauzi , 2014 +# Suwandi Ahmad , 2013 +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-07-28 08:45+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Tentang" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Akses" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Batas Akses" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nama Akun" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Tindakan" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Tindakan ini tidak akan bisa dibatalkan, Anda yakin mau meneruskan?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktifkan" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktif" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Tambahkan" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Ditambahkan oleh" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Data Tambahan" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Laporan Tambahan" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Tambah/Sunting" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Tambahkan Kolom" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Tambahkan Bahasa" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Tambahkan Baru" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Tambahkan Kategori Baru" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Tambahkan Terjemahan" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administrasi" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Dapatkan Peringatan" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Beritahukan saya bila ada laporan yang masuk tentang:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Rekam Peringatan Saya" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Alamat Surel:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "masukkan alamat surel " + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "masukkan nomor ponsel beserta kode negaranya" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Dapatkan Peringatan" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Peringatan telah" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Nomor Ponsel:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Atau tandai pada peta di bawah ini, dan kami akan beritahukan bila ada laporan yang masuk dalam radius 20 KM dari tanda yang Anda masukkan." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Jika Anda tidak dapat menemukan lokasi yang diinginkan, klik pada peta untuk menentukan lokasi yang benar." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Umpan RSS (salin URL di bawah ini)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Pilih kota" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Langkah 1: Pilih kota atau lokasi Anda:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Langkah 2: Kirim peringatan ke:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Langkah 3 (Optional): Pilih Kategori" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Konfirmasi Permintaan Peringatan Anda Sebelumnya" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Peringatan Anda Telah Disimpan!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Semua" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Diijinkan" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Tags HTML yang diperkenankan: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframe dari %s saja yang diperkenankan." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Semua Kategori" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Seluruh Waktu" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "dan" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Menyetujui" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Disetujui" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Laporan yang Disetujui" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Setujui Laporan Ini" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Kira-kira" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arsip" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Diarsipkan" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Urutan dari awal" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "pada" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Penulis" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Daftarkan Otomatis" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Auto" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Rata-rata Laporan Perhari" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Menunggu Persetujuan" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Menunggu Verifikasi" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Lencana" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Lencana" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Gambar Lencana" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Atau Anda dapat mengunggah gambar lencana di sini." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Kumpulan Lencana" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Pilih Lencana" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Jelajahi Profil" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Batal" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategori-kategori" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategori" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filter Kategori" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategori telah " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nama Kategori" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Ganti Jeda Tanggal" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Ganti Password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Ganti Gambar Saya" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Pilih sebuah" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Pilih poin data yang akan diunduh" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Atau pilih jeda tanggal yang Anda inginkan" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Pilih jenis kolom" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Bersihkan" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Bersihkan Peta" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Tutup" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "kelompok-kelompok" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Warna" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Komentar" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Komentar-komentar" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detail Komentar" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Pengaturan Anda Telah Disimpan!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Sesuaikan" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Surel Anda telah dikonfirmasi, silahkan masuk." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Anda berhasil mengkonfirmasi alamat surel. Seorang admministrator harus disetujui oleh akun Anda sebelum memulai login." + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Surel konfirmasi gagal terkirim. Anda bisa meminta surel baru untuk konfirmasi di bawah ini." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontak Kami" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Kode Keamanan" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Surel Anda" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Pesan" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Pesan Anda telah dikirim!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Nama Anda" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Nomor Ponsel Anda" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Kirim Pesan" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Judul Pesan" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Hak Cipta ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Buat" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Buat/Sunting" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Buat Baru" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Buat Password Baru" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Buat Laporan" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Kepercayaan" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Password Saat Ini" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Kolom yang Disesuaikan" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informasi" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Tanggal" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(bb/hh/tttt)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Tanggal & Waktu" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "Hari" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "Harian" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Menonaktifkan" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Hapus" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Telah dihapus" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "terhapus" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Penghapusan Tidak Diperkenankan" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Hapus yang Terakhir" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Menghapus Laporan Ini " + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Menghapus Terpilih" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Hapus Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Deskripsi" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Urutan dari akhir" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Contoh: Depan Pasar Besar, Jl. Raya Pasar Besar 5 Nomor 4, Jakarta Utara" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detil" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Laporan Langsung" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Tidak Diperkenankan" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Tidak Disetujui" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Unduh Laporan" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Unduh" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Ubah" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Ubah Formulir" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Sunting Laporan" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Surel" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Alamat Surel" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Pengaturan Server Surel" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Host Server Surel" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Kata Sandi Server Surel" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port Server Surel" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Dukungan SSL Server Surel" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Jenis Server Surel" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nama Pengguna Server Surel" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "jadi semua pengaturan Anda akan dikaitkan dengan surel ini" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Untuk permintaan penerimaan laporan melalui surel, masukkan pengaturan surel Anda di bawah ini. Perlu diketahui, surel akan Anda terima" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Beberapa server membutuhkan alamat surel yang lengkap" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Kata Sandi akun surel" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Port yang lazim digunakan: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Contoh: mail.websiteanda.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Contoh: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Perbolehkan atau tidak perbolehkan koneksi SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---KOSONG---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "ke" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Error!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Contoh" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Aplikasi dari Luar" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Tautan Video dari Luar" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Umpan" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Menyediakan Masukan" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Tolong beri kami masukan tentang pengalaman Anda dengan mengirimkan email ke" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Umpan" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Umpan ini sudah" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Bagian-bagian di Umpan" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nama Umpan" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL Umpan" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Kolom yang tidak digunakan" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Berkas" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Ukuran berkas Anda melebihi batas yang diijinkan." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Saringan" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Saring Laporan" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Saring Laporan menurut" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Menyaring laporan yang berisi" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Temukan" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Temukan Lokasi" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nama depan" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Jadwal Force Run" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Lupa Kata Sandi?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulir" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulir" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Deskripsi Formulir" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Ubah Formulir Ini" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Formulir Telah" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Judul Formulir" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Dari" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nama Lengkap" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation Tersedia" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Warna" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Komentar" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Label" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Lebar Coretan" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Lanjut" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Tagar" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Telah" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Cara Membantu" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Tersembunyi" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Sembunyikan" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "sembunyikan pesan ini" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Beranda" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "Tiap jam" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Cara Melapor" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Digunakan untuk mengidentifikasi Anda pada situs ini oleh pengguna lain." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Gambar" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Gambar-gambar" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Gambar/ikon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Tidak Aktif" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Kotak Masuk" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Peristiwa" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Kejadian Terdekat" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Tempat Kejadian" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Termasuk" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Kategori di dalamnya" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Kolom yang Disesuaikan di dalamnya" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Sertakan Deskripsi" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Sertakan rincian selengkap mungkin" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Termasuk Lintang" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Sertakan Informasi Lokasi" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Sertakan Bujur" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Termasuk Informasi Pribadi" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Media Masuk" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Evaluasi pada Informasi" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Masukkan lokasi yang tepat." + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Akun Anda tidak memiliki ijin untuk masuk ke fitur ini. Kontak Administrator." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Selang" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Sebagai tanggapan atas" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Alamat IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Apakah ini profil Anda?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "bagian" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "bagian-bagian" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item_details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Judul Bagian" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Kunci" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Kata kunci" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Berkas KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Unggah Berkas KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "Alamat tautan KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Bahasa" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Terakhir" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Bulan Kemarin" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Nama Belakang" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Tahun lalu" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Lintang" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Lapisan" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Lapisan Lainnya" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Lapisan ini Sudah" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nama Lapisan" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Tautan Lapisan" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Tinggalkan Komentar" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Lebih Sedikit Informasi" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Tingkat" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Tingkat ini sudah" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nama Tingkat" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Terbatas" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Tautan" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Daftar" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Mengakses Laporan" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Lokasi" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Lokasi" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Kota, Negara Bagian dan/atau Negara" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Masuk" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Akun sudah selesai dibuat. Anda bisa log in sekarang." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Sebuah konfirmasi telah terkirim ke surel Anda." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Akun sudah dibuat. Akun Anda harus disetujui oleh admin sebelum bisa digunakan." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Alamat surel tidak ada. Gunakan alamat lain atau buatlah baru terlebih dulu." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Klik penyedia akun Anda" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Masuk menggunakan" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Surel dan Kata Sandi" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Mendaftar" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Buat Akun Baru" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Terima kasih telah mendaftarkan diri di %1$s. Untuk menkonfirmasikan alamat surel, silahkan ikuti tautan: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Konfirmasi Pendaftaran" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Seorang pengguna baru telah mendaftar pada %1$s. Untuk menyetujui pendaftaran ini silahkan ke tautan: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Persetujuan Pengguna Baru" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Akun baru Anda telah disetujui untuk %1$s. Untuk login silahkan ke tautan: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Akun pengguna telah disetujui" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Buat akun baru untuk memperoleh banyak keuntungan dari fitur-fitur di situs ini." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Bujur" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Peta" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Tandai Sudah Dibaca" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Tandai Belum Dibaca" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Ukuran paling besar" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Penyaring Media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Anggota" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Pengaturan Akun Anda" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Pesan" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Pesan" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detil Pesan" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Pesan dari sumber:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Perangkat Bergerak" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modifikasi" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modifikasi Tanggal" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "bulan" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "Tiap bulan" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Lebih" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Informasi Lainnya" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Apakah Ushahidi ini digunakan untuk wilayah dari beberapa negara yang berbeda?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Anda harus mengkonfirmasi alamat surel untuk mengakses situs ini. Jika Anda kehilangan surel yang berisi konfirmasi, Anda bisa meminta lagi di bawah ini." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nama" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Laporan Terdekat" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Baru" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Berita" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Umpan Berita" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Sumber Berita" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Kategori Baru" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Kata Sandi Baru" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Laporan Baru" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Selanjutnya" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Tidak" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Tidak ada chekin untuk ditampilkan." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Tidak ada data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Tanpa" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Pemberitahuan" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Tidak Disetujui" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Tidak Disetujui" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Tidak Dipilih---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "bukan spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Tidak Ditentukan" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Tidak ada laporan" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Tidak ada hasil" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Mati" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Berita Resmi " + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Menyala" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Pilihan" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opsional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Pilihan" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organisasi" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organisasi" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Gambaran Organisasi" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Surel Organisasi" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organisasi Sudah" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nama Organisasi" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Nomor Telepon Organisasi 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Nomor Telepon Organisasi 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Situs Organisasi" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Asli" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Deskripsi Asli" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Judul Asli" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Situs Lainnya" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Kotak keluar" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Keluar" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Halaman" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Halaman" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Deskripsi Halaman" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Halaman Telah" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Nama Tab Halaman" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Judul Halaman" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Kategori Induk" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Kata Sandi" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Ulangi Kata Sandi" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Kata Sandi Telah Diganti! Silahkan Login." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Lupa kata sandi?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Periksa konfirmasi kata sandi baru di surel Anda." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Anda ingin tetap login di komputer ini?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Bulan Lalu" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Tahun Lalu" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Tertunda" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informasi Pribadi Opsional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telepon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Foto" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Gambar" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Gambar and Video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Cari lokasi Anda berdasarkan nama lokasi atau koordinat (format: 38.19,-85.61), atau klik lokasi yang dimaksud pada peta yang tersedia." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Mainkan" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Harap Dicatat" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugin" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugin Situs " + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Profil untuk Umum" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Tautan Profil untuk Umum" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Pratinjau" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Pratinjau Bagian" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Pratinjau Pesan" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Sebelumnya" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Pribadi" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Warna Profil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Profil Anda Sudah Disimpan" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Status Versi Cepat" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Peringkat" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Baca" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Menerima" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Diterima dari" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Menerima Notifikasi" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Laporan Terbaru" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Perbarui Umpan Berita" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Surel Terdaftar" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Hapus" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Jawab" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Laporan" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Laporan (dari peta, diurutkan berdasar tanggal kejadian)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Pelapor" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Para Pelapor" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Tanggal pelaporan" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Surel Pelapor" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nama Depan Pelapor" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Pelapor Telah" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Alamat IP Pelapor" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Nama Belakang Pelapor" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Tingkat Pelapor" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Tingkatan Pelapor" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Nomor Telepon Pelapor" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Laporan-laporan" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Jelajahi" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Kirim" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Laporan dari Pelapor Ini" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategori" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "Laporan %d " + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Tanggal" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Gambaran" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Laporan bisa diunduh dalam format CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Surel" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Fitur" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Temukan lokasi terdekat dengan Anda" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nama Pertama" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Nama Keluarga" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Nama Lokasi" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Tautan Sumber Berita" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informasi Tambahan" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Unggah Foto" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Kembali ke halaman pelaporan" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Pilih Kota" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Laporan Anda sudah dikirimkan ke staf kami untuk diperiksa, Kami akan segera mengabari Anda." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Kirim Laporan Baru" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Waktu" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Linimasa Laporan" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Judul Laporan" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Tautan Video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Laporkan Kejadian" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detil Laporan" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Dengan mengirimkan sebuah pesan ke" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Dengan mengirimkan sebuah surel" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Dengan mengirimkan tweet dengan tagar/hashtag" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Dengan mengisi formulir di situs kami" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Dengan menggunakan aplikasi" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Laporan Anda Telah Disimpan" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Judul Laporan" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Permintaan informasi lebih lanjut" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Permintaan lokasi" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Diminta" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Syarat" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Kirim Ulang Surel Konfirmasi" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Reset semua penyaringan" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Reset Kata Sandi" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Mendapatkan daftar nama kota dari negara yang dipilih" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Akun dikelola oleh layanan %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Anda telah memiliki sebuah akun yang dikelola CrowdMapID! Cobalah menggunakan surel dan kata sandi Anda di CrowdMapID untuk login." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Peran" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Simpan" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Tersimpan" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Simpan dan Tambahkan Baru" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Simpan dan Tutup" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Simpan Laporan" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Jadwal" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Penjadwalan" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Hari" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Jam" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Penjadwal Pencatatan" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Menit" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Hari dalam Seminggu" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "PENCARIAN" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Hasil Pencarian" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Kode Keamanan" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Pilih Semua" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Pilih Jenis Kolom" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Pilih Tipe Formulir" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Pilih dalam peta" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Pilih beberapa" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Pastikan Anda telah memilih satu bagian" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Pilih Tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Kirim" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Kirim Konfirmasi" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Kirim ke" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Terkirim" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Dikirim oleh" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Alamat server" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Jenis server" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Layanan" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Layanan Nama Pengguna" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Layanan User ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Bagi" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Data Bersama" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Pembagian telah" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Berbagi" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Peta Lebih Pendek" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Tampilkan" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Tampilkan Semua " + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Tampilkan Pesan" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Menampilkan Laporan Dari %1$s ke %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Situs" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "alamat surel situs" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL Situs" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Peta Lebih Kecil" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Maaf, Anda tidak memiliki lencana apapun." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Sumber" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nama Sumber" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sortir" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Disortir oleh" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL Sumber" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Dukungan SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Dari" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Langkah" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Kirim Laporan" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Dikirimkan oleh %1$s melalui %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Kirim lewat SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Kirim SMS ke" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "di telepon Anda" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Berhasil!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Berhasil diimpor" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Nama Belakang" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Survey" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistem" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Peta Lebih Tinggi" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Port TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Tema" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema Bawaan Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Setting tema" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Ini" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hari ini" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Bulan ini" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Minggu ini" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Tahun ini" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Ini Profil Anda." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Waktu" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Judul " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "ke" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hari ini" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hari ini di" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Semua Laporan" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Diterjemahkan" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Gambaran yang sudah diterjemahkan" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Judul Terjemahan" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Diterjemahkan dalam" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Terjemahan" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Penerjemahan sudah disimpan" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Dipercaya" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipe" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Gagal mengirim surel." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Laporan Belum Terkategori" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Belum Terbaca" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Belum Terbukti" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Update umpan" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Unggah" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Simak panduan unggah laporan kami:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Panduan unggah XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Panduan unggah CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Berkas yang akan diunggah" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Unggah Laporan" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Kolom yang disesuaikan harus memiliki form_id yang ditambahkan. Misalnya untuk kolom Test, pada formulir standar, id 1 akan menajdi Test-1. Sepanjang kolom yang disesuaikan untuk diimpor, pastikan bahwa" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Dengan formulir di bawah ini, Anda bisa mengimpor kejadian ke dalam sistem Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Laporan harus diunggah dalam bentuk CSV atau XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Jika ID sebuah kejadian sudah ada dalam database, maka masukan dari berkas CSV/XML akan diabaikan." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Setidaknya berisi Judul Kejadian dan Tanggal Kejadian" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Jika tidak ada koordinat yang disediakan, maka lokasi akan ditentukan berdasarka Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Jika mengimpor informasi tambahan seperti informasi pribadi dan/atau kolom yang sudah disesuaikan" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Setidaknya satu dari informasi pribadi (nama, nama lengkap, surel) yang dimasukkan HARUS tersedia. Isian yang kosong tidak bisa diimpor." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Isian Anda untuk kolom dropdwon, tombol dan tanda centang sesuai dengan pilihan yang disediakan untuk kolom yang sudah disesuaikan sebagai contoh" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Pilihan pada tanda centang dipisahkan dengan koma, misalnya tersedia pilihan Apel, Mangga dan Anggur, maka entri untuk ini akan berbentuk \"Apel,Mangga,Anggur\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Kolom tanggal harus dalam bentuk mm/dd/yyyy, misalnya 3 Oktober 2013 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Contoh Laporan Berbentuk CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,JUDULKEJADIAN,TANGGAL KEJADIAN,LOKASI,DESKRIPSI,KATEGORI,DISETUJUI,DIPERIKSA,LINTANG,BUJUR
\"1\",\"Perkiraan korban tewas di Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Tiga kasus sudah dikonfirmasi\",\"Tewas, Warga Sipil, \",Ya,Ya,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Penjarahan di mana-mana\",\"Kerusuhan, Kematian, Kehilangan Harta, \",Ya,Tidak,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Sukses Mengunggah" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Unggah Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Pengguna" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nama Pengguna" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Admin Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Pembuktian" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Terbukti" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Laporan Terpercaya" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Buktikan" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verifikasi Laporan Ini" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versi" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "melalui" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Lihat" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Lihat" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Lihat Semua" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Lihat semua umpan" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Lihat Semua Laporan" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Lihat Items" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Lihat Lebih Banyak" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Lihat Profil untuk Umum" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Lihat Laporan" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Lihat Laporan-laporan" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Lihat Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Terlihat" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Menunggu Persetujuan" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Menunggu Pembuktian" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Peta Lebih Lebar" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulir di Situs" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Situs" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Bobot" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "Tiap minggu" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ya" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Kemarin" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Dashboard Anda" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Berkas Anda" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Perbesar" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Perkecil" diff --git a/application/i18n/po/po-id_ID/upgrade.po b/application/i18n/po/po-id_ID/upgrade.po new file mode 100644 index 0000000000..918972cea2 --- /dev/null +++ b/application/i18n/po/po-id_ID/upgrade.po @@ -0,0 +1,302 @@ +# +# Translators: +# Suwandi Ahmad , 2013 +# Suwandi Ahmad , 2013 +# Vasanthi Hargyono , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2015-06-10 06:57+0000\n" +"Last-Translator: Vasanthi Hargyono \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Data yang dimasukkan tidak dalam format yang bisa diterima. Masukkan 0 untuk Tidak atau 1 untuk Ya." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Pembaruan Otomatis" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Pembaruan (Upgrade) Tersedia" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Berlanjut" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Pembaruan" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Jadi, kami akan meningkatkan basis data anda dari versi" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "ke basis data versi terbaru" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Klik tombol \"Perbaruan\", santai dan saksikan pertunjukan yang ajaib." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Oh ya, jika Anda ingin membackup basis data, beri tanda centang di bawah ini dan kami akan melakukannya untuk Anda." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Backup basis data sebelum pembaruan? (Sangat direkomendasikan)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Pembaruan basis data Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi sudah diperbarui! Sebelum melanjutkan, Anda perlu memperbarui basis data ke dalam versi terkini (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Versi basis data Anda adalah versi terkini." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Ada kegagalan dalam proses pembaruan " + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Pembaruan Manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Status pembaruan Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Instruksi di bawah ini menjelaskan cara memperbarui Ushahidi." + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Unduh
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Unduh versi terkini Ushahidi dari" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php dan ./applications/config/auth.php files.
- Untuk menghindari hal-hal yang tidak diinginkan, kami sarankan Anda men-backup semua isi Ushahidi terlebih dahulu.
Salin berkas-berkas
- Ekstrak zip hasil unduhan
- Tergantung sistem operasi dalam server Anda, gunakan aplikasi yang Anda sukai (misalnya Telnet, FTP, SSH) untuk masuk dalam server dan mengganti semua isinya dengan yang terbaru.
Perbarui database
- Pertama, periksa dulu versi database Anda dalam db_version bagian pengaturan table atau simak informasi Ushahidi di bagian paling atas halaman ini.
- Jika Anda masih menggunakan versi 25, Anda bisa memperbarui dari versi 25 ke 26, kemudian 26 ke 27, dan seterusnya hingga versi berkas SQL terkini di folder /sql.
- Dengan klien database Anda, perbarui database dengan mengeksekusi berkas upgradex-x.sql yang sesuai.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Langkah 3: Lihat folder sql. Jalankan secara manual pembaruan berkas -.sql file dari versi db saat ini menjadi berkas sql versi terakhir." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Langkah 4: Klik tombol \"Continue\" untuk memperbarui tabel yang diperlukan." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Untuk perbaruan otomatis, klik tombol di bawah ini." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Saat ini, Anda menggunakan Ushahidi v%1$s dengan database %2$d yang berjalan pada %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Sedang menjalankan proses upgrade" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Untuk melanjutkan pembaruan dengan mudah, informasi server FTP di hosting Anda berikut ini perlu dilengkapi." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Contoh: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Kata sandi FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nama Pengguna FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Anda saat ini sudah menggunakan versi terakhir Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Anda tidak memerlukan pembaruan versi." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versi basis data: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Perhatian: Versi piranti lunak dalam version.php dan basis data tidak cocok." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Perhatian: Versi basis data dalam version.php dan basis data tidak cocok." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Basis data:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Mengunduh Ushahidi versi terkini..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Berkas Log" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Pengunduhan Berhasil. Bongkar berkas-berkas..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Pengunduhan gagal." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Proses bongkar berhasil. Berkas diduplikasi..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Proses bongkar gagal." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Berkas berhasil Diduplikasi. Database diperharui..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Duplikasi berkas gagal." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Backup basis data dan pembaruan berhasil." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Backup basis data gagal." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Perbaruan basis data berhasil." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Menghapus berkas yang sudah diunduh..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "Pembaruan BERHASIL. Lihat Berkas Log" diff --git a/application/i18n/po/po-it_IT/alerts.po b/application/i18n/po/po-it_IT/alerts.po new file mode 100644 index 0000000000..a676d25302 --- /dev/null +++ b/application/i18n/po/po-it_IT/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# Damtux, 2012 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Il campo Email non contiene un indirizzo email valido" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Indirizzo Email già registrato per ricevere alert su questo luogo." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Il campo Email deve contenere un numero di caratteri compreso tra 4 e 64." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Il campo Email è richiesto se la checkbox è selezionata." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "L'installazione copre solamente un paese. Assicurati che la località dei tuoi avvisi sia nel paese %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Sulla mappa non hai selezionato un luogo valido." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Sulla mappa non hai selezionato un luogo valido." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Sulla mappa non hai selezionato un luogo valido." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Sulla mappa non hai selezionato un luogo valido." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Il campo Telefono Cellulare non sembra avere il numero di cifre corretto." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Questo numero di cellulare è stato già registrato per ricevere alert da quel luogo." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Il campo Telefono Cellulare non contiene un numero valido. Inserisci solamente numeri, compreso il prefisso nazionale." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Inserire numero di cellulare o indirizzo email." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Il campo Telefono Cellulare è richiesto se la checkbox è stata selezionata." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Non hai selezionato un raggio valido sulla mappa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Non hai selezionato un raggio sulla mappa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Non è stato impostato un destinatario per gli avvisi." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Hai sottoscritto gli avvisi per le seguenti categorie" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Questo codice è già stato verificato." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Questo codice di verifica non è stato trovato! Conferma la URL corretta." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Il tuo codice è stato verificato correttamente. Riceverai alert man mano che le segnalazioni verranno pubblicate." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Per confermare la tua richiesta di alert, vai a " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Ritorna alla Pagina degli alert per crearne di nuovi" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "La tua richiesta di Email Alert è stata creata e un messaggio di verifica è stato inviato a" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Inserisci qui di seguito il codice di conferma Email che hai ricevuto: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "La tua richiesta di Email Alert Request non è stata salvata!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "La tua richiesta di Email Alert Request è stata salvata!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Il sistema non ha potuto elaborare la tua richiesta di conferma!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "La tua richiesta di Mobile Alert è stata creata e un messaggio di verifica è stato mandato a" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Inserisci qui di seguito il codice SMS di conferma che hai ricevuto sul tuo cellulare: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "La tua richiesta di Mobile Alert NON è stato salvato!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "La tua richiesta di Mobile Alert è stata salvata!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Questa funzionalità non è stata configurata correttamente nel processo di alert." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Hai ricevuto questa email perché hai sottoscritto il ricevimento di alert. Se in futuro non vorrai più ricevere gli alert vai a " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Non riceverai più gli alert da" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Non abbiamo potuto cancellare la tua iscrizione. Conferma di aver inserito la URL corretta." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "verifica - alert" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Non riceverai alert relativi a questo luogo fino a quando non confermerai la tua richiesta." diff --git a/application/i18n/po/po-it_IT/auth.po b/application/i18n/po/po-it_IT/auth.po new file mode 100644 index 0000000000..6b75569d69 --- /dev/null +++ b/application/i18n/po/po-it_IT/auth.po @@ -0,0 +1,254 @@ +# +# Translators: +# Andrea Richetta , 2012 +# Stefano Pallicca , 2012 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Il campo email non contiene un indirizzo email valido." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Siamo spiacenti, esiste uno user account con questo indirizzo email." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Il campo email deve essere lungo almeno 3 caratteri e non più di 64." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Il campo email è richiesto." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Il campo nome deve essere lungo almeno 3 caratteri e non più di 100." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Il campo nome " + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Il campo username contiene carattere non permessi." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "La password deve essere lunga almeno 8 caratteri." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Controlla se hai inserito correttamente l'indirizzo email e la password." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Inserisci la stessa password nei due campi password." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Il campo password è obbligatorio." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Il campo password deve contenere solo caratteri alfanumerici, i simboli # e @, numeri, underscores e trattini." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "La password che hai inserito per il tuo account non è corretta. Riprova." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Il campo password deve essere lungo almeno 8 caratteri." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Controlla se hai inserito correttamente l'indirizzo email e la password." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Inserisci la stessa password nei due campi password." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Il campo password è obbligatorio." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Il campo password deve contenere solo caratteri alfanumerici, i simboli # e @, numeri, underscores e trattini." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "C'é stato un problema durante il login." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Il campo password deve essere lungo alemno 5 caratteri e non più di 16." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Per favore controlla che la password inserita sia corretta." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Per favore inserisci la stessa password nei due campi password." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Il campo password è richiesto." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Il server di autenticazione non è disponibile. Riprovare più tardi." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Il campo password deve contenere solo caratteri alfanumerici, i simboli # e @, numeri, underscores e trattini." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Il campo password di conferma deve essere uguale al campo password." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Il campo email non contiene un indirizzo email valido." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Spiacenti, non abbiamo il tuo indirizzo email." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Il campo email è richiesto." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Solo un utente superadmin può modificare o far diventare admin un utente." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Formato del ruolo non valido." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Il campo ruolo deve essere lungo almeno 5 caratteri e non più di 30." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Devi definire almeno un ruolo." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Seleziona il ruolo ADMIN or USER." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Il token della password dimenticata non è valido" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "E' necessario il token per la password dimenticata" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Il ruolo admin dell'utente non può essere modificato." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "L'indirizzo URL del profilo pubblico può contenere solamente numeri e lettere. " + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Spiacenti, questo username è già in uso." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Il campo username deve essere lungo almeno 2 caratteri e non più di 30." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Per favore controlla che lo username inserito sia corretto." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Il campo username è richiesto." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Il ruolo super admin non può essere modificato." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Possibilità di attacco CSRF. Intendi davvero creare/modificare l'utente?" diff --git a/application/i18n/po/po-it_IT/bug.po b/application/i18n/po/po-it_IT/bug.po new file mode 100644 index 0000000000..0698b4b8eb --- /dev/null +++ b/application/i18n/po/po-it_IT/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Inserisci un codice di sicurezza valido" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Inserisci il codice di sicurezza" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Il campo Email non contiene un indirizzo email valido" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Il campo Email deve essere lungo almeno 4 caratteri e non pi" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Il campo Email " + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Il campo errore " + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Il campo oggetto deve essere lungo almeno 3 caratteri." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Il campo oggetto " + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Il campo nome deve essere lungo almeno 3 caratteri." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Il campo nome " diff --git a/application/i18n/po/po-it_IT/category.po b/application/i18n/po/po-it_IT/category.po new file mode 100644 index 0000000000..4aaca06287 --- /dev/null +++ b/application/i18n/po/po-it_IT/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# pibinko , 2013 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-17 23:38+0000\n" +"Last-Translator: pibinko \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Il campo colore deve contenere 6 caratteri." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Il campo colore è necessario" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Il campo descrizione è necessario" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Assicurati che la dimensione delle immagini caricate non sia superiore a 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Il campo immagine non contiene un'immagine valida. I soli formati accettati sono .JPG, .PNG e .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Il campo immagine non contiene un file valido" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Il campo titolo deve essere lungo almeno 3 caratteri non pi" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Il campo titolo è necessario." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Non puoi far diventare una sottocategoria una categoria che già contiene delle sottocategorie" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "La categoria madre non esiste." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Il campo categoria madre deve essere numerico." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "La categoria padre non può essere una categoria speciale" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Il campo categoria madre " + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "La categoria e la categoria madre non possono essere uguali." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Le categorie speciali non posso diventare sottocategorie" diff --git a/application/i18n/po/po-it_IT/comments.po b/application/i18n/po/po-it_IT/comments.po new file mode 100644 index 0000000000..218e3e7fe4 --- /dev/null +++ b/application/i18n/po/po-it_IT/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Damtux, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Inserisci un codice di sicurezza valido." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Inserisci il codice di sicurezza." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Hai inserito un codice di sicurezza errato." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Il campo Nome deve essere lungo almeno 3 caratteri." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Il campo Nome è obbligatorio." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Il campo Commenti è obbligatorio." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Il campo Email non contiene un indirizzo email valido." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Il campo Email deve essere lungo almeno 4 caratteri e non più di 64." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Il campo Email è obbligatorio se la casella di controllo è selezionata." diff --git a/application/i18n/po/po-it_IT/contact.po b/application/i18n/po/po-it_IT/contact.po new file mode 100644 index 0000000000..076d899e64 --- /dev/null +++ b/application/i18n/po/po-it_IT/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# pibinko , 2013 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-17 23:48+0000\n" +"Last-Translator: pibinko \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Inserisci un codice di sicurezza valido" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Inserire un codice di sicurezza valido" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Inserisci il codice di sicurezza" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Il campo Email non contiene un indirizzo email valido?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Il campo Email deve essere lungo almeno 4 caratteri e non pi" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Il campo Email " + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Il campo Messaggio è obbligatorio." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Il campo Nome deve essere lungo almeno 3 caratteri." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Il campo Nome è obbligatorio." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Il campo Oggetto deve essere lungo almeno 3 caratteri." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Il campo Oggetto è obbligatorio." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Si è verificato un errore durante l'invio del messaggio." diff --git a/application/i18n/po/po-it_IT/core.po b/application/i18n/po/po-it_IT/core.po new file mode 100644 index 0000000000..a1aa0ad584 --- /dev/null +++ b/application/i18n/po/po-it_IT/core.po @@ -0,0 +1,160 @@ +# +# Translators: +# Davide Beatrici , 2013 +# Stefano Pallicca , 2012 +# pibinko , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-11-17 23:46+0000\n" +"Last-Translator: pibinko \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "file di configurazione" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controller" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Il driver %s per la libreria %s deve implementare l'interfaccia %s." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Il driver %s per la libreria %s non può essere trovato." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Vai alla home page o riprova." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Impossibile completare la richiesta." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "helper" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Il tipo di file richiesto, .%s, non è consentito nel tuo file di configurazione delle viste." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Metodo non valido %s invocato in %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "La proprietà %s non esiste nella classe %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "libreria" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "La cartella del log directory è scrivibile: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modello" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi non ha potuto determinare un controller per elaborare questa richiesta: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Definisci una route di default in config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "La pagina richiesta, %s, non è stata trovata." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Segnala questo problema a Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "La risorsa %s richiesta, %s, non è stata trovata." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Analisi dello stack" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Caricato in {execution_time} secondi, usando {memory_usage} della memoria. Generato da Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "da destra a sinistra" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "E' consentita un'unica istanza di Ushahidi per richiesta di pagina." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Non catturata %s: %s nel file %s alla riga %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "vista" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Definisci il nome file della vista prima del calling render" diff --git a/application/i18n/po/po-it_IT/database.po b/application/i18n/po/po-it_IT/database.po new file mode 100644 index 0000000000..5eb6f7a5df --- /dev/null +++ b/application/i18n/po/po-it_IT/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# pibinko , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-17 23:41+0000\n" +"Last-Translator: pibinko \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Errore nel database: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "La Tabella \"%s\" non può essere trovata nel database. Assicurati di stare usando la versione più recente del database per questa versione di Ushahidi." diff --git a/application/i18n/po/po-it_IT/datetime.po b/application/i18n/po/po-it_IT/datetime.po new file mode 100644 index 0000000000..341dc815ab --- /dev/null +++ b/application/i18n/po/po-it_IT/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Ven" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Venerdì" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Lun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Lunedì" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sab" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sabato" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dom" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Domenica" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Gio" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Giovedì" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Martedì" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mer" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Mercoledì" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Gen" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Gennaio" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Febbraio" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marzo" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Aprile" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mag" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maggio" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Giu" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Giugno" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Lug" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Luglio" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosto" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Set" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Settembre" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Ott" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Ottobre" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novembre" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dic" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Dicembre" diff --git a/application/i18n/po/po-it_IT/feeds.po b/application/i18n/po/po-it_IT/feeds.po new file mode 100644 index 0000000000..c32904f0aa --- /dev/null +++ b/application/i18n/po/po-it_IT/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Il nome del feed deve essere lungo almeno 3 e non più di 70 caratteri." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Inserite il nome del feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Inserite la URL del feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Inserite una URL valida. Es. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "FONTE" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "TITOLO" diff --git a/application/i18n/po/po-it_IT/footer.po b/application/i18n/po/po-it_IT/footer.po new file mode 100644 index 0000000000..9682d5d0ce --- /dev/null +++ b/application/i18n/po/po-it_IT/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# pibinko , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-17 23:36+0000\n" +"Last-Translator: pibinko \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl non è installato su questo sistema" diff --git a/application/i18n/po/po-it_IT/form.po b/application/i18n/po/po-it_IT/form.po new file mode 100644 index 0000000000..3df93b7186 --- /dev/null +++ b/application/i18n/po/po-it_IT/form.po @@ -0,0 +1,124 @@ +# +# Translators: +# Stefano Pallicca , 2012 +# Damtux, 2012 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Il valore predefinito che hai fornito non è valido per il campo." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Il Campo Nome deve essere lungo almeno 3 caratteri e non più di 200." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Inserisci un valore tra 0 e 50 per il campo Altezza." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Hai inserito un valore non valido per il Campo Data." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Seleziona Si o No per il Campo Data" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Il campo Nome deve essere lungo almeno 3 caratteri e non più di 100." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Inserisci un campo Nome." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Il nome del campo che hai inserito esiste già in questo form. Inserire un nome diverso." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Non hai inserito un valore valido per il Campo Richiesto" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Seleziona Si o No per il campo richiesto" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Seleziona un Tipo di Campo valido." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Seleziona il Tipo di Campo." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Inserisci un valore tra 0 e 300 per il campo Larghezza" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Inserisci la Descrizione del form." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Il form di default non può essere cancellato." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Seleziona a quale form aggiungere questo campo." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Seleziona il form al quale aggiungere questo campo." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Il nome del form deve essere lungo almeno 3 caratteri e non più di 100." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Inserisci il nome del form." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Un form con questo titolo esiste già. Inserire un nome diverso." diff --git a/application/i18n/po/po-it_IT/imap.po b/application/i18n/po/po-it_IT/imap.po new file mode 100644 index 0000000000..9940acb988 --- /dev/null +++ b/application/i18n/po/po-it_IT/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Non è possibile aprire lo stream IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Il servizio email service non è supportato" diff --git a/application/i18n/po/po-it_IT/installer.po b/application/i18n/po/po-it_IT/installer.po new file mode 100644 index 0000000000..c04b5da9b6 --- /dev/null +++ b/application/i18n/po/po-it_IT/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Stefano Pallicca , 2012 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Percorso di base" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Database" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Indirizzo Database" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Se stai usando Ushahidi sul tuo computer, questo sarà considerato \"localhost\". Se stai usando Ushahidi con un web server, puoi avere le informazioni sull'host dal tuo web hosting provider" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nome Database" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Il nome del database per Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Per ulteriori informazioni leggete questo articolo nel wiki che tratta del databases con maggior dettaglio" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Langua di Default (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Ogni deployment di Ushahidi contiene un set traduzioni in altre lingue. Puoi anche aggiungere la tua" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Disabilita" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Abilita" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Qui di seguito sono elencate delle sintesi degli errori rilevati" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "La location sul tuo server dove hai salvato i file di Ushahidi. Abbiamo rilevato automaticamente questo valore, assicurati che sia corretto. Se il campo è vuoto, non importa, significa che ushahidi è stato intsallato nella top level directory" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Completato" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Generale" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Tutti possono richiedere una api key. Richiedi la tua" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Indietro" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALLAZIONE AVANZATA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Completa il settaggio di base attraverso questo processo a 5-step. Include serve, map, nome del sito e dettagli di contatto" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALLAZIONE DI BASE" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Semplice e veloce. Tutto ciò di cui hai bisogno è la root directory del vostro website e le informazioni relative al vostro database. Scegli questa opzione se vuoi iniziare velocemente, potrai sempre configurare il resto successivamente" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Procedi" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Benvenuto al processo di installazione di Ushahidi. Scegli qui di seguito quale tipo di installazione vuoi utilizzare" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Installatione avvenuta con successo" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Server di Posta" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Indirizzo del Server di Posta" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Esempio: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Password del Server di Posta" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "la password che usi normalmente per effettuare il login nella tua posta" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Porta del Server di Posta" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Porte Comuni: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipo Server di Posta" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) o Post Office Protocol (POP). Qual è la differenza?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Nome Utente Server di Posta" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Se utilizzi Gmail, Hotmail, o Yahoo Mail, inserisci come username l'indirizzo email completo" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mappa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Fornitore Mappa" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi può utilizzare indifferentemente uno di questi quattro mapping providers: Google, Bing, Yahoo o Open Street Map. Scegli quello che ha contiene maggiori dettagli per la tua area territoriale" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Ulteriori step..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Password" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "La password del tuo database" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Precedente" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Restart il tuo Apache Server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Abilita o Disabilita SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Alcuni mail servers ti danno la possibilità di utilizzare SSL quanto viene aperta una connessione. L'utilizzo di SSL è raccomandato poiché aumenta il livello di sicurezza" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Setup il tuo SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Indirizzo Email del Sito" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Indirizzo Email del Sito per gli Avvisi" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Quando gli utenti del sito si iscrivono per ricevere email alerts, riceveranno emails da questo indirizzo. Questo indirizzo email non deve essere uguale a Site Email Address" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Tutta la comunicazione via email del sito verrà effettuata attraverso questo indirizzo di posta" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nome Sito" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Il nome del tuo sito" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Tagline sito" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "La tua tagline" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "I files e le cartelle elencate qui di seguito devono essere scrivibili dal tuo your webserver" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Qui trovi le istruzioni per cambiare i permessi dei file:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Prima di iniziare, dovrai assicurarti che i seguenti file e cartelle siano scrivibili dal tuo server. Questo comporta cambiare i permessi dei file" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Per procedere con il processo di installazione, tieni a portata di mano le seguenti informazioni" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefisso tabelle" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalmente non dovresti cambiare il table prefix. Ad ogni modo, se vuoi operare con installazioni multiple di Ushahidi ma con un singolo databas puoi farlo cambiando il prefix da qui" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titolo" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Per effettuare il login, vai a" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Carica i dati dei report" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nome Utente" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Lo username del database" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "e utilizza le seguenti credenziali" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Visita il tuo website" diff --git a/application/i18n/po/po-it_IT/layer.po b/application/i18n/po/po-it_IT/layer.po new file mode 100644 index 0000000000..c5ee5b720b --- /dev/null +++ b/application/i18n/po/po-it_IT/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Il campo colore deve essere lungo 6 caratteri." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Il campo Colore è richiesto." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Il campo File non contiene un file valido. Gli unici formati accettati sono .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Il campo File non sembra contenere un file valido" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Il campo nome deve essere lungo almeno 3 caratteri e non più di 80." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Il campo nome è richiesto." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "E' richiesta o una Url o un file KML" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Non puoi avere sia un file che una Url Kml" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Inserisci una URL valida. Es. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-it_IT/libraries.po b/application/i18n/po/po-it_IT/libraries.po new file mode 100644 index 0000000000..4532bc1d1e --- /dev/null +++ b/application/i18n/po/po-it_IT/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Damtux, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Non è stato possibile connettersi al server Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Non è stato possibile ricevere la risposta dal server Akismet." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "La API Library: : %s, per la classe %s non è stata trovata. Controlla la tua API task routing table." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "La tua chiave API Akismet non è valida" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Errore nell'esecuzione di fopen metodo di invio!
Verifica se PHP ha un supporto OpenSSL e assicurati che la versione PHP sia maggiore della 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Il tuo unicode message è troppo lungo (Lunghezza attuale=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Specifica un indirizzo di destinazione (A)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Specifica un indirizzo per il mittente (DA)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Il tuo unicode message è troppo lungo! (Lunghezza attuale=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Metodo di invio non supportato!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "La Libreria APi %s non è valida. Tutte le librerie APi devo essere sottoclassi di %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Non è stato possibile cancellare la directory %s" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Errore nell'estrazione: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Il download dell'ultima versione di Ushahidi non è andato a buon fine. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Non è stato possibile copiare il File %s" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Non è stato possibile cancellare il File %s" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Script per l'aggiornamento di Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Il file scaricato Ushahidi zip %s, non è scrivibile" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s non è disponibile nella classe RiverID." diff --git a/application/i18n/po/po-it_IT/maintenance.po b/application/i18n/po/po-it_IT/maintenance.po new file mode 100644 index 0000000000..064060e86e --- /dev/null +++ b/application/i18n/po/po-it_IT/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Spiacente, il nostro sito è attualmente in manutenzione. Riprova tra qualche minuto." diff --git a/application/i18n/po/po-it_IT/message.po b/application/i18n/po/po-it_IT/message.po new file mode 100644 index 0000000000..7db708667a --- /dev/null +++ b/application/i18n/po/po-it_IT/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Digitate un codice di sicurezza valido" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Digitate un codice di sicurezza" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Il campo Email contiene un indirizzo email valido?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Il campo Email deve essere lungo almeno 4 caratteri e non pi" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Il campo Email " + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Il campo Commenti " + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Il campo Nome deve essere lungo almeno 3 caratteri." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Il campo Nome " + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Il campo Telefono non " diff --git a/application/i18n/po/po-it_IT/mhi.po b/application/i18n/po/po-it_IT/mhi.po new file mode 100644 index 0000000000..b029dcfe42 --- /dev/null +++ b/application/i18n/po/po-it_IT/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Per favore inserisci un codice di controllo valido." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Per favore inserisci il codice ci controllo." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Il campo email contiene un valore che non è un indirizzo email valido." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Per favore inserisci un indirizzo email valido." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Il campo messaggio è obbligatorio." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Il subject deve contenere almeno 3 caratteri." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Il campo subject è obbligatorio." diff --git a/application/i18n/po/po-it_IT/notifications.po b/application/i18n/po/po-it_IT/notifications.po new file mode 100644 index 0000000000..ae3bea64af --- /dev/null +++ b/application/i18n/po/po-it_IT/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Questo messaggio " + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Accesso Amministratore" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Un nuovo Commento " + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nuovo Commento" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Un Nuovo Messaggio Email " + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nuovo Messaggio Email" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Una nuova segnalazione " + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nuova segnalazione" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Un nuovo Messaggio di Testo " + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nuovo Messaggio di Testo" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Hai Ricevuto un Nuovo Avviso" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nuova Avviso!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Hai Ricevuto un Messaggio Privato" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nuovo Messaggio Privato" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Per rispondere Andare A:" diff --git a/application/i18n/po/po-it_IT/page.po b/application/i18n/po/po-it_IT/page.po new file mode 100644 index 0000000000..c8fdef7c92 --- /dev/null +++ b/application/i18n/po/po-it_IT/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Inserire il Titolo della Pagina" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Il Titolo della Pagina deve essere lungo tra 3 e 150 caratteri" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Inserire il Nome del Tab della Pagina" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Inserire la Descrizione della Pagina" diff --git a/application/i18n/po/po-it_IT/permissions.po b/application/i18n/po/po-it_IT/permissions.po new file mode 100644 index 0000000000..31165d9fb0 --- /dev/null +++ b/application/i18n/po/po-it_IT/permissions.po @@ -0,0 +1,114 @@ +# +# Translators: +# Giuseppe Murabito , 2013 +# Damtux, 2012 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-11-02 12:13+0000\n" +"Last-Translator: Giuseppe Murabito \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Vedi Notizie" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crea/Modifica/Elimina Notizie" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Approva Notizie" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verifica Notizie" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gestione Commenti delle Notizie" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Scarica Notizie" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Carica Notizie" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gestione Messaggi" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gestisci Messaggi Reporters" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Vedi Statistiche" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modifica Impostazioni" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gestione Pannello" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gestione Utenti" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Gestione Ruoli" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Può fare una registrazione" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Gestione registrazioni" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Accesso UI Amministratore" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Accesso UI Membri" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Cancella tutti i rapporti" diff --git a/application/i18n/po/po-it_IT/private_message.po b/application/i18n/po/po-it_IT/private_message.po new file mode 100644 index 0000000000..556e6368d2 --- /dev/null +++ b/application/i18n/po/po-it_IT/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "l'ID padre deve essere un numero" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Il campo A è obbligatorio" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "L'utente a cui si sta inviando il messaggio non esiste" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Il campo oggetto è obbligatorio" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "La lunghezza dell'oggetto deve essere tra 3 e 150 caratteri" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Il campo messaggio è obbligatorio" diff --git a/application/i18n/po/po-it_IT/report.po b/application/i18n/po/po-it_IT/report.po new file mode 100644 index 0000000000..88044ee320 --- /dev/null +++ b/application/i18n/po/po-it_IT/report.po @@ -0,0 +1,396 @@ +# +# Translators: +# Davide Beatrici , 2013 +# Giuseppe Murabito , 2014 +# Stefano Pallicca , 2012 +# Damtux, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-06-02 09:28+0000\n" +"Last-Translator: Giuseppe Murabito \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "errore!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Questa installazione comprende solo una nazione. Assicurati che la segnalazione sia all'interno della nazione %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Per favore, inserisci un valore valido per il campo \"%s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Il campo \"%s\" dev'essere numerico." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Il campo \"%s\" è richiesto." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Il campo \"%s\" non esiste." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Il campo \"%s\" non può essere modificato dal tuo account." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Il campo \"%s\" deve contenere un indirizzo email valido." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Il campo \"%s\" deve contenere un numero di telefono valido." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Il campo \"%s\" deve contenere una data valida (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Il campo \"%s\" deve contenere una data valida (MM/DD/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Seleziona un oggetto valido da includere nel download." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Seleziona un oggetto valido da includere nel download" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Seleziona \"Segnalazioni da approvare\" o \"Segnalazioni approvate\" o entrambi." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Seleziona \"Segnalazioni da approvare\" o \"Segnalazioni approvate\" o entrambi" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Seleziona \"Segnalazioni da approvare\" o \"Segnalazioni approvate\" o entrambi" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Seleziona \"Segnalazioni da verificare\" o \"Segnalazioni verificate\" o entrambi" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Seleziona \"Segnalazioni da verificare\" o \"Segnalazioni verificate\" o entrambi" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Seleziona \"Segnalazioni da verificare\" o \"Segnalazioni verificate\" o entrambi" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Seleziona un tipo di segnalazione valido da scaricare" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Seleziona un tipo di segnalazione valido da scaricare" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Seleziona un tipo di segnalazione valido da scaricare" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Devi selezionare un formato di download. Scegli CSV o XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Scegli un formato valido in cui scaricare le tue segnalazioni" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Il campo data DA contiene una data valida?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Inserisci una data DA valida. Non può essere successiva a oggi." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Inserisci un valore valido per Approva questa segnalazione" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Inserisci un valore valido per Approva questa segnalazione" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Il campo am/pm contiene un valore valido?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Il campo \"Categorie\" non sembra contenere una categoria valida." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Il campo categoria è richiesto." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Il campo data contiene una data valida?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Il campo data contiene una data valida?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Il campo data è richiesto." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Il campo descrizione è richiesto." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Il campo ora contiene un'ora valida?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Il campo ora è richiesto." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Inserisci un valore valido per Grado di Probabilità" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Inserisci un valore valido per Grado di Probabilità" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Il campo minuto contiene un valore valido?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Il campo minuto è richiesto." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Il campo link della fonte news contiene una URL valida?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "I file di immagini non devono superare i 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Il campo Upload Photos non contiene un'immagine valida. I formati consentiti sono .JPG, .PNG e .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Il campo Upload Photos non contiene un file valido" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Inserisci un valore valido per l'Affidabilità della Fonte" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Inserisci un valore valido per Affidabilità della Fonte" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Il campo titolo deve essere lungo almeno 3 caratteri e non più di 200." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Il campo titolo è richiesto." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Possibile attacco CSRF. Volevi veramente creare/modificare una segnalazione?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Inserisci un valore valido per Verificare Questa Segnalazione." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Inserisci un valore valido per Verificare Questa Segnalazione." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Il campo video link contiene una URL valida?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Il campo latitudine contiene una latitudine valida?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Il campo latitudine è richiesto. Clicca sulla mappa per indicare un luogo." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Il campo luogo ha un valore non corretto. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Questa segnalazione ha già una traduzione per questa lingua." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Il campo luogo ha un valore non corretto. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "La segnalazione originale e la traduzione sono nella stessa lingua" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Il luogo è richiesto." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Il campo Nome Luogo deve essere lungo almeno 3 caratteri e non più di 200." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Il campo Nome Luogo è richiesto." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Il campo longitudine contiene una longitudine valida?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Il campo longitudine è richiesto. Clicca sulla mappa per indicare un luogo." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Il campo email field contiene un indirizzo email valido?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Il campo email deve essere lungo almeno 4 caratteri e non pi" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Il campo Nome deve essere lungo almeno 3 caratteri e non più di 100." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Il campo Cognome deve essere lungo almeno 3 caratteri e non più di 100." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Il campo data A contiene una data valida?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Inserisci una data A valida. Non può essere successivo a oggi." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "La data DA non può essere successivo alla data indicata nel campo A." diff --git a/application/i18n/po/po-it_IT/reporters.po b/application/i18n/po/po-it_IT/reporters.po new file mode 100644 index 0000000000..d8356e562f --- /dev/null +++ b/application/i18n/po/po-it_IT/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Il valore inserito nel campo Latitudine non è corretto." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Il campo Latitudine è obbligatorio. Clicca sulla mappa per definire il punto esatto." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Il valore inserito per Livello Reporter non è valido. Inserisci un valore numerico." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Il campo Livello Reporter è obbligatorio." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "La lunghezza della località deve essere tra 3 e 200 caratteri." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Il nome della località è obbligatorio." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Il valore inserito nel campo Longitudine non è corretto." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Il campo Longitudine è obbligatorio. Clicca sulla mappa per definire il punto esatto." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "ID Reporter non valido." + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "L'ID del Reporter è obbligatorio." diff --git a/application/i18n/po/po-it_IT/reports.po b/application/i18n/po/po-it_IT/reports.po new file mode 100644 index 0000000000..b5df6da83a --- /dev/null +++ b/application/i18n/po/po-it_IT/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Davide Beatrici , 2013 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 18:02+0000\n" +"Last-Translator: Davide Beatrici \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Verifica di aver selezionato un elemento" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Verifica di aver selezionato un elemento" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "I report devono appartenere ad una categoria prima di essere approvati" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Non hai i permessi per eseguire questa operazione" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Devi selezionare un file da caricare" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Il file da caricare dev'essere nei formato .csv o .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Il campo di upload non sembra contenere un file valido" diff --git a/application/i18n/po/po-it_IT/roles.po b/application/i18n/po/po-it_IT/roles.po new file mode 100644 index 0000000000..ccacd13f83 --- /dev/null +++ b/application/i18n/po/po-it_IT/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "La descrizione deve contenere da un minimo di 3 a un massimo di 100 caratteri." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Il campo descrizione è obbligatorio." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Il campo Nome può contenere solo lettere o numeri." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Il campo nome deve contenere da un minimo di 2 a un massimo di 30 caratteri." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Non è possibile modificare il ruolo di SuperAdmin." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Il campo nome è obbligatorio." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Il campo Livello di Accesso deve contenere un valore compreso tra 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Il campo Livello di Accesso deve contenere un valore compreso tra 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Il campo Permessi deve contenere un valore compreso tra 0 - 100." diff --git a/application/i18n/po/po-it_IT/settings.po b/application/i18n/po/po-it_IT/settings.po new file mode 100644 index 0000000000..1281732a93 --- /dev/null +++ b/application/i18n/po/po-it_IT/settings.po @@ -0,0 +1,864 @@ +# +# Translators: +# Andrea Richetta , 2012 +# Davide Beatrici , 2013 +# Giuseppe Murabito , 2013-2014 +# Stefano Pallicca , 2012 +# Stefano Capezzuto , 2013 +# Tania Monti , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-06-03 10:17+0000\n" +"Last-Translator: Giuseppe Murabito \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Il campo autorizza commenti non sembra contenere un valore valido?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Il campo autorizza commenti è richiesto." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Il campo inclusione del feed è necessario" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "Il campo categoria del feed non sembra contenere un valore valido." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Il campo inclusione del feed è necessario." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Il campo Permetti Avvisi non contiene un valore valido" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Il campo premetti avvisi è necessario" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "The allow reports field does not appear to contain a valid value?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "il campo premetti report è necessario" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Il campo condividi statistiche è necessario" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default no. of records to be fetched per API request" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Numero massimo di elementi da scaricare per ogni richiesta API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Numero massimo di richieste API per indirizzo IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Il campo Banner del sito non sembra contenere un'immagine valida. I formati accettati sono solo .JPG, .PNG e .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Per favore, controlla che la dimensione dell'immagine per il banner sia inferiore a 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Il campo \"Immagine Banner\" non sembra contenere un file valido." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Il campo cache della pagina è necessario" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Il campo cache delle pagine contiene un valore non valido" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Il campo vita della cache delle pagine contiene un valore non valido" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Il campo vita della cache delle pagine è obbligatorio." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Sembra che il tuo server non sia configurato per gestire le clean URLs. Dovrai modificare la configurazione del tuo server prima di abilitare le clean URL. Maggiori informazioni su come abilitare le clean URLs in questo forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Questa opzione consente di accedere a Ushahidi con \"clean\" URLs. Senza \"index.php\" nella URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Abilita Clean URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Pulisci URL" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Il campo del numero API di Clickatell non deve essere più lungo di 20 caratteri." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "È necessario il campo API di Clickatell." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Il campo password di Clickatell deve contenere un minimo di 5 e un massimo 50 caratteri." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Il campo password Clickatell è necessario" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Il campo Nome utente di Clickatell deve essere minore di 50 caratteri." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Il campo nome utente Clickatell è necessario." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configura la Mappa" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Posizione Predefinita" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "The color feed field does not appear to contain a valid value?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Il campo colore deve essere minore di 6 caratteri." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Il campo colore è necessario" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Vista Mappa Predefinita" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Livello predefinito dello zoom" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Recupera la città" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Il campo porta del server di posta deve contenere solo numeri." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Il campo password del server di posta deve avere più di 5 e meno di 50 caratteri ." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Il campo Password server di posta è necessario." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Il campo porta del server di posta deve contenere solo numeri." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "È necessario indicare il tipo di mail server." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Il nome utente del mail server non può essere più lungo di 50 caratteri." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Il campo nome utente del server di posta elettronica è necessario." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opzioni di configurazione di Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Per ottenere le informazioni sottostanti sarà necessario creare una nuova applicazione Facebook su" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Queste impostazioni permettono agli utenti di connettersi tramite Facebook, questo non crea un'applicazione di Facebook per la tua installazione" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Il campo di Google Analytics deve contenere un ID di proprietà web valido nel formato UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Abilita HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Questa opzione permette di accedere a Ushahidi di accedere in modalità non sicura; senza \"https://\" nel prefisso dell'URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Questa opzione permette di accedere a Ushahidi di accedere in modalità sicura; con \"https://\" nel prefisso dell'URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Il campo elementi per pagina (Frontend) è obbligatorio" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Il campo elementi per pagina (Admin) è obbligatorio" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Livello di zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Seleziona un Provider della mappa" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Digita la nuova API Key" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Ottieni una API Key" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Definire il fornitore della mappa - provider - " + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Provider Mappa" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Timeline mappa" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Impostazioni Mappa" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Questa installazione di Ushahidi " + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Seleziona un paese predefinito" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Clicca e trascina la mappa per definire la tua esatta localizzazione" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Cluster delle segnalazioni sulla Mappa" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Consenti agli Utenti di commentare le segnalazioni" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Includere RSS News Feed sul Website" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Crea Nuova Categoria dai Feed" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Permette agli utenti di abbonarsi alle notifiche" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Consenti agli utenti di inviare Segnalazioni" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Chiave Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Banner del sito" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "blocchi per riga" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Pagine Cache" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Durata temporale delle Pagine Cache" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Abilita Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Copyright del sito" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Colore predefinito per tutte le categorie" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Icona predefinita per tutte le categorie" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Elimina immagine di testata" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Elimina icona predefinita" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Mostra la Pagina Contatti" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Mostra la pagina \"Come aiutare\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Indirizzo Email per gli alert" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Per ricevere report via email, ti preghiamo di configurare le impostazioni del tuo account email." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Indirizzo email del sito" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Elementi per Pagina - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Elementi Per Pagina - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Prevenire spam nei commenti utilizzando Akismet da Automattic.
Puoi ricevere una API key gratuita registrandoti un account come utente WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Credenziali Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Sito Laconica " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Lingua del Sito" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Approvazione manuale utenti" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Messaggio del sito" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nome Sito" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Sviluppo privato" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Conferma email dell'utente necessaria." + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Invia rapporto" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Condividi le statistiche del Sito in API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Tagline Sito" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Fuso orario" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Impostazioni Sito" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Credenziali Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Separati da virgola " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Feed geolocalizzazione - Geonames nome utente" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Il campo email deve essere lungo almeno 4 caratteri e non più di 100." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Il campo nome deve essere lungo almeno 3 caratteri e non più di 50." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "E' necessario compilare il campo con il nome del sito" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Il campo tagline deve contenere almeno 3 caratteri e non più di 100." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Il campo \"tagline\" è richiesto." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Il tuo Clickatell API Number" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Controlla il tuo credito Your Clickatell Credit Balance" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Carica il saldo" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "La tua Clickatell Password" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Iscriviti al servizio Clickatells cliccando qui" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Inserisci le credenziali del tuo accesso Clickatell qui sotto" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Il tuo Clickatell User Name" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS è un software gratuito e open source che abilita gli utenti a inviare e ricevere messaggi di testo con grandi gruppi di persone tramite i cellulari. Clicca sul pulsante sotto per scaricare l'ultima versione da FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Scaricare e installare FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Istruzioni dettagliate su come inviare SMS dalla tua installazione FrontlineSMS sono disponibili qui. L'URL e la chiave API sottostanti sono richiesti per configurare la sincronizzazione con FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Copia e incolla questo nel campo \"Indirizzo\" di FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Copia e incolla questo nel campo \"Ushahidi API Key\" FrontlineSMS" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Connettendo FrontlineSMS a questa installazione di Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Inserisci il numero di telefono collegato a Frontline SMS nel campo" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Inserisci nel campo qui sotto il numero senza nessun + o trattino" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Optione 1: Usa Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Usa un Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS Setup - Opzioni" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Il campo telefono 1 deve contenere solo numeri." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Il campo telefono 2 deve contenere solo numeri." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Il campo telefono 3 deve contenere solo numeri." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Opzioni per l'aggiornamento Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Per ricevere le informazioni sottostanti, configura la tua installazione come una nuova applicazione Twitter a" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Chiave consumatore" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Segreto del consumatore" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Permesso di accesso" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Permesso di accesso segreto" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Prova le impostastioni" diff --git a/application/i18n/po/po-it_IT/sharing.po b/application/i18n/po/po-it_IT/sharing.po new file mode 100644 index 0000000000..2363264d4e --- /dev/null +++ b/application/i18n/po/po-it_IT/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Data di entrata" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Data di creazione" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Ultimo accesso" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Il campo colore deve avere lunghezza di 6 caratteri." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Il campo colore è obbligatorio." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Il nome della Condivisione non è valido." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Un nome per la Condivisione è obbligatorio." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "L'indirizzo URL del sito già esiste." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "L'indirizzo URL non è valido." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "L'indirizzo URL è obbligatorio." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Il campo indirizzo URL non contiene un indirizzo valido." diff --git a/application/i18n/po/po-it_IT/stats.po b/application/i18n/po/po-it_IT/stats.po new file mode 100644 index 0000000000..307b084ebd --- /dev/null +++ b/application/i18n/po/po-it_IT/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Damtux, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Approvato" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorie" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Impatto della categoria" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Questo diagramma dà una visione lineare dei report per categoria nel tempo. Scorrere da sinistra a destra per comparare le diverse categorie. Passa con il mouse sopra il grafico per avere più dettagli." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Scegliere un intervallo dati" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Nazioni" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Nazione" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Ripartizione Geografica" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Salve, questa e' la sezione Statistiche. Presto saranno disponibili le descrizioni. Per adesso navigate usando il soprastante link delle categeorie " + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Errore" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossario" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Sommario dei risultati" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pagine viste" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Numero totale di pagine che i visitatori hanno visto sul tuo sito" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Report" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categorie dei Report" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statistiche dei Report" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Stato dei Report" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Report Temporale" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Statistiche del Report" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistiche non configurate" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mese" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 mesi" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 mesi" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Tutto" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Non Approvato" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitatori Unici" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Numero di individui diversi che visitano il sito; gli Utenti Unici sono determinati tramite i cookie. Se il visitatore avesse disabilitato i cookie, sara' identificato con metodo euristico in base alla combinazione di indirizzo IP, risoluzione schermo, browser usato, plugin, sistema operativo, ecc" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Non Verificato" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificato" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Riassunto Visitatore" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visite" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Una visita e' una sessione di navigazione fatta sul sito da un utente unico in cui la successione delle pagine non abbia intervalli di pausa tra una richiesta e la seguente superiore a 30 minuti" diff --git a/application/i18n/po/po-it_IT/tooltips.po b/application/i18n/po/po-it_IT/tooltips.po new file mode 100644 index 0000000000..3a00d815c9 --- /dev/null +++ b/application/i18n/po/po-it_IT/tooltips.po @@ -0,0 +1,588 @@ +# +# Translators: +# Davide Beatrici , 2013 +# Giuseppe Murabito , 2013-2014 +# pibinko , 2013-2014 +# Stefano Fedele , 2013 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-10-06 14:21+0000\n" +"Last-Translator: pibinko \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Questo aggiunge la segnalazione a categorie aggiuntive. Se selezioni \"Categoria 1\" qui e la segnalazione è nella \"Categoria 2\", avrà sia \"Categoria 1\" che \"Categoria 2\"." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Approva una segnalazione o no. Se approvata, sarà visibile pubblicamente." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "SaraI abilitato ad assegnare un badge per l'utente di attivazione. Scegli il badge che viene assegnato qui." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Questa è una gamma di ore e/o minuti tra due orari nel formato 24 ore. Se inserisci un momento precedente nel secondo campo, verrà capovolto con il primo. Questi tempi devono essere all'interno di un singolo giorno. Inoltre, questa volta viene confrontato con il tempo che hai configurato sul tuo sito nelle impostazioni del sito e non necessariamente il fuso orario dell'utente che interagisce con la tua distribuzione. Lascia questo a da 00:00 a 00:00 per ignorare questo qualificatore." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Se si desidera attivare i trigger solo quando si utilizza una determinata categoria, è possibile impostarli qui. Ciò consentirà che un trigger venga attivato solo se viene usata una delle categorie. Per esempio, se si seleziona Categoria 1 e Categoria 2 qui e un report è presentato utilizzando Categoria 2 e Categoria 3, esso passerà il test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Se queste azioni si verificano in determinati giorni della settimana, qui prefissati. Ricorda che il giorno è determinato dal fuso orario configurato nella tua distribuzione. Premere Shift, un comando o controllo per la selezione multipla del giorno." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Corpo della email che sarà inviata." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Oggetto della mail che sarà inviata." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "La parte dei feed può essere di tutti i feed o di uno specifico feed. Se si vuole uno solo come specifico feed, attivare un trigger, selezionandolo qui. In caso contrario, lasciare questa opzione come \"tutti\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nome utente Twitter dell'autore (o più nomi utente separati da virgole). Se si desidera attivare i trigger solo per i messaggi Twitter da un particolare utente, inserire il suo nome utente qui (non includendo @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Puoi scegliere di lasciare questo senza valore se non vuoi controllare parole chiave ulteriori. Se aggiungi parole qui, è necessario separarle con una virgola (,). Ad esempio, se si desidera attivare un trigger quando qualcuno parla di \"amore\" o \"pace\" nel messaggio, vorrai aggiungere \"amore, pace\" nella casella delle parole chiave." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Si può selezionare qualsiasi punto o una posizione specifica. Se si seleziona una posizione specifica, vi verrà chiesto di disegnare un riquadro intorno all'area che qualifica l'azione. Ad esempio, se si desidera che questo trigger venga attivato quando qualcuno inserisce un report in Brasile, si selezionerà \"area specifica\" e quindi si disegnerà la casella in Brasile. È possibile realizzare queste caselle piccole o grandi come si preferisce. È anche possibile disegnare caselle multiple." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Questo qualificatore attiverà il trigger sul conteggio N-esimo sia per l'intera base utenti collettiva, sia per ogni singolo utente. Lasciare vuoto per ignorarlo." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Titolo predefinito da aggiungere al report." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Se tutte i qualificatori di cui sopra sono passati, il trigger avvierà una risposta. Questo può verificarsi sia da approvazione di un report, che da email di un utente. Selezionare la risposta qui, attivando opzioni aggiuntive per le risposte specifiche." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Se si seleziona \"User Trigger\", l'e-mail verrà inviata all'utente che ha eseguito l'azione. Se si seleziona il pulsante di opzione accanto alla casella di input, si sarà in grado di inserire un indirizzo email personalizzato. Questo è utile se si sta configurando trigger per informare le persone, quando in alcune parti della mappa si stanno vedendo i report, con spunta o qualche altra attività." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "È possibile selezionare più giorni qui. Le date sono determinate dalle impostazioni di fuso orario della tua distribuzione. Per impostazione predefinita di tutte le date, non selezionare alcuna data." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Il trigger è il componente principale di configurazione della tua Action Triggers. Ciò determina dove tu desideri che accada qualcosa quando qualcuno invia un report, esegue un check-in, ecc. Sarai in grado di filtrare le risposte a queste azioni dopo averne selezionata una." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "L'utente può essere chiunque o un utente specifico. Se si vogliono solo determinati utenti ad attivare un trigger, si selezionano qui. In caso contrario, se si vuole, lasciare questo come \"qualcuno\", in quanto la maggior parte dei trigger sono impostati per tutti gli utenti che interagiscono con il sistema" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Contrassegna una segnalazione come verificata o no." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Le pagine di profilo di questo sito utilizzano Gravatar. Cliccando sull'immagine, sarete indirizzati sul sito Gravatar in cui è possibile cambiare l'immagine del profilo." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separare ogni valore con una virgola. Esempio: valore1,valore2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separare ogni valore con una virgola. Esempio: valore1,valore2. Nel caso in cui tu voglia impostare un valore predefinito, concludi la tua lista delle opzioni con :: Esempio: Se vuoi mettere \"valore3\" come predefinito, dovrai mettere valore1,valore2,valore3::valore3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separa ogni scelta con una virgola, esempio: Scelta 1, Scelta 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Comincia a scrivere per visualizzare i membri." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Oggetto messaggio privato." + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Messaggio Privato" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Puoi scegliere un colore che verrà visualizzato sotto l'immagine profilo del tuo profilo pubblico. Questo colore sarà anche quello del punto che verrà visualizzato per le tue selezioni." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Il tuo indirizzo email" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Questo è uno dei modi in cui sarai riconosciuto nel sito. Ricorda che è pubblico!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Se selezionata, questa sarà la tua nuova password. Lascia il campo vuoto se vuoi tenere la tua password corrente." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Questa è una richiesta quando viene creato un nuovo utente e sarà la password degli utenti. Dovresti informare il tuo nuovo utente di cambiare la password dopo essersi connesso per la prima volta." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Seleziona SI' per essere avvisato via email quando nuove segnalazioni o commenti vengono inviati al sito." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "La tua password. Lascia il campo in bianco se non vuoi modificare la password corrente." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Il tuo profilo può essere visto da chiunque su Internet se selezioni questa opzione. Questo è anche il modo più facile per fare vedere le segnalazioni che hai inviato, le tue selezioni, i tuoi badges, etc. Tutto in una pagina." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Questo è l'indirizzo dove si trova il tuo profilo pubblico." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Il tuo nome utente non può essere cambiato." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "I livelli di accesso vengono usati per limitare l'accesso ai dati dei campi modulo personalizzati. Livelli di accesso più alti possono accedere ai campi da livelli più bassi. Superadmin ha il più alto livello di accesso (100). I dati pubblici sono visualizzati al livello di accesso più basso (0). I membri hanno livello di accesso 10. Admin ha livello di accesso a 90 per impostazione predefinita." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Questo è l'indirizzo email che verrà utilizzato per inviare gli alert." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Permette agli utenti di iscriversi per gli avvisi via web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Permetti di raggruppare segnalazioni simili in un unico punto sulla mappa" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permetti agli utenti di commentare le segnalazioni sul sito pubblico" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Permetti di visualizzare i Feed RSS di notizie sul sito pubblico" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Questo permette di creare una nuova categoria dai feed RSS." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Permetti agli utenti di inviare informazioni attraverso un modulo presente sul sito." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Numero di record di default per singola richiesta API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Massimo numero di record per singola richiesta API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Massimo numero di richieste API per singolo IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Il banner compare in alto nella parte front end del sito web se il tema che si sta usando lo supporta. La dimensione consigliata dipende dal tema in uso. Tenete a mente che andrà a sostituire il titolo del sito e lo slogan in cima alla pagina." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Numero di Blocchi visualizzati per ogni riga." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Attiva o disattiva il caching delle pagine. Se attivato le pagine si caricano più velocemente. E' consigliato per i siti con parecchio traffico. **Ricorda che le segnalazioni compariranno sul sito pubblico con la frequenza che specifichi qui sotto (Durata Cache)" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Definisce la durata della cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Questo parametro abilita i check-in sul tuo dislocamento. Questo e' un tipo di report semplificato che non sara' moderato prima di andare online nella homepage e richiede che il tuo sito sia configurato di conseguenza. Prima di abilitarlo assicuratevi che il parametro del fuso orario sia UTC e che il vostro tema supporti i check-in. Abilitandolo, solo i temi che supportano i check-in saranno disponibili tra gli addon/temi configurabili." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Posiziona la mappa in modo da inquadrare una località specifica" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Colore di default per le categorie" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Seleziona una sola icona per tutte le categorie sul sito." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Nazione a cui fa riferimento il sito" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Visualizza il tab 'Contatti' nel menu del sito pubblico" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Visualizza il tab 'Aiuto' nel menu del sito pubblico" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Numero di segnalazioni visualizzate per pagina nel sito pubblico" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Numero di segnalazioni visualizzate per pagina nella sezione amministrazione del sito" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Hub messaggi sms in entrata" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Sincronizza l'hub messaggi sms in entrata con la piattaforma Ushahidi" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Numeri di telefono abilitati a ricevere SMS" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Attiva statistiche avanzate sulle visite al sito" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Seleziona la lingua da usare nel sito" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Se si imposta questa opzione su yes, è necessario approvare ogni singolo utente che crea un account sul tuo sito, assegnando i loro ruoli (es. Member, Admin, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Seleziona che tipo di mappa viene visualizzata sul sito" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Questo mostra la sequenza temporale in base alla data e l'ora delle segnalazioni inviate" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Porre questo valore a VERO o SI rendera' privato il tuo dislocamento, in tal modo solo gli account da te definiti avranno accesso al dislocamento. " + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Agli utenti saranno inviate email con un link di conferma da cliccare prima di essere autorizzati ad accedere al sistema se questo è impostato su yes. Se si attiva questa opzione, quando la distribuzione accetta gli utenti, ad essi verrà chiesto di confermare il proprio account prima che gli venga permesso di continuare ad usarlo." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Host (server) sul quale vengono ricevute le mail di segnalazione" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Password per l'account email che riceve le segnalazioni" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Questa informazione è necessaria per ricevere email" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Questa informazione è necessaria per stabilire una connessione sicura con il server" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Questa informazione è necessaria per ricevere emails dal server" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Indirizzo email che riceve le segnalazioni" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Le statistiche sulle visite vengono salvate su un server controllato da Ushahidi. Se abiliti questa opzione avrai accesso alle statistiche direttamente dal tuo pannello di amministrazione. Se la disabiliti il sistema smetterà di raccogliere le statistiche e non potrai recuperare le statistiche relative al periodo durante il quale l'opzione è stata disabilitata." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "E' sempre bene specificare i diritti di copyright per ogni tua opera. Per aiutarti nell'individuare quale licenza faccia al caso tuo, vista http://creativecommons.org/choose/ " + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Questo è l'indirizzo email che riceverà le segnalazioni via email e i messaggi dal modulo contatti" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Questo è il testo che appare sopra alla mappa nella home. E' utile per dare importanti informazioni ai visitatori. Per rimuovere il box sopra la mappa è sufficiente lasciare in bianco questo testo." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Questo è il nome del sito, appare in alto nelle pagine del sito." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Questo è un messaggio che verrà visualizzato sulla pagina di invio del rapporto. Questo è un bene per incomprensioni o ulteriori istruzioni per i tuoi visitatori che stanno facendo un report." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Spiega in poche parole di che cosa si occupa il tuo sito." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Questo è il fuso orario in cui il tuo sito opera. Ha un effetto su qualsiasi azione tu abbia configurato che utilizzi l'ora o la data, così come sull'orario di riferimento per i report sia per gli utenti che per gli amministratori." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Definisci l'hashtag che verrà utilizzato nei post su twitter." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "Se volete eseguire la geocodifica dei feed che ricevete, create un utente su http://www.geonames.org, abilitare il servizio web libero e inseritelo qui. Lasciare vuoto per disabilitare questa funzione

Attenzione ai limiti di utilizzo!" diff --git a/application/i18n/po/po-it_IT/ui_admin.po b/application/i18n/po/po-it_IT/ui_admin.po new file mode 100644 index 0000000000..4966b7dc94 --- /dev/null +++ b/application/i18n/po/po-it_IT/ui_admin.po @@ -0,0 +1,1661 @@ +# +# Translators: +# dauriabros , 2012 +# Davide Beatrici , 2013 +# Giuseppe Murabito , 2013-2014 +# Stefano Pallicca , 2012 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-06-02 08:49+0000\n" +"Last-Translator: Giuseppe Murabito \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Accesso negato. Le credenziali che hai inserito non sono corrette oppure la tua richiesta è stata rifiutata." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Accesso negato. La richiesta era corretta ma è stata bloccata per dei limiti di accesso (forse di tempo). Riprova più tardi." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Livello di Accesso" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Azioni" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Aggiungi alla categoria" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "aggiunto" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "aggiunta/modificata" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Addons" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Notifiche" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Notifiche Ricevuti" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Tutti" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonimo" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Tutti" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Ovunque" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Bloccate" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Logs della API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Impostazioni API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Rimuovi Ban" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Rimuovi tutti i Ban" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "approvato" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Approvazione automatica" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Approvazione manuale" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archiviato" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Sei sicuro che vuoi" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Sei sicuro di voler cancellare questo elemento?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Se sicuro di voler cancellare questa foto?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Sei sicuro di voler scambiare i form?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Assegna" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Assegnazioni" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Assegna Badge" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autore" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email dell'autore" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Indietro" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "IP Bloccato" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Tra le ore" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocchi" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Corpo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Annulla" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorie" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Errore nella visualizzazione del grafico" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Verifica che il messaggio sia valido" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Verifica che il numero sia valido" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Verifica le impostazioni SMS" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Dettagli Checkin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Chechins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Città caricate" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "codice" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Codice versione non allineato" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Colore" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Commenti" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Il tuo codice di conferma per le notifiche è:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "L'utente è stato" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Numero" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Nazione non trovata" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "creato/modificato" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Crea una segnalazione" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Aggiornamento Critico" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Attualmente Attivi" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Attualmente non Attivo" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Non hai abbastanza permessi per modificare i campi personalizzati." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Giornaliero" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Dashboard" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "database" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data & ora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Data Aggiunta" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Data Modifica" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Giorno della settimana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Cersione del database non allineata" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "cancellato" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Cancella" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Cancella tutti i rapporti" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Cancella Badge" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descrizione" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Disabilitato" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Inizio divisore" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Fine divisore" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Scarica segnalazioni" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Scelte Lista" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "MODIFICATO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editato da" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Modifica" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Log delle modifiche" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Intero collettivo" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Errore HTTP nel geocoding" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "La libreria PHP IMAP non è istallata" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Credenziali errate" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Errore" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Errore, non è stato possibile inviare la segnalazione" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Ogni sei ore" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Ogni dodici ore" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Sperimentale" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feed" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Elenco delle Scelte" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valore di default" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipo Dato" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Segna" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerico" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Testo Libero" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altezza (in righe)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Campo nascosto" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Numero massimo di caratteri" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nome del campo" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Attiva" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "No" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Si,Chiuso per default" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Si,Aperto per default" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Non trovo il file caricato" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Non sono riuscito ad aprire il file in lettura" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Il modulo non esiste!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Campo di testo libero" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Campo Data" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Campo Radio Button" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Campi Checkbox" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Campo Lista" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Da" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Da" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Time out sulla richiesta dei geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Aiuto" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Scarica altri Temi" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Scarica altri plugin" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Azioni" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Aggiungi/Modifica" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Gestione utenti" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Ruolo" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Utente" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "aiuto" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Ogni ora" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Feed delle segnalazioni per" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "La cartella dell'installer esiste ancora. Cancellare la cartella dell'installer. E' un potenziale rischio per la sicurezza." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Istanza" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Istanze" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Dettagli dell'istanza" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parametro non valido" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Indirizzo IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "E' un campo data?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Chi Può vedere le Risposte" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Chi Può Inviare le Rispote" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Parola chiave" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Parole chiave:" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Indirizzo email:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nome completo:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Password:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Ruolo:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nome utente:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Layer" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderatore" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Esci" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Gestione" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Gestione ruoli e permessi" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Visualizza gli utenti" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Aggiungi/Modifica utenti" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Amministrazione lista pubblica" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Contrassegna come" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "segnato come non spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "segnato come spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "non ha ottenuto alcun risultato" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Messaggio" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Messaggi" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Messaggi Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Messaggi twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Il tuo messaggio è stato inviato" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minuti" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Parametro mancante" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderatore" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificato" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modifica Impostazioni Timezone" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "sposta in giù" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "sposta in su" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Istallazioni multiple sul server" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "I Miei Avvisi" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "I miei checkin" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Il mio profilo" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "I Miei Report" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Voti espressi" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positivo" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativo" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Crea Nuovo Avviso" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Crea Nuovo Messaggio" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nuova password" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "N." + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Questa è una categoria speciale, che gli utenti non vedranno nel form di inserimento segnalazioni. Questo serve per lasciare le segnalazioni senza categoria, come risultato della cancellazione di una categoria." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Avviso" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Maiuscolo o minuscolo è indifferente" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Non Trovato" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Nessun dato. Non ci sono dati da visualizzare." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Nessun errore" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Nessun risultato da visualizzare!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "su" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Su conto specifico" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "pagina" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "pagine" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Pagina non trovata" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "La pagina che cercavi non è stata trovata.

Hai cliccato su un link da qualche parte su questo sito?
Se hai raggiunto questo link da una pagina di questo sito, contattaci per correggere l'errore.

Hai cliccato su un link su un altro sito?
I link sui siti esterni possono essere non aggiornati o contenere errori. Scrivici da quale sito hai raggiunto questa pagina, così possiamo provare a contattare l'altro sito per sistemare il problema.

Hai scritto l'URL?
Puoi averlo scritto male. Verifica di averlo scritto correttamente, con le maiuscole corrette, ecc...

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Spiacnete, la pagina che stai cercando di visualizzare non è qui." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parametri utilizzati" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Password" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Password resettata" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Gentile" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Abbiamo ricevuto la richiesta di resettare la password per" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Per cambiare la tua password clicca sul link qui sotto ( o copialo nel browser ) " + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Come hai richiesto, la tua password è stata resettata. I tuoi nuovi dati di accesso sono i seguenti:" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Password per Ushahidi resettata" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefono" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Selezionare" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "I dati non sono stati inviati via POST" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Anteprima" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Messaggio" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Messaggio Privato" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Messaggio Privato Inviato" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Oggetto" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "A" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Liste pubbliche" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Qualificatori" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "letto/i" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Rilevanza" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Titolo Report" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Data della segnalazione" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Segnalatori" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Livelli dei reporters" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Segnalazioni" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Punteggio Reputazione" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Obbligatorio" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Resetta" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Risposta" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Risultati" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revoca" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Questa email ha già un account amministrato da CrowdmapID. L'utente dovrà utilizzare la propria password di Crowdmap per accedere." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Cerca" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Ricerca Segnalazioni" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "sto cercando:" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "La chiave crittografica è ancora impostata al suo valore di default. Per aumentare la sicurezza, deve essere cambiata" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Il sito sta funzionando su protocollo HTTP. Per aumentare la sicurezza occorre impostare l'utilizzo del protocollo HTTPS." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Le istruzioni sono presenti nel wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Seleziona il formato che desideri usare per le segnalazioni scaricate:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- scegli un tipo di campo ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Seleziona un elemento" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Devi selezionare un Trigger prima di selezionare una Risposta" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Devi selezionare un trigger prima di definire qualificatori." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Mittente" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Invia A" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Questo messaggio è stato inviato dal tuo sito " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Ora del server" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Impostazioni" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Pagina visualizzata" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Visualizzazione risultati" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "visualizzato" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoria Speciale" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Questa è una categoria speciale, che gli utenti non vedono nel form di segnalazione. E' usata insieme alla caratteristica \"Segnalazioni Fidate\"" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Area Specifica" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Stato" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistiche" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistiche" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Si è verificato un errore nella raccolta delle statistiche! E' possibile che il server di statistiche sia spento oppure la tua istallazione di Ushahidi non è configurata cvorrettamente. Riprova tra poco per vedere se il serve è in funzione oppure no. Per resettare manualmente le tue statistiche modifica stat_id ( settalo a null ) e stat_key (settalo a 0) nelle tabella impostazioni (settings) del database. ATTENZIONE: se lo fai perderai le tue statistiche!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Errore nella raccolta delle statistiche!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Giorni Specifici" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Oggetto" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Amministratore" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Operazione eseguita" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Campo testo" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Gestione utenti" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Errore timeout" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "a" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Totale record" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "a" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traduci segnalazioni" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Utente che attiva il trigger" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Trigger" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "Non approvato" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Sconosciuto" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Errore sconosciuto" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "non letto" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Non riceverai più avvisi da" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Clicca qui per avviare l'aggiornamento" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Aggiornamento Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Stato dell'aggiornamento di Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Caricamento segnalazioni" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Utente" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Utenti" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificato/Non Verificato" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verifica/Non Verificare" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versione" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "è disponibile l'aggiornamento." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Codifica Video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Messaggi Privati" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Mostra il sito" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Visualizza Report" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Benvenuto," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Sì" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "La tua ricerca per" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Facendo clic sul pulsante qui sotto eliminerete TUTTI i rapporti sul database. Si consiglia procedere con cautela in quanto questa operazione non potrà essere annullata." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Si consiglia un backup del database prima di procedere" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Sono sicuro di voler cancellare %s rapporto(i) dal database." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Sei sicuro di voler eliminare tutti i rapporti?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Non ci sono rapporti da cancellare." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Numero di accessi" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Ultimo accesso" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Account confermato?" diff --git a/application/i18n/po/po-it_IT/ui_main.po b/application/i18n/po/po-it_IT/ui_main.po new file mode 100644 index 0000000000..7d90abcaa3 --- /dev/null +++ b/application/i18n/po/po-it_IT/ui_main.po @@ -0,0 +1,3175 @@ +# +# Translators: +# dauriabros , 2012 +# Davide Beatrici , 2013,2015 +# Giuseppe Murabito , 2013-2014 +# Stefano Pallicca , 2012 +# pibinko , 2013-2014 +# Stefano Pallicca , 2013 +# Damtux, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-05-22 20:17+0000\n" +"Last-Translator: Davide Beatrici \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Chi siamo" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Accesso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limiti di accesso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nome account" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Azioni" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Questa azione non è reversibile. Sei sicuro di procedere?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Attiva" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Attivo" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Aggiungi" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Aggiunto da" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dati addizionali" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Altre segnalazioni" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Aggiungi/modifica" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Aggiungi un campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Aggiungi altre lingue" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Aggiungi nuovo elemento" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Aggiungi nuova categoria" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Aggiungi traduzione" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Amministrazione" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Ricevi Notifiche" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Avvisami se viene inviata una segnalazione nei dintorni di:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Registra la mia notifica" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Indirizzo email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Inserisci indirizzo email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Inserisci il numero di cellulare, completo di codice paese" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Ricevi notifiche" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "L'avveso è stato" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Numero di cellulare:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Oppure clicca in un punto della mappa e ti notificheremo le segnalazioni inviate relative a un'area nel raggio di 20 chilometri." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "se non trovi la località, per favore clicca sulla mappa per localizzare il punto esatto " + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Feed RSS (copia la URL qui sotto)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Seleziona una città" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Primo passo: Seleziona città o area geografica:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Secondo passo: Invia notifiche al mio:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Terzo passo (opzionale): Seleziona categorie" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Conferma una precedente richiesta di notifica" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "La tua notifica è stata registrata!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Tutti" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permesso" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Tag HTML permessi: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Gli iFrames sono permessi solo da: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Tutte le categorie" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Tutto il tempo" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "e" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Approva" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Approvato" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Segnalazioni approvate" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Approva questa segnalazione" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Approssimativo" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archivio" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archiviato" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Crescente" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "a" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autore" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Controllo automatico" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Automatico" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Media giornaliera segnalazioni" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "In attesa di approvazione" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "In attesa di verifica" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Badge" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Badges" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Immagine badge" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Oppure puoi caricare una immagine badge." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Pacchetto badge" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Seleziona un badge" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Esplora i Profili" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Annulla" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorie" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoria" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro categorie" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "La categoria è stata" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nome categoria" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Cambia Intervallo di Tempo" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Cambia Password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Modifica la mia immagine" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Scegli un" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Scegli i data points da scaricare" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Oppure scegli un intervallo di tempo" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Scegli il tipo di campo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL pulite" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Pulisci" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Pulisci mappa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Chiudi" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "gruppi" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Colore" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Commento" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Commenti" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Dettagli del commento" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Le tue impostazioni sono state salvate" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configura" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Hai correttamente confermato il tuo indirizzo email! Accedi adesso." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Hai confermato con successo il tuo indirizzo e-mail! Un amministratore deve approvare il tuo account prima di poter effettuare il login" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Conferma dell'email fallita! Puoi richiedere una nuova conferma di email qui sotto." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contattaci" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Codice di Sicurezza" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Il tuo indirizzo e-mail" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Messaggio" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Il tuo messaggio è stato inviato" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Il tuo nome" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Il tuo numero di telefono" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Invia Messaggio" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Oggetto del Messaggio" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2010 Ushahidi.com. Tutti i diritti riservati." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crea" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crea/Modifca" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crea nuovo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crea Nuova Password" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Invia segnalazione" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Attendibilità" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Password corrente" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Campi utente" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informazioni" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/gg/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data e ora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "giorno" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "giornaliero" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Disattiva" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Rome, Italy" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Cancella" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Cancellato" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Cancella" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Cancellazione non abilitata" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Elimina l'ultimo" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Cancella segnalazione" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Cancella selezionati" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Cancella spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descrizione" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Decrescente" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Esempio: via Monte Pertica 30, Padova" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Dettagli" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Segnalazione diretta" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Disabilitato" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Nega approvazione" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Scarica segnalazioni" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Download" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Modifica" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Modifica i campi del modulo" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Modifica segnalazione" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Indirizzo Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Indirizzo email" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Settaggi del mail server" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Password per il mail server" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Porta del mail server" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Supporto SSL sul mail server" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipo di mail server" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nome utente per il mail server" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "quindi le tue impostazioni devono essere associate a questo indirizzo email" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Per ricevere segnalazioni via email inserisci le impostazioni email del tuo account email qui sotto. Nota che le email verranno ricevute dal tuo" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Alcuni server richiedono un indirizzo email completo" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Password dell'account email" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Porte più comuni:25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Esempi: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Esempi: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Abilita o disabilita la connessione SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VUOTO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "a" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Errore!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Esempio" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Italy" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Applicazioni esterne" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Collegamento a un video esterno" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Invia feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Per favore inviaci un riscontro sulla tua esperienza mandando una email a" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feed" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Il feed è stato" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Elementi del feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nome del feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL del feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Campo non utilizzato" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "File" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Il tuo file supera la dimensione massima consentita." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtri" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtra segnalazioni" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtra segnalazioni per" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtra segnalazioni che contengono" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Trova" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Trova area geografica" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nome proprio" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Esegui ora tutte le operazioni pianificate" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Dimenticato la password?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Modulo" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Moduli" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descrizione del modulo" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Modifica il modulo" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Il modulo è stato" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Titolo del modulo" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Da" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nome completo" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocalizzazione disponibile" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Colore" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Commenti" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etichetta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Larghezza riga" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Vai" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "è stato" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Come aiutarci" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Nascosto" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Nascondi" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Nascondi questo messaggio" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Home" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "ogni ora" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Come inviare una segnalazione" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Usato per identificarti agli altri utenti sul sito" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Immagine" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Immagini" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Immagine/Icona" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Non attivo" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "In arrivo" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Evento" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Eventi nelle vicinanze" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Luogo dell'evento" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Includi" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Includi categorie" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Includi campi utente" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Includi descrizione" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Includi più dettagli possibile" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Includi latitudine" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Includi informazioni geografiche" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Include longitudine" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Includi informazioni personali" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Materiale multimediale in entrata" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Validazione delle informazioni" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Inserisci la località esatta" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Il tuo accout non ha i permessi per accedere completamente. Contatta l'amministratore." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Intervallo" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "In risposta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Indirizzo IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Questo è il tuo profilo?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "elemento" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elementi" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "dettagli dell'elemento" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "titolo dell'elemento" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Chiave" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Parole chiave" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "File KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Carica file KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL del file KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Lingua" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Ultimo" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Mese scorso" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Cognome" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Anno scorso" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitudine" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Layer" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Altri layer" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Il layer è stato" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nome del layer" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL del layer" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Lascia un commento" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Meno Informazioni" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Livello" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Questo livello è stato" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nome del livello" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitato" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Collegamento" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Carico segnalazioni" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Localita'" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Localita'" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Città, Provincia e/o Regione" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Account creato. Adesso puoi accedere." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Un messaggio di conferma è stata inviata al tuo indirizzo email." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Account creato. Il tuo account deve essere approvato da un amministratore prima di poter accedere." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Questo indirizzo email non esiste. Prova un indirizzo diverso o crea un account." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Clicca sul tuo provider di account" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Accedi con" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email e Password" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Registrati" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Crea un account" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Grazie per esserti iscritto a %1$s. Per confermare il tuo indirizzo e-mail, vai al seguente indirizzo: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Conferma iscrizione" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Un nuovo utente si è registrato su %1$s. Per approvare l'iscrizione si prega di visitare il seguente URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Approvazione nuovo utente" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Il tuo account è stato approvato per %1$s. Per accedere andare al seguente URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Account utente approvato" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Crea un account adesso per avere accesso a più funzionalità del sito" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitudine" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mappa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marca come letto" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marca come non letto" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Dimensione massima file" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Elementi multimediali" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtro sul tipo di media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Membri" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gestisci il tuo Account" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Messaggio" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Messaggi" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Dettagli del messaggio" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Messaggio da una sorgente non numerica" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Cellulare" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modifica" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modifica data" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mese" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "mensile" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Continua" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Per saperne di più" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Raccogli segnalazioni da diversi paesi (nazioni)" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Devi confermare il tuo indirizzo email per accedere a questa installazione. Se non ricordi la tua email di conferma, puoi richiederne un'altra qua sotto." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nome" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Segnalazione nelle vicinanze" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nuovo" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Notizie" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Feed notizie" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Fonti notizie" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nuova categoria" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nuova password" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nuova segnalazione" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Prossimo" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "No" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Nessuna registrazione da mostrare." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Nessun dato" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Nessuno" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Avvisi" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Non approvati" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Non approvato" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Non selezionato---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "non spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Non specificato" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Non ci sono segnalazioni" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nessun risultato" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Off" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Notizie dalla rete" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "On" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opzione" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opzionale" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opzioni" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organizzazione" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizzazioni" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descrizione dell'organizzazione" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email dell'organizzazione" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "L'organizzazione è stata" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nome dell'organizzazione" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Numero telefonico dell'organizzazione 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Numero telefonico dell'organizzazione 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Sito dell'organizzazione" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Originale" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descrizione originale" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Titolo originale" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "ALTRE ISTALLAZIONI DI USHAHIDI" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Posta in uscita" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "In uscita" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Pagina" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Pagine" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descrizione della pagina" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "La pagina è stata" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Etichetta della pagina" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Titolo della pagina" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoria padre" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Password" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Ridigita la password" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Password cambiata con successo! Accedi qui sotto." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Dimenticato la password?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Controlla la tua casella email per ricevere la nuova password." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Mantieni aperta la connessione su questo pc?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mese scorso" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Anno scorso" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "In attesa" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informazioni personali opzionale" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefono" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Foto" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Immagini" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Immagini e video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* ricerca la località esatta usando come nome latitudine,longitudine (esempio:38.19,-85.61) oppure clicca sulla mappa per individuare il punto esatto " + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Ascolta" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Nota bene" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "URL del plugin" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Profilo Pubblico" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL del Profilo Pubblico" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Anteprima" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "elemento dell'anteprima" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Anteprima del messaggio" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Precedente" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privato" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Colore Profilo" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Il tuo profilo è stato modificato" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Statistiche compatte" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Valutazione" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Letto" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Ricevi" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Ricevi da" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Ricevi avvisi" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Segnalazioni recenti" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Ricarica notizie" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email registrata" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Cancella" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Rispondi" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Segnalazione" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Segnalazioni (dalla mappa, elencate in ordine cronologico)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Segnalatore" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Segnalatori" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Data del reporter" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email del reporter" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nome del reporter" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Il reporter è stato" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP del reporter" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Cognome del reporter" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Ruolo del reporter" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Ruoli dei reporter" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Num. telefonico del reporter" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Segnalazioni" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Mostra le segnalazioni" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Invia" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Segnalazioni di questo utente" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorie" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Notizie" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descrizione" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Le segnalazioni verranno scaricate in formato CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Funzionalità" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Trova una località vicina" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nome" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Cognome" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Specifica meglio la località" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Link alla fonte della notizia" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informazioni opzionali" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Carica immagini" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Ritorna alle segnalazioni" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Seleziona una città" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "La tua segnalazione è stata inviata al nostro staff per le verifiche del caso. Se necessario verrai ricontattato." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Invia nuova segnalazione" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Ora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Timeline segnalazioni" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Titolo della segnalazione" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Link al video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Segnala un evento" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Dettagli della segnalazione" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Inviando un messaggio a" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Inviando un'email a" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Creando un tweet con lo hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Compilando questo modulo" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Usando una App" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "La tua segnalazione è stata inviata" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titolo della segnalazione" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Richiedi ulteriori informazioni" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Richiedi di specificare la località" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Obbligatorio" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Richieste" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Invia di nuovo l'Email di conferma" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Resetta tutti i filtri" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Resetta la password" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Carica i nomi delle città per la nazione selezionata" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Account gestate dal servizio %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Hai già un account amministrato da CrowdmapID! Prova ad usare la tua email CrowdmapID e password per accedere." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Ruolo" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Salva" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Salvato" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Salva e aggiungi nuovo" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Salva e chiudi" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Salva la segnalazione" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Pianifica" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Operazioni automatizzate" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Giorno" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Ora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Log delle operazioni automatizzate" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Giorno della settimana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "CERCA" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Risultati della ricerca" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Codice di controllo" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Seleziona tutti" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Seleziona il tipo campo" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Seleziona il tipo di modulo" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Individua sulla mappa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Seleziona le opzioni" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Seleziona un elemento" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Scegli il tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Invia" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Invia conferma" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Invio in corso a" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Inviato" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Inviato da" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Indirizzo del server" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipo di server" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servizio" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nome utente per il servizio" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "User ID per il servizio" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Condividi" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Informazioni condivise" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Il sistema di condivisione è stato" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Condivisione" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mappa più bassa" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Mostra" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Mostra tutti" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mostra Messaggi" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Visualizza report da %1$s a %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Sito web" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Indirizzo email del sito" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL del sito" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mappa più piccola" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Non hai nessun badge." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Fonte" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nome della fonte" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordina" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ordina per" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL della fonte" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Supporto SSL" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Da" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Passo" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Invia una segnalazione" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Inviato da %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Invia via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Invia il tuo SMS a" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "sul tuo telefono" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Successo!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importazione avvenuta con successo" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Cognome" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Sondaggio" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mappa più alta" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Porta TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Temi" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema di default di Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Impostazioni del tema" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Questo" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Oggi" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Questo mese" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Questa settimana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Quest'anno" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Questo è il tuo profilo" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "ora" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "TITOLO" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "a" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Oggi" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Oggi alle" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Totale segnalazioni" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Tradotto" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descrizione tradotta" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Titolo tradotto" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traduci in" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traduzione" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "La traduzione è stata salvata" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Fidato" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipo" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Impossibile inviare l'email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Segnalazioni senza categoria" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "non letto" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Non verificato" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Aggiorna i feed" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Carica" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Visualizza le nostre guide di caricamento report:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Guida di caricamento XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Guida di caricamento CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "File da caricare" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Carica segnalazioni" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Le colonne utente devono avere il loro form_id aggiunto alla fine. Es. il campo Test, sul form di default, con id 1, sarà Test-1. Durante l'importazione di campi utente, assicurati che" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Utilizzando il modulo qui sotto, puoi importare delle segnalazioni direttamente in Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "I report devono essere caricati come CSV o XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Se l'ID della segnalazione esiste già nel database, la segnalazione nel file CSV/XML sarà ignorata." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Deve contenere almeno un titolo e una data" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Se non fornisci latitudine e longitudine, il luogo sarà trovato usando Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Se si importano delle informazioni addizionali, es. informazioni personali e/o campi utente" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "DEVE essere compilata almeno una delle informazioni personali (nome, cognome, email). I record vuoti non saranno importati" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Le tue voci per i menu a tendina, radio buttons e checkbox sono uguale alle opzioni inserite per il campo utente della tua installazione" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Le opzioni delle checkbox sono separate da virgola. Es. se la tua scelta di frutta è mele, mango, uva, dovresti scrivere \"mele,mango,uva\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "I valori per i campi data devono avere il formato mm/gg/aaaa, es 3 ottobre 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Esempio di segnalazione in formato CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Denunciate violenze a Pinerolo\",\"2009-05-15 01:06:00\",\"Pinerolo\",\"Tre casi di violenza sono stati denunciati a Pinerolo...\",\"VIOLENZA, SCONTRI, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Scontri\",\"2009-03-18 10:10:00\",\"Forlimpopoli\",\"Scontri in tutta Forlimpopoli\",\"SCONTRI, OCCUPAZIONI, VIOLENZA \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Caricamento avvenuto con successo" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Carica Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Utente" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nome utente" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Amministratore Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verifica" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificato" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Segnalazioni verificate" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verifica" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verifica questa segnalazione" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versione" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Visualizzazione" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Visualizzazioni" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Mostra tutti" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Mostra tutti i feed" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Mostra tutte le segnalazioni" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Visualizza gli elementi" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Guarda le altre" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Vedi profilo pubblico" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Visualizza la segnalazione" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Visualizza le segnalazioni" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Vedi Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visibile" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "In attesa di approvazione" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "In attesa di verifica" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mappa più grande" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Modulo web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Peso" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "settimanale" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Sì" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ieri" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "La tua dashboard" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Il tuo file" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zoom In" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zoom Out" diff --git a/application/i18n/po/po-it_IT/upgrade.po b/application/i18n/po/po-it_IT/upgrade.po new file mode 100644 index 0000000000..98223a2d42 --- /dev/null +++ b/application/i18n/po/po-it_IT/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Davide Beatrici , 2013 +# spawned76 , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 18:34+0000\n" +"Last-Translator: Davide Beatrici \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/ushahidi/ushahidi-v2/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dati inseriti non validi. I valori ammessi sono solo 0 per NO e 1 per SI'" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Aggiornamento Automatico" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Aggiornamenti Disponibili" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continua" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Aggiorna" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Sto per aggiornare il tuo database dalla versione" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "alla più recente versione del database" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Fai click sul pulsante \"Aggiorna\" e rilassati così posso fare la mia magia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Se vuoi che mi occupi di fare anche il backup del database, selezione il checkbox qui sotto e lo farò in un attimo." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Effettuare un Backup del database prima dell'aggiornamento? (Veramente consigliato)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Aggiornamento del database di Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi è stato aggiornato! Prima di continuare, devi aggiornare il database alla versione più recente (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "La versione del database è aggiornata." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "La procedura di upgrade è stata interrotta." + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Aggiornamento Manuale" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Stato dell'aggiornamento di Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Le istruzioni qui sotto illustrano nel dettaglio come eseguire un aggiornamento manuale della tua istallazione di Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Step 1: Scarica la versione più recente di Ushahidi da http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Step 2: A seconda del sistema operativo del tuo web server scegli la modalità e lo strumento più adatti (es.telnet, ftp, ssh) per effettuare login sul webserver e sostituisci i contenuti di tutte le cartelle con quelli della nuova versione. Tutti TRANNE:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Step 4: Clicca sul tasto\"Continua\" per aggiornare le tabelle necessarie." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Passo 3: Apri la cartella sql. Lancia manualmente il file di upgrade-.sql iniziando dalla versione corrente del db per la tua installazione e continua fino all'ultimo file sql di aggiornamento." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Per eseguire l'aggiornamento automatico clicca il bottone qui sotto." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Per l'aggiornamento automatico, fai click sul tasto in basso" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Stai usando Ushahidi v%1$s con un database versione %2$d che sta funzionando su %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Aggiornamento in corso" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Per continuare con l'upgrade, occorre specificare le informazioni qui sotto per il server FTP sul quale è ospitato il tuo sito." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Esempio: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Password:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP Nome Utente:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Hai l'ultima versione di Ushahidi" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Non occorre eseguire l'aggiornamento" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versione Database: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Attenzione: la versione del software nel file version.php e quella del database non corrispondono." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Attenzione: La versione del Database nel file version.php e quella del database non corrispondono." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Database:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Download ultima versione di ushahidi in corso..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "File di Log" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Scaricato con successo. Lo sto scompattando..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Download fallito." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Estrazione avvenuta con successo. Copia dei files in corso..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Estrazione fallita." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copia avvenuta con successo. Aggiornamento Database..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Copia dei files fallita." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Backup e aggiornamento del database avvenuta con successo." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Backup del database fallito." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Il database è stato aggiornato correttamente." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Cancellazione file scaricati..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "AGGIORNAMENTO EFFETTUATO. Visualizza File Log" diff --git a/application/i18n/po/po-ja_JP/alerts.po b/application/i18n/po/po-ja_JP/alerts.po new file mode 100644 index 0000000000..284357d007 --- /dev/null +++ b/application/i18n/po/po-ja_JP/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "正しいメールアドレス形式ではありません。" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "入力したメールアドレスで指定の場所のアラートを受信する設定になっています。" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "メールアドレスは最低4文字、最高64文字の長さでなければいけません。" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "チェックボックスにチェックが入っている場合はメールアドレスが必須です。" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "地図上の選択可能な場所を選択してません。" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "地図上の選択可能な場所を選択してません。" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "地図上の選択可能な場所を選択してません。" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "地図上の選択可能な場所を選択してません。" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "携帯番号が正しい桁数が入力されていません。" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "入力した携帯番号で指定の場所のアラートを受信する設定になっています。" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "正しい携帯場号が入力されていないようです。半角数字で国番号から入力してください。" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "携帯番号がメールアドレスのどちらかを入力してください。" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "チェックボックスにチェックが入っている場合は、携帯番号が必須です。" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "地図上で有効な半径値を設定していません。" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "地図上で有効な半径値を設定していません。" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "この承認コードはすでに確証済みです!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "承認コードが見つかりません。正しいURLなのか確認してください。" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "コードが正しく承認されました。今後何か事件が発生したらアラームを受信します。" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "アラートを受けとるための確認は、こちらにアクセスしてください。" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "さらにアラートを受信をする為にアラートページに戻る" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "メールでのアラート受信する為の承認メッセージをこのメールアドレスにお送りました" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "受信したメールの承認コードを下記に入力してください" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "メールでのアラート受信設定はまだ保存されていません!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "メールでのアラート受信設定は保存されました!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "システムが承認処理を実行出来ませんでした!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "携帯番号でのアラート受信する為の承認メッセージをこの番号にお送りしました" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "受信したメールの承認コードを下記に入力してください" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "メールでのアラート受信設定はまだ保存されていません!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "メールでのアラート受信設定は保存されました!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "この立ち上げたサイトではアラートを正しく処理するように設定されていません。" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "アラートを受信する設定をした為、このメールを受信しています。今後アラートを受信したくない場合はこちらにアクセスしてください" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "今後アラートを次のサイトから受信しません" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "受信解除が出来ませんでした。正しいURLか確認してください。" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "アラート - 承認" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "あなたがリクエスト承認しない限り、この場所でのアラートを受信が出来ません。" diff --git a/application/i18n/po/po-ja_JP/auth.po b/application/i18n/po/po-ja_JP/auth.po new file mode 100644 index 0000000000..72acdd4d3a --- /dev/null +++ b/application/i18n/po/po-ja_JP/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# tosseto , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: tosseto \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "正しいメールアドレス形式ではありません。" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "このメールアドレスで、アカウントが存在します。" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "メールアドレスは最低4文字、最高64文字の長さでなければいけません。" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "メールアドレスは入力必須です。" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "氏名は最低3文字、最高100文字の長さでなければいけません。" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "氏名は入力必須です。" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "氏名に許可されていない文字列が入っています。" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "2つのパスワード行に同じパスワードを入力してください。" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "パスワードが必要です。" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "パスワード行は、アルファベット文字、#と@、数字、アンダースコア、ダッシュ記号のみが使えます。" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "パスワード行は、8文字以上が必須です。" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "パスワード行が必須です。" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "パスワードは5文字以上、16文字以下です。" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "再度同じパスワードを入力してください。" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "パスワードは入力必須です。" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "パスワード確認は、パスワードと同じ物を入力してください。" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "正しいメールアドレス形式ではありません。" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "入力されたメールアドレスの登録がありません。" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "メールアドレスは入力必須です。" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "ルールの形式が不正です。" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "ルールは最低5文字以上、30文字以下でなければいけません。" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "最低1つルールを定義する必要あります。" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "管理者かユーザーのどちらかのルールを選択する必要があります。" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "管理者ユーザーのルールは変更する事が出来ません。" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "ユーザー名はすでに使われています。" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "ユーザー名は最低2文字、最高16文字までです。" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "ユーザー名は入力必須です。" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "特権管理者ルールは変更する事が出来ません。" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ja_JP/bug.po b/application/i18n/po/po-ja_JP/bug.po new file mode 100644 index 0000000000..e600b2e0e4 --- /dev/null +++ b/application/i18n/po/po-ja_JP/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "有効なセキュリティコードを入力してください。" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "セキュリティコードを入力してください。" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "正しいメールアドレス形式ではありません。" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "メールアドレスは最低4文字、最高64文字の長さでなければいけません。" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "チェックボックスにチェックが入っている場合はメールアドレスが必須です。" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "エラーは入力必須です。" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "タイトルは最低3文字以上でなければいけません。" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "タイトルは入力必須です。" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "名前は最低3文字以上でなければいけません。" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "名前は入力必須です。" diff --git a/application/i18n/po/po-ja_JP/category.po b/application/i18n/po/po-ja_JP/category.po new file mode 100644 index 0000000000..1d2773f61b --- /dev/null +++ b/application/i18n/po/po-ja_JP/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "カラーは6文字でなければいません。" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "カラーは入力必須です。" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "説明文は入力必須です。" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "画像アップロードサイズは 50KBに制限されている事を確認してください。" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "画像以外が選択されています。.JPG, .PNG, .GIF形式のみアップロード可能です。" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "画像以外のファイルが選択されています。" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "タイトルは最低3文字、最高80文字以下にしてください。" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "タイトルは入力必須です。" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "親カテゴリがありません。" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "親カテゴリは数字でなければいけません。" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "親カテゴリは入力必須です。" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "カテゴリと親カテゴリは同じ物には出来ません。" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ja_JP/comments.po b/application/i18n/po/po-ja_JP/comments.po new file mode 100644 index 0000000000..b31b6b4a8b --- /dev/null +++ b/application/i18n/po/po-ja_JP/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "有効なセキュリティコードを入力してください。" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "セキュリティコードを入力してください。" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "名前は最低3文字以上入力してください。" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "名前は入力必須です。" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "コメントは入力必須です。" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "正しいメールアドレス形式ではありません。" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "メールアドレスは最低4文字、最高64文字の長さでなければいけません。" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "チェックボックスにチェックが入っている場合はメールアドレスが必須です。" diff --git a/application/i18n/po/po-ja_JP/contact.po b/application/i18n/po/po-ja_JP/contact.po new file mode 100644 index 0000000000..1dff8c14c7 --- /dev/null +++ b/application/i18n/po/po-ja_JP/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "有効なセキュリティコードを入力してください。" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "セキュリティコードを入力してください。" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "正しいメールアドレス形式で入力してください。" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "メールアドレスは最低4文字、最高64文字の長さにしてください。" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "チェックボックスにチェックが入っている場合は、メールアドレスは必須です。" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "メッセージは必須項目です。" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "名前は最低3文字上入力してください。" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "名前は必須項目です。" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "タイトルは最低3文字以上入力してください" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "タイトルは必須項目です。" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ja_JP/core.po b/application/i18n/po/po-ja_JP/core.po new file mode 100644 index 0000000000..d6c5c63b96 --- /dev/null +++ b/application/i18n/po/po-ja_JP/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "設定ファイル" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "コントローラ" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "ドライバ" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr " %s ドライバ( %s ライブラリ用)は %s インターフィエスに取り込まれなければいけません。" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s ドライバ( %s ライブラリ用)が見つかりませんでした。" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "ホームページ or 再トライへアクセス出来ます。" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "リクエストを完了出来ません。" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ヘルパー" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "リクエストされた %s ファイルタイプは、ビュー設定ファイルでは許可されていません。" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "不正なメソッド %s が %s で呼び出されました。" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "%s プロパティは %s クラスにはありません。" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "ライブラリ" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "ログディレクトリに書き込みできません: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "モデル" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi はこのリクエストを処理するコントローラが分かりませんでした: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "config/routes.php にデフォルトルートをセットしてください。" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "リクエストされたページ, %s, は見つかりませんでした。" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Ushahidi にバグを報告する" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "リクエストされた %s, %s, は見つかりませんでした。" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "スタックトレース" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "ロード時間 {execution_time} 秒, メモリ使用量 {memory_usage} by Ushahidi {kohana_version} " + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "ページリクエストあたりの Ushahidi インスタンスは1つだけです。" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "エラー %s: %s がファイル %s の %s 行目にあります。" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "ビュー" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "レンダーを呼び出す前にビューファイル名をセットしなければなりません。" diff --git a/application/i18n/po/po-ja_JP/database.po b/application/i18n/po/po-ja_JP/database.po new file mode 100644 index 0000000000..3a3afb2521 --- /dev/null +++ b/application/i18n/po/po-ja_JP/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "データベースエラー : %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "テーブル \" %s \"がデータベースに見つかりません。このUshahidiの最新バージョンのデータベースを利用しているか確認してください。" diff --git a/application/i18n/po/po-ja_JP/datetime.po b/application/i18n/po/po-ja_JP/datetime.po new file mode 100644 index 0000000000..6b3303a075 --- /dev/null +++ b/application/i18n/po/po-ja_JP/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-24 12:01+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "午前" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "(金)" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "金曜日" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "(月)" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "月曜日" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "午後" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "(土)" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "土曜日" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "(日)" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "日曜日" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "(木)" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "木曜日" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "(火)" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "火曜日" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "(水)" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "水曜日" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "12月" diff --git a/application/i18n/po/po-ja_JP/feeds.po b/application/i18n/po/po-ja_JP/feeds.po new file mode 100644 index 0000000000..cfdf1484e2 --- /dev/null +++ b/application/i18n/po/po-ja_JP/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "日時" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "フィード名は最低3文字以上、70文字以下にする必要があります。" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "フィード名を入力してください。" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "フィードのURLを入力してください。" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "有効なURLを入力してください。例 http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ソース" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "タイトル" diff --git a/application/i18n/po/po-ja_JP/footer.po b/application/i18n/po/po-ja_JP/footer.po new file mode 100644 index 0000000000..4052919332 --- /dev/null +++ b/application/i18n/po/po-ja_JP/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl がインストールされていません。" diff --git a/application/i18n/po/po-ja_JP/form.po b/application/i18n/po/po-ja_JP/form.po new file mode 100644 index 0000000000..ab913321f8 --- /dev/null +++ b/application/i18n/po/po-ja_JP/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "フィールド名は最低3文字以上、200文字以下ではなければいけません。" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "フィールドの高さの値を0から50の間で入力してください。" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "有効なデータフィールドを入力してください。" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "データフィールドには はい、もしくは いいえを選択してください。" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "フィールド名は最低3文字上、最高100文字以下にしなければなりません。" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "フィールド名を入力してください。" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "必須フィールドの有効な値を入力してください。" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "必須フィールドには、はい、もしくは いいえを選択してください。" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "有効なフィールドタイプを選択してください。" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "フィールドタイプを選択してください。" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "フィールドの幅を0から300の間で入力してください。" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "フォームの説明文を入力してください。" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "ディフォルトフォームは削除出来ません。" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "このフィールドにどのフォームを追加するか選択してください。" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "このフィールドにどのフォームを追加するか選択してください。" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "フォーム名は最低3文字以上、最高100文字以下にしなければなりません。" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "フォーム名を入力してください。" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ja_JP/imap.po b/application/i18n/po/po-ja_JP/imap.po new file mode 100644 index 0000000000..8e88cfa5c4 --- /dev/null +++ b/application/i18n/po/po-ja_JP/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAPストリームを開けません。" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "メールサービスはサポートされていません。" diff --git a/application/i18n/po/po-ja_JP/installer.po b/application/i18n/po/po-ja_JP/installer.po new file mode 100644 index 0000000000..b118f7308c --- /dev/null +++ b/application/i18n/po/po-ja_JP/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "ベースパス" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "データベース" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "データベースホスト" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "もしUshahidiをご自身のコンピューターで起動させていたら、これは\"localhost\"になるでしょう。もしUshahidiをウェブサーバーで起動していたら、ホスティング会社から貰うホスト情報になるでしょう。" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "データベース名" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Ushahidi を稼働させたいデータベース名は" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "更なる情報に関しては、このWikiの記事を確認し、データーベースに関して確認してください。" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "デフォルト言語(ロケール)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "個々のUshahidiは、翻訳された言語パックがついてきます。 自身の言語を追加する事が出来ます。" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "無効" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "有効" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "以下一覧が発生したエラーの要約です。" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "サーバーに設定されたロケーションはUshahidiファイルに保管されています。自動で値を検知しますので、これが正しいか確認してください。もしフィールドが空だった場合は、Ushahidiがトップレベルのディレクトリにインストールされているだけなので、ご心配しないでください。" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "終了" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "ジェネラル" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API キー" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "誰でもAPIキーをこちらで取得出来ます。" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "戻る" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "アドバンス インストール" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "基本設定であれば5ステップで行う事ができます。これはサーバー、地図、サイト名、コンタクト情報を含みます。" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "基本インストール" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "簡単で早い。唯一必要なのはウェブサイトのルートディレクトリとデーターベース情報です。もし急いで立ち上げたい場合はこのオプションを選択してください。いつでも戻って設定を変更する事が出来ます。" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "プロセス" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Ushahidiサーバープロセスへようこそ。どのインストール方法か選択してください。" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "インストール成功" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "メールサービス" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "メールサービスホスト" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "メールサーバーパスワード" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "メールアドレスに通常ログインするパスワードです。" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "メールサーバーポート" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "一般的なポート: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "メールサーバー種別" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "インスタンスメッセージアクセスプロトコル(IMAP)かポストオフィスプロトコル(POP)、何が違うのか" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "メールサーバーユーザー名" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Gmail、HotmailまたはYahoo Mailを使っているのであれば、ユーザー名にはメールアドレスをすべて入力してください" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "地図" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "地図提供者" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidiは4つの地図提供: Google, Bing, Yahoo or OpenStreetMapに同等に機能します。利用したい地域に一番詳細な地図を選択してください。" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "その他のステップ..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "パスワード" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "データベースのパスワード" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "前" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Apacheを再起動してください。" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "SSL の有効化 もしくは 無効化" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "メールサーバーには設定でSSLを接続に使えるサーバーがあります。 SSL有効はセキュリティ追加という意味で推奨されています。" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "SMSサーバーを設定する" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "サイトメールアドレス" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "サイトのアラートメールアドレス" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "サイト訪問者がメールアラートに登録したら、このメールアドレスからメールを受信します。このメールアドレスは、サイトのメールアドレスと同じでなくても大丈夫です。" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "サイトに届くメールはこのアドレスに集まります。" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "サイト名" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "サイトの名前" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "サイトのタグライン" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "タグライン" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "以下のファイルとフォルダーはウェブサーバにより上書きされます。" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

以下がファイルの権限を変更する方法です:

" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "始める前に、以下のファイルやフォルダーがウェブサーバーによって上書き可能か確認する必要があります。これはファイル権限を帰る事で可能になります。" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "インストールプロセスの為に、以下の情報を覚えておいてください。" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "テーブルのプリフィックス" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "通常はテーブルのプリフィックスは変更しませんが、複数のUshahidiを1つのデーターベースにインストールをする場合は、ここでプリフィックスを変更する事が可能です。" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "タイトル" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "ログインは、こちら" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "レポートデータをアップロード" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "ユーザー名" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "データベースのユーザー名" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "次の証明書を利用する" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "ウェブサイトを見る" diff --git a/application/i18n/po/po-ja_JP/layer.po b/application/i18n/po/po-ja_JP/layer.po new file mode 100644 index 0000000000..acdff59a9f --- /dev/null +++ b/application/i18n/po/po-ja_JP/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "カラーフィールドは6文字でなければいけません。" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "カラーフィールドは必須項目です。" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "ファイル選択で、有効なファイルが選択されていません。有効な拡張子は.KMZ か .KML のみです。" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "ファイル選択で、有効なファイルが選択されていません。" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "名前フィールドが、最低3文字以上、80文字以内でなければいけません。" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "名前フィールドは必須項目です。" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "KMLのUriかファイルのどちらか必須です。" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "KMLファイルとurlの両方を保持する事は出来ません。" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "有効なURLを入力してください。(例. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-ja_JP/libraries.po b/application/i18n/po/po-ja_JP/libraries.po new file mode 100644 index 0000000000..036ecca4a2 --- /dev/null +++ b/application/i18n/po/po-ja_JP/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "akismetサーバに接続出来ませんでした。" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Akismetからの返答が返ってきませんでした。" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "APIライブラリ: %s%s 向け)クラスが見つかりませんでした。API タスクルーティング表を確認してください。" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Akismet API キーが正しくありません。" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "メソッドを送信しfopenを実行する間にエラーが発生しました
PHPがOpenSSLサポートされているか、PHPのバージョンが5.2以上かどうか確認してください。" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "unicodeメッセージが長すぎます! (現在の長さ=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "目的の住所(TO)を入力してください!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "発生源の住所(FROM)を入力してください!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "unicodeメッセージが長すぎます! (現在の長さ=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "送信されたメソッドはサポートされていません。" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API ライブラリ %sは無効です。全てのAPI ライブラリは %sのサブクラスでなければいけません。" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "%sディレクトリは削除出来ませんでした。" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "展開時にエラーが発生しました: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "最新のushahidiダウンロードに失敗しました。HTTPステイタスコード" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "%sファイルはコピー出来ませんでした。" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "%sファイルは削除出来ませんでした。" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidiアップグレードスクリプト" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "ダウンロードされたushahidi zipファイル %sは上書き出来ませんでした。" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ja_JP/maintenance.po b/application/i18n/po/po-ja_JP/maintenance.po new file mode 100644 index 0000000000..ec787dba29 --- /dev/null +++ b/application/i18n/po/po-ja_JP/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-06 18:21+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "申し訳ありませんが、現在メンテナンス中のため、ご利用になれません。時間をおいてのアクセスをお願いいたします。" diff --git a/application/i18n/po/po-ja_JP/message.po b/application/i18n/po/po-ja_JP/message.po new file mode 100644 index 0000000000..bf4c7c0d64 --- /dev/null +++ b/application/i18n/po/po-ja_JP/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "有効なセキュリティーコードを入力してください。" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "セキュリティコードを入力してください。" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "有効なメールアドレス形式ではないようです。" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "メールアドレスは4文字以上、64文字以下でなければいけません。" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "チェックボックスにチェックが入っている場合は、メールアドレスは必須です。" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "コメントは必須です。" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "名前は最低3文字以上でなければいけません。" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "名前は必須です。" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "電話番号が有効ではないようです。" diff --git a/application/i18n/po/po-ja_JP/mhi.po b/application/i18n/po/po-ja_JP/mhi.po new file mode 100644 index 0000000000..1f0210c2cf --- /dev/null +++ b/application/i18n/po/po-ja_JP/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "有効なセキュリティコードを入力してください。" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "セキュリティコードを入力してください。" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "メールアドレスフィールドに有効なメールアドレスが入力されていないようです。" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "有効なメールアドレスを入力してください。" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "メッセージは必須項目です。" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "タイトルフィールドは最低3文字以上でなければいけません。" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "タイトルフィールドは必須項目です。" diff --git a/application/i18n/po/po-ja_JP/notifications.po b/application/i18n/po/po-ja_JP/notifications.po new file mode 100644 index 0000000000..9168dccfef --- /dev/null +++ b/application/i18n/po/po-ja_JP/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-06 17:13+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "このメッセージはあなたのウェブサイトから送られました。" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "管理者ログイン" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "あなたのウェブサイトに新しいコメントが投稿されました : " + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "新規コメント" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "あなたのウェブサイトにメールのメッセージが投稿されました。" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "新規メールメッセージ" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "あなたのウェブサイトに新しいレポートが投稿されました。" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "新規レポート" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "あなたのウェブサイトに新しいテキストメッセージが投稿されました。" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "新規テキストメッセージ" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "新しいお知らせがあります" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "最新情報" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "プライベートメッセージを受信しました" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "プライベートメッセージがあります" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "返信するには、以下にアクセスして下さい:" diff --git a/application/i18n/po/po-ja_JP/page.po b/application/i18n/po/po-ja_JP/page.po new file mode 100644 index 0000000000..66822b6849 --- /dev/null +++ b/application/i18n/po/po-ja_JP/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-06 17:04+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "ページのタイトルを入力してください。" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "ページのタイトルは、3文字以上150文字以下でなければなりません。" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "ページのタブの名前を入力してください。" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "ページの説明を入力してください。" diff --git a/application/i18n/po/po-ja_JP/permissions.po b/application/i18n/po/po-ja_JP/permissions.po new file mode 100644 index 0000000000..4c48b3544b --- /dev/null +++ b/application/i18n/po/po-ja_JP/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "レポートを作成/編集/削除する" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "レポートを承認する" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "レポートを検証する" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "レポートのコメントを管理する" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "レポートをダウンロードする" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "レポートをアップロードする" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "メッセージを管理する" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "レポート作成者を管理する" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "統計情報を閲覧する" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "設定を修正する" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "管理パネル" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "ユーザを管理する" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "役割を管理する" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ja_JP/private_message.po b/application/i18n/po/po-ja_JP/private_message.po new file mode 100644 index 0000000000..354cea3a78 --- /dev/null +++ b/application/i18n/po/po-ja_JP/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-06 17:09+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "親IDは数字でなければなりません" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "To欄は必ず入力してください" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "あなたがメッセージを送ろうとしているユーザは、存在しません" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "件名は必須です" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "件名の長さは、3字以上150字以下でなければなりません。" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "本文は必須項目です" diff --git a/application/i18n/po/po-ja_JP/report.po b/application/i18n/po/po-ja_JP/report.po new file mode 100644 index 0000000000..90f663ae3a --- /dev/null +++ b/application/i18n/po/po-ja_JP/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-10-24 12:14+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "エラーが発生しました。" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "複数の国にまたがるレポートを扱うことはできません。レポートで扱っている場所が%sの国内であるか、確認して下さい。" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "\"%s\"欄に正しい形式のデータを入力してください。" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "\"%s\"欄は数値でなければなりません。" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "\"%s\"は必須項目です。" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "\"%s\"欄は存在しません。" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "あなたには\"%s\"を編集する権限はありません。" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "\"%s\"欄には正しい形式のメールアドレスを入力する必要があります。" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "\"%s\"欄には正しい形式の電話番号を入力する必要があります。" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "\"%s\"欄には正しい形式の日付を入力する必要があります。(月2桁/日2桁/年4桁)" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "\"%s\"欄には正しい形式の日付を入力する必要があります。(日2桁/月2桁/年4桁)" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "ダウンロードを行うため有効な値を選択してください。" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "ダウンロードを行うため有効な値を選択してください。" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "ダウンロードを行うため有効なレポートタイプを選択してください。" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "ダウンロードを行うため有効なレポートタイプを選択してください。" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "ダウンロードを行うため有効なレポートタイプを選択してください。" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "FROMの日時が有効なフォーマットではありません。" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "有効なFROMの日時を入力してください。今日よりも先になってはいけません。" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "このレポートを承認する、の有効な値を入力してください。" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "このレポートを承認する、の有効な値を入力してください。" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "am/pmフィールドに有効な値ではないようです。" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "カテゴリーフィールドに入力された値は、有効なカテゴリーではないようです。" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "カテゴリーフィールドは必須です。" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "日付フィールドに有効な日付の値が入っていないようです" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "日付フィールドに有効な日付の値が入っていないようです" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "日付フィールドは必須です。" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "説明フィールドは必須です。" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "時間フィールドに有効な時間が入っていないようです。" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "時間フィールドは必須です。" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "情報の確実性の有効な値を入力してください。" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "情報の確実性の有効な値を入力してください。" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "分フィールドに有効な値が入ってい内容です。" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "分フィールドは必須です。" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "ニュースのソースリンクフィールドに有効なURLが入っていないようです。" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "アップロードする写真の最大サイズは2MB以下であることを確認してください。" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "アップロードされた写真は有効な画像フォーマットではないようです。アップロード可能なフォーマットは .JPG、 .PNG、.GIFのみです。" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "アップロードされた写真に有効なファイルが選択されていないようです。" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "ソースの信用性の有効な値を入力してください。" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "ソースの信用性の有効な値を入力してください。" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "タイトルフィールドは最低3文字、最高200文字以下でなければいけません。" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "タイトルフィールドは必須です。" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "このレポートを実証する、の有効な値を入力してください。" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "このレポートを実証する、の有効な値を入力してください。" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "ビデオリンクフィールドに有効なURLが入っていないようです。" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "緯度フィールドに有効な緯度の値が入ってい内容です。" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "緯度フィールドは必須です。地図をクリックし、場所の選択をしてください。" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "ロケールフィールドに無効な値が入っています。" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "すでにレポートはこの言語に翻訳されています。" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "ロケールフィールドに無効な値が入っています。" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "オリジナルレポートと、翻訳は同じロケール(言語)です。" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "ロケールは必須です。" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "ロケール名は最低3文字、最高200文字以下でなければいけません。" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "ロケーション名は必須です。" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "経度フィールドに有効な経度の値が入っていないようです。" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "経度フィールドは必須です。地図をクリックし、場所を選択してください。" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "メールアドレスフィールドに有効なメールアドレスが入っていないようです。" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "メールフィールドは最低4文字以上、最高64文字以下でなければいけません。" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "名前は最低3文字以上、最高100文字以下でなければいけません(カタカナで書く事をおすすめします)。" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "名字は最低3文字以上、最高100文字以下でなければいけません(カタカナで書く事をおすすめします)。" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "TOの日時フィールドに有効な日時が入ってないようです。" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "有効なTOの日時を入力してください。今日よりも先の日時には出来ません。" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "FROMの日時は、TOの日時よりも先にする事は出来ません。" diff --git a/application/i18n/po/po-ja_JP/reporters.po b/application/i18n/po/po-ja_JP/reporters.po new file mode 100644 index 0000000000..abd6765864 --- /dev/null +++ b/application/i18n/po/po-ja_JP/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "緯度には正しい緯度が入力されていないようです。" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "緯度は必須項目です。地図上でロケーションを選択してください。" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "レポーターレベルには正しいレベル値が入っていないようです。" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "レポーターレベルには正しいレベル値が入っていないようです。" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "ロケーション名は最低3文字、最高200文字以内でないといけません。" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "ロケーション名は必須です。" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "緯度フィールドに有効な緯度が入っていないようです。" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "緯度は必須です。地図上でロケーションを選択してください。" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "無効なレポーターです。" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "無効なレポーターです。" diff --git a/application/i18n/po/po-ja_JP/reports.po b/application/i18n/po/po-ja_JP/reports.po new file mode 100644 index 0000000000..a6367d8380 --- /dev/null +++ b/application/i18n/po/po-ja_JP/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Kouju Tanabe , 2013 +# Reiko Kunisada, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 04:25+0000\n" +"Last-Translator: Reiko Kunisada\n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "アイテムをチェックしたか、確認して下さい。" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "アイテムをチェックしたか、確認して下さい。" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "レポートを承認してもらうには、カテゴリを付与しなければなりません。" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "あなたには、この操作をする権限がありません。" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "アップロードするファイルを選択して下さい。" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "アップロードするファイルは、csv形式またはxml形式でなければなりません。" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "アップロードするファイルとして、アップロードできないファイルが指定されているようです。" diff --git a/application/i18n/po/po-ja_JP/roles.po b/application/i18n/po/po-ja_JP/roles.po new file mode 100644 index 0000000000..c3c9196579 --- /dev/null +++ b/application/i18n/po/po-ja_JP/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "説明は最低3文字、最高100文字以下でなければなりません。" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "説明は必須項目です。" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "名前は文字列か数字のみ入力可能です。" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "名前のフィールドは最低2文字、最大30文字以下でなければいけません。" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "スーパー管理者は変更出来ません。" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "名前フィールドは入力必須です。" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ja_JP/settings.po b/application/i18n/po/po-ja_JP/settings.po new file mode 100644 index 0000000000..4e000335e6 --- /dev/null +++ b/application/i18n/po/po-ja_JP/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "コメント許可フィールドに正しい値が入っていないようです。" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "コメント許可フィールドは必須です。" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "フィードフィールドに正しい値が入ってないようです。" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "フィードは必須です。" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "レポート許可フィールドには正しい値が入っていないようです。" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "レポート許可は必須です。" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "統計共有フィールドに正しい値が入っていないようです。" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "統計共有は必須です。" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "API越しでレコードを取得するのではディフォルトで無効です。" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "API越しでレコードを取得出来最大数" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "IPアドレス毎のAPIリクエストの最大数" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismetフィールドには正しい値が入ってないようです。" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismetフィールドには正しい値が入ってないようです。" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "バナー画像の容量が250KB未満であることを確認して下さい。" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "キャッシュページは入力必須です。" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "キャッシュページフィールドには正しい値が入ってないようです。" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "キャッシュページの有効期間フィールドには正しい値が入っていないようです。" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "キャッシュページ有効期間は入力必須です。" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "あなたのサーバーはクリーンURLを正しく扱えないようです。この機能を有効する前に、サーバの設定をする必要があります。このフォームの投稿の詳細を確認してください。" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "この設定はUshahidiは\"index.php\"ではなくクリーンURLでアクセス出来るようにします。" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "クリーンURLを有効にする" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "クリーンURL" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "ClickatellのAPI入力番号は20文字以下ではなければいけません。" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "ClickatellのAPI番号は入力必須です。" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Clickatellパスワードは最低5文字、最大50文字以下の入力する必要があります。" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Clickatellパスワードは入力必須です。" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Clickatellのユーザー名は50文字以下でなければいけません。" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Clickatellのユーザー名は入力必須です。" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "地図を設定する" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "ディフォルトの位置" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "色フィードに正しい値が入っていないようです。" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "色は6文字以下でなければいけません。" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "色は必須です。" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "ディフォルトの地図の見え方" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "ディフォルトのズームのレベル" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "GeoNamesからの市町村の収集" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "メールサーバーのポート入力が長過ぎます。" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "メールサーバーのポートには数字のみ入力可能です。" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "メールサーバーのパスワードは最少5文字、最大50文字以下でなければいけません。" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "メールサーバーのパスワードは入力必須です。" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "メールサーバーのポートの入力されている値が長過ぎます。" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "メールサーバーのポート値は数字のみでなければいけません。" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "メールサーバーのポートの入力されている値が長過ぎます。" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "メールサーバーのタイプは必須です。" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "メールサーバーのユーザー名は最大50文字以下でなければいけません。" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "メールサーバのユーザー名は入力必須です。" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Google Analyticsは有効なUA-XXXXX-XXというフォーマットのウェブプロパティIDを入力する必要があります。" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "HTTPSを使用する" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "表側のページ毎に表示するアイテムのフィールドに正しい値が入っていないようです。" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "表側のページ毎に表示するアイテムは入力必須です。" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "管理側のページ毎に表示するアイテムのフィールドに正しい値が入っていないようです。" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "管理側のページ毎に表示するアイテムは入力必須です。" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "地図提供者の設定をするのは簡単です。提供者を選択し、APIを取得し、入力するだけです。" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "ズームレベル" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "地図提供者を選択する" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "APIキーを入力する" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "APIキーを取得する" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "地図提供者の設定をするのは簡単です。提供者を選択し、APIを取得し、入力するだけです。" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "地図提供者" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "地図設定" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "このUshahidiは、複数の国にまたがっていますか" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "デフォルトの国を選択してください。" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "地図をクリック&ドラッグして、正しい位置を選択してください。" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "地図上のレポートをひとまとめにする" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "レポートへのコメント投稿を許可" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "ウェブサイトのRSSニュースフィードを含める" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "レポート投稿を許可" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismetキー" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "キャッシュページ" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "キャッシュページの有効期間" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "チェックイン" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "サイトの利用ライセンス" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "すべてのカテゴリーのデフォルトの色" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "バナー画像を削除する" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "コンタクトページを表示する" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "\"手助けする\"ページを表示する" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "メールアドレスに通告する" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "メールでレポートを受け取る場合は、メールアカウント設定をしてください。" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "サイトのメールアドレス" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "ウェブプロパティID - フォマット: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "ページ毎のアイテム - 表側" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "ページ毎のアイテム - 裏側" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "自動でAkismetを使ってスパムコメントを防いでください。
WordPress.com ユーザーアカウントに無償登録するとフリーのAPIキーを取得する事が出来ます。" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica証明書" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica サイト" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "サイト言語" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "サイトメッセージ" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "サイト名" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "プライベートサイト" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "統計を有効にする(Ushahidiサーバに蓄積されます)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "サイトのタグライン" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "タイムゾーン" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "サイト設定" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "ツイッター収集タグ" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "ハッシュタグ - カンマ区切りにしてください" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "サイトのメールアドレスフィールドには正しい値が入っていないようです。" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "サイトのメールアドレスは最低4文字以上、最低100文字以下でなければいけません。" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "サイト名は最低3文字、最大50文字以下でなければいけません。" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "サイト名は入力必須です。" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "タグラインは最低3文字以上、最大100文字以下でなければいけません。" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "タグラインは入力必須です。" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "ClickatellのAPI番号です" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Clickatellのクレジットバランスを確認する" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "クレジットバランスを取り込む" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Clickatellパスワード" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "ここをクリックしてClickatellサーバに登録する" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "以下にClickatellのアクセス情報を入力する" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Clickatellユーザー名" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMSは、無料の、そしてオープンソースのソフトウェアです。FrontlineSMSを使用して、携帯電話で多くの人と文章のメッセージをやり取りすることができます。下にある四角形をクリックすると、FrontlineSMS.comから最新版をダウンロードします。" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "FrontlineSMSをダウンロードし、インストールする" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "以下のフィールドにSMSにつながる電話番号を入力してください。" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "+や-を入れないで番号を入力してください。" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "オプション1: SMSを使う" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "オプション2 : グローバルなSMSのゲートウェイを使う" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS設定オプション" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "電話番号のフィールド1が正しい値が入力されてないようです。" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "電話番号フィールド1は番号のみ入力可です。" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "電話番号フィールド2の値は長過ぎます。" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "電話番号フィールド2は番号のみ入力可です。" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "電話番号フィールド3の値は長過ぎます。" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "電話番号フィールド3は番号のみ入力可です。" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Twitterの設定" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "設定を試す" diff --git a/application/i18n/po/po-ja_JP/sharing.po b/application/i18n/po/po-ja_JP/sharing.po new file mode 100644 index 0000000000..8167cb79f1 --- /dev/null +++ b/application/i18n/po/po-ja_JP/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "立ち入り日時" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "追加日時" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "最終アクセス" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "カラーフィールドは6文字でなければいけません。" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "カラーフィールドは必須です。" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "共有名は有効ではないようです。" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "共有名は必須です。" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "サイトurlはすでに存在します。" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "サイトurlは有効形式ではないようです" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "サイトurlは必須です。" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "サイトurlフィールドに有効な値が入っていないようです。" diff --git a/application/i18n/po/po-ja_JP/stats.po b/application/i18n/po/po-ja_JP/stats.po new file mode 100644 index 0000000000..618bf017ec --- /dev/null +++ b/application/i18n/po/po-ja_JP/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "承認済み" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "カテゴリー" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "カテゴリーの影響力" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "期間を選択する" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "国々" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "国" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "国内の細分化" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "こんにちは。ここは統計セクションです。一般的な説明は後ほどこの場所に表示されます。コンテンツが作成されるまで、今しばらく上記されているサブカテゴリーのリンクを閲覧するなどしてください。" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "エラー" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "単語" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "要約" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "凡例" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "ページビュー" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "あなたのサイトを、訪問者がページを閲覧したトータル数" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "レポート" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "レポートカテゴリー" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "レポート統計" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "レポート状況" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "レポートパンチカード" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "レポート統計" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "統計は設定されていません。" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1ヶ月" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3ヶ月" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6ヶ月" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "すべて" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "未承認" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "ユニーク訪問者" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "未確認" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "確認済み" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "訪問者の要約" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "訪問" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "このサイトを訪問するユニークユーザーは、再度にページを見てから30分以上経ってから登録しています。" diff --git a/application/i18n/po/po-ja_JP/tooltips.po b/application/i18n/po/po-ja_JP/tooltips.po new file mode 100644 index 0000000000..d7d5165cd8 --- /dev/null +++ b/application/i18n/po/po-ja_JP/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "レポートをもう一つのカテゴリに所属させます。ここでカテゴリ1を選択したとき、そのレポートがすでにカテゴリ2に属していた場合には、そのレポートはカテゴリ1とカテゴリ2の両方に属することになります。" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "報告を認めるかどうか。認めた場合、全体に対して公開されます。" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "きっかけになったユーザに対して、バッジを進呈することができます。進呈するバッジを選んでください。" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "送信されるメールの本文" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "送信されるメールの件名" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "キーワードについて印を付けなくても良い場合は空欄のままにしてください。複数の言葉を追加する場合には、それぞれの言葉をコンマ(,)で区切る必要があります。例えば、誰かがメッセージの中で\"love\"とか\"peace\"について言及していた時に反応するようにしたい場合は、\"キーワードボックスにlove, peace\"と入力する必要があります。" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "これは、既定のレポート件名です。" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "レポートの内容が確認されたかどうか印す。" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "それぞれの値はコンマで区切ってください。具体的には、\"value1, value2\"のようになります。" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "プライベートメッセージの件名" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "プライベートメッセージ" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "公開プロフィールで使う、あなたのプロフィール写真の背景の色を選択できます。ここで指定した色は、あなたのチェックインの際に地図に表示される点の色にもなります。" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "あなたのメールアドレス" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "あなたの氏名" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "入力された文字列は、あなたの新しいパスワードになります。パスワードを変更したくない場合は空白のままにしてください。" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "「はい」を選択すると、あなたのウェブサイトにレポートやコメントが投稿された際、通知メールが届きます。" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "パスワード: 現在のパスワードのままにしたい場合は空白にしてください。" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "このオプションを有効にすると、あなたのプロフィールをインターネットにアクセスするすべての人が閲覧できるようになります。また、このオプションを有効化することは、あなたの投稿やチェックイン、バッジなどをまとめて他の人に見せる最も簡単な方法でもあります。" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "これは、あなたの公開プロフィールのアドレスです。" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "ユーザー名は変更出来ません。" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "このメールアドレスはアラートを送るメールアドレスとして使われます。" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "地図には似通ったレポートを1つのボットで表示させています。" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "このメインサイトでレポートに対してコメントを許可します。" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "このメインサイトで新しいフィードをRSSで表示する事を許可します。" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "ウェブフォーム越しに情報を送信する事を許可します。" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "API越しにレコードを取得する事はディフォルトは無効です。" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "API越しにレコードを取得する最大リクエスト数" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "IPアドレス毎の最大APIリクエスト数" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "一行に表示される項目の数" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "ページのキャッシュ機能を無効、有効化で来ます。これはページを早く表示する事が出来ます。もしアクセスが多いページならばキャッシュを使う事をお勧めします。** レポートは以下に設定するキャッシュ有効期間に依存して表示されます。" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "キャッシュの有効期間を設定" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "この設定はサイトへチェックインを有効にします。これはホームページに載る前の検閲を行わずレポートタイプを簡素化する物で、特定の方法を経ないと行えないようになっています。これを有効にした場合は、時間設定がUTCである事を確認し、テーマがチェックインをサポートしているかどうか、確認しましょう。設定ページでテーマへのアドオンを有効にしないと使えません。" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "特定のロケーションをカバーする地図を設定する" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "このサイト上のすべてのカテゴリーに適応する色を一色設定する" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "この国はすでに利用されています。" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "このメインサイトでのコンタクトタブを非表示する" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "このメインサイトでのヘプルタブを非表示する" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "このメインサイトでページ毎に表示されるレポート数です。" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "管理メージでページ毎に表示されるレポート数です。" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "新規に追加されるメッセージのメインになる部分です。" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Ushahidiプラットフォームと連携をする同期メッセージです。" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "携帯電話から送られるテキストメッセージを受信します。" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "サイトの訪問者を追跡します。訪問者の詳細統計を取得します。" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "このサイトの言語を設定します。" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "このサイトで使われる地図を設定します。" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "この設定を有効にした場合は、このサイトをプライベートモードにし、あなたが許可したユーザーだけがアクセス出来るようになります。" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "ここにメールアドレスが表示されます。" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "レポートを受信する為のメールアドレス用のパスワードになります。" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "メールアドレスから受信用に接続する為に必要です。" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "セキュリティ接続を行う為にも必要です。" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "干すとサーバからメールを取得する為にも必要です。" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "レポートを受信する為のメールアドレスです。" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Ushahidiのサーバー管理の元にアクセス統計が取られています。このオプションを有効にする為には、管理画面でアクセス統計ページで設定出来ます。無効にした場合は、無効時のアクセス統計は取られませんので、(向こう期間を)さかのぼって統計をする事は出来ません。" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "コピーライトを常に表示しておく事はいいアイディアです。どのライセンス形態で行いたいか調べたい場合は、こちら http://creativecommons.org/choose/" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "コンタクトフォームからメールレポートとメッセージを受信する為のメールアドレスです。" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "ホームページの地図上に表示されるテキストです。これは訪問者に重要な情報をお知らせする時に有効です。メッセージを削除する事で、表示されなくなります。" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "このメインサイトのトップに表示されるサイト名です。" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "このサイトについて説明してください。" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Webサイトのタイムゾーンです。この設定は、デフォルトの時間が表示に影響を与えるのと同じように、日時の情報に関連するすべての操作に影響します。" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "ツイート時に利用されるハッシュタグを設定します。" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ja_JP/ui_admin.po b/application/i18n/po/po-ja_JP/ui_admin.po new file mode 100644 index 0000000000..b67ef2d16a --- /dev/null +++ b/application/i18n/po/po-ja_JP/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-24 11:52+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "アクセス禁止です。無効な証明書を入力したか、リクエストが拒否されたかのどちらかでしょうk。" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "アクセス禁止です。リクエストは受け付けましたが、現在のアクセス制限の為アクセス出来ません。後でトライしてください。" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "アクション" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "カテゴリに追加する" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "追加済" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "追加済/編集済" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "アドオン" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "管理" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "受信したアラート" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "匿名" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "無制限" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API 禁止" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API ログ" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API 設定" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "禁止を解除する" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "すべて許可する" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "承認済み" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "自動承認" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "手動承認" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "アーカイブ" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "本当に処理をしますか" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "このアイテムを本当に削除しますか" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "この写真を本当に削除しますか" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "本当にフォームを変更しますか" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "投稿者" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "投稿者メールアドレス" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "戻る" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "禁止IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "キャンセル" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "カテゴリー" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "チャート表示エラー" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "メッセージが有効か確認してください。" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "番号が正しいか確認してください。" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "SMS設定を確認してください。" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "チェックイン" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "街を読み込んでいます。" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "コード" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "コードのバージョンが同期対象外です" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "コメント" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "アラート確認コードは:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "このユーザーは" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "国が見つかりません" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "追加済/編集済" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "レポートを作成する" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "緊急アップグレード" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "毎日" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "ダッシュボード" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "データベース" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "日&時間" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "追加日時" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "修正日時" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DBのバージョンが同期対象外です" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "削除済み" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "削除" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "すべてのレポートを削除する" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "デモ" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "説明" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "無効" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "レポートをダウンロード" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "編集者" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "編集" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "ログを編集する" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "メール" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "ジオコードエラー!HTTPエラーです" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP ライブラリがインストールされていません。" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "不正な証明書" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "エラー" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "エラー、インシデントを投稿出来ませんでした。" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "毎6時間" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "毎12時間" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "実験" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "フィード" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "フィードバック" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "フィード" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "ディフォルト値" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "自由記述" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "高さ" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "文字の最大入力値" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "フィールド名" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "アップロードファイルが見つかりませんでした。" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "ファイルを読み込めませんでした。" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "フォームが見つかりません" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "フォーム" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "テキストエリアフィールド(自由枠)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "から" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "から" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "ジオネームタイムアウトエラー" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "ヘルプを得る" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "新しいテーマを取得する" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "アクション" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "追加/編集" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "メール" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "ユーザーを管理する" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "役割" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "ユーザー" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ヘルプ" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "毎時間" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "インシデントのフィード" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "インストール先フォルダがまだ残っています。セキュリティ上の問題になる可能性があるため、削除してください。" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "インスタンス" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "インスタンス" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "インスタンス詳細" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "無効なパラメーター" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IPアドレス" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "日付フィールドですか?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "メールアドレス: " + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "氏名: " + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "パスワード:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "役割:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "ユーザー名:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "レイヤー" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "モデレーター" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "ログアウト" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "ログ" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "管理" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "役割と権限を管理する" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "ユーザーを見る" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "ユーザーを追加/編集する" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "スパムではないと認定する" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "スパムと認定する" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "どのドキュメントにもマッチしませんでした。" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "メッセージ" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "メッセージ" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconicaに投稿" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "ツイッターに投稿" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "メッセージは投稿されました。" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "分" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "パラメーターが足りません" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "モデレーター" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "編集済み" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "タイムゾーンの設定を変更する" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "取り下げる" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "取り上げる" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "マルチホストされたインスタンス" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "プロフィール" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "名前" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "新しいメッセージを作成する" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "新しいパスワード" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "いいえ" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "これは特殊なカテゴリであり、レポートを投稿しようとするユーザに対しては表示されません。これは、カテゴリ削除の結果生じた、カテゴリに属していないレポート(未分類レポート)を保持するために使用されます。" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "通知" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "これは大文字小文字の判別をしません。" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "見つかりません" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "データがありません。表示する結果がありません。" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "エラーはありません。" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "表示する結果がありません!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "の" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "ページ" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "ページ" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "ページが見つかりません" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "ご指定のページはここには存在しません。

このページにこのサイトの他のページのリンクから移動してきましたか?
もしもこのサイトの別のページから移動してきた場合には、修正いたしますので、お手数ですが管理者までご連絡ください。

ほかのサイトのページから移動しましたか?
ほかのサイトのページのリンクは、情報が古くなっていたり、間違っていたりする可能性があります。どのページから移動してきたのか、管理者までご連絡ください。そのサイトの管理者に連絡を取り、問題を修正できるかもしれません。

URLを直接指定してアクセスしましたか?
ご指定のアドレス(URL)が間違っているかもしれません。URLの綴りは正しいか、また大文字と小文字の使い分けは正しいのかなどを確認して下さい。

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "ご指定のページはここには存在しません。" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "パラメーターが使われました" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "パスワード" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "パスワードリセット" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "親愛なる" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "パスワードリセットするリクエストを受け取りました" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "パスワードを変更する為にか、以下のリンクをクリックしてください(それかコピー&ペーストしてブラウザーに貼付けてください)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "リクエストされた通り、パスワードはリセットされました。新しい詳細は以下の通りです。" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi パスワードリセット" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "電話" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "データが送信方法で送られませんでした" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "プレビュー" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "メッセージ" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "プライベートメッセージ" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "送信済みプライベートメッセージ" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "件名" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "送信先" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "バプリック一覧" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "読む" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "関連性" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "レポートの件名" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "レポート作成日時" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "レポーター" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "レポーターレベル" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "レポート" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "必須" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "リセット" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "結果" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "そのメールアドレスはすでにCrowdmapIDに登録されています。CrowdmapIDに登録した際のパスワードでログインしてください。" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "設定を保存する" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "検索" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "レポートを検索する" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "探す" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "暗号化のための鍵が初期設定のままです。セキュリティ上安全でないため、必ず変更してください。" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "このサイトのデータはHTTPを通して送信されています。セキュリティを向上させるためには、HTTPSを使用する必要があります。" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "説明はwikiで閲覧できます:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "レポートをどの形式でダウンロードするのか、選択してください。" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "---選択してください---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "アイテムを選択してください。" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "送信者" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "メッセージはウェブサイトから送られました" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "サーバー時間" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "設定" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "ページを表示" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "結果を表示" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "スペシャルカテゴリー" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "これは特殊なカテゴリで、レポートを送信するユーザのためのレポート送信画面には表示されません。\"信用できるレポート送信者\"機能をシステムに追加するために使用されます。" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "統計" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "統計" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "統計集計が失敗しました。後ほど試してみてください。" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "統計集計が失敗しました!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "スーパー管理者" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "タスク処理済み" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "テキストフィールド" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "名前" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "ユーザーの管理" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "処理時間超過エラー" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "と" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "すべてのレコード" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "と" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "レポートを翻訳する" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "未承認" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "不明" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "未読" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "ここをクリックしてアップグレードする" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Ushahidiをアップグレード" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Ushahidiのステイタスをアップグレード" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "レポートをアップロード" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "ユーザー" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "バージョン" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "アップグレード可能です。" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "プライベートメッセージ" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "サイトを見る" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "レポートを閲覧する" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "ようこそ、" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "ウィキ" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "はい" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "検索結果" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "処理を実行する前に、データベースのバックアップをとることをおすすめします。" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "本当にすべてのレポートを削除しますか?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "削除可能なレポートがありません。" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ja_JP/ui_main.po b/application/i18n/po/po-ja_JP/ui_main.po new file mode 100644 index 0000000000..0e25af522f --- /dev/null +++ b/application/i18n/po/po-ja_JP/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Kouju Tanabe , 2013 +# Reiko Kunisada, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "概略" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "アクセス" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "アクセス制限" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "アカウント名" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "アクション" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "このアクションは停止する事が出来ません。本当に実行しますか?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "有効化する" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "有効" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "追加" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "追加者" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "備考" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "追加レポート" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "追加/編集" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "フィールド追加" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "言語の追加" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "新規追加" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "新規カテゴリ追加" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "翻訳追加" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "管理" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "お知らせ取得" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "レポートが提出されたらお知らせを送る" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "お知らせを保存する" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "メールアドレス" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "メールアドレスを入力する" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "国番号から携帯番号を入力する" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "お知らせ取得" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "によって警告が発生しています" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "携帯番号:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "もしくは、以下の地図を選択する事で、20キロ範囲内でレポートが提出されたらアラームをお送りします。" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "もし場所を見つけられない場合は、地図上の正しい場所をクリックして修正してください。" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSSフィード(以下のurlをコピーしてください)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "市町村を選択してください。" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "ステップ 1:街か場所を選択してください:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "ステップ 2: お知らせの送り先:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "ステップ 3 (Optional): カテゴリ選択" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "前回のお知らせリクエストを確認してください。" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "お知らせが保存されました。" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "すべて" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "許可" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "許可されているHTMlタグは以下のとおりです: \"%s\"" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "全カテゴリ" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "常に" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "と" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "承認" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "承認済み" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "承認済みレポート" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "このレポートを承認する" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "おおよその" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "アーカイブ" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "アーカイブ済み" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "昇順" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "に" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "著者" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "自動チェックイン" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "一日のレポート平均数" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "承認待ち" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "認証待ち" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "バッジ" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "バッジ" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "バッジ画像" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "もしくは代わりにご自身のバッジ画像をアップロードする事もできます。" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "バッジを選択する" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "ブログ" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "プロファイルを見る" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "キャンセル" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "カテゴリー" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "カテゴリー" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "カテゴリーフィルター" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "カテゴリーは" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "カテゴリー名" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "期間を変更する" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "パスワードを変更する" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "自分の画像を変更する" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "選択" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "ダウンロードの為にデータポイントを選択してください。" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "もしくは指定したい期間を選択して下さい" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "フィールドタイプを選択してください。" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLをクリアにする" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "消去する" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "地図をクリアにする" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "閉じる" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "クラスター" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "色" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "コメント" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "コメント" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "コメント詳細" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "設定が保存されました!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "設定" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "あなたのメールアドレスは認証されました。以下からログインして下さい。" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "メールによる確認に失敗しました。以下で、確認メールの再送信を要請できます。" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "お問合せ" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "セキュリティコード" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "あなたのメールアドレス" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "メッセージ" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "メッセージが送られました" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "名前" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "電話番号" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "メッセージを送る" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "メッセージタイトル" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright c" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "作成" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "追加/編集" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "新規追加" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "新しいパスワードを作成する" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "レポートを追加" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "信頼" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "現在のパスワード" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "情報" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "日付" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(yyyy/mm/dd)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "日付&時間" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "日" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "無効化する" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "ナイロビ、ケニヤ" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "削除" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "削除済み" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "削除" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "無効化を削除" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "最後の投稿を削除" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "このレポートを削除する" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "選択されたものを削除" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "スパムを削除" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "デモ" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "説明" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "降順" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "例: シティーマーケット通りの角、5番&4番通り、ジョナサンバーク" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "詳細" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "レポートへの直リンク" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "無効済み" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "未承認" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "レポートをダウンロードする" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "ダウンロード" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "編集" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "フォームのフィールドを編集" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "レポートを編集" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "メール" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "メールアドレス" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "メールサーバー設定" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "メールサーバーホスト" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "メールサーバーパスワード" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "メールサーバーポート" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "メールサーバーSSLサポート" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "メールサーバータイプ" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "メールサーバーユーザー名" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "このメールアドレスはあなたの設定に関連ついている必要があります。" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "レポートをメールで受け取る胃は、以下のアカウント設定にメールアドレスを入力する必要があります。メールは以下のメールアドレスに送信されます。" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "メールアドレスは全部入力してください。" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "メールアカウントパスワード" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "一般的なポート: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "例: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "SSL接続の有効化/無効化" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "と" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "エラー!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "例" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "ケニヤ" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "外部アプリ" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "外部のビデオへのリンク" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "フェイスブック" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "フィード" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "フィードバックを提供" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "フィード" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "フィードは" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "フィードアイテム" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "フィード名" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "フィードURL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "未使用のフィード" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "ファイル" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "ファイル容量が大き過ぎます。" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "フィルター" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "レポートを選別する" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "レポートを以下の基準で選別する:" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "以下を含むレポートのみを取り出す:" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "見つける" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "ロケーションを探す" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "名前" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "スケジュールを強制的には知らせる" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "パスワードを忘れてしまいましたか?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "フォーム" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "フォーム" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "フォーム説明" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "このフォームを編集する" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "このフォームは" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "フォームタイトル" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "から" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "氏名" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "可能なジオロケーション" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "色" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "コメント" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "ラベル" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "幅" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "移動する" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "ハッシュタグ" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "であった" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "助ける方法" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "隠す" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "隠す" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "このメッセージを隠す" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "ホーム" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "レポートする方法" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "イメージ" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "イメージ" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "イメージ/アイコン" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "無効" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "インボックス" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "出来事" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "近くの出来事" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "発生場所" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "含む" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "カテゴリーを含む" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "説明を含む" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "含めれるすべての詳細を含む" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "緯度を含む" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "ロケーション情報を含む" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "経度を含む" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "個人情報を含む" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "メディア" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "情報の評価" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "前回いた場所を入力してください" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "返答" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP アドレス" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "これはあなたの情報ですか?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "アイテム" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "アイテム" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "アイテム詳細" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "アイテムタイトル" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "キー" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "キーワード" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KMLファイル" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "KMZ/KMLファイルをアップロード" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "言語" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "ラスト" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "先月" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "名字" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "去年" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "緯度" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "レイヤー" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "他のレイヤー" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "レイヤーは" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "レイヤー名" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "レイヤーURL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "コメントを残す" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "レベル" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "このレベルは" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "レベル名" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "リミット" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "リンク" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "レポートを読み込んでいます..." + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "ロケーション" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "ロケーション" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "市町村、都道府県もしくは国" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "ログイン" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "アカウントの作成が完了しました。ログインが可能です。" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "指定されたメールアドレスに、確認用のメールを送信しました。" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "メールアドレスが存在しません。別のメールアドレスを指定するか、作成するかして下さい。" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "以下のユーザ名でログイン:" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "メールアドレスとパスワード" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "登録" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "アカウントを作成する" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "登録確認" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "このサイトの新たな機能を使用するために、アカウントを作成する。" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "経度" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "地図" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "既読" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "未読" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "最大のファイルサイズ" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "メディア" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "メディアフィルタ" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "メンバー" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "アカウントを管理する" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "メッセージ" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "メッセージ" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "メッセージ詳細" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "モバイル" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "編集" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "編集日時" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "月" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "もっと" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "更なる情報" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "このUshahidiサイトは複数カ国をまたがっていますか。" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "名前" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "直近のレポート" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "新着" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "新着" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "新着フィード" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "新着ソース" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "新着カテゴリ" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "新しいパスワード" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "新着レポート" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "次" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "いいえ" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "データがありません" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "通告" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "未承認" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "未承認" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---未選択---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "スパムではない" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "選択されていない" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "レポートはありません。" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "結果はありません。" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "OFF" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "公式 & 活発な情報源からのニュース" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "ON" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "選択肢" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "選択可能な" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "選択肢" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "組織" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "組織" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "組織の説明" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "組織のメール" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "この組織は" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "組織名" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "組織の電話番号1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "組織の電話番号2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "組織のウェブサイト" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "オリジナル" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "オリジナルの説明" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "オリジナルタイトル" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "その他のUSHAHIDIサイト" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "アウトボックス" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "アウトゴーイング" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "ページ" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "ページ" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "ページ説明" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "このページは" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "ページタブ名" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "ページタイトル" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "親カテゴリ" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "パスワード" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "パスワードを再度入力してください。" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "パスワードの変更が完了しました。以下からログインして下さい。" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "パスワードを忘れてしまいましたか?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "新しいパスワードをお送りしたのでメールをご確認ください。" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "このコンピューターにログインを記憶させますか?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "過去の月" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "過去の年" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "保留" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "毎" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "個人情報選択肢" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "電話番号" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "写真" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "写真" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "写真とビデオ" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* ロケーション名の経度、緯度、その組み合わせ(フォーマット: 38.19,-85.61)で検索するか、地図のピンポイントを正しい位置にしてください。" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "再生" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "覚えておいてください" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "プラグイン" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "プラグインウェブサイト" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "公開プロフィール" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "公開プロフィールのURL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "レビュー" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "レビューアイテム" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "レビューメッセージ" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "前の" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "非公開" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "プロファイルは保存されました。" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "クイック統計" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "評価" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "読む" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "受け取る" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "受け取る" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "通知を受け取る" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "最近のレポート" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "新しいフィードを再度読み込む" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "登録されたメールアドレス" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "削除" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "返信" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "レポート" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "レポート作成者" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "レポーター" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "レポートされた日時" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "レポーターのメール" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "レポーターの名前" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "このレポーターは" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "レポーターのIPアドレス" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "レポーターの名字" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "レポーターのレベル" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "レポーターのレベル" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "レポーターの電話番号" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "レポート" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "表示する" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "送信" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "このユーザにより投稿されたレポート" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "カテゴリー" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d レポート" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "日時" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "説明" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "レポーターはCSVフォーマットでダウンロードされます" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "メール" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "機能" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "近くのロケーションを探す" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "名前" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "名字" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "ロケーションの名前を明確にする" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "新しい情報源のリンク" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "参考情報" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "写真をアップロード" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "レポーターのページへ戻る" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "街を選択する" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "あなたのレポートは私たちのスタッフのレビュー待ちになりました。もし必要でしたら再度ご連絡します。" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "新しいレポートを提出する" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "時間" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "タイムライン" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "レポートタイトル" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "ビデオリンク" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "インシデントをレポートする" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "レポート詳細" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "メッセージを送る" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "メッセージを送る" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "ハッシュタグをつけてツイートする" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "こちらのフォームで入力する" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "レポートは保存されました" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "レポートタイトル" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "更なる情報を求める" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "ロケーションを求める" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "必須" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "必須情報" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "確認のEメールを再送信する" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "リセット" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "全てのフィルタをリセットする" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "パスワードをリセットする" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "選択された国の市町村名を取り出す" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "%s によって管理されているアカウント" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "そのメールアドレスは既にクラウドマップIDとして登録されています。クラウドマップIDとして登録したメールアドレスとパスワードを使ってログインして下さい。" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "ロール" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "保存" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "保存済み" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "保存&新規作成" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "保存&閉じる" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "レポートを保存" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "スケジュール" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "スケジューラー" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "日" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "時間" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "スケジューラーログ" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "分" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "曜日" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "検索" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "検索結果" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "セキュリティコード" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "すべて選択する" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "フィールドタイプを選択する" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "フォームタイプを選択する" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "地図を選択する" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "必要なだけ選択する" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "チェックしたアイテムを検証してください。" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "テーマを選択する" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "送る" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "送信確認" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "送る" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "送信済み" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "送った人" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "サーバーアドレス" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "サーバータイプ" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "サービス" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "サービスのユーザー名" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "サービスのユーザーID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "共有" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "共有されたデータ" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "この共有は" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "共有" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "短い地図" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "見る" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "すべて見る" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "メッセージを表示する" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "%1$s から %2$s までのレポートを表示する" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "ウェブサイト" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "サイトメールアドレス" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "サイトURL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "小さい地図" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "ソース" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "ソース名" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "並び替え" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "以下の項目によって並び替え:" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "ソースのURL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "スパム" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSLサポート?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "から" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "ステップ" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "レポートを送信" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "レポート投稿者 %1$s 投稿元 %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "SMS経由で送信" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "SMSを送る" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "電話へ" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "成功しました!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "インポートに成功しました。" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "名字" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "調査" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "システム" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "長い地図" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCPポート" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "テーマ" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Ushahidiのディフォルトテーマ" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "テーマ設定" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "この" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "今日" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "今月" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "今週" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "今年" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "これがあなたのプロファイルです" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "時間" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "タイトル" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "と" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "今日" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "今日の" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "トークン" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "トータルレポート" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "翻訳済み" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "翻訳済みの説明" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "翻訳済みタイトル" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "翻訳する" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "翻訳" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "翻訳は保存されました。" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "信頼出来る" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "タイプ" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "ツイッター" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "メールを送信出来ません。" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "未分類のレポート" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "未読" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "未検証" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "フィードのアップデート" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "アップロード" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "レポートアップロードのガイドを見る" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XMLのアップロードガイド" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSVのアップロードガイド" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "アップロードするファイル" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "レポートをアップロードする" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "以下のフォーム内で、Ushahidiエンジンにインシデントを取り込む事が出来ます。" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "レポートは、CSVまたはXML形式でなければなりません。" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "インシデントタイトルとインシデントの日時が入っている必要があります。" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "少なくともひとつの個人情報(名前、名字、メールアドレス)が入力されていなければなりません。" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "CSVレポートのサンプル" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,インシデントタイトル,インシデントの日時,場所,説明,カテゴリ,承認済,確認済み
\"1\",\"ナイロビで死亡の疑いあり\",\"2009-05-15 01:06:00\",\"Nairobi\",\"ウルグアイで3つのレポートが確認された。\",\"死亡, 市民\",はい,はい" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"略奪\",\"2009-03-18 10:10:00\",\"アクラ\",\"略奪が至る所で\",\"略奪, 死亡, 暴動, \",はい,いいえ" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "アップロードに成功しました" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "動画をアップロードする" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "ユーザー" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "ユーザー名" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi管理" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "検証" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "検証済み" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "レポートを検証する" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "検証" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "このレポートを検証する" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "バージョン" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "によって" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "ビデオ" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "見る" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "見る" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "すべて見る" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "すべてのフィードを見る" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "すべてのレポートを見る" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "アイテムを見る" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "もっと見る" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "公開プロフィールを閲覧する" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "レポートを見る" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "レポートを見る" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "動画を閲覧する" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "可視化" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "承認待ち" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "確認待ち" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "大きな地図" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "重さ" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "はい" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "機能" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "ダッシュボード" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "ファイル" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "ズームイン" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "ズームアウト" diff --git a/application/i18n/po/po-ja_JP/upgrade.po b/application/i18n/po/po-ja_JP/upgrade.po new file mode 100644 index 0000000000..7c7710be42 --- /dev/null +++ b/application/i18n/po/po-ja_JP/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Kouju Tanabe , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-07-06 17:36+0000\n" +"Last-Translator: Kouju Tanabe \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "入力したデータが不正です。0(いいえ)か1(はい)のみです。" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "自動アップグレード" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "可能なアップグレード" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "続ける" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "アップグレード" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "今のバージョンからデータベースをアップグレードします。" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "新しいデータベースのバージョンへ" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "魔法を呼び起こす\"アップグレード\"ボタンをクリックしてください。" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "それとデータベースバックアップをしておいてください。以下にあるボタンを押すだけでバックアップを行います。" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "アップグレードを行う前にデータベースをバックアップしますか?(推奨)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidiデータベースアップグレード" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidiの最新版が公開されました。作業をする前に、データベースを最新版(%s)に更新して下さい。" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "データベースは最新のものが使用されています。" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "どこかのポイントでアップグレードが失敗したようです。" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "手動アップグレード" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidiアップグレードステイタス" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "以下の説明はUshahidiサイトの手動アップグレード方法についてです。" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "ステップ 1:一番新しいushahidiをhttp://download.ushahidi.comこちらからダウンロードしてください。" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "ステップ 2:ウェブサーバーで動いているOSにもよりますが、使いやすいツールやモード (例: telnet, ftp, ssh) を使ってウェブサイトにログインし、すべてのファイルを新しいファイルに上書きしてください。 例外:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "ステップ 4: \"続ける\"ボタンをクリックして必要なテーブルのアップグレードを行います。" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "自動アップグレードは、以下のボタンをクリックしてください。" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "自動アップデートを有効にするには、下のボタンをクリックして下さい。" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Ushahidi v%1$sは、%3$s上でバージョン%2$dのデータベースとともに運用されています。" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "アップグレード中" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "かんたんアップグレードを続行するため、あなたのWebサイトが保存されているFTPサーバは以下の情報を必要とします。" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTPパスワード:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTPユーザ名:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "あなたは最新版のUshahidiを使用しています。" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "アップグレードする必要はありません。" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "データベースのバージョン: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "警告: ソフトウェアのバージョンが、version.phpに書かれているものとデータベースのものとで一致しません。" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "警告: データベースのバージョンが、version.phpのものとデータベースのもので一致しません。" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "データベース:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Ushahidiの最新版をダウンロードしています..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "ログファイル" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "ダウンロードが完了しました。ファイルを解凍しています..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "ダウンロードに失敗しました。" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "ファイルの解凍に成功しました。ファイルをコピーしています..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "ファイルの解凍に失敗しました。" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "ファイルのコピーが完了しました。データーベースをアップグレードしています..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "ファイルのコピーに失敗しました。" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "データベースのバックアップとアップグレードが完了しました。" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "データベースのバックアップに失敗しました。" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "データベースのアップグレードが完了しました。" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "ダウンロードしたファイルを削除しています..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "アップグレードが完了しました。作業の詳細については、ログファイルを参照して下さい。" diff --git a/application/i18n/po/po-ka_GE/alerts.po b/application/i18n/po/po-ka_GE/alerts.po new file mode 100644 index 0000000000..ae04a0b731 --- /dev/null +++ b/application/i18n/po/po-ka_GE/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ელექტრონული ფოსტის ველში არ არის მოქმედი ელექტრონული ფოსტის მისამართი შეყვანილი?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "ეს ელექტრონული ფოსტის მისამართი უკვე რეგისტრირებულია ამ ადგილმდებარეობაზე შეტყობინების მისაღებად" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ელექტრონული ფოსტის ველში უნდა უნდა ჩაწეროთ მინიმუმ 4 და მაქსიმუმ 64 სიმბოლო." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "ელექტრონული ფოსტის ველის შევსება საჭიროა თუ გრაფა მონიშნულია." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "თქვენ არ შეირჩიეთ მოქმედი ადგილმდებარეობა რუქაზე." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "მობილური ტელეფონის ველი არ შეიცს შესაბამისი რაოდენობის ციფრებს." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "ეს მობილური ტელეფონის ნომერი უკვე რეგისტრირებულია ამ ადგილმდებარეობაზე შეტყობინების მისაღებად" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "მობილური ტელეფონის ნომრის ველში არ არის მითითებული სწორი ტელეფონი. გთხოვთ, ქვეყნის კოდის ჩათვლით ამ ველში დაწეროთ მხოლოდ ციფრები ." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "თქვენ უნდა შეიყვანოთ ან თქვენი მობილური ტელეფონის ნომერი ან თქვენი ელექტრონული ფოსტის მისამართი." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "მობილური ტელეფონის ნომრის ველი სავალდებულოა თუ Checkbox შემოწმებულია." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "თქვენ არ გაქვთ მითითებული მოქმედი რადიუსი რუკაზე." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "თქვენ არ დააყენეთ რადიუსი რუქაზე." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "ეს კოდი უკვე შემოწმებული იყო ადრე!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "ეს კოდი ვერ მოიძებნა! გთხოვთ დაადასტუროთ, რომ თქვენ სწორი მისამართი (URL) გაქვთ." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " თქვენი კოდი შემოწმებულია. თქვენ ახლა მიიღებთ შეტყობინებებს." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "თქვენი შეტყობინებასთან დაკავშირებით მოთხოვნის დასადასტურებლად, შედით " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "თუ გსურთ შეტყობინებების შექმნა დაბრუნდით შეტყობინებების გვერდზე" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "გთხოვთ შეიყვანოთ ელექტრონული ფოსტის დადასტურების კოდი, რომელიც გაქვთ ქვემოთ მოცემული:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "თქვენი მოთხოვნა ელექტრონული ფოსტის შეტყობინებასთან დაკავშირებით არ შენახულა!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "თქვენი მოთხოვნა ელექტრონული ფოსტის შეტყობინებასთან დაკავშირებით შენახულია!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "სისტემამ ვერ აამუშავა თქვენი დადასტურების მოთხოვნა" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "თქვენი მობილურ ტელეფონზე შეტყობინების მოთხოვნა შეიქმნილია და გადამოწმებისთვის სმს-ი გაგზავნილია " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "გთხოვთ შეიყვანოთ თქვენ მობილურ ტელეფონზე სმს-ით მოსული დადასტურების კოდი : " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "თქვენი მოთხოვნა მობილური ტელეფონის შეტყობინებასთან დაკავშირებით არ შენახულა !" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "თქვენი მოთხოვნა მობილური ტელეფონის შეტყობინებასთან დაკავშირებით შენახულია !" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "შეტყობინების პროცესი სწორად არ არის დაყენებული " + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "თქვენ ვერ მიიღებთ შეტყობინება ამ ადგილმდებარეობაზე სანამ არ დაადასტურებთ თქვენს მოთხოვნას. თუ თქვენ არ გსურთ, რომ მომავალში მიიღოთ შეტყობინება გადადით" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "თქვენ აღარ მიიღებთ შეტყობინებებს " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "ჩვენ შევძელით გაგვეუქმებინა თქვენი შეტყობინებების გამოწერა. გთხოვთ დაადასტუროთ, რომ თქვენ სწორი მისამართით (URL) ხართ შესული." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "შეტყობინება - შემოწმება" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "თქვენ არ მიიღებთ შეტყობინებას ამ ადგილმდებარეობა ზე სანამ არ დაადასტურეთ თქვენს მოთხოვნას." diff --git a/application/i18n/po/po-ka_GE/auth.po b/application/i18n/po/po-ka_GE/auth.po new file mode 100644 index 0000000000..44c92e2d6e --- /dev/null +++ b/application/i18n/po/po-ka_GE/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "ელექტრონული ფოსტის ველი შეიცავს მოქმედ ელექტრონული ფოსტის მისამართს?" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "უკაცრავად, ამ ელექტრონული ფოსტის მისამართით უკვე არსებობს მომხმარებლის ანგარიში." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr " ელექტრონული ფოსტის ველი უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "ელექტრონული ფოსტის ველი სავალდებულოა." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "სრული სახელის ველი უნდა შეიცავდეს მინიმუმ 3 და მახსიმუმ 100 სიმბოლოს." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "სრული სახელის ველი სავალდებულოა." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "მომხმარებლის სახელის ველი შეიცავს აკრძალულ სიმბოლოებს." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "პაროლის ველი უნდა შეიცავდეს არანაკლებ 5 და არა უმეტეს 16 სიმბოლოს." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "გთხოვთ გადაამოწმოთ, რომ თქვენ სწორად შეიყვანეთ პაროლი." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "გთხოვთ შეიყვანოთ პაროლის ორი ველში იგივე პაროლი ." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "პაროლის ველი სავალდებულოა." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "პაროლის დადასტურების ველი უნდა ემთხვეოდეს პაროლის ველს." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "ელექტრონული ფოსტის ველი არ შეიცავს მოქმედი ელექტრონული ფოსტის მისამართს?" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "უკაცრავად, ჩვენ არ გვაქვს თქვენი ელექტრონული ფოსტის მისამართი" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "ელექტრონული ფოსტის ველი სავალდებულოა." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "ფორმატი არასწორია." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "ველი უნდა შეიცავდეს არანაკლებ 5 და არა უმეტეს 30 სიმბოლოს." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "თქვენ უნდა განისაზღვროთ არანაკლებ ერთისა." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "თქვენ უნდა აირჩიოთ ან ადმინისტრატორი ან მომხმარებლი." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "ადმინისტრატორი არ განისაზღვრა." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "უკაცრავად, ეს სახელი უკვე გამოყენებულია." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "სახელის ველი უნდა შეიცავდეს არანაკლებ 2 და არა უმეტეს 16 სიმბოლოს." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "გთხოვთ გადაამოწმოთ, რომ თქვენ შეყვანილი მომხმარებლის სახელი სწორია." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "მომხმარებლის სახელი სავალდებულოა." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "ადმინისტრატორის როლი არ განისაზღვრა." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ka_GE/bug.po b/application/i18n/po/po-ka_GE/bug.po new file mode 100644 index 0000000000..63b4a5ac45 --- /dev/null +++ b/application/i18n/po/po-ka_GE/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "გთხოვთ შეიყვანოთ სწორი უსაფრთხოების კოდი" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "გთხოვთ შეიყვანოთ უსაფრთხოების კოდი" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ელექტრონული ფოსტის ველი როგორც ჩანს არ შეიცავს ელექტრონული ფოსტის სწორ მისამართს?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ელექტრონული ფოსტის ველი უნდა შედგებოდეს არანაკლებ 4 და არაუმეტეს 64 სიმბოლოსგან." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "ელექტრონული ფოსტის ველი სავალდებულოა იმ შემთხვევაში თუ მოსანიშნი უჯრა არის მონიშნული." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "შეცდომის ველი სავალდებულოა." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "თემის ველი უნდა შედგებოდეს არანაკლებ სამი სიმბოლოსგან." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "თემის ველი სავალდებულოა." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "სახელის ველი უნდა შედგებოდეს არანაკლებ სამი სიმბოლოსგან." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "სახელის ველი სავალდებულოა." diff --git a/application/i18n/po/po-ka_GE/category.po b/application/i18n/po/po-ka_GE/category.po new file mode 100644 index 0000000000..32413edf43 --- /dev/null +++ b/application/i18n/po/po-ka_GE/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "ფერის ველი უნდა შედგებოდეს 6 სიმბოლოსგან." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "ფერის ველი სავალდებულოა." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "აღწერის ველი სავალდებულოა." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "გთხოვთ დარწმუნდეთ, რომ გამოსახულების ატვირთვის ზომები შეზღუდულია 50 კილო ბაიტამდე." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "გამოსახულების ველი როგორც ჩანს არ შეიცავს დასაშვებ გამოსახულებას. დასაშვები ფორმატები არის მხოლოდ და მხოლოდ .JPG, .PNG and .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "ამოსახულების ველი როგორც ჩანს არ შეიცავს სწორ ფაილს" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "სათაურის ველი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 80 სიმბოლოსგან." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "სათაურის ველი სავალდებულოა." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "მწარმოებლის კატეგორია არ არსებობს." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "მწარმოებლის კატეგორიის ველი უნდა იყოს რიცხვითი." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "მწარმოებლის კატეგორიის ველი სავალდებულოა." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "კატეგორია და მწარმოებლის კატეგორია შეუძლებელია იყოს ერთიდაიგივე." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ka_GE/comments.po b/application/i18n/po/po-ka_GE/comments.po new file mode 100644 index 0000000000..bc7d2749c9 --- /dev/null +++ b/application/i18n/po/po-ka_GE/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "გთხოვთ შეიყვანოთ სწორი უსაფრთხოების კოდი" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "გთხოვთ შეიყვანოთ უსაფრთხოების კოდი" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "სახელის ველი უნდა შეიცავდეს მინიმუმ 3 სიმბოლოს." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "სახელის ველი სავალდებულოა." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "კომენტარების ველი სავალდებულოა." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ელექტრონული ფოსტის ველი არ შეიცავს მოქმედი ელექტრონული ფოსტის მისამართს?" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ელექტრონული ფოსტის ველი უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "ელექტრონული ფოსტის ველი სავალდებულოა თუ გრაფა მონიშნულია." diff --git a/application/i18n/po/po-ka_GE/contact.po b/application/i18n/po/po-ka_GE/contact.po new file mode 100644 index 0000000000..f97c1373dc --- /dev/null +++ b/application/i18n/po/po-ka_GE/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "გთხოვთ შეიყვანოთ სწორი უსაფრთხოების კოდი" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "გთხოვთ შეიყვანოთ უსაფრთხოების კოდი" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ელექტრონული ფოსტის ველი არ შეიცავს მოქმედი ელექტრონული ფოსტის მისამართს?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ელექტრონული ფოსტის ველში უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "ელექტრონული ფოსტის ველი სავალდებულოა თუ გრაფა მონიშნულია." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "მესიჯის ველი სავალდებულოა." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "სახელი ველი უნდა შეიცავდეს მინიმუმ 3 სიმბოლოს." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "სახელის ველი სავალდებულოა." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "სათაური ველი უნდა შეიცავდეს არანაკლებ 3 სიმბოლოს." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "სათაურის ველი სავალდებულოა." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ka_GE/core.po b/application/i18n/po/po-ka_GE/core.po new file mode 100644 index 0000000000..44fe355fab --- /dev/null +++ b/application/i18n/po/po-ka_GE/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s დრაივერმა %s ბიბლიოთეკისათვის უნდა განახორციელოს %s ინტერფეისი" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr " %s ბიბლიოთეკისათვის %s დრაივერის ვერ მოიძებნა" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "თქვენ შეგიძლიათ გადახვიდეთ <ტექნიკური კონფერენცია=\"%s\">მთავარი გვერდი ან <ტექნიკური კონფერენცია=\"%s\">კვლავ სცადეთ." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s <ძლიერი>[%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "შეუძლებელია მოთხოვნის დასრულება" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "დამხმარე" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "მოთხოვნილი ფაილის ტიპი, .%s, არ არის დასაშვები თქვენი კონფიგურაციის ფაილში" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "არასწორი მეთოდი %s გამოძახებულია %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "%s მახასიათებელი არ არსებობს %s კლასში." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "ბიბლიოთეკა" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "დირექტორიის ჩანაწერები არ არის გადაწერადი: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "მოდელი" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi–მ ვერ შეძლო აღმოეჩინა მაკონტროლებელი, რათაგადაემუშავებინა მოცემული მოთხოვნა: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "გთხოვთ დააყენოთ ავტომატურიმიმართულება კონფიგ/მიმართულებაში.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "გვერდი, რომელიც თქვენ მოითხოვეთ, %s, არ იძებნება." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "<ტექნიკური კონფერენცია=\"%s\" id=\"ჩენება_დეფექტები\">შეატყობინე ეს პრობლემა Ushahidi–ს" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "The requested %s, %s, could not be found" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "ჩატვირთული {შესრულება_დრო} წამებში, მეხსიერების {მეხსიერება_გამოყენება} გამოყენება. გენერირებულია Ushahidi v%s მიერ." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "გვერდის მოთხოვნისას შესაძლებელია იყოს Ushahidi–ის მხოლოდ ერთი ნიმუში" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "დაუჭერელი %s: %s ფაილში %s ხაზზე %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "თქვენ უნდა დააყენოთ წარმოდგენის ფაილის სახელი, სანამ გამოიძახებთ რენდერს" diff --git a/application/i18n/po/po-ka_GE/database.po b/application/i18n/po/po-ka_GE/database.po new file mode 100644 index 0000000000..28c79cb2f9 --- /dev/null +++ b/application/i18n/po/po-ka_GE/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "მონაცემთა ბაზის შეცდომა: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr " \"%s\" ცხრილი ვერ მოიძებნა მონაცემთა ბაზაში. გთხოვთ დარწმუნდეთ, რომ თქვენ იყენებთ მონაცემთა ბაზის უკანასკნელ ვერსიას Ushahidi–ს ამ ვერსიისათვის" diff --git a/application/i18n/po/po-ka_GE/datetime.po b/application/i18n/po/po-ka_GE/datetime.po new file mode 100644 index 0000000000..e161983e90 --- /dev/null +++ b/application/i18n/po/po-ka_GE/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "არასკევი" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "ორშაბათი" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "შაბათი" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "კვირა" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "ხუთშაბათი" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "სამშაბათი" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "ოთხშაბათი" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ka_GE/feeds.po b/application/i18n/po/po-ka_GE/feeds.po new file mode 100644 index 0000000000..13ac166523 --- /dev/null +++ b/application/i18n/po/po-ka_GE/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "კვების სახელის ველი უნდა მოიცავდეს არანაკლებ სამ და არაუმეტეს 70 სიმბოლოს." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "გთხოვთ შეიყვანიოთ კვების სახელი." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "გთხოვთ შეიყვანოთ კვების URL." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "გთხოვთ შეიყვანოთ სწორი URL. Eg. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ka_GE/footer.po b/application/i18n/po/po-ka_GE/footer.po new file mode 100644 index 0000000000..8fd33ddec8 --- /dev/null +++ b/application/i18n/po/po-ka_GE/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-სპირალი/curl არ არის დაყენებული ამ სისტემაზე" diff --git a/application/i18n/po/po-ka_GE/form.po b/application/i18n/po/po-ka_GE/form.po new file mode 100644 index 0000000000..d5c20116b7 --- /dev/null +++ b/application/i18n/po/po-ka_GE/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "ველის სახელი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 200 სიმბოლოსგან." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "გთხოვთ შეიყვანოთ სიდიდე 0–დან 50–მდე ველის სიმაღლისთვის" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "ტვენ შეიყვანეთ არასწორი სიდიდე თარიღის ველისთვის" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "გთხოვთ, აირჩიოთ დიახ ან არა თარიღის ველისთვის" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "ველის სახელი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 100 სიმბოლოსგან." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "გთხოვთ შეიყვანოთ ველის სახელი." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "თქვენ შეიყვანეთ არასწორი სიდიდე სავალდებულო ველისთვის" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "თხოვთ, აირჩიოთ დიახ ან არა სავალდებულო ველისთვის" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "გთხოვთ აირჩიოთ ველის სწორი ტიპი." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "გთხოვთ აირჩიოთ ველის ტიპი." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "გთხოვთ შეიყვანოთ სიდიდე 0–დან 300–მდე ველის სიგანისთვის" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "გთხოვთ შეიყვანოთ ფორმაფორმის აღწერა." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "სტანდარტული ფორმის წასშლა სეუძლებელია." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "გთხოვთ, მონიშნოთ რომელ ფორმას დავუმატოთ ეს ველი." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "გთხოვთ, მონიშნოთ რომელ ფორმას დავუმატოთ ეს ველი." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "ფორმის ველის სახელი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 100 სიმბოლოსგან." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "გთხოვთ, შეიყვანოთ ფორმის სახელი." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ka_GE/imap.po b/application/i18n/po/po-ka_GE/imap.po new file mode 100644 index 0000000000..06e4bd33a9 --- /dev/null +++ b/application/i18n/po/po-ka_GE/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr " IMAP stream-ის გახსნა შეუძლებელია" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "ელექტრონული ფოსტის სერვისი არ არის მხარდაჭერილი" diff --git a/application/i18n/po/po-ka_GE/installer.po b/application/i18n/po/po-ka_GE/installer.po new file mode 100644 index 0000000000..2b7fe570e6 --- /dev/null +++ b/application/i18n/po/po-ka_GE/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "თუ Ushahidi გაშვებული გაქვთ საკუთარ კომპიუტერზე, ეს სავარაუდოდ იქნება \"localhost\"–ი. თუ Ushahidi გაშვებული გაქვთ ვებ–სერვერიდან, თქვენ host ინფორმაციას მიიღებთ ვებ–ჰოსტინგ პროვაიდერისგან" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "მონაცემთა ბაზის სახელი, რომელშიც გსურთ Ushahidi–ს გაშვება" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "უფრო მეტი ინფორმაციის მისაღებად მოინახულეთ this article wiki, რომელიც საუბრობს მონაცემთა ბაზების შესახებ დეტალებში" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr " Ushahidi–სთითოეული გამოყენება მოიცავს ჩაშენებული ენის თარგმანის კომპლექტს. თქვენ ასევე შეგიძლიათ add your own" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "ქვევით არის ჩამოთვლილი შეცდომები, რომელსაც ჩვენ შევხვდით" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "ადგილმდებარეობა თქვენს სერვერზე, სადაც განათავსეთ თქვენი Ushahidi ფაილები. ჩვენ ავტომატურად აღმოვაჩინეთ ეს მნიშვნელობა,გთხოვთ,დარწმუნდით, რომ ის არის სწორი. არ შეწუხდეთ თუ ველი ცარიელია, ეს ნიშნავს, რომ ushahidi დაინსტალირდა ზედა დონის დირექტორიაში" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "ნებისნიერს შეუძლია მიიღოს api გასაღები. Get yours now" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "მიიღეთ ყველა ძირითადი მოწყობილობა დასრულებული სახით, ამ ხუთი საფეხურის მეშვეობით. ეს მოიცავს სერვერს, რუკას, საიტის სახელსა და საკონტაქტო დეტალებს" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "მარტივი და სწრაფი. რაც გჭირდებათ ეს არის თქვენი ვებ–გვერდის საფუძველების ცნობარი და თქვენი მონაცემთა ბაზის ინფორმაცია. აირჩიე ეს უნქცია, თუ გინდა რომ მორჩე უცებ და შენშეგეძლება ყოველთვის შეცვალო ყველაფერი მოგვიანებით" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "კეთილი იყოს თქვენი მობრძანება Ushahidi–ის სერვერის ინსტალაციის პროცესში. აირჩიეთ რომელი ტიპის ინსტალაცია გსურთ რომ გამოიყენოთ" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "წარმატებით ინსტალაცია" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "მაგალითები: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "საფოსტო სერვერის პაროლი" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "პაროლი, რომელსაც ჩვეულებრივ გამოიყენებთ თქვენს ელექტრონულ ფოსტაში შესაღწევად" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "საფოსტო სერვერის პორტი" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "საერთო პორტები: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "საფოსტო სერვერის ტიპი" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "შეტყობინების მისვლის ინტერნეტ პროტოკოლი (IMAP) ან ფოსტის პროტოკოლი (POP). რა არის სხვაობა?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "საფოსტო სერვერის მომხმარებლის სახელი" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "თუ თქვენ იყენებთ Gmail–ს, Hotmail–ს, ან Yahoo Mail–ს, შეიყვანეთ ელექტრონული ფოსტის სრული მისამართი როგორც მომხმარებლის სახელი" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi მუშაობს ისევე კარგად, როგორც ეს ოთხი პროვაიდერი: Google–ი, Bing–ი, Yahoo და OpenStreetMap–ი. აირჩიეთ ის, რომელსაც აქვს დეტალების უმეტესობა თქვენს დარგში" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "სხვა საფეხურები..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "პაროლი" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "თქვენი მონაცემთა ბაზის პაროლი" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "წინა" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "გთხოვთ, გადატვირთოთ თქვენი Apache სერვერი" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "ჩავრთათ, თუ გამოვრთოთ SSL–ის" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "ზოგიერთი საფოსტო სერვერი SSL გამოყენების ოფციას გაძლევთ კავშირის დამყარებისას. SSL–ის გამოყენება რეკომენდირებულია, რამდენადაც ის გაძლევთ უსაფრთხოების დამატებით საფეხურს" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "დააყენეთ თქვენი SMS სერვერი" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "საიტის ელექტრონული ფოსტის მისამართი" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "საიტის გამაფრთხილებელი ელექტრონული ფოსტის მისამართი" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "როდესაც თქვენი საიტის მნახველები რეგისტრირდებიან სისტემაში ელექტრონული ფოსტით გაფრთხილების მირებისათვის, ისისნი მიიღებენ ელექტრონულ ფოსტას ამ მისამართიდან. ელექტრონული ფოსტის მისამართი არ უნდა იყოს იგივე რაც საიტის ელექტრონული მისამართი" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "საიტის შიგნით ელექტრონული ფოსტით განხორციელებული კომუნიკაცია ამ მისამართის მეშვეობითგ გადაიგზავნება. " + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "საიტის სახელი" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "თქვენი საიტის სახელი" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "საიტის ქვესათაური" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "თქვენი ქვესათაური" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Tქვემოთ მოცემული ფაილები და ფოლდერები უნდა იყოს გადაწერადი თქვენი ვებ–სერვერის მიერ" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

აქ მოცემულია ინსტრუქციები ფაილის შეცვლის ნებართვისათვის:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "სანამ დაიწყებთ, უნდა დარწმუნდეთ, რომ შემდეგი ფაილები და ფოლდერები არის გადაწერადითქვენი ვებ–სერვერის მიერ. ეს მოიცავს ფაილის შეცვლის ნებართვას" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "ინსტალაციის პროცესისთვის, გთხოვთ, შემდეგი მცირედი ინფორმაცია იყოს ხელმისაწვდომი" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "როგორც წესი თქვენ არშეცვლიდით ცხრილის პრეფიქსს.თუმცა, თუ თქვენ გსურთ შეასრულოთ Ushahidi–ის მრავალჯერადი ინსტალაცია ერთი მონაცემთა ბაზიდან, ეს შეგიძლიათ გააკეთოთპრეფიქსის აქ შეცვლით" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "სათაური" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "სისტემაში შესასვლელად მიდით" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "ატვირთეთ ბაზის აღწერა" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "მომხმარებლის სახელი" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "თქვენი მონაცემთა ბაზის მომხმარებლის სახელი" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "და გამოიყენეთ შემდეგი მანდატი" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "მოინახულეთ თქვენი ვებ–გვერდი" diff --git a/application/i18n/po/po-ka_GE/layer.po b/application/i18n/po/po-ka_GE/layer.po new file mode 100644 index 0000000000..54e7cae345 --- /dev/null +++ b/application/i18n/po/po-ka_GE/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "ფერის ველი უნდა შედგებოდეს 6 სიმბოლოსგან." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "feris veli savaldebuloa." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "ფაილის ველი სავარაუდოდ არ შეიცავს სწორ ფაილს. დასაშვები ფორმატებია .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "ფაილის ველი სავარაუდოდ არ შეიცავს სწორ ფაილს. დასაშვები ფორმატებია " + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "სახელის ველი უნდა შედგებოდეს არანაკლებ3 და არაუმეტეს 80 სიმბოლოსგან." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "სახელის ველი სავალდებულოა." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "ორივე KML Url თუ ფაილი სავალდებულოა" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "თქვენ შეგიძლიათ/ არ შეგიძლიათ გქონდეთ ორივე KML ფაილი და url" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "გთხოვთ შეიყვანოთ სწორი URL. Eg. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-ka_GE/libraries.po b/application/i18n/po/po-ka_GE/libraries.po new file mode 100644 index 0000000000..175cc28188 --- /dev/null +++ b/application/i18n/po/po-ka_GE/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "შეუძლებელია akismet სერვერთან დაკავშირება" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Akismet–დან პასუხი ვერ იქნა მიღებული" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "The API library: %s, for the %s კლასი ვერ იქნა აღმოჩენილი. შეამოწმეთ თქვენი API დავალებების განმსაზღვრელი ცხრილი." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "თქვენი Akismet API გასაღებიი არ არის სწორი" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "შეცდომა გაგზავნის მეთოდის შესრულებაში!
გთხოვთ, შემოწმოთ PHP–მ თუ გახსნა SSL დახმარებადა შეამოწმეთ PHP ვერსია თუ არის 5.2–ზე დიდი" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "თქვენი unicode შეტყობინება ძალზე გრძელია! (Current lenght=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "გთხოვთ, მიუთითეთ მიმღების მისამართი (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "გთხოვთ, მიუთითეთ გამომავალი მისამართი (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "თქვენი unicode შეტყობინება ძალზე გრძელია! (მიმდინარე სიგრძე=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "მხარდაუჭერელი გაგზავნის მეთოდი!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API ბიბლიოთეკა %s არასწორია. All API ბიბლიოთეკები უნდა იყვნენ %s–ის ქვეკლასები" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s შეუძლებელია წაშლა" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "შეცდომა გამოყოფისას: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "ushabadi-s საბოლოო ვერსიის გადმოწერა ვერ მოხერხდა. HTTP სტატუს კოდი" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s კოპირება შეუძლებელია" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s წაშლა შეუძლებელია" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi სკრიპტის განახლება" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "გადმოწერილი ushahidi zip ფაილი %s, ჩაწერა შეუძლებელია" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ka_GE/maintenance.po b/application/i18n/po/po-ka_GE/maintenance.po new file mode 100644 index 0000000000..836eb2b6b9 --- /dev/null +++ b/application/i18n/po/po-ka_GE/maintenance.po @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, ka_GE/maintenance.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ka_GE\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-ka_GE/message.po b/application/i18n/po/po-ka_GE/message.po new file mode 100644 index 0000000000..1585fcffa0 --- /dev/null +++ b/application/i18n/po/po-ka_GE/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "გთხოვთ, შეიყვანოთ სწორი უსაფრთხოების კოდი" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "გთხოვთ, შეიყვანოთ უსაფრთხოების კოდი" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ელექტრონული ფოსტის ველი სავარაუდოდ არ შეიცავს ელექტრონული ფოსტის სწორ მისამართს?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ელექტრონული ფოსტის ველი უნდა მოიცავდეს არანაკლებ 4 და არაუმეტეს 64 სიმბოლოს." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "ელექტრონული ფოსტის ველი სავალდებულოა, თუ მოსანიშნი უჯრა მონიშნულია." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "კომენტარების ველი სავალდებულოა." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "სახელის ველი უნდა შედგებოდეს არანაკლებ 3 სიმბოლოსგან." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "სახელის ველი სავალდებულოა." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "ტელეფონის ველი არ არის სწორი." diff --git a/application/i18n/po/po-ka_GE/mhi.po b/application/i18n/po/po-ka_GE/mhi.po new file mode 100644 index 0000000000..83a916d6a8 --- /dev/null +++ b/application/i18n/po/po-ka_GE/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "გთხოვთ, შეიყვანოთ სწორი უსაფრთხოების კოდი." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "გთხოვთ, შეიყვანოთ უსაფრთხოების კოდი." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ელექტრონული ფოსტის ველი სავარაუდოდ არ შეიცავს ელექტრონული ფოსტის სწორ მისამართს?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "გთხოვთ უზრუნველყოთ სწორი ელექტრონული მისამართი" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "შეტყობინების ველი სავალდებულოა." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "თემის ველი უნდა იყოს არანაკლებ 3 სიმბოლოსგან შემდგარი." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "თემის ველი სავალდებულოა." diff --git a/application/i18n/po/po-ka_GE/notifications.po b/application/i18n/po/po-ka_GE/notifications.po new file mode 100644 index 0000000000..5a6d453a86 --- /dev/null +++ b/application/i18n/po/po-ka_GE/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "ეს შეტყობინება გამოგზავნილია თქვენი ვებ–გვერდიდან" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "ადმინისტრატორის რეგისტრაცია" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი კომენტარი პასუხად:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "ახალი კომენტარი" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი შეტყობინება ელექტრონული ფოსტით." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "ახალი შეტყობინება ელექტრონული ფოსტით" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი ანგარიში." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "ახალი ანგარიში" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "თქვენს ვებ–გვერდზე წარმოდგენილ იქნა ახალი ტექსტური შეტყობინება." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "ახალი ტექსტური შეტყობინება" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ka_GE/page.po b/application/i18n/po/po-ka_GE/page.po new file mode 100644 index 0000000000..46aa252c40 --- /dev/null +++ b/application/i18n/po/po-ka_GE/page.po @@ -0,0 +1,33 @@ +#. extracted from en_US/page.php, ka_GE/page.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ka_GE\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-ka_GE/permissions.po b/application/i18n/po/po-ka_GE/permissions.po new file mode 100644 index 0000000000..470aec61c0 --- /dev/null +++ b/application/i18n/po/po-ka_GE/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ka_GE/private_message.po b/application/i18n/po/po-ka_GE/private_message.po new file mode 100644 index 0000000000..fd904de1ac --- /dev/null +++ b/application/i18n/po/po-ka_GE/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, ka_GE/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ka_GE\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-ka_GE/report.po b/application/i18n/po/po-ka_GE/report.po new file mode 100644 index 0000000000..ad61772ebf --- /dev/null +++ b/application/i18n/po/po-ka_GE/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "შეცდომა!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "ჩამოსტვირთად მიუთითეთ სწორი პუნქტი " + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "ჩამოსტვირთად მიუთითეთ სწორი პუნქტი " + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "ჩამოსტვირთად მიუთითეთ სწორი ტიპი" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "ჩამოსტვირთად მიუთითეთ სწორი ტიპი" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "ჩამოსტვირთად მიუთითეთ სწორი ტიპი" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "თარიღის ველი „დან“ არ შეიცავს სწორ თარიღს?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "გთხოვთ მიუთითოთ სწორი თარიღი გრაფაში „დან“ . იგი ვერ იქნება დღევანდელ თარიღზე უფრო მეტი." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "ამ ანგარიშის დასამტკიცებლად გთხოვთ შეიყვანოთ სწორი მონაცემი " + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "ამ ანგარიშის დასამტკიცებლად გთხოვთ შეიყვანოთ სწორი მონაცემი " + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Am/pm ველი არ შეიცავს სწორ მონაცემს?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "კატეგორიის გრაფა არ შეიცავდს სწორ კატეგორიას?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "კატეგორიის გრაფა სავალდებულოა." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "თარიღის გრაფა არ შეიცავს სწორ თარიღს?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "თარიღის გრაფა არ შეიცავს სწორ თარიღს?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "თარიღის გრაფა აუცილებელია." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "აღწერის ველი სავალდებულოა." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "საათის ველი არ შეიცავს სწორ საათს?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "საათის ველი სავალდებულოა." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "გთხოვთ შეიყვანოთ სწორი მონაცემი " + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "გთხოვთ შეიყვანოთ სწორი მონაცემი " + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "წუთის ველი არ შეიცავს სწორ მონაცემს?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "წუთის ველი სავალდებულოა." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "ინფორმაციის წყაროს ბმულების ველი არ შეიცავს სწორ მისამართს (URL) ?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "გთხოვთ, დარწმუნდეთ რომ ფოტოს ატვირთვის ზომები შეზღუდულია 2MB-ით." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "ფოტოების ასატვირთი ველი არ შეიცავს სწორ სურათს. ფორმატები უნდა იყოს მხოლოდ JPG PNG და GIF ." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "ფოტოების ასატვირთი ველი არ შეიცავს სწორ ფაილის" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "წყაროს სანდოობისთვის, გთხოვთ, შეიყვანოთ სწორი მონაცემი" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "წყაროს სანდოობისთვის, გთხოვთ, შეიყვანოთ სწორი მონაცემი" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "სახელწოდების ველი უნდა შეიცავდეს მინიმუმ 3 და მაქსიმუმ 200 სიმბოლოს." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "სათაურის ველი სავალდებულოა." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "ანგარიშიდ გადასამოწმებლად, გთხოვთ, შეიყვანოთ სწორი მონაცემი" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "ანგარიშიდ გადასამოწმებლად, გთხოვთ, შეიყვანოთ სწორი მონაცემი" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "ვიდეოს ბმულების ველი არ შეიცავს სწორ მისამართს (URL) ?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "განედის ველი არ შეიცავს სწორ განედს?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "გრძედის ველი სავალდებულოა. ადგილმდებარეობის მოსანიშნად, გთხოვთ, დააჭიროთ რუქაზე ." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "ადგილმდებარეობის ველში შეიცავს არასწორს მონაცემს. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "ეს ანგარიში უკვე ნათარგმნია ამ ენაზე" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "ადგილმდებარეობის ველში შეიცავს არასწორს მონაცემს. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "ანგარიშის ორიგინალსა და თარგმანს აქვს იგივე ადგილდებარეობა (ენა)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "ადგილდებარეობა სავალდებულოა." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "ადგილმდებარეობის დასახელების ველის უნდა შეიცავდეს არანაკლებ 3 და არა უმეტეს 200 სიმბოლოს." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "ადგილმდებარეობის დასახელების ველი სავალდებულოა." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "გრძედის ველი არ შეიცავს სწორ გრძედის მონაცემს?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "გრძედის ველი სავალდებულოა. ადგილმდებარეობის მოსანიშნად, გთხოვთ, დააჭიროთ რუქაზე ." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "ფოსტის ველი არ შეიცავს სწორ ფოსტის მისამართს?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "ფოსტის ველი უნდა შეიცავდეს მინიმუმ 4 და მაქსიმუმ 64 სიმბოლოს." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "სახელის ველი უნდა შეიცავდეს მინიმუმ 3 და მაქსიმუმ 100 სიმბოლოს." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "გვარის ველი უნდა შეიცავდეს მინიმუმ 3 და მაქსიმუმ 100 სიმბოლოს." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "თარიღის ველი არ შეიცავს სწორ თარიღს?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "გთხოვთ შეიყვანოთ სწორი თარიღი. იგი ვერ იქნება დღევანდელ თარიღზე უფრო მეტი." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "თქვენი საწყისი თარიღი ვერ იქნება იმაზე უფრო მეტი ვიდრე არის დღევანდელი." diff --git a/application/i18n/po/po-ka_GE/reporters.po b/application/i18n/po/po-ka_GE/reporters.po new file mode 100644 index 0000000000..ff3993c5cb --- /dev/null +++ b/application/i18n/po/po-ka_GE/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "სიგანის ველი სავარაუდოდ არ შეიცავს დასაშვებ სიგანეს?" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "სიგანის ველი სავალდებულოა. გთხოვთ დააჭიროთ რუკას, რათა ზუსტად განისაზღვროს ადგილმდებარეობა." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "მომხსენებლის დონის ველი სავარაუდოდ არ შეიცავს დასაშვებ დონეს?" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "მომხსენებლის დონის ველი სავარაუდოდ არ შეიცავს დასაშვებ დონეს?" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "ადგილმდებარეობის სახელის ველი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 200 სიმბოლოსგან." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "ადგილმდებარეობის სახელის ველი სავალდებულოა." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "სიგრძის ველი სავარაუდოდ არ შეიცავს დასაშვებ სიგრძეს?" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "სიგრძის ველი სავალდებულოა. გთხოვთ, დააჭიროთ რუკას, რათა ზუსტად განისაზღვროს ადგილმდებარეობა." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "არასწორი მომხსენებელი" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "არასწორი მომხსენებელი" diff --git a/application/i18n/po/po-ka_GE/reports.po b/application/i18n/po/po-ka_GE/reports.po new file mode 100644 index 0000000000..cd20bdc1e4 --- /dev/null +++ b/application/i18n/po/po-ka_GE/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, ka_GE/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:39+0000\n" +"PO-Revision-Date: 2012-08-15 04:39+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ka_GE\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-ka_GE/roles.po b/application/i18n/po/po-ka_GE/roles.po new file mode 100644 index 0000000000..5b8153ee14 --- /dev/null +++ b/application/i18n/po/po-ka_GE/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "აღწერის ველი უნდა შედგებოდეს არანაკლებ 3 და არაუმეტეს 100 სიმბოლოსგან." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "აღწერის ველი სავალდებულოა." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "სახელის ველი უნდა შეიცავდეს მხოლოდ ასოებსა და ციფრებს." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "სახელის ველი უნდა შედგებოდეს არანაკლებ 2 და არაუმეტეს 30 სიმბოლოსგან." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin–ის ფუნქციის შეცვლა შეუძლებელია." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "სახელის ველი სავალდებულოა." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ka_GE/settings.po b/application/i18n/po/po-ka_GE/settings.po new file mode 100644 index 0000000000..cc13d8f948 --- /dev/null +++ b/application/i18n/po/po-ka_GE/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "ნების დამრთველი კომენტარების ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "ნების დამრთველი კომენტარების ველის არსებობა აუცილებელია." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "მომცველ ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "მომცველი ველის არსებობა აუცილებელია." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "ნების დამრთველ ანგარიშის ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "ნების დამრთველი ანგარიშის ველის არსებობა აუცილებელია." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "სტატისტიკის გაზიარების ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "სტატისტიკის გაზიარების ველის არსებობა აუცილებელია." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "ჩანაწერების დეფოლტ რიცხვი თითოეული API მოთხოვნისას" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "ჩანაწერების მაქსიმალური რიცხვი თითოეული API მოთხოვნისას" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr " API მოთხოვნების მაქსიმალური რიცხვი თითოეულ IP მისამართზე" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "აკისმეტის ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "აკისმეტის ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "ქეშირებული გვერდების ველის არსებობა აუცილებელია." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "ქეშირებული გვერდების ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "ქეშირებული გვერდების მუდმივ/lifetime ველს არ აქვს მართებული მონაცემი/valid value?" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "ქეშირებული გვერდების ველის მუდმივი/lifetime ველის არსებობა აუცილებელია." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "როგორც ჩანს,თქვენს სერვერი არ არის კონფიგურირებული ისე რომ მიიღოს სუფთა URL-ები. თქვენ დაგჭირდებათ შეცვალოთ სერვერის კონფიგურაცია სანამ შეძლებთ დაუშვათ სუფთა URL-ები. იხილეთ მეტი ინფორმაცია ამ ფორუმზე თუ როგორ შეძლოთ დაუშვათ სუფთა URL-ები post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "ეს ფუნქცია საშუალებას აძლევს უშაჰიდის/Ushahidi მისაწვდომი იყოს \"სუფთა\" URLებით.\"index.php\" გარეშე URL-ში." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "გააქტიურება სუფთა URL-ების" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "The Clickatell API-ის რიცხვის ველი უნდა შეიცავდეს არაუმეტეს 20 ასოს." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "The Clickatell API0ის რიცხვის ველი სავალდებულოა." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Clickatell-ის პაროლის ველი უნდა მოიცავდეს მინუმუმ 5 მაქსიმუმ 50 სიმბოლოს." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "The Clickatell-ის პაროლის ველის არსებობა აუცილებელია." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "The Clickatell-ის მომხმარებლის სახელის ველი უნდა იყოს მაქსიმუმ 50 სიმბოლოს სიგრძის." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "The Clickatell-ის მომხმარებლის სახელის ველის არსებობა აუცილებელია." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "კონფიგურაციის რუქა" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "დეფოლტ ადგილმდებარეობა" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "ველის ფერს არ აქვს მართებული მონაცემი?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "ფერის ველი არ უნდა აღემატებოდეს 6 სიმბოლოს." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "ფერის ველის არსებობა აუცილებელია." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "დეფოლტ რუქის შეხედულება/View" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "დეფოლტ ზუმის დონე/Level" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "ჯეონეიმსიდან ქალაქების აღდგენა" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "ფოსტის სერვერის პორტის ველი ძალიან გრძელია" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "ფოსტის სერვერის პორტის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "ფოსტის სერვერის პაროლის ველი უნდა უნდა იყოს მინიმუმ 5 მაქსიმუმ 50 სიმბოლოს სიგრძის." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "ფოსტის სერვერის პაროლის ველის არსებობა აუცილებელია." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "ფოსტის სერვერის პორტის ველი ძალიან გრძელია" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "ფოსტის სერვერის პორტის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "ფოსტის სერვერის პორტის ველი ძალიან გრძელია" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "ფოსტის სერვერის ტიპის ველის არსებობა აუცილებელია." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "ფოსტის სერვერის მომხმარებლის სახელის ველი უნდა იყოს მაქსიმუმ 50 სიმბოლოს სიგრძის." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "ფოსტის სერვერის მომხმარებლის სახელის ველის არსებობა აუცილებელია." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Google Analytics-ის ველი უნდა შეიცავდეს მოქმედ ვებ საკუთრების ID-ის/valid Web Property ფორმატით UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "პუნქტების/items ველს თოთოეულ გვერდზე (ინტერფეისი/frontend) არ აქვს მართებული მონაცემი?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "პუნქტების ველის (ინტერფეისი) არსებობა აუცილებელია." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "პუნქტების/items ველს თოთოეულ გვერდზე (ადმინ) არ აქვს მართებული მონაცემი?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "პუნქტების ველის (ადმინ) არსებობა აუცილებელი." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "თქვენი რუქის პროვაიდერის მოწყობა უბრალო პროვესია. შეარჩიეთ პროვაიდერი, მიიღეთ API key პროვაიდერის საიტიდან, და შეიყვანეთ API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "ზუმის დონე" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "შეარჩიეთ რუქის პროვაიდერი" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "შეიყვანეთ ახალი API Key" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "მიიღეთ API Key" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "თქვენი რუქის პროვაიდერის მოწყობა უბრალო პროვესია. შეარჩიეთ პროვაიდერი. შეარჩიეთ პროვაიდერი, მიიღეთ API key პროვაიდერის საიტიდან, და შეიყვანეთ API key" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "რუქის პროვაიდერი" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "რუქის პარამეტრებიs" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "გააკეთეთ უშაჰიდის განლაგების მანძილის გაზომვა სხვადასხვა ქვეყნებისთვის" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "გთხოვთ შეარჩიოთ დეფოლტ ქვეყანა" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "დააწკაპეთ და ჩააგდეთ რუქა რომ დააყენოთ თქვენი ზუსტი ადგილმდებარეობა" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "კასეტური/Cluster მონაცემები რუქაზე" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "ნება დართეთ მომხმარებლებს განათავსონ კომენტარები ანგარიშზე" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "დაურთეთ RSS სიახლეების ველი ვებ გვერდს" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "ნება დართეთ მომხმარებლებს წარმოადგინონ ანგარიშები" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "აკისმეტის პაროლი/Akismet Key" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "ქეშირებული გვერდები" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "მუდმივი/Lifetime ქეშირებული გვერდები" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "საიტის უფლებების დამცავი განცხადება" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "დეფოლტ ფერი ყველა კატეგორიისთვის" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "ეკრანის კონტაქტების გვერდი" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "ეკრანის \"როგორ დავეხმაროთ\"გვერდი" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "ელ ფოსტის მისამართის გამაფრთხილებლები" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "In ბრძანება ანგარიშების ელ ფოსტაზე მისაღებად, გთხოვთ კონფიგურაცია გაუკეთეთ თქვენს ელ ფოსტის ანგარიშის პარამეტრებს." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "საიტის ელ ფოსტის მისამართი" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "ვებ მფლობელის ID - ფორმატი: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "პუნქტები თოთოეულ გვერდზე - წინა ბოლო/Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "პუნქტები თითოეულ გვერდზე - ადმინ" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "კომენტარების სპამად გამოყენების თავიდან აცილება PAkismet from Automattic.
თქვენ შეგიძლიათ მიიღოთ უფასო API key დარეგისტრირებით WordPress.com user account" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica საიტი " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "საიტის ენა" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "საიტის შეტყობინება" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "საიტის სახელი" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "პირადი განლაგება" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "სტატისტიკის განთავსება (შენახული უშაჰიდის სერვერზე)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "საიტის ქვესათაური/Tagline" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "საიტის პარამეტრები" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "ტვიტერის ძებნის პირობები" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "ჰეშთეგები - დააშორეთ მძიმეებით" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "საიტის ელ ფოსტის ველს არ აქვს მოქმედი ელ ფოსტის მისამართი?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "საიტის ელ ფოსტის ველი უნდა იყოს მინიმუმ 4 მაქსიმუმ 100 სიმბოლოს სიგრძის." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "საიტის სახელის ველი უნდა იყოს მინიმუმ 3 მაქსიმუმ 50 სიმბოლოს სიგრძის." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "საიტის სახელის ველის არსებობა აუცილებელია." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "ქვესათაურის/tagline ველი უნდა იყოს მინიმუმ 3 მაქსიმუმ 100 სიმბოლოს სიგრძის." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "ქვესათაურის/tagline ველის არსებობა აუცილებელია." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "თქვენი Clickatell-ის API რიცხვი" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "შეამოწმეთ თქვენი Clickatell-ის საკრედიტო ბალანსი" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "ჩატვირთეთ საკრედიტო ბალანსი" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "თქვენი Clickatel-ის პაროლი" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "დარეგისტრირდით/Sign up Clickatells-ის სერვისზე ასე clicking here" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "შეიყვანეთ თქვენი Clickatell-ის შესასვლელი ინფორმაცია ქვემოთ" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "თქვენი Clickatell-ის მომხმარებლის სახელი" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "შეიყვანეთ Frontline SMS-ს დაკავშირებული ტელეფონის ნომრები ქვემოთ მოცემულ ველებში" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "ნომერი შეიყვანეთ + ნიშნის ან სხვა სიმბოლოების გარეშე" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "პარამეტრი 1: გამოყენება Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "პარამეტრი 2: გამოყენება გლობალური SMS გასასვლელის/Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "შეტყობინებების დაყენების პარამეტრები" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "ტელეფონი 1-ის ველს არ აქვს მართებული მონაცემი?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "ტელეფონი 1-ის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "ტელეფონი 2-ის ველი ძალიან გრძელია" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "ტელეფონი 2-ის ველი უნდა მოიცავდეს მხოლოდ რიცხვებს." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "ტელეფონი 3-ის ველი ძალიან გრძელია" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "ტელეფონი 3-ის ველი უნდა მოიცავდეს მხოლოდ რიცხვებ." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ka_GE/sharing.po b/application/i18n/po/po-ka_GE/sharing.po new file mode 100644 index 0000000000..19e66f485f --- /dev/null +++ b/application/i18n/po/po-ka_GE/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "თარიღში შესვლა" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "თარიღის დამატება" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "ბოლო შესვლა" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "ფერის ველი უნდა შეიცავდეს მინიმუმ 6 სიმბოლოს." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "ფერის ველი სავალდებულოა." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "სახელის გაზიარება მოქმედია?" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "სახელის გაზიარება სავალდებულოა." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "ეს საიტი მისამართი (url) უკვე არსებობს" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "ეს საიტი მისამართი (url) მოქმედია?" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "საიტი მისამართი (url) სავალდებულოა." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "ამ საიტის მისამართი (url) სწორია?" diff --git a/application/i18n/po/po-ka_GE/stats.po b/application/i18n/po/po-ka_GE/stats.po new file mode 100644 index 0000000000..6d3ad7cf09 --- /dev/null +++ b/application/i18n/po/po-ka_GE/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "დამტკიცებულია" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "კატეგორიები" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "კატეგორიის გავლენა" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "ეს ცხრილი გაძლევთ ანგარიშებს კატეგორების მიხედვით. სხვადასხვა კატეგორიების შესადარებლად ჩამოდით სქროლიტ მარცხნიდან მარჯვნივ. მეტი დეტალების სანახავად მაუსის კურსორი მიაჭირეთ გრაფას" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "აირჩიე თარიღის ხღვარი" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "ქვეყნები" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "ქვეყანა" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "ქვეყნების ჩამონათვალი" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "გამარჯობათ, ეს არის სტატისტიკის განყოფილება. აქ მალე იქნება ზოგადი აღწერის განყოფილებაც. ზემოთ შეგიძლიათ დაათვალიეროთ ქვე კატეგორიების ბმულები" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "შეცდომა" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "ლექსიკონი" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "დააჭირეთ რეზიუმეს" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "წარწერა" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "გვერდის ნახვები" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "თქვენს ვებ-გვერდზე სტუმრების მიერ გვერდების ნახვის სრული რაოდენობა" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "ანგარიშები" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "ანგარიშების კატეგორიები" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "ანგარიშების სტატისტიკები" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "ანგარიშების სტატუსი" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Punchcard ანგარიში" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "ანგარიშს სტატისტიკა" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "სტატისტიკა არ არის დაყენებული" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 თვე" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 თვე" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 თვე" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "ყველა" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "დაუმტკიცებელი" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "უნიკალური სტუმრები" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "პირების რაოდენობა; უნიკალური ვიზიტორები გამოვლინდებანიან cookies მეშვეობით. იმ შემთხვევაში, თუ სტუმარს არ აქვს cookies, მისი გამოვლენა შესაძლებელია მარტივად IP მისამართის, ბრაუზერის, ოპერაციული სისტემის და სხვა მექანიზმების მეშვეობით" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "შეუმოწმებელი" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "შემოწმებული" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "სტუმარის რეზიუმე" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "ვიზიტი არის უნიკალური ვიზიტორი ჩანაწერი, რომელიც მოცემულ ვებ-გვერდზე გაჩერდა 30 წამით მაინც" diff --git a/application/i18n/po/po-ka_GE/tooltips.po b/application/i18n/po/po-ka_GE/tooltips.po new file mode 100644 index 0000000000..15aa1fc203 --- /dev/null +++ b/application/i18n/po/po-ka_GE/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "თქვენი ელ ფოსტის მისამართი" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "თქვენი სრული სახელი" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "დიახ-ის არჩევა საშუალებას გაძლევთ მიიღოთ ხმოვანი გამაფრთხილებლები ელ ფოსტით როცა ახალი რეპორტი ან კომენტარები დაიწერება თქვენს ვებ გვერდზე" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "თქვენი პაროლი.დატოვეთ ეს ველი ცარიელი თუ გსურთ შეინარჩუნოთ ძველი პაროლი" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "თქვენი მომხმარებლის სახელის შეცვლა შეუძლებელია" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "ეს არის ელ ფოსტის მისამართი რომელიც გამოიყენება ელ ფოსტის ხმოვანი შეტყობინებების გასაგზავნად." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "ეს საშუალებას აძლევს გაერთიანებულ მსგავს რეპორტებს განთავსდნენ რუქაზე ერთ წერტილში/dot" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "საშუალებას აძლევს მომხმარებლებს ძირითად საიტზე არსებულ რეპორტზე კომენტარი გააკეთონ." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "ეს საშუალებას აძლევს RSS სიახლეების ველს ჩანდეს ძირითად საიტზე." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "ნებას რთავს მომხმარებლებს შეავსონ ინფორმაცია ვებ ფორმით." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "მიღებული რეპორტების დეფოლტ რიცხვი თითოეული API მოთხოვნის მიხედვით" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "მიღებული რეპორტების მაქსიმალური რიცხვი თითოეული API მოთხოვნის მიხედვით" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "API მოთხოვნების მაქსიმალური რიცხვი თითოეულ IP მისამართზე" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "გვერდის ქეშირების ნების დართვა ან აკრძალვა.ეს საშუალებას აძლევს გვერდს გამოჩნდეს უფრო სწრაფად პასუხის დროის შემცირებით. ჩვენ გირჩევთ ქეშირების გამოყენებას ვიზიტორების დიდი რაოდენობის მქონე საიტის ქონის დროს. **დაიმახსოვრეთ რეპორტები განთავსდება წინა მხარეს ბოლოში თქვენ მიერ დაყენებული ნუსხის მიხედვით (მუდმივი/lifetime ქეშირება)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "მუდმივი/lifetime ქეშირების დაყენება." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "ეს პარამეტრი აყენებს ვიზიტებს თქვენს განლაგებაში.ეს არის გამარტივებული რეპორტის ტიპი რომელიც არ არის მოდერირებული მანამდე სანამ ის არ წავა ძირითად გვერდად/homepage და მოითხოვს თქვენი საიტის კონფიგურაციას გარკვეული სახით.როდესაც დააყენებთ დარწმუნდით რომ ლოკალური დრო UTC-ზე არის და თქვენს თემას ვიზიტორების ადგილმდებარეობის გარკვევის მხარდაჭერა აქვს/checkins.გააქტიურების შემდგომ,ამ მხარდაჭერის მქონე თემები გამოჩნდება თქვენს addons/თემების პარამეტრების გვერდზე." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "დააყენეთ რუქა რომ მოიცვათ სპეციპიკური ადგილმდებარეობა" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "საიტზე დააყენეთ ერთი ფერის კოდი ყველა კატეგორიისთვის " + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "ეს არის ქვეყანა სადაც განლაგებულია საიტი" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "ჩართეთ ან გამორთეთ tab ძირითად საიტზე კონტაქტების." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "ჩართეთ ან გამორთეთ როგორ დავეხმაროთ tab ძირითად საიტზე." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "ეს არის რეპორტების რიცხვი რომელიც ჩანს ძირითადი საიტის თითოეულ გვერდზე." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "ეს არის რეპორტების რიცხვი რომელიც ჩანს ძირითადი საიტის თითოეულ გვერდზე ადმინის Back End-ზე." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "ეს არის კერა/hub შემოსული მესიჯებისთვის" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "ეს სინქრონიზაციას უკეთებს შეტყობინებებს hub-ში უშაჰიდის პლატფორმის მეშვეობით" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "ტელეფონის ნომრები რისი საშუალებითაც მიიღება ტექსტური შეტყობინებები" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "აღრიცხავს ვიზიტორებს თქვენ საიტზე.მიიღეთ ვიზიტორების დეტალური სტატისტიკა" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "აყენებს ენას რომელიც გამოყენებულ უნდა იქნას საიტზე." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "ეს ადგენს რომელიცრუქა უნდა იყოს გამოყენებული საიტზე" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "ამ პარამეტრის დაყენება მართალია/true-ზე ან დიახ/yes-ზე თქვენს განლაგებას გახდის პირადს/private ისე რომ მხოლოდ ანგარიშის მქონე მომხმარებლებს ვისაც თქვენ დაადგენთ ექნებათ საშუალება გაიგონ განლაგება." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "ეს არის ელ ფოსტების ადგილსამყოფელი" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "ეს არის ელ ფოსტის მისამართის პაროლი სადაც მიიღება რეპორტები" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "ეს საჭიროა შემომავალი კავშირების დასტურების მისაღებად/accept ელ ფოსტის მისამართზე" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "ეს საჭიროა დაცული კავშირის გაძლიერებისთვის" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "ეს საჭიროა ელ ფოსტის აღსადგენად host server-დან" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "ეს არის ელ ფოსტის მისამართი რომელიც იღებს რეპორტებს" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Hit-ების სტატისტიკა ინახება უშაჰიდის მიერ კონტროლირებად სერვერზე. ამ პარამეტრის გააქტიურებით,თქვენ გეძლევათ შესაძლებლობა მიიღოთ hit-ების სტატისტიკა პირდაპირ თქვენს ადმინ პანელზე. მისი გაუქმებით, თქვენ შეწყვეტთ სტატისტიკის მოგროვებას და ვერ შეძლებთ გადატვირთვის/ტრაფიკის სტატისტიკის აღდგენას როცა ის გამორთული იქნება." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "ყოველთვის კარგია უფლებების დაცვის მოთხოვნა თქვენს ნამუშევაერზე.თქვენთვის მართებული და საჭირო ლიცენზიის დასადგენად,ეწვიეთ, http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "ეს არის ელ ფოსტის მისამართი სადაც მიღებულ იქნება ელ ფოსტის რეპორტები და შეტყობინებები კონტაქტების ფორმიდან." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "ეს არის ტექსტი რომელიც გამოჩნდება რუქის ზემოთ ძირითად გვერდზე/homepage. ეს საჭიროა საიტის ვიზიტორებისთვისმნიშვნელოვანი ინფორმაციის გაცემისთვის.ყუთის გასაქრობად უბრალოდ წაშალეთ აქედან შეტყობინება." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "ეს არის საიტის სახელი რომელიც ჩნდება ძირითადი საიტის თავში." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "მოკლედ აღწერეთ რის შესახებ არის ეს საიტი." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "დააყენეთ ტვიტერის ჰეშთეგი რომელიც გამოიყენება ტვიტებში" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ka_GE/ui_admin.po b/application/i18n/po/po-ka_GE/ui_admin.po new file mode 100644 index 0000000000..2912729be1 --- /dev/null +++ b/application/i18n/po/po-ka_GE/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "შესვლა უარყოფილია. ან თქვენი მონაცემები არაა მართებული ან თქვენი მოთხოვნაა უარყოფილი" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "შესვლა უარყოფილია. თქვენი მოთხოვნა გაგებულია,მაგრამ უარყოფილია შესვლების ლიმიტიდან გამომდინარე. ცადეთ მოგვიანებით" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "მოქმედებები" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "დამატებულია" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "დამატებულია/შესწორებულია" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "ადმინი" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "ანონიმური" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "აკრძალული API " + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API შესვლები" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API პარამეტრები" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "აკრძალვის გაუქმება" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "აკრძალვის გაუქმება ყველას" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "მიღებულია" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "ავტომატური მიღება" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "ხელით მითება" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "დაარქივებული" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "დარწმუნებული ხართ რომ გსურთ" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "დარწმუნებული ხართ რომ გსურთ წაშალოთ ეს პუნქტი" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "დარწმუნებული ხართ რომ გსურთ წაშალოთ ეს ფოტო" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "დარწმუნებული ხართ რომ გსურთ ჩართოთ ფორმა" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "ავტორი" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "ავტორის ელ ფოსტა" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "უკან" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "IP აკრძალვა" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "უარი" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "კატეგორიები" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "შეცდომის გამომსახველი გრაფიკი" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "გთხოვთ დარწმუნდით სწორია თუ არა შეტყობინება" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "გთხოვთ დარწმუნდეთ სწორია თუ არა ნომერი" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "გთხოვთ შეამოწმოთ თქვენი სმს პარამეტრები!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "შემოსვლები/Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "ჩატვირთული ქალაქები" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "კოდი" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "კოდის ვერსია სინქრონიზაციის მიღმა." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "კომენტარები" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "თქვენი ხმოვანი გამაფრთხილებლის დასადასტურებელი კოდის არის: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "მომხმარებელი იყო" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "ქვეყანა ვერ მოიძებნა" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "შექმნილი/შესწორებული" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "რეპორტის შექმნა" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "კრიტიკული გაუმჯობესება" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "ყოველდღიურად" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "მონაცემების ბაზა" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "თარიღი და დრო" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB ვერსია სინქრონიზაციის მიღმა." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "წაშლილი" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "წაშლა" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "დემო" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "აღწერილობა" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "გაუქმებული" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "რეპორტების გადმოწერა" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "ჩასწორებულია მიერ" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "ჩასწორება" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "მონახცემის ჩასწორება" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "ელფოსტა" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "შეცდომა ჯეოქოდინგშ! HTTP შეცდომა" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP ბიბლიოთეკა არ არის დაინსტალებული" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "შეცდომა" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "შეცდომა,ინციდენტის დაპოსტვა შეუძლებელია" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "ყოველ ექვს საათში" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "ყოველ თორმეტ საათში" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "ექსპერიმენტული" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "ხშირად დასმული კითხვები" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "ველი" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "უკუკავშირი" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "ველები" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "დეფოლტ მონაცემი" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "სიმაღლე (რიგებში)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "სიმბოლოების მაქსიმალური სიგრძე" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "ველის სახელწოდება" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "ატვირთული ფაილი ვერ მოიძებნა" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "წასაკითხად არ იხსენაბ ფაილი" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "ეს ფორმა არ არსებობს!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "ფორუმი" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "ტექსტის ველის არეალი (უფასო ტექსტი)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "დან" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "დან" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "ჯეონეიმსის შესვენების შეცდომა" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "მიიღეთ დახმარება" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "მოქმედებები" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "დამატება/შესწორება" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "ელ ფოსტა" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "მომხმარებლების მართვა" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "როლი" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "მომხმარებელი" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "დახმარება" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "საათობრივად" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "ინციდენტის ველი" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "ნიმუში" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "ნიმუშები" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "ნიმუშების დეტალები" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "ძალადაკარგული პარამეტრი" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP მისამართი" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "ეს არის რიცხვის ველი?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "ელ ფოსტის მისამართი:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "სრული სახელი:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "პაროლი:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "როლი:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "მომხმარებლის სახელი:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "ფენები" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "მოდერატორი" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "გასვლა" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "შემოსვლები" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "მართვა" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "როლების და ნებართვებისმართვა " + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "მომხმარებლების ნახვა" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "დამატება/ჩასწორება მომხმარებლების" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "მონიშნულია როგორც არა სპამი" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "მონიშნულია როგორც სპამი" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "არ შეესაბამება არცერთ პარამეტრს" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "შეტყობინება" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "შეტყობინებები" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica შეტყობინებები" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter შეტყობინებები" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "თქვენი შეტყობინება გაგზავნილია!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "წუთები" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "აკლია პარამეტრი" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "მოდერატორი" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "სახეცვლილი" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "ქვემოთ გადაადგილება" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "ზემოთ გადაადგილება" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "მრავალჯერადი მიღებული ინსტანციები" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "ჩემი პროფილი" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "ახალი პაროლი" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "არა" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "შეტყობინება" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "ეს არ არის მგრძნობიარე შემთხვევა." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "არაა ნაპოვნი" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "მონაცემები არ არის. სანახებელი შედეგები არ არის." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "შეცდომა არ არის" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "შედეგები არ არის საჩვენებელი!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "გვერდი" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "გვერდები" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "გვერდი არ მოიძებნა" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "გამოყენებული პარამეტრები" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "პაროლი" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "პაროლის აღდგენა" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "ძვირფასო" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "ჩვენ მივიღეთ მოთხოვნა რომ აღდვადგინოთ პაროლი" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "პაროლის შესაცვლელდ გთხოვთ დააჭიროთ ქვემოთ მოცემულ ბმულს(ან დააკოპირეთ და ჩასვით ის თქვენს ბროუზერში)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "მოთხოვნისამებრ,თქვენი პაროლი შეიცვალა.თქვენი ახალი დეტალები საჭიროებისამებრ არის" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "უშაჰიდის პაროლის აღდგენა" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "ტელეფონი" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "მონაცემები არ გაიგზავნა პოსტვის მეთოდით" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "საზოგადოებრივი ჩამონათვალი" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "კითხვა" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "შესაბამისობა" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "რეპორტის დამწერებს" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "რეპორტის დამწერების დონეები" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "რეპორტები" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "საჭირო" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "გადატვირთვა" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "შედეგები" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "პარამეტრების შენახვა" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "ძიება" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "მოძებნა" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- მიუთითეთ ველის ტიპი ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "გთხოვთ მონიშნეთ პუნქტი" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "გამგზავნი" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "ეს შეტყობინება გაიგზავნა თქვენი ვებ გვერდიდან " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "სერვერის დრო" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "პარამეტრები" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "ნაჩვენებია გვერდი" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "ნაჩვენებია შედეგები" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "სპეციალური კატეგორია" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "ეს არის სპეციალური კატეგორია რომელიც არ გამოჩნდება ანგარიშის წარდგენის ფორმაში მომხმარებლებისთვის ვინც ავსებს რეპორტებს.ეს გამოიყენება \"სანდო რეპორტერების\" ფუნქციასთან ერთობლივად." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "სტატისტიკები" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "სტატისტიკა" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "სტატისტიკის მოგორვება ვერ შესრილდა! გთხოვთ კიდევ სცადოთ მოგვიანებით." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "სტატისტიკის შეგროვება ვერ შესრულდა!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "სუპერ ადმინი" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "დავალება შესრულდა" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "ტექსტის ველი" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "სახელი" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "მომხმარებლების მართვა" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "მას" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "ჩანაწერები სულ" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "მას" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "რეპორტების თარგმანი" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "არდამტკიცებული" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "უცნობი" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "წაუკითხავი" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " დააწკაპეთ აქ რომ გააუმჯობესოთ ეხლავე" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "უშაჰიდის გაუმჯობესება" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "უსაგიდის სტატუსის გაუმჯობესება" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "შეტყობინებების ატვირთვა" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "მომხმარებლები" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "უშაჰიდი" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "ვერსია" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " შესაძლებელია გაუმჯობესება." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "საიტის ნახვა" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "მისალმება, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "ვიკი" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "დიახ" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "თქვენი ძებნა" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ka_GE/ui_main.po b/application/i18n/po/po-ka_GE/ui_main.po new file mode 100644 index 0000000000..b360d954de --- /dev/null +++ b/application/i18n/po/po-ka_GE/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "შესახებ" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "ხელმისაწვდომობა" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "ხელმისაწვდომობის ლიმიტი" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "ანგარიშის სახელი" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "ქმედებები" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "ამ ბრძანებას ვერ გააუქმებთ. დარწმუნებული ხართ რომ გინდათ გაგრძელება?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "გააქტიურება" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "გააქტიურება" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "დამატება" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "დამატებულია" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "დამატებითი ანგარიშები" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "დამატება/რედაქტირება" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "ველის დამატება" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "ენის დამატება" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "ახლის დამატება" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "ახალი კატეგორიის დამატება" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "თარგმანის დამატება" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "ადმინისტრაცია" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "შეტყობინების მიღება" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "შემატყობინეთ თუ ანგარიში შევსებულია:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "შეტყობინების შენახვა" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "ელექტრონული ფოსტის მისამართი:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ელექტრონული ფოსტის მისამართის შეყვანა" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "შეიყვანეთ თქვენი მობილურის ნომერი. მაგალითად - 577 XXXXXX" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "შეტყობინების მიღება" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "მობილურ ტელეფონზე:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "ან მონიშნეთ ადგილი ქვემოთ განთავსებულ რუკაზე და მიიღეთ ინფორმაცია 20 კილომეტრის რადიუსში შემოსული შეტყობინების შესახებ ." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "თუ ვერ იპოვეთ თქვენი ადგილმდებარეობა, სწორი მდებარეობის მოსანიშნად დააწკაპუნეთ რუკაზე." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (დააკოპირეთ ქვემოთ მოცემული მისამართი (url)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "აირჩიეთ ქალაქი" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "ნაბიჯი 1: აირჩიეთ ქალაქი ან თქვენი ადგილმდებარეობა:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "ნაბიჯი 2: შეტყობინება გამოაგზავნეთ ჩემ:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "ნაბიჯი 3 (ნებაყოფლობითია): აირჩიეთ კატეგორიები" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "დაადასტურეთ მოთხოვნა წინა შეტყობინებაზე" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "თქვენი შეტყობინება შენახულია!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "ყველა" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "ნებადართული" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "ყველა კატეგორია" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "და" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "დადასტურება" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "დადასტურებულია" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "ანგარიში დადასტურებულია" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "დაადასტურე ანგარიში" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "სავარაუდო" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "არქივი" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "დაარქივებული" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "დან" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "ავტორი" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Avg ანგარიშები დღეში" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "ელოდება დამტკიცებას" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "ელოდება შემოწმებას" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "ბლოგი" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "გაუქმება" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "კატეგორიები" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "კატეგორია" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "კატეგორიის ფილტრი" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "კატეგორია უკვე" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "კატეგორიის სახელი" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "აირჩიე" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "ჩამოსატვირთად აირჩიე მონაცემები" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "აირჩიე ველის ტიპი" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "წაშალე მისამართები (URLs)" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "გაასუფთავე რუქა" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "დახურე" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "კლასტერები (clusters)" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "ფერი" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "კომენტარი" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "კომენტარები" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "ცომენტარის დეტალები" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "თქვენი პარამეტრები შენახულია!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "კონფიგურაცია" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "დაგვიკავშირდით" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "უსაფრთხოების კოდი" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "ელექტრონული ფოსტის მისამართი" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "მესიჯი" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "თქვენი მესიჯი გაგსავნილია!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "სახელი" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "ტელეფონის ნომერი" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "შეტყობინების გაგზავნა" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "შეტყობინების თემა" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "საავტორო უფლებები ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "შექმნა" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "შექმნა/რედაქტირება" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "ახლის შექმნა" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "ანგარიშის შექმნა" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "სანდოობა" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "ინფორმაცია" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "თარიღი" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(თვე/დღე/წელი)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "თარიღი და დრო" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "დღე" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "დეაქტივაცია" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "ნაირობი, კენია" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "წაშლა" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "წაშლილია" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "შლის" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "წაშლა შეზღუდულია" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "ბოლოს წაშლა" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "ამ ანგარიშის წაშლა" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "მონიშნულის წაშლა" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "სპამის წაშლა" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "დემო" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "აღწერილობა" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "მაგალითი: ქალაქის ბაზარის კუთხე, მე-5 ქუჩა და მე-4 გამზირი, იოჰანესბურგი" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "დეტალები" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "პირდაპირი ანგარიში" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "შეზღუდულია" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "დაუმრკიცებელი" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "ანგარიშის ჩამოტვირთვა" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "რედაქტირება" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "ველებიდან რეედაქტირება" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "ანგარიშის რედაქტირება" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "ელექტრონული ფოსტის მისამართზე" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "ელექტრონული ფოსტის სერვერის პარამეტრები" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "ელექტრონული ფოსტის სერვერის ჰოსტინგი" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "ელექტრონული ფოსტის სერვერის პაროლი" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "ელექტრონული ფოსტის სერვერის პორტი" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "ელექტრონული ფოსტის სერვერის SSL support-ი" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "sელექტრონული ფოსტის სერვერის ტიპი" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "ელექტრონული ფოსტის სერვერის მომხმარებლის სახელი" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "თქვენი პარამეტრები უნდა იყოს დაკავშირებული ამ ელექტრონული ფოსტის მისამართთან" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "ელექტრონული ფოსტით ანგარიშების მისაღებად, გთხოვთ დაბლა შეიყვანეთ თქვენი ფოსტის ანგარიშის პარამეტრები. გთხოვთ გაითვალისწინოთ, რომ ფოსტას მიიღებთ თქვენს" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "ზოგიერთი სერვერები მოითხოვენ სრულ საფოსტო მისამართს" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "ელექტრონული ფოსტის ანგარიშის პაროლი" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "საერთო პორტები: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "მაგალითები: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "მაგალითები: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "შესაძლებელი ან შეუძლებელი SSL კავშირები" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "დან" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "შეცდომა!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "მაგალითი" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "კენია" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "კავშირი" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "შეფასება" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "კავშირები" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "კავშირი უკვე" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "კავშირის საკითხები" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "კავშირის სახელი" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "კავშირის მისამართი (URL)" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "გამოუყენებელი ველი" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "ფაილი" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "ფილტრები" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "ძებნა" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "ადგილდებარეობის მოძებნა" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "სახელი" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "დამგეგმავის გაშვება" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "დაგავისყდათ თქვენი პაროლი?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "ფორმა" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "ფორმები" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "აღწერილობის ფორმა" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "ამ ფორმის რედაქტირება" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "ფორმა უკვე" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "ფორმის დასახელება" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "მდე" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "სრული სახელი" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "ადგილდებარეობა ხელმისაწვდომია" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "ფერი" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "კომენტარები" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "ეტიკეტი" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "შტრიხის სიგანე" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "ჰეშტეგი (#)" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "იყო" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "როგორ დაგეხმაროთ" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "დამალული" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "დამალვა" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ამ მესიჯის დამალვა" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "მთავარი" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "როგორ უნდა შეგვატყობინოთ" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "პირადობა (ID)" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "სურათი" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "სურათი" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "სურათი/გამოსახულება" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "არააქტიური" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "შემოსული" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "ინციდენტი" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "ახლოს მდებარე ინციდენტები" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "ნციდენტის ადგილმდებარეობა" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "ჩართვით" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "კატეგორიების ჩათვლით" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "აღწერილობების ჩათვლით" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "რაც შეიძლება მეტი დეტალების ჩათვით" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "გრძედის ჩათვლით" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "ადგილდებარეობის ინფორმაციის ჩათვლით" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "გრძედის ჩათვლით" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "მედიის ჩათვლით" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "ინფორმაციის შეფასება" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "მიუთითეთ თქვენი ზუსტი ადგილმდებარეობა" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "საპასუხოდ" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP მისამართი" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "საკითხი" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "საკითხები" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "საკითხის დეტალები" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "საკითხის სათაური" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "გასაგები" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML ფაილი" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "ატვირთეთ KMZ/KML ფაილი" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML მისამართი (URL)" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "ენა" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "ბოლო" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "ბოლო თვე" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "გვარი" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "ბოლო წელი" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "განედი" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "ფენები" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "სხვა ფენები" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "ფენები უკვე" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "ფენების სახელები" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "ფენების მისამართი (URL)" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "კომენტარის დატოვება" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "დონე" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "ეს დონე უკვე" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "დონის სახელი" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "შეზღუდული" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "ლინკი" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "ადგილმდებარეობა" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "ადგილდებარეობები" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "ქალაქი, რეგიონი და/ან რაიონი" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "შესვლა" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "გრძედი" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "რუქა" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "მონიშნო როგორც წაკითხული" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "მონიშნო როგორც წაუკითხავი" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "მედია" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "მედია ფილტრი" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "შეტყობინება" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "შეტყობინება" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "მესიჯის დეტალები" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "მობილური" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "შეცვლა" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "თარიღის შეცვლა" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "თვე" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "მეტი" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "მეტი ინფორმაცია" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "მოიცავს თუ არა უშაჰიდი მრავალ ქვეყნებს" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "სახელი" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "ახლოს მდებარე ანგარიში" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "ახალი" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "სიახლეები" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "სიახლის კაბშირი" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "ადგილმდებარეობა" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "სიახლის კატეგორია" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "ახალი პაროლი" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "ახალი ანგარიში" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "შემდეგი" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "არა" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "შენიშვნები" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "არ დამტკიცებულა" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "არ დამტკიცებულა" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "არ არის სპამი" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "არ არის განსაზღვრული" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "აქ არ არის ანგარიშები" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "აქ არ არის რეზულტატი" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "ოფიციალური და ძირითადი სიახლეები" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "არჩევანი" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "არასავალდებულო" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "პარამეტრები" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "ორგანიზაცია" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "ორგანიზაციები" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "ორგანიზაციის აღწერილობა" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "ორგანიზაციის ელექტრონული ფოსტა" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "ორგანიზაცია უკვე" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "ორგანიზაციის სახელი" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "ორგანიზაციის ტელეფონის ნომერი 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "ორგანიზაციის ტელეფონის ნომერი 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "ორგანიზაციის ვებ-გვერდი" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "ორიგინალი" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "ორიგინალის აღწერა" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "ორიგინალის სათაური" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "უშაჰიდის სხვა" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "outbox" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "გამავალი" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "გვერდი" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "გვერდები" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "გვერდის აღწერილობა" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "გვერდი უკვე" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "გვერდის tab-ის სახელი" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "გვერდის სათაური" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "საწყისი კატეგორია" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "პაროლი" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "გაიმეორე თქვენი პაროლი" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "დაგავიწყდათ თქვენი პაროლი?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "ახალი პაროლისთვის შეამოწმეთ თქვენი ელექტრონული ფოსტა." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "შესული ხართ ამ კომპიუტერიდან?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "გასული თვე" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "გასული წელი" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "მოლოდინში" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "ით" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "პერსონალური ინფორმაცია არასავალდებულო." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "ტელეფონი" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "სურათები" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "სურათები და ვიდეოები" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* მოძებნეთ თქვენი მდებარეობა განედისა და გრძედის კოორდინატების გამოყენებით (ფორმატი: 38.19,-85.61), ან სწორი მდებარეობის მოსანიშნად დააწკაპუნეთ რუკაზე." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "თამაში" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "გთხოვთ ჩაინიშნოთ," + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugin ვებ-გვერდები" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "გადახედვა" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "საკითხების გადახედვა" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "მესიჯების გადახედვა" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "წინა" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "თქვენი პროფილი დამახსოვრებულია" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "სწრაფი სტატისტიკა" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "რაიტინფი" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Le�do" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "მიღება" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "მიიღოს" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "შეტყობინების მიღება" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "უახლესი ანგარიშები" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "სიახლეების განახლება" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "წაშლა" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "პასუხი" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "ანგარიში" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "რეპორტიორი" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "რეპორტიორები" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "ანგარიშის თარიღი" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "რეპორტიორის ელექტრონული ფოსტა" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "რეპორტიორის სახელი" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "რეპორტიორი უკვე" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "რეპორტიორის IP მისამართი" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "რეპორტიორის გვარი" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "რეპორტიორის დონე" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "რეპორტიორის დონეები" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "რეპორიორის ტელეფონი" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "შეტყობინება" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "დათვალიერება" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "გაგზავნა" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "კატეგორიები" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "თარიღი" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "აღწერილობა" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "ანგარიში ჩამოიტვირთება CSV ფორმატში" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "ელექტრონული ფოსტა" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "მახასიათებლები" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "იპოვე ადგილმდებარეობა შენთან ახლოს" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "სახელი" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "გვარი" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "ადგილმდებარეობის დაზუსტება" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "ინფორმაციის წყაროს ბმული" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "დამატებითი ინფორმაცია" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "ფოტოების ატვირთვა" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "ანგარიშების გვერდზე დაბრუნება" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "აირჩიე ქალაქი" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "თქვენი ანგარიში უკვე გადაეცა ჩვენს თანამშრომლებს გადასახედად.აუცილებლობის შემთხვევაში ჩვენ მალევე დაგიბრუნდებით." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "შეტყობინების გაგზავნა" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "დრო" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "ქრონოლოგია" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "შეტყობინების სათაური" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "ვიდეოს ბმული" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "შეგვატყობინეთ ინციდენტი" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "ანგარიშის დეტალები" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "SMS შეტყობინების გაგზავნით" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "ელექტრონული ფოსტის გაგზავნით " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "ჰეშტაგით (#) ტვიტის გაგზავნით" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "ამ ფორმის შევსებით" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "თქვენი ანგარიში დამახსოვრებულია" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "ანგარიშის სათაური" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "მეტი ინფორმაციის მოთხოვნა" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "მდებარეობის მოთხოვნა" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "მოთხოვნები" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "პაროლის გადატვირთვა" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "მივიღოთ შერჩეული ქვეყნის ქალაქის სახელი" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "როლი" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "დამახსოვრება" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "დამახსოვრებულია" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "შეინახეთ და დახურეთ" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "ანგარიშის დამახსოვრება" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "განრიგი" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "დღე" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "საათი" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "წუთი" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "კვირის დღე" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "ძებნა" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "ძებნის შედეგები" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "უსაფრთხოების კოდი" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "ყველაფრის მონიშვნა" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "აირჩიეთ ველის ტიპი" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "აირჩიეთ ფორმის ტიპი" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "აირჩიეთ რუქაზე" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "აირჩიეთ იმდენი რამდენიც საჭიროა" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "გთხოვთ გადაამოწმოთ, რომ თქვენ შეამოწმეტ პუნქტები" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "აირჩიეთ თემა" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "გაგზავნა" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "გაგზავნა" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "გაიგზავნა" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "გაგზავნილია" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "სერვერის მისამართი" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "სერვერის ტიპი" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "სერვისი" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "მომხმარებლის სერვისი" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "მომხმარებლის ID სერვილი" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "გაზიარება" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "საერთო მონაცემები" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "გაზიარება უკვე" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "გაზიარება" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "ნახვა" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "ყველაფრის ნახვა" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "ვებ-გვერდი" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "ვებ-გვერდის ელექტრონული ფოსტის მისამართი" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "ვებ-გვერდის მისამართი (URL)" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "სმს" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "წყარო" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "წყაროს სახელი" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "სყაროს მისამართი (URL)" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "სპამი" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL-ის მხარდაჭერა?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "დან" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "ნაბიჯი" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "შეტყობინების გაგზავნა" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "წარმოდგენილია სმს-ით" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "გააგზავნე სმს-ი" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "თქვენს ნომერზე" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "წარმატება!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "წარმატებით იქნა შემოტანილი" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "გვარი" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "სისტემა" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP პორტი" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "თემები" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "უშაჰიდის თემის დეფაულტი" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "თემის დაყენება" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "ეს" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "დღეს" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "ამ თვეში" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "ამ წელში" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "დრო" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "თარიღი " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "დან" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "დღეს" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "დღეს" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "სრული ანგარიშები" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "ნათარგმნი" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "ნათარგმნი აღწერილობა" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "ნათარგმნი სათაური" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "ნათარგმნი" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "ნათარგმნი" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "ნათარგმნი შენახულია" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "წაუკითხავი" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "გადაუმოწმებელი" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "კავშირის განახლება" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "ატვირთვა" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "ასატვირთი ფაილი" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "ანგარიშების ატვირთვა" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "ქვემოთ მოცემული ფორმით, შეგიძლიათ იმპორტი გაუკეთოთ ინციდენტებს" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "უნდა შეიცავდეს ინციდენტის სათაურსა და თარიღს" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "CSV ანგარიშის ნიმუში" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,ინციდენტის სათაური,ინციდენტის თარიღი,ადგილდებარეობა,აღწერა,კატეგორია,დამტკიცებულია,გადამოწმებულია
\"1\",\"საეჭვო გარდაცვალება ნაირობიში\",\"2009-05-15 01:06:00\",\"ნაირობი\",\"სამი შემთხვევა დადასტურდა ურუგვაიში\",\"გარდაცვალება, მოქალაქეები, \",დიახ,დიახ" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"მაროდიორობა\",\"2009-03-18 10:10:00\",\"აკრა\",\"მაროდიორობა ხდება ყველგან\",\"მასობრივი არეულობები, სიკვდილიანობები, საკუთრების დაკარგვა, \",დიახ,არა" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "წარმატებით აიტვირთა" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "მომხმარებელი" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "მომხმარებ,ლის სახელი" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "უშაჰიდის ამინი" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "გადამოწმებული" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "გადამოწმებული ანგარიშები" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "გადამოწმება" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "ამ ანგარიშის გადამოწმება" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "ვერსია" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "მეშვეობით" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "ვიდეო" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "ნახვა" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "ნახვები" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "ყველაფრის ნახვა" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "ყველა კავშირის ნახვა" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "ყველა ანგარიშის ნახვა" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "საკითხების ნახვა" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "უფრო მერის ნახვა" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "ანგარიშის ნახვა" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "ანგარიშების ნახვა" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "დასანახი" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "ელოდება დადასტურებას" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "ელოდება გადამოწმებას" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "წონა" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "დიახ" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "ხვალ" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "გადიდება" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "დაპატარავება" diff --git a/application/i18n/po/po-ka_GE/upgrade.po b/application/i18n/po/po-ka_GE/upgrade.po new file mode 100644 index 0000000000..94f7ef8e67 --- /dev/null +++ b/application/i18n/po/po-ka_GE/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Georgian (Georgia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ka_GE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka_GE\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "შეყვანილი მონაცემები არასწორია. შეიძლება მარტივად 0 აღნიშნავდეს არას და 1 დიახს." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "ავტომატური განახლება" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "ხელმისაწვდომი განახლებები" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "გაგრძელება" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "განახლება" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "ჩვენ ვაპირებთ რომ განვაახლოთ თქვენი მონაცემები" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "უახლესი მონაცემთა ვერსიიდან" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "დააჭირეთ \"განახლება\" ღილაკს." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "თუ გსურთ, რომ თქვენი მონაცემთა ბაზა დაბეკაპდეს (backup), უბრალოდ მონიშნეთ ქვედა ღილაკი ." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "განახლებამდე დააბეკაპებ (backup) მონახემთა ბაზას? (Highly recommended)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "უშაჰიდის მონაცემთა განახლება" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "რაგაც მომენტში განახლება შეწყდა" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "სახელმძღვანელოს განახლება" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "უშაჰიდის სტატუსის განახლება" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "ქვემოთ არის მოცემული ინსტრუქცია თუ როგორ შეიძლება უშაჰიდის განლაგების განახლება" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "ნაბიჯი 1: ჩამოთვირთე უახლესი უშაჰიდი აქედან http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "ნაბიჯი 2: რომ შეცვალოთ საქაღალდეების შინაარსი, მიუხედავად იმისა თუ რა ოპერაციული სისტემაა გაშვებული ვებ სერვერზე, თქვენ შეგიძლიათ გამოიყენეთ თქვენთვის სასურველი ინსტრუმენტი/რეჟიმი (მაგალითად: telnet, ftp, ssh). All EXCEPT:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "ნაბიჯი 4: დააჭირე \"გააგრძელე\" განახლების ღილაკი." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "ავტომატური განახლებისთვის, დააჭირეთ ქვედა ღილაკს." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "განახლების პროცესშია" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-km/alerts.po b/application/i18n/po/po-km/alerts.po new file mode 100644 index 0000000000..7eb3070832 --- /dev/null +++ b/application/i18n/po/po-km/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Seng Sutha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "វាល​អ៊ីមែល​មិន​​​បង្ហាញ​ថា​ជា​​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ឡើយ?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "បាន​ចុះ​ឈ្មោះ​អាសយដ្ឋាន​អ៊ីមែល​នោះ​​រួច​ហើយ ដើម្បី​ទទួល​បាន​ការ​ជូនដំណឹង​សម្រាប់​ទីតាំង​នោះ។" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "វាល​អ៊ីមែល​ត្រូវ​តែ​មាន​យ៉ាងហោចណាស់​ ៤ តួអក្សរ និង​មិន​ច្រើន​ជាង ៦៤ តួ​អក្សរ​ឡើយ។" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "វាល​អ៊ីមែល​ត្រូវ​​ទាមទារ ប្រសិនបើ​បាន​​គូស​ធីក​ប្រអប់​ធីក។" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "ការ​ប្រើប្រាស់​នេះ​ពង្រីក​តែ​ក្នុង​ប្រទេស​មួយ​ប៉ុណ្ណោះ។ សូម​ប្រាកដ​ថា ទីតាំង​​សម្រាប់​ការ​ជូន​ដំណឹង​ស្ថិត​ក្នុង​ប្រទេស %s ។" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "អ្នក​មិន​បាន​ជ្រើស​ទីតាំង​ត្រឹមត្រូវ​នៅ​លើ​ផែនទី​ឡើយ។" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "វាល​ទូរស័ព្ទ​​ចល័ត​មិន​មាន​ចំនួន​តួ​លេខ​​​ត្រឹមត្រូវ​ឡើយ។" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "បាន​ចុះ​ឈ្មោះ​លេខ​ទូរស័ព្ទ​​ចល័ត​នោះ​​រួច​ហើយ​ដើម្បី​ទទួល​បាន​ការ​ជូនដំណឹង​សម្រាប់​ទីតាំង​នោះ។" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "វាល​​លេខ​ទូរស័ព្ទ​ចល័ត​មិន​មាន​​​​បង្ហាញ​​​លេខ​ទូរស័ព្ទ​ត្រឹមត្រូវ​ឡើយ។ សូម​បញ្ចូល​លេខ​ទូរស័ព្ទ​ជាមួយ​​កូដ​​ប្រទេស។" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "អ្នក​ត្រូវ​តែ​បញ្ចូល​លេខ​ទូរស័ព្ទ​ចល័ត​​ ឬ​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក។" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "វាល​​លេខ​ទូរស័ព្ទ​ចល័ត​ត្រូវ​​បាន​ទាមទារ ប្រសិនបើ​បាន​ធីក​ប្រអប់​គូស​ធីក។" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "អ្នក​មិន​បាន​កំណត់​ចម្ងាយ​ត្រឹមត្រូវ​នៅ​លើ​ផែន​ទី​ឡើយ។" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "អ្នក​មិន​បាន​កំណត់​ចម្ងាយ​ត្រឹមត្រូវ​នៅ​លើ​ផែន​ទី​ឡើយ។" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "អ្នក​មិន​បាន​កំណត់​អ្នក​ទទួល​សម្រាប់​ការ​ជូនដំណឹង​ឡើយ។" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "អ្នក​បាន​ជាវ​សម្រាប់​ការ​ជូនដំណឹង​ជាមួយ​ប្រភេទ​ខាងក្រោម" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "កូដ​នេះ​ត្រូវ​បាន​ផ្ទៀងផ្ទាត់!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "រក​មិន​ឃើញ​កូដ​សម្រាប់​ការ​ផ្ទៀងផ្ទាត់​នេះ​ឡើយ! សូម​អះអាង​ថា​អ្នក​មាន URL ត្រឹមត្រូវ​ហើយ។" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " កូដ​របស់​អ្នក​បាន​​ផ្ទៀងផ្ទាត់​ដោយ​ត្រឹមត្រូវ។ ឥឡូវ​នេះ​អ្នក​នឹង​ទទួល​បាន​ការ​ជូនដំណឹង​​អំពី​ហេតុការណ៍​ដែល​បាន​កើត​ឡើយ។" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "ដើម្បី​អះអាង​សំណើ​ការ​ជូនដំណឹង​របស់​អ្នក សូម​ចូល​ទៅ​កាន់" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "ត្រឡប់​ទៅ​ទំព័រ​​សម្រាប់​ការ​ជូនដំណឹង​ ដើម្បី​បង្កើត​ការ​ជូនដំណឹង​បន្ថែម" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "សំណើ​ការ​ជូនដំណឹង​អ៊ីមែល​របស់​អ្នក​ត្រូវ​បាន​បង្កើត ហើយ​សារ​សម្រាប់​ការ​ផ្ទៀងផ្ទាត់​ត្រូវ​បាន​ផ្ញើ​ទៅ​កាន់" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "សូម​បញ្ចូល​កូដ​ការ​អះអាង​អ៊ីមែល​ដែល​អ្នក​បាន​ទទួល​ខាង​ក្រោម៖" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "សំណើ​ការ​​ជូនដំណឹង​អ៊ីមែល​របស់​អ្នក​មិន​ត្រូវ​បាន​រក្សាទុក​ឡើយ!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "សំណើ​ការ​ជូនដំណឹង​អ៊ីមែល​របស់​អ្នក​ត្រូវ​បាន​រក្សាទុក!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "ប្រព័ន្ធ​មិន​អាច​ដំណើរការ​សំណើ​ការ​អះអាង​របស់​អ្នក​បាន​​ទេ!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "សំណើ​ការ​ជូនដំណឹង​ចល័ត​​​​របស់​អ្នក​ត្រូវ​បាន​បង្កើត ហើយ​សារ​សម្រាប់​ការ​ផ្ទៀងផ្ទាត់​ត្រូវ​បាន​ផ្ញើ​ទៅ​កាន់" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "សូម​បញ្ចូល​កូដ​ការ​អះអាង​​សារ​ SMS ​ដែល​អ្នក​បាន​​​​ទទួល​​លើ​​តាម​រយៈ​ទូរស័ព្ទ​ចល័ត​របស់​អ្នក​​ខាង​ក្រោម៖" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "សំណើ​ការ​​ជូនដំណឹង​​​តាម​ឧបករណ៍​ចល័ត​​របស់​អ្នក​មិន​ត្រូវ​បាន​រក្សាទុក​ឡើយ!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "សំណើ​ការ​ជូនដំណឹង​ឧបករណ៍​ចល័ត​របស់​អ្នក​ត្រូវ​បាន​រក្សាទុក!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "ការ​ប្រើប្រាស់​នេះ​មិន​បាន​រៀបចំ​​​ដើម្បី​អនុវត្ត​ការ​ជូនដំណឹង​ដោយ​ត្រឹមត្រូវ​ឡើយ" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "អ្នក​បាន​ទទួល​អ៊ីមែល​នេះ ពីព្រោះ​អ្នក​បាន​​ជាវ​ការ​​ជូនដំណឹង។ ប្រសិនបើ​អ្នក​មិន​ចង់​ទទួល​បាន​ការ​ជូនដំណឹង​ទៀត​ទេ​សូម​ទៅ​កាន់" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "អ្នក​នឹង​មិន​ទទួល​បាន​ការ​ជូនដំណឹង​ទៀត​ទេ" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "យើង​មិន​អាច​​ឲ្យ​អ្នក​​ឈប់​ជាវ​បាន​ទេ។ សូម​អះអាង​ថា​អ្នក​មាន URL ត្រឹមត្រូវ។" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "ការ​​ផ្ទៀងផ្ទាត់​​ការ​ជូនដំណឹង" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "អ្នក​នឹង​ទទួល​បាន​​ការ​ជូនដំណឹង​នៅ​លើ​ទី​តាំង​នេះ​រហូរ​ដល់​អ្នក​អះអាង​សំណើ​របស់​អ្នក។" diff --git a/application/i18n/po/po-km/auth.po b/application/i18n/po/po-km/auth.po new file mode 100644 index 0000000000..6c80a8653f --- /dev/null +++ b/application/i18n/po/po-km/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Ath Ell , 2013 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "អ៊ីមែល​ដែល​អ្នក​បាន​បញ្ចូល​មិនមែន​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ឡើយ។" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "សូមទោស មាន​គណនី​អ្នកប្រើ​រួចហើយ​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​នេះ។" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "វាល​អ៊ីមែល​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៤ និង​យ៉ាងច្រើន​៦៤។" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "បាន​ទាមទារ​វាល​អ៊ីមែល។" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "វាល​ឈ្មោះ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​៣ និង​យ៉ាងច្រើន​១០០។" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "បាន​ទាមទារ​វាល​ឈ្មោះ។" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "វាល​ឈ្មោះ​អ្នកប្រើ​មាន​តួអក្សរ​ដែល​មិន​អនុញ្ញាត។" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "វាល​ពាក្យសម្ងាត់​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​៨។" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "សូម​ពិនិត្យមើល​ថា​អ្នក​បាន​បញ្ចូល​ពាក្យសម្ងាត់ និង​អ៊ីមែល​ត្រឹមត្រូវ។" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "សូម​បញ្ចូល​ពាក្យសម្ងាត់​ដូចគ្នា​ក្នុង​វាល​ពាក្យសម្ងាត់​ទាំងពីរ។" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់។" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "វាល​ពាក្យសម្ងាត់​ត្រូវតែ​ជា​តួអក្សរ សញ្ញា # សញ្ញា @ លេខ សញ្ញា (_) និង​សញ្ញា (-) ប៉ុណ្ណោះ" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "ពាក្យសម្ងាត់​បច្ចុប្បន្ន​ដែល​បាន​បញ្ចូល​សម្រាប់​គណនី​របស់​អ្នក​គឺ​មិន​ត្រឹមត្រូវ​ទេ។ សូម​ព្យាយាម​ម្ដងទៀត។" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "វាល​ពាក្យសម្ងាត់​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៨។" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "សូម​ពិនិត្យមើល​ថា​អ្នក​បាន​បញ្ចូល​អ៊ីមែល និង​ពាក្យសម្ងាត់​ត្រឹមត្រូវ។" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "សូម​បញ្ចូល​ពាក្យសម្ងាត់​ដូចគ្នា​នៅ​ក្នុង​វាល​ពាក្យសម្ងាត់​ទាំងពីរ។" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់។" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "វាល​ពាក្យសម្ងាត់​ត្រូវតែ​ជា​តួអក្សរ សញ្ញា # សញ្ញា @ លេខ សញ្ញា (_) និង​សញ្ញា (-) ប៉ុណ្ណោះ" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "មាន​កំហុស​ពេល​អ្នក​ព្យាយាម​ចូល។" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "វាល​ពាក្យសម្ងាត់​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៨។" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "សូម​ពិនិត្យមើល​ថា​អ្នក​បាន​បញ្ចូល​អ៊ីមែល និង​ពាក្យសម្ងាត់​ត្រឹមត្រូវ។" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "សូម​បញ្ចូល​ពាក្យសម្ងាត់​ដូចគ្នា​នៅ​ក្នុង​វាល​ពាក្យសម្ងាត់​ទាំងពីរ។" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់។" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "ម៉ាស៊ីន​មេ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ​បាន​ផ្អាក​ដំណើរការ។ សូម​ព្យាយាម​ម្ដងទៀត​នៅ​ពេល​ក្រោយ។" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "វាល​ពាក្យសម្ងាត់​ត្រូវតែ​ជា​តួអក្សរ សញ្ញា # សញ្ញា @ លេខ សញ្ញា (_) និង​សញ្ញា (-) ប៉ុណ្ណោះ" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "វាល​អះអាង​ពាក្យសម្ងាត់​ត្រូវតែ​ផ្គូផ្គង​ជាមួយ​វាល​ពាក្យសម្ងាត់។" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "អ៊ីមែល​ដែល​អ្នក​បាន​បញ្ចូល​មិនមែន​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ឡើយ។" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "សូមទោស យើង​មិន​មាន​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ទេ" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "បាន​ទាមទារ​វាល​អ៊ីមែល។" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "មានតែ​អ្នកប្រើ​ជាន់ខ្ពស់​ប៉ុណ្ណោះ​ដែល​អាច​កែប្រែ​អ្នកប្រើ​ជាន់ខ្ពស់ ឬ​បង្កើន​ឋានៈ​អ្នកប្រើ​ទៅជា​អ្នក​គ្រប់គ្រង​បាន។" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "ទ្រង់ទ្រាយ​មុខងារ​មិន​ត្រឹមត្រូវ។" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "វាល​មុខងារ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច៥ និង​យ៉ាង​ច្រើន៣០។" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "អ្នក​ត្រូវតែ​កំណត់​មុខងារ​ឲ្យ​បាន​យ៉ាងតិច​មួយ។" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "អ្នក​ត្រូវតែ​ជ្រើស​មុខងារ​មួយ​គឺ​អ្នក​គ្រប់គ្រង ឬ​អ្នកប្រើ។" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "ការ​ទៅ​យក​ពាក្យសម្ងាត់​ដែល​បាន​ភ្លេច​គឺ​មិន​ត្រឹមត្រូវ" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "បាន​ទាមទារ​ការ​ទៅ​យក​ពាក្យសម្ងាត់​ដែល​បាន​ភ្លេច" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "មុខងារ​អ្នកគ្រប់គ្រង​មិន​អាច​កែប្រែ​បាន​ទេ។" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "វាល URL ទម្រង់​សាធារណៈ​ត្រូវតែ​មាន​ជា​អក្សរ និង​លេខ​ប៉ុណ្ណោះ។" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "សូមទោស URL ទម្រង់​សាធារណៈ​នេះ​មាន​គេ​ប្រើ​ហើយ។" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "វាល URL ទម្រង់​សាធារណៈ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច២ និង​យ៉ាងច្រើន១០០។" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "សូម​ពិនិត្យមើល​ថា​អ្នក​ពិតជា​បាន​បញ្ចូល URL ទម្រង់​សាធារណៈ​ត្រឹមត្រូវ។" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "បាន​ទាមទារ​វាល URL ទម្រង់​សាធារណៈ។" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "មុខងារ​អ្នក​គ្រប់គ្រង​ជាន់​ខ្ពស់ មិន​អាច​កែប្រែ​បាន​ទេ។" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "អាច​មាន​ការ​វាយប្រហារ​របស់ CSRF ។ តើ​អ្នក​ពិតជា​ចង់​បង្កើត/កែប្រែ​អ្នកប្រើ​មែន​ឬ?" diff --git a/application/i18n/po/po-km/bug.po b/application/i18n/po/po-km/bug.po new file mode 100644 index 0000000000..e754f3060f --- /dev/null +++ b/application/i18n/po/po-km/bug.po @@ -0,0 +1,68 @@ +# +# Translators: +# Ath Ell , 2013 +# Sokhem Khoem , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "សូមបញ្ចូលលេខកូដដែលមាន។" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "សូមវាយបញ្ចូលកូដសន្តិសុខ។" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ប្រឡោះអ៊ីម៉ែលហាក់ដូចអត់មានអី" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ប្រឡោះអ៊ីម៉ែលត្រូវតែមានយ៉ាងតិច4 និង​ មិនច្រើនជាង 64តួ" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "តម្រូវការអ៊ីម៉ែលបើប្រអប់បានជ្រើសរើស" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "ប្រឡោះមិនប្រក្រតីតម្រូវឲ្យមាន" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "ប្រឡោះប្រធានបទតម្រូវឲ្យមានយ៉ាងតិច3តួ" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "ប្រឡោះប្រធានបទតម្រូវឲ្យមាន" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "ប្រឡោះឈ្មោះតម្រូវ​ឲ្យមានយ៉ាងតិច3តួ" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "វាល​ឈ្មោះ​ត្រូវ​បាន​ទាមទារ។" diff --git a/application/i18n/po/po-km/category.po b/application/i18n/po/po-km/category.po new file mode 100644 index 0000000000..b457b313a2 --- /dev/null +++ b/application/i18n/po/po-km/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Ath Ell , 2013 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "វាល​ពណ៌​ត្រូវតែ​មាន​៦​តួអក្សរ​។" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "បាន​ទាមទារ​វាល​ពណ៌។" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "បាន​ទាមទារ​វាល​ពណ៌នា។" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "សូម​ប្រាកដ​ថា​ទំហំ​រូបភាព​ផ្ទុក​ឡើង​ត្រូវ​បាន​កំណត់​ត្រឹម​៥០​គីឡូបៃ។" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "វាល​រូបភាព​មិន​បង្ហាញ​ថា​មាន​រូបភាព​ត្រឹមត្រូវ​ទេ។ ទ្រង់ទ្រាយ​ដែល​ព្រម​ទទួល​គឺ .JPG .PNG និង .GIF។" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "វាល​រូបភាព​មិន​បង្ហាញ​ថា​មាន​ឯកសារ​ត្រឹមត្រូវ​ទេ" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "វាល​ចំណងជើង​ត្រូវតែ​មាន​អក្សរ​យ៉ាងតិច៣ ប៉ុន្តែ​មិន​លើស​ពី​៨០​តួ​ឡើយ។" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "បាន​ទាមទារ​វាល​ចំណងជើង។" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "អ្នក​មិន​អាច​ចាត់​ប្រភេទ​រង​ប្រភេទ​ជាមួយ​ប្រភេទ​រង​បាន​ទេ។" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "មិន​មាន​ប្រភេទ​មេ។" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "វាល​ប្រភេទ​មេ​ត្រូវតែ​ជា​លេខ។" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "ប្រភេទ​មេ​មិន​អាច​ជា​ប្រភេទ​ពិសេស​បាន​ទេ" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "បាន​ទាមទារ​វាល​ប្រភេទ​មេ។" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "ប្រភេទ​និង​ប្រភេទ​មេ​មិន​អាច​ដូចគ្នាបាន​ទេ។" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "ប្រភេទ​ពិសេស​មិន​អាច​ជា​ប្រភេទ​កូន​បាន​ទេ។" diff --git a/application/i18n/po/po-km/comments.po b/application/i18n/po/po-km/comments.po new file mode 100644 index 0000000000..5f2985ff96 --- /dev/null +++ b/application/i18n/po/po-km/comments.po @@ -0,0 +1,63 @@ +# +# Translators: +# Ath Ell , 2013 +# Sokhem Khoem , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "សូមបញ្ចូលលេខកូដដែលមាន។" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "សូមវាយបញ្ចូលកូដសុវត្ថិភាព។" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "អ្នកបានវាយបញ្ចូលកូដសុវត្ថិភាពខុស" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "ប្រឡោះឈ្មោះតម្រូវ​ឲ្យមានយ៉ាងតិច3តួ" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "ប្រឡោះឈ្មោះតម្រូវឲ្យមាន" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "វាល​មតិយោបល់​ត្រូវ​បាន​ទាមទេរ។" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ប្រឡោះអ៊ីម៉ែលហាក់ដូចអត់មានអី" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ប្រឡោះអ៊ីម៉ែលត្រូវតែមានយ៉ាងតិច4 និង​ មិនច្រើនជាង 64តួ" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "តម្រូវការបើប្រអប់បានជ្រើសរើស" diff --git a/application/i18n/po/po-km/contact.po b/application/i18n/po/po-km/contact.po new file mode 100644 index 0000000000..9c6156b256 --- /dev/null +++ b/application/i18n/po/po-km/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# Ath Ell , 2013 +# Vantharith Oum , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "សូមបញ្ចូលលេខកូដដែលមាន។" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "សូមបញ្ចូលលេខកូដដែលមាន។" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "សូមបញ្ចូលលេខកូដសុវត្ថិភាព" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ប្រឡោះអ៊ីម៉ែលហាក់ដូចអត់មានអី" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ប្រឡោះអ៊ីម៉ែលត្រូវតែមានយ៉ាងតិច4 និង​ មិនច្រើនជាង 64តួ" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "តម្រូវការបើប្រអប់បានជ្រើសរើស" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "ប្រឡោះសារតម្រូវឲ្យមាន" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "ប្រឡោះឈ្មោះតម្រូវ​ឲ្យមានយ៉ាងតិច3តួ" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "ប្រឡោះឈ្មោះតម្រូវឲ្យមាន" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "ប្រឡោះប្រធានបទតម្រូវឲ្យមានយ៉ាងតិច3តួ" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "ប្រឡោះប្រធានបទតម្រូវឲ្យមាន" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "មានការមិនប្រក្រតីពេលកំពុងផ្ញើសារ" diff --git a/application/i18n/po/po-km/core.po b/application/i18n/po/po-km/core.po new file mode 100644 index 0000000000..73f33eb0b9 --- /dev/null +++ b/application/i18n/po/po-km/core.po @@ -0,0 +1,161 @@ +# +# Translators: +# Ath Ell , 2013 +# Seng Sutha , 2013 +# Sok Sophea , 2013 +# Vantharith Oum , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "កំណត់​រចនា​សម្ព័ន្ធ​ឯកសារ" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "ឧបករណ៍​បញ្ជា" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "កម្មវិធី​បញ្ជា" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "កម្មវិធី​បញ្ជា %s សម្រាប់​បណ្ណាល័យ %s ត្រូវតែ​ប្រើ​ចំណុច​ប្រទាក់ %s។" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "កម្មវិធី​បញ្ជា %s សម្រាប់​បណ្ណាល័យ %s មិន​អាច​រក​ឃើញ​បាន​ទេ។" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "អ្នក​អាច​ទៅកាន់​គេហទំព័រ ព្យាយាម​ម្ដងទៀត។" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "មិន​អាច​បញ្ចប់​សំណើ​ទាំងស្រុង​បាន​ទេ" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ជំនួយការ" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "ប្រភេទ​ឯកសារ .%s ដែល​បាន​ស្នើ​សុំ គឺ​មិន​អនុញ្ញាត​នៅ​ក្នុង​ទិដ្ឋភាព​ឯកសារ​ការ​កំណត់​រចនាសម្ព័ន្ធ​របស់​អ្នក​ទេ។" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "វិធីសាស្ត្រ %s ដែល​បាន​ហៅ​នៅ​ក្នុង %s គឺ​មិន​ត្រឹមត្រូវ" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "លក្ខណសម្បត្តិ %s គឺ​មិន​មាន​នៅ​ក្នុង​ថ្នាក់ %s ទេ។" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "បណ្ណាល័យ" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "ថត​កំណត់ហេតុ​គឺ​មិន​អាច​សរសេរ​បាន៖ %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "ម៉ូដែល" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "យូសាហ៊ីឌី​មិន​អាច​កំណត់​កម្មវិធី​ត្រួតពិនិត្យ​ដើម្បី​ដំណើរការ​សំណើ​នេះ​បាន​ទេ៖ %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "សូម​កំណត់​ផ្លូវ​លំនាំដើម​នៅ​ក្នុង config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "រក​មិន​ឃើញ​ទំព័រ %s ដែល​អ្នក​បាន​ស្នើ​ទេ។" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "រាយការណ៍​បញ្ហា​នេះ​ទៅកាន់​យូសាហ៊ីឌី" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "រក​មិន​ឃើញ​សំណើ %s, %s។" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "ជង់​ដាន" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "បាន​ផ្ទុក​ក្នុង​រយៈពេល {execution_time} វិនាទី ដោយ​ប្រើ​អង្គ​ចងចាំ​ចំនួន {memory_usage}។ បាន​បង្កើត​ដោយ​យូសាហ៊ីឌី v%s។" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "វា​អាច​មានតែ​ធាតុ​របស់​យូសាហ៊ីឌី​មួយ​ប៉ុណ្ណោះ​ក្នុង​ទំព័រ​ស្នើសុំ​មួយ។" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "មិន​បាន​ចាប់ %s: %s នៅ​ក្នុង​ឯកសារ %s បន្ទាត់​ទី %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "ទិដ្ឋភាព" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "អ្នក​ត្រូវតែ​កំណត់​ទិដ្ឋភាព​ឈ្មោះ​ឯកសារ​មុន​ពេល​បង្ហាញ​ការ​ហៅ។" diff --git a/application/i18n/po/po-km/database.po b/application/i18n/po/po-km/database.po new file mode 100644 index 0000000000..4f27ee6366 --- /dev/null +++ b/application/i18n/po/po-km/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Seng Sutha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "កំហុស​មូលដ្ឋាន​ទិន្នន័យ៖ %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "រក​មិន​ឃើញ​តារាង \"%s\" នៅ​ក្នុង​មូលដ្ឋាន​ទិន្នន័យ។ សូម​ប្រាកដ​ថា​អ្នក​កំពុង​ប្រើ​កំណែ​ថ្មី​បំផុត​របស់​មូលដ្ឋាន​ទិន្នន័យ​សម្រាប់​កំណែ Ushahidi នេះ។" diff --git a/application/i18n/po/po-km/datetime.po b/application/i18n/po/po-km/datetime.po new file mode 100644 index 0000000000..bc9182c812 --- /dev/null +++ b/application/i18n/po/po-km/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Ath Ell , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "ព្រឹក" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "សុ" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "សុក្រ" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "ច" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "ចន្ទ" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "ល្ងាច" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "ស" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "សៅរ៍" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "អ" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "អាទិត្យ" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "ព្រ" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "ព្រហស្បត៍" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "អ" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "អង្គារ" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "ពុ" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "ពុធ" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "ម" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "មករា" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "កុ" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "កុម្ភៈ" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "មិ" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "មិនា" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "មេ" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "មេសា" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "ឧសភា" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "ឧសភា" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "មិថុនា" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "មិថុនា" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "កក្កដា" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "កក្កដា" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "សីហា" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "សីហា" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "កញ្ញា" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "កញ្ញា" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "តុលា" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "តុលា" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "កញ្ញា" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "កញ្ញា" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "ធ្នូ" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "ធ្នូ" diff --git a/application/i18n/po/po-km/feeds.po b/application/i18n/po/po-km/feeds.po new file mode 100644 index 0000000000..48a709038b --- /dev/null +++ b/application/i18n/po/po-km/feeds.po @@ -0,0 +1,55 @@ +# +# Translators: +# Ath Ell , 2013 +# Seng Sutha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "កាលបរិច្ឆេទ" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "វាល​ឈ្មោះ​​​មតិ​ព័ត៌មាន​ត្រូវ​តែ​មាន​តួអក្សរ​យ៉ាងហោចណាស់ ៣ និង​មិន​វែង​ជាង ៧០ តួអក្សរ​ឡើយ។" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "សូម​បញ្ចូល​ឈ្មោះ​​មតិ​ព័ត៌មាន។" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "សូម​បញ្ចូល​ URL របស់​មតិ​ព័ត៌មាន។" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "សូម​បញ្ចូល URL ត្រឹមត្រូវ ឧ. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ប្រភព" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "ចំណងជើង" diff --git a/application/i18n/po/po-km/footer.po b/application/i18n/po/po-km/footer.po new file mode 100644 index 0000000000..335b83e6b9 --- /dev/null +++ b/application/i18n/po/po-km/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "មិន​បាន​ដំឡើង php5-curl នៅ​លើ​ប្រព័ន្ធ​នេះ​ទេ។" diff --git a/application/i18n/po/po-km/form.po b/application/i18n/po/po-km/form.po new file mode 100644 index 0000000000..1b25ef4156 --- /dev/null +++ b/application/i18n/po/po-km/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Sokhem Khoem , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "តម្លៃ​លំនាំដើម​ដែល​អ្នក​បាន​ផ្ដល់​សម្រាប់​វាល​នេះ​មិន​ត្រឹមត្រូវ។" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "វាល​ឈ្មោះ​យ៉ាង​ហោចណាស់​ត្រូវ​មាន​ ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ២០០ តួអក្សរ។" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "សូម​បញ្ចូល​តម្លៃ​​ពី ០ ដល់ ៥០ សម្រាប់​កម្ពស់​វាល។" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "អ្នក​បាន​បញ្ចូល​តម្លៃ​មិន​ត្រឹមត្រូវ​សម្រាប់​វាល​កាលបរិច្ឆេទ។" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "សូម​ជ្រើស បាទ/ចាស ឬ​ទេ ​សម្រាប់​វាល​កាលបរិច្ឆេទ។" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "ឈ្មោះ​វាល​យ៉ាង​ហោចណាស់​ត្រូវ​មាន ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ។" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "សូម​បញ្ចូល​ឈ្មោះ​វាល។" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "មាន​ឈ្មោះ​​វាល​​ដែល​អ្នក​បាន​បញ្ចូល​រួច​ហើយ​ក្នុង​សំណុំ​បែបបទ​នេះ។ សូម​បញ្ចូល​ឈ្មោះ​ផ្សេង។" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "អ្នក​បាន​បញ្ចូល​តម្លៃ​មិន​ត្រឹមត្រូវ​សម្រាប់​វាល​ដែល​ទាមទារ។" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "សូម​ជ្រើស​ បាទ/ចាស ឬ​ទេ សម្រាប់​វាល​ដែល​ទាមទារ។" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "សូម​ជ្រើស​ប្រភេទ​វាល​ដែល​ត្រឹមត្រូវ។" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "សូម​ជ្រើស​ប្រភេទ​វាល។" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "សូម​បញ្ចូល​តម្លៃ​ពី ០ ដល់ ៣០០ សម្រាប់​ទទឹង​វាល។" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "សូម​បញ្ចូល​សេចក្ដី​ពណ៌នា​សំណុំ​បែបបទ។" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "មិនអាច​លុប​សំណុំ​បែបបទ​លំនាំដើម​បាន​ទេ។" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "សូម​ជ្រើស​សំណុំ​បែបបទ​ណាមួយ​ត្រូវ​បន្ថែម​វាល​នេះ​ចូល។" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "សូម​ជ្រើស​សំណុំ​បែបបទ​ណា​មួយ​​ដើម្បី​បន្ថែម​វាល​នេះ​ចូល។" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "ឈ្មោះ​សំណុំ​បែបបទ​យ៉ាង​ហោចណាស់​ត្រូវ​មាន ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ។" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "សូម​បញ្ចូល​ឈ្មោះ​សំណុំ​បែបបទ។" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "មាន​​សំណុំ​បែបបទ​ដែល​​ចំណង​ជើង​នោះ​រួច​ហើយ។ សូម​ជ្រើស​ចំណង​ជើង​ផ្សេង។" diff --git a/application/i18n/po/po-km/imap.po b/application/i18n/po/po-km/imap.po new file mode 100644 index 0000000000..75cb28ee08 --- /dev/null +++ b/application/i18n/po/po-km/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Ath Ell , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "មិនអាចបើក IMAP Stream" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "សេវាអ៊ីម៉ែលមិនត្រូវ" diff --git a/application/i18n/po/po-km/installer.po b/application/i18n/po/po-km/installer.po new file mode 100644 index 0000000000..e280d7188c --- /dev/null +++ b/application/i18n/po/po-km/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Ath Ell , 2013 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "ផ្លូវ​មូលដ្ឋាន" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "មូលដ្ឋាន​ទិន្នន័យ" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "ម៉ាស៊ីន​មូលដ្ឋាន​ទិន្នន័យ" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "ប្រសិនបើ​អ្នក​កំពុង​ប្រើ​យូសាហ៊ីឌី​នៅ​លើ​កុំព្យូទ័រ​របស់​អ្នក នេះ​ទំនងជា \"localhost\"។ ប្រសិនបើ​អ្នក​កំពុង​ដំណើរការ​យូសាហ៊ីឌី​ពី​ម៉ាស៊ីន​មេ​បណ្ដាញ អ្នក​នឹង​ទទួល​បាន​ព័ត៌មាន​ម៉ាស៊ីន​ពី​ក្រុមហ៊ុន​ផ្ដល់​ការ​បង្ហោះ​បណ្ដាញ​របស់​អ្នក។ " + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​អ្នក​ត្រូវ​ដំណើរការ​យូសាហ៊ីឌី" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "សម្រាប់​ព័ត៌មាន​បន្ថែម​សូម​មើល​នៅ អត្ថបទ​នេះ នៅ​លើ​វីគី​ដែល​និយាយ​អំពី​មូលដ្ឋាន​ទិន្នន័យ​លម្អិត។" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "ភាសា​លំនាំដើម (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "ការ​ប្រើប្រាស់​នីមួយៗ​របស់​យូសាហ៊ីឌី​គឺ​មក​ជាមួយ​សំណុំ​ការ​បកប្រែ​ភាសា​ដែល​ជាប់។ អ្នក​បន្ថែម​ភាសា​របស់​អ្នក​បាន ." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "បិទ" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "បើក" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "បញ្ជី​ខាងក្រោម​គឺ​សេចក្ដី​សង្ខេប​អំពី​កំហុស​ដែល​យើង​បាន​ជួប។" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "ទីតាំង​នៅ​លើ​ម៉ាស៊ីន​មេ​សម្រាប់​ដាក់​ឯកសារ​យូសាហ៊ីឌី​របស់​អ្នក។ យើ​បាន​រក​ឃើញ​តម្លៃ​នេះ​ដោយ​ស្វ័យប្រវត្តិ សូម​ប្រាកដ​ថា​វា​ត្រឹមត្រូវ។ ប្រសិនបើ​វាល​ទទេ សូម​កុំ​បារម្ភ​អី វា​មានន័យថា​យូសាហ៊ីឌី​ត្រូវ​បាន​ដំឡើង​នៅ​ថត​កំពូល។" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "បាន​បញ្ចប់" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "ទូទៅ" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "អ្នក​ណា​ក៏​អាច​យក​គ្រាប់ចុច api បាន​ដែរ។ យក​របស់​អ្នក​ឥឡូវ" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "ត្រឡប់​ក្រោយ" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "ការ​ដំឡើង​កម្រិតខ្ពស់" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "បញ្ចប់​ការ​កំណត់​មូលដ្ឋាន​ទាំងអស់​ក្នុង​ដំណើរការ​៥​ជំហាន​នេះ។ នេះ​គឺ​រួមបញ្ចូល​ទាំង​ម៉ាស៊ីន​មេ ផែនទី ឈ្មោះ​តំបន់បណ្ដាញ និង​សេចក្ដី​លម្អិត​ទំនាក់ទំនង។" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "ការ​ដំឡើង​មូលដ្ឋាន" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "សាមញ្ញ​ហើយ​លឿន។ អ្វី​ដែល​អ្នក​ត្រូវការ​គឺ​ថត root នៃ​តំបន់បណ្ដាញ​របស់​អ្នក និង​ព័ត៌មាន​មូលដ្ឋាន​ទិន្នន័យ។ ជ្រើស​ជម្រើស​នេះ​ប្រសិនបើ​អ្នក​ចង់​ក្រោក​ពី​ដំណេក និង​រត់​រហ័ស ហើយ​អ្នក​អាច​កំណត់​រចនាសម្ព័ន្ធ​ចំណុច​ផ្សេងទៀត​នៅ​ពេល​ក្រោយ​បាន។" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "ធ្វើ​បន្ត" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "សូម​ស្វាគមន៍​មក​កាន់​ដំណើរការ​ដំឡើង​ម៉ាស៊ីន​មេ​របស់​យូសាហ៊ីឌី។ ជ្រើស​ប្រភេទ​ដំឡើង​ដែល​អ្នក​ចង់​ប្រើ​ដូច​ខាងក្រោម។" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "ការ​ដំឡើង​បាន​ជោគជ័យ" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "ម៉ាស៊ីន​មេ​អ៊ីមែល" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "ម៉ាស៊ីន​របស់​ម៉ាស៊ីន​មេ​អ៊ីមែល" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "ឧទាហរណ៍៖ mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "ពាក្យសម្ងាត់​ម៉ាស៊ីន​មេ​អ៊ីមែល" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "ពាក្យសម្ងាត់​ដែល​ត្រូវ​ប្រើ​ដើម្បី​ចូល​អ៊ីមែល​របស់​អ្នក" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "ច្រក​ទូទៅ៖ 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "ប្រភេទ​ម៉ាស៊ីន​មេ​អ៊ីមែល" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) ឬ Post Office Protocol (POP). តើ​អ្វី​ជា​ភាព​ខុសគ្នា?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "ឈ្មោះ​អ្នកប្រើ​ម៉ាស៊ីន​មេ​អ៊ីមែល" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "ប្រសិនបើ​អ្នក​កំពុង​ប្រើ Gmail, Hotmail ឬ Yahoo Mail សូម​បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល​ពេញ​របស់​អ្នក​ជា​ឈ្មោះ​អ្នកប្រើ។" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "ផែនទី" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "ក្រុមហ៊ុន​ផ្ដល់​សេវា​ផែនទី" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "យូសាហ៊ីឌី​ធ្វើការ​ស្មើ​គ្នា​ជាមួយ​ក្រុមហ៊ុន​ផ្ដល់​សេវាកម្ម​ផែនទី​ទាំង​បី​គឺ៖ Google, Bing ឬ Open Street Map។ ជ្រើស​ក្រុមហ៊ុន​មួយ​ដែល​មាន​សេចក្ដី​លម្អិត​ច្រើន​បំផុត​នៅ​ក្នុង​តំបន់​របស់​អ្នក។" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "ជំហាន​ដទៃទៀត..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "ពាក្យសម្ងាត់" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "ពាក្យសម្ងាត់​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "មុន" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "សូម​ចាប់ផ្ដើម​ម៉ាស៊ីន​មេ Apache របស់​អ្នក​ឡើងវិញ" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "បិទ ឬ​បើក SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "ម៉ាស៊ីន​មេ​អ៊ីមែល​មួយ​ចំនួន​ផ្ដល់ឲ្យ​អ្នក​នូវ​ជម្រើស​នៃ​ការប្រើប្រាស់ SSL នៅ​ពេល​តភ្ជាប់។ ការ​ប្រើ SSL ត្រូវ​បាន​ផ្ដល់​អនុសាសន៍ ព្រោះ​វា​បាន​ផ្ដល់ឲ្យ​អ្នក​នូវ​កម្រិត​សុវត្ថិភាព​បន្ថែម។" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "រៀបចំ​ម៉ាស៊ីន​មេ SMS របស់​អ្នក" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "អាស័យដ្ឋាន​អ៊ីម៉ែល​តំបន់​បណ្ដាញ" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "អាសយដ្ឋាន​អ៊ីមែល​ជូនដំណឹង​តំបន់បណ្ដាញ" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "នៅ​ពេល​អ្នក​ទស្សនា​តបន់បណ្ដាញ​របស់​អ្នក​ចុះឈ្មោះ​សម្រាប់​ការ​ជូនដំណឹង​តាម​អ៊ីមែល ពួកគេ​នឹង​ទទួល​អ៊ីមែល​ពី​អាសយដ្ឋាន​នេះ។ អាសយដ្ឋាន​អ៊ីមែល​នេះ​មិន​ត្រូវ​ឲ្យ​ដូចគ្នា​ជាមួយ​អាសយដ្ឋាន​អ៊ីមែល​តំបន់បណ្ដាញ​ទេ។" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "ទំនាក់ទំនង​អ៊ីមែល​នៅ​ក្នុង​តំបន់បណ្ដាញ​នឹង​ត្រូវ​បាន​បញ្ចូល​តាម​អាសយដ្ឋាន​នេះ" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "ឈ្មោះ​តំបន់បណ្ដាញ" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "ឈ្មោះ​តំបន់បណ្ដាញ​របស់​អ្នក" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "ជួរ​ស្លាក​តំបន់បណ្ដាញ" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "ជួរ​ស្លាក​របស់​អ្នក" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "ឯកសារ និង​ថត​ដែល​បាន​រាយ​ខាងក្រោម ចាំបាច់​ត្រូវ​​អាច​សរសេរ​បាន​ដោយ​ម៉ាស៊ីន​មេ​បណ្ដាញ​របស់​អ្នក។" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

នេះ​ជា​សេចក្ដី​ណែនាំ​សម្រាប់​ការ​ប្ដូរ​សិទ្ធិ​ឯកសារ៖

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "មុន​ពេល​ចាប់ផ្ដើម អ្នក​ចាំបាច់​ត្រូវ​ប្រាកដ​ថា​ឯកសារ និង​ថត​ដូច​ខាងក្រោម​គឺ​អាច​សរសេរ​បាន​ដោយ​ម៉ាស៊ីន​មេ​បណ្ដាញ​របស់​អ្នក។ នេះ​គឺ​ពាក់ព័ន្ធ​ជាមួយ​ការ​ប្ដូរ​សិទ្ធិ​ឯកសារ។" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "សម្រាប់​ជំហាន​នៃ​ការ​ដំឡើង សូម​មើល​ព័ត៌មាន​ខាងក្រោម​នេះ​ជាមុន។" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "តារាង​បុព្វបទ" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "ជា​ទូទៅ​អ្នក​មិន​គួរ​ប្ដូរ​តារាង​បុព្វបទ​ទេ។ ទោះបីជា​អ្នក​ចង់​ដំណើរការ​ដំឡើង​យូសាហ៊ីឌី​ច្រើន​ចេញពី​មូលដ្ឋាន​ទិន្នន័យ​តែមួយ​ក៏ដោយ អ្នក​អាច​ធ្វើ​វា​បាន​ដោយ​ប្ដូរ​បុព្វបទ​នៅ​ទីនេះ។" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "ចំណងជើង" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "ដើម្បី​ចូល សូម​ទៅកាន់" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "ផ្ទុក​ទិន្នន័យ​របាយការណ៍​ឡើង" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "ឈ្មោះ​អ្នកប្រើ" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "ឈ្មោះ​អ្នកប្រើ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "និង​ប្រើ​ព័ត៌មាន​សម្ងាត់​ដូច​ខាងក្រោម" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "មើល​តំបន់បណ្ដាញ​របស់​អ្នក" diff --git a/application/i18n/po/po-km/layer.po b/application/i18n/po/po-km/layer.po new file mode 100644 index 0000000000..7b1070a689 --- /dev/null +++ b/application/i18n/po/po-km/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# Seng Sutha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "វាល​ពណ៌​ត្រូវតែ​មាន៦តួអក្សរ។" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "បាន​ទាមទារ​វាល​ពណ៌។" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "វាល​ឯកសារ​មិន​​មាន​​​បង្ហាញ​​ឯកសារ​​ត្រឹមត្រូវ​ឡើយ។ បាន​ព្រម​ទទួល​យក​តែ​ទ្រង់ទ្រាយ .KMZ និង .KML ប៉ុណ្ណោះ។" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "វាល​ឯកសារ​មិន​មាន​បង្ហាញ​ឯកសារ​ត្រឹមត្រូវ​ឡើយ" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "វាល​ឈ្មោះ​ត្រូវ​តែ​មាន​យ៉ាងហោចណាស់ ៣ តួអក្សរ និង​មិន​ច្រើន​​ជាង​ ៨០ តួអក្សរ​ឡើយ។" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "បាន​ទាមទារ​វាល​ឈ្មោះ។" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "បាន​ទាមទារ KML URL ឬ​ឯកសារ។" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "អ្នក​មិន​មាន​​​​ឯកសារ KML និង URL ឡើយ។" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "សូម​បញ្ចូល​ URL ត្រឹមត្រូវ ឧ. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-km/libraries.po b/application/i18n/po/po-km/libraries.po new file mode 100644 index 0000000000..1d931ffd2e --- /dev/null +++ b/application/i18n/po/po-km/libraries.po @@ -0,0 +1,119 @@ +# +# Translators: +# Ath Ell , 2013 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "មិន​អាច​ភ្ជាប់​ទៅកាន់​ម៉ាស៊ីន​មេ Akismet បាន​ទេ។" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "មិន​អាច​ទៅ​យក​ចម្លើយ​តប​ពី Akismet បាន​ទេ។" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "បណ្ណាល័យ API ៖ %s សម្រាប់ %s ថ្នាក់​រក​មិន​ឃើញ​ទេ។ សូម​ពិនិត្យ​តារាង​នាំ​ផ្លូវ​ភារកិច្ច API របស់​អ្នក។" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "កូនសោ Akismet API របស់​អ្នក​មិន​ត្រឹមត្រូវ​ទេ។" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "កំហុស​ពេល​ប្រតិបត្តិ​វិធីសាស្ត្រ​បញ្ជូន fopen !
សូម​ពិនិត្យមើល​ថា​តើ PHP មាន OpenSSL ដែល​គាំទ្រ និង​ថា​តើ​កំណែ PHP គឺ​ធំ​ជាង 5.2។" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "សារ​យូនីកូដ​របស់​អ្នក​គឺ​វែង​ពេក! (ប្រវែង​បច្ចុប្បន្ន=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "សូម​បញ្ជាក់​អាសយដ្ឋាន​គោលដៅ (ជូន​ចំពោះ)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "សូម​បញ្ជាក់​អាសយដ្ឋាន​ប្រភព (ពី)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "សារ​យូនីកូដ​របស់​អ្នក​គឺ​វែង​ពេក! (ប្រវែង​បច្ចុប្បន្ន=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "មិន​បាន​គាំទ្រ​​វីធីសាស្ត្រ​បញ្ជូន!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "បណ្ណាល័យ API %s គឺ​មិន​ត្រឹមត្រូវ។ បណ្ណាល័យ API ទាំងអស់​ត្រូវតែ​ជា​ថ្នាក់​រង​របស់ %s។" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "មិន​អាច​លុប​ថត %s បាន​ទេ។" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "កំហុស​ពេល​ពន្លា៖ %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​យូសាហ៊ីឌី។ កូដ​ស្ថានភាព HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "មិន​អាច​ចម្លង​ឯកសារ %s បាន​ទេ។" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "មិន​អាច​លុប​ឯកសារ %s បាន​ទេ។" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "ស្គ្រីប​ធ្វើឲ្យ​យូសាហ៊ីឌី​ប្រសើរ​ឡើង" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "ឯកសារ​បង្ហាប់​យូសាហ៊ីឌី​ដែល​បាន​ទាញ​យក %s មិន​អាច​សរសេរ​បាន​ទេ។" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s មិន​មាន​នៅ​ក្នុង​ថ្នាក់ RiverID ទេ។" diff --git a/application/i18n/po/po-km/maintenance.po b/application/i18n/po/po-km/maintenance.po new file mode 100644 index 0000000000..7cf7dc8b4f --- /dev/null +++ b/application/i18n/po/po-km/maintenance.po @@ -0,0 +1,25 @@ +# +# Translators: +# Sokhem Khoem , 2013 +# Vantharith Oum , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-23 20:07+0000\n" +"Last-Translator: Vantharith Oum \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "សូមអភ័យ​ទោស តំបន់​បណ្ដាញ​របស់​យើង​បច្ចុប្បន្ន​កំពុងផ្អាក​ដើម្បី​ថែទាំ។ សូម​ព្យាយាម​ម្ដងទៀត​ក្នុង​រយៈ​ពេល​​ពីរ ឬ​បី​នាទី​ក្រោយ។" diff --git a/application/i18n/po/po-km/message.po b/application/i18n/po/po-km/message.po new file mode 100644 index 0000000000..b895f4b71a --- /dev/null +++ b/application/i18n/po/po-km/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Seng Sutha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "សូម​បញ្ចូល​កូដ​សុវត្ថិភាព​ត្រឹមត្រូវ។" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "សូម​បញ្ចូល​កូដ​សុវត្ថិភាព។" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "វាល​អ៊ីមែល​មិន​បង្ហាញ​ថា​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "វាល​អ៊ីមែល​ត្រូវ​តែ​មាន​តួអក្សរ​យ៉ាង​តិច ៤ និង​មិន​ច្រើន​ជាង​ ៦៤ តួ​អក្សរ​ឡើយ។" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "វាល​អ៊ីមែល​ត្រូវ​បាន​ទាមទារ ប្រសិនបើ​​បាន​គូរ​ធី​​​ប្រអប់​ធីក។" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "វាល​មតិយោបល់​ត្រូវ​បាន​ទាមទារ។" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "វាល​ឈ្មោះ​ត្រូវ​តែ​មាន​តួអក្សរ​យ៉ាង​ហោច​ណាស់ ៣ ។" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "បាន​ទាមទារ​វាល​ឈ្មោះ។" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "វាល​ទូរស័ព្ទ​មិន​ត្រឹមត្រូវ។" diff --git a/application/i18n/po/po-km/mhi.po b/application/i18n/po/po-km/mhi.po new file mode 100644 index 0000000000..f4940846ea --- /dev/null +++ b/application/i18n/po/po-km/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Sokhem Khoem , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "សូម​បញ្ចូល​កូដ​សុវត្ថិភាព​ត្រឹមត្រូវ។" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "សូម​បញ្ចូល​កូដ​សុវត្ថិភាព។" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "វាល​អ៊ីមែល​មិន​បង្ហាញ​ថា​ជា​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "សូម​ផ្ដល់​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ។" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "វាល​សារ​ត្រូវ​បាន​ទាមទារ។" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "វាល​ប្រធាន​បទ​ត្រូវ​តែ​មាន​ប្រវែង​យ៉ាង​ហោចណាស់​បី​តួអក្សរ។" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "វាល​ប្រធាន​បទ​ត្រូវ​បាន​ទាមទារ។" diff --git a/application/i18n/po/po-km/notifications.po b/application/i18n/po/po-km/notifications.po new file mode 100644 index 0000000000..3360926759 --- /dev/null +++ b/application/i18n/po/po-km/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Sokhem Khoem , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "សារ​នេះ​ត្រូវ​បាន​ផ្ញើ​ពី​តំបន់​បណ្ដាញ​របស់​អ្នក។" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "ចូល​ជា​អ្នក​គ្រប់គ្រង" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "បាន​ដាក់ស្នើ​មតិយោបល់​ថ្មី​ទៅ​តំបន់​​បណ្ដាញ​របស់​អ្នក​​ជា​ការ​ឆ្លើយតប​នឹង៖" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "មតិយោបល់​ថ្មី" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "បាន​ដាក់​ស្នើ​សារ​អ៊ីមែល​ថ្មី​​ទៅ​តំបន់​បណ្ដាញ​របស់​អ្នក។" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "សារ​អ៊ីមែល​ថ្មី" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "បាន​ដាក់​ស្នើ​របាយការណ៍​ថ្មី​ទៅ​តំបន់បណ្ដាញ​របស់​អ្នក។" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "របាយការណ៍​ថ្មី" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "បាន​ដាក់​ស្នើ​សារ​អត្ថបទ​ថ្មីទៅ​តំបន់​បណ្ដាញ​របស់​អ្នក។" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "សារ​អត្ថបទ​ថ្មី" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "អ្នក​បាន​ទទួល​ការ​ជូន​ដំណឹង​ថ្មី" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "ការ​ជូន​ដំណឹង​ថ្មី!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "អ្នក​បាន​ទទួល​សារ​ឯកជន" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "សារ​ឯកជន​ថ្មី" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "ដើម្បី​ឆ្លើយតប សូម​ចូល​ទៅ៖" diff --git a/application/i18n/po/po-km/page.po b/application/i18n/po/po-km/page.po new file mode 100644 index 0000000000..a068f711aa --- /dev/null +++ b/application/i18n/po/po-km/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Ath Ell , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "សូមបញ្ចូលចំណងជើងទំព័រ" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "ប្រឡោះចំណងជើងតម្រូវឲ្យមានយ៉ាងតិច 3 និងមិនច្រើនជាង 150តួ" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "សូមវាយបញ្ចូលឈ្មោះបន្ទះ" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "សូមបញ្ចូលទំព័រពិពណ៌នា" diff --git a/application/i18n/po/po-km/permissions.po b/application/i18n/po/po-km/permissions.po new file mode 100644 index 0000000000..db3fd11164 --- /dev/null +++ b/application/i18n/po/po-km/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Seng Sutha , 2014 +# Sokhem Khoem , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-01-03 03:46+0000\n" +"Last-Translator: Seng Sutha \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "មើល​របាយការណ៍" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "បង្កើត/កែ/លុប​របាយការណ៍" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "អនុម័ត​របាយការណ៍" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "ផ្ទៀងផ្ទាត់​របាយការណ៍" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "គ្រប់គ្រង​មតិ​យោបល់​របាយការណ៍" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "ទាញ​យក​របាយការណ៍" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "ផ្ទុក​របាយការណ៍​ឡើង" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "គ្រប់គ្រង​សារ" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "គ្រប់គ្រង​អ្នក​រាយការណ៍​សារ" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "មើល​ស្ថានភាព" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "កែ​ប្រែ​ការ​កំណត់" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "គ្រប់គ្រង​ផ្ទាំង" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "គ្រប់គ្រង​អ្នកប្រើ" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "គ្រប់គ្រង​តួនាទី" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "អាច​ចូល" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "គ្រប់គ្រង​ការ​ចូល" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "ចំណុច​ប្រទាក់​ចូល​ជា​អ្នកគ្រប់គ្រង" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "ចំណុច​ប្រទាក់ចូលជា​​អ្នក​សមាជិក" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "លុប​របាយការណ៍​ទាំងអស់" diff --git a/application/i18n/po/po-km/private_message.po b/application/i18n/po/po-km/private_message.po new file mode 100644 index 0000000000..c7c1f023fc --- /dev/null +++ b/application/i18n/po/po-km/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Seng Sutha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "លេខ​សម្គាល់​មេ​ត្រូវ​តែ​ជា​លេខ" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "បាន​ទាមទារ​វាល​​ជួន​ចំពោះ​" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "អ្នក​ប្រើ​ដែល​អ្នក​ព្យាយាម​ផ្ញើ​សារ​ មិន​មាន​ឡើយ" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "វាល​​ប្រធាន​បទ​ត្រូវ​បាន​ទាមទារ" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "ប្រធានបទ​ត្រូវ​តែ​មាន​​តួ​អក្សរ​ចន្លោះ​ពី ៣ ដល់ ១៥០" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "វាល​សារ​ត្រូវ​បាន​ទាមទារ" diff --git a/application/i18n/po/po-km/report.po b/application/i18n/po/po-km/report.po new file mode 100644 index 0000000000..6855f72ea8 --- /dev/null +++ b/application/i18n/po/po-km/report.po @@ -0,0 +1,395 @@ +# +# Translators: +# Seng Sutha , 2013 +# Sokhem Khoem , 2013 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-09-09 03:30+0000\n" +"Last-Translator: Sok Sophea \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "កំហុស!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "ការ​ប្រើប្រាស់​នេះ​ពង្រីក​តែ​ក្នុង​ប្រទេស​មួយ​ប៉ុណ្ណោះ។ សូម​ប្រាកដ​ថា ទីតាំង​រាយការណ៍​ស្ថិត​ក្នុង​ប្រទេស %s ។" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​វាល \"%s\" ។" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "វាល \"%s\" ត្រូវ​តែ​ជា​លេខ។" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "បាន​ទាមទារ​វាល \"%s\" ។" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "មិន​មាន​វាល​ \"%s\" ឡើយ។" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "វាល \"%s\" មិន​អាច​ត្រូវ​បាន​កែសម្រួល​ដោយ​គណនី​របស់​អ្នក​ឡើយ។" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "វាល \"%s\" ត្រូវ​តែ​មាន​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ។" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "វាល \"%s\" ត្រូវ​តែ​មាន​លេខ​ទូរស័ព្ទ​ត្រឹមត្រូវ។" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "វាល \"%s\" ត្រូវ​តែ​មាន​​កាលបរិច្ឆេទ​ត្រឹមត្រូវ (MM/DD/YYYY)។" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "វាល \"%s\" ត្រូវ​តែ​មាន​កាលបរិច្ឆេទ​ត្រឹមត្រូវ (DD/MM/YYYY)។" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "សូម​ជ្រើស​ធាតុ​ត្រឹមត្រូវ​ ដើម្បី​ដាក់​បញ្ចូល​ក្នុង​ការ​ទាញ​យក។" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "សូម​ជ្រើស​ធាតុ​ត្រឹមត្រូវ ដើម្បី​ដាក់​បញ្ចូល​ក្នុង​ការ​ទាញ​យក។" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "សូម​ជ្រើស \"របាយការណ៍​រង់ចាំ​ការ​អនុម័ត\" ឬ \"របាយការណ៍​បាន​អនុម័ត\" ឬ​ទាំង​ពីរ។" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "សូម​ជ្រើស \"របាយការណ៍​រង់ចាំ​ការ​អនុម័ត\" ឬ \"របាយការណ៍​បាន​អនុម័ត\" ឬ​ទាំង​ពីរ។" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "សូម​ជ្រើស \"របាយការណ៍​រង់ចាំ​ការ​អនុម័ត\" ឬ \"របាយការណ៍​បាន​អនុម័ត\" ឬ​ទាំង​ពីរ។" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "សូម​ជ្រើស \"របាយការណ៍​រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់\" ឬ \"របាយការណ៍​បាន​បាន​ផ្ទៀងផ្ទាត់\" ឬ​ទាំង​ពីរ។" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "សូម​ជ្រើស \"របាយការណ៍​រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់\" ឬ \"របាយការណ៍​បាន​បាន​ផ្ទៀងផ្ទាត់\" ឬ​ទាំង​ពីរ។" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "សូម​ជ្រើស \"របាយការណ៍​រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់\" ឬ \"របាយការណ៍​បាន​បាន​ផ្ទៀងផ្ទាត់\" ឬ​ទាំង​ពីរ។" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "សូម​ជ្រើស​ប្រភេទ​របាយការណ៍​ត្រឹមត្រូវ​ ដើម្បី​ទាញ​យក។" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "សូម​ជ្រើស​ប្រភេទ​របាយការណ៍​ត្រឹមត្រូវ​ ដើម្បី​ទាញ​យក។" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "សូម​ជ្រើស​ប្រភេទ​របាយការណ៍​ត្រឹមត្រូវ​ ដើម្បី​ទាញ​យក។" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "អ្នក​ត្រូវ​តែ​ជ្រើស​ទ្រង់ទ្រាយ​ទាញ​យក។ ជ្រើស​ CSV ឬ XML ។" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "សូម​ជ្រើស​ទ្រង់ទ្រាយ​ត្រឹមត្រូវ ដើម្បី​ទាញ​យក​​របាយការណ៍​របស់​អ្នក" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "វាល​កាលបរិច្ឆេទ​ ពី មិន​បង្ហាញ​ថា​មាន​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "សូម​បញ្ចូល​កាលបរិច្ឆេទ ពី ​ឲ្យ​បាន​​ត្រឹមត្រូវ។ វា​មិន​អាច​ធំ​ជាង​ថ្ងៃ​នេះ​ទេ។" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​អនុម័ត​របាយការណ៍​នេះ" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​អនុម័ត​របាយការណ៍​នេះ" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "វាល​ព្រឹក/ល្ងាច មិន​បង្ហាញ​ថា​ជា​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "វាល \"ប្រភេទ\" មិន​បង្ហាញ​ថា​ជា​ប្រភេទ​ត្រឹមត្រូវ​ទេ។" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "វាល \"ប្រភេទ\" ត្រូវ​បាន​ទាមទារ។" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "វាល​កាលបរិច្ឆេទ​មិន​បង្ហាញ​ថា​ជា​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "វាល​កាលបរិច្ឆេទ​មិន​បង្ហាញ​ថា​ជា​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "វាល​កាលបរិច្ឆេទ​ត្រូវ​បាន​ទាមទារ។" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "វាល \"សេចក្ដី​​ពណ៌នា\" ត្រូវ​បាន​ទាមទារ។" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "វាល​ម៉ោង​មិ​ន​បង្ហាញ​ថា​ជា​ម៉ោង​ត្រឹមត្រូវ​ទេ។" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "បាន​ទាមទារ​វាល​ម៉ោង​។" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ប្រូបាប៊ីលេតេ​​ព័ត៌មាន។" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ប្រូបាប៊ីលេតេ​​ព័ត៌មាន។" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "វាល​នាទី​មិន​បង្ហាញ​ថា​មាន​​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "បាន​ទាមទារ​វាល​នាទី។" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "វាល​តំណ​ប្រភព​ព័ត៌មាន​មិន​បង្ហាញ​ថា​មាន​ URL ត្រឹមត្រូវ​ទេ។" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "សូម​ប្រាកដ​ថា​ទំហំ​ផ្ទុក​រូបថត​ឡើង​ត្រូវ​បាន​កំណត់​ត្រឹមត្រូវ ២ មេកាបៃ។" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "វាល​ផ្ទុក​រូបថត​ឡើង​មិន​បង្ហាញ​ថា​ជា​រូបភាព​ត្រឹមត្រូវ​ទេ។ ទ្រង់ទ្រាយ​ដែល​ទទួល​យក​បាន​គឺ .JPG, .PNG and .GIF ។" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "វាល​ផ្ទុក​រូបថត​ឡើង​មិន​បង្ហាញ​ថា​មាន​​​ឯកសារ​ត្រឹមត្រូវ​ទេ។" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ភាព​ទុកចិត្ត​បាន​របស់​ប្រភព។" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ភាព​ទុកចិត្ត​បាន​របស់​ប្រភព។" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "វាល \"ចំណង​ជើង​របាយការណ៍\" យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន​ ៣ និង​មាន​ប្រវែង​មិន​លើស​ពី ២០០ តួអក្សរ។" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "វាល \"ចំណង​ជើង​របាយការណ៍\" ត្រូវ​បាន​ទាមទារ។" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "អាច​ប៉ះពាល់​ដល់ CSRF ។ តើ​អ្នក​ពិត​ជា​ចង់​បង្កើត/កែសម្រួល​របាយការណ៍​មែន​ឬ?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​​ផ្ទៀងផ្ទាត់​របាយការណ៍​នេះ។" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "សូម​បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​ផ្ទៀងផ្ទាត់​របាយការណ៍​នេះ។" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "វាល​តំណ​វីដេអូ​មិន​បង្ហាញ​ថា​មាន​ URL ត្រឹមត្រូវ​ទេ។" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "វាល​រយៈ​ទទឹង​មិន​បង្ហាញ​ថា​​មាន​រយៈ​ទទឹង​ត្រឹមត្រូវ​ទេ។" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "វាល​រយៈ​ទទឹង​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​លើ​ផែនទី​ដើម្បី​បង្ហាញ​ទីតាំង។" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "វាល​​មូលដ្ឋាន​មាន​តម្លៃ​មិន​ត្រឹមត្រូវ។" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "របាយការណ៍​នេះ​មាន​ការ​បកប្រែ​សម្រាប់​ភាសា​នេះ​រួ​ច​ហើយ។" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "វាល​មូលដ្ឋាន​មាន​តម្លៃ​មិន​ត្រឹមត្រូវ។" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "របាយការណ៍​​ច្បាប់ដើម និង​ការ​បកប្រែ​មាន​ភាសា​​មូលដ្ឋាន (language) ដូច​គ្នា។" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "បាន​ទាមទារ​មូលដ្ឋាន។" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "វាល​ \"ឈ្មោះ​ទីតាំង\" យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន​ ៣ តួ​អក្សរ​ និង​មាន​ប្រវែង​មិន​លើស​ពី ២០០ តួអក្សរ​ឡើយ។" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "បាន​ទាមទារ​វាល \"ឈ្មោះ​ទីតាំង\" ។" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "វាល​រយៈ​បណ្ដោយ​មិន​បង្ហាញ​ថា​​មាន​រយៈ​បណ្ដោយ​​ត្រឹមត្រូវ​ទេ។" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "វាល​រយៈ​បណ្ដោយ​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​​​លើ​ផែនទី ដើម្បី​បង្ហាញ​ទីតាំង។" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "វាល​អ៊ីមែល​មិន​បង្ហាញ​ថា​មាន​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "វាល​​អ៊ីមែល​យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន ៤ តួ​អក្សរ​ និង​មាន​ប្រវែង​មិន​លើស​ពី ៦៤ តួអក្សរ​ឡើយ។" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "វាល​នាម​ខ្លួន​យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន ៣ តួ​អក្សរ​ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ​ទេ។" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "វាល​នាម​ត្រកូល​​យ៉ាង​ហោច​ណាស់​ត្រូវ​មាន ២ តួអក្សរ និង​មាន​ប្រវែង​មិន​លើស​ពី ១០០ តួអក្សរ​ទេ។" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "វាល​កាលបរិច្ឆេទ​ជូន​ចំពោះ មិន​បង្ហាញ​ថា​មាន​កាលបរិច្ឆេទ​ត្រឹមត្រូវ​ទេ។" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "សូម​បញ្ចូល​កាលបរិច្ឆេទ​ជូន​ចំពោះ​ដែល​ត្រឹមត្រូវ។ វា​មិន​អាច​ធំ​ជាង​ថ្ងៃ​នេះ។" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "កាលបរិច្ឆេទ ​ពី ​របស់​អ្នក​មិន​អាច​ធំ​ជាង​កាលបរិច្ឆេទ ​ជូន​ចំពោះ​ របស់​អ្នក​ទេ។" diff --git a/application/i18n/po/po-km/reporters.po b/application/i18n/po/po-km/reporters.po new file mode 100644 index 0000000000..17de46e50b --- /dev/null +++ b/application/i18n/po/po-km/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Sokhem Khoem , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "វាល​រយៈ​ទទឹង​មិន​បង្ហាញ​ថា​មាន​រយៈ​ទទឹង​ត្រឹមត្រូវ​ទេ។" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "វាល​រយៈ​ទទឹង​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​តំណ​​លើ​ផែនទី​ដើម្បី​​បង្ហាញ​ទីតាំង។" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "វាល​កម្រិត​អ្នក​រាយការណ៍​មិន​បង្ហាញ​ថា​មាន​កម្រិត​ត្រឹមត្រូវ​ទេ។" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "វាល​កម្រិត​អ្នក​រាយការណ៍​មិន​បង្ហាញ​ថា​មាន​កម្រិត​ត្រឹមត្រូវ​ទេ។" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "វាល​ឈ្មោះ​ទីតាំង​​យ៉ាង​ហោច​ណាស់​ត្រូវ​តែ​ ៣ និង​មាន​ប្រវែង​ជាង ២០០ តួអក្សរ។" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "វាល​ឈ្មោះ​ទីតាំ​ង​ត្រូវ​បាន​ទាមទារ។" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "វាល​រយៈ​បណ្ដោយ​មិន​បង្ហាញ​ថា​មាន​រយៈ​បណ្ដោយ​ត្រឹមត្រូវ​ទេ។" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "វាល​រយៈ​បណ្ដោយ​ត្រូវ​បាន​ទាមទារ។ សូម​ចុច​តំណ​លើ​ផែនទី ដើម្បី​បង្ហាញ​ទីតាំង។" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "អ្នក​រាយការណ៍​មិន​ត្រឹមត្រូវ" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "អ្នក​រាយការណ៍​មិន​ត្រឹមត្រូវ" diff --git a/application/i18n/po/po-km/reports.po b/application/i18n/po/po-km/reports.po new file mode 100644 index 0000000000..6ae0942be3 --- /dev/null +++ b/application/i18n/po/po-km/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Ath Ell , 2013 +# Seng Sutha , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "សូម​ផ្ទៀងផ្ទាត់​ថា​អ្នក​បាន​ពិនិត្យមើល​ធាតុ​ហើយ" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "សូម​ផ្ទៀងផ្ទាត់​ថា​អ្នក​បាន​ពិនិត្យមើល​ធាតុ​​ហើយ​" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "របាយការណ៍​ត្រូវ​តែ​រៀបចំ​តាម​ប្រភេទ​មុន​នឹង​​​ត្រូវ​បាន​អនុម័ត" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "អ្នក​មិន​មាន​សិទ្ធិ​ក្នុង​ការ​ធ្វើ​សកម្មភាព​នេះ​​​ទេ" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "អ្នក​ត្រូវ​តែ​ជ្រើស​ឯកសារ​ដើម្បី​ផ្ទុក" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "ឯកសារ​ដែល​ផ្ទុក​ត្រូវ​តែ​​មាន​​ទ្រង់ទ្រាយ​ជា .csv ឬ .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "ឯកសារដាក់ចូលហាក់ដូចជាមិនមានអី" diff --git a/application/i18n/po/po-km/roles.po b/application/i18n/po/po-km/roles.po new file mode 100644 index 0000000000..1751002fe9 --- /dev/null +++ b/application/i18n/po/po-km/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "វាល​សេចក្ដី​ពណ៌នា​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​៣ និង​យ៉ាង​ច្រើន​១០០។" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "បាន​ទាមទារ​វាល​សេចក្ដី​ពណ៌នា។" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "វាល​ឈ្មោះ​ត្រូវតែ​ជា​អក្សរ ឬ​លេខ​ប៉ុណ្ណោះ។" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "វាល​ឈ្មោះ​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​២ និង​យ៉ាង​ច្រើន៣០។" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "តួនាទី​របស់​អ្នកប្រើ​ជាន់ខ្ពស់ មិន​អាច​កែប្រែ​បាន​ទេ។" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "បាន​ទាមទារ​វាល​ឈ្មោះ។" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "វាល​កម្រិត​ចូល​ដំណើរការ​ត្រូវតែ​ជា​លេខ​នៅ​ចន្លោះ​រវាង​ពី​០-១០០។" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "វាល​កម្រិត​ចូល​ដំណើរការ​ត្រូវតែ​ជា​លេខ​នៅ​ចន្លោះ​រវាង​ពី​០-១០០។" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "វាល​សិទ្ធិ​ត្រូវតែ​ជា​លេខ​នៅ​ចន្លោះ​រវាង​ពី​០-១០០។" diff --git a/application/i18n/po/po-km/settings.po b/application/i18n/po/po-km/settings.po new file mode 100644 index 0000000000..26bcfc1eef --- /dev/null +++ b/application/i18n/po/po-km/settings.po @@ -0,0 +1,861 @@ +# +# Translators: +# Seng Sutha , 2013 +# Sokhem Khoem , 2014 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-19 03:59+0000\n" +"Last-Translator: Sokhem Khoem \n" +"Language-Team: Khmer (http://www.transifex.com/projects/p/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "អនុញ្ញាត​ឲ្យ​វាល​មតិយោបល់​មិន​មាន​បង្ហាញ​តម្លៃ​ត្រឹមត្រូវ​ឡើយ។" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "អនុញ្ញាត​ឲ្យ​វាល​មតិយោបល់​ត្រូវ​បាន​ទាមទារ។" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "​រួមបញ្ចូល​វាល​មតិ​ព័ត៌មាន​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "បាន​ទាមទារ​ឲ្យ​ដាក់​បញ្ចូល​វាល​មតិ​យោបល់។" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "ដាក់បញ្ចូល​វាល​ប្រភេទ​អត្ថបទ​ព័ត៌មាន​មិន​បង្ហាញ​ថា​​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "ដាក់​បញ្ចូល​វាល​ប្រភេទ​អត្ថបទ​ព័ត៌មាន​ត្រូវ​បាន​ទាមទារ។" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "អនុញ្ញាត​ឲ្យ​វាល​ជូនដំណឹង​មិន​បង្ហាញ​​​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ។" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "អនុញ្ញាត​ឲ្យ​វាល​ជូនដំណឹង​ត្រូវ​បាន​ទាមទារ។" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "អនុញ្ញាត​ឲ្យ​វាល​របាយការណ៍​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ឡើយ។" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "បាន​ទាមទារ​វាល​អនុញ្ញាត​របាយការណ៍។" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "វាល​ចែក​រំលែក​ស្ថានភាព​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ឡើយ។" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "បាន​ទាមទារ​វាល​សភាព​ចែករំលែក។" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "លេខ​លំនាំដើម​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "ចំនួន​អតិបរមា​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "ចំនួន​អតិបរមា​នៃ​សំណើ API ក្នុង​មួយ​អាសយដ្ឋាន IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "វាល Akismet មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "វាល Akismet មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "វាល​បដា​តំបន់​បណ្ដាញ​មិន​បង្ហាញ​ថា​មាន​រូបភាព​ត្រឹមត្រូវ​ទេ ។ ទ្រង់ទ្រាយ​ដែល​ព្រម​ទទួលយក​មាន​តែ .JPG, .PNG and .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "សូម​ប្រាកដ​ថា​ទំហំ \"រូបភាព​បដា\" ​គឺ​តិច​ជាង ២៥០ គីឡូបៃ។" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "វាល \"រូបភាព​បដា\" ​មិន​បង្ហាញ​​​ថា​មាន​ឯកសារ​ត្រឹមត្រូវ​ទេ។" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "បាន​ទាមទារ​វាល​ទំព័រ​ឃ្លាំង​សម្ងាត់។" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "វាល​ទំព័រ​ឃ្លាំង​សម្ងាត់​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "វាល​ជំនាន់​​​ទំព័រ​ឃ្លាំង​​​សម្ងាត់​​មិន​​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "បាន​ទាមទារ​វាល​ជំនាន់​ទំព័រ​ឃ្លាំង​​សម្ងាត់។" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "ម៉ាស៊ីន​មេ​របស់​អ្នក​ហាក់​ដូចជា​មិន​បាន​កំណត់​រចនាសម្ព័ន្ធ​ដើម្បី​ប្រើ URLs ​ត្រឹមត្រូវ​។ អ្នក​ចាំបាច់​ត្រូវ​ប្ដូរ​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​មេ​របស់​អ្នក​ជាមុន ទើប​អាច​បើក URLs ត្រឹមត្រូវ​បាន។ មើល​ព័ត៌មាន​បន្ថែម​អំពី​របៀប​បើក URLs ត្រឹមត្រូវ​នៅ សម្រាប់​វេទិកា​ប្រកាស​នេះ" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "ជម្រើស​នេះ​ធ្វើឲ្យ​ Ushahidi​​​ អាច​ចូល​ដំណើរការ​បាន​តាមរយៈ URLs \"ត្រឹមត្រូវ\" (ដោយ​គ្មាន \"index.php\" នៅ​ក្នុង URL)។" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "បើក URLs ត្រឹមត្រូវ" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs ត្រឹមត្រូវ" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "វាល​លេខ Clickatell API ត្រូវតែ​មិន​មែន​​​ប្រវែង​ច្រើន​​ជាង ​២០ ​តួអក្សរ។" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "បាន​ទាមទារ​វាល​លេខ Clickatell API។" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "វាល​ពាក្យ​សម្ងាត់ Clickatell ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច​ ៥ ហើយ​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "បាន​ទាមទារ​វាល​ពាក្យសម្ងាត់ Clickatell ។" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "វាល​អ្នកប្រើ Clickatell ត្រូវតែ​មាន​ប្រវែង​តួអក្សរ​​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "បាន​ទាមទារ​វាល​ឈ្មោះ​អ្នកប្រើ Clickatell ។" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "កំណត់​​រចនាសម្ព័ន្ធ​ផែនទី" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "ទីតាំង​លំនាំដើម" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "វាល​មតិ​ព័ត៌មាន​មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "វាល​ពណ៌​ត្រូវតែ​មាន​ប្រវែង​តួអក្សរ​មិន​ច្រើនជាង ៦។" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "បាន​ទាមទារ​វាល​ពណ៌។" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "ទិដ្ឋភាព​ផែន​ទី​លំនាំដើម" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "កម្រិត​​ពង្រីក​លំនាំដើម" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "ទៅ​យក​ទីក្រុង​ពី Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គឺ​វែង​ពេក។" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "វាល​ពាក្យសម្ងាត់​ម៉ាស៊ីន​មេ​អ៊ីមែល​ត្រូវតែ​មាន​តួអក្សរ​យ៉ាងតិច ៥ និង​​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "បាន​ទាមទារ​ពាក្យសម្ងាត់​ម៉ាស៊ីន​មេ​អ៊ីមែល។" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គឺ​វែង​ពេក។" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "វាល​ច្រក​ម៉ាស៊ីន​មេ​អ៊ីមែល​គឺ​វែង​ពេក។" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "បាន​ទាមទារ​វាល​ប្រភេទ​ម៉ាស៊ីន​មេ​អ៊ីមែល។" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "វាល​ឈ្មោះ​អ្នកប្រើ​ម៉ាស៊ីន​មេ​អ៊ីមែល​ត្រូវតែ​មាន​តួអក្សរ​​មិន​ច្រើន​ជាង ៥០ តួ​អក្សរ​ឡើយ។" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "បាន​ទាមទារ​វាល​ឈ្មោះ​អ្នកប្រើ​ម៉ាស៊ីន​មេ​អ៊ីមែល។" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "ជម្រើស​រៀបចំ Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "ដើម្បី​ទទួល​បាន​ព័ត៌មាន​ខាងក្រោម អ្នក​ចាំបាច់​ត្រូវ​បង្កើត​កម្មវិធី Facebook ថ្មី​នៅ" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "ការ​កំណត់​នេះ​អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​តាម​រយៈ Facebook វា មិន បង្កើត​កម្មវិធី​ facebook សម្រាប់​ការ​ប្រើប្រាស់​របស់​អ្នក​ឡើយ" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "លេខ​សម្គាល់​កម្មវិធី Facebook" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "ការ​សម្ងាត់​របស់​កម្មវិធី Facebook" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "វាល​វិភាគ​របស់ Google ត្រូវតែ​មាន​លេខ​សម្គាល់​លក្ខណសម្បត្តិ​ត្រឹមត្រូវ​នៅ​ក្នុង​ទ្រង់ទ្រាយ UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "បើក HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "ជម្រើស​នេះ​ធ្វើឲ្យ​ Ushahidi ​អាច​ចូល​ដំណើរការ​បាន​ក្នុង​របៀប​មិន​សុវត្ថិភាព ដោយ​មិន​មាន \"https://\" នៅ​ក្នុង​បុព្វបទ URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "ជម្រើស​នេះ​ធ្វើឲ្យ​ Ushahidi ​អាច​ចូល​ដំណើរការ​បាន​ក្នុង​របៀប​មិន​សុវត្ថិភាព​ជាមួយ https នៅ​ក្នុង​បុព្វបទ URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (ផ្នែក​ខាងមុខ) ​មិន​បង្ហាញ​​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "បាន​ទាមទារ​វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (ផ្នែក​ខាងមុខ)។" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (អ្នក​គ្រប់គ្រង) មិន​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ​ទេ។" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "បាន​ទាមទារ​វាល​ធាតុ​ក្នុង​មួយ​ទំព័រ (អ្នក​គ្រប់គ្រង)។" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "​ការ​​រៀបចំ​ក្រុមហ៊ុន​ផ្ដល់​ផែន​ទី​របស់​អ្នក​គឺ​ដំណើរការ​យ៉ាង​ងាយស្រួល​មួយ។ ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​ដែល​មាន​សោ API ពី​តំបន់​បណ្ដាញ​របស់​ក្រុមហ៊ុន​ផ្ដល់ និង​បញ្ចូល​សោ API ។" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "កម្រិត​ពង្រីក" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​ផែនទី" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "ជ្រើស​សោ API ថ្មី" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "យក​សោ API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "ការ​រៀបចំ​ក្រុមហ៊ុន​ផ្ដល់​ផែន​ទី​របស់​អ្នក​គឺ​ដំណើរការ​យ៉ាង​ងាយស្រួល​មួយ។ ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​ដែល​មាន​សោ API ពី​តំបន់​បណ្ដាញ​របស់​ក្រុមហ៊ុន​ផ្ដល់ និង​បញ្ចូល​សោ API ។" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "ក្រុមហ៊ុន​ផ្ដល់​ផែនទី" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "បន្ទាត់​ពេលវេលា​ផែនទី" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "ការ​កំណត់​ផែនទី" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "តើ​ការ​ប្រើប្រាស់ Ushahidi ​នេះ​មាន​នៅ​ច្រើន​ប្រទេស​ដែរ​ឬទេ?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "សូម​ជ្រើស​ប្រទេស​លំនាំដើម" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "ចុច រួច​អូស​ផែនទី​ដើម្បី​កំណត់​ទីតាំង​បន្ថែម​របស់​អ្នក" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "ប្រមូលផ្ដុំ​របាយការណ៍​នៅ​លើ​ផែនទី" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "អនុញ្ញាត​ឲ្យ​អ្នកប្រើ​ផ្ញើ​សេចក្ដី​អធិប្បាយ​ទៅកាន់​របាយការណ៍" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "រួម​ទាំង​មតិ​ព័ត៌មាន RSS នៅ​លើ​តំបន់បណ្ដាញ" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "បង្ហាញ​ប្រភេទ​ថ្មី​ពីអត្ថបទ​ព័ត៌មាន" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "អនុញ្ញាត​អ្នកប្រើ​ឲ្យ​ជាវ​សម្រាប់​ការ​ជូនដំណឹង" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "អនុញ្ញាត​ឲ្យ​អ្នកប្រើ​ផ្ញើ​របាយការណ៍" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "សោ Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "បដា​របស់​តំបន់បណ្ដាញ" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "ប្លុក​ក្នុង​មួយ​ជួរដេក" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "ទំព័រ​ឃ្លាំង​សម្ងាត់" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "រយៈពេល​ទំព័រ​ឃ្លាំង​សម្ងាត់" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "បើក​ការ​ពិនិត្យ​ចូល" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "ឃ្លា​រក្សាសិទ្ធិ​តំបន់បណ្ដាញ" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "ពណ៌​លំនាំដើម​សម្រាប់​ប្រភេទ​ទាំងអស់" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "រូបតំណាង​លំនាំដើម​សម្រាប់​ប្រភេទ​ទាំងអស់" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "លុប​រូបភាព​បដា" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "លុប​រូបតំណាង​លំនាំដើម" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "បង្ហាញ​ទំព័រ​ទំនាក់ទំនង" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "បង្ហាញ​ទំព័រ \"របៀប​ជួយ\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "អាសយដ្ឋាន​អ៊ីមែល​ជូនដំណឹង" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "ដើម្បី​អាច​ទទួល​របាយការណ៍​តាម​អ៊ីមែល​បាន​ សូម​កំណត់​រចនាសម្ព័ន្ធ​អ៊ីមែល​ការ​កំណត់​គណនី​របស់​អ្នក" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "អាសយដ្ឋាន​អ៊ីមែល​របស់​តំបន់​បណ្ដាញ" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "ការ​វិភាគ​តាម Google" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "លេខ​សម្គាល់​លក្ខណសម្បត្តិ​តំបន់បណ្ដាញ - ទ្រង់ទ្រាយ៖ UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "ធាតុ​ក្នុង​មួយ​ទំព័រ - កម្មវិធី​ខាងមុខ" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "ធាតុ​ក្នុង​មួយ​ទំព័រ - អ្នក​គ្រប់គ្រង" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "ដើម្បី​ការពារ​សារ​ឥតបានការ សូម​ប្រើ Akismet ដោយ​ស្វ័យប្រវត្តិ។
អ្នក​អាច​យក​សោ API បាន​ដោយ​ចុះឈ្មោះ​សម្រាប់​គណនី​អ្នកប្រើ WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "ព័ត៌មាន​សម្ងាត់​របស់ Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "តំបន់បណ្ដាញ​របស់ Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "ភាសា​តំបន់បណ្ដាញ" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "អ្នកប្រើ​ដែល​បាន​អនុម័ត​ដោយ​ដៃ" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "សារ​របស់​តំបន់បណ្ដាញ" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "ឈ្មោះ​តំបន់បណ្ដាញ" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "ការ​អភិវឌ្ឍ​ឯកជន" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "ទាមទារ​ការ​អះអាង​អ៊ីមែល​របស់​អ្នកប្រើ" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "ដាក់​ស្នើ​សារ​របាយការណ៍" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "បើក​ស្ថិតិ (បាន​ទុក​នៅ​លើ​ម៉ាស៊ីន​មេ​ Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "បន្ទាត់​ស្លាក​របស់​តំបន់បណ្ដាញ" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "តំបន់​ពេលវេលា" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "ការ​កំណត់​តំបន់បណ្ដាញ" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "លក្ខខណ្ឌ​ស្វែងរក​របស់ Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "សញ្ញា (#) បំបែក​ដោយ​សញ្ញា​ក្បៀស (,)" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Feeds geolocation - ឈ្មោះអ្នកប្រើ Geonames" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "វាល​អ៊ីមែល​របស់​តំបន់បណ្ដាញ​មិន​បង្ហាញ​ថា​មាន​អាសយដ្ឋាន​អ៊ីមែល​ត្រឹមត្រូវ​ទេ។" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "វាល​អាសយដ្ឋាន​អ៊ីមែល​ត្រូវតែ​មាន​អក្សរ​យ៉ាង​តិច ៤ និង​​មិន​ច្រើន​ជាង ១០០ តួ​អក្សរ​ឡើយ។" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "វាល​ឈ្មោះ​តំបន់បណ្ដាញ​ត្រូវតែ​មាន​តួ​​អក្សរ​យ៉ាង​តិច​ ៣ និង​មិន​ច្រើន​ជាង ​៥០ តួ​អក្សរ​ឡើយ។" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "បាន​ទាមទារ​វាល​ឈ្មោះ​តំបន់បណ្ដាញ។" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "វាល​បន្ទាត់​ស្លាក​ត្រូវតែ​មាន​តួ​អក្សរ​យ៉ាងតិច​ ៣ និង​មិន​ច្រើន​ជាង ​១០០ តួ​អក្សរ​ឡើយ។" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "បាន​ទាមទារ​វាល​បន្ទាត់​ស្លាក។" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "លេខ Clickatell API របស់​អ្នក" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "ពិនិត្យ​សមតុល្យ​ឥណទាន Clickatell របស់​អ្នក" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "ផ្ទុក​សមតុល្យ​ឥណទាន" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "ពាក្យសម្ងាត់ Clickatell របស់​អ្នក" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "ចុះឈ្មោះ​សម្រាប់​សេវាកម្ម Clickatells ដោយ ចុច​ទីនេះ" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "បញ្ចូល​ព័ត៌មាន​ចូល​ដំណើរការ Clickatell របស់​អ្នក​នៅ​ខាងក្រោម" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "ឈ្មោះ​អ្នកប្រើ Clickatell របស់​អ្នក" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS គឺជា​កម្មវិធី​កូដ​ចំហ​ឥត​បង់ថ្លៃ​ដែល​អ្នក​ប្រើ​អាច​ផ្ញើ និង​ទទួល​សារ​អត្ថបទ​ជា​ក្រុម​តាម​រយៈ​ទូរស័ព្ទ​ចល័ត​។ ចុច​នៅ​លើ​ប្រអប់​ខាង​ក្រោម ដើម្បី​ទាញ​យក​កំណែ​ចុងក្រោយ​ពី FrontlineSMS.com។" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "ទាញ​យក និង​ដំឡើង FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "សេចក្ដី​ណែនាំ​លម្អិត​អំពី​របៀប​ផ្ញើ​សារ SMS ពី​ការ​ដំឡើង FronlineSMS របស់​អ្នក​​​​ here។ URL និង​សោ API ខាងក្រោម​ត្រូវ​បាន​ទាមទារ​ដើម្បី​រៀបចំ​ធ្វើ​សមកាលកម្ម​​ជាមួយ FrontlineSMS។" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "ចម្លង និង​បិទភ្ជាប់​វា​ទៅ​កាន់​វាល \"អាសយដ្ឋាន\" FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "ចម្លង និង​បិទភ្ជាប់​វា​ទៅកាន់​វាល FrontlineSMS \"Ushahidi API Key\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "តភ្ជាប់ FrontlineSMS ទៅ​កាន់​ការ​ប្រើប្រាស់ Ushahidi នេះ" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "បញ្ចូល​លេខ​ទូរស័ព្ទ​ដើម្បី​តភ្ជាប់​ទៅកាន់ Frontline SMS នៅ​ក្នុង​វាល​ខាងក្រោម" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "បញ្ចូល​លេខ​ខាងក្រោម​ដោយ​មិន​ចាំបាច់​មាន​សញ្ញា + ឬ​សញ្ញា - ឡើយ" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "ជម្រើស​ទី ១៖ ប្រើ Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "ជម្រើស​ទី ២៖ ប្រើ​ច្រក SMS សាកល" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "ជម្រើស​រៀបចំ SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "វាល​មួយ​របស់​ទូរស័ព្ទ​បង្ហាញ​ថា​មាន​តម្លៃ​ត្រឹមត្រូវ។ " + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "វាល​មួយ​របស់​ទូរស័ព្ទ​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "វាល​ទី ២ ​របស់​ទូរស័ព្ទ​គឺ​វែង​ពេក។" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "វាល​ទី ២ ​របស់​ទូរស័ព្ទ​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ " + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "វាល​ទី ៣​ របស់​ទូរស័ព្ទ​គឺ​វែង​ពេក។" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "វាល​ទី ៣ ​របស់​ទូរស័ព្ទ​គួរ​មានតែ​លេខ​ប៉ុណ្ណោះ។" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "ជម្រើស​រៀបចំ Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "ដើម្បី​ទទួល​បាន​ព័ត៌មាន​ខាងក្រោម រៀបចំ​ការ​ប្រើប្រាស់​របស់​អ្នកជា​កម្មវិធី​ Twitter ថ្មី​នៅ" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "សោ​អ្នក​ប្រើប្រាស់" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "សោ​អ្នក​ប្រើប្រាស់" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "ចូល​ដំណើរការ​​ថូខឹន" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "ចូល​ដំណើរការ​ថូខឹន​សម្ងាត់" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "កំណត់​ការ​សាកល្បង" diff --git a/application/i18n/po/po-km/sharing.po b/application/i18n/po/po-km/sharing.po new file mode 100644 index 0000000000..997a63f0bb --- /dev/null +++ b/application/i18n/po/po-km/sharing.po @@ -0,0 +1,74 @@ +# +# Translators: +# Ath Ell , 2013 +# Sokhem Khoem , 2013 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "កាលបរិច្ឆេទ​ចូល" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "បាន​បន្ថែម​កាលបរិច្ឆេទ" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "ចូល​ដំណើរការ​ចុងក្រោយ" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "វាល​ពណ៌​ត្រូវតែ​មាន៦តួអក្សរ។" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "បាន​ទាមទារ​វាល​ពណ៌។" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "ឈ្មោះ​ចែករំលែក​ហាក់​បង្ហាញ​ថា​មិន​ត្រឹមត្រូវ។" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "បាន​ទាមទារ​ឈ្មោះ​ចែករំលែក។" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "URL របស់​តំបន់​បណ្ដាញ​គឺ​មាន​រួចហើយ។" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL របស់​តំបន់​បណ្ដាញ​ហាក់​បង្ហាញ​ថា​មិន​ត្រឹមត្រូវ។" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "បាន​ទាមទារ URL របស់​តំបន់​បណ្ដាញ។" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "វាល URL តំបន់​បណ្ដាញ​មិន​បង្ហាញ​ថា​ជា​ URL ត្រឹមត្រូវ​ទេ។" diff --git a/application/i18n/po/po-km/stats.po b/application/i18n/po/po-km/stats.po new file mode 100644 index 0000000000..9ca8d7b9e2 --- /dev/null +++ b/application/i18n/po/po-km/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "បាន​អនុម័ត" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "ប្រភេទ" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "ប្រភេទ​ប៉ះទង្គិច" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "តារាង​នេះ​ផ្ដល់ឲ្យ​អ្នក​នូវ​ទិដ្ឋភាព​របាយការណ៍​លីនេអ៊ែរ​តាម​ប្រភេទ​នៃ​ពេលវេលា។ រមូរ​ពី​ឆ្វេង​ទៅ​ស្ដាំ​ដើម្បី​មើល​ការ​ប្រៀបធៀប​ទិដ្ឋភាព​ប្រភេទ​ខុសៗគ្នា។ រំកិល​កណ្ដុរ​ពីលើ​ក្រាប​ដើម្បី​មើល​សេចក្ដី​លម្អិត។" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "ជ្រើស​ជួរ​កាលបរិច្ឆេទ។" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "ប្រទេស" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "ប្រទេស" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "ប្រទេស​ដែល​មិន​អភិវឌ្ឍ" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "នេះ​ជា​ផ្នែក​ស្ថិតិ​ដែល​នឹង​មាន​សេចក្ដី​ពណ៌នា​ទូទៅ​នៅ​ទីនេះ។ ឥឡូវនេះ រុករក​ដោយ​ប្រើ​តំណ​ប្រភេទ​រង​ខាងលើ។" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "កំហុស" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "សទ្ទានុក្រម" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "រក​ឃើញ​សេចក្ដី​សង្ខេប" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "គំនូសតាង" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "ទិដ្ឋភាព​ទំព័រ" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "ចំនួន​ទំព័រ​សរុប​ដែល​អ្នក​ទស្សនា​បាន​មើល​តំបន់​បណ្ដាញ​របស់​អ្នក" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "របាយការណ៍" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "ប្រភេទ​របាយការណ៍" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "ស្ថិតិ​របាយការណ៍" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "របាយការណ៍​ស្ថានភាព" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "កាត​របាយការណ៍" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "ស្ថានភាព​របាយការណ៍" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "មិន​បាន​រៀបចំ​ស្ថានភាព" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "១​ខែ" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "៣​ខែ" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "៦​ខែ" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "ទាំងអស់" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "មិន​បាន​អនុម័ត" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "អ្នក​ទស្សនា​តែ​ម្នាក់" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "ចំនួន​អ្នក​អ្នក​ចូល​ទស្សនា​ដាច់ដោយឡែក​ទៅ​លើ​ការ​បង្ហាញ​របស់​អ្នក។ អ្នក​ទស្សនា​តែ​ម្នាក់​ត្រូវ​បាន​កំណត់​ដោយ​ខូគី។ អ្នក​ទស្សនា​ដែល​មិន​បាន​បើក​ខូគី នឹង​ត្រូវ​បាន​សម្គាល់​ដោយ​ប្រើការ​គិត​ទៅលើ​ការ​ស្រាវជ្រាវ​ធម្មតា​ចំពោះ​អាសយដ្ឋាន IP គុណភាព​បង្ហាញ កម្មវិធី​រុករក កម្មវិធី​ជំនួយ ប្រព័ន្ធ​ប្រតិបត្តិការ។ល។" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "មិន​បាន​ផ្ទៀងផ្ទាត់" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "បាន​ផ្ទៀងផ្ទាត់" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "សេចក្ដី​សង្ខេប​របស់​អ្នក​ទស្សនា" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "ទស្សនា" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "ការ​ទស្សនា​គឺជា​កំណត់ត្រា​របស់​អ្នក​ទស្សនា​តែ​ម្នាក់ ដែល​ចូល​មើល​តំបន់​ច្រើន​ជាង​៣០នាទី លើ​ទិដ្ឋភាព​ទំព័រ​ចុងក្រោយ​របស់​គាត់/នាង។" diff --git a/application/i18n/po/po-km/tooltips.po b/application/i18n/po/po-km/tooltips.po new file mode 100644 index 0000000000..25380168f4 --- /dev/null +++ b/application/i18n/po/po-km/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Seng Sutha , 2013 +# Sokhem Khoem , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "ការ​បន្ថែម​នេះ​​មាន​​របាយ​​ការណ៍​អំពី​ប្រភេទ​​ផ្សេងៗ។ ប្រសិនបើ​អ្នក​ជ្រើស​ប្រភេទ ១ នៅ​ទី​នេះ ហើយ​របាយការណ៍​មាន​ប្រភេទ​ដែល​ភ្ជាប់​ជាមួយ​វា របាយការណ៍​នឹង​មាន​ទាំង​ប្រភេទ ១ និង​ប្រភេទ ២។" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "អនុម័ត ឬ​មិន​អនុម័ត។ ប្រសិនបើ​​បាន​អនុម័ត វា​នឹង​បង្ហាញ​ជា​សាធារណៈ។" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "អ្នក​​អាច​កំណត់​សញ្ញា​​សម្គាល់​​​ដើម្បី​ធ្វើ​ឲ្យ​អ្នក​ប្រើ​សកម្ម។ ជ្រើស​សញ្ញា​សម្គាល់​ដែល​បាន​កំណត់​នៅ​ទី​នេះ។" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "វា​កំណត់​តាម​ម៉ោង និង/ឬ នាទី​​ចន្លោះ​ពេល​នៅ​ក្នុង​ 24 ម៉ោង។ ប្រសិនបើ​អ្នក​បញ្ចូល​មុន​ពេល​​វេលា​នៅ​ក្នុង​វាល​ទីពីរ វា​នឹង​ត្រូវ​បាន​ត្រឡប់​ទៅ​ដើម​វិញ។ ពេលវេលា​នេះ​ត្រូវ​តែ​នៅ​ក្នុង​ថ្ងៃ​តែមួយ។ ពេលវេលា​នេះ​ត្រូវ​បាន​ពិនិត្យមើល​​នៅ​ពេលវេលា​ដែល​អ្នក​បាន​កំណត់​រចនាសម្ព័ន្ធ​នៅ​លើ​តំបន់​បណ្ដាញ​​របស់​អ្នក​នៅ​ក្នុង​តំបន់​បណ្ដាញ​ដែល​បាន​កំណត់ ហើយ មិន មាន​ភាព​ចាំបាច់​នៅ​តំបន់​ពេលវេលា​អ្នក​ប្រើ​ដែល​អ្នក​ទាក់ទង​ជាមួយ​ការប្រើប្រាស់​របស់​អ្នក​ឡើយ។ ទុក​វា​​ឲ្យ​នៅ 00:00 ដល់ 00:00 ដើម្បី​មិន​អើ​ពើ​អ្នក​សម្របសម្រួល​នេះ។" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "ប្រសិនបើ​អ្នក​​គ្រាន់​តែ​ចង់​ធ្វើ​ឲ្យ​សកម្ម នៅ​ពេល​ដែល​ប្រភេទ​ដែល​មាន​ត្រូវ​បាន​ប្រើ។ វា​នឹង​អនុញ្ញាត​ឲ្យ​សកម្ម ប្រសិនបើ​​ប្រើ​ប្រភេទ​តែមួយ។ ឧទាហរណ៍ ប្រសិនបើ​អ្នក​ជ្រើស​ប្រភេទ ១ និង​ប្រភេទ ២ នៅ​ទីនេះ ហើយ​របាយការណ៍​ត្រូវ​បាន​ដាក់​ស្នើ​ឲ្យ​ប្រើ​ប្រភេទ ២ និង​ប្រភេទ ៣ វា​នឹង​ធ្វើ​ការ​សាកល្បង។" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "ប្រសិនបើ​​​សកម្មភាព​នេះ​កើត​ឡើង​មាន​នៅ​ថ្ងៃ​នៃ​សប្ដាហ៍​កំណត់​វា​នៅ​ទី​នេះ។ សូម​ចងចាំ​ថា​​​ថ្ងៃ​ដែល​បាន​កំណត់​តាម​តំបន់​ពេលវេលា​​បាន​កំណត់​ពេលវេលា​នៅ​លើ​ការ​ប្រើប្រាស់​របស់​អ្នក។ ចុច ប្ដូរ (shift) command, ឬ ត្រួត​ពិនិត្យ​ត្រួត​​សម្រាប់​ជម្រើស​​ថ្ងៃ​ច្រើន។" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "តួ​សេចក្ដី​អ៊ីមែល​ដែល​នឹង​ត្រូវ​ផ្ញើ។" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "ប្រធានបទ​អ៊ីមែល​ដែល​ត្រូវ​ផ្ញើ។" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "មតិ​ព័ត៌មាន​អាច​ជា​មតិ​ព័ត៌មាន​ទាំងអស់ ឬ​មតិ​ព័ត៌មាន​ជាក់លាក់។ ប្រសិនបើ​អ្នក​ចង់​ឲ្យ​មតិ​ព័ត៌មាន​សកម្ម អ្នក​​ត្រូវ​ជ្រើស​វា​នៅ​ទី​នេះ។ ម៉្យាងទៀត អ្នក​នឹង​ទុក​វា​ \"ទាំងអស់\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "ឈ្មោះ​​អ្នក​ប្រើ​អ្នក​និពន្ធ Twitter (ឬ​ឈ្មោះ​អ្នក​ប្រើ​ច្រើន​ដែល​បាន​បំបែក​ដោយ​សញ្ញា​ក្បៀស)។ ប្រសិនបើ​​អ្នក​ចង់​ធ្វើ​ឲ្យ​សកម្ម​​សម្រាប់​សារ twitter​ ពី​អ្នក​ប្រើ​ជា​ពិសេស បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ​របស់​ពួកគេ​នៅ​ទៅ​នេះ (កុំ​បញ្ចូល @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "អ្នក​អាច​ជ្រើស​ទុក​ឲ្យ​នៅ​ទទេ ប្រសិនបើ​អ្នក​មិន​ចង់​ពិនិត្យមើល​ពាក្យ​គន្លឹះ​ម្ដងទៀត​ទេ​នោះ។ ប្រសិនបើ​អ្នក​បន្ថែម​ពាក្យ​នៅ​ទី​នេះ អ្នក​នឹង​ចាំបាច់​ត្រូវ​បំបែក​វា​ដោយ​សញ្ញា​ក្បៀស (,)។ ឧទាហរណ៍ ប្រសិនបើ​អ្នក​ចង់​ធ្វើ​ឲ្យ​សកម្ម នៅ​ពេល​អ្នក​ណា​ម្នាក់​​និយាយ​អំពី​ \"ស្រលាញ់\" ឬ \"សន្តិភាព\" នៅ​ក្នុង​សារ​របស់​ពួក​យើង អ្នក​នឹង​បន្ថែម \"ស្រលាញ់ សន្តិភាព\" នៅ​ក្នុង​ពាក្យ​គន្លឹះ​" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "អ្នក​​អាច​ជ្រើស​​ទីកន្លែង​ណាមួយ​​ ឬ​ទីតាំង​ជាក់លាក់។ ប្រសិនបើ​អ្នក​ជ្រើស​ទីតាំង​ជាក់លាក់ អ្នក​នឹង​ត្រូវ​បាន​ស្នើ​ដើម្បី​គូរ​ប្រអប់​មួយ​ជុំវិញ​ផ្ទៃ​ដែល​បញ្ជាក់​អំពី​សកម្មភាព​។ ឧទាហរណ៍ ប្រសិនបើ​អ្នក​ចង់​ធ្វើ​ឲ្យ​សកម្ម នៅ​ពេល​អ្នក​ណា​ម្នាក់​ដាក់​ស្នើ​របាយ​ការ​នៅ​ក្នុង Brazil អ្នក​នឹង​ជ្រើស \"ផ្ទៃ​ជាក់លាក់\" ហើយ​បន្ទាប់​មក​គូរ​ប្រអប់​ជុំវិញ Brazil។ អ្នក​អាច​បង្កើត​ប្រអប់​នេះ​តូច ឬ​ធំ​តាម​​តម្រូវ​ការ​បាន​។ អ្នក​​ក៏​អាច​​គូរ​ប្រអប់​ច្រើន​​បាន​ផង​ដែរ។" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "អ្នក​សម្របសម្រួល​នេះ​នឹង​ធ្វើ​ឲ្យ​សកម្ម​​នៅ​លើ N-th សម្រាប់​ជា​ក្រុម​ទាំងមូល ឬ​អ្នក​ប្រើ​ប្រាស់​ម្នាក់ៗ។ ទុក​ឲ្យ​នៅ​ទទេ កុំ​អើ​ពើ​វា។" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "វា​ជា​ចំណងជើង​លំនាំដើម​ដែល​ត្រូវ​បន្ថែម​ទៅ​របាយការណ៍។" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "ប្រសិនបើ​​​អ្នក​សម្របសម្រួល​ទាំងអស់​ខាង​លើ​ត្រូវ​បាន​​អនុម័ត ហើយ​ចម្លើយ​តប​ត្រូវ​បាន​ធ្វើ​ឲ្យ​សកម្ម។ វា​អាច​តម្រៀប​ពី​​ក្នុង​ការ​អនុម័ត​​របាយការណ៍ ដើម្បី​ផ្ញើ​អ៊ីមែល​ទៅ​អ្នក​ការ​​ប្រើប្រាស់។ ជ្រើស​ចម្លើយ​តប​នៅ​ទីនេះ ដើម្បី​ធ្វើ​ឲ្យ​ជម្រើស​បន្ថែម​សកម្ម​សម្រាប់​ចម្លើយ​តប​ជាក់លាក់។" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "ប្រសិនបើ​អ្នក​ជ្រើស \"ធ្វើ​ឲ្យ​អ្នក​ប្រើ​សកម្ម\" អ៊ីមែល​នឹង​ត្រូវ​បាន​ផ្ញើ​ទៅ​កាន់​​អ្នក​ណា​ម្នាក់​ដែល​​បាន​ប្រតិបត្តិ​សកម្មភាព​នេះ។ ប្រសិនបើ​អ្នក​ជ្រើស​ប៊ូតុង​មូល​ជិត​ប្រអប់​​បញ្ចូល​​​អ្នក​អាច​បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល​ផ្ទាល់ខ្លួន​បាន។ វា​មាន​ប្រយោជន៍ ប្រសិនបើ​​អ្នក​​រៀបចំ​​ធ្វើ​ឲ្យ​​ការ​ជូន​ដំណឹង​សកម្ម នៅ​ពេល​​បាន​មើល​ផ្នែក​នីមួយៗ​នៃ​របាយការណ៍​ផែនទី ការ​ចូល ឬ​សកម្មភាព​ផ្សេងៗ​ទៀត។" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "អ្នក​អាច​ជ្រើស​ថ្ងៃ​ច្រើន​បាន​នៅ​ទីនេះ។ ថ្ងៃ​ត្រូវ​បាន​កំណត់​តាម​​ការ​កំណត់​តំបន់​ពេល​វេលា​​​ការ​ប្រើប្រាស់​។ ដើម្បី​កំណត់​​កាលបរិច្ឆេទ​តាម​លំនាំដើម​ទាំងអស់ កុំ​ជ្រើស​កាលបរិច្ឆេទ​​​ណាមួយ។" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "ធ្វើ​ឲ្យ​សមាសភាគ​ចម្បង​​នៃ​ការ​រៀបចំ​ធ្វើ​ឲ្យ​សកម្មភាព​របស់​អ្នក​សកម្ម។ វា​ជា​ទីកន្លែង​ដែល​អ្នក​អាច​​កំណត់ ប្រសិនបើ​អ្នក​ចង​ឲ្យ​អ្វី​មួយ​កើត​ឡើយ នៅ​ពេល​អ្នក​ណា​​ម្នាក់​​ដាក់​ស្នើ​របាយការណ៍ ក្នុង​ការ​ចូល។ល។ អ្នក​​អាច​ឆ្លើយតប​​អំពី​សកម្មភាព​នេះ​បន្ទាប់​ពី​ជ្រើសរើស​មួយ។" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "អ្នក​ប្រើ​អាច​ជា​អ្នក​ណា​ម្នាក់ ឬ​អ្នក​ប្រើ​ជាក់លាក់។ ប្រសិនបើ​អ្នក​ចង់​ឲ្យ​តែ​អ្នក​ប្រើ​ជាក់លាក់​សកម្ម​ អ្នក​ត្រូវ​ជ្រើស​វា​​នៅ​ទី​នេះ។ ម៉្យាងទៀត អ្នក​ត្រូវ​ទុក​វា​​សម្រាប់​ \"​អ្នក​ណា​ម្នាក់\" នៅ​ពេល​រៀបចំ​​​សម្រាប់​អ្នក​ប្រើ​ទាំងអស់​​ដែល​ធ្វើ​សកម្មភាព​រួម​គ្នា​ជាមួយ​ប្រព័ន្ធ" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "សម្គាល់​របាយការណ៍​​ថា​បាន​​​ផ្ទៀងផ្ទាត់ ឬ​ក៏​មិន​បាន​​​ផ្ទៀងផ្ទាត់។" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "ទំព័រ​ជីវប្រវត្តិ​នៅ​លើ​តំបន់​បណ្ដាញ​នេះ​ប្រើ Gravatar។ ដោយ​ចុច​នៅ​លើ​រូបភាព​របស់​​អ្នក នឹង​យក​ទៅ​កាន់​តំបន់​បណ្ដាញ Gravatar ដែល​អ្នក​អាច​ផ្លាស់ប្ដូរ​រូបភាព​ជីវប្រវត្តិ​របស់​អ្នក។" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "បំបែក​តម្លៃ​នីមួយៗ​ដោយ​​ប្រើ​សញ្ញា​ក្បៀស ឧ. value1, value2 ។" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "បំបែក​តម្លៃ​នីមួយៗ​ដោយ​ប្រើ​សញ្ញា​ក្បៀស ឧ. value1, value2។ ក្នុង​ករណី​ដែល​អ្នក​ចង់​កំណត់​លំនាំដើម ចុង​បញ្ជី​​ជម្រើស​​របស់​អ្នក​ប្រើ :: ឧ. ប្រសិនបើ​អ្នក​ចង់​ធ្វើ​ឲ្យ value3 ជា​លំនាំដើម វា​​អាច​ជា​ value1, value2, value3::value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "បំបែក​ធាតុ​ជម្រើស​នីមួយៗ​ដោយ​ប្រើ​សញ្ញា​ក្បៀស ឧ. ធាតុ ១, ធាតុ ២។ល។" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "ចាប់ផ្ដើម​វាយ​លេខ​បញ្ជី។" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "ប្រធាន​បទ​សារ​ឯកជន" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "សារ​ឯកជន" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "អ្នក​អាច​ជ្រើស​ពណ៌​ដែល​នឹង​បង្ហាញ​នៅ​ខាងក្រោម​រូបភាព​ជីវប្រវត្តិ​របស់​អ្នក​នៅ​លើ​ជីវប្រវត្តិ​សាធារណៈ​របស់​អ្នក។ ពណ៌​នេះ​នឹង​បង្ហាញ​ជា​​ចំណុច​ពណ៌​នៅ​លើ​ផែន​ទី​សម្រាប់​ការ​ចូល​របស់​អ្នក។" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "នេះ​ជា​វិធី​មួយ​ដែល​អ្នក​បាន​រក​ឃើញ​នៅ​លើ​តំបន់​បណ្ដាញ។ ចងចាំ​ថា​វិធី​នោះ​​ប្រើ​ជា​សាធារណៈ!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "ប្រសិនបើ​បាន​កំណត់ វា​នឹង​​ក្លាយ​ជា​ពាក្យ​សម្ងាត់​ថ្មី​របស់​អ្នក។ ទុក​វា​ឲ្យ​នៅ​ទទេ ប្រសិនបើ​អ្នក​ចង់​រក្សាទុក​ពាក្យ​សម្ងាត់​បច្ចុប្បន្ន។" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "វា​​ត្រូវ​ការ​នៅ​ពេល​បង្កើត​អ្នក​ប្រើ​ថ្មី ហើយ​​នឹង​ក្លាយ​ជា​ពាក្យ​សម្ងាត់​របស់​អ្នក​ប្រើ។ អ្នក​គួរតែ​ផ្ដល់​ព័ត៌មាន​ឲ្យ​អ្នក​ប្រើ​ថ្មី​បាន​ដឹង​ក្នុង​ការ​ផ្លាស់ប្ដូរ​ពាក្យសម្ងាត់​បន្ទាប់​ពី​ចូល​​នៅ​ពេល​ដំបូង។" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "ជ្រើស បាទ/ចាស ដើម្បី​អនុញ្ញាត​ឲ្យ​​អ្នក​ទទួល​បាន​ការ​ជូន​ដំណឹង​តាម​រយៈ​អ៊ីមែល នៅ​ពេល​របាយការណ៍​ថ្មី ឬ​មតិយោបល់​ត្រូវ​បាន​បង្ហោះ​នៅ​លើ​តំបន់​បណ្ដាញ​របស់​អ្នក។" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "ពាក្យសម្ងាត់​បច្ចុប្បន្ន​របស់​អ្នក​។ យើង​​ទាមទារ​ឲ្យ​អ្នក​បញ្ចូល​ពាក្យ​សម្ងាត់​របស់​អ្នក ដើម្បី​ការពារ​ការ​ផ្លាស់ប្ដូរ​គណនី​របស់​អ្នក​​ណា​មួយ​ដែល​មិន​ត្រឹមត្រូវ​" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "ជីវប្រវត្តិ​របស់​អ្នក​អាច​ត្រូវ​បាន​មើល​ដោយ​អ្នក​ណា​ម្នាក់​​តាម​អ៊ីនធឺណិត ប្រសិនបើ​អ្នក​ធីក​ជម្រើស​នេះ។ វា​ជា​​វិធី​​ដែល​​ងាយស្រួល​បំផុត​ផង​ដែរ ក្នុង​ការ​បង្ហាញ​​របាយការណ៍​ដែល​អ្នក​ដាក់​ស្នើ ការ​ចូល​របស់​អ្នក ឧបករណ៍​សម្គាល់ ទាំងអស់​នៅ​លើ​ទំព័រ​មួយ។" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "វា​ជា​អាសយដ្ឋាន​ដែល​​​​អាច​រក​ឃើញ​ជីវប្រវត្តិ​សាធារណៈ​​របស់​អ្នក។" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "មិន​អាច​ផ្លាស់ប្ដូរ​ឈ្មោះ​អ្នក​ប្រើ​របស់​អ្នក​បាន​ទេ។" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "កម្រិត​ចូល​ដំណើរការ​ត្រូវ​បាន​ប្រើ​ដើម្បី​កំណត់​ឲ្យ​ចូល​ដំណើរការ​ផ្ទាល់ខ្លួន​ពី​ទិន្នន័យ​វាល។ កម្រិត​ចូល​ដំណើរការ​ខ្ពស់​បំផុត​អាច​ចូល​ដំណើរការ​វាល​ពី​កម្រិត​ទាប​ជាង។ អ្នក​គ្រប់គ្រង​កម្រិត​ខ្ពស់​មាន​កម្រិត​ចូល​ដំណើរការ​ខ្ពស់​បំផុត (100)។ ទិន្នន័យ​ជា​សាធារណៈ​ត្រូវ​បាន​បង្ហាញ​នៅ​កម្រិត​ចូល​ដំណើរការ​ទាប​បំផុត (0)។ ចំនួន​កម្រិត​​ចូល​ដំណើរការ​មាន 10។ អ្នក​គ្រប់គ្រង​មាន​កម្រិត​​​ចូល​ដំណើរការ​ 90 តាម​លំនាំដើម។" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "វា​ជា​អាសយដ្ឋាន​ដែល​នឹង​ត្រូវ​បាន​ប្រើ​ដើម្បី​ផ្ញើ​ការ​ជូនដំណឹង​អ៊ីមែល។" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ជ្រាវ​សម្រាប់​ការ​ជូន​ដំណឹង​តាមរយៈ​តំបន់​បណ្ដាញ។" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "វា​អនុញ្ញាត​ឲ្យ​ធ្វើ​របាយការណ៍​ស្រដៀង​គ្នា​ទៅ​នឹង​ចំណុច​តែមួយ​នៅ​លើ​ផែនទី" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "អនុញ្ញាត​ឲ្យ​​អ្នក​ប្រើ​ផ្ដល់​មតិយោបល់​លើ​របាយការណ៍​​នៅ​លើ​តំបន់​បណ្ដាញ​ចម្បង។" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "វា​អនុញ្ញាត​ឲ្យ​មតិ​ព័ត៌មាន RSS ត្រូវ​បាន​បង្ហាញ​នៅ​លើ​តំបន់​បណ្ដាញ​ចម្បង។" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "វា​អនុញ្ញាត​ឲ្យ​បង្កើត​ប្រភេទ​ថ្មី​ពី​អត្ថបទ​ព័ត៌មាន RSS ។" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ដាក់​ស្នើ​ព័ត៌មាន​តាម​រយៈ​សំណុំ​បែបបទ​តំបន់​បណ្ដាញ។" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "លេខ​លំនាំដើម​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "ចំនួន​អតិបរមា​នៃ​កំណត់ត្រា​ដែល​បាន​ទៅ​ប្រមូល​យក​ក្នុង​មួយ​សំណើ API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "ចំនួន​អតិបរមា​នៃ​សំណើ API ក្នុង​មួយ​អាសយដ្ឋាន IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "បដា​តំបន់​បណ្ដាញ​បង្ហាញ​នៅ​ខាងលើ​ផ្នែក​ខាង​មុខ​ចុង​នៃ​តំបន់​បណ្ដាញ ប្រសិនបើ​រូបរាង​ដែល​អ្នក​កំពុង​ប្រើ​គាំ​ទ្រ​វា។ ទំហំ​ដែល​បាន​ផ្ដល់​អនុសាសន៍​សម្រាប់​បដា​នេះ​អាស្រ័យ​លើ​រូបរាង​ដែល​អ្នក​​កំពុង​ប្រើ។ ចងចាំ​ថា​វា​នឹង​ជំនួស​ចំណងជើង​តំបន់​បណ្ដាញ និង tagline នៅ​​ផ្នែក​ខាងលើ​នៃ​ទំព័រ។" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "ចំនួន​ទប់ស្កាត់​ជួរឈរ​ដែល​នឹង​បង្ហាញ​នៅ​លើ​ជួរ​ដេក​នីមួយៗ។" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "បើក ឬ​បិទ​ទំព័រ​​ឃ្លាំង​សម្ងាត់។ វា​ធ្វើ​ឲ្យ​ទំព័រ​បង្ហាញ​យ៉ាង​លឿន​ដោយ​ការ​កាត់​ពេលវេលា​ឆ្លើយ​តប។ យើង​បាន​ផ្ដល់​អនុសាសន៍​ដោយ​ប្រើ​ឃ្លាំង​នៅ​លើ​តំបន់​បណ្ដាញ​ចរាចរណ៍​​ដែល​មាន​កម្រិត​ខ្ពស់។ **ចងចាំ​ថា​របាយការណ៍​ការ​នឹង​ត្រូវ​បាន​បង្ហាញ​ផ្នែក​ខាង​មុខ​តាម​​កាលវិភាគ​ដែល​អ្នក​បាន​កំណត់​ខាងក្រោម (អាយុកាល​​ឃ្លាំង)។" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "កំណត់​អាយុកាល​​ឃ្លាំង។" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "ការ​កំណត់​នេះ​បើក​ការ​ចូល​​សម្រាប់​ការ​ប្រើប្រាស់​របស់​អ្នក។ វា​ជា​ប្រភេទ​របាយការណ៍​សាមញ្ញ ដែល​មិន​ត្រូវ​បាន​សម្របសម្រួល​មុន​ពេល​​​វា​បន្ត​ទៅ​ទំព័រ​ដើម ហើយ​ទាមទារ​ឲ្យ​តំបន់​បណ្ដាញ​របស់​អ្នក​​ត្រូវ​កំណត់​រចនាសម្ព័ន្ធ​តាម​វិធី​ដែល​មាន។ នៅ​ពេល​ដែល​អ្នក​វា សូម​ប្រាកដ​ថា​អ្នក​បាន​កំណត់​តំបន់​ពេលវេលា​របស់​អ្នក​នៅ​លើ UTC ហើយ​ការ​ចូល​គាំទ្រ​រូបរាង​របស់​អ្នក។ នៅ​ពេល​អ្នក​បើក​វា មាន​តែ​រូបរាង​តែ​ការ​ចូល​ប៉ុណ្ណោះ​នឹង​ត្រូវ​បាន​បើក​ នៅ​ក្រោម​ទំព័រ​ការ​កំណត់​ កម្មវិធី​បន្ថែម/រូបរាង។" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "កំណត់​ផែនទី​នៅ​លើ​ទីតាំង​ជាក់លាក់។" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "កំណត់​កូដ​ពណ៌​សម្រាប់​ប្រភេទ​ទាំងអស់​នៅ​លើ​តំបន់​បណ្ដាញ។" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "កំណត់​រូបតំណាង​សម្រាប់​ប្រភេទ​ទាំងអស់​នៅ​លើ​តំបន់​បណ្ដាញ។" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "វា​ជា​តំបន់​បណ្ដាញ​ប្រទេស​ត្រូវ​បាន​ប្រើប្រាស់​ប្រកប​ដោយ​ប្រសិទ្ធិភាព។" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "បើក​/បិទ ផ្ទាំង​ទំនាក់ទំនង​នៅ​លើ​តំបន់​បណ្ដាញ​មេ។" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "បិទ/បើក​ ផ្ទាំង​ជំនួយ​នៅ​លើ​តំបន់​បណ្ដាញ​មេ។" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "វា​ជា​​ចំនួន​របាយការណ៍​ដែល​បាន​បង្ហាញ​នៅ​ក្នុង​មួយ​ទំព័រ​នៅ​លើ​តំបន់​បណ្ដាញ​មេ។" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "វា​ជា​ចំនួន​របាយការណ៍​ដែល​បាន​បង្ហាញ​នៅ​ក្នុង​មួយ​ទំព័រ​កម្មវិធី​ខាងក្រោយ​សម្រាប់​អ្នក​គ្រប់គ្រង។" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "នេះ​ជា​ hub សម្រាប់​សារ​ចូល។" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "ការ​ធ្វើ​សមកាលកម្ម​​នេះ​មាន​សារ​នៅ​ក្នុង hub ដែល​មាន​​កម្មវិធី​ Ushahidi ។" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "លេខ​ទូរស័ព្ទ​តាម​រយៈ​សារ​អត្ថបទ​ណាមួយ​ដែល​ត្រូវ​​បាន​ទទួល។" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "អ្នក​​ទស្សនា​​ការ​តាមដាន​តំបន់​បណ្ដាញ​របស់​អ្នក។ ទទួល​បាន​ស្ថិតិ​អ្នក​ទស្សនា​ដែល​មាន​សេចក្ដី​លម្អិត។" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "កំណត់​ភាសា​ដែល​នឹង​ត្រូវ​បាន​ប្រើ​នៅ​ក្នុង​តំបន់​បណ្ដាញ។" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "ប្រសិនបើ​អ្នក​កំណត់​ជ្រើស បាទ/ចាស អ្នក​ត្រូវ​តែ​អនុម័ត​រាល់​អ្នក​ប្រើ​នីមួយៗ​ដែល​បង្កើត​គណនី​នៅ​លើ​តំបន់​បណ្ដាញ​របស់​អ្នក​ដោយ​កំណត់​ច្បាស់​សម្រាប់​ពួក​គេ (ឧ. សមាជិក, អ្នក​គ្រប់គ្រង, អ្នក​គ្រប់គ្រង​ជាន់​ខ្ពស់)។" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "វា​កំណត់​ផែនទី​ណា​មួយ​ដែល​ត្រូវ​ប្រើ​នៅ​លើ​តំបន់​បណ្ដាញ។" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "វា​បង្ហាញ​បន្ទាត់​ពេលវេលា​អាស្រ័យ​លើ​កាលបរិច្ឆេទ និង​ពេលវេលា​ដាក់​ស្នើ​របាយការណ៍" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "កំណត់​តម្លៃ​នេះ​ពិត ឬ​បាទ/ចាស​នឹង​ធ្វើ​ឲ្យ​​អ្នក​មាន​គណនី​​សម្រាប់​ការ​ប្រើប្រាស់​ឯកជន​ ដែល​អ្នក​អាច​​​បញ្ជាក់​ដើម្បី​​​ចូល​ដំណើរការ​ក្នុង​ការ​ប្រើប្រាស់​បាន។" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "អ្នក​ប្រើ​នឹង​ត្រូវ​បាន​ផ្ញើ​អ៊ីមែល​ដោយ​ប្រើ​តំណ​ការ​អះអាង ចុច​មុន​ពេល​ពួក​យើង​បាន​អនុវត្ត​ចូល​ទៅ​ប្រើប្រាស់ ប្រសិនបើ​បាន​កំណត់​វា​បាទ/ចាស។ ប្រសិនបើ​អ្នក​បើក​វា​ បន្ទាប់​ពី​ការ​ប្រើប្រាស់​​របស់​អ្នក​ត្រូវ​បាន​ព្រម​ទទួល​​ ពួក​វា​នឹង​ត្រូវ​បាន​ជ្រើសរើស ដើម្បី​អះអាង​គណនី​របស់​ពួក​គេ មុន​ពេល​ពួកគេ​នឹង​ត្រូវ​បាន​អនុញ្ញាត​​ឲ្យ​បន្ត​ការ​ប្រើប្រាស់។" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "វា​ជា​ទីកន្លែង​ដែល​អ៊ីមែល​ស្ថិតនៅ​" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "នេះ​ជា​ពាក្យសម្ងាត់​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​ដែល​ទទួល​​របាយការណ៍។" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "វា​ត្រូវ​បាន​ទាមទារ​ឲ្យ​ទទួល​យក​ការ​តភ្ជាប់​ចូល​ពី​អាសយដ្ឋាន​អ៊ីមែល។" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "វា​ត្រូវ​បាន​ទាមទារ​ដើម្បី​បង្កើន​ការ​តភ្ជាប់​សុវត្ថិភាព។" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "វា​ត្រូវ​បាន​ទាមទារ​ដើម្បី​ទៅ​យក​អ៊ីមែល​ពី​ម៉ាស៊ីន​មេ។" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "នេះ​ជា​ពាក្យសម្ងាត់​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​ដែល​ទទួល​​របាយការណ៍។" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "រក​ឃើញ​​ស្ថិតិ​ដែល​ត្រូវ​បាន​រក្សាទុក​នៅ​លើ​ម៉ាស៊ីន​មេ​ដែល​បាន​ត្រួតពិនិត្យ​ដោយ Ushahidi។ ដោយ​បើក​ជម្រើស​នេះ អ្នក​អាច​ចូល​ដំណើរការ ដើម្បី​មើល​ស្ថិតិ​ដោយ​ផ្ទាល់​នៅ​ក្នុង​បន្ទះ​ជា​អ្នក​គ្រប់គ្រង​របស់​អ្នក។ ដោយ​បិទ​វា អ្នក​នឹង​បញ្ឈប់​ការ​សម្រាំង​ស្ថិតិ ហើយ​នឹង​មិន​អាច​សម្រាំង​ស្ថានភាព​ចរាចរណ៍​ខណៈ​ពេល​ដែល​បិទ​វា​ឡើយ។​" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "មាន​សិទ្ធិ​​ដើម្បី​បោះពុម្ព​អត្ថបទ​ឡើង​វិញ រូបភាព វីដេអូ និង/ឬ រៀបចំ​រូបរាង​ដែល​អ្នក ហើយ​នឹង​អ្នក​ប្រើ​​របស់​អ្នក​បាន​បង្កើត​ឬ? ទៅ​កាន់ https://creativecommons.org/choose/ ប្រសិនបើ​អ្នក​ចូលចិត្ត​បញ្ជាក់​អ្វី​ផ្សេង​ទៀត​ដែល​អ្នក​អាច​ធ្វើ​ជាមួយ​ការ​ងារ​របស់​អ្នក​បាន។ ហើយ​ចងចាំ​ថា​អ្នក​អាច​​បញ្ជាក់​អំពី​ធាតុ​តំបន់​​បណ្ដាញ​ដែល​អ្នក​កំពុង​មាន​អាជ្ញាប័ណ្ណ​!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "នេះ​ជា​ពាក្យសម្ងាត់​សម្រាប់​អាសយដ្ឋាន​អ៊ីមែល​ដែល​ទទួល​​របាយការណ៍ និង​សារ​ពី​​សំណុំ​បែបបទ​​ទំនាក់ទំនង" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "វា​ជា​អត្ថបទ​ដែល​នឹង​លេច​ឡើង​នៅ​លើ​ផែនទី​លើ​គេហ​ទំព័រ។ វា​មាន​អត្ថប្រយោជន៍​សម្រាប់​ផ្ដល់​ព័ត៌មាន​សំខាន់ៗ​ដល់​អ្នក​ទស្សនា​លើ​តំបន់​បណ្ដាញ។ យក​ប្រអប់​ចេញ លុប​សារ​នៅ​ទីនេះ។" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "វា​ជា​ឈ្មោះ​តំបន់​បណ្ដាញ​ដែល​លេច​ឡើង​នៅ​ផ្នែក​ខាងលើ​នៃ​តំបន់​បណ្ដាញ​ចម្បង។" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "វា​ជា​សារ​ដែល​នឹង​បង្ហាញ​នៅ​លើ​ទំព័រ​របាយការណ៍​ដាក់​ស្នើ។ វា​​ល្អ​សម្រាប់​អ្នក​មិន​ព្រម​ទទួល ឬ​សេចក្ដី​ណែនាំ​សម្រាប់​អ្នក​ទស្សនា​​របស់​អ្នក​ដែល​កំពុង​រាយការណ៍។" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "ពន្យល់​អំពី​តំបន់​បណ្ដាញ​ ដោយ​សង្ខេប។" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "វា​ជា​តំបន់​បណ្ដាញ​ដែល​តំបន់​បណ្ដាញ​របស់​អ្នក​នឹង​ដំណើរការ​នៅ​លើ។​ វា​នឹង​មាន​​ការ​ប៉ះទង្គិច​នៅ​លើ​សកម្មភាព​មួយ​ចំនួន​ដែល​អ្នក​បាន​រៀបចំ​កាលបរិច្ឆេទ និង​ពេលវេលា​ប្រើប្រាស់ ព្រមទាំង​ពេលវេលា​បច្ចុប្បន្ន​លំនាំដើម​សម្រាប់​រាយការណ៍​នៅ​កម្មវិធី​ខាងក្រោយ និង​ខាង​មុខ​នៃ​តំបន់​បណ្ដាញ។" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "កំណត់​សញ្ញា # សម្រាប់ twitter ដែល​នឹង​​ត្រូវ​ប្រើ​នៅ​លើ tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-km/ui_admin.po b/application/i18n/po/po-km/ui_admin.po new file mode 100644 index 0000000000..7985ad0915 --- /dev/null +++ b/application/i18n/po/po-km/ui_admin.po @@ -0,0 +1,1659 @@ +# +# Translators: +# Seng Sutha , 2013-2014 +# Sok Sophea , 2013 +# Vantharith Oum , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-01-03 03:40+0000\n" +"Last-Translator: Seng Sutha \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "បាន​បដិសេធ​ការ​ចូល​ដំណើរការ។ លិខិត​សម្គាល់​របស់​អ្នក​មិន​ត្រឹម​ត្រូវ ឬ​សំណើ​របស់​អ្នក​ត្រូវ​បាន​បដិសេធ។" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "បាន​បដិសេធ​ការ​ចូល​ដំណើរការ។ សំណើ​​របស់​អ្នក​ត្រូវ​បាន​ស្គាល់ ប៉ុន្តែ​បាន​បដិសេធ​ដោយសារតែ​ការ​កំណត់​ការ​ចូល​ដំណើរការ​អស់​ពេល​។ ព្យាយាម​​ម្ដងទៀត​ពេល​ក្រោយ។" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "កម្រិត​ការ​ចូល​ដំណើរការ" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "សកម្មភាព" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "បន្ថែម​ទៅ​ប្រភេទ" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "បាន​បន្ថែម" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "បាន​បន្ថែម/​បាន​កែសម្រួល" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "ឧបករណ៍​បន្ថែម" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "ជា​អ្នក​គ្រប់គ្រង" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "ការ​ជូនដំណឹង" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "បាន​ទទួល​ការ​ជូនដំណឹង" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "ទាំងអស់" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "ព្រឹក" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "អនាមិក" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "អ្នក​ណា​ម្នាក់" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "កន្លែង​ណាមួយ" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "បាន​ហាម​ឃាត់ API" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "កំណត់ហេតុ API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "ការ​កំណត់ API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "មិន​ហាម​ឃាត់" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "មិន​​ហាមឃាត់​ទាំងអស់" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "បាន​អនុម័ត" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "អនុម័ត​ស្វ័យប្រវត្តិ" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "អនុម័ត​ដោយ​ដៃ" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "បាន​ទុក​ក្នុង​ប័ណ្ណសារ" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​ធាតុ​នេះ​ឬ?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​រូបថត​នេះ​ឬ?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "តើ​អ្នក​ពិត​ជា​ចង់​ប្ដូរ​​​សំណុំ​បែបបទ​នេះ​ឬ?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "ផ្ដល់​កិច្ចការ" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "កិច្ចការ" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "ផ្ដល់​ស្លាក" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "អ្នក​និពន្ធ" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "អ៊ីមែល​របស់​អ្នក​និពន្ធ" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "ថយ​ក្រោយ" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "ហាម IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "ចន្លោះ​ពេល" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "ទប់​ស្កាត់" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "តួ" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "បោះ​បង់​" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "ចំណាត់ថ្នាក់ក្រុម" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "កំហុស​ក្នុង​ការ​បង្ហាញ​គំនូសតាង" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "សូម​ប្រាកដ​ថា​សារ​របស់​អ្នក​ត្រឹមត្រូវ។" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "សូម​ប្រាកដ​ថា​លេខ​ត្រឹមត្រូវ។" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "សូម​ពិនិត្យមើល​សារ SMS របស់​អ្នក!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "សេចក្ដី​លម្អិត​ការ​ចូល" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "ការ​ចូល" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "បាន​ផ្ទុក​ទីក្រុង" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "កូដ" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "កំណែ​កូដ​​គ្មាន​សមកាលកម្ម។" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "ពណ៌" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "មតិយោបល់" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "កូដ​ការ​អះអាង​ការ​ជូនដំណឹង​របស់​អ្នក​គឺ៖" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "អ្នក​ប្រើ​ត្រូវ​បាន" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "រាប់" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "រក​មិន​ឃើញ​ប្រទេស" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "បាន​បង្កើត/បាន​កែសម្រួល" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "ធ្វើ​របាយការណ៍" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "ធ្វើ​ឲ្យ​ប្រសើរ" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "សកម្ម​នៅ​ពេល​បច្ចុប្បន្ន" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "មិន​សកម្ម​នៅ​ពេល​បច្ចុប្បន្ន" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "អ្នក​មិន​មាន​សិទ្ធិ​គ្រប់គ្រាន់​ក្នុង​ការ​កែសម្រួល​វាល​ផ្ទាល់​ខ្លួន​ខាង​ក្រោម​ឡើយ។" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "ប្រចាំ​ថ្ងៃ" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Dashboard" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "មូលដ្ឋាន​ទិន្នន័យ" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "កាលបរិច្ឆេទ និង​ពេលវេលា" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "បាន​បន្ថែម​កាលបរិច្ឆេទ" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "បាន​កែប្រែ​កាល​បរិច្ឆេទ" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "ថ្ងៃ​នៃ​​សប្ដាហ៍" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "កំណែ DB គ្មាន​សមកាលកម្ម។" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "បាន​លុប" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "លុប" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "លុប​របាយការណ៍​ទាំងអស់" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "លុប​ស្លាក" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "ការ​បង្ហាញ" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "សេចក្ដី​ពិពណ៌នា" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "បាន​បិទ" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "ចាប់ផ្ដើម​ការ​បែងចែក" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "បញ្ចប់​ការ​បែងចែក" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "ទាញ​យក​របាយការណ៍" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "ជម្រើស​​​ទម្លាក់​ចុះ" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "បាន​កែសម្រួល" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "បាន​កែសម្រួល​ដោយ" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "កែសម្រួល" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "កែសម្រួល​កំណត់​ហេតុ" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "អ៊ីមែល" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "សហការ​ជា​ក្រុម" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "កំហុស​នៅ​ក្នុង​ geocoding! កំហុស HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "មិន​បាន​ដំឡើង​បណ្ណាល័យ IMAP PHP ឡើយ" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "ព័ត៌មាន​សម្ងាត់​មិន​ត្រឹមត្រូវ" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "កំហុស" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "កំហុស មិន​អាច​ប្រកាស​ហេតុការណ៍" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "រៀងរាល់​ប្រាំមួយ​ម៉ោង" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "រៀងរាល់​ដប់ពីរ​ម៉ោង" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "ទាក់ទង​នឹង​បទពិសោធន៍" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "មតិ​ព័ត៌មាន" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "មតិ​ត្រឡប់" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "មតិ​ព័ត៌មាន " + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "រាយ​ជម្រើស" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "តម្លៃ​លំនាំ​ដើម" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "ប្រភេទ​ទិន្នន័យ" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "ជា​លេខ" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "អត្ថបទ​ឥត​គិត​ថ្លៃ" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "កម្ពស់ (ជួរ​ដេក)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "វាល​ដែល​បាន​លាក់" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "ប្រវែង​តួ​អក្សរ​អតិបរមា" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "ឈ្មោះ​វាល" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "បើក/បិទ" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "ទេ" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "បាទ/ចាស បាន​បិទ​តាម​លំនាំដើម" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "បាទ/ចាស បើក​តាម​លំនាំដើម" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "រក​មិន​ឃើញ​ឯកសារ​ដែល​បាន​ផ្ទុក​ឡើង" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "មិន​អាច​បើក​ឯកសារ​សម្រាប់​អាន​បាន​ទេ" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "គ្មាន​សំណុំ​បែបបទ​នេះ​ទេ!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "វេទិកា" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "វាល​តំបន់​អត្ថបទ (វាល​អត្ថបទ​ឥត​គិត​ថ្លៃ)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "វាល​កាលបរិច្ឆេទ" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "វាល​​ប៊ូតុង​មូល" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "វាល​​ប្រអប់​ធីក" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "វាល​​ទម្លាក់" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "ពី" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "ពី" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "កំហុស​អស់​ពេល​ Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "ទទួល​ជំនួយ" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "ទទួល​បាន​រូបរាង​បន្ថែម" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "ទទួល​បាន​កម្មវិធី​ជំនួយ​បន្ថែម" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "សកម្មភាព" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "បន្ថែម​/​កែសម្រួល" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "អ៊ីមែល" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "គ្រប់គ្រង​អ្នក​ប្រើ" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "មុខងារ" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "អ្នក​ប្រើ" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ជំនួយ" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "រាល់​ម៉ោង" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "មតិ​ព័ត៌មាន​ហេតុ​ការណ៍​សម្រាប់" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "ថត​កម្មវិធី​ដំឡើង​នៅ​តែ​​មាន។ លុប​ថត​កម្មវិធី​ដំឡើង។ វា​ងាយ​ប៉ះពាល់​ដល់​សុវត្ថិភាព​យ៉ាង​ខ្លាំង។" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "ឧទាហរណ៍" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "ឧទាហរណ៍" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "សេចក្ដី​លម្អិត​សម្រាប់​ឧទាហរណ៍" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "ប៉ារ៉ាម៉ែត្រ​មិន​ត្រឹមត្រូវ" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "អាសយដ្ឋាន IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "តើ​នេះ​ជា​វាល​កាល​បរិច្ឆេទ​ឬ?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "អ្នក​ណា​អាច​​​មើល​​ចម្លើយ​នេះ" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "អ្នក​ណា​ដែល​អាច​ដាក់​ស្នើ​ចម្លើយ​" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "ពាក្យ​គន្លឹះ" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "ពាក្យ​គន្លឹះ" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "អាសយដ្ឋាន​អ៊ីមែល៖" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "ឈ្មោះ​ពេញ៖" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "លេខសម្ងាត់" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "មុខងារ" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "ឈ្មោះ​អ្នក​ប្រើ៖" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "ស្រទាប់" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "អ្នក​សម្របសម្រួល" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "ចេញ" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "កំណត់ហេតុ" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "គ្រប់គ្រង" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "គ្រប់គ្រង​សិទ្ធ និង​តួនាទី" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "មើល​អ្នក​ប្រើ" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "បន្ថែម/កែសម្រួល​អ្នក​ប្រើ" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "គ្រប់គ្រង​ការ​រាយ​សាធារណៈ​​របស់​អ្នក" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "សម្គាល់​ជា" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "បាន​សម្គាល់​មិន​មាន​ជា​​សារ​ឥត​បាន​ការ" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "បាន​សម្គាល់​ជា​​​សារ​ឥត​បាន​ការ" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "មិន​បាន​ផ្គូផ្គង​ឯកសារ​មួយ​ចំនួន" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "សារ" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "សារ" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "សារ​របស់ Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "សារ​​របស់ Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "សារ​របស់​អ្នក​បាន​ផ្ញើ!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "នាទី" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "នាទី" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "បាត់​ប៉ារ៉ាម៉ែត្រ" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "អ្នក​សម្របសម្រួល" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "បាន​កែប្រែ" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "កែប្រែ​ការ​កំណត់​តំបន់​ពេលវេលា" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "ផ្លាស់ទី​ចុះ​ក្រោម" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "ផ្លាស់​ទី​ឡើង​លើ" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "ធាតុ​ដែល​បាន​បង្ហោះ​​ច្រើន" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "ការ​​ជូនដំណឹង​របស់​ខ្ញុំ" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "ការ​ចូល​របស់​ខ្ញុំ" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "ប្រវត្តិ​​រូប​ខ្ញុំ" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "របាយការណ៍​របស់​ខ្ញុំ" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votes Cast" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "វិជ្ជមាន" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "អវិជ្ជមាន" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "ឈ្មោះ" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "បង្កើត​ការ​ជូនដំណឹង​ថ្មី" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "បង្កើត​សារ​ថ្មី" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "ពាក្យសម្ងាត់​ថ្មី" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "ទេ" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "វា​ជា​ប្រភេទ​ពិសេស​ដែល​នឹង​មិន​បង្ហាញ​នៅ​លើ​សំណុំ​បែបបទ​ការ​ដាក់​ស្នើ​របាយការណ៍​សម្រាប់​​របាយការណ៍​ដាក់​ស្នើ​របស់​អ្នក​ប្រើ។ វា​ត្រូវ​បាន​​ប្រើ​នៅ​ក្នុង​ការ​ភ្ជាប់​ជាមួយ​លក្ខណ​ពិសេស \"របាយការណ៍​ដែល​មិន​បាន​ចាត់​តាម​ប្រភេទ​ជា​ការ​លុប​ចោល​ប្រភេទ​លទ្ធផល។\" ។" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "ការ​ជូន​ដំណឹង" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "វា​មិន​ប្រកាន់​តួ​អក្សរ​តូច​ធំ។" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "រក​មិន​ឃើញ" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "គ្មាន​ទិន្នន័យ។ គ្មាន​លទ្ធផល​សម្រាប់​បង្ហាញ​ឡើយ។" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "គ្មាន​កំហុស" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "គ្មាន​លទ្ធផល​សម្រាប់​បង្ហាញ​ឡើយ!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "នៃ" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "នៃ​ចំនួន​ជាក់លាក់" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "ទំព័រ" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "ទំព័រ" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "រក​មិន​ឃើញ​ទំព័រ" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "សូមទោស ទំព័រ​ដែល​អ្នក​កំពុង​ព្យាយាម​មើល​មិន​មាន​នៅ​ទី​នេះ​ទេ។

តើ​អ្នក​អនុវត្ត​តំណ​ពី​កន្លែង​ផ្សេង​​នៅ​លើ​តំបន់​បណ្ដាញ​របស់​ពួក​យើង​ហើយ​ឬ​នៅ?
ប្រសិនបើ​អ្នក​បាន​ទៅ​ដល់​ទំព័រ​នេះ​ពី​ផ្នែក​ផ្សេង​ទៀត​នៃ​តំបន់​បណ្ដាញ​របស់​យើង សូម ទាក់ទង​​យើង ដូច្នេះ​យើង​អាច​​កែ​កំហុស​របស់​​យើង​បាន។

តើ​អ្នក​បាន​អនុវត្ត​តំណ​ពី​តំបន់​បណ្ដាញ​ផ្សេងទៀត​ហើយ​ឬ​នៅ?
តំណ​ពី​តំបន់​បណ្ដាញ​ផ្សេង​​ទៀត​អាច​ត្រូវ​បាន​​ធ្វើ​បច្ចុប្បន្នភាព ឬ​ប្រកប​ខុស។ Tell us អ្នក​មក​ពី​ណា ហើយ​យើង​អាច​ព្យាយាម​យើង​អាច​សាកល្បង​ទាក់ទង​តំបន់បណ្ដាញ​ផ្សេង​ទៀត​ ដើម្បី​កែ​កំហុស។

តើ​អ្នក​វាយ URL ឬ?
អ្នក​អាច​មាន​អាសយដ្ឋាន (URL) មិន​ត្រឹមត្រូវ។ ពិនិត្យមើល​ដើម្បី​ប្រាកដ​ថា​អ្នក​មាន​សិទ្ធិ​កែ​អក្ខរាវិរុទ្ធ សរសេរ​ជា​អក្សរពុម្ព ។ល។

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "សូមទោស ទំព័រ​ដែល​អ្នក​ព្យាយាម​មើល​មិន​មាន​នៅ​ទី​នេះ​ឡើយ។" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "ប៉ារ៉ាម៉ែត្រ​ដែល​បាន​ប្រើ" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "ពាក្យ​សម្ងាត់" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "កំណត់​ពាក្យ​សម្ងាត់​ឡើង​វិញ" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "ជា​ទី​ស្រលាញ់" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "យើង​បាន​ទទួល​សំណើ​ដើម្បី​កំណត់​ពាក្យ​សម្ងាត់​ឡើង​វិញ​សម្រាប់" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "ផ្លាស់ប្ដូរ​ពាក្យ​សម្ងាត់​របស់​អ្នក សូម​ចុច​លើ​តំណ​​ខាងក្រោម (ឬ​ចម្លង ហើយ​បិទ​ភ្ជាប់​វា​ទៅ​កាន់​កម្មវិធី​រុករក​របស់​អ្នក) ។" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "ដូច​ដែល​អ្នក​បាន​ស្នើ ពាក្យ​សម្ងាត់​របស់​​អ្នក​ត្រូវ​បាន​កំណត់​ឡើង​វិញ​ឥឡូវ​នេះ។ សេចក្ដី​លម្អិត​ថ្មី​របស់​អ្នក​ដូច​​ខាងក្រោម" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "កំណត់​ពាក្យ​សម្ងាត់​សម្រាប់ Ushahidi ឡើង​វិញ" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "ទូរស័ព្ទ" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "សូម​ជ្រើស" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "ល្ងាច" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "ទិន្នន័យ​មិន​ត្រូវ​បាន​ផ្ញើ​តាម​វិធី​សាស្ត្រ​ប្រកាស​ឡើយ" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "មើល​ជា​មុន" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "សារ" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "សារ​ឯកជន" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "ផ្ញើ​សារ​​ឯកជន" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "ប្រធាន​បទ" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "ជូន​ចំពោះ" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "ការ​រាយ​ជា​សាធារណៈ" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "អ្នក​សម្របសម្រួល" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "អាន" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "ភាព​ទាក់ទង" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "ចំណង​ជើង​របាយការណ៍" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "កាលបរិច្ឆេទ​របាយការណ៍" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "​អ្នក​​ធ្វើ​​របាយការណ៍" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "កម្រិត​អ្នក​ធ្វើ​របាយការណ៍" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "របាយការណ៍" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "ពិន្ទុ​កេរ្តិ៍ឈ្មោះ" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "បាន​ទាមទារ" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "កំណត់​ឡើង​វិញ" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "ចម្លើយ​តប" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "លទ្ធផល" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "ដកហូត" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "អ៊ីមែល​នេះ​មាន​គណនី​ដែល​បាន​គ្រប់គ្រង​តាម CrowdmapID រួច​ហើយ។ អ្នក​ប្រើ​នឹង​ត្រូវ​ការ​ដើម្បី​ប្រើ​ពាក្យសម្ងាត់ Crowdmap ដែល​មាន​ស្រាប់​ដើម្បី​ចូល។" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "រក្សាទុក​ការ​កំណត់" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "ស្វែងរក" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "ស្វែងរក​របាយការណ៍" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "កំពុង​ស្វែងរក​" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "សោ​ការ​អ៊ិនគ្រីប​នៅ​តែ​កំណត់​តម្លៃ​លំនាំដើម។ វា​គ្មាន​សុវត្ថិភាព ត្រូវ​តែ​ផ្លាស់ប្ដូរ។" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "តំបន់​បណ្ដាញ​នេះ​កំពុង​ត្រូវ​បាន​រក្សាទុក​នៅ​លើ HTTP ។ វា​គួរតែ​កំណត់​ទៅ HTTPS សម្រាប់​បង្កើន​សុវត្ថិភាព។" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "សេចក្ដី​ណែនាំ​មាន​នៅ​លើ​វីគី៖" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "ជ្រើស​ទ្រង់ទ្រាយ​ទាញ​យក​របាយការណ៍​ដែល​អ្នក​ចង់​បាន៖" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "---ជ្រើស​ប្រភេទ​វាល ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "សូម​ជ្រើស​ធាតុ​មួយ" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "អ្នក​ត្រូវ​តែ​ជ្រើស​គន្លឹះ មុន​ពេល​អ្នក​អាច​ជ្រើស​ចម្លើយ​តប។" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "អ្នក​ត្រូវ​តែ​ជ្រើស​ធ្វើ​ឲ្យ​សកម្ម មុន​ពេល​​អ្នក​អាច​កំណត់​អ្នក​សម្របសម្រួល។" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "អ្នក​ផ្ញើ" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "ផ្ញើ​ទៅ" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "សារ​នេះ​ត្រូវ​បាន​ផ្ញើ​ពី​តំបន់​បណ្ដាញ​របស់​​អ្នក​នៅ" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "ពេលវេលា​​របស់​ម៉ាស៊ីន​មេ" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "ការ​កំណត់" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "បង្ហាញ​ទំព័រ" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "បង្ហាញ​លទ្ធផល" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "បាន​បង្ហាញ" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "ប្រភេទ​ពិសេស" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "វា​ជា​ប្រភេទ​ពិសេស​ដែល​នឹង​មិន​បង្ហាញ​នៅ​លើ​សំណុំ​បែបបទ​ការ​ដាក់​ស្នើ​របាយការណ៍​សម្រាប់​​របាយការណ៍​ដាក់​ស្នើ​របស់​អ្នក​ប្រើ។ វា​ត្រូវ​បាន​​ប្រើ​នៅ​ក្នុង​ការ​ភ្ជាប់​ជាមួយ​លក្ខណ​ពិសេស \"របាយការណ៍​ដែល​ជឿ​ទុក​ចិត្ត\" ។" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "ផ្ទៃ​ជាក់​លាក់​​​" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "ស្ថិតិ" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "ស្ថិតិ" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "ស្ថិតិ" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "បាន​បរាជ័យ​ការ​សម្រាំង​ស្ថិតិ​! សូម​ព្យាយាម​​ម្ដងទៀត​ពេល​ក្រោយ។" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "បាន​បរាជ័យ​ការ​សម្រាំង​ស្ថិតិ!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "ថ្ងៃ​ជាក់លាក់" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "ប្រធាន​បទ" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "ជា​អ្នក​គ្រប់គ្រង​ជាន់​ខ្ពស់" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "ភារកិច្ច​ដែល​បាន​អនុវត្ត" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "វាល​កាលបរិច្ឆេទ" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "ឈ្មោះ" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "គ្រប់គ្រង​អ្នកប្រើ" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "កំហុស​អស់​ពេល" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "ជូន​ចំពោះ" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "របាយការណ៍​សរុប" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "ជួន​ចំពោះ" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "បកប្រែ​របាយការណ៍" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "ធ្វើ​ឲ្យ​សកម្ម" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "ធ្វើ​ឲ្យ​អ្នក​ប្រើ​សកម្ម" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "ការ​ធ្វើ​ឲ្យ​សកម្ម" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "មិន​បាន​អនុម័ត" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "មិន​ស្គាល់" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "ការ​បរាជ័យ​ដែល​មិន​ស្គាល់" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "មិន​បាន​អាន" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "អ្នក​នឹង​មិន​ទទួល​បាន​ការ​ជូនដំណឹង​ទៀត​ទេ" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "ចុច​នៅ​ទី​នេះ​ដើម្បី​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង​ឥឡូវ​នេះ" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "ធ្វើ​បច្ចុប្បន្ន​ភាព Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "ធ្វើ​បច្ចុប្បន្នភាព​ស្ថានភាព Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "ផ្ទុក​របាយការណ៍" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "អ្នក​ប្រើ" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "អ្នក​ប្រើ" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "បាន​ផ្ទៀងផ្ទាត់/មិន​​បាន​ផ្ទៀងផ្ទាត់" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "ផ្ទៀងផ្ទាត់/មិន​បាន​​ផ្ទៀងផ្ទាត់" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "កំណែ" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "មាន​សម្រាប់​ធ្វើ​បច្ចុប្បន្ន។" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "ការ​អ៊ិនកូដ​វីដេអូ" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "សារ​ឯកជន" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "មើល​តំបន់​បណ្ដាញ" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "មើល​របាយការណ៍" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "ស្វាគមន៍" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "វីគី" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "បាទ/ចាស​" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "ការ​ស្វែងរក​របស់​អ្នក" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "ពិនិត្យមើល​ប៊ូតុង​ខាង​ក្រោម​នឹង​លុប​របាយការណ៍​ទាំងអស់​នៅ​លើ​មូលដ្ឋាន​ទិន្នន័យ។ អ្នក​គូរ​តែ​ប្រើការ​ជូន​ដំណឹង​នេះ​ជា​ប្រតិបត្តិការ​ដែល​មិន​ត្រូវ​ធ្វើ​វិញ។" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "យើង​ផ្ដល់​អនុសាសន៍​ឲ្យ​អ្នក​ថយក្រោយ​ទៅ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​មុន​ពេល​បន្ត" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "ខ្ញុំ​ប្រាកដ​ជា​ចង់​លុប​របាយការណ៍​ទាំងអស់ %s ពី​មូលដ្ឋាន​ទិន្នន័យ។" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​របាយការណ៍​​ទាំងអស់​ឬ?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "គ្មាន​របាយការណ៍​ត្រូវ​បាន​លុប​ទេ។" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "ចំនួន​ចូល" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "ការ​ចូល​ចុង​ក្រោយ" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "បាន​បញ្ជាក់​ពាក្យសម្ងាត់?" diff --git a/application/i18n/po/po-km/ui_main.po b/application/i18n/po/po-km/ui_main.po new file mode 100644 index 0000000000..321ef9abda --- /dev/null +++ b/application/i18n/po/po-km/ui_main.po @@ -0,0 +1,3176 @@ +# +# Translators: +# APC & Open Institute < techinfo@apc.org ; Vannak Aphimongkul Eng , 2012 +# Ath Ell , 2013 +# Ben Hass , 2013 +# Seng Sutha , 2013 +# Sokhem Khoem , 2014 +# Sok Sophea , 2013 +# apctech , 2012 +# Vantharith Oum , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "អំពី" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "ចូល​ដំណើរការ" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "ដែន​កំណត់​ការ​ចូល​ដំណើរការ" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "ឈ្មោះ​គណនី" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "សកម្មភាព" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "សកម្មភាព​នេះ​មិន​អាច​មិនធ្វើវិញ​បាន​ទេ ។ តើ​អ្នក​ពិតជា​ចង់​បន្ត​ទៀត​មែន​ឬ ?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "ធ្វើឲ្យ​សកម្ម" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "សកម្ម" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "បន្ថែម" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "បាន​បន្ថែម​ដោយ" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "ទិន្នន័យ​បន្ថែម" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "របាយការណ៍​បន្ថែម" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "បន្ថែម/កែសម្រួល" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "បន្ថែម​វាល" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "បន្ថែម​ភាសា" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "បន្ថែម​ថ្មី" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "បន្ថែម​ប្រភេទ​ថ្មី" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "បន្ថែម​ការ​បកប្រែ" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "ការ​គ្រប់គ្រង" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "យក​ការ​ជូនដំណឹង​" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "ជូនដំណឹង​ខ្ញុំ​ប្រសិនបើ​របាយការណ៍​ត្រូវ​បាន​រៀបចំ ឬ​​កំពុង​រៀបចំ៖" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "រក្សាទុក​ការ​ជូនដំណឹង​របស់​ខ្ញុំ" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "អាសយដ្ឋាន​អ៊ីមែល៖" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "បញ្ចូល​លេខ​ទូរស័ព្ទ​ជាមួយ​លេខ​កូដ​ប្រទេស" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "យក​ការ​ជូន​ដំណឹង​" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "ការ​ជូនដំណឹង​បាន" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "ទូរស័ព្ទ​ចល័ត៖" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "ឬ​ដាក់​ចំណុច​នៅ​លើ​ផែនទី​ខាងក្រោម បន្ទាប់មក​យើង​នឹង​ជូនដំណឹង​អ្នក​នៅ​ពេល​ដែល​របាយការណ៍​ត្រូវ​បាន​ដាក់​ស្នើ​​ក្នុង​ចម្ងាយ២០​គីឡូម៉ែត្រ។" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "ប្រសិនបើ​អ្នក​មិន​អាច​រក​ឃើញ​ទីតាំង​របស់​អ្នក​ទេ សូម​ចុច​លើ​ផែនទី​ដើម្បី​ដៅ​ចំណុច​ត្រឹមត្រូវ។" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "មតិ​ព័ត៌មាន RSS (ចម្លង URL ខាងក្រោម)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "ជ្រើស​ទីក្រុង" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "ជំហាន​ទី១៖ ជ្រើស​ទីក្រុង ឬ​ទីតាំង​របស់​អ្នក៖" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "ជំហាន​​ទី២៖ ផ្ញើ​ការ​ជូន​ដំណឹង​ឲ្យ​ខ្ញុំ៖" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "ជំហាន​ទី៣ (ជា​ជម្រើស)៖ ជ្រើស​ប្រភេទ" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "អះអាង​សំណើ​ការ​ជូនដំណឹង​មុន" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "បាន​រក្សាទុក​ការ​ជូនដំណឹង​របស់​អ្នក!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "ទាំង​អស់​" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "បាន​អនុញ្ញាត" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "បាន​អនុញ្ញាត​ស្លាក HTML ៖ \"%s\"។" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes ត្រូវ​បាន​អនុញ្ញាត​​ពី៖ %s ។" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "ប្រភេទ​ទាំងអស់" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "គ្រប់​ពេល" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "និង" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "អនុម័ត" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "បាន​អនុម័ត" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "របាយការណ៍​ដែល​បាន​អនុម័ត" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "បាន​អនុម័ត​របាយការណ៍​នេះ" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "ប្រហែល" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "ប័ណ្ណសារ" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "បាន​ទុក​ក្នុង​ប័ណ្ណសារ" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "ឡើង" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "នៅ" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "អ្នកនិពន្ធ" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "ពិនិត្យ​ចូល​ស្វ័យប្រវត្តិ" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "របាយការណ៍​ជាមធ្យម​ក្នុង​មួយ​ថ្ងៃ" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "រង់ចាំ​ការ​អនុម័ត" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "រង់ចាំ​ការ​ផ្ទៀងផ្ទាត់" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "សញ្ញាសម្គាល់" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "សញ្ញាសម្គាល់" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "រូបភាព​សញ្ញាសម្គាល់" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "ឬ​អ្នក​អាច​ផ្ទុក​រូបភាព​សញ្ញាសម្គាល់​របស់​អ្នក​ជំនួស​ក៏​បាន។" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "កញ្ចប់​សញ្ញាសម្គាល់" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "ជ្រើស​សញ្ញាសម្គាល់" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "កំណត់ហេតុបណ្ដាញ" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "រុករក​ទម្រង់" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "បោះ​បង់​" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "ប្រភេទ" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "ប្រភេទ" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "តម្រង​ប្រភេទ" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "ប្រភេទ​បាន" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "ឈ្មោះ​ប្រភេទ" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "ប្ដូរ​ជួរ​កាលបរិច្ឆេទ" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "ប្ដូរ​ពាក្យសម្ងាត់" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "ប្ដូរ​រូបភាព​របស់​ខ្ញុំ" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "ជ្រើសរើស" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "ជ្រើស​ចំណុច​ទិន្នន័យ​ដើម្បី​ទាញ​យក" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "ឬ​ជ្រើស​ជួរ​ពេលវេលា​ផ្ទាល់ខ្លួន​របស់​អ្នក" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "ជ្រើស​ប្រភេទ​វាល" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLs ត្រឹមត្រូវ" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "សម្អាត" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "សម្អាត​ផែនទី​" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "បិទ" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "ក្រុម" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "ពណ៌" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "មតិយោបល់" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "មតិយោបល់" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "មតិយោបល់​លម្អិត" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "បាន​រក្សាទុក​ការ​កំណត់​របស់​អ្នក" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "កំណត់​រចនាសម្ព័ន្ធ" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "អ្នក​បាន​អះអាង​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ដោយ​ជោគជ័យ! សូម​ចូល​នៅ​ខាងក្រោម។" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "អ្នក​បាន​បញ្ជាក់​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ដោយ​ជោគជ័យ! លុះត្រាតែ​អ្នក​គ្រប់គ្រង​អនុញ្ញាត​គណនី​របស់​អ្នក ទើប​អ្នក​ចូល​បាន" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​អះអាង​អ៊ីមែល! អ្នក​អាច​ស្នើសុំ​អ៊ីមែល​អះអាង​ថ្មី​នៅ​ខាងក្រោម។" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "ទាក់ទង​យើង" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "លេខ​កូដ​សុវត្ថិភាព" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "សារ" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "សារ​របស់​អ្នក​ត្រូវ​បាន​ផ្ញើ!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "ឈ្មោះ​របស់​អ្នក" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "លេខ​ទូរស័ព្ទ​របស់​អ្នក" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "ផ្ញើ​សារ" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "ប្រធាន​បទ​សារ" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "រក្សាសិទ្ធិ" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "បង្កើត" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "បង្កើត/កែសម្រួល" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "បង្កើត​ថ្មី" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "បង្កើត​ពាក្យសម្ងាត់​ថ្មី" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "បង្កើត​របាយការណ៍" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "ភាព​គួរ​ជឿ​បាន" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "ពាក្យសម្ងាត់​បច្ចុប្បន្ន" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "វាល​ផ្ទាល់ខ្លួន" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "ព័ត៌មាន" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "កាលបរិច្ឆេទ​" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "កាល​បរិច្ឆេទ និង​ពេល​វេលា" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "ថ្ងៃ" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "ធ្វើឲ្យ​អសកម្ម" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "ណៃរ៉ូប៊ី, កេនយ៉ា" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "លុប" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "បាន​លុប" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "លុប" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "បាន​បិទ​ការ​លុប" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "លុប​ចុងក្រោយ​​" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "លុប​របាយការណ៍​នេះ" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "លុប​អ្វី​ដែល​បាន​ជ្រើស" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "លុប​សារ​ឥតបានការ" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "ការ​បង្ហាញ​សាកល្បង" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "សេចក្ដី​ពណ៌នា" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "ចុះ" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "ឧទាហរណ៍៖​ កាច់ជ្រុង City Market, 5th Street & 4th Avenue, Johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "សេចក្ដី​លម្អិត" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "របាយការណ៍​ផ្ទាល់" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "បាន​បិទ" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "មិន​អនុញ្ញាត" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "ទាញ​យក​របាយការណ៍" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "ទាញ​យក" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "កែសម្រួល" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "កែសម្រួល​វាល​ទម្រង់​បែបបទ" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "កែសម្រួល​របាយការណ៍" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "អ៊ីមែល" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "អាសយដ្ឋាន​អ៊ីមែល" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "ការ​កំណត់​កម្មវិធី​អ៊ីមែល" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "ម៉ាស៊ីន​កម្មវិធី​អ៊ីមែល" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "ពាក្យសម្ងាត់​កម្មវិធី​អ៊ីមែល" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "ច្រក​កម្មវិធី​អ៊ីមែល" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "គាំទ្រ​កម្មវិធី​អ៊ីមែល SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "ប្រភេទ​កម្មវិធី​អ៊ីមែល" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "ឈ្មោះ​អ្នកប្រើ​កម្មវិធី​អ៊ីមែល" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "ដូច្នេះ​ការ​កំណត់​របស់​អ្នក​គឺ​មាន​ទំនាក់ទំនង​ជាមួយ​អាសយដ្ឋាន​អ៊ីមែល​នេះ" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "ដើម្បី​ទទួល​បាន​របាយការណ៍​តាម​អ៊ីមែល សូម​បញ្ចូល​ការ​កំណត់​គណនី​អ៊ីមែល​របស់​អ្នក​​នៅ​ខាងក្រោម​។ សូម​ចងចាំ​ថា​អ៊ីមែល​ទាំងនោះ​នឹង​បាន​ទទួល​នៅ​ក្នុង​អាសយដ្ឋាន​របស់​អ្នក" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "ម៉ាស៊ីន​មេ​មួយ​ចំនួន​ត្រូវការ​អាសយដ្ឋាន​អ៊ីមែល​ពេញលេញ" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "ពាក្យសម្ងាត់​គណនី​អ៊ីមែល​របស់​អ្នក" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "ច្រក​ទូទៅ៖ 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "ឧទាហរណ៍៖ mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "ឧទាហរណ៍៖ pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "បិទ ឬ​បើក​ការ​តភ្ជាប់ SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---ទទេ---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "ជូន​ចំពោះ" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "កំហុស!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "ឧទាហរណ៍" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "កេនយ៉ា" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "កម្មវិធី​ខាងក្រៅ" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "តំណ​វីដេអូ​ខាងក្រៅ​​" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "មតិ​ព័ត៌មាន" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "ផ្ដល់​មតិ​ត្រឡប់" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "សូម​ផ្ដល់មតិត្រឡប់​ឲ្យ​យើង​អំពី​បទពិសោធន៍​របស់​អ្នក​ ដោយ​ផ្ញើ​អ៊ីមែល​ទៅ" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "មតិ​ព័ត៌មាន" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "មតិ​ព័ត៌មាន​បាន" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "ធាតុ​មតិ​ព័ត៌មាន" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "ឈ្មោះ​មតិ​ព័ត៌មាន" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL មតិ​ព័ត៌មាន" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "វាល​ដែល​មិន​ប្រើ" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "ឯកសារ" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "ឯកសារ​របស់​អ្នក​លើស​ពី​ទំហំ​អនុញ្ញាត​អតិបរមា​។" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "តម្រង" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "ត្រង​របាយការណ៍" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "ត្រង​របាយការណ៍​តាម" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "ត្រង​របាយការណ៍​ដែល​មាន" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "រក" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "រក​ទីតាំង" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "នាម​ខ្លួន" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "បង្ខំ​ដំណើរការ​កម្មវិធី​កាលវិភាគ" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "ភ្លេច​ពាក្យសម្ងាត់​របស់​អ្នក​ឬ?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "ទម្រង់​បែបបទ" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "ទម្រង់​បែបបទ" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "សេចក្ដី​ពណ៌នា​ទម្រង់​បែបបទ" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "កែសម្រួល​ទម្រង់​បែបបទ​នេះ" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "ទម្រង់​បែបបទ​បាន" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "ចំណងជើង​ទម្រង់​បែបបទ" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "ពី" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "ឈ្មោះ​ពេញ" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "មាន​ទីតាំង​ភូមិសាស្ត្រ" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "ពណ៌" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "មតិ" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "ស្លាក" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "គូស​ទទឹង" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "ទៅ" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "សញ្ញា #" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "បាន" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "វិធី​ជួយ" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "បាន​លាក់" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "លាក់" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "លាក់​សារ​នេះ" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "ដើម" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "វិធី​រាយការណ៍" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "លេខ​សម្គាល់" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "ប្រើ​ដើម្បី​កំណត់​អត្តសញ្ញាណ​អ្នក​នៅ​លើ​តំបន់បណ្ដាញ​ទៅកាន់​អ្នកប្រើ​ផ្សេងទៀត។" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "រូបភាព" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "រូបភាព" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "រូបភាព/រូបតំណាង" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "អសកម្ម" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "ប្រអប់​ទទួល" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "ឧប្បត្តិហេតុ" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "ឧប្បត្តិហេតុ​នៅ​ជិតៗ" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "ទីតាំង​ឧប្បត្តិហេតុ" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "រួមបញ្ចូល" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "រួមបញ្ចូល​ប្រភេទ" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "រួមបញ្ចូល​វាល​ផ្ទាល់ខ្លួន" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "រួមបញ្ចូល​សេចក្ដី​ពណ៌នា" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "រួមបញ្ចូល​សេចក្ដី​លម្អិត​ច្រើន​តាម​ដែល​អាច​ធ្វើ​បាន" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "រួមបញ្ចូល​រយៈទទឹង" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "រួមបញ្ចូល​ព័ត៌មាន​ទីតាំង" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "រួមបញ្ចូល​រយៈបណ្ដោយ" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "រួមបញ្ចូល​ព័ត៌មាន​ផ្ទាល់ខ្លួន" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "មេឌៀ​ចូល" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "ការ​វាយតម្លៃ​ព័ត៌មាន​​" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "បញ្ចូល​ទីតាំង​ជាក់លាក់" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "គណនី​របស់​អ្នក​មិន​មាន​សិទ្ធិ​គ្រប់គ្រាន់​ក្នុង​ការ​ចូល​ទេ។ សូម​ទាក់ទង​អ្នក​គ្រប់គ្រង​របស់​អ្នក។" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "ការ​ឆ្លើយតប​ចំពោះ" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "អាសយដ្ឋាន IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "តើ​នេះ​ជា​ប្រវត្តិរូប​របស់​អ្នក​ឬ?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "ធាតុ" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "ធាតុ" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "សេចក្ដី​លម្អិត​របស់​ធាតុ" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "ចំណងជើង​ធាតុ" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "កូនសោ" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "ពាក្យ​គន្លឹះ" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "ឯកសារ KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "ផ្ទុក​ឯកសារ KMZ/KML ឡើង" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "ភាសា" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "មុន" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "ខែមុន" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "នាម​ត្រកូល" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "ឆ្នាំមុន" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "រយៈទទឹង​" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "ស្រទាប់" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "ស្រទាប់​ផ្សេង" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "ស្រទាប់​បាន" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "ឈ្មោះ​ស្រទាប់" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL ស្រទាប់" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "ផ្ដល់​មតិយោបល់" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "បន្ថយ​ព័ត៌មាន" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "កម្រិត" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "កម្រិត​នេះ​បាន" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "ឈ្មោះ​កម្រិត" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "បាន​កំណត់" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "តភ្ជាប់" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "បញ្ជី" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "កំពុង​ផ្ទុក​របាយការណ៍" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "ទីតាំង" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "ទីតាំង​" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "ទីក្រុង រដ្ឋ និង/ឬ ប្រទេស" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "ចូល" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "បាន​បង្កើត​គណនី​ដោយ​ជោគជ័យ។​ ឥឡូវ​អ្នក​អាច​ចូល​បាន" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "បាន​ផ្ញើ​ការ​អះអាង​ទៅកាន់​អ៊ីមែល​របស់​អ្នក" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "បាន​បង្កើត​គណនី។ គណនី​របស់​អ្នក​ត្រូវតែ​បាន​អនុញ្ញាត​ដោយ​អ្នក​គ្រប់គ្រង ទើប​អ្នក​អាច​ចូល​បាន។" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "មិន​មាន​អាសយដ្ឋាន​អ៊ីមែល​នេះ​ទេ។ សូម​សាកល្បង​អាសយដ្ឋាន​ផ្សេង ឬ​បង្កើត​គណនី​ថ្មី។" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "សូម​ជ្រើស​ក្រុមហ៊ុន​ផ្ដល់​គណនី​របស់​អ្នក" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "ចូល​ជាមួយ" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "អ៊ីមែល និង​ពាក្យសម្ងាត់" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "ចុះឈ្មោះ" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "បង្កើត​គណនី" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "អរគុណ​សម្រាប់​ការ​ចុះឈ្មោះ​ជាមួយ %1$s ។ ដើម្បី​អះអាង​អ៊ីមែល​របស់​អ្នក សូម​ទៅកាន់ URL ដូច​ខាងក្រោម៖ %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "អះអាង​ការ​ចុះឈ្មោះ" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "មាន​អ្នកប្រើ​ថ្មី​បាន​ចុះឈ្មោះ​នៅ %1$s ។ ដើម្បី​យល់ព្រម​ការ​ចុះឈ្មោះ​របស់​ពួកគេ សូម​ចូល​ទៅកាន់ URL ខាងក្រោម៖ %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "ការ​អនុញ្ញាត​អ្នកប្រើ​ថ្មី" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "គណនី​អ្នកប្រើ​របស់​អ្នក​បាន​អនុញ្ញាត​សម្រាប់ %1$s ។ ដើម្បី​ចូល សូម​ទៅកាន់ URL ខាងក្រោម៖ %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "បាន​អនុញ្ញាត​គណនី​អ្នកប្រើ" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "បង្កើត​គណនី​ឥឡូវ​ដើម្បី​ទទួល​បាន​ប្រយោជន៍​ផ្សេងៗ​នៅ​លើ​តំបន់បណ្ដាញ។" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "រយៈបណ្ដោយ​" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "ផែន​ទី" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "សម្គាល់​ថា​បាន​អាន" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "សម្គាល់​ថា​មិន​បាន​អាន" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "ទំហំ​ឯកសារ​ធំ​បំផុត" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "មេឌៀ" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "តម្រង​មេឌៀ" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "សមាជិក" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "គ្រប់គ្រង​គណនី​របស់​អ្នក" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "សារ" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "សារ" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "សារ​លម្អិត" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "សារ​ពី​ប្រភព​មិនមែន​លេខ៖" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "ទូរស័ព្ទ​ចល័ត" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "កែប្រែ" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "កែប្រែ​កាលបរិច្ឆេទ" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "ខែ" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "ច្រើន​ទៀត" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "ព័ត៌មាន​បន្ថែម" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "តើ​ការ​អភិវឌ្ឍ Ushahidi ​នេះ​បាន​ទៅដល់​ប្រទេស​ច្រើន​ដែរ​ឬទេ" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "អ្នក​ត្រូវតែ​អះអាង​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក​ដើម្បី​ចូល​ដំណើរការ​ការ​ប្រើប្រាស់​នេះ។ ប្រសិនបើ​អ្នក​បាត់​អ៊ីមែល​អះអាង អ្នក​អាច​ស្នើសុំ​ការ​អះអាង​ថ្មី​ខាងក្រោម។" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "ឈ្មោះ" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "របាយការណ៍​ប្រហាក់ប្រហែល" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "ថ្មី" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "ព័ត៌មាន" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "មតិ​ព័ត៌មាន" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "ប្រភព​ព័ត៌មាន" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "ប្រភេទ​ថ្មី​" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "ពាក្យសម្ងាត់​ថ្មី" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "របាយការណ៍​ថ្មី" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "បន្ទាប់" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "ទេ​" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "មិន​មាន​ការ​ពិនិត្យ​ចូល​ដើម្បី​បង្ហាញ​ទេ។" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "គ្មាន​ទិន្នន័យ" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "គ្មាន" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "សម្គាល់" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "មិន​យល់ព្រម" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "មិន​យល់ព្រម" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---មិន​បាន​ជ្រើស---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "មិនមែន​សារ​ឥតបានការ" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "មិនបាន​បញ្ជាក់" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "មិន​មាន​របាយការណ៍" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "មិន​មាន​លទ្ធផល" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "បិទ" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "ព័ត៌មាន​ធម្មតា​របស់ & ផ្លូវការ" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "បើក" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "ជម្រើស" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "ជា​ជម្រើស" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "ជម្រើស" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "ស្ថាប័ន" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "ស្ថាប័ន" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "សេចក្ដី​ពណ៌នា​ពី​ស្ថាប័ន" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "អ៊ីមែល​ស្ថាប័ន" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "ស្ថាប័ន​បាន" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "ឈ្មោះ​ស្ថាប័ន" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "ទូរស័ព្ទ​ស្ថាប័ន ១" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "ទូរស័ព្ទ​ស្ថាប័ន ២" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "តំបន់បណ្ដាញ​របស់​ស្ថាប័ន" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "ដើម" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "សេចក្ដី​ពណ៌នា​ដើម" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "ចំណងជើង​ដើម" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "ការប្រើប្រាស់​ផ្សេងទៀត" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "ប្រអប់​ចេញ" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "ចេញ" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "ទំព័រ" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "ទំព័រ" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "ការ​ពណ៌នា​ទំព័រ" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "ទំព័រ​បាន" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "ឈ្មោះ​ផ្ទាំង​ទំព័រ" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "ចំណងជើង​ទំព័រ" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "ប្រភេទ​មេ" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "ពាក្យសម្ងាត់" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "ផ្ទៀងផ្ទាត់​ពាក្យសម្ងាត់" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "បាន​ផ្លាស់ប្ដូរ​ពាក្យសម្ងាត់​ដោយ​ជោគជ័យ! សូម​ចូល​នៅ​ខាងក្រោម។" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "ភ្លេច​ពាក្យសម្ងាត់​របស់​អ្នក​ឬ?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "ពិនិត្យមើល​អ៊ីមែល​របស់​អ្នក​សម្រាប់​ពាក្យសម្ងាត់​ថ្មី។" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "នៅតែ​ចូល​លើ​កុំព្យូទ័រ​នេះ​ឬ?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "ខែមុន" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "ឆ្នាំមុន" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "ក្រោម​ការ​រង់ចាំ" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "ក្នុង" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "ព័ត៌មាន​ផ្ទាល់ខ្លួន ជា​ជម្រើស។" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "ទូរស័ព្ទ" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "រូបថត" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "រូប​ភាព​" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "រូបភាព និង​ វីដេអូ" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* ស្វែងរក​ទីតាំង​របស់​អ្នក​ដោយ​ប្រើ​ឈ្មោះ ឬ​រយៈទទឹង រយៈបណ្ដោយ (ទម្រង់៖ 38.19, 85.61) ឬ​ចង្អុល​លើ​ផែនទី​ដើម្បី​រក​ទីតាំង​ដែល​ត្រឹមត្រូវ។" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "លេង" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "សូម​ចំណាំ" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "កម្មវិធី​ជំនួយ" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "តំបន់បណ្ដាញ​កម្មវិធី​ជំនួយ" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "ទម្រង់​សាធារណៈ" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL ទម្រង់​សាធារណៈ" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "មើល​ជាមុន" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "មើល​ធាតុ​ជាមុន" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "មើល​សារ​ជាមុន" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "មុន" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "ឯកជន" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "ពណ៌​ទម្រង់" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "បាន​រក្សាទុក​ទម្រង់​របស់​អ្នក" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "ស្ថានភាព​រហ័ស" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "អត្រា" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "អាន" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "ទទួល" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "ទទួល​ពី" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "ទទួល​ការ​ជូនដំណឹង" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "របាយការណ៍​ថ្មីៗ" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "ធ្វើឲ្យ​មតិ​ព័ត៌មាន​ស្រស់" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "បាន​ចុះឈ្មោះ​អ៊ីមែល" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "យកចេញ" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "ឆ្លើយតប" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "របាយការណ៍" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "របាយការណ៍ (ពី​ផែនទី, បញ្ជី​តាម​លំដាប់​កាល)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "អ្នក​រាយការណ៍" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "អ្នក​រាយការណ៍" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "កាលបរិច្ឆេទ​រាយការណ៍" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "អ៊ីមែល​អ្នក​រាយការណ៍" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "​នាម​ខ្លួន​អ្នក​រាយការណ៍" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "របាយការណ៍​បាន" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "អាសយដ្ឋាន IP របស់​អ្នក​រាយការណ៍" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "នាមត្រកូល​​​អ្នក​រាយការណ៍" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "លំដាប់​អ្នក​រាយការណ៍" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "លំដាប់​អ្នក​រាយការណ៍" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "ទូរស័ព្ទ​អ្នក​រាយការណ៍" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "របាយការណ៍" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "រុករក" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "ដាក់​ស្នើ" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "របាយការណ៍​ដោយ​អ្នកប្រើ​នេះ" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "ប្រភេទ" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d របាយការណ៍" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "កាលបរិច្ឆេទ​" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "សេចក្ដី​ពណ៌នា" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "នឹង​ទាញ​យក​របាយការណ៍​ក្នុង​ទម្រង់ CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "អ៊ីមែល" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "លក្ខណៈ" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "រក​ទីតាំង​ដែល​នៅ​ជិត​អ្នក" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "នាម​ខ្លួន" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "នាមត្រកូល​​" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "ឈ្មោះ​ទីតាំង" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "តំណ​ប្រភព​ព័ត៌មាន" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "ព័ត៌មាន​ជា​ជម្រើស" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "ផ្ទុក​រូបភាព​ឡើង​" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "ត្រឡប់​ទៅ​ទំព័រ​របាយការណ៍" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "ជ្រើសរើស​ទីក្រុង" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "របាយការណ៍​របស់​អ្នក​បាន​បញ្ជូន​ទៅកាន់​បុគ្គលិក​របស់​យើង​ដើម្បី​ត្រួតពិនិត្យ។​ យើង​ជូនដំណឹង​ត្រឡប់មកវិញ​យ៉ាង​ឆាប់​បំផុត។" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "ដាក់​ស្នើ​របាយការណ៍​ថ្មី" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "ពេល" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "កាល​កំណត់​របាយការណ៍" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "ចំណងជើង​របាយការណ៍" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "តំណ​វីដេអូ" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "រាយការណ៍​​ព្រឹត្តិការណ៍" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "របាយការណ៍​លម្អិត" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "តាមរយៈ​ការ​ផ្ញើ​សារ" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "តាមរយៈ​ការ​ផ្ញើ​អ៊ីមែល" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "ការ​ផ្ញើ​តាម​​រយៈ ​tweet ដោយ​ប្រើ​សញ្ញា # hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "តាមរយៈ​ការ​បំពេញ​ទម្រង់​នៅ​លើ​តំបន់បណ្ដាញ​របស់​យើង។" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "តាមរយៈ​ការ​ប្រើ​កម្មវិធី" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "បាន​រក្សាទុក​របាយការណ៍​របស់​អ្នក" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "ចំណងជើង​របាយការណ៍" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "ស្នើសុំ​ព័ត៌មាន​បន្ថែម" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "ស្នើសុំ​ទីកន្លែង" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "បាន​ទាមទារ" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "តម្រូវ​ការ" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "ផ្ញើ​អ៊ីមែល​អះអាង​ឡើងវិញ" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "កំណត់​ឡើងវិញ" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "កំណត់​តម្រង​ទាំងអស់​ឡើងវិញ" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "កំណត់​ពាក្យសម្ងាត់​ឡើងវិញ" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "ទៅ​យក​ឈ្មោះ​ទីក្រុង​ឡើងវិញ​សម្រាប់​ប្រទេស​ដែល​បាន​ជ្រើស" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "បាន​គ្រប់គ្រង​គណនី​ដោយ​សេវាកម្ម %s ។" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "អ្នក​មាន​គណនី​ដែល​បាន​គ្រប់គ្រង​ដោយ CrowdmapID រួចហើយ! សាកល្បង​ប្រើ​ពាក្យសម្ងាត់ និង​អ៊ីមែល​របស់ CrowdmapID ដើម្បី​ចូល។" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "មុខងារ" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "រក្សាទុក" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "បាន​រក្សាទុក" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "រក្សា​ទុក និង​បន្ថែម​ថ្មី​" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "រក្សាទុក និង​បិទ" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "រក្សា​ទុក​របាយការណ៍" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "កាលវិភាគ" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "កម្មវិធី​កំណត់​ពេល" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "ថ្ងៃ" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "ម៉ោង" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "កំណត់ហេតុ​កម្មវិធី​កំណត់​ពេល" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "នាទី" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "ថ្ងៃ​នៃ​សប្ដាហ៍​" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "ស្វែងរក" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "លទ្ធផល​ស្វែងរក​" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "លេខ​កូដ​សុវត្ថិភាព" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "ជ្រើស​យក​ទាំងអស់" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "ជ្រើស​ប្រភេទ​វាល" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "ជ្រើស​ប្រភេទ​ទម្រង់" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "ជ្រើស​ក្នុង​ផែនទី" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "ជ្រើស​បាន​ច្រើន​តាម​តម្រូវ​ការ​" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "សូម​ផ្ទៀងផ្ទាត់​ថា​អ្នក​បាន​ធីក​ធាតុ​មួយ" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "ជ្រើស​រូបរាង" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "ផ្ញើ" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "ផ្ញើ​ការ​អះអាង" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "កំពុង​ផ្ញើ​ទៅ" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "បាន​ផ្ញើ" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "បាន​ផ្ញើ​ដោយ" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "អាសយដ្ឋាន​ម៉ាស៊ីន​មេ" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "ប្រភេទ​ម៉ាស៊ីន​មេ" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "សេវាកម្ម" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "ឈ្មោះ​អ្នកប្រើ​សេវាកម្ម" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "លេខ​សម្គាល់​អ្នកប្រើ​សេវាកម្ម" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "ចែករំលែក" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "បាន​ចែករំលែក​ទិន្នន័យ" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "ការ​ចែករំលែក​បាន" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "ការ​ចែករំលែក" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "ផែនទី​ខ្លី​ជាង" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "បង្ហាញ" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "បង្ហាញ​ទាំងអស់" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "បង្ហាញ​សារ" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "បង្ហាញ​របាយការណ៍​ពី %1$s ទៅ %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "តំបន់បណ្ដាញ" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "អាសយដ្ឋាន​​អ៊ីមែល​តំបន់បណ្ដាញ" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL​ តំបន់បណ្ដាញ" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "ផែនទី​តូច​ជាង" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "សារ SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "សូមទោស អ្នក​មិន​មាន​សញ្ញា​ទេ។" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "ប្រភព" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "ឈ្មោះ​ប្រភព" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "តម្រៀប" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "តម្រៀប​តាម" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL ប្រភព" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "សារ​ឥតបានការ" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "គាំទ្រ SSL ឬ?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "ពី" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "ជំហាន" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "ដាក់​ស្នើ​របាយការណ៍" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "បាន​ដាក់​ស្នើ​ដោយ %1$s តាមរយៈ %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "ដាក់​ស្នើ​តាម​សារ​ SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "ផ្ញើ​សារ​ SMS របស់​អ្នក​ទៅ" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "តាម​ទូរស័ព្ទ​របស់​អ្នក" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "ជោគជ័យ!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "បាន​នាំចូល​ដោយ​ជោគជ័យ" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "នាមត្រកូល" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "ស្ទង់​មតិ" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "ប្រព័ន្ធ" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "ផែនទី​ខ្ពស់​ជាង" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "ច្រក TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "រូបរាង" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "រូបរាង​ Ushahidi ​លំនាំដើម" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "ការ​កំណត់​រូបរាង" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "នេះ" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "ថ្ងៃនេះ" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "ខែ​នេះ" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "សប្ដាហ៍​នេះ" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "ឆ្នាំនេះ" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "នេះ​ជា​ប្រវត្តិរូប​របស់​អ្នក" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "ពេល​វេលា" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "ចំណង​ជើង​" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "ជូនចំពោះ​" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "ថ្ងៃនេះ" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "ថ្ងៃនេះ​នៅ" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "ថូខឹន" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "របាយការណ៍​សរុប" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "បាន​បកប្រែ" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "បាន​បកប្រែ​ការ​ពណ៌នា" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "បាន​បកប្រែ​ចំណងជើង" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "បកប្រែ​ជា" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "ការ​បកប្រែ" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "បាន​រក្សាទុក​ការ​បកប្រែ" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "បាន​ទុកចិត្ត" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "ប្រភេទ" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "មិន​អាច​ផ្ញើ​អ៊ីមែល​បាន​ទេ។" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "របាយការណ៍​គ្មាន​ប្រភេទ" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "មិន​បាន​អាន" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "មិន​បាន​អះអាង" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "ធ្វើ​បច្ចុប្បន្នភាព​មតិ​ព័ត៌មាន" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "ផ្ទុក​ឡើង" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "មើល​របៀប​ផ្ទុក​របាយការណ៍​ឡើង​របស់​យើង៖-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "របៀប​ផ្ទុក XML ឡើង" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "របៀប​ផ្ទុក CSV ឡើង" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "ឯកសារ​ដែល​ត្រូវ​ផ្ទុក​ឡើង" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "ផ្ទុក​របាយការណ៍​ឡើង" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "ជួរឈរ​វាល​ផ្ទាល់ខ្លួន​ត្រូវតែ​មាន​ form_id របស់​ពួកគេ​ដែល​បាន​បន្ថែម ឧ. វាល​ផ្ទាល់ខ្លួន Test នៅ​លើ​ទម្រង់​លំនាំដើម​ដែល​លេខ​សម្គាល់​របស់​វា​គឺ 1 ដូច្នេះ​វា​គឺ Test-1។ នៅ​ពេល​នាំចូល​វាល​ទម្រង់​ផ្ទាល់ខ្លួន ត្រូវ​ប្រាកដ​ថា" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "ជាមួយ​ទម្រង់​បែបបទ​ខាងក្រោម អ្នក​អាច​នាំចូល​របាយការណ៍​​​ព្រឹត្តិការណ៍​​​ទៅកាន់​ម៉ាស៊ីន​ Ushahidi ​បាន។" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "របាយការណ៍​ត្រូវតែ​ផ្ទុក​ឡើង​ក្នុង​ទន្រង់ CSV ឬ XML ។" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "ពេល​លេខ​សម្គាល់​ហេតុ​ការណ៍​មាន​រួចហើយ​នៅ​ក្នុង​មូលដ្ឋាន​ទិន្នន័យ នោះ​ធាតុ​នៅ​ក្នុង​ឯកសារ CSV/XML នឹង​ត្រូវ​បាន​មិន​អើពើ។" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "វា​ត្រូវតែ​មាន​យ៉ាង​ហោច​ចំណងជើង និង​កាលបរិច្ឆេទ​ព្រឹត្តិការណ៍។" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "ប្រសិនបើ​មិន​បាន​ផ្ដល់​រយៈបណ្ដោយ និង​រយៈទទឹង​ទេ នោះ​ទីតាំង​នឹង​ត្រូវ​បាន​កំណត់​កូដ​ភូមិសាស្ត្រ​ដោយ​ប្រើ Google Geocoder ។" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "ប្រសិនបើ​មាន​ការ​នាំចូល​ព័ត៌មាន​បន្ថែម ឧ. ព័ត៌មាន​ផ្ទាល់ខ្លួន និង/ឬ​វាល​ទម្រង់​ផ្ទាល់ខ្លួន" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "នៅ​ក្នុង​វាល​ព័ត៌មាន​ផ្ទាល់ខ្លួន ត្រូវតែ​បាន​បំពេញ​ធាតុ​មួយ​យ៉ាង​ហោច​​ក្នុង​ចំណោម (នាម​ខ្លួន, នាម​ត្រកូល​ អ៊ីមែល) ។ កំណត់ត្រា​ទទេ​នឹង​មិន​ត្រូវ​បាន​នាំចូល​ឡើយ" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "ធាតុ​របស់​អ្នក​នៅ​ក្នុង​វាល​ទម្លាក់​ចុះ ប៊ូតុង​មូល និង​ប្រអប់​ធីក​គឺ​ផ្គូផ្គង​គ្នា​ជាមួយ​ជម្រើស​ដែល​បាន​ផ្ដល់​សម្រាប់​​ធាតុ​វាល​ផ្ទាល់ខ្លួន​របស់​អ្នក" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "ជម្រើស​ប្រអប់​ធីក​ត្រូវ​បាន​បំបែក​ដោយ​សញ្ញា​ក្បៀស ឧ. ប្រសិនបើ​អ្នក​បាន​ជ្រើស​ផ្លែ​ប៉ោម ស្វាយ និង​ទំពាំងបាយជូរ នោះ​ធាតុ​របស់​អ្នក​គឺ \"ប៉ោម, ស្វាយ, ទំពាំងបាយជូរ\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "តម្លៃ​វាល​កាលបរិច្ឆេទ​គឺ​មាន​ទម្រង់​ដូច​ខាងក្រោម៖ mm/dd/yyyy ឧ. ថ្ងៃ​ទី៣ ខែ​តុលា ឆ្នាំ​២០១២ = ១០/០៣/២០១២" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "គំរូ​របាយការណ៍ CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "បាន​ផ្ទុក​ឡើង​ដោយ​ជោគជ័យ" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "ផ្ទុក​វីដេអូ​ឡើង" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "អ្នកប្រើ" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "ឈ្មោះ​អ្នកប្រើ" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "អ្នក​គ្រប់គ្រង​ Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "ការ​ផ្ទៀងផ្ទាត់" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "បាន​ផ្ទៀងផ្ទាត់" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "បាន​ផ្ទៀងផ្ទាត់​របាយការណ៍" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "ផ្ទៀងផ្ទាត់" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "ផ្ទៀងផ្ទាត់​របាយការណ៍​នេះ" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "កំណែ" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "តាមរយៈ" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "វីដេអូ" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "មើល" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "ទិដ្ឋភាព" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "មើល​ទាំងអស់" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "មើល​មតិ​ព័ត៌មាន​ទាំងអស់" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "មើល​របាយការណ៍​ទាំងអស់" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "មើល​ធាតុ" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "មើល​ច្រើន​ទៀត" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "មើល​ទម្រង់​សាធារណៈ" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "មើល​របាយការណ៍" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "មើល​របាយការណ៍" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "មើល​ហេតុ​ការណ៍​" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "អាច​មើល​ឃើញ" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "រង់ចាំ​ការ​អនុម័ត" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "រង់ចាំ​ការ​អះអាង" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "ផែន​ទី​ធំ​ជាង​" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "សំណុំ​បែបបទ​បណ្ដាញ" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "តំបន់បណ្ដាញ" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "ទម្ងន់" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "បាទ/ចាស​" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "ម្សិលមិញ" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "ផ្ទាំង​គ្រប់គ្រង​របស់​អ្នក" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "ឯកសារ​របស់​អ្នក" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "ពង្រីក" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "បង្រួម" diff --git a/application/i18n/po/po-km/upgrade.po b/application/i18n/po/po-km/upgrade.po new file mode 100644 index 0000000000..577ed23642 --- /dev/null +++ b/application/i18n/po/po-km/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Seng Sutha , 2013 +# Sok Sophea , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Khmer (http://www.transifex.com/ushahidi/ushahidi-v2/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "ទិន្នន័យ​បញ្ចូល​មិន​ត្រឹមត្រូវ។ វា​អាច​ ០ សម្រាប់ ទេ ឬ ១ សម្រាប់​​បាទ/ចាស។" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "ធ្វើ​ឲ្យ​ប្រសើរ​ស្វ័យប្រវត្តិ" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ដែល​អាច​ធ្វើ​ទៅ​បាន" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "បន្ត" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "ធ្វើ​ឲ្យ​ប្រសើរ" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "ដូច្នេះ ខ្ញុំ​នឹង​ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​ប្រសើរ​ពី​កំណែ" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "ទៅ​កាន់​កំណែ​មូលដ្ឋាន​ទិន្នន័យ​ថ្មី​បំផុត" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "ចុច​លើ​ប៊ូតុង \"ធ្វើ​ឲ្យ​ប្រសើរ\" ហើយ​គ្រាន់​តែ​ chillax ជា​ប្រតិបត្តិការ​ដែល​ខ្ញុំ​មិន​ជឿ។" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "អូ ប្រសិនបើ​​អ្នក​ចង់​ឲ្យ​ខ្ញុំ​បម្រុង​ទុក​មូលដ្ឋាន​ទិន្នន័យ​​របស់​អ្នក គ្រាន់​តែ​ធីក​ប៊ូតុង​ពិនិត្យមើល​ខាងក្រោម ខ្ញុំ​នឹង​ធ្វើ​វា​សម្រាប់​អ្នក​បាន​ភ្លាមៗ។" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "បម្រុងទុក​មូលដ្ឋាន​ទិន្នន័យ​មុន​ពេល​ធ្វើ​ឲ្យ​ប្រសើរ? (បាន​ផ្ដល់​អនុសាសន៍​ល្អ​បំផុត)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​របស់ Ushahidi ប្រសើរ" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ! មុន​ពេល​អ្នក​បន្ត អ្នក​ចាំបាច់​ធ្វើ​​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​ប្រសើរ​ចំពោះ​កំណែ​ថ្មី​បំផុត (%s)។" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "កំណែ​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​គឺ​​ទាន់​សម័យ។" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​នៅ​ចំណុច​មួយ​ចំនួន" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "ធ្វើ​ឲ្យ​ប្រសើរ​ដោយ​ដៃ" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "ធ្វើ​ឲ្យ​ស្ថានភាព​របស់ Ushahidi ប្រសើរ" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "សេចក្ដី​ណែនាំ​លម្អិត​ខាងក្រោម​បង្ហាញ​អំពី​របៀប​ធ្វើ​ឲ្យ​ប្រសើរ​ក្នុង​ការ​ប្រើប្រាស់ Ushahidi របស់​អ្នក" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
ទាញយក
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
ទាញ​យក​ Ushahidi ថ្មីៗ​ជា​ច្រើន​​​បង្កើត​ពី" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
បម្រុងទុក
- ឯកសារ .htaccess, ./applications/config/config.php, ./applications/config/database.php និង ./applications/config/auth.php ។
- ក្នុង​ករណី​ដែល​មាន​អ្វី​មិន​ប្រក្រតី យើង​សូម​ផ្ដល់​អនុសាសន៍​ឲ្យ​អ្នក​បង្កើត​ការ​បម្រុងទុក​ទាំងស្រុង​សម្រាប់​ការ​ប្រើប្រាស់​យូសាហ៊ីឌី​របស់​អ្នក។
ចម្លង​ឯកសារ
- ស្រង់​ចេញ​នូវ​ឯកសារ​ហ្ស៊ីប​ដែល​បាន​ទាញ​យក
- ដោយ​ផ្អែក​លើ​ប្រព័ន្ធ​ប្រតិបត្តិការ​ដែល​កំពុង​ដំណើរការ​ម៉ាស៊ីន​មេ​បណ្ដាញ អ្នក​អាច​ប្រើ​ឧបករណ៍/របៀប​ដែល​អ្នក​ចូលចិត្ត (ឧ. Telnet, FTP, SSH) ដើម្បី​ចូល​ទៅកាន់​ម៉ាស៊ីន​មេ​បណ្ដាញ និង​ជំនួស​មាតិកា​របស់​ថត​ទាំងអស់​ជាមួយ​ទម្រង់​ថ្មី​បំផុត​ដែល​បាន​ស្ថាបនា​បច្ចុប្បន្ន។
ធ្វើឲ្យ​បច្ចុប្បន្នភាព​មូលដ្ឋាន​ទិន្នន័យ
- ដំបូង​កំណត់​អំពី​កំណែ​គ្រោងការណ៍​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​ដោយ​មើល​តម្លៃ​នៅ​ក្នុង​តារាង​កំណត់ db_version ឬ​មើល​នៅ​ក្នុង​ព័ត៌មាន​ការ​ធ្វើ​បច្ចុប្បន្នភាព​របស់​យូសាហ៊ីឌី​នៅ​ផ្នែក​ខាងលើ​នៃ​ទំព័រ​នេះ។
- ប្រសិនបើ​អ្នកប្រើ​កំណែ 25 អ្នក​ចាំបាច់​ត្រូវ​ធ្វើ​បច្ចុប្បន្នភាព​ពី 25-26, 26-27, 27-28 និង​ជា​បន្តបន្ទាប់​រហូតដល់​ឯកសារ SQL ចុងក្រោយ​នៅ​ក្នុង /sql ថត​របស់​អ្នក។
- ជាមួយ​ម៉ាស៊ីន​កូន​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក អ្នក​អាច​ធ្វើ​បច្ចុប្បន្នភាព​ដោយ​ដំណើរការ​ឯកសារ upgradex-x.sql ដែល​ត្រឹមត្រូវ។
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "ជំហាន​ទី ៣៖ មើល​នៅ​​ក្នុង​ថត sql ។ ដំណើរការ​ដោយ​ដៃ​ធ្វើ​ឲ្យ​ឯកសារ​ប្រសើរ-.sql ចាប់ផ្ដើម​ពី​កំណែ db បច្ចុប្បន្ន​​នៃ​ការ​ដំឡើង​របស់​អ្នក​តាម​រយៈ​ឯកសារ​ធ្វើ​ឲ្យ​ប្រសើរ​សម្រាប់ sql ចុង​ក្រោយ។" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "ជំហាន​ទី ៤៖ ចុច​លើ​ប៊ូតុង \"បន្ត\" ដើម្បី​ធ្វើ​ឲ្យ​តារាង​ចាំបាច់​ប្រសើរ​ឡើង។" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "សម្រាប់​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ស្វ័យប្រវត្តិ ចុច​លើ​ប៊ូតុង​ខាងក្រោម។" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "បច្ចុប្បន្ន​អ្នក​កំពុង​ប្រើ Ushahidi v%1$s ជាមួយ​កំណែ​មូលដ្ឋាន​ទិន្នន័យ %2$d ដែល​កំពុង​ដំណើរការ​លើ %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "ធ្វើ​ឲ្យ​ប្រសើរ" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "ដើម្បី​បន្ត​ការ​ធ្វើ​​ឲ្យ​ប្រសើរ​​មាន​ភាព​​ងាយស្រួល បាន​ទាមទារ​ព័ត៌មាន​ខាងក្រោម​សម្រាប់​ម៉ាស៊ីន​មេ FTP ដែល​បង្ហោះ​នៅ​លើ​​តំបន់​បណ្ដាញ​របស់​អ្នក។" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "ឈ្មោះ​ម៉ាស៊ីន​របស់ FTP ៖ ឧទាហរណ៍៖ \"ម៉ាស៊ីន​មូលដ្ឋាន\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "ពាក្យសម្ងាត់​របស់ FTP៖" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "ឈ្មោះ​អ្នក​ប្រើ​សម្រាប់ FTP ៖" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "អ្នក​​មាន​កំណែ Ushahidi ថ្មី​បំផុត។" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "អ្នក​មិន​ចាំបាច់​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើយ។" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "កំណែ​មូលដ្ឋាន​ទិន្នន័យ៖ %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "ការ​ព្រមាន៖ កំណែ​កម្មវិធី​ជា​កំណែ.php និង​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មិន​ផ្គូផ្គង។" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "ការ​ព្រមាន៖ កំណែ​កម្មវិធី​ជា​កំណែ.php និង​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មិន​ផ្គូផ្គង។" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "មូលដ្ឋាន​ទិន្នន័យ៖" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "កំពុង​ទាញ​យក​កំណែ​​ថ្មី​បំផុត​​របស់ ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "ឯកសារ​កំណត់ហេតុ" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "បាន​ទាញ​យក​ដោយ​ជោគជ័យ។ កំពុង​ពន្លា..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក។" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "បាន​ពន្លា​ដោយ​ជោគជ័យ។ កំពុង​ចម្លង​ឯកសារ..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ពន្លា។" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "បាន​ចម្លង​ដោយ​ជោគជ័យ។ កំពុង​ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​ប្រសើរ..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ចម្លង​ឯកសារ។" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "បម្រុង​ទុក​មូលដ្ឋាន​ទិន្នន័យ និង​ធ្វើ​ឲ្យ​ប្រសើរ​ដោយ​ជោគជ័យ។" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បម្រុង​ទុក​មូលដ្ឋាន​ទិន្នន័យ។" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "ធ្វើ​ឲ្យ​មូលដ្ឋាន​ទិន្នន័យ​ប្រសើរ​ដោយ​ជោគជ័យ។" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "កំពុង​លុប​ឯកសារ​ដែល​បាន​ទាញ​យក..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "ធ្វើ​ឲ្យ​ប្រសើរ​ដោយ​ជោគជ័យ។ មើល ឯកសារ​កំណត់​ហេតុ​" diff --git a/application/i18n/po/po-ko_KR/alerts.po b/application/i18n/po/po-ko_KR/alerts.po new file mode 100644 index 0000000000..2053be44de --- /dev/null +++ b/application/i18n/po/po-ko_KR/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "선택한 지역에서 입력한 이메일 주소는 이미 사용중입니다." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "이메일은 최소 4~64자가 입력되어야 합니다." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "체크박스 체크 시 이메일 입력은 필수입니다." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "이 배치는 한 국가에만 해당됩니다. 알림 위치가 국가 내부인지 확인해주세요. This deployment spans within one country only. Please make sure the alert location is within the country %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "지도에서 유효한 위치를 선택하지 않았습니다." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "지도에서 유효한 위치를 선택하지 않았습니다." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "지도에서 유효한 위치를 선택하지 않았습니다." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "지도에서 유효한 위치를 선택하지 않았습니다." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "입력한 휴대폰 번호의 길이가 정확하지 않습니다." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "선택한 지역에서 입력한 휴대폰 번호는 이미 사용중입니다." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "입력한 휴대폰 번호가 정확하지 않습니다. 입력 시 국가코드만 포함하여 입력바랍니다." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "이메일과 휴대폰 번호 중 하나는 반드시 입력을 해야 합니다." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "체크박스 체크 시 휴대폰 번호 입력은 필수입니다." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "지도에서 유효한 반경을 설정하지 않았습니다." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "지도에서 유효한 반경을 설정하지 않았습니다.." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "알람 수신자를 설정하지 않았습니다." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "다음 카테고리에서 이메일 알림 신청이 되어있습니다." + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "이 코드는 이전에 확인되었습니다." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "이 코드를 찾지 못했습니다. 정확한 URL 주소를 다시 한 번 확인바랍니다." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " 코드가 확인되었습니다. 이제 설정한 지역에서 업데이트가 있을 경우 알림 메시지를 받게 됩니다." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "알림요청을 확인하기 위해서는 다음으로 이동" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "알림을 추가하기 위해서 다시 알림 페이지로 돌아가기" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "이메일 알림이 생성되었으며, 확인 메시지가 발송되었습니다." + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "이메일로 받은 확인 코드를 입력해주세요:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "이메일 알림이 저장되지 않았습니다!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "이메일 알림이 저장되지 않았습니다!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "당신의 확인요청을 현재 시스템이 처리할 수 없습니다." + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "휴대폰 알림이 생성되었으며, 확인 메시지가 발송되었습니다." + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "휴대폰으로 받은 확인 코드를 입력해주세요:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "휴대폰 알림이 저장되지 않았습니다!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "휴대폰 알림이 저장되지 않았습니다!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "알림 설정이 올바르지 않습니다." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "귀하의 이메일 알림 신청으로 도착한 이메일입니다. 이메일을 받기 원치 않을 경우 다음으로 이동해주세요." + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "이메일 알림 신청이 정상적으로 해지 되었습니다." + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "이메일 알림 해지 신청이 정상적으로 완료 되지 않았습니다. 정확한 URL을 확인 바랍니다." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "알림 - 확인" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "귀하의 요청을 확인전까지 현재 위치에 대한 알림은 수신하지 않습니다." diff --git a/application/i18n/po/po-ko_KR/auth.po b/application/i18n/po/po-ko_KR/auth.po new file mode 100644 index 0000000000..70013ca201 --- /dev/null +++ b/application/i18n/po/po-ko_KR/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "입력한 이메일이 이미 사용중입니다." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "이메일은 최소 4~64자가 입력되어야 합니다." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "이메일을 입력해주세요." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "이름은 최소 3~100자가 입력되어야 합니다." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "이름을 입력해주세요." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "username에 사용할 수 없는 문자가 포함되어 있습니다." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "암호는 최소 8자가 입력되어야 합니다." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "입력하신 비밀번호와 이메일이 맞는지 확인바랍니다." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "비밀번호를 입력해주세요." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "비밀번호에는 알파벳, 일부 기호(#,@,_,-), 숫자만 허용됩니다." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "입력하신 비밀번호와 계정이 맞지 않습니다. 다시 입력해주세요." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "암호는 최소 8자가 입력되어야 합니다." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "입력하신 비밀번호와 이메일이 맞는지 확인바랍니다." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "비밀번호를 입력해주세요." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "비밀번호에는 알파벳, 일부 기호(#,@,_,-), 숫자만 허용됩니다." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "로그인 에러입니다." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "암호는 최소 5~16자가 입력되어야 합니다." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "입력하신 비밀번호가 맞는지 확인바랍니다." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "입력하신 비밀번호가 동일하지 않습니다. 비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "비밀번호를 입력해주세요." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "인증서버가 다운되었습니다. 나중에 다시 입력해주세요." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "비밀번호에는 알파벳, 일부 기호(#,@,_,-), 숫자만 허용됩니다." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "비밀번호란과 비밀번호 확인란의 문자는 동일해야 합니다." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "죄송합니다. 입력하신 이메일이 저장되어 있지 않습니다." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "이메일을 입력해주세요." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "슈퍼 관리자만이 슈퍼 관리자를 수정하거나 일반 사용자를 관리자로 업그레이드할 수 있습니다." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "잘못된 역할 형식입니다." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "역할은 최소 5~30자가 입력되어야 합니다." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "반드시 하나 이상의 역할을 정의해야합니다." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "반드시 ADMIN 과 USER의 역할 중 하나를 선택해야 합니다." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "관리자 역할은 수정할 수 없습니다." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "username 필드에는 반드시 문자와 숫자만 사용가능합니다." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "죄송합니다. 입력하신 username이 이미 사용중입니다." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "username은 최소 2~100자가 입력되어야 합니다." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "정확한 username을 입력하였는지 확인 바랍니다." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "username을 입력해주세요." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "슈퍼 관리자 역할은 수정할 수 없습니다." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "CSRF 공경 가능성. 사용자를 추가하거나 사용자 정보를 수정할 의도였습니까?" diff --git a/application/i18n/po/po-ko_KR/bug.po b/application/i18n/po/po-ko_KR/bug.po new file mode 100644 index 0000000000..56ac0bc876 --- /dev/null +++ b/application/i18n/po/po-ko_KR/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "정확한 보안문자를 입력해주세요." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "보안문자를 입력해주세요." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "이메일은 최소 4~64자가 입력되어야 합니다." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "체크박스 체크 시 이메일 입력은 필수입니다." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "오류 항목은 필수입니다." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "제목은 최소 3글자 이상이 입력되어야 합니다." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "제목을 입력해주세요." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "이름은 최소 3글자 이상이 입력되어야 합니다." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "이름을 입력해주세요." diff --git a/application/i18n/po/po-ko_KR/category.po b/application/i18n/po/po-ko_KR/category.po new file mode 100644 index 0000000000..3b336f01e1 --- /dev/null +++ b/application/i18n/po/po-ko_KR/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "컬러필드 입력은 6자 이상이어야 합니다." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "컬러필드를 입력해주세요." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "상세설명을 입력해주세요." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "업로드한 이미지 크기가 50KB이하인지 확인바랍니다." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "다음의 이미지 포맷만 사용이 가능합니다. .JPG, .PNG and .GIF. 이 아닐 경우 이미지가 나타나지 않습니다." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "허용되지 않은 이미지 포맷의 경우 이미지가 나타나지 않습니다." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "제목은 최소3이상 80자 이하여야 합니다." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "제목을 입력해주세요." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "서브카테고리안에 서브카테고리를 추가로 만들 수 없습니다." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "상위 카테고리가 존재하지 않습니다." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "상위 카테고리는 숫자여야 합니다." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "이 상위 카테고리는 스페셜카테고리가 될 수 없습니다." + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "상위 카테고리를 입력해주세요." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "상위 카테고리와 하위 카테고리는 동일할 수 없습니다." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "스페셜카테고리는 서브카테고리가 될 수 없습니다." diff --git a/application/i18n/po/po-ko_KR/comments.po b/application/i18n/po/po-ko_KR/comments.po new file mode 100644 index 0000000000..9c4210848c --- /dev/null +++ b/application/i18n/po/po-ko_KR/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "정확한 보안문자를 입력해주세요." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "보안문자를 입력해주세요." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "비밀번호가 맞지 않습니다." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "이름은 최소 3자 이상이어야 합니다." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "이름을 입력해주세요." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "코멘트를 입력해주세요." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "이메일은 최소 4~64자가 입력되어야 합니다." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "체크박스 체크 시 이메일 입력은 필수입니다." diff --git a/application/i18n/po/po-ko_KR/contact.po b/application/i18n/po/po-ko_KR/contact.po new file mode 100644 index 0000000000..5672300ed2 --- /dev/null +++ b/application/i18n/po/po-ko_KR/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "정확한 보안문자를 입력해주세요." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "유효한 보안코드를 입력하세요." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "보안문자를 입력해주세요." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "이메일은 최소 4~64자가 입력되어야 합니다." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "체크박스 체크 시 이메일 입력은 필수입니다." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "메시지를 입력해주세요." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "이름은 최소 3자 이상이어야 합니다." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "이름을 입력해주세요." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "제목은 최소 3자 이상이어야 합니다." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "제목을 입력해주세요." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "메시지 전송 시 오류가 발생했습니다." diff --git a/application/i18n/po/po-ko_KR/core.po b/application/i18n/po/po-ko_KR/core.po new file mode 100644 index 0000000000..cd48f35475 --- /dev/null +++ b/application/i18n/po/po-ko_KR/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Jungkwan Kim , 2013 +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-10-12 07:23+0000\n" +"Last-Translator: Jungkwan Kim \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "config 파일" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "컨트롤러" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "드라이버" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s 드라이버는 %s 라이브러리를 위한 것이며, %s 인터페이스를 구현해야 합니다." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s 드라이버는 %s 라이브러리를 위한 것이며, 찾을 수 없습니다." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "홈페이지에 가거나 다시 시도해보십시오.." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "요청을 완수할 수 없습니다." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "헬퍼" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "요청한 파일타입, .%s, 은 보기 config 파일에서 허용되지 않습니다." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "무효한 메쏘드 %s 가 %s 에서 호출되었습니다." + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "속성 %s 가 %s 클래스 내에서 존재하지 않습니다." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "라이브러리" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "로그 경로가 쓰기가능하지 않습니다: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "모델" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi 는 이 요청을 수행할 컨트롤러를 결정할 수 없습니다: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "기본 경로를 config/routes.php 에서 설정해주십시오." + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "요청한 페이지를, %s, 찾을 수 없습니다." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "이 이슈를 Ushahidi 에 보고하기" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "요청한 %s, %s, 를 찾을 수 없습니다." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "스택 트레이스" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "{execution_time} 초 동안 로딩되었고, {memory_usage} 의 메모리를 사용중입니다. Ushahidi v%s 가 생성함." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "한 페이지 요청 당 한 개의 Ushahidi 인스턴스만 가능합니다." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Uncaught 예외 %s: %s 가 발생하였습니다. %s 파일의 %s 행" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "보기" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "렌더를 호출하기 전 보기 파일명을 반드시 설정해야 합니다." diff --git a/application/i18n/po/po-ko_KR/database.po b/application/i18n/po/po-ko_KR/database.po new file mode 100644 index 0000000000..08c4ad2315 --- /dev/null +++ b/application/i18n/po/po-ko_KR/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "데이터베이스 : %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr " 테이블 \"%s\" 를 데이터베이스에서 찾을 수 없습니다. 현재 버전의 Ushahidi 가 최신 버전의 데이터베이스을 사용 중인지 확인해주세요." diff --git a/application/i18n/po/po-ko_KR/datetime.po b/application/i18n/po/po-ko_KR/datetime.po new file mode 100644 index 0000000000..c3e2bbd2dd --- /dev/null +++ b/application/i18n/po/po-ko_KR/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "오전" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "금" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "금요일" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "월" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "월요일" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "오후" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "토" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "토요일" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "일" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "일요일" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "목" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "목요일" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "화" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "화요일" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "수" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "수요일" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "1" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "1월" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "2" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "2월" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "3" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "3월" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "4" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "4월" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "5" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "5월" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "6" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "6월" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "7" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "7월" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "8" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "8월" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "9" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "9월" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "10" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "10월" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "11" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "11월" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "12" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "12월" diff --git a/application/i18n/po/po-ko_KR/feeds.po b/application/i18n/po/po-ko_KR/feeds.po new file mode 100644 index 0000000000..d443b91ca3 --- /dev/null +++ b/application/i18n/po/po-ko_KR/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "날짜" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "feed 제목은 최소 3자이상 70자이하로 입력되어야 합니다." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "feed 제목을 입력해주세요." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "feed's URL을 입력해주세요." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "정확한 URL을 입력해주세요. 예) http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "소스" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "제목" diff --git a/application/i18n/po/po-ko_KR/footer.po b/application/i18n/po/po-ko_KR/footer.po new file mode 100644 index 0000000000..f43261a927 --- /dev/null +++ b/application/i18n/po/po-ko_KR/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "현재 시스템에 php5-curl이 설치되어 있지 않습니다." diff --git a/application/i18n/po/po-ko_KR/form.po b/application/i18n/po/po-ko_KR/form.po new file mode 100644 index 0000000000..07abe02d89 --- /dev/null +++ b/application/i18n/po/po-ko_KR/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Samuel Sung , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "입력한 기본값이 잘못되었습니다." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "필드 이름은 최소 3자이상 200자이하로 입력해주세요." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "필드 높이는 0에서 50 사이로 입력해주세요." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "잘못된 날짜값을 입력했습니다." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Yes 또는 No를 선택해주세요." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "필드 이름은 최소 3자이상 100자이하로 입력해주세요." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "필드 이름을 입력해주세요." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "필드명이 이미 현재 폼에서 사용중입니다. 다른 이름을 입력하세요" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "잘못된 값을 입력했습니다." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Yes 또는 No를 선택해주세요." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "필드 종류를 선택해주세요." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "필드 종류를 선택해주세요." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "필드넓이는 0에서 300사이로 입력해주세요." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "form's 에 대한 상세내용을 입력해주세요." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "기본폼은 삭제할 수 없습니다." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "추가할 폼을 선택해주세요." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "추가할 폼을 선택해주세요." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "폼 이름은 최소 3자이상 100자이하로 입력해주세요." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "폼 이름을 입력해주세요." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "해당 타이틀의 폼이 이미 존재합니다. 다른 이름을 선택하세요" diff --git a/application/i18n/po/po-ko_KR/imap.po b/application/i18n/po/po-ko_KR/imap.po new file mode 100644 index 0000000000..c30b62c9aa --- /dev/null +++ b/application/i18n/po/po-ko_KR/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAP stream을 열 수 없습니다." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "이메일 서비스가 지원되지 않습니다." diff --git a/application/i18n/po/po-ko_KR/installer.po b/application/i18n/po/po-ko_KR/installer.po new file mode 100644 index 0000000000..63b2fc508c --- /dev/null +++ b/application/i18n/po/po-ko_KR/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "기본 경로" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "데이터베이스" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "데이터베이스 호스트" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Ushahidi를 개인서버에서 설치 시 \"localhost\"를 입력하시고, 웹호스팅을 이용 할 경우 웹 호스팅 회사에 관련 정보를 문의하세요." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "데이터베이스 이름" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Ushahidi를 설치하고자 하는 데이터 베이스의 이름" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "더 많은 정보는 this article on the wiki that talks about databases in more detail" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "기본 언어 (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "각각의 언어에 맞는 Ushahidi 언어 파일이 제공됩니다. 더 많은 정보는 add your own" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "사용중지" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "사용가능" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "하단의 내용은 발생오류에 대한 요약본입니다." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Ushahidi의 설치위치 입니다. 해당 되는 설치위치는 자동으로 찾아 지며, 정확한 주소인지 확인바랍니다. 만약, 해당 칸이 비어 있다면 그것은 Ushahidi가 최상위 디렉토리에 설치되어 나타나지 않는 것입니다." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "완료" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "일반" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "누구나 api키를 받을 수 있습니다. 지금!!" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "뒤로가기" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "고급설치" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "기본 설치과정은 5step 안에서 완료됩니다. 이는 서버, 지도, 사이트이름, contact 설명을 포함합니다." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "기본 설치" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "website's의 root 디렉토리와 데이터베이스 정보만 있으면 쉽고 빠르게 설치가 가능합니다. " + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "진행" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Ushahidi 설치 프로세스 시작을 환영합니다. 설치 타입을 선택하세요." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "설치가 성공적으로 완료되었습니다." + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "메일 서버" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "메일 서버 호스트" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "예시: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "메일 서버 암호 " + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "암호는 보통 이메일 암호와 동일합니다." + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "메일 서버 포트" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "일반 포트: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "메일 서버 타입" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) 혹은 Post Office Protocol (POP). 차이점은 무엇인가?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "메일 서버 사용자이름" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "사용하는 이메일이 Gmail, Hotmail, 또는 Yahoo Mail, 사용자이름에 이메일 주소를 입력해주세요." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "지도" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "지도 공급자" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi는 Google, Bing, Yahoo, Open Street Map 에서 모두 잘 작동합니다. 가장 적합한 지도를 고르세요." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "다른 단계....." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "암호" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "데이터 베이스 암호" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "앞으로" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Apache Server를 재시작하세요." + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "사용가능 또는 사용중지 SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "특정 메일 서버 연결 시 SSL 를 요구합니다. 가능하다면 이를 사용할 것을 추천합니다." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "SMS 서버를 설정하세요." + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "사이트 이메일 주소" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "사이트 알림 이메일 주소" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "방문자가 이메일 알림 서비스를 신청 시 사용자는 이 주소에서 이메일을 받게 됩니다. 이 이메일 주소는 사이트 이메일 주소와 다른 이메일을 사용해야 합니다." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "사이트 이메일 주소는 대표 이메일로 사용됩니다." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "사이트 이름" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "사이트 이름 설명" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "사이트 태그라인" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "사이트 태그라인 설명" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "하단의 파일과 폴더는 쓰기 권한이 설정되어야 합니다." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

파일 권한을 변경하기 위한 지침:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "파일 권한 변경을 포함하여 다음과 같은 파일과 폴더가 쓰기 권한이 설정되어 있는 지 확인하시기 바랍니다." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "설치 과정에 대해 다시 한 번 설치 프로세스를 확인 후 따라하시기 바랍니다." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Table Prefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "보통은 table prefix를 수정할 필요가 없습니다. 그러나, 하나의 데이터 베이스에 2개 이상의 Ushahidi를 설치 할 경우 여기서 수정이 가능합니다." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "제목" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "로그인" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "리포트 데이터 업로드" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "사용자 이름" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "데이터베이스 사용자이름" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "그리고 다음의 자격 증명을 사용" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "사이트 보기" diff --git a/application/i18n/po/po-ko_KR/layer.po b/application/i18n/po/po-ko_KR/layer.po new file mode 100644 index 0000000000..3c5897ce5b --- /dev/null +++ b/application/i18n/po/po-ko_KR/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "컬러필드는 6자이상이어야 합니다." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "컬러필드를 입력해주세요." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "다음의 파일포맷만 사용가능합니다. .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "허용되지 않은 파일포맷의 경우 나타나지 않습니다." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "이름은 최소 3자이상 80자이하여야 합니다." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "이름을 입력해주세요." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "KML Url 또는 File 을 입력해주세요." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "KML file 과 url을 동시에 사용할 수 없습니다." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "정확한 URL을 입력해주세요. 예. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-ko_KR/libraries.po b/application/i18n/po/po-ko_KR/libraries.po new file mode 100644 index 0000000000..163e9214cf --- /dev/null +++ b/application/i18n/po/po-ko_KR/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Akismet 서버와 연결할 수 없습니다." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Akismet 에 반응을 검색할 수 없습니다." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API 라이브러리: %s 을 위한 %s 클래스를 찾을 수 없습니다. API task routing table를 확인해 보세요." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "유효하지 않은 Akismet API 키입니다." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "fopen를 보내는 과정에서 오류가 발생하셨습니다. PHP가 OpenSSL를 갖고 있는지 혹은 PHP 버젼이 5.2 보다 높은지 확인해 보세요." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "현재 유니코드 메시지가 너무 깁니다. (현재 길이=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "목표 주소를 명확히 해주세요(TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "출처를 명확히 해주세요(FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "현재 유니코드 메시지가 너무 깁니다. (현재 길이=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "지원하지 않는 보내기 형식입니다." + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "%s 는 유효하지 않는 API library 입니다. 모든 API library는 %s 의 서브클래스이어야 합니다." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "디렉토리 %s 는 삭제 할 수 없습니다." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "추출하는 동안 에러 발생 : %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "최선 버젼의 우샤히디를 다운 받는데 실패하였습니다. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "파일 %s 는 복사 할 수 없습니다." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "파일 %s 는 삭제 할 수 없습니다." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "유샤히디 업그레이드 스크립트" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "다운로드된 Ushahidi zip file %s, 쓰기를 할 수 없습니다." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s 는 RiverID class에서 사용할 수 없습니다." diff --git a/application/i18n/po/po-ko_KR/maintenance.po b/application/i18n/po/po-ko_KR/maintenance.po new file mode 100644 index 0000000000..d4c1982346 --- /dev/null +++ b/application/i18n/po/po-ko_KR/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "웁스!!! 죄송합니다. 현재, 사이트 오류로 수정작업중입니다. 약 5분후에 다시 접속해주세요. " diff --git a/application/i18n/po/po-ko_KR/message.po b/application/i18n/po/po-ko_KR/message.po new file mode 100644 index 0000000000..869da4c5e6 --- /dev/null +++ b/application/i18n/po/po-ko_KR/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "정확한 보안문자를 입력해주세요." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "보안문자를 입력해주세요." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "이메일은 최소 4~64자가 입력되어야 합니다." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "체크박스 체크 시 이메일 입력은 필수입니다." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "코멘트 입력은 필수입니다." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "이름은 최소3자이상이어야 합니다." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "이름입력은 필수입니다." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "전화번호를 다시 입력해주세요." diff --git a/application/i18n/po/po-ko_KR/mhi.po b/application/i18n/po/po-ko_KR/mhi.po new file mode 100644 index 0000000000..9d9b757b8b --- /dev/null +++ b/application/i18n/po/po-ko_KR/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "정확한 보안문자를 입력해주세요." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "보안문자를 입력해주세요." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "입력한 이메일 주소가 유효하지 않습니다." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "정확한 이메일 주소를 입력해주세요." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "메시지를 입력해주세요." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "제목은 최소3자 이상이어야 합니다." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "제목을 입력해주세요." diff --git a/application/i18n/po/po-ko_KR/notifications.po b/application/i18n/po/po-ko_KR/notifications.po new file mode 100644 index 0000000000..818453d00f --- /dev/null +++ b/application/i18n/po/po-ko_KR/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "이 메시지는 귀하의 웹사이트에서 전송되었습니다.." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "관리자 로그인" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "새로운 댓글이 등록되었습니다. 답변은 : " + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "새 댓글" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "새로운 이메일이 도착하였습니다." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "새 이메일" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "새로운 리포트가 등록되었습니다." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "새 리포트" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "새로운 문자가 도착하였습니다." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "새 문자" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "새 알람을 받았습니다." + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "새로운 알람!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "비공개 메시지를 받았습니다." + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "새 비공개 메시지" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "비공개 메시지 응답은 : " diff --git a/application/i18n/po/po-ko_KR/page.po b/application/i18n/po/po-ko_KR/page.po new file mode 100644 index 0000000000..f662c5d362 --- /dev/null +++ b/application/i18n/po/po-ko_KR/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "페이지의 제목을 입력해 주세요." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "페이지의 제목은 최소 3자 최대 150자이어야 합니다." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "페이지 탭에 이름을 입력해 주세요." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "페이지를 설명하는 글을 입력해 주세요." diff --git a/application/i18n/po/po-ko_KR/permissions.po b/application/i18n/po/po-ko_KR/permissions.po new file mode 100644 index 0000000000..c69062375d --- /dev/null +++ b/application/i18n/po/po-ko_KR/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Jungkwan Kim , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-12 07:23+0000\n" +"Last-Translator: Jungkwan Kim \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "리포트 보기" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "리포트 생성/수정/삭제 " + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "리포트 승인" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "리포트 확인" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "리포트 댓글 관리" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "다운로드 리포트" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "업로드 리포트" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "메시지 관리" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "메시지 리포터 관리" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "통계 보기" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "세팅 수정" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "패널 관리" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "사용자 관리" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "역할 관리" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "체크인 가능" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "체크인 관리" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "관리자 UI 접속" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "멤버 UI 접속" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "모든 리포트 삭제" diff --git a/application/i18n/po/po-ko_KR/private_message.po b/application/i18n/po/po-ko_KR/private_message.po new file mode 100644 index 0000000000..f52fd6f56a --- /dev/null +++ b/application/i18n/po/po-ko_KR/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "반드시 Parent ID는 숫자여야 합니다." + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "이 항목은 필수입니다." + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "메시지를 받는 사용자가 존재하지 않습니다." + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "제목 항목은 필수입니다." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "제목은 3~150자 이내여야 합니다." + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "메시지 항목은 필수입니다." diff --git a/application/i18n/po/po-ko_KR/report.po b/application/i18n/po/po-ko_KR/report.po new file mode 100644 index 0000000000..b07d3737ce --- /dev/null +++ b/application/i18n/po/po-ko_KR/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "에러!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "리포트 배치범위는 한 국가안에서만 가능합니다. 현재 리포트 위치를 %s 안으로만 해주세요." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "다운로드할 정확한 아이템을 선택하세요." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "다운로드할 정확한 아이템을 선택하세요." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "리포트 승인대기, 리포트승인, 둘다 중 하나를 선택해주세요." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "리포트 승인대기, 리포트승인, 둘다 중 하나를 선택해주세요." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "리포트 승인대기, 리포트승인, 둘다 중 하나를 선택해주세요." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "리포트 확인대기, 리포트확인, 둘다 중 하나를 선택해주세요." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "리포트 확인대기, 리포트확인, 둘다 중 하나를 선택해주세요." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "리포트 확인대기, 리포트확인, 둘다 중 하나를 선택해주세요." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "다운로드할 정확한 타입의 리포트를 선택하세요." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "다운로드할 정확한 타입의 리포트를 선택하세요." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "다운로드할 정확한 타입의 리포트를 선택하세요." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "정확한 시작 날짜를 입력하세요." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "시작 날짜를 입력하세요. 오늘 날짜보다 미래일 수 없습니다." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "이 리포트 승인을 위해 정확한 값을 입력하세요." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "이 리포트 승인을 위해 정확한 값을 입력하세요." + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "am/pm을 정확히 입력해주세요." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "카테고리를 정확히 입력해주세요." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "카테고리를 입력해주세요." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "날짜를 정확히 입력해주세요." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "날짜를 정확히 입력해주세요." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "날짜를 입력해주세요." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "상세설명을 입력해주세요." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "정확한 시간을 입력해주세요." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "시간을 입력해주세요." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "정보 확률의 정확한 값을 입력해주세요." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "정보 확률의 정확한 값을 입력해주세요." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "정확한 분을 입력해주세요." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "분을 입력해주세요." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "정확한 뉴스 소스 URL을 입력해주세요." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "사진 사이즈의 최대크기는 2MB입니다." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "사용가능한 파일포맷은 .JPG, .PNG and .GIF. 입니다. 이 외의 파일포맷은 사용할 수 없습니다." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "허용되지 않은 파일포맷의 경우 사진이 나타나지 않습니다." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "소스 신뢰도의 정확한 값을 입력해주세요." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "소스 신뢰도의 정확한 값을 입력해주세요." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "제목은 최소3자이상 200자이하이어야 합니다." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "제목을 입력해주세요." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "CSRF 공격에 노출될 수 있습니다. 리포트를 만들거나 수정하시겠습니까?\n참조 : CSRF 설명 http://goo.gl/gFULR" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "이 리포트 확인을 위해 정확한 값을 입력해주세요." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "이 리포트 확인을 위해 정확한 값을 입력해주세요." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "비디오 링크 URL을 정확히 입력해주세요." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "위도값을 정확히 입력해주세요." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "위도값을 입력해주세요. 지도상의 포인트를 클릭하세요." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "로컬 필드 값이 잘못되었습니다." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "이 리포트는 이미 해당 언어로 번역되었습니다." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "로컬 필드 값이 잘못되었습니다." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "원본 리포트와 번역본이 동일한 로컬(언어)입니다." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "로컬값을 입력해주세요." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "위치 이름은 최소 3자이상 200자이하 이어야 합니다." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "위치 이름을 입력해주세요." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "정확한 경도값을 입력해주세요." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "경도값을 입력해주세요. 지도상의 포인트를 클릭하세요." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "정확한 이메일 주소를 입력해주세요." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "이메일은 최소 4자이상 64자 미만이어야 합니다." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "이름은 최소 3자이상 100자 미만이어야 합니다." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "성은 최소 3자이상 100자 미만이어야 합니다." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "정확한 마감 일자를 입력해주세요." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "마감 일자를 입력해주세요. 오늘 날짜보다 미래일 수 없습니다." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "시작일이 마감일 이 후 일 수 없습니다." diff --git a/application/i18n/po/po-ko_KR/reporters.po b/application/i18n/po/po-ko_KR/reporters.po new file mode 100644 index 0000000000..2dec7812ce --- /dev/null +++ b/application/i18n/po/po-ko_KR/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "정확한 위도값을 입력해주세요." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "위도값을 입력해주세요. 지도상의 포인트를 클릭하세요." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "정확한 리포트 레벨값을 입력해주세요." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "정확한 리포트 레벨값을 입력해주세요." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "위치 이름은 최소3자이상 200자이하 이어야 합니다." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "위치 이름을 입력해주세요." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "정확한 경도값을 입력해주세요." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "경도값을 입력해주세요. 지도상의 포인트를 클릭하세요." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "잘못된 리포터" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "잘못된 리포터" diff --git a/application/i18n/po/po-ko_KR/reports.po b/application/i18n/po/po-ko_KR/reports.po new file mode 100644 index 0000000000..8731ca8d62 --- /dev/null +++ b/application/i18n/po/po-ko_KR/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Samuel Sung , 2012 +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "체크한 아이템을 다시 한 번 확인해주세요." + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "체크한 아이템을 다시 한 번 확인해주세요." + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "리포트는 승인 전 반드시 카테고리에 속해 있어야 합니다." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "이것을 실행하기 위해 허락이 필요없습니다." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "업로드하기 위해 파일을 선택하세요" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "업로드 파일은 .csv 또는 .xml 형식이어야 합니다" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "파일 업로드 필드에 유효하지 않는 파일이 포함되어 있습니다." diff --git a/application/i18n/po/po-ko_KR/roles.po b/application/i18n/po/po-ko_KR/roles.po new file mode 100644 index 0000000000..1296c30a7a --- /dev/null +++ b/application/i18n/po/po-ko_KR/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "상세 설명은 3자이상 100자 이하 여야 합니다." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "상세 설명을 입력해주세요." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "이름은 문자와 숫자로만 구성되어야 합니다." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "이름은 최소2자이상 30자이하 여야 합니다." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "슈퍼 관리자는 변경 할 수 없습니다." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "이름을 입력해주세요." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "허용 레벨은 0 - 100 사이에서 입력해주세요." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "허용 레벨은 0 - 100 사이에서 입력해주세요." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "권한 필드는 0에서 부터 100까지의 숫자 이어야 합니다." diff --git a/application/i18n/po/po-ko_KR/settings.po b/application/i18n/po/po-ko_KR/settings.po new file mode 100644 index 0000000000..dc535eeb34 --- /dev/null +++ b/application/i18n/po/po-ko_KR/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Jungkwan Kim , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "코멘트란의 내용이 유효하지 않습니다." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "코멘트란 입력은 필수입니다." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Feed 란 내용이 유효하지 않습니다." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Feed 항목 입력은 필수입니다." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "알림 항목란의 내용이 유효하지 않습니다." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "알림 항목 입력은 필수입니다." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "리포트 항목란의 내용이 유효하지 않습니다." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "리포트 항목 입력은 필수입니다." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "통계공유 항목란의 내용이 유효하지 않습니다." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "통계공유 항목 입력은 필수입니다." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "API요청 당 기본 기록 수" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "API 요청 당 최대 기록 수" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "IP 주소 당 API 최대 요청 허용 수" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet 항목의 값이 유효하지 않습니다." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet 항목의 값이 유효하지 않습니다." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "임시 페이지 입력은 필수입니다." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "임시 페이지 저장 항목 값이 유효하지 않습니다." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "임시 페이지 저장 시간 값이 유효하지 않습니다." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "임시 페이지 저장 시간 입력은 필수입니다." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "만약 서버에서 깔끔한 URLs 접속 설정이 안되어 있다면 사용 설정 전 서버 설정을 수정해야 합니다. 자세한 설명은 아래 링크를 참고해주세요.설명" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "이 옵션은 우샤히디 접속 시 깔끔한 URL로 접속할 수 있게 해줍니다. 예를 들어 \"index.php\" 가 URL에서 보이지 않게 접속됩니다." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "깔끔한 URLs 사용하기" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "깔끔한 URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Clickatell API 키는 20자 이내여야 합니다." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Clickatell API 키 입력은 필수입니다." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Clickatell 비밀번호는 5~50자이내여야 합니다." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Clickatell 비밀번호 입력은 필수입니다." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Clickatell 사용자명은 50자이내여야 합니다." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Clickatell 사용자명 입력은 필수입니다." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "지도 수정" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "기본 위치" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "컬러 feed 항목 내용이 유효하지 않습니다." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "컬러 항목 입력은 6자이내여야 합니다." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "컬러 항목 입력은 필수입니다." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "기본 지도 뷰" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "기본 줌 레벨" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Geonames에서 도시 검색" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "메일서버 포트 입력내용이 너무 길어요." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "메일서버 포트 항목은 반드시 숫자만 입력해야 합니다." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "메일서버 비밀번호 입력은 5~50자이내여야 합니다." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "메일서버 비밀번호 입력은 필수입니다." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "메일서버 포트 입력내용이 너무 길어요." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "메일서버 포트 항목은 반드시 숫자만 입력해야 합니다." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "메일서버 포트 입력내용이 너무 길어요." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "메일서버 타입 입력은 필수입니다." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "메일서버 사용자명은 50자 이내여야 합니다." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "메일서버 사용자명 입력은 필수입니다." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "페이스북 설정 옵션" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "페이스북 어플리케이션 생성에 관련된 정보를 다음에서 얻을 수 있습니다." + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "페이스북 App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "페이스북 App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Google Analytics 항목에는 반드시 UA-XXXXX-XX 형식의 확인된 Web Property ID를 입력해야 합니다." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "HTTPS 사용" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "이 옵션은 우샤히디를 암호화된 \"https://\" 를 사용하지 않고 접속하도록 합니다." + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "이 옵션은 우샤히디를 암호화된 \"https://\" 를 사용하여 접속하도록 합니다." + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "페이지(Frontend)에 필요한 항목에 유효한 값이 입력되지 않았습니다." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "페이지(Frontend) 항목은 필수입니다." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "페이지(Admin)에 필요한 항목에 유효한 값이 입력되지 않았습니다." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "페이지(Admin) 항목은 필수입니다." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "다음의 순서로 지도 공급회사를 선택하세요. 공급회사를 선택하고, API 키를 공급회사 사이트에서 발급받으신 후 API항목에 입력하세요." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "줌 레벨" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "지도 공급회사 선택" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "새로운 API 키 입력" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "API 키 발급" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "다음의 순서로 지도 공급자를 선택하세요. 공급회사를 선택하고, API 키를 공급회사 사이트에서 발급받으신 후 API항목에 입력하세요." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "지도 공급회사" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "지도 타임라인" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "지도 설정" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "현재 우샤히디 배치의 범위가 2개 나라 이상인가요?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "기본 나라를 선택해주세요." + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "클릭 드래그로 위치를 정확히 설정해주세요." + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "리포트 그룹표시 활성화" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "사용자 코멘트 활성화" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "RSS 뉴스피드 표시 활성화" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "사용자 알람받기 활성화" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "사용자 리포트 활성화" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet 키" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "사이트 배너" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "한 줄당 칸" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "캐쉬페이지" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "캐쉬페이지 시간" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "체크인 기능 활성화" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "사이트 저작권" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "대표 컬러" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "대표 아이콘" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "배너 사진 삭제" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "기본 아이콘 삭제" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "연락처 표시" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "도움말 표시" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "알림 이메일 주소" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "정확한 이메일 주소를 입력해주세요. 리포트와 연락처에 노출됩니다." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "사이트 이메일 주소" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "한 페이지당 리포트 수 - 홈페이지 메인화면" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "한 페이지당 리포트 수 - 운영자" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "자동 스팸 방지 Akismet
무료 API KEY는 WordPress.com user account에 등록하시면 받을 수 있습니다." + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica 자격" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica Site" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "사이트 언어" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "사용자 수동 승인" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "공지사항-HOME에 나타납니다." + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "사이트 이름" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "개인 배치" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "이메일 확인이 필요합니다." + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "리포트 신고 페이지 공지사항" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "사이트 통계 설정(유샤히디 서버에 저장)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "간단하게 사이트 설명을 입력해주세요." + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "타임존" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "사이트 설정" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "트위터 해쉬태그 입력" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "해쉬태그는 콤마로 구분해주세요." + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "사이트 이메일 주소가 유효하지 않습니다." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "이메일 주소는 4~100자 이내여야 합니다." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "사이트 이름은 3~50자 이내여야 합니다." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "사이트 이름은 필수입니다." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "태그는 3~100자이내여야 합니다." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "태그는 필수입니다." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Clickatell API " + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Clickatell 잔고 확인" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "잔고 읽어보기" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Clicktell 비밀번호" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Clicktell 회원가입 " + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Clicktell 접속 정보를 아래에 입력해주세요." + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Clicktell 사용자 이름" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "아래의 입력란에 Frontline SMS와 연결할 전화번호를 입력합니다." + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "기호를 빼고 숫자만 입력하세요." + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "옵션1: Frontline SMS 사용하기" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "옵션2: 글로벌 SMS Gateway 사용하기" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS 설정 옵션" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "1번째칸의 전화번호가 너무 길어요." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "전화번호는 숫자만 가능합니다." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "2번째칸의 전화번호가 너무 길어요." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "전화번호는 숫자만 가능합니다." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "3번째칸의 전화번호가 너무 길어요." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "전화번호는 숫자만 가능합니다." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ko_KR/sharing.po b/application/i18n/po/po-ko_KR/sharing.po new file mode 100644 index 0000000000..4cd8f3b32c --- /dev/null +++ b/application/i18n/po/po-ko_KR/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "진입 날짜" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "추가된 날짜" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "마지막 접속" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "컬러필드는 6자 이상이어야 합니다." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "컬러필드가 필수입니다." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "유효한 Sharing name일 경우 나타나지 않습니다." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Sharing name은 필수입니다." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "사이트 URL이 이미 사용중입니다." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "유효한 사이트 URL일 경우 나타나지 않습니다." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "사이트 URL은 필수입니다." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "유효한 URL일 경우 URL 필드는 나타나지 않습니다." diff --git a/application/i18n/po/po-ko_KR/stats.po b/application/i18n/po/po-ko_KR/stats.po new file mode 100644 index 0000000000..9544e7cb5d --- /dev/null +++ b/application/i18n/po/po-ko_KR/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "인증완료" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "카테고리" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "카테고리 충돌" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "이 차트는 해당 카테고리의 리포트를 1차원적으로 보여줍니다. 왼쪽에서 오른쪽으로 스크롤 하면 다른 카테고리와 비교해서 볼 수 있습니다. 마우스를 그래프 위로 옮기면 자세한 내용을 확인할 수 있습니다." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "기간선택" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "국가들" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "국가" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "국가 세분화" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "이 섹션에 대한 설명이 아직 없습니다. 곧 등록될 예정입니다. 현재는 서브카테고리의 링크를 확인하는 용도로 사용가능합니다." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "에러" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "용어해설" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Hit 요약" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "범례" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "페이지뷰" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "당신의 사이트 방문자들이 본 페이지의 총 합" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "리포트" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "리포트카테고리" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "리포트통계" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "리포트 상태" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "리포트 펀치카드" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "리포트통계" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "통계없음" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 달" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 달" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 달" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "전체" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "미승인" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "순방문자수" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "사이트를 방문하는 실제 방문자 수 입니다. Unique Visitors는 쿠키를 통해 확인됩니다. 만약 쿠키의 사용이 힘들 경우 IP주소, 해상도, 브라우저, 플러그인, OS, etc를 통해 확인합니다." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "미확인" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "확인" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "방문자 요약" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "방문" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "30분전에 마지막으로 Unique Visitors 들이 머문 페이지입니다." diff --git a/application/i18n/po/po-ko_KR/tooltips.po b/application/i18n/po/po-ko_KR/tooltips.po new file mode 100644 index 0000000000..6b57da78d1 --- /dev/null +++ b/application/i18n/po/po-ko_KR/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Jungkwan Kim , 2012 +# Seokwon Yang , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "이 기능은 하나의 리포트에 추가 카테고리를 설정할 수 있게 합니다. 예를 들면 카테고리 1을 선택하고 카테고리 2를 추가로 선택하면, 해당 리포트는 2개의 카테고리에 속하게 됩니다." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "리포트를 승인 또는 하지 않음. 만약 승인하면 리포트는 공개됩니다." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "사용자에게 배지를 지정할 수 있습니다. 지정할 배지를 선택하세요." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "24시간 형식으로 시간 범위를 지정할 수 있습니다. 나중의 시간이 앞에 설정한 시간보다 빠르면 오류가 발생합니다. 또한, 시간은 하루 내 이어야 합니다. 그리고 설정한 시간은 사이트 설정에서 설정한 사이트 시간을 기준으로 하며, 사용자의 타임존을 필요로 하지는 않습니다. 시간을 입력하지 않으려면 00:00에서 00:00의 형식으로 놔두면 됩니다." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "만약에 특정 카테고리가 사용이 될 때 트리거를 활성화하고자 한다면 여기서 설정을 할 수 있습니다. 카테고리 중의 하나가 사용될 경우에만 활성화 될 것입니다. 예를 들면 카테고리 1과 카테고리 2를 선택하고 리포트가 카테고리 2와 카테고리 3에 등록되면, 그것은 테스트를 통과 할 것입니다." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "여기서 설정을 통해 특정 요일에 이것들을 실행되게 할 수 있습니다. 당신의 배치상의 타임존을 반드시 고려해야 합니다. shift키와 command 또는 control키를 동시에 누르면 중복 요일 선택이 가능합니다." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "이메일의 본문이 전송됩니다." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "이메일의 제목이 전송됩니다." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "피드는 전부 또는 일부가 될 수 있습니다. 만약, 특정 피드로 활성화 하고자 할 경우, 여기서 선택해 주세요. 아니면, 전체를 선택할 수 도 있습니다." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "트위터 사용자이름(2명이상의 사용자이름은 콤마로 구분해주세요). 만약에 특정 사용자의 트위터 메시지로만 활성화 하고자 할 경우 사용자이름을 @를 빼고 입력해주세요." + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "키워드를 입력하길 원하지 않으면 빈칸으로 두어도 됩니다. 만약, 단어를 입력하고자 하면, 콤마(,)로 구분하면 됩니다. 예를 들어 \"love\"또는\"peace\"를 메시지에 넣고자 하면, \"love,peace\"의 형태로 구분 입력하면 됩니다." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "다양한 지역 선택이 가능합니다. 만약, 특정 지역을 선택하고 해당 지역에서만 리포트를 받을 수 있습니다. 예를 들어 누군가로부터 브라질에 관련한 리포트를 받길 원하면, \"특정지역\"을 선택하고, 브라질 주위에 박스를 그려 이를 설정할 수 있습니다. 이 박스의 크기는 자유롭게 설정할 수 있으며, 1개 이상의 박스를 그릴 수 있습니다." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "이것은 전체 유저 베이스 또는 개별 유저 중 하나에서 특정번째에서 작동되게 할 수 있습니다. 사용하지 않으려면 빈칸으로 두면 됩니다." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "리포트의 기본 제목입니다." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "만약, 모든 통과자들이 통과하면, 트리거는 응답을 시작합니다. 이것은 리포트를 승인하고 이메일로 사용자에게 알리는 것을 말합니다. 여기서 세부적인 응답내용을 추가하고 설정할 수 있습니다." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "만약, 트리거 사용자를 선택하면, 특정 액션을 실행한 사용자에게 이메일을 보냅니다. 만약, 라디오 버튼을 선택하면 이메일 주소를 입력할 수 있습니다. 이것은 특정 지역상의 리포트를 보거나 체크인등 하는 이들에게 트리거 할 수 있게 해줍니다." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "복수일을 이곳에서 지정할 수 있습니다. 날짜는 개발 시간대에 의해 정해집니다. 모든 일 선택을 기본으로 하기 위해서는 어떤 날짜도 선택하지 마세요." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "트리거는 액션트리거 설정의 주요 구성요소입니다. 누군가 리포트를 제출하고, 체크인등을 실행할 때 특정 활동이 일어날 수 있도록 결정할 수 있습니다. 그리고 하나를 선택한 후 이러한 액션에 대해 필터링 할 수 있습니다." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "트리거 사용자는 누구나 또는 특정사용자가 될 수 있습니다. 만약, 특정사용자에게 트리거가 활성화되게 하려면, 여기서 선택해야 합니다. 아니면, 모든사용자에게 트리거를 설정되게 됩니다." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "확인되었거나 확인 되지 않은 리포트를 표시합니다." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "프로파일 페이지는 Gravatar를 이용합니다. 이미지를 클릭하면 Gravatar로 이동해서 프로파일 이미지를 변경할 수 있습니다." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "각각의 값은 콤마로 구분합니다. 예시 값1, 값2" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "각각의 값은 콤마로 구분됩니다. 예: 값1, 값2 . 만약 기본값을 설정하고 싶으면 해당 옵션 마지막에 :: 를 표기하면됩니다. 예를 들어 값1, 값2, 값3::값2 로 표기하면 값2가 기본값이 됩니다." + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "각각의 아이템들은 콤마로 구분합니다. 예시 아이템1. 아이템2" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "회원목록을 입력합니다." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "개인메시지 제목" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "개인메시지" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "공개된 프로파일상 사진배경의 색상을 선택할 수 있습니다. 또한 체크인할 때 나타는 점도 이 색상으로 표시됩니다. " + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "이메일주소" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "웹사이트 상에서 당신을 식별할 수 있는 방법 중 하나입니다. 공개되는 정보이오니, 꼭 한번 더 생각하세요." + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "빈칸으로 남겨주면 현재 암호를 사용하고, 그렇지 않으면 새로운 암호를 설정할 수 있습니다." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "새 사용자 생성시 필요한 사항입니다. 새 사용자가 첫 로그인 후 비밀번호를 재설정할 수 있도록 알려주세요." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "\"네\"를 선택하면 새로운 리포트나 댓글이 있을 때, 이메일로 알림을 보내줍니다." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "계정에 대해 허가되지 않은 변경 시에는 현재 암호를 입력해야 합니다." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "이 옵션을 체크하면 당신의 프로파일은 공개됩니다. 또한 당신이 올린 리포트, 체크인, 배지 등을 하나의 페이지에 보여줄 수 있는 쉬운 방법입니다." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "이 주소는 당신의 공개 프로파일에서 찾을 수 있습니다." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "사용자명 변경할 수 없습니다." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "접근 레벨은 특정 폼 필드 데이터에 대한 접근을 제한합니다. 상위 레벨은 하위 레벨의 필드 폼에 대해 접근이 가능합니다. 슈퍼관리자는 가장 높은(100) 레벨입니다. 공개된 데이터는 가장 낮은 레벨(0)입니다. 일반사용자는 접근권한이 10입니다. 관리자는 접근권한이 90이 기본입니다." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "이 이메일은 알림을 받는 주소로 사용됩니다." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "사용자가 웹을 통해 알림을 받을 수 있도록 허용합니다." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "유사한 리포트를 하나의 점으로 묶어 보여줍니다." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "사용자의 댓글을 허용합니다." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "메인 사이트에서 RSS 뉴스 피드가 노출됩니다." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "웹양식을 통해 정보를 제출할 수 있습니다." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "API 요청당 기본 레코드 숫자" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "API 요청당 최대 레코드 숫자" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "IP 주소당 최대 API 요청 숫자" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "이 사이트의 배너는 프론트 페이지의 상단에 나타납니다-테마지원 시. 추천하는 배너의 사이즈는 현재 사용중인 테마에 따라 다릅니다. 배너 적용 시 사이트 제목과 태그라인을 대체합니다." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "각 열당 표시되는 칸 수." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "페이지를 임시저장할 것인지를 설정합니다. 이 옵션을 활성화하면 페이지 로딩이 빨라집니다. 따라서 " + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "캐쉬 보관 시간 설정" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "이 셋팅은 현재 배치에서 체크인을 가능하게 합니다. 이것은 홈페이지에서 요구하는 특정한 방식을 따르지 않아도 되는 매우 간단한 리포트 방식입니다. 만약, 이 기능을 사용하려면 타임존-UTC기준- 과 테마가 지원하는 지 확인해야 합니다. 사용중일 때, 체크인 전용 테마는 Addons 메뉴에서 확인 가능합니다." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "지도가 특정 위치를 커버할 수 있도록 설정" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "모든 카테고리에 하나의 색상코드를 설정" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "모든 카테고리에 하나의 아이콘을 설정" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "지도상 기본 국가를 설정합니다." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "메인사이트에서 문의하기 메뉴 ON&OFF" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "메인사이트에서 도움말 메뉴 ON&OFF" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "메인사이트에서 페이지당 보여 줄 리포트 숫자" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "관리자페이지에서 페이지당 보여 줄 리포트 숫자" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "이것은 수신되는 메시지의 허브입니다." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "허브를 통해 들어오는 메시지는 우샤히디 플랫폼과 동기화됩니다." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "문자메시지를 보낸 전화번호" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "방문자에 대한 자세한 통계를 가져옵니다." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "사이트의 기본 언어를 설정합니다." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "\"네\"를 선택하면, 모든 개인 사용자들이 설정에 따라 자신의 계정을 만들 수 있도록 허용하는 것입니다. (ex. 일반사용자, 관리자, 슈퍼관리자 로 설정할 수 있습니다.)" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "사이트에서 사용될 지도를 설정합니다." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "리포트가 수신된 날짜와 시간에 따른 타임라인입니다." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "이 값을 \"사실\" 또는 \"네\"로 설정하면, 특정 사용자만 이 배치에 접근할 수 있습니다." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "\"네\"로 옵션이 설정되어 있으면, 사용자들이 이 배치에 접근하기 위해서는 이메일로 확인링크를 받아 확인해야 합니다. 만약, 이 옵션이 사용자가 사용중일 때 설정되면, 사용자는 확인창을 통해 계속 사용할 것인지 확인하게 됩니다." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "이메일이 있는 곳" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "리포트를 수신하는 이메일의 암호입니다." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "이메일주소를 통해 들어오는 연결을 허용하는 것이 필요합니다." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "보안연결을 강화하기 위해서 필요합니다." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "호스트 서버에서 이메일을 검색하기 위해 필요합니다." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "리포트를 받는 이메일주소입니다." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "사이트 통계는 우샤히디에 의해 서버에 저장됩니다. 옵션을 \"사용\"으로 설정하면 관리자 패널에서 통계 메뉴를 통해 볼 수 있습니다. \"사용안함\"으로 설정하면 통계 수치 수집이 중단됩니다. 물론, 중단된 기간 동안의 통계수치는 복구 또는 확인 할 수 없습니다." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "사이트내에서 유저가 생성한 문자, 이미지, 비디오 등에 대한 재배포 권리를 다른이에게 부여하길 원한다면, https://creativecommons.org/choose/ 를 방문한 후 원하는 조건의 라이센스를 선택한 후 적용하세요." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "이메일 리포트와 문의하기를 통해 들어오는 메시지를 받는 이메일입니다." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "이 메시지는 메인 페이지 지도 위에 게시됩니다. 사이트에 대한 중요한 정보를 방문자에게 전달할 때 유용합니다. 박스를 제거하면 메시지도 지울 수 있습니다." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "메인사이트 상단에 표시되는 이름입니다." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "리포트 제출 페이지에 나타나는 메시지입니다. 면책조항이나 사용방법을 사용자에게 알려줄 때 유용합니다." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "간단한 단어로 사이트를 설명해주세요. 주요 키워드로 설명하는 것을 추천합니다." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "당신의 사이트가 운영될 지역의 타임존을 선택하세요. 설정 이후 사이트내의 모든 실행은 설정된 타임존에 의해 영향을 받게 됩니다." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "트위터 해쉬태그를 설정해주세요.(예시: #Ushahidi)" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ko_KR/ui_admin.po b/application/i18n/po/po-ko_KR/ui_admin.po new file mode 100644 index 0000000000..9c9a9dac46 --- /dev/null +++ b/application/i18n/po/po-ko_KR/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Jungkwan Kim , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-12 07:47+0000\n" +"Last-Translator: Jungkwan Kim \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "접근이 거부되었습니다. 접근자격이 충분치 않거나, 요청이 거절되었습니다." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "접근이 거부되었습니다. 요청은 확인되었으나, 접근 제한에 따라 거부되었습니다. 다음에 다시 시도해보세요." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "접근 레벨" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "카테고리 추가" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "추가" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "추가/수정" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Addons" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "관리자" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "알림" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "수신알림" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "전부" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "익명" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "누구나" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "어디에서나" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API 금지" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API 로그" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API 세팅" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "해제" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "모두해제" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "승인됨" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "자동승인" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "수동승인" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "아카이브" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "정말 원하나요?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "이 아이템을 지울까요?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "이 사진을 지울까요?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "폼을 바꿀까요?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "할당" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "할당된배지" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "배지 할당" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "저자" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "저자 이메일" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "뒤로" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "금지 IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "시간사이" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "블락" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "내용" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "취소" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "카테고리" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "차트 표시 오류" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "메시지가 맞는 지 확인하세요." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "숫자가 맞는지 확인하세요." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "SMS 세팅을 확인하세요." + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "세부사항확인" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "체크인" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "도시 불러오기 완료" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "코드" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "코드버전 동기화" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "색상" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "코멘트" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "알림 확인 코드는 : " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "사용자는 다음이 되었다." + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "카운트" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "국가를 찾을 수 없습니다." + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "추가/수정" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "리포트 추가" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "중요한 업그레이드" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "최근 활동" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "최근 비활동" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "커스텀 필드를 수정하는데 필요한 권한이 없습니다." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "매일" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "관리자페이지" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "데이터베이스" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "날짜 & 시간" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "추가된 날짜" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "수정된 날짜" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "요일" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB 버전 동기화" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "삭제" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "삭제" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "모든 리포트 삭제" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "배지삭제" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "데모" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "설명" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "사용안함" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "디바이더 시작" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "디바이더 끝" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "리포트 다운로드" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "목록 선택" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "편집완료" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "수정한 사람" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "수정" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "수정 로그" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "이메일" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "전부" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "지오코딩 에러! HTTP 에러!" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP 라이브러리가 설치되지 않았어요." + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "자격 부적격" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "에러" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "오류입니다. 사건을 포스팅할 수 없습니다." + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "6시간" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "12시간" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "실험" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "피드" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "피드백" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "피드" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "선택 리스트" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "기본값" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "데이터 타입" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "숫자" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "무료문자" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "높이(세로)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "숨겨진 필드" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "최대 문자 길이" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "필드이름" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Toggle" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "아니오" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "네, 기본설정닫기" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "네, 기본설정열기" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "업로드된 파일을 찾을 수 없습니다." + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "파일을 열 수 없습니다." + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "존재하지 않는 Form 입니다." + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "포럼" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "문자(Free)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "날짜" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "라디오버튼" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "체크박스" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Dropdown" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "From" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "From" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonames 시간초과 에러" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "도움말" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "테마 더보기" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "플러그인 더보기" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Actions" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "추가/수정" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "이메일" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "사용자 관리" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "역할" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "사용자" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "도움말" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "시간마다" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "다음의 사건피드" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "인스톨 폴더가 아직 있어요. 보안에 문제가 생길 수 있으니 얼른 지워주세요. ^^" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "인스턴스" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "인스턴스" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "인스턴스 세부사항 " + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "유효하지 않은 변수" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP 주소" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "날짜 항목이 맞나요?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "누가 답변을 볼 수 있나요" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "누가 답변을 달 수 있나요" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "키워드" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "키워드" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email 주소:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "이름:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "비밀번호:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "역할:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "사용자명:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "레이어" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "중재자" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "로그아웃" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "로그" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "관리" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "역할&권한 관리" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "사용자 보기" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "사용자 추가/수정" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "공개리스트 관리" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "다음으로" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "스팸해제" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "스팸표시" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "어떤 문서와도 일치가 되지 않았습니다." + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "메시지" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "메시지" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica 메시지" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter 메시지" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "메시지가 전송되었습니다!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "분" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "분" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "변수가 분실되었습니다." + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "중재자" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "수정되었습니다." + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "타임존 설정 수정" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "아래로" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "위로" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "다중 호스트 인스턴스" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "내 알림" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "내 체크인" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "내 프로파일" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "내 리포트" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "투표" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "긍정" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "부정" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "이름" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "새알림" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "새메시지" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "새비밀번호" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "아니오" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "스페셜카테고리는 유저의 리포트 제출 폼에서는 보이지 않습니다. 여기에는 카테고리가 삭제되어 카테고리가 지정되지 않은 리포트의 카테고리로 사용됩니다." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "공지" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "대소문자를 구분하지 않습니다." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "찾을 수 없음" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "데이터가 없습니다. " + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "에러가 아니에요." + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "보여줄 결과가 없습니다." + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "of" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "특정 카운트에서" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID " + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "페이지" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "페이지" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "페이지를 찾을 수 없습니다." + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "죄송합니다. 현재 당신이 보려고 하는 페이지는 존재하지 않습니다. 이 경우 3가지의 경우가 있습니다. 아래의 내용을 보시고 저희에게 알려주세요.

첫 번째 우리 서비스 내의 링크를 통해 오셨나요?
만약 그렇다면 연락하기로 알려주세요. 알려주시면 바로 수정하겠습니다.

두 번째 다른 사이트의 링크를 통해 오셨나요?
간혹 외부 사이트의 링크는 만료되거나 철자가 틀린 경우가 있습니다. 이 경우도 연락하기 로 알려주세요. 해당 사항을 수정할 수 있도록 노력하겠습니다.

마지막으로 직접 URL을 입력하고 오셨나요?
아마도 입력하신 주소에 오류가 있을 수 있습니다. 확인해주세요.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "죄송합니다. 현재 당신이 보려고 하는 페이지는 존재하지 않습니다. " + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parameters Used" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "비밀번호" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "비밀번호 재설정" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "친애하는" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "우리는 비밀번호 재설정 요청을 받았습니다. " + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "암호를 재설정 하려면 다음 링크를 클릭하거나 복사 후 브라우저 주소창에 붙여넣기 하세요." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "암호가 재설정되었습니다. 관련 내용은 다음과 같습니다." + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "우샤히디 비밀번호 재설정" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "전화" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "선택해주세요." + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "데이터는 포스트 방식으로 전송되지 않았습니다." + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "미리보기" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "메시지" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "개인메시지" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "개인메시지를 보냈습니다." + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "제목" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "To" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "공개리스팅" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "통과자" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "읽기" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "타당성" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "리포트 제목" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "리포트 날짜" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "리포터" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "리포터 레벨" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "리포트" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "평판점수" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "필수" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "재설정" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "응답" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "결과" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "취소" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "이 이메일은 크라우드맵 아이디로 사용 중입니다. 기존의 암호로 로그인 해주세요." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "설정 저장" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "검색" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "리포트 검색" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "검색" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "현재 암호키가 기본값입니다. 암호키를 변경해서 보안을 강화하세요." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "현재 사이트는 HTTP를 사용중입니다. HTTPS를 사용하면 보안을 강화할 수 있습니다." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "wiki에서 관련 정보를 이용할 수 있습니다 :" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "리포트 다운로드 포맷 선택:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "---필드 타입을 선택하세요---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "아이템을 선택하세요." + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "반드시, 응답을 선택하기 전에 트리거를 선택해야 합니다." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "통과자를 정의하기 전에 반드시 트리거를 선택해야 합니다." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "발송인" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "보내기" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "이 메시지는 귀하의 웹사이트에서 전송되었습니다." + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "서버시간" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "설정" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "페이지" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "결과" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "보여" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "스페셜 카테고리" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "스페셜 카테고리는 일반 사용자가 리포팅 할 때는 보이지 않습니다. 이것은 확인된 공식 리포터에 의해서만 사용되는 기능입니다." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "특정 지역" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "주" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "통계" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "통계" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "어이쿠! 통계 수집 실패! 조금 있따 다시 해보세요." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "어이쿠! 통계 수집 실패!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "특정일자" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "제목" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "슈퍼관리자" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "실행된 작업" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "문자항목" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "이름" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "사용자 관리" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "시간초과 오류" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "to" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "전체 기록" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "to" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "리포트 번역" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "트리거" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "트리거 사용자" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "트리거" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "미승인" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "미확인" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "미확인 실패" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "읽지않음" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "이제 다음에서 알림을 받지 않습니다." + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "지금 클릭해서 업그레이드 하세요." + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "업그레이드 우샤히디" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "우샤히디 상태 업그레이드" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "리포트 업로드" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "사용자" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "사용자" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "우샤히디" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "확임/미확인" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "확인/미확인" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "버전" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "업그레이드 가능" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "비디오 인코딩" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "비공개 메시지" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "사이트 보기" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "리포트 보기" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "환영합니다" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "네" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "검색어 " + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "아래의 버튼을 클릭하면 모든 리포트가 데이터베이스에서 삭제됩니다. 삭제 이후에는 되돌릴 수 없습니다." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "진행 전에 데이터베이스를 백업하는 것을 추천합니다." + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "데이터베이스의 리포트 중 %s 를 삭제하기를 원합니다." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "리포트를 전부 삭제하기를 원하나요?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "지울 리포트가 없습니다." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "로그인 횟수" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "마지막 로그인" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "계정 확인이 되었나요?" diff --git a/application/i18n/po/po-ko_KR/ui_main.po b/application/i18n/po/po-ko_KR/ui_main.po new file mode 100644 index 0000000000..6dcea9cb03 --- /dev/null +++ b/application/i18n/po/po-ko_KR/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# Jungkwan Kim , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "About" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "접속" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "접속 제한" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "계정이름" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "적용" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "되돌릴 수 없는 적용입니다. 진행하시겠습니까?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "활성화" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "활동" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "추가" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "추가한 사람은" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "추가 데이터" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "추가 리포트" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "수정" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "필드추가" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "언어추가" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "새로만들기" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "카테고리추가" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "번역추가" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "관리" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "알림설정" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "리포트 발생 시 알림:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "알림저장" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "이메일주소:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "이메일 주소 입력" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "국가코드를 포함한 휴대폰 번호입력" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "알림설정" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "이전 알림" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "휴대폰번호:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "지도위에 기준점을 표시하면, 반경 20KM이내 리포트가 발생할 경우 알려줍니다." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "위치를 찾을 수 없을 경우 지도위에 정확한 위치를 클릭하세요." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS 피드 (아래의 URL을 복사하세요)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "도시" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "스텝 1:도시와 위치 선택:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "스텝 2: 알림 방식 선택:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "스텝 3 (Optional): 카테고리 선택" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "알림 요청을 확인" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "알림 저장 완료!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "전체" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "승인" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "모든 카테고리" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "전체" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "그리고" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "승인" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "승인됨" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "승인된 리포트" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "리포트 승인" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Approximate(대강)" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "아카이브" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "아카이브" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "at" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "작가" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "자동 체크인" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "1일 평균 리포트" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "대기중" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "확인중" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "배지" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "배지" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "배지 이미지" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "고유한 배지 이미지를 올릴 수 있습니다." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "배지 꾸러미" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "배지 선택" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "블로그" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "프로파일 검색" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "취소" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "카테고리" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "카테고리" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "카테고리 필터" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "존재하는 카테고리" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "카테고리 이름" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "기간 변경" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "암호 변경" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "내사진 변경" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "선택" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "데이터 다운로드 시점 선택" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "데이터 다운로드 기간 선택" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "필드 선택" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL 초기화" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "초기화" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Map 초기화" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "닫기" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "모아보기" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "색상" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "코멘트" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "코멘트" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "상세 코멘트" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "저장완료!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "수정" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "이메일 확인이 완료되었습니다. 로그인 시 사용하세요." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "이메일 확인이 실패했습니다. 아래에서 다른 이메일로 확인을 재요청할 수 있습니다." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "문의" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "보안코드" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "이메일 주소" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "메시지" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "메시지 발송이 완료되었습니다!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "이름" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "휴대폰 번호" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "보내기" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "제목" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "생성" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "수정" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "생성" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "새 암호" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "새 리포트" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "신뢰도" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "현재 암호" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "커스텀 필드" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "정보" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "기간" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "날짜 & 시간" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "날짜" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "비활성화" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "나이로비, 케냐" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "삭제" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "삭제" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "삭제" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "사용불가 삭제" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "최근 삭제" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "리포트 삭제" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "선택 삭제" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "스팸 삭제" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "데모" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "상세설명" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "예: 서울특별시, 영등포구, 여의도동 57-5" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "상세" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "리포트" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "비활성화" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "미승인" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "리포트 다운로드" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "다운로드" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "수정" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "폼필드 수정" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "리포트 수정" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "이메일" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "이메일 주소" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "메일서버 셋팅" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "메일서버 호스트" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "메일서버 암호" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "메일서버 포트" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "메일서버 SSL 지원" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "메일서버 타입" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "메일서버 Username" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "이메일주소와 " + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "리포트를 이메일로 받기를 원한다면 아래의 이메일 계정 설정을 해주세요. 리포트는 다음의 이메일로 받게되오니 참고해주세요 : " + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "일부 서버는 완벽한 이메일 주소를 요구합니다." + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "이메일 계정 비밀번호" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "포트: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "예시: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "예시: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "SSL연결을 사용 또는 사용금지" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---비었음---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "to" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "에러!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "예시" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "케냐" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "앱" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "외부 비디오 링크" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "피드" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "피드백" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "피드" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "기존 피드" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "피드아이템" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "피드이름" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "피드 URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "사용되지 않는 필드" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "파일" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "허용된 파일크기를 넘습니다." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "필터" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "필터 리포트" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "필터 리포트" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "필터 리포트는" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "검색" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "위치 검색" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "이름" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "스케줄러 작동" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "암호를 잊으셨습니까?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "폼" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "폼" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "폼 설명" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "폼 수정" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "기존 폼" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "폼 제목" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "From" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "이름" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation 사용가능" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "색상" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "코멘트" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "라벨" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Stroke " + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Go" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "해쉬태그" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "되었다" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "도움말" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "숨겨진" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "숨기다." + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "이 메시지 숨기기." + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "홈" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "리포트 하는 방법" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "서비스내에서 쓰이는 당신만의 이름입니다." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "사진" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "사진" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "아이콘" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "비활성화" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "받은함" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "사건" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "근처 사건" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "사건 위치" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "포함" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "카테고리 포함" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "커스텀 필드 포함" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "상세설명 포함" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "가능한 자세하게 설명해주세요." + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "위도 포함" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "위치 정보 포함" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "경도 포함" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "개인 정보 포함" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "미디어" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "정보 평가" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "정확한 위치 입력" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr " Your account doesn't have the proper permission to fully log you in. Please contact the administrator." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "다음에 답변" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP 주소" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "당신의 프로파일인가요?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "아이템" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "아이템" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "아이템 설명" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "제목" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "키" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML 파일" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "업로드 KMZ/KML 파일" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "언어" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "최근" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "최근 달" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "성" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "최근 년도" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "위도" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "레이어" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "다른 레이어" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "기존 레이어" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "레이어 이름" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "레이어 URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "코멘트를 남겨주세요." + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "적은 정보" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "레벨" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "이 레벨은 다음이 되었다." + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "레벨 이름" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "제한" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "링크" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "리스트" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "리포트를 읽어오는 중" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "위치" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "위치" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "도시, 주 또는 국가" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "로그인" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "계정 생성이 완료되었습니다. 지금 로그인 할 수 있습니다." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "확인 메일을 입력한 이메일 주소로 발송하였습니다." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "사용할 수 없는 이메일 주소입니다. 다른 주소 혹은 계정을 만들어주세요." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "오픈ID 계정의 공급자를 선택해주세요." + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "로그인" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "이메일과 암호를 입력해주세요." + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "회원가입" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "회원가입" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "회원가입완료" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "지금 회원가입 하세요. 다양한 기능을 경험해보세요." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "경도" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "지도" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "읽음표시" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "읽지않음표시" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "최대 파일크기" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "미디어" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "미디어 필터" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "회원" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "계정 관리" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "메시지" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "메시지" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "상세 메시지" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "숫자가 아닌 소스에서 온 메시지 :" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "휴대폰" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "수정" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "날짜 수정" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "달" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "더" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "더 많은 정보" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "현재 우샤히디 배치범위가 한 국가 이상입니까?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "반드시 이 배치에 접속하기 위해서는 이메일을 확인해야 합니다. 만약, 확인된 이메일을 잊어버렸다면, 아래에서 요청할 수 있습니다." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "이름" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "근처 리포트" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "new" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "뉴스" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "뉴스 피드" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "뉴스 출처" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "새 카테고리" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "새 암호" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "새 리포트" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "다음" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "아니오" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "표시할 체크인이 없습니다." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "데이터가 없습니다." + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "없음" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "공지" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "승인되지 않음" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "승인되지 않음" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---선택되지 않음---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "스팸아님" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "명확하지 않음" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "리포트 없음" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "결과 없음" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Off" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "공식&주요일간지 뉴스" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "On" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "옵션" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "선택사항" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "옵션" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "단체" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "단체" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "단체 설명" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "단체 이메일" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "조직은 다음이 되었다." + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "단체 이름" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "단체 전화1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "단체 전화2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "단체 웹사이트" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "오리지날" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "오리지날 설명" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "오리지날 제목" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "다른 배치" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "보낸함" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "나가는" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "페이지" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "페이지" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "페이지 설명" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "페이지는 다음이 되었다." + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "페이지 탭 이름" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "페이지 제목" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "상위 카테고리" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "암호" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "암호확인" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "암호가 성공적으로 바뀌었습니다." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "암호를 잊었나요?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "이메일을 통해 새암호를 확인하세요." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "로그인을 유지" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "지난 1개월" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "지난 1년" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "검토중" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "당" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "개인정보 Optional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "전화" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "사진" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "사진" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "사진 & 비디오" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "*지도상에서 포인터로 위치를 표시하세요.
*연필을 클릭하고 지도를 클릭하면 포인터 사용이 가능합니다." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "PLAY" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "메모" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "플러그인" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "플러그인 웹사이트" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "공개프로파일" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "공개프로파일 URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "미리보기" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "아이템 미리보기" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "메시지 미리보기" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "이전의" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "개인" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "프로파일 색상" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "프로파일이 저장되었습니다." + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "요약 통계" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "평가" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "읽다" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "받다" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "수신" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "공지사항 수신" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "최근 리포트" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "뉴스피드 리프레쉬" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "등록된 이메일" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "삭제" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "답장" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "리포트" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "리포트 (시간순)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "리포터" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "리포터" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "리포트 날짜" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "리포터 이메일" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "리포터 이름" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "리포터는 다음이 되었다." + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "리포터 IP Address" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "리포터 성" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "리포터 레벨" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "리포터 레벨" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "리포터 휴대폰" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "리포트" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "검색" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "제출" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "리포트한 사용자" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "카테고리" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d 리포트" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "날짜" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "설명" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "리포트는 CSV 포맷으로 다운로드 됩니다." + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "이메일" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "기능" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "근처 위치 찾기" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "이름" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "성" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "정확한 위치명" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "뉴스출처 링크" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "추가 정보" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "사진 업로드" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "리포트 페이지로 돌아가기" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "도시선택" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "리포트 제출이 완료되었습니다. 최대한 빠른 검토를 진행하겠습니다." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "리포트 제출" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "시간" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "타임라인" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "리포트 제목" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "비디오 링크" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "사건 리포트" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "리포트 상세" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "메시지를 다음으로 보냄" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "이메일" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "해쉬태그를 포함한 트윗을 다음으로 보냄" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "지금 제출" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "앱" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "리포트가 저장되었습니다." + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "리포트 제목" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "추가정보요청" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "위치요청" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "필수" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "필수조건" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "확인메일 재발송" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "초기화" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "모든 필터 초기화" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "암호 초기화" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "선택한 국가의 도시명을 검색합니다." + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "계정은 %s 서비스에 의해 관리." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "역할" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "저장" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "저장되었습니다" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "저장 & 추가" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "저장 & 닫기" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "리포트 저장" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "스케줄" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "스케줄러" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "날짜" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "시간" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "스케줄러 로그" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "분" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "요일" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "검색" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "검색결과" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "확인코드" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "전체선택" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "필드타입선택" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "폼타입선택" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "지도안에서 선택" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "카테고리는 1개 이상 선택해주세요." + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "체크한 아이템을 확인하세요." + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "테마 선택" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "보내기" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "확인 보내기" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "다음으로 전송" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "보냄" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "보낸사람" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "서버주소" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "서버타입" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "서비스" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "서비스 사용자명" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "서비스 사용자 ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "공유" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "공유된 데이터" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "다음에서 공유되었습니다 : " + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "공유하기" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "짧은 지도" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "보여주기" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "전체보기" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "메시지 보기" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "웹사이트" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "사이트 이메일 주소" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "사이트 URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "작은 지도" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "문자" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "죄송합니다. 당신은 배지가 없습니다." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "출처" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "출처 이름" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "출처 URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "스팸" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL을 지원하나요?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "From" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "스텝" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "리포트 제출" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "SMS를 통해 제출" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "SMS 보내기" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "휴대폰에" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "성공!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "임포트 성공" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "성" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "新开线路" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "시스템" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "큰 지도" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP 포트" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "테마" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "우샤히디 기본 테마" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "테마 세팅" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "이것" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "오늘" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "이번달" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "이번주" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "올해" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "이것은 당신의 프로파일입니다." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "시간" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "제목 " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "to" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "오늘" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Today at" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "토큰" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "전체 리포트" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "번역" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "번역 설명" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "번역 제목" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "번역 to" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "번역" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "번역이 저장 되었습니다." + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "신뢰할 수 있는" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "유형" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "트위터" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "사용할 수 없는 이메일" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "카테고리에 등록되지 않은 리포트" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "읽지않음" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "미확인" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "업로드 피드" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "업로드" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "파일 업로드" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "업로드 리포트" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "아래의 폼에서 사건을 우샤히디로 불러올 수 있습니다." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "반드시 사건의 제목과 날짜가 포함되어야 합니다." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "만약, 위도와 경도를 넣지 않으면 위치는 Google Geocoder를 사용하여 정해집니다." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "만약 추가 정보 예. 개인 정보 또는 추가 입력 필드를 가지고 오려면" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "개인 정보 필드-이름, 성, 이메일 중 최소 하나는 입력이 되어 있어야 합니다. 빈 필드는 가져오지 않습니다." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "CSV 샘플 리포트" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,사건명,날짜,위치,설명,카테고리,승인,확인,위도,경도
\"1\",\"서울, 사망자 발생 추정\",\"2012-09-02 09:06:00\",\"서울\",\"유사한 케이스가 뉴욕에서 확인되었습니다.\",\"사망,시민\",\"YES\",\"YES\",\"29\"126.974\",\"37.564\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "업로드 성공" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "업로드 비디오" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "유저" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "유저이름" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "우샤히디 관리자" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "확인" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "확인" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "확인된 리포트" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "확인" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "리포트 확인" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "버전" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "비디오" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "보기" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "보기" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "전체 보기" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "전체 피드" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "전체 리포트" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "아이템 보기" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "더보기" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "프로파일" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "리포트 보기" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "리포트 보기" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "보이기" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "승인대기" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "확인대기" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "넒은 지도" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "웹 폼" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "무게" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "네" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "어제" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "상황판" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "내 파일" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "확대" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "축소" diff --git a/application/i18n/po/po-ko_KR/upgrade.po b/application/i18n/po/po-ko_KR/upgrade.po new file mode 100644 index 0000000000..388c732889 --- /dev/null +++ b/application/i18n/po/po-ko_KR/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Jungkwan Kim , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-10-12 07:22+0000\n" +"Last-Translator: Jungkwan Kim \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "데이터가 형식에 맞지 않습니다. 아니오는 0을 예는 1을 입력해주세요." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "자동업그레이드" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "업데이트사용가능" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "계속" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "업그레이드" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "지금부터 데이터베이스 업그레이드가 시작됩니다." + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "새로운 데이터베이스버전으로" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "업그레이드 버튼을 클릭하면 마술과 같은 일이 벌어집니다." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "만약, 데이터베이스 백업을 원하면 아래 해당 사항을 체크해 주세요." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "업그레이드전 데이터베이스를 백업하시겠습니까?(하시는 것을 강력히 추천합니다 :) )" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "우샤히디 데이터베이스 업그레이드" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "우샤히디가 업데이트되었습니다! 계속하기 전에, 데이터베이스를 가장 최신 버전으로 업데이트 해주세요(%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "현재 버전이 가장 최신입니다." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "업그레이드가 특정 포인트에서 실패 했습니다" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "수동 업그레이드" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "우샤히디 업그레이드 상태" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "아래에서 수동 업그레이드 방법을 설명해 놓았습니다." + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
다운로드
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- 최신 우샤히디 버전을 다운로드" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- 문제가 생길 수 있으므로, 사전에 백업을 하시는 것을 추천합니다.
파일복사
- 다운로드 된 zip 파일 압축해제
- 웹서버의 운영체제에 따라 원하는 도구나 모드(예. 텔넷, FTP, SSH)를 사용해서 웹서버에 로그인해서 파일과 폴더를 새로운 파일로 교체해주세요.
업그레이드 데이터베이스
- 가장 먼저 데이터베이스 스키마 버전 \n db_version 값을 셋팅 테이블 안에서 확인하거나 이 페이지의 상단에서 확인할 수 있습니다.
- 만약 25버전이면, 25-26, 26-27, 27-28 처럼 /sql 디렉토리를 가장 최근의 SQL 파일로 업그레이드 할 필요가 있습니다.
- 데이터베이스 클라이언트로 upgradex-x.sql를 실행하여 업그레이드 할 수도 있습니다.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Step 3: sql 를 보세요. \n-.sql을 시작시키면 가장 최근의 파일로 업그레이드 됩니다." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Step 4: \"계속\" 을 클릭하면, 필요한 테이블이 업그레이드 됩니다." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "자동업그레이드는 아래의 버튼을 클릭해주세요." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "지금 사용 중인 우샤히디는 v%1$s 입니다. 데이터베이스 버전은 %2$d 이고 %3$s 에서 구동중입니다." + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "업그레이드중" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "쉬운 업그레이드를 위해서는 현재 당신의 웹사이트가 호스팅되는 서버에서 사용하는 FTP 정보가 필요합니다." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP 호스트이름: 예시: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP 암호:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP 사용자명:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "현재 버전이 가장 최근의 우샤히디 입니다." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "업그레이드 할 필요가 없습니다." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "데이터베이스 버전: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "경고: version.php의 소프트웨어버전이 데이터베이스와 맞지 않습니다." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "경고: version.php의 데이터베이스버전이 데이터베이스와 맞지 않습니다." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "데이터베이스:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "우샤히디 %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "베타!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "가장 최근의 우샤히디를 다운로드 중......" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "로그 파일" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "다운로드가 완료되었습니다. 압축을 풀고 있습니다." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "다운로드 실패." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "압축해제성공. 파일복사중......" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "압축해제 실패." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "파일복사 성공. 데이터베이스 업그레이드 중......" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "파일복사 실패." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "데이터베이스 백업 및 업그레이드 성공." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "데이터베이스 백업 실패." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "데이터베이스 업그레이드 성공." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "다운로드 파일 삭제중......" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "업그레이드 성공. 로그파일" diff --git a/application/i18n/po/po-ku/alerts.po b/application/i18n/po/po-ku/alerts.po new file mode 100644 index 0000000000..aa4fccf325 --- /dev/null +++ b/application/i18n/po/po-ku/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ku/auth.po b/application/i18n/po/po-ku/auth.po new file mode 100644 index 0000000000..ac8d6997dd --- /dev/null +++ b/application/i18n/po/po-ku/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ku/bug.po b/application/i18n/po/po-ku/bug.po new file mode 100644 index 0000000000..5b691cc221 --- /dev/null +++ b/application/i18n/po/po-ku/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ku/category.po b/application/i18n/po/po-ku/category.po new file mode 100644 index 0000000000..0123461618 --- /dev/null +++ b/application/i18n/po/po-ku/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ku/comments.po b/application/i18n/po/po-ku/comments.po new file mode 100644 index 0000000000..a43cb42133 --- /dev/null +++ b/application/i18n/po/po-ku/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-ku/contact.po b/application/i18n/po/po-ku/contact.po new file mode 100644 index 0000000000..b61e417bb0 --- /dev/null +++ b/application/i18n/po/po-ku/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ku/core.po b/application/i18n/po/po-ku/core.po new file mode 100644 index 0000000000..1f73a292f5 --- /dev/null +++ b/application/i18n/po/po-ku/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-ku/database.po b/application/i18n/po/po-ku/database.po new file mode 100644 index 0000000000..d5756ed48a --- /dev/null +++ b/application/i18n/po/po-ku/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-ku/datetime.po b/application/i18n/po/po-ku/datetime.po new file mode 100644 index 0000000000..493b00275b --- /dev/null +++ b/application/i18n/po/po-ku/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ku/feeds.po b/application/i18n/po/po-ku/feeds.po new file mode 100644 index 0000000000..19ef8b9bc5 --- /dev/null +++ b/application/i18n/po/po-ku/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ku/footer.po b/application/i18n/po/po-ku/footer.po new file mode 100644 index 0000000000..ffc4abd868 --- /dev/null +++ b/application/i18n/po/po-ku/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-ku/form.po b/application/i18n/po/po-ku/form.po new file mode 100644 index 0000000000..3f4e131988 --- /dev/null +++ b/application/i18n/po/po-ku/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ku/imap.po b/application/i18n/po/po-ku/imap.po new file mode 100644 index 0000000000..26b33fb201 --- /dev/null +++ b/application/i18n/po/po-ku/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-ku/installer.po b/application/i18n/po/po-ku/installer.po new file mode 100644 index 0000000000..c26ea97efc --- /dev/null +++ b/application/i18n/po/po-ku/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-ku/layer.po b/application/i18n/po/po-ku/layer.po new file mode 100644 index 0000000000..a149c8e5ba --- /dev/null +++ b/application/i18n/po/po-ku/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-ku/libraries.po b/application/i18n/po/po-ku/libraries.po new file mode 100644 index 0000000000..a4ad7b6497 --- /dev/null +++ b/application/i18n/po/po-ku/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ku/maintenance.po b/application/i18n/po/po-ku/maintenance.po new file mode 100644 index 0000000000..75798389e5 --- /dev/null +++ b/application/i18n/po/po-ku/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-ku/message.po b/application/i18n/po/po-ku/message.po new file mode 100644 index 0000000000..f919eab09c --- /dev/null +++ b/application/i18n/po/po-ku/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-ku/mhi.po b/application/i18n/po/po-ku/mhi.po new file mode 100644 index 0000000000..a9442cf047 --- /dev/null +++ b/application/i18n/po/po-ku/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-ku/notifications.po b/application/i18n/po/po-ku/notifications.po new file mode 100644 index 0000000000..fab3db321f --- /dev/null +++ b/application/i18n/po/po-ku/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ku/page.po b/application/i18n/po/po-ku/page.po new file mode 100644 index 0000000000..ca586114ac --- /dev/null +++ b/application/i18n/po/po-ku/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-ku/permissions.po b/application/i18n/po/po-ku/permissions.po new file mode 100644 index 0000000000..396171c8bc --- /dev/null +++ b/application/i18n/po/po-ku/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ku/private_message.po b/application/i18n/po/po-ku/private_message.po new file mode 100644 index 0000000000..26bd43f6d6 --- /dev/null +++ b/application/i18n/po/po-ku/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-ku/report.po b/application/i18n/po/po-ku/report.po new file mode 100644 index 0000000000..5cecee47f3 --- /dev/null +++ b/application/i18n/po/po-ku/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ku/reporters.po b/application/i18n/po/po-ku/reporters.po new file mode 100644 index 0000000000..e0b20caf38 --- /dev/null +++ b/application/i18n/po/po-ku/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-ku/reports.po b/application/i18n/po/po-ku/reports.po new file mode 100644 index 0000000000..a4e97cb812 --- /dev/null +++ b/application/i18n/po/po-ku/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-ku/roles.po b/application/i18n/po/po-ku/roles.po new file mode 100644 index 0000000000..45ac840ca7 --- /dev/null +++ b/application/i18n/po/po-ku/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ku/settings.po b/application/i18n/po/po-ku/settings.po new file mode 100644 index 0000000000..ace7c8d0d7 --- /dev/null +++ b/application/i18n/po/po-ku/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (http://www.transifex.com/projects/p/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ku/sharing.po b/application/i18n/po/po-ku/sharing.po new file mode 100644 index 0000000000..59a34639fc --- /dev/null +++ b/application/i18n/po/po-ku/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-ku/stats.po b/application/i18n/po/po-ku/stats.po new file mode 100644 index 0000000000..1cbb1c88e8 --- /dev/null +++ b/application/i18n/po/po-ku/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-ku/tooltips.po b/application/i18n/po/po-ku/tooltips.po new file mode 100644 index 0000000000..ed694a8584 --- /dev/null +++ b/application/i18n/po/po-ku/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ku/ui_admin.po b/application/i18n/po/po-ku/ui_admin.po new file mode 100644 index 0000000000..724fa43c43 --- /dev/null +++ b/application/i18n/po/po-ku/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ku/ui_main.po b/application/i18n/po/po-ku/ui_main.po new file mode 100644 index 0000000000..78504684ee --- /dev/null +++ b/application/i18n/po/po-ku/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ku/upgrade.po b/application/i18n/po/po-ku/upgrade.po new file mode 100644 index 0000000000..da0c5172b8 --- /dev/null +++ b/application/i18n/po/po-ku/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/alerts.po b/application/i18n/po/po-ku_IQ/alerts.po new file mode 100644 index 0000000000..dfc70568f6 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# nabaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: nabaz \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ناونیشانی ئیمەێڵەکە تەواو نیە" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "ناونیشانی ئیمەیڵەکە دەخڵکراوە." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ناونیشنای ئیمەیڵکە دەبێ لە 4 وشە کەمتر وە لە 64 زیاتر نەبێت." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "ناونیشنای ئیمەڵ دەبێت دەخڵ بکرێت ئەگەر چێک بۆکسەکەت چیک کردبو" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "تکایە دڵنیا ببەرەوە لەوەی کە شوێنەکە لە دەکەوێتە ناو ئەو وڵاوتەی %s دەستنیشان کراوە" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "تۆ شوێنێکی گونجاوت هەلنەبژاردوە لەسەر خەریتەکە." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "تۆ شوێنێکت هەڵنەبژاردوە لەسەر خەریتەکە." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "تۆ شوێنێکی گونجاوت هەلنەبژاردوە لەسەر خەریتەکە." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "تۆ شوێنێکی گونجاوت هەلنەبژاردوە لەسەر خەریتەکە." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "ژمارەی تەلەفۆنەکە تەواو نیە." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "ئەو ژمارە تەلەفۆنە دەخڵ کراوە." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "خانەی ژمارەی تەلەفۆنەکە تەواو نیە، تکایە دڵنیا ببەرەوە کە کۆدی وڵاتەکەت داخڵ کردوە." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "تۆ تەنها دەبێت ئیمەیڵ یان ژامرەی تەلەفۆن داخڵ بکەیت." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "ناونیشنای ئیمەڵ دەبێت دەخڵ بکرێت ئەگەر چێک بۆکسەکەت چیک کردبو" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "تیرەیەکی گونجاوت هەڵنەبژاردوە لە سەر نەخشەکە" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "تۆ تیرەی ئەوشوێنە کەدەتەوێت هەڵت نەبژاردوە لەسەر نەخشەکە." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "تۆ هیچت هەڵنەبژاردوە بۆ ئاگادار کردنەوەکە." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "تۆ ئاگاداریت بۆ دێت لەسەر ئەم بابەتانە" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "کۆدەکە پێشتر وەرگیراوە" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "کۆدەکە نەدۆزرایە تکایەدڵنیا بە لەوەی کە لینکەکە راستە" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "کۆدەکە تەواوە، تۆ ئاگادارکردنەوە وەردەگریت." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "تکای داواکری بۆ ئاگادارکردنەوە قبوڵ بکە." + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "بگەڕێرەوە بۆ پەیجی ئاگادارکردنەوەکان بۆ زیادکردنی بابەتی تر." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "ئیمەیڵ داواکری نێردروا وەپەیامی قبوڵکردەنەکەش نێردرا بۆ" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "تکایە ئیمەیلی قبوڵکراو داخڵ بکە" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "داواکاری ئاگادارکردنەوە لەرێگەی ئیمەێل وەرنەگیرا" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "داواکاری ئاگادارکردنەوە لەرێگەی ئیمەیڵ قبوڵکرا" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "ناتوانرێت داواکریەکە پەسەند بکرێت" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "داواکاری ئاگاداری لەرێگەی مۆبایل نێردرا بۆ" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "تکایە ئەو کۆدە دەخڵ بکە کێردرا بۆ ژمارەی مۆبایلەکە:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "داواماری لەرێگەی مۆبایلەوە قبوڵ نەکرا!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "داواکاری ئاگادارکردنەوە لەرێگەی مۆبایل قبوڵ کرا" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/auth.po b/application/i18n/po/po-ku_IQ/auth.po new file mode 100644 index 0000000000..c6d588373b --- /dev/null +++ b/application/i18n/po/po-ku_IQ/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/bug.po b/application/i18n/po/po-ku_IQ/bug.po new file mode 100644 index 0000000000..8e408d1f0d --- /dev/null +++ b/application/i18n/po/po-ku_IQ/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/category.po b/application/i18n/po/po-ku_IQ/category.po new file mode 100644 index 0000000000..07c102a038 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/comments.po b/application/i18n/po/po-ku_IQ/comments.po new file mode 100644 index 0000000000..1feb7af811 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/contact.po b/application/i18n/po/po-ku_IQ/contact.po new file mode 100644 index 0000000000..3bb9f341ab --- /dev/null +++ b/application/i18n/po/po-ku_IQ/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/core.po b/application/i18n/po/po-ku_IQ/core.po new file mode 100644 index 0000000000..b3fe2668d2 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/database.po b/application/i18n/po/po-ku_IQ/database.po new file mode 100644 index 0000000000..2fbb7bbfbd --- /dev/null +++ b/application/i18n/po/po-ku_IQ/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/datetime.po b/application/i18n/po/po-ku_IQ/datetime.po new file mode 100644 index 0000000000..bc7fe1078d --- /dev/null +++ b/application/i18n/po/po-ku_IQ/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/feeds.po b/application/i18n/po/po-ku_IQ/feeds.po new file mode 100644 index 0000000000..087e05d6ca --- /dev/null +++ b/application/i18n/po/po-ku_IQ/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/footer.po b/application/i18n/po/po-ku_IQ/footer.po new file mode 100644 index 0000000000..61d329bb45 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/form.po b/application/i18n/po/po-ku_IQ/form.po new file mode 100644 index 0000000000..902c984a5f --- /dev/null +++ b/application/i18n/po/po-ku_IQ/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/imap.po b/application/i18n/po/po-ku_IQ/imap.po new file mode 100644 index 0000000000..45cb53af87 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/installer.po b/application/i18n/po/po-ku_IQ/installer.po new file mode 100644 index 0000000000..911aade1b1 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/layer.po b/application/i18n/po/po-ku_IQ/layer.po new file mode 100644 index 0000000000..c5842b3322 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/libraries.po b/application/i18n/po/po-ku_IQ/libraries.po new file mode 100644 index 0000000000..77e6c2066b --- /dev/null +++ b/application/i18n/po/po-ku_IQ/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/maintenance.po b/application/i18n/po/po-ku_IQ/maintenance.po new file mode 100644 index 0000000000..d44191d662 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/message.po b/application/i18n/po/po-ku_IQ/message.po new file mode 100644 index 0000000000..3f2efaf8fa --- /dev/null +++ b/application/i18n/po/po-ku_IQ/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/mhi.po b/application/i18n/po/po-ku_IQ/mhi.po new file mode 100644 index 0000000000..6b05b99fdc --- /dev/null +++ b/application/i18n/po/po-ku_IQ/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/notifications.po b/application/i18n/po/po-ku_IQ/notifications.po new file mode 100644 index 0000000000..a8b70686a6 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/page.po b/application/i18n/po/po-ku_IQ/page.po new file mode 100644 index 0000000000..d2ef07be17 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/permissions.po b/application/i18n/po/po-ku_IQ/permissions.po new file mode 100644 index 0000000000..49efd0d647 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# nabaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "ڕاپۆرتەکان ببینە" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "دروستکردن/ دەستاکری کردن/ سڕینەوەی راپۆرتەکان" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "قبوڵکردنی راپۆرتەکان" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "وەرگرترنی راپۆرتەکان" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "دەستکاری کردنی تێبینی راپۆرتەکان" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "داگرتنی رپۆرتەکان" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "ناردنی رپۆرتەکان" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "دەستکاری کردنی نامەکان" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "دەستاکری کردنی نامە راپۆرتیەکان" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "بینینی ئامارەکان" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "دەستکاری کردنی نرخەکان" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "دەستاکری کردنی پانێڵەکە" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "دستکاری کردنی ئەندامەکان" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "دەستکاری کردنی کارەکان" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "دەتوانێت چێک بکات" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "دەستاکری کردنی ئەوانەی چێکدەکەن" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "دەستکاری کردنی روکاری ئەدمن" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "دەستکاری کردنی روکاری ئەندامەکان" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/private_message.po b/application/i18n/po/po-ku_IQ/private_message.po new file mode 100644 index 0000000000..2b635a5b18 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/report.po b/application/i18n/po/po-ku_IQ/report.po new file mode 100644 index 0000000000..728a5ecf13 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/reporters.po b/application/i18n/po/po-ku_IQ/reporters.po new file mode 100644 index 0000000000..7791d64856 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/reports.po b/application/i18n/po/po-ku_IQ/reports.po new file mode 100644 index 0000000000..51d14fe195 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Rebaz Nawzad , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-19 21:44+0000\n" +"Last-Translator: Rebaz Nawzad \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "تكاية دوثاتي بكةرةوة كة ئايتميَكت هةلَبذاردووة " + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/roles.po b/application/i18n/po/po-ku_IQ/roles.po new file mode 100644 index 0000000000..4954896f92 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/settings.po b/application/i18n/po/po-ku_IQ/settings.po new file mode 100644 index 0000000000..4453dfb7ff --- /dev/null +++ b/application/i18n/po/po-ku_IQ/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/sharing.po b/application/i18n/po/po-ku_IQ/sharing.po new file mode 100644 index 0000000000..45702d3e65 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/stats.po b/application/i18n/po/po-ku_IQ/stats.po new file mode 100644 index 0000000000..c1fe1f5b20 --- /dev/null +++ b/application/i18n/po/po-ku_IQ/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/tooltips.po b/application/i18n/po/po-ku_IQ/tooltips.po new file mode 100644 index 0000000000..f7cd91cbbe --- /dev/null +++ b/application/i18n/po/po-ku_IQ/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/ui_admin.po b/application/i18n/po/po-ku_IQ/ui_admin.po new file mode 100644 index 0000000000..a1649315ed --- /dev/null +++ b/application/i18n/po/po-ku_IQ/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/ui_main.po b/application/i18n/po/po-ku_IQ/ui_main.po new file mode 100644 index 0000000000..5e2a58ca9d --- /dev/null +++ b/application/i18n/po/po-ku_IQ/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# nabaz , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-04-05 07:50+0000\n" +"Last-Translator: nabaz \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "دەربارە" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "رێگەدان" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "ماوەی رێگەدان" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "ناوی ئەژمارەکەت" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "چالاکیەکان" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "ئەم چالاکیە ناتوانرێت بگەڕێنرێتەوە، دەتەوێت بەردەوام بیت؟" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "چالاکی بکە" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "چالاک" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "زیاد بکە" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "زیاد کراوە لەلایەن" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "زانیاری زیاتر" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "راپۆرتی زیاتر" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "زیادکردن/گۆڕانکاری" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "زیادکردنی فیڵدێک" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "زیادکردنی زمان" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "زیادکردنێکی نوێ" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "زیادکردنی جۆری نوێ" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "گەیاندنی ئاگاداری" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "ئاگادارم بکەرەوە ئەگەر راپۆرتێک هەبوو لە یان لەم نزیکانە" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "ئاگاداریەکانم تۆمار بکە" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "ئیەمەیڵ" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ئیمەیڵەکەت داخڵ بکە" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "داخڵکردنی ژمارەی مۆبایل لەگەڵ کۆدی وڵاتەکە" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "وەرگرتنی ئاگاداریەکان" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "ئاگاداریەکە کرا" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "ژمارەی مۆبایل" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "یان سوێنێک لەسەر نەخشەکە، ئێمە ئاگادارت دەکەینەوە لەهەر راپۆرتێک کە لە دووری ٢٠کم بێت" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "ئەگەر ناتوانیت شوێنەکە بدۆزیتەوە کلیک بکە لەسەر نەخشەکە بۆئەوەی هیێمایەک دابنێیت" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "شارێک هەڵ بژێرە" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "هەنگاوی ١: شارێک یان شوینێک هەڵ بژێرە" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "هەنگاوی ٢:ئاگاداریەکانم بۆ بنێرە بۆ :" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "هەنگاوی ٣ (Optional): جۆرێک هەڵبژێرە" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "ماڵەوە" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "بینێرە" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ku_IQ/upgrade.po b/application/i18n/po/po-ku_IQ/upgrade.po new file mode 100644 index 0000000000..9bc6e6e73d --- /dev/null +++ b/application/i18n/po/po-ku_IQ/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-02 21:06+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-lg/alerts.po b/application/i18n/po/po-lg/alerts.po new file mode 100644 index 0000000000..6bf46baff4 --- /dev/null +++ b/application/i18n/po/po-lg/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-lg/auth.po b/application/i18n/po/po-lg/auth.po new file mode 100644 index 0000000000..9adc8f9ad9 --- /dev/null +++ b/application/i18n/po/po-lg/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-lg/bug.po b/application/i18n/po/po-lg/bug.po new file mode 100644 index 0000000000..f581bd9157 --- /dev/null +++ b/application/i18n/po/po-lg/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-lg/category.po b/application/i18n/po/po-lg/category.po new file mode 100644 index 0000000000..2609d659cf --- /dev/null +++ b/application/i18n/po/po-lg/category.po @@ -0,0 +1,89 @@ +#. extracted from en_US/category.php, lg/category.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-lg/comments.po b/application/i18n/po/po-lg/comments.po new file mode 100644 index 0000000000..fb124c2cd3 --- /dev/null +++ b/application/i18n/po/po-lg/comments.po @@ -0,0 +1,59 @@ +#. extracted from en_US/comments.php, lg/comments.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-lg/contact.po b/application/i18n/po/po-lg/contact.po new file mode 100644 index 0000000000..ea4767b665 --- /dev/null +++ b/application/i18n/po/po-lg/contact.po @@ -0,0 +1,74 @@ +#. extracted from en_US/contact.php, lg/contact.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-lg/core.po b/application/i18n/po/po-lg/core.po new file mode 100644 index 0000000000..8d0d0947e3 --- /dev/null +++ b/application/i18n/po/po-lg/core.po @@ -0,0 +1,144 @@ +#. extracted from en_US/core.php, lg/core.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-lg/database.po b/application/i18n/po/po-lg/database.po new file mode 100644 index 0000000000..c1cf0a406d --- /dev/null +++ b/application/i18n/po/po-lg/database.po @@ -0,0 +1,24 @@ +#. extracted from en_US/database.php, lg/database.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-lg/datetime.po b/application/i18n/po/po-lg/datetime.po new file mode 100644 index 0000000000..68a0294b5a --- /dev/null +++ b/application/i18n/po/po-lg/datetime.po @@ -0,0 +1,214 @@ +#. extracted from en_US/datetime.php, lg/datetime.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-lg/feeds.po b/application/i18n/po/po-lg/feeds.po new file mode 100644 index 0000000000..90a43f52ec --- /dev/null +++ b/application/i18n/po/po-lg/feeds.po @@ -0,0 +1,49 @@ +#. extracted from en_US/feeds.php, lg/feeds.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-lg/footer.po b/application/i18n/po/po-lg/footer.po new file mode 100644 index 0000000000..bd79fb97d8 --- /dev/null +++ b/application/i18n/po/po-lg/footer.po @@ -0,0 +1,19 @@ +#. extracted from en_US/footer.php, lg/footer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" + diff --git a/application/i18n/po/po-lg/form.po b/application/i18n/po/po-lg/form.po new file mode 100644 index 0000000000..2ae5373afc --- /dev/null +++ b/application/i18n/po/po-lg/form.po @@ -0,0 +1,104 @@ +#. extracted from en_US/form.php, lg/form.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-lg/imap.po b/application/i18n/po/po-lg/imap.po new file mode 100644 index 0000000000..2a5ab8b2ff --- /dev/null +++ b/application/i18n/po/po-lg/imap.po @@ -0,0 +1,24 @@ +#. extracted from en_US/imap.php, lg/imap.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-lg/installer.po b/application/i18n/po/po-lg/installer.po new file mode 100644 index 0000000000..426feb1290 --- /dev/null +++ b/application/i18n/po/po-lg/installer.po @@ -0,0 +1,354 @@ +#. extracted from en_US/installer.php, lg/installer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-lg/layer.po b/application/i18n/po/po-lg/layer.po new file mode 100644 index 0000000000..2770a2963b --- /dev/null +++ b/application/i18n/po/po-lg/layer.po @@ -0,0 +1,59 @@ +#. extracted from en_US/layer.php, lg/layer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-lg/libraries.po b/application/i18n/po/po-lg/libraries.po new file mode 100644 index 0000000000..fd844ab39c --- /dev/null +++ b/application/i18n/po/po-lg/libraries.po @@ -0,0 +1,109 @@ +#. extracted from en_US/libraries.php, lg/libraries.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-lg/maintenance.po b/application/i18n/po/po-lg/maintenance.po new file mode 100644 index 0000000000..35e697331d --- /dev/null +++ b/application/i18n/po/po-lg/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# wajdi tayachi , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Désolé, notre site est actuellement en maintenance. Veuillez essayez de nouveau dans quelques minutes." diff --git a/application/i18n/po/po-lg/message.po b/application/i18n/po/po-lg/message.po new file mode 100644 index 0000000000..af0a2abde7 --- /dev/null +++ b/application/i18n/po/po-lg/message.po @@ -0,0 +1,59 @@ +#. extracted from en_US/message.php, lg/message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-lg/mhi.po b/application/i18n/po/po-lg/mhi.po new file mode 100644 index 0000000000..38c9ebcee2 --- /dev/null +++ b/application/i18n/po/po-lg/mhi.po @@ -0,0 +1,49 @@ +#. extracted from en_US/mhi.php, lg/mhi.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-lg/notifications.po b/application/i18n/po/po-lg/notifications.po new file mode 100644 index 0000000000..cbaca82695 --- /dev/null +++ b/application/i18n/po/po-lg/notifications.po @@ -0,0 +1,89 @@ +#. extracted from en_US/notifications.php, lg/notifications.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-lg/page.po b/application/i18n/po/po-lg/page.po new file mode 100644 index 0000000000..f50cf67341 --- /dev/null +++ b/application/i18n/po/po-lg/page.po @@ -0,0 +1,34 @@ +#. extracted from en_US/page.php, lg/page.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-lg/permissions.po b/application/i18n/po/po-lg/permissions.po new file mode 100644 index 0000000000..1b51bee9f8 --- /dev/null +++ b/application/i18n/po/po-lg/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-lg/private_message.po b/application/i18n/po/po-lg/private_message.po new file mode 100644 index 0000000000..0644093836 --- /dev/null +++ b/application/i18n/po/po-lg/private_message.po @@ -0,0 +1,44 @@ +#. extracted from en_US/private_message.php, lg/private_message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-lg/report.po b/application/i18n/po/po-lg/report.po new file mode 100644 index 0000000000..2ba25d26da --- /dev/null +++ b/application/i18n/po/po-lg/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-lg/reporters.po b/application/i18n/po/po-lg/reporters.po new file mode 100644 index 0000000000..20eca8bc38 --- /dev/null +++ b/application/i18n/po/po-lg/reporters.po @@ -0,0 +1,64 @@ +#. extracted from en_US/reporters.php, lg/reporters.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-lg/reports.po b/application/i18n/po/po-lg/reports.po new file mode 100644 index 0000000000..14df777661 --- /dev/null +++ b/application/i18n/po/po-lg/reports.po @@ -0,0 +1,34 @@ +#. extracted from en_US/reports.php, lg/reports.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-lg/roles.po b/application/i18n/po/po-lg/roles.po new file mode 100644 index 0000000000..b974a17460 --- /dev/null +++ b/application/i18n/po/po-lg/roles.po @@ -0,0 +1,59 @@ +#. extracted from en_US/roles.php, lg/roles.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-lg/settings.po b/application/i18n/po/po-lg/settings.po new file mode 100644 index 0000000000..dd203fc67d --- /dev/null +++ b/application/i18n/po/po-lg/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ganda (http://www.transifex.com/projects/p/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-lg/sharing.po b/application/i18n/po/po-lg/sharing.po new file mode 100644 index 0000000000..2721597f4d --- /dev/null +++ b/application/i18n/po/po-lg/sharing.po @@ -0,0 +1,69 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi Web\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 07:00+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-lg/stats.po b/application/i18n/po/po-lg/stats.po new file mode 100644 index 0000000000..78fed5720a --- /dev/null +++ b/application/i18n/po/po-lg/stats.po @@ -0,0 +1,184 @@ +#. extracted from en_US/stats.php, lg/stats.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-lg/tooltips.po b/application/i18n/po/po-lg/tooltips.po new file mode 100644 index 0000000000..889e3c2108 --- /dev/null +++ b/application/i18n/po/po-lg/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-lg/ui_admin.po b/application/i18n/po/po-lg/ui_admin.po new file mode 100644 index 0000000000..b7fe45e81c --- /dev/null +++ b/application/i18n/po/po-lg/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-lg/ui_main.po b/application/i18n/po/po-lg/ui_main.po new file mode 100644 index 0000000000..8f21ff69d6 --- /dev/null +++ b/application/i18n/po/po-lg/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ganda (http://www.transifex.com/ushahidi/ushahidi-v2/language/lg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-lg/upgrade.po b/application/i18n/po/po-lg/upgrade.po new file mode 100644 index 0000000000..2673aaf00a --- /dev/null +++ b/application/i18n/po/po-lg/upgrade.po @@ -0,0 +1,264 @@ +#. extracted from en_US/upgrade.php, lg/upgrade.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:43+0000\n" +"PO-Revision-Date: 2012-09-20 22:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: lg\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-lt/alerts.po b/application/i18n/po/po-lt/alerts.po new file mode 100644 index 0000000000..76ef978f85 --- /dev/null +++ b/application/i18n/po/po-lt/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-lt/auth.po b/application/i18n/po/po-lt/auth.po new file mode 100644 index 0000000000..0aceec5e72 --- /dev/null +++ b/application/i18n/po/po-lt/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-lt/bug.po b/application/i18n/po/po-lt/bug.po new file mode 100644 index 0000000000..734492f79f --- /dev/null +++ b/application/i18n/po/po-lt/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-lt/category.po b/application/i18n/po/po-lt/category.po new file mode 100644 index 0000000000..1ce2e668f9 --- /dev/null +++ b/application/i18n/po/po-lt/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-lt/comments.po b/application/i18n/po/po-lt/comments.po new file mode 100644 index 0000000000..bee965096c --- /dev/null +++ b/application/i18n/po/po-lt/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-lt/contact.po b/application/i18n/po/po-lt/contact.po new file mode 100644 index 0000000000..d9e40e5cc1 --- /dev/null +++ b/application/i18n/po/po-lt/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-lt/core.po b/application/i18n/po/po-lt/core.po new file mode 100644 index 0000000000..bc64b91164 --- /dev/null +++ b/application/i18n/po/po-lt/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-lt/database.po b/application/i18n/po/po-lt/database.po new file mode 100644 index 0000000000..f6a66909a7 --- /dev/null +++ b/application/i18n/po/po-lt/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Aleksandr Jadov , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 16:11+0000\n" +"Last-Translator: Aleksandr Jadov \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Duombazės klaida: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Lentelė \"%s\" nerasta duombazei. Prašome įsitikinti kad naudojate naujausia duombazės versiją šiai Ushahidi versijai." diff --git a/application/i18n/po/po-lt/datetime.po b/application/i18n/po/po-lt/datetime.po new file mode 100644 index 0000000000..1e832dedda --- /dev/null +++ b/application/i18n/po/po-lt/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Aleksandr Jadov , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 16:16+0000\n" +"Last-Translator: Aleksandr Jadov \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Penktadienis" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Pirmadienis" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Šeštadienis" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Sekmadienis" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Ketvirtadienis" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Antradienis" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Trečiadienis" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Sausis" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Vasaris" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Kovas" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Balandis" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Gegužė" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Birželis" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Liepa" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Rugpjūtis" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Rugsėjis" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Spalis" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Lapkritis" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Gruodis" diff --git a/application/i18n/po/po-lt/feeds.po b/application/i18n/po/po-lt/feeds.po new file mode 100644 index 0000000000..beb307bd11 --- /dev/null +++ b/application/i18n/po/po-lt/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-lt/footer.po b/application/i18n/po/po-lt/footer.po new file mode 100644 index 0000000000..a94a656f73 --- /dev/null +++ b/application/i18n/po/po-lt/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Aleksandr Jadov , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 16:10+0000\n" +"Last-Translator: Aleksandr Jadov \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl neįdiegta Jūsų sistemoje." diff --git a/application/i18n/po/po-lt/form.po b/application/i18n/po/po-lt/form.po new file mode 100644 index 0000000000..1d55ef543e --- /dev/null +++ b/application/i18n/po/po-lt/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-lt/imap.po b/application/i18n/po/po-lt/imap.po new file mode 100644 index 0000000000..dbfce34d56 --- /dev/null +++ b/application/i18n/po/po-lt/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Aleksandr Jadov , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 16:09+0000\n" +"Last-Translator: Aleksandr Jadov \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Neįmanoma atidaryti IMAP srautą." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Elektroninio pašto tiekėjas nepalaikomas." diff --git a/application/i18n/po/po-lt/installer.po b/application/i18n/po/po-lt/installer.po new file mode 100644 index 0000000000..fc9dfcdde4 --- /dev/null +++ b/application/i18n/po/po-lt/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-lt/layer.po b/application/i18n/po/po-lt/layer.po new file mode 100644 index 0000000000..828340a9e2 --- /dev/null +++ b/application/i18n/po/po-lt/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-lt/libraries.po b/application/i18n/po/po-lt/libraries.po new file mode 100644 index 0000000000..160f656dfc --- /dev/null +++ b/application/i18n/po/po-lt/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-lt/maintenance.po b/application/i18n/po/po-lt/maintenance.po new file mode 100644 index 0000000000..374d925918 --- /dev/null +++ b/application/i18n/po/po-lt/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-lt/message.po b/application/i18n/po/po-lt/message.po new file mode 100644 index 0000000000..d3bfc94d37 --- /dev/null +++ b/application/i18n/po/po-lt/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-lt/mhi.po b/application/i18n/po/po-lt/mhi.po new file mode 100644 index 0000000000..925e5a8505 --- /dev/null +++ b/application/i18n/po/po-lt/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-lt/notifications.po b/application/i18n/po/po-lt/notifications.po new file mode 100644 index 0000000000..644f44fb6e --- /dev/null +++ b/application/i18n/po/po-lt/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-lt/page.po b/application/i18n/po/po-lt/page.po new file mode 100644 index 0000000000..b90577167a --- /dev/null +++ b/application/i18n/po/po-lt/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-lt/permissions.po b/application/i18n/po/po-lt/permissions.po new file mode 100644 index 0000000000..e1b5e5df70 --- /dev/null +++ b/application/i18n/po/po-lt/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-lt/private_message.po b/application/i18n/po/po-lt/private_message.po new file mode 100644 index 0000000000..781de9bd97 --- /dev/null +++ b/application/i18n/po/po-lt/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-lt/report.po b/application/i18n/po/po-lt/report.po new file mode 100644 index 0000000000..d5180c31d2 --- /dev/null +++ b/application/i18n/po/po-lt/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-lt/reporters.po b/application/i18n/po/po-lt/reporters.po new file mode 100644 index 0000000000..a90c1b99fe --- /dev/null +++ b/application/i18n/po/po-lt/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-lt/reports.po b/application/i18n/po/po-lt/reports.po new file mode 100644 index 0000000000..70f4c49179 --- /dev/null +++ b/application/i18n/po/po-lt/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-lt/roles.po b/application/i18n/po/po-lt/roles.po new file mode 100644 index 0000000000..8a899021ef --- /dev/null +++ b/application/i18n/po/po-lt/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-lt/settings.po b/application/i18n/po/po-lt/settings.po new file mode 100644 index 0000000000..a8b5411052 --- /dev/null +++ b/application/i18n/po/po-lt/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/projects/p/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-lt/sharing.po b/application/i18n/po/po-lt/sharing.po new file mode 100644 index 0000000000..d94878c443 --- /dev/null +++ b/application/i18n/po/po-lt/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-lt/stats.po b/application/i18n/po/po-lt/stats.po new file mode 100644 index 0000000000..695f25161c --- /dev/null +++ b/application/i18n/po/po-lt/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-lt/tooltips.po b/application/i18n/po/po-lt/tooltips.po new file mode 100644 index 0000000000..75fd24a999 --- /dev/null +++ b/application/i18n/po/po-lt/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-lt/ui_admin.po b/application/i18n/po/po-lt/ui_admin.po new file mode 100644 index 0000000000..e4035f0adf --- /dev/null +++ b/application/i18n/po/po-lt/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Aleksandr Jadov , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Veiksmai" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "pridėta" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "pridėta/redaguota" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Priedėliai" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Bet kas" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Bet kur" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API nustatymai" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "patvirtinta" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autorius" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Atgal" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Atšaukti" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Spalva" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-lt/ui_main.po b/application/i18n/po/po-lt/ui_main.po new file mode 100644 index 0000000000..fbd66131c0 --- /dev/null +++ b/application/i18n/po/po-lt/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-lt/upgrade.po b/application/i18n/po/po-lt/upgrade.po new file mode 100644 index 0000000000..9d03ac13cd --- /dev/null +++ b/application/i18n/po/po-lt/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Lithuanian (http://www.transifex.com/ushahidi/ushahidi-v2/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-mk_MK/alerts.po b/application/i18n/po/po-mk_MK/alerts.po new file mode 100644 index 0000000000..87acc4e89d --- /dev/null +++ b/application/i18n/po/po-mk_MK/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Полето \"Електронска адреса\" не содржи валидна електронска адреса?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Полето \"Електронска адреса\" мора да биде најмалку 4 и не повеќе од 64 карактери долго." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Полето \"Електронска пошта\" е задолжително ако полето е чекирано." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Немате селектирано валидна локација на мапата." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Немате селектирано валидна локација на мапата." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Немате селектирано валидна локација на мапата." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Немате селектирано валидна локација на мапата." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Полето \"Мобилен Телефон\" не содржи валидна должина. " + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Полето \"Мобилен Телефон\" не содржи валиден телефонски број. Ве молиме внесете само броеви вклучувајќи го државниот позивен број." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Мора да внесете Телефонски Број или Електронска пошта." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Полето \"Телефонски Број\" е задолжително доколкѕ полето е чекирано." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Немате подесено валиден радиус на мапата." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Го немате подесено радиусот на мапата." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Овој код е потврден претходно." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Ве молиме внесете го конфирмациониот код кој ви е испратен по електронска пошта:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Системот не беше во можност да го процесира вашето барање за потврда!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Ве молиме внесете го конфирмациониот код кој ви е испратен по СМС:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-mk_MK/auth.po b/application/i18n/po/po-mk_MK/auth.po new file mode 100644 index 0000000000..51db798ee3 --- /dev/null +++ b/application/i18n/po/po-mk_MK/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Email адресата која ја внесовте не е валидна email адреса" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Си извинуваме, корисничка сметка за оваа email адреса веќе постои." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Email адресат мора да биде најмалку 4 а не повеќе од 64 карактери долга." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Email адресата е задолжителна" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Името може да содржи најмалку 3 а не повеќе од 100 карактери." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Името е задолжително." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Корисничкото име содржи недозволени знаци." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Лозинката мора да е најмалку 8 карактери долга." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Ве молиме проверете дека точната лозинка и email адреса се внесени." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ве молиме внесете ја истата лозинка во двете полиња." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Лозинката е задолжителна." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Лозинката мора да содржи само букви, симболите # и @, бројки, долни и коси црти" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Моменталната лозика која ја внесовте е неточна. Ве молиме обидете се повторно." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Лозинката мора да е најмалку 8 карактери долга." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Ве молиме проверете дека точната лозика и email адреса се внесени." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ве молиме внесете ја истата лозинка во двете полиња." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Лозинката е задолжителна." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Лозинката мора да содржи само букви, симболите # и @, бројки, долни и коси црти" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Наидовме на грешка при вашето логирање." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Лозинката мора да е најмалку 8 карактери долга." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Ве молиме проверете дека точната лозика и email адреса се внесени." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ве молиме внесете ја истата лозинка во двете полиња." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Лозинката е задолжителна." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Во моментов не можеме да го завршиме успешно вашето логирање. Ве молиме пробајте повторно подоцна." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Лозинката мора да содржи само букви, симболите # и @, бројки, долни и коси црти" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Полето за потврда на лозинката мора да одговара на она што е внесено во полето за лозинка." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Email адресата која ја внесовте не е валидна email адреса." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Се извинуваме, ја немаме вашата email адреса" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Email адресата е задолжителна." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Само superadmin може да промени superadmin или да надгради корисник во администратор." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Улогата не е валидна." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Улогата мора да биде најмалку 5 а не повеќе од 30 карактери долга." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Мора да дефинирате најмалку една улога." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Мора да избере или ADMIN или USER улога." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Улогата на администратор не може да биде променета." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Корисничкото име може да содржи само букви и бројки." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Се извинуваме, ова корисничко име е веќе во употреба." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Корисничкото име мора да биде најмалку 2 а не повеќе од 100 карактери долго." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Ве молиме проверете дали го внесовте точното корисничко име." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Корисничкото име е задолжително." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Улогата на суперадминистратор не може да биде променета." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Можен CSRF напад. Дали навистина мислевте да креирате/измените корисник?" diff --git a/application/i18n/po/po-mk_MK/bug.po b/application/i18n/po/po-mk_MK/bug.po new file mode 100644 index 0000000000..c190ee9eeb --- /dev/null +++ b/application/i18n/po/po-mk_MK/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ве молиме внесете валиден сигурносен код." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Ве молиме внесете го сигурносниот код." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Email полето не изгледа како да содржи валидна email адреса?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email полето мора да биде најмалку 4 а не подолго 64 карактери." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email полето е задолжително ако сте штиклирале." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Полето е задолжително." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Насловот мора да е барем 3 карактери долг." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Насловот на пораката е задолжителен." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името мора да е барем 3 карактери долго." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Полето со име е задолжително." diff --git a/application/i18n/po/po-mk_MK/category.po b/application/i18n/po/po-mk_MK/category.po new file mode 100644 index 0000000000..32b2c46007 --- /dev/null +++ b/application/i18n/po/po-mk_MK/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Бојата мора да е најмалку 6 карактери долга." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Полето за боја е задолжително." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Описот е задолжителен." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Ве молиме осигурајте се дека големината на сликите не е повеќе од 50КБ." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Полето за слика не содржи валидна слика. Прифатени формати за слика се .JPG, .PNG and .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Полето за слика не содржи валидна датотека" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Насловот мора да биде најмалку 3 а најмногу 80 карактери долг." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Насловот е задолжителен." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Не можете да подкатегоризирате категорија која содржи подкатегории." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Над-категоријата не постои." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Полето за над-категоријата мора да биде нумерчно." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Над-категоријата не може да биде специјална категорија." + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Полето за над-категорија е задолжително." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Категоријата и над-категоријата не можат да бидат исти." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Специјални категории не можат да бидат подкатегоризирани." diff --git a/application/i18n/po/po-mk_MK/comments.po b/application/i18n/po/po-mk_MK/comments.po new file mode 100644 index 0000000000..36ef303794 --- /dev/null +++ b/application/i18n/po/po-mk_MK/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ве молиме внесете валиден сигурносен код." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Ве молиме внесете го сигурносниот код." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Внесовте погрешен сигурносен код." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името мора да е барем 3 карактери долго." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Полето со име е задолжително." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Полето со коментари е задолжително" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email полето не изгледа како да содржи валидна email адреса?" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email полето мора да биде најмалку 4 а не подолго 64 карактери." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email полето е задолжително ако сте штиклирале." diff --git a/application/i18n/po/po-mk_MK/contact.po b/application/i18n/po/po-mk_MK/contact.po new file mode 100644 index 0000000000..91aa003707 --- /dev/null +++ b/application/i18n/po/po-mk_MK/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ве молиме внесете валиден сигурносен код." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Ве молиме внесете валиден безбедносен код." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Ве молиме внесете го сигурносниот код." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email полето не изгледа како да содржи валидна email адреса?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email полето мора да биде најмалку 4 а не подолго 64 карактери." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email полето е задолжително ако сте штиклирале." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Полето за порака е задолжително" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името мора да е барем 3 карактери долго." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Полето со име е задолжително." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Насловот мора да е барем 3 карактери долг." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Насловот на пораката е задолжителен." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Имаше грешка при праќањето на вашата порака." diff --git a/application/i18n/po/po-mk_MK/core.po b/application/i18n/po/po-mk_MK/core.po new file mode 100644 index 0000000000..2eae4d470c --- /dev/null +++ b/application/i18n/po/po-mk_MK/core.po @@ -0,0 +1,143 @@ +#. extracted from en_US/core.php, mk_MK/core.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: mk_MK\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-mk_MK/database.po b/application/i18n/po/po-mk_MK/database.po new file mode 100644 index 0000000000..048c26e6ac --- /dev/null +++ b/application/i18n/po/po-mk_MK/database.po @@ -0,0 +1,23 @@ +#. extracted from en_US/database.php, mk_MK/database.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: mk_MK\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-mk_MK/datetime.po b/application/i18n/po/po-mk_MK/datetime.po new file mode 100644 index 0000000000..d5df918307 --- /dev/null +++ b/application/i18n/po/po-mk_MK/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Пет" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Петок" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Пон" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Понеделник" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Саб" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Сабота" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Нед" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Недела" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Чет" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Четврток" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Вто" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Вторник" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Сре" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Среда" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Јан" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Јануари" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Феб" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Фебруари" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Мар" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Март" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Апр" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Април" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Мај" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Мај" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Јун" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Јуни" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Јул" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Јули" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Авг" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Август" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Сеп" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Септември" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Окт" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Октомври" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Ное" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Ноември" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Дек" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Декември" diff --git a/application/i18n/po/po-mk_MK/feeds.po b/application/i18n/po/po-mk_MK/feeds.po new file mode 100644 index 0000000000..0e681f9d65 --- /dev/null +++ b/application/i18n/po/po-mk_MK/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "ДАТУМ" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Полето за име треба содржи најмалу 3 а не повеќе од\n\t\t\t70 карактери." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Ве молиме внесете го името на новостите." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Ве молиме внесете го URL на новостите." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Ве молиме внесете валидно URL, пр. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ИЗВОР" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Наслов" diff --git a/application/i18n/po/po-mk_MK/footer.po b/application/i18n/po/po-mk_MK/footer.po new file mode 100644 index 0000000000..8c771b8f36 --- /dev/null +++ b/application/i18n/po/po-mk_MK/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl не е инсталиран на овој систем." diff --git a/application/i18n/po/po-mk_MK/form.po b/application/i18n/po/po-mk_MK/form.po new file mode 100644 index 0000000000..827af6d506 --- /dev/null +++ b/application/i18n/po/po-mk_MK/form.po @@ -0,0 +1,103 @@ +#. extracted from en_US/form.php, mk_MK/form.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: mk_MK\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-mk_MK/imap.po b/application/i18n/po/po-mk_MK/imap.po new file mode 100644 index 0000000000..48962808c5 --- /dev/null +++ b/application/i18n/po/po-mk_MK/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Не може да се отвори IMAP stream." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Email сервисот не е поддржан." diff --git a/application/i18n/po/po-mk_MK/installer.po b/application/i18n/po/po-mk_MK/installer.po new file mode 100644 index 0000000000..8517b53b6f --- /dev/null +++ b/application/i18n/po/po-mk_MK/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "База на податоци" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Хост на база на податоци" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Ако користите Ushahidi на својот компјутер, тогаш ова повеќе од сигурно ќе биде \"localhost\". Ако користите Ushahidi од веб сервер, ќе добиете повеќе информации од вашиот веб-хостинг провајдер." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Име на база на податоци" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Името на базата на податоци што саката да ја користите во Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "За повеќе информации, посетете ја следната страница this article што објаснува бази на податоци подетално." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Стандарден јазик (Локализација)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Оневозможи" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Овозможи" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Подолу се наведени грешките на кои наидовме." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Локацијата на вашиот сервер, каде што се вашите Ushahidi датотеки. Автоматски ја го пронајдовме оваа вредност, ве молиме проверете дали е точна. Ако полето е празно, не грижете се, тоа значи Ushahidi е инсталиран на највисоко директориум ниво." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Завршено" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Генерално" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Вратете се назад" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "НАПРЕДНА ИНСТАЛАЦИЈА" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Комплетирајте ги си те основни подесувања низ овој процес од 5 чекори. Ова вклучува сервер, мапа, име на страницата и контакт детали." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "ОСНОВНА ИНСТАЛАЦИЈА" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Едноставно и брзо. Се што ви треба е root папката на вашата страна и информациите околу вашата база на податоци. Одберете ја оваа опција ако сакате брзо да имате се спремно за работа, а се друго можете да подесите понатаму." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Продолжи" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Добредојдовте на Ushahidi инсталациониот процес за серверот. Подолу Ве молиме изберете каков тип на инсталација саката да користите." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Успешна инсталација" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Лозинката која ја користите да се логирате во вашиот емаил" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Ако користите Gmail, Hotmail, or Yahoo Mail, внесете целосна емаил адреса како корисничко име." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Мапа" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi работи подеднакво добро се следниве провајдери за мапи: Google, Bing или Open Street Map. Изберете го провајдерот кој има најмогу детали во твојата област." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Други чекори..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Лозинка" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Лозинка на базата на податоци" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Претходна" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Ве молиме рестартирајте го вашиот Apache сервер" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Овозможи или оневозможи SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Кога вашите посетители ќе се регистрираат за емаил пораки, тие ќе примаат пораки од оваа адреса. Оваа адреса не мора да биде иста како и емаил адресата на сајдот." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Име на страницата" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Името на вашата страница" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Слоганот на страницата" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Вашиот слоган" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Инструкции за промена на пермисиите на документите:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Пред да почнете, мора да се осигурате дека следниве документи и папки имаат дозвола за пишување од напиот веб сервер. Ова вклучува промена на промена на пермисиите на фајловите." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "За инсталациониот процес, ве молиме имајте ги следниве информации при рака." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Префикс на табелата" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Најчесто нема да сакате да го промените префиксот на табелата. Но, ако сакате да користите повеќе Ushahidi инсталации во една база на податоци, можете тоа да го направите со промена на префиксот овде." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Наслов" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "За да се логирате, одете до" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Качете податоци за пријавите" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Корисничко име" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Вашето корисничко има за базата на податоци" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "и ги корисите следниве информации за највување" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Види ја твојата веб страна" diff --git a/application/i18n/po/po-mk_MK/layer.po b/application/i18n/po/po-mk_MK/layer.po new file mode 100644 index 0000000000..7349495bb5 --- /dev/null +++ b/application/i18n/po/po-mk_MK/layer.po @@ -0,0 +1,58 @@ +#. extracted from en_US/layer.php, mk_MK/layer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: mk_MK\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-mk_MK/libraries.po b/application/i18n/po/po-mk_MK/libraries.po new file mode 100644 index 0000000000..c2652e9133 --- /dev/null +++ b/application/i18n/po/po-mk_MK/libraries.po @@ -0,0 +1,108 @@ +#. extracted from en_US/libraries.php, mk_MK/libraries.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: mk_MK\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-mk_MK/maintenance.po b/application/i18n/po/po-mk_MK/maintenance.po new file mode 100644 index 0000000000..f3d78d7fd1 --- /dev/null +++ b/application/i18n/po/po-mk_MK/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Се извинуваме, нашата страница е во моментов не достапна поради одржување. Ве молиме обидете се повторно за неколку минути." diff --git a/application/i18n/po/po-mk_MK/message.po b/application/i18n/po/po-mk_MK/message.po new file mode 100644 index 0000000000..ce6d6f2300 --- /dev/null +++ b/application/i18n/po/po-mk_MK/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ве молиме внесете валиден сигурносен код." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Ве молиме внесете го сигурносниот код." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email полето не изгледа како да содржи валидна email адреса?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email полето мора да биде најмалку 4 а не подолго 64 карактери." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email полето е задолжително ако сте штиклирале." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Полето со коментари е задолжително" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Името мора да е барем 3 карактери долго." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Полето со име е задолжително." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Полето за телефон не е валидно" diff --git a/application/i18n/po/po-mk_MK/mhi.po b/application/i18n/po/po-mk_MK/mhi.po new file mode 100644 index 0000000000..1b304e9785 --- /dev/null +++ b/application/i18n/po/po-mk_MK/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Ве молиме внесете валиден сигурносен код." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Ве молиме внесете го сигурносниот код." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email полето не изгледа како да содржи валидна email адреса?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Ве молиме внесете валидна email адреса." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Пораката е задолжителна." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Насловот на пораката мора да е барем 3 карактери долг." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Насловот на пораката е задолжително поле" diff --git a/application/i18n/po/po-mk_MK/notifications.po b/application/i18n/po/po-mk_MK/notifications.po new file mode 100644 index 0000000000..ed5040e185 --- /dev/null +++ b/application/i18n/po/po-mk_MK/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Оваа порака е пратена од вашата страница." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Администраторско најавување" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Нов коментар е оставен на вашата страница како одговор на:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Нов коментар" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Нова email порака е оставена на вашата страница." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Нова email порака" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Нова пријава е оставена на вашата страница." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Нова пријава" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Нова текстуална порака е оставена на вашата страница." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Нова текстуална порака" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Примивте ново предупредување" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Ново предупредување!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Имате приватна порака" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Нова приватна порака" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "За да одговорите ве молиме одете на: " diff --git a/application/i18n/po/po-mk_MK/page.po b/application/i18n/po/po-mk_MK/page.po new file mode 100644 index 0000000000..21d8fc7a0a --- /dev/null +++ b/application/i18n/po/po-mk_MK/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Ве молиме внесете наслов на страницата." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Насловот на страницата мора да биде најмалку 3 а не повеќе од 150 карактери." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Ве молиме внесете име за табот на страницата." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Ве молиме внесете опис на страницата." diff --git a/application/i18n/po/po-mk_MK/permissions.po b/application/i18n/po/po-mk_MK/permissions.po new file mode 100644 index 0000000000..1c7c22b608 --- /dev/null +++ b/application/i18n/po/po-mk_MK/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Видете извештаи" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Создадете/Променете/Избришете Извештаи" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Одобри Извештаи" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Потврди Извештаи" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Симни Извештаи" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Внеси извештаи" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Менаџирај пораки" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Прикажи статистика" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Промени ги подесувањата" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-mk_MK/private_message.po b/application/i18n/po/po-mk_MK/private_message.po new file mode 100644 index 0000000000..bc15594fe5 --- /dev/null +++ b/application/i18n/po/po-mk_MK/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "ID-то на над-категоријата мора да биде нумерично" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Полето \"До\" е задолжително" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Корисникот до кој сакате да испратите порака не постои" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Полето \"Наслов\" е задолжително" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Насловот мора да биде помеѓу 3 и 150 букви" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Полето \"Порака\" е задолжително" diff --git a/application/i18n/po/po-mk_MK/report.po b/application/i18n/po/po-mk_MK/report.po new file mode 100644 index 0000000000..c2df80a04b --- /dev/null +++ b/application/i18n/po/po-mk_MK/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "грешка!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Оваа инстанца се протега само низ една држава. Ве молиме осигурајте се дека локацијата на пријавата е во рамките на таа држава %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The \"Refine Location Name\" field must be at least 3 and no more 200 characters long." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "The \"Refine Location Name\" field is required." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-mk_MK/reporters.po b/application/i18n/po/po-mk_MK/reporters.po new file mode 100644 index 0000000000..400fe2d3f4 --- /dev/null +++ b/application/i18n/po/po-mk_MK/reporters.po @@ -0,0 +1,63 @@ +#. extracted from en_US/reporters.php, mk_MK/reporters.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: mk_MK\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-mk_MK/reports.po b/application/i18n/po/po-mk_MK/reports.po new file mode 100644 index 0000000000..064d937031 --- /dev/null +++ b/application/i18n/po/po-mk_MK/reports.po @@ -0,0 +1,34 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-11-26 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" diff --git a/application/i18n/po/po-mk_MK/roles.po b/application/i18n/po/po-mk_MK/roles.po new file mode 100644 index 0000000000..d8a66dae16 --- /dev/null +++ b/application/i18n/po/po-mk_MK/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Полето \"Опис\" мора да биде најмалку 3 и не повеќе од 100 карактери" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Полето \"Опис\" е задолжително." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Полето \"Име\" мора да содржи само букви и бројки." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Полето \"Име\" мора да биде најмалку 2 и не повеќе од 30 карактери" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin улога не може да биде изменета." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Полето \"Име\" е задолжително." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Полето \"Access Level\" мора да биде број помеѓу 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Полето \"Access Level\" мора да биде број помеѓу 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Полето \"Permissions\" мора да биде број помеѓу 0 - 100." diff --git a/application/i18n/po/po-mk_MK/settings.po b/application/i18n/po/po-mk_MK/settings.po new file mode 100644 index 0000000000..9357f8ec23 --- /dev/null +++ b/application/i18n/po/po-mk_MK/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/projects/p/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-mk_MK/sharing.po b/application/i18n/po/po-mk_MK/sharing.po new file mode 100644 index 0000000000..721feb6720 --- /dev/null +++ b/application/i18n/po/po-mk_MK/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Датум на додавање" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Последно пристапено" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Полето \"Боја\" мора да биде 6 карактери." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Полето \"Боја\" е задолжително." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-mk_MK/stats.po b/application/i18n/po/po-mk_MK/stats.po new file mode 100644 index 0000000000..cb0d9b987d --- /dev/null +++ b/application/i18n/po/po-mk_MK/stats.po @@ -0,0 +1,183 @@ +#. extracted from en_US/stats.php, mk_MK/stats.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: mk_MK\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-mk_MK/tooltips.po b/application/i18n/po/po-mk_MK/tooltips.po new file mode 100644 index 0000000000..f43997dce3 --- /dev/null +++ b/application/i18n/po/po-mk_MK/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Ова го додава извештајот во дополнителни категории. Ако одберете категорија 1 тука и извештајот веќе има категорија 2 прикачена на него, извештајот тогаш ќе има и Категорија 1 и Категорија 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Одобрува или не одобрува извештај. Доколку извештајот е одобрен, ќе биде достапен јавно." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Содржината на пораката која ќе биде испратена." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Наслов на пораката која ќе биде испратена." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Ова е стандардниот наслов кој ќе биде додаден на извештај." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Обележува извештај за веруфикуван или не верификуван." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Оделете ја секоја вредност со запирка, на пример: вредност1, вредност2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Наслов на приватна порака" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Содржина на приватна порака" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Ваша електронска адреса" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Вашето корисничко име може да биде променето." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0)." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Во неколку зборови, објаснете што е функцијата на овој сајт." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-mk_MK/ui_admin.po b/application/i18n/po/po-mk_MK/ui_admin.po new file mode 100644 index 0000000000..89613faaa3 --- /dev/null +++ b/application/i18n/po/po-mk_MK/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Пристапот е одбиен. Или вашите податоци не се валидни или вашето барање е одбиено." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Додај во категорија" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Администратор" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Дали сте сигурни дека сакате" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Дали сте сигурни дека сакате да ја избришете оваа содржина?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Дали сте сигурни дека сакате да ја избришете оваа слика?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Автор" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Електронска пошта на авторот" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Категории" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Ве молиме проверете дали вашата порака е валидна." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Ве молиме проверете дали вашиот број е валиден." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Ве молиме проверете ги вашите СМС подесувања." + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Боја" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Коментари" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Корисникот е" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Земјата не е пронајдена" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Создадете извештај" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Моментално Активен" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Моментално Неактивен" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Дневно" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Опис" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Исклучено" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Симни извештаи" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "ИЗМЕНЕТО" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Изменето од" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Измени" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Електронска адреса" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Грешка" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Грешка, инцидентот не може да биде објавен." + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Секои шест часа" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Секои дванаесет часа" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Стандардна вредност" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Не" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Од" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Од" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Кој ќе може да ги види одговорите" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Кој ќе може да одговори" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Електронска Адреса:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Име и презиме:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Лозинка:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Корисничко име:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Одјависе" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Види Корисници" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Додај/Промени Корисници" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Порака" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Пораки" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Твитер Пораки" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Твојата порака е пратена!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Минута" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Минути" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Создадете нова порака" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Страницата не е пронајдена" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Лозинка" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Рестартирање на лозинката" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Драги" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Добивме барање за ресетирање на лозинката за" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "За да ја промените лозинката, кликнете на линкот подолу (или копирајте го и ставете го линкот во вашито прелистувач)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Како што побаравте, вашата лозинка беше ресетирана. Вашите нови детали се следниве" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Ве молиме изберете" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Преглед" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Порака" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Приватна Порака" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Приватната порака е испратена" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Наслов" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "До" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Барај" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Барај извештаи" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Ве молиме изберете содржина" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Испраќач" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Испрати до" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Оваа порака е испратена од твојот веб сајт во" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Прилагодувања" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Специјална категорија" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Корисник" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Корисници" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Верзија" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Добредојдовте" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Да" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-mk_MK/ui_main.po b/application/i18n/po/po-mk_MK/ui_main.po new file mode 100644 index 0000000000..104415e9d8 --- /dev/null +++ b/application/i18n/po/po-mk_MK/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "За " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Пристап" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Ограничувња на пристап" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Име на сметката" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Акции" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Оваа акција не може да се откаже. Дали сте сигурни дека сакате да продолжите?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Активирај" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Активно" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Додади" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Додадено од" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Повеќе податоци" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Повеќе пријави" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Додади/Измени" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Додади поле" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Додади јазик" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Додади ново" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Додади нова категорија" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Додади превод" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Администрација" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Предупредувања" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Предупредиме ако има пријава во, or или околу:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Зачувај го моето предупредување" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email адреса:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "внеси email адреса" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "внеси број на мобилен телефон со кодот на државата" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Предупредувања" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Телефон:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Или означете место на мапата доле, и ние ќе ве известиме кога пријава ќе биде додадена на 20 километри." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Ако не можете да ја најдете вашта локација, означете ја на мапата." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS новости (копирај го URL доле)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Одбери град" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Чекор 1: Одберете го вашиот град или локација:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Чекор 2: Пратете го предупредувањата на:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Чекор 3 (Незадолжително): Одберете категорија" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "ПОтврдете побарување за претходно предупредување" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Вашето предупредување е зачувано!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Сите" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Одобрено" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Сите катетории" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Отсекогаш" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "и" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Одобри" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Одобрено" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Одобрени пријави" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Одобри ја оваа пријава" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Приближно" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Архива" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Архивирано" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "во" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Автор" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Автоматско пријавување" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Просечно пријави дненвно" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Се чека одобрување" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Се чека верификација" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Беџ" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Беџови" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Слика на беџот" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Или можете да прикачите ваша слика." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Група беџови" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Одбери беџ" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Блог" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Разгледај профили" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Откажи" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Категории" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Категорија" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Филтер на категории" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Оваа категорија е " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Име на категоријата" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Промени го опсегот на датите" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Промени лозинка" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Промени ја сликата" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Избери" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Одберете што да симнете" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Или одберете сопствен опсег" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Одберете тип на поле" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Чисти URL" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Откажи" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Изчисти ја мапата" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Затвори" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "кластери" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Боја" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Коментар" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Коментари" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Повеќе" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Твоите подесувања се зачувани!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Подеси" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Успешно ја потврдивте вашата email адреса! Ве молиме логирајте се подоле." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Контактирајте нè" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Сигурносен код" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Вашата email адреса" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Порака" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Вашата порака е испртена!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Име" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Телефонски број" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Испрати порака" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Наслов на пораката" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Креирај" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Креирај/Измени" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Креирај нов" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Креирај нова лозинка" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Пријави" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Веродостојност" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Вашата лозинка во моментов" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Повеќе опции" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Информации" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Дата" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(dd/mm/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Датум и време" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "ден" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Деактивирај" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Скопје, Македонија" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Избриши" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Избришано" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Избришани" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Избриши неактивни" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Избриши последно" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Избриши ја пријавата" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Избриши ги селектираните" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Избриши спам" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Демо" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Опис" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Пример: позади Рамстор, Железничка, Скопје" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Повеќе" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Директна Пријава" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Оневозможено" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Не одобрувај" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Симни пријави" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Измени" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Измени ги полињата во формата" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Измени извештај" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Електронска пошта" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Адреса на електронска пошта" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Mail Server Подесувања" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Хост" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mail Server Лозинка" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mail Server Порта" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Mail Server SSL поддршка" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Mail Server Тип" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Mail Server корисничко име" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "па вашите подесувања мораат да бидат асоцирани со оваа email address" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "За да добивате пријави на email, ве молиме внесете ја вашата email адреса во подесувањата доле. Ве молиме имајте во предвид emails пораките ќе бида доставени до вашето" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Некои сервери бараат комплетна email адреса" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Email лозинка" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Примери: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Примери: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Овозможи или оневозможи SSL конекции" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---ПРАЗНО---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "до" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Грешка!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Пример" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Македонија" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Надворешни апликации" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Надворешен видео линк" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Новости" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Кажете ни ->" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Новости" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Овие новости се" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Новости" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Име на новостите" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL на новостите" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Неискоритено поле" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Документ" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Вашиот документ е над максимално дозволената големина." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Филтри" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Филтрирј пријави" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Филтрирај ги пријавите по" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Филтрирај ги пријавите кои содржат" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Најди" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Најди локација" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Име" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Ја заборавивте лозинката?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Форма" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Форми" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Опис на формата" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Измени ја оваа форма" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Оваа форма е" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Наслов на формата" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Од" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Име и презиме" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Геолокација достапна" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Боја" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Коментари" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Ознака" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Промени" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Хаштаг" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Било" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Како да помогнете" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Скриено" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Скри" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "скриј ја оваа порака" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Насловна" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Како да пријавам" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Служи за да те идентификува на страната од другите корисници." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Слика" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Слики" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Слика/Икона" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Неактивно" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Сандаче" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Инцидент" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Инциденти близу" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Локација на инцидентот" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Вклучи" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Вклучи категории" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Вклучи сопствени полиња" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Вклучи опис" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Вклучи колку што е можно повеќе детали" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Вклучи латитуда" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Вклучи информација за локацијата" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Вклучи лонгитуда" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Надворешно прикачени материјали" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Евалуација на информациите" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Внесете ја вашата прецизна локација" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Вашата сметка ги нема потребните одобрувања за да се логирате. Ве молиме контактирајте го администраторот." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Како одговор на" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP адреса" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Дали е ова вашиот профил?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Клуч" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Качи KMZ/KML File" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Јазик" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Последно" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Последниот месец" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Презиме" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Последната година" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Латитуда" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Слоеви" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Други слоеви" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Овој слој бил" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Име на слојот" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL на слојот" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Оставете коментар" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "помалку" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Ниво" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Ова ниво било" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Име на нивото" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Ограничени" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Линк" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Листа" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Пријавите се вчитуваат" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Локација" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Локации" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "место(населба), град, држава" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Логирање" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Профилот е успешно креиран. Сега можете да се логирате." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Одобрување е пратено на вашата email адреса." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Email адресата не постои. Пробајте различна адреса или креирајте нова." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Ве молам кликнете на провајдерот на вашта сметка" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Логирајте се со" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email и лозинка" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Регистрирајте се" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Креирајте профил" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Повтврда на регистрирањето" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Креирајте смета сега за да искористите повеќе од можностите на страницата." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Лонгитуда" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Мапа" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Означи како прочитано" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Означи како непрочитано" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Максимум големина" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Слики, видеа, вести" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Филтер" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Членови" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Подеси го твојот профил" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Порака" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Пораки" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Детали на пораката" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Порака од не-нумерички извор:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Мобилен" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Измени" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Измени ја датата" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "месец" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Повеќе" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Повеќе информации" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Дали оваа Ushahidi инстанца се протега низ повеќе држави" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "За да и пристапите на оваа инстанца морате да ја потврдите вашата email адреса. Ако сте го изгубиле потврдниот email, можете да побарате нов подоле." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Име" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Пријава близу" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Нов" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Вести" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Новости" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Извор на вестите" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Нова категорија" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Нова лозинка" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Нова пријава" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Следно" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Не" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Нема пријавувања за приказ." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Нема податоци" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Нема" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Не одобрени" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Не одобрен" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Не селектирани---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "не е спам" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Не специфицирано" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Нема пријави" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Нема резултати" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Официјални и мејнстрим вести" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Опции" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Опционални" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Опции" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Организација" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Организации" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Опис на оргнизацијата" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email на организацијата" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Организацијата била" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Име на организацијата" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Телефон на оргнизацијата 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Телефон на организацијата 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Страница на орранизацијата" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Првично" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Првичен опис" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Првичен наслов" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Други Ushahidi инстанци" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Пратени" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Испратена" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Страница" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Страници" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Опис на страницата" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Стрницата била" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Наслов на табот" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Наслов на страницата" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Категорија родител" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Лозинка" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Потврдете лозинка" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Лозинката е успешно променета! Логирајте се подоле." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Ја заборавивте лозинката?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Проверете го вашето email сандаче за нова лозинка." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Останете логирани на овој компјутер?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Изминатиот месец" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Изминатата година" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Се вчитува" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Лични информации Незадолжително." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Фотографии" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Слики" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Слики и видеа" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Барајте ја вашата локација користејќи го името ИЛИ координатите латитуда, лонгитуда (формат: 38.19, 85.61), ИЛИ кликнете на мапата за да ја означите точната локација." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Пушти" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Ве молиме имајте во предвид" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Плагини" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Веб страницата на плагинот" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Јавен профил" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL за јавниот профил" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Преглед" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Прегледај" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Прегледај порака" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Претходно" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Приватно" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Боја на профилот" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Вашиот профил е зачуван" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Брза статистика" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Оцена" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Прочитај" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Добиј" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Добиј од" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Добиј известување" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Скорешни пријави" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Освежи новости" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Регистриран email" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Отстрани" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Одговори" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Пријава" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Пријави (од мапата, излистани по хронолошки редослед)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Пријавувач" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Пријавувачи" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Дата на пријавувачот" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "email на пријавувачот" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Име на пријавувачот" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP адреса на пријавувачот" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Презиме на пријавувачот" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Ниво на пријавувачот" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Нивоа на пријавувачот" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Телефон на пријавувачот" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Статистика" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Разгледај" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Поднеси" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Пријави од овој корисник" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Категории" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Датум" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Опис" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Пријавите ќе бидат симнати во CSV формат" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Најди локација блиску до тебе" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Име" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Презиме" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Прецизирај го местото на локацијата" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Линк од вести" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Незадолжителни информации" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Прикачи фотографија" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Врати се до страната со пријавите" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Одбери град" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Вашата пријава е испратена до нашиот персонал за преглед. За подобри резултати, секоја пријава е администрирана. Ви благодариме за трпението." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Пријави нов инцидент" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Време" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Времески распоред" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Наслов на пријавата" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Видео линк" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Пријави инцидент" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Детали на пријавата" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Со исраќање на порака на" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Со испраќање email" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Со праќање на tweet со хаштагот" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Со пополнување на овој формулар на нашата страница." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Со користење на апликација" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Вашата пријава е сочувана" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Наслов на пријвата" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Побарај повеќе информации" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Побарај локација" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Задолжително" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Задолжителни" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Препрати ja email поракат за одобрување" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Ресетирај" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Ресетирај ги сите" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Ресетирај ја лозинката" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Повлечи ги имињата на градовите за избраната држава" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Профилите се менаџирни од службата на %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Улога" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Зачувај" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Зачувано" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Зачувај и додади ново" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Зачувај и затвори" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Зачувај извештај" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Распоред" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Распоредувач" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Ден" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Час" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Лог на распоредувачот" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Минута" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Ден од неделата" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "ПРЕБАРАЈ" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Резултати од пребарувањето" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Сигурносен код" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Селектирај ги сите" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Одбери тип на поле" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Одбери тип на форма" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Одбери во мапата" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Селектирај колку и да се потребни" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Ве молиме осигурајте се дека сте одбрале нешто" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Избери тема" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Прати" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Прати потврда" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Се праќа на" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Пратено" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Пртено од" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Адреса на серверот" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Тип на серверот" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Опслужувач" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Корисничко име на опслужувачот" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Корисничко ID на опслужувачот" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Сподели" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Споделени податоци" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Споделувањето е" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Споделување" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Покажи" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Покажи ги сите" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Покажи ги пораките" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Страница" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "email адреса на страницата" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL на страницата" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "За жал, вие сеуште немате никаков беџ." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Извор" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Име на изворот" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL на изворот" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Спам" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL поддршка?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Од" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Чекор" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Пријави нов инцидент" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Поднеси преку SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Пратете ја вашата SMS порака до" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "на вашиот телефон" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Успешно!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Успешно импортирано" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Презиме" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "新开线路" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Систем" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Теми" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Подесувања за темите" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Ова" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Денес" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Овој месец" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Оваа недела" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Оваа година" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Ова е вашиот профил." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Време" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Наслов " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "до" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Денес" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Денес во" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Токен" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Вкупно пријави" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Преведено" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Преведен опис" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Преведен наслов" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Преведи на" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Превод" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Преводот е зачуван" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Тип" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Не може да се испрати email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Некатегоризирани пријави" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "непрочитани" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Неверифицирани" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Обнови новости" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Прикачи" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Фајл за качување" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Качи пријави" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Со формата подоле, можете да импортирате инциденти со Ushahidi енџинот." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Качувањето успешно" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Прикачи видео" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Корисник" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Корисничко име" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Админ" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Верификација" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Верифицирано" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Верифицирани пријави" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Верифицирај" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Верифицирај ја оваа пријава" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Верзија" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "од" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Видео" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Види" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Види" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Види ги сите" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Види ги сите новости" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Види ги сите пријави" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Види ги сите" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Види повеќе" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Види го јавниот профил" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Види пријава" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Види пријави" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "видливо" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Чека одобрување" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Чека верификација" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Бев форма" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Тежина" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Да" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Вчера" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Вашата работа табла" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Вашиот фајл" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Зголеми" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Намали" diff --git a/application/i18n/po/po-mk_MK/upgrade.po b/application/i18n/po/po-mk_MK/upgrade.po new file mode 100644 index 0000000000..9a36673d56 --- /dev/null +++ b/application/i18n/po/po-mk_MK/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# mopkobot , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/mk_MK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk_MK\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Невалиден внес на податоци. Може да биде 0 за Не или 1 за Да." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Автоматско надоградување" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Достапни ажурирања" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Продолжи" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Ажурирај" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Ќе ја надоградиме вашата база на податоци од верзија" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "до најновата база на податоци" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Кликнете на \"Ажурирај\" копчето и само кулирајте додека јас изведувам магија." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Доколку сакате да ја заштитите вашата база на податоци, само кликнете на копчето подолу и јас ќе ја заштитам базата за вас." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Заштитете ја базата на податоци пред ажурирање? (Препорачливо)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Подолу се инструкциите за рачно надоградување на вашата Ushahidi верзија" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Превземи
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "За автоматско ажурирање, кликнете на копчето подолу." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Надоградување" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Вие ја имате најновата верзија на Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Верзија на базата на податоци: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "База на податоци:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/alerts.po b/application/i18n/po/po-ne_NP/alerts.po new file mode 100644 index 0000000000..7ba93f8899 --- /dev/null +++ b/application/i18n/po/po-ne_NP/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Nirdosh Chapagain , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-09 06:26+0000\n" +"Last-Translator: Nirdosh Chapagain \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "इमेल छेत्र मा मान्य इमेल नभएको आवस्था" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "यो इमेल पहिलेनै यो स्थानको लागि सतर्क संदेश पाउनको लागि प्रयोग भैसकेको छ " + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "इमेल क्षेत्र मा कम्तिमा 4 र बढीमा 64 वर्ण मात्र हुन सक्छ " + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "बक्स मा ठिक लागिएको छ भने इमेल क्षेत्र आनिबार्य छ " + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ne_NP/auth.po b/application/i18n/po/po-ne_NP/auth.po new file mode 100644 index 0000000000..bfb4ec5951 --- /dev/null +++ b/application/i18n/po/po-ne_NP/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-07 03:18+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "नाम भएको क्षेत्र आवश्यक छ " + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/bug.po b/application/i18n/po/po-ne_NP/bug.po new file mode 100644 index 0000000000..3682158cca --- /dev/null +++ b/application/i18n/po/po-ne_NP/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ne_NP/datetime.po b/application/i18n/po/po-ne_NP/datetime.po new file mode 100644 index 0000000000..d954414961 --- /dev/null +++ b/application/i18n/po/po-ne_NP/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-07 03:06+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "म" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/feeds.po b/application/i18n/po/po-ne_NP/feeds.po new file mode 100644 index 0000000000..4041fd3498 --- /dev/null +++ b/application/i18n/po/po-ne_NP/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-07 03:17+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "स्रोत" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/installer.po b/application/i18n/po/po-ne_NP/installer.po new file mode 100644 index 0000000000..385425264a --- /dev/null +++ b/application/i18n/po/po-ne_NP/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-07 03:18+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "उन्नत स्थापना" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "शीर्षक" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "अपलोड रिपोर्ट डाटा" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "प्रयोगकर्ता नाम" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/notifications.po b/application/i18n/po/po-ne_NP/notifications.po new file mode 100644 index 0000000000..f6c41f2d66 --- /dev/null +++ b/application/i18n/po/po-ne_NP/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-07 03:17+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "नयाँ इमेल सन्देश" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ne_NP/permissions.po b/application/i18n/po/po-ne_NP/permissions.po new file mode 100644 index 0000000000..e4dbb9bc6c --- /dev/null +++ b/application/i18n/po/po-ne_NP/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/report.po b/application/i18n/po/po-ne_NP/report.po new file mode 100644 index 0000000000..b7760b55e2 --- /dev/null +++ b/application/i18n/po/po-ne_NP/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ne_NP/settings.po b/application/i18n/po/po-ne_NP/settings.po new file mode 100644 index 0000000000..c5e3e33583 --- /dev/null +++ b/application/i18n/po/po-ne_NP/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Nirab Pudasaini , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/projects/p/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "नक्सा छान्न , नक्सा को सोर्र्त छान्नुहोस्, नक्सा को सोर्र्तको साईट बाट ए.पी.आइ की प्राप्त गर्नुहोस र ए.पी.आइ की हल्नुहॊस" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "नक्शा सोर्र्त" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "नक्शा समयरेखा" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "नक्शा प्राथमिकता" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "के यो उशाहिदी दीप्लोय्मेंट एक भन्दा बदी राष्ट्र मा फैलिएको छ ?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "तपाईं को सहि स्थान रखन् नक्सा लाई थिचेर सर्नुहूस" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "प्रतिबेदन्हारू लाई नक्सा मा समूह मा देखाउनुहोस" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "प्रयोगकर्ताहरु लाई परतिबेदनमा पर्तिक्रिया जनाउन दिनुहोस" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/stats.po b/application/i18n/po/po-ne_NP/stats.po new file mode 100644 index 0000000000..bd83f617d3 --- /dev/null +++ b/application/i18n/po/po-ne_NP/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-07 03:19+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "देशहरु" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "रिपोर्टको स्थिति" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "प्रमाणित" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-ne_NP/tooltips.po b/application/i18n/po/po-ne_NP/tooltips.po new file mode 100644 index 0000000000..23040f866f --- /dev/null +++ b/application/i18n/po/po-ne_NP/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-05-07 03:19+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "तपाईंको इमेल ठेगाना" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/ui_admin.po b/application/i18n/po/po-ne_NP/ui_admin.po new file mode 100644 index 0000000000..6574f3a279 --- /dev/null +++ b/application/i18n/po/po-ne_NP/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Laxman Maharjan , 2014 +# (PK) Pradhyumna Kumar Shrestha , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2015-05-07 03:21+0000\n" +"Last-Translator: (PK) Pradhyumna Kumar Shrestha \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "जिम्मेवारीहरु" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "गणना" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "देश फेला परेन" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "हाल निष्क्रिय" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "दैनिक" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "साताका दिनहरु " + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "मेटिएको" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "फाेन" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "सन्देश" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "गाेप्य सन्देश" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "विषय" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "अावश्यक" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "नतिजाहरू" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "खाेज" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "एक आइटम चयन गर्नुहोस्" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "प्रेषक" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "सर्भरको समय" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "सेटिङ" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "देखाइँदै पृष्ठ" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "देखाइएको" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "विषय" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "नाम" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "अनुमोदन नगरिएको" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "अज्ञात" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "अज्ञात विफलता" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "नपढेको" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "गाेप्य सन्देशहरू" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "साइट हेर्नुहाेस्" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "रिपाेर्ट हेर्नुहाेस्" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "स्वागतम्," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "एक्स एफ एल" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "हाे" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "तपाईं सबै रिपोर्ट मेटाउन चाहनुहुन्छ तपाईं पक्का हुनुहुन्छ ?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "मेटिने कुनै रिपोर्टहरू छन् " + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "लगिन संख्या" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "पछिल्लो लगिन" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ne_NP/ui_main.po b/application/i18n/po/po-ne_NP/ui_main.po new file mode 100644 index 0000000000..403031fc69 --- /dev/null +++ b/application/i18n/po/po-ne_NP/ui_main.po @@ -0,0 +1,3175 @@ +# +# Translators: +# Neil Horning , 2012 +# Laxman Maharjan , 2014 +# Nirab Pudasaini , 2013 +# Nirdosh Chapagain , 2015 +# (PK) Pradhyumna Kumar Shrestha , 2015 +# Prakash Neupane , 2013 +# Savi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-05-09 06:05+0000\n" +"Last-Translator: Nirdosh Chapagain \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "हाम्रो बारेमा" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "पहुँच" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "सीमित पहुँच" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "खाताको नाम" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "कार्यहरू" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "यो कार्य लाई उल्टाउन सकिदैन। के तपाई अगाडी बढ्न चाहनुहुन्छ?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "सक्रिय गर्नुहोस्" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "सक्रिय" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "थप्नुहोस/हल्नुहोस" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "कसले हालेको " + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "अतिरिक्त डाटा" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "अतिरिक्त प्रतिवेदनहरु" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "जोड्नुहोस्/बदल्नुहोस्" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "फिल्ड थप्नुहोस्" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "भाषा थप्नुहोस्" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "नयाँ थप्नुहोस्" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "नयाँ श्रेणी जोड़्नुहोस्" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "अनुवाद जोड़्नुहोस्" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "प्रशासन" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "अलर्टहरु प्राप्त गर्नुहोस्" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr " यस क्षेत्रमा वा यसको नजिकबाट रिपोर्ट प्राप्त भएमा मलाई अलर्ट पठाउँनुहोस्" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "मेरो अलर्ट सेभ गर्नुहोस्" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "ईमेल ठेगाना" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ैईमेल पता हाल्नुहोस्" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "कन्ट्री कोड सहीत मोबाईल न. हाल्नुहोस्" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "चेतावनी प्राप्त गर्नुहोस्" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "चेतावनी गरिएको छ" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "मोबाईल फोन" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "तल दिएको नक्शामा आफ्नो ठाँउ हेर्नुस् र हामी तपाईको 20 कि.मि भित्रको रिपोर्टको बारेमा अधिसूचना दिनेछम्।" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "यदि आफ्नो ठाँउ भेटाउनु भए छैन भने क्रिपया नक्शामा सहि ठाँउमा pinpoint गर्नुहोस् " + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "फ़ीड आरएसएस (तल को यूआरएल लार्इ कपी गर्नुस )" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "नगर/शहर चयन गर्नुहोस" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "क्रम १: आफ्नो शहर अथवा ठाऊ छान्नुहाेस् : " + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "क्रम २: मलाई सचेत गर्नुहोस् :" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr " क्रम 3(वैकल्पिक):विभाग चयन गर्नुहोस " + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "पछिल्लो एउटा अलर्ट अनुरोध को पुष्टि गर्नुहोस " + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "अलर्ट सुरक्षित गरियो " + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "सबै" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "अनुमति " + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "सबै श्रेणी हरु " + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "सधै " + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "अरु" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "ए पि आइ" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "अनुमोदन" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "अनुमोदित" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "अनुमोदित रिपोर्ट" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "रिपोर्ट लाइ अनुमोदन गर्नुहोस " + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "लगभग" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "संग्रह" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "संग्रहीत" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "आरोही" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "मा" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "लेखक" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "ओटो चेक इन " + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "अटाे" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "प्रति दिन औसत रिपोर्ट" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "अनुमोदन को लगी प्रतीक्षा मा " + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "सत्यापन को लागी प्रतीक्षा मा " + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "बिल्ला" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "बिल्लाहरु " + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "बिल्लाको प्रतिरूप" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "तपाई को आफ्नै बिल्ला प्रतिरूप अपलोड गर्नुहोस " + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "बिल्ला पैक" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "एउटा बिल्ला चयन गर्नुहोस " + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "ब्लोग" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "प्रोफाइल ब्राउज़" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "रद्द गर्नुहोस " + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "श्रेणीहरु " + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "श्रेणी " + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "श्रेणी छान्नु" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "श्रेणीमा" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "श्रेणीको नाम " + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "मिति सीमा बदलिनुहोस" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "पासवर्ड बदलिनुहोस " + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "मेरो तस्वीर बदलिनुहोस " + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "एउटा छान्नुहोस " + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "डाउनलोड गर्न लाइ डाटा बिंदु हरु रोज्नुस " + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "अथवा आफ्नो मिति सीमा रोज्नुहोस " + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "फील्ड को प्रकार रोज्नुहोस " + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr " URLs मेट्नुहोस" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "मेट्नुहोस" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "नक्शा सफा पारनुहोस" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "बन्द गर्नुहोस " + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "समूह हरु" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "रंग" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "टिप्पणी" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "टिप्पणी हरु " + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "टिप्पणी विवरण" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "सेटिंग सुरक्षित " + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "कॉन्फ़िगर" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "तपाईंले सफलताका साथ आफ्नु ए-मेल पक्का गर्नुभो! लोग इन गर्नुहोस्" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "सम्पर्क गर्नुहोस " + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "सुरक्षा कोड" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr " ईमेल " + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "संदेश" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "तपाइको सन्देश प्रेषित " + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "तपाइको नाम" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "तपाइको फोन नंबर" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "सन्देश पठाउनुहोस " + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "सन्देश को बिषय " + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "कपीराइट ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "सृजना गर्नुहोस " + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "सृजना गर्नुहोस / संपादित" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "नया सृजना गर्नुहोस " + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "नया पासवर्ड सृजना गर्नुहोस " + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "रिपोर्ट बनाउहोस" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "विश्वसनीयता" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "वर्तमान पासवर्ड" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "कस्टम फ़ील्ड" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "सूचना" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "मिति" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "माहिना /दिन / साल " + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "मिति र समय " + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "दिन" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "दैनिक" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "निष्क्रिय " + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "नैरोबी, केन्या" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "मेट्नुहोस " + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "मेटेको " + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "मेट्छ" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "\t\n\t\nनिर्योग्य मेट्नुहोस " + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "अंतिम मेटेको " + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "रिपोर्ट लाइ मेट्नुहोस " + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "चयनित मेट्नुहोस " + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "स्पैम मेट्नुहोस " + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "प्रदर्शन" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "विवरण" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "अवरोही" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "उदाहरण : बजार को कुना मा, ward no 5, Gulariya Bardiya" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "विवरण" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "प्रत्यक्ष प्रतिवेदन" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "\t\n\t\nनिर्योग्य" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "अनुमोदन न भएको " + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "प्रतिवेदनहरु डाउनलोड गर्नुहोस" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "डाउनलोड गर्नुहोस" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "संपादन गर्नुहोस " + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr " फ़ील्ड प्रपत्र संपादन गर्नुहोस " + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "प्रतिवेदन संपादन गर्नुहोस " + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "ईमेल" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "ेईमेल पता" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "mail server setting " + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "मेल सर्वर होस्ट" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "मेल सर्वर पासवर्ड" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "मेल सर्वर पोर्ट" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "मेल सर्वर SSL को समर्थन" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "मेल सर्वर को प्रकार" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "मेल सर्वर उपयोगकर्ता को नाम" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "तेसैले तपाईंको प्राथमिकता एस ई-मेल संग जडान हुनुपर्छ " + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "ईमेल खाता को पासवर्ड" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "उदाहरण: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "उदाहरण: POP3, IMAP" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "एसएसएल कनेक्शन सक्षम या अक्षम" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "\t\nखाली" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "सम्म " + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "त्रुटि!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "उदाहरण" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "केन्या" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "बाहरी ऐप्स" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "बाहरी वीडियो लिंक" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "फेसबुक " + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "फ़ीड, भरण" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "प्रतिक्रिया प्रदान गर्नुहोस " + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "फ़ीड" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "भरण गरियो " + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "फ़ीड विषय " + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "फीड नाम " + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "फीड यूआरएल" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "प्रयोग नभएको फिल्ड" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "फ़ाइल" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "तपाईंको फाईल को आकार ठुलो भयो" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "चाल्नी हरु " + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "प्रतिवेदनहरु चाल्नुहोस " + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "प्रयोगकर्ता अनुसार प्रतिबेदन छान्नुहोस्" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "फ़िल्टर प्रतिवेदनहरु शामिल छ" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "खोज्नुहोस " + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "स्थान पत्ता लगाउनुहोस " + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "प्रथम नाम" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "समयबद्धक" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "आफ्नो पासवर्ड बिर्सिनुभयो ?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "प्रपत्र" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "प्रपत्र हरु " + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "प्रपत्र विवरण" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr " प्रपत्र संपादन गर्नुहोस " + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "प्रपत्र " + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "प्रपत्र शीर्षक" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "द्वारा" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "पूरा नाम" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "भू स्थान उपलब्ध " + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "रंग" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "टिप्पणी" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "नामपत्र" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "स्ट्रोक चौड़ाई" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "जनुहोस " + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "हैशटैग" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "भाको छ" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "सहायता कसरी गर्ने" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "गुप्त" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "लुकेको " + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "यो सन्देश लुकाउनुहोस " + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "गृहपृष्ठ" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "प्रतिघण्टा" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "रिपोर्ट कसरी गर्ने" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "पहचान" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "तपाईंलाई अरु प्रयोगकर्ता संग चिनाउन प्रयोग गरिन्छ" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "प्रतिरूप" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "प्रतिरूप हरु " + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "छवि / आइकॉन" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "निष्क्रिय" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "इनबॉक्स" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "घटना" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "निकटवर्ती घटनाहरु" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "घटना स्थान" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "समावेश" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "श्रेणी हरु समावेश गरनुहोस" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "कस्टम फ़ील्ड हरु समावेश गरनुहोस" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "पृष्ठ विवरण समावेश गरनुहोस" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "जती सक्दो विवरण समावेश गर्नुहोस " + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "अक्षांश समावेश गरनुहोस" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "स्थान सूचना समावेश गरनुहोस" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "देशान्तर समावेश गरनुहोस" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "व्यक्तिगत सूचना समावेश" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "आउने मीडिया " + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "सूचना को मूल्यांकन" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "आफ्नो यथार्थ स्थान दर्ता गर्नुहोस " + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "अन्तराल" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "को जवाब मा" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "आईपी ​​पता" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "के यो तपाइको प्रोफाइल हो ?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "विषय" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "विषय हरु " + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "विषय_विवरण" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "विषय शीर्षक" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "समाधान" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML फईल" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "KMZ/KML फईल अपलोड गर्नुहोस" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "संक्षिप्त" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "भाषा " + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "अंतिम" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "गएको महिना " + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr " उप नाम" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "गएको वर्ष" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "अक्षांश" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "तह हरु " + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "अन्य तह " + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "यो लेयर" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "तह को नाम" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "तह URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "टिप्पणी लेखी छोड्नुहोस" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "थोरै सूचना" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "स्तर" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "यो श्रेणी " + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "स्तर को नाम " + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "सीमित" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "लिंक" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "सूची" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "प्रतिवेदनहरु लोड हुँदै छ" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "स्थान " + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "स्थानहरु" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "शहर, राज्य / देश" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "लॉगिन" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "लॉगिन" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "ईमेल तथा पासवर्ड" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "खुला आईडी" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "साइन अप" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "एउटा खाता बनाउहोस" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "साइनअप प्रमाणीकरण " + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "प्रयोगकर्ता खाता अनुमोदित" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "देशान्तर " + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "नक्शा" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "अधिकतम फाइल को आकार" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "मीडिया" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "मीडिया चाल्नी " + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "सदस्य" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "आफ्नो खता प्रबंधन गर्नुहोस " + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "संदेश" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "संदेशहरु" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "संदेश विवरण" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "मोबाइल" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "संशोधित" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "मिति संशोधित" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "महीना" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "मासिक" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "ज़्यादा" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "ज़्यादा सूचना" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "नााम" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "निकट प्रतिवेदन " + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "नयाँ " + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "समाचार" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "समाचार फ़ीड" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "समाचार स्रोत" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "नयाँ श्रेणी " + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "नया पासवर्ड " + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "नया प्रतिवेदन " + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "आर्को " + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "अस्वीकार" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "कुनै डाटा छैन" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "कुनै पनि हैन " + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "सूचना हरु" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "अनुमोदित" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "अनुमोदित न भएको " + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---चयनित न भएको---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "स्पैम हैन " + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "निर्दिष्ट हैन " + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "कुनै पनी प्रतिवेदन छैन" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "कुनै पनी प्रतिवेदन हरु छैन" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "बंद" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "अधिकारिक र मूलधारका समाचारहरु" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "चालू" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "विकल्प" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "वैकल्पिक" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "विकल्पहरु" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "संगठन" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "संगठनहरु" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "संगठन विवरण" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "संगठन ईमेल" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "संगठन को नाम" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "संगठन फोन 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "संगठन फोन 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "संगठन वेबसाइट" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "मूल" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "मूल विवरण" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "मूल शीर्षक" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "अन्य तैनाती" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "आउटबॉक्स" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Outgoing " + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "पेज" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "पृष्ठ हरु" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "पृष्ठ विवरण" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "पृष्ठ टैब को नाम" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "पृष्ठ शीर्षक" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "जनक श्रेणी" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "पासवर्ड" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "पासवर्ड सत्यापित" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "पासवर्ड सफलतापूर्वक बदली गरिएको छ ! तल लोग इन गर्नुहोस " + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "आफ्नो पासवर्ड बिर्सिनुभयो ?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "नया पासवर्ड को लागी आफ्नो इ मेल जान्च्नुहोस " + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "विगत माह" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "विगत वर्ष" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "अपूर्ण" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "प्रति" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "फ़ोन" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "तस्वीर हरु " + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "तस्वीर हरु " + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "तस्वीर हरु तथा विडियो हरु " + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "चलाउनुहोस" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "कृपया ध्यान दिनुहोस " + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "प्लगइन्स" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "प्लगइन्स वेबसाइट" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "सार्वजनिक प्रोफ़ाइल " + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "सार्वजनिक प्रोफ़ाइल यु र ल" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "पूर्वावलोकन" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "विषय पूर्वावलोकन गर्नुहोस " + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "सन्देश पूर्वावलोकन गर्नुहोस " + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "पूर्व" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "निजी" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "प्रोफ़ाइल को रंग" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "दर-निर्धारण" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "अध्ययन " + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "स्वीकार " + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "द्वारा प्राप्त " + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "अधिसूचना प्राप्त " + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "ताज़ा प्रतिवेदनहरु" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "पुनश्चर्या समाचार फ़ीड" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "पंजीकृत ईमेल" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "निराकरण " + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "उत्तर" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "प्रतिवेदन" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "प्रतिवेदनहरु (नक्शाबाटा, तिथिक्रमानुसार)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "संवाद-दाता" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "संवाद-दाता हरु " + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "रिपोर्टर मिति" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "संवाद-दाता को ई मेल" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "संवाद-दाता प्रथम नाम" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "संवाद-दाता को आईपी ​​पता" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr " संवाद-दाता को उप नाम" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "संवाद-दाता स्तर" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "संवाद-दाता को स्तर हरु" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "संवाद-दाता को फ़ोन" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "प्रतिवेदनहरु " + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "ब्राउज़" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "प्रस्तुत " + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "श्रेणी हरु " + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "मिति" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "विवरण" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "ईमेल" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "विशेषता हरु" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "आफ्नो नजिक को स्थान पत्ता लगाउनुहोस " + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "प्रथम नाम" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr " उप नाम" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "स्थानको नाम" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "समाचार स्रोत लिंक" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "वैकल्पिक सूचना" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "फोटो अपलोड" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "रिपोर्टस पगे मा फर्कनुस" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "नगर/शहर चयन गर्नुहोस" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "नया प्रतिवेदन बुझाउनु" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "समय" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "प्रतिवेदनहरु समय रेखा" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "प्रतिवेदन शीर्षक" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr " वीडियो लिंक" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "घटना को रिपोर्ट" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "प्रतिवेदन विवरण" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "sms बाटा मा पठाउन सकिन्छ" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "ईमेल बाटा" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "हाम्रो वेबसाईटमा भएको फारम भरेर" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "app को प्रयोगबाटा" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "रिपोर्ट सुरक्षित " + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "प्रतिवेदन शीर्षक" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "अधिक जानकारी को लागी अनुरोध गर्नुहोस " + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "अनुरोध स्थान" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "अपेक्षित" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "आवश्यकताहरु " + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "पुष्टिकरण ईमेल पुन: पठाउनुस " + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "पासवर्ड रीसेट" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "भूमिका" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "अार एस एस" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "संचय " + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "सहेजेको" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "संचय /नयाँ थप्नुहोस्" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "संचय " + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "प्रतिवेदन सुरक्षित गर्नुहोस " + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "अनुसूची" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "समयबद्धक " + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "दिन" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "घंटा" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "समयबद्धक प्रवेश" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "मिनट" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "सप्ताह को दिन" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "खोज" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "खोज परिणाम" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "सुरक्षा कोड" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "सबै चयन गर्नुहोस " + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "फील्ड प्रकार चयन गर्नुहोस" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr " प्रपत्र को प्रकार चयन गर्नुहोस" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "नक्शामा चयन गर्नुहोस" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "चाहिए जति चयन गर्नुहोस" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "पठाउनुहोस " + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "प्रमाणीकरण पठाउनुहोस " + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "सर्वर पता" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "सर्वर को प्रकार" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "सेवा" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "सेवा उपयोगकर्ता " + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "सेवा उपयोगकर्ता आईडी" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "योगदान" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "साझा डेटा" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "योगदान गरियो " + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "सहभाजन" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "स्यानो नक्शा " + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "प्रदर्शन " + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "सबै प्रदर्शन गर्नुहोस " + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "संदेश हरु प्रदर्शन गर्नुहोस " + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "वेबसाइट" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "साईट ईमेल ठेगाना" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "साइट URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "स्यानो नक्शा" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "एस एम एस" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "माफ गर्नुहोस्म, तपाइको कुनै पनि बिल्ला छैन।" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "स्रोत" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "स्रोत नाम" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "छान्नुहोस " + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr " छान्नुहोस " + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr " यूआरएल स्रोत" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "स्पैम" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "एसएसएल समर्थन?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "द्वारा" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "उपाय" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "प्रतिवेदन बुझाउनुहोस्" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "एसएमएस को माध्यम द्वारा पठाउनुहोस " + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "आफ्नो एस एम एस पठाउनुहोस " + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "तपाई को फ़ोन मा" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "सफलता !" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "सफलतापूर्वक आयातित" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "उपनाम" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "सर्वेक्षण" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "प्रणाली" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "लम्बेा मानचित्र" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "टिसिपि पाेर्ट" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "थीम्स" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "यो " + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "आज" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "यो महिना " + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "यो सप्ताह " + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "यो वर्ष" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "यो तपाइको प्रोफाइल हो " + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "समय" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "शीर्षक" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "आज" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "प्रतीक" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "संपूर्ण प्रतिवेदनहरु" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "अनुवादित" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "अनुवादित विवरण" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "अनुवादित शीर्षक" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "अनुवादित" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "अनुवाद " + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "अनुवाद सुरक्षित गरिएको छ" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "विश्वस्त" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "प्रकार" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "ट्विटर" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "ईमेल पठाउनु असमर्थ." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "नपढेकाे" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "असत्यापित" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "अद्यतन फ़ीड" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "अपलोड" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "वेब" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML अपलोड गाइड" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV अपलोड गाइड " + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "अपलोड गर्न को लागी फ़ाइल" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "प्रतिवेदनहरु अपलोड गर्नुहोस " + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "उप्लोद सिद्यो" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "यूआरएल" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "उपयोगकर्ता" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "प्रयोक्ता नाम" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi व्यवस्थापक" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "सत्यापन " + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "सत्यापित" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "सत्यापित प्रतिवेदनहरु" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "सत्यापित" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "प्रतिवेदन सत्यापित गर्नुहोस " + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "संस्करण" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "माध्यम" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "विडियो" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "हेर्नुहोस " + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "दृष्टिकोण" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "सबै हेर्नुहोस " + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "सबै फ़ीड हेर्नुहोस " + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "सबै रिपोर्ट हेर्नुहोस " + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "विषय हेर्नुहोस " + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "अधिक हेर्नुहोस" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "सार्वजनिक प्रोफ़ाइल हेर्नुहोस" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "प्रतिवेदनहरु हेर्नुहोस" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "प्रतिवेदनहरु हेर्नुहोस" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "विडियो हेर्नुहोस " + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "दर्शनीय" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "अनुमोदन को लगी प्रतीक्षा मा " + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "सत्यापन को लागी प्रतीक्षा मा " + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "व्यापक नक्शा" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "प्रपत्र" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "वेब" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "भार" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "साप्ताहिक" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "हाे" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "हिजाे" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "तपाइको फाइल" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "ठुलो पार्नुहोस् " + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "सानो पार्नुहोस् " diff --git a/application/i18n/po/po-ne_NP/upgrade.po b/application/i18n/po/po-ne_NP/upgrade.po new file mode 100644 index 0000000000..af5d0ddfa1 --- /dev/null +++ b/application/i18n/po/po-ne_NP/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Nirab Pudasaini , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 05:27+0000\n" +"Last-Translator: Nirab Pudasaini \n" +"Language-Team: Nepali (Nepal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ne_NP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne_NP\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "गलत डाटा, होइन को लागि 0 र हो को लागि 1 राख्नुहोस" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-nl_NL/alerts.po b/application/i18n/po/po-nl_NL/alerts.po new file mode 100644 index 0000000000..d2b755f3a5 --- /dev/null +++ b/application/i18n/po/po-nl_NL/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Het e-mail adres wordt niet geaccepteerd, controleer het e-mail adres" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Het e-mail adres is al geconfigureerd om notificaties te ontvangen voor deze locatie" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Het e-mail adres dient uit tenminste 4 en maximaal 64 tekens te bestaan" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Je hebt aangegeven e-mail te willen ontvangen, geef een geldig e-mail adres op" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Deze opstelling bestrijkt maar één land. Zorg dat de plaats van de waarschuwing in het land %s ligt." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Selecteer een locatie op de kaart" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Selecteer een locatie op de kaart" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Selecteer een locatie op de kaart" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Selecteer een locatie op de kaart" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Het aantal opgegeven cijfers voor het mobiele nummer is ongeldig" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Het mobiele nummer is al geconfigureerd om notificaties te ontvangen voor deze locatie" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Het opgegeven mobiele nummer lijkt ongeldig. Gebruik alleen cijfers met landcode." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Geef een mobiel nummer en/of een e-mail adres op" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Je hebt aangegeven mobiele notificaties te willen ontvangen, geef een geldig mobiel nummer op" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Geef een zoekstraal aan op de kaart" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Geef een zoekstraal aan op de kaart" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Je hebt geen ontvanger voor waarschuwingen ingesteld." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Je bent ingeschreven voor waarschuwingen met de volgende categoriën" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Deze code is al eerder geverifieerd" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "De verificatiecode kon niet worden gevonden.Controleer of de gebruikte URL correct is" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " De code is geverifieerd. Je ontvangt nu notificaties wanneer er berichten zijn." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Om je notificaties verzoek te bevestigen ga je naar " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Ga naar de notificaties pagina om meer notificaties te maken" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Je e-mail notificaties verzoek is aangemaakt. Een verificatie bericht is verzonden naar " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Vul de per e-mail ontvangen verificatiecode in: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Je e-mail notificaties verzoek is niet opgeslagen!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Je e-mail notificaties verzoek is opgeslagen!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Het systeem is niet instaat om je bevestiging te verwerken!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Je mobiele notificaties verzoek is aangemaakt. Een verificatie bericht is verzonden naar " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Vul de per SMS ontvangen verificatiecode in: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Je mobiele notificaties verzoek is niet opgeslagen!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Je mobiele notificaties verzoek is opgeslagen" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "De installatie is niet correct ingesteld om notificaties te verwerken. Neem contact op met de beheerder." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Je ontvangt deze e-mail omdat je hebt aangegeven notificaties te willen ontvangen. Indien je in de toekomst geen notificaties meer wilt ontvangen, ga dan naar " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Je zult niet langer notificaties ontvangen van " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Het systeem kan je niet uitschrijven voor notificaties. Controleer of je de juiste URL hebt opgegeven." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "notificaties - verificatie" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Je zult geen notificaties ontvangen tot je verzoek bevestigd is." diff --git a/application/i18n/po/po-nl_NL/auth.po b/application/i18n/po/po-nl_NL/auth.po new file mode 100644 index 0000000000..ffc24480b7 --- /dev/null +++ b/application/i18n/po/po-nl_NL/auth.po @@ -0,0 +1,255 @@ +# +# Translators: +# Gideon van Melle , 2013 +# Andrea_Pio , 2012 +# Milo van der Linden , 2013 +# Milo van der Linden , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "het ingevulde e-mailadres is ongeldig." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Er bestaat al een gebruiker met het opgegeven e-mail adres" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Het e-mail adres dient uit tenminste 4 en maximaal 64 tekens te bestaan" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Een geldig e-mail adres is verplicht." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Een volledige naam moet tenminste 3 en niet meer dan 100 tekens bevatten." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Volledige naam is verplicht." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "De gebruikersnaam bevat ongeldige tekens" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Het paswoordveld moet minstens 8 tekens lang zijn." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Gelieve na te kijken of je het juiste e-mailadres en paswoord hebt ingevuld." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Gelieve hetzelfde paswoord in te vullen in beide paswoordvelden." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Het paswoordveld is verplicht." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Het huidig paswoord dat je invoerde voor je account is onjuist. Gelieve nog een keer te proberen." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Het paswoordveld moet minstens 8 tekens lang zijn." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Gelieve na te kijken of je het juiste e-mailadres en paswoord hebt ingevuld." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Gelieve hetzelfde paswoord in te vullen in beide paswoordvelden." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Het paswoordveld is verplicht." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Er is een fout opgetreden bij de poging om je in te loggen." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Een wachtwoord moet tenminste 5 en maximaal 16 tekens bevatten." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Controleer het wachtwoord." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Herhaal het wachtwoord." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Wachtwoord is verplicht." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Letter, cijfers en de tekens #(hekje), @(apestaartje), _(underscore) of -(liggend streepje) mogen worden gebruikt voor het wachtwoord. Andere tekens zijn niet toegestaan" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "De wachtwoord bevestiging moet hetzelfde zijn als het wachtwoord." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Er is geen geldig e-mail adres ingevuld" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Het e-mail adres is niet bekend" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "E-mail is verplicht." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Alleen een superbeheerder mag een superbeheerder wijzigen of een gebruiker promoveren tot beheerder." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Ongeldige rol." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Een rol moet tenminste 5 en maximaal 30 tekens bevatten." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Er dient tenminste een rol te worden gedefinieerd." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Selecteer ADMIN of USER als rol." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Het token voor vergeten wachtwoord is ongeldig" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Een vergeten wachtwoord token is verplicht" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "De ADMIN rol kan niet worden gewijzigd." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Het veld 'Openbaar profiel URL' mag alleen cijfers en letter bevatten." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "De opgegeven gebruikersnaam is al in gebruik." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Een gebruikersnaam moet tenminste 2 en maxiimaal 16 tekens bevatten" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Controleer of de gebruikersnaam juist is." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Gebruikersnaam is verplicht" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "De SUPER ADMIN rol kan niet worden gewijzigd." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Mogelijke CSRF-aanval. Wou je echt een gebruiker aanmaken/bewerken?" diff --git a/application/i18n/po/po-nl_NL/bug.po b/application/i18n/po/po-nl_NL/bug.po new file mode 100644 index 0000000000..bbf64da2d3 --- /dev/null +++ b/application/i18n/po/po-nl_NL/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Geef een geldige veiligheidscode op" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Geef een veiligheidscode op" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Geef een geldig e-mail adres op" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Een e-mail adres dient tenminste 4 en maximaal 64 tekens te bevatten" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Een e-mail adres is verplicht wanneer het vinkje is aangekruisd." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "De foutmelding is verplicht." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Een onderwerp moet tenminste 3 tekens bevatten." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Onderwerp is verplicht." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Een naam moet tenminste 3 tekens bevatten." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Naam is verplicht." diff --git a/application/i18n/po/po-nl_NL/category.po b/application/i18n/po/po-nl_NL/category.po new file mode 100644 index 0000000000..dcbcaa6d5f --- /dev/null +++ b/application/i18n/po/po-nl_NL/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Vul een kleurcode in van 6 tekens, zonder # er voor." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "kleur is verplicht." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Omschrijving is verplicht." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Afbeeldingen mogen niet groter zijn dan 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "De afbeelding wordt niet geaccepteerd. Selecteer een afbeelding van het type .JPG, .PNG of .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Het bestand met de afbeelding is ongeldig" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Titel moet tenminste 3 en maximaal 80 tekens bevatten" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Titel is verplicht." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Je kan van een categorie met subcategoriën geen subcategorie maken." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "De hoofdcategorie bestaat niet." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "De hoofdcategorie moet een nummer zijn." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "De oudercategorie mag geen speciale categorie zijn." + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "De hoofdcategorie is verplicht." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Categorie en hoofdcategorie kunnen niet hetzelde zijn." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Speciale categoriën kunnen geen subcategoriën krijgen." diff --git a/application/i18n/po/po-nl_NL/comments.po b/application/i18n/po/po-nl_NL/comments.po new file mode 100644 index 0000000000..38dd7881de --- /dev/null +++ b/application/i18n/po/po-nl_NL/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Geef een geldige veiligheidscode" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Geef een veiligheidscode" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Je hebt een verkeerde beveiliingscode ingegeven." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Naam moet tenminste 3 tekens bevatten." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Naam is verplicht." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Commentaar is verplicht." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Het e-mail adres is ongeldig" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Het e-mail adres moet tenminste 4 en maximaal 64 tekens bevatten." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Het e-mail adres is verplicht wanneer het vinkje is aangekruisd." diff --git a/application/i18n/po/po-nl_NL/contact.po b/application/i18n/po/po-nl_NL/contact.po new file mode 100644 index 0000000000..acad2b4ce6 --- /dev/null +++ b/application/i18n/po/po-nl_NL/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Geef een geldige veiligheidscode" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Gelieve een geldige beveiligingscode in te geven." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Geef de veiligheidscode" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Het e-mail adres is ongeldig" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Het e-mail adres moet tenminste 4 en maximaal 64 tekens bevatten." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Het e-mail adres is verplicht wanneer het vinkje is aangekruisd." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Berichttekst is verplicht." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Naam moet tenminste 3 tekens bevatten." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Naam is verplicht." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Onderwerp moet tenminste 3 tekens bevatten." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Onderwerp is verplicht." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Er was een fout bij het verzenden van je bericht." diff --git a/application/i18n/po/po-nl_NL/core.po b/application/i18n/po/po-nl_NL/core.po new file mode 100644 index 0000000000..d540d5da80 --- /dev/null +++ b/application/i18n/po/po-nl_NL/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Gideon van Melle , 2013 +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-26 08:11+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "configuratie bestand" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controller" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "stuurprogramma" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "De %s driver voor de %s library moet de %s interface implementeren" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "De %s driver voor de %s library kon niet worden gevonden" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Ga naar de home page of probeer opnieuw." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Verzoek kan niet worden verwerkt." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "helper" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Het gevraagde bestandstype, .%s, is niet toegestaan in het view configuratie bestand" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Ongeldige methode %s aangeroepen door %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "De %s eigenschap bestaat niet in de %s klasse." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "bibliotheek" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Logbestanden kunnen niet worden geschreven naar map: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Er kan geen controller worden bepaald op verzoek %s te verwerken" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Stel een standaard route in in config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "De gevraagde pagina, %s, kan niet worden gevonden." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Meld dit probleem" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "De gevraagde %s, %s, kan niet worden gevonden" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Geladen in {execution_time} seconden, gebruikmakend van {memory_usage} RAM geheugen. Systeemversie v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Er kan maar een instantie van het systeem actief zijn per paginaverzoek" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Ongecontroleerde fout %s: %s in bestand %s op regel %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "weergave" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "De bestandsnaam voor de weergave moet ingesteld worden vooraleer een render te beginnen." diff --git a/application/i18n/po/po-nl_NL/database.po b/application/i18n/po/po-nl_NL/database.po new file mode 100644 index 0000000000..b477e1cb19 --- /dev/null +++ b/application/i18n/po/po-nl_NL/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Database fout: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabel \"%s\" is niet gevonden in de database. Controleer of de database versie en de versie van het systeem in overeenstemming zijn" diff --git a/application/i18n/po/po-nl_NL/datetime.po b/application/i18n/po/po-nl_NL/datetime.po new file mode 100644 index 0000000000..37f49484e9 --- /dev/null +++ b/application/i18n/po/po-nl_NL/datetime.po @@ -0,0 +1,218 @@ +# +# Translators: +# Gideon van Melle , 2013 +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:13+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Vr" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Vrijdag" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Ma" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Maandag" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Za" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Zaterdag" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Zo" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Zondag" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Do" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Donderdag" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Di" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Dinsdag" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Wo" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Woensdag" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Januari" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februari" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Maa" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Maart" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mei" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mei" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juni" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juli" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Augustus" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Oktober" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "December" diff --git a/application/i18n/po/po-nl_NL/feeds.po b/application/i18n/po/po-nl_NL/feeds.po new file mode 100644 index 0000000000..2ca24ed768 --- /dev/null +++ b/application/i18n/po/po-nl_NL/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Datum" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Een feed naam dient tenminste 3 en maximaal 70 tekens te bevatten." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Geef de feed een naam." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Geef de feed URL." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Geef een geldige URL op, b.v. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Bron" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Titel" diff --git a/application/i18n/po/po-nl_NL/footer.po b/application/i18n/po/po-nl_NL/footer.po new file mode 100644 index 0000000000..5f372717b0 --- /dev/null +++ b/application/i18n/po/po-nl_NL/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl is niet geinstalleerd op dit systeem" diff --git a/application/i18n/po/po-nl_NL/form.po b/application/i18n/po/po-nl_NL/form.po new file mode 100644 index 0000000000..9d93895f9b --- /dev/null +++ b/application/i18n/po/po-nl_NL/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Andrea_Pio , 2012 +# Milo van der Linden , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "De ingegeven standaardwaarde voor dit veld is ongeldig." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "De veldnaam moet tenminste 3 en maximaal 100 tekens bevatten." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Geef een waarde tussen de 0 en 50 voor de veldhoogte" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "De datum is ongeldig" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Selecteer Ja of Nee voor de datum" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "De veldnaam moet tenminste 3 en maximaal 100 tekens bevatten." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Veldnaam is verplicht." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Er bestaat al een veld met deze naam op dit formulier. Kies een andere naam." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Geef aan of het veld verplicht is" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Selecteer Ja of Nee voor verplicht" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Selecteer een geldig veldtype." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Selecteer een veldtype." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Geef een waarde tussen 0 en 300 voor de veldbreedte" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Omschrijving is verplicht." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Het standaardformulier kan niet worden verwijderd." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Selecteer het formulier waar aan dit veld moet worden toegevoegd." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Selecteer het formulier voor dit veld." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "De formuliernaam moet tenminste 3 en maximaal 100 tekens bevatten." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Geef het formulier een naam." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Er bestaat al een formulier met deze titel. Kies een andere titel." diff --git a/application/i18n/po/po-nl_NL/imap.po b/application/i18n/po/po-nl_NL/imap.po new file mode 100644 index 0000000000..cd2f59efe3 --- /dev/null +++ b/application/i18n/po/po-nl_NL/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Er kan geen IMAP verbinding worden opgebouwd" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "De e-mail dienst wordt niet ondersteund" diff --git a/application/i18n/po/po-nl_NL/installer.po b/application/i18n/po/po-nl_NL/installer.po new file mode 100644 index 0000000000..f4ed32b467 --- /dev/null +++ b/application/i18n/po/po-nl_NL/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Gideon van Melle , 2013 +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:42+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Systeempad" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Database" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Database server" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Wanneer je Ushahidi uitvoert op je eigen computer, dan is dit waarschijnlijk \"localhost\". Wanneer je Ushahidi uitvoert op een web server, controleer dan de server naam en informatie van de provider" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Databasenaam" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "De naam van de database waarin de gegevens van Ushahidi worden opgeslagen" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Voor meer informatie kunt u dit artikel op de wiki raadplegen dat dieper ingaat op databases." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Standaard taal (Landinstelling)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Elke installatie van Ushahidi bevat een aantal ingebouwde talen. U kunt ook uw eigen vertaling toevoegen." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Uitschakelen" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Inschakelen" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Hieronder zie je een lijst van de fouten die we tegenkwamen." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "De plaats op uw server waar u Ushahidi bestanden heeft neergezet. We hebben dit automatisch gedetecteerd. Overtuig u ervan dat het correct is. Als het veld leeg is, hoeft u zich geen zorgen te maken. Het betekent dat ushahidi op het hoogste niveau in de mappenstructuur is geïnstalleerd. " + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Gereed" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Algemeen" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API sleutel" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "API sleutels voor Google Maps zijn hier aan te vragen" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Terug" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "Geavanceerde installatie" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Voltooi alle belangrijkste instellingen met dit 5-stappen proces. Dit omvat server, kaart, website naam en contact details." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "Standaard installatie" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Eenvoudig en snel. Alles wat u nodig heeft is de root map van uw website en de database informatie. Kies deze optie als u snel aan de slag wilt. U kunt altijd later de rest configureren." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Doorgaan" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Welkom bij het Ushahidi server installatie proces. Kies hieronder welk type installatie u wilt gebruiken." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Installatie gelukt" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail server" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Mail server adres" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Voorbeelden: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Paswoord voor de mailserver" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Het paswoord dat je gewoonlijk gebruikt om in te loggen op je e-mail" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Poort voor de mailserver" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Veel gebruikte poorten: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Type mailserver" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) of Post Office Protocol (POP). Wat is het verschil?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Gebruikersnaam voor de mailserver" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Als u Gmail, Hotmail, or Yahoo Mail gebruikt, vul dan een volledig e-mailadres in als gebruikersnaam." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Kaart" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Kaartaanbieder" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi werkt met elk van de volgende drie mapping providers even goed: Google, Bing of Open Street Map. Kies er een die de meeste details heeft in uw gebied." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Andere stappen..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Wachtwoord" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Het paswoord voor je database" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Vorige" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Geleive je Apache server te herstarten." + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "SSL in- of uitschakelen" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Sommige mail servers geven u de optie SSL te gebruiken voor het maken van een verbinding. SSL is aanbevolen, aangezien het een extra beschermingslaag geeft." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "SMS server instellen" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "E-mail adres van deze website" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Website alert e-mailadres" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Wanneer uw website bezoekers zich registreren voor alert e-mails zullen ze e-mailberichten ontvangen van dit adres. Dit e-mailadres hoeft niet hetzelfde te zijn als het Website E-mailadres." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Algemene website communicatie zal geleid worden door dit adres" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Website Naam" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Naam van de website" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Website tagline" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Uw tagline" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Onderstaande bestanden en mappen moeten door uw webserver beschrijfbaar zijn." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Hier staan de instructies voor het veranderen van de bestandsrechten:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Voor u begint moet u zorgen dat de volgende bestanden en mappen door je webserver beschrijfbaar zijn. Dit betreft wijzigingen van de bestandsrechten." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Geleive de volgende gegevens bij de hand te hebben voor het installatieproces:" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Tabel Prefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normaal gezien zult u de tabel prefix niet veranderen. Als u echter meerder Ushahidi installaties van één database wilt draaien, kunt u dat doen door hier de prefix te veranderen." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titel" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Om aan te melden, ga naar" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Verslaggegevens uploaden" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Gebruikersnaam" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Database gebruikersnaam" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "en gebruik de volgende inloggegevens" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Website bekijken" diff --git a/application/i18n/po/po-nl_NL/layer.po b/application/i18n/po/po-nl_NL/layer.po new file mode 100644 index 0000000000..11065641e7 --- /dev/null +++ b/application/i18n/po/po-nl_NL/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# Gideon van Melle , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:46+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Het Kleurveld moet 6 tekens lang zijn." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Het kleurveld is verplicht." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "The file field does not appear to contain a valid file. The only accepted formats are .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Het bestandsveld lijkt geen geldige waarde te bevatten." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Het naamveld moet tenminste 3 en ten hoogste 80 tekens lang zijn." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Het naamveld is verplicht." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Either a KML Url or File is required" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "You can't have both a KML file and a url" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Please enter a valid URL. Eg. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-nl_NL/libraries.po b/application/i18n/po/po-nl_NL/libraries.po new file mode 100644 index 0000000000..b81f00b800 --- /dev/null +++ b/application/i18n/po/po-nl_NL/libraries.po @@ -0,0 +1,119 @@ +# +# Translators: +# Gideon van Melle , 2013 +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:49+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Could not connect to akismet server" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "The response from Akismet could not be retrieved" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "De API-bibliotheek: %s voor de %s klasse is niet gevonden. Gelieve je API taakrouteringstabel na te kijken." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Your Akismet API key is not valid" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current lenght=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Specificeer een bestemmingsadres (NAAR)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Specificeer een oorsprongsadres (VAN)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current lenght=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Niet ondersteunde verzendmethode!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "De API-bibliotheek %s is ongeldig. Alle API-bibliotheken moeten subklasses zijn van %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s could not be deleted" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Fout bij het uitpakken: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Downloading the latest ushahidi failed. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s could not be copied" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s could not be deleted" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi upgrade script" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "The downloaded ushahidi zip file %s, could not be written" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s is niet beschikbaar in de RiverID klasse." diff --git a/application/i18n/po/po-nl_NL/maintenance.po b/application/i18n/po/po-nl_NL/maintenance.po new file mode 100644 index 0000000000..871d6c7e9b --- /dev/null +++ b/application/i18n/po/po-nl_NL/maintenance.po @@ -0,0 +1,25 @@ +# +# Translators: +# Andrea_Pio , 2012 +# PvdHeuvel_ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-29 14:21+0000\n" +"Last-Translator: PvdHeuvel_ \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Sorry, onze site is momenteel niet beschikbaar i.v.m. werkzaamheden. Probeer het over een paar minuten opnieuw." diff --git a/application/i18n/po/po-nl_NL/message.po b/application/i18n/po/po-nl_NL/message.po new file mode 100644 index 0000000000..bc2c7fdc4f --- /dev/null +++ b/application/i18n/po/po-nl_NL/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Gideon van Melle , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:52+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Het e-mailveld dient uit tenminste 4 en tenhoogste 64 tekens te bestaan." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Het e-mailveld is verplicht wanneer het vinkje is aangekruisd." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Het commentaarveld is verplicht." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Het naamveld dient tenminste 3 tekens lang te zijn." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Het naamveld is verplicht." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Het telefoonveld is niet geldig." diff --git a/application/i18n/po/po-nl_NL/mhi.po b/application/i18n/po/po-nl_NL/mhi.po new file mode 100644 index 0000000000..4d409a9c2f --- /dev/null +++ b/application/i18n/po/po-nl_NL/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Gideon van Melle , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:54+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Geef een geldige veiligheidscode op." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Vul de veiligheidscode in." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Please provide a valid email address" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Het berichtenveld is verplicht." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Het onderwerpveld moet tenminste 3 tekens lang zijn." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Het onderwerpveld is verplicht." diff --git a/application/i18n/po/po-nl_NL/notifications.po b/application/i18n/po/po-nl_NL/notifications.po new file mode 100644 index 0000000000..0f95116d86 --- /dev/null +++ b/application/i18n/po/po-nl_NL/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# Gideon van Melle , 2013 +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:57+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "This message was sent from your website" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Administrator Login" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Een nieuwe reactie is ingediend bij uw website in antwoord op:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nieuwe reactie" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "een nieuw e-mailbericht is ingediend bij uw website." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nieuw e-mailbericht" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "een nieuw rapport is ingediend bij uw website." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nieuw rapport" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Een nieuw tekstbericht is ingediend bij uw website." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nieuw tekstbericht" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Je hebt een nieuw alarm ontvangen" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nieuw alarm!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Je hebt een nieuw privébericht ontvangen" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nieuw privébericht" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Om te antwoorden ga naar:" diff --git a/application/i18n/po/po-nl_NL/page.po b/application/i18n/po/po-nl_NL/page.po new file mode 100644 index 0000000000..45d4734f0f --- /dev/null +++ b/application/i18n/po/po-nl_NL/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Gelieve een paginatitel in te geven." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "De paginatitel moet minstens 3 en hoogstens 150 letters lang zijn." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Gelieve een tabnaam in te geven" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Gelieve een paginabeschrijving in te geven." diff --git a/application/i18n/po/po-nl_NL/permissions.po b/application/i18n/po/po-nl_NL/permissions.po new file mode 100644 index 0000000000..70246f7b6b --- /dev/null +++ b/application/i18n/po/po-nl_NL/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Andrea_Pio , 2012 +# PvdHeuvel_ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Verslagen bekijken" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Verslagen aanmaken/bewerken/verwijderen" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Goedkeuren rapporten" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Rapporten controleren" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Beheren verslag commentaren" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Verslagen downloaden" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Verslagen uploaden" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Berichten beheren" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Berichten beheren verslaggevers" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Statistieken bekijken" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Instellingen wijzigen" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Beheerpaneel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gebruikers beheren" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Beheer rollen" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Kan inchecken" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Beheer checkins" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Toegang Admin UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Toegang leden UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-nl_NL/private_message.po b/application/i18n/po/po-nl_NL/private_message.po new file mode 100644 index 0000000000..71593e68e4 --- /dev/null +++ b/application/i18n/po/po-nl_NL/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Milo van der Linden , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "De hoofdcategorie moet een nummer zijn." + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Er dient een geldige ontvanger te worden opgegeven" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "De opgegeven ontvanger bestaat niet" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Er dient een onderwerp te worden opgegeven" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Het onderwerp dient tussen de 3 en 150 tekens te bevatten" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Er dient een berichttekst te worden ingevoerd" diff --git a/application/i18n/po/po-nl_NL/report.po b/application/i18n/po/po-nl_NL/report.po new file mode 100644 index 0000000000..0d5b24d3cd --- /dev/null +++ b/application/i18n/po/po-nl_NL/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Andrea_Pio , 2012 +# Milo van der Linden , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "fout!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Deze opstelling bestrijkt maar één land. Gelieve te zorgen dat de plaats van verslag binnen het land %s ligt." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Gelieve \"Verslagen in afwachting van goedkeuring\" of \"Goedgekeurde verslagen\" te kiezen of beide." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Gelieve \"Verslagen in afwachting van goedkeuring\" of \"Goedgekeurde verslagen\" te kiezen of beide." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Gelieve \"Verslagen in afwachting van goedkeuring\" of \"Goedgekeurde verslagen\" te kiezen of beide." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Gelieve \"Verslagen in afwachting van nazicht\" of \"Nageziene verslagen\" te kiezen of beide." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Gelieve \"Verslagen in afwachting van nazicht\" of \"Nageziene verslagen\" te kiezen of beide." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Gelieve \"Verslagen in afwachting van nazicht\" of \"Nageziene verslagen\" te kiezen of beide." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Selecteer een download formaat. Mogelijke formaten zijn CSV of XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Selecteer een formaat voor het downloaden van rapporten" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "The FROM date field does not appear to contain a valid date?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Geef een geldige begindatum op. De begindatum mag niet later zijn dan de huidige datum." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "The am/pm field does not appear to contain a valid value?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "The category field does not appear to contain a valid category?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "The category field is required." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "The description field is required." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "The hour field does not appear to contain a valid hour?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "The minute field does not appear to contain a valid value?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "The news source links field does not appear to contain a valid URL?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Please ensure that photo uploads sizes are limited to 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "The Upload Photos field does not appear to contain a valid file" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The title field must be at least 3 and no more 200 characters long." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "The title field is required." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Mogelijke CSRF aanval. Wou je echt een verslag aanmaken/bewerken?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "The video links field does not appear to contain a valid URL?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "This report already has a translation for this language" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "The Original Report and the Translation have the same locale (language)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The location name field must be at least 3 and no more 200 characters long." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "The location name field is required." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "The email field does not appear to contain a valid email address?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "The last name field must be at least 3 and no more 100 characters long." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "The TO date field does not appear to contain a valid date?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-nl_NL/reporters.po b/application/i18n/po/po-nl_NL/reporters.po new file mode 100644 index 0000000000..8411f06a7e --- /dev/null +++ b/application/i18n/po/po-nl_NL/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude?" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level?" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "The Reporter Level field does not appear to contain a valid Level?" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude?" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-nl_NL/reports.po b/application/i18n/po/po-nl_NL/reports.po new file mode 100644 index 0000000000..e4109b88cb --- /dev/null +++ b/application/i18n/po/po-nl_NL/reports.po @@ -0,0 +1,54 @@ +# +# Translators: +# Gideon van Melle , 2013 +# Andrea_Pio , 2012 +# Milo van der Linden , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 08:07+0000\n" +"Last-Translator: Gideon van Melle \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Controleer of er een keuze is aangevinkt" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Controleer of er een keuze is aangevinkt" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Rapporten dienen aan een categorie te zijn toegekend alvorens ze kunnen worden goedgekeurd" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Onvoldoende rechten om de handeling uit te voeren" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Selecteer een bestand om te uploaden" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Het formaat voor het te uploaden bestand moet .csv of .xml zijn" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Er is geen geldig bestand opgegeven in het upload veld" diff --git a/application/i18n/po/po-nl_NL/roles.po b/application/i18n/po/po-nl_NL/roles.po new file mode 100644 index 0000000000..848459760a --- /dev/null +++ b/application/i18n/po/po-nl_NL/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Het veld Toegangsniveau moet een cijfer tussen 0 en 100 zijn." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Het veld Toegangsniveau moet een cijfer tussen 0 en 100 zijn." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Het veld Toelatingen moet een cijfer tussen 0 en 100 zijn." diff --git a/application/i18n/po/po-nl_NL/settings.po b/application/i18n/po/po-nl_NL/settings.po new file mode 100644 index 0000000000..ea8246355a --- /dev/null +++ b/application/i18n/po/po-nl_NL/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Andrea_Pio , 2012 +# Rodolfo_Jadon, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "The allow comments field does not appear to contain a valid value?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "The allow reports field does not appear to contain a valid value?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs. Without \"index.php\" in the URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "The color feed field does not appear to contain a valid value?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Standaard kaartweergave" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Standaard zoomniveau" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Steden ophalen van Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "HTTPS inschakelen" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoomniveau" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Tijdlijn van de kaart" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Kaartinstellingen" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Gelieve een standaardland te kiezen" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Sitevlag" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Auteursrechtenverklaring van de site" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Standaardpictogram voor alle categorieën" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Vlagafbeelding verwijderen" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Standaardpictogram verwijderen" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Contactpagina weergeven" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Sitetaal" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Gebruikers handmatig goedkeuring" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Sitebericht" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Sitenaam" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Siteslogan" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Tijdzone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Site-instellingen" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter zoektermen" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Het sitenaamveld is verplicht." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Het sloganveld is verplicht." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Kredietbalans laden" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Opties voor Twitterinstelling" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Testinstellingen" diff --git a/application/i18n/po/po-nl_NL/sharing.po b/application/i18n/po/po-nl_NL/sharing.po new file mode 100644 index 0000000000..828111f20a --- /dev/null +++ b/application/i18n/po/po-nl_NL/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Andrea_Pio , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "The Sharing name does not appear to be valid?" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "The site url already exists" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "The site url does not appear to be valid?" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "The site url is required." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "The site url field does not appear to contain a valid URL?" diff --git a/application/i18n/po/po-nl_NL/stats.po b/application/i18n/po/po-nl_NL/stats.po new file mode 100644 index 0000000000..a4e03d74f2 --- /dev/null +++ b/application/i18n/po/po-nl_NL/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Nienke Hulzebos, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-29 19:05+0000\n" +"Last-Translator: Nienke Hulzebos\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Goedgekeurd" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorieën" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Kies een datumbereik." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Landen" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Land" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Hello, this is the statistics section. General description going here soon. For now, browse around using the sub category links above" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Fout" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Woordenlijst" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Berichten" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Berichtcategorieën" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Berichtstatistiek" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Berichtstatus" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 maand" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 maanden" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 maanden" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Alle" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Unieke bezoekers" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "The number of individuals coming to your deployment; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Onbevestigd" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Bevestigd" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview" diff --git a/application/i18n/po/po-nl_NL/tooltips.po b/application/i18n/po/po-nl_NL/tooltips.po new file mode 100644 index 0000000000..a61de7a221 --- /dev/null +++ b/application/i18n/po/po-nl_NL/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Andrea_Pio , 2012 +# Rodolfo_Jadon, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Onderwerp van het bericht dat verzonden zal worden." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Dit is de standaardtitel om aan het verslag toe te voegen." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Scheid elke waarde met een komma, bvb. waarde1, waarde2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Onderwerp van privébericht" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Privébericht" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Je e-mailadres" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Your full name" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Selecting YES lets you get alerts via email when new reports or comments are posted on your website" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Your password. Leave this field blank if you wish to keep your current password" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Dit is het adres waar je publiek profiel te vinden is." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Your username cannot be changed" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Dit is het e-mailadres dat gebruikt zal worden om e-mailwaarschuwingen te sturen." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Set the map to cover a specific location " + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Set one color code for all the categories on the site" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Eén pictogram instellen voor alle categorieën van de site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "This is the country the site is being deployed" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "This is the hub for incoming messages" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "This synchronizes the messages in the hub with the Ushahidi platform" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Phone numbers through which the text messages are received" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Tracks visitors of your site. Get detailed visitor statistics" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "This defines which map is to be used on the site" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "This is the password for the email address that receives reports" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "This is required to accept incoming connections from the email address" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "This is required to enhance a secure connection" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "This is required to retrieve e-mails from the host server" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "This is the email address that receives reports" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Leg in een paar woorden uit waar de site over gaat." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-nl_NL/ui_admin.po b/application/i18n/po/po-nl_NL/ui_admin.po new file mode 100644 index 0000000000..d79556d90c --- /dev/null +++ b/application/i18n/po/po-nl_NL/ui_admin.po @@ -0,0 +1,1659 @@ +# +# Translators: +# Andrea_Pio , 2012 +# Rodolfo_Jadon, 2014 +# PvdHeuvel_ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-03-01 14:39+0000\n" +"Last-Translator: Rodolfo_Jadon\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Toegang geweigerd. Ofwel uw gegevens zijn niet geldig of uw aanvraag is afgewezen." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Toegang geweigerd. Uw aanvraag is ontvangen, maar afgewezen vanwege toegangslimieten zoals tijd. Probeer het later nog eens. " + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Toegangsniveau" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Acties" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Toevoegen aan categorie" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "toegevoegd" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "toegevoegd/bewerkt" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Addons" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Ontvang notificaties" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alarm ontvangen" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Alles" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "VM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anoniem" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Iedereen" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Overal" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API verbannen" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Logs" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API instellingen" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "UNBAN" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "UNBAN allemaal" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "toegestaan" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "automatisch toestaan" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Handmatig toestaan" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Gearchiveerd" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Ben je zeker dat je wil" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Ben je zeker dat je dit wil verwijderen?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Ben je zeker dat je deze foto wil verwijderen?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Weet u zeker dat u wilt schakelen tussen de formulieren ?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Toewijzen" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Toewijzingen" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Auteur" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Auteur e-mail" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Terug" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "IP verbannen" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Tussen de tijden" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "blokken" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "kern" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Annuleer" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorieën " + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Foutmelding tijdens het vertonen van kaart" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Please make sure your message is valid" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Please make sure the number is valid" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Controleer uw SMS instellingen a.u.b!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Checkin Details" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkins" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Steden geladen" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "code" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Code versie niet synchroon." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Kleur" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Commentaar" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Uw alarm bevestigingscode is:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "De gebruiker is" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Aantal" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Land niet gevonden" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "aangemaakt/bewerkt" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Maak een verslag" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritische upgrade" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Momenteel actief" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Momenteel niet actief" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "U heeft onvoldoende bevoegdheid om de volgende velden te bewerken." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Dagelijks" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Overzicht" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "database" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Datum & Tijd" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Datum toegevoegd" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Datum aangepast" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dagen van de week" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB versie is niet synchroon." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "verwijderd" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Verwijder" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Alle rapporten verwijderen" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Verwijder badge" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Omschrijving" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Verdeler start" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Verdeler einde" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Download verslagen" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Dropdown keuzes" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "BEWERKT" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Bewerkt door" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Muteren" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Bewerk Logboek" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "e-mail" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Hele gemeenschap" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Er is een fout bij het verbinden met de geocodeerservice" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Fout" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Error, incident kon niet gepost worden" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Elke zes uur" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Elke twaalf uur" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimenteel" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Veel gestelde vragen" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "terugkoppeling" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Keuzelijst" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Standaardwaarde" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Datatype" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Opmaak" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numeriek" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Vrije tekst" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Hoogte (in rijen)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Verborgen veld" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maximale lengte karakter" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Veld naam" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Afwisselen" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Nee" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Ja, standaard gesloten" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Ja, standaard open" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Kan geüploade bestand niet vinden" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Kan het bestand niet openen om te lezen" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Dat formulier bestaat niet!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Tekstveld (Vrije tekst)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Datumveld" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "keuzerondjes veld" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Checkboxes veld" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "dropdown veld" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Van" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Van" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonames onderbrekingsfout" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Help" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Acties" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "toevoegen/bewerken" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "e-mail" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Gebruikersbeheer" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rol" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Gebruiker" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "help" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "ieder uur" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Incident feed voor" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "voorbeeld" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "voorbeelden" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Voorbeeld informatie" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Ongeldige parameter" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP adres" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Is dit een datum veld?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Wie kan antwoorden zien" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Wie kan antwoorden geven" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Sleutelwoord" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Sleutelwoorden" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "e-mail adres:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Volledige naam:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Wachtwoord:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rol:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Gebruikersnaam:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Kaartlagen" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Afmelden" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logs" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Beheer" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Rollen & rechtenbeheer" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Gebruikersoverzicht" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Gebruikers toevoegen/muteren" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Markeer als" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "markeer als geen spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "gemarkeerd als spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "heeft geen overeenkomstige documenten opgeleverd" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Bericht" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Postvak" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica-berichten" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Tweets" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Uw bericht is verzonden!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuut" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minuten" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Ontbrekende parameter" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "Aangepast" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Tijdzone-instelling wijzigen" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "naar beneden" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "naar boven" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Mijn alarmeringen" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Mijn Checkins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Mijn profiel" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Mijn verslagen" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Uitgebrachte stemmen" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positief" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negatief" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Naam" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Maak nieuwe alarmering aan" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Nieuw bericht aanmaken" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nieuw wachtwoord" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Nee" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificatie" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Deze is niet hoofdletter gevoelig" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Niet gevonden" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Geen gegevens. Er zijn geen resultaten om weer te geven." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Geen fout" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Geen resultaten om te tonen!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "of" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's " + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "pagina" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "pagina's" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Pagina niet gevonden" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Gebruikte parameters" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Wachtwoord" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Wachtwoord opnieuw instellen" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Beste" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Wij hebben een verzoek voor het wijzigen van het wachtwoord ontvangen van" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Om uw wachtwoord te wijzigen, klik op de link hier beneden (of kopieer en plak deze link in uw browser)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Zoals u verzocht is uw wachtwoord nu gewijzigd. Uw nieuwe gegevens zijn" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi wachtwoord herstel" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefoon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Selecteer alstublieft" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PB" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Voorvertonen" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Bericht" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Privéberichten" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Privébericht verzonden" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Onderwerp" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Aan" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Publieke lijst" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "lezen" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevantie" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Verslag titel" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Verslag datum" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Verslaggever" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Verslaggever niveau" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Berichten" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Reputatie score" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Verplicht" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Antwoord" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultaten" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Intrekken" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Dit e-mailadres bestaat al bij CrowdmapID. De gebruiker dient zijn bestaande Crowdmap wachtwoord te gebruiken om in te loggen. " + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Instellingen opslaan" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Zoeken" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Zoek verslagen" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "zoekend voor" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "De encryptiesleutel is nog steeds ingesteld op de standaardwaarde. Dit is onveilig en moet veranderd worden. " + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Deze website wordt getoond over HTTP. Deze moet worden ingesteld op HTTPS voor extra beveiliging. " + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instructies zijn beschikbaar op de wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Selecteer een veldtype ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Selecteer een item" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Afzender" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Sturen naar" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Dit bericht werd verstuurd van je website om" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Servertijd" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Instellingen" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Pagina vertonen" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Resultaten tonen" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "vertoond " + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Speciale categorie" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Specifiek gebied" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistieken" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistiek" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Specifieke dagen" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Onderwerp" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Taak voltooid" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Tekstveld" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Naam" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Gebruikersbeheer" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "aan" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "aan" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Vertaal verslagen" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "niet goedgekeurd" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Onbekend" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Onbekende storing" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "ongelezen" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "U ontvangt geen alarmeringen meer van" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Klik hier om nu te upgraden" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Upgrade Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Upgrade Ushahidi Status" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Upload verslagen" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Gebruiker" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Gebruikers" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Gecontroleerd/Ongecontroleerd" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Bevestigd/Onbevestigd" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versie" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "is beschikbaar voor upgrade" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Video codering" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Privé berichten" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Website" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Toon verslag" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Welkom, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Ja" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Je zoekopdracht naar" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Weet je zeker dat je alle rapporten wil verwijderen?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Er zijn geen rapporten om te verwijderen." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Aantal aanmeldingen" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Laatste aanmelding" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-nl_NL/ui_main.po b/application/i18n/po/po-nl_NL/ui_main.po new file mode 100644 index 0000000000..64eebebaa2 --- /dev/null +++ b/application/i18n/po/po-nl_NL/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# Arthur , 2012 +# Andrea_Pio , 2012 +# Nienke Hulzebos, 2013 +# PvdHeuvel_ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Over" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Toegang" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Toegangslimieten" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Accountnaam" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Acties" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Deze actie kan niet ongedaan worden gemaakt. Weet je het zeker dat je verder wilt gaan?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activeren" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Actief" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Toevoegen" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Toegevoegd door" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Aanvullende gegevens" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Aanvullende rapporten" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Toevoegen/bewerken" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Veld toevoegen" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Taal toevoegen" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Nieuwe toevoegen" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Categorie toevoegen" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Vertaling toevoegen" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Beheer" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Notificaties ontvangen" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Waarschuw mij als er een rapport is ingevuld of rond:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Mijn notificatie opslaan" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "E-mailadres:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "E-mailadres invoeren" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Mobiel nummer inclusief landcode (b.v. 0031) invoeren" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Notificaties ontvangen" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Notificatie is" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobiele telefoon:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Of plaats een prikker op de kaart, je ontvangt een notificatie wanneer er berichten zijn in de door jou opgegeven straal. Gebruik de schuif om de gewenste straal op te geven." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Als je de plaats niet kunt vinden, klik dan op de kaart om je locatie te verbeteren." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (kopieer onderstaande hyperlink)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Selecteer een stad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Stap 1: Selecteer jouw stad of locatie:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Step 2: Selecteer hoe je notificaties wilt ontvangen:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Step 3 (Optional): Selecteer categorieën" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Bevestig een eerder notificatieverzoek" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Je notificatie is opgeslagen!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Alles" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Toegestaan" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Alle categorieën" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Altijd" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "en" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Goedkeuren" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Goedgekeurd" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Goedgekeurde rapporten" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Dit rapport goedkeuren" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Ongeveer" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archiveren" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Gearchiveerd" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Oplopend" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "op" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Auteur" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Automatisch controleren" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Gem. rapporten per dag" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Wachtend op goedkeuring" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Wachtend op verificatie" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Badge" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Badges" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Badgeafbeelding" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Of je kunt ook je eigen badgeafbeelding gebruiken." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Badgepakket" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Selecteer een badge" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Door profielen bladeren" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Annuleren" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorieën" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categorie" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Categoriefilter" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "De categorie is" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Categorienaam" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Datumbereik wijzigen" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Wachtwoord wijzigen" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Mijn afbeelding wijzigen" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Selecteer een" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Kies datapunten om te downloaden" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Of kies je eigen datumbereik" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Veldtype kiezen" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Wis URL's" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Leegmaken" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Kaart leegmaken" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Sluiten" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "clusters" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Kleur" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Opmerking" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Opmerkingen" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Opmerkingdetails" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Je instellingen zijn bewaard!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configureren" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Je e-mail is bevestigd! Log hieronder in." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "E-mailbevestiging mislukt! Je kunt hieronder een nieuwe e-mailbevestiging aanvragen." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contact" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Beveiligingscode" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Je e-mailadres" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Bericht" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Je bericht is verstuurd!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Je naam" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Je telefoonnummer" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Bericht sturen" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Onderwerp van bericht" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Aanmaken" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Aanmaken/bewerken" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Nieuwe maken" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Nieuw wachtwoord aanmaken" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Rapport maken" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Geloofwaardigheid" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Huidig wachtwoord" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Aangepaste velden" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informatie" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Datum & tijd" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dag" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deactiveren" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenia" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Verwijderen" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Verwijderd" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Verwijdert" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Verwijderen niet mogelijk" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Laatste verwijderen" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Verwijder dit rapport" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Geselecteerde verwijderen" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Verwijder spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Omschrijving" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Aflopend" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "B.v.: Op de hoek van de markt, Dorp & Kerkstraat, Willemstad" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Details" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Direct rapport" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Afkeuren" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Rapporten downloaden" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Downloaden" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Bewerken" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Formuliervelden bewerken" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Rapport wijzigen" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "E-mailadres" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Instellingen mailserver" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mailserverhost" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Wachtwoord mailserver" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mailserverpoort" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "SSL-ondersteuning mailserver" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Soort mailserver" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Gebruikersnaam mailserver" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "dus je instellingen moeten worden gekoppeld aan dit e-mailadres" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Vul om rapporten per e-mail te ontvangen je e-mailaccountinstellingen hieronder in. Houd er rekening mee dat e-mails worden ontvangen via je" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Sommige servers eisen een volledig e-mailadres" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Wachtwoord e-mailaccount" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Veelgebruikte poorten: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Voorbeelden: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Voorbeelden: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "In- of uitschakelen SSL-verbindingen" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---LEEG---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "tot" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Fout!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Voorbeeld" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Nederland" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Externe apps" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Externe videolink" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Geef feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "De feed is" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "onderhouden items" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Naam" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Ongebruikt veld" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Bestand" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Uw bestand is meer dan de maximaal toegestane bestandsgrootte." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "filters" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Verslagen filteren" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Verslagen filteren op" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filter rapporten met" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Zoek" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Zoek locatie" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Voornaam" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Geldende Uitvoeren Planner" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulier" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulieren" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Beschrijvingsformulier" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Dit formulier bewerken" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Het formulier is" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Titel" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "van" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Volledige naam" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Geolocatie beschikbaar" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Kleur" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Opmerkingen" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "etiket" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "slag Breedte" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Uitvoeren" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Is geweest" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Meehelpen" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Verborgen" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "verbergen" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Verberg deze melding" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Startpagina" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Hoe plaats ik een bericht?" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Wordt gebruikt om u te identificeren op de site voor andere gebruikers." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Afbeelding" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Afbeeldingen" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Afbeelding/pictogram" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactief" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Postvak In" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incident " + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidenten nabijgelegen" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Locatie" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Inclusief" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Inclusief Categorieën" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Inclusief op maat velden" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Omschrijving toevoegen" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Geef zoveel mogelijk details" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Latitude toevoegen" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Locatie informatie toevoegen" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Longitude toevoegen" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Persoonlijke informatie toevoegen" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "nieuws" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Informatie evaluatie" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Geef de exacte locatie" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Uw account beschikt niet over de juiste rechten om volledig te loggen je naar binnen Neem contact op met de beheerder." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "In antwoord op" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Adres" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Is dit uw profiel?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "item" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "item" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Titel" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Sleutel" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Sleutelwoorden" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML bestand" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "KMZ/KML bestand uploaden" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL naar KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Taal" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Laatste" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Laatste maand" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Achternaam" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Laatste jaar" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitude" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Lagen" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Kaartlagen" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "De kaartlaag is " + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Naam" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Opmerkingen" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Minder informatie" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Niveau" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Niveau is" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Naam" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Beperkt" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "URL" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lijst" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Rapporten aan het laden" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Locatie" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Locaties" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Plaats, Provincie en/of Land" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Aanmelden" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Account is succesvol aangemaakt. U kunt nu inloggen." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Een bevestiging is gestuurd naar uw e-mail adres. " + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-mailadres bestaat niet. Probeer een ander e-mailadres of maak een nieuw account aan. " + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Selecteer je account provider" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Inloggen met" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "e-mail en paswoord" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Inschrijven" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Een account aanmaken" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Bevestiging van inschrijving" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Maak nu een account om te profiteren van meer functies op de site." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitude" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Kaart" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Markeren als gelezen" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Markeren als ongelezen" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximum bestandsgrootte" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Media filter" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Leden" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Je account beheren" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Bericht" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Postvak" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Berichtdetails" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Bericht van een niet-numerieke bron:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobiel" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Wijzigen" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Datum wijziging" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "maand" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "meer" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "meer informatie" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Is deze toepassing voor meedere landen" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "U dient uw e-mailadres bevestigen om toegang tot te krijgen tot dit gedeelte. Als u uw bevestigingsmail kwijt bent, kunt u een hieronder een nieuwe aanvragen." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Naam" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Rapporten dicht in de buurt." + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nieuw" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nieuws" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Nieuwsfeeds" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Nieuwsbron" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nieuwe categorie" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nieuw wachtwoord" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nieuw bericht" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Volgende" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nee" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Geen checkins om weer te geven" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Geen gegevens" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Geen" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notities" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Niet goedgekeurd" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Niet goedgekeurd" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Niet geselecteerd---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Geen spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Niet gespecifieerd" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Er zijn geen rapporten" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Geen resultaten" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Uit" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Officieel & openbaar nieuws" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Aan" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Optie" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Optioneel" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opties" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organisatie" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organisaties" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Omschrijving" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "E-mail" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "De organisatie is " + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Naam" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telefoon" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Fax" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Website" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Origineel" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Originele omschrijving" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Originele titel" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Overige implementaties" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Postvak Uit" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Uitgaand" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Pagina" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Pagina's" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Omschrijving" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "De pagina is" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Naam" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Titel" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Hoofdcategorie" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Wachtwoord" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Wachtwoord controle" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Wachtwoord is succesvol veranderd! Log hier beneden in. " + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Controleer de e-mail, er is een nieuw wachtwoord verzonden." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Aangemeld blijven op deze computer?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Maand" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Jaar" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "in afwachting van" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Persoonlijke informatie Optioneel." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefoon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Foto's" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Afbeeldingen" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Afbeeldingen en video's" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Zoek de locatie door het invullen van een naam, adres of coördinaten (lat/lon, b.v. 51.19,4.21). Of klik op de kaart om de locatie te prikken" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Afspelen" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Let op" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugin Website" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Openbaar profiel" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Openbaar profiel URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Voorbeeld" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Voorbeeld bekijken" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Voorbeeld bekijken" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Vorige" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privébericht" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profielkleur" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Je profiel is opgeslagen" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Statistieken" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Waardering" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Lees" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Ontvang" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Ontvang van" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Notificaties ontvangen" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Recente Rapportages" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Nieuwsfeeds ophalen" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Geregistreerd E-mailadres" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "verwijder" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Beantwoord" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Rapport" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Rapporten (van de kaart, gesorteerd in chronologische volgorde)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Rapporteur" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Rapporteurs" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Datum" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "E-mail" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Voornaam" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Rapporteur is" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP adres" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Achternaam" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Niveau" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveau's" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefoon" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Rapporten" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Bladeren" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "OK" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Verslagen van deze gebruiker" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorieën" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Rapporten" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Datum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Omschrijving" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Rapporten worden gedownload in CSV formaat" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Opties" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Zoek een locatie in de buurt" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Voornaam" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Achternaam" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Locatie detaileren" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "URL naar het nieuwsbericht" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Optionele informatie" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Terug naar de rapporten" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Selecteer een plaats" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Uw verslag is aan onze staf ter beoordeling voorgelegd. Wij nemen zo snel mogelijk contact met u op indien nodig." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Plaats een nieuw bericht" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Tijd" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "historie" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Titel" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Video URL" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Plaats een bericht" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Bericht details" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Door een bericht te sturen aan" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Stuur een e-mail naar " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Tweet met de hashtag " + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Vul het formulier in" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Door het gebruiken van een app" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Rapport is opgeslagen" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titel" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Verzoek om meer informatie" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Verzoek om locatie" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Verplicht" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Vereisten" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Verstuur bevestigingsmail nogmaals" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Reset alle filters" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Wachtwoord opnieuw instellen" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Gemeenten ophalen voor het geselecteerde land" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Accounts beheerd door de %s dienst" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Opslaan" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Opgeslagen" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Opslaan & Nieuwe toevoegen" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Opslaan & sluiten" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Opslaan" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Schema" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Schema" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dag" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Uur" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Schema log" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuut" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Dag van de week" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Zoeken" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultaten" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Beveiligingscode " + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Alles selecteren" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Selecteer een veld type" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Selecteer een formulier" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Selecteer op de kaart" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Selecteer zo veel als nodig" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Bevestig alstublieft of u een item heeft aangevinkt" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Selecteer een thema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Verzenden" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Verstuur bevestigingsmail nogmaals" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Verstuur naar" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Verzonden" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Verzonden door" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Server adres" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Server type " + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Dienst" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Gebruikersnaam dienst" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Gebruikers-ID dienst" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Delen" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Gedeelde gegevens" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Delen" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Kortere kaart" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "tonen" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Alle berichten" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Toon berichten" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "site e-mailadres" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Site URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Kleinere kaart" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Sorry, u heeft niet genoeg badges." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Bron" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Naam" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sorteren" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sorteren op" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL inschakelen?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Van" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Stap" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Plaats een bericht" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "gemeld via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "SMS sturen naar" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "op uw telefoon" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Succes!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Succesvol geïmporteerd " + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Achternaam" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Enquête" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Systeem" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Langere kaart" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Poort" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Thema's" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Standaard Ushahidi Thema" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Thema instellingen" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Deze" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Vandaag" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Deze maand" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Deze week" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Dit jaar" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Dit is uw profiel" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "tijd" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Titel " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "tot" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Vandaag" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Vandaag om" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Aantal rapporten" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Vertaald" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Vertaalde omschrijving" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Vertaalde titel" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Vertalen naar" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Vertaling" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Vertaling is opgeslagen" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Vertrouwd" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Type" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Niet mogelijk om e-mail te versturen" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Ongecategoriseerde verslagen" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Ongelezen" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Niet bevestigd" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Feeds bijwerken" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Upload" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Bestand" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Uploaden" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Met het formulier hier beneden kan u incidenten importeren in het Ushahidi systeem." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "het moet tenminste incident titel en incident datum betvatten" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "een voorbeeld van een CSV verslag" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Upload Succesvol" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Upload Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Gebruiker" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Gebruikersnaam" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Beheerder" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificatie" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Bevestigd" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Bevestigde berichten" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Bevestigen" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Bevestig dit bericht" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versie" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Bekijk" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Weergaven" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Bekijk alles" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Bekijk alle feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Bekijk alle berichten" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Items bekijken" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Lees meer..." + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Openbaar profiel bekijken" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Bekijk bericht" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Bekijk berichten" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Video bekijken" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Zichtbaar" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Wachtend op goedkeuring" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Wachtend op bevestiging" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Bredere kaart" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Webformulier" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Gewicht" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ja" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Gisteren" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Je dashboard" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Je bestand" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Inzoomen" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Uitzoomen" diff --git a/application/i18n/po/po-nl_NL/upgrade.po b/application/i18n/po/po-nl_NL/upgrade.po new file mode 100644 index 0000000000..f082299c9a --- /dev/null +++ b/application/i18n/po/po-nl_NL/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Andrea_Pio , 2012 +# Rodolfo_Jadon, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2014-03-01 14:34+0000\n" +"Last-Translator: Rodolfo_Jadon\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ushahidi/ushahidi-v2/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Ongeldige invoer. De geaccepteerde waarden zijn 0 voor Nee en 1 voor Ja." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatisch upgraden" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Beschikbare updates" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Doorgaan" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Ik zal dus je database upgraden van versie" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "naar de nieuwste databaseversie" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "De upgrade is niet gelukt" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Handmatige upgrade" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Stap 1: Download de meest recente ushahidi versie op http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Download de meest recente Ushahidi build van" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Klik de knop hieronder voor automatisch upgraden" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Bezig met het uitvoeren van de upgrade" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP paswoord:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP gebruikersnaam:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Je hebt de meest recente versie van Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Databaseversie: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Database:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Bezig met het downloaden van de meest recente versie van Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Logbestand" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Het downloaden is mislukt." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Het uitpakken is mislukt." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Bezig met het verwijderen van de gedownloade bestanden..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-no/alerts.po b/application/i18n/po/po-no/alerts.po new file mode 100644 index 0000000000..767f15bbd4 --- /dev/null +++ b/application/i18n/po/po-no/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-no/auth.po b/application/i18n/po/po-no/auth.po new file mode 100644 index 0000000000..6e140381b3 --- /dev/null +++ b/application/i18n/po/po-no/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-no/bug.po b/application/i18n/po/po-no/bug.po new file mode 100644 index 0000000000..dbebe6a158 --- /dev/null +++ b/application/i18n/po/po-no/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-no/category.po b/application/i18n/po/po-no/category.po new file mode 100644 index 0000000000..ad577cbcb4 --- /dev/null +++ b/application/i18n/po/po-no/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-no/comments.po b/application/i18n/po/po-no/comments.po new file mode 100644 index 0000000000..e16cb4a4ad --- /dev/null +++ b/application/i18n/po/po-no/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-no/contact.po b/application/i18n/po/po-no/contact.po new file mode 100644 index 0000000000..5d66b63fdc --- /dev/null +++ b/application/i18n/po/po-no/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-no/core.po b/application/i18n/po/po-no/core.po new file mode 100644 index 0000000000..d90ff8567f --- /dev/null +++ b/application/i18n/po/po-no/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-no/database.po b/application/i18n/po/po-no/database.po new file mode 100644 index 0000000000..a4fbcb4d59 --- /dev/null +++ b/application/i18n/po/po-no/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-no/datetime.po b/application/i18n/po/po-no/datetime.po new file mode 100644 index 0000000000..f4f1fe11ad --- /dev/null +++ b/application/i18n/po/po-no/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-no/feeds.po b/application/i18n/po/po-no/feeds.po new file mode 100644 index 0000000000..8eafe73aec --- /dev/null +++ b/application/i18n/po/po-no/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:48+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-no/footer.po b/application/i18n/po/po-no/footer.po new file mode 100644 index 0000000000..afab6f8dc6 --- /dev/null +++ b/application/i18n/po/po-no/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-no/form.po b/application/i18n/po/po-no/form.po new file mode 100644 index 0000000000..a9ff2f4eec --- /dev/null +++ b/application/i18n/po/po-no/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-no/imap.po b/application/i18n/po/po-no/imap.po new file mode 100644 index 0000000000..b4cdbb023a --- /dev/null +++ b/application/i18n/po/po-no/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-no/installer.po b/application/i18n/po/po-no/installer.po new file mode 100644 index 0000000000..5a8f3c7482 --- /dev/null +++ b/application/i18n/po/po-no/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-no/layer.po b/application/i18n/po/po-no/layer.po new file mode 100644 index 0000000000..90aa10a1d2 --- /dev/null +++ b/application/i18n/po/po-no/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-no/libraries.po b/application/i18n/po/po-no/libraries.po new file mode 100644 index 0000000000..debc880d79 --- /dev/null +++ b/application/i18n/po/po-no/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-no/maintenance.po b/application/i18n/po/po-no/maintenance.po new file mode 100644 index 0000000000..f0849accb9 --- /dev/null +++ b/application/i18n/po/po-no/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-no/message.po b/application/i18n/po/po-no/message.po new file mode 100644 index 0000000000..1bdb176e16 --- /dev/null +++ b/application/i18n/po/po-no/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-no/mhi.po b/application/i18n/po/po-no/mhi.po new file mode 100644 index 0000000000..eaadf5142a --- /dev/null +++ b/application/i18n/po/po-no/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-no/notifications.po b/application/i18n/po/po-no/notifications.po new file mode 100644 index 0000000000..c23c2ccbd0 --- /dev/null +++ b/application/i18n/po/po-no/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-no/page.po b/application/i18n/po/po-no/page.po new file mode 100644 index 0000000000..6718068036 --- /dev/null +++ b/application/i18n/po/po-no/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-no/permissions.po b/application/i18n/po/po-no/permissions.po new file mode 100644 index 0000000000..9d7cbc8efd --- /dev/null +++ b/application/i18n/po/po-no/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Martin Aas , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Se rapporter" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Lag/Rediger/Slett rapporter" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Godkjenn rapporter" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Valider rapporter" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Behandle rapportkommentarer" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Last ned rapporter" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Last opp rapporter" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Behandle meldinger" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Behandle meldingsrapporterere" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Se statistikk" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Endre innstillinger" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-no/private_message.po b/application/i18n/po/po-no/private_message.po new file mode 100644 index 0000000000..835b2e52d4 --- /dev/null +++ b/application/i18n/po/po-no/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-no/report.po b/application/i18n/po/po-no/report.po new file mode 100644 index 0000000000..93c23046d1 --- /dev/null +++ b/application/i18n/po/po-no/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-no/reporters.po b/application/i18n/po/po-no/reporters.po new file mode 100644 index 0000000000..f44be1959c --- /dev/null +++ b/application/i18n/po/po-no/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-no/reports.po b/application/i18n/po/po-no/reports.po new file mode 100644 index 0000000000..208dc2474f --- /dev/null +++ b/application/i18n/po/po-no/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-no/roles.po b/application/i18n/po/po-no/roles.po new file mode 100644 index 0000000000..4ff06804f3 --- /dev/null +++ b/application/i18n/po/po-no/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-no/settings.po b/application/i18n/po/po-no/settings.po new file mode 100644 index 0000000000..ec0980f530 --- /dev/null +++ b/application/i18n/po/po-no/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Norwegian (http://www.transifex.com/projects/p/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-no/sharing.po b/application/i18n/po/po-no/sharing.po new file mode 100644 index 0000000000..26c67cfda7 --- /dev/null +++ b/application/i18n/po/po-no/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-no/stats.po b/application/i18n/po/po-no/stats.po new file mode 100644 index 0000000000..bca3e4d4df --- /dev/null +++ b/application/i18n/po/po-no/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-no/tooltips.po b/application/i18n/po/po-no/tooltips.po new file mode 100644 index 0000000000..62a37223fc --- /dev/null +++ b/application/i18n/po/po-no/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-no/ui_admin.po b/application/i18n/po/po-no/ui_admin.po new file mode 100644 index 0000000000..2ca8746d50 --- /dev/null +++ b/application/i18n/po/po-no/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-no/ui_main.po b/application/i18n/po/po-no/ui_main.po new file mode 100644 index 0000000000..721a3de97c --- /dev/null +++ b/application/i18n/po/po-no/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-no/upgrade.po b/application/i18n/po/po-no/upgrade.po new file mode 100644 index 0000000000..f644da1598 --- /dev/null +++ b/application/i18n/po/po-no/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:49+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Norwegian (http://www.transifex.com/ushahidi/ushahidi-v2/language/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-pa/alerts.po b/application/i18n/po/po-pa/alerts.po new file mode 100644 index 0000000000..532f8ac414 --- /dev/null +++ b/application/i18n/po/po-pa/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-pa/auth.po b/application/i18n/po/po-pa/auth.po new file mode 100644 index 0000000000..dd8a08ee5a --- /dev/null +++ b/application/i18n/po/po-pa/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-pa/bug.po b/application/i18n/po/po-pa/bug.po new file mode 100644 index 0000000000..f6b65d9969 --- /dev/null +++ b/application/i18n/po/po-pa/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-pa/category.po b/application/i18n/po/po-pa/category.po new file mode 100644 index 0000000000..a35cded1a9 --- /dev/null +++ b/application/i18n/po/po-pa/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-pa/comments.po b/application/i18n/po/po-pa/comments.po new file mode 100644 index 0000000000..2717c9e59d --- /dev/null +++ b/application/i18n/po/po-pa/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-pa/contact.po b/application/i18n/po/po-pa/contact.po new file mode 100644 index 0000000000..c56d63c80d --- /dev/null +++ b/application/i18n/po/po-pa/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-pa/core.po b/application/i18n/po/po-pa/core.po new file mode 100644 index 0000000000..be54a615b4 --- /dev/null +++ b/application/i18n/po/po-pa/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-pa/database.po b/application/i18n/po/po-pa/database.po new file mode 100644 index 0000000000..b184f46b27 --- /dev/null +++ b/application/i18n/po/po-pa/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-pa/datetime.po b/application/i18n/po/po-pa/datetime.po new file mode 100644 index 0000000000..e2f2d12929 --- /dev/null +++ b/application/i18n/po/po-pa/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-pa/feeds.po b/application/i18n/po/po-pa/feeds.po new file mode 100644 index 0000000000..c7026da9cb --- /dev/null +++ b/application/i18n/po/po-pa/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-pa/footer.po b/application/i18n/po/po-pa/footer.po new file mode 100644 index 0000000000..795e2be8b0 --- /dev/null +++ b/application/i18n/po/po-pa/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-pa/form.po b/application/i18n/po/po-pa/form.po new file mode 100644 index 0000000000..0fcdb5158a --- /dev/null +++ b/application/i18n/po/po-pa/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-pa/imap.po b/application/i18n/po/po-pa/imap.po new file mode 100644 index 0000000000..39462c37b0 --- /dev/null +++ b/application/i18n/po/po-pa/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-pa/installer.po b/application/i18n/po/po-pa/installer.po new file mode 100644 index 0000000000..4c914e0389 --- /dev/null +++ b/application/i18n/po/po-pa/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-pa/layer.po b/application/i18n/po/po-pa/layer.po new file mode 100644 index 0000000000..ed42d95b83 --- /dev/null +++ b/application/i18n/po/po-pa/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-pa/libraries.po b/application/i18n/po/po-pa/libraries.po new file mode 100644 index 0000000000..efa126b2c6 --- /dev/null +++ b/application/i18n/po/po-pa/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-pa/maintenance.po b/application/i18n/po/po-pa/maintenance.po new file mode 100644 index 0000000000..a84fbe52b2 --- /dev/null +++ b/application/i18n/po/po-pa/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-pa/message.po b/application/i18n/po/po-pa/message.po new file mode 100644 index 0000000000..1b8bb0116a --- /dev/null +++ b/application/i18n/po/po-pa/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-pa/mhi.po b/application/i18n/po/po-pa/mhi.po new file mode 100644 index 0000000000..a711fdefec --- /dev/null +++ b/application/i18n/po/po-pa/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-pa/notifications.po b/application/i18n/po/po-pa/notifications.po new file mode 100644 index 0000000000..5db5197471 --- /dev/null +++ b/application/i18n/po/po-pa/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-pa/page.po b/application/i18n/po/po-pa/page.po new file mode 100644 index 0000000000..cc6577257f --- /dev/null +++ b/application/i18n/po/po-pa/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-pa/permissions.po b/application/i18n/po/po-pa/permissions.po new file mode 100644 index 0000000000..fc304cc6c4 --- /dev/null +++ b/application/i18n/po/po-pa/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-pa/private_message.po b/application/i18n/po/po-pa/private_message.po new file mode 100644 index 0000000000..60bc46961b --- /dev/null +++ b/application/i18n/po/po-pa/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-pa/report.po b/application/i18n/po/po-pa/report.po new file mode 100644 index 0000000000..036d26343d --- /dev/null +++ b/application/i18n/po/po-pa/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-pa/reporters.po b/application/i18n/po/po-pa/reporters.po new file mode 100644 index 0000000000..4cde968d77 --- /dev/null +++ b/application/i18n/po/po-pa/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-pa/reports.po b/application/i18n/po/po-pa/reports.po new file mode 100644 index 0000000000..1a5b649609 --- /dev/null +++ b/application/i18n/po/po-pa/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-pa/roles.po b/application/i18n/po/po-pa/roles.po new file mode 100644 index 0000000000..aaee799286 --- /dev/null +++ b/application/i18n/po/po-pa/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-pa/settings.po b/application/i18n/po/po-pa/settings.po new file mode 100644 index 0000000000..c21cd77989 --- /dev/null +++ b/application/i18n/po/po-pa/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-pa/sharing.po b/application/i18n/po/po-pa/sharing.po new file mode 100644 index 0000000000..511e897973 --- /dev/null +++ b/application/i18n/po/po-pa/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-pa/stats.po b/application/i18n/po/po-pa/stats.po new file mode 100644 index 0000000000..7d3273c6b2 --- /dev/null +++ b/application/i18n/po/po-pa/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-pa/tooltips.po b/application/i18n/po/po-pa/tooltips.po new file mode 100644 index 0000000000..e8c7f9fa1f --- /dev/null +++ b/application/i18n/po/po-pa/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-pa/ui_admin.po b/application/i18n/po/po-pa/ui_admin.po new file mode 100644 index 0000000000..5af94a8521 --- /dev/null +++ b/application/i18n/po/po-pa/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-pa/ui_main.po b/application/i18n/po/po-pa/ui_main.po new file mode 100644 index 0000000000..70d7ebb2e6 --- /dev/null +++ b/application/i18n/po/po-pa/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-pa/upgrade.po b/application/i18n/po/po-pa/upgrade.po new file mode 100644 index 0000000000..4ec5275793 --- /dev/null +++ b/application/i18n/po/po-pa/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-pl_PL/alerts.po b/application/i18n/po/po-pl_PL/alerts.po new file mode 100644 index 0000000000..4c0122f3f3 --- /dev/null +++ b/application/i18n/po/po-pl_PL/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Pole adresu email nie zawiera ważnego adresu" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Podany adres email otrzymuje już powiadomienia z tej lokalizacji." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Adres email musi zawierać co najmniej 4 i nie więcej niż 64 znaki." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole adresu email musi być wypełnione, jeśli zaznaczono pole wyboru." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Ta mapa jest ograniczona do jednego kraju. Proszę się upewnić, że raport znajduje się na terytorium kraju: %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Poprawna lokalizacja nie została wybrana na mapie." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Poprawna lokalizacja nie została wybrana na mapie." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Poprawna lokalizacja nie została wybrana na mapie." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Poprawna lokalizacja nie została wybrana na mapie." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Pole telefonu komórkowego prawdopodobnie nie zawiera odpowiedniej ilości cyfr." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ten numer telefonu komórkowego został już zarejestrowany jako otrzymujący alarmy dla tej lokalizacji" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Pole telefonu komórkowego prawdopodobnie nie zawiera ważnego numeru telefonu. Prosimy wprowadzać numery jedynie wraz z prefiksem kraju." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Musisz wprowadzić swój numer telefonu komórkowego lub adres emailowy." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Pole telefonu komórkowego musi być wypełnione, jeśli zaznaczono pole wyboru." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Proszę zaznaczyć promień alertów na mapie." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Proszę zaznaczyć promień alertów na mapie." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Nie ustawiono odbiorcy alertów!" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Utworzono subskrypcję dla następujących kategorii" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Ten kod weryfikacujny już został potwierdzony." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Kod weryfikacyjny nie został odnaleziony. Proszę zweryfikuj czy wprowadziłeś do przeglądarki poprawny URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Weryfikacja przebiegła pomyślnie, będziesz na bieżąco informowany o alertach." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Aby potwierdzić notyfikację o alertach na Twój adres email, kliknij na poniższy link (bądź skopiuj go i wklej w okno adresu przeglądarki): " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Powróć do strony z alertami, aby utworzyć kolejne notyfikacje." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Notyfikacja o alertach na Twój adres email została utworzona a wiadomość wraz z kodem weryfikacyjnym została wysłana do:" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Proszę wprowadź poniżej kod weryfikujący, który otrzymałeś drogą poczty elektronicznej: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Notyfikacja o alertach na Twój adres email NIE została zachowana!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Notyfikacja o alertach na Twój adres email została zachowana!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Nastąpił błąd systemu. Zgłoś to proszę obsłudze systemu." + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Zgłoszenie zostało przyjęte, kod SMS został wysłany na" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Proszę wpisać otrzymany kod SMS:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Zgłoszenie NIE zostało zapisane!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Zgłoszenie zostało zapisane!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Ta instalacja nie została skonfigurowana do obsługi powiadomień o alertach." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Otrzymałeś tę wiadomość, ponieważ Twój adres email został zapisany w naszym systemie w celu notyfikacji o tworzonych na bieżąco alertach. Jeżeli pragniesz otrzymywać notyfikacje, kliknij na poniższy link (bądź skopiuj go i wklej w okno adresu przeglądarki): " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Notyfikacja o alertach została anulowana dla adresu " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Niestety ale nie byliśmy w stanie anulować notyfikacji. Proszę sprawdź czy wprowadzileś prawidłowy adres URL do przeglądarki." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "notyfikacje o alertach - weryfikacja" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Nie będziesz otrzymywał alertów dot. danej lokalizacji, do momentu kiedy Twój email nie zostanie potwierdzony (po przez kod weryfikacyjny)." diff --git a/application/i18n/po/po-pl_PL/auth.po b/application/i18n/po/po-pl_PL/auth.po new file mode 100644 index 0000000000..231ff22460 --- /dev/null +++ b/application/i18n/po/po-pl_PL/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Lidia Cibor , 2013 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Pole adresu email nie zawiera ważnego adresu emailowego" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Przepraszamy, dla tego adresu emailowego już istnieje konto użytkownika." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Adres emailowy musi mieć co najmniej 4 i nie więcej niż 64 znaki." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Pole adresu emailowego musi być wypełnione." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Pełna nazwa pola musi mieć co najmniej 3 i nie więcej niż 100 znaków." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Wymagane jest wypełnienie pełnej nazwa pola." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Pole nazwy użytkownika zawiera niedozwolone znaki." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Hasło musi mieć co najmniej 8 znaków." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Proszę sprawdzić, czy e-mail i hasło są poprawne." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Proszę wpisać dwukrotnie to samo hasło." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Pole \"hasło\" jest wymagane." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Hasło może składać się wyłącznie z liter, cyfr lub znaków # @ - _" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Podano złe hasło." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Hasło musi mieć co najmniej 8 znaków." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Proszę sprawdzić, czy podany e-mail i hasło są poprawne." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Proszę wpisać dwukrotnie to samo hasło." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Pole \"hasło\" jest wymagane." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Hasło może składać się wyłącznie z liter, cyfr lub znaków # @ - _" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Wystąpił błąd logowania." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Pole hasła musi mieć co najmniej 5 i nie więcej niż 16 znaków." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Sprawdź, czy wprowadziłeś właściwe hasło." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Wprowadź to samo hasło w obydwu polach hasła." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Pole hasła musi być wypełnione." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Serwer nie działa. Spróbuj później." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Hasło może składać się wyłącznie z liter, cyfr lub znaków # @ - _" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Pole potwierdzenia hasła musi odpowiadać polu hasła." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Pole adresu emailowego prawdopodobnie nie zawiera ważnego adresu emailowego" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Przepraszamy, nie mamy twojego adresu emailowego" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Pole adresu emailowego musi być wypełnione." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Tylko superadministrator może zmienić konto superadministratora lub awansować użytkownika na administratora." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Niewłaściwe pole formatu." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Pole Roli musi składać się z minimum 5 znaków i maksymalnie z 30." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Musisz zdefiniować co najmniej jedną funkcję." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Musisz wybrać funkcję albo ADMINISTRATORA, albo UŻYTKOWNIKA." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Nieprawidłowy token podczas odzyskiwania hasła." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Do odzyskania hasła potrzebny jest token" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Funkcja administratora/użytkownika nie może być zmodyfikowana." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "URL profilu publicznego może zawierać tylko litery i cyfry." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Przepraszamy, ta nazwa użytkownika jest już używana." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Pole nazwy użytkownika musi mieć co najmniej 2 i nie więcej niż 16 znaków." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Sprawdź, czy wprowadziłeś właściwą nazwę użytkownika." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Pole nazwy użytkownika musi być wypełnione." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Rola superadministratora nie może być zmodyfikowana." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Podejrzenie ataku CSRF! Czy rzeczywiście chcesz utworzyć/zmienić użytkownika?" diff --git a/application/i18n/po/po-pl_PL/bug.po b/application/i18n/po/po-pl_PL/bug.po new file mode 100644 index 0000000000..8c8519f272 --- /dev/null +++ b/application/i18n/po/po-pl_PL/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Wpisz poprawny kod zabezpieczający" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Wpisz kod zabezpieczający" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Pole adresu e-mail ma nieznaną wartość" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-mail musi mieć od 4 do 64 znaków" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-mail jest wymagany jeżeli okienko jest odznaczone" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Proszę wypełnić pole błędu" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Temat musi mieć przynajmniej 3 znaki" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Proszę wypełnić pole tematu" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Nazwa musi mieć przynajmniej 3 znaki" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Proszę podać nazwę" diff --git a/application/i18n/po/po-pl_PL/category.po b/application/i18n/po/po-pl_PL/category.po new file mode 100644 index 0000000000..156453ad8d --- /dev/null +++ b/application/i18n/po/po-pl_PL/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Pole koloru musi zawierać 6 znaków." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Pole koloru musi być wypełnione." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Pole opisu musi być wypełnione." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Upewnij się, czy wielkość przesyłanego obrazu nie przekracza 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Pole obrazu prawdopodobnie nie zawiera ważnego obrazu. Jedynymi dopuszczalnymi formatami są .JPG, .PNG i .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Pole obrazu prawdopodobnie nie zawiera ważnego pliku" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Pole tytułu musi mieć co najmniej 3 i nie więcej niż 80 znaków." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Pole tytułu musi być wypełnione." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Nie można utworzyć podkategorii dla podkategorii." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Podana kategoria nadrzędna nie istnieje." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Pole kategoria nadrzędna musi być numeryczne." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Kategoria nadrzędna nie może być kategorią specjalną." + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Pole kategoria nadrzędna musi być wypełnione." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Pola kategoria i nadrzędna kategoria nie mogą być jednakowe." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Nie można utworzyć podkategorii dla kategorii specjalnej." diff --git a/application/i18n/po/po-pl_PL/comments.po b/application/i18n/po/po-pl_PL/comments.po new file mode 100644 index 0000000000..70b0f51d1f --- /dev/null +++ b/application/i18n/po/po-pl_PL/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Wprowadź ważny kod bezpieczeństwa" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Wprowadź kod bezpieczeństwa" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Nieprawidłowy kod zabezpieczający." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Pole nazwy musi zawierać co najmniej 3 znaki." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Pole nazwy musi być wypełnione." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Pole komentarza musi być wypełnione." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Pole adresu email prawdopodobnie nie zawiera ważnego adresu emailowego" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Pole adresu email musi zawierać co najmniej 4 i nie więcej niż 64 znaki." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole adresu email musi być wypełnione, jeżeli zaznaczono pole wyboru." diff --git a/application/i18n/po/po-pl_PL/contact.po b/application/i18n/po/po-pl_PL/contact.po new file mode 100644 index 0000000000..29827f955e --- /dev/null +++ b/application/i18n/po/po-pl_PL/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Wprowadź poprawny kod bezpieczeństwa" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Proszę wpisać prawidłowy kod zabezpieczający." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Wprowadź kod bezpieczeństwa" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Pole adresu emailowego prawdopodobnie nie zawiera poprawnego adresu mailowego" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Pole adresu email musi zawierać co najmniej 4 i nie więcej niż 64 znaki." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole adresu email musi być wypełnione, jeśeli zaznaczone zostało pole wyboru." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Pole wiadomości musi być wypećnione." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Pole nazwy musi mieć co najmniej 3 znaki." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Pole nazwy musi być wypełnione." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Pole tematu musi zawierać co najmniej 3 znaki." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Pole tematu musi być wypełnione." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Wystąpił błąd podczas wysyłania wiadomości." diff --git a/application/i18n/po/po-pl_PL/core.po b/application/i18n/po/po-pl_PL/core.po new file mode 100644 index 0000000000..960a96182b --- /dev/null +++ b/application/i18n/po/po-pl_PL/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Lidia Cibor , 2013 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "plik konfiguracyjny" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "kontroler" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "sterownik" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Sterownik %s sterownik dla biblioteki %s musi wykorzystywać interface %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Sterownik %s dla biblioteki %s nie został znaleziony" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Możesz przejść do home page or try again." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "% [%]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Żądanie nie może być zrealizowane" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "pomocnik" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Żądany typ pliku, .%s, nie jest dozwolony w twoim pliku konfiguracji widoku" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Nieprawidłowa metoda %s zastosowana w %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Właściwość %s nie istnieje w klasie %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "biblioteka" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Ten katalog logowania nie jest zapisywalny: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi nie był w stanie określić kontrolera do przetworzenia tego żądania: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Określ domyślną ścieżkę w config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Żądana strona, %s, nie została znaleziona." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "prześlij ten problem do Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Żądane %s, %s, nie mogą być znalezione" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "obraz stosu" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Przesłane w {czas wykonania} sekund, przy użyciu {używana pamięć} pamięci. Wygenerowane przez Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Może być tylko jeden przypadek Ushahidi na żądanie strony" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Niewychwycone %s: %s w pliku %s na linii %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "widok" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Musisz określić nazwę pliku widoku przed obrazowaniem" diff --git a/application/i18n/po/po-pl_PL/database.po b/application/i18n/po/po-pl_PL/database.po new file mode 100644 index 0000000000..6434a15dd6 --- /dev/null +++ b/application/i18n/po/po-pl_PL/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Błąd bazy danych: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabela \"%s\" nie może być znaleziona w bazie danych. Upewnij się, czy używasz najnowszej wersji bazy danych dla tej wersji Ushahidi" diff --git a/application/i18n/po/po-pl_PL/datetime.po b/application/i18n/po/po-pl_PL/datetime.po new file mode 100644 index 0000000000..d1460e7fb8 --- /dev/null +++ b/application/i18n/po/po-pl_PL/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "przed południem" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Pia" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Piątek" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Pon" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Poniedziałek" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "po południu" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sob" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sobota" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Nie" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Niedziela" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Czw" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Czwartek" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Wto" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Wtorek" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Śro" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Środa" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Sty" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Styczeń" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Lut" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Luty" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marzec" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Kwi" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Kwiecień" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Maj" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maj" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Cze" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Czerwiec" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Lip" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Lipiec" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Sie" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Sierpień" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Wrz" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Wrzesień" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Paź" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Październik" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Lis" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Listopad" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Gru" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Grudzień" diff --git a/application/i18n/po/po-pl_PL/feeds.po b/application/i18n/po/po-pl_PL/feeds.po new file mode 100644 index 0000000000..6bc6ce3035 --- /dev/null +++ b/application/i18n/po/po-pl_PL/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Data" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Nazwa musii zawierać co najmniej 3 i nie więcej niż 70 znaków." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Wprowadź nazwę RSS." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Wprowadź URL RSS." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Wprowadź ważny URL. Np. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Źródło" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Tytuł" diff --git a/application/i18n/po/po-pl_PL/footer.po b/application/i18n/po/po-pl_PL/footer.po new file mode 100644 index 0000000000..8a12ff07bd --- /dev/null +++ b/application/i18n/po/po-pl_PL/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl nie jest zainstalowany w tym systemie" diff --git a/application/i18n/po/po-pl_PL/form.po b/application/i18n/po/po-pl_PL/form.po new file mode 100644 index 0000000000..fad63ca183 --- /dev/null +++ b/application/i18n/po/po-pl_PL/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Kaja Polachowska , 2012 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Domyślna wartość wprowadzona dla pola jest nieprawidłowa." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Nazwa pola musi zawierać co najmniej 3 i nie więcej niż 200 znaków." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Wprowadź wartość do 0 do 50 dla wysokości pola" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Wprowadziłeś nieważną wartość dla daty pola" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Wybierz odpowiedź Tak lub Nie dla daty pola" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Nazwa pola musi zawierać co najmniej 3 i nie więcej niż 100 znaków." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Wprowadź nazwę pola." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Wpisana nazwa pola już istnieje. Proszę wpisać inną nazwę." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Wprowadziłeś nieważną wartość w wymaganym polu" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Wybierz odpowiedź Tak lub Nie dla wymaganego pola" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Wybierz ważny typ pola." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Wybierz typ pola." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Wprowadź wartość do 0 do 300 dla szerokości pola" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Wprowadź opis formularza." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Domyślny formularz nie może być usunięty." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Wybierz formularz, który chcesz dodać do tego pola." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Wybierz formularz, który chcesz dodać do tego pola." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Pole nazwy formularza musi mieć co najmniej 3 i nie więcej niż 100 znaków." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Wprowadź nazwę formularza." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Istnieje już formularz o tej nazwie. Proszę wybrać inną nazwę." diff --git a/application/i18n/po/po-pl_PL/imap.po b/application/i18n/po/po-pl_PL/imap.po new file mode 100644 index 0000000000..820bcc6dc7 --- /dev/null +++ b/application/i18n/po/po-pl_PL/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Nie udało się otworzyć strumienia serwera IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Ta usługa email nie jest obsługiwana w systemie" diff --git a/application/i18n/po/po-pl_PL/installer.po b/application/i18n/po/po-pl_PL/installer.po new file mode 100644 index 0000000000..0f5e42bc6a --- /dev/null +++ b/application/i18n/po/po-pl_PL/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Ścieżka bazowa" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Baza danych" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Host bazy danych" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Jeśli uruchamiasz Ushahidi na własnym komputerze, zapewne będzie to \"localhost\". Jeśli uruchamiasz Ushahidi na serwerze WWW, potrzebne dane otrzymasz od administratora." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nazwa bazy danych" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Nazwa bazy danych dla Ushahidi." + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Więcej informacji znajdziesz w tym artykule na wiki, który szczegółowo omawia bazy danych." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Domyślny język" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Each instance of Ushahidi comes with a set of built in language translations. You can also add your own" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Wyłącz" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Włącz" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Poniżej jest lista napotkanych błędów." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Lokalizacja na serwerze, gdzie znajdują się pliki Ushahidi.Została wykryta automatycznie, sprawdź poprawność! Jeśli pole jest puste, oznacza to że Ushahidi zainstalowano w katalogu najwyższego poziomu." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Zakończone" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Ogólne" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Klucz API Google" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Każdy może otrzymać api key. Zdobądź własny" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Powrót" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "ZAAWANSOWANA INSTALACJA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Ustaw wszystkie najważniejsze parametry w 5 krokach: serwer, mapa, nazwa strony i dane kontaktowe." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "PODSTAWOWA INSTALACJA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Szybka instalacja - wszystko, czego potrzebujesz to katalog w którym znajduje się strona oraz dane połączenia z bazą danych. Wybierz tę opcję, jeśli chcesz mieć działającą stronę natychmiast i skonfigurować wszystko później." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Kontynuuj" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Witamy w instalacji Ushahidi. Wybierz rodzaj instalacji poniżej." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalacja zakończyła się pomyślnie." + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Serwer poczty" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Host serwera poczty" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Przykłady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Hasło serwera poczty" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Hasło, którego używasz do logowania do poczty." + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Port serwera poczty" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Popularne poty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Typ serwera poczty" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) lub Post Office Protocol (POP). Jaka jest różnica?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Nazwa użytkownika e-mail" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Jeżeli używasz Gmail, Hotmail lub Yahoo, wpisz pełny adres jako nazwę użytkownika." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Dostawca mapy" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi może działać z mapami Bing, Google lub OpenStreetMap. Wybierz najlepszą dla swojego obszaru." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Inne kroki" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Hasło" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Hasło bazy danych" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Poprzedni" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Zrestartuj Serwer Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Włącz lub wyłącz SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Niektóre serwery używają SSL do połączenia. Zwiększa to poziom bezpieczeństwa." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Skonfiguruj serwers SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Adres email strony" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Adres email raportów" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Jeśli goście strony zechcą otrzymywać subskrypcje na e-mail, otrzymają ją z tego adresu. Nie musi być taki sam jak adres strony." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Komunikacja na stronie będzie obsługiwana przez ten adres" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nazwa strony" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Nazwa Twojej strony" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Hasło strony" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Hasło Twojej strony" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Pliki i katalogi które muszą mieć prawa do zapisu." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Oto jak zmienić prawa do zapisu:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Zanim zaczniesz, upewnij się czy następujące pliki i katalogi mają prawa do zapisu." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Dla instalacji potrzebujesz następujących informacji,." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefiks tabel" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Najczęściej nie potrzebujesz tu nic zmieniać. Jeżeli jednak chcesz utrzymać kilka instalacji Ushahidi w jednej bazie danych, zmień prefiks tutaj." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Tytuł" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Aby się zalogować, odwiedź" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Wgraj dane raportów" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nazwa użytkownika" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Nazwa użytkwb bazy danych" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "i użyj następujących danych" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Zobacz swoją stronę" diff --git a/application/i18n/po/po-pl_PL/layer.po b/application/i18n/po/po-pl_PL/layer.po new file mode 100644 index 0000000000..de31a3d95b --- /dev/null +++ b/application/i18n/po/po-pl_PL/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Pole koloru musi mieć min. 6 znaków" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Pole koloru jest wymagane." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Pole nie zawiera prawidłowego pliku. Jedyne akceptowalne formaty to .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Pole nie zawiera prawidłowego pliku." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Nazwa tego pola musi posiadać min. 3 znaki i być nie dłuższa niż 80 znaków." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Nazwa tego pola jest wymagana." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Wymagane jest podanie albo pliku albo KML URL" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Nie możesz dodać obu (pliku KML albo adresu URL) - wybierz jedno" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Podaj prawidłowy URL, np. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-pl_PL/libraries.po b/application/i18n/po/po-pl_PL/libraries.po new file mode 100644 index 0000000000..f664c8d583 --- /dev/null +++ b/application/i18n/po/po-pl_PL/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Nie można połączyć z serwerem akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Nie można otrzymać odpowiedzi od Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Bilbioteka API %s, dla klasy %s nie została znaleziona. Sprawdź tablicę przekierowań zadań swojego API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Klucz APi Akismet jest niepoprawny." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Wystąpił błąd podczas wykonywania metody wysyłania fopen! Sprawdź czy PHP obsługuje OpenSSL i cz wersja jest większa niż 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Twoja wiadomość unicode jest za długa! (Obecna długość=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Podaj adres docelowy (DO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Podaj adres źródła (OD)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Twoja wiadomość unicode jest za długa! (Obecna długość=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Nieobsługowana metoda przesyłania!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Biblioteka API % jest niewłaściwa. Wszystkie biblioteki API muszą być podklasami %" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Folder %s nie został usunięty." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Błąd przy rozpakowywaniu: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Pobieranie najnowszej wersji Ushahidi nie powiodło się." + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Plik %s nie został skopiowany" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Plik %s nie został skasowany" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Skrypt aktualizacji Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Pobrany plik zip Ushahidi %s, nie może zostać zapisany" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s nie jest dostępny w klasie RiverID." diff --git a/application/i18n/po/po-pl_PL/maintenance.po b/application/i18n/po/po-pl_PL/maintenance.po new file mode 100644 index 0000000000..c9341eaccf --- /dev/null +++ b/application/i18n/po/po-pl_PL/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Przepraszamy, strona została wyłączona w celu konserwacji. Prosimy spróbować później." diff --git a/application/i18n/po/po-pl_PL/message.po b/application/i18n/po/po-pl_PL/message.po new file mode 100644 index 0000000000..a816a7ff23 --- /dev/null +++ b/application/i18n/po/po-pl_PL/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Podaj prawidłowy kod bezpieczeństwa." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Podaj prawidłowy kod bezpieczeństwa." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "To chyba nie jest prawidłowy adres email?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email musi mieć min 4 znaki i być nie dłuższy niż 64 znaki." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Polę email jest wymagane (jeżeli jest zaznaczone)." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Pole komentarz jest wymagane." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Polę \"nazwa\" musi zawierać min. 3 znaki." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Pole \"nazwa\" jest wymagane." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Podany został nieprawidłowy numer telefonu." diff --git a/application/i18n/po/po-pl_PL/mhi.po b/application/i18n/po/po-pl_PL/mhi.po new file mode 100644 index 0000000000..7dab97cdad --- /dev/null +++ b/application/i18n/po/po-pl_PL/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Wpisz poprawny kod zabezpieczający" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Wpisz kod zabezpieczający" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Pole adresu e-mail ma nieznaną wartość" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Proszę podać adres e-mail" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Proszę podać wiadomość" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Temat musi mieć przynajmniej 3 znaki" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Proszę wypełnić pole tematu" diff --git a/application/i18n/po/po-pl_PL/notifications.po b/application/i18n/po/po-pl_PL/notifications.po new file mode 100644 index 0000000000..f2bcd72634 --- /dev/null +++ b/application/i18n/po/po-pl_PL/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Ta wiadomość została wysłana z serwisu" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Logowanie do panelu administracyjnego" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Do systemu został dodany nowy komentarz, jako odpowiedź do:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nowy komentarz" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Do systemu została dodana nowa wiadomość email." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nowa wiadomość email" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Do systemu został dodany nowy raport." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nowy Raport" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Do systemu została dodana nowa wiadomość tekstowa SMS." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nowa wiadomość tekstowa" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Otrzymano nowy alert!" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nowy alert!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Otrzymano nową Prywatną Wiadomość" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nowa Prywatna Wiadomość" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Aby odpowiedzieć, odwiedź:" diff --git a/application/i18n/po/po-pl_PL/page.po b/application/i18n/po/po-pl_PL/page.po new file mode 100644 index 0000000000..4e165e3bb7 --- /dev/null +++ b/application/i18n/po/po-pl_PL/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Proszę wpisać tytuł strony." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Tytuł strony musi mieć co najmniej 3 i nie więcej niż 150 znaków." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Proszę wpisać nazwę zakładki." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Proszę wpisać opis strony." diff --git a/application/i18n/po/po-pl_PL/permissions.po b/application/i18n/po/po-pl_PL/permissions.po new file mode 100644 index 0000000000..3c424f4959 --- /dev/null +++ b/application/i18n/po/po-pl_PL/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Lidia Cibor , 2013 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-15 17:22+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Przeglądaj raporty" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Twórz,edytuj lub kasuj raporty" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Zatwierdź raporty" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Weryfikuj raporty" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Zarządzaj komentarzami" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Pobierz raporty" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Wyślij raporty" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Zarządzaj wiadomościami" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Zarządzaj zgłaszającymi" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Obejrzyj statystyki" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Zmień ustawienia" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Zarządzaj panelem" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Zarządzaj użytkownikami" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Zarządzaj rolami" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Uprawnienia do check-in?" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Zarządzaj check-in" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Dostęp do panelu administratora" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Dostęp do panelu użytkownika" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Usuń wszystkie raporty" diff --git a/application/i18n/po/po-pl_PL/private_message.po b/application/i18n/po/po-pl_PL/private_message.po new file mode 100644 index 0000000000..85e59eccca --- /dev/null +++ b/application/i18n/po/po-pl_PL/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "ID musi być liczbą" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Pole \"Do\" jest wymagane" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Użytkownik, do którego próbujesz wysłać wiadomość, nie istnieje." + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Pole \"Temat\" jest wymagane." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Temat musi mieć co najmniej 3 i co najwyżej 150 znaków." + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Treść wiadomości jest wymagana." diff --git a/application/i18n/po/po-pl_PL/report.po b/application/i18n/po/po-pl_PL/report.po new file mode 100644 index 0000000000..5d5e7968ac --- /dev/null +++ b/application/i18n/po/po-pl_PL/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Lidia Cibor , 2013 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-10-15 17:11+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "błąd!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Ta mapa jest ograniczona do obszaru jednego kraju. Proszę się upewnić, że raport znajduje się na terytorium kraju %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Proszę podać poprawną wartość dla pola \"%s\" ." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Pole \"%s\" musi być liczbą." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Pole \"%s\" jest wymagane." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Pole \"%s\" nie istnieje.." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Nie masz uprawnień do zmiany pola \"%s\"." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Pole \"%s\" powinno zawierać poprawny adres mailowy." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Pole \"%s\" powinno zawierać poprawny numer telefonu." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Pole \"%s\" musi zawierać datę o formacie (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Pole \"%s\" musi zawierać datę o formacie (MM/DD/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Proszę wybrać właściwy obiekt do pobrania." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Wybierz właściwe elementy do pobrania" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Proszę wybrać \"Oczekujące akceptacji\", \"Zaakceptowane\" lub wszystkie. " + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Proszę wybrać \"Oczekujące akceptacji\", \"Zaakceptowane\" lub wszystkie. " + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Proszę wybrać \"Oczekujące akceptacji\", \"Zaakceptowane\" lub wszystkie. " + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Proszę wybrać \"Oczekujące weryfikacji\", \"Zweryfikowane\" lub wszystkie. " + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Proszę wybrać \"Oczekujące weryfikacji\", \"Zweryfikowane\" lub wszystkie. " + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Proszę wybrać \"Oczekujące weryfikacji\", \"Zweryfikowane\" lub wszystkie. " + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Podaj właściwy typ raportu do pobrania" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Podaj właściwy typ raportu do pobrania" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Podaj właściwy typ raportu do pobrania" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Należy wybrać format pobieranego pliku. Wybierz CSV albo XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Podaj prawidłowy format pliku, w jakim chcesz pobrać raport." + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Pole DATA OD zawiera nieprawidłowe dane." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Pole DATA OD zawiera nieprawidłowe dane (nie może być większe od dzisiejszej daty)." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Proszę podaj właściwe dane przy akceptacji alertu." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Proszę podaj właściwe dane przy akceptacji alertu." + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Pole AM/PM zawiera nieprawidłową wartość" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Pole kategoria zawiera nieprawidłowe dane." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Kategoria jest wymagana." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Format daty jest nieprawidłowy." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Format daty jest nieprawidłowy." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Data jest wymagana." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Opis jest wymagany." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Format albo zakres godzinowy jest nieprawidłowy." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Podaj godzinę!" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Określ stopień Prawdopodobieństwa Informacji" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Określ stopień Prawdopodobieństwa Informacji" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Format albo zakres pola minutowego jest nieprawidłowy." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Pole z minutą jest wymagane." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Źródło alertu zawiera nieprawidłowy adres URL." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Limit wielkości zdjęcia to 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Wgrywane zdjęcie nie wydaje się być w prawidłowym formacie. Akceptowalne formaty to: .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Wgrywane zdjęcie nie wydaje się być w prawidłowym formacie." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Proszę podaj właście dane źródła alertu." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Proszę podaj właście dane źródła alertu." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Tutuł raportu musi mieć min. 3 znaki (max. 200)." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Tutuł raportu jest wymagany." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Podejrzenie ataku CSRF! Czy rzeczywiście chcesz utworzyć/edytować raport?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Proszę podaj właście dane przy weryfikacji raportu" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Proszę podaj właście dane przy weryfikacji raportu." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Video zwiera nieprawidłowy adres URL." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Pole szerokości geograficznej zawiera nieprawidłową wartość." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Wartość szerokości geograficznej musi zostać podana. Proszę zaznacz ja na mapie." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Pole locale zawiera nieprawidłowe dane. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Ten raport już posiada tłumaczenie w tym języku." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Pole locale posiada nieprawidłową długość. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Orginaly raport oraz tłumaczenie zawierają tą samą wartość locale." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Pole locale jest wymagane." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Nazwa lokalizacji musi zawierać min. 3 znaki (max. 200)" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Nazwa lokalizacji jest wymagana." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Pole długości geograficznej zawiera nieprawidłową wartość." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Wartość długości geograficznej musi zostać podana. Proszę zaznacz ja na mapie." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Proszę podaj prawidłowy adres email." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Adres email musi posiadać min 4 znaki (max 64)." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Imię musi zawierać min 3 znaki (max 100)." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Nazwisko musi zawierać min 3 znaki (max 100)." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Pole DATA DO zawiera nieprawidłowe dane." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Pole DATA DO zawiera nieprawidłowe dane (nie może być większe od dzisiejszej daty)." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Pole DATA DO zawiera nieprawidłowe dane (nie może być większe od dzisiejszej daty)." diff --git a/application/i18n/po/po-pl_PL/reporters.po b/application/i18n/po/po-pl_PL/reporters.po new file mode 100644 index 0000000000..1b7d9698e0 --- /dev/null +++ b/application/i18n/po/po-pl_PL/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Szerokość geograficzna nie zawiera poprawnej wartości?" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Szerokość geograficzna jest wymagana. Kliknij na mapie aby wskazać odpowiednią lokalizację." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Stopień Reportera nie zawiera odpowiedniej wartości" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Stopień Reportera nie zawiera odpowiedniej wartości" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Nazwa lokalizacji musi się składać z minimu 3 znaków a maksymalnie z 200" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Nazwa lokalizacji jest wymagana." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Długość geograficzna nie zawiera poprawnej wartości" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Długość geograficzna jest wymagana. Kliknij na mapie aby wskazać odpowiednią lokalizację." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Nieprawidłowy reporter" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Nieprawidłowy reporter" diff --git a/application/i18n/po/po-pl_PL/reports.po b/application/i18n/po/po-pl_PL/reports.po new file mode 100644 index 0000000000..aa1386557e --- /dev/null +++ b/application/i18n/po/po-pl_PL/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Kaja Polachowska , 2012 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Proszę sprawdzić, czy zaznaczono element" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Proszę sprawdzić, czy zaznaczono element" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Raporty muszą zostać przypisane do jednej z kategorii, by zostały zaakceptowane." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Nie masz uprawnień do wykonania tej czynności." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Wybierz plik, który chcesz przesłać " + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Przesyłany plik musi być w formacie .csv lub .xml " + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "W polu przesyłania plików nie znajduje się żaden poprawny plik" diff --git a/application/i18n/po/po-pl_PL/roles.po b/application/i18n/po/po-pl_PL/roles.po new file mode 100644 index 0000000000..0a94daa05d --- /dev/null +++ b/application/i18n/po/po-pl_PL/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Opis musi mieć od 3 do 100 znaków" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Proszę podać opis" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Nazwa może zawierać tylko litery lub liczby" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Pole nazwy musi mieć od 2 do 30 znaków" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Rola SuperAdmina nie może ulec zmianie" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Proszę podać nazwę" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Poziom dostępu musi być liczbą z zakresu 0-100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Poziom dostępu musi być liczbą z zakresu 0-100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Uprawnienia muszą być liczbą z zakresu 0-100." diff --git a/application/i18n/po/po-pl_PL/settings.po b/application/i18n/po/po-pl_PL/settings.po new file mode 100644 index 0000000000..6942481b03 --- /dev/null +++ b/application/i18n/po/po-pl_PL/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Lidia Cibor , 2013-2014 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-04-30 18:38+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Pole \"zezwalaj na komentarze\" zawiera nieprawidłową wartość." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Pole \"zezwalaj na komentarze\" jest wymagane." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Pole \"uwzględnij kanał\" zawiera nieprawidłową wartość." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Pole \"uwzględnij kanał\" zawiera nieprawidłową wartość." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "Pola kategorii RSS raczej nie zawierają poprawnej wartości." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Pole kategorii treści RSS jest wymagane." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Pole \"zezwalaj na alerty\" zawiera nieprawidłową wartość." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Pole \"zezwalaj na alerty\" jest wymagane." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Pole \"zezwalaj na raporty\" zawiera nieprawidłową wartość." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Pole \"zezwalaj na raporty\" jest wymagane." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Pole \"udostępnianie statystyk\" zawiera nieprawidłową wartość." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Pole \"udostępnianie statystyk\" jest wymagane." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Domyślna liczba rekordów do dostarczenia na zapytanie do API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maksymalna liczba rekordów do dostarczenia na zapytanie do API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maksymalna liczba zapytań do API na jeden adres IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Pole \"Aksimet\" zawiera nieprawidłową wartość." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Pole Akismet nie zawiera poprawnej wartości" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Baner strony nie zawiera obrazka w obsługiwanym formacie. Użyj pliku .JPG, .GIF lub .PNG" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Upewnij się proszę, że obrazek na baner jest mniejszy niż 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Pole z banerem strony zawiera nieprawidłowy format obrazka." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Pole \"pamięć podręczna\" jest wymagane." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Pole \"pamięć podręczna\" zawiera nieprawidłową wartość." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Pole \"czas przechowywania pamięci podręcznej\" zawiera nieprawidłową wartość." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Pole \"czas przechowywania pamięci podręcznej\" jest wymagane." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Serwer nie jest przystosowany do przyjaznych URL. W przypadku Apache, musisz włączyć rozszerzenie mod_rewrite." + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Włącza używanie \"przyjaznych URL\" (bez index.php)" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Aktywuj przyjazne adresy URL" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Przyjazne URLe" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Pole \"Clickatell API\" może zawierać maksymalnie 20 znaków." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Pole \"Clickatell API\" jest wymagane." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Hasło Clickatell musi mieć co najmniej 5 i nie więcej niż 50 znaków." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Hasło Clickatell jest wymagane." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Nazwa użytkownika Clickatell może zawierać maksymalnie 50 znaków." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Nazwa użytkownika Clickatell jest wymagana." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Konfiguracja mapy" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Domyślna lokalizacja" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Pole \"kolor\" zawiera nieprawidłową wartość." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Pole \"kolor\" może zawierać maksymalnie 6 znaków." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Pole \"kolor\" jest wymagane." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Domyślny widok mapy" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Domyślny poziom zoomu" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Pobierz miasta z Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Pole \"port serwera poczty\" jest wymagane." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Pole \"port serwera poczty\" może zawierać wyłącznie liczby." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Pole \"hasło serwera poczty\" musi mieć co najmniej 5 i nie więcej niż 50 znaków." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Pole \"hasło serwera poczty\" jest wymagane." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Pole \"port serwera poczty\" jest za długie." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Pole \"port serwera poczty\" może zawierać wyłącznie liczby." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Pole \"port serwera poczty\" jest za długie." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Pole \"typ serwera poczty\" jest wymagane." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Pole \"nazwa użytkownika poczty\" może zawierać maksymalnie 50 znaków." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Pole \"nazwa użytkownika poczty\" jest wymagane." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opcje Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Aby uzyskać informacje, utwórz nową aplikację Facebook na" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Te ustawienia umożliwiają logowanie się użytkowników za pomocą kont Facebooka. Ustawienia nie są tożsame z utworzeniem aplikacji da strony.l" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Pole \"Google Analytics\" musi zawierać prawidłowy Web Property ID w formacie UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Włącz HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Ta opcja umożliwia dostęp do Ushahidi z użyciem zwykłego protokołu HTTP." + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Ta opcja umożliwia dostęp do Ushahidi z użyciem bezpiecznego protokołu HTTPS." + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Pole \"liczba elementów na stronie (Front-end)\" zawiera nieprawidłową wartość." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Pole \"liczba elementów na stronie (Front-end)\" jest wymagane." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Pole \"liczba elementów na stronie (Panel administracyjny)\" zawiera nieprawidłową wartość." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Pole \"liczba elementów na stronie (Panel administracyjny)\" jest wymagane." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Wybór dostawcy map jest prosty. Wybierz dostawcę, zdobądź API key jeśli jest wymagany i wpisz go tutaj." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Poziom zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Wybierz dostawcę map" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Podaj nowy klucz API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Zdobądź klucz API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Wybór dostawcy map jest prosty. Wybierz dostawcę, zdobądź API key jeśli jest wymagany i wpisz go tutaj." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Dostawca map" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Oś czasu mapy" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Ustawienia mapy" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Instance Span Multiple Countries" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Wybierz domyślny kraj" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Kliknij i przeciągnij, by ustawić właściwą lokalizację" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Grupuj raporty na mapie" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Zezwalaj użytkownikom na komentowanie raportów" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Umieść kanał RSS na stronie" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Utwórz nową kategorię z wpisów RSS." + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Zezwalaj użytkownikom na subskrypcję alertów" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Zezwalaj użytkownikom na zgłaszanie raportów" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Klucz Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Banner strony" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Bloków na wiersz" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Przechowuj strony w pamięci podręcznej" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Czas przechowywania w pamięci podręcznej" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Włącz check-in" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Nota copyrightowa strony" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Domyślny kolor dla wszystkich kategorii" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Domyślna ikona dla wszystkich kategorii" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Skasuj banner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Skasuj domyślną ikonę" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Wyświetl stronę \"Kontakt\"" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Wyświetl stronę \"Jak pomóc?\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Adres e-mail do alertów" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Aby otrzymywać raporty na e-mail, skonfiguruj swoją skrzynkę." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Adres e-mail strony" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Liczba elementów na stronie (Front-end)" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Liczba elementów na stronie (panel administracyjny)" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Zwalczaj spam za pomocą Akismet od Automattic.
Możesz otrzymać API Key przez rejestrację na wykorzystując konto WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Dane dostępu do Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Strona Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Język strony" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Manualna akceptacja użytkowników" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Wiadomość strony" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nazwa strony" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Prywatna instalacja?" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Wymagać potwierdzenia adresu e-mail?" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Wiadomość przy wysyłaniu raportów" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Share Site Statistics in API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Podpis strony" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Strefa czasowa" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Ustawienia Strony" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Wyszukiwane frazy na Twitterze" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtagi - odseparuj przecinkami" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Lokalizacja wpisów RSS - Nazwa użytkownika z Geonames" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Adres e-mail strony jest nieprawidłowy." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Adres e-mail strony musi zawierać co najmniej 4 i nie więcej niż 100 znaków." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Nazwa strony musi mieć co najmniej 3 i nie więcej niż 50 znaków." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Nazwa strony jest wymagana" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Podpis strony musi zawierać co najmniej 3 i nie więcej niż 100 znaków." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Podpis strony jest wymagany." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Numer API Clickatell" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Sprawdź balans na koncie Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Załaduj balans kredytowy" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Hasło Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Zarejestruj się w Clickatell klikając tutaj" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Wpisz swoje dane dostępowe do Clickatell poniżej" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Nazwa użytkownika Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS to oprogramowanie na licencji Open Source umożliwiające wysyłanie i odbieranie SMSów od dużej grupy ludzi za pomocą telefonów komórkowych. Pobierz najnowszą wersję FrontlineSMS z frontlinesms.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Pobierz i zainstaluj FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Dokładne instrukcje jak odbierać SMSy znajdują siętutaj. URL i Klucz API są konieczne do uruchomienia synchronizacji FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Skopiuj i wklej to do pola adresu FrontlineSMS." + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Skopiuj to i wklej do pola klucz API Ushahidi w FrontlineSMS" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Trwa łączenie z FrontlineSMS" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Numery(y) telefonów FrontlineSMS" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Wpis numer bez znaków + i - poniżej" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Opcja 1: Użyj FrontlineSMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Opcja 2: Użyj globalnej bramki SMS" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Ustawienia SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Pole \"telefon 1\" zawiera nieprawidłową wartość." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Pole \"telefon 1\" może zawierać wyłącznie liczby." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Pole Telefon #2 jest za długie" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Pole Telefon #2 powinno zawierać tylko cyfry" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Pole Telefon #3 jest za długie" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Pole \"telefon 3\" może zawierać wyłącznie liczby." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Ustawienia konfiguracji konta Twitter." + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Aby pobrać tutaj dane ustaw jako nową aplikację Twittera na" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Klucz klienta" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Tajny klucz klienta" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Klucz dostępu" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Tajny klucz dostępu" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Testuj ustawienia" diff --git a/application/i18n/po/po-pl_PL/sharing.po b/application/i18n/po/po-pl_PL/sharing.po new file mode 100644 index 0000000000..22b70ce880 --- /dev/null +++ b/application/i18n/po/po-pl_PL/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Data wejścia" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Data dodania" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Ostatnie wejście" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Pole koloru musi mieć co najmniej 6 znaków." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Pole koloru jest wymagane." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Nazwa " + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Nazwa Udostępniania jest wymagana." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Adres URL strony już istnieje" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Adres URL jest niepoprawny" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Adres URL strony jest wymagany." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Adres strony jest niepoprawny" diff --git a/application/i18n/po/po-pl_PL/stats.po b/application/i18n/po/po-pl_PL/stats.po new file mode 100644 index 0000000000..7e1aabbc4e --- /dev/null +++ b/application/i18n/po/po-pl_PL/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Zaakceptowane" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategorie" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Siła Kategorii" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "To jest wykres liniowy dla raportów według kategorii w czasie. Przewiń w prawo by obejrzeć porównanie różnych kategorii. Najedź myszką, by uzyskać więcej informacji." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Wybierz zasięg czasowy" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Państwa" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Kraj" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Rozłóż na kraje" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "To jest sekcja statystyczna i niedługo będzie zawierała ogólny opis. Tymczasem możesz przejrzeć podkategorie korzystając z powyższych linków." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Błąd" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Słowniczek" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Podsumowanie" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Odsłony" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Całkowita liczba podstron, jakie odwiedzili goście tej strony" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Raporty" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Kategorie Raportów" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statystyki Raportów" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Status Raportów" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Karta raportów" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Statystyki Raportów" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statystyki nie ustawione" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 miesiąc" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 miesiące" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 miesięcy" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Wszystkie" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Niezaakceptowane" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "UU" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "The number of individuals coming to your instance; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Niepotwierdzone" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Potwierdzone" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Podsumowanie wizyt" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Wizyty" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Jako wizyta traktowane są odwiedziny unikalnego użytkownika, które nastąpiły w odstępie nie mniejszym niż 30 minut." diff --git a/application/i18n/po/po-pl_PL/tooltips.po b/application/i18n/po/po-pl_PL/tooltips.po new file mode 100644 index 0000000000..f9929bd333 --- /dev/null +++ b/application/i18n/po/po-pl_PL/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Lidia Cibor , 2013-2014 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Dodaje raport do dodatkowych kategorii. Jeśli wybierzesz kategorię nr 1 a raport jest przypisany do kategorii nr 2 to zostanie on w tym momencie przypisany jednocześnie do kategorii nr 1 i kategorii nr 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Zatwierdza (bądź nie) raport. Jeśli zostanie zatwierdzony, będzie widoczny publicznie." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Możesz przypisać odznakę, którą otrzyma użytkownik. Wybierz odpowiednią odznakę." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "To jest zakres czasu" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Jeśli chcesz aktywować powiadomienia tylko wtedy, gdy są używane pewne kategorie, możesz to zrobić w tym miejscu. Spowoduje to, że powiadamianie będzie aktywowane jeśli jedna z kategorii będzie w użyciu. Oznacza to, że jeśli wybierzesz kategorię nr 1 i kategorię nr 2 oraz dodasz raport do kategorii nr 2 i kategorii nr 3 to wpisze się on w wybrane filtrowanie, a powiadomienie zostanie uruchomione." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Jeśli wydarzenia przypisane są do konkretnych dni tygodnia, ustaw je tutaj. Pamiętaj, że ma to związek z ustawioną strefą czasową." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Treść e-mail." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Temat e-mail." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Można wybrać wyzwalanie akcji od jednego kanału, wybranych, lub wszystkich." + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nazwa użytkownika Twitter (lub lista nazw rozdzielona przecinkami). " + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Możesz pozostawić puste, jeśli nie chcesz sprawdzać słów kluczowych. W przeciwnym wypadku rozdziel słowa kluczowe przecinkami." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Do wyboru masz \"nigdzie\" lub konkretną lokalizację. Jeśli ją wybierzesz, zostaniesz poproszony aby narysować box dookoła tego terenu. Na przykład jeśli chcesz wyzwolić akcję, jeśli ktoś doda raport w Brazylii - wybierz \"konkretną lokalizację\" i narysuj box dookoła Brazylii. Możesz też rysować je mniejsze lub większe, wybór należy do Ciebie. Możesz też rysować wiele boxów jednocześnie." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Ten kwalifikator wyzwoli powiadamianie dla N kont, dla całej bazy użytkownika lub dla każdego z indywidualnych użytkowników. Możesz pozostawić to pole pustym, aby zignorować ten komunikat." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "To jest domyślny tytuł raportu." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Jeśli wszystkie powyższe kwalifikatory są spełnione, powiadamiacz zainicjuje odpowiedź. To zależy od akceptacji raportu przez użytkownika. Wybierz \"odpowiedź\" by aktywować dodatkowe opcje odpowiedzi wysyłanych użytkownikom." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Jeśli zaznaczysz \"Powiadamianie użytkownika\" wiadomość e-mail zostanie wysłana do tego, kto wykonał tę akcję. Jeśli wybierzesz przycisk radio będziesz mieć możliwość wpisania niestandardowych adresów e-mail. Jest to użyteczne jeśli pewne części mapy mają przypisane raporty, miejsca lub jakieś inne elementy." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Możesz wybrać wiele dni. Zależne od ustawionej strefy czasowej." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Wyzwalanie jest elementem konfiguracji akcji powiadamiających. Możesz w tym miejscu określić co się stanie jeśli ktoś doda raport, wykona jakąś akcję itp. Możesz też przefiltrować odpowiedzi do konkretnych akcji po ich wybraniu." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Możesz ustawić wywoływanie akcji przez wszystkich lub tylko wybranych użytkowników." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Określa, czy raport jest zweryfikowany czy nie." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Profile na tej stronie wykorzystują Gravatar. Aby zmienić, kliknij na obraz." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Rozdziel kolejne wartości przecinkami, np. Wartość 1, Wartość 2 itd." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Rozdziel kolejne wartości przecinkami, np. Wartość 1, Wartość 2 itd. Jeśli chcesz ustawić wartość domyślą, zakończ listę znakami ::" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Rozdziel kolejne elementy przecinkami, np. Element 1, Element 2 itd." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Zacznij pisać, aby utworzyć listę członków." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Temat Prywatnej Wiadomości" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Prywata Wiadomość" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Możesz wybrać kolor, który będzie używany w Twoim profilu publicznym i dla check-ins na mapie." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Twój adres email" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Twoja pełna nazwa (imie i nazwisko)" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Jeśli jest wypełnione, posłuży do zmiany hasła. Zostaw puste jeśli chcesz pozostawić dotychczasowe hasło." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Wymagane przy tworzeniu nowego użytkownika i będzie jego hasłem. Pamiętaj o poinformowaniu nowego użytkownika o konieczności zmiany hasła po pierwszym logowaniu." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Wybież TAK, jeżeli pragniesz uzyskiwać notyfikacje." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Twoje hasło (pozostaw to pole puste, jeżeli pragniesz aby pozostało niezmienione)" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Jeśli zaznaczysz tę opcję, Twój profil będzie widoczny dla każego w sieci." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Adres, pod którym można znaleźć profil publiczny." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Twoja nazwa użytkownika nie może być zmieniona" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Poziomy dostępu są używane dla kontroli dostępu do dodatkowych danych. Superadministrator ma najwyższy poziom równy 100, administrator - 90, członkowie - 10. Dane dostępne publicznie to poziom 0." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Adres e-mail, na który będą wysyłane raporty." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Zezwól użytkownikom na subskrypcje" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Agreguj podobne raporty do jednej kropki na mapie" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Zezwól na umieszczanie komentarzy na stronie głównej." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Zezwól na wyświetlanie kanałów RSS na stronie głównej." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Umożliwia tworzenie nowych kategorii z RSS." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Zezwól użytkownikom na wysyłanie informacji przez formularz." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Domyślna liczba wierszy dostarczana na zapytanie do API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maksymalna liczba wierszy dostarczana na zapytanie do API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maksymalna liczba zapytań do API na jeden adres IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Banner pokazuje się w górnej części strony głównej, jeśli Twój szablon pozwala na jego używanie. Rozmiar bannera zależy od szablonu. Pamiętaj, że banner zastępuje tytuł i podpis strony." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Liczba kolumn na każdy wiersz." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Włącz lub wyłącz pamięć podręczną. Zalecane do stron o dużym natężeniu ruchu - skraca czas ładowania." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Ustaw czas przechowywania pamięci podręcznej." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Włącza \"check-in\" na tej stronie. To jest uproszczony typ raportu, który nie jest moderowany przed upublicznieniem i wymaga odpowiedniej konfiguracji strony. Jeśli włączasz tą opcję, upewnij się, że strefa czasowa jest ustawiona na UTC i używany przez Ciebie szablon obsługuje check-in. Po włączeniu tej opcji dodatkowe szablony, wykorzystujące wyłącznie check-in, zostaną pokazane w panelu administracyjnym." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Ustaw mapę, by pokazywała właściwy obszar." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Przypisz jeden kolor wszystkim kategoriom." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Przypisz jedną ikonę wszystkim kategoriom." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Kraj, którego dotyczy strona." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Włącza lub wyłącza zakładkę \"Kontakt\"" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Włącza i wyłącza zakładkę \"Jak pomóc?\" na stronie głównej." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Liczba raportów wyświetlanych na stronie głównej" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Liczba raportów wyświetlanych na stronie w panelu administracyjnym" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Hub dla wiadomości" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Synchronizuje wiadomości z Ushahidi" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Numery telefonów do otrzymywania SMS" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Śledzi użytkowników strony i zbiera dokładne statystyki odwiedzin." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Ustawia język strony." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Gdy opcja zostanie ustawiona na \"Tak\", musisz akceptować każde nowo utworzone konto użytkownika." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Wskazuje, która mapa ma być używana na stronie." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Pokazuje oś czasu na podstawie daty i czasu nadesłania raportu" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Jeśli opcja zostanie ustawiona na \"Tak\", wyłącznie wyznaczeni użytkownicy będą mogli uzyskać dostęp." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Użytkownicy otrzymają link aktywacyjny zanim będą mogli używać Ushahidi." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Miejsce przechowywania e-mail" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Hasło skrzynki e-mail dla raportów." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Wymagane dla akceptacji połączeń przychodzących z adresu e-mail." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Wymagane dla bezpiecznego połączenia." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Wymagane do otrzymywania wiadomości e-mail z serwera." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "To jest adres e-mail, który otrzymuje raporty." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Statystyki są zbierane przez serwer kontrolowany prze Ushahidi. Jeśli włączysz tę opcję, zdobędziesz dostęp do statystyk bezpośrednio w panelu administracyjnym. " + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Czy inni mają mieć prawo ponownego wykorzystania tekstu, obrazów i wideo z tej strony? Aby dowiedzieć się więcej, odwiedź https://creativecommons.org/choose/" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "To jest adres e-mail, na który będą przychodziły raporty i wiadomości z formularza kontaktowego." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "To jest tekst, który pojawi się powyżej mapy na stronie głównej." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "To jest tytuł, który pokaże się na górze strony głównej." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "To jest wiadomość, która pokaże się przy zgłaszaniu raportu." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Wyjaśnij w kilku słowach, o czym jest ta strona." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Strefa czasowa strony. Ma wpływ na wszystkie akcje dokonywane na stronie, które wykorzystują datę i czas." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Hashtag Twitter, który będzie używany" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-pl_PL/ui_admin.po b/application/i18n/po/po-pl_PL/ui_admin.po new file mode 100644 index 0000000000..af7990e8a3 --- /dev/null +++ b/application/i18n/po/po-pl_PL/ui_admin.po @@ -0,0 +1,1660 @@ +# +# Translators: +# Lidia Cibor , 2013 +# Marek Pawelec , 2013 +# michalmacki , 2012 +# Milena Nowotarska , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-15 17:21+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Dostęp zabroniony." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Dostęp zabroniony." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Poziom dostępu" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Akcje" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Dodaj do kategorii" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "dodany" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "dodanie/edycja" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Dodatki" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrator" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alerty" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Otrzymane alerty" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Wszystkie" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonim" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Ktokolwiek" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Gdziekolwiek" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "Zablokowane API" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Logi API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Ustawienia API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Odbanuj" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Odbanuj wszystko" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "zaakceptowane" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Auto Akceptacja" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Akceptuj manualnie" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "zarchiwizowane" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Czy na pewno chcesz" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Czy na pewno chcesz skasować ten element?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Czy na pewno chcesz skasować to zdjęcie?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Czy na pewno chcesz przełączyć formularze?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Przypisz" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Przypisania" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Przyznaj odznakę" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email autora" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Powrót" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Zbanuj adres IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Pomiędzy momentami czasowymi" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloki" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Treść" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Anuluj" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategorie" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Wykres błędów" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Proszę zweryfikuj poprawność wiadomości" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Proszę zweryfikuje poprawność numeru" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Proszę zweryfikuje ustawienia SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Szczegóły check-in" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Check-in" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Miasta załadowane" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kod" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Wersja źródeł nieakutlana" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Kolor" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Komentarze" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Twój kod potwierdzenia notyfikacji alertów to: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Użytkownik został" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Liczba" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Kraj nie został znaleziony" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "utwórz/edytuj" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Utwórz alert" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Krytyczna aktualizacja" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Aktualnie aktywne" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Aktualnie nieaktywne" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Nie posiadasz uprawnień, aby edytować dodatkowe pola." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Dzienne" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Strona główna" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "baza danych" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data i czas" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Data dodania" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Data modyfikacji" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dni tygodnia" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Wersja bazy nieaktualna" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "skasowane" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Skasuj" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Usuń wszystkie raporty" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Skasuj odznakę" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Opis" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Wyłączony" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Początek" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Koniec" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Pobierz alerty" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Elementy listy rozwijanej" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "Edytowany" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Edytowane przez" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Edytuj" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Edytuj log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Wszyscy" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Błąd w geolokalizacji. Kod HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Biblioteka IMAP PHP nie jest zaktualizowana" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Nie masz uprawnień." + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Błąd" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Nastąpił błąd przy dodawaniu alertu" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Co sześć godzin" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Co dwanaście godzin" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Eksperymentalny" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "kanał" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Komentarze" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feedy" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista wyboru" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Domyślna wartość" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Typ danych" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "JavaScript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Kod HTML" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Liczba" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Tekst" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Wielkość (w wierszach)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Ukryte pole" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maksymalna liczba znaków" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nazwa pola" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Przełącz" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Nie" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Tak, domyślnie zamknięte" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Tak, domyślnie otwarte" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Nie mogłem odnaleźć wgranego pliku" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Nie mogłem otworzyć pliku" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ten formularz nie istnieje!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Pole tekstowe" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Pole daty" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Pole przełącznika" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Pole do zaznaczania" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Pole listy rozwijanej" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Od" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Od" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Błąd przekroczenia czasu (geonames)" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Pomoc" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Więcej szablonów" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Więcej wtyczek" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Akcje" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Dodaj/Edytuj" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Zarządzaj użytkownikami" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rola" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Użytkownik" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "pomoc" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Godzinowo" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Subskrypcja alertów" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Katalog instalacyjny nadal istnieje! Skasuj go - stanowi potencjalne zagrożenie bezpieczeństwa serwera" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instancja" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instancje" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Dane instancji" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Nieprawidłowy parametr" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Adres IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Czy to pole daty?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Kto może przeglądać odpowiedzi?" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Kto może wysyłać odpowiedzi?" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Słowo kluczowe" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Słowa kluczowe" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Adres email:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Pełna nazwa:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Hasło:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rola:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nazwa użytkownika:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Warstwy" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Wyloguj" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Logi" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Zarządzaj" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Zarządzaj rolami i uprawnieniami" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Zarządzaj użytkownikami" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Dodaj/edytuj użytkowników" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Zarządzaj listą publiczną" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Zaznacz jako" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "oznacz jako spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "oznacz jako spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "nie znaleziono żadnych dokumentów" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Wiadomość" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Wiadomości" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Wiadomości z Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Wiadomości Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Twoja wiadomość została wysłana." + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuta" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minut(y)" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Brakuje parametru" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "zmodyfikowane" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Zmień strefę czasową" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "przenieś do góry" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "przenieś w dół" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Wieloźródłowa instancja" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Moje alerty" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Moje check-in" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Mój profil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Moje rapory" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Oddanych głosów" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Pozytywny" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negatywny" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nazwa" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Nowy alert" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Utwórz nowy alert" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nowe hasło" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Nie" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "To jest kategoria specjalna, która nie jest widoczna przy zgłaszaniu raportów. Przechowuje raporty które wcześniej należały do kategorii, która została skasowana." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Powiadomienie" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Wielkość liter nie ma znaczenia." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Nie znaleziono" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Brak danych. Nie można wyświetlić rezultatów." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Nie stwierdzono błędu" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Żadnych rezultatów do wyświetlenia!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "z" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Na specyficzną liczbę" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "strona" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "strony" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Strona nie znaleziona" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Strona, którą próbujesz odwiedzić, nie istnieje. Jeśli prowadził do niej link z tej strony, skontaktuj się z nami aby problem mógł zostac rozwiązany.W przeciwnym wypadku zgłoś, skąd pochodził link." + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Strona, którą próbujesz odwiedzić, nie istnieje!" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Paramatry wykorzystywane" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Hasło" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Zresetuj hasło" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Drogi" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Otrzymaliśmy rządnie zresetowania hasła dla" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Aby zresetować hasło, kliknij łącze (bądź wkej je do przeglądarki)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Zgodnie z poleceniem, hasło zostało zresetowane." + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Zresetowanie hasła" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Proszę wybrać" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Dane nie zostały wysłane" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Podgląd" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Wiadomość" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Prywatne Wiadomości" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Prywatna Wiadomość wysłana" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Temat" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Do" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Lista publiczna" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Kwalifikacje" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "przeczytane" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Istotność" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Tytuł" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Data raportu" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Zgłaszający" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Poziom zgłaszającego" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Alerty" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Reputacja" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Wymagane" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Resetuj" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Odpowiedź" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Rezultaty" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Odrzuć" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Ten adres e-mail ma już przypisane konto w CrowdmapID. Użytkownik powinien użyć istniejącego hasła oraz loginu." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Zapisz ustawienia" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Szukaj" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Szukaj raportu" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "szukaj" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Klucz szyfrowania wciąż ma wartość domyślną. Trzeba go zmienić." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Strona jest serwowana przez otwarty HTTP. Powinno być ustawione HTTPS dla lepszego bezpieczeństwa." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instrukcje są dostępne na wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Wybierz oczekiwany format pliku dla pobieranych raportów:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Wybierz typ pola ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Wybierz element" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Musisz wybrać Trigger przed wyborem odpowiedzi." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Musisz włączyć Trigger przed zdefiniowaniem." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Nadawca" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Wyślij do" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Ta wiadomość została wysłana z " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Czas serwera" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Ustawienia" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Strona" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Rezultaty" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "pokazany" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Kategoria Specjalna" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "To jest kategoria specjalna, której nie można wybrać zgłaszając raport. Używana w powiązaniu z \"Zaufanymi zgłaszającymi\"" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Specyficzny obszar" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Stan" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statystyki" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statystyki" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Nie udało się zebrać statystyk, spróbuj później" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Zbieranie statystyk nie powiodło się!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Specyficzne dni" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Przedmiot" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Superadministrator" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Zadanie wykonane" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Pole tekstowe" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nazwa" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Zarządzaj Użytkownikami" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Błąd, przekroczono limit czasu." + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "do" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Całkowita liczba wpisów" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "do" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Tłumacz alerty" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Użytkownik który wywołał Trigger" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Triggery" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "niezaakceptowane" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Nieznany" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Nieznany błąd" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "nieprzeczytany" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Nie będziesz już otrzymywać alertów od" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Kliknij tutaj aby uaktualnić" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Aktualizuj Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Postęp aktualizacji Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Upload akcji" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Użytkownik" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Użytkownicy" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Zweryfikowane/Niezweryfikowane" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Weryfikuj/Odwołaj weryfikację" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Wersja" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " jest nowa wersja do uaktualnienia." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Kodowanie wideo" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Prywatne Wiadomości" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Wyświetl stronę" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Zobacz raport" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Witaj, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Tak" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Twoje wyszukiwanie" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Kliknięcie w poniższy przycisk usunie WSZYSTKIE raporty z bazy danych. Operacji nie będzie można cofnąć." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Zalecamy utworzenie kopii zapasowej bazy danych przed rozpoczęciem działania" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Jestem pewny że chcę skasować wszystkie %s raporty(ów) z bazy danych." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Na pewno usunąć wszystkie raporty?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Żadne raporty nie zostaną usunięte." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Liczba logowań." + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Ostatnie logowanie" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Potwierdzić to konto?" diff --git a/application/i18n/po/po-pl_PL/ui_main.po b/application/i18n/po/po-pl_PL/ui_main.po new file mode 100644 index 0000000000..e044bafed8 --- /dev/null +++ b/application/i18n/po/po-pl_PL/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# Kaja Polachowska , 2012 +# Lidia Cibor , 2013-2014 +# Marek Pawelec , 2013 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Informacje" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Dostęp" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limit dostępu" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nazwa konta" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Akcje" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Czy potwierdzasz akcję (nie będzie później odwrotu)?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktywuj" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktywny" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Dodaj" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Dodane przez" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dodatkowe dane" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Dodatkowe akcje" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Dodaj/Edytuj" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Dodaj pole" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Dodaj język" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Dodaj nowy" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Dodaj nową kategorię" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Dodaj tłumaczenie" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administracja" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Zamów alerty" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Powiadom mnie, jeśli zostanie wysłany raport z obszaru:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Zapisz mój alert" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Adres email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "podaj adres email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "podaj numer telefonu z kodem kraju (+48)" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Zamów alerty" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Alert raporty" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Telefon:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Albo umieść maker na mapie, a my powiadomimy Cię, jeżeli zostanie zgłoszony raport w obrębie wybranego przez Ciebie promienia." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Jeśli nie możesz znaleźć swojej lokalizacji, wybierz na mapie poprawną." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS ze wszystkimi alertami:" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Wybierz miasto" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Krok 1: Wybierz miasto bądź lokalizację:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Krok 2: Alerty mają być wysłane na adres:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Krok 3 (Optional): Wybierz kategorie" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Jeżli otrzymałeś już kod weryfikacyjny - kliknij tutaj aby potwierdzić swoje zgłoszenie." + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Twój alert został zachowany" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Wszystkie" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Dozwolone" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Dozwolone tagi HTML-a: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Ramki iframe dozwolone tylko z %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Wszystkie kategorie" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Dowolny czas" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "i" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Zatwierdź" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Zatwierdzone" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Zatwierdzone Raporty" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Zatwierdź ten Raport" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Przybliżony" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Zarchiwizuj" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Zarchiwizowane" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Rosnąco" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "w" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Automatyczny check-in" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Średnio Raportów Dziennie" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Oczekujące akceptacji" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Oczekujące weryfikacji" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Odznaka" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Odznaki" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Obraz odznaki" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Lub załaduj własny obraz odznaki:" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Zestaw odznak" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Wybierz odznakę" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Przeglądaj profile" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Anuluj" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategorie" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategoria" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtr kategorii" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategoria została " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nazwa kategorii" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Zmień zakres czasu" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Zmień hasło" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Zmień obraz" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Wybierz" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Wybierz punkty do pobrania" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Lub wybierz własny zakres czasu" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Wybierz rodzaj pola" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Przyjazne URLe" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Wyczyść" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Wyczyść mapę" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Zamknij" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "klastry" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Kolor" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Komentarz" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Komentarze" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Treść komentarza" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Ustawienia zostały zapisane!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Skonfiguruj" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Adres e-mail został prawidłowo potwierdzony, możesz się zalogować!" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "E-mail został potwierdzony! Administrator musi jednak zaakceptować Twoje konto zanim będzie można się na nie zalogować" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Potwierdzenie adresu nie powiodło się. Możesz spróbować jeszcze raz." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontakt" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Kod bezpieczeństwa" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Adres email" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Wiadomość" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Twoja wiadomość została wysłana!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Imię" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Numer kontaktowy" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Wyślij wiadomość" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Tytuł" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2009-2010 Ushahidi.com. All Rights Reserved." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Stwórz" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Stwórz/Edytuj" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Dodaj nowy" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Utwórz nowe hasło" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Dodaj raport" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Wiarygodność" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Aktualne hasło" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Pola użytkownika" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informacje" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/rrrr)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data i czas" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dzień" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deaktywuj" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Warsaw, Poland" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Skasuj" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Skasowane" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Kasuje" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Kasowanie wyłączone" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Skasuj ostatni" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Skasuj ten raport" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Skasuj zaznaczone" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Skasuj Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Opis" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Malejąco" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Przykład: Skrzyżowanie Puławskiej i Goworka, Warszawa" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Szczegóły" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Bezpośredni Raport" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Wyłączone" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Usuń akceptację" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Pobierz raporty" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Pobierz" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Edytuj" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Edytuj pola formularza" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Edytuj raport" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Adres Email" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Ustawienia serwera pocztowego" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Host serwera poczty" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Hasło serwera poczty" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port serwera poczty" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Obsługa SSL serwera poczty" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Typ serwera poczty" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nazwa użytkownika poczty" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Twoje ustawienia zostały skojarzone ze skrzynką" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "W celu uzyskiwania raport przez email, proszę wprowadź dane swojego konta email. " + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Niektóre serwery wymagają pełnego adresu email" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Hasło do konta email" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Popularne porty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Przykłady: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Przykłady: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Włączy lub wyłącz połączenia SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---PUSTY---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "do" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Błąd!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Przykład" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Polska" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Zewnętrzne aplikacje" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Zewnętrzne wideo" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Źródło" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Wyślij swoją opinię" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Daj nam znać jak Ci się używa Ushahidi poprzez wysłanie emaila na" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Źródła" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Źródła zostały" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Elementy RSS" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nazwa źródła" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Adres RSS" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Pole nieużywane" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Plik" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Rozmiar pliku jest za duży!" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtry" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtruj" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtruj według" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtruj zawierające" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Znajdź" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Znajdź lokalizację" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Imię" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Uruchom Scheduler" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Zapomniałeś hasła?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formularz" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formularze" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Opis formularza" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Edytuj formularz" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Formularz został" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Tytuł formularza" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Od" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Imię i nazwisko" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Dostępne dane Geolokalizacyjne" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Kolor" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Komentarze" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etykieta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Grubość linii" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Idź" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Został" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Chcę pomóc" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Ukryty" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Schowaj" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ukryj tę wiadomość" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Strona główna" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Jak zgłaszać raporty" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Używane, by zidentyfikować Ciebie na tej stronie." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Obraz" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Zdjęcia" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Obraz/Ikona" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "NIeaktywne" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Skrzynka odbiorcza" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Zdarzenie" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Zdarzenia w pobliżu" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Lokalizacja zdarzenia" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Dołącz" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Podaj kategorię" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Dołącz pola użytkownika" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Podaj opis" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Podaj jak najwięcej szczegółów" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Podaj szerokość geograficzną" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Podaj dane lokalizacji" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Podaj długość geograficzną" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Dołącz dane personalne" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Media przychodzące" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Ewaluacja Informacji" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Podaj swoją dokładną lokalizację" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Twoje konto nie posiada uprawnień do prawidłowego zalogowania. Proszę skontaktować się z administratorem." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "W odpowiedzi na" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Adres IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Czy to Twój profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "element" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elementy" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Szczegóły elementu" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Tytuł elementu" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Klucz" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Wyrazy kluczowe" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Plik KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Dodaj plik KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Język" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Ostatni" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Ostatni miesiąc" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Nazwisko" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Ostatni rok" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Szerokość geograficzna" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Warstwy" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Inne warstwy" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Warstwa została" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nazwa warstwy" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL warstwy" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Dodaj komentarz" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Mniej informacji" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Poziom" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Ten poziom został" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nazwa poziomu" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limit" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Ładowanie" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Lokalizacja" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Lokalizacje" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Miasto, stan i/lub kraj" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Konto utworzone! Możesz się zalogować." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Potwierdzenie zostało wysłane na podany adres e-mail." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Konto zostało utworzone. Musi zostać zatwierdzone przez admina, zanim będzie można się na nie zalogować." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Ten adres nie istnieje lub nie działa. Spróbuj zarejestrować się z użyciem innego adresu." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Kliknij Twojego dostawcę konta" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Zaloguj przez" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email i hasło" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Zarejestruj się" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Utwórz konto" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Dziękujemy za rejestrację %1$s. Aby potwierdzić swój adres e-mail, kliknij tutaj: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Potwierdzenie rejestracji" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Nowy użytkownik założył konto jako %1$s. Żeby zaakceptować jego rejestrację przejdź do tego adresu: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Akceptacja nowych użytkowników" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Twoje konto zostało zaakceptowane przez %1$s. Żeby się zalogować przejdź do tego adresu: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Konto użytkownika zostało zatwierdzone" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Utwórz konto, aby w pełni wykorzystać możliwości tej strony." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Długość geograficzna" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Oznacz jako przeczytane" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Oznacz jako nieprzeczytane" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maksymalny rozmiar pliku" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Multimedia" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtr mediów" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Członkowie" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Zarządzanie kontem" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Wiadomość" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Wiadomości" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Treść wiadomości" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Wiadomość z źródła nie-cyfrowego:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobilny" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modyfikuj" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modyfikuj datę" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "miesiąc" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Więcej" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Więcej informacji" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Czy ta instancja Ushahidi wspiera wiele krajów" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Musisz potwierdzić swój adres e-mail by uzyskać dostęp. Jeśli wiadomość z potwierdzeniem zginęła, możesz uzyskać nową poniżej." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nazwa" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Raport w pobliżu" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nowy" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Newsy" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Źródła wiadomości" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Źródła newsów" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nowa kategoria" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nowe hasło" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nowy raport" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Następny" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nie" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Brak check-in do wyświetlenia." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Brak danych" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Brak" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Powiadomienia" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Nie zaakceptowane" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Nie zaakceptowane" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Nie zaznaczony---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "nie spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Nie sprecyzowany" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Brak raportów" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nie ma rezultatów" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Wyłączony" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Wiadomości" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Włączony" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opcja" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcjonalny" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opcje" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organizacja" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizacje" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Opis organizacji" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email organizacji" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organizacja została" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nazwa organizacji" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telefon organizacji" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Drugi telefon do organizacji" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Adres www organizacji" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Oryginalne" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Opis" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Tytuł" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Inne instancje ushahidi" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Elementy wysłane" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Elementy wychodzące" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Strona" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Strony" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Opis strony" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Strona została" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Tutuł strony" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Tytuł strony" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Kategoria nadrzędna" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Hasło" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Powtórz hasło" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Hasło zmienione poprawnie! Zaloguj się poniżej." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Zapomniałeś hasła?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Sprawdź swój email w celu uzyskania nowego hasła" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Pozostań zalogowany na tym komputerze" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Ostatni miesiąc" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Ostatni rok" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Oczekujące" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "na" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informacje dodatkowe Opcjonalne." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Zdjęcia" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Zdjęcia" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Zdjęcia i video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Wyszukaj lokalizację (podając nazwę miejscowości lub wpisując kod pocztowy np.: Polska,00-581), bądź wskaż ją na mapie" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Graj" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Proszę zanotuj" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Wtyczki" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Strona wtyczki" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Profil publiczny" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL profilu publicznego" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Podgląd" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Podgląd" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Podgląd wiadomości" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Poprzedni" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Prywatny" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Kolor profilu" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Twój profil został zapisany" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Statystyki" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Ocena" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Przeczytane" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Otrzymane" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Otrzymane od" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Otrzymuj powiadomienia" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Otrzymane Raporty" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Odśwież źródła newsów" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Zarejestrowany e-mail" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "usuń" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Odpowiedz" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Raport" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Raporty (z mapy, kolejność chronologiczna)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Zgłaszający" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Zgłaszający" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Data zgłaszającego" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email zgłaszającego" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Imię zgłaszającego" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Zgłaszający został" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP Zgłaszającego" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Nazwisko Zgłaszającego" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Poziom Zgłaszającego" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Poziomy Zgłaszających" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefon Zgłaszającego" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Raporty" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Przeglądaj" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Wyślij" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Raporty tego użytkownika" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategorie" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d raportów" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Opis" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Raporty zostaną pobrane w formacie CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Właściwości" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Znajdź lokalizację w pobliżu" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Imię" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Nazwisko" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Określ nazwę lokalizacji" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Źródło wiadomości" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informacje dodatkowe" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Dodaj zdjęcia" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Powróć do strony z raportami" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Wybierz miasto" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Twoje zgłoszeni zostało dodane i oczekuje akceptacji. Nasz zespół skontaktuje się z Tobą jeżeli będzie to konieczne." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Wyślij nowy raport" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Czas" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "linia czasu" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Tytuł raportu" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Link do video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Dodaj raport" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Szczegóły raportu" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Przez wysłanie wiadomośći do" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Przez wysłanie emaila do " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Na Twitterze dodaj tag " + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Przez wysłanie niniejszego formularza" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Używając aplikacji" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Twój Raport został wysłany" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Tytuł Raportu" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Poproś o więcej informacji" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Poproś o lokalizację" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Wymagane" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Wymagania" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Ponownie wyślij" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Zresetuj" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Zresetuj wszystkie filtry" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Zresetuj hasło" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Pobierz nazwy miast z wybranego kraju" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Konta zarządzane przez usługę %s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Już posiadasz konto CrowdmapID! By się zalogować, spróbuj użyć swojego adresu e-mail CrowdmapID i hasła." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rola" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Zapisz" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Zapisane" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Zapisz i dodaj nowe" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Zapisz i zamknij" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Zapisz raport" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Harmonogram" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Scheduler" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dzień" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Godzina" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Log Schedulera" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuta" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Dzień Tygodnia" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Szukaj" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Wyniki wyszukiwania" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Kod bezpieczeństwa" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Wybierz wszystko" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Wybierz rodzaj pola" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Wybierz rodzaj formularza" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Wybierz na mapie" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Wybierz wszystkie wymagane" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Zweryfukuj czy wybrałeś" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Wybierz temat" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Wyślij" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Wyślij potwierdzenie" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Wyślij do" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Wysłane" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Wysłane przez" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adres serwera" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Typ serwera" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Usługa" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nazwa użytkownika" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID nazwy użytkownika" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Udostępnij" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Dane udostępniane" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Udostępnianie zostało" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Udostępnianie" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Niższa mapa" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Pokaż" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Pokaż wszystkie" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Pokaż wiadomości" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Pokazuje raporty od %1$s do %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Strona" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "adres email strony" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mniejsza mapa" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Nie masz w tej chwili żadnych odznak." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Źródło" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nazwa źródła" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sortuj" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sortuj według" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL źródła" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL wspierany?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Od" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Krok" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Dodaj raport" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Wysłane przez %1$s za pomocą %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Zgłoś przez SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Wyślij SMS do" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "na telefon" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Powiodło się!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Zaimportowane z sukcesem" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Nazwisko" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Ankieta" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "System" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Wyższa mapa" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Port TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Szablony" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Domyślny szablon Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Ustawienia szablonu" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Ten" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Dzisiaj" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Ten miesiąc" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Ten tydzień" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Ten rok" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "To jest Twój profil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "czas" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Tytuł" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "do" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Dziś" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Dziś o" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Wszystkich Raportów" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Przetłumaczone" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Przetłumaczone Opisy" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Przetłumaczony tytuł" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Przetłumacz na" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Tłumaczenie" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Tłumaczenie zostało zapisane" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Zaufany" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Typ" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Nie można wysłać wiadomości!" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Bez kategorii" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Brak nieprzeczytanych" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Niezweryfikowane" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Uaktualnij źródła" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Dodaj" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Zobacz przewodnik wysyłania raportów:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Przewodnik wysyłania XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Przewodnik wysyłania CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Plik do wgrania" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Wgraj raporty" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Niestandardowe pola kolumn muszą posiadać pole form_id. Np. pole Test, w standardowym formularzu, którego ID to 1 powinno prezentować się jako Test-1. Upewnij się czy tak jest podczas importowania formularza." + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Za pomocą poniższego formualrza możesz importować zdarzenia do silnika Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Raporty muszą być wysłane w formacie CSV lub XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Gdy ID zdarzenia istnieje już w systemie, wpis z pliku CSV/XML zostanie pominięty." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Plik musi zawierać co najmniej Tytuł Zdarzenia i Datę" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Jeśli nie podasz współrzędnych, lokalizacje zostaną ustalone za pomocą usługi geokodowania Google" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Jeżeli importujesz dodatkowe informacje, takie jak dane personalne lub pola użytkownika" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Co najmniej jedno z pól danych personalnych (imię, nazwisko, email) MUSI być wypełnione. Puste rekordy zostaną pominięte" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Twoje wpisy dla pól formularza zgadzają się z konfiguracją formularza w Twojej instalacji." + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Opcje do zaznaczenia powinny być rozdzielone przecinkami." + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Wartości pól daty powinny być w formacie: mm/dd/rrrr" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Przykładowy Raport CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",TAK,TAK" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Poznań\",\"Radość kibiców Lecha\",\"PROPERTY LOSS, \",TAK,NIE" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Dodawanie powiodło się" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Załaduj wideo" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Użytkownik" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nazwa użytkownika" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Admin Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Weryfikacja" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Zweryfikowane" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Zweryfikowane raporty" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Zweryfikuj" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Weryfikuj ten raport" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Wersja" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "przez" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Wideo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Pokaż" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Odsłony" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Pokaż wszystkie" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Pokaż wszystkie feedy" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Pokaż wszystkie raporty" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Pokaż elementy" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Zobacz więcej" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Obejrzyj profil publiczny" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Pokaż raport" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Pokaż raporty" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Zobacz wideo" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Widoczne" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Oczekujące akceptacji" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Oczekujące weryfikacji" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Szersza mapa" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formularz" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Sieć" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Ciężar" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Tak" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Wczoraj" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Twoja konsola" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Twój plik" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Przybliż" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Oddal" diff --git a/application/i18n/po/po-pl_PL/upgrade.po b/application/i18n/po/po-pl_PL/upgrade.po new file mode 100644 index 0000000000..b1565aa5cb --- /dev/null +++ b/application/i18n/po/po-pl_PL/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Lidia Cibor , 2013 +# michalmacki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Nieprawidłowe dane. 0 to Nie a 1 to Tak." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatyczna Aktualizacja" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Dostępne uaktualnienia" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Kontynuuj" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Aktulizacja" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Aktualizacja bazy danych z wersji" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "do najnowszej wersji bazy danych" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Kliknij przycisk \"Aktualizacja\" i zrelaksuj się :) " + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Jeśli chcesz wykonać kopię bazy danych, zaznacz poniższe pole wyboru." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Wykonać kopię zapasową bazdy danych przed aktyalizacją? " + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Aktualizacj bazy danych Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi został zaktualizowany! Przed kontynuacją musisz zaktualizować bazę danych do najnowszej wersji (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Wersja bazy danych jest już aktualna." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Aktualizacja nie powiodła się" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Manualna Aktualizacja" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Postęp aktualizacji Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "The instructions below details how to manually upgrade your Ushahidi instance" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Krok 1: Pobierz najnowszą wersję Ushahidi z http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Krok 2: Depending on the operating system running the webserver, use your preferred tool/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. All EXCEPT:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Krok 3:Zajrzyj do katalogu sql. Uruchom plik -.sql poczynając od obecnej wersji bazy danych do ostatniego pliku sql z aktualizacją." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Aby uruchomić automatyczną aktualizację kliknij poniższy przycisk." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Kliknij poniżej, aby zaktualizować automatycznie." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Aktualnie używasz Ushahidi v%1$s, z bazą danych w wersji %2$d działającą na %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Aktualizaja" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Aby kontynuować prostą aktualizację, następujące informacje są potrzebne dla serwera FTP na którym utrzymywana jest Twoja strona." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "Nazwa hosta FTP:" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Hasło FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nazwa użytkownika FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Ta wersja Ushahidi jest najnowsza." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Aktualizacja nie wymagana." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Wersja bazy danych: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Uwaga: Wersja oprogramowania w pliku version.php różni się od zapisanej w bazie danych." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Uwaga: Wersja bazy danych w pliku version.php różni się od zapisanej w bazie danych." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Baza danych:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Pobieranie najnowszej wersji Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Plik logu" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Prawidłowo pobrano, trwa rozpakowywanie.." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Nie pobrano!" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Prawidłowo rozpakowano, kopiowanie plików..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Nie rozpakowano!" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Prawidłowo skopiowano, aktualizacja bazy danych..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Nie skopiowano plików!" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Stworzono kopię bazy danych i zaktualizowano do najnowszej wersji." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Nie utworzono kopii zapasowej!" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Zaktualizowano bazę danych." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Kasowanie plików tymczasowych..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "AKTUALIZACJA ZAKOŃCZONA. Szczegóły zawiera Log File" diff --git a/application/i18n/po/po-pr_US/alerts.po b/application/i18n/po/po-pr_US/alerts.po new file mode 100644 index 0000000000..cdf5385e0c --- /dev/null +++ b/application/i18n/po/po-pr_US/alerts.po @@ -0,0 +1,203 @@ +#. extracted from en_US/alerts.php, pr_US/alerts.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "This is a test" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "That Email address has already been registered to receive alerts for that location." +msgstr "Harrr!" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "This deployment spans within one country only. Please make sure the alert location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "That Mobile Phone Number has already been registered to receive alerts for that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "The Mobile Phone field does not appear to contain a valid phone. Please input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Yarr! Ye can't make a circle that big!" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "This verification code was not found! Please confirm that you have the correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid " Your code was verified correctly. You will now receive alerts about incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "Your Email Alert request has been created and verification message has been sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "Your Mobile Alert request has been created and verification message has been sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "Please enter the SMS confirmation code you received on your mobile phone below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "You have received this email because you subscribed to receive alerts. If you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "We were not able to unsubscribe you. Please confirm that you have the correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "You will not receive alerts on this location until you confirm your request." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/auth.po b/application/i18n/po/po-pr_US/auth.po new file mode 100644 index 0000000000..b61364fdff --- /dev/null +++ b/application/i18n/po/po-pr_US/auth.po @@ -0,0 +1,223 @@ +#. extracted from en_US/auth.php, pr_US/auth.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "è,ò,ù,à" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "è,ò,ù,à" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "è,ò,ù,à" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "è,ò,ù,à" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "è,ò,ù,à" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "è,ò,ù,à" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "è,ò,ù,à" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "The current password you entered for your account is incorrect. Please try again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "è,ò,ù,à" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "è,ò,ù,à" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "è,ò,ù,à" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "è,ò,ù,à" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "è,ò,ù,à" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "è,ò,ù,à" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "è,ò,ù,à" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "è,ò,ù,à" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "è,ò,ù,à" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "è,ò,ù,à" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "è,ò,ù,à" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "è,ò,ù,à" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "è,ò,ù,à" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "The public profile URL field must be at least 2 and no more 100 characters long." +msgstr "è,ò,ù,à" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "è,ò,ù,à" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "è,ò,ù,à" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/bug.po b/application/i18n/po/po-pr_US/bug.po new file mode 100644 index 0000000000..57bf0ebb29 --- /dev/null +++ b/application/i18n/po/po-pr_US/bug.po @@ -0,0 +1,63 @@ +#. extracted from en_US/bug.php, pr_US/bug.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "captcherrr*default" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Captcharrr+required" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "This is a test I'll test this I will - test this with Some $ funky Character * ddsad * # $ % ^ fjdskfdsl few ferw f \\ \\ \\ \\ ' ' ' ' " + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "' ' ' ' ' " + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/category.po b/application/i18n/po/po-pr_US/category.po new file mode 100644 index 0000000000..8633b2a98b --- /dev/null +++ b/application/i18n/po/po-pr_US/category.po @@ -0,0 +1,88 @@ +#. extracted from en_US/category.php, pr_US/category.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/comments.po b/application/i18n/po/po-pr_US/comments.po new file mode 100644 index 0000000000..b14210f609 --- /dev/null +++ b/application/i18n/po/po-pr_US/comments.po @@ -0,0 +1,58 @@ +#. extracted from en_US/comments.php, pr_US/comments.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "è\\ù\\ò lalalaè weeeeù yoooooò SEE ME!" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/contact.po b/application/i18n/po/po-pr_US/contact.po new file mode 100644 index 0000000000..bb66989cf9 --- /dev/null +++ b/application/i18n/po/po-pr_US/contact.po @@ -0,0 +1,73 @@ +#. extracted from en_US/contact.php, pr_US/contact.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/core.po b/application/i18n/po/po-pr_US/core.po new file mode 100644 index 0000000000..b08545d7a1 --- /dev/null +++ b/application/i18n/po/po-pr_US/core.po @@ -0,0 +1,143 @@ +#. extracted from en_US/core.php, pr_US/core.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/database.po b/application/i18n/po/po-pr_US/database.po new file mode 100644 index 0000000000..7b544ae15d --- /dev/null +++ b/application/i18n/po/po-pr_US/database.po @@ -0,0 +1,23 @@ +#. extracted from en_US/database.php, pr_US/database.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "YARR! Thar be a problem with the database: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/datetime.po b/application/i18n/po/po-pr_US/datetime.po new file mode 100644 index 0000000000..f50d873a73 --- /dev/null +++ b/application/i18n/po/po-pr_US/datetime.po @@ -0,0 +1,213 @@ +#. extracted from en_US/datetime.php, pr_US/datetime.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "in the morn'" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "in the evenin'" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/feeds.po b/application/i18n/po/po-pr_US/feeds.po new file mode 100644 index 0000000000..05639396b3 --- /dev/null +++ b/application/i18n/po/po-pr_US/feeds.po @@ -0,0 +1,48 @@ +#. extracted from en_US/feeds.php, pr_US/feeds.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Date arrrr!!!!!!!" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "Hopefully final test." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/footer.po b/application/i18n/po/po-pr_US/footer.po new file mode 100644 index 0000000000..acf8b0f6c6 --- /dev/null +++ b/application/i18n/po/po-pr_US/footer.po @@ -0,0 +1,18 @@ +#. extracted from en_US/footer.php, pr_US/footer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl is not installed on this system *SQUAK*!!!!!!" + diff --git a/application/i18n/po/po-pr_US/form.po b/application/i18n/po/po-pr_US/form.po new file mode 100644 index 0000000000..4ace800d89 --- /dev/null +++ b/application/i18n/po/po-pr_US/form.po @@ -0,0 +1,103 @@ +#. extracted from en_US/form.php, pr_US/form.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/imap.po b/application/i18n/po/po-pr_US/imap.po new file mode 100644 index 0000000000..fe319af80b --- /dev/null +++ b/application/i18n/po/po-pr_US/imap.po @@ -0,0 +1,23 @@ +#. extracted from en_US/imap.php, pr_US/imap.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/installer.po b/application/i18n/po/po-pr_US/installer.po new file mode 100644 index 0000000000..21f76b75a3 --- /dev/null +++ b/application/i18n/po/po-pr_US/installer.po @@ -0,0 +1,353 @@ +#. extracted from en_US/installer.php, pr_US/installer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/layer.po b/application/i18n/po/po-pr_US/layer.po new file mode 100644 index 0000000000..a5a105092b --- /dev/null +++ b/application/i18n/po/po-pr_US/layer.po @@ -0,0 +1,58 @@ +#. extracted from en_US/layer.php, pr_US/layer.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/libraries.po b/application/i18n/po/po-pr_US/libraries.po new file mode 100644 index 0000000000..51b305490e --- /dev/null +++ b/application/i18n/po/po-pr_US/libraries.po @@ -0,0 +1,108 @@ +#. extracted from en_US/libraries.php, pr_US/libraries.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/maintenance.po b/application/i18n/po/po-pr_US/maintenance.po new file mode 100644 index 0000000000..94dc47cf57 --- /dev/null +++ b/application/i18n/po/po-pr_US/maintenance.po @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, pr_US/maintenance.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/message.po b/application/i18n/po/po-pr_US/message.po new file mode 100644 index 0000000000..383b8a6f9e --- /dev/null +++ b/application/i18n/po/po-pr_US/message.po @@ -0,0 +1,58 @@ +#. extracted from en_US/message.php, pr_US/message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "è,ò,ù,à" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/mhi.po b/application/i18n/po/po-pr_US/mhi.po new file mode 100644 index 0000000000..644e0b20af --- /dev/null +++ b/application/i18n/po/po-pr_US/mhi.po @@ -0,0 +1,48 @@ +#. extracted from en_US/mhi.php, pr_US/mhi.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/notifications.po b/application/i18n/po/po-pr_US/notifications.po new file mode 100644 index 0000000000..d83982c9af --- /dev/null +++ b/application/i18n/po/po-pr_US/notifications.po @@ -0,0 +1,88 @@ +#. extracted from en_US/notifications.php, pr_US/notifications.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-pr_US/page.po b/application/i18n/po/po-pr_US/page.po new file mode 100644 index 0000000000..b1fe19e3e2 --- /dev/null +++ b/application/i18n/po/po-pr_US/page.po @@ -0,0 +1,33 @@ +#. extracted from en_US/page.php, pr_US/page.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/permissions.po b/application/i18n/po/po-pr_US/permissions.po new file mode 100644 index 0000000000..2508c1dc56 --- /dev/null +++ b/application/i18n/po/po-pr_US/permissions.po @@ -0,0 +1,103 @@ +#. extracted from en_US/permissions.php, pr_US/permissions.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/private_message.po b/application/i18n/po/po-pr_US/private_message.po new file mode 100644 index 0000000000..12d6c60a6b --- /dev/null +++ b/application/i18n/po/po-pr_US/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, pr_US/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/report.po b/application/i18n/po/po-pr_US/report.po new file mode 100644 index 0000000000..e042387965 --- /dev/null +++ b/application/i18n/po/po-pr_US/report.po @@ -0,0 +1,318 @@ +#. extracted from en_US/report.php, pr_US/report.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "This deployment spans within one country only. Please make sure the report location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for one of your custom form items." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "The Upload Photos field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "The \"Report Title\" field must be at least 3 and no more 200 characters long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "The \"Location Name\" field must be at least 3 and no more 200 characters long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/reporters.po b/application/i18n/po/po-pr_US/reporters.po new file mode 100644 index 0000000000..d20b7faa66 --- /dev/null +++ b/application/i18n/po/po-pr_US/reporters.po @@ -0,0 +1,63 @@ +#. extracted from en_US/reporters.php, pr_US/reporters.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/reports.po b/application/i18n/po/po-pr_US/reports.po new file mode 100644 index 0000000000..27c12a9533 --- /dev/null +++ b/application/i18n/po/po-pr_US/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, pr_US/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/roles.po b/application/i18n/po/po-pr_US/roles.po new file mode 100644 index 0000000000..e67d157116 --- /dev/null +++ b/application/i18n/po/po-pr_US/roles.po @@ -0,0 +1,58 @@ +#. extracted from en_US/roles.php, pr_US/roles.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "The yar description yadda yadda argh" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/settings.po b/application/i18n/po/po-pr_US/settings.po new file mode 100644 index 0000000000..50a036b3b4 --- /dev/null +++ b/application/i18n/po/po-pr_US/settings.po @@ -0,0 +1,738 @@ +#. extracted from en_US/settings.php, pr_US/settings.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.default +msgctxt "settings.banner_image.default" +msgid "Something went wrong with your banner image upload." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "The size of your banner exceeds the size limit for this upload." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "This option makes Ushahidi to be accessed via \"clean\" URLs (without \"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "The Clickatell Password field must be at least 5 and no more 50 characters long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "The Mail Server Password field must be at least 5 and no more 50 characters long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "To get the information below you will need to create a new Facebook application at" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "The Google Analytics field must contain a valid Web Property ID in the format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "This option makes Ushahidi be accessed in unsecure mode; without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "This option makes Ushahidi be accessed in secure mode; with https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "The items per page (Frontend) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "Setting up your map provider is a straight-forward process. Select a provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "In order to receive reports by email, please configure your email account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "FrontlineSMS is free open source software that turns a laptop and a mobile phone into a central communications hub. Once installed, the program enables users to send and receive text messages with large groups of people through mobile phones. Click on the grey box to request a download from FrontlineSMS.com" +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download Frontline SMS and install it on your computer" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "Messages received into a FrontlineSMS hub can be synched with Ushahidi. Detailed instructions on how to sync can be found here. You will require the key and link below to set up the sync with FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Your Ushahidi Sync Key" +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "FrontlineSMS HTTP Post LINK" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Sync with Ushahidi" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/sharing.po b/application/i18n/po/po-pr_US/sharing.po new file mode 100644 index 0000000000..42c8db69b5 --- /dev/null +++ b/application/i18n/po/po-pr_US/sharing.po @@ -0,0 +1,68 @@ +#. extracted from en_US/sharing.php, pr_US/sharing.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:51+0000\n" +"PO-Revision-Date: 2012-08-17 06:51+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/stats.po b/application/i18n/po/po-pr_US/stats.po new file mode 100644 index 0000000000..43e4446c4c --- /dev/null +++ b/application/i18n/po/po-pr_US/stats.po @@ -0,0 +1,183 @@ +#. extracted from en_US/stats.php, pr_US/stats.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-pr_US/tooltips.po b/application/i18n/po/po-pr_US/tooltips.po new file mode 100644 index 0000000000..84889d823b --- /dev/null +++ b/application/i18n/po/po-pr_US/tooltips.po @@ -0,0 +1,428 @@ +#. extracted from en_US/tooltips.php, pr_US/tooltips.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions \"love\" or \"peace\" in their message, you will want to add \"love, peace\" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select \"specific area\" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "If you select \"Triggering User\", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"anyone\" since most triggers are set up for all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "This is one of the ways that you are identified on the website. Keep in mind that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "If set, this will be your new password. Leave this field blank if you wish to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "Selecting YES lets you get alerts via email when new reports or comments are posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "Your current password. We require you enter your password to prevent any unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you've submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "This is the email address that will receive email reports and messages from the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/ui_admin.po b/application/i18n/po/po-pr_US/ui_admin.po new file mode 100644 index 0000000000..e172ba4160 --- /dev/null +++ b/application/i18n/po/po-pr_US/ui_admin.po @@ -0,0 +1,1533 @@ +#. extracted from en_US/ui_admin.php, pr_US/ui_admin.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 21:18+0000\n" +"PO-Revision-Date: 2012-08-17 21:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "Access denied. Either your credentials are not valid or your request has been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "Access denied. Your request has been understood, but denied due to access limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete All" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "The installer folder still exists. Delete the installer folder. It is a potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "This is a special category that will not show up on the report submission form for users submitting reports. This is used to hold reports left without categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here.

Did you follow a link from somewhere else on our site?
If you reached this page from another part of our site, please contact us so that we can correct our mistake.

Did you follow a link from another site?
Links from other sites can sometimes be outdated or misspelled. Tell us where you came from and we can try to contact the other site in order to fix the problem.

Did you type the URL?
You may have typed the address (URL) incorrectly. Check to make sure you have got the exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_from +msgctxt "ui_admin.password_reset_from" +msgid "no-reply@ushahidi.com" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "To change your password, please click on the link below (or copy and paste it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "As you requested, your password has now been reset. Your new details are as follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "The encryption key is still set to the default value. This is insecure and must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "This site being served over HTTP. This should be set to HTTPS for increased security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "This is a special category that will not show up on the report submission form for users submitting reports. This is used in conjunction with the \"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/ui_main.po b/application/i18n/po/po-pr_US/ui_main.po new file mode 100644 index 0000000000..95a6a69792 --- /dev/null +++ b/application/i18n/po/po-pr_US/ui_main.po @@ -0,0 +1,2938 @@ +#. extracted from en_US/ui_main.php, pr_US/ui_main.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 21:18+0000\n" +"PO-Revision-Date: 2012-08-17 21:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "fdsfdsaf" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "gsdafdsa" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "Or place a spot on the map below, and we will alert you when a report is submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "If you can't find your location, please click on the map to pinpoint the correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "In order to receive reports by email, please input your email account settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by clicking on the button below." +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "Your account doesn't have the proper permission to fully log you in. Please contact the administrator." +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "Thank you for signing up at %s. To confirm your email address, please go to the following URL: %s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "Your Report has been submitted to our staff for review. We will get back to you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %s to %s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted By" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be upladed in CSV format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "When incident ID already exists in the database, the entry in the CSV file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" + diff --git a/application/i18n/po/po-pr_US/upgrade.po b/application/i18n/po/po-pr_US/upgrade.po new file mode 100644 index 0000000000..3ac8ba86d3 --- /dev/null +++ b/application/i18n/po/po-pr_US/upgrade.po @@ -0,0 +1,263 @@ +#. extracted from en_US/upgrade.php, pr_US/upgrade.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 21:18+0000\n" +"PO-Revision-Date: 2012-08-17 21:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: pr_US\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-ps/alerts.po b/application/i18n/po/po-ps/alerts.po new file mode 100644 index 0000000000..957e88d615 --- /dev/null +++ b/application/i18n/po/po-ps/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ps/auth.po b/application/i18n/po/po-ps/auth.po new file mode 100644 index 0000000000..2484b1277b --- /dev/null +++ b/application/i18n/po/po-ps/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ps/bug.po b/application/i18n/po/po-ps/bug.po new file mode 100644 index 0000000000..78acf7cb77 --- /dev/null +++ b/application/i18n/po/po-ps/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ps/category.po b/application/i18n/po/po-ps/category.po new file mode 100644 index 0000000000..714e361253 --- /dev/null +++ b/application/i18n/po/po-ps/category.po @@ -0,0 +1,92 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:05+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-ps/comments.po b/application/i18n/po/po-ps/comments.po new file mode 100644 index 0000000000..5425942999 --- /dev/null +++ b/application/i18n/po/po-ps/comments.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:23+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-ps/contact.po b/application/i18n/po/po-ps/contact.po new file mode 100644 index 0000000000..7265279f80 --- /dev/null +++ b/application/i18n/po/po-ps/contact.po @@ -0,0 +1,75 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:24+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-ps/core.po b/application/i18n/po/po-ps/core.po new file mode 100644 index 0000000000..51cfdea50b --- /dev/null +++ b/application/i18n/po/po-ps/core.po @@ -0,0 +1,156 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-ps/database.po b/application/i18n/po/po-ps/database.po new file mode 100644 index 0000000000..a1e2666198 --- /dev/null +++ b/application/i18n/po/po-ps/database.po @@ -0,0 +1,27 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-ps/datetime.po b/application/i18n/po/po-ps/datetime.po new file mode 100644 index 0000000000..9dadb46779 --- /dev/null +++ b/application/i18n/po/po-ps/datetime.po @@ -0,0 +1,215 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-ps/feeds.po b/application/i18n/po/po-ps/feeds.po new file mode 100644 index 0000000000..7bcfd71c1e --- /dev/null +++ b/application/i18n/po/po-ps/feeds.po @@ -0,0 +1,52 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-ps/footer.po b/application/i18n/po/po-ps/footer.po new file mode 100644 index 0000000000..87d0a81c1e --- /dev/null +++ b/application/i18n/po/po-ps/footer.po @@ -0,0 +1,20 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-ps/form.po b/application/i18n/po/po-ps/form.po new file mode 100644 index 0000000000..1189231fd7 --- /dev/null +++ b/application/i18n/po/po-ps/form.po @@ -0,0 +1,120 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-ps/imap.po b/application/i18n/po/po-ps/imap.po new file mode 100644 index 0000000000..26c6112399 --- /dev/null +++ b/application/i18n/po/po-ps/imap.po @@ -0,0 +1,25 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-ps/installer.po b/application/i18n/po/po-ps/installer.po new file mode 100644 index 0000000000..300c0a02fc --- /dev/null +++ b/application/i18n/po/po-ps/installer.po @@ -0,0 +1,408 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-ps/layer.po b/application/i18n/po/po-ps/layer.po new file mode 100644 index 0000000000..7936c4e5c1 --- /dev/null +++ b/application/i18n/po/po-ps/layer.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-ps/libraries.po b/application/i18n/po/po-ps/libraries.po new file mode 100644 index 0000000000..19b17f5892 --- /dev/null +++ b/application/i18n/po/po-ps/libraries.po @@ -0,0 +1,116 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-ps/maintenance.po b/application/i18n/po/po-ps/maintenance.po new file mode 100644 index 0000000000..6de7f890d6 --- /dev/null +++ b/application/i18n/po/po-ps/maintenance.po @@ -0,0 +1,22 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:42+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-ps/message.po b/application/i18n/po/po-ps/message.po new file mode 100644 index 0000000000..61696334cb --- /dev/null +++ b/application/i18n/po/po-ps/message.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-ps/mhi.po b/application/i18n/po/po-ps/mhi.po new file mode 100644 index 0000000000..1e25e25ddc --- /dev/null +++ b/application/i18n/po/po-ps/mhi.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-ps/notifications.po b/application/i18n/po/po-ps/notifications.po new file mode 100644 index 0000000000..7404f52299 --- /dev/null +++ b/application/i18n/po/po-ps/notifications.po @@ -0,0 +1,90 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-ps/page.po b/application/i18n/po/po-ps/page.po new file mode 100644 index 0000000000..7ee559eee3 --- /dev/null +++ b/application/i18n/po/po-ps/page.po @@ -0,0 +1,35 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-ps/permissions.po b/application/i18n/po/po-ps/permissions.po new file mode 100644 index 0000000000..c2a3cd3b5f --- /dev/null +++ b/application/i18n/po/po-ps/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ps/private_message.po b/application/i18n/po/po-ps/private_message.po new file mode 100644 index 0000000000..25537156e2 --- /dev/null +++ b/application/i18n/po/po-ps/private_message.po @@ -0,0 +1,45 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 21:14+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-ps/report.po b/application/i18n/po/po-ps/report.po new file mode 100644 index 0000000000..d67cf1bb31 --- /dev/null +++ b/application/i18n/po/po-ps/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ps/reporters.po b/application/i18n/po/po-ps/reporters.po new file mode 100644 index 0000000000..137e44af98 --- /dev/null +++ b/application/i18n/po/po-ps/reporters.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-ps/reports.po b/application/i18n/po/po-ps/reports.po new file mode 100644 index 0000000000..47c8b11849 --- /dev/null +++ b/application/i18n/po/po-ps/reports.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-ps/roles.po b/application/i18n/po/po-ps/roles.po new file mode 100644 index 0000000000..bfbfe3e62a --- /dev/null +++ b/application/i18n/po/po-ps/roles.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-ps/settings.po b/application/i18n/po/po-ps/settings.po new file mode 100644 index 0000000000..cccd507a7f --- /dev/null +++ b/application/i18n/po/po-ps/settings.po @@ -0,0 +1,857 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/projects/p/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ps/sharing.po b/application/i18n/po/po-ps/sharing.po new file mode 100644 index 0000000000..a756ea8cd3 --- /dev/null +++ b/application/i18n/po/po-ps/sharing.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 07:00+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-ps/stats.po b/application/i18n/po/po-ps/stats.po new file mode 100644 index 0000000000..97e431a9ac --- /dev/null +++ b/application/i18n/po/po-ps/stats.po @@ -0,0 +1,196 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-ps/tooltips.po b/application/i18n/po/po-ps/tooltips.po new file mode 100644 index 0000000000..3d8e82f9c2 --- /dev/null +++ b/application/i18n/po/po-ps/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ps/ui_admin.po b/application/i18n/po/po-ps/ui_admin.po new file mode 100644 index 0000000000..811787250a --- /dev/null +++ b/application/i18n/po/po-ps/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ps/ui_main.po b/application/i18n/po/po-ps/ui_main.po new file mode 100644 index 0000000000..33244e4d39 --- /dev/null +++ b/application/i18n/po/po-ps/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ps/upgrade.po b/application/i18n/po/po-ps/upgrade.po new file mode 100644 index 0000000000..3e4f985540 --- /dev/null +++ b/application/i18n/po/po-ps/upgrade.po @@ -0,0 +1,298 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:50+0000\n" +"Language-Team: Pushto (http://www.transifex.com/ushahidi/ushahidi-v2/language/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-pt_BR/alerts.po b/application/i18n/po/po-pt_BR/alerts.po new file mode 100644 index 0000000000..cd3608ef5d --- /dev/null +++ b/application/i18n/po/po-pt_BR/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "O campo do email parece não conter um endereço de email válido." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Esse email já foi registrado para o recebimento de alertas sobre este local." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do email deve ter pelo menos 4 e no máximo 64 caracteres." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "É necessário preencher o campo do email se a caixa de seleção tiver sido marcada." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Essa implantação está dentro de um único país. Por favor, verifique se o local corresponde ao país %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Você não selecionou um local válido no mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Você não selecionou um local válido no mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Você não selecionou um local válido no mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Você não selecionou um local válido no mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "O campo do número do celular não parece conter a quantidade correta de dígitos." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Este número de celular já foi registrado para o recebimento de alertas sobre este local." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "O campo do número do celular não parece conter um número válido. Digite apenas números, incluindo o código do país." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "É preciso fornecer um número do celular ou endereço de email." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "É necessário fornecer o número do celular se a caixa de seleção tiver sido marcada." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Você não definiu um raio de alcance válido no mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Você não definiu um raio de alcance no mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Você não definiu um destinatário para alertas." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Você se inscreveu para alertas com as seguintes categorias" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Esse código já foi verificado." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "O código de verificação não foi encontrado. Confirme se a URL está correta." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "O código foi verificado corretamente. A partir de agora, os alertas serão enviados a medida que os eventos aconteçam." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Para confirmar a solicitação de alertas, acesse " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Volte à página de alertas para criar outras notificações." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Foi criada uma solicitação de alerta por email, e uma mensagem de verificação foi enviada para " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Digite o código de confirmação recebido por email abaixo: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "A solicitação de alertas por email NÃO foi gravada." + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "A solicitação de alertas por email foi gravada." + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Não foi possível processar sua confirmação." + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Foi criada uma solicitação de alerta por celular, e uma mensagem de verificação foi enviada para " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Digite o código de confirmação recebido via mensagem de SMS abaixo: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "A solicitação de alerta por celular NÃO foi salva." + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "A solicitação de alerta por celular foi salva." + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Essa versão não está configurada para processar alertas corretamente." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Você recebeu este email porque se cadastrou para receber alertas. Caso não queira receber alertas no futuro, acesse " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Não serão mais enviados alertas de " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Não foi possível cancelar a sua inscrição. Confirme se a URL está correta." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Alertas - Verificação" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Não serão enviados alertas sobre essa localidade até que a solicitação tenha sido confirmada." diff --git a/application/i18n/po/po-pt_BR/auth.po b/application/i18n/po/po-pt_BR/auth.po new file mode 100644 index 0000000000..f6b9aa5854 --- /dev/null +++ b/application/i18n/po/po-pt_BR/auth.po @@ -0,0 +1,254 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Iske Solstag \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "O campo do email parece não conter um endereço de email válido." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Um nome de usuário já foi registrado com esse email." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "O campo do email deve ter pelo menos 4 e no máximo 64 caracteres." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "É necessário preencher o campo do email." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "O nome deve ter pelo menos 3 e no máximo 100 caracteres." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "É necessário preencher o campo do nome." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "O campo do nome de usuário contém caracteres não permitidos." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O campo senha deve ter pelo menos 8 caracteres." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor, verifique se você digitou o e-mail e senha corretamente." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor insira a mesma senha nos dois campos de senha." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "O campo senha é necessária." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O campo senha pode ter caracteres alfabéticos, os símbolos # e @, números, sublinhados e traços únicos" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "A senha atual que você entrou para a sua conta está incorreto. Por favor, tente novamente." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O campo senha deve ter pelo menos 8 caracteres." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor, verifique se você digitou o e-mail e senha corretamente." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor insira a mesma senha nos dois campos de senha." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "O campo senha é necessária." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O campo senha deve ter caracteres alfabéticos, os símbolos # e @, números, sublinhados e traços únicos" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Houve um erro ao tentar fazer seu login." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O campo senha deve ter pelo menos 8 caracteres." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Verifique se a senha foi digitada corretamente." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Digite a mesma senha nos dois campos." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "É necessário preencher o campo senha." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "O servidor de autenticação é baixo. Por favor, tente novamente mais tarde." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O campo senha deve ter caracteres alfabéticos, os símbolos # e @, números, sublinhados e traços únicos" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "O campo de confirmação da senha deve corresponder à senha digitada no primeiro campo." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "O campo do email parece não conter um endereço de email válido." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Não foi possível encontrar esse email." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "É necessário preencher o campo de email." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Apenas um superadmin pode modificar uma superadmin ou atualizar um usuário admin." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "O formato do perfil é inválido" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "O campo perfil deve ter pelo menos 5 e no máximo 30 caracteres." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "É necessário definir pelo menos um perfil." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "É necessário definir o perfil de ADMIN ou de USUÁRIO." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "O código de senha esquecida é inválido" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Era preciso um código de senha esquecida" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Não é possível modificar o perfil de admin." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "O campo de URL de perfil público deve conter apenas números e letras." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Esse nome de usuário já está em uso." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "O campo de URL do perfil público deve ter pelo menos 2 e no máximo 100 caracteres." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Verifique se o nome de usuário foi digitado corretamente." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "É necessário preencher o campo nome de usuário." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Não é possível modificar o perfil de super admin." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Ataque CSRF possível. Será que você realmente quer dizer para criar/editar um usuário?" diff --git a/application/i18n/po/po-pt_BR/bug.po b/application/i18n/po/po-pt_BR/bug.po new file mode 100644 index 0000000000..6c44c3ffa8 --- /dev/null +++ b/application/i18n/po/po-pt_BR/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Forneça um código de segurança válido." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Forneça um código de segurança." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "O campo de email não parece conter um endereço válido." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Os dados do campo de endereço deve conter pelo menos 4 e no máximo 64 caracteres." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "É necessário preencher o campo do email se a caixa de seleção tiver sido marcada." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "É necessário preencher o campo erro." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O campo de assunto deve ter pelo menos 3 caracteres." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "É necessário preencher o campo assunto." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo nome deve ter pelo menos 3 caracteres." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "É necessário preencher o campo nome." diff --git a/application/i18n/po/po-pt_BR/category.po b/application/i18n/po/po-pt_BR/category.po new file mode 100644 index 0000000000..93b73f59c6 --- /dev/null +++ b/application/i18n/po/po-pt_BR/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo cor deve ter 6 caracteres." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "É necessário preencher o campo cor." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "É necessário preencher o campo descrição." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Certifique-se de que as fotos enviadas têm até 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "O campo de imagem parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "O campo de imagem parece não conter um arquivo válido." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "O campo título deve ter pelo menos 3 e no máximo 80 caracteres." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "É necessário preencher o campo título." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Você não pode categorizar uma categoria com subcategorias." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "A categoria principal não existe." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "É necessário preencher o campo de categoria principal com números." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "A categoria pai não pode ser uma categoria especial" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "É necessário preencher o campo de categoria principal." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "A categoria não pode ser a mesma da categoria principal." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Categorias especiais não podem ser subcategorizadas." diff --git a/application/i18n/po/po-pt_BR/comments.po b/application/i18n/po/po-pt_BR/comments.po new file mode 100644 index 0000000000..7839b0826f --- /dev/null +++ b/application/i18n/po/po-pt_BR/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Digite um código de segurança válido." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Digite o código de segurança." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Você inseriu o código de segurança errado." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo nome deve ter pelo menos 3 caracteres." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "É necessário preencher o campo nome." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "É necessário preencher o campo de comentários." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "O campo do email parece não conter um endereço de email válido." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do email deve ter pelo menos 4 e no máximo 64 caracteres." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "É necessário preencher o campo do email se a caixa de seleção tiver sido marcada." diff --git a/application/i18n/po/po-pt_BR/contact.po b/application/i18n/po/po-pt_BR/contact.po new file mode 100644 index 0000000000..824e29113a --- /dev/null +++ b/application/i18n/po/po-pt_BR/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Digite um código de segurança válido." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Por favor insira um código de segurança correto." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Digite o código de segurança." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "O campo do email parece não conter um endereço de email válido." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do email deve ter pelo menos 4 e no máximo 64 caracteres." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "É necessário preencher o campo do email se a caixa de seleção tiver sido marcada." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "É necessário preencher o campo de mensagem." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo nome deve ter pelo menos 3 caracteres." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "É necessário preencher o campo nome." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O campo de assunto deve ter pelo menos 3 caracteres." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "É necessário preencher o campo de assunto." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Houve um erro ao enviar a sua mensagem." diff --git a/application/i18n/po/po-pt_BR/core.po b/application/i18n/po/po-pt_BR/core.po new file mode 100644 index 0000000000..23c89253f1 --- /dev/null +++ b/application/i18n/po/po-pt_BR/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "arquivo config" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controlador" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "O driver %s para a coleção %s deve ser implementado na interface do %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Não foi possível encontrar o driver %s para a coleção %s." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Acesse a página inicial ou tente novamente." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Não foi possível completar a solicitação" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "assistente" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "A solicitação desse tipo de arquivo, .%s, não é permitido durante visualização da configuração do arquivo" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Método inválido %s solicitado em %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "A propriedade %s não existe na classe %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "coleção" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "O diretório não pode ser escrito: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modelo" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi não conseguiu determinar um controlador para processar a solicitação: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Defina um route padrão em config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Não foi possível encontrar a página solicitada: %s." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Relate esse problema ao Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "A solicitação %s, %s, não pode ser encontrada" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Rastreamento de Pilha" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Carregado em {execution_time} segundos, usando {memory_usage} de memória. Gerado pelo Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "epd" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Só é possível haver uma versão do Ushahidi por página solicitada" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "%s não captado: %s no arquivo %s linha %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "visualizar" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "É preciso determinar visualização do arquivo antes de solicitar renderização" diff --git a/application/i18n/po/po-pt_BR/database.po b/application/i18n/po/po-pt_BR/database.po new file mode 100644 index 0000000000..5fd1fe8713 --- /dev/null +++ b/application/i18n/po/po-pt_BR/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Erro de database: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Não foi possível encontrar a tabela \"%s\" na database. Certifique-se de que está usando a última versão da database para essa versão do Ushahidi" diff --git a/application/i18n/po/po-pt_BR/datetime.po b/application/i18n/po/po-pt_BR/datetime.po new file mode 100644 index 0000000000..d0aa758290 --- /dev/null +++ b/application/i18n/po/po-pt_BR/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Sex" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Sexta" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Seg" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Segunda" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sáb" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sábado" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dom" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Domingo" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Qui" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Quinta" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Ter" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Terça" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Qua" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Quarta" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Janeiro" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Fev" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Fevereiro" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Março" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Abr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Abril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maio" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Junho" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Julho" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosto" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Set" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Setembro" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Out" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Outubro" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novembro" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dez" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Dezembro" diff --git a/application/i18n/po/po-pt_BR/feeds.po b/application/i18n/po/po-pt_BR/feeds.po new file mode 100644 index 0000000000..9a7252f794 --- /dev/null +++ b/application/i18n/po/po-pt_BR/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "O nome do feed deve ter pelo menos 3 e no máximo\n\t\t\t70 caracteres." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Digite o nome do feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Digite uma URL válida para o feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Digite uma URL válida. Ex. http://www.eleitor2010.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "FONTE" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "TÍTULO" diff --git a/application/i18n/po/po-pt_BR/footer.po b/application/i18n/po/po-pt_BR/footer.po new file mode 100644 index 0000000000..2721441548 --- /dev/null +++ b/application/i18n/po/po-pt_BR/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "O php5-curl não está instalado nesse sistema." diff --git a/application/i18n/po/po-pt_BR/form.po b/application/i18n/po/po-pt_BR/form.po new file mode 100644 index 0000000000..c14f1a3c59 --- /dev/null +++ b/application/i18n/po/po-pt_BR/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "O valor padrão que você forneceu para o campo é inválido." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "O nome do campo deve ter pelo menos 3 e no máximo \n\t\t\t\t200 caracteres." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Digite um valor entre 0 e 50 para o campo altura." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Não foi digitado um valor válido para o campo data." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Indique sim ou não para o campo data." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "O nome do campo deve ter pelo menos 3 e no máximo \n\t\t\t\t100 caracteres." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Defina um nome para o campo." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "O nome que você deu ao campo já existe neste formulário. Por favor, escolha outro." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Não foi digitado um valor válido para os campos solicitados." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Indique sim ou não para campo solicitado." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Defina um tipo válido para o campo." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Defina um tipo para o campo." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Digite um valor entre 0 e 300 para o campo largura." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Forneça a descrição do formulário." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Não é possível apagar o formulário padrão." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Selecione qual formulário adicionar a esse campo." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Selecione qual formulário adicionar a esse campo." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "O nome do formulário deve ter pelo menos 3 e no máximo \n\t\t\t\t100 caracteres." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Digite o nome do formulário." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Um formulário com este título já existe. Por favor, escolha outro." diff --git a/application/i18n/po/po-pt_BR/imap.po b/application/i18n/po/po-pt_BR/imap.po new file mode 100644 index 0000000000..e632ce9d1a --- /dev/null +++ b/application/i18n/po/po-pt_BR/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Não foi possível abrir o acesso IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Serviço de email não suportado" diff --git a/application/i18n/po/po-pt_BR/installer.po b/application/i18n/po/po-pt_BR/installer.po new file mode 100644 index 0000000000..188da1059c --- /dev/null +++ b/application/i18n/po/po-pt_BR/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Caminho básico" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Base de dados" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "hospedagem de base de dados" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Caso esteja rodando Ushahidi no seu computador, será normalmente o \"localhost\". Caso esteja rodando o Ushahidi de um servidor, será necessário obter as informações sobre o provedor de internet" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nome da database" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Nome da database na qual você quer rodar o Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Para obter mais informações, leia esse artigo no wiki, que aborda database mais detalhadamente." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Idioma padrão (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Cada versão do Ushahidi vem com um conjunto embutido de tradução. É possível também acrescentar o seu idioma" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Desabilitar" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Habilitar" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Veja abaixo um resumo dos erros encontrados" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "O local no servidor onde os arquivos do Ushahidi foram guardados. Esse dado foi automaticamente identificado, certifique-se de que está correto. Se o campo estiver vazio, não se preocupe: isso significa que o ushahidi está instalado no diretório principal" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Encerrado" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Geral" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Chave API Google" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Qualquer pessoa pode obter uma chave api. Obtenha a sua agora." + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Voltar" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALAÇÃO AVANÇADA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Complete toda a configuração básica por meio das 5 etapas desse processo. Elas abarcam servidor, mapa, nome do site e detalhes de contato." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALAÇÃO BÁSICA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Fácil e rápido. Só é necessário ter em mãos o diretório root de seu site e as informações de sua database. Escolha essa opção se preferir o funcionamento rápido, e as outras configurações podem ser feitas mais tarde" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Continuar" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Bem-vindo ao processo de instalação do servidor do Ushahidi. Escolha o tipo de instalação que você prefere a seguir." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalação feita com sucesso" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Servidor de email" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Host do servidor de email" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Senha do servidor de email" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Senha usada normalmente para acessar seu email" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Porta do servidor de email" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Portas comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipo de servidor de email" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) ou Post Office Protocol (POP). Qual é a diferença?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Nome de usuário do servidor de email" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Caso esteja usando Gmail, Hotmail ou Yahoo Mail, forneça o email completo como nome de usuário" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Provedor do mapa" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "O Ushahidi funciona da mesma forma com qualquer um desses provedores de mapas: Google, Bing, Yahoo ou Open Street Map. Escolha o que apresentar mais detalhes sobre a sua área." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Outros passos..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Senha" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Senha da database" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Anterior" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Reinicie o seu servidor Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Habilitar ou desabilitar SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Alguns servidores de email oferecem a opção de usar SSL ao fazer uma conexão. É recomendável usar SSL para prover um nível maior de segurança." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Configurar servidor de SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Email do site" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Alerta de email do site" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Quando os visitantes do seu site inscreverem-se para receber alertas de email, eles receberão mensagens por meio desse endereço. Não é necessário que seja o mesmo email fornecido como email do site." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Os comunicados do site serão canalizados através deste endereço" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nome do site" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Nome do seu site" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Slogan do site" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Seu slogan" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Os arquivos e pastas a seguir podem ser gravadas pelo seu servidor web" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Veja aqui instruções sobre como mudar permissões de arquivo:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Antes de começar, é preciso certificar-se de que os arquivos e pastas a seguir podem ser gravadas pelo seu servidor web. Esse processo envolve alteração de permissões." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Para prosseguir com o processo de instalação, tenha em mãos os seguintes dados:" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefixo da tabela" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalmente, não é preciso mudar o prefixo da tabela. No entanto, caso você queira rodar várias instalações do Ushahidi em uma única database, é preciso mudar o prefixo aqui." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Título" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Para fazer login, acesse" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Carregar dados de relato" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nome de usuário" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Nome de usuário na database" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "e use as credenciais a seguir" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Ver o site" diff --git a/application/i18n/po/po-pt_BR/layer.po b/application/i18n/po/po-pt_BR/layer.po new file mode 100644 index 0000000000..c58c2d9b77 --- /dev/null +++ b/application/i18n/po/po-pt_BR/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo cor deve ter 6 caracteres." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "É necessário escolher uma cor." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "O campo arquivo parece não conter um arquivo válido. Os únicos formatos aceitos são .KMZ e .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "O campo arquivo parece não conter um arquivo válido." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "O campo nome deve ter pelo menos 3 e no máximo 80 caracteres." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "É necessário fornecer o nome do campo." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "É necessário fornecer uma URL ou um arquivo KML." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Não é possível fornecer ambos, URL e arquivo KML." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Forneça uma URL válida. Exemplo: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-pt_BR/libraries.po b/application/i18n/po/po-pt_BR/libraries.po new file mode 100644 index 0000000000..1de32d9fbb --- /dev/null +++ b/application/i18n/po/po-pt_BR/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Não foi possível conectar com o servidor Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Não foi possível retornar uma resposta do Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Não foi possível encontrar a biblioteca da API %s, para a class %s. Verifique no painel da tabela de roteamento de sua API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "A chave API Akismet não é válida." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Erro durante a execução do método de envio!
Verifique se o PHP tem suporte OpenSSL e verifique se a versão de PHP é mais atual que 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Sua mensagem de unicode é muito longa (Tamanho atual=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Especifique um endereço de destino (PARA)" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Especifique um endereço fonte (DE)" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Sua mensagem de unicode é muito longa (Tamanho atual=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Método de envio não suportado" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "A biblioteca da API %s é inválida. Todas as bibliotecas da API devem ser subclasses de %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Não foi possível apagar o diretório %s" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Erro durante a extração: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Houve falha no download do último ushahidi. Código de status do HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Não foi possível copiar o arquivo %s" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Não foi possível apagar o arquivo %s" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Script de atualização do Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Não foi possível concluir o download do arquivo zipado do ushahidi %s" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s não está disponível na classe RiverID " diff --git a/application/i18n/po/po-pt_BR/maintenance.po b/application/i18n/po/po-pt_BR/maintenance.po new file mode 100644 index 0000000000..ae1fae323d --- /dev/null +++ b/application/i18n/po/po-pt_BR/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Desculpe, nosso site está em manutenção. Por favor, tente novamente em alguns minutos." diff --git a/application/i18n/po/po-pt_BR/message.po b/application/i18n/po/po-pt_BR/message.po new file mode 100644 index 0000000000..5a688fe429 --- /dev/null +++ b/application/i18n/po/po-pt_BR/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Digite um código de segurança válido." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Digite o código de segurança." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "O campo do email parece não conter um endereço de email válido." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do email deve ter pelo menos 4 e no máximo 64 caracteres." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "É necessário preencher o campo do email se a caixa de seleção tiver sido marcada." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "É necessário preencher o campo comentários." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo nome deve ter pelo menos 3 caracteres." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "É necessário preencher o campo nome." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "O telefone não é válido." diff --git a/application/i18n/po/po-pt_BR/mhi.po b/application/i18n/po/po-pt_BR/mhi.po new file mode 100644 index 0000000000..0a54e140e3 --- /dev/null +++ b/application/i18n/po/po-pt_BR/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Forneça um código de segurança válido." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Forneça um código de segurança." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "O campo email parece não conter um endereço eletrônico válido." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Forneça um email válido." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "É necessário preencher o campo mesagem." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O campo assunto deve ter pelo menos 3 caracteres" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "É necessário preencher o campo assunto." diff --git a/application/i18n/po/po-pt_BR/notifications.po b/application/i18n/po/po-pt_BR/notifications.po new file mode 100644 index 0000000000..ee52e75658 --- /dev/null +++ b/application/i18n/po/po-pt_BR/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "A mensagem a seguir foi enviada a partir do seu site" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login de administrador" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Um novo comentário foi enviado para o seu site em resposta a:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Novo comentário" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Uma nova mensagem de email foi enviada para o seu site." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nova mensagem de email" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Um novo relato foi enviado para o seu site." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Novo relato" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Uma nova mensagem de texto foi enviada para o seu site." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nova mensagem de texto" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Você recebeu um novo alerta" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Novo Alerta!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Você recebeu uma mensagem privada" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nova mensagem privada" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Para responder por favor vá para:" diff --git a/application/i18n/po/po-pt_BR/page.po b/application/i18n/po/po-pt_BR/page.po new file mode 100644 index 0000000000..778b4b84ff --- /dev/null +++ b/application/i18n/po/po-pt_BR/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Por favor insira um título de página." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Título da página deve ser no mínimo 3 e no máximo 150 caracteres." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Por favor insira um nome de guia da página." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Por favor insira uma descrição da página." diff --git a/application/i18n/po/po-pt_BR/permissions.po b/application/i18n/po/po-pt_BR/permissions.po new file mode 100644 index 0000000000..7cb3ce5ebd --- /dev/null +++ b/application/i18n/po/po-pt_BR/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-23 18:31+0000\n" +"Last-Translator: Iske Solstag \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Ver Relatos" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Criar/Editar/Excluir Relatos" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprovar Relatos" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar Relatos" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gerenciar Comentários dos Relatos" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descarregar Relatos" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Carregar Relatos" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gerenciar Mensagens" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gerenciar Relatores de Mensagens" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ver estatísticas" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modificar configurações" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gerenciar Painel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gerenciar Usuários" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Gerenciar Funções" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Permitir checkin" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Gerenciar checkins" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acesse UI de administração" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acesse UI de membros" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Deletar todos os relatos" diff --git a/application/i18n/po/po-pt_BR/private_message.po b/application/i18n/po/po-pt_BR/private_message.po new file mode 100644 index 0000000000..0eae21dd7e --- /dev/null +++ b/application/i18n/po/po-pt_BR/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "ID pai deve ser numérico" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "O campo Para é requerido" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "O usuário a que você está tentar enviar uma mensagem não existe" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "O campo assunto é obrigatório" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Assunto deve ter entre 3 e 150 caracteres" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "O campo de mensagem é necessária" diff --git a/application/i18n/po/po-pt_BR/report.po b/application/i18n/po/po-pt_BR/report.po new file mode 100644 index 0000000000..f98b58b618 --- /dev/null +++ b/application/i18n/po/po-pt_BR/report.po @@ -0,0 +1,395 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-09-23 18:23+0000\n" +"Last-Translator: Iske Solstag \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "erro!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Essa implantação se estende dentro de um único país. Por favor, verifique se o local está dentro do referido país %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Por favor, preencha um valor válido para o campo \"%s\"" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "O campo \"%s\" deve ser numérico." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "É necessário preencher o campo \"%s\"." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "O campo \"%s\" não existe." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "O campo \"%s\" não pode ser editado pela sua conta." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "O campo \"%s\" deve conter um endereço de email válido." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "O campo \"%s\" deve conter um número de telefone válido." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "O campo \"%s\" deve conter uma data válida no formato americano (MM/DD/YYYY)" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "O campo \"%s\" deve conter uma data válida (DD/MM/YYYY)" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Selecione um item válido para incluir no download." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Selecione um item válido para incluir no download." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor, selecione \"Relatos Aguardando Aprovação\" ou \"Relatos Aprovados\" ou ambos." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor, selecione \"Relatos Aguardando Aprovação\" ou \"Relatos Aprovados\" ou ambos." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Por favor, selecione \"Relatos Aguardando Aprovação\" ou \"Relatos aprovados\" ou ambos." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor, selecione \"Relatos Aguardando Verificação\" ou \"Relatos Verificados\" ou ambos." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor, selecione \"Relatos Aguardando Verificação\" ou \"Relatos Verificados\" ou ambos." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Por favor, selecione \"Relatos Aguardando Verificação\" ou \"Relatos Verificados\" ou ambos." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Selecione um tipo válido de relato para baixar." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Selecione um tipo válido de relato para baixar." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Selecione um tipo válido de relato para baixar." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Você deve escolher um formato para download. Escolha entre CSV ou XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Por favor, escolha um formato válido no qual descarregar seus relatos" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "O campo da data inicial parece não conter uma data válida." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Digite uma data inicial válida, não pode ser posterior a data de hoje." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Forneça dados válidos para o campo aprove esse relato." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Forneça dados válidos para o campo aprove esse relato." + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "O campo am/pm parece não conter dados válidos." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "O campo categoria parece não conter uma categoria válida." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "É necessário preencher o campo categoria." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "O campo data parece não conter uma data válida." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "O campo data parece não conter uma data válida." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "É necessário preencher o campo data." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "É necessário preencher o campo descrição." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "O campo horário parece não conter uma hora válida." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "É necessário preencher o campo horário." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Forneça dados válidos para o campo probabilidade da informação." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Forneça dados válidos para o campo probabilidade da informação." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "O campo horário parece não conter uma hora válida." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "É necessário preencher o campo horário." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "O link da fonte de notícias parece não conter uma URL válida." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Certifique-se de que o tamanho das fotos enviadas está limitado a 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "O campo de envio de fotos parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "O campo de envio de fotos parece não conter um arquivo válido." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Forneça dados válidos para o campo confiabilidade da fonte." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Forneça dados válidos para o campo confiabilidade da fonte." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "O campo título deve ter pelo menos 3 e no máximo 200 caracteres." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "É necessário preencher o campo título." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Possível ataque CSRF. Você realmente pretendia criar/editar um relato?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Forneça dados válidos para o campo verificar esse relato." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Forneça dados válidos para o campo verificar esse relato." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "O link do vídeo parece não conter uma URL válida." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "O campo latitude parece não conter uma latitude válida." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "É necessário preencher o campo latitude. Clique no mapa para apontar um local." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "O campo locale apresenta um valor incorreto. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Esse relato já tem uma tradução nesse idioma." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "O campo locale apresenta um valor incorreto. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "O relato original e a tradução apresentam o mesmo locale (idioma)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "É necessário fornecer o locale." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "O nome do local deve ter pelo menos 3 e no máximo 200 caracteres." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "É necessário preencher o campo local." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "O campo longitude parece não conter uma longitude válida." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "É necessário preencher o campo longitude. Clique no mapa para apontar um local." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "O campo do email parece não conter um endereço de email válido." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "O campo de email deve ter pelo menos 4 e no máximo 64 caracteres." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "O nome deve ter pelo menos 3 e no máximo 100 caracteres." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "O sobrenome deve ter pelo menos 3 e no máximo 100 caracteres." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "O campo da data final parece não conter uma data válida." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Digite uma data inicial válida, não pode ser posterior a data de hoje." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "A data inicial não pode ter posterior à data final." diff --git a/application/i18n/po/po-pt_BR/reporters.po b/application/i18n/po/po-pt_BR/reporters.po new file mode 100644 index 0000000000..d411db746d --- /dev/null +++ b/application/i18n/po/po-pt_BR/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "O campo latitude parece não conter uma latitude válida." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo latitude é obrigatório. Por favor clique no mapa para mapear a posição." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "O campo Nível Repórter parece não conter um Nível válido? " + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "O campo Nível Repórter parece não conter um Nível válido? " + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "O campo localização precisa ter no mínimo 3 e no máximo 200 caracteres." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "O campo localização é obrigatório." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "O campo longitude não parece conter uma longitude válida." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo longitude é obrigatório. Por favor clique no mapa para mapear a localização." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Repórter Inválido" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Repórter Inválido" diff --git a/application/i18n/po/po-pt_BR/reports.po b/application/i18n/po/po-pt_BR/reports.po new file mode 100644 index 0000000000..7ece0a8af3 --- /dev/null +++ b/application/i18n/po/po-pt_BR/reports.po @@ -0,0 +1,54 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verifique se checou um item" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verifique se checou um item" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Relatos devem ser categorizados antes de poderem ser aprovados" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Você não tem permissão para executar esta ação" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Você deve escolher um arquivo para carregar" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "O arquivo a carregar deve estar em formato .csv ou .xml." + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "O campo de carregamento de arquivo não parece conter um arquivo válido" diff --git a/application/i18n/po/po-pt_BR/roles.po b/application/i18n/po/po-pt_BR/roles.po new file mode 100644 index 0000000000..82fa0f7e10 --- /dev/null +++ b/application/i18n/po/po-pt_BR/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# allviana , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "O campo descrição deve ter pelo menos 3 e no máximo 100 caracteres." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "É necessário preencher o campo descrição." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "O campo nome deve conter apenas letras e números." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "O campo nome deve ter pelo menos 2 e no máximo 30 caracteres." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "O perfil de SuperAdmin não pode ser modificado." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "O campo nome precisa ser preenchido." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Campo Nível de acesso deve ser um número entre 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Campo Nível de acesso deve ser um número entre 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Campo de permissões deve ser um número entre 0 - 100." diff --git a/application/i18n/po/po-pt_BR/settings.po b/application/i18n/po/po-pt_BR/settings.po new file mode 100644 index 0000000000..3612f70a7f --- /dev/null +++ b/application/i18n/po/po-pt_BR/settings.po @@ -0,0 +1,861 @@ +# +# Translators: +# allviana , 2012 +# Harold Gloglo , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "O campo de permissão de comentários parece não conter dados válidos." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "É necessário preencher o campo permissão de comentários." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "O campo de inclusão de feed parece não conter dados válidos." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "É necessário preencher o campo inclusão de feed." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "O campo permitir alertas não parece conter um valor válido." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "O campo permitir alertas é necessário." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "O campo de permissão de relatos parece não conter dados válidos." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "É necessário preencher o campo permissão de relatos." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "O campo de compartilhamento de estatísticas parece não conter dados válidos." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "É necessário preencher o campo de compartilhamento de estatísticas." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Quantidade padrão de recordes a ser buscada por solicitação da API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Quantidade máxima de recordes a ser buscada por solicitação da API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Quantidade máxima de solicitações à API por endereço de IP." + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "O campo Akismet parece não conter dados válidos." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "O campo Akismet parece não conter dados válidos." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "O campo de Banner do Site parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Por favor, certifique-se de que a \"Imagem do Banner\" ocupa menos de 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "O campo \"Imagem do Banner\" parece não conter um arquivo válido." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "É necessário preencher o campo cache." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "O campo cache parece não conter dados válidos." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "O campo cache parece não conter dados válidos." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "É necessário preencher o campo vida útil do cache." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "O servidor parece não estar configurado para lidar com URLs amigáveis. É preciso alterar essa configuração no servidor antes de habilitar URLs amigáveis. Veja mais informações sobre URLs amigáveis no fórum" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Essa opção torna o Ushahidi acessível via \"URLs amigáveis\", sem \"index.php\" na URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Permitir URLs amigáveis" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs amigáveis" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "O nome número da API Clickatell não pode ter mais de 20 caracteres." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "É necessário fornecer um número de API Clickatell." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "A senha do Clickatell deve ter pelo menos 5 e no máximo 50 caracteres." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "É necessário fornecer uma senha no Clickatell." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "O nome de usuário Clickatell não pode ter mais de 50 caracteres." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "É necessário fornecer um nome de usuário no Clickatell." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configurar mapa" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Localização padrão" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "O campo cor parece não conter dados válidos." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "O campo cor não pode ter mais que seis 6 caracteres." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "É necessário preencher o campo cor." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Visualização padrão do mapa" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nível padrão de zoom" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Buscar cidades no Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "A porta do servidor de email é muito longa." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "A porta do servidor só pode conter números." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "A senha do servidor do email deve ter pelo menos 5 e no máximo 50 caracteres." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "É necessário fornecer a senha do email do servidor." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "A porta do servidor de email é muito longa." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "A porta do servidor só pode conter números." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "A porta do servidor de email é muito longa." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "É necessário fornecer um tipo de servidor de email." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "O nome de usuário do servidor de email não pode ter mais de 50 caracteres." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "É necessário fornecer o email do servidor." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opções de configuração do Facebook." + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Para obter as informações abaixo, você precisa criar um novo aplicativo no Facebook." + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Essas configurações permitem que os usuários façam login via Facebook, isto não cria um aplicativo do Facebook para sua implantação" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "O campo Google Analytics deve conter um Web Property ID válido no formato UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Habilitar HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Esta opção faz Ushahidi ser acessado no modo inseguro; sem \"https://\" no prefixo de URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Esta opção faz Ushahidi ser acessado em modo seguro, com https no prefixo de URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "O campo de itens por página (no site) parece não conter dados válidos." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "É necessário preencherr o campo de itens por página (no site)." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "O campo de itens por página (Admin) parece não conter dados válidos." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "É necessário preencher o campo de itens por página (Admin)." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configurar o provedor de mapa é um processo simples. Escolha um provedor, obtenha uma chave API do provedor do site, e digite a chave API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nível de zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Escolha um provedor de mapa" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Digite a nova chave API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Consiga uma chave API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Configurar o provedor de mapa é um processo simples. Escolha um provedor, obtenha uma chave API do provedor do site, e digite a chave API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Provedor de mapa" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Mapa da Linha do Tempo" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Configuração do mapa" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Essa versão do Ushahidi será usada em vários países?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Escolha um país padrão" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Clique e arraste para o mapa para definir a localização exata." + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Mostrar relatos em um mapa" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Permitir que usuários enviem comentários nos relatos" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Incluir feed de notícias de RSS no site" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Permitir que os usuários de subscrição de alertas" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Permitir que usuários enviem relatos?" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Chave do Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Banner do site" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocos por linha" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Páginas em cache" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Vida útil do cache" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Ativar Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Declaração de Copyright do site" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Cor padrão para todas as categorias" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Ícone padrão para todas as categorias" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Deletar a imagem do Banner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Deletar ícone Padrão" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Exibir página de contato?" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Exibir a página Como ajudar?" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Alertas por email" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Para receber alertas por email, configure sua conta de email." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "E-mail do site" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Itens por página - Capa" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Itens por página - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Previna spam nos comentários usando Akismet do Automattic.
Você receberá uma chave API ao registrar-se com o seu nome de usuário no WordPress.com." + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Credenciais no Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Site Laconica " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Idioma do site" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Aprovação manual de usuários" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Mensagem do site" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nome do site" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Plataforma privada" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Requerer confirmação de Email do usuário" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Mensagem para Envio de Relato" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Compartilhe estatísticas com API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Slogan do site" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Timezone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Configurações do site" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Credenciais no Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags, separadas por vírgulas " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "O campo do email parece não conter um endereço de email válido." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "O campo de email do site deve ter pelo menos 4 e no máximo 100 caracteres." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "O campo nome do site deve ter pelo menos 3 e no máximo 50 caracteres." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "É necessário fornecer o nome do site." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "O campo nome de slogan deve ter pelo menos 3 e no máximo 100 caracteres." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "É necessário preencher o campo de slogan." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Número da API Clickatell" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Verifique o saldo disponpivel no Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Creditar" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Senha no Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Inscreva-se no serviço Clickatells clicando aqui." + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Forneça os seus dados de acesso no Clickatell abaixo" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Nome de usuário no Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS é um software livre e de código aberto que permite aos usuários enviar e receber mensagens de texto com grandes grupos de pessoas através de telefones celulares. Clique na caixa abaixo para baixar a versão mais recente do FrontlineSMS.com" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Descarregue e instale FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Instruções detalhadas sobre como enviar SMS a partir de sua instalação FronlineSMS estão disponíveis aqui. O hyperlink e a chave API a seguir são necessários para configurar a sincronização com FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Copie e cole no campo FrontlineSMS \"Endereço\"" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Copie e cole isto no campo de FrontlineSMS \"Ushahidi API Key\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Conectando FrontlineSMS para esta implantação Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Forneça o número de telefone conectado ao Frontline SMS no campo abaixo." + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Forneça o número sem nenhum + ou traços baixos no campo abaixo." + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "1ª opção: Use Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "2ª opção: Use a Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Opções de configuração de SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "O 1º campo do número de telefone parece não conter dados válidos." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "O 1º campo do número de telefone deve conter apenas números." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "O 2º campo do número de telefone é muito longo." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "O 2º campo do número de telefone deve conter apenas números." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "O 3º campo do número de telefone é muito longo." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "O 3º campo do número de telefone deve conter apenas números." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Opções de configuração do Twitter." + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Para obter as informações abaixo, configure sua instalação como um nova aplicação do Twitter em" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "\"Consumer Key\" (Chave do Consumidor)" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "\"Consumer secret\" (Segredo do consumidor)" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "\"Access Token\" (Token de Acesso)" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "\"Access Token Secret\" (Segredo do Token de Acesso)" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Configurações de teste" diff --git a/application/i18n/po/po-pt_BR/sharing.po b/application/i18n/po/po-pt_BR/sharing.po new file mode 100644 index 0000000000..2ac7008af6 --- /dev/null +++ b/application/i18n/po/po-pt_BR/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Data de inscrição" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Data do envio" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Último acesso" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo cor deve ter 6 caracteres." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "É necessário escolher uma cor." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "O compartilhamento parece não ter um nome válido." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "É preciso ter um nome para o compartilhamento." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "A URL do site já existe." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "A URL do site parece não ser válida." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "É necessário fornecer a URL do site." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "O campo de URL do site parece não conter uma URL válida." diff --git a/application/i18n/po/po-pt_BR/stats.po b/application/i18n/po/po-pt_BR/stats.po new file mode 100644 index 0000000000..4fe0f1044f --- /dev/null +++ b/application/i18n/po/po-pt_BR/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprovado" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorias" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Impacto das categorias" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Esse gráfico fornece uma visualização linear dos relatos por categorias no decorrer do tempo. Role da esquerda para a direita para ver uma comparação das diferentes categorias. Passe o mouse sob o gráfico para obter mais detalhes." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Escolha um intervalo de tempo" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Países" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "País" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Divisão por países" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Olá, essa é a seção de estatísticas. Haverá descrições gerais aqui, em breve. Por hora, navegue usando os links das sub-categorias acima." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Erro" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossário" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Súmario de acessos" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Páginas vistas" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Quantidade total de páginas visitadas no site até agora." + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Relatos" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categorias de relatos" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Estatísticas de relatos" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Status de relatos" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Relatos detalhados" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Estatísticas de relatos" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Estatísticas não configuradas" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mês" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 meses" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 meses" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Todos" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Não aprovados" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitantes únicos" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Quantidade de indivíduos visitando o seu site; visitantes exclusivos são contados por meio do uso de cookies. Caso o visitante não tenha habilitado o uso de cookies, eles serão identificados usando um conjunto simples de observações do endereço de IP, resolução, nevegador, plugins, sistema operacional, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Não verificados" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificado" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Sumário dos visitantes" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visitas" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Uma visita é o registro de uma única pessoa acessando o seu site mais de 30 minutos após a última página vista." diff --git a/application/i18n/po/po-pt_BR/tooltips.po b/application/i18n/po/po-pt_BR/tooltips.po new file mode 100644 index 0000000000..382647e6a4 --- /dev/null +++ b/application/i18n/po/po-pt_BR/tooltips.po @@ -0,0 +1,586 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Isso inclui o relato em categorias adicionais. Se você selecionar Categoria 1 aqui e o relato já tem a Categoria 2 vinculada a ele, o relato então terá ambas Categoria 1 e Categoria 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprova um relato ou não. Se aprovado, ele aparecerá publicamente." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Você será capaz de atribuir uma emblema para o usuário gatilho. Escolha o emblema que é atribuído aqui." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Trata-se de uma série de horas e/ou minutos entre duas vezes no formato de 24 horas. Se introduzir uma hora mais cedo no segundo campo, será invertida com o primeiro. Estes tempos devem estar dentro de um único dia. Além disso, este tempo é verificado com o que você configurou nas configurações do site e não necessariamente o fuso horário do usuário interagindo com a sua projeto. Deixe em 0:00 para 00:00 para ignorar esse qualificador." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Se você gostaria de ativar gatilhos somente quando uma determinada categoria for utilizada, você pode o definir aqui. Isso permitirá que um gatilho seja ativado caso uma das categorias seja utilizada. Por exemplo, caso você selecione as Categoria 1 e Categoria 2 aqui e um relato for enviado enviado utilizando as Categoria 2 e Categoria 3, ele irá passar no teste." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Se essas ações acontecem em determinados dias da semana, defina isso aqui. Tenha em mente o dia é determinada pelo fuso horário configurado em sua instalação. Segure shift, comando ou control para seleção de dias múltiplos." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Corpo do e-mail que será enviado." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Assunto do e-mail que será enviado" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "O feed pode ser todos os feeds ou feeds específicos. Se você só quer que feeds específicos ativem um gatilho, você deve escolhê-los aqui. De outra forma, você deve deixar isto como \"todos\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Nome de usuário do remetente no Twitter (ou de múltiplos usuários separados por vírgulas). Se você quer ativar gatilhos somente para mensagens no twitter enviadas por um usuário específico, inclua o nome de usuário dele aqui (sem preceder por @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Você pode optar por deixar em branco se você não quiser verificar as palavras-chave. Se você adicionar palavras aqui, você vai precisar separá-los com uma vírgula (,). Por exemplo, se você deseja ativar um gatilho quando alguém menciona \"amor\" ou \"paz\" em sua mensagem, você vai ter que adicionar \"paz, amor\" na caixa de palavras-chave." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Você pode escolher qualquer lugar ou um local específico. Se você selecionar um local específico, você será convidado para desenhar uma caixa ao redor da área que qualifica uma ação. Por exemplo, se você quer que o gatilho seja ativado quando alguém apresenta um relato no Brasil, você selecionará \"área específica\" e, em seguida, desenhará a caixa em torno do Brasil. Você pode fazer essas caixas tão pequenas ou tão grandes quanto queira. Você também pode desenhar múltiplas caixas." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Este qualificador irá ativar o gatilho na contagem N-th tanto para a base de usuários toda a coletividade ou para cada usuário individual. Deixe em branco a ignorá-lo." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Este é o título padrão para adicionar ao relato." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Se todos os qualificadores acima passarem, o gatilho gerará uma resposta. Isto pode variar de aprovar um relato a enviar um e-mail para um usuário. Selecione a resposta aqui para ativar opções adicionais para as respostas específicas." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Se você selecionar \"Usuário gatilho\", o e-mail será enviado para o usuário que executou a ação. Se você selecionar o botão de rádio ao lado da caixa de entrada, você poderá digitar um endereço de e-mail personalizado. Isso é útil se você está montando gatilhos para notificar pessoas quando certas partes do mapa estão recebendo relatos, check-ins ou alguma outra atividade." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Você pode selecionar vários dias aqui. Datas são determinadas pela definição de fuso horário implantação. A fim de padrão para todas as datas, não selecione qualquer data." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "O gatilho é o principal componente da criação de Gatilhos de Ação . Aqui é onde você determina se gostaria que algo acontecesse quando alguém envia um relato, realiza um check-in, etc. Você será capaz de filtrar as respostas a essas ações depois de selecionar um." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "O usuário pode ser qualquer um, ou um usuário específico. Se você quer que apenas usuários específicos ativem um gatilho, você deve selecioná-los aqui. Caso contrário, você deve deixar este como \"qualquer um\", já que a maioria dos gatilhos são criados para todos os usuários interagindo com o sistema" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marca um relato como verificado ou não." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Páginas de perfil neste site usam Gravatar. Ao clicar na imagem, você será levado para o site Gravatar onde você pode mudar a sua foto do perfil." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separe cada valor com uma vírgula, por exemplo, valor1, valor2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separe cada valor com uma vírgula, por exemplo, valor1, valor2. No caso de você querer definir um valor padrão, terminar a sua lista de opções com :: por exemplo: Se você quiser fazer o padrão valor3, ele deve ser valor1, valor2, valor3 :: value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separar cada item escolha com uma vírgula, por exemplo, Item 1, Item 2 etc" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Comece a digitar a lista de membros." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Assunto da mensagem privada" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mensagem privada" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Você pode selecionar uma cor que vai aparecer em sua foto de perfil em seu perfil público. Esta cor também será o ponto de cor que aparece no mapa para seus checkins" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Seu e-mail" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Seu nome completo" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Se definida, esta será a sua nova senha. Deixar este campo em branco se você deseja manter a sua senha atual." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Esta é uma exigência ao criar um novo usuário e será a senha de usuários. Você deve informar o seu novo usuário para alterar sua senha após entrar pela primeira vez." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Ao clicar em SIM, você receberá alertas via email sempre que um novo relato ou comentário for enviado ao seu site." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Sua senha. Deixe esse campo vazio se quiser manter a sua senha atual." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Seu perfil pode ser visto por qualquer pessoa na Internet se você marcar essa opção. Esta é também a maneira mais fácil de mostrar os relatos que você enviou, seus check-ins, emblemas etc, tudo em uma página" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Este é o endereço onde o seu perfil público pode ser encontrado." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Não é possível mudar o nome de usuário." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Níveis de acesso são usados ​​para restringir o acesso a dados de campo de formulário personalizado. Maiores níveis de acesso podem acessar campos de níveis mais baixos. Superadmin tem o nível mais alto de acesso (100). Dados públicos são exibido no menor nível de acesso (0). Os membros têm nível de acesso 10. Admin é o nível de acesso 90 por padrão." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "É o endereço de email que será usado para o envio de alertas." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Permitir que usuários subscrevam alertas via web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Permite que relatos parecidos sejam agrupados em um único ponto no site." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permite que usuários deixem comentários em relatos no site principal." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Permite que feeds de RSS sejam exibidos no site principal." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Permite que usuários enviem informações por meio de um formulário online." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Quantidade padrão de dados a serem buscados por solicitação API." + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Quantidade máxima de dados a serem buscados por solicitação API." + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Quantidade máxima de dados a serem solicitados da API por endereço de IP." + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "O banner site aparece no topo da parte frontal do seu site, se o tema que você está usando oferece suporte a ele. O tamanho recomendado para esta faixa vai depender do tema que você está usando. Tenha em atenção que este vai substituir o título do site e tagline no topo da página." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Número de colunas do bloco que serão exibidos em cada linha." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Habilitar ou desabilitar page caching. Isto faz com que as páginas sejam carregadas rapidamente pois reduz o tempo de resposta. Recomendamos usar caching em sites de grande tráfico. **Lembre-se que os relatos serão preenchidos na plataforma baseado no calendário que você definiu (tempo de vida do Cache)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Marcar o tempo de vida do cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Esta configuração permite o uso de checkins em seu ushahidi. Trata-se de um tipo de relato simplificado, que não passa por moderação antes da publicação e requer que o seu site seja configurado de uma determinada maneira. Ao habilitar esse recurso, certifique-se de sua configuração de fuso horário está em UTC e seu tema suporta checkins. Apenas temas com checkin estarão habilitados na página de configurações de addons/temas." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Marcar mapa para cobrir uma região específica " + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Marcar um código de cor para todas as categorias do site" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Definir um ícone para todas as categorias no site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Esse é o país onde o site está sendo usado" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Liga ou desliga a seção de contato no site principal." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Liga ou desliga a seção como ajudar no site principal." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Quantidade de relatos exibidos por página no site principal." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Quantidade de relatos exibidos por página no painel de controle." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Esse é o hub das mensagens de entrada" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Isto sincroniza as mensagens no hub com a plataforma Ushahidi" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Números de telefones por meio dos quais as mensagens são recebidas." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Rastreia visitantes do site. Veja estatísticas detalhadas sobre os visitantes" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Define o idioma que será usado no site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Se você definir esta opção para sim, você deve aprovar cada usuário individual que cria uma conta em seu site, atribuindo-lhes funções (Membro ou seja, Administrador, Superadministrador)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Define qual mapa será usado no site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Isto mostra a linha do tempo com base na data e hora em que relatos foram enviados" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Ao definir esse valor como verdadeiro ou sim, a o seu ushahidi será privado e apenas os usuários que você especificar poderão acessar o sistema." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Usuários receberão um link de confirmação para clicar antes de serem autorizados a entrar se aqui é definido como sim. Se você ativar esta após a instalação aceitar usuários, ele será solicitado a confirmar a sua conta antes de serem autorizados a continuar a usá-lo." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Esse é onde os emails são arquivados" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Este é a senha para o endereço de email que recebe relatos." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Isto é obrigatório para aceitar conexões de entrada deste endereço de email" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "É necessário para aumentar a segurança da conexão." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "É necessário para receber emails do servidor." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "É o email que recebe relatos." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Os dados de acesso são gravados no servidor controlado pelo Ushahidi. Ao habilitar esta opção, você obtém acesso aos dados de acesso através do painel de administração. Desabilitando, você não coletará dados de acesso e ficará sem acesso aos dados coletados enquanto essa função estiver desabilitada." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "É uma boa ideia definir o copyright do seu trabalho. Para obter ajudar para determinar a melhor licença para o seuc caso, acesse http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "É o email que receberá relatos e mensagens enviadas por meio do formulário de contato." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Esse texto aparecerá acima do mapa, na homepage. É útil para prover informações importantes a visitantes do site." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Trata-se do nome do site, e aparecerá no topo do site principal." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Esta é uma mensagem que aparecerá na página de envio de relato. Isso é bom para avisos ou instruções adicionais para os visitantes que estão reportando." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Em poucas palavras, explique o que o site é." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Este é o fuso horário em que seu site operará. Isso impacta quaisquer ações que você configurou que utilizem data e hora, bem como o horário padrão para relatos, seja na interação com ou no mecanismo interno do site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Defina a hashtag que será usada no twitter" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-pt_BR/ui_admin.po b/application/i18n/po/po-pt_BR/ui_admin.po new file mode 100644 index 0000000000..304501341d --- /dev/null +++ b/application/i18n/po/po-pt_BR/ui_admin.po @@ -0,0 +1,1660 @@ +# +# Translators: +# allviana , 2012 +# Harold Gloglo , 2013 +# Iske Solstag , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-23 18:41+0000\n" +"Last-Translator: Iske Solstag \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Acesso negado. As informações não são válidas ou sua requisição foi recusada" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Acesso negado. Sua requisição foi processada, mas negada por limites de acesso como limite de tempo. Tente novamente mais tarde" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nível de Acesso" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Ações" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Adicionar categoria" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "adicionado" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "adicionado/editado" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Extras" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrador" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertas" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertas Recebidos" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Tudo" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anônimo" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Nenhum" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Algum" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API bloqueada" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Histórico de API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Configurações de API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "PERMITIR" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "PERMITIR TODOS" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "aprovado" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Aprovar automaticamente" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprovar Manualmente" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arquivado" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Tem certeza que deseja" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Tem certeza que deseja apagar esse item?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Tem certeza que deseja apagar essa foto?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Tem certeza que deseja alternar formulários" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Assinar" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Assinaturas" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Assinar Emblema" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "E-mail do autor" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Voltar" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Bloquear IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre tempos" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocos" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Corpo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Erro na exibição do gráfico" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Certifique-se de que a mensagem é válida" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Certifique-se de que o número é válido" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Verifique suas configurações de SMS" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalhes de Creckin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Verificando" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Cidades carregadas" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "código" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "A versão do código não está sincronizada." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Cor" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentários" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Seu código de confirmação de alertas é:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Este usuário foi" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Contador" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Não foi encontrado este país" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "criado/editado" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Criar relato" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Atualização importante" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Atualmente Ativo" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Atualmente Inativo" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Você não tem permissões suficientes para editar os seguintes campos personalizados." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Diariamente" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Painel" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "banco de dados" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data e horário" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Data de inclusão" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Data de modificação" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dias da semana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "A versão da DB não está sincronizada." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "excluído" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Excluir" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Deletar todos os relatos" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Apagar Emblema" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descrição" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Desabilitado" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Iniciar divisor" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Finalizar divisor" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Baixar relatos" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Menu de escolhas suspensas" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITADO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editado por" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editar" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Editar log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "E-mail" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Coletivo" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Erro na geolocalização. Erro de HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Biblioteca IMAP para PHP não instalada" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Credentiais incorretas" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Erro" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Erro: não foi possível publicar o incidente." + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "A cada seis horas" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "A cada doze horas" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista de Escolhas" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valor padrão" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipi de Arquivo" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Remarcação" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numérico" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Texto Livre" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altura (em linhas)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Campo escondido" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Quantidade máxima de caracteres" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nome do campo" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Alternar" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Não" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Sim, Fechado por padrão" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Sim, Aberto por padrão" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Não foi possível encontrar arquivo enviado" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Não foi possível abrir o arquivo para leitura" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Esse formulário não existe" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Fórum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Campo de texto (texto livre)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Campo de Data" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Campo de Botões de Rádio" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Campo de Confirmação" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Campo de menu suspenso" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Erro de lapso de tempo no Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Ajuda" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obtenha mais temas" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obtenha mais plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Ações" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Adicionar/Editar" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "E-mail" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Gerenciar usuários" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Perfil" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Usuário" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ajuda" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Por hora" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Feed de incidente para" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "A pasta de instalação ainda existe. Exclua a pasta de instalação. É uma potencial vulnerabilidade de segurança." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Versão" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Versões" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalhes da versão" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parâmetro inválido" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Endereço de IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Esse campo é de data?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Quem Pode Ver Respostas" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Quem pode enviar respostas" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Palavra Chave" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Palavras Chaves" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "E-mail:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nome completo:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Senha:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Função:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Usuário:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Camadas" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Sair" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Históricos" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Gerenciamento" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Gerenciar perfis e permissões" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Ver usuários" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Acrescentar/Editar usuários" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Gerenciar seu perfil público." + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marcar Como" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcado como seguro" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcado as spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "não foi companível com nenhum documento" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mensagem" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mensagens" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mensagens da Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Mensagens do Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "A mensagem foi enviada." + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutos" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Parâmetros ausentes" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificado" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modificar Configuração do Timezone" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "descer" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "subir" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Versões múltiplas hospedadas" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Meus Alertas" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Meus Checkins" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Meu perfil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Meus Relatos" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Cotos Expressos" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positivo" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativo" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Criar Novo Alerta" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Criar Nova Mensagem" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nova senha" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Não" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Esta é uma categoria especial que não aparecerá no formulário de envio de relatos para os usuários enviando relatos. ELa é usada para armazenar os relatos deixados sem categorias (relatórios não categorizados) como resultado da remoção de uma categoria." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificações" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Não há diferenciação entre maíusculas e minúsculas" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Não encontrado" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Sem informações. Não há resultados a serem exibidos." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Não houve erro" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Não foram encontrados resultados." + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Na contagem específica" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "página" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "páginas" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Página não encontrada" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Desculpe, a página que você tentou acessar não está aqui.

Você seguiu um link de outra parte de nosso site?
Se você chegou nesta página por outra parte de nosso site, por favor contacte-nos para que corrijamos nosso erro.

Você seguiu um link em outro site?
Links de outros sites podem às vezes ter perdido a validade ou conterem erros. Diga-nos de onde você veio e nós tentaremos contactar o outro site para consertar o problema.

Você digitou o URL?
Você pode ter digitado errado o endereço (URL). Verifique se usou as letras e símbolos exatos, e não trocou maiúsculas com minúsculas etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Desculpe, a página que você tentou acessar não está aqui." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parâmetros usados" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Senha" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Reconfigurar senha" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Caro (a)" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Recebemos uma solicitação para reconfigurar a senha de" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Para modificar sua senha, clique no link abaixo (ou copie e cole o mesmo em seu navegador)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Como solicitado, sua senha foi reconfigurada. Os novos detalhes são" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Reconfiguração de senha do ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefone" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Por favor Selecione" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Os dados não foram enviados por meio de post" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Preview" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mensagem" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mensagens Privadas" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mensagens Privadas Enviadas" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Assunto" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Para" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Listagem pública" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Qualificadores" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "ler" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevância" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Título do Relato" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Data do relato" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Contribuidores" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Níveis de relatos" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Relatos" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Nível da Reputação" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Necessário" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Reconfigurar" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Resposta" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultados" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revogar" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Este email já tem uma conta gerenciada pelo CrowdmapID. O usuário deve utilizar a senha já existente para autenticar-se." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Gravar configurações" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Busca" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Procurar Relatos" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "Procurando por" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "A chave de criptografia ainda está definido para o valor padrão. Isto é inseguro e deve ser alterada." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Este site está roda sobre HTTP. Isso deve ser redefinido para HTTPS para maior segurança." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instruções estão disponíveis no Wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Selecione os formatos de descarga de relatos desejados:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Escolha um tipo de campo ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Esolha um item" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Você deve selecionar um \"gatilho\" antes de selecionar uma Resposta." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Você deve selecionar um \"gatilho\" antes de selecionar uma Qualificação." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Remetente" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Enviar Para" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Essa mensagem foi enviada a partir de seu site às" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Tempo do servidor" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Configurações" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Exibindo página" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Exibindo resultados" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "Mostrar" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoria especial" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Essa categoria especial não será exibida no formulário de submissão de relatos. É usada em conjunção com o recurso de \"Contribuidores de confiança\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Área específica" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Estado" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estatísticas" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estatísticas" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Falha na coleta de estatísticas. Tente novamente mais tarde." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Falha na coleta de estatísticas." + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Dias Específicos" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Assunto" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tarefa executada" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Campo de texto" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Gerenciar usuários" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Erro de tempo expirado" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "para" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Total de relatos" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "até" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traduzir relatos" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Gatilho" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Usuário gatilho" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Gatilhos" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "não aprovado" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Desconhecido" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Falha desconhecida" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "não lido" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Você não vai mais receber alertas de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Clique aqui para fazer a atualização agora" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Atualizar Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Status da atualização do Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Fazer upload de relatos" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Usuário" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Usuários" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificado/Não verificada" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verificar/Não verificar" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Moderador" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " conta com uma atualização disponível." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Encode de Vídeo" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mensagens Privadas" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Ver site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Ver Relato" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Olá, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Sim" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Sua busca por" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Clicar o botão abaixo deletará TODOS os relatos do banco de dados. Você deve usar isto com cuidado pois esta operação não pode ser desfeita." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Nós recomendamos que você faça backup do seu banco de dados antes de proceder" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Estou certo que quero deletar todos os %s relato(s) do banco de dados." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Tem certeza que quer deletar todos os relatos?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Não há relatos a deletar." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Número de logins" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Último login" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Conta confirmada?" diff --git a/application/i18n/po/po-pt_BR/ui_main.po b/application/i18n/po/po-pt_BR/ui_main.po new file mode 100644 index 0000000000..f1e4b9e23d --- /dev/null +++ b/application/i18n/po/po-pt_BR/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# allviana , 2012 +# Harold Gloglo , 2013 +# Iske Solstag , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Sobre " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acesso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limites de acesso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nome de usuário" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Ações" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Não é possível desfazer isso. Tem certeza que quer continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Ativar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Ativo" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Adicionar" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Adicionado por" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dados adicionais" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Relatos extras" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Adicionar/Editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Adicionar campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Adicionar idioma" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Adicionar novo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Adicionar nova categoria" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Adicionar tradução" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Admin" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Receber alertas" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Receber alertas de relatos feitos perto de:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Salvar meus alertas" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "forneça um email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "forneça um telefone celular, com código de país" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Receber alertas" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "O Alerta foi" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Telefone celular:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ou defina um local no mapa abaixo, e você receberá um alerta quando forem feitos relatos em um raio de 20 quilômetros." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Caso você não consiga encontrar o local desejado, clique no mapa para apontar a localização correta." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Receber por RSS (copie a url abaixo)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Selecione a cidade" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Primeiro passo: Selecione sua cidade ou localidade" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Segundo passo: Enviar alertas para meu" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Terceiro passo (opcional): Escolha categorias" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmar solicitação anterior de alerta" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Seu alerta foi salvo!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Todos" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permitido" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Etiquetas HTML permitidas: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes são apenas permitidos desde: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Todas as categorias" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Todo o Tempo" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "e" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprovar" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprovado" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Relatos aprovados" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprovar esse relato" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximado" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arquivar" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arquivado" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Crescente" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "em" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Quantidade édia de relatos por dia" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Aguardando aprovação" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Aguardando verificação" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Emblema" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Emblemas" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imagem do Emblema" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ou você pode enviar sua imagem do próprio emblema no lugar." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Emblema Pack" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "selecione Emblema" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Procurar Perfis" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoria" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro de categorias" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Essa categoria foi" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nome da categoria" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Troque o período da data" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Troque a senha" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Troque a Figura" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Escolha" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Escolha intervalo de datas para download" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Ou escolha seu período de data" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Escolha tipo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URLs amigável" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Limpar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Limpar mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Fechar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "grupos" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Cor" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentário" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentários" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalhes do comentário" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Suas configurações foram salvas!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurar" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Você tem sucesso confirmou o seu endereço de e-mail! Por favor, faça login abaixo." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Você confirmou seu endereço de email! Um administrador deverá aprovar sua conta antes que você possa fazer login." + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "E-mail de confirmação falhou! Você pode solicitar um novo e-mail de confirmação abaixo." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contato" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Código de segurança" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Seu endereço de e-mail" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mensagem" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "A mensagem foi enviada." + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Nome" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Número de telefone" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar mensagem" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Assunto" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Direitos autorais ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Criar" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Criar/Editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Criar novo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Criar Nova Senha." + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Criar relato" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilidade" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Senha Atual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "campos customizados" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informações" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data e horário" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dia" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desativar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Brasília, Brasil" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Apagar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Apagado" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Apagados" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Recurso de apagar desabilitado" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Apagar o último" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Apagar esse relato" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Apagar selecionados" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Apagar spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descrição" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Decrescente" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Exemplo: Esquina do Palácio do Congresso Nacional, Praça dos Três Poderes, Brasília" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalhes" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Relato direto" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Desabilitado" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Desaprovar" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Baixar relatos" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Download" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar campos do formulário" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar relatos" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Endereço de e-mail" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Configuração do servidor de e-mail" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Host do servidor de e-mail" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Senha do servidor de e-mail" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Porta do servidor de e-mail" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Suporte SSL do servidor de e-mail" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipo do servidor de e-mail" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nome de usuário do servidor de e-mail" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "portanto os dados devem ser associados a esse e-mail" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Para receber relatos por email, forneça as configurações de seu e-mail abaixo. Lembre-se que os alertas serão recebidos em" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Alguns servidores requerem um endereço de e-mail completo" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Senha da conta de e-mail" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Portas comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Exemplos: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Habilitar ou desabilitar conexões de SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VAZIO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "para" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Erro!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Exemplo" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Brasil" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Aplicações Externas" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Link de Vídeo Externo" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Alimentar" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Enviar comentários" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Esse feed foi" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Itens do feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nome do feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL do feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Campos não usados" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Arquivo" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Seu arquivo é maior que o tamanho máximo permitido." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtros" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrar Relatos" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrar Relatos Por" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrar relatos que contenham" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Encontrar" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Encontrar localidade" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Nome" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Forçar a inicialização do planejador" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Esqueceu a senha?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulário" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulários" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descrição do formulário" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editar esse formulário" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "O formulário foi" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Título do formulário" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "De" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nome completo" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Geolocalização disponível" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Cor" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentários" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiqueta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Largura curso" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Ir" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "foi" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Como ajudar" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Oculto" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ocultar" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ocultar essa mensagem" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Início" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Como relatar" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Usado para identificar você no site para outros usuários." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imagem" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imagens" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imagem/Ícone" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inativo" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Caixa de entrada" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incidente" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidentes próximos" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Local do incidente" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Incluir" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Incluir categorias" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Incluir campos personalizados" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Incluir descrição" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Incluir a maior quantidade de informações possível" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Incluir latitude" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Incluir dados sobre o local" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Incluir longitude" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Inclua Informação Pessoal" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Mídia recebida" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Avaliação da informação" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Forneça o local exato" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Sua conta não tem a permissão necessária para você entrar. Por favor, contate o administrador." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "em resposta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Endereço de IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "É este o seu perfil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "item" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "itens" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalhes" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Título do item" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Chave" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Palavras-chave" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Arquivo KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Enviar arquivo KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Idioma" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Último" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Último mês" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Sobrenome" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Último ano" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitude" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Camadas" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Outras camadas" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "A camada foi" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nome da camada" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL da camada" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Deixe um comentário" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menos Informação" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nível" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Esse nível foi" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nome do nível" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitado" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Listar" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Carregando Relatos" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Local" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Locais" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Cidade, estado e/ou país" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Conta criada com sucesso. Você pode entrar agora." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "A confirmação foi enviado para seu endereço de e-mail." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Conta criada. Sua conta deve ser aprovada por um administrador antes que você possa fazer login." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Endereço de e-mail não existe. Tente um endereço diferente ou criar uma conta." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Por favor, clique em sua conta de provedor" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Login com" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email e Senha" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Assinar" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Criar uma Conta" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Obrigado por registrar-se com %1$s. Para confirmar seu endereço de email, por favor vá para o seguinte URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmação de Assinatura" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Um novo usuário cadastrou-se em %1$s. Para aprovar o cadastro, por favor acesse o seguinte URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Aprovação de Novo Usuário" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Sua conta de usuário foi aprovada por %1$s. Para fazer login vá para o seguinte URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Conta de usuário aprovada" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Criar uma conta agora para tirar mais proveito dos recursos do site." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitude" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marcar como lida" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marcar como não lida" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Tamanho máximo do arquivo" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Mídia" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtro de mídia" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Membros" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gerencie sua conta" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mensagem" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mensagens" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalhes da mensagem" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mensagem de uma fonte não-numérica:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Celular" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modificar" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modificar data" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mês" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Mais" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Mais informações" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Essa versão do Ushahidi será usada em múltiplos países?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Você deve confirmar seu endereço de e-mail para acessar esta implantação. Se você perdeu o seu e-mail de confirmação, você pode solicitar um novo abaixo." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nome" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Relatos próximos" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Novos" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Notícias" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Feeds de notícias" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Fontes de notícias" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nova categoria" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nova senha" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Novo relato" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Próximo" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Não" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Sem checkins para mostra." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Sem arquivos" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Nenhum" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Avisos" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Não aprovados" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Não aprovado" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Não Selecionado---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "não é spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Não especificado" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Não há relatos" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Não há resultados" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Desligado" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Notícias oficiais e dos meios de comunicação" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Ligado" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opção" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opções" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organização" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizações" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descrição da organização" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email da organização" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "A organização foi" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nome da organização" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "1º telefone da organização" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "2º telefone da organização" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Site da organização" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descrição original" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Título original" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "OUTRAS VERSÕES DO USHAHIDI" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Caixa de saída" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Saída" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Página" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Páginas" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descrição da página" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "A página foi" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Nome da guia da página" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Título da página" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoria principal" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Senha" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Digite a senha novamente" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Senha alterada com sucesso! Login abaixo." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Esqueceu a senha?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Verifique a nova senha em seu email." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Permanecer conectado nesse computador?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mês passado" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Ano passado" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pendente" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "por" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Dados pessoais opcionais." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefone" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Fotos" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Fotos e vídeos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Procure o local usando o nome do lugar, as coordenadas de latitude e longitude (formato: 38.19,-85.61), ou clique sob o local para apontar o ponto exato no mapa." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Executar" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Observação" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Site de plugin" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Perfil Público" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL do Perfil Público" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Visualizar" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Item anterior" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Mensagem anterior" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Anterior" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privado" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Cor do Perfil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Seu perfil foi salvo" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estatísticas rápidas" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Classificação" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Lido" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Receber" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Receber de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Receber notificações" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Relatos recentes" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Atualizar feeds de notícias" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email Registrado" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "remover" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Responder" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Relatar" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Relatos (a partir do mapa, listados em ordem cronológica)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Repórter" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Repórteres" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Data do relato" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email do repórter" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nome do repórter" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "O repórter foi" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Endereço de IP do repórter" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Sobrenome do repórter" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nível do repórter" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Níveis de repórter" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefone do repórter" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Ver relatos" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Navegar" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Enviar" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Relatos Por Este Usuário" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Relatos" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descrição" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Os relatos serão baixados em formato CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Recursos" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Encontrar um local perto de você" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Nome" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Sobrenome" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Refinar nome do local" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Link de fonte de notícias" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informações opcionais" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Enviar fotos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Voltar à página de relatos" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Selecionar a cidade" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Seu relato foi enviado para revisão. Nossa equipe entrará em contato em breve, se necessário." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Enviar novo relato" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Horário" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Cronologia" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Título do relato" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Link do vídeo" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Relatar um incidente" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalhes do relato" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Enviando uma mensagem para" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Enviando um email para " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Enviando um tweet com a hashtag" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Preenchendo esse formulário" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Usando aplicativo" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Seu relato foi salvo" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Título do relato" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Solicitar mais informações" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Solicitar local" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Requerido" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requisitos" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Reenviar Confirmação de Email" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Resetar" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Resetar todos os filtros" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Restaurar senha" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Encontrar os nomes das cidades para o país selecionado" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Contas gerenciadas pelo serviço %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Você já tem uma conta gerida pelo CrowdmapID! Tente usar seu email e senha do CrowdmapID." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Perfil" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Salvar" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Gravado" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Salvar e Novo" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Salvar e fechar" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Salvar relato" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Agendar" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Planejador" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dia" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Histórico de planejamento" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Dia da semana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "BUSCAR" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultados da busca" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Código de segurança" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Selecionar todos" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Escolha um tipo de campo" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Selecione tipo de formulário" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Selecione no mapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Selecione quantos forem precisos" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Verifique se um item foi escolhido" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Escolher tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Enviar" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Enviar Confirmação" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Enviando para" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Enviado" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Enviado por" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Endereço do servidor" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipo do servidor" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servidor" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nome de usuário no servidor" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID do usuário do servidor" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Compartilhar" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Compartilhar dados" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "O compartilhamento foi" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Compartilhando" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa curto" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Exibir" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Exibir todos" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mostra Mensagens" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Mostrando relatos De %1$s a %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Site" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "email do site" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL do site" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa pequeno" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Desculpe, você não tem nenhum emblema." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Fonte" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nome da fonte" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordene" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ordene por" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL da fonte" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Suporte SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "De" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Passo" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Enviar relato" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Enviado por %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Enviar via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Enviar SMS para" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "do seu telefone" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Completo!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importação bem-sucedida" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Sobrenome" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Vistoria" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa mais alto" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Porta" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Temas" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema padrão do Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Configuração de temas" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Esse" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hoje" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Nesse mês" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Esta semana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Nesse ano" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Este é o seu perfil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "horário" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "TÍTULO " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "a" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hoje" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hoje às" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Símbolo" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Todos os relatos" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traduzido" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descrição traduzida" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Título traduzido" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traduzir para" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Tradução" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "A tradução foi salva" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Verdadeiro" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipo" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "habilitado para enviar Email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Relatos Não Categorizados" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Não lido" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Não verificado" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Atualizar feeds" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Enviar" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Veja nosso guia de carregamento de relatos:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Guia de carregamento XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Guia de carregamento CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Enviar arquivos" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Importar relatos" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "As colunas dos campos personalizados devem ter sua form_id prefixada a elas, por exemplo, campo personalizado Teste, no formulário padrão, cuja id é 1, será Test-1. Durante a importação de campos personalizados de formulário, certifique-se de que" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Usando o formulário abaixo, é possível importar incidentes no sistema Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Relatos devem ser carregados em formato CSV ou XML" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Quando a ID incidente já existe no banco de dados, a entrada no arquivo CSV/XML será ignorada." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "É necessário fornecer pelo menos um título e uma data para o relato" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Se nenhuma latitude e longitude forem fornecidos, o local será geocodificados com o Geocoder Google" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Caso esteja importando informações adicionais, isto é, informações pessoais e/ou campos personalizados" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "DEVE existir uma entrada para ao menos um dos campos de informação pessoal (nome, sobrenome, email) . Registros vazios não serão importados." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Suas entradas em campos de múltipla escolha, botões de rádio e caixas de marcar batem com as opções fornecidas para o campo personalizado na sua instância" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Opções em caixas de marcar são separadas por vírgulas, por exemplo, se sua escolha de frutas é maçã, mangas e uvas, sua entrada para este deve ser \"maçãs,mangas,uvas\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Valores em campos de data são no seguinte formato: mm/dd/aaaa por exemplo 3 de outubro de 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Exemplo de relato CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,TÍTULO DO RELATO,DATA DO RELATO,LOCAL,DESCRIÇÃO,CATEGORIA,APROVADO,VERIFICADO
\"1\",\"Denúncia de compra de voto em São Paulo\",\"2010-10-03 10:06:00\",\"São Paulo\",\"Candidato fulano oferece um sapato para quem votar nele\",\"COMPRA DE VOTOS, ELEIÇÕES ESTADUAIS, \",SIM,SIM" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Atos de Intimidação\",\"2010-10-03 10:10:00\",\"Rio de Janeiro\",\"Atos de Intimidação acontecendo na porta das seções eleitorais\",\"ATOS DE INTIMIDAÇÃO, COAÇÃO, ELEIÇÕES MAJORITÁRIAS, \",SIM,NÃO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Enviado com sucesso" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Upload Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Usuário" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nome de usuário" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Admin do Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificação" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificado" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Verificar relatos" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verificar" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verificar esse relato" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versão" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Vídeo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Ver" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Visualizações" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Ver todos" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Ver todos os feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Ver todos os relatos" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Ver itens" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Mais" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Ver o Perfil Público" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Ver relato" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Ver relatos" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Ver Vídeo" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visível" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Aguardando aprovação" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Aguardando verificação" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa longitudinal" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulário Web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Peso" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Sim" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ontem" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Seu painel de instrumentos" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Seu arquivo" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Aproximar zoom" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Afastar zoom" diff --git a/application/i18n/po/po-pt_BR/upgrade.po b/application/i18n/po/po-pt_BR/upgrade.po new file mode 100644 index 0000000000..db19a0c0b0 --- /dev/null +++ b/application/i18n/po/po-pt_BR/upgrade.po @@ -0,0 +1,302 @@ +# +# Translators: +# allviana , 2012 +# Iske Solstag , 2013 +# Iske Solstag , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-09-23 19:16+0000\n" +"Last-Translator: Iske Solstag \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dados inválidos. Somente 0 para Não ou 1 para Sim." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Atualização Automática" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Atualizações Disponíveis" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continue" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Atualizar" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Eu irei atualizar seu banco de dados da versão" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "para a versão do banco de dados mais recente" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Clique no botão \"Atualizar\" e relaxe enquanto eu faço a mágica." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Ah, se você quiser eu posso fazer o backup do seu banco de dados, basta checar a caixa abaixo e vou fazer isso para você facilmente. " + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Fazer backup do banco de dados antes da atualização?(Fortemente recomendado)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Atualização do banco de dados da Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi foi atualizado! Antes de continuar, você precisa atualizar o seu banco de dados para a versão mais recente (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Sua versão do banco de dados está atualizada." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Houve falha na atualização" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Atualização Manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Status da atualização do Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "As instruções abaixo detalham como atualizar essa versão do Ushahidi manualmente" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Download
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Faça o download da versão mais recente do Ushahidi de" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- os arquivos .htaccess, ./applications/config/config.php, ./applications/config/database.php e ./applications/config/auth.php.
- Para caso algo dê errado, é recomendado que você faça um backup completo da sua instalação do Ushahidi.
Copie arquivos
- Extraia o arquivo zip baixado
- Dependendo do sistema operacional rodando no servidor web, use seu modo/ferramenta preferido (e.g. Telnet, FTP, SSH) para fazer login no servidor web e trocar o conteúdo de todas as pastas pelos mais novos da versão recente.
Atualize o banco de dados
- Primeiro determine a versão do schema do seu banco de dados olhando o valor db_version na tabela settings ou olhe as informações de atualização do Ushahidi no topo desta página.
- Se você está na versão 25, você precisa atualizar da 25-26, 26-27, 27-28 e assim por diante até o mais recente arquivo SQL no diretório /sql.
- Com seu cliente de banco de dados, atualize o banco de dados executando o arquivo upgradex-x.sql apropriado.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr " Etapa 3: Olhe dentro da pastasql. Execute manualmente o arquivo upgrade-.sql a partir da versão db atual de sua instalação até o último arquivo de atualização sql." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Etapa 4: Clique no botão \"Continuar\" para atualizar as tabelas necessárias." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Para atualização automática, clique no botão abaixo." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Você está atualmente usando Ushahidi v%1$s com banco de dados versão %2$d rodando sobre %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Atualizando" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Para continuar com a atualização simplificada, a seguinte informação é necessária para o servidor FTP em que seu site está hospedado." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Exemplo: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Password:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP User Name:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Você tem a versão mais recente do Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Você não precisa atualizar." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versão do banco de dados: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Atenção: Versão de software em version.php e banco de dados não coincidem." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Atenção: Versão de banco de dados em version.php e banco de dados não coincidem." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Banco de dados:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Baixando a última versão do Ushahid..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Arquivo Log" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Descarregado com sucesso. Desempacotando..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Falha no download." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Descomprimido com sucesso. Copiando arquivos ..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Falha na descompressão." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copiado com sucesso. Atualizando banco de dados ..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Falha ao copiar arquivos." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Backup de banco de dados e atualização bem sucedidas." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Falha no backup do banco de dados." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Atualização do banco de dados bem sucedida." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Apagando arquivos baixados ..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "UPGRADE BEM SUCEDIDO. Veja o Arquivo Log" diff --git a/application/i18n/po/po-pt_PT/alerts.po b/application/i18n/po/po-pt_PT/alerts.po new file mode 100644 index 0000000000..50d81ed20b --- /dev/null +++ b/application/i18n/po/po-pt_PT/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# alfalb_mansil, 2014 +# Sandra Ribeiro , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-23 17:27+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "O campo do Email parece conter um endereço de email inválido?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Esse endereço de Email já se encontra registado na nossa base de dados para receber alertas nessa localização" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do Email deve ter entre 4 a 64 caracteres." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O campo do e-mail é obrigatório, se a opção estiver seccionada." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Esta função estará disponível apenas para um país. Por favor, verifique se o local do alerta se encontra circunscrito ao país %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Não seleccionou uma localização válida no mapa." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Não seleccionou uma localização válida no mapa." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Não seleccionou uma localização válida no mapa." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Não seleccionou uma localização válida no mapa." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "O campo do Telemóvel parece não conter o número de dígitos correcto." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Esse Número de Telemóvel já se encontra registado na nossa base de dados para receber alertas nessa localização." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "O campo do Telemóvel parece não conter um número válido. Por favor insira apenas dígitos, incluindo o número de código do país (Portugal +351)." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Tem de inserir o seu Número de Telemóvel ou Endereço de Email." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "O campo do Telemóvel é obrigatório, se a opção estiver selecionada." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Não definiu um raio válido no mapa." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Não definiu o seu raio no mapa." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Ainda não definiu um destinatário para os alertas." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Inscreveu-se para receber alertas com as seguintes categorias" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Este código já foi verificado!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Este código de verificação não foi encontrado! Por favor confirme que tem o URL correcto." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "O seu código foi verificado correctamente. A partir deste momento irá receber alertas de incidentes conforme forem ocorrendo." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Para confirmar o seu pedido de alerta por favor vá a " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Voltar à página de Alertas para criar mais alertas" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "O seu pedido de Alerta por Email foi criado e uma mensagem de verificação foi enviada para" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Por favor insira abaixo o código de confirmação de Email que recebeu: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "O seu pedido de Alerta por Email NÃO FICOU registado!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "O seu pedido de Alerta por Email foi registado!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "O sistema não foi capaz de processar o seu pedido de confirmação!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "O seu pedido de Alerta por Telemóvel foi criado e uma mensagem de verificação foi enviada para" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Por favor, insira abaixo o código de confirmação SMS que recebeu no seu telemóvel:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "O seu pedido de Alerta por Telemóvel NÃO FICOU registado!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "O seu pedido de Alerta por Telemóvel foi registado!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Esta implantação não está configurada para processar alertas correctamente" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Recebeu este email porque subscreveu a recepção de alertas. Caso não pretenda receber futuros alertas vá a" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Nunca mais irá receber alertas de " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Não fomos capazes de o desinscrever. Por favor confirme que tem o URL correcto." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alertas - verificação" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Não receberá alertas nesta localização até que confirme o seu pedido." diff --git a/application/i18n/po/po-pt_PT/auth.po b/application/i18n/po/po-pt_PT/auth.po new file mode 100644 index 0000000000..bc17ead8b3 --- /dev/null +++ b/application/i18n/po/po-pt_PT/auth.po @@ -0,0 +1,255 @@ +# +# Translators: +# Jorge Rocha , 2013 +# lcs , 2014 +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-18 12:22+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "O e-mail inserido não é um endereço de e-mail válido." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Desculpe, já existe uma conta de utilizador para este endereço de e-mail." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "O campo do e-mail deve ter pelo menos 4 e não mais de 64 carateres." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "O campo do e-mail é obrigatório." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "O campo do nome deve ter pelo menos 3 e não mais de 100 carateres." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "O campo do nome é obrigatório." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "O campo do nome do utilizador contém carateres não autorizados." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "A sua senha deve ter pelo menos 8 carateres." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor, verifique se inseriu corretamente o e-mail e a senha." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor, insira a mesma senha nos dois campos da senha." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "O campo da senha é obrigatório." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O campo da senha só deverá ter carateres alfabéticos, os símbolos # e @, números, sublinhados e travessões" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "A senha atual que inserida para a sua conta está incorreta. Por favor, tente novamente." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O campo de senha deve ter pelo menos 8 carateres." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor, verifique se inseriu corretamente o e-mail e a senha." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor, insira a mesma senha nos dois campos da senha." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "O campo da senha é obrigatório." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O campo de senha só deverá ter carateres alfabéticos, símbolos o # e @, números, sublinhados e travessões" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Ocorreu um erro ao tentar iniciar a sua sessão." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "O campo da senha deve ter pelo menos 8 carateres." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Por favor, verifique se inseriu corretamente o endereço de e-mail e a senha." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Por favor, insira a mesma senha nos dois campos da senha." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "O campo da senha é obrigatório." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "O servidor de autenticação está desligado. Por favor, tente novamente mais tarde." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "O campo de senha só deverá ter carateres alfabéticos, os símbolos # e @, números, sublinhados e travessões" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "O campo da confirmação da senha deve ser igual ao campo da senha." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "O e-mail inserido não é um endereço de e-mail válido." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Desculpe, nós não temos o seu endereço de e-mail." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "O campo do e-mail é obrigatório." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Apenas um 'superadmin' pode modificar uma 'superadmin' ou atualizar um utilizador para administrador." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Formato de função inválido." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "O campo da função deve ter pelo menos 5 e não mais de 30 carateres." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Deve definir pelo menos um tipo de função." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Deve selecionar uma das funções ADMIN ou USER." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "O código da senha esquecida é inválido" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Era preciso um código de senha esquecida" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "A função de utilizador 'admin' não pode ser modificada." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "O campo do URL de perfil público só deverá conter números e letras." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Desculpe, mas este URL de perfil público já está a ser utilizado." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "O URL do perfil público deve ter pelo menos 2 e não mais de 100 carateres." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Por favor, verifique se inseriu corretamente o URL de perfil público." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "O campo do URL do perfil público é obrigatório." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "A função de utilizador 'super admin' não pode ser modificada." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Possível ataque CSRF. Pretendia criar/editar um utilizador?" diff --git a/application/i18n/po/po-pt_PT/bug.po b/application/i18n/po/po-pt_PT/bug.po new file mode 100644 index 0000000000..961d21bfcc --- /dev/null +++ b/application/i18n/po/po-pt_PT/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# alfalb_mansil, 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-23 17:27+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor, insira um código de segurança válido." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Por favor, insira o código de segurança." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "O campo do e-mail parece não conter um endereço de e-mail inválido?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do e-mail deve ter entre 4 a 64 carateres." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O campo do e-mail é obrigatório, se a opção estiver selecionada." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "O campo do erro é obrigatório." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O campo do assunto deve ter pelo menos 3 carateres." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "O campo do assunto é obrigatório." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo do nome deve ter pelos 3 carateres." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "O campo do nome é obrigatório." diff --git a/application/i18n/po/po-pt_PT/category.po b/application/i18n/po/po-pt_PT/category.po new file mode 100644 index 0000000000..80752f6013 --- /dev/null +++ b/application/i18n/po/po-pt_PT/category.po @@ -0,0 +1,96 @@ +# +# Translators: +# lcs , 2014 +# Luís Lago , 2013 +# alfalb_mansil, 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-12 14:36+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo da cor deverá ter 6 carateres." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "O campo da cor é obrigatório." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "O campo da descrição é obrigatório." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Por favor, certifique-se que o tamanho da imagem a enviar seja limitada a 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "O campo de imagem parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "O campo de imagem parece não conter um arquivo válido." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "O campo título deve ter pelo menos 3 e no máximo 80 caracteres." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "O campo do título é obrigatório." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Você não pode subcategorizar uma categoria com subcategorias." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "A categoria principal não existe." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "É necessário preencher o campo de categoria principal com números." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "A categoria pai não pode ser uma categoria especial" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "O campo da categoria fonte é obrigatório." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "A categoria não pode ser a mesma da categoria principal." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Categorias especiais não podem ser subcategorizadas." diff --git a/application/i18n/po/po-pt_PT/comments.po b/application/i18n/po/po-pt_PT/comments.po new file mode 100644 index 0000000000..a4e6797c71 --- /dev/null +++ b/application/i18n/po/po-pt_PT/comments.po @@ -0,0 +1,64 @@ +# +# Translators: +# lcs , 2014 +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-12 14:36+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Introduziu o código de segurança errado" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo do nome deve ter pelos 3 caracteres." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "O campo do nome é obrigatório." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "O campo dos comentários é obrigatório." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do email deve ter pelo menos 4 e no máximo 64 caracteres." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O campo do e-mail é obrigatório, se a opção estiver selecionada." diff --git a/application/i18n/po/po-pt_PT/contact.po b/application/i18n/po/po-pt_PT/contact.po new file mode 100644 index 0000000000..6bd6abc37b --- /dev/null +++ b/application/i18n/po/po-pt_PT/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-23 17:30+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Por favor introduza um código de segurança válido" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo do e-mail deve ter entre 4 a 64 carateres." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O campo do e-mail é obrigatório, se a opção estiver selecionada." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "O campo da mensagem é obrigatório." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo do nome deve ter pelo menos 3 carateres." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "O campo do nome é obrigatório." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O campo do assunto deve ter pelo menos 3 carateres." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "O campo do assunto é obrigatório." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Surgiu um erro a enviar a mensagem" diff --git a/application/i18n/po/po-pt_PT/core.po b/application/i18n/po/po-pt_PT/core.po new file mode 100644 index 0000000000..f999cb11e7 --- /dev/null +++ b/application/i18n/po/po-pt_PT/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2014-08-18 12:04+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "Ficheiro de Configuração" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "Controlador" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "Controlador" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "O controlador %s para a biblioteca %s deve implementar a interface %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Não foi possível encontrar o controlador %s para a biblioteca %s" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ajuda" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "O tipo de ficheiro solicitado, .%s, não é permitido no seu ficheiro configuração de visualização" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "biblioteca" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "A diretoria de registos não é gravável: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modelo" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Não foi possível encontrar a página solicitada, %s." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Comunique Isto à Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Não foi possível encontrar o %s, %s, solicitado." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Só pode existir uma instância do Ushahidi por página solicitada" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Deve definir o nome de ficheiro da visualização antes de executar a renderização" diff --git a/application/i18n/po/po-pt_PT/database.po b/application/i18n/po/po-pt_PT/database.po new file mode 100644 index 0000000000..f5787af484 --- /dev/null +++ b/application/i18n/po/po-pt_PT/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Luís Lago , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Erro de base de dados: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi" diff --git a/application/i18n/po/po-pt_PT/datetime.po b/application/i18n/po/po-pt_PT/datetime.po new file mode 100644 index 0000000000..c712e0377f --- /dev/null +++ b/application/i18n/po/po-pt_PT/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Luís Lago , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Sex" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Sexta-feira" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Seg" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Segunda-feira" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sáb" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sábado" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dom" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Domingo" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Qui" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Quinta-feira" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Ter" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Terça-feira" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Qua" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Quarta-feira" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Janeiro" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Fev" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Fevereiro" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Março" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Abr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Abril" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maio" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Junho" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Julho" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ago" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosto" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Set" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Setembro" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Out" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Outubro" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novembro" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dez" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Dezembro" diff --git a/application/i18n/po/po-pt_PT/feeds.po b/application/i18n/po/po-pt_PT/feeds.po new file mode 100644 index 0000000000..65a066e60b --- /dev/null +++ b/application/i18n/po/po-pt_PT/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Luís Lago , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "O campo de nome do feed terá que ter um mínimo de 3 e um máximo de 70 caractéres. " + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Por favor introduza o nome do feed" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Por favor introduza a URL do feed" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Please enter a valid URL. Eg. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Fonte" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Título" diff --git a/application/i18n/po/po-pt_PT/footer.po b/application/i18n/po/po-pt_PT/footer.po new file mode 100644 index 0000000000..87805c80f2 --- /dev/null +++ b/application/i18n/po/po-pt_PT/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl não está instalado correctamente no seu sistema" diff --git a/application/i18n/po/po-pt_PT/form.po b/application/i18n/po/po-pt_PT/form.po new file mode 100644 index 0000000000..477e5ce443 --- /dev/null +++ b/application/i18n/po/po-pt_PT/form.po @@ -0,0 +1,124 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2014 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-10-03 06:17+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "The Field Name must be at least 3 and no more \n\t\t\t\t200 characters long." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Please enter a value 0 to 50 for the Field Height" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "You have entered an invalid value for Date Field" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Please select Yes or No for the Date Field" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "The Field Name must be at least 3 and no more \n\t\t\t\t100 characters long." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Por favor introduza nome do campo" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Inseriu um valor inválido no Campo Necessário." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Por favor, selecione Sim ou Não no Campo Necessário." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Por favor escolha o tipo de campo" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Please enter a value 0 to 300 for the Field Width" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Por favor introduza a descrição do formulário" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "The form name field must be at least 3 and no more \n\t\t\t\t100 characters long." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Por favor introduza o nome do formulário." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Um formulário com o mesmo título já existe. Por favor introduza outro título." diff --git a/application/i18n/po/po-pt_PT/imap.po b/application/i18n/po/po-pt_PT/imap.po new file mode 100644 index 0000000000..669e63bc7d --- /dev/null +++ b/application/i18n/po/po-pt_PT/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Could not open IMAP stream" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "The email service is not supported" diff --git a/application/i18n/po/po-pt_PT/installer.po b/application/i18n/po/po-pt_PT/installer.po new file mode 100644 index 0000000000..50de445e73 --- /dev/null +++ b/application/i18n/po/po-pt_PT/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-23 17:21+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Caminho Base" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Base de Dados" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Hospedeiro da Base de Dados" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Se estiver a executar o Ushahidi no seu computador, este poderá ser como \"localhost\". Se estiver a executar o Ushahidi a partir de um servidor da web, irá obter a informação do hospedeiro do seu fornecedor do hospediro da web." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nome da Base de Dados" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "O nome da base de dados em que deseja executar o Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Para mais informação, por favor, consulte este artículo no wiki que fala sobre as bases de dados em mais detalhe." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Idioma Predefinido (Local)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Cada implementação do Ushahidi vem com um conjunto de traduções do idioma incluídas . Também pode adicionar o seu idioma" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Desativar" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Ativar" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Em baixo, tem listado um resumo dos erros que nós encontramos." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Terminado" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Geral" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google código API" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Qualquer pessoa pode obter um código api. Obtenha agora o seu" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Voltar" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALAÇÃO AVANÇADA" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Obtenha todas as definições básicas completas através deste processo de 5 passos. Estes incluem o servidor, mapa, nome do site e detalhes do contacto." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALAÇÃO BÁSICA" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simples e rápida. Tudo o que precisa, é da sua diretoria raiz do site da web e a informação da base de dados. Escolha esta opção se desejar efetuar uma instalação rápida, e poderá configurar tudo mais tarde." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Prosseguir" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Bem-vindo ao processo de instalção do Ushahidi. Escolha em baixo, qual o tipo de instalação a utilizar." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalação Bem Sucedida!" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Servidor da Correspondência" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Hospedeiro do Servidor da Correspondência" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Senha do Servidor da Correspondência" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "A senha que utiliza normalmente para iniciar a sessão do seu e-mail" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Porta do Servidor da Correspondência" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Portas Comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tipo de Servidor da Correspondência" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Protocolo de Acesso de Mensagens da Internet (IMAP) ou Protocolo \"Post Office\" (POP). Qual é a diferença?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Nome de Utilizador do Servidor da Correspondência" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Se estiver a utilizar o correio do Gmail, Hotmail, ou Yahoo, insira o endereço de e-mail completo como nome de utilizador." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Mapa" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Fornecedor do Mapa" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi funciona igualmente bem com qualquer um destes três provedores de mapeamento: Google, Bing ou Open Street Map. Escolha um que tenha o maior detalhe da sua área." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Outros Passos ..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Senha" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "A senha da base de dados" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Anterior" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Por favor, reinicie o Servidor Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Ativar ou desativar SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Alguns servidores de e-mail oferecem a opção para utilizar SSL quando efetua uma coneção. è recomendado que utilize SSL porque este proporciona um nível de segurança mais elevado." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Configure o seu servidor SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Endereço do e-mail do Site" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Endereço do e-mail de Alerta do Site" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Quando os visitantes do seu site se registarem para os alertas por e-mail, eles irão receber e-mails deste endereço. Este endereço de e-mail não tem de ser o mesmo Endereço de e-mail do Site." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "A comunicação de e-mail do site irá ser enviada através deste endereço" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nome do Site" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "O nome do seu site" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Slogan do Site" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "O seu slogan" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Os ficheiros e pastas abaixo listados precisam de ser graváveis pelo seu servidor da web." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Aqui estão as instruções para alterar as permissões da alteração de ficheiro:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Antes de iniciar, terá de verificar se os seguintes ficheiros e pastas são graváveis pelo seu servidor da web. Isto envolve as permissões da alteração de ficheiro." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "For the installation process, please have the following bits of information on hand" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefixo da Tabela" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalmente não pode alterar o prefixo da tabela. Contudo, se desejar executar múltiplas instalações Ushahidi de uma única base de dados, pode fazer isso, alterando aqui o prefixo." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Título" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Para iniciar a sessão, vá até" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Enviar relatório dos dados" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nome de Utilizador" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "O seu nome de utilizador da base de dados" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "e utilize as seguintes credenciais" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Visualize o seu site da web" diff --git a/application/i18n/po/po-pt_PT/layer.po b/application/i18n/po/po-pt_PT/layer.po new file mode 100644 index 0000000000..6d4ee89052 --- /dev/null +++ b/application/i18n/po/po-pt_PT/layer.po @@ -0,0 +1,65 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-23 17:42+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo de cor tem de ter 6 carateres" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "O campo de cor é obrigatório." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "The file field does not appear to contain a valid file. The only accepted formats are .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "O campo de ficheiro não contem um ficheiro válido" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "O campo de nome tem um mínimo de 3 e um máximo de 80 carateres" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "O campo do nome é obrigatório." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "É necessário um URL KML ou Ficheiro." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "You can't have both a KML file and a url" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Please enter a valid URL. Eg. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-pt_PT/libraries.po b/application/i18n/po/po-pt_PT/libraries.po new file mode 100644 index 0000000000..ceb7b0d46e --- /dev/null +++ b/application/i18n/po/po-pt_PT/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Luís Lago , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Could not connect to akismet server" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "The response from Akismet could not be retrieved" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Your Akismet API key is not valid" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current lenght=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Your unicode message is too long! (Current lenght=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Método de envio não suportado!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directory %s could not be deleted" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Downloading the latest ushahidi failed. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "File %s could not be copied" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "File %s could not be deleted" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "The downloaded ushahidi zip file %s, could not be written" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-pt_PT/maintenance.po b/application/i18n/po/po-pt_PT/maintenance.po new file mode 100644 index 0000000000..dbe5c5802c --- /dev/null +++ b/application/i18n/po/po-pt_PT/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Luís Lago , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Lamentamos, mas o nosso site está em manutenção. Por favor, tente outra vez mais tarde." diff --git a/application/i18n/po/po-pt_PT/message.po b/application/i18n/po/po-pt_PT/message.po new file mode 100644 index 0000000000..b3892f54f0 --- /dev/null +++ b/application/i18n/po/po-pt_PT/message.po @@ -0,0 +1,64 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2014 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-10-03 06:28+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Please enter the security code" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "The Email field does not appear to contain a valid email address?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "O campo de email deve ter pelo menos 4 caracteres e no máximo 64 caracteres." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "O campo do e-mail é obrigatório, se a opção estiver selecionada." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "O campo dos comentários é obrigatório." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "O campo de nome deve ter pelo menos 3 caracteres." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "O campo do nome é obrigatório." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "O campo de telefone é obrigatório" diff --git a/application/i18n/po/po-pt_PT/mhi.po b/application/i18n/po/po-pt_PT/mhi.po new file mode 100644 index 0000000000..dbc22ab1c9 --- /dev/null +++ b/application/i18n/po/po-pt_PT/mhi.po @@ -0,0 +1,53 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-23 17:32+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Por favor introduza um código de segurança válido" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Por favor, introduza o código de segurança" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "O campo do e-mail parece não possuir um endereço válido" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Por favor, introduza um e-mail válido" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "O campo da mensagem é obrigatório." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "O campo de assunto deve ter um mínimo de 3 carateres" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "O campo do assunto é obrigatório." diff --git a/application/i18n/po/po-pt_PT/notifications.po b/application/i18n/po/po-pt_PT/notifications.po new file mode 100644 index 0000000000..74438ac300 --- /dev/null +++ b/application/i18n/po/po-pt_PT/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 21:59+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Esta mensagem foi enviada do seu site da web." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Início de Sessão do Administrador" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Foi submetido um novo comentário para o seu site da web, em resposta a:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Novo Comentário" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Foi submetida uma nova mensagem de e-mail para o seu site da web." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nova Mensagem de e-mail" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Foi submetido um novo relatório para o seu site da web" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Novo Relatório" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Foi submetida uma nova mensagem de texto para o seu site da web." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nova Mensagem de Texto" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Recebeu um Novo Alerta" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Novo Alerta!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Recebeu uma Mensagem Privada" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nova Mensagem Privada" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Para responder, vá por favor:" diff --git a/application/i18n/po/po-pt_PT/page.po b/application/i18n/po/po-pt_PT/page.po new file mode 100644 index 0000000000..e24bc40280 --- /dev/null +++ b/application/i18n/po/po-pt_PT/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Luís Lago , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Por favor escreva um título de página" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "O título da página deverá ter um mínimo de 3 e um máximo de 150 carateres" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Por favor, introduza um nome para o separador da aba" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Por favor escreva uma descrição da página" diff --git a/application/i18n/po/po-pt_PT/permissions.po b/application/i18n/po/po-pt_PT/permissions.po new file mode 100644 index 0000000000..d902b219eb --- /dev/null +++ b/application/i18n/po/po-pt_PT/permissions.po @@ -0,0 +1,114 @@ +# +# Translators: +# Luís Lago , 2012 +# Luís Lago , 2013 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-10-03 06:31+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Ver Relatos" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Criar/Editar/Apagar Relatos" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprovar Relatos" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verificar relatos" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gerir comentários dos relatos" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Download dos relatos" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Upload de relatos" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gerir mensagens" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gerir relatores de mensagens" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Ver estatísticas" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gerir paínel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gerir utilizadores" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-pt_PT/private_message.po b/application/i18n/po/po-pt_PT/private_message.po new file mode 100644 index 0000000000..02d21cbc89 --- /dev/null +++ b/application/i18n/po/po-pt_PT/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Luís Lago , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "O campo \"assunto\" é de preenchimento obrigatório" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "O assunto deverá ter entre 3 e 150 carateres" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "O campo \"mensagem\" é de preenchimento obrigatório" diff --git a/application/i18n/po/po-pt_PT/report.po b/application/i18n/po/po-pt_PT/report.po new file mode 100644 index 0000000000..78897de075 --- /dev/null +++ b/application/i18n/po/po-pt_PT/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-04-23 17:36+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "erro!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Please select a valid item to include in the download" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Please select a valid type of report to download" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "The FROM date field does not appear to contain a valid date?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "The am/pm field does not appear to contain a valid value?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "The category field does not appear to contain a valid category?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "O campo \"Categorias\" é obrigatório." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "The date field does not appear to contain a valid date?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "O campo da data é obrigatório." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "O campo \"Descrição\" é obrigatório." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "The hour field does not appear to contain a valid hour?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "O campo das horas é obrigatório." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Please enter a valid value for Information Probability" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "The minute field does not appear to contain a valid value?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "O campo dos minutos é obrigatório." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "The news source links field does not appear to contain a valid URL?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Please ensure that photo uploads sizes are limited to 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "The Upload Photos field does not appear to contain a valid file" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Please enter a valid value for Source Reliability" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The title field must be at least 3 and no more 200 characters long." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "O campo \"Título do Relatório\" é obrigatório." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Please enter a valid value for Verify This Report" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "The video links field does not appear to contain a valid URL?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "The latitude field does not appear to contain a valid latitude?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo da latitude é obrigatório. Por favor, clique no mapa para apontar a localização." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "This report already has a translation for this language" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "The Original Report and the Translation have the same locale (language)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "A localização é obrigatória." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "The location name field must be at least 3 and no more 200 characters long." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "O campo \"Nome da Localização\" é obrigatório." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "The longitude field does not appear to contain a valid longitude?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "The email field does not appear to contain a valid email address?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "The last name field must be at least 3 and no more 100 characters long." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "The TO date field does not appear to contain a valid date?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-pt_PT/reporters.po b/application/i18n/po/po-pt_PT/reporters.po new file mode 100644 index 0000000000..3cc92e77b4 --- /dev/null +++ b/application/i18n/po/po-pt_PT/reporters.po @@ -0,0 +1,74 @@ +# +# Translators: +# lcs , 2014 +# Luís Lago , 2013 +# alfalb_mansil, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-12 14:39+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "O campo de latitude não contem uma latitude válida." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo de latitude é obrigatório. Por favor, clique no mapa para apontar a localização" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "O campo Nível Repórter parece não conter um Nível válido? " + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "O campo Nível Repórter parece não conter um Nível válido?" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "O campo localização precisa ter no mínimo 3 e no máximo 200 caracteres." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "O campo do nome da localização é obrigatório." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "O campo longitude não parece conter uma longitude válida." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "O campo longitude é obrigatório. Por favor clique no mapa para mapear a localização." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Relator inválido" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Relator inválido" diff --git a/application/i18n/po/po-pt_PT/reports.po b/application/i18n/po/po-pt_PT/reports.po new file mode 100644 index 0000000000..bb1c4d20e9 --- /dev/null +++ b/application/i18n/po/po-pt_PT/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 21:48+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verifique se selecionou pelo menos um item" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Por favor, verifique se selecionou pelo menos um item" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Os relatórios devem ser categorizados antes de poderem ser aprovados" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Não tem permissão para realizar esta ação" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Deve selecionar um ficheiro para enviar" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "O ficheiro a enviar deve ter a extensão .csv ou .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "O campo do ficheiro a enviar parece não possuir um ficheiro válido" diff --git a/application/i18n/po/po-pt_PT/roles.po b/application/i18n/po/po-pt_PT/roles.po new file mode 100644 index 0000000000..632a922150 --- /dev/null +++ b/application/i18n/po/po-pt_PT/roles.po @@ -0,0 +1,64 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-04-23 17:37+0000\n" +"Last-Translator: alfalb_mansil\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "O campo da descrição deve ter pelo entre 3 e 100 carateres." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "O campo Descrição é obrigatório." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "O campo do nome só deve conter letras ou números." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "O campo do nome deve ter entre 2 e 30 carateres." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "A Função do \"Super Administrador\" Não Pode Ser Modificada." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "É o campo Nome é obrigatório." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "O campo do nível de acesso deve ter um número entre 0 e 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "O campo do nível de acesso deve ter um número entre 0 e 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "O campo das permissões deve ter um número entre 0 e 100." diff --git a/application/i18n/po/po-pt_PT/settings.po b/application/i18n/po/po-pt_PT/settings.po new file mode 100644 index 0000000000..0d63331be2 --- /dev/null +++ b/application/i18n/po/po-pt_PT/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# alfalb_mansil, 2013-2014 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-10-03 06:20+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "O campo de autorização dos comentários não parece conter um valor válido." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "O campo dos comentários de permissão é obrigatório." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "O campo de incluir a fonte não parece conter um valor válido." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "O campo de incluir é obrigatório." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "O campo de incluir a fonte é obrigatório." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "O campo de alertas de permissão parece não conter um valor válido." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "O campo dos alertas de permissão é obrigatório." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "O campo dos relatórios de permissão parecem não conter um valor válido." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "O campo dos relatórios de permissão é obrigatório." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "O campo do estado de compartilhar parece não conter um valor válido." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "O campo do estado de compartilhar é obrigatório." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "É necessário o campo da cache das páginas." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "O campo da cache das páginas parece não conter um valor válido." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs. Without \"index.php\" in the URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Ativar Limpar os URL's" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr " Limpar URL's" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configurar Mapa" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Localização Predefinida" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "O campo da cor da fonte parece não conter um valor válido." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "É necessário o campo da cor." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Visualização de Mapa Predefinida" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nível do Zoom Predefinido" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Obter as Cidades a partir do Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "O campo da porta do servidor de Mail é muito longo." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "O campo da porta do servidor de Mail só deverá conter números." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opções de Configuração do Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Id. da App do facebook" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Ativar HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nível do Zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Selecione um Fornecedor de Mapas" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Obter um Código API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Fornecedor de Mapas" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Barra Cronológica do Mapa" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Definições do Mapa" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Por favor, selecione um país predefinido" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Clique e arraste o mapa para definir o seu local exato." + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Permitir que os Utilizadores Submetam os Comentários para os Relatórios" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Incluir Fonte de Notícias RSS no Site da Web" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Permitir que os Utilizadores Subscrevam para os Alertas" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Permitir que os utilizadores Submetam Relatórios" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Faixa de Site" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Ativar Verificações" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Declaração dos direitos de Autor do Site" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Cor Predefinida para Todas as Categorias" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Ícone Predefinido para Todas as Categorias" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Apagar Imagem da Faixa" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Apagar Ícone Predefinido" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Exibir Página de Contactos" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Exibir Página \"Como Ajudar\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Endereço de e-mail dos Alertas" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Endereço de e-mail do Site" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Itens por Página - Administrador" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Credenciais do Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Site do Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Idioam do Site" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Aprovar Utilizadores Manualmente" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Mensagem do Site" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nome do Site" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Share Site Statistics in API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Zona Horária" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Definições do Site" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter Credentials" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "A Sua Senha Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "O Seu Nome de Utilizador Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Opções da Configuração de SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Opções de Configuração do Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-pt_PT/sharing.po b/application/i18n/po/po-pt_PT/sharing.po new file mode 100644 index 0000000000..8827f104d7 --- /dev/null +++ b/application/i18n/po/po-pt_PT/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# lcs , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-12 14:38+0000\n" +"Last-Translator: lcs \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Data de inscrição" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Data do envio" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Último acesso" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "O campo cor deve ter 6 caracteres." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "É necessário escolher uma cor." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "O compartilhamento parece não ter um nome válido." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "É preciso ter um nome para o compartilhamento." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "The site url already exists" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "A URL do site parece não ser válida." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "The site url is required." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "The site url field does not appear to contain a valid URL?" diff --git a/application/i18n/po/po-pt_PT/stats.po b/application/i18n/po/po-pt_PT/stats.po new file mode 100644 index 0000000000..bae67be3ff --- /dev/null +++ b/application/i18n/po/po-pt_PT/stats.po @@ -0,0 +1,199 @@ +# +# Translators: +# Luís Lago , 2013 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-10-03 06:27+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprovado" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorias" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Categoria de impacto" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Choose a date range" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Países" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "País" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Resumo de países" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Hello, this is the statistics section. General description going here soon. For now, browse around using the sub category links above" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Erro" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glossário" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Resumo de visitas a site" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Lenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Relatos" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categories de relatos" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Estatísticas de relatos" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Estado de relatos" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mês" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 meses" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 meses " + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Todos" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Não aprovado" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Visitantes únicos" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "The number of individuals coming to your deployment; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Não verificado" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificado" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Resumo de visitantes" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Visitas" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview" diff --git a/application/i18n/po/po-pt_PT/tooltips.po b/application/i18n/po/po-pt_PT/tooltips.po new file mode 100644 index 0000000000..03c72bbdca --- /dev/null +++ b/application/i18n/po/po-pt_PT/tooltips.po @@ -0,0 +1,586 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2013 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-10-03 05:59+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprova ou não um relatório. Se aprovado, este irá aparecer publicamente." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Corpo do e-mail que irá ser enviado." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Assunto do e-mail que irá ser enviado." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marca um relatório como verificado ou não." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separar os valores com uma vírgula, ex.: valor1, valor2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Inicie a digitação para a lista de membros." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Assunto da mensagem privada" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mensagem privada" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "O seu endereço de e-mail" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Ao selecionar 'SIM' deixa-o receber os alertas através do e-mail quando são publicados novos relatórios ou comentários no seu site da web." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "A sua senha atual. Nós necessitamos que insira a sua senha para evitar qualquer alteração não autorizada à sua conta." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "O seu nome de utilizador não pode ser alterado." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Permite que os utilizadores subscrevam para os alertas através da web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permite que os utilizadores comentem nos relatórios no site principal." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Defina o mapa para cobrir uma localização especifica." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Defina um código da cor para todas as categorias no site." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Defina um ícone para todas as categhorias no site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Este é o país em que o site está a ser implementado." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Este é o concentrador para as mensagens a receber." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Rastos dos visitantes do seu site. Obtenha as estatísticas detalhadas do visitante." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Define o idioma que será utilizado no site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "This defines which map is to be used on the site" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Os emails serão guardados nessa parte" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "This is the password for the email address that receives reports" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Isso é preciso para aceitar conexões do endereço email" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "This is required to enhance a secure connection" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "This is required to retrieve e-mails from the host server" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "This is the email address that receives reports" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "This gives access to report statistics via the API." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Explique brevemente a função do site." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-pt_PT/ui_admin.po b/application/i18n/po/po-pt_PT/ui_admin.po new file mode 100644 index 0000000000..f4d07e1dff --- /dev/null +++ b/application/i18n/po/po-pt_PT/ui_admin.po @@ -0,0 +1,1661 @@ +# +# Translators: +# Luís Lago , 2012 +# Luís Lago , 2013 +# alfalb_mansil, 2013 +# Nigel Randsley , 2013 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-10-03 06:13+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Acesso negado. As suas credenciais não são válidas ou o seu pedido foi recusado." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Acesso negado. O seu pedido foi entendido, mas negado devido a limites de acesso, tal como, tempo. Tente voltar mais tarde." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nível de Acesso" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Ações" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Adicionar à Categoria" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "adicionado" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "adicionado/editado" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Complementares" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrador" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alertas" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alertas Recebidos" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Todos" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anónimo" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Alguém" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Em qualquer parte" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Banida" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Registos de Eventos API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Configurações de API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "RETIRAR BANE" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "RETERIAR BANE a TUDO" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "Aprovado" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Aprovar Automaticamente" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprovar Manualmente" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arquivado" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Tem a certeza que pretende" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Tem a certeza que pretende apagar este item?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Tem a certeza que pretende apagar esta fotografia?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Tem a certeza que pretende mudar de formulários?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Atribuir" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Atribuições" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Atribuir Crachá" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "E-mail do Autor" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Voltar" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Banir IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Entre Tempos" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocos" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Corpo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Erro ao visualizar o gráfico" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Por favor, certique-se de que a sua mensagem é válida." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Por favor, certifique-se de que o número é válido." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Por favor, verifique as suas configurações de SMS" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalhes de Verificação" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Verificações" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Cidades carregadas" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "código" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versão de código dessincronizada." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Cor" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentários" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "O seu código de confirmação de alertas é:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Este Utilizador Foi" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Contagem" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "País não encontrado" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "criado/editado" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Criar um Relatório" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Atualização Crítica" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Atualmente Ativo" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Atualmente Inativo" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Não tem permissões suficientes para editar os seguintes campos personalizados." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Diariamente" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Painel" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "base de dados" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data & Hora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Data Adicionada" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Data Alterada" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dias da semana" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Versão de DB dessincronizada." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "apagado" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Apagar" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Apagar tudos os relatorios" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Apagar Crachá" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demonstração" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descrição" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Desativado" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Início do Divisor" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Fim do Divisor" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "classe divisor" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Transferir Relatórios" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Lista de Seleções" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITADO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editado por" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editar" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Editar Registo de Eventos" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "e-mail" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Todo Coletivo" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Erro na geocodificação! Erro HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "A biblioteca PHP IMAP não está instalada" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Dados incorrectos" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Erro" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Erro, não é possível afixar o incidente" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "A cada seis horas" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "A cada doze horas" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Perguntas Mais Frequentes" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista de Seleções" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valor Predefinido" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipo de Dados" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "de Marcação" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numérico" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Texto Livre" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Altura (em linhas)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Campo Ocultado" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Limite máximo de carateres" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Nome do Campo" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Alternar" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Não" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Sim, fechado por predefinição" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Sim, aberto por predefinição" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Não foi possível encontrar o ficheiro enviado" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Não foi possível abrir o ficheiro para leitura" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Esse Formulário Não Existe!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Fórum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Campo da Área do Texto (Texto Livre)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Campo da Data" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Campo dos Botões Radio" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Campo das Caixas de Marcação" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Campo da Lista" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Erro de Intervalo do Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Obter Ajuda" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obter mais temas" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obter mais plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Ações" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Adicionar/Editar" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "e-mail" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Gerir Utilizadores" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Função" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Utilizador" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ajuda" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "De hora em hora" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Incidente de feed para" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "A pasta de instalação ainda existe. Apaga a pasta de instalação, pois ela cria uma vulnerabilidade de segurança." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instância" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instâncias" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalhes da Instância" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parâmetro Inválido" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Endereço de IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "É o Campo da Data?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Quem Pode Ver as Respostas" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Quem Pode Submeter as Respostas" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Palavra-chave" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Palavras-chaves" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Endereço de e-mail:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Nome Completo:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Senha:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Função:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nome de Utilizador:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Camadas" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Fechar Sessão" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Registos de Eventos" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Gerir" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Gerir Funções e Permissões" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Ver Utilizadores" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Adicionar/Editar Utilizadores" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marcar Como" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcado como não spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcado como spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "não corresponde a quaisquer documentos" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mensagem" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mensagens" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mensagens do StatusNet" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Mensagens do Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "A sua mensagem foi enviada!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuto" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minutos" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Parâmetro em Falta" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderador" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificado" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modificar as Definições do Fuso Horário" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "mover para baixo" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "mover para cima" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Múltiplas Instâncias Recebidas" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Os Meus Alertas" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "As Minhas Verificações" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "O Meu Perfil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Os Meus Relatórios" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votos Expressos" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positivo" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativo" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Criar Novo Alerta" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Criar Nova Mensagem" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nova Senha" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Não" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Esta é uma categoria especial que não irá aparecer no formulário de submissão do relatório para os relatórios submetidos pelos utilizadores. Isto é utilizado para manter os relatórios sem categorias atribuídas (relatórios não categorizados) como resultado de uma eliminação da categoria." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificação" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Não é sensível a MAI/MIN." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Não Encontrado" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Sem dados. Não existem resultados para apresentar." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Nenhum Erro" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Sem Resultados para Apresentar!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Numa Contagem Específica" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "página" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "páginas" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Página não encontrada" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Desculpa, a página que você quer visualizar não existe." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parâmetros utilizados" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Senha" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Reinicar Senha" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Caro" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Nós recebemos um pedido para reiniciar a senha para" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Para alterar a sua senha, por favor, clique em baixo na hiperligação (ou copie-a e cole no seu navegador)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "A sua senha foi redefinida. Seguem os seus dados atualizados" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Redefinir senha" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefone" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Por favor selecione" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Pré-visualização" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mensagem" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mensagens privadas" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mensagem privada enviada" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Assunto" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Para" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "lidos" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevância" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Título do relato" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Data do relato" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Relatores" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Relatos" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Obrigatório" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Redefinir" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Resposta" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultados" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "UNBAN ALL" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Pesquisa" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Pesquisar relatos" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "a pesquisar por" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Escolhe o formato de dados que pretendes descarregar" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Por favor selecione um item" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Remitente" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Enviar para" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Tempo do servidor" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Definições" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categoria especial" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Estado" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Estatísticas" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Estatísticas" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Dias específicos" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Assunto" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Campo de texto" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nome" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Gerir utilizadores" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "para" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "para" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Traduzir relatos" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "não aprovado" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "desconhecido" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Erro Desconhecido" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "não lido" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Não irá receber mais alertas de" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Atualizar o Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Atualizar estado do Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Utilizador" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Utilizadores" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificado/Não verificado" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versão" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "pode ser atualizada." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mensagens privadas" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Ver site" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Ver relato" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Bem-vindo" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Sim" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Entradas" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Última entrada" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Conta confirmada?" diff --git a/application/i18n/po/po-pt_PT/ui_main.po b/application/i18n/po/po-pt_PT/ui_main.po new file mode 100644 index 0000000000..179d44c8cc --- /dev/null +++ b/application/i18n/po/po-pt_PT/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# lcs , 2014 +# Nigel Randsley , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Sobre Nós" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acesso" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limite de Acesso" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nome de Conta" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Acções" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Esta acção não poderá ser desfeita. Tem a certeza de que pretende continuar?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Ativar" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Activo" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Adicionar" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Adicionado por" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dados adicionais" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Relatórios Adicionais" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Adicionar/editar" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Adicionar Campo" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Adicionar Linguagem" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Adicionar Novo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Adicionar Nova Categoria" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Adicionar Traducção" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administração" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Obter alertas" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Avisem-me se surgir um relato nas redondezas:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Guardar o Meu Alerta" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Endereço de Email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Insira o seu email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Insira o número de telemóvel com o código de país (portugal +351)" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Obter os Alertas" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "O alerta foi" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Telemóvel:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ou, seleccione o local pretendido no mapa abaixo, e será avisado quando surgir um relato nas redondezas ( 20 quilómetros)." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Se não consegue encontrar a sua localização, por favor indique no mapa a localização correta" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (copie o endereço abaixo)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Selecione a cidade" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Passo 1: Selecione a sua cidade ou localização:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Passo 2: Enviem-me os alertas para o:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Passo 3 (Opcional): Selecionar as Categorias" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmação do anterior alerta" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "O seu alerta foi guardado!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Todos" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permitido" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Etiquetas HTML permitidas: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes são apenas permitidos desde: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Todas as Categorias" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Todos" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "e" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprovado" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprovado" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Relatos Aprovados" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprovar este Relato" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximado" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arquivar" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arquivado" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascendente" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "neste" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Login automático" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Média de Relatórios por Dia" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Á espera de aprovação" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Aguardando verificação" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Emblema" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Emblemas" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imagem do Emblema" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ou pode enviar a sua própria imagem para o emblema" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Pacote de emblemas" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Escolha um Emblema" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Ver Perfis" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Cancelar" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categoria" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtro de Categoria" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "A categoria foi " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Nome da Categoria" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Alterar Intervalo de Datas" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Alterar Senha" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Alterar a minha Imagem" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Seleccione um" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Seleccione o conjunto para fazer download" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Ou escolha o seu próprio intervalo de datas" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Escolha o tipo de campo" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Limpar Endereços (URL)" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Limpar" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Limpar Mapa" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Fechar" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Grupos" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Cor" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentar" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentário" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalhes do comentário" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "As suas definições foram gravadas!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configuração" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Confirmou com sucesso o seu endereço de correio eletrónico! Por favor faça login." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Você confirmou seu endereço de email! Um administrador deverá aprovar sua conta antes que você possa fazer login." + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Confirmação de email falhou! Pode pedir nova confirmação em baixo" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contacto " + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Código de Segurança" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "O seu endereço de Correio Eletrónico" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mensagem" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "A sua Mensagem foi enviada!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Nome" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Número de Telefone" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Enviar Mensagem" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Assunto" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2010 Ushahidi.com. Todos os direitos reservados (traducção fbnsantos.com)." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Criar" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Criar/Editar" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Criar Novo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Criar nova Senha" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Criar Relatório" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilidade" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Senha Atual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Campos personalisados" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informação" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/aa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data & Hora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dia" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Desativar" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Santa Maria da Feira, Portugal" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Eliminar" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Eliminado" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Eliminar" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Desligado a função eliminar" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Apagar Último" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Eliminar este relato" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Apagar Selecionado" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Eliminar Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demonstração" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descrição" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descendente" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Exemplo: Esquina do shoping, rua das antas, Porto" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalhes" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Relato Directo" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Desligado" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Não aprovado" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Download relatos" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Descarregar" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editar" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editar campos do formulário" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editar Relato" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Endereço de Email" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Configurações do servidor de email" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Servidor de Mail" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Senha do Servidor de Mail" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Porta do Servidor de Mail" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Suporte SSL do Servidor de Mail" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipo de Servidor de Mail" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Nome de utilizador do Servidor de Mail" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Como tal, as configurações devem ser as associadas a este endereço de email" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "No sentido de receber relatos por email, por favor insira mais abaixo, a configuração da sua conta de email. Tenha em atenção que os emails serão recebidos no seu" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Alguns servidores exigem o nome da conta de email completa" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Password da sua conta de email" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Portas: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Exemplos: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Activar ou desactival ligações seguras (SSL)" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---VAZIO---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "Para" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Erro!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Exemplo" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Portugal" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Aplicações Externas" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Link para Vídeo Externo" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Dê-nos a sua opinião" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Por favor, dê a sua opinião sobre a web, enviando um e-mail para" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Este feed foi" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Itens do Feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nome do Feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL do Feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Campo não utilizado" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Ficheiro" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "O seu ficheiro tem mais do que o máximo permitido para tamanho de ficheiro" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtros" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrar Relatórios" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrar Relatórios por" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrar relatórios que contenham" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Pesquisar" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Procurar Lugar" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Primeiro Nome" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Forçar Execução do Calendarizador" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Esqueceu da sua password?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulário" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulários" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descrição do Formulário" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editar este formulário" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "O Formulário foi" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Título do Formulário" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "De" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nome Completo" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Georreferenciação Disponível" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Cor" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentários" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiqueta" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Largura de Traço" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "IR" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Foi" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Como ajudar" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Escondido" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Esconder" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Esconder esta mensagem" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Inicio" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Como relatar" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Usado para o identificar no sítio perante os outros utilizadores" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imagem" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imagens" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imagem/Icon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Desativo" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Caixa de entrada" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incidente" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Relatos na vizinhança" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Localização do Relato" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Incluir" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Inserir nas Categorias" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Incluir Campos Personalizados" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Insira a descrição" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Insira o máximo de detalhe possível" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Insira Latitude" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Insira informação sobre a localização" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Insira Longitude" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Incluir Informação Pessoal" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Media a Entrar" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Actualização da Informação" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Insira o seu local com precisão" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "A sua conta não tem a autorização necessária para login completo. Por favor contacte o administrador." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Em resposta a" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Endereço IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "É este o seu perfil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Campo" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "campos" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalhes do campo" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Título do campo" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Chave" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Palavras chave" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Ficheiro KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Enviar ficheiro KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL do KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Lacónica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Lingua" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Último" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Mês passado" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Sobrenome" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Último ano" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitude" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Camadas" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Outras Layers" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "A Layer foi" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Nome da Layer" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL da Camada" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Deixar um comentário" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menos Informação" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nível" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Este nível foi" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nome do nível" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitado" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "A carregar relatórios" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Localização" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Localizações" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Cidade, Estado e/ou País" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Conta criada com sucesso. Pode fazer login agora." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Foi enviada uma confirmação para o seu endereço de email" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Conta criada. Sua conta deve ser aprovada por um administrador antes de poder entrar." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "O endereço de email não existe. Tente um endereço diferente ou crie uma conta." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Por favor escolha o seu fornecedor de conta." + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Fazer Login com" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email e Senha" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Subscrever" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Criar uma Conta" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Obrigado por subscrever %1$s. Para confirmar o seu endereço de email por favor vá ao seguinte URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmação de Subscrição" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Um novo usuário se inscreveu em %1$s. Para aprovar a sua inscrição, por favor vá para o seguinte URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "aprovação de um novo usuário" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Sua conta de usuário foi aprovada para %1$s. Para entrar vá para o seguinte URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Conta de usuário aprovado" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Criar uma conta agora para poder tirar mais partido das potencialidades deste sítio." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitude" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Marcar como lido" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Marcar como para ler" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Tamanho máximo de ficheiro" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtro de Media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Membros" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gerir a sua conta" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Messagem" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mensagens" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalhes da Mensagem" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mensagem de uma fonte não numérica:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Telemóvel" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Alterar" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Data da alteração" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mês" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Mais" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Informação Adicional" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Esta instalação de Ushahidi engloba vários Países?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Tem de confirmar o seu endereço de email para aceder a esta instalação. Se perdeu o seu email de confirmação pode pedir um novo em baixo." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nome" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Relatório de Proximidade" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Novo" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Notícias" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Feeds de Notícias" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Fonte das notícias" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nova Categoria" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nova Password" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Novo Relato" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "próximo" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Não" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Sem entradas para visualizar" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Sem dados" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Nenhum" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Avisos" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Reprovado" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Reprovado" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Não Selecionado---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "não é spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Não Especificado" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Não há relatórios" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Não existem resultados" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Desligado" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Oficial & mainstream news" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Ligado" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opção" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opcional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opções" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organização" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizações" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descrição da Organização" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email da Organização" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "A organização foi" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Nome da Organização" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telefone 1 da Organização" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Telefone 2 da Organização" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Website da organização" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descrição Original" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Título Original" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "OUTRAS IMPLEMENTAÇÕES DO USHAHIDI" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Caixa de Saída" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "A Sair" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Página" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Páginas" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descrição da página" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "A página foi" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Nome do Link para a página" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Título da página" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Pertence à categoria" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Senha" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Insira novamente a sua Password" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Senha alterada com sucesso! Faça Login em baixo" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Esqueceu a sua password?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Foi enviado para o seu email a nova password." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Manter ligado neste computador?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mês passado" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Ano passado" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Pendente" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "por" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informação pessoal Opcional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefone" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotos" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Imagens" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Imagens e Vídeos" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* pesquise pela sua localização, ou coloque o símbolo (apontador) na localização correcta" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Jogar" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Repare" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Site Web para plugins" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Perfil Público" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL do Perfil Público" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Anterior" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Campo anterior" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Mensagem anterior" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Anteriores" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privado" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Cor do Perfil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "O seu perfil foi gravado" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Estatísticas Simples" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Classificação" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Ler" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Recebido" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Recebido de" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Notificações recebidas" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Relatos recentes" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Refrescar Novos Feeds de Notícias" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email Registado" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "remover" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Responder" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Relatar" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Relatórios (do mapa, por ordem cronológica)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Repórter" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Repórteres" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Data da Reportagem" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email do Reporter" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Nome do Reporter" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "O reporter foi" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "endereço IP do Repórter" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Sobrenome do Reporter" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nível do Repórter" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Níveis dos Repórteres" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefone do Reporter" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Relatos" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Procurar" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Enviar" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Relatórios deste Utilizador" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorias" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Relatórios" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descrição" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Os relatos serão enviados no formato CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Características" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Procure a sua localização" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Primeiro Nome" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Sobrenome" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Mais detalhes sobre a localização" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Link para a fonte de informação" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informação Opcional" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Enviar Fotos" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Voltar para a páginas dos relatos" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Seleccione a cidade" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "O seu relato foi submetido à nossa equipa para revisão/aprovação. Nós em breve entraremos em contacto consigo caso seja necessário." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Submeter um novo relato" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Hora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Linha temporal" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Título do relato" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Link do Vídeo" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Relatar acontecimento" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalhes do Relatório" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Através do envio de um sms para:" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Através do envio de um email para: " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Através do envio de um tweet com o hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Através do preenchimento do formulário (Preferível)" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Usando uma aplicação" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "O seu relato foi guardado" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Título do relato" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Pedido de mais informações" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Pedido de Localização" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Obrigatório" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Requísitos" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Reenviar Email de confirmação" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Repor" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Repor todos os Filtros" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Renovar Password" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "a procurar as cidades através do país seleccionado" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Contas geridas pelo serviço %s ." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Já tem uma conta gerida por CrowdMapID! Tente usar o seu email CrowdMapID e a sua senha para entrar" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Papel" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Guardar" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Guardado" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Guardar e Acrescentar Novo" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Guardar & Fechar" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Guardar relato" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Calendário" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Calendarizar" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dia" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Registos do Calendarizador" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minutos" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Dia da semana" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "PESQUISAR" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Resultados da Pesquisa" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Código de segurança" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Selectionar todos" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Seleccione o tipo de campo" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Seleccione o tipo de formulário" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Seleccione no mapa" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Seleccione tudo o que pretender" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Por favor, certifique que escolheu pelo menos um item" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Seleccionar aparência" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Enviar" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Enviar Confirmação" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "A enviar para" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Enviado" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Enviado por" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Endereço do Servidor" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipo do Servidor" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Serviço" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Nome de Utilizador do Serviço" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID de Utilizador do Serviço" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Partilhar" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Data da partilha" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "A partilha foi" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Partilhando" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Mapa mais curto" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Mostrar" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Mostrar todos" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Mostrar Mensagens" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "A mostrar relatórios de %1$s até %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Sítio de Web" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Endereço de email do site" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL do Sítio" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mapa mais pequeno" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Desculpe, não tem quaisquer emblemas" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Fonte" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Nome da fonte" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Ordenar" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Ordenar por" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL da fonte" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Suporte SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "De" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Passo" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Enviar relato" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Enviado por %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Enviar por SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Envie o seu SMS para" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "no seu telemóvel" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Sucesso!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importado com sucesso" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Sobrenome" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Inquérito" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistema" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Mapa mais alto" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Porta TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Temas" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Aparência por omissão (Ushahidi Theme)" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Configuração da aparência" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Isto" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hoje" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Este mês" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Esta Semana" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Este ano" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Este é o seu perfil" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "hora" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "TÍTULO " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "para" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "hoje" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hoje às" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Relatórios Totais" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Traduzido" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descrição traduzida" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Título da tradução" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Traduzido para" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traducção" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "A tradução foi guardada" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "De Confiança" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipo" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Impossível enviar email" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Relatórios não categorizados" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "por ler" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Não verificado" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Actualização dos feeds" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Enviar" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Visualize os nossos guias de envio de relatórios:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Guia de envio de XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Guia de envio de CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Ficheiro a enviar" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Envio de Relatos" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Campos personalizados devem ter o seu form_id apenso, por exemplo o campo personalizado Test, no formulário por defeito, com id igual a 1, será Test-1. durante a importação de campos personalizados assegure que" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Com o formulário abaixo, você pode inportar relatos para a plataforma Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Os relatórios devem ser enviados em formato CSV ou XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Quando o ID de incidente já existe na base de dados, a entrada no ficheiro CSV/XML será ignorada." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Tem de conter pelo menos o título do relato e a data da ocorrência" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Se as colunas de latitude e longitude forem fornecidas, a localização será geo-codificada usando o Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Se estiver a importar informação adicional, por exemplo informação pessoal e / ou campos personalizados de formulário" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Pelo menos um dos campos de informação pessoal (nome, sobrenome, email) DEVEM existir. Registos em branco não serão importados." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Os seus valores para os campos de dropdown, caixas de verificação e botões de escolha combinam com as opções fornecidas pelo campo personalizado da sua instância." + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "As opções de escolha são separadas por vírgula, por exemplo se a sua lista de frutas é maçãs, mangas e limões, então a sua entrada para esta deve ser \"maçãs,mangas,limões\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Os valores do campo Data estão no seguinte formato: mm/dd/aaaa, exemplo o dia 3 de Outubro de 1963 será 10/03/1963" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Ficheiro de relatos CSV exemplo" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Enviado com sucesso" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Enviar Vídeo" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Utilizador" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nome de Utilizador" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Administrador Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificação" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificado" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Relatos verificados" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verificar" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verifique este relato" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versão" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Vídeo" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Ver" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Vistos" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Ver TODOS" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Ver todos feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Ver todos relatos" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Ver Items" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Ver Mais" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Ver Perfil Público" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Ver relato" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Ver relatos" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Visualizar o Vídeo" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Visível" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "À espera de aprovação" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "À espera de verificação" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Mapa mais largo" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formulário Web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Peso" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Sim" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ontem" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "O seu Painel de Controlo" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "O seu ficheiro" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Aumentar" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Reduzir" diff --git a/application/i18n/po/po-pt_PT/upgrade.po b/application/i18n/po/po-pt_PT/upgrade.po new file mode 100644 index 0000000000..5c094aabd6 --- /dev/null +++ b/application/i18n/po/po-pt_PT/upgrade.po @@ -0,0 +1,302 @@ +# +# Translators: +# Luís Lago , 2013 +# alfalb_mansil, 2013-2014 +# Sebastian Mitchell , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2014-10-03 06:21+0000\n" +"Last-Translator: Sebastian Mitchell \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ushahidi/ushahidi-v2/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dados inseridos inválidos. Estes devem ser 0 para Não ou 1 para Sim." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Atualização Automática" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Atualizações Disponíveis" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continuar" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Atualizar" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Deste modo, eu vou atualizar a sua base de dados da versão" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "para a nova versão da base de dados" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Clique em \"Atualizar\" e relaxe enquanto eu realizo a magia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Atualizar a base de dados Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "O Ushahidi foi atualizado! Antes de continuar, precisa de atualizar a sua base de dados para a versão (%s) mais recente." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "A versão da sua base de dados está atualizada." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "A atualização falhou" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Atualização Manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Estado da atualização do Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "The instructions below details how to manually upgrade your Ushahidi deployment" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Step 1: Download the most recent ushahidi build from http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Step 2: Depending on the operating system running the webserver, use your preferred tool/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. All EXCEPT:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "For automatic upgrade, click on the button below" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Para uma atualização automática, clique no botão abaixo." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Atualmente, está a utilizar o Ushahidi v%1$s com a versão %2$d da base de dados em execução no %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "A atualizar" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Para continuar com a atualização fácil, é necessária a informação seguinte para o servidor FTP em que o seu site da web está hospedado." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "Nome do Hospedeiro FTP: Exemplo: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Password do FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nome de Utilizador do FTP" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Já possui a última versão do Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Não precisa de atualizar." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versão da base de dados: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Aviso: A versão php do programa e a base de dados não correspondem." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Aviso: A versão da base de dados na versão php e a base de dados não correspondem." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Base de dados:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "A transferiri a última versão do Ushahidi ..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Ficheiro de Registos" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Transferência bem sucedida. A descompactar ..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Não foi possível transferir." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Descompactação bem sucedida. A copiar os ficheiros ..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Não foi possível descompactar." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Cópia bem sucedida. A atualizar a base de dados ..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Não foi possível copiar os ficheiros." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "A cópia de segurança e atualização foram bem sucedidas." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "O backup do banco de dados falhou." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Base de dados atualizada com sucesso." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "A apagar os ficheiros transferidos ..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "ATUALIZAÇÃO BEM SUCEDIDA. Consulte o Ficheiro de Registos" diff --git a/application/i18n/po/po-ro_RO/alerts.po b/application/i18n/po/po-ro_RO/alerts.po new file mode 100644 index 0000000000..845628faf8 --- /dev/null +++ b/application/i18n/po/po-ro_RO/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Adresa e-mail incorectă" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Această adresă de e-mail a fost deja înregistrată pentru a primi alerte pentru această locație." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Câmpul adresa e-mail trebuie să conțină minim 4 caractere si mai maxim 64 caractere." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Câmpul adresa e-mail este obligatoriu daca este pusă bifa." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Această implementare cuprinde doar o singură țară. Vă rugăm să vă asigurați că locația alertei este în țara %s. " + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Nu ați selectat o locație validă pe hartă." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Nu ați selectat o locație validă pe hartă." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Nu ați selectat o locație validă pe hartă." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Nu ați selectat o locație validă pe hartă." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Câmpul pentru telefon mobil nu conține numarul corespunzător de cifre." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Acest număr de telefon a fost înregistrat deja pentru primirea alertelor legate de acea locaţie" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Câmpul Telefon Mobil nu pare să conţină un telefon valabil. Vă rugăm să introduceţi numerul, indicînd codul ţării." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Trebuie să introduceţi numărul de telefon mobil sau adresa e-mail." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Câmpul telefon mobil este obligatoriu daca este pusă bifa." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Nu aţi ales o secţiune validă pe hartă." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Nu aţi ales o secţiune pe hartă." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Nu ați configurat un destinatar pentru alerte." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "V-ați abonat la alerte din următoarele categorii" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Acest cod a fost deja verificat!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Acest cod de verificare nu a fost găsit! Verifica adresa URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Codul a fost validat. Acum vei primi alerte despre incidentele care au loc." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Pentru a confirma cererea de creare alerte, accesează" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "întoarcete la pagina Alerte pentru a crea mai multe alerte." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Cererea dumneavoastră a fost creată şi mesajul de verificare a fost trimis" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Introdu mai jos codul de confirmare primit pe email:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Cererea dumneavoastră E-mail Alert NU a fost salvată!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Cererea dumneavoastră E-mail Alert a fost salvată!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Sistemul nu a procesat cererea dumneavoastră de confirmare!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Cererea dumneavoastră Mobile Alert a fost creată şi mesajul de verificare a fost trimis" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Vă rog să introduceţi codul de confirmare SMS mai jos:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Cererea dumneavoastră Mobile Alert NU a fost salvată!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Cererea dumneavoastră Mobile Alert a fost salvată!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Această implementare nu este configurată pentru a procesa corect alertele" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Ai primit acest email pentru că te-ai înscris să primești alerte. Dacă nu mai dorești să primești alerte, mergi la" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Nu vei mai primi alerte de la" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Nu am fost în stare să vă dezabonăm. Vă rugăm să confirmaţi faptul că aveţi URL-ul corect." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "alerte - verificare" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Nu vei primi alerte despre acestă locație pană când nu confirmi cererea." diff --git a/application/i18n/po/po-ro_RO/auth.po b/application/i18n/po/po-ro_RO/auth.po new file mode 100644 index 0000000000..4098d5c462 --- /dev/null +++ b/application/i18n/po/po-ro_RO/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Monica Ipate , 2012 +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Câmpul de e-mail nu pare să conţină o adresă de e-mail validă." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Există deja un cont pentru această adresă e-mail." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Câmpul de e-mail trebuie să conţină cel puţin 4 şi nu mai mult de 64 caractere." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Câmpul de e-mail este necesar." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Câmpul pentru nume trebuie să fie de cel puţin 3 şi nu mai mult de 100 de caractere." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Câmpul Numele Complet este necesar." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Câmpul Nume de utilizator conţine caractere nepermise." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Câmpul ce conține parola trebuie să fie de cel puțin 8 caractere." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Vă rugăm să verificați dacă ați introdus corect email-ul și parola." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Vă rugăm să introduceți aceeași parolă în cele două câmpuri ce conțin parola." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Este necesară introducerea parolei." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Câmpul parola trebuie să conțină numai caractere alfanumerice, simbolul # și @, numere, caracterul underscore și liniuță" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Parola curentă pe care ați introdus pentru contul dvs. este incorectă. Vă rugăm să încercați din nou." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Câmpul ce conține parola trebuie să fie de cel puțin 8 caractere." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Vă rugăm să verificați dacă ați introdus corect email-ul și parola." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Vă rugăm să introduceți aceeași parolă în cele două câmpuri ce conțin parola." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Este necesară introducerea parolei." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Câmpul parola trebuie să conțină numai caractere alfanumerice, simbolul # și @, numere, caracterul underscore și liniuță" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Există o eroare la încercarea de a vă autentifica." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Câmpul Parolă trebuie să fie de cel puţin 5 şi nu mai mult 16 caractere." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Vă rugăm să verificați dacă ați introdus corect email-ul și parola." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Vă rugăm să introduceţi aceeaşi parolă în ambele câmpuri pentru parolă." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Câmpul Parolă este necesar." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Serverul unde se face autentificarea este nefuncțional. Vă rugăm să încercați din nou mai târziu." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Câmpul parola trebuie să conțină numai caractere alfanumerice, simbolul # și @, numere, caracterul underscore și liniuță" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Câmpul de Confirmare Parolă trebuie să se potrivească câmpului Parolă." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Câmpul de e-mail nu pare să conţină o adresă de e-mail validă." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Ne pare rău, nu avem adresa dumneavoastră de e-mail." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Câmpul de E-mail este necesar." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Numai un superadmin poate modifica un alt superadmin sau upgrada un utilizator la admin." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Format Rol nevalid." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Câmpul Rolul trebuie să fie de cel puţin 5 şi nu mai mult de 30 caractere lungime." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Trebuie să definiţi cel puţin un rol." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Trebuie să selectaţi fie rol de ADMIN, fie rol de UTILIZATOR." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Simbolul parolei uitate este invalid" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Simbolul parolei uitate este necesar" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Rolul ADMIN nu pot fi modificat." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Câmpul ce conține URL-ul profilului public trebuie să conțină doar cifre și litere." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Ne pare rău, acest nume de utilizator este deja în uz." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Campul Numelui de utilizator trebuie să fie de cel puţin 2 şi nu mai mult 16 caractere." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Vă rugăm să verificați dacă ați introdus corect URL-ul profilului public." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Campul Numelui de utilizator este necesar." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Rolul de super admin nu poate fi modificat." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Posibil atac CSRF. Credeți serios că doriți să creați /editați un utilizator?" diff --git a/application/i18n/po/po-ro_RO/bug.po b/application/i18n/po/po-ro_RO/bug.po new file mode 100644 index 0000000000..facb7d5c01 --- /dev/null +++ b/application/i18n/po/po-ro_RO/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vă rugăm introduceți un cod de securitate valid." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Vă rugăm introduceți un cod de securitate." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Câmpul email nu pare să conțină o adresă validă de email?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Câmpul email trebuie să fie de cel puțin 4 caractere și nu mai mult de 64 de caractere lungime." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Câmpul email este necesar dacă checkbox-ul este bifat." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Câmpul ce conține eroarea este necesar." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Câmpul ce conține subiectul trebuie să fie de cel puțin 3 caractere lungime." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Câmpul subiect este necesar." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Câmpul ce conține numele trebuie să fie de cel puțin 3 caractere lungime." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Câmpul ce conține numele este necesar." diff --git a/application/i18n/po/po-ro_RO/category.po b/application/i18n/po/po-ro_RO/category.po new file mode 100644 index 0000000000..569aac2ba6 --- /dev/null +++ b/application/i18n/po/po-ro_RO/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Monica Ipate , 2012 +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Câmpul culoare trebuie să aibă 6 caractere lungime." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Câmpul culoare este necesar." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Câmpul descriere este necesar." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Vă rugăm asigurați-vă că imaginile încărcate sunt limitate la 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Câmpul pentru imagini nu pare să conțină o imagine validă. Formatele acceptate sunt doar .JPG, .PNG și .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Câmpul imagine nu pare să conțină un fișier valid" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Câmpul titlu trebuie să fie de cel puțin 3 caractere și nu mai mult de 80 de caractere lungime." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Câmpul titlu este necesar." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Nu puteți subclasifica o categorie cu subcategorii." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Categoria părinte nu există." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Câmpul pentru categoria părinte trebuie să fie numeric." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Categoria părinte nu poate fi a categorie specială" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Câmpul categoria părinte este necesar." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Categoria și categoria părinte nu pot fi identice." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Categoriile speciale nu pot fi subclasificate." diff --git a/application/i18n/po/po-ro_RO/comments.po b/application/i18n/po/po-ro_RO/comments.po new file mode 100644 index 0000000000..91c275d356 --- /dev/null +++ b/application/i18n/po/po-ro_RO/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vă rugăm să introduceți un cod de securitate valid." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Vă rugăm să introduceți codul de securitate." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Ați introdus un cod de securitate greșit." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Câmpul nume trebuie să aibă cel puțin 3 caractere lungime." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Câmpul nume este necesar." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Câmpul de comentarii este necesar." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Câmpul ce conține email-ul nu pare să conțină o adresă de email validă." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Câmpul ce conține email-ul trebuie să aibă cel puțin 4 dar nu mai mult de 64 de caractere lungime." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Câmpul ce conține email-ul este necesar dacă checkbox-ul este activ." diff --git a/application/i18n/po/po-ro_RO/contact.po b/application/i18n/po/po-ro_RO/contact.po new file mode 100644 index 0000000000..cdfebae670 --- /dev/null +++ b/application/i18n/po/po-ro_RO/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vă rugăm să introduceți un cod de securitate valid." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Vă rugăm să introduceți un cod de securitate valid." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Vă rugăm să introduceți un cod de securitate." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Câmpul email nu pare să conțină o adresă validă de email." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Câmpul email trebuie să fie de cel puțin 4 caractere și nu mai mult de 64 de caractere lungime." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Câmpul email este necesar dacă checkbox-ul este bifat." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Câmpul e conține mesajul este necesar." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Câmpul ce conține numele trebuie să fie de cel puțin 3 caractere lungime." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Câmpul ce conține numele este necesar." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Câmpul ce conține subiectul trebuie să fie de cel puțin 3 caractere lungime." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Câmpul ce conține subiectul este necesar." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "A apărut o eroare la trimiterea mesajului." diff --git a/application/i18n/po/po-ro_RO/core.po b/application/i18n/po/po-ro_RO/core.po new file mode 100644 index 0000000000..b56af932f5 --- /dev/null +++ b/application/i18n/po/po-ro_RO/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Monica Ipate , 2012 +# Monica Ipate , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "fișerul de configurare" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "controlor" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Driver-ul %s pentru biblioteca %s trebuie să implementeze interfața %s." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Driver-ul %s pentru biblioteca %s nu a putut fi găsit." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Poți merge la Acasă sau Încearcă iar." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Imposibil de a finaliza solicitarea" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ajutor" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Tipul de fișier solicitat, .%s, nu este permis în fișierul dvs. de configurare." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Metoda invalidă %s este apelată în %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Proprietatea %s nu există în clasa %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "bibliotecă" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Directorul de log nu este writable: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi nu a fost în măsură să determine un controller pentru a procesa această cerere:%s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Vă rugăm să setați o rută implicită în config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Pagina solicitată, %s, nu a putut fi găsită." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Raportați această problemă la Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "%s, %s, solicitată nu a putut fi găsită" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Încărcat în {execution_time} secunde, utilizând {memory_usage} de memorie. Generat de Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Nu poate fi decât o singură instanță Ushahidi pe cerere de pagină." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Neprins %s: %s în fișierul %s la linia %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "vezi" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Trebuie să setați numele fișierului de vizualizare înainte de a apela render." diff --git a/application/i18n/po/po-ro_RO/database.po b/application/i18n/po/po-ro_RO/database.po new file mode 100644 index 0000000000..74f5f41850 --- /dev/null +++ b/application/i18n/po/po-ro_RO/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Eroare în baza de date: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabelul \"% s\" nu pot fi găsit în baza de date. Vă rugăm să vă asiguraţi că utilizaţi cea mai recentă versiune a bazei de date pentru această versiune de Ushahidi" diff --git a/application/i18n/po/po-ro_RO/datetime.po b/application/i18n/po/po-ro_RO/datetime.po new file mode 100644 index 0000000000..d83eb0aece --- /dev/null +++ b/application/i18n/po/po-ro_RO/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Vin" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Vineri" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Lun" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Luni" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sâm" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sâmbătă" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Dum" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Duminică" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Joi" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Joi" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Marți" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mie" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Miercuri" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ian" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Ianuarie" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februarie" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Martie" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Aprilie" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mai" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mai" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Iun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Iunie" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Iul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Iulie" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "August" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Septembrie" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Oct" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Octombrie" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Noiembrie" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Decembrie" diff --git a/application/i18n/po/po-ro_RO/feeds.po b/application/i18n/po/po-ro_RO/feeds.po new file mode 100644 index 0000000000..932a864f57 --- /dev/null +++ b/application/i18n/po/po-ro_RO/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Câmpul nume trebuie să aibă cel puțin 3 dar nu mai mult de ⏎ »»»70 de caractere lungime." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Vă rugăm să introduceți numele feed-ului." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Vă rugăm să introduceți URL-ul feed-ului." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Vă rugăm să introduceți un URL valid, de ex http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "SURSA" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Titlul" diff --git a/application/i18n/po/po-ro_RO/footer.po b/application/i18n/po/po-ro_RO/footer.po new file mode 100644 index 0000000000..5fd045c323 --- /dev/null +++ b/application/i18n/po/po-ro_RO/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl nu este instalat pe acest sistem." diff --git a/application/i18n/po/po-ro_RO/form.po b/application/i18n/po/po-ro_RO/form.po new file mode 100644 index 0000000000..a0a1b43acf --- /dev/null +++ b/application/i18n/po/po-ro_RO/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Valoarea implicită care ați furnizat-o pentru câmp este invalidă." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Câmpul ce conține numele trebuie să fie de cel puțin 3 și nu mai mult de 200 de caractere lungime." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Vă rugăm introduceți o valoare între 0 și 50 pentru înălțimea cîmpului." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Ați introdus o valoare invalidă pentru câmpul data." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Vă rugăm să selectați Da sau Nu pentru câmpul data." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Câmpul ce conține numele trebuie să fie de cel puțin 3 și nu mai mult de 100 de caractere lungime." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Vă rugăm introduceți câmpul nume." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Numele câmpului pe care l-ați introdus există deja pe acest formular. Vă rugăm să introduceți altul." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Ați introdus o valoare invalidă pentru câmpul obligatoriu." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Vă rugăm să selectați Da sau Nu pentru câmpul obligatoriu." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Vă rugăm să selectați un tip de câmp valid." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Vă rugăm să selectați un tip de câmp." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Vă rugăm introduceți o valoare între 0 și 300 pentru lățimea cîmpului." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Vă rugăm introduceți descrierea formularului." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Formularul default nu poate fi șters." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Vă rugăm selectați cărui formular i se adăugă acest câmp." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Vă rugăm selectați cărui formular i se adăugă acest câmp." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Câmpul ce conține numele trebuie să fie de cel puțin 3 și nu mai mult de 100 de caractere lungime." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Vă rugăm să introduceți numele formularului." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Un formular cu acest titlu există deja. Vă rugăm să alegeți un alt titlu." diff --git a/application/i18n/po/po-ro_RO/imap.po b/application/i18n/po/po-ro_RO/imap.po new file mode 100644 index 0000000000..fc278e9d46 --- /dev/null +++ b/application/i18n/po/po-ro_RO/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Nu a putut deschide stream-ul IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Serviciul de e-mail nu este acceptat." diff --git a/application/i18n/po/po-ro_RO/installer.po b/application/i18n/po/po-ro_RO/installer.po new file mode 100644 index 0000000000..e7d59cead8 --- /dev/null +++ b/application/i18n/po/po-ro_RO/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Calea de bază" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Baza de date" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Host baza de date" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Dacă se execută Ushahidi pe propriul computer, acest lucru va fi mai mult decât probabil \"localhost\". Dacă se execută Ushahidi de pe un server de web, veți primi informațiile de la furnizorul dvs. de web hosting." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Nume baza de bate" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Numele bazei de date pe care doriți să rulați Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Pentru mai multe informații, vă rugăm să citițiacest articol de pe wiki care vorbește despre bazele de date mult mai în detaliu." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Limba implictă (Locală)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Fiecare implementare Ushahidi vine cu un set de traduceri. Puteți să adaugați propria traducere." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Dezactivează" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Activează" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Mai jos este arătat un rezumat al erorilor cu care ne-am confruntat." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Locația de pe server-ul unde ați pus fișierele Ushahidi. Am detectat în mod automat această valoare, vă rugăm să vă asigurați că este corectă. Dacă câmpul este gol, nu vă faceți griji, aceasta înseamnă că ushahidi este instalat în directorul de nivel superior." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Terminat" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "General" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Oricine poate obține o cheie key. Obține acum" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Mergi înapoi" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALARE AVANSATĂ" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Înscrieți-vă toate setările de bază prin acest proces de 5 pași. Aceasta include servere, hartă, nume site si date de contact." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALARE BASIC" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simplu si rapid. Tot ce ai nevoie este directorul rădăcină al site-ul dvs. și informațiile legate de baza de date. Alegeți această opțiune dacă doriți să mergeți mai repede, si puteti configura totul ceva mai târziu." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Continuă" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Bine ați venit la procesul de instalare a server-ului Ushahidi. Alegeți mai jos ce tip de instalare doriți să utilizați." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalare cu succes" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Server de Mail" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Host Server de " + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemple: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Parola Server de Mail" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Parola pe care o utilizați în mod normal pentru a putea accesa căsuța de email." + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Port Server de Mail" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Porturi comune: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Tip Server de Mail" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). Care este diferența?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Utilizator Server de Mail" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Dacă utilizați Gmail, Hotmail sau Yahoo Mail, introduceți o adresă de e-mail completă ca nume de utilizator." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Hartă" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Furnizor Hărți" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi funcționează la fel de bine cu oricare dintre cei trei furnizori de hărți: Google, Bing sau Open Street. Alegeți una care are cele mai multe detalii din zona dumneavoastră." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Alți pași..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Parolă" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Parola baza de date" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Anterior" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Vă rugăm restartați Server-ul Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Activează sau dezactivează SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Unele servere de poștă electronică vă oferă opțiunea de a utiliza SSL atunci când se face o conexiune. Utilizarea SSL este recomandată, deoarece vă oferă un nivel suplimentar de securitate." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Setează serverul SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Adresa de email a site-ului" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Adresa de email a alertelor site-ului" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Când vizitatorii site-ului dvs. se înscriu pentru alerte email, ei vor primi emailuri de la această adresă. Această adresă de email nu trebuie să fie aceeași cu adresa email a site-ului." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Comunicarea email site-ului va fi canalizată prin această adresă" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Nume site" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Numele site-ului dvs." + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Sloganul site-ului" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Sloganul dvs." + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Fișierele și folderele de mai jos trebuie să fie writeable pe serverul dvs. de web." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Acestea sunt instrucțiunile pentru schimbarea permisiunilor la nivel de fițier:

" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Înainte de a începe, va trebui să vă asigurați că următoarele fișiere și foldere sunt writeable pe serverul dvs. de web. Acest lucru implică schimbarea permisiunilor la nivel de fișiere." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Pentru procesul de instalare, vă rugăm să aveți la îndemână următoarele informații." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefix Tabel" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "În mod normal nu ar trebui schimbat prefixul tabelul. Cu toate acestea, dacă doriți să rulați mai multe instalări Ushahidi intr-o singură bază de date, puteți face acest lucru prin schimbarea prefixului aici." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titlu" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Pentru logare, mergeți la" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Încarcă datele raportului" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Nume utilizator" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Nume utilizator pentru baza de date" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "și utilizați acreditările următoare" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Vizualizți website" diff --git a/application/i18n/po/po-ro_RO/layer.po b/application/i18n/po/po-ro_RO/layer.po new file mode 100644 index 0000000000..55ebeb85ba --- /dev/null +++ b/application/i18n/po/po-ro_RO/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Câmpul culoare trebuie să aibă 6 caractere lungime." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Câmpul culoare este necesar." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Câmpul fișier nu pare să conțină un fișier valid. Formatele acceptate sunt doar .KMZ si .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Câmpul fișier nu pare să conțină un fișier valid" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Câmpul nume trebuie să aibă cel puțin 3 dar nu mai mult de 80 de caractere lungime." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Câmpul nume este necesar." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Ori KML URL ori Fișierul este necesar." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Nu puteți avea atât un fișier KML cât și o adresă URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Vă rugăm introduceți un URL valid, e.g. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-ro_RO/libraries.po b/application/i18n/po/po-ro_RO/libraries.po new file mode 100644 index 0000000000..a919f92646 --- /dev/null +++ b/application/i18n/po/po-ro_RO/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Nu s-a putut conecta la serverul Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Răspunsul de la Akismet nu a putut fi recuperat." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Biblioteca API: %s pentru clasa %s nu a putut fi găsită. Vă rugăm să verificați activitățile API din tabelul de rutare." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Cheia dvs. Akismet API nu este validă." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Eroare în timpul execuției metodei de trimitere fopen!
Vă rugăm să verificați dacă PHP are suport OpenSSL și dacă versiunea PHP este mai mare de 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Mesajul dvs. unicode este prea lung! (Lungimea curentă=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Vă rugăm specificați o adresă de destinație (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Vă rugăm specificați o adresă de expediție (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Mesajul dvs. unicode este prea lung! (Lungimea curentă=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Metodă de trimitere neacceptată!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Biblioteca API %s este invalidă. Toate bibliotecile API trebuie să fie subclase ale %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Directorul %s nu poate fi șters." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Eroare în timp ce extrăgea: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Ultimul download Ushahidi a eșuat. HTTP cod status" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Fișierul %s nu poate fi copiat." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Fișierul %s nu poate fi șters." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Script pentru upgrade Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Fișierul decărcat Ushahidi zip %s, nu poate fi scris." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s nu este disponibilă în clasa the RiverID." diff --git a/application/i18n/po/po-ro_RO/maintenance.po b/application/i18n/po/po-ro_RO/maintenance.po new file mode 100644 index 0000000000..f852250b1d --- /dev/null +++ b/application/i18n/po/po-ro_RO/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Ne pare rău, site-ul nostru este indisponibil pentru mentenață. Vă rugăm să încercați din nou în câteva minute." diff --git a/application/i18n/po/po-ro_RO/message.po b/application/i18n/po/po-ro_RO/message.po new file mode 100644 index 0000000000..c76110483b --- /dev/null +++ b/application/i18n/po/po-ro_RO/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vă rugăm să introduceți un cod de securitate valid." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Vă rugăm să introduceți codul de securitate." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Câmpul de email nu pare să conțină o adresă de email validă." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Câmpul email trebuie să fie de cel puțin 4 și nu mai mult de 64 caractere lungime." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Câmpul email este necesar dacă checkbox-ul este activ." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Câmpul de comentarii este necesar." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Câmpul nume trebuie să fie de cel puțin 3 caractere lungime." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Câmpul de nume este necesar." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Câmpul de telefon este necesar." diff --git a/application/i18n/po/po-ro_RO/mhi.po b/application/i18n/po/po-ro_RO/mhi.po new file mode 100644 index 0000000000..77cf21100f --- /dev/null +++ b/application/i18n/po/po-ro_RO/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Vă rugăm să introduceți un cod de securitate valid." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Vă rugăm să introduceți un cod de securitate." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Câmpul de email-ul nu pare să conțină o adresă validă de email." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Vă rugăm să introduceți o adresa validă de email." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Câmpul de mesaj este necesar." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Câmpul ce conține subiectul trebuie să fie cel puțin 3 caractere lungime." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Câmpul ce conține subiectul este necesar" diff --git a/application/i18n/po/po-ro_RO/notifications.po b/application/i18n/po/po-ro_RO/notifications.po new file mode 100644 index 0000000000..3dcce8d3a5 --- /dev/null +++ b/application/i18n/po/po-ro_RO/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Acest mesaj a fost trimis de pe site-ul tau." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Login Administrator" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Un nou comentariu a fost trimis site-ului dvs., ca răspuns la:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Comentariu Nou" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Un nou comentariu a fost trimis site-ului dvs." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Mesaj Nou Email" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Un nou raport a fost trimis site-ului dvs." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Raport Nou" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Un nou mesaj text a fost trimis site-ului dvs." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Mesaj Text Nou" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Ați primit o nouă alertă" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Alertă Nouă!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Ați primit un mesaj privat" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Mesaj privat Nou" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Pentru a răspunde vă rugăm mergeți la:" diff --git a/application/i18n/po/po-ro_RO/page.po b/application/i18n/po/po-ro_RO/page.po new file mode 100644 index 0000000000..bb49e0b285 --- /dev/null +++ b/application/i18n/po/po-ro_RO/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Vă rugăm introduceți un titlu de pagină." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Titlul paginii trebuie să aibă cel puțin 3 dar nu mai mult de 150 de caractere lungime." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Vă rugăm introduceți nume pentru tab-ul paginii." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Vă rugăm introduceți o descriere a paginii." diff --git a/application/i18n/po/po-ro_RO/permissions.po b/application/i18n/po/po-ro_RO/permissions.po new file mode 100644 index 0000000000..51bdcc0b03 --- /dev/null +++ b/application/i18n/po/po-ro_RO/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Vizualizare Rapoarte" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Crează/Modifică/Șterge Rapoarte" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Aprobă Rapoarte" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verifică Rapoarte" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Gestionează Comentariile Rapoartelor" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Descarcă Rapoarte" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Încarcă Rapoarte" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Gestionează Rapoarte" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Gestionează Mesajele Raportorilor" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Vizualizare Statistici" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Modifică Setari" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Gestionează Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Gestionează Utilizatori" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Gestionează Roluri" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Can checkin" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Gestionează checkin" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Acces Admin UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Acces Membrii UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ro_RO/private_message.po b/application/i18n/po/po-ro_RO/private_message.po new file mode 100644 index 0000000000..0836afbdd5 --- /dev/null +++ b/application/i18n/po/po-ro_RO/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Părinți ID trebuie să fie numeric" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Câmpul Către este obligatoriu" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Utilizatorul către care încerca să trimiți un mesaj nu există" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Câmpul subiect este necesar" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Câmpul subiect trebuie să fie între 3 și 150 de caractere" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Câmpul mesaj este obligatoriu" diff --git a/application/i18n/po/po-ro_RO/report.po b/application/i18n/po/po-ro_RO/report.po new file mode 100644 index 0000000000..6c629709eb --- /dev/null +++ b/application/i18n/po/po-ro_RO/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Eroare!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Această implementare cuprinde doar o singură țară. Vă rugăm să vă asigurați că locația alertei este în țara %s. " + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Câmpul \"%s\" trebuie să fie numeric." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Câmpul \"%s\" este necesar." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Câmpul \"%s\" nu exista." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Câmpul \"%s\" nu poate fi editat cu contul tau." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Câmpul \"%s\" trebuie să contina o adresa de mail valida." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Câmpul \"%s\" trebuie să contina un număr de telefon valid." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Câmpul \"%s\" trebuie să conțină o dată validă (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Câmpul \"%s\" trebuie să conțină o dată validă (DD/MM/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Vă rugăm să selectați un element valabil de inclus în download." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Vă rugăm să selectați un element valabil de inclus în download." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Vă rugăm să selectați \"Rapoarte în curs de aprobare\" sau \"Rapoarte aprobate\" sau ambele." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Vă rugăm să selectați \"Rapoarte în curs de aprobare\" sau \"Rapoarte aprobate\" sau ambele." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Vă rugăm să selectați \"Rapoarte în curs de aprobare\" sau \"Rapoarte aprobate\" sau ambele." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Vă rugăm să selectați \"Rapoarte în curs de aprobare\" sau \"Rapoarte aprobate\" sau ambele." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Vă rugăm să selectați \"Rapoarte în curs de aprobare\" sau \"Rapoarte aprobate\" sau ambele." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Vă rugăm să selectați \"Rapoarte în curs de aprobare\" sau \"Rapoarte aprobate\" sau ambele." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Vă rugăm să selectați un tip valid de raport pentru descărcare." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Vă rugăm să selectați un tip valid de raport pentru descărcare." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Vă rugăm să selectați un tip valid de raport pentru descărcare." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Trebuie să selectați un format de descărcare. Selectați fie CSV sau XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Vă rugăm să selectați un format valabil în care să descărcați rapoartele" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Câmpul data FROM nu pare să conțină o dată validă." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Vă rugăm să introduceți o dată validă pentru câmpul FROM. Data nu poate fi mai mare decât ziua curentă." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Vă rugăm să introduceți o valoare validă pentru Aprobă Prezentul Raport" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Vă rugăm să introduceți o valoare validă pentru Aprobă Prezentul Raport" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Câmpul am/pm nu pare să conțină o valoare validă." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Câmpul \"Categorii\" nu pare să conțină o categorie validă." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Câmpul \"Categorii\" este necesar." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Câmpul data nu pare să conțină o dată validă." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Câmpul data nu pare să conțină o dată validă." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Câmpul data este necesar." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Câmpul \"Descriere\" este necesar." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Câmpul ora nu pare să conțină o oră validă." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Câmpul oră este necesar." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Vă rugăm să introduceți o valoare validă pentru Probabilitatea Informațiilor." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Vă rugăm să introduceți o valoare validă pentru Probabilitatea Informațiilor." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Câmpul minute nu pare să conțină o valoare validă." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Câmpul minut este necesar." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Câmpul ce conține link-uri cu surse de știri nu pare să conțină o adresă URL validă." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Vă rugăm, asigurați-vă că fotografiile încărcate sunt limitate la 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Câmpul de Încărcare Fotografii nu pare să conțină o imagine validă. Formatele acceptate sunt doar. JPG,. PNG și. GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Câmpul de Încărcare Fotografii nu pare să conțină un fișier valid." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Vă rugăm să introduceți o valoare validă pentru Fiabilitatea Sursei." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Vă rugăm să introduceți o valoare validă pentru Fiabilitatea Sursei." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Câmpul \"Titlu Raport\" trebuie să aibă cel puțin 3 dar nu mai mult de 200 de caractere lungime." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Câmpul \"Titlu Raport\" este necesar." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Posibil atac CSRF. Credeți serios că vreți să creați / editați un raport?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Vă rugăm să introduceți o valoare validă pentru câmpul Verifica acest raport." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Vă rugăm să introduceți o valoare validă pentru câmpul Verifica acest raport." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Câmpul Link-uri video nu pare să conțină o adresă URL validă." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Câmpul latitudine nu pare să conțină o latitudine validă." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Câmpul latitudine este necesar. Vă rugăm să faceți clic pe harta pentru a indica o locație." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Câmpul localizare are o valoare incorectă." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Acest raport are deja o traducere pentru această limbă." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Câmpul localizare are o valoare incorectă." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Raportul original și traducerea au aceeași localizare (limbă)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Câmpul localizare este necesar." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Câmpul \"Nume Locație\" trebuie să aibă cel puțin 3 dar nu mai mult de 200 de caractere lungime." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Câmpul \"Nume Locație\" este necesar." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Câmpul longitudine nu pare să conțină o longitudine validă." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Câmpul longitudine este necesar. Vă rugăm să faceți clic pe harta pentru a indica o locație." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Câmpul email nu pare să conțină o adresa de email validă." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Câmpul email trebuie să aibă cel puțin 4 dar nu mai mult de 64 de caractere lungime." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Câmpul prenume trebuie să aibă cel puțin 3 dar nu mai mult de 100 de caractere lungime." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Câmpul nume trebuie să aibă cel puțin 2 dar nu mai mult de 100 de caractere lungime." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Câmpul data TO nu pare să conțină o dată validă." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Vă rugăm să introduceți o dată validă pentru câmpul TO. Data nu poate fi mai mare decât ziua curentă." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Câmpul dată FROM nu poate fi mai mare decât câmpul dată TO." diff --git a/application/i18n/po/po-ro_RO/reporters.po b/application/i18n/po/po-ro_RO/reporters.po new file mode 100644 index 0000000000..c561fd1772 --- /dev/null +++ b/application/i18n/po/po-ro_RO/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Câmpul pentru latitudine pare să nu conțină coordonate valide." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Câmpul pentru latitudine este necesar. Vă rugăm să faceți click pe hartă pentru a indica locul dorit." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Câmpul pentru Level-ul Raportorului pare să nu conțină o valoare corespunzătoare." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Câmpul pentru Level-ul Raportorului pare să nu conțină o valoare corespunzătoare." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Numele locului trebuie să conțină între 3 și 200 de caractere." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Câmpul pentru locație este necesar." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Câmpul pentru longitudine pare să nu conțină coordonate valide." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Câmpul pentru longitudine este necesar. Vă rugăm să faceți click pe hartă pentru a indica locul dorit." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Raportor invalid" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Raportor invalid" diff --git a/application/i18n/po/po-ro_RO/reports.po b/application/i18n/po/po-ro_RO/reports.po new file mode 100644 index 0000000000..5061fa1de8 --- /dev/null +++ b/application/i18n/po/po-ro_RO/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Monica Ipate , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Vă rugăm să contolați dacă ați verificat elementul" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Vă rugăm să contolați dacă ați verificat elementul" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Semnalările trebuiesc categorizate înainte de a fi aprobate" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Nu aveți permisiunea de a executa această acțiune" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Trebuie să selectați un fișier de încărcat" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Fișierul încărcat trebuie să fie ori .csv ori format .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Câmp cu fișierul de încarcat nu pare să conțină un fișier valid" diff --git a/application/i18n/po/po-ro_RO/roles.po b/application/i18n/po/po-ro_RO/roles.po new file mode 100644 index 0000000000..37620677a1 --- /dev/null +++ b/application/i18n/po/po-ro_RO/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Monica Ipate , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Câmpul descriere trebuie să aibă cel puțin 3 dar nu mai mult de 100 de caractere lungime." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Este necesar câmpul descriere." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Câmpul de conține numele trebuie să conțină numai litere sau numere." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Câmpul de conține numele trebuie să aibă cel puțin 2 dar nu mai mult de 30 de caractere lungime." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Rolul SuperAdmin nu poate fi modificat." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Este necesar câmpul nume." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Câmpul Access Level trebuie să fie între 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Câmpul Access Level trebuie să fie între 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Câmpul Permissions trebuie să fie între 0 - 100." diff --git a/application/i18n/po/po-ro_RO/settings.po b/application/i18n/po/po-ro_RO/settings.po new file mode 100644 index 0000000000..2f0b3831e2 --- /dev/null +++ b/application/i18n/po/po-ro_RO/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# corneliu.e , 2013 +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Câmpul de permitere a comentariilor nu pare să conțină o valoare validă." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Câmpul de permitere a comentariilor este necesar." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Câmpul include feed nu pare să conțină o valoare validă." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Câmpul include feed este necesar." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Câmpul permite alerte nu pare să conțină o valoare validă." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Câmpul permite alerte este necesar." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Câmpul permite rapoarte nu pare să conțină o valoare validă." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Câmpul permite rapoarte este necesar." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Câmpul de sharing statistici nu pare să conțină o valoare validă." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Câmpul de sharing statistici este necesar." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Numărul implicit de înregistrări care urmează să fie aduse de o cerere API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Numărul maxim de înregistrări care urmează să fie aduse de o cerere API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Numărul maxim de cereri API per addresă IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Câmpul Akismet nu pare a conține o valoare validă." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Câmpul Akismet nu pare a conține o valoare validă." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Câmpul ce conține paginile cache este necesar." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Câmpul ce conține paginile cache nu pare a conține o valoare validă." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Câmpul ce conține timpul de viață al paginilor cache nu pare a conține o valoare validă." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Câmpul ce conține timpul de viață al paginilor cache este necesar." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Activează curățarea URL-urilor" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Curăță URL-uri" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Câmpul numeric Clickatell API nu trebuie să aiba mai mult de 20 de caractere lungime." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Câmpul numeric Clickatell API este necesar." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Câmpul Clickatell trebuie să aiba cel putin 5 dar nu mai mult de 50 de caractere lungime." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Câmpul Clickatell este necesar." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Câmpul Clickatell Username nu trebuie să aiba mai mult de 50 de caractere lungime." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Câmpul Clickatell Username este necesar." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Configurare harta" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Locația implicită " + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Câmpul culoare feed nu pare să conțină o valoare validă." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Campul culoare nu trebuie sa aiba mai mult de 6 caractere lungime." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Câmpul culoare este necesar." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Vizualizare harta implicita" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Nivel harta implicita" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Câmpul ce conține mail server port este prea lung." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Câmpul ce conține portul pentru serverul de mail trebuie sa contina numai numere." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Câmpul Parola server mail trebuie să aiba cel putin 5 dar nu mai mult de 50 de caractere lungime." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Câmpul ce conține parola de mail server este necesar." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Câmpul ce conține port pentru serverul de mail este prea lung." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Câmpul ce conține portul pentru serverul de mail trebuie sa contina numai numere." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Câmpul ce conține mail server port este prea lung." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Câmpul ce conține tipul de mail server este necesar." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opținuni Facebook Setup" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "ID Facebook App" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Secret Facebook App " + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Activează HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Nivel zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Selecteaza furnizor harta" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Introduce noua cheie API" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Obtine o cheie API " + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Furnizor harta" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Setari harta" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Are această implementare Ushahidi deschidere în mai multe țări?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Selecteaza o tara default" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Cheie Akismet " + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Site Banner" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocuri pe rand" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Pagini cache" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Timpul de viata al paginilor cache" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Permite Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Culoarea implicită pentru toate categoriile" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Șterge imaginea banner" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Sterge icoana default" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Adresa de email a alertelor" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Adresa de email a site-ului" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Limba site" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Aprobă manual utilizatorii" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Mesaj site" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Nume site" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Implementare privată" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Necesita email de confirmare a utilizatorului" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Fus orar" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Setari site" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Câmpul email al siteului nu pare să conțină o adresa de email validă." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Câmpul nume trebuie să aibă cel puțin 3 dar nu mai mult de 50 de caractere lungime." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Câmpul ce conține numele site-ului este necesar." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Optiuni setare SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Câmpul ce conține telefon 1 trebuie sa contina numai numere." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Token acces" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Tokensecret acces" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ro_RO/sharing.po b/application/i18n/po/po-ro_RO/sharing.po new file mode 100644 index 0000000000..40902251d9 --- /dev/null +++ b/application/i18n/po/po-ro_RO/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Monica Ipate , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Data introducerii" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Data adăugarii" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Ultima accesare" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Câmpul pentru culoare trebuie să aibă cel puțin 6 caractere." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Câmpul pentru culoare este necesar." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Numele de sharing nu pare a fi valid." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Un nume de sharing este necesar." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "URL-ul acestui site existp deja." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL-ul acestui site nu pare valid." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "URL-ul acestui site este necesar." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Câmpul ce conține URL-ul acestui site nu conține un URL valid." diff --git a/application/i18n/po/po-ro_RO/stats.po b/application/i18n/po/po-ro_RO/stats.po new file mode 100644 index 0000000000..825c5fd0c2 --- /dev/null +++ b/application/i18n/po/po-ro_RO/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprobat" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Categorii" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Impact Categorie" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Această diagramă vă oferă o vedere liniara a rapoartelor pe categorii de-a lungul timpului. Derulați de la stânga la dreapta pentru a vedea o imagine comparativă a diferitelor categorii. Puneți mouse-ul peste grafic pentru mai multe detalii." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Alege un interval pentru dată." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Țări" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Țara" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Împărțire pe țări" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Aceasta este secțiunea de statistici și va conține o descriere generală în curând. Pentru moment, navigați folosind link-urile de mai sus ale subcategoriei." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Eroare" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Glosar" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Sumar Hit-uri" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legendă" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pagini vizualizate" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Numărul total de pagini pe care vizitatorii l-au văzut pe site-ul dvs." + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Rapoarte" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Categorii Rapoarte" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statistici Rapoarte" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Status Rapoarte" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Raport Punchcard" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Statistici Rapoarte" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statisticile nu au fost setate" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Lună" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Luni" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Luni" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Tot" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Neaprobat" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Vizitatori unici" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Numărul de persoane care vin această implementare. Vizitatorii unici sunt determinați folosind cookie-urile. Vizitatorii care nu au cookie-urile activate vor fi identificați ținând cont de adresa IP, rezoluția, browser-ul, plugin-uri, sistem de operare, etc." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Neverificat" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verificat" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Sumar Vizitatori" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Vizite" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "O vizită este o înregistrare a unui vizitator unic ce revine la site în mai mult de 30 minute de la ultima vizualizare de pagină." diff --git a/application/i18n/po/po-ro_RO/tooltips.po b/application/i18n/po/po-ro_RO/tooltips.po new file mode 100644 index 0000000000..7a35bf0264 --- /dev/null +++ b/application/i18n/po/po-ro_RO/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Monica Ipate , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Aceasta adaugă raportul la categorii adiționale. Dacă selectați Categoria 1 și raportul are deja Categoria 2, raportul va avea atunci atât Categoria 1 cât și Categoria 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprobă un raport sau nu. Dacă va fi aprobat, aceasta va apărea în mod public." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Veți fi capabil să atribuiți o insignă utilizatorului ce face declanșarea. Alege insigna pe care i-o repartizați aici." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Corpul mesajului pentru emailul ce va fi trimis." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Subiectul emailului ce va fi trimis." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Acesta este titlul implicit ce va fi adăugat la raport." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marchează un raport ca verificat sau nu." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separați fiecare valoare cu o virgulă, de exemplu, valoare1, valoare2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separați fiecare element cu o virgulă, de exemplu, valoare1, valoare2." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Începeți să scrieti lista membrilor." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Subiectul mesajului privat" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mesaj privat" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Adresa dvs. de email" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Aceasta este adresa unde profilul dvs. public poate fi găsit." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Numele utilizatorului nu poate fi schimbat." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Aceasta este adresa de email care va fi folosita pentru a trimite alerte prin e-mail." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Permite utilizatorilor sa comenteze rapoartele in site-ul principal." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Setează durata de viață a cache-ului." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Numerele de telefon prin care mesajele text sunt primite." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Acesta defineste care harta va fi utilizată pe site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ro_RO/ui_admin.po b/application/i18n/po/po-ro_RO/ui_admin.po new file mode 100644 index 0000000000..764ed3c1f6 --- /dev/null +++ b/application/i18n/po/po-ro_RO/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Monica Ipate , 2012 +# Monica Ipate , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Accesul interzis. Ori nu ai suficiente drepturi , ori cererea a fost refuzată." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Accesul interzis. Cererea a fost procesată, dar respinsă datorită unor limitări cum ar fi timpul. Încercați mai târziu." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Nivel de acces" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Acțiuni" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Adaugă la categorii" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "adăugat" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "adăugat/editat" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Addon-uri" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrator" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Alerte" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Alerte Primite" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Tot" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonim" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Oricine" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Oriunde" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API interzis" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Log-uri API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Setări API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Ridică interdicția" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Ridică interdicția pentru toți" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "aprobat" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Aprobă automat" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprobă manual" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arhivat" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Ești sigur că vrei să" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Ești sigur că vrei să ștergi acest element?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Ești sigur că vrei să ștergi această poză?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Ești sigur că vrei să schimbi formularele?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Atribuie" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Atribuții" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Atribuie insignă (badge)" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email autor" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Înapoi" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Interzice IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Între timpi" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blocuri" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Corp" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Anulează" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categorii" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Eroare la afișarea hărții" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Vă rugăm verificați dacă mesajul este valid." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Vă rugăm asigurați-vă că numărul este valid." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Verifică setările pentru SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detalii Checkin" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Checkin-uri" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Orașe încărcate" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "cod" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versiunea de cod nu este sincronizată" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Culoare" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Comentarii" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Codul dvs. de confirmare a alertelor este:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Utilizatorul a fost" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Sumă" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Țara nu a fost găsită" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "creat/editat" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Crează o semnalare" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Upgrade critic" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Activ în momentul de față" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Inactiv în momentul de față" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Nu aveți permisiuni suficiente pentru a edita următoarele câmpuri personalizate." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Zilnic" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Panou" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "bază de date" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data & Ora" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Data adăugării" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Data modificării" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Zilele săptamânii" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Versiunea bazei de date nu poate fi sincronizată." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "șters" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Șterge" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Șterge insigna" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Descriere" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Dezactivat" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Începutul separatorului" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Sfâșitul separatorului" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "clasa div-ului" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Descarcă semnalările" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Alegeri în mod dropdown" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "EDITAT" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Editat de către" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Editează" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Editează log" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Întregul colectiv" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Eroare în geocoding! Eroare HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Librăria PHP pentru IMAP nu este instalată" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Eroare" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Eroare, incidentul nu poate fi postat" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "La fiecare șase ore" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "La fiecare douăsprezece ore" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimental" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feed-uri" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista de opțiuni" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Valoarea implicită" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipul de date" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Marcaj" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numeric" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Text liber" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Înălțime (în rânduri)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Câmpuri ascunse" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Lungimea maximă de caractere" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Numele câmpului" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Comută" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Nu" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Da, închis ca și implicit" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Da, deschis ca și implicit" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Nu a putut fi găsit fișierul încărcat" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Nu a putut fi deschis fișierul pentru a fi citit" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Acel formular nu exista!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Câmp cu text (Text liber)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Câmpul pentru dată" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Câmpul pentru butoane de tip Radio" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Câmpul pentru ckeckbox-uri" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Câmpul pentru dropdown-uri" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "De la" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "De la" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonames Timeout Error" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Cere ajutor" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Obține mai multe teme" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Obține mai multe plugin-uri" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Acțiuni" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Adaugă/Editează" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Gestionează utilizatorii" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rol" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Utilizator" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ajutor" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "În fiecare oră" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Feedul incidentului pentru" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Directorul de instalare încă există. Șterge directorul de instalare. Este o potențială vulneralibitate a securității." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instanța" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instanțe" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detalii instanță" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parametru invalid" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Adresa IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Este acesta un câmp pentru data?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Cine poate vedea răspunsurile" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Cine poate trimite răspunsurile" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Cuvânt cheie" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Cuvinte cheie" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Adresa email:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Numele complet:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Parola:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Rol:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Nume utilizator:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Straturi" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Deconectare" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Log-uri" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Gestionează" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Gestionează roluri & permisiuni" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Vezi utilizatori" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Adaugă/Editează Utilizatori" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Gestionează listele tale publice" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Marchează ca" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "marcat ca not spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "marcat ca spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "nu a returnat nici un document" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mesaj" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "mesaje" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mesaje Laconica StatusNet" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Mesaje Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Mesajul tău a fost trimis!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minut" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minute" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Parametru lipsă" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modificat" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modifică setările zonei de fus orar" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "Mută jos" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "Mută sus" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Mai multe instanțe găzduite" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Alertele mele" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Checkin-urile mele" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Profilul meu" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Semnalările mele" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Voturile exprimate" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Pozitive" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negative" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Nume" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Crează o noua alertă" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Crează un nou mesaj" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Noua parolă" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Nu" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Aceasta este o categorie specială care nu va apărea în formularul de trimitere a semnalărilor pentru utilizatorii care trimit semnalări. Aceasta este utilizată pentru a păstrarea semnalărilor rămase fără categorie (semnalări necategorisite) ca urmare a ștergerii unei categorii." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Notificare" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Acest element nu este case sensitive." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Nu a fost găsit" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Nu sunt date. Nu există rezultate de afișat." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Nu există erori" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Nu există rezultate de afișat!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "de" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "La numărătoarea specifică" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID-uri" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "pagina" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "pagini" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Pagina nu a fost găsită" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Ne pare rău, pagina pe care încercați să o vizualizați nu este aici.

Ați urmat un link din altă parte a site-ului nostru?
Dacă ați ajuns la această pagină din altă parte a site-ului nostru, vă rugăm să ne contactațiastfel încât să putem corecta această greseală.

Ați urmat un link din alt site?
Link-urile de la alte site-uri pot fi, uneori, depășite sau scrise gresit.Spune-ne de unde ai venit și putem încerca să contactăm site-ul pentru a rezolva problema.

Ați tastat URL-ul?
Este posibil să fi tastat adresa (URL) incorect. Verificați pentru a vă asigura că ați scris corect, capitalizarea, etc.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Ne pare rău, pagina pe care încercați să o vizualizați nu este aici." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parametri utilizați" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Parola" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Resetarea parolei" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Dragă" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Am primit o cerere de resetare a parolei pentru" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Pentru a schimba parola, vă rugam accesați link-ul de mai jos (sau copy-paste în browser)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Așa cum ați solicitat, parola dvs. a fost resetată. Noile dvs. detalii sunt" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Resetarea parolei Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Vă rugăm selectați" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Datele nu au fost trimise prin metoda post" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Previzualizare" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mesaj" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mesaje privat" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mesaj privat trimis" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Subiect" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Către" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Listă publică" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Calificative" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "citește" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevanță" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Titlu semnalare" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Date raportării" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reporteri" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveluri reporter" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Semnalări" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Scor de reputație" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Necesar" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Resetare" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Răspuns" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Rezultate" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Revocare" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Acest e-mail are deja un cont administrat de CrowdmapID. Utilizatorul va trebui să utilizeze parola Crowdmap existentă pentru a se autentifica." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Salvează setările" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Caută" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Caută semnalări" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "în căutare de" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Cheia criptată este încă setată pe valoarea default. Acest lucru este nesigur și trebuie să fie schimbat." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Acest site folosește HTTP. Acest lucru trebuie schimbat pentru a crește gradul de securitate." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instrucțiunile sunt disponibile pe wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Selectați formatul dorit pentru descărcarea rapoartelor: -" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Selecteaza Tipul Campului ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Selectează un element" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Trebuie selectat un mecanism de declanșare înainte de a trimite un Răspuns." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Trebuie selectat un mecanism de declanșare înainte de a defini Calificativele." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Expeditor" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Trimite către" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Acest mesaj a fost trimis de pe site-ul tău la " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Ora și data server-ului" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Setări" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Afișare pagină" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Afișare rezultate" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "afișate" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Categorie specială" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Aceasta este o categorie specială, care nu va apărea pe formularul de trimitere a semnalărilor pentru utilizatorii care trimit semnalări. Această categorie va fi afiliată funcției de \"Reporteri de încredere\"" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Arie specifică" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Regiune" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistici" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistici" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Colectarea statisticilor a eșuat! Vă rugăm să încercați mai târziu." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Colectarea statisticilor a eșuat!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Zile specifice" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Subiect" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Activități realizate" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Câmp text" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Nume" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Gestionează utilizatorii" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Eroare de timeout" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "către" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Total înregistrări" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "către" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Tradu Semnalările" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Declanșare" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Utilizator declanșator" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Declanșări" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "neaprobat" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "necunoscut" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Eroare necunoscută" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "necitit(e)" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Nu vei mai primi alerte de la" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Apasă aici pentru a upgrada în acest moment" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Upgradeaza Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Upgradează statusul Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Încarcă semnalări" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Utilizator" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Utilizatori" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Verificat/Neverificat" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verifică/Nu verifica" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versiune" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "este disponibil pentru upgradare." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Codare Video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mesaje private" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Vezi site-ul" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Vezi semnalarea" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Bine ai venit," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Da" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Căutarea ta pentru" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ro_RO/ui_main.po b/application/i18n/po/po-ro_RO/ui_main.po new file mode 100644 index 0000000000..e42faa21fc --- /dev/null +++ b/application/i18n/po/po-ro_RO/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Monica Ipate , 2012 +# Monica Ipate , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Despre" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Acces" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limite Acces" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Nume cont" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Acțiuni" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Această acțiune nu poate fi anulată. Sunteți sigur ca doriți să continuați?'" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activează" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Activ" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Adaugă" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Adăugat de" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Date suplimentare" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Semnalări suplimentare" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Adaugă/Editează" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Adaugă un câmp" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Adaugă o limbă" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Adaugă un nou" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Adaugă o Nouă categorie" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Adaugă traducere" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administrare" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Primește Alerte" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Alertează-mă dacă apare o semnalare nouă:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Salvează Alerta mea" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Adresa de email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "introduceți adresa de email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "introduceți numărul de mobil incluzând prefixul de țară" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Primește Alerte" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Alerta a fost" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Nr. de telefon mobil:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Sau selectează un punct pe harta de mai jos, iar noi te vom alerta dacă a fost semnalat ceva pe o rază de 20 de km." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Dacă nu puteți găsi locul dorit, dați click pe hartă pentru a indica locul corect." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Feeduri RSS (copiază URLul de mai jos)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Alege un oraș" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Pasul 1: Selectează orașul sau locul dorit:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Pasul 2: Trimite alerte către:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Pasul 3 (Opțional): Selectează categoriile" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Confirmă o cerere de alertă anterioară" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Alerta dvs. a fost salvată!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Toate" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Permis" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Toate categoriile" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Tot timpul" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "și" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprobă" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprobate" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Semnalări Aprobate" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprobă această semnalare" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Aproximativ" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arhiva" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arhivat" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Crescător" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "la" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Medie semnalări pe zi" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Așteaptă aprobarea" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Așteaptă verificarea" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Insigna" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Insigne" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imagine insigna" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Sau poți încărca în schimb propria ta imagine a insignei" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Grup de insigne" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Selectează o insignă" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Caută profile" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Anulează" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Categorii" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Categorie" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filtru de categorii" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Categoria a fost " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Numele categoriei" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Schimbă intervalul de timp" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Schimbă parola" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Schimbă poza" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Alege" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Alege datele pe care vrei să le downloadezi" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Sau alege intervalul de timp propriu" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Alege tipul de câmp" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Golește URLuri" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Golește" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Curață harta" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Închide" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "clustere" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Culoare" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comentariu" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Comentarii" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detalii Comentariu" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Setările tale au fost salvate!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Configurează" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ați confirmat cu succes adresa de email! Vă rugăm să vă autentificați mai jos." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Confirmarea emailului a esuat! Poți cere o noua confirmare mai jos." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Contactează-ne" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Cod de securitate" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Adresa de email" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mesaj" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Mesajul tău a fost trimis!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Numele tău" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Nr. tău de telefon" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Trimite mesaj" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Subiectul mesajului" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Crează" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Crează/Editează" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Crează un nou" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Crează o nouă parolă" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Semnalează ceva nou" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Credibilitate" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Parola curentă" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Câmpuri personalizate" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informații" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Data" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(ll/zz/aaaa)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data & ora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "zi" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Dezactivează" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "București, România" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Șterge" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Șters" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Ștergeri" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Ștergerea dezactivată" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Șterge ultimul" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Șterge această semnalare" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Șterge pe cele selectate" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Șterge Spamul" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Descriere" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descrescător" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Exemplu: Colț cu Piața Norilor, Radulescu-Motru 54, București" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detalii" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Semnalare Directă" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Dezactivat" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Neaprobat" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Downloadează Semnalări" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Download" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Editează" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Editează Câmpurile Formularului" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Editează Semnalarea" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Adresa email" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Setari server de Mail" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mail Server Host" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Parola Serverului de Mail" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Portul Serverului de Mail" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Suport SSL pentru serverul de Mail" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipul serverului de Mail" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Username pentru serverul de Mail" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "astfel încât setările trebuiesc să fie asociate cu această adresă de email" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Pentru a putea primi semnălari prin email, vă rugăm să introduceți mai jos setările contului dvs. de email. Rețineți că email-urile vor fi trimise la adresa dvs." + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Unele servere necesită adresa întreagă de email" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Parola contului de email" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Porturi uzuale: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exemple: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Exemple: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Activează sau dezactivează conexiunile SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "-----GOL-----" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "către" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Eroare!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Exemplu" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Romania" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Aplicații externe" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Link video extern" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Trimite Feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Acest feed a fost" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Elemente Feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Nume Feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL Feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Câmp neutilizat" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Fișier" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Fișierul tău depășește dimensiunea impusă." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtre" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrează Semnalările" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrează Semnalările după" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrează semnalările ce conțin" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Găsește" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Găsește locul" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Prenume" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Forțează Rularea Planificării" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Ai uitat parola?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formular" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulare" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Descriere Formular" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Editează acest formular" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Acest formular a fost" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Titlu formular" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "De la" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Nume și prenume" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Funcția GeoLocation este disponibilă" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Culoare" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Comentarii" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etichetă" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Lățimea conturului" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Du-te" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "A fost" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Cum să ajuți" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Ascuns" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ascunde" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Ascunde acest mesaj" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Acasă" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Cum să semnalezi" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Utilizat pentru a vă identifica pe site pentru alți utilizatori." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imagine" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imagini" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imagine/Iconiță" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactiv" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Inbox" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incident" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidente în apropiere" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Locul incidentului" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Include" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Include Categoriile" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Include câmpuri personalizate" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Include Descrierea" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Include cat mai multe detalii posibile" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Include Latitudinea" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Include informații despre loc" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Include Longitudinea" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Include Informații Personale" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Materiale Media pe punctul de a sosi" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Evaluarea Informației" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Precizează cu exactitate locul tău" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Contul dvs. nu are permisiunile corespunzătoare pentru a vă conecta. Vă rugăm să contactați administratorul." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Ca răspuns la" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Adresa IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Este acesta profilul tau?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "element" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "elemente" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "detalii_element" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Titlul elementului" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Cheie" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Cuvinte cheie" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Fișier KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Încarcă fișierul KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "URL-ul KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Concis" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Limbă" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Ultimul" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Luna trecută" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Nume de familie" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Anul trecut" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitudine" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Layere" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Alte layere" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Layerul a fost" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Numele layerului" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URLul layerului" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Lasă un comentariu" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Mai puține informații" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivel" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Acest nivel a fost" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Numele nivelului" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Limitat" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Listă" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Încărcare Semnalări" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Loc" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Locuri" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Oraș, Județ și/sau Sector" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Autentificare" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Cont creat cu succe" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Un email de confirmare a fost trimis către dvs." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Adresa de email nu există. Vă rugăm să încercați o altă adresă sau să creați un nou cont." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Vă rugăm să faceți click pe providerul de cont" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Autentifică-te cu" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "email și parola" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Autentificare" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Crează un cont" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Vă mulțumim că v-ați înregistrat la %1$s. Pentru a confirma adresa de email, vă rugăm accesați următorul URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Confirmarea înregistrării" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Crează un cont acum pentru a profita de mai multe funcționalități ale site-ul." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitudine" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Harta" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Machează ca citite" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Machează ca necitite" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Dimensiunea maximă a fișierului" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Materiale media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filtru materiale media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Membrii" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Gestionați contul dvs." + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mesaj" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mesaje" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detalii mesaje" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mesaje de la o sursă non-numerică:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modifică" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Modifică data" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "luna" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Mai mult" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Mai multe informații" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Are această implementare de Ushahidi deschidere în mai multe țări" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Trebuie să confirmați adresa dvs. de email pentru a accesa această implementare. Dacă ați pierdut emailul de confirmare, puteți cere un altul mai jos." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Nume" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Semnalări prin apropiere" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nou" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Știri" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Feeduri Știri" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Sursă Știri" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Categorie nouă" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Parolă nouă" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Semnalare nouă" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Următoarea" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nu" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Nu sunt checkinuri de afișat." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Nu există date" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "nimic" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notificări" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Neaprobate" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Neaprobate" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Neselectate---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "nu e spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Nespecificat" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Nu există semnalări" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nu există rezultate" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Dezactivat" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Fluxul & de știri oficial" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Activat" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opțiune" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opțional" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opțiuni" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organizația" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizații" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Descrierea organizației" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Adresa de email a organizației" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organizația a fost" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Numele organizației" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telefonul Organizației 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Telefonul Organizației 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Site-ul Organizației" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Inițial" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Descrierea inițială" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Titlul inițial" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Alte implementări" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Trimise" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "În curs de trimitere" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Pagina" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Pagini" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Descrierea paginii" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Pagina a fost" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Nume pentru tab-ul paginii" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Titlul paginii" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Categoria părinte" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Parola" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verifică parola" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Parola a fost schimbată cu succes! Autentifică-te mai jos." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Ai uitat parola?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Verifică-ți emailul pentru noua parolă." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Ramâneți autentificat pe computerul acesta?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Luna trecută" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Anul trecut" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "În așteptare" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informații personale Opțional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Poze" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Imagini" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Imagini și Video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Căutați locația dvs. tastând numele locației SAU coordonatele de latitudine, longitudine (format: 38.19, 85.61) SAU dați click pe hartă pentru a indica locul dorit." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Pornește" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Rețineți" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugin-uri" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Site Plugin-uri" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Profil public" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL profil public" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Previzualizează" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Previzualizare element" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Previzualizare mesaj" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Înapoi" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privat" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Culoare profil" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Modificările făcute la profil au fost salvate" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Statistici Rapide" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Rating" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Citește" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Primește" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Primește de la" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Primește notificări" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Semnalări recente" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Updatează fluxul de știri" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email-ul înregistrat " + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Șterge" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Răspunde" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Semnalează" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Semnalări (de pe harta, listate cronologic)'" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Reporter" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Reporteri" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Reporter de date" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email Reporter" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Prenume Reporter" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Reporterul a fost" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Adresa IP a reporterului" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Numele Reporterului" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Nivelul Reporterului" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivelurile Reporterului" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefonul Reporterului" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Semnalări" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Navighează" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Trimite" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Semnalari ale acestui utilizatorului" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Categorii" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Semnalări" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Descrierea" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Semnalările vor fi downloadate în format CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Funcționalități" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Caută un loc în preajma ta" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Prenume" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Nume" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Detaliază locul" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Linkul știrii" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informații opționale" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Uploadează poze" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Întoarce-te la pagina de semnalări" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Selectează un oraș" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Semnalarea trimisă de tine va fi analizată de echipa noastră. Vom răspunde în cel mai scurt timp dacă este necesar." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Trimite o nouă semnalare" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Ora" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Cronologic semnalărilor" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Titlul semnalării" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Link Video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Semnalează un incident" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detalii Semnalare" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Trimițând un mesaj la" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Trimițând un email la" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Trimițând un tweet cu hashtag-ul" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Completând formularul" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Utilizând o aplicație" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Semnalarea ta a fost salvată" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titlul semnalării" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Cere detalii" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Solicită locul" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Necesar" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Cerințe" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Retrimite email de confirmare" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Resetează" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Resetează toate filtrele" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Resetează parola" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Preia nume de orașe din țara selectată" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Conturi gestionate de serviciul %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Aveți deja un cont administrat de CrowdmapID! Încercați să folosiți e-mail-ul și parola CrowdmapID pentru autentificare." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Salvează" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Salvat" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Salvează & Adaugă unul nou" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Salvează & Închide" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Salvează semnalarea" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Planifică" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Planificare" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Zi" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Ora" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Log Planificare" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minut" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Ziua saptămânii" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Caută" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Caută" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Cod de securitate" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Selectează tot" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Selectează tipul de câmp" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Selectează tipul de formular" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Selectează pe harta" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Selectează câte opțiuni ai nevoie" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Vă rugăm să verificați că ați selectat un element" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Selectează tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Trimite" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Trimite confirmare" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Trimite către" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Trimis" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Trimis de către" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adresă server" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tip server" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Serviciu" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Username Serviciu" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "User Id Seviciu" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Share" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Data share" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Share-uirea a fost" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Share-uire" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Harta scurtată" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Arată" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Arată tot" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Arată mesajele" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Arată rapoartele de la %1$s la %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "adresa email site" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL site" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Harta micșorată" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Ne pare rău, nu aveți nici o insignă." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Sursa" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Numele sursei" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sortează" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sortează în funcție de" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL sursă" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Suport SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "De la" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Pas" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Trimite o semnalare" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Trimis de %1$s prin %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Trimis prin SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Trimite SMS-ul către" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "pe telefonul tău" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Succes!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Importul a fost făcut cu succes" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Nume de familie" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Sondaj" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistem" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Harta înălțată" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Port TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Teme" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema Ushahidi de bază" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Setari tema" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Acest" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Azi" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Luna aceasta" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Săptămâna aceasta" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Anul acesta" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Acesta este profilul dvs." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Ora" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Titlu" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "către" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Astăzi" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Astăzi la" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Semn" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Total Semnalări" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Tradus" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Descrierea tradusă" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Titlul tradus" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Trandu în" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Traducere" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Traducerea a fost salvată" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "De încredere" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tip" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Emailul nu poate fi trimis." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Semnalări fără caregorie" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Necitite" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Neverificate" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Modifica feeds" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Încarcă" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Vizualizează ghidurile noastre pentru incărcarea de rapoarte" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Ghid XML Upload" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Ghid CSV Upload" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Fișier de încărcat" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Încarcă semnalări" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Coloanele personalizate ale câmpului trebuie să aibă anexată form_id lor ,de exemplu câmpul personalizat de Test, pe formularul implicit, al cărui id este 1, va fi Test-1. În timpul importului câmpurilor personalizate ale formularului, asigurați-vă că" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Cu ajutorul formularului de mai jos puteți importa incidente în motorul Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Rapoartele trebuiesc încărcate în format CSV sau XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Atunci când ID-ul incidentului există deja în baza de date, înregistrarea din fișierul CSV/XML va fi ignorată." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Trebuie să conțina cel puțin titlul unei semnalări și data acesteia" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Dacă coloanele de latitudine și longitudine nu sunt furnizate, locația va fi stabilită utilizând Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Dacă se importă informații adiționale de ex. informații personale și/sau câmpuri din formulare personalizate" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Cel puțin unul din câmpurile ce conțin informații personale (nume, prenume, email) TREBUIE să existe. Înregistrările goale nu vor fi imporate." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Intrările dvs. pentru câmpuri derulante, butoane radio și căsuțe corespund opțiunilor prevăzute pentru câmpul personalizat pe instanța dvs" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Opțiunile Checkbox sunt separate printr-o virgulă, de exemplu, în cazul în care alegerea dvs pentru fructe este de mere, mango și struguri, intrarea pentru acest lucru ar fi \"mere, mango, struguri\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Valorile pentru câmpul dată au următorul format: ll/zz/aaaa de exemplu, 03 octombrie 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Un exemplu de semnalare în format CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,TITLUL incidentului,DATA INCIDENTULUI,LOC, DESCRIERE, CATEGORIE, APROBAT, VERIFICAT,LATITUDINE;LONGITUDINE
\"1\", \"Moarte suspectă în Nairobi\", \"2009-05-15 01:06:00\", \"Nairobi\", \"Trei cazuri au fost confirmate în C. del Uruguay\",\"DECESE, CIVILI, \",DA,DA,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Încărcare realizată cu succes" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Încarcă Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Utilizator" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Nume utilizator" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Administrator Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verificare" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verificat" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Semnalare verificată" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verifică" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verifică această semnalare" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versiune" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Vezi" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Vizualizări" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Vezi tot" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Vezi toate feedurile" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Vezi toate semnalările" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Vezi elemente" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Detalii" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Vezi profilul public" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Vezi semnalare" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Vezi semnalări" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Vizualizează video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Vizibil" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Așteaptă aprobare" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Așteaptă verificare" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Harta lărgită" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Formular Web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Greutate" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Da" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ieri" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Bordul tău" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Fișerul tău" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zoom In" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zoom Out" diff --git a/application/i18n/po/po-ro_RO/upgrade.po b/application/i18n/po/po-ro_RO/upgrade.po new file mode 100644 index 0000000000..1b6a47150c --- /dev/null +++ b/application/i18n/po/po-ro_RO/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Monica Ipate , 2012 +# Monica Ipate , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Datele introduse sunt invalide. Poate fi fie 0 pentru Nu, fie 1 pentru Da." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Upgrade automat" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Actualizări disponibile" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continuă" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Upgrade" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Deci, voi face upgrade la baza de date de la versiunea" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "la ultima versiune a bazei de date" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Faceți click pe butonul \"Upgrade\" și relaxațivă cât timp se efectuează magia." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Ohh, de asemenea, dacă vrei să faci backup la baza de date, bifează căsuța de mai jos și voi face asta pentru tine într-o secundă." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Faceți un Backup la baza de date înainte de upgrade? (Foarte recomandat)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Upgrade la baza de date Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi a fost actualizat! Înainte să continui, trebuie să actualizezi baza de date cu cea mai nouă versiune (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Versiunea bazei de date este cea mai recentă." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Upgrade esuat la un anumit moment." + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Upgrade manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Statul Ushahidi upgrade" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Instrucțiunile de mai jos detaliază cum se upgradează manual implementarea ta Usahahidi." + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Descarcă
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Descarcă cel mai recent build Ushahidi de la" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- În cazul în care ceva este greșit, se recomandă un backup total al implementării Ushahidi.
Copiază fișierele
- Extrage fișierele zip descărcate
- În funcție de sistemul de operare al serverului de web, utilizați tool-urile/mod-ul preferat (e.g. Telnet, FTP, SSH) de login la webserver și înlocuiți conținutul tuturor directoarelor cu cele mai noi din build-ul recent.
Upgrade baza de date
- Determină în primul rând versiunea schemei bazei de date prin aflarea valorii db_version din tabelul de setări sau uită-te la informațiile de upgrade Ushahidi din partea de sus a acestei pagini.
- Dacă ești la versiunea 25, trebuie să upgradezi de la 25-26, 26-27, 27-28 și așa mai departe până la ultimul fișier SQL din directorul /sql .
- Folosind clientul bazei de date, upgradeaza baza de date prin executarea fișierului de upgrade x.sql adecvat.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Pasul 3: Uită-te în directorul sql. Execută manual fișierul upgrade-.sql pornind de la versiunea curentă a bazei de date instalate până la utimul fișer sql de upgrade." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Pasul 4: Click pe butonul \"Continuă\" pentru a upgrada tabelele necesare." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Pentru upgrade automat, apasă pe butonul de mai jos." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "În prezent, utilizați Ushahidi v%1$s cu versiunea bazei de date %2$d ce rulează pe %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Upgradaing" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Pentru a continua cu un upgrade simplu, următoarele informații sunt necesare serverului FTP pe care website-ul tău este găzduit." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Exemplu: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Parola FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Nume utilizator FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Aveți ultima versiune de Ushahidi" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Nu este necesar să faci upgrade" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versiunea bazei de date: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Atenție: Versiunea software din version.php și din baza de date nu corespund." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Atenție: Versiunea bazei de date din version.php și din baza de date nu corespund." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Baza de date:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Descarcă ultima versiune de ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Fișierul jurnal" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Descărcat cu succes. Unpacking..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Descărcarea a eșuat." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Dezarhivat cu succez. Copiază fișierele..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Dezarhivarea a eșuat." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Copiat cu succes. Upgradeaza baza de date..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Copierea fișierelor a eșuat." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Backup bază de date și upgrade efectuat cu succes." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Realizarea unui back-up al bazei de date a eșuat." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Upgrade bază de date efectuat cu succes." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Fișierele descărcate se șterg..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View
Log File" +msgstr "UPGRADE EFECTUAT CU SUCCES. Vizualizează Fișerul Jurnal" diff --git a/application/i18n/po/po-ru_RU/alerts.po b/application/i18n/po/po-ru_RU/alerts.po new file mode 100644 index 0000000000..08ee38c0c0 --- /dev/null +++ b/application/i18n/po/po-ru_RU/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Den , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-mail адрес введен неверно." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Этот e-mail уже подписан для оповещений по данной локации" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Длина е-mail адреса должна быть от 4 до 64 символов." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Требуется адрес e-mail, или уберите галочку." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "В данный экземпляр входит лишь одна страна. Пожалуйста, убедитесь, что месторасположение сообщения находится в стране %s " + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Вы неправильно выбрали местоположение на карте." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Вы не выбрали местоположение на карте." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Вы неправильно выбрали местоположение на карте." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Вы неправильно выбрали местоположение на карте." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Похоже, мобильный номер введен неправильно, введите правильный номер." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Этот номер уже подписан для оповещений по данной локации" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Номер телефона введен неправильно, введите только цифры с кодом страны." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Введите телефонный номер или адрес e-mail." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Введите номер телефона, или уберите галочку." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Вы не установили радиус событий на карте." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Вы не установили радиус событий на карте." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Вы не выбрали получателей для оповещений." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Вы подписаны на оповещения о следующих категориях" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Этот код уже был использован!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Код подтверждения не был найден. Введите правильный URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Ваш код подтвержден. Теперь вы будете получать оповещения о событиях." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Чтобы подтвердить подписку на оповещения, перейдите по ссылке: " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Назад, для создания подписок." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Запрос на оповещения по e-mail был создан, через некоторое время вы получите письмо с кодом подтверждения на адрес " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Введите код подтверждения который был отправлен вам на адрес:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Настройка оповещений по email НЕ была сохранена!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Настройка оповещений по электропочте была сохранена." + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Не удалось обработать код подтверждения!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Запрос на подписку по SMS был создан, через некоторое время вы получите SMS с кодом подтверждения" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Введите код подтверждения который был отправлен на SMS: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Не удалось сохранить настройки оповещения по SMS!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Настройка оповещений по SMS была сохранена!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Карта настроена неверно для того, чтобы получать оповещения" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Вы получили это письмо т. к. подписались на оповещения Ушахиди. Если вы хотите отписаться от них, зайдите: " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Вы больше не будете получать оповещения от:" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Мы не смогли отписать вас от оповещений. Пожалуйста, проверьте адрес." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Подтверждение на подписку оповещений Ushahidi" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Вы не сможете получать оповещения по данной локации, пока не введете код подтверждения." diff --git a/application/i18n/po/po-ru_RU/auth.po b/application/i18n/po/po-ru_RU/auth.po new file mode 100644 index 0000000000..0b13d6927c --- /dev/null +++ b/application/i18n/po/po-ru_RU/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# sher , 2013 +# Семён Гариленко <2507496@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "E-mail адрес введен неверно" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Данный e-mail уже используется" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Длина e-mail адреса должна быть от 4 до 64 символов." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Введите e-mail" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Имя должно быть от 3 до 100 символов" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Поле Имя обязательно для заполнения" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Поле Имя содержит недопустимые символы." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Поле пароль должно содержать не менее 8 символов" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Проверьте правильность ввода email и пароля" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Пароль и подтверждение не совпадают" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Поле для ввода пароля обязательно для заполнения" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Поле пароль может содержать в только буквы, символы # и @, цифры, символы подчеркивание и тире." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Пароль введен неверно. Попробуйте ещё раз" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "В поле пароля должно быть не менее 8 символов." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Убедитесь, что Вы ввели правильный адрес электронной почты и пароль ." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Введите одинаковые пароли в оба поля паролей." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Поле для ввода пароля не нужно." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Поле пароля должно иметь только алфавитные символы, знаки # и @ , цифры, символы подчеркивания и тире" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Возникла ошибка при попытке вашего входа в систему." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Длина Пароля должна быть от 5 до 16 символов" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Пароль введен неверно" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Введите идентичный пароль в двух соответствующих полях" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Введите пароль" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Сервер аутентификации не работает. Повторите попытку позже." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Поле пароль может содержать в только буквы, символы # и @, цифры, символы подчеркивание и тире." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Введенные пароли должны совпадать" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Введите правильный e-mail адрес" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Ваш e-mail не зарегистрирован в нашей системе" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Введите e-mail" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Только СуперАдмин может сменить СуперАдмина или обновить пользователя до администратора." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Недопустимый формат роли." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Поле \"роль\" должно быть не менее 5 и не более 30 символов." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Вы должны задать хотя бы одну роль" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Выберите АДМИНИСТРАТОР или ПОЛЬЗОВАТЕЛЬ" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Маркер \"забыт пароль\" неверен" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Нужен маркер \"забыт пароль\"" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Роль пользователя Администратор не может быть изменена" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "В поле URL общедоступный профиль должен содержать только цифры и буквы." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Имя пользователя уже используется" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Длина Имени пользователя должна быть от 2 до 16 символов" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Введите правильное имя пользователя" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Введите имя пользователя." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Роль пользователя Суперадминистратор не может быть изменена" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Возможны CSRF атаки. Вы действительно собираетесь создать/редактировать пользователя?" diff --git a/application/i18n/po/po-ru_RU/bug.po b/application/i18n/po/po-ru_RU/bug.po new file mode 100644 index 0000000000..917f33d93c --- /dev/null +++ b/application/i18n/po/po-ru_RU/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Введите правильный защитный код" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Введите защитный код" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-mail адрес введен неправильно." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Длина e-mail адреса должна быть от 4 до 64 символов." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Необходим email, или уберите галочку." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Введите описание ошибки" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Длина темы должна быть не менее 3 символов" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Заполните поле Тема" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Имя не может быть менее 3 символов" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Введите ваше имя" diff --git a/application/i18n/po/po-ru_RU/category.po b/application/i18n/po/po-ru_RU/category.po new file mode 100644 index 0000000000..16d7ddbf6d --- /dev/null +++ b/application/i18n/po/po-ru_RU/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# sher , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 10:47+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Поле цвет должно содержать 6 знаков (например 00FF00)." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Задайте цвет категории." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Введите описание категории." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Изображение должно быть меньше 50 kВ." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Вы действительно загрузили изображение? Поддерживаются форматы JPG / PNG / GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Не могу открыть изображение, файл испорчен." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Название должно содержать от 3 до 80 символов." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Введите название." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Вы не можете разбить категорию на подкатегории." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Родительская категория не существует." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Родительская категория должна быть числом." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Родительская категория не может быть специальной категорией" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Родительская категория обязательна." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Категория и родительская категория не могут быть одинаковыми." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Специальные категории не могут быть разбиты на подкатегории." diff --git a/application/i18n/po/po-ru_RU/comments.po b/application/i18n/po/po-ru_RU/comments.po new file mode 100644 index 0000000000..d53ac974a8 --- /dev/null +++ b/application/i18n/po/po-ru_RU/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Den , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Пожалуйста, введите правильный защитный код" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Пожалуйста, введите защитный код" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Вы ввели неправильный код безопасности." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Имя должно быть не меньше 3 символов." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Введите имя." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Введите комментарий." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Введен неправильный email." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email должен быть от 4 до 64 символов." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Введите email или снимите галочку." diff --git a/application/i18n/po/po-ru_RU/contact.po b/application/i18n/po/po-ru_RU/contact.po new file mode 100644 index 0000000000..4c21da1690 --- /dev/null +++ b/application/i18n/po/po-ru_RU/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# sher , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 10:48+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Введите правильный защитный код" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Введите правильный защитный код" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Введите защитный код" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Введен неправильный email." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email должен содержать от 4 до 64 символов." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Введите email или уберите галочку." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Введите текст сообщения." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Имя должно быть не менее 3 символов." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Введите имя." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Тема не должна быть менее 3-х символов." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Введите тему." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Произошла ошибка при отправке сообщения." diff --git a/application/i18n/po/po-ru_RU/core.po b/application/i18n/po/po-ru_RU/core.po new file mode 100644 index 0000000000..250e18e086 --- /dev/null +++ b/application/i18n/po/po-ru_RU/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# sher , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-29 11:21+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "файл конфигураци" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "контроллер" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "драйвер" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver for the %s library must implement the %s interface" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "The %s driver for the %s library could not be found" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Вы можете перейти на домашнюю страницу или пробовать снова." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Невозможно выполнить запрос" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "помощник" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "The requested filetype, .%s, is not allowed in your view configuration file" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Недопустимый метод %s вызова %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Свойство %s не существует в классе %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "библиотека" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Каталог журнала не доступен для записи: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "модель" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi не смог определить контроллер для обработки этого запроса: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Задайте маршрут по умолчанию в config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Запрашиваемая станица %s, не может быть найдена." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Сообщить об этой проблеме" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "The requested %s, %s, could not be found" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Трассировка стека" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Загружено за {execution_time} секунд, используя {memory_usage} памяти. Создано Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "There can be only one deployment of Ushahidi per page request" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Неперехваченные % s: %s в файле %s на линии %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "вид" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "You must set the the view filename before calling render" diff --git a/application/i18n/po/po-ru_RU/database.po b/application/i18n/po/po-ru_RU/database.po new file mode 100644 index 0000000000..b195f70a61 --- /dev/null +++ b/application/i18n/po/po-ru_RU/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Ошибка базы данных: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Таблица \"%s\" не найдена. Пожалуйста, убедитесь, что вы используете последнюю версию БД для этой версии Ushahidi" diff --git a/application/i18n/po/po-ru_RU/datetime.po b/application/i18n/po/po-ru_RU/datetime.po new file mode 100644 index 0000000000..7b610c5153 --- /dev/null +++ b/application/i18n/po/po-ru_RU/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# wpns <4671992@gmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "до полудня" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Пят" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Пятница" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Пон" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Понедельник" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "после полудня" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Суб" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Суббота" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Вск" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Воскресенье" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Чет" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Четверг" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Втр" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Вторник" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Сре" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Среда" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Янв" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Январь" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Фев" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Февраль" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Мар" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Март" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Апр" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Апрель" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Май" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Май" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Июн" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Июнь" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Июл" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Июль" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Авг" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Август" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Сен" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Сентябрь" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Окт" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Октябрь" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Ноя" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Ноябрь" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Дек" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Декабрь" diff --git a/application/i18n/po/po-ru_RU/feeds.po b/application/i18n/po/po-ru_RU/feeds.po new file mode 100644 index 0000000000..3c6ae5b090 --- /dev/null +++ b/application/i18n/po/po-ru_RU/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Дата" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Длина названия новостной ленты не может быть менее 3 или более 70 символов." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Введите название новостной ленты." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Введите URL новостной ленты." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Введите правильный адрес. Например, http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Источник" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Название" diff --git a/application/i18n/po/po-ru_RU/footer.po b/application/i18n/po/po-ru_RU/footer.po new file mode 100644 index 0000000000..16a6a846d5 --- /dev/null +++ b/application/i18n/po/po-ru_RU/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl не установлен" diff --git a/application/i18n/po/po-ru_RU/form.po b/application/i18n/po/po-ru_RU/form.po new file mode 100644 index 0000000000..8607e68915 --- /dev/null +++ b/application/i18n/po/po-ru_RU/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# sher , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 08:36+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Заданное вами значение по умолчанию для поля недопустимо." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Имя поля должно быть не менее 3 и не более 200 символов." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Введите значение поля от 0 до 50" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Вы выбрали неправильное значение поля \"Дата\"" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Выберите Да или Нет" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Имя поля должно быть не менее 3 и не более 100 символов." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Введите имя поля." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Имя поля, которое вы ввели, уже существует в этой форме. Введите другое." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Вы ввели неправильное значения для обязательного поля" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Выберите \"Да\" или \"Нет\" для обязательного поля" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Выберите правильный тип поля." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Выберите тип поля." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Введите значение от 0 до 300 для ширины поля" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Введите описание формы." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Форма по-умолчанию не может быть удалена." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Выберите, в какую форму нужно добавить данное поле." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Выберите, в какую форму нужно добавить данное поле." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Длина имени формы не может быть менее 3х и более 100 символов." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Введите имя формы." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Форма с этим именем уже существует. Выберите другое имя." diff --git a/application/i18n/po/po-ru_RU/imap.po b/application/i18n/po/po-ru_RU/imap.po new file mode 100644 index 0000000000..193c27b9f0 --- /dev/null +++ b/application/i18n/po/po-ru_RU/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Не удалось открыть поток IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Услуга не поддерживается" diff --git a/application/i18n/po/po-ru_RU/installer.po b/application/i18n/po/po-ru_RU/installer.po new file mode 100644 index 0000000000..88cc9b0d80 --- /dev/null +++ b/application/i18n/po/po-ru_RU/installer.po @@ -0,0 +1,413 @@ +# +# Translators: +# Den , 2013 +# Gregor Engelmann , 2013 +# sher , 2013 +# televizor , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 12:07+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Базовый Путь" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "База данных" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Хост базы данных" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Имя базы данных" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Имя базы данных, в которую вы хотите установить Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "For more information, please check out this article on the wiki that talks about databases in more detail" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Язык по умолчанию (Локализация)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Отключить" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Включить" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Listed below is a summary of the errors we encountered" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "доде́ланный " + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Общее" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google Ключ API" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Любой человек может получить ключ api. Получите ваш сейчас" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "шаг наза́д" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "Продвинутая установка" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "Простая установка" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Перейти" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Установка успешно завершена" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Почтоый сервер" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Имя хоста почтового сервера" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Например, mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Пароль почтового сервера" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Пароль, который вы обычно используете для входа на сервер электронной почты" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Порт почтового сервера" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Обычные Порты: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Тип почтового сервера" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Протокол Доступа Сообщения Интернет (IMAP) или Почтовый Офисный Протокол (POP). Какая разница?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Имя пользователя Почтового Сервера" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Карта" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Поставщик карты" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi works equally well with any of these four mapping providers: Google, Bing, Yahoo or Open Street Map. Choose the one that has the most detail in your area" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Другие шаги..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Пароль" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Пароль вашей базы данных" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Предыдущий" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Пожалуйста, перезапустите сервер Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Включить или отключить SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Setup your SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Адрес электронной почты сайта" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Email адрес оповещений сайта" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "When your site visitors sign up for email alerts, they will recieve emails from this address. This email address does not have to be the same as the Site Email Address" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Обширная переписка сайта будет направляться через этот адрес" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Имя Сайта" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Имя вашего сайта" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Слоган сайта" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Ваш слоган" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "The files and folders listed below need to be writable by your webserver" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Ниже приведены инструкции для изменения прав доступа к файлам:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "For the installation process, please have the following bits of information on hand" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Префикс таблицы" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normally you would not change the table prefix. However, If you want to run multiple Ushahidi installations from a single database you can do that by changing the prefix here" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Название" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Для входа в систему, перейдите к" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Загрузить данные отчета" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Имя пользователя" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Ваше имя пользователя базы данных" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "и использовать следующие учетные данные" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Просмотреть свой веб-сайт" diff --git a/application/i18n/po/po-ru_RU/json.po b/application/i18n/po/po-ru_RU/json.po new file mode 100644 index 0000000000..0dd36c9aa8 --- /dev/null +++ b/application/i18n/po/po-ru_RU/json.po @@ -0,0 +1,17 @@ +#. extracted from en_US/json.php, ru_RU/json.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-06-08 09:43+1300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.9.0\n" + +#: $lang->'cluster_name_reports' +msgid " Reports" +msgstr " сообщений(я)" diff --git a/application/i18n/po/po-ru_RU/layer.po b/application/i18n/po/po-ru_RU/layer.po new file mode 100644 index 0000000000..ec98e3bc8f --- /dev/null +++ b/application/i18n/po/po-ru_RU/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Поле \"Цвет\" должно состоять из 6 символов (например 00FF00)." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Введите цвет слоя." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Файл повреждён или неверный формат. Принимаются только .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Файл повреждён или неверный формат" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Длина имени слоя не может быть менее 3-х и более 80 символов." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Введите имя слоя." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Требуется KML/KMZ URL или файл" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Вы не можете ввести и URL, и файл одновременно" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Введите действующий URL. Например http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-ru_RU/libraries.po b/application/i18n/po/po-ru_RU/libraries.po new file mode 100644 index 0000000000..5c7a1850a1 --- /dev/null +++ b/application/i18n/po/po-ru_RU/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Den , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Не удалось подключиться к серверу Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Не удалось получить ответ от сервера Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API-библиотека: %s для %s класса не найдена. Пожалуйста, проверьте таблицу маршрутизации API-задач." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Akismet API-ключ введен неверно" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Метод отправки не поддерживается!
Проверьте, поддерживает ли PHP OpenSSL, и является ли версия PHP выше 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ваше сообщение слишком длинное! (Количество символов=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Укажите адрес (куда)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Укажите адрес источника (от)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ваше сообщение слишком длинное! (Количество символов=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Метод отправки не поддерживается!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "The API library %s is invalid. All API libraries must be subclasses of %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Папка %s не может быть удалена" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Ошибка извлечения: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Не удалось загрузить последнее обновление от Ushahidi. Код ошибки HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Файл %s не удалось скопировать" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Файл %s не удалось удалить" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Скрипт обновления Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Закачанный ushahidi zip файл %s, не может быть записан" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s не доступно в RiverID классе" diff --git a/application/i18n/po/po-ru_RU/maintenance.po b/application/i18n/po/po-ru_RU/maintenance.po new file mode 100644 index 0000000000..f998e71e42 --- /dev/null +++ b/application/i18n/po/po-ru_RU/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# televizor , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Извините, сайт отключён для обслуживания. Пожалуйста, зайдите позже." diff --git a/application/i18n/po/po-ru_RU/message.po b/application/i18n/po/po-ru_RU/message.po new file mode 100644 index 0000000000..91859f9137 --- /dev/null +++ b/application/i18n/po/po-ru_RU/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Введите правильный защитный код" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Введите защитный код" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Ваш e-mail адрес введен неверно." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Длина e-mail должна быть от 4 до 64 символов." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Нужно ввести e-mail, или уберите галочку." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Введите ваш комментарий" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Длина имени не может быть менее 3 символов." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Введите имя." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Номер телефона введен неверно." diff --git a/application/i18n/po/po-ru_RU/mhi.po b/application/i18n/po/po-ru_RU/mhi.po new file mode 100644 index 0000000000..f354c516dc --- /dev/null +++ b/application/i18n/po/po-ru_RU/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Nikki , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Please enter a valid security code." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Введите защитный код" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-mail введен неверно" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Пожалуйста, введите правильный e-mail адрес" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Поле \"Сообщение\" обязательно для заполнения" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Тема письма должна быть минимум 3 знака" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Тема письма не должна быть пустой" diff --git a/application/i18n/po/po-ru_RU/notifications.po b/application/i18n/po/po-ru_RU/notifications.po new file mode 100644 index 0000000000..35af48d2d9 --- /dev/null +++ b/application/i18n/po/po-ru_RU/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Это сообщение было отправлено с вашего веб-сайта" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Войти как администратор" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Новый комментарий был отправлен на ваш веб-сайт в ответ на:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Новый комментарий" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Новый e-mail был отправлен на ваш веб-сайт." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Новый e-mail" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Новое сообщение было отправлено на ваш веб-сайт." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Новое сообщение" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Новое SMS было отправлено на ваш веб-сайт." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Новое SMS" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Вы получили новое уведомление" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Новое уведомление!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Вам пришло новое личное сообщение" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Новое личное сообщение" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Для ответа нажмите здесь: " diff --git a/application/i18n/po/po-ru_RU/page.po b/application/i18n/po/po-ru_RU/page.po new file mode 100644 index 0000000000..6aa01e91b2 --- /dev/null +++ b/application/i18n/po/po-ru_RU/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Den , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Пожалуйста введите название страницы." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Заголовок страницы должен быть длиной как минимум 3 символа, но не длиннее 150." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Пожалуйста введите название закладки страницы. " + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Пожалуйста введите описание страницы." diff --git a/application/i18n/po/po-ru_RU/permissions.po b/application/i18n/po/po-ru_RU/permissions.po new file mode 100644 index 0000000000..15b226c017 --- /dev/null +++ b/application/i18n/po/po-ru_RU/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# sher , 2013-2014 +# televizor , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-06-03 21:56+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Просмотреть отчёты" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Создать/Редактировать/Удалить отчёты" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Одобрить отчёты" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Подтвердить отчёты" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Управление комментариями" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Скачать отчёты" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Загрузить отчёты" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Управление сообщениями" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Управление сообщениями Репортеров" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Просмотреть статистику" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Управление настройками" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Панель управления" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Управление пользователями" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Управление ролями" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Можно регистрировать" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Управление регистрациями" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Доступ к интефейсу администратора" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Доступ к интефейсу участника" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Удалить все отчеты" diff --git a/application/i18n/po/po-ru_RU/private_message.po b/application/i18n/po/po-ru_RU/private_message.po new file mode 100644 index 0000000000..dafae66b76 --- /dev/null +++ b/application/i18n/po/po-ru_RU/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# wpns <4671992@gmail.com>, 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Родительский ID должен быть числовым" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Поле \"Кому\" обязательно для заполнения" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Пользователь, которому Вы пытаетесь отправить сообщение, не существует" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Поле \"Тема\" обязательно для заполения" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Тема должна быть от 3 до 150 символов" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Поле \"Сообщение\" обязательно для заполнения" diff --git a/application/i18n/po/po-ru_RU/report.po b/application/i18n/po/po-ru_RU/report.po new file mode 100644 index 0000000000..4509585650 --- /dev/null +++ b/application/i18n/po/po-ru_RU/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# sher , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-06-03 21:56+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Ошибка!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Это диапазоны применимы только в пределах одной страны. Убедитесь, что сообщенное место в пределах страны %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Введите допустимое значение в поле \"%s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Поле \"%s\" должно быть числовым." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Поле \"%s\" - обязательно." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Поле \"%s\" не существует." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Поле \"%s\" нельзя редактировать в вашей учетной записи." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Поле \"%s\" должно содержать правильный email адрес." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Поле \"%s\" должно содержать правильный номер телефона." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Поле \"%s\" должно содержать правильную дату (MM/DD/YYYY)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Поле \"%s\" должно содержать правильную дату (DD/MM/YYYY)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Выберите правильный формат для загрузки" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Выберите правильный формат для загрузки" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Выберите \"Сообщения, Ждущие Одобрения\", \"Одобренные Сообщения\" или оба." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Выберите \"Сообщения, Ждущие Одобрения\", \"Одобренные Сообщения\" или оба." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Выберите \"Сообщения, Ждущие Одобрения\", \"Одобренные Сообщения\" или оба." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Выберите \"Сообщения, ожидающие Проверку\", \"Проверенные Сообщения\" или оба." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Выберите \"Сообщения, ожидающие Проверку\", \"Проверенные Сообщения\" или оба." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Выберите \"Сообщения, ожидающие Проверку\", \"Проверенные Сообщения\" или оба." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Выберите отчёт в правильном формате для загрузки" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Выберите отчёт в правильном формате для загрузки" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Выберите отчёт в правильном формате для загрузки" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Вы должны выбрать формат загрузки. Выберите CSV или XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Выберите допустимый формат, чтобы загрузить ваши сообщения" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Поле даты ОТ содержит неверные значения" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr " Введите правильный формат даты для ОТ поля. Он не может быть больше сегодняшнего числа." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Введите правильные значения для подтверждения этого события" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Введите правильные значения для подтверждения этого события" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Неправильно указано время суток" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "категория введена неверно" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Введите категорию." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Дата введена в неправильном формате" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Дата введена в неправильном формате" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Введите дату." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Введите описание." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Часы введены в неправильном формате." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Введите часы." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Введите правильные значения для введения вероятности информации" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Введите правильные значения для введения вероятности информации" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Минуты введены в неправильном формате." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Введите минуты." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "URL ссылки новостей введен неправильно." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Загружаемый файл не может превышать 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Загружаемые файлы картинок в неверном формате, введите файлы в .JPG, .PNG и .GIF формате." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Загружаемые файлы картинок испорчены или в неправильном формате" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Введите правильные значения для введения достоверности источника" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Введите правильные значения для введения достоверности источника" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Длина Названия не может быть менее 3-х и более 200 символов." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Введите название." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Возможны CSRF атаки. Вы действительно хотите создать/редактировать сообщение?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Введите правильные значения для проверки этого события" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Введите правильные значения для проверки этого события" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Ссылка на видео введена неверно" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Широта местности введена неправильно" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введите широту местности, или кликните на карте, чтобы поставить точку местоположения." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Поле \"Локаль\" введено неправильно. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Данное сообщение уже имеет перевод на данный язык" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Локаль введена неверно. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Сообщение о событии и перевод имеют одинаковую локаль (язык)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Введите местоположение." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Длина названия местоположения не может быть менее 3-х и более 200 символов." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Введите название местоположения." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Долгота местности введена неправильно" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введите долготу местности или кликните на карте, чтобы поставить точку местоположения." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Адрес Email введен в неправильном формате" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Длина адреса Email не должна быть менее 4-х и более 64-х символов." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Длина имени не должна быть менее 3-х и более 100 символов." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Длина фамилии не должна быть менее 3-х и более 100 символов." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Поле даты ДО содержит неверные значения" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Введите правильную дату для поля ДО. Она не может быть больше сегодняшней." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Дата ОТ не может быть больше, чем дата ДО." diff --git a/application/i18n/po/po-ru_RU/reporters.po b/application/i18n/po/po-ru_RU/reporters.po new file mode 100644 index 0000000000..2981593ee7 --- /dev/null +++ b/application/i18n/po/po-ru_RU/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# sher , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 12:31+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Введите верное значение широты" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введите широту или выберите место на карте." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Кажется, поле Уровень Репортера содержит не правильный Уровень?" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Кажется, поле Уровень Репортера содержит не правильный Уровень?" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Имя локации должно быть от 3 до 200 символов." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Заполните имя локации" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Введите верное значение долготы" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введите долготу или выберите место на карте." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Неверный Репортер" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Неверный Репортер" diff --git a/application/i18n/po/po-ru_RU/reports.po b/application/i18n/po/po-ru_RU/reports.po new file mode 100644 index 0000000000..f3596660f2 --- /dev/null +++ b/application/i18n/po/po-ru_RU/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Den , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Пожалуйста убедитесь, что вы выбрали значение. " + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Пожалуйста убедитесь, что вы выбрали значение. " + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Сообщения должны быть отнесены к какой-то категории, прежде чем их можно будет подтвердить." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "У вас нет прав доступа для указанного действия." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Вы должны выбрать файл для загрузки" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Загружаемый файл должен быть в формате .csv или .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Поле для загрузки файла не содержит правильного файла" diff --git a/application/i18n/po/po-ru_RU/roles.po b/application/i18n/po/po-ru_RU/roles.po new file mode 100644 index 0000000000..97e42371a9 --- /dev/null +++ b/application/i18n/po/po-ru_RU/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Den , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Поле \"Описание\" должно быть от 3-х до 100 символов." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Поле \"Описание\" должно быть заполнено." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Поле \"Имя\" может содержать только буквы или цифры." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Поле Имя должно быть от 2-х до 30 символов." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Роль Суперадминистратора не может быть изменена." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Поле \"Имя\" должно быть заполнено." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Поле \"Уровень доступа\" должно быть числом от 0 до 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Поле \"Уровень доступа\" должно быть числом от 0 до 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Поле разрешения должно быть числом от 0 до 100" diff --git a/application/i18n/po/po-ru_RU/settings.po b/application/i18n/po/po-ru_RU/settings.po new file mode 100644 index 0000000000..d1ff3667f6 --- /dev/null +++ b/application/i18n/po/po-ru_RU/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Den , 2013 +# sher , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Поле о допустимости отправлять комментарии заполнено неверно" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Заполните поле о допустимости отправлять комментарии." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Поле о ленте RSS заполнено неверно" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Заполните поле о ленте RSS." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Поле разрешить оповещения, кажется, содержит недопустимое значение." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Поле \"Разрешить оповещения\" - обязательно." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Поле о допустимости отправлять отчёты заполнено неверно" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Заполните поле о допустимости отправлять отчёты." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Поле об отправке статистики заполнено неверно" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Введите поле об отправке статистики." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Количество записей по умолчанию, отдаваемых по API-запросу" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Максимальное количество записей, отдаваемых по API-запросу" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Максимальное количество API-запросов с одного IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Поле Akismet заполено неверно" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Поле Akismet заполено неверно" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Поле баннер сайта, не содержит ни одного действительного изображения. Принимаются только форматы . JPG, . PNG и . GIF ." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Убедитесь , что \"Картинка Баннер\" размером менее 250 КБ." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Поле \"Картинка Баннер\" не содержит допуститмый файл." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Поле страниц кэша - обязательно." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "The cache pages field does not appear to contain a valid value?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Поле \"Время жизни кеша\" заполено неверно." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Укажите время жизни кеша." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Сервер не настроен для \"красивой\" адресной строки. Подробнее" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Эта опция позволит заходить на Ushahidi без \"index.php\" в адресной строке." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Включить \"красивые\" URL" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "\"Красивая\" адресная строка" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Длина номера Clickatell API не должна превышать 20 символов" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Введите Clickatell API номер" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Длина пароля Clickatell не должна превышать 50 символов" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Введите пароль Clickatell" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Длина имени пользователя Clickatell не должна превышать 50 символов" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Введите имя пользователя Clickatell" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Настроить карту" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Местоположение по умолчанию" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Поле цвета содержит неверные данные" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Поле цвета должно состоять из 6 символов (FF00FF)" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Введите цвет" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Карта по умолчанию" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Масштаб по умолчанию" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Автозагрузка названий населенных пунктов выбранной страны (нажми меня!)" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "В поле \"Адрес почтового сервера\" слишком много символов" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Поле порта Почтового сервера должно содержать только цифры." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Длина пароля сервера почты не должна превышать 50 символов" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Введите пароль сервера почты" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Поле \"Порт сервера почты\" содержит слишком много символов" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Поле \"Порт сервера почты\" должно содержать только цифры" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Поле \"Тип почтового сервера\" содержит слишком много символов" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Введите тип почтового сервера" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Длина имени пользователя сервера почты не должна превышать 50 символов." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Введите имя пользователя сервера почты" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Настройки Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "To get the information below you will need to create a new facebook application at" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Эти настройки позволяют пользователям входить через Facebook, это не создает приложение facebook для вашего размещения" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Секретное приложение Facebook" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Поле Google Analytics должно содержать действующий Web Property ID в формате UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Включить HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Эта опция включит доступ к Ushahidi в обычном режиме без https в префиксе URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Эта опция включит доступ к Ushahidi в зашифрованном режиме с https в префиксе URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Поле \"Количество элементов на странице (Главной)\" заполнено в неправильном формате" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Заполните поле \"Количество элементов на странице (Главной)\"." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Поле \"Количество элементов на странице (Admin)\" заполнено в неправильном формате" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Заполните поле \"Количество элементов на страницу для (Admin)\"." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Картографический материал загружается напрямую. Выберите провайдера, получите API-ключ и введите его." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Масштаб" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Выберите провайдера карты" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Введите полученный API-ключ" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Получите API-ключ" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Настройка провайдера карты — простой процесс: выберите провайдера, получите API-ключ, введите ключ на сайте" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Провайдер карты" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Временная карта " + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Настройка карты" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Данная карта будет использоваться больше чем в одном государстве?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Выберите страну" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Кликните на карте, чтобы уточнить местоположение" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Кластеризовать Отчёты на Карте" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Позволить пользователям отправлять комментарии к отчётам" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Включить новостную ленту RSS на главной странице сайта" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Разрешить Пользователям Подписываться на События" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Позволить пользователям отправлять отчёты о событиях" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet ключ" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Баннер Сайта" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Блоков в строке" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Включить кэширование?" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Время жизни кэша" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Проверка" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Авторское право" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Цвет по умолчанию для всех категорий" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Значок по умолчанию для всех категорий" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Удалить Картинку Баннера" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Удалить Иконку По умолчанию" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Показывать страницу \"Обратная связь\"" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Показывать страницу \"Как помочь\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "E-mail для оповещений" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr " Чтобы получить отчёты по почте, пожалуйста, настройте параметры вашего e-mail-аккаунта." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "E-mail сайта" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Идентификатор Google Analytics - формат: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Количество элементов на страницу - Главная" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Количество элементов на страницу - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Защититесь от спама с помощью Akismet от Automattic.
Получить бесплатный API-ключ в WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica аккаунт" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica сайт " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Язык сайта" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Вручную утвердить пользователей" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Важное сообщение" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Название сайта" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Закрытый доступ" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Требует подтверждения E-mail пользователя " + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Отправить сообщение с отчетом" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Отправлять статистику в API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Слоган" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Часовой пояс" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Параметры сайта" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Твиттер-аккаунт" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Отделяйте хэштеги запятыми" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "E-mail веб-сайта введен неправильно" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Длина e-mail веб-сайта должна быть от 4 до 100 символов" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Длина названия сайта должен быть от 3 до 50" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Введите название сайта" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Длина поля заголовка должна быть от 3 до 100 символов" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Введите поле заголовка" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Введите ваш Clickatell API Номер" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Проверьте ваш баланс на Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Загрузите баланс на Clickatell" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Введите ваш Clickatell пароль" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Подключитесь к услуге Clickatell в clicking here" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Введите вашу информацию Clickatell внизу" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Введите ваше Clickatell имя пользователя" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS - со свободным и открытым исходным кодом, что позволяет пользователям отправлять и получать текстовые сообщения с большими группами людей через мобильные телефоны. Нажмите на поле ниже, чтобы скачать последнюю версию с FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Скачать и установить FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Детальные команды, как послать СМС с вашей FronlineSMS доступны здесь. Ключи URL и API ниже нужны для синхронизации с FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Скопируйте и вставьте его в поле «Адрес» FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Скопируйте и вставьте это в поле FrontlineSMS «Ushahidi API ключ»" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Соединение FrontlineSMS с этим размещением Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Введите номер телефона, подключенный к FrontlineSMS, в поле внизу" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Введите номер без символов \"+\" или скобок" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Option 1: Использовать FrontlineSMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Использовать GlobalSMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Настройка SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Телефон 1 содержит неверные значения" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Телефон 1 должен содержать только цифры." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Телефон 2 содержит неверные значения" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Телефон 2 должен содержать только цифры" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Телефон 3 содержит неверные значения" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Телефон 3 должен содержать только цифры" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Параметры настройки Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Чтобы получить информацию ниже, установите ваше размещение как новое приложение Twitter" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Ключ потребителя" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Секрет потребителя" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Маркер доступа" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Секрет идентификатора доступа" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Настройки теста" diff --git a/application/i18n/po/po-ru_RU/sharing.po b/application/i18n/po/po-ru_RU/sharing.po new file mode 100644 index 0000000000..71b7ef1592 --- /dev/null +++ b/application/i18n/po/po-ru_RU/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Den , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Дата регистрации" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Дата добавления" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Последнее посещение" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Значение цвета должно быть 6-значным (FF00FF)" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Введите цвет" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "The Sharing name ведено неверно" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Введите Sharing name." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "URL сайта уже существует" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL сайта похоже не верный." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Введите URL сайта" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Адрес сайта введен неверно" diff --git a/application/i18n/po/po-ru_RU/stats.po b/application/i18n/po/po-ru_RU/stats.po new file mode 100644 index 0000000000..667ae3dbbe --- /dev/null +++ b/application/i18n/po/po-ru_RU/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Подтверждено" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Категории" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Категории" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Данный график позволяет линейно просматривать сообщения по категориям в заданном промежутке времени. Прокрутите слева направо, чтобы увидеть сравнительный обзор между разными категориями. Подведите указатель мыши для просмотра деталей" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Выберите интервал даты" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Страны" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Страна" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Разбивка по странам" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Раздел статистики. Описание будет добавлено скоро, пока посмотрите по ссылкам ниже" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Ошибка" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Термины" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Статистика щелчков" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "История" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Просмотр страниц" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Количество страниц, просмотренных посетителями" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Сообщения" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Категории сообщений" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Статистика сообщений" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Статус сообщений" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Временной анализ" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Статистика по сообщениям" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Статистика не настроена" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 месяц" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 месяца" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 месяцев" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Все" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Неподтвержденных" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Уникальные посетители" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Количество посетителей сайта, которые зашли впервые. Уникальные посетители определены с помощью cookies. Если у посетителя не включены cookies, то они будут посчитаны по IP адресу, браузеру, плагинам, ОС и т. д." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Непроверено" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Проверено" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Посетителей всего" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Посещения" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Посещение — количество уникальных посетителей, которые вернулись на сайт после 30 минут после последнего визита" diff --git a/application/i18n/po/po-ru_RU/tooltips.po b/application/i18n/po/po-ru_RU/tooltips.po new file mode 100644 index 0000000000..bdb2b6611f --- /dev/null +++ b/application/i18n/po/po-ru_RU/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# sher , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Позволяет добавлять дополнительные категории к сообщению. Если вы отметете \"Категория1\" для сообщения, которое уже находится в \"Категория2\", то сообщение будет привязано к обеим категориям." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Утверждает отчет или нет. Если одобрено, он будет отображаться публично." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Вы можете назначить значок на вызов пользователя. Выберите значок, который назначается здесь." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Это диапазон часов и/или минут в 24-часовом формате. Если вы вводите более раннее время во второе поле, оно будет зеркально отражено в первом. Эти значения времени должны быть в пределах одного дня. Кроме того, это время сверяется с настройкой времени на вашем сайте в настройках сайта и не обязательно с часовым поясом пользователя, связывающегоя с вашим развертыванием. Оставьте его с 00:00 до 00:00, чтобы игнорировать этот спецификатор." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Вы можете задать условие активации триггеров при использовании определенных категорий. Например, если вы выбрали условие \"Категория1 и Категория2\", а сообщение привязано к Категория2 и Категория3, то она выполнит заданное условие." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Если эти действия происходят в определенные дни недели, задайте это здесь. Имейте в виду, день определяется часовым поясом, настроенным в развертывании. Удерживайте shift, command, или control, для выбора нескольких дней." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Тело письма, которое будет отправлено." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Заголовок письма, которое будет отправлено." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Каналом могут быть все каналы или конкретные каналы. Если вы хотите только конкретные каналы для активации триггера, вы можете выбрать их здесь. В противном случае, оставьте «все»" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Имя пользователя автора Twitter (или много имен пользователей через запятые). Если Вы хотите активизировать триггеры только для сообщений twitter от конкретного пользователя, введите его имя пользователя здесь (без @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Если вы хотите запускать триггеры по ключевым словам, введите их здесь через запятую." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Вы можете выбрать \"где угодно\" или указать местоположение. Если вы выбрали местоположение, вы можете указать периметр, где происходит действие. Например, если вы хотите активировать триггер, когда кто-либо укажет точку в Смоленской области, вам необходимо выделить данную область одним или несколькими прямоугольниками." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Это название по умолчанию для добавления в отчет." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Если все критерии выше были пройдены, триггер запустит действие - от одобрения сообщения до электронного письма пользователю. Выберите необходимые дополнительные опции." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "При выборе \"Triggering User\" электроное письмо будет отослано пользователю, выполнившему действие. При использовании радио-кнопки после поля ввода вы сможете ввести любой другой e-mail. Это полезно, когда вы устанавливаете триггеры для уведомления пользователей о произошедших изменениях." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Вы можете выбрать несколько дней здесь . Даты определяется вашими настройками часового пояса развертывания. Для того, чтобы по умолчанию остались все даты , не отмечайте никаких дат ." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Триггер является основным элементом для настройки \"Действий по условию\". Вы можете выбрать какое-либо действие, когда кто-нибудь отправит новое сообщение, зарегистрируется и т. д." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Пользователем может быть кто угодно или выбранный пользователь." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Отметить сообщение как проверенное или нет." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Аватары анкет данного сайта используют сервис Gravatar. Нажав на ваш аватар, вы будете переадресованы на их сайт, где сможете изменить изображение." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Отделите каждое значение запятой. Например: Значение1, Значение2 и т. д." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Каждое значение отделяется запятой, например, value1, value2 . Если вы хотите задать значение по умолчанию, закончите список опций :: например, если вы хотите задать value3 как умолчание, это будет value1, value2 , value3 :: value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Отделите каждый элемент запятой. Например: Пункт1, Пункт2 и т. д." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Начните печатать, чтобы выпал список пользователей" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Тема личного сообщения" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Личное сообщение" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Вы можете выбрать цвет, который будет отображён под вашим аватаром. Этим цветом также будут отображаться сообщения, которые вы отправили.." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Ваш e-mail адрес" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Полное имя" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Если задано, это будет ваш новый пароль. Оставьте это поле пустым, если вы хотите сохранить ваш текущий пароль." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Это требуется при создании нового пользователя и будет паролем пользователя . Вы должны информировать своего нового пользователя о возможности смены пароля после первого входа в систему." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Выберите \"ДА\" для e-mail оповещений о новых точках или комментариях" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Ваш пароль. Оставьте пустым, если вы не хотите изменять пароль" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Ваша анкета может быть просмотрена кем угодно, если вы отметите эту опцию." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Это - адрес, где можно найти ваш общественный профиль." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Имя пользователя не может быть изменено" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Уровень доступа используется для ограничения доступа к пользовательским полям. Обладающий большим уровнем сможет увидеть поля с меньшим уровнем. Суперадмин имеет высший уровень доступа \"100\". Данные, предназначенные для публичного просмотра имеют низший уровень \"0\"." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "На этот e-mail будут отправляться уведомления" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Разрешить пользователям подписаться на уведомления через сеть." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Позволяет добавлять точки на одно и то же место на карте" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Разрешить пользователям комментировать сообщения на главной странице" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Показывать новостную ленту RSS на главной странице" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Это позволяет создавать новую категорию из ленты новостей RSS." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Разрешить пользователям отправлять сообщения через веб-форму." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Кол-во выдаваемых записей по умолчанию по API-запросу" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Максимум выдаваемых записей по умолчанию по API-запросу" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Максимум API-запросов с одного IP адреса" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Заставка показывается наверху вашего сайта, если тема её поддерживает. Оптимальный размер зависит от используемой темы. Обратите внимание, что заставка заменит собой название и слоган сайта." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Количество блоков которое будет показываться на каждом ряду." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Разрешить кешировать страницы? Ускоряет загрузку страниц, рекомендуется для сайтов с высоким трафиком. **Помните, что пользователи будут видеть обновленные данные с периодичностью времени жизни кеша." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Время жизни кеша." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Проверка настроек сайта перед запуском платформы (This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin only themes will become enabled under your addons/themes settings page)." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Установите карту для отображения местоположения" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Единый цвет для всех категорий на сайте" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Задать один значок для всех категорий на сайте." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Страна, где будет установлена платформа" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Показывать или нет ссылку ОБРАТНАЯ СВЯЗЬ для пользователей" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Включает и выключает панель ПОМОЩЬ на главной странице." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Количество сообщений, которые будут показаны на одной странице (главная страница)" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Количество сообщений, которые будут показаны на одной странице (Admin)." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Хаб для входящих SMS-сообщений" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Синхронизирует сообщения из хаба с платформой Ушахиди" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Телефонные номера через которые были получены сообщения" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Отслеживает посетителей Вашего сайта. Получите детальную статистику о посетителях" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Язык веб-сайта" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Если вы устанавливаете этот параметр \"да\", вы должны одобрить каждого отдельного пользователя, который создаст учетную запись на вашем сайте, назначая им роли (т.е. Член, Админ, СуперАдмин)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Определяет, какая карта будет использована на сайте" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Это отображает на графике времени дату и время поступления отчета" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Закрытый доступ к карте, только после авторизации." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Если установлено \"да\", пользователи получат email со ссылкой подтверждения перед разрешением регистрации в развертывании. Если Вы включите это после того, как ваше развертывание принимало пользователей, им будет отправлен запрос подтвердить их учетную запись, чтобы им позволили продолжить использовать ее." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Адрес e-mail сервера" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Пароль e-mail, который получает сообщения" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Порт e-mail сервера" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Требуется для более безопасного соединения" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Требуется, чтобы получать e-mail от сервера" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Имя пользователя E-mail, на который будут приходить сообщения" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Получение статистики через админку." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Авторское право см. http://creativecommons.org/choose/" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "E-mail, на который будут отправлены уведомления и сообщения из формы контактов." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Сообщение, которое будет показано над картой на главной странице" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Имя сайта в верхней части главной страницы" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Сообщение, которое будет показываться пользователям на странице заполнения данных о новом сообщении. Возможно использование для информирования о юридической ответственности или других инструкциях." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Несколько слов о данном веб-сайте" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Часовой пояс, который будет использовать данный сайт." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Хэштэг Twitter" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ru_RU/ui_admin.po b/application/i18n/po/po-ru_RU/ui_admin.po new file mode 100644 index 0000000000..4a789ed8b9 --- /dev/null +++ b/application/i18n/po/po-ru_RU/ui_admin.po @@ -0,0 +1,1661 @@ +# +# Translators: +# Den , 2013 +# Constantin , 2013 +# sher , 2014 +# televizor , 2012 +# Yurii Tikhoglaz , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-08-25 17:10+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Отказано в доступе. Неправильный логин или пароль или ваш запрос был отклонён." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Отказано в доступе. Сервер перегружен, попробуйте еще раз позже." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Уровень доступа" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Действия" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Добавить к категории" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "добавлена" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "добавлена/отредактирована" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Дополнительно" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Администратор" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Оповещения" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Получены оповещения" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Все" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "ДП" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Анонимно" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Кто угодно" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Где угодно" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API заблокирован" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API журнал" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API настройки" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Разблокировать" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Разблокировать всех" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "подтверждены" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Подтверждать автоматически" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Подтверждать вручную" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Архивный" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Вы уверены, что хотите" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Вы уверены, что хотите удалить этот элемент?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Вы уверены, что хотите удалить это фото?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Вы уверены, что хотите переключить формы?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Назначать" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Отчисления" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Установить награду" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Автор" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "E-mail автора" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Назад" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Заблокировать IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Между (times)" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Блоки" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Тело" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Отмена" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Категории" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Ошибка в отображении графика" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Пожалуйста, убедитесь, что сообщение надлежаще оформлено" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Пожалуйста, убедитесь, что номер правильный" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Пожалуйста, проверьте настройки SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Подробности регистрации" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Регистрации" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Города загружены" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "код" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Версия кода не синхронизируется" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Цвет" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Комментарии" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Ваш код подтверждения уведомлений: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Пользователь был" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Итог" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Страна не найдена" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "создана/отредактирована" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Создать сообщение" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Критически важное обновление" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Сейчас активно" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Неактивно" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "У вас недостаточно прав для редактирования следующих полей." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Ежедневно" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Пульт" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "База данных" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Дата и время" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Дата Добавлена" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Дата Изменена" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Дни недели" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "БД не синхронизирована" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "удалены" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Удалить" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Удалить все отчеты" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Удалить награду" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Пример" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Описание" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Отключено" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Начало разделителя" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Конец разделителя" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "класс div" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Скачать сообщения" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Выпадающий пункт меню" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "ОТРЕДАКТИРОВАНО" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Отредактировано" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Редактировать" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Журнал правок" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "E-mail" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Всего коллектива" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Ошибка геокодирования! HTTP ошибка" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Не была установлена IMAP PHP библиотека" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Неправильные данные" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Ошибка" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Ошибка, не удалось отправить событие" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Каждые шесть часов" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Каждые двенадцать часов" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Экспериментальная" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "новостная лента" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Отзыв" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "новостные ленты" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Список пунктов меню" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Значение по умолчанию" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Тип данных" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "JavaScript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Разметка" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Цифровое" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Текст" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Высота (в столбцах)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Скрытое поле" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Максимальное количество символов" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Название поля" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Переключатель" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Нет" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Да, закрыто по умолчанию" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Да, открыто по умолчанию" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Не удалось найти загруженный файл" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Не удалось открыть файл для чтения" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Эта форма не существует!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Форум" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Многострочное текстовое поле" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Поле даты" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Радио-кнопка" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Чекбокс" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Выпадающий список" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "От" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "с" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geoname таймаут ошибка" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Ресурсы" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Дополнительные темы" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Дополнительные плагины" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Действия" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Добавить/редактировать" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Электронная почта" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Управление пользователями" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Роль" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Пользователь" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Помощь" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Почасовое" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Лента событий для" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Папка с дистрибутивом всё ещё присутствует на сервере. Удалите папку инсталляции, это потенциальная угроза беопасности." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Привязка" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Привязки" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Подробности привязки" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Неверный параметр" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP адрес" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Это поле даты?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Кто может видеть ответы" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Кто может отвечать" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Ключевое слово" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Ключевые слова" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "E-mail адрес:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Полное имя:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Пароль:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Роль:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Имя пользователя:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Слои" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Модератор" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Выйти" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Журнал" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Управление" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Управление ролями и разрешениями" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Просмотр пользователей" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Добавить/редактировать пользователей" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Управлять размещением в публичном каталоге" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Отметить как" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "отмечено как не спам" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "отмечено как спам" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "ничего не было найдено" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Сообщение" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Сообщения" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica сообщения" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Твиты" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Ваше сообщение отправлено!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Минута" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "минут" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Отсутствует параметр" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Модератор" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "Изменено" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Изменить настройки временной зоны" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "Сдвинуть вниз" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "Сдвинуть вверх" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Множественные привязки" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Мои уведомления" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Мои входы" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Моя анкета" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Мои сообщения" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Голосов" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "За" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Против" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Имя" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Создать предупреждение" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Создать личное сообщение" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Новый пароль" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Нет" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Это специальная категория, которая не будет показываться в форме отправки сообщения для пользователя, который его отправляет. Категория используется для хранения сообщений без категорий (некатегоризированные сообщения), которые образовались в результате удаления категории. " + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Извещения" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Не чувствителен к регистру." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Не найдено" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Нет данных. Нечего показывать." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Нет Ошибка" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Нет результатов для отображения!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "от" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Всего выбрано" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "страница" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "страницы" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Страница не найдена" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Извините, но запрашиваемая Вами страница находится не здесь.

Если Вы видите это сообщение в результате перехода по ссылке с другой части портала, пожалуйста сообщите нам, чтоб мы могли исправить ошибку.

Вы перешли сюда по ссылке с другого сайта?
Ссылки с других сайтов могут быть устаревшими или неправильными. Сообщите нам об этом, чтоб мы попытались связаться с сайтами и исправить проблему.

Вы вручную ввели URL?
Вы могли ошибиться при вводе ссылки (URL). Проверьте, не ошиблись ли Вы с раскладкой клавиатуры или включенная клавиша NumLock и пр.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Извините. запрашиваемая вами страница находится не здесь" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Используемые параметры" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Пароль" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Сброс пароля" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Уважаемый/я" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Мы получили просьбу сбросить пароль для" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Чтобы поменять пароль, нажмите на ссылку ниже (или скопируйте её и вставьте в браузер)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Как вы просили пароль был сброшен. Новый пароль" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Пароль Ушахиди сброшен" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Пожалуйста, выберите" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "ПП" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Информация не была отправлена POST методом" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Предпросмотр" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Личное сообщение" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Личные сообщения" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Личное сообщение отправлено" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Тема" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Кому" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Размещение в каталоге" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Квалификация" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "читать" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Важность" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Заголовок отчёта" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Дата сообщения" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Корреспонденты" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Уровни корреспондентов" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Сообщения" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Очки репутации" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Обязательное" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Сброс" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Отклик" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Результаты" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Отозвать" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Этот адрес электронной почты указан в аккаунте CrowdmapID. Пользователь должен использовать существующий в Crowdmap пароль для захода. " + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Сохранить настройки" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Поиск" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Искать отчёты" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "Поиск" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Ключ шифрования всё ещё установлен в значение по умолчанию. Это небезопасно, ключ должен быть изменён." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Этот сайт работает по протоколу HTTP. Стоит переключить на HTTPS для повышенной безопасности." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Инструкции доступны в вики:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Выберите предпочитаемый вами формат для скачивания сообщений:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Выберите тип поля ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Выберите пункт" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Выберите условие для ответа" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Выберите условие для определения квалификации" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Отправитель" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Отправить" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Это сообщение было отправлено с вашего сайта в" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Серверное время" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Настройки" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Отображаемая страница" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Отображаемые результаты" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "показанно" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Специальная категория" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Это специальная категория, не показываемая на странице создания нового сообщения для обычных пользователей. Она используется в сочетании с функцией \"Достоверные сообщения\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Определенная область" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Состояние" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Статистика" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Статистика" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Не удалось собрать статистику! Пожалуйста, попробуйте снова через некоторое время." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Не удалось собрать статистику!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Конкретные дни" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Тема" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Суперадминистратор" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Задание выполнено" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Текстовое поле" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Имя" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Управление пользователями" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Ошибка таймаута" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "на" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Всего записий" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "по" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Перевести сообщения" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Условие" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Триггерный пользователь" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Условия" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "Не подтверждено" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Неизвестно" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Неизвестная ошибка" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "Не прочитано" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Вы больше не будете получать уведомлений от" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Нажмите чтобы обновить сейчас" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Обновление платформы Ушахиди" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Статус обновления платформы Ушахиди" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Загрузить сообщения" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Пользователь" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Пользователи" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ушахиди" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "статус \"Проверено\" изменён" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Проверено/Не проверено" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Версия" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "готов к обновлению." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Сжатие видео" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Личные сообщения" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Просмотреть сайт" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Просмотреть сообщения" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Добро пожаловать " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Вики" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Да" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Ваш поиск для" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Нажатие на кнопку ниже, удалит все отчеты в базе данных. Делайте это осторожно, поскольку эта операция не может быть отменена." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Мы рекомендуем вам сделать резервную копию вашей базы данных, прежде чем продолжить" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Я уверен, что хочу удалить все %s сообщений из базы данных." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Вы уверены, что хотите удалить все сообщения?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Нет отчётов для удаления." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Количество входов" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Последний вход" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Подтвержденный аккаунт?" diff --git a/application/i18n/po/po-ru_RU/ui_main.po b/application/i18n/po/po-ru_RU/ui_main.po new file mode 100644 index 0000000000..0ab5779f53 --- /dev/null +++ b/application/i18n/po/po-ru_RU/ui_main.po @@ -0,0 +1,3171 @@ +# +# Translators: +# Den , 2013 +# sher , 2013-2014 +# televizor , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "О нас" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Доступ" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Ограничение доступа" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Имя пользователя" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Действия" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Это действие нельзя будет отменить, вы уверены что хотите продолжить?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Активировать" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Активные" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Добавить" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Добавлен" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Дополнительные данные" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Дополнительные cообщения" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Добавить/редактировать" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Добавить поле" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Добавить язык" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Добавить новое" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Добавить новую категорию" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Добавить перевод" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Администрация" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Оповещения" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Уведомить меня, если cообщение будет оставлено здесь или поблизости:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Сохранить настройки подписки" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "E-mail адрес:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "введите адрес e-mail" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "введите телефонный номер с кодом страны" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Подписка на оповещения" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Оповещение " + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Номер телефона:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Отметьте место на карте для того, чтобы получать оповещения о новых сообщениех в выбранных пределах" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Если вы не можете найти место по названию, укажите его на карте вручную" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Новостная RSS-лента (скопируйте адрес ниже)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Выберите город" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Шаг 1. Выберите место" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Шаг 2. Отправлять оповещения на:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Шаг 3 (опционально). Укажите категории:" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Подтвердить подписку" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Ваши настройки оповещения сохранены" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Все" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Допущенный" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Разрешенные HTML теги: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "I-кадры разрешены только от: % s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Все категории" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "За всё время" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "и" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Подтвердить" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "подтверждено" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Подтверждённые сообщения" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Подтвердить это сообщение" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Приблизительно" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Архив" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Архивный" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "По возрастанию" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "в" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Автор" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Входить автоматически" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Среднее сообщений/день" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Ожидание подтверждения" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Ожидание проверки" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Награда" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Награды" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Изображение награды" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Или вы можете загрузить собственную картинку награды" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Пак наград" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Выберите награду" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Блог" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Просмотр анкет" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Отменить" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Категории" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Категория" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Фильтр категорий" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Категория была" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Название категории" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Изменить диапазон дат" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Изменить пароль" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Изменить аватар" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Выберите" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Выберите данные для скачивания" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Или выберите свой собственный диапазон дат" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Выберите тип поля" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "\"Чистые\" URL" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Сброс" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Очистить карту" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Закрыть" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "кластеры" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Цвет" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Комментарий" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Комментарии" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Подробности комментария" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Настройки сохранены" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Настроить" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Вы успешно подтвердили свой адрес электронной почты. Можете авторизоваться." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Вы успешно подтвердили свой адрес электронной почты! Чтобы войти в систему, нужно дождаться подтверждения администратора" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Письмо для подтверждения электронного ящика не отправлено. Вы можете запросить новое подтверждение по ссылке ниже." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Обратная связь" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Анти-спам код" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "E-mail" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Сообщение" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Ваше сообщение отправлено" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Имя" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Контактный телефон" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Отправить сообщение" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Тема сообщения" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "© 2012 Ushahidi.com" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Создать" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Создать/редактировать" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Создать новое" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Создать новый пароль" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Создать сообщение" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Достоверность" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Текущий пароль" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Другие поля" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Информация" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Дата" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "ММ/ДД/ГГГГ" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Дата и время" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "день" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Деактивировать" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Москва, Россия" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Удалить" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Удалено" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Удаленные" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Удаление отключено" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Удалить последнее" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Удалить это сообщение" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Удалить выбранное" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Удалить спам" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Пример" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Подробное описание" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "По убыванию" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Пример: Москва Сивцев Вражек 27" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Подробности" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Прямое Сообщение" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Отключено" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Отклонить" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Скачать сообщения" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Скачать" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Редактировать" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Изменить поля формы" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Редактировать сообщения" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "E-mail адрес" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Настройки почтового сервера" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Хост почтового сервера" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Пароль учетной записи e-mail" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Порт почтового сервера" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Поддержка SSL почтовым сервером" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Тип почтового сервера" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Имя пользователя учетной записи e-mail" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "ваши настройки будут связаны с этим e-mail" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Чтобы получать сообщения на электронную почту, введите ниже свой e-mail адрес." + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Некоторые серверы могут просить полный e-mail адрес" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Пароль учетной записи e-mail" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Общепринятые порты: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Например: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Например: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Включить/выключить SSL подключения" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---ПУСТО---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "в" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Ошибка!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Например" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Россия" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Внешние приложения" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Ссылка на видео" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Новостная лента" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Ваше мнение о платформе Ушахиди" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Пожалуйста, расскажите нам о том, что вы узнали, в письме на электронную почту" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Новостные ленты" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Новостная лента была" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Новость" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Название новостной ленты" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Адрес новостной RSS-ленты" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Неиспользованные поля" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Файл" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Вы файл превышает максимально допустимый размер." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Показать" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Фильтровать Сообщения" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Фильтр сообщений" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Показывать сообщения, которые содержат" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Найти" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Найти место" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Имя" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Принудительно запустить планировщик" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Забыли пароль?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Форма" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Формы" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Описание формы" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Изменить эту форму" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Форма была" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Название формы" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "От" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Полное имя" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Цвет" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Комментарии" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Метка" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Толщина черты" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Поехали!" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Хэштег" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Было" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Как помочь?" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Скрыто" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Скрыть" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Скрыть это сообщение" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Главная" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Как добавить сообщение" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Используется для идентификации вас на сайте для других пользователей." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Изображение" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Изображения" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Изображение/иконка" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Неактивные" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Входящие" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Событие" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Сообщения поблизости" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Местоположение сообщения" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Включая" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Категории" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Включить пользовательские поля" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Описание" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Дайте максимум информации" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Широта" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Местоположение" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Долгота" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Включать Личную Информацию." + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Входящее MMS" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Оценка данных" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Введите точное местоположение" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Ваша учётная запись не может быть авторизована. Пожалуйста, свяжитесь с администратором." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "В ответ на" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP адрес" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Это ваша анкета?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "запись" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "записи" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Запись" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Название записи" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Ключ" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Ключевые слова" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML файл" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Загрузить KMZ/KML файл" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML адрес" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Язык" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Последний" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Последний месяц" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Фамилия" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Последний год" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Широта" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Слои" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Другие слои" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Слои были" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Название слоя" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Адрес слоя" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Оставьте комментарий" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Меньше Информации" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Уровень" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Этот уровень был" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Имя уровня" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Ограничен" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Ссылка" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Список" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Загрузка сообщений" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Местоположение" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Местоположения" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Название населённого пункта" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Войти" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Учётная запись успешно создана. Можете авторизоваться." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Подтверждение было выслано на ваш e-mail." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Учетная запись создана. Ваша учетная запись должна быть одобрена администрацией прежде, чем Вы сможете войти." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Адрес e-mail не существует. Попробуйте другой адрес или создайте учетную запись." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Выберите провайдера вашей учетной записи" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Войти, используя" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-mail и пароль" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Регистрация" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Зарегистрироваться" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Спасибо за подписку на %1$s. Для подтверждения вашего e-mail адреса, пожалуйста перейдите по следующей ссылке: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Подтверждение регистрации" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Новый пользователь подписан в %1$s. Чтобы утвердить их регистрацию, перейдите к URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Подтверждение нового пользователя" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Ваша учетная запись пользователя %1$s подтверждена. Чтобы войти, перейдите к URL: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Учетная запись пользователя подтверждена" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Зарегистрируйтесь, чтобы использовать все возможности сайта." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Долгота" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Карта" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Пометить как прочитанное" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Пометить как непрочитанное" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Максимальный размер файла" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Содержание" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Медиа-фильтр" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Пользователи" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Настройка своего аккаунта" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Сообщение" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Сообщения" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Сообщения" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Сообщение от нечислового источника:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Мобильный" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Изменить" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "изменить дату" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "месяц" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Больше" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Больше информации" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Использует ли эта Ушахиди-карта в нескольких странах одновременно?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Вы должны подтвердить ваш e-mail адрес для доступа к ресурсу. Если вы потеряете письмо для подтверждения, то можете запросить еще одно." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Имя" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Ближайшие сообщения" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Новое" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Новости" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Новостная лента" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Источник новостей" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Новая категория" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Новый пароль" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Новое сообщение" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Следующее" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Нет" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Нет проверок для отображения." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Нет данных." + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Нет" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Уведомления" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Не подтверждён" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Не подтверждён" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Не Выбрано---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Не спам" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Не указано" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Нет сообщений" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Нет результатов" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Выкл." + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Новости по теме" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Вкл." + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Опция" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Опционально" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Опции" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Организация" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Организации" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Описание организации" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "E-mail организации" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Организация была" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Название организации" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "1-й телефон организации" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "2-й телефон организации" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Сайт организации" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Первоисточник" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Изначальное описание" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Изначальное название" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Другие Ушахиди-карты" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Исходящие" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Исходящий" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Страница" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Страницы" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Описание страницы" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Страница была " + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Название вкладки страницы" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Заголовок страницы" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Родительская категория" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Пароль" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Введите пароль еще раз" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Пароль успешно изменён. Авторизуйтесь." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Забыли пароль?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Новый пароль был отправлен на ваш e-mail" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Оставаться в системе" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Прошлый месяц" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Прошлый год" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "На рассмотрении" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "в" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Личная информация (опционально)" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Фото" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Изображения" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Изображения и видео" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "Введите название, или поставьте точку на карте" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Воспроизвести" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Имейте в виду:" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Плагины" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Сайт дополнений" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Открытая анкета" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL открытого профиля" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Предпросмотр" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Предпросмотр записи" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Предпросмотр сообщения" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Предыдущее" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Личное" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Цвет анкеты" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Анкета была сохранена" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Быстрая статистика" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Рейтинг" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Читать" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Получить" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Получить от" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Получать уведомления" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Последние сообщения" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Обновить ленту новостей" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Зарегистрированный Email" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Убрать" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Ответить" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Сообщение" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Сообщения (с карты, перечислены в хронологическом порядке)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Корреспондент" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Корреспонденты" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Дата регистрации корреспондента" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "E-mail корреспондента" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Имя корреспондента" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Корреспондент был" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP адрес корреспондента" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Фамилия корреспондента" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Уровень корреспондента" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Уровни корреспондента" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Телефон корреспондента" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Сообщения" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Обзор" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Отправить" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Сообщений от этого пользователя" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Категории" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Сообщений" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Дата" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Подробное описание" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Сообщения будет сохранены в CSV формате" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Возможности" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Найти место рядом с вами" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Имя" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Фамилия" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Уточните местоположение" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Ссылка на новость" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Отправитель (опционально)" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Загрузить фото" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Вернуться на страницу сообщений" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Выбрать город" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Спасибо, сообщение было отправлено на рассмотрение. В случае необходимости, мы обязательно свяжемся с вами." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Отправить новое сообщение " + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Время" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr ", график добавления" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Краткое название" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Ссылка на видео" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Сообщить о событии" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Описание сообщения" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Отправьте SMS на номер" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Отправьте письмо на e-mail" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Отправьте твит с хэштегом(и)" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Заполните форму" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Через внешнее приложение" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Ваше сообщение было сохранено" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Название сообщения" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Запросить больше информации" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Запросить местоположение" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Обязательно" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Требования" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Отправить повторно письмо для подтверждения" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Сброс" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Сброс всех фильтров" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Сбросить пароль" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Получить название городов выбранной страны" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Аккаунт управляется сервисом %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Вы уже имеете учетную запись CrowdmapID! Попробуйте использовать ваш CrowdmapID адрес электронной почты и пароль для входа." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Роль" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Сохранить" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Сохранен" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Сохранить и добавить новое" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Сохранить и закрыть" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Сохранить сообщение" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Расписание" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Планировщик" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "День" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Час" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Журнал планировщика" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Минута" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "День недели" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "ПОИСК" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Результаты поиска" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Защитный код" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Выбрать все" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Выбрать тип поля" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "выберите тип" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Выбрать на карте" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Выберите необходимые" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Выберите, как минимум, одну запись" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Выбрать тему" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Отправить" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Отправить Подтверждение" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Отправить" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Отправлено" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Отправлено" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Адрес сервера" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Тип сервера" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Служба" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Имя пользователя службы" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID службы пользователя" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Поделиться" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Общие данные" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Совместное использование было" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Совместные ушахиди-карты" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Карта короче" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Показать" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Показать все" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Показать сообщения" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Сообщения с %1$s до %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Сайт" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "e-mail сайта" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Адрес сайта" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Карта поменьше" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "К сожалению, у вас нет наград." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Источник информации" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Название источника" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Сортировать" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Сортировать по" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Адрес источника" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Спам" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL поддержка?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "От" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Шаг" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Отправить сообщение" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Добавлено %1$s через %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Отправить через SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Отправить SMS для" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "на вашем телефоне" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Успешно!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Успешно импортирован" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Фамилия" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Исследование" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Система" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Карта выше" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP-порт" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Темы" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Стандартная тема Ушахиди" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Настройки темы" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Это" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Сегодня" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "В этом месяце" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "На этой неделе" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "В этом году" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Это ваша анкета." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "время" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Название" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "до" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Сегодня" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "сегодня в" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Токен" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Всего сообщений" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Переведен" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Описание перевода" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Название перевода" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Перевести на" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Перевод" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Перевод был сохранен" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Доверенные" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Источник" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Твиттер" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Невозможно отправить сообщение." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Отчёты без категорий" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Непрочитанный" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Не проверено" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Обновить новостные ленты" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Отправить" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Посмотреть руководство по добавлению сообщений" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Руководство по добавлению XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Руководство по добавлению CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Файл для экспортирования" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Отправить сообщения" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Столбцы заказного поля должны иметь свой form_id присоединенный к ним, например, заказное поле Test, в форме по умолчанию, чей id = 1, будет Test-1. При импорте поля заказной формы, проверьте это" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Ниже вы можете экспортировать сообщения в БД Ушахиди" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Сообщения должны быть загружены в формате CSV или XML. " + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Когда ID события уже существует в базе данных, запись в CSV/XML файле будет проигнорирована." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Запись должна содержать, как минимум, название и дату" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Если не указана долгота и широта, расположение будет гео-кодировано с использованием Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "При импорте дополнительной информации, т.е. личной информации и-или заказных полей формы" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "По крайней мере одно из полей личной информации ( имя, фамилия, email) должно быть заполнено. Пустые строки не будут импортированы" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Ваши данные для выпадающего списка, переключателей и флажков соответствует возможностям, предоставляемым для заказного поля в вашем экземпляре" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Опции переключателя отделяет запятая, например, если вы выбрали фрукты - яблоки, манго и виноград, вы должны ввести \"яблоки,манго,виноград\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Поле дата следующего формата мм/дд/гггг, например 3 октября 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Пример CSV-записи" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,НАЗВАНИЕ_СООБЩЕНИЯ,ДАТА_СОБЫТИЯ,МЕСТОПОЛОЖЕНИЕ,ОПИСАНИЕ,КАТЕГОРИЯ,ПОДТВЕРЖДЕНИЕ,ПРОВЕРКА" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"1\",\"Нападение ситхов\",\"2010-06-10 01:06:00\",\"Набу\",\"Без договора\",\"Империя\",ДА,НЕТ
\"2\",\"Зомби\",\"2010-06-11 10:10:00\",\"Ракун сити\",\"Зомби везде\",\"Группа зачистки\",ДА,ДА" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Отправка успешно завершена" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Загрузить видео" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Пользователь" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Имя пользователя" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ушахиди-администратор" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Достоверность" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Проверено" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Проверенные сообщения" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Проверить" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Проверить это сообщение" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Версия" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "через" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Видео" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Вид" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Просмотров" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Показать всё" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Показать все новостные ленты" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Показать все сообщения" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Показать новости" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Ещё" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Публичный профиль" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Показать сообщение" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Показать сообщения" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Смотреть видео" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Виден" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Ожидание подтверждения" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Ожидание проверки" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Карта пошире" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Веб-форма" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Веб" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Вес" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Да" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Вчера" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Приборная панель" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Ваш файл" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Приблизить" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Отдалить" diff --git a/application/i18n/po/po-ru_RU/upgrade.po b/application/i18n/po/po-ru_RU/upgrade.po new file mode 100644 index 0000000000..d7fe15a883 --- /dev/null +++ b/application/i18n/po/po-ru_RU/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# sher , 2013 +# Семён Гариленко <2507496@gmail.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 09:03+0000\n" +"Last-Translator: sher \n" +"Language-Team: Russian (Russia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Неверные введенные данные. Разрешено 0 для НЕТ и 1 для ДА." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Автоматическое обновление" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Обновление доступно" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Продолжить" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Обновление" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Будет обновлена БД версии" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "на новейшую" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Нажмите \"Обновить\" и наблюдайте за выполнением действа" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Если вы хотите создать резервную копию базы данных, нажмите кнопку ниже" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Создать резервную копию базы данных перед обновлением? (Настоятельно рекомендуется!)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Обновление базы данных Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi был обновлен! Прежде чем продолжить, нужно обновить вашу базу данных до последней версии (% s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Ваша версия базы данных актуальна." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Обновление прервалось" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Ручное обновление" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Статус обновления Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Инструкция ниже, как обновить Ushahidi вручную" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Шаг 1: Скачайте последнюю версию ushahidi с http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Шаг 2: В зависимости от ОС сервера, выберите нужный канал передачи (i.e: telnet, ftp, ssh) для входа на веб сервер и полностью переместите содержимое последней версией Ushahidi. ИСКЛЮЧАЯ:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Шаг 4: Нажмите кнопку \"Продолжить\", что бы обновить необходимые таблицы." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Шаг 3: Просмотрите sql папку. Вручную выполните обновление-.sql файла, с текущей установленной версии базы данных до последнего обновления sql файла." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Для автоматического обновления, нажмите кнопку ниже" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Для автоматического обновления нажмите на кнопку ниже" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Вы в настоящий момент используете Ushahidi v%1$s с версией базы данных %2$d, работающей на %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Обновляется" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Чтобы продолжить простое обновление, серверу FTP, на котором размещен ваш вебсайт, нужна следующая информация." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP сервер :Например: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP пароль:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP логин:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "У вас установлена последняя версия Ushahidi/" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Вам не надо обновляться" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Версия базы данных: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Внимание: Версия программы в version.php и базе данных не совпадает." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Внимание: версия Базы данных в version.php и базе данных не совпадает." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "База данных:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Скачивание последней версии ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Лог файл" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Скачивание завершено. Распаковка..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Сбой скачивания" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Распаковка завершена. Копирование файлов..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Ошибка распаковки" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Копирование завершено. Обновление базы данных..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Ошибка копирования фалов" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Резервное копирование и обновление базы данных завершено" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Ошибка резервного копирования базы данных" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Обновление базы данных завершено" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Удаление временных файлов" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "Обновление завершено. Посмотрите Лог файл" diff --git a/application/i18n/po/po-sa/alerts.po b/application/i18n/po/po-sa/alerts.po new file mode 100644 index 0000000000..4c6861054e --- /dev/null +++ b/application/i18n/po/po-sa/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-sa/auth.po b/application/i18n/po/po-sa/auth.po new file mode 100644 index 0000000000..b44232837e --- /dev/null +++ b/application/i18n/po/po-sa/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-sa/bug.po b/application/i18n/po/po-sa/bug.po new file mode 100644 index 0000000000..c3f8ab1916 --- /dev/null +++ b/application/i18n/po/po-sa/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-sa/category.po b/application/i18n/po/po-sa/category.po new file mode 100644 index 0000000000..f71fc12e6d --- /dev/null +++ b/application/i18n/po/po-sa/category.po @@ -0,0 +1,92 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:05+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-sa/comments.po b/application/i18n/po/po-sa/comments.po new file mode 100644 index 0000000000..f11a29c5f7 --- /dev/null +++ b/application/i18n/po/po-sa/comments.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:23+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-sa/contact.po b/application/i18n/po/po-sa/contact.po new file mode 100644 index 0000000000..edcd5580f1 --- /dev/null +++ b/application/i18n/po/po-sa/contact.po @@ -0,0 +1,75 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:24+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-sa/core.po b/application/i18n/po/po-sa/core.po new file mode 100644 index 0000000000..a6d4fb9eea --- /dev/null +++ b/application/i18n/po/po-sa/core.po @@ -0,0 +1,156 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-sa/database.po b/application/i18n/po/po-sa/database.po new file mode 100644 index 0000000000..fbed6ceba6 --- /dev/null +++ b/application/i18n/po/po-sa/database.po @@ -0,0 +1,27 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-sa/datetime.po b/application/i18n/po/po-sa/datetime.po new file mode 100644 index 0000000000..2bb5d80678 --- /dev/null +++ b/application/i18n/po/po-sa/datetime.po @@ -0,0 +1,215 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-sa/feeds.po b/application/i18n/po/po-sa/feeds.po new file mode 100644 index 0000000000..34e4ef0a2a --- /dev/null +++ b/application/i18n/po/po-sa/feeds.po @@ -0,0 +1,52 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-sa/footer.po b/application/i18n/po/po-sa/footer.po new file mode 100644 index 0000000000..4337b866a9 --- /dev/null +++ b/application/i18n/po/po-sa/footer.po @@ -0,0 +1,20 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-sa/form.po b/application/i18n/po/po-sa/form.po new file mode 100644 index 0000000000..76123aa5da --- /dev/null +++ b/application/i18n/po/po-sa/form.po @@ -0,0 +1,120 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-sa/imap.po b/application/i18n/po/po-sa/imap.po new file mode 100644 index 0000000000..eaee2b5c3d --- /dev/null +++ b/application/i18n/po/po-sa/imap.po @@ -0,0 +1,25 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-sa/installer.po b/application/i18n/po/po-sa/installer.po new file mode 100644 index 0000000000..dcd2868197 --- /dev/null +++ b/application/i18n/po/po-sa/installer.po @@ -0,0 +1,408 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-sa/layer.po b/application/i18n/po/po-sa/layer.po new file mode 100644 index 0000000000..64bb0b6353 --- /dev/null +++ b/application/i18n/po/po-sa/layer.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-sa/libraries.po b/application/i18n/po/po-sa/libraries.po new file mode 100644 index 0000000000..f17b117374 --- /dev/null +++ b/application/i18n/po/po-sa/libraries.po @@ -0,0 +1,116 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-sa/maintenance.po b/application/i18n/po/po-sa/maintenance.po new file mode 100644 index 0000000000..05dfcb0252 --- /dev/null +++ b/application/i18n/po/po-sa/maintenance.po @@ -0,0 +1,22 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:42+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-sa/message.po b/application/i18n/po/po-sa/message.po new file mode 100644 index 0000000000..ddfda2ece9 --- /dev/null +++ b/application/i18n/po/po-sa/message.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-sa/mhi.po b/application/i18n/po/po-sa/mhi.po new file mode 100644 index 0000000000..8523541dea --- /dev/null +++ b/application/i18n/po/po-sa/mhi.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-sa/notifications.po b/application/i18n/po/po-sa/notifications.po new file mode 100644 index 0000000000..a680e8e573 --- /dev/null +++ b/application/i18n/po/po-sa/notifications.po @@ -0,0 +1,90 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-sa/page.po b/application/i18n/po/po-sa/page.po new file mode 100644 index 0000000000..1cc4982de5 --- /dev/null +++ b/application/i18n/po/po-sa/page.po @@ -0,0 +1,35 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-sa/permissions.po b/application/i18n/po/po-sa/permissions.po new file mode 100644 index 0000000000..e4731eea42 --- /dev/null +++ b/application/i18n/po/po-sa/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sa/private_message.po b/application/i18n/po/po-sa/private_message.po new file mode 100644 index 0000000000..8fd0d80a4a --- /dev/null +++ b/application/i18n/po/po-sa/private_message.po @@ -0,0 +1,45 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 21:14+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-sa/report.po b/application/i18n/po/po-sa/report.po new file mode 100644 index 0000000000..646c464126 --- /dev/null +++ b/application/i18n/po/po-sa/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-sa/reporters.po b/application/i18n/po/po-sa/reporters.po new file mode 100644 index 0000000000..19515be85b --- /dev/null +++ b/application/i18n/po/po-sa/reporters.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-sa/reports.po b/application/i18n/po/po-sa/reports.po new file mode 100644 index 0000000000..3d8258bcaa --- /dev/null +++ b/application/i18n/po/po-sa/reports.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-sa/roles.po b/application/i18n/po/po-sa/roles.po new file mode 100644 index 0000000000..be7048520c --- /dev/null +++ b/application/i18n/po/po-sa/roles.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-sa/settings.po b/application/i18n/po/po-sa/settings.po new file mode 100644 index 0000000000..81b32170e9 --- /dev/null +++ b/application/i18n/po/po-sa/settings.po @@ -0,0 +1,857 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/projects/p/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sa/sharing.po b/application/i18n/po/po-sa/sharing.po new file mode 100644 index 0000000000..252556d163 --- /dev/null +++ b/application/i18n/po/po-sa/sharing.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 07:00+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-sa/stats.po b/application/i18n/po/po-sa/stats.po new file mode 100644 index 0000000000..167dc8a471 --- /dev/null +++ b/application/i18n/po/po-sa/stats.po @@ -0,0 +1,196 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-sa/tooltips.po b/application/i18n/po/po-sa/tooltips.po new file mode 100644 index 0000000000..909cdd3522 --- /dev/null +++ b/application/i18n/po/po-sa/tooltips.po @@ -0,0 +1,582 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sa/ui_admin.po b/application/i18n/po/po-sa/ui_admin.po new file mode 100644 index 0000000000..4035eb7202 --- /dev/null +++ b/application/i18n/po/po-sa/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sa/ui_main.po b/application/i18n/po/po-sa/ui_main.po new file mode 100644 index 0000000000..dad9508627 --- /dev/null +++ b/application/i18n/po/po-sa/ui_main.po @@ -0,0 +1,3167 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2012-06-07 02:50+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-sa/upgrade.po b/application/i18n/po/po-sa/upgrade.po new file mode 100644 index 0000000000..4a6ddf9b3d --- /dev/null +++ b/application/i18n/po/po-sa/upgrade.po @@ -0,0 +1,298 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:50+0000\n" +"Language-Team: Sanskrit (http://www.transifex.com/ushahidi/ushahidi-v2/language/sa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sa\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1:2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-si/alerts.po b/application/i18n/po/po-si/alerts.po new file mode 100644 index 0000000000..fe0f2dfe64 --- /dev/null +++ b/application/i18n/po/po-si/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-si/auth.po b/application/i18n/po/po-si/auth.po new file mode 100644 index 0000000000..c40738cf37 --- /dev/null +++ b/application/i18n/po/po-si/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-si/bug.po b/application/i18n/po/po-si/bug.po new file mode 100644 index 0000000000..d0947ddd03 --- /dev/null +++ b/application/i18n/po/po-si/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-si/category.po b/application/i18n/po/po-si/category.po new file mode 100644 index 0000000000..8963bc512d --- /dev/null +++ b/application/i18n/po/po-si/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-si/comments.po b/application/i18n/po/po-si/comments.po new file mode 100644 index 0000000000..d3501786af --- /dev/null +++ b/application/i18n/po/po-si/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-si/contact.po b/application/i18n/po/po-si/contact.po new file mode 100644 index 0000000000..2402fd3542 --- /dev/null +++ b/application/i18n/po/po-si/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-si/core.po b/application/i18n/po/po-si/core.po new file mode 100644 index 0000000000..d6b6ff8c08 --- /dev/null +++ b/application/i18n/po/po-si/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-si/database.po b/application/i18n/po/po-si/database.po new file mode 100644 index 0000000000..9db01ab85a --- /dev/null +++ b/application/i18n/po/po-si/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-si/datetime.po b/application/i18n/po/po-si/datetime.po new file mode 100644 index 0000000000..1f98d41a00 --- /dev/null +++ b/application/i18n/po/po-si/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-si/feeds.po b/application/i18n/po/po-si/feeds.po new file mode 100644 index 0000000000..cf063b1252 --- /dev/null +++ b/application/i18n/po/po-si/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-si/footer.po b/application/i18n/po/po-si/footer.po new file mode 100644 index 0000000000..73a8dcf3f3 --- /dev/null +++ b/application/i18n/po/po-si/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-si/form.po b/application/i18n/po/po-si/form.po new file mode 100644 index 0000000000..eb9c253f8b --- /dev/null +++ b/application/i18n/po/po-si/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-si/imap.po b/application/i18n/po/po-si/imap.po new file mode 100644 index 0000000000..78e4c51e6b --- /dev/null +++ b/application/i18n/po/po-si/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:55+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-si/installer.po b/application/i18n/po/po-si/installer.po new file mode 100644 index 0000000000..70d59ddf20 --- /dev/null +++ b/application/i18n/po/po-si/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-si/layer.po b/application/i18n/po/po-si/layer.po new file mode 100644 index 0000000000..bd7c5e1a96 --- /dev/null +++ b/application/i18n/po/po-si/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-si/libraries.po b/application/i18n/po/po-si/libraries.po new file mode 100644 index 0000000000..4bafef271f --- /dev/null +++ b/application/i18n/po/po-si/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-si/maintenance.po b/application/i18n/po/po-si/maintenance.po new file mode 100644 index 0000000000..65f062bbe2 --- /dev/null +++ b/application/i18n/po/po-si/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-si/message.po b/application/i18n/po/po-si/message.po new file mode 100644 index 0000000000..cbc1f678a8 --- /dev/null +++ b/application/i18n/po/po-si/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-si/mhi.po b/application/i18n/po/po-si/mhi.po new file mode 100644 index 0000000000..73ea960b67 --- /dev/null +++ b/application/i18n/po/po-si/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-si/notifications.po b/application/i18n/po/po-si/notifications.po new file mode 100644 index 0000000000..61dd2c98c1 --- /dev/null +++ b/application/i18n/po/po-si/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-si/page.po b/application/i18n/po/po-si/page.po new file mode 100644 index 0000000000..d660116830 --- /dev/null +++ b/application/i18n/po/po-si/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-si/permissions.po b/application/i18n/po/po-si/permissions.po new file mode 100644 index 0000000000..01d19f0817 --- /dev/null +++ b/application/i18n/po/po-si/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-si/private_message.po b/application/i18n/po/po-si/private_message.po new file mode 100644 index 0000000000..2b4199fdd1 --- /dev/null +++ b/application/i18n/po/po-si/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-si/report.po b/application/i18n/po/po-si/report.po new file mode 100644 index 0000000000..38c80d4b55 --- /dev/null +++ b/application/i18n/po/po-si/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-si/reporters.po b/application/i18n/po/po-si/reporters.po new file mode 100644 index 0000000000..0779a8d027 --- /dev/null +++ b/application/i18n/po/po-si/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-si/reports.po b/application/i18n/po/po-si/reports.po new file mode 100644 index 0000000000..f81157b1da --- /dev/null +++ b/application/i18n/po/po-si/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-si/roles.po b/application/i18n/po/po-si/roles.po new file mode 100644 index 0000000000..487129cb81 --- /dev/null +++ b/application/i18n/po/po-si/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-si/settings.po b/application/i18n/po/po-si/settings.po new file mode 100644 index 0000000000..9903efe14e --- /dev/null +++ b/application/i18n/po/po-si/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Sinhala (http://www.transifex.com/projects/p/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-si/sharing.po b/application/i18n/po/po-si/sharing.po new file mode 100644 index 0000000000..11f271a48a --- /dev/null +++ b/application/i18n/po/po-si/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-si/stats.po b/application/i18n/po/po-si/stats.po new file mode 100644 index 0000000000..5d7f4b4d08 --- /dev/null +++ b/application/i18n/po/po-si/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-si/tooltips.po b/application/i18n/po/po-si/tooltips.po new file mode 100644 index 0000000000..b15ce33806 --- /dev/null +++ b/application/i18n/po/po-si/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-si/ui_admin.po b/application/i18n/po/po-si/ui_admin.po new file mode 100644 index 0000000000..3416156d27 --- /dev/null +++ b/application/i18n/po/po-si/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-si/ui_main.po b/application/i18n/po/po-si/ui_main.po new file mode 100644 index 0000000000..9f96e81a6f --- /dev/null +++ b/application/i18n/po/po-si/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-si/upgrade.po b/application/i18n/po/po-si/upgrade.po new file mode 100644 index 0000000000..23af616ba5 --- /dev/null +++ b/application/i18n/po/po-si/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-05-27 15:56+0000\n" +"Last-Translator: heather leson \n" +"Language-Team: Sinhala (http://www.transifex.com/ushahidi/ushahidi-v2/language/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-sk/alerts.po b/application/i18n/po/po-sk/alerts.po new file mode 100644 index 0000000000..35eb98be74 --- /dev/null +++ b/application/i18n/po/po-sk/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Pole \"E-mail\" nezobrazuje platnú e-mailovú adresu." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Táto e-mailová adresa už bola pre obdržiavanie záznamov o miestach registrovaná." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Pole \"E-mail\" musí obsahovať aspoň 4 a nie viac ako 64 znakov." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole \"E-mail\" je povinné ak je políčko zaškrknuté." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Toto umiestnenie spadá len pod jednu krajinu. Prosím uistite sa, že " + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Na mape ste zvolili nesprávne miesto." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Na mape ste zvolili nesprávne miesto." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Na mape ste zvolili nesprávne miesto." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Na mape ste zvolili nesprávne miesto." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Pole \"Mobilný telefón\" pravdepodobne neobsahuje správny počet číslic." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Tento mobilný telefón už bol pre obdržiavanie záznamov o miestach registrovaný." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Pole \"Mobilný telefón\" pravdepodobne neobsahuje platné číslo. Prosím zadajte číslo začínajúce kódom krajiny." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Musíte zadať buď svoje číslo mobilného telefónu alebo e-mailovú adresu." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Pole \"Mobilný telefón\" je povinné ak je políčko zaškrknuté." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Nemáte na mape nastavený platný rádius." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Na mape nemáte nastavený rádius." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Nemáte nastaveného príjemcu pre upozornenia." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Prihlásili ste sa na odber v nasledujúcich kategóriach." + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Tento kód už bol overený." + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Overovací kód nebol nájdený! Prosím potvrďte, či máte správnu URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Váš kód bol overený úspešne. Odteraz budete dostávať upozornenia o udalostiach tak, ako sa udejú." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Pre potvrdenie vášej požiadavky na upozornenia choďte prosím sem" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Pre vytvorenie viac upozornení sa prosím vráťte na stránku upozornení." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Vaša požiadavka na e-mailové upozornenia bola vytvorená a overovacia správa bola poslaná na" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Prosím, kód potvrdzovací E-mail, ktorý ste obdržali zadajte nižšie:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Požiadavka na upozornenie e-mailom NEBOLA uložená!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Požiadavka na upozornenie e-mailom BOLA uložená!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Systém nie je schopný dokončiť vašu potvrdzovaciu požiadavku!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Požiadavka na upozornenie mobilom bola vytvorená a overovacia správa bola odoslaná na" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Prosím vložte SMS potvrdzovací kód, ktorý ste obdržali na mobilné číslo nižšie:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Vaša požiadavka na upozornenie na mobil NEBOLA uložená!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Vaša požiadavka na upozornenie na mobil BOLA uložená!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Toto umiestnenie nie je správne nastavené pre dokončenie upozornenia" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Tento e-mail ste dostali pretože odoberáte upozornenia. Ak si do budúcna neprajete dostávať tieto upozornenia, choďte sem" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Odteraz nebudete dostávať upozornenia od" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Nie sme schopní vás odhlásiť. Prosím potvrďte, či máte správnu URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "upozornenia - overenie" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Pokiaľ nepotvrdíte svoju požiadavku, upozornenia na toto umiestnenie nebudete dostávať." diff --git a/application/i18n/po/po-sk/auth.po b/application/i18n/po/po-sk/auth.po new file mode 100644 index 0000000000..7b33e98024 --- /dev/null +++ b/application/i18n/po/po-sk/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Zadali ste neplatný e-mail." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Prepáčte, ale táto e-mailová adresa už je zaregistrovaná." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Pole \"E-mail\" musí obsahovať aspoň 4 a nie viac ako 64 znakov." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Pole \"E-mail\" je povinné." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Pole \"Meno\" musí mať aspoň 3 no nie viac ako 100 znakov." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Pole \"Meno\" je povinné." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Uživateľské meno obsahuje nepovolené znaky." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Heslo musí mať najmenej 8 znakov." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Prosím skontrolujte, či ste zadali správny e-mail a heslo." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Prosím, zadajte v obidvoch poliach rovnaké heslo." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Pole \"Heslo\" je povinné." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Heslo môže obsahovať iba abecedné znaky, znaky # a @, čísla, podčiarovníky a pomlčky." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Zadali ste nesprávne heslo. Prosím skúste znovu." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Heslo musí mať najmenej 8 znakov." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Prosím skontrolujte, či ste zadali správny e-mail a heslo." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Prosím, zadajte v obidvoch poliach rovnaké heslo." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Pole \"Heslo\" je povinné." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Heslo môže obsahovať iba abecedné znaky, znaky # a @, čísla, podčiarovníky a pomlčky." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Počas prihlasovania sa vyskytla chyba." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Heslo musí mať najmenej 8 znakov." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Prosím skontrolujte, či ste zadali správny e-mail a heslo." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Prosím, zadajte v obidvoch poliach rovnaké heslo." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Pole \"Heslo\" je povinné." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Overovací server je nedostupný. Prosím skúste to neskôr." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Heslo môže obsahovať iba abecedné znaky, znaky # a @, čísla, podčiarovníky a pomlčky." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Pole \"Potvrdenie hesla\" sa musí zhodovať s poľom \"Heslo\"." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Zadali ste neplatný e-mail." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Prepáčte, nemáme vašu e-mailovú adresu" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Pole \"E-mail\" je povinné." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Len superadmin môže upravovať superadmina, alebo povýšiť uživateľa na administrátora." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Neplatný formát úlohy." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Pole \"Úloha\" musí mať najmenej 5 no nie viac ako 30 znakov." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Musíte zadať aspoň jednu úlohu." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Musíte vybrať buď administrátorskú, alebo uživateľskú úlohu." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Symbol zabudnuté heslo je nesprávny." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Symbol zabudnuté heslo bol povinný" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Úloha uživateľa Admin nemôže byť upravená." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Pole \"URL pre verejný profil\" musí obsahovať len čísla, alebo písmená." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Prepáčte, tento verejný profil sa už používa." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Pole \"URL pre verejný profil\" musí mať najmenej 2 no nie viac než 100 znakov." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Prosím skontrolujte, či ste zadali správnu URL pre verejný profil." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Pole \"URL pre verejný profil\" je povinné." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Úloha pre super administrátora nemôže byť upravená." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Prevdepodobnosť CSRF útoku. Naozaj ste chceli vytvoriť/upraviť uživateľa?" diff --git a/application/i18n/po/po-sk/bug.po b/application/i18n/po/po-sk/bug.po new file mode 100644 index 0000000000..b6072e1609 --- /dev/null +++ b/application/i18n/po/po-sk/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Prosím zadajte platný bezpečnostný kód." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Prosím zadajte bezpečnostný kód." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Pole \"E-mail\" nezobrazuje platnú e-mailovú adresu?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Pole \"E-mail\" musí obsahovať aspoň 4 a nie viac ako 64 znakov." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole \"E-mail\" je povinné ak je políčko zaškrknuté." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Pole \"Chyba\" je povinné." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Pole \"Predmet\" musí mať najmenej 3 znaky." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Pole \"Predmet\" je povinné." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Pole \"Meno\" musí mať najmenej 3 znaky." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Pole \"Meno\" je povinné." diff --git a/application/i18n/po/po-sk/category.po b/application/i18n/po/po-sk/category.po new file mode 100644 index 0000000000..e16be6834a --- /dev/null +++ b/application/i18n/po/po-sk/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Jakub Mičuch , 2013 +# Juraj Oravec , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-12 04:19+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Pole s farbou musí mať 6 znakov." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Pole farba je povinná položka." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Pole popis je povinná položka." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Uistite sa, že obrázky majú menej ako 50 KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Nesprávny formát obrázku. Povolené formáty sú .JPG, .PNG a .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Pole \"Obrázok\" nebude zobrazené, ak bude obsahovať neplatný súbor." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Pole \"Názov\" musí mať najmenej 3 no nie viac než 80 znakov." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Pole názov je povinná položka." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Nemôžte rozdelovať kategórie s podkategóriami." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Základná kategória neexistuje." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Pole \"Základná kategória\" musí obsahovať iba číslice." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Základná kategória nemôže byť špeciálna kategória." + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Pole \"Základná kategória\" je povinné." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kategória a základná kategória nesmie byť rovnaká." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Špeciálne kategórie nesmú mať podkategórie." diff --git a/application/i18n/po/po-sk/comments.po b/application/i18n/po/po-sk/comments.po new file mode 100644 index 0000000000..7a38047484 --- /dev/null +++ b/application/i18n/po/po-sk/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-12 04:22+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Prosím zadajte platný bezpečnostný kód." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Prosím zadajte bezpečnostný kód." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Vložili ste nesprávny bezpečnostný kód." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Pole \"Meno\" musí mať najmenej 3 znaky." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Pole \"Meno\" je povinné." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Pole \"Komentáre\" je povinné." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Pole \"E-mail\" nezobrazuje platnú e-mailovú adresu." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Pole \"E-mail\" musí obsahovať aspoň 4 a nie viac ako 64 znakov." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole \"E-mail\" je povinné ak je políčko zaškrknuté." diff --git a/application/i18n/po/po-sk/contact.po b/application/i18n/po/po-sk/contact.po new file mode 100644 index 0000000000..93c21770f4 --- /dev/null +++ b/application/i18n/po/po-sk/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-12 04:23+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Prosím zadajte platný bezpečnostný kód." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Prosím zadajte platný bezpečnostný kód." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Prosím zadajte bezpečnostný kód." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Pole \"E-mail\" nezobrazuje platnú e-mailovú adresu." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Pole \"E-mail\" musí obsahovať aspoň 4 a nie viac ako 64 znakov." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole \"E-mail\" je povinné ak je políčko zaškrknuté." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Pole \"Správa\" je povinné." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Pole \"Meno\" musí mať najmenej 3 znaky." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Pole \"Meno\" je povinné." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Pole \"Predmet\" musí mať najmenej 3 znaky." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Pole \"Predmet\" je povinné." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Pri posielaní správy sa vyskytla chyba." diff --git a/application/i18n/po/po-sk/core.po b/application/i18n/po/po-sk/core.po new file mode 100644 index 0000000000..d6b8915eea --- /dev/null +++ b/application/i18n/po/po-sk/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-11-14 01:42+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "konfiguračný súbor" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "radič" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "ovládač" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s ovládač pre %s knižnicu musí implementovať %s prepojenie." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s ovládač pre %s knižnicu nenájdený." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Môžete ísť na úvodnú stránku alebo skúste znova." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Nemožné dokončiť požiadavku" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "pomocník" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Požiadavka typ súboru, .%s, nie je povolená vo vašom konfiguračnom súbore." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Neplatná metóda %s s názvom %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "%s vlastnosť neexistuje v triede %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "knižnica" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Výpis adresára nie je zapisovateľný: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "model" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi nebolo schopné určiť radič pre spracovanie tejto požiadavky: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Prosím nastavte predvolenú trasu v config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Stránka, ktorú požadujete , %s, nemôže byť nájdená." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Nahlásiť tento problém Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Požiadavka %s, %s, nemôže byť nájdená." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Sledovať zásobník" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "Zobraziť" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-sk/database.po b/application/i18n/po/po-sk/database.po new file mode 100644 index 0000000000..b102ae46fe --- /dev/null +++ b/application/i18n/po/po-sk/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Juraj Oravec , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-13 22:11+0000\n" +"Last-Translator: Juraj Oravec \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Chyba databázy: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabuľka \"%s\" nebola v databáze nájdená. Uistite sa, že používate najnovšiu verziu databáze tejto verzie Ushahidi." diff --git a/application/i18n/po/po-sk/datetime.po b/application/i18n/po/po-sk/datetime.po new file mode 100644 index 0000000000..b4adfb2e6e --- /dev/null +++ b/application/i18n/po/po-sk/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-12 04:29+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Pia" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Piatok" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Pon" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Pondelok" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sob" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sobota" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Ned" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Nedeľa" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Štv" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Štvrtok" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Uto" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Utorok" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Str" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Streda" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Január" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Február" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Marec" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Apríl" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Máj" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Máj" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jún" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Jún" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Júl" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Júl" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "August" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Október" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "December" diff --git a/application/i18n/po/po-sk/feeds.po b/application/i18n/po/po-sk/feeds.po new file mode 100644 index 0000000000..6c41a8099e --- /dev/null +++ b/application/i18n/po/po-sk/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Juraj Oravec , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-13 21:17+0000\n" +"Last-Translator: Juraj Oravec \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DÁTUM" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Názov informačného kanála musí mať aspoň 3 a nie viac ako 70 znakov." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Vložte názov informačného kanála." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Vložte URL informačného kanála" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Prosím, vložte platnú adresu URL, napr. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ZDROJ" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Názov" diff --git a/application/i18n/po/po-sk/footer.po b/application/i18n/po/po-sk/footer.po new file mode 100644 index 0000000000..141500e376 --- /dev/null +++ b/application/i18n/po/po-sk/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Juraj Oravec , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-13 21:11+0000\n" +"Last-Translator: Juraj Oravec \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl nie je v systéme nainštalované" diff --git a/application/i18n/po/po-sk/form.po b/application/i18n/po/po-sk/form.po new file mode 100644 index 0000000000..6a11cee5c7 --- /dev/null +++ b/application/i18n/po/po-sk/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-14 02:32+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Pôvodná hodnota, ktorú ste zadali do poľa je neplatná." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Názov poľa musí mať najmenej 3 no nie viac ako 200 znakov." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Prosím vložte hodnotu od 0 do 50 pre nastavenie výšky poľa." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Zadali ste nesprávnu hodnotu pre dátum poľa." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Prosím zvoľte Áno alebo Nie pre dátum poľa." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Názov poľa musí mať najmenej 3 no nie viac ako 100 znakov." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Prosím zadajte názov poľa." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Názov poľa, ktorý ste zadali už v tomto formulári existuje, zadajte prosím iný." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Zadali ste nesprávnu hodnotu pre povinné pole." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Prosím zvoľte Áno alebo Nie pre povinné pole." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Prosím zvošte platný typ poľa." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Prosím zvošte typ poľa." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Prosím zadajte hodnotu od 0 do 300 pre šírku poľa." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Prosím zadajte popis formulára." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Pôvodný formulár nemôže byť odstránený." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Prosím zvoľte, do ktorého formulára bude pridané toto pole." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Prosím zvoľte, do ktorého formulára bude pridané toto pole." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Názov formulára musí mať najmenej 3 no nie viac ako 100 znakov." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Prosím zadajte názov formulára." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Formulár s týmto názvom už existuje, prosím zvoľte iný." diff --git a/application/i18n/po/po-sk/imap.po b/application/i18n/po/po-sk/imap.po new file mode 100644 index 0000000000..a9b34fd806 --- /dev/null +++ b/application/i18n/po/po-sk/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-14 02:13+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Nemôžem otvoriť IMAP stream." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "E-mail služba nie je podporovaná." diff --git a/application/i18n/po/po-sk/installer.po b/application/i18n/po/po-sk/installer.po new file mode 100644 index 0000000000..d73b55c937 --- /dev/null +++ b/application/i18n/po/po-sk/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-sk/layer.po b/application/i18n/po/po-sk/layer.po new file mode 100644 index 0000000000..f5ae9a634d --- /dev/null +++ b/application/i18n/po/po-sk/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-sk/libraries.po b/application/i18n/po/po-sk/libraries.po new file mode 100644 index 0000000000..3f753cfb24 --- /dev/null +++ b/application/i18n/po/po-sk/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-sk/maintenance.po b/application/i18n/po/po-sk/maintenance.po new file mode 100644 index 0000000000..8979603bea --- /dev/null +++ b/application/i18n/po/po-sk/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Juraj Oravec , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-13 22:14+0000\n" +"Last-Translator: Juraj Oravec \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Je nám ľúto, ale naše stránky sú momentálne nefunkčné z dôvodu údržby. Prosím, skúste to znovu o pár minút." diff --git a/application/i18n/po/po-sk/message.po b/application/i18n/po/po-sk/message.po new file mode 100644 index 0000000000..7a114f5adf --- /dev/null +++ b/application/i18n/po/po-sk/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-14 02:03+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Prosím zadajte platný bezpečnostný kód." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Prosím zadajte bezpečnostný kód." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Pole \"E-mail\" nezobrazuje platnú e-mailovú adresu." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Pole \"E-mail\" musí obsahovať aspoň 4 a nie viac ako 64 znakov." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Pole \"E-mail\" je povinné ak je políčko zaškrknuté." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Pole \"Komentáre\" je povinné." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Pole \"Meno\" musí mať najmenej 3 znaky." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Pole \"Meno\" je povinné." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Pole telefón je neplatné." diff --git a/application/i18n/po/po-sk/mhi.po b/application/i18n/po/po-sk/mhi.po new file mode 100644 index 0000000000..1d641dbd1c --- /dev/null +++ b/application/i18n/po/po-sk/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-sk/notifications.po b/application/i18n/po/po-sk/notifications.po new file mode 100644 index 0000000000..bb8ca9a10d --- /dev/null +++ b/application/i18n/po/po-sk/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-14 02:08+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Správa bola odoslaná z vašej webstránky." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Prihlásenie administrátora" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Na vašej webstránke bol pridaný nový komentár v reakcii na:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Nový komentár" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Nová e-mailová správa bola pridaná na vašu webstránku." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nová e-mail správa" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Nová udalosť bola pridaná na vašu webstránku." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Nová udalosť" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Nová textová správa bola pridaná na vašu webstránku." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nová textová správa" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Obdržali ste nové upozornenie" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Nové upozornenie!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Obdržali ste novú súkromnú správu" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nová súkromná správa" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Pre odpoveď choďte prosím do:" diff --git a/application/i18n/po/po-sk/page.po b/application/i18n/po/po-sk/page.po new file mode 100644 index 0000000000..5d2c5437d3 --- /dev/null +++ b/application/i18n/po/po-sk/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-14 02:10+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Prosím zadajte názov stránky." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Názov stránky musí mať najmenej 3 no nie viac ako 150 znakov." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Zadajte prosím názov záložky stránky." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Zadajte prosím popis stránky." diff --git a/application/i18n/po/po-sk/permissions.po b/application/i18n/po/po-sk/permissions.po new file mode 100644 index 0000000000..b00d86e192 --- /dev/null +++ b/application/i18n/po/po-sk/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sk/private_message.po b/application/i18n/po/po-sk/private_message.po new file mode 100644 index 0000000000..eca2efd29a --- /dev/null +++ b/application/i18n/po/po-sk/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-12 04:32+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Základné ID musí byť číslica" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Pole \"Do\" je povinné" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Použivateľ, ktorému sa snažíte poslať správu, neexistuje" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Pole \"Predmet\" je povinné." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Predmet musí mať medzi 3 a 150 znakov" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Pole \"Správa\" je povinné." diff --git a/application/i18n/po/po-sk/report.po b/application/i18n/po/po-sk/report.po new file mode 100644 index 0000000000..899df73697 --- /dev/null +++ b/application/i18n/po/po-sk/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-11-14 02:10+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Chyba!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Toto umiestnenie spadá len pod jednu krajinu. Prosím uistite sa, že " + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-sk/reporters.po b/application/i18n/po/po-sk/reporters.po new file mode 100644 index 0000000000..d96df1d447 --- /dev/null +++ b/application/i18n/po/po-sk/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-sk/reports.po b/application/i18n/po/po-sk/reports.po new file mode 100644 index 0000000000..5314a66761 --- /dev/null +++ b/application/i18n/po/po-sk/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-sk/roles.po b/application/i18n/po/po-sk/roles.po new file mode 100644 index 0000000000..1c035aff1f --- /dev/null +++ b/application/i18n/po/po-sk/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-sk/settings.po b/application/i18n/po/po-sk/settings.po new file mode 100644 index 0000000000..e0429aff62 --- /dev/null +++ b/application/i18n/po/po-sk/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sk/sharing.po b/application/i18n/po/po-sk/sharing.po new file mode 100644 index 0000000000..68a21ed240 --- /dev/null +++ b/application/i18n/po/po-sk/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-sk/stats.po b/application/i18n/po/po-sk/stats.po new file mode 100644 index 0000000000..394a84061d --- /dev/null +++ b/application/i18n/po/po-sk/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-14 03:03+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Schválené" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategórie" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Dosah kategórie" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Táto tabuľka vám dáva lineárne zobrazenie správ podľa kategórií v priebehu času. Prejdite zľava doprava aby ste mohli vidieť porovnávací prehľad o rôznych kategóriách. Prejdite myšou ponad graf pre viac informácií." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Zvoliť interval dátumov." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Krajiny" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Krajina" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Členenie krajín" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Jedná sa o časť štatistík a čoskoro budú obsahovať všeobecný opis. V túto chvíľu, prechádzajte okolo pomocou podkategórií odkazmi uvedenými vyššie." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Chyba" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Slovník" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Sumár pozretí" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Zobrazenie stránky" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Celkový počet stránok, ktoré hostia otvorili na vašej webstránke" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Udalosti" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Kategórie udalostí" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Štatistiky udalostí" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Status udalostí" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Udalosti Punchcard" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Štatistiky udalostí" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Štatistiky nie sú nastavené" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Mesiac" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Mesiace" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Mesiacov" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Všetko" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Neoverené" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Jedineční hostia" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Neoverené" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Overené" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Sumár hostí" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Návštevy" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-sk/tooltips.po b/application/i18n/po/po-sk/tooltips.po new file mode 100644 index 0000000000..0ff5074f01 --- /dev/null +++ b/application/i18n/po/po-sk/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sk/ui_admin.po b/application/i18n/po/po-sk/ui_admin.po new file mode 100644 index 0000000000..3d7f8e7637 --- /dev/null +++ b/application/i18n/po/po-sk/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Jakub Mičuch , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-11-14 07:05+0000\n" +"Last-Translator: Jakub Mičuch \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Prístup bol odmietnutý. Buď nie sú platné vaše poverenia, alebo vaša žiadosť bola zamietnutá." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Úroveň prístupu" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Opatrenia" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Pridať do kategórie" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "Pridané" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Pridané/Upravené" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Prídavky" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Admin" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Upozornenia" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Upozornenia prijaté" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonymné" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Hocikto" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Hocikde" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API zablokované" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API výpisy" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API nastavenia" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Odblokovať" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Odblokovať všetko" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "overené" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Automatické overenie" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Manuálne overenie" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Archivované" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Ste si istý, že chcete" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Ste si istý, že chcete odstrániť túto položku?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Ste si istý, že chcete odstrániť túto fotku?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Ste si istý, že chcete prepnúť formulár?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Priradiť" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Priradenia" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Priradiť znak" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "E-mail autora" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Späť" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Zablokovanie IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Medzi časmi" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Bloky" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Telo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Zrušiť" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategórie" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Chyba pri zobrazení grafu" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Prosím uistite sa, že vaša správa je platná." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Prosím uistite sa, že číslo je platné." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Prosím skontrolujte si nastavenia SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Overenie detailov" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Overenia" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Mestá načítané" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kód" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Verzia kódu je neaktuálna" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Farba" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Komentáre" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Váš potvrdzovací kód upozornení je:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Uživateľ bol" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Počítať" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Krajina nenájdená" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "vytvorené/zmenené" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Vytvoriť udalosť" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritický upgrade" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Momentálne aktívny" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Momentálne neaktívny" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Nemáte dostatočné oprávnenia pre úpravu nasledujúcich polí." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Denne" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Palubovka" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "databáza" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Dátum a čas" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dni v týždni" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB verzia nie je aktuálna" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "vymazané" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Vymazať" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Vymazať znak" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Popis" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Zablokované" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Začiatok oddelovača" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Koniec oddelovača" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Stiahnuť udalosti" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "UPRAVENÉ" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Upravené" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Upraviť" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Upraviť výpis" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "E-mail" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Kolektívny celok" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Knižnica IMAP PHP nie je nainštalovaná" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Chyba" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Chyba, nie je možné uverejniť incident" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Každých šesť hodín" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Každých dvanásť hodín" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimentálny" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Spätná väzba" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Zoznam rozhodnutí" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Pôvodná hodnota" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Typ dát" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Značky" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Číselná" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Ľubovoľný text" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Výška (v riadkoch)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Skryté pole" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maximálna dĺžka znakov" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sk/ui_main.po b/application/i18n/po/po-sk/ui_main.po new file mode 100644 index 0000000000..195ee4338d --- /dev/null +++ b/application/i18n/po/po-sk/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Jakub Mičuch , 2013 +# Juraj Oravec , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "O nás" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Prístup" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Obmedzenie prístupu" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Názov účtu" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Opatrenia" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Túto akciu nie je možné vrátiť späť. Naozaj chcete pokračovať?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivovať" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktívne" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Pridať" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Pridal" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Ďalšie informácie" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Ďalšie udalosti" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Pridať/Upraviť" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Pridať pole" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Pridať jazyk" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Pridať nový" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Pridať novú kategóriu" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Pridať preklad" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administrácia" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Posielanie noviniek" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Poslať upozornenie, keď sa objaví v okolí tejto oblasti" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Uložiť" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "E-mailová adresa:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "vložte emailovú adresu" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "vložte číslo mobilného telefónu spolu s medzinárodnou predvoľbou" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Posielanie noviniek" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Upozornenie bolo" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobilný telefón:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Alebo umiestnite bod na mape nižšie a my vás upozorníme ak bude pridaná udalosť v okruhu 20 kilometrov od vášho bodu." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Pokiaľ nemôžete nájsť vašu adresu, označte ju na mape špendlíkom." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS kanály (skopíruje adresu)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Vyberte mesto" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Krok 1: Vyberte vaše mesto a polohu:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Krok 2: Poslať upozornenia môjmu:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Krok 3 (Voliteľný): Vyberte kategórie" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Potvrdiť predchádzajúcu požiadavku na upozornenie" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Nastavenie posielania upozornení bolo uložené!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Všetky" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Povolené" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Všetky kategórie" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Kedykoľvek" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "a" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Schváliť" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Schválené" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Schválené udalosti" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Schváliť túto udalosť" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Približný" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "archív" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "archivované" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Vzostupne" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "pri" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Automatická kontrola" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Priemer správ za deň" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "K schváleniu" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "K overeniu" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Značka" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Značky" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Obrázok značky" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Alebo si môžete miesto toho nahrať vlastný obrázok značky." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Balíček značiek" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Vybrať značku" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Prehliadať profily" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Zrušiť" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategórie" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategória" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filter kategórie" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategória bola" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Názov kategórie" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Zmena časového obdobia" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Zmeniť heslo" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Zmeniť môj obrázok" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Vybrať" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Vybrať dáta na nahranie" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Alebo si zvoľte svoje vlastné časové obdobie" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Vyberte typ poľa" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Čisté URL adresy" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Vyčistiť" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Vyčistiť mapu" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Zavrieť" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "zhluky" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Farba" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Komentár" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Komentáre" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Podrobnosti komentára" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Vaše nastavenia boli uložené!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Nastaviť" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "E-mailová adresa bola úspešne potvrdená! Prosím prihláste sa nižšie." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Potvrdenie e-mailu zlyhalo! Môžete požiadať o nové potvrdenie nižšie." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontaktujte nás" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Bezpečnostný kód" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Vaša e-mailová adresa" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Správa" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Vaša správa bola odoslaná!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Vaše meno" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Vaše telefónne číslo" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Poslať správu" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Predmet správy" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Vlastnícke práva ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Vytvoriť" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Vytvoriť/Upraviť" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Vytvoriť nový" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Vytvoriť nové heslo" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Vytvoriť udalosť" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Dôveryhodnosť" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Aktuálne heslo" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Vlastné polia" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informácie" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Dátum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/rrrr)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Dátum a čas" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "deň" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deaktivovať" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Vymazať" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Vymazané" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Odstráni" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Vymazať zakázané" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Vymazať posledný" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Vymazať túto udalosť" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Vymazať zvolené" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Vymazať spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Popis" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Zostupne" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Príklad: Roh ulice Helenskej a Bajzovej, Považská Bystrica" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detaily" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Priama udalosť" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Zakázané" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Neoverené" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Stiahnuť udalosti" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Stiahnuť" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Upraviť" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Upraviť formu poľa" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Upraviť udalosť" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "E-mailová adresa" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Nastavenia e-mailového servru" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Hosting e-mailového servru" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Heslo e-mailového servru" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port e-mailového servru" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Podpora SSL e-mailového servru" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Typ e-mailového servru" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Prihlasovacie meno e-mailového servru" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "tak vaše nastavenia musia byť prepojené s touto e-mailovou adresou" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Aby bolo možné príjmať udalosti e-mailom, prosím vložte nastavenia vašeho e-mailového účtu nižšie. Prosím vezmite na vedomie, že e-maily budú prichádzať na" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Niektoré servry požadujú kompletnú e-mailovú adresu" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Heslo k e-mailovému účtu" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Spoločné porty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Príklady: mail.vasastranka.sk, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Príklady: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Povoliť alebo zakázať SSL pripojenie" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---PRÁZDNY---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "do" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Chyba!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Príklad" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Externé aplikácie" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Externý video link" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Väzba" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Poskytnúť spätnú väzbu" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Väzby" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Väzba bola" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Položky väzby" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Názov väzby" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL väzby" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Nepoužitá väzba" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Súbor" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Váš súbor presiahol maximálnu veľkosť." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtre" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filter udalostí" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filter udalostí podľa" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filter udalostí, ktorý obsahuje" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Nájsť" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Nájsť umiestnenie" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Krstné meno" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Zabudli ste heslo?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulár" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formuláre" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Popis formulára" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Upraviť tento formulár" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Formulár bol" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Názov formulára" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Z" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Celé meno" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoPoloha dostupná" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Farba" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Komentáre" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Štítok" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Sila úsečky" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Choď" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Bolo" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Ako pomôcť" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Skrytý" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Skryť" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "skryť túto správu" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Domov" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Ako hlásiť udalosť" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Použité na indentifikáciu medzi ostatnými uživateľmi stránky" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Obrázok" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Obrázky" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Obrázok/Ikona" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Neaktívny" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Prijatá pošta" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Udalosť" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Blízka udalosť" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Poloha udalosti" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "obsahuje" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Obsahuje kategórie" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Obsahuje vlastné polia" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Obsahuje popis" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Obsahuje toľko detailov, koľko je možné" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Zahrňuje zemepisnú šírku" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Zahrňuje informáciu o polohe" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Zahrňuje zemepisnú dĺžku" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Obsahuje osobné informácie" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Prichádzajúce média" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Vyhodnotenie informácií" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Zadajte svoju presnú polohu" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Váš účet nemá dostačujúce oprávnenia na úplné prihlásenie. Prosím, kontaktujte administrátora." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "V reakcií na" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Adresa" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Je toto váš profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "položka" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "položky" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "položka_detaily" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Názov položky" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Kľúč" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Kľúčové slová" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML súbor" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Nahrať KMZ/KML súbor" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Jazyk" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Posledný" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Posledný mesiac" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Priezvisko" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Minulý rok" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Zemepisná šírka" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Vrstvy" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Ostatné vrstvy" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Vrstva bola" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Názov vrstvy" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL vrstvy" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Nechajte odkaz" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Menej informácií" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Úroveň" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Táto úroveň bola" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Názov úrovne" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Obmedzený" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Odkaz" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Zoznam" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Načítavanie udalostí" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Poloha" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Polohy" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Mesto, Kraj a/alebo Okres" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Prihlásiť" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Účet bol vytvorený. Môžete sa prihlásiť." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Potvrdenie bolo odoslané na váš e-mail." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-mailová adresa neexistuje. Skúste zadať inú adresu, alebo vytvorte iný účet." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Prosím, kliknite na účet poskytovateľa" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Prihlásiť s" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-mail a heslo" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Zaregistrovať" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Vytvoriť účet" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Potvrdenie registrácie" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Vytvorte si účet, aby ste mohli využívať viacej funkcií." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Zemepisná dĺžka" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Označiť ako prečítané" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Označiť ako neprečítané" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximálna veľkosť súboru" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Médiá" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filter médií" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Členovia" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Spravovať účet" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Správa" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Správy" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detaily správy" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Správa z nečíselného zdroja:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Upraviť" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Dátum úpravy" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "mesiac" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Viac" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Viac informácií" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Pre prístup musíte potvrdiť e-mailovú adresu. Ak ste stratili potvrdzovací e-mail, môžte požiadať o zaslanie nového nižšie." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Meno" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Blízka udalosť" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Nový" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Novinky" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "RSS kanály" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Zdroj noviniek" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Nová kategória" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nové heslo" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Nová udalosť" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Ďalej" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nie" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Žiadne vykonané zmeny na zobrazenie." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Žiadne dáta" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Žiadny" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Oznámenie" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Neschválený" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Neschválený" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Nevybrané---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "nie spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Nešpecifikovaný" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Nie sú tu žiadne udalosti" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nie sú tu žiadne výsledky" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Vypnúť" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Oficiálne & mainstream novinky" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Zapnúť" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Voľba" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Voliteľný" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Voľby" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organizácia" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizácie" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Popis organizácie" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "E-mail organizácie" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organizácia bola" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Názov organizácie" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Telefón organizácie 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Telefón organizácie 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Webstránka organizácie" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Pôvodný" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Pôvodný popis" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Pôvodný názov" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Ďalšie rozmiestnenia" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Odoslaná pošta" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Odchádzajúci" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Strana" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Strany" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Popis strany" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Strana bola" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Názov záložky strany" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Názov strany" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Hlavná kategória" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Heslo" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Overiť heslo" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Heslo bolo zmenené! Prihláste sa nižšie." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Zabudli ste heslo?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "E-mail s novým heslom bol odoslaný." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Zostať prihlásený v tomto počítači?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Minulý mesiac" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Minulý rok" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Neukončený" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "za" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Osobné informácie Voliteľné." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefón" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotky" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Obrázky" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Obrázky a video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Hrať" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Upozornenie" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Pluginy" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Webstránka pluginov" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Verejný profil" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL verejného profilu" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Náhľad" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Náhľad položky" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Náhľad správy" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Predchádzajúci" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Súkromný" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Farba profilu" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Váš profil bol uložený" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Rýchle štatistiky" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Hodnotenie" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Čítať" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Prijať" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Prijať od" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Prijaté upozornenia" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Nedávne upozornenia" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Obnoviť RSS kanály" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registrovaný e-mail" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Odstrániť" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Odpovedať" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Upozornenie" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Upozornenia (z mapy, uvedené v chronologickom poradí)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Spravodajca" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Spravodajci" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Dátum spravodajcu" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "E-mail spravodajcu" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Spravodajcové krstné meno" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Spravodajca bol" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP adresa spravodajcu" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Spravodajcové priezvisko" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Úroveň spravodajcu" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Úrovne spravodajcu" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Spravodajcov telefón" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Upozornenia" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Prehľadávať" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Pridať" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Upozornenia podľa tohto uživateľa" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategórie" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d upozornenia" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Dátum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Popis" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Upozornenia budú stiahnuté vo formáte CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-mail" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Vlastnosti" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Nájdi blízku polohu" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Krstné meno" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Priezvisko" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Názov polohy" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Odkaz na zdroj noviniek" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Voliteľné informácie" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Nahrať fotky" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Vrátiť na stránku udalostí" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Vyberte mesto" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Vaša správa bola predložená nášmu personálu na preskúmanie. Ak to bude nevyhnutné, budeme vás čo najskôr kontaktovať." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Pridať novú udalosť" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Čas" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Časová os udalostí" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Názov udalosti" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Odkaz na video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Správa o incidente" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detaily udalosti" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Odosiela správu pre" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Odosiela e-mail" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Odosiela tweet s hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Vyplňuje formulár na našej webstránke" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Používa aplikáciu" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Vaša udalosť bola uložená" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Názov udalosti" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Vyžiadať viac informácií" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Vyžiadať polohu" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Povinné" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Požiadavky" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Preposlať potvrdzovací e-mail" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Obnoviť" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Obnoviť všetky filtre" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Obnoviť heslo" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Načítať názvy miest pre vybranú krajinu" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Účty spravované servisom %s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "V CrowdmapID už máte spravovaný účet! Pokúste sa prihlásiť pomocou vášho CrowdmapID e-mailu a hesla." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Úloha" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Uložiť" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Uložené" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Uložiť a pridať nový" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Uložiť a zavrieť" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Uložiť udalosť" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Naplánovať" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Plánovač" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Deň" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hodina" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Výpis plánovača" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minúta" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Deň v týždni" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Hľadať" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Výsledky vyhľadávania" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Bezpečnostný kód" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Vybrať všetko" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Vybrať typ poľa" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Vybrať typ formulára" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Vybrať na mape" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Vybrať tak veľa, ako je potrebné" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Skontrolujte prosím, či ste zaškrtli položku" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Vybrať vzhľad" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Odoslať" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Odoslať potvrdenie" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Odosiela" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Odoslané" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Odoslané od" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adresa servra" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Typ servra" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Služba" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Servisné uživateľské meno" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Servisné ID uživateľa" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Zdielať" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Zdielané dáta" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Zdielanie bolo" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Zdielaný" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Kratšia mapa" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Zobraziť" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Zobraziť všetky" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Zobraziť správy" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Webstránka" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "e-mailová adresa stránky" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL stránky" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Menšia mapa" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Prepáčte, ale nemáte žiadny znaky." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Zdroj" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Názov zdroja" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Zoradiť" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Zoradiť podľa" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL zdroja" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL podpora?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Od" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Krok" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Pridať udalosť" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Pridať cez SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Odošlite SMS" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "na váš telefón" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Úspešne!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Úspešne vložené" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Priezvisko" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Prehľad" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Systém" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Vyššia mapa" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Vzhľady" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Základný vzhľad Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Nastavenie vzhľadu" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Tento" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Dnes" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Tento mesiac" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Tento týždeň" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Tento rok" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Toto je váš profil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Čas" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Názov" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "do" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Dnes" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Dnes v" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Znak" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Upozornenia spolu" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Preložené" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Preložený popis" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Preložený názov" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Preložiť do" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Preklad" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Preklad bol uložený" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Dôveryhodný" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Typ" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Nemôžné odoslať e-mail" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Nekategorizované udalosti" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "neprečítané" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Neoverené" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Aktualizovať kanály" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Nahrať" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Súbor na nahranie" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Nahrať udalosti" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "S formulárom nižšie, môžete vkladať incidenty do Ushahidi enginu." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Musí obsahovať aspoň názov incidentu a dátum." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Ak nie sú zobrazené stĺpce pre zemepisnú šírku a dĺžku, poloha bude vygenerovaná pomocou Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "ak importuje dodatočné info t.j. osobné informácie a/alebo vlastné polia formulárov" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Aspoň jedno pole (meno, priezvisko, e-mail) musí byť vyplnené. Prázdne záznamy nebudú vložené." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Vaše údaje zadané v rozbaľovacom zozname, prepínači, alebo v zaškrtávacích políčkach obsahujú zhodu s vlastnými poliami vo vašej žiadosti." + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Príklad CSV udalosti" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,NAZOV INCIDENTU,DATUM INCIDENTU,POLOHA,POPIS,KATEGORIA,SCHVALENE,OVERENE,ZEMEPISNA SIRKA,ZEMEPISNA DLZKA
\"1\",\"Podozrenie na smrť v Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Tri prípady boli potvrdené v C. del Uruguay\",\"UMRTIA, CIVILISTI, \",ANO,ANO,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Drancovanie\",\"2009-03-18 10:10:00\",\"Accra\",\"Drancovanie sa deje všade\",\"NEPOKOJE, UMRTIA, SKODY NA MAJETKU, \",ANO,NIE,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Nahranie úspešné" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Nahrať video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Uživateľ" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Meno uživateľa" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Admin" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Overenie" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Overené" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Overené udalosti" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Overiť" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Overiť túto udalosť" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Verzia" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "cez" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Zobraziť" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Zobrazenia" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Zobraziť všetko" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Zobraziť všetky kanály" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Zobraziť všetky udalosti" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Zobraziť položky" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Zobraziť viac" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Zobraziť verejný profil" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Zobraziť udalosť" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Zobraziť udalosti" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Zobraziť Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Viditeľný" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Čaká na potvrdenie" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Čaká na overenie" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Širšia mapa" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "WEB formulár" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Hmotnosť" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Áno" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Včera" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Vaša palubovka" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Váš súbor" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Priblížiť" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Oddialiť" diff --git a/application/i18n/po/po-sk/upgrade.po b/application/i18n/po/po-sk/upgrade.po new file mode 100644 index 0000000000..90dc35fc76 --- /dev/null +++ b/application/i18n/po/po-sk/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/alerts.po b/application/i18n/po/po-sk_SK/alerts.po new file mode 100644 index 0000000000..b2b8fe3771 --- /dev/null +++ b/application/i18n/po/po-sk_SK/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/auth.po b/application/i18n/po/po-sk_SK/auth.po new file mode 100644 index 0000000000..f9ba8a63fc --- /dev/null +++ b/application/i18n/po/po-sk_SK/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/bug.po b/application/i18n/po/po-sk_SK/bug.po new file mode 100644 index 0000000000..58708ccd53 --- /dev/null +++ b/application/i18n/po/po-sk_SK/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/category.po b/application/i18n/po/po-sk_SK/category.po new file mode 100644 index 0000000000..3039540228 --- /dev/null +++ b/application/i18n/po/po-sk_SK/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/comments.po b/application/i18n/po/po-sk_SK/comments.po new file mode 100644 index 0000000000..ac3542115e --- /dev/null +++ b/application/i18n/po/po-sk_SK/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/contact.po b/application/i18n/po/po-sk_SK/contact.po new file mode 100644 index 0000000000..0cd99e376e --- /dev/null +++ b/application/i18n/po/po-sk_SK/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/core.po b/application/i18n/po/po-sk_SK/core.po new file mode 100644 index 0000000000..c6cddd1284 --- /dev/null +++ b/application/i18n/po/po-sk_SK/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/database.po b/application/i18n/po/po-sk_SK/database.po new file mode 100644 index 0000000000..2641f09044 --- /dev/null +++ b/application/i18n/po/po-sk_SK/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/datetime.po b/application/i18n/po/po-sk_SK/datetime.po new file mode 100644 index 0000000000..d03df77207 --- /dev/null +++ b/application/i18n/po/po-sk_SK/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/feeds.po b/application/i18n/po/po-sk_SK/feeds.po new file mode 100644 index 0000000000..ca5fe0f2e7 --- /dev/null +++ b/application/i18n/po/po-sk_SK/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/footer.po b/application/i18n/po/po-sk_SK/footer.po new file mode 100644 index 0000000000..72ac4e1db4 --- /dev/null +++ b/application/i18n/po/po-sk_SK/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/form.po b/application/i18n/po/po-sk_SK/form.po new file mode 100644 index 0000000000..33deee6a7c --- /dev/null +++ b/application/i18n/po/po-sk_SK/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/imap.po b/application/i18n/po/po-sk_SK/imap.po new file mode 100644 index 0000000000..d2527adfdf --- /dev/null +++ b/application/i18n/po/po-sk_SK/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/installer.po b/application/i18n/po/po-sk_SK/installer.po new file mode 100644 index 0000000000..6aec4a803a --- /dev/null +++ b/application/i18n/po/po-sk_SK/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/layer.po b/application/i18n/po/po-sk_SK/layer.po new file mode 100644 index 0000000000..d133b8adf3 --- /dev/null +++ b/application/i18n/po/po-sk_SK/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/libraries.po b/application/i18n/po/po-sk_SK/libraries.po new file mode 100644 index 0000000000..ec5a94a295 --- /dev/null +++ b/application/i18n/po/po-sk_SK/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/maintenance.po b/application/i18n/po/po-sk_SK/maintenance.po new file mode 100644 index 0000000000..3852be89c0 --- /dev/null +++ b/application/i18n/po/po-sk_SK/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/message.po b/application/i18n/po/po-sk_SK/message.po new file mode 100644 index 0000000000..768f2a99fd --- /dev/null +++ b/application/i18n/po/po-sk_SK/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/mhi.po b/application/i18n/po/po-sk_SK/mhi.po new file mode 100644 index 0000000000..4ad6d47246 --- /dev/null +++ b/application/i18n/po/po-sk_SK/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/notifications.po b/application/i18n/po/po-sk_SK/notifications.po new file mode 100644 index 0000000000..89053f8186 --- /dev/null +++ b/application/i18n/po/po-sk_SK/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-sk_SK/page.po b/application/i18n/po/po-sk_SK/page.po new file mode 100644 index 0000000000..a1137633f8 --- /dev/null +++ b/application/i18n/po/po-sk_SK/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/permissions.po b/application/i18n/po/po-sk_SK/permissions.po new file mode 100644 index 0000000000..b22e284e66 --- /dev/null +++ b/application/i18n/po/po-sk_SK/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/private_message.po b/application/i18n/po/po-sk_SK/private_message.po new file mode 100644 index 0000000000..5c116bc907 --- /dev/null +++ b/application/i18n/po/po-sk_SK/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/report.po b/application/i18n/po/po-sk_SK/report.po new file mode 100644 index 0000000000..2e762ab7b5 --- /dev/null +++ b/application/i18n/po/po-sk_SK/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/reporters.po b/application/i18n/po/po-sk_SK/reporters.po new file mode 100644 index 0000000000..c706d1c7a5 --- /dev/null +++ b/application/i18n/po/po-sk_SK/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/reports.po b/application/i18n/po/po-sk_SK/reports.po new file mode 100644 index 0000000000..94bb9b4e70 --- /dev/null +++ b/application/i18n/po/po-sk_SK/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/roles.po b/application/i18n/po/po-sk_SK/roles.po new file mode 100644 index 0000000000..0a0632fae2 --- /dev/null +++ b/application/i18n/po/po-sk_SK/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/settings.po b/application/i18n/po/po-sk_SK/settings.po new file mode 100644 index 0000000000..f31c96d6a7 --- /dev/null +++ b/application/i18n/po/po-sk_SK/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/sharing.po b/application/i18n/po/po-sk_SK/sharing.po new file mode 100644 index 0000000000..629a2eb118 --- /dev/null +++ b/application/i18n/po/po-sk_SK/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/stats.po b/application/i18n/po/po-sk_SK/stats.po new file mode 100644 index 0000000000..46f38ad3b1 --- /dev/null +++ b/application/i18n/po/po-sk_SK/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-sk_SK/tooltips.po b/application/i18n/po/po-sk_SK/tooltips.po new file mode 100644 index 0000000000..539b753c23 --- /dev/null +++ b/application/i18n/po/po-sk_SK/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/ui_admin.po b/application/i18n/po/po-sk_SK/ui_admin.po new file mode 100644 index 0000000000..4b46412869 --- /dev/null +++ b/application/i18n/po/po-sk_SK/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/ui_main.po b/application/i18n/po/po-sk_SK/ui_main.po new file mode 100644 index 0000000000..80f2e4865f --- /dev/null +++ b/application/i18n/po/po-sk_SK/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-sk_SK/upgrade.po b/application/i18n/po/po-sk_SK/upgrade.po new file mode 100644 index 0000000000..8e734c0fb4 --- /dev/null +++ b/application/i18n/po/po-sk_SK/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 19:57+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/alerts.po b/application/i18n/po/po-sl_SI/alerts.po new file mode 100644 index 0000000000..1f8cc36b98 --- /dev/null +++ b/application/i18n/po/po-sl_SI/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Vnešen Email naslov ni veljaven" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Ta Email naslov je že bil registriran za prejemanje opozoril iz te lokacije." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email mora vsebovati najmanj 4 in največ 64 znakov." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Niste izbrali veljavne lokacije na zemljevidu" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Niste izbrali veljavne lokacije na zemljevidu" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Niste izbrali veljavne lokacije na zemljevidu" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Niste izbrali veljavne lokacije na zemljevidu" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Vnešena mobilna številka ne vsebuje zadostno število znakov" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Ta mobilna številka je že bila registrirana za prejemanje opozoril iz te lokacije." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Vnesti morate vašo mobilno številko ali Email naslov" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Polje z mobilno številko je zahtevano če je označen checkbox" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Niste označili veljavnega območja na zemljevidu." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Niste označili vašega območja na zemljevidu." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Niste nastavili prejemnika opozoril." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Naročili ste se na opozorila za naslednje kategorije" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Ta koda je že bila potrjena!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Potrditvena koda ni bila najdena! Prosim preverite ali ste vnesli pravilni URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-sl_SI/auth.po b/application/i18n/po/po-sl_SI/auth.po new file mode 100644 index 0000000000..dfa438bdc7 --- /dev/null +++ b/application/i18n/po/po-sl_SI/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/bug.po b/application/i18n/po/po-sl_SI/bug.po new file mode 100644 index 0000000000..6bee52489d --- /dev/null +++ b/application/i18n/po/po-sl_SI/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-sl_SI/category.po b/application/i18n/po/po-sl_SI/category.po new file mode 100644 index 0000000000..164ff02d0d --- /dev/null +++ b/application/i18n/po/po-sl_SI/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Zahtevano je barvno polje." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-sl_SI/comments.po b/application/i18n/po/po-sl_SI/comments.po new file mode 100644 index 0000000000..cf36d12592 --- /dev/null +++ b/application/i18n/po/po-sl_SI/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Prosim vnesite veljavno varnostno geslo." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Prosim vnesite varnostno geslo." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Vnesli ste napačno varnostno geslo." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ime mora vsebovati najmanj 3 znake." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Potrebno je izpolniti okno z imenom." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Potrebno je izpolniti okno za komentar." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Vnešeni Email naslov ni veljaven. " + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email naslov mora biti vsebovati najmanj 4 in največ 64 znakov." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email naslov je zahtevan v primeru, da je označen checkbox." diff --git a/application/i18n/po/po-sl_SI/libraries.po b/application/i18n/po/po-sl_SI/libraries.po new file mode 100644 index 0000000000..23d81e338d --- /dev/null +++ b/application/i18n/po/po-sl_SI/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Povezava na Akismet server ni mogoča." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Vaš Akismet API ključ ni veljaven." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Prosim določite naslov prejemnika (ZA)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Prosim določite naslov vira (OD)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Nepodprta metoda pošiljanja!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API knjižnica %s ni veljavna. Vse API knjižnice morajo biti podrazredi %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Direktori %s ne mora biti izbrisan." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Napaka med ekstrakcijo: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Prenos zadnje verzije Ushahidi ni uspel. HTTP status code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Datoteka %s ne mora biti kopirana." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Datoteka %s ne mora biti izbrisana." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Prenesena Ushahidi zip datoteka %s, ne mora biti zapisana." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s ni dostopna v RiverID class." diff --git a/application/i18n/po/po-sl_SI/maintenance.po b/application/i18n/po/po-sl_SI/maintenance.po new file mode 100644 index 0000000000..a9676d3689 --- /dev/null +++ b/application/i18n/po/po-sl_SI/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Oprostite, naša stran je trenutno nedosegljiva zaradi vzdrževanja. Prosimo, poskusite znova čez nekaj minut." diff --git a/application/i18n/po/po-sl_SI/message.po b/application/i18n/po/po-sl_SI/message.po new file mode 100644 index 0000000000..95172befa2 --- /dev/null +++ b/application/i18n/po/po-sl_SI/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Prosim vnesite veljavno varnostno geslo." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Prosim vnesite varnostno geslo." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Vnešeni Email naslov ni veljaven. " + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email mora vsebovati najmanj 4 in največ 64 znakov." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email naslov je zahtevan v primeru, da je označen checkbox." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Potrebno je izpolniti okno za komentar." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ime mora vsebovati najmanj 3 znake." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Potrebno je izpolniti okno z imenom." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Vnešena telefonska številka ni veljavna." diff --git a/application/i18n/po/po-sl_SI/mhi.po b/application/i18n/po/po-sl_SI/mhi.po new file mode 100644 index 0000000000..30053e79f3 --- /dev/null +++ b/application/i18n/po/po-sl_SI/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Prosim vnesite veljavno varnostno geslo." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Prosim vnesite varnostno geslo." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Vnešeni Email naslov ni veljaven. " + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Prosim vpišite veljavni Email naslov." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Potrebno je izpolniti okno z sporočilom." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Naslov mora vsebovati najmanj 3 znake." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Potrebno je izpolniti okno z naslovom." diff --git a/application/i18n/po/po-sl_SI/page.po b/application/i18n/po/po-sl_SI/page.po new file mode 100644 index 0000000000..b9065a23f7 --- /dev/null +++ b/application/i18n/po/po-sl_SI/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Prosim vnesite naslov strani." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Naslov strani mora vsebovati najmanj 3 in največ 150 znakov." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Prosim vnesite ime zavihka." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Prosim vnesite opis strani" diff --git a/application/i18n/po/po-sl_SI/permissions.po b/application/i18n/po/po-sl_SI/permissions.po new file mode 100644 index 0000000000..94eb6e4744 --- /dev/null +++ b/application/i18n/po/po-sl_SI/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/private_message.po b/application/i18n/po/po-sl_SI/private_message.po new file mode 100644 index 0000000000..fb0af3aba8 --- /dev/null +++ b/application/i18n/po/po-sl_SI/private_message.po @@ -0,0 +1,48 @@ +# +# Translators: +# Blanco , 2014 +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-02 20:43+0000\n" +"Last-Translator: Blanco \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Parent ID mora biti numeričen" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Prejemnik je zahtevan" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Uporabnik, ki mu poskušate poslati sporočilo, ne obstaja" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Potrebno je izpolniti okno z naslovom." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Naslov mora vsebovati med 3 in 150 znakov" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Potrebno je izpolniti okno z sporočilom." diff --git a/application/i18n/po/po-sl_SI/report.po b/application/i18n/po/po-sl_SI/report.po new file mode 100644 index 0000000000..6ca1669ae3 --- /dev/null +++ b/application/i18n/po/po-sl_SI/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "Napaka!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Ta izvedba programa pokriva zgolj eno državo. Preverite, da je lokacija vašega poročila v državi %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Prosim izberite veljavni predmet za prenos." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Prosim izberite veljavni predmet za prenos." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Prosim izberite \"Poročila za potrditev\" ali \"Potrjena poročila\" ali oboje." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Prosim izberite \"Poročila za potrditev\" ali \"Potrjena poročila\" ali oboje." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Prosim izberite \"Poročila za potrditev\" ali \"Potrjena poročila\" ali oboje." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Prosim izberite \"Poročila za preverjanje\" ali \"Preverjena poročila\" ali oboje." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Prosim izberite \"Poročila za preverjanje\" ali \"Preverjena poročila\" ali oboje." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Prosim izberite \"Poročila za preverjanje\" ali \"Preverjena poročila\" ali oboje." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Prosim izberite veljavno obliko poročila za prenos" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Prosim izberite veljavno obliko poročila za prenos" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Prosim izberite veljavno obliko poročila za prenos" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Polje datuma OD ne vsebuje veljavne datumske oblike." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Prosim vnesite veljavni datum začetka. Vnos ne more biti novejši od današnjega datuma." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Potrebno je izpolniti okno z kategorijo." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Zahtevano je izpolniti okno z uro." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-sl_SI/reporters.po b/application/i18n/po/po-sl_SI/reporters.po new file mode 100644 index 0000000000..111ce16354 --- /dev/null +++ b/application/i18n/po/po-sl_SI/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Potrebno je izpolniti polje z lokacijo" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/reports.po b/application/i18n/po/po-sl_SI/reports.po new file mode 100644 index 0000000000..d33765739c --- /dev/null +++ b/application/i18n/po/po-sl_SI/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Prosim potrdite da ste označili predmet" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Prosim potrdite da ste označili predmet" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Poročila morajo biti kategorizirana preden so lahko odobrena" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Nimate ustreznega dovoljenja za izvajanje te funkcije." + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Izbrati morate datoteko za nalaganje" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Datoteka za nalaganje na strežnik mora biti .csv ali .xml formata" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Polje za nalaganje datotek ne vsebuje veljavne datoteke" diff --git a/application/i18n/po/po-sl_SI/settings.po b/application/i18n/po/po-sl_SI/settings.po new file mode 100644 index 0000000000..aa43d16c72 --- /dev/null +++ b/application/i18n/po/po-sl_SI/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/stats.po b/application/i18n/po/po-sl_SI/stats.po new file mode 100644 index 0000000000..61b075f77c --- /dev/null +++ b/application/i18n/po/po-sl_SI/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Odobreno" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "kategorije" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Vpliv kategorije" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Izberite razpon datumov." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Države" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Država" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Napaka" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Slovar" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legenda" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pogled strani" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Skupno število strani, ki so si jih ogledali obiskovalci" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Poročila" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Kategorije poročil" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Statistika poročil" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Status poročil" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 mesec" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 mesece" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 mesecev" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Vse" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "neodobreno" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Posebni obiskovalci" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Nepreverjeno" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "preverjeno" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Dnevnik obiskovalcev" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Obiski" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-sl_SI/tooltips.po b/application/i18n/po/po-sl_SI/tooltips.po new file mode 100644 index 0000000000..7d557d8a39 --- /dev/null +++ b/application/i18n/po/po-sl_SI/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "To doda poročilo k dodatnim kategorijam. Če izberete kategorijo 1 in poročilo že vsebuje kategorijo 2, bo poročilo vsebovalo obe kategoriji; kategorijo 1 in kategorijo 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Odobrite ali zavrnite poročilo. Če bo poročilo odobreno bo postalo javno vidno." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Jedro email sporočila, ki bo bilo poslano." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Naslov email sporočila, ki bo poslano." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "To je osnovni naslov, ki se doda poročilu." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Naslov privatnega sporočila" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Privatno sporočilo" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Vaš email naslov" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Vaše uporabniško ime ne mora biti spremenjeno." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/ui_admin.po b/application/i18n/po/po-sl_SI/ui_admin.po new file mode 100644 index 0000000000..5778b14014 --- /dev/null +++ b/application/i18n/po/po-sl_SI/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "stopnja dostopa" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "akcije" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "dodaj kategorijo" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "dodano" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "dodano/urejeno" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Upravljalec" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "opozorila" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "opozorila prejeta" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "anonimno" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "kdorkoli" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "kjerkoli" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API nastavitve" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "odobreno" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "avtomatska odobritev" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "ročna odobritev" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "arhivirano" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Ali ste prepričani, da želite " + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Ali ste prepričani, da želite izbrisati ta predmet?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Ali ste prepričani, da želite izbrisati to fotografijo?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Ali ste prepričani, da želite zamenjati obrazce?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Določi" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Naloge" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Določi značko" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Avtor" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Avtorjev Email naslov" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "nazaj" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "telo" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "prekliči" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "kategorije" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Napaka v prikazu tabele." + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Prosim preverite veljavnost sporočila." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Prosim preverite veljavnost številke." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Prosim preverite vaše SMS nastavitve!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Podrobnosti vnosa." + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Vnosi " + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Naložena mesta" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "koda" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "barva" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "komentarji" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Vaša potrditvena koda za opozorila je:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Uporabnik je bil:" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Štetje" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Država ni bila najdena" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "Ustvarjeno/urejeno" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Ustvari poročilo" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritična nadgradnja" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Trenutno aktivni" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Trenutno neaktivni" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Nimate ustreznega dovoljenja za urejanje sledečih področij." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Dnevno" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "podatkovna baza" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "datum & čas" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Dnevi v tednu" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "izbrisano" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "izbriši" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "izbriši značko" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Opis" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Onemogočeno" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Prenesi poročila" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "UREJENO" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Uredil" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Uredi" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Napaka" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Vsakih 6 ur" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Vsakih 12 ur" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Poskusno" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Feedback" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista izbora" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tip podatkov" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Številčno" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Prosto besedilo" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Ne" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Da, vedno zaprto" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Da, vedno odprto" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Naložene datoteke ni bilo možno poiskati" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Datoteke ni možno odpreti za branje" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ta oblika ne obstaja!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Okno besedila (prosto besedilo)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Okno datuma" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Od" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Od" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Pomoč" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "akcije" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Dodaj/Uredi" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Uredi uporabnike" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Vloga" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Uporabnik" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Pomoč" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Vsako uro" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Ali je to okno datuma?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Kdo lahko vidi odgovore" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Kdo lahko predloži odgovore" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Ključna beseda" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Ključne besede" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email naslov:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Ime:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Geslo:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Vloga:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Uporabniško ime:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Sloji" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Izpis" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Urejati" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Uredi vloge in dovoljenja" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Poglej uporabnike" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Dodaj/Uredi uporabnike" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Označi kot" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "označeno kot ne spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "Označeno kot spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "sporočilo" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Sporočila" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter sporočilo" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Vaše opozorilo je bilo poslano!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minuta" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minute" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Manjkajoč parameter" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "prilagojeno" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Prilagodi nastavitve časovnega pasa" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "premakni dol" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "premakni gor" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Moja opozorila" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Moji vnosi" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Moj profil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Moja poročila" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Pozitivno" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativno" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Ime" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Ustvari novo opozorilo" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Ustvari novo sporočilo" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Novo geslo" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Ne" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Obvestilo" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Ni bilo najdeno" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Ni podatkov. Ni rezultatov za prikaz" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Brez napake" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Ni podatkov za prikaz!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "od" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "stran" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "strani" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Stran ni bila najdena" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Uporabljeni parametri" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Geslo" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Dragi" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Prosim izberi" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Predogled" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Sporočilo" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Privatno sporočilo" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Privatno sporočilo je bilo poslano" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Naslov" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Za" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "preberi" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Naslov poročila" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Poročevalci" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Stopnje poročevalca" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Poročila" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Zahtevano" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Odziv" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Rezultati" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Shrani nastavitve" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Išči" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Išči poročila" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/ui_main.po b/application/i18n/po/po-sl_SI/ui_main.po new file mode 100644 index 0000000000..b6e7f10e20 --- /dev/null +++ b/application/i18n/po/po-sl_SI/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Dostop" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Omejitve dostopa" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Uporabniško ime" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivacija" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktivno" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Dodaj" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Dodal" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dodatni podatki" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Dodatna poročila" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Dodaj/Uredi" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Dodaj jezik" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Dodaj novo" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Dodaj novo kategorijo" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Dodaj prevod" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Prejmi opozorila" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Opozori me če je izpolnjeno poročilo v ali v okolici:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Shrani moje opozorilo" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email naslov:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "vnesi email naslov." + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "vnesi številko mobilnega telefona skupaj z državno kodo." + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Prejmi opozorila" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobilni telefon" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ali pa označite mesto na mapi spodaj in mi vas bomo opozorili, ko bo vnešeno poročilo v krogu 20 kilometrov o vnešene točke." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "izberi mesto" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Korak 1: Izberite vaše mesto ali lokacijo:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Korak 2: Pošljite opozorila na moj:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Korak 3 (Izbirno): Izberite kategorije" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Potrdite prejšnjo izbiro opozoril" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Vaše opozorilo je bilo shranjeno!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Vse" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Dovoljeno" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Vse kategorije" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Ves čas" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "in" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Odobritev" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Odobreno" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Odobrena poročila" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Odobri to poročilo" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Približno" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arhiv" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "arhivirano" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "pri" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Avtor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Avtomatski checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Povprečno število poročil na dan" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "čakajoča odobritev" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "čakajoča verifikacija" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "značka" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "značke" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "slika značke" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Oziroma lahko naložite namesto nje vašo sliko značke" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Komplet značk" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "izberite značko" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Išči profile" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "prekliči" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "kategorije" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "kategorija" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filter kategorij" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategorija je bila" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Ime kategorije" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Spremeni razpon datuma" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "spremeni geslo" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Spremeni mojo sliko" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "izberi" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Izberi datotečne točke za prenos" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "ali izberi svoj razpon datumov" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "izberi tip polja" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Počisti URLje" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Počisti" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Počisti zemljevid" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "zapri" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "skupine" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "barva" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "komentar" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "komentarji" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "podrobnosti komentarja" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Vaše nastavitve so bile shranjene!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Nastavi" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Uspešno ste potrdili vaš email naslov! Prosim vpišite se spodaj." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontaktirajte nas" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Varnostno geslo" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Vaš Email naslov" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "sporočilo" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Vaše opozorilo je bilo poslano!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Vaše ime" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Vaša telefonska številka" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Pošlji sporočilo" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Naslov sporočila" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Avtorske pravice ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Ustvari" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Ustvari/uredi" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Ustvari novo" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Ustvari novo geslo" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Ustvari poročilo" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Kredibilnost" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "trenutno geslo" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "informacija" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy) " + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "datum & čas" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dan" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "deaktiviraj" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenija" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "izbriši" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "izbrisano" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "izbriše" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "izbriši onemogočene" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "izbriši zadnje" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "izbriši to poročilo" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "izbriši izbrano" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "izbriši spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "opis" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Primer: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "podrobnosti" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "direktno poročilo" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "onemogočeno" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "neodobreno" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "prenesi poročila" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "uredi" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Email naslov" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Nastavitve Email strežnika" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "Za" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Napaka!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "primer" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenija" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Zunanje aplikacije" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Datoteka" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtri" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "filtriraj poročila" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "filtriraj poročila glede na" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "filtriraj poročila, ki vsebujejo" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Najdi" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Najdi lokacijo" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Osebno ime" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Ali ste pozabili vaše geslo?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Obrazec" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Obrazci" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Opis obrazca" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Uredi ta obrazec" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Obrazec je bil" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Naslov obrazca" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Od" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Celo ime" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "barva" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "komentarji" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Oznaka" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Pojdi" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Je bil" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Kako pomagati" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Skrito" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Skrij" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "skrij to sporočilo" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Domov" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Kako poročati" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Slika" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Slike" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Slika/Ikona" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Neaktivni" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Prejeta pošta" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incident" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Bližnji incidenti" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Lokacija incidenta" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Vključi" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Vključi kategorije" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Vključi prilagojena okna" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Vključi opis" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Vključi kolikor je mogoče podrobnosti" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Prehajajoč medij" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "V odziv na" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP naslov" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Predmet" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Ključ" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-sl_SI/upgrade.po b/application/i18n/po/po-sl_SI/upgrade.po new file mode 100644 index 0000000000..ca02d8e6e0 --- /dev/null +++ b/application/i18n/po/po-sl_SI/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# blaz , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Avtomatska nadgradnja" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "razpoložljive posodobitve" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "nadaljuj" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Posodobi" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "na najnovejšo database verzijo" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Vaša podatkovna baza vsebuje najnovejše posodobitve." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "ročna nadgradnja" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Trenutno uporabljate Ushahidi v%1$s z verzijo podatkovne baze %2$d delujočo na %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP geslo:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Ne potrebujete nadgradnje." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Uspešno preneseno. Nalagam..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Neuspešen prenos." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Neuspešno kopiranje podatkov" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Uspešna posodobitev podatkovne baze." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-sn/alerts.po b/application/i18n/po/po-sn/alerts.po new file mode 100644 index 0000000000..753af7101d --- /dev/null +++ b/application/i18n/po/po-sn/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-sn/auth.po b/application/i18n/po/po-sn/auth.po new file mode 100644 index 0000000000..ae3a5712ed --- /dev/null +++ b/application/i18n/po/po-sn/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-sn/bug.po b/application/i18n/po/po-sn/bug.po new file mode 100644 index 0000000000..7b2a9061be --- /dev/null +++ b/application/i18n/po/po-sn/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-sn/category.po b/application/i18n/po/po-sn/category.po new file mode 100644 index 0000000000..1036a88391 --- /dev/null +++ b/application/i18n/po/po-sn/category.po @@ -0,0 +1,92 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:05+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-sn/comments.po b/application/i18n/po/po-sn/comments.po new file mode 100644 index 0000000000..51b925c405 --- /dev/null +++ b/application/i18n/po/po-sn/comments.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:23+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-sn/contact.po b/application/i18n/po/po-sn/contact.po new file mode 100644 index 0000000000..d889c5fa3d --- /dev/null +++ b/application/i18n/po/po-sn/contact.po @@ -0,0 +1,75 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:24+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-sn/core.po b/application/i18n/po/po-sn/core.po new file mode 100644 index 0000000000..287f1ba54b --- /dev/null +++ b/application/i18n/po/po-sn/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2014-09-04 04:57+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "faira reconfig" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "dhiraivha" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-sn/database.po b/application/i18n/po/po-sn/database.po new file mode 100644 index 0000000000..41bdac73d5 --- /dev/null +++ b/application/i18n/po/po-sn/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-04 05:10+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Kanganiso muDatabase: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-sn/datetime.po b/application/i18n/po/po-sn/datetime.po new file mode 100644 index 0000000000..800a28c303 --- /dev/null +++ b/application/i18n/po/po-sn/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-04 05:08+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Chishanu" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Chishanu" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Muvhuro" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Muvhuro" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Mugovera" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Mugovera" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Svondo" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Svondo" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "China" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "China" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Chipiri" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Chipiri" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Chitatu" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Chitatu" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Ndira" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Ndira" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Kukadzi" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Kukadzi" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Kurume" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Kurume" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Kubvumbi" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Kubvumbi" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Chivabvu" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Chivabvu" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Chukumi" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Chikumi" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Chikunguru" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Chikunguru" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Nyamavhuvhu" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Nyamavhuvhu" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Gunyana" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Gunyana" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr " Gumiguru" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr " Gumiguru" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Mbudzi" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Mbudzi" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Zvita" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Zvita" diff --git a/application/i18n/po/po-sn/feeds.po b/application/i18n/po/po-sn/feeds.po new file mode 100644 index 0000000000..1cb1eb0146 --- /dev/null +++ b/application/i18n/po/po-sn/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-04 05:01+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Musi" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Shandisa URL chaiyo, muyenzaniso http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Musoro" diff --git a/application/i18n/po/po-sn/footer.po b/application/i18n/po/po-sn/footer.po new file mode 100644 index 0000000000..87b374a010 --- /dev/null +++ b/application/i18n/po/po-sn/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-04 05:12+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl haina kuiswa musisitimu " diff --git a/application/i18n/po/po-sn/form.po b/application/i18n/po/po-sn/form.po new file mode 100644 index 0000000000..3452414479 --- /dev/null +++ b/application/i18n/po/po-sn/form.po @@ -0,0 +1,120 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-sn/imap.po b/application/i18n/po/po-sn/imap.po new file mode 100644 index 0000000000..ff80ab81df --- /dev/null +++ b/application/i18n/po/po-sn/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-04 05:13+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAP stream yatadza kuvhurika." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-sn/installer.po b/application/i18n/po/po-sn/installer.po new file mode 100644 index 0000000000..20a2e99db4 --- /dev/null +++ b/application/i18n/po/po-sn/installer.po @@ -0,0 +1,408 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:48+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-sn/layer.po b/application/i18n/po/po-sn/layer.po new file mode 100644 index 0000000000..6003d7ec80 --- /dev/null +++ b/application/i18n/po/po-sn/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-17 19:42+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Kala field inofanira kava nemacharecter 6." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Kala field inodiikanwa." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Field refaira harina faira kwaro. Maformat anotenderwa ndeaya: .KMZ kana kuti .KML" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Field remafaira ririkuratidza kuti harina faira kwaro." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Field rezimata rinofanira kuva nemacharecter pakati pe3 ne80." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Field rest rinodiikanwa." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "KNM URL kana faira rinodiikanwa." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Haukwanise kushandisa KML URL and faira panguva imwechete." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Shandisa URL kwayo, semufananidzo: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-sn/libraries.po b/application/i18n/po/po-sn/libraries.po new file mode 100644 index 0000000000..35e9923861 --- /dev/null +++ b/application/i18n/po/po-sn/libraries.po @@ -0,0 +1,116 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-sn/maintenance.po b/application/i18n/po/po-sn/maintenance.po new file mode 100644 index 0000000000..e31c47a185 --- /dev/null +++ b/application/i18n/po/po-sn/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-04 05:16+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Sori, site yedu iri kumbogadziriswa.\nYedzai mbaimbai." diff --git a/application/i18n/po/po-sn/message.po b/application/i18n/po/po-sn/message.po new file mode 100644 index 0000000000..23018cb1c9 --- /dev/null +++ b/application/i18n/po/po-sn/message.po @@ -0,0 +1,60 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-sn/mhi.po b/application/i18n/po/po-sn/mhi.po new file mode 100644 index 0000000000..09f4431efd --- /dev/null +++ b/application/i18n/po/po-sn/mhi.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-sn/notifications.po b/application/i18n/po/po-sn/notifications.po new file mode 100644 index 0000000000..127f558478 --- /dev/null +++ b/application/i18n/po/po-sn/notifications.po @@ -0,0 +1,90 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-sn/page.po b/application/i18n/po/po-sn/page.po new file mode 100644 index 0000000000..2c5cc23ebe --- /dev/null +++ b/application/i18n/po/po-sn/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-04 05:18+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Nyora musoro wePeji rino." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Nyora dudziro yePeji rino." diff --git a/application/i18n/po/po-sn/permissions.po b/application/i18n/po/po-sn/permissions.po new file mode 100644 index 0000000000..cbf8b12df9 --- /dev/null +++ b/application/i18n/po/po-sn/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sn/private_message.po b/application/i18n/po/po-sn/private_message.po new file mode 100644 index 0000000000..164db50316 --- /dev/null +++ b/application/i18n/po/po-sn/private_message.po @@ -0,0 +1,45 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-17 21:14+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-sn/report.po b/application/i18n/po/po-sn/report.po new file mode 100644 index 0000000000..289315a885 --- /dev/null +++ b/application/i18n/po/po-sn/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-sn/reporters.po b/application/i18n/po/po-sn/reporters.po new file mode 100644 index 0000000000..c9b55d0987 --- /dev/null +++ b/application/i18n/po/po-sn/reporters.po @@ -0,0 +1,70 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-sn/reports.po b/application/i18n/po/po-sn/reports.po new file mode 100644 index 0000000000..b8f18fe665 --- /dev/null +++ b/application/i18n/po/po-sn/reports.po @@ -0,0 +1,50 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-sn/roles.po b/application/i18n/po/po-sn/roles.po new file mode 100644 index 0000000000..6cb17a916f --- /dev/null +++ b/application/i18n/po/po-sn/roles.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-sn/settings.po b/application/i18n/po/po-sn/settings.po new file mode 100644 index 0000000000..c4c605e158 --- /dev/null +++ b/application/i18n/po/po-sn/settings.po @@ -0,0 +1,857 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/projects/p/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sn/sharing.po b/application/i18n/po/po-sn/sharing.po new file mode 100644 index 0000000000..d9a3b049e2 --- /dev/null +++ b/application/i18n/po/po-sn/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-09 01:30+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Kugova zita kunosungirwa." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "URL yesite iyi inodiikanwa" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "URL yesite iyi haisi chaiyo." diff --git a/application/i18n/po/po-sn/stats.po b/application/i18n/po/po-sn/stats.po new file mode 100644 index 0000000000..d66d19aea6 --- /dev/null +++ b/application/i18n/po/po-sn/stats.po @@ -0,0 +1,196 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-sn/tooltips.po b/application/i18n/po/po-sn/tooltips.po new file mode 100644 index 0000000000..eb8752f0ee --- /dev/null +++ b/application/i18n/po/po-sn/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sn/ui_admin.po b/application/i18n/po/po-sn/ui_admin.po new file mode 100644 index 0000000000..a54e220084 --- /dev/null +++ b/application/i18n/po/po-sn/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sn/ui_main.po b/application/i18n/po/po-sn/ui_main.po new file mode 100644 index 0000000000..ea15eeaec2 --- /dev/null +++ b/application/i18n/po/po-sn/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Donho" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Wedzera" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Wedzera ne" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Pihwa changamudza" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Pihwa changamudza" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Foni nhumba" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Bvumirwa" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "ne" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Bvumira\t" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Abvumira\t" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Munyori\t" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr " Rutarwa" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-sn/upgrade.po b/application/i18n/po/po-sn/upgrade.po new file mode 100644 index 0000000000..6793a6e941 --- /dev/null +++ b/application/i18n/po/po-sn/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# shaun17 , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2014-09-09 01:37+0000\n" +"Last-Translator: shaun17 \n" +"Language-Team: Shona (http://www.transifex.com/ushahidi/ushahidi-v2/language/sn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Otomatiki apugradhi" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Maapudated Aripo" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Enderera" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Apugradhi" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Ndava kuapugradha database vhezheni" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "kudataase vhezheni itsva" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi database apugradhi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Apugredhi yatadza kupfuurira mberi" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Database:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log refaira" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-so/alerts.po b/application/i18n/po/po-so/alerts.po new file mode 100644 index 0000000000..d7bf4bc7f6 --- /dev/null +++ b/application/i18n/po/po-so/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Emailkaad gelisay sax ma aha" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Emailkaad gelisay horay ayuu u diiwaangashanaa suu u helo farriimo ku saabsan goobtaas" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailkaagu waa inuu ka kooban yahay ugu yaraan afar xaraf, ugu badnaanna 64 xaraf" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email ayaa loo baahan yahay haddii sanduuqu saxan yahay" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Ma aadan ka dooran khariidadda goob jirta" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Ma aadan ka dooran khariidadda goob jirta" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Ma aadan ka dooran khariidadda goob jirta" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Ma aadan ka dooran khariidadda goob jirta" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Tirada nambarrada telefoonka aad gelisay sax ma aha" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Telefoon nambarka aad gelisay horay ayuu u diiwaangashanaa suu u helo farriimo ku saabsan goobtaas" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Ma jiro telefoonka aad gelisay. Fadlan geli telefoon nambar sax ah, adigoo ku billaabaya furaha waddanka" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Waa inaad gelisaa telefoon nambarkaaga ama Emailkaaga" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Telefoon nambar ayaa loo baahan yahay haddii sanduuqu saxan yahay" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Gacan (radius) sax ah uma aadan hagaajin khariidadda" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Gacan (radius)uma aadan hagaajin khariidadda" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Furahan horey ayaa loo xaqiijiyay!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Furaha xaqiijinta lama helin! Fadlan hubi in URL-ku sax yahay" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Furahaaga waa la xaqiijiyay. Waxaad heli doontaa farriimaha isla marka ay dhacaan" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Si aad u xaqiijiso dalabkaaga farriimaha, fadlan booqo" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Dib ugu noqo bogga farriimaha si aad u samayso farriimo kaloo badan" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Dalabka farriimaha ee Emailkaaga waa la sameeyay, waxaana laguu soo diray farriin xaqiijin ah" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Fadlan geli furaha xaqiijinta Emailka ee aad hoos ku heshay" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Dalabka farriimaha Emailkaaga lama keydin!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Dalabka farriimaha Emailkaaga waa la keydiyay!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Mashiinku wuu awoodi waayay inuu soo saaro dalabkaaga xajiinta!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Dalabkaaga farriimaha mobile-ka waa la sameeyay, waxaana laguu soo diray farriin xaqiijin ah" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Fadlan hoos geli furaha xaqiijinta ee laguugu soo diray mobile-kaaga." + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Dalabka farriimaha Mobile-kaaga lama keydin!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Dalabka farriimaha Mobile-kaaga waa la keydiyay!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Qaabkaad wax u hagaajisay, si sax ah uma soo saari karo farriimaha." + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Waad heshay Emailkaan, maxaa yeelay adigaa codsaday inaad hesho farriimo joogta ah. Haddii aadan doonayn inaad hesho farriimaha, booqo" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Farriimo dambe ma heli doontid, laga bilaabo" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Waan awoodi weynay inaan kaa xirno farriimaheena. Fadlan hubi in URL-ku saxan yahay" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Xaqiijinta farriimaha" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Ma heli kartid farriimo ku saabsan goobtan adigoon xaqiijin dalabkaaga" diff --git a/application/i18n/po/po-so/auth.po b/application/i18n/po/po-so/auth.po new file mode 100644 index 0000000000..02362b9946 --- /dev/null +++ b/application/i18n/po/po-so/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Emailkaad gelisay sax ma aha" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Waan ka xunnahay, Emailkan horay ayaa account loogu sameeyay" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Emailkaagu waa inuu ka kooban yahay ugu yaraan afar xaraf, ugu badnaanna 64 xaraf" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Email waa lagama maarmaan" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Magaca oo dhamaystiran waa inuu ka kooban yahay ugu yaraan saddex xaraf, ugu badnaanna 100 xaraf" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Magaca oo dhamaystiran ayaa loo baahan yahay" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Magacaaga (Username) waxaa ku jira xuruuf aan la oggolayn" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Waa inuu password-ku yahay ugu yaraan 5 xaraf, ugu badnaanna 16 xaraf" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Fadlan geli Password isku mida labada god ee loogu talagalay passwordka" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Password ayaa loo baahan yahay" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Waa inay password-yadu is leeyihiin" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Emailkaad gelisay sax ma aha" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Waan ka xunnahay, ma hayno Emailkaaga" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Email ayaa loo baahan yahay" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Hannaanka xuruuftu sax ma aha" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Xuruuftu waa inay ka kooban tahay ugu yaraan 5 xaraf ugu badnaanna 30 xaraf" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Waa inaad qeexdaa ugu yaraan hal heer" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Waa inaad doorataa heerka ADMIN amaba heerka USER" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Heerka User ADMIN-ka waxba lagama beddeli karo" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "waan ka xunnahay, magaca Username-kan horay ayaa loo qaatay" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Magaca Username-ku waa inuu ka kooban yahay ugu yaraan 2 xaraf ugu badnaanna 16 xaraf" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Username ayaa loo baahan yahay" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Heerka super admin role waxba lagama beddeli karo" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-so/bug.po b/application/i18n/po/po-so/bug.po new file mode 100644 index 0000000000..1987f40312 --- /dev/null +++ b/application/i18n/po/po-so/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Fadlan geli security code sax ah" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Fadlan geli security code-ka" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Emailkaad gelisay sax ma aha" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email-kaagu waa inuu ka kooban yahay ugu yaraan afar xaraf, ugu badnaanna 64 xaraf" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email ayaa loo baahan yahay haddii sanduuqu saxan yahay" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Goobta khaladka ayaa loo baahan yahay" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Halka loogu talagalay in lagu qoro mawduuca (Subject)waa inaysan ka yaraan saddex xaraf" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Mawduuc(Subject)ayaa loo baahan yahay" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Magaca waa inuusan ka yaraan saddex xaraf" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Magac ayaa loo baahan yahay" diff --git a/application/i18n/po/po-so/category.po b/application/i18n/po/po-so/category.po new file mode 100644 index 0000000000..69cd44cdff --- /dev/null +++ b/application/i18n/po/po-so/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Goobta midabbada waa inaysan ka yaraan lix xaraf" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Goobta midabbada ayaa loo baahan yahay" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Goobta sharraxaad ka bixinta ayaa loo baahan yahay" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Fadlan iska xaqiiji in culeyska sawirka uusan ka badneyn 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Sawirka aad gelisay sax ma aha. Hannaan sawireedyadda la ogol yahay waa .JPG, .PNG iyo .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Fayl sax ah kuma jiro goobta sawirka" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Cinwaanku waa inuusan ka yareyn 3 xaraf, kana badnayn 80 xaraf" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Cinwaan ayaa loo baahan yahay" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Khaanadda weyn ma jirto" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Khaanadda weyn waa inay tiro ahaataa" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Goobta khaanadda weyn waa loo baahan yahay" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Khaanadaha faraca iyo khaanadda weyn isku mid ma noqon karaan" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-so/comments.po b/application/i18n/po/po-so/comments.po new file mode 100644 index 0000000000..4b652fd2d1 --- /dev/null +++ b/application/i18n/po/po-so/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Fadlan geli security code sax ah" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Fadlan geli security code-ka" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Magacu waa inuusan ka yareyn saddex xaraf" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Magac ayaa loo baahan yahay" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Farriin ayaa loo baahan yahay" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Emailkaad gelisay sax ma aha" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailkaagu waa inuu ka kooban yahay ugu yaraan 4 xaraf, ugu badnaanna 64 xaraf" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email ayaa loo baahan yahay haddii sanduuqu saxan yahay" diff --git a/application/i18n/po/po-so/contact.po b/application/i18n/po/po-so/contact.po new file mode 100644 index 0000000000..12d578503b --- /dev/null +++ b/application/i18n/po/po-so/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Fadlan geli security code sax ah" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Fadlan geli security code-ka" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email-kaad gelisay sax ma aha" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email-kaagu waa inuu ka kooban yahay ugu yaraan 4 xaraf, ugu badnaanna 64 xaraf" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email ayaa loo baahan yahay haddii sanduuqu saxan yahay" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Goobta farriimaha waa loo baahan yahay" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Magacu waa inuusan ka yareyn saddex xaraf" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Magac ayaa loo baahan yahay" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Cinwaanku waa inuusan ka yarayn saddex xaraf" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Cinwaan ayaa loo baahan yahay" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-so/core.po b/application/i18n/po/po-so/core.po new file mode 100644 index 0000000000..2e132d02ea --- /dev/null +++ b/application/i18n/po/po-so/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "so_SO: " + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "Maamule barnaamij Software" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "(Driver)Barnaamij Software ah oo awood u siiya inay aaladi shaqeyso" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Barnaamijka software-ka waa inuu sameeyaa isku xirka" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Barnaamijka Software-ka ee keydka faylashan waa la la'yahay" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Waxaad booqan kartaa home page or try again." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Dalabkaaga waa la dhamaystiri waayay" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "Caawiye" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Nooca faylka aad dalbatay, .%s, loogama ogola gudaha halka laga hagaajiyo faylka" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Hab khaldan %s la yiraahdo %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Habka %s lagama heli karo dabaqada %s" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "Keydka faylasha" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Log directory-ga lama qori karo: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "Hab" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi way soo saari wayday dalabkaaga: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Fadlan waxba haka beddelin habka config/routes.php." + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Bogga aad dalbatay lama heli karo" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Usheeg arintan Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "dalabka %s, %s,waa la waayay" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Tool-ka Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Waxaad heli kartaa hal Ushahidi dalabka bog kasta" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Lama helin %s: %s in file %s on line %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "Aragti" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Iska hagaaji magaca faylka ka hor inta aadan gudbin" diff --git a/application/i18n/po/po-so/database.po b/application/i18n/po/po-so/database.po new file mode 100644 index 0000000000..6f2591b1c7 --- /dev/null +++ b/application/i18n/po/po-so/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Khalad dhanka keydka xogta ah ayaa jira: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Warbixinta aad raadinayso waa laga waayay keydka xogta. Fadlan hubi inaad isticmaalayso keyd xogeed ku shaqeyn kara version-ka Ushahidi" diff --git a/application/i18n/po/po-so/datetime.po b/application/i18n/po/po-so/datetime.po new file mode 100644 index 0000000000..abcffd6266 --- /dev/null +++ b/application/i18n/po/po-so/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "a.m. (Waqtiga u dhexeeya saqda dhexe ilaa 12:00 duhurkii)" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Jimce" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Jimce" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Isniin" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Isniin" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "p.m. (Duhur kaddib)" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Sabti" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Sabti" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Axad" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Axad" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Khamiis" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Khamiis" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Talaado" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Talaado" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Arbaco" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Arbaco" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-so/feeds.po b/application/i18n/po/po-so/feeds.po new file mode 100644 index 0000000000..b83c171db4 --- /dev/null +++ b/application/i18n/po/po-so/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "Taariikhda" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Magaca xogta Feed-ku waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 70 xaraf" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Fadlan geli magaca xogta Feed-ka" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Fadlan geli URL-ka xogta Feed-ka" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Fadlan geli URL jira. Tusaale ahaan: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Asalka" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Cinwaan" diff --git a/application/i18n/po/po-so/footer.po b/application/i18n/po/po-so/footer.po new file mode 100644 index 0000000000..a53b8a8dc0 --- /dev/null +++ b/application/i18n/po/po-so/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "Isku xiraha php5-curl kuma rakibna mashiin-kaaga" diff --git a/application/i18n/po/po-so/form.po b/application/i18n/po/po-so/form.po new file mode 100644 index 0000000000..7032f7b1a2 --- /dev/null +++ b/application/i18n/po/po-so/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Magaca goobtu waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 200 oo xaraf" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Fadlan geli qiime u dhaxeeya 0-50 si aad u hagaajiso joogga goobta" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Sax maaha qiimaha aad gelisay goobta taariikhda" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Fadlan u dooro Haa ama Maya goobta taariikhda" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Magaca goobtu waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 200 oo xaraf" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Fadlan geli magaca goobta" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Waxaad goobta gelisay qiime khaldan" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Fadlan u dooro Haa ama Maya goobta loo baahan yahay" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Fadlan dooro nooc goob sax ah" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Fadlan dooro nooca goobta" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Fadlan geli qiime u dhaxeeya 0-300 si aad u hagaajiso ballaca goobta" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Fadlan geli sharraxaad ku saabsan foomka" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Foomka asalka ah (default) lama tiri karo" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Fadlan dooro foomka aad doonayso inaad ku soo darto goobtan" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Fadlan dooro foomka aad doonayso inaad ku soo darto goobtan" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Magaca foomka ee goobta waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 200 oo xaraf" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Fadlan geli magaca foomka" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-so/imap.po b/application/i18n/po/po-so/imap.po new file mode 100644 index 0000000000..183f6f6078 --- /dev/null +++ b/application/i18n/po/po-so/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Wuu furi waayay IMAP Stream" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Addeega Emailkan ma shaqeynayo" diff --git a/application/i18n/po/po-so/installer.po b/application/i18n/po/po-so/installer.po new file mode 100644 index 0000000000..0453d9aa4a --- /dev/null +++ b/application/i18n/po/po-so/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Waddada aasaaska ah" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Keydka xogta" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Martigeliyaha keydka xogta" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Haddii Ushahidi aad ka maamulayso computer-kaaga, computer-kaaga waxa uu noqonayaa \"Localhost\". Haddiise Ushahidi aad ka maamulayso computer-ka nooca web serverka, waxaad warbixinnada ka heleysaa shirkadda hosti gareyneysa boggaaga" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Magaca keydka xogta" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Magaca keydka xogta ee aad doonayso inaad ku maamusho Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Wixii faahfaahin ah, fadlan ku raadi link-gaan this article website sida faahfaahsan uga hadlayo keydadka xogta." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Luuqadda asalka ah" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Version kasta oo Ushahidi waxa uu la yimaadaa luuqado ku dhisan gudihiisa oo diyaar u ah in la turjumo. Waxaad ku dari kartaa luuqadaada hooyo " + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Awoodda ka xir" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Awood sii" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Waxaa hoos ku xusan warbixin kooban oo ku saabsan cilladaha aanu la kulannay" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Halka aad faylasha Ushahidi ka dhigtay Computerka Serverka. Waxaa noo soo baxay qiimahan, fadlan hubi inuu sax yahay. Haddii goobtu ay maran tahay, ha welwelin, Ushahidi waxay ku rakiban tahay khaanadda kore" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Dhammaystiran" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Guud ahaan" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Qof kasta waa uu heli karaa furaha api. Hel kaaga hadda" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Dib u noqo" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "Rakibaad horumarsan" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Waxaad qaabka loo hagaajiyo ka heli kartaa adigoo raacaya hannaanka 5-ta tallaabo. Waxaa 5-ta hannaan ka mid ah computerka Server-ka, khariidadda, magaca bogga iyo halka lagala xiriirayo" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "Rakibaadda aasaaska ah" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Rakibaaddu waa ay fududdahay, waana deg-deg. Keliya waxaad u baahan tahay waddada lagu galo boggaaga iyo warbixinta keydka xogtaada" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr " sii wad" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Ku soo dhawow hannaanka rakibaadda Ushahidi ee server-ada. Hoos ka dooro nooca rakibaadda aad jeclaan lahayd inaad computer-kaaga ku rakibto" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Rakibaaddu si fiican ayay u dhammaatay" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Martigeliyaha mail Server-ka" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Tusaaleyaal: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Password-ka Mail Server-ka" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Password-ka aad sida caadiga ah ugu gasho email-kaaga" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Ports-ka caadiga ah: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr " Nooca mail Server-ka" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "en_US: Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Username-ka lagu galo Mail Server-ka" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Haddii aad isticmaalayso Gmail, Hotmail, ama Yahoo Mail, u isticmaal Emailkaaga oo dhamaystiran magaca aad ku galayso" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Khariidad" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Khariidad bixiye" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi si siman ayay ula shaqeysaa afarta khariidad bixiye: Google, Bing, Yahoo ama Open Street Map. Dooro midda ay ku jirto faahfaahin ku saabsan goobta aad ku sugan tahay" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Wadiiqooyin kale..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Password-ka keydka xogtaada" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Hore" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Fadlan dib u soo kici Server-kaaga Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Awood sii ama awoodda ka xir SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Qaar ka mid ah Mail Servers-ku waxay ku siinayaan dookha ah inaad isticmaasho SSL marka aad sameyneyso xiriirin. Addeegsiga SSL waa uu fiican yahay maadaama uu ku siinayo amni dheeraad ah" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Rakib Server-kaaga SMS-yada" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Cinwaanka Emailka ee bogga" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Ciwaanka Email-ka farriimaha ee bogga" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Marka booqdaha boggaaga uu iska diiwaangeliyo farrimaha E-mailka, waxay farriimaha ka heli doonaan cinwaankan. Waa inuusan cinwaanka Emailkan la mid noqon cinwaanka Emailka bogga" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Email-ka bogga waxaa lagu xiriirin doonaan cinwaankan" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Magaca bogga." + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Magaca boggaaga" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Tagline-ka bogga" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Tagline kaaga" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Faylasha iyo galalka hoos ku xusan waxay u baahan yihiin in lagu qoro webserver-kaaga" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Waxaa halkan ku qoran tilmaamaha marka la beddelayo ogolaashaha faylasha:

\nso_SO: " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Ka hor intaadan billaabin, waxaad u baahan tahay inaad xaqiijiso in faylasha iyo galalka soo socda lagu qori karo webserver-kaaga. Waxaa ku jira bedbeddellada ogolaanshaha faylka" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Fadlan waa inaad haysataa tilmaamahan marka aad rakibayso" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Horgallaha jadwalka" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Ha beddelin horgalaha jadwal-ka. Inkastoo, aad beddeli karto marka aad doonayso inaad hal xog keydiyo kana kiciso dhowr rakabitaan" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Mowduuc" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Haddaad rabto inaad gasho, aad" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "U dir xogta report-ka server-ka" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Username-ka keyd xogeedkaaga" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "Isticmaal caddeymaha soo socda" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Booqo boggaaga" diff --git a/application/i18n/po/po-so/layer.po b/application/i18n/po/po-so/layer.po new file mode 100644 index 0000000000..8c33da8682 --- /dev/null +++ b/application/i18n/po/po-so/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Goobta midabku waa inay ahaataa ugu badnaan 6 xaraf" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Goobta midabka ayaa loo baahan yahay" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Goobta faylka kuma jiro fayl sax ah. Hannaan fayleedka la aqbali karo waa .KMZ, .KML keliya" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Faylku waa khaldan yahay" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Magacu waa inuu ka kooban yahay ugu yaraan saddex xaraf, ugu badnaanna 80 xaraf" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "magac ayaa loo baahan yahay" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "URL-ka KML ama fayl ayaa loo baahan yahay" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Ma wada socon karaan fayl KML ah iyo URL KML ah" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Fadlan geli URL sax ah. Tusaale http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-so/libraries.po b/application/i18n/po/po-so/libraries.po new file mode 100644 index 0000000000..a84cc430d0 --- /dev/null +++ b/application/i18n/po/po-so/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Kuma xirmi karo Server-ka akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "jawaabta ka imaaneysa akismet lama heli karo" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Keydka xogta ee API lama heli karo: %s, for the %s. Fadlan iska hubi API Routing Table-ka" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Furahaaga Server-ka Akismet API ma ahan mid jira" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Cillad ayaa dhacday. Fadlan hubi in isku xiraha PHP uu leeyahay taageerka OpenSSL iyo in Version-ku ka wayn yahay 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Farriinta Unicode-kaagu aad bay u dheer tahay. (Dhererka haatan=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Fadlan caddee cinwaanka loo dirayo!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Fadlan caddee cinwaanka laga dirayo!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Farriinta Unicode-kaagu aad bay u dheer tahay! (Dhererka haatan=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Khalad xagga diridda ah ayaa jira!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Keydka xogta ee API % waa khalad. Dhammaan keydadka xogta waa inay hoos yimaadan %" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Galka %s lama tiri karo" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Cillad ayaa dhacday: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Soodejinta version-kii u dambeeyay ee Ushahidi waa uu guuldarreystay. HTTP status Code" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Faylka %s waa la badin kari waayay" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Faylka %s waa la tiri waayay" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Script-ga casriyeynta Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Faylka zip-ka ah ee la soo dejiyay ee Ushahidi %s, waa la qori waayay" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-so/maintenance.po b/application/i18n/po/po-so/maintenance.po new file mode 100644 index 0000000000..922729bf70 --- /dev/null +++ b/application/i18n/po/po-so/maintenance.po @@ -0,0 +1,18 @@ +#. extracted from en_US/maintenance.php, so/maintenance.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: so\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-so/message.po b/application/i18n/po/po-so/message.po new file mode 100644 index 0000000000..f42dfb3c44 --- /dev/null +++ b/application/i18n/po/po-so/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Fadlan geli security code sax ah" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Fadlan geli security code-ka" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email-kaad gelisay sax ma aha" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Emailku waa inuu ka koobnaadaa ugu yaraan 4 xaraf ugu badnaanna 64 xaraf" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Email ayaa loo baahan yahay hadduu sanduuqu saxan yahay" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Faallooyin ayaa loo baahan yahay" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Magacu waa inuu ka koobnaadaa ugu yaraan 3 xaraf" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Magac ayaa loo baahan yahay" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Telefoonku ma ahan mid sax ah" diff --git a/application/i18n/po/po-so/mhi.po b/application/i18n/po/po-so/mhi.po new file mode 100644 index 0000000000..cc8600345f --- /dev/null +++ b/application/i18n/po/po-so/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Fadlan geli security code sax ah" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Fadlan geli security code-ka" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email-ka aad gelisay sax ma aha?" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Fadlan keen cinwaan email sax ah" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Farriin ayaa loo baahan yahay" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Mawduucu waa inuu ka kooban yahay ugu yaraan 3 xaraf" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Mawduuc ayaa loo baahan yahay" diff --git a/application/i18n/po/po-so/notifications.po b/application/i18n/po/po-so/notifications.po new file mode 100644 index 0000000000..856c878480 --- /dev/null +++ b/application/i18n/po/po-so/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Farriintaan waxaa laga soo diray boggaaga" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Ku-gelidda Administrator-ka" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Farriin cusub ayaa loo gudbiyay boggaaga taasoo jawaab u ah:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Farriin cusub" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Farriin cusub oo Email ah ayaa loo gudbiyay boggaaga" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Farriin cusub oo Email ah" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Warbixin cusub ayaa loo gudbiyay boggaaga" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Warbixin cusub" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Farriin qoraaleed cusub ayaa loo gudbiyay boggaaga" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Farriin qoraaleed cusub" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-so/page.po b/application/i18n/po/po-so/page.po new file mode 100644 index 0000000000..32d509a1c8 --- /dev/null +++ b/application/i18n/po/po-so/page.po @@ -0,0 +1,33 @@ +#. extracted from en_US/page.php, so/page.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: so\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-so/permissions.po b/application/i18n/po/po-so/permissions.po new file mode 100644 index 0000000000..c2f7b63d29 --- /dev/null +++ b/application/i18n/po/po-so/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-so/private_message.po b/application/i18n/po/po-so/private_message.po new file mode 100644 index 0000000000..cc261d44c9 --- /dev/null +++ b/application/i18n/po/po-so/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, so/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: so\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-so/report.po b/application/i18n/po/po-so/report.po new file mode 100644 index 0000000000..9e106e886d --- /dev/null +++ b/application/i18n/po/po-so/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "so_SO:" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Fadlan dooro shay jira si aad ugu darto qeybaha aad soo roganeysid." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Fadlan dooro shay jira si aad ugu darto qeybaha aad soo roganeysid" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Fadlan dooro warbixin jirta si aad ugu darto qeybaha soo rogashada" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Fadlan dooro warbixin jirta si aad ugu darto qeybaha soo rogashada" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "fadlan dooro warbixin jirta si aad ugu darto qeybaha soo rogashada" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Goobta FROM date-ka sax ma ahan." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Fadlan geli taariikhda waqtiga la soo diray. Maanta wax dhaafsan yeysan noqon." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Fadlan geli qiime sax ah sii loo aqbalo Warbixintan." + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Fadlan geli qiimeyn sax ah si loo aqbalo warbixintan" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Goobta a.m/p.m kuma jiro qiime sax ah." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Goobta category kuma jiro qiime sax ah." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Qeybta category ayaa loo baahan yahay." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Taariikhdu ma ahan mid sax ah?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Taariikhdu ma ahan mid sax ah?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Taariikhda ayaa loo baahan yahay" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Goobta sharraxaad ka bixinta ayaa loo baahan yahay." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Saacaddu ma ahan mid sax ah?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "saacadda ayaa loo baahan yahay" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Fadlan geli qiime sax ah si loo sugo xogta sida wax u dhacayaan" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Fadlan geli qiime sax ah." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Goobta daiiqada kuma jiro qiime sax ah?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Daqiiqaddo ayaa loo baahan yahay." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "URL sax ah kuma jiro?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Fadlan hubi in sawirka aad gelinayso uusan ka weyneyn 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Sawirku ma ahan mid sax ah. waxaa la ogol yahay oo kaliya JPG, .PNG, iyo .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "sawirku ma ahan mid sax ah." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Fadlan geli qiime sax ah." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Fadlan geli qiime sax ah." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Cinwaanka Qoraalka waa inuu ahaadaa ugu yaran 3 xaraf ugu badnaana 200 xaraf." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Ciwaanka Qoraalka ayaa loo baahan yahay" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Fadlan geli qiime sax ah si warbixintan loo aqbalo." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Fadlan geli qiime sax ah si loo xaqiijiyo warbixintan." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "URL-ka Video-gan sax ma aha." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Xarriiqda loolku ma ahan mid sax ah." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Waxaa loo baahan yahay xariiqda loolka. Fadlan ka guji khariiradda meel si aad u tilmaantid goob. " + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Goobtu malahan qiime sax ah." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Warbixintan horaa loogu turjumey luuqaddan." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Goobtu ma lahan qiime sax ah." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Warbixinta hore iyo turjumiddu waa hal luuqad." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Goobta ayaa loo bahan." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Magaca goobtu waa inuu ugu yaraan ahaadaa 3 xaraf ugu badnaana 200 xaraf." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Magaca goobta ayaa loo baahan yahay." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Qiime sax ah kuma jiro." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Goobta Longitude ayaa loo baahan yahay. Fadlan guji khariidada si aad u doorato goob ka mid ah khariidada." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Email-ka aad gelisay sax ma aha." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Email-ku waa inuu ahaadaa ugu yaraan 4 xaraf ugu badnaana 64 xaraf" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Magaca hore waa inuu ahaadaa ugu yaraan 3 xaraf ugu badnaana 10 xaraf." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Magaca dambe waa inuu ahaadaa ugu yaraan 3 xaraf ugu badnaana 100 xaraf." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Waqtiga loo direy ma ahan sax." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Fadlan geli waqtiga loo direy oo sax ah. Yeysan noqon maanta mid dhaafsiisan" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Waqtiga soo diray waa inuusan ka waynayn waqtiga loo diray" diff --git a/application/i18n/po/po-so/reporters.po b/application/i18n/po/po-so/reporters.po new file mode 100644 index 0000000000..aff593e91f --- /dev/null +++ b/application/i18n/po/po-so/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Xarriiqda loolku (latitude)sax ma aha?" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Xarriiqda loolka (latitude) ayaa loo baahan yahay. Fadlan guji khariidada si aad goob u tilmaanto." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Goobta Reporter Level-ka kuma jiro Level sax ah." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Goobta Reporter Level-ka kuma jiro Level sax ah." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Magaca goobtu waa inuu ahaadaa ugu yaraan 3 xaraf, ugu badnaana 200 xaraf." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Magaca goobta ayaa loo baahan yahay." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Goobta longitude-ku ma lahan longitude sax ah?" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Goobta longitude ayaa loo baahan yahay.Fadlan guji khariidada si aad u tilmaantid goob. " + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Soo tebiyuhu sax ma aha." + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Soo tebiyuhu sax ma aha." diff --git a/application/i18n/po/po-so/reports.po b/application/i18n/po/po-so/reports.po new file mode 100644 index 0000000000..36401fd5d4 --- /dev/null +++ b/application/i18n/po/po-so/reports.po @@ -0,0 +1,33 @@ +#. extracted from en_US/reports.php, so/reports.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-15 04:40+0000\n" +"PO-Revision-Date: 2012-08-15 04:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: so\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-so/roles.po b/application/i18n/po/po-so/roles.po new file mode 100644 index 0000000000..fbf994013f --- /dev/null +++ b/application/i18n/po/po-so/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Goobta sharraxaadu waa inay ka kooban tahay ugu yaraan 3 xaraf, ugu badnaana 100 xaraf." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Goobta sharraxaada waa loo baahan yahay." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Goobta magaca waa inay ka kooban tahay kaliya xarfo iyo tiro." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Magaca goobtu waa inuu ka kooban yahay ugu yaraan 2 xaraf, ugu badnaana 30 xaraf." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Heerka SuperAdmin waxba lagama bedeli karo." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Magaca goobta waa loo baahan yahay." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-so/settings.po b/application/i18n/po/po-so/settings.po new file mode 100644 index 0000000000..a728eb8a2d --- /dev/null +++ b/application/i18n/po/po-so/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Qiimaha ku jira goobta allow comments sax ma aha?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Goobta allow comments waa loo baahan yahay." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Goobta include feed kuma jiro qiime sax ah?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Goobta include feed waa loo baahan yahay." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Goobta allow reports kuma jiro qiime sax ah?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Goobta allow reports waa loo baahan yahay." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Goobta stat sharing kuma jiro qiime sax ah?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Goobta stat sharing field waa loo baahan yahay." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Rikoodhyada lagu soo saarayo halkii dalab ee API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Rikoodhyada ugu badan ee lagu soo saarayo halkii dalab ee API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Tirada ugu badan ee dalabyada API ee halkii IP address." + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Goobta Akismet field kuma jiro qiime sax?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Goobta Akismet kuma jiro qiime sax ah?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Goobta boggaga cache waa loo baahan yahay." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Goobta boggaga cache kuma jiro qiime sax ah?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Goobta boggaga cache pages lifetime field kuma jiro qiime sax ah?" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Goobta boggaga cache pages lifetime waa loo baahan yahay." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Waxay u muuqataa in Server-kaagu uusan u sameysnayn inuu ku shaqeeyo URLs nadiif ah. Waxaad u baahan tahay inaad wax ka bedesho settings-ka server-kaaga kahor inta aadan awood siinin URLs-yada nadiifka ah (Clean URLs). Waxaad halkan ka akhrisaa warbixin dheeraad ah oo ku saabsan sida loo awood siiyo clean URLs post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Amarkaan waxa uu awood kuu siinayaa in Ushahidi laga geli karo \"clean\" URLs-yada. Iya" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Awood sii Clean URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "URLs nadiif ah (Clean URLs)" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "tirada Clickatell API waa inaysan ka badnayn 20 xaraf." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Goobta tirada Clickatell API waa loo baahan yahay." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Password-ka Clickatell waa inuu ka kooban yahay ugu yaraan 5 xaraf, ugu badnaana 50 xaraf." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Goobta password-ka Clickatell waa loo baahan yahay." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Goobta username-ka ee Clickatell waa inaysan ka badnayn 50 xaraf." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Username-ka Clickatell ayaa loo baahan yahay." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Habbee khariidada." + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Goobta asalka ah." + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Goobta midabadda ee Feed-ka kuma jiro qiime sax ah?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Goobta midabadda waa inaysan ka yarayn 6 xaraf." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Goobta middabada ayaa loo baahan yahay." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Aragtida khariidada asalka ah." + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Heerka weyneynta" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Kala soo bax magaalooyinka Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Goobta port Mail server-ka aad buu u dheer yahay." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Goobta port Mail server-ka waa inay ka kooban tahay tiro kaliya." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Goobta password-ka ee Mail Server-ka waa inuu ka kooban yahay ugu yaraan 5 xaraf, ugu badnaana 50 xaraf." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Goobta password-ka Mail Server-ka waa loo baahan yahay." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Goobta port Mail Server-ka aad bay u dheer tahay." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Goobta port Mail Server-ku waa inay ka kooban tahay tiro kaliya." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Goobta Mail Server port-ku aad bay u dheer tahay." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Goobta nooce ee Mail Server-ka waa loo baahan yahay." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Goobta Username-ka ee Mail Server-ku waa inaysan ka badnayn 50 xaraf." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Username-ka Mail Server-ka waa loo baahan yahay." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Goobta Google Anayltics waa inay ku jirtaa Web Property ID hannaankeedu " + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Goobta Frontend kuma jiro qiime sax ah?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Goobta Frontend ayaa loo baahan yahay." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Goobta Admin kuma jiro qiime sax ah?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Goobta Admin ayaa loo baahan yahay." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Hagaajinta khariidad bixiyaha waa hawl fudud. Dooro bixiyaha khariidada, ka hel fure API khariidad bixiyaha boggiisa, kadib geli furaha API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Heerka weyneynta" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Dooro khariidad bixiye" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Geli fure cusub oo API ah." + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Hel fure API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Hagaajinta khariidad bixiyaha waa hawl fudud. Dooro bixiyaha khariidada, ka hel fure API khariidad bixiyaha boggiisa, kadib geli furaha API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Khariidad bixiye" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Hagaajinta khariidada" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Miyay rakibidda Ushahididan kala fogeyneysaa wadamada." + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Fadlan dooro dalka loogu talagalay." + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Guji oo jiid khariidada si aad u cayimato goobtaada saxda ah." + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Warbxinadda Clusters-ka ee khariidada." + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "U ogolow isticmalayaasha inay fikradahooda ku soo gudbiyaan warbixinadda." + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "RSS News Feed ku dar boggaaga." + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "u ogolow isticmaalayaasha inay soo gudbiyaan warbixinno." + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Furaha Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Boggaga Cache" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Boggaga Cache xiligooda" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Xuquuqda dhowrsanaanta bogga" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Middabka loogu talagalay dhamaan categories-ka." + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Soo bandhig bogga xiriirka" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Soo bandhig bogga \"Sida loo caawiyo\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Cinwaanka Email-ka ee farriimaha" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Si aad warbixinadda ugu hesho Email-kaaga, fadlan wax ka bedel setting-ka Email-kaaga." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Cinwaanka Email-ka ee bogga" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "ID-ga Web Property- Hannaanka: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Xogta halkii boggba - wajahada hore" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr " Xogta halkii boggba- Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr " Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Caddeymaha Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Bogga Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Luuqada bogga" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Farriinta bogga" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Magaca bogga" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Awood sii Statistics-ka (ee ku keydsan server-ka Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Site Tagline-ka" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Hagaajinta bogga" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Shuruudaha baarista Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Ku kala sooc hakadyo" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Goobta Email-ka bogga kuma jiro Email sax ah?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Goobta Email-ka bogga waa inay ka kooban tahay ugu yaraan afar xaraf, ugu badnaan 100 xaraf." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Goobta magaca bogga waa inay ka kooban tahay ugu yaraan afar xaraf, ugu badnaan 100 xaraf." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Goobta magaca bogga ayaa loo baahan yahay." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Goobta Tagline-ku waa inay ka kooban tahay ugu yaraan saddex xaraf, ugu badnaana 100 xaraf." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Goobta Tagline ayaa loo baahan yahay." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Nambarkaaga API Clickatell-ka" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Iska hubi lacagta kuugu harsan Clickatell-kaaga" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Lacag ku shub" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Password-ka Clickatell." + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Iska diiwaangeli addeega Clickatell clicking here" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Waxaad hoos gelisaa warbixinta awooda kuu siinaysa inaad gasho Clickatell." + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Username-ka aad ku leedahay Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Geli hoos nambar telefoon ku xiran Frontline SMS" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Geli hoos nambar aan wadan calaamada + amaba jiitin intaba." + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Dookha koowaad: Isticmaal farriimaha Frontline" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Dookha labaad: Isticmaal farriimaha Global SMS Gateway." + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Hababka loo rakibo SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Goobta telefoonka 1-aad kuma jiro qiime sax ah?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Goobta telefoonka 1-aad waa inay ka kooban tahay tiro kaliya." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Goobta telefoonka 2-aad aad bay u dheer tahay." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Goobta telefoonka 2-aad waa inay ka kooban tahay tiro kaliya." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Goobta telefoonka 3-aad aad bay u dheer tahay." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Goobta telefoonka 3-aad waa inay ka kooban tahay tiro kaliya." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-so/sharing.po b/application/i18n/po/po-so/sharing.po new file mode 100644 index 0000000000..67a5912c5a --- /dev/null +++ b/application/i18n/po/po-so/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Taariikhda lagu daray." + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Taariikhda lagu daray." + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Daalacashadii ugu dambeysay." + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Goobta midabku waa iney ahaataa ugu badnaan 6 xaraf." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Goobta midabka ayaa loo bahan yahay." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Magac-wadaaggu ma ahan mid sax ah?" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Magaca-wadaagga ayaa loo baahan yahay." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "so_SO:" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL-ku maahan mid sax ah." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "URL-ka bogga ayaa loo bahan yahay." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "URL-ka boggu ma ahan mid sax ah." diff --git a/application/i18n/po/po-so/stats.po b/application/i18n/po/po-so/stats.po new file mode 100644 index 0000000000..d4fae0722e --- /dev/null +++ b/application/i18n/po/po-so/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "so_SO:" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Qeybaha." + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Saameynta qeybaha." + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Jadwalkan wuxuu kuu sahlayaa inaad daalacatid warbixinnada waqtiyadii gudbay adigoo ku salaynaya qeyb qeyb, hoos u daji xarriijinta adigoo ka bilaabaya dhanka bidix aadayana dhanka midig si aad u daalacatid qeybaha kale ee la midka ah, Mouse-ka dul saar si aad faahfaahin dheeri ah uga heshid." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Dooro taariikh taxan." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Wadamada" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Wadanka" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Qeybaha wadanka." + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Hoodi! halkani waa qeybta tiro koobka, Faahfaahin guud ayaa halkan kasoo socota, Haddase daalaco adigoo isticmaalaya qeybaha kore." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Khalad" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Liiska Magacyada" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legend." + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Inta jeer oo bogga la booqday." + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Tirada guud ee boggaga ay soo booqdeyaashu ka daalacdeen boggaaga." + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Warbixinnada." + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Qeybaha warbixinnada." + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Tiro koobka warbixinnada." + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Heerka warbixinnada." + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Isku qaska warbixinnada." + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Tiro koobka warbixinnada." + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Lama hagaajin tiro koobka." + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "Hal bil." + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "Saddex bilood" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "Lix bilood." + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Dhammaan." + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Lama aqbalin." + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Soo booqdayaasha gaarka ah." + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Tirada shakhsiyaadka kusoo biiraya rakibitaankaaga: Soo booqdayaasha gaarka ah waxaa lagu go'aansadaa iyadoo la isticmaalo Cookies, haddii isticmaalaha uusan u shaqeyneyn Cookies-ku waxaa lagu ogaanayaa iyadoo la isticaalo heuristic iyadoo lala socdo IP address-ka, resolution, browser, plugins, OS, iyo wixii la mida" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "La ansixin ." + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "La ansixiyey." + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Warbixin kooban oo ku saabsan soo booqdayaasha." + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Booqashada." + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Visit waa rikoodhka sheega booqdayaasha boggaaga, kuwaasoo in ka badan 30 daqiiqo ku waara daawashada bogga." diff --git a/application/i18n/po/po-so/tooltips.po b/application/i18n/po/po-so/tooltips.po new file mode 100644 index 0000000000..023f22b0b1 --- /dev/null +++ b/application/i18n/po/po-so/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Cinwaanka email-kaaga." + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Magacaaga oo buuxa." + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Haddii aad dooratid HAA waxay kuu sahleysaa inaad ku heshid farriimo emailkaaga marka faallooyin cusub loo gudbiyo boggaaga." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Password-kaaga. Meshaan sideeda bannaan uga tag haddaa rabtid inaad password-kaaga aad hadda leedahay weli sii isticmaasho" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Username-kaaga lama badeli karo." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Emailkaani waa kan loo isticmaali doono in lagu diro farriimaha email-ka" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Kani wuxuu ogolaadaa in hal guntin laysugu xiro warbixinnada isku midka ah." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "U ogolow isticmaalayaashu iney faallo ka bixiyaan warbixinnadda bogga hore." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Kani wuxuu u ogolaadaa RSS news feeds-ka in lagu soo bandhigo bogga hor." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "U ogolow isticmaalayaashu iney xog ku gudbiyaan form-ka bogga" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Tirada caadiga ee diiwanada lagu keenayo codsiga API kasta" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Tirada ugu badan ee diiwaanka lagu keenayo codsiga API kasta" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Tirada ugu badan ee Codsiga API ee halkii IP address-ba" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Shaqa geli ama jooji boga caching-ka. tani waxay dadajisaa waqtiga uu bogga ku kaco, waxaa naga talo ah in aad u isticmaasho caching-ka bogagga sida baaxadda leh loosoo boogdo, **Xusuusnow warbixinnada waxaa lagusoo qubi doonaa dhinaca hore iyadoo lagu salaynayo jadwalka aad hoos ku hagaajisey," + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "hagaaji inta uu shaqeynayo cache-ku" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "U hagaaji khariiradda goob khaas ah." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "U hagaaji hal color code dhammaan qeybaha bogga." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Kani waa wadanka lagu rakibayo bogga." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Daar ama demi Contact Tab-ka bogga hore." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Xir ama Fur Help Tab-ka bogga hore." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Tani waa tirada warbixinnada boggiiba oo lagu bandhigay bogga hore. " + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Tani waa tirada warbixinnada boggiiba oo lagu bandhigay amid Back End." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Tani waa hub-ka farriimaha soo dhacaya." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Kani wuxuu isku mar dhaqaajiyaa farriimaha hub-ka Ushahidi platform" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Nambarada telefoonada lagu heliyo farriimaha." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Raad raaca dadka soo booqda boggaaga, Hel statistics-ka dadka soo booqda boggaaga oo faahfaahsan." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Wuxuu hagaajiyaa luuqadda loo isticmaali doono boggaaga." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Kani wuxuu qeexaa khariiradda loo isticmaali doono bogga." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Halkani waa meesha emailadu ku jiraan." + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Kani waa password-ka emailka helaya warbixinnada " + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Kan waa loo baahan yahay si loo aqbalo connections-ka ka imaanaya emailka" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Kan waa loo bahan yahy si loo kobciyo connection secure ah" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Kan waa loo baahan si dib loogu helo emailada ku jira host server-ka" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Kani waa emailka ay kusoo dhacaan warbixinnadu." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Hit Statistics-ka waxaa lagu keydiyaa Server ay xukunto Ushahidi. haddii ha hawl geliyo arrintaan, waxaa si toos ah uga daalacaneysaa admin panel-kaaga hit statistics-ka .haddii hawlgab laga dhigana. waxaa istaagaya arruurinta statistics-ka awoodna uma yeelanayo inuu dib usoo celiyo traffic stats-ka la aruuriyo marka uu dansan yahay." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Mar walba waxaa habboon inaad sheegatid xuquuqda dhowrsoon ee shaqadaada. Si lagaa caawiyo baahidaad aad ku helayso license sax ah, booqo http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Kani waa emailka ay kusoo dhacayaan farriimaha iyo warbixinnada ku imaanaya contact form-ka" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Kani waa farriin qoraaleedka ka muuqan doona khariiradda homepage-ka korkeeda. Kani wuxuu waxtar u yahay in xoggaha muhiimka ah loo gudbiyo dadka soo booqda bogga. Si aad uga saartid sanduuqa. ka tirtiri farriinta halkan." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Kani waa magaca bogga ka muuqda qeybta kore ee bogga weyn (manin site)" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Sharrax wuxuu yahay boggani adigoo adeegsanaya erayo kooban." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Hagaaji Twitter hashtag-ga loo isticmaali doono tweet." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-so/ui_admin.po b/application/i18n/po/po-so/ui_admin.po new file mode 100644 index 0000000000..e5b9f34cd2 --- /dev/null +++ b/application/i18n/po/po-so/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Wuu geli waayay. Cadaymahaaga ayaanan sax ahayn ama dalabkaaga ayaa la diiday." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Wuu geli waayay. Waa la fahmay dalabkaaga, balse waa la diiday. Fadlan dib ugu soo noqo." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Ficiladda" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "Waa lagu daray" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "Waa lagu daray/wax baa laga bedelay" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API waa la mamnuucay" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Gelitaanka API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Hagaajinta API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Ka qaad mamnuucidda" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Ka qaad mamnuucidda dhamaantood" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "Waa la ogolaaday" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Waa la keydiyay" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Qoraa" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Emailka qoraaga" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Dib" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Mamnuuc IP-ga" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Categoriyada" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Jadwal soo bandhiga cilladaha." + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Fadlan iska xaqiiji in farriintaadu saxan tahay." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Fadlan iska xaqiiji in nambarku saxan yahay." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Fadlan iska hubi setting-ka fariimaha!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Magaalooyinka w" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "Fure" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr " Code version out of sync." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Fikradaha" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Furahaaga xaqiijinta ee farriimaha waa:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Isticmaalaha waa" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Wadanka waa la heli waayay" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "La sameeyay/wax laga bedelay" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Samee warbixin" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Casriyeen muhiim ah" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Maalinle" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "Keydka Xogta" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Taariikhda & Waqtiga" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "Waa la tiray" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Tir" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Sharraxaad" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Soo dejiso warbixinnada" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Waxaa wax ka bedelay" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Wax ka bedel" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Wax ka bedelin Log-ga" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Cillad dhanka geocoding-ka ayaa soo ifbaxday! Cillad HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Keydka xogta ee IMAP PHP kuma rakibna computerkaaga." + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Cillad" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Cillad: Ma awoodo inuu daabaco dhacdo" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Lix saac kasto" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "12 saac kasto" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Su'aalaha badanaaba la isweydiiyo" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "Feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Natiijo" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "Feeds" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Qiimaha caadiga ah (default)" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Dhererka (safafka)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Dhererka ugu badan ee xarfaha" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Goobta magaca" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Lama heli karo faylka la geliyay server-ka" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Faylka wuu furmi waayay." + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Foomkaas ma ahan mid jira!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Goobta qoraalka (qoraalka)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Ka " + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Ka" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Cillad xagga Geonames-ka" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Caawimaad dalbo" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Ficillada" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Wax ku dar/wax ka bedel" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Maamulidda isticmaalayaasha" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Heer" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Isticmaale" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "Caawimaad" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Saacadle" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Dhacdada" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Dhacdo" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Dhacdooyin" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Faahfaainta dhacdada" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Xudduud khaldan" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP address" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Tani ma goob taariikh baa?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Cinwaanka Email-ka" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Magaca oo dhamaystiran" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Heer:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Username" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Lakabyadda" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Dhexdhexaadiye" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Ka bax" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Maamul" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Maamul heerarka iyo rukhsooyinka" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Arag isticmaalayaasha" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Ku dar/bedel isticmaalayaasha" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "Looma calaamadayn sidii E-mail aan la rabin (spam)" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "Loo calaamadeeyay sidi E-mail aan rabin (spam)" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "Ma shabbaho wax dukumintiyada ka mid ah" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Farriin" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Farriimaha" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Fariimaha Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Farriimaha Twiter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Farriintaada waa la diray!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Daqiiqado" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Xuduud maqan" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Dhexdhexaadiye" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "Wax laga bedelay" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "Hoos u dag" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "Kor u bax" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Dhacdooyin la martigeliyay" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Muuqaalkayga" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Password cusub" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Maya" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Ogeysiin" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Ma ahan case sensitive (waa isku mid xarfaha yar yar iyo kuwa waa weyn intaba)" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Lama helin" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Ma jirto wax natiijo ah oo la muujin karo." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Cillad ma jirto" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Ma jirto wax natiijo ah oo la soo bandhigo!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "Bog" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "Boggag" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Bogga lama helin" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Xuduudaha la addeegsaday" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Password bedelid" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Qaali" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Waan helnay dalabkaaga ku aadan beddelida password-ka" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Si aad u bedesho password-ka, fadlan guji link-ga hoose (ama inta koobiyeyso, dhig browserkaaga)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Beddelida password-ka Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Habka daabacaadda lagu soo dirin xogta." + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "Akhri" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Khuseeya" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Weriyayaal" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Heerarka weriyayaasha" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Warbixinno" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Waa loo baahan yahay" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Iska bedel" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Natiijooyinka" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Keydi setting-ka" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Raadi" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "Waxa uu raadinayaa" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "Dooro nooca Goobta" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Fadlan wax dooro" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Dire" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Waxaa farriintan laga diray boggaaga" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Hagaajinta setting-ka" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Bogga muuqda" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Natiijooyinka muuqda" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistics" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Ururinta tirada waa ay fashilantay! Waxbaa ka khaldan server-keena ama qaabka aad Ushahidi u rakibtay ayaa khaldan. Mar kale isku day inaad na soo booqato si aad u ogaato in server-ka uu si fiican u shaqeynayo. Haddii aad doonayso inaad bedesho stats-ka, bedel stat-id-ga (dooro Eber)iyo stat-key (dooro Eber) adigoo ku dhex jira shaxanka keydka xogtaada. Digniin: Waxaa kaa lumayo gelitaanka statistics-kaaga haddii aad sidan sameyso!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Ururinta tirada waa ay fashilantay!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Hawsho si fiican ayaa loo gutay" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Goobta qoraalka" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Magaca" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Maamul isticmaalayaasha" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "Ku" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Dhamaan Rikoodhyada" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "Ku" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Turjun warbixinnada" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "Lama ansixin" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Lama garanayo" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "Aan la akhrin" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Guji halkan si aad u casriyeyso" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Casriye Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Casriye darajada Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Geli warbxinnada" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Isticmaalayaasha" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Version-ka" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "Waxa uu diyaar u yahay in la casriyeeyo" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Booqo bogga" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Soo dhowoow," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Haa" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Raadinta ku saabsan" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-so/ui_main.po b/application/i18n/po/po-so/ui_main.po new file mode 100644 index 0000000000..9ed0bcacf7 --- /dev/null +++ b/application/i18n/po/po-so/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Ku saabsan." + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Awood kii siinaya inaad gasho." + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Magaca account-ga." + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Ficillada." + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ficilkan lagama noqon karo, ma hubtaa inaad rabtid inaad sii wado." + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Hawl geli." + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Shaqeynaya." + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Ku dar." + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Waxaa ku daray." + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Warbixinno dheeraad ah." + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Ku dar/wax ka bedel" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Goob ku dar." + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Ku dar luuqad." + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Ku dar wax cusub." + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Qeyb cusub ku dar." + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Turjumaad ku dar." + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Maamul." + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Hel farriimo." + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Isoo war geli haddii warbixin lasoo gudbiyo ama ay jirto." + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Kaydi farriimahayga." + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Ciwaanka Email-ka." + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Geli ciwaan email." + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Geli nambarka mobile-ka iyo furaha dalka." + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Hel farriimo." + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Nambarka mobile-ka." + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ama ka calaamade goob khariiradda hoose, waan ku soo wargelin doonaa marka warbixin laga helo 20 kilometer qiyaas ah." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Haddii aadan heli karin goobtaada, fadlan guji khariiradda si aad u tilmaantid goobta saxda ah." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (ku guuri url-ka hoos)." + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Xulo magaalada." + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Xul magaalada ama goobta aad ku sugan tahay." + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "U dir farriimaha: " + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr " Step 3 (Optional): Select Categories Xulo qeybaha." + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Xaqiiji codsigii farriimaha ee hore." + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Farriimahaagii waa la keydiyey." + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Dhammaan." + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Waa la ogolaaday." + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Dhammaan qeybaha." + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "Iyo." + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API." + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "ansixi." + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "La ansixiyey." + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Warbixinnada la ansixiyey." + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Ansixi warbixintan." + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "qiyaas ahaan." + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Keyd" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "la keydiyay" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Qoraaga." + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Warbixinnada Avg ee maalinkii." + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Wuxuu sugayaa in la ansixiyo" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Wuxuu sugayaa in la xaqiijiyo." + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog." + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Tirtir." + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Qaybaha." + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Qayb." + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kala soocaha qeybaha." + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Qeybtaan waa" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Magaca qeybta." + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Dooro." + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Dooro meesha aad ka soo roganeysid xogta." + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Dooro nooca goobta." + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Tirtir URL-ka." + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Xir." + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Urursan." + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Midabka." + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Faallo." + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Faallooyin." + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Faahfaahin ku saabsan faallada." + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Settings kaaga waa la keydiyey." + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Hagaaji." + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Nala soo xiriir." + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Security Code." + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Ciwaanka emailkaaga." + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Farriin." + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Farriintaadii waa la diray." + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Magacaaga." + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Telefoon nambarkaaga." + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Dir Farriin." + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Mawduuca (subject) Farriinta." + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Xuquuqda Qoraalka." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Samee." + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Samee ama tafatir." + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Samee mid cusub." + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Samee warbixin." + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Sugnaansho." + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Xog." + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Taariikhda." + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "Hannaanka Taariikhda (bil/malin/sanad)." + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Taariikhda iyo Waqtiga." + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "Maalin." + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Ka istaaji hawsha." + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi,Kenya." + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Tir." + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "La tiray." + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Qeybaha la tiray." + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Tir \"Disabled\"" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Tir warbixintaan" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Tir Spam-ka" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo." + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Qeexid" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Tusaale:geeska suuqa magaalada, wadada 5aad, jid weynaha 4aad, johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Faahfaahin" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Warbixin toos ah" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Disabled." + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Ha ansixin." + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Soo rogo warbixinno." + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Tafatir." + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Tafatir form-ka." + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Tafatir warbixinta." + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "email-ka." + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Cinwaanka email-ka." + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Settings-ka Mail Server-ka ." + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "password-ka Mail Server-ka." + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port-ka Mail Server-ka." + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Nooca Mail Server-ka." + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Username-ka Mail Server-ka." + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Settings-kaagu waa inay ku xiriirsan yihiin ciwaanka email-kan." + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Si aad email ugu heshid warbixinno, fadalan geli hoos account settings-ka eamilkaaga,Fadlan ogow email-lada waxaa lagu heli doonaa." + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Servers-ka qaar waxay u bahan yihiin ciwaan email." + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Password-ka emailka." + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr " ports-ka guud 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Tusaale: mail.yourwebsite.com, imp.gmail.com, pop.gmail.com." + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Tusaale:pop3,imap." + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Hawl geli ama hawl jooji connections-ka SSL." + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "Ku." + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Cillad." + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Tusaale." + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya." + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed." + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Keen Jawaab-celis." + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Jawaab-celinta" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Jawaab-celinta waa" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Xogaha Jawaab-celinta." + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Magaca Jawaab-celinta." + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Jawaab-celinta URL." + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Goob aan la isticmaalin." + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "File." + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Kala Sifeeyayaasha." + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Hel." + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Hel goobta." + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Magaca Koowaad." + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Scheduler." + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Ma Ilowday Password-kaagii?." + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Form-ka." + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Forms-ka." + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Qiixidda Form-ka." + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Wax ka badal Form-kan." + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Form-ka waa." + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Ciwaanka Form-ka." + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Ka." + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Magaca oo buuxa." + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation-ka waa la heli karaa." + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag." + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Waa." + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Sidee loo caawiyaa." + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Qari." + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Qari farriintan." + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Bogga Hore." + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Sidee loo tabiyaa" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID-ga" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Muuqaalka." + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Muuqaallada." + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Muuqaalka/Sawirka." + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Aan shaqeynayn." + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Inbox-ka" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Dhacdada." + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Dhacdooyinka agagaarka ka dhaca." + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Goobta dhacdada." + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Ku dar." + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Ku dar qeybaha." + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Ku dar Qeexid." + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Ku dar faahfaahinta ugu badan ee macquulka ah." + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Ku dar xarriiqda loolka (latitude)" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Ku dar xog ku saabsan goobta." + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Ku dar Longitude (masaafada meeli u jirto dhul marka laga cabbiro dhanka bari ama galbeed)." + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Qiimeynta Xogta." + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Geli goobtaada dhabta ah." + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Jawaab u ah." + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Address-ka." + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Xog" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "Xogaha." + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Faahfaahinta Xogta." + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Ciwaanka Xogta." + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Furaha." + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML File." + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Gudbi xogta KMZ/KML File." + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "UTL-ka KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Luqadda." + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "U dambeeyay." + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Bishii lasoo dhaafay." + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Magaca Dambe." + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Sanadkii lasoo dhaafay." + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Xarriiqda loolka (latitude)." + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Lakabyada (layers)." + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "lakabyada kale." + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Lakabka waa" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Magaca Lakabka." + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Lakabka URL-ka." + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Faallo Reeb." + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Heerka." + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Heerkan waa." + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Magaca Heerka." + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Kooban." + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Isku xirka." + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Goobta." + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Goobaha." + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Magaalada. Gobolka iyo/ama Wadanka." + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Galidda." + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitude (masaafada meeli u jirto dhul marka laga cabbiro dhanka bari ama galbeed)" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Khariiradda." + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "U calaamadi sidii in la akhriyey oo kale." + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "U calaamadi sidii inaan la akhrin oo kale." + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Saxaafadda." + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Sifeeyaha Saxaafadda." + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Farriinta." + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Farriimaha." + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Faahfaahin la xiriirta Farriinta." + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobile-ka" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Dib u habee." + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Taariikhda dib u habeynta." + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "Bisha." + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Dheeraad." + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Magaca." + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Warbixinnada goobaha dhow." + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Cusub." + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Warka." + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Jawaab-celinta Warka." + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Isha Warka." + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Qeyb Cusub." + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Password Cusub." + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Warbixin Cusub." + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Kan xiga." + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Maya." + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Ogeysiisyada." + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Lama ansixin." + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Lama ansixin." + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Maahan Spam (Farriimo aan loo baahnayn)." + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Lama Cayimin." + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Lama hayo wax natiijo ah." + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Rasmi & Warka kiisa badan." + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "khiyaar." + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Khiyaar ah." + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Khiyaarada." + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Ururka." + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Ururada." + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Qeexidda Ururka." + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Emailka Ururka." + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Ururka waa." + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Magaca Ururka." + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Nambarka Koowaad ee Ururka." + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Nambarka Labaad ee Ururka." + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Bogga Ururka." + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Rasmi." + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Qeexidda Rasmiga ah." + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Ciwaanka Rasmiga ah." + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Rakibitaanada kale ee Ushahidi." + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Outbox-ka " + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Baxaya." + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Bogga/Safxada." + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Bogagga/Safxooyinka." + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Qeexidda Bogga/Safxada." + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Bogga waa." + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Ciwaanka Bogga." + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Qeybta Weyn." + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Password-ka." + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Dib u qor Password-kaaga." + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Miyaa ilowday Password-kaga?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Ka fiirso emailkaaga password-kaaga cusub." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Kusii jir Computer-kan." + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Bishii Hore." + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Sanadkii hore." + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Ilaa." + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "Midkiiba." + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Xogta Shaqsiyadeed Optional.." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefoonka." + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Sawirrada." + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Sawirrada iyo Fiidyowyada (Videos)." + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "Raadi goobtaada adigoo isticmaalay wada shaqaysiinta xarriijimaha Latitude iyo longitude. (Habka: 38.19,-85.61), ama guji khariiradda si aad u tilmaantid goobta saxda ah." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Daar." + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Fadlan la soco." + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Eeg." + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Eeg Xogta." + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Eeg Farriimaha." + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Hore." + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Profile-kaaga waa la keydiyey." + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Statistics Sahlan." + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Qiimeyn." + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Le�do" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Hel" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Ka Hel." + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Hel ogaysiisyo." + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Warbixinnadii u dambeeyay." + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Refresh ku samee jawaab-celinta warka." + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Ka saar." + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Ka jawaab." + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "war bixi." + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Wariye." + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Wariyeyaasha." + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Taariikhda Wariyaha." + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Emailka Wariyaha." + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Magaca hore ee wariyaha." + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Wariyaha waa" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP Address-ka wariyaha." + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Magaca dambe ee Wariyaha." + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Heerka Wariyaha." + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Heerarka Wariyaha." + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefoonka Wariyaha." + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Wararka." + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Daalaco." + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Gudbi." + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Qeybaha/Noocyada." + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Taariikhda." + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Qeexidda." + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Warbixinnada waxaa lagu rogayaa habka CSV-ga." + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Emailka." + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Hel goob kuu dhow." + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Magaca Hore." + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Magaca Dambe." + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Sifee Magaca Goobta." + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Isha xigashada warka." + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Xog khiyaar ah." + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Ku shub Computer-ka Sawirada." + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Ku noqo bogga warbixinnada." + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Xulo Magaalo." + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Warbixintaada waxaa loo gudbiyey shaqaalahayaga si ay dib ugu eegaan, waan kula soo xiriireynaa hadday lagama maarmaan noqoto." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Gudbi Warbixin Cusub." + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Waqtiga." + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Isdaba joogga dhacdooyinka. " + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Cinwaanka Warbixinta." + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Link-ga Fiidyowga (Video Link)" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Ka warbixi dhacdo." + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Faahfaahinta Warbixinta." + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Adigoo Farriin u dira." + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Adigoo email u dira." + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Adigoo la dira tweet hashtag-ga." + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Adigoo buuxiya Form-kan." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Warbixintaadii waa la kaydiyey." + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Ciwaanka Warbixinta." + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Codso xog dheeri ah." + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Codso goob." + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Waxyaabaha loo baahan yahay." + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Baddal Password-ka." + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Ka hel magaalada Wadamada la xulay." + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Doorka." + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "La kaydiyey." + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Kaydi Xirna." + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Keydi Warbixinta." + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Jadwalka." + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Jadwaleeyaha." + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Maalinta." + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Saacadda." + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Scheduler Log-ga" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Daqiiqadda." + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Maalinta Todobaadka." + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Raadi" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Natiijada kasoo baxday Raadinta." + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Security Code-ka." + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Xulo Dhammaan." + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Xulo Nooca Goobta." + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Xulo Nooca Form-ka" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Ka xulo khariiradda." + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Xulo intaad rabto." + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Fadlan xaqiiji inaad baartay xog." + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Xulo Theme-ka" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Dir." + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Loo dirayo." + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "La diray." + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Waxaa diray." + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Address-ka Server-ka" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Server-ka Noociisa." + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Adeegga." + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Username-ka Adeegga." + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "User ID-ga Adeegga." + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Wadaag." + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Xog la wadaagay." + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Wadaagitaankii waa" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Wadaagid." + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Tus." + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Tus Kulli." + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Bogga." + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Email-ka bogga." + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URl-ka bogga." + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "Farriimaha Gaagaaban (SMS)" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Isha laga soo xigtay." + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Magaca Isha laga soo xigtay." + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL-ka isha laga soo xigtay." + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam (Farriimo aan loo baahnayn)" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "ka." + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Tilaabo." + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Gudbi Warbixin." + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Waxaa lagu gudbiyey Aaladda Farriimaha gaagaaban (SMS)." + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "U dir farriintaada gaaban ." + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "Telefoonkaaga." + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Guul!." + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Soo shubidda wa lagu guuleystay." + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Magaca Awowga." + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Themes-ka." + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Ushahid Theme-ka caadiga ah." + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Theme Settings-ka." + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Kan/Tan." + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Maanta." + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Bishan." + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Sanadkan." + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Waqtiga." + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Cinwaanka." + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "Ku." + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Maanta." + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Maanta markay ahayd." + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Warbixannada dhan." + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "La turjumay." + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Faalla bixinta la turjumay." + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Ciwaan la turjumay." + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "U turjun" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Turjumaad." + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Turjumaadda waa la keydiyey." + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter." + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Aan la akhrin." + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Aan la xaqiijin." + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Cusbooneysii jawaab-gelinta." + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Gudbi xogta." + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "File xogtiisa la gudbinayo." + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Gudbi Xogta Warbixinnada." + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Form-ka hoose adigoo isticmaalay, waa ku shubi kartaa Ushahid engine dhacdooyinka." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Waa iney lahaataa ugu yaraan Cinwaanka Dhacdada iyo Taariikhda Dhacdada." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Tusaale yar u ah warbixinta CSV." + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "CIWAANKA DHACDADA. TAARIIKHDA DHACDADA.QEEXIDDA GOOBTA.NOOCA,LA ANSIXIYEY,LA XAQIIJIYEY
\"1\",\"Dhimasho laga shaki qabo iney ka dhacdya Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\" Saddex dhacdo ayaa laga soo xaqiijiyey C.del Uruguay\".\"DHIMASHO,RAYYID, \",HAA,HAA." + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Bililiqeysi\"2009-03-18 10:10:00\",\"Accra\", Meel kasta waxaa ka soconaya bililiqeysi\" RABSHADO,DIMASHOM,HANTI BURBURIN, \"HAA,MAYA." + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Waa lagu guuleystay Xog Gudbinta." + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Isticmaalaha." + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Username-ka." + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Admin-ka Ushahidi." + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "La xaqiijiyey." + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Warbixinno xaqiijiyey." + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Xaqiiji." + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Xaqiiji warbixintan." + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Nooc kale." + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "Sii marin." + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Fiidyow (Video)." + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Aragti." + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Aragtiyada." + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Arag dhammaan." + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Arag dhammaan jawaab-celinta." + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Arag dhammaan warbixinnada." + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Arag xogaha." + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Arag kuwo dheeraad ah." + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Arag warbixin." + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Arag warbixinnada." + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Muuqda." + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Wuxuu sugayaa ansixin." + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Wuxuu sugayaa xaqiijin." + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Culeyska." + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Haa." + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Shalay." + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-so/upgrade.po b/application/i18n/po/po-so/upgrade.po new file mode 100644 index 0000000000..fbd4ef7b69 --- /dev/null +++ b/application/i18n/po/po-so/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Somali (http://www.transifex.com/ushahidi/ushahidi-v2/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Gelinta xogta waa khalad. O oo u taagan Maya iyo 1 oo u taagan Haa." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Casriyeyn automatic ah" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "casriyayn diyaar ah" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Sii wad" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Casriyee" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Hadaba, waxaan doonayaa inaan casriyeeyo keydka xogtaada." + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "versionka ugu casrisan ee keydka xogta." + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Guji button-ka \"Upgrade\" deetana iska naso inta aan hawsho kuu wado." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Hadaad doonayso inaan kuu backup gareeyo keydka xogtaada, calaamada saxda saar button-ka hoose, anigaana si dhakhsa leh kuugu sameynayo." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Backup gareyso keydka xogta ka hor casriyeynta? (Highly recommended)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Casriyaynta keydka xogta ee Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Casriyaynta waa ay fashilantay" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Casriyayn gacanta laga sameynayo" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Heerka casriyaynta ee Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Tilmaamaha hoos ku xusan waxay faahfaahinayan sida loo sameeyo rakibaadda Ushahidi." + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Step 1: Download the most recent ushahidi build from http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Step 1: Download the most recent ushahidi build from http://download.ushahidi.com" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Step 1: Download the most recent ushahidi build from http://download.ushahidi.com" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Casriyaynta automatic-ga ah, guji button-ka hoose" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Casriyaynta." + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-sq_AL/alerts.po b/application/i18n/po/po-sq_AL/alerts.po new file mode 100644 index 0000000000..df06ab4d60 --- /dev/null +++ b/application/i18n/po/po-sq_AL/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# abrahaj , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Adresa e email-it e vendosur në hapësirën e mëposhtme nuk është e vlefshme" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Kjo adresë email-i tashmë është rregjistruar për të marrë denoncime mbi këtë vendndodhje" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Informacioni i detyrueshëm për tu plotësuar." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Vendodhjet i përkasin një shteti të vetëm. Ju lutem sigurohuni se vendodhja e denoncimit është brenda këtij shtetiUganda." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Vendodhja që keni zgjedhur në hartë nuk është e vlefshme." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Vendodhja që keni zgjedhur në hartë nuk është ë vlefshme." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Vendodhja që keni zgjedhur në hartë nuk është e vlefshme." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Vendodhja që keni zgjedhur në hartë nuk është ë vlefshme." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Numri i shifrave i pamjaftueshëm." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr " Ky numër telefoni tashmë është rregjistruar për të marrë denoncime mbi këtë vendodhje" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Numri i telefonit që keni vendosur nuk është i vlefshëm. Ju lutem përfshini dhe prefiksin kombëtar." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Ju duhet të shënoni numrin e telefonit ose adresën e email-it." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Informacioni për numrin e telefonit i detyrueshëm." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Rrezja e zonës së zgjedhur nuk është e vlefshme " + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Ju nuk keni zgjedhur një kordinatë në hartë." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Nuk keni vendosur nje marres per njoftimin" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Jeni abonuar për denoncime në kategoritë e mëposhtme " + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Ky kod është verifikuar!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Kodi i pa verifikuar! Konfirmoni se keni URL-në e duhur." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Kodi juaj u verifikua. Tashmë ju do të njoftoheni kur të ndodhin denoncime." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Për të konfirmuar kërkesën për denoncim shkoni tek " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Kthehuni në faqen e denoncimeve për të shtuar një denoncim" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Kërkesa për të marrë denoncime në email është krijuar dhe një mesazh verifikimi është dërguar në " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Vendosni kodin e konfirmimit të email që morët më poshtë: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr " Kërkesa juaj për Denoncim Mobile NUK është ruajtur!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Kërkesa juaj për Denoncim Mobile është ruajtur!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Sistemi nuk ka mundur të përpunojë kërkesën tuaj për konfirmim!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Kërkesa juaj për Denoncim Mobile është krijuar dhe një mesazh verifikimi është dërguar në " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Ju lutem vendosni në hapësirën që vijon kodin e konfirmimit që keni marrë me SMS në celularin tuaj: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Kërkesa juaj për të marrë denoncime në celular NUK është ruajtur!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Kërkesa juaj për të marrë denoncime në celular është ruajtur!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Konfigurimi i këtij funksioni nuk është kryer në mënyrën e duhur për marrjen e denoncimeve" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Ju keni marrë këtë email sepse jeni abonuar për marrjen e denoncimeve. Nëse nuk doni të merrni më njoftime shkoni tek " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Ju nuk do të merrni më njoftime mbi denoncimet " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Ne nuk mund të anullojmë abonimin tuaj. Ju lutem konfirmoni se keni një URL korrekte." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "denoncime - verifikim" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Ju nuk do të merrni denoncime mbi këtë vendndodhje derisa të keni konfirmuar kërkesën tuaj." diff --git a/application/i18n/po/po-sq_AL/auth.po b/application/i18n/po/po-sq_AL/auth.po new file mode 100644 index 0000000000..6da10171ef --- /dev/null +++ b/application/i18n/po/po-sq_AL/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Adresa e email-it që keni vendosur nuk është e vlefshme." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Na vjen keq por ekziston një përdorues me këtë adresë." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Informacioni për adresën e email-it është i detyrueshëm për tu plotësuar." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Emri duhet të ketë 3 deri në 100 karaktere." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Informacioni për emrin i detyrueshëm për tu plotësuar." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Emri i përdorimit përmban karaktere të pa lejueshme." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Fjalëkalimi duhet të përmbajë të paktën 8 karaktere." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Ju lutem sigurohuni se fjalëkalimi që keni përdorur është korrekt." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Shkruani të njëjtin fjalëkalim në dy hapësirat e mëposhtme." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Informacioni për fjalëkalimin është i detyrueshëm për tu plotësuar." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Fjalëkalimi mund të përmbajë vetëm shkronja, numra dhe simbole si #, @ , _ ." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Fjalëkalimi nuk është korrekt. Ju lutem provoni përsëri." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Fjalëkalimi duhet të përmbajë të paktën 8 karaktere." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr " Ju lutem sigurohuni se fjalëkalimi dhe adresa e email-it që keni shënuar janë korrekte." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Shkruani të njëjtin fjalëkalim në dy hapësirat e mëposhtme." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Informacioni për fjalëkalimin është i detyrueshëm për tu plotësuar." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr " Fjalëkalimi mund të përmbajë vetëm shkronja, numra dhe simbolet si #, @ , _ " + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Problem me identifikimin e përdoruesit të llogarisë." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Fjalëkalimi duhet të përmbajë të paktën 8 karaktere." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Ju lutem sigurohuni se fjalëkalimi që keni përdorur është korrekt." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Shkruani të njëjtin fjalëkalim në dy hapësirat e mëposhtme." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Informacioni për fjalëkalimin është i detyrueshëm për tu plotësuar." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Ka një problem me serverin. Ju lutem provoni më vonë." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr " Fjalëkalimi mund të përmbajë vetëm shkronja, numra dhe simbolet si #, @ , _ , " + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Fjalëkalimi i konfirmuar duhet të përputhet me fjalëkalimin e shënuar." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Adresa e e-mail-it është e pavlefshme." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Na vjen keq, ne nuk e kemi këtë adresë." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Informacioni për adresën e email-it është i detyrueshëm për tu plotësuar." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Vetëm një krye administrator mund te modifikojë krye administratorët dhe të emërojë administratorët e tjerë." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Formati i përdorur në hapësirën e rolit nuk është i vlefshëm." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Numri i karaktereve të lejuara për rolin është 5 deri në 30." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Ju duhet të përcaktoni të paktën një rol." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Ju duhet të zgjidhni një nga rolet: Administrator ose Përdorues." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Roli i administratorit nuk mund të ndryshohet." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Emri i përdoruesit duhet të përmbajë vetëm shkronja dhe numra." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Na vjen keq, ky emër është zgjedhur nga një përdorues tjetër." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Emri i përdorimit mund të përmbaje 2 deri ne 100 karaktere." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Ju lutem sigurohuni se po përdorni emrin e duhur të përdorimit." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Informacioni i detyrueshëm për tu plotësuar." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Roli i krye administratorit nuk mund te modifikohet." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Ky mund të jetë një sulm CSRF. A jeni të sigurtë se doni të modifikoni/krijoni një llogari?" diff --git a/application/i18n/po/po-sq_AL/bug.po b/application/i18n/po/po-sq_AL/bug.po new file mode 100644 index 0000000000..213f0bdd25 --- /dev/null +++ b/application/i18n/po/po-sq_AL/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ju lutem shkruani një kod sigurie të vlefshëm." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Ju lutem vendosni kodin e sigurisë." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Adresa e email-it e vendosur në hapsirën e mëposhtme nuk është e vlefshme" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Informacioni për adresën e email i detyrueshëm për tu plotësuar." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Informacioni i detyrueshëm për tu plotësuar ." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Subjekti duhet të përmbajë të paktën 3 karaktere." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Informacioni për subjektin i detyrueshëm për tu plotësuar." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Emri duhet të përmbajë të paktën 3 karaktere." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Informacioni për emrin i detyrueshëm për tu plotësuar." diff --git a/application/i18n/po/po-sq_AL/category.po b/application/i18n/po/po-sq_AL/category.po new file mode 100644 index 0000000000..ff04a59642 --- /dev/null +++ b/application/i18n/po/po-sq_AL/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Hapësira për ngjyrën duhet të përmbajë 6 karaktere." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Informacioni për ngjyrën i detyrueshëm për tu plotësuar." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Informacioni në hapësirën e përshkrimit është i detyrueshëm." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Sigurohuni që imazhet e ngarkuara të mos jenë më shumë se 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Hapësira për imazhin nuk përmban një imazh të vlefshëm. Formatet e vetme të pranueshme janë .JPG, .PNG and .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Hapësira për imazhin nuk përmban një skedar të vlefshëm." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Titulli duhet të përmbajë 8 deri në 30 karaktere." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Informacioni për titullin është i detyrueshëm për tu plotësuar." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Ju nuk mund të ndani në nënkatgori një kategori që ka nënkategori." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Kategoria prind nuk egziston." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Kategoria prind duhet të jetë në format numerik." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Kategoria prind nuk mund të jetë një kategori speciale" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Informacioni i detyrueshëm për tu plotësuar." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kategoria dhe kategoria prind nuk mund të jenë të njëjta." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Kategoritë speciale nuk mund të kenë nën kategori." diff --git a/application/i18n/po/po-sq_AL/comments.po b/application/i18n/po/po-sq_AL/comments.po new file mode 100644 index 0000000000..222472c3e6 --- /dev/null +++ b/application/i18n/po/po-sq_AL/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ju lutem shkruani një kod sigurie të vlefshëm." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Ju lutem vendosni kodin e sigurisë." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Kodi i sigurisë që keni vendosur nuk është i saktë." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Emri duhet të përmbajë minimumi 3 karaktere." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Informacioni për emrin i detyrueshëm për tu plotësuar." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Informacioni në hapësirën e komentit është i detyrueshëm." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr " Adresa e email-it e vendosur në hapësirën e mëposhtme nuk është e vlefshme." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Informacioni në hapësirën e email-it është i detyrueshëm." diff --git a/application/i18n/po/po-sq_AL/contact.po b/application/i18n/po/po-sq_AL/contact.po new file mode 100644 index 0000000000..4762c6e53a --- /dev/null +++ b/application/i18n/po/po-sq_AL/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ju lutem vendosni një kod sigurie të vlefshëm." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Ju lutem fusni kodin e sigurisë." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email-i që keni vendosur nuk është i vlefshëm." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-mail-i duhet të përmbajë 4 deri në 64 karaktere." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Informacioni në hapësirën e email-it është i detyrueshëm për t`u plotësuar." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Informacioni në hapësirën e mesazhit është i detyrueshëm për t`u plotësuar." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Emri i hapësirës duhet të përmbajë të paktën 3 karaktere." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Emri i hapësirës është i detyrueshëm për t`u plotësuar." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Përmbajtja e hapësirës duhet të përmbajë të pakten 3 karaktere." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Hapësira e subjektit është e detyrueshme për t`u plotësuar." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-sq_AL/core.po b/application/i18n/po/po-sq_AL/core.po new file mode 100644 index 0000000000..9de84ebddf --- /dev/null +++ b/application/i18n/po/po-sq_AL/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "skedar i konfiguruar" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "kontrollues" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Driver-i %s për librarinë %s duhet të implementojë ndërfaqen %s." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Driveri %s për librarinë %s nuk mund të gjendet." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Ju mund të shkoni tek kreu ose provoni përsëri." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Kërkesa nuk mund të plotësohet" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ndihmës" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Skedari i kërkuar në formatin, .%s, nuk është i lexueshem në paraqitjen e konfigurimit të skedarit tuaj." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Metoda e pavlefshme %s e shprehur në %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Karakteristika %s nuk ekziston në klasën %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "librari" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Në direktorinë log nuk mund të shkruhet: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Programi nuk ka mundur të vendosë një kontrollor për të përpunuar këtë kërkesë: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Ju lutemi vendosni route në config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Faqja që kërkuat, %s, nuk mund të gjendet." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Raportojeni këtë problem tek Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr " %s, %s të kërkuara nuk mund të gjenden." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Ngarkuar në {koha e ekzekutimit} sekonda, duke përdorur {përdorimi i memories} memorien. E gjeneruar nga Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Mund të ketë vetëm një sekuencë Ushahidi për faqen e kërkuar." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "E pakapshme %s: %s në skedar %s në linjë %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "pamja" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Ju duhet të vendosni emrin e skedarit përpara se të fillojë përshtatjen." diff --git a/application/i18n/po/po-sq_AL/database.po b/application/i18n/po/po-sq_AL/database.po new file mode 100644 index 0000000000..c06ee964aa --- /dev/null +++ b/application/i18n/po/po-sq_AL/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Gabim me databazën: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabela \"%s\" nuk mund të gjendet në databazë. Ju lutem sigurohuni se po përdorni versionin e fundit të databazës së Ushahidi." diff --git a/application/i18n/po/po-sq_AL/datetime.po b/application/i18n/po/po-sq_AL/datetime.po new file mode 100644 index 0000000000..ed68aa8d0c --- /dev/null +++ b/application/i18n/po/po-sq_AL/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Premt" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr " E Premte" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Hën" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr " E Hënë" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Shtun" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr " E Shtunë" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Diel" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr " E Diel" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Enj" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr " E Enjte" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Mar" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr " E Martë" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Mër" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr " E Mërkure" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Janar" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Shk" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Shkurt" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Mars" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Pri" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Prill" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Maj" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maj" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Qer" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Qershor" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Kor" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Korrik" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Gsh" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Gusht" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sht" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Shtator" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Tet" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Tetor" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nën" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Nëntor" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dhj" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Dhjetor" diff --git a/application/i18n/po/po-sq_AL/feeds.po b/application/i18n/po/po-sq_AL/feeds.po new file mode 100644 index 0000000000..aa53a9cab9 --- /dev/null +++ b/application/i18n/po/po-sq_AL/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATA" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Hapësira e emrit për lajmet e fundit duhet të përmbajë 3 deri në 70 karaktere." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Ju lutem shkruani emrin e lajmit." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Ju lutem vendosni URL për lajmet e ditës." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Ju lutem vendosni një URL të vlefshme, p.sh. http://www.ais.al" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "BURIMI" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "TITULLI" diff --git a/application/i18n/po/po-sq_AL/footer.po b/application/i18n/po/po-sq_AL/footer.po new file mode 100644 index 0000000000..311f82d4e7 --- /dev/null +++ b/application/i18n/po/po-sq_AL/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl nuk eshte instaluar ne kete sistem." diff --git a/application/i18n/po/po-sq_AL/form.po b/application/i18n/po/po-sq_AL/form.po new file mode 100644 index 0000000000..e37ccfd205 --- /dev/null +++ b/application/i18n/po/po-sq_AL/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Vlera që keni përfshirë në këtë hapësirë është e pavlefshme." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Emri i Fushës duhet të përmbajë 3 deri në 200 karaktere." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Ju lutem vendosni një vlerë 0 deri në 50 për gjatësinë e fushës." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Ju keni vendosur një vlerë të pa vlefshme në hapësirën e datës." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Ju lutem zgjidhni PO ose JO për hapësirën e datës" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Emri i fushës duhet të jetë të paktën 3 karaktere por jo më shumë se 100 karaktere." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Ju lutem vendosni emrin e fushës." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Ju keni futur nje vlerë të pa vlefshme për Fushën e kërkuar." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Ju lutem zgjidhni PO ose JO për fushën e kërkuar." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Ju lutem zgjidhni një lloj fushe të vlefshme." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Ju lutem zgjidhni llojin e fushës." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Ju lutem vendosni një vlerë 0 deri në 300 për gjerësinë e fushës." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Ju lutem jepni përshkrimin e Formularit." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Nuk u bë e mundur fshirja e Formularit të parazgjedhur." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Ju lutem zgjidhni Formularin në të cilën doni të shtoni skedarin." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Ju lutem zgjidhni Formularin në të cilën doni të shtoni skedarin." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Hapësira për emrin duhet të jetë të paktën 3 karaktere dhe jo më shumë se 100 karaktere." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Ju lutem vendosni emrin e Formularit." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-sq_AL/imap.po b/application/i18n/po/po-sq_AL/imap.po new file mode 100644 index 0000000000..c482a3c4c8 --- /dev/null +++ b/application/i18n/po/po-sq_AL/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Nuk mund të hapni degët e IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Nuk mund tju mbështesim me shërbimin e email." diff --git a/application/i18n/po/po-sq_AL/installer.po b/application/i18n/po/po-sq_AL/installer.po new file mode 100644 index 0000000000..bf83e60a21 --- /dev/null +++ b/application/i18n/po/po-sq_AL/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Shtegu bazë" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Baza e të dhënave" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Baza e të dhënave Host" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Nëse jeni duke përdorur Ushahidi në kompjuterin tuaj, atëhere kjo do të konsiderohet një host lokal. Nëse jeni duke përdorur Ushahidi nga një web server, ju do të merrni informacionin e host nga ofruesi i web hosting." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Emri i bazës së të dhënave" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Emri i bazës së të dhënave për Ushahidi-in" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Për më shumë informacion ju lutem shikoni: ky artikull në Wikipedia tregon më në detaje për këtë bazë të dhënash ." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Gjuha e parazgjedhur (Lokale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "do përdorim i Ushahidi përmban një set përkthimesh në gjuhë të tjera. Ju gjithashtu mund të shtoni alternativën tuaj." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "aktivizo" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Aktivizo" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Më poshtë gjeni një përmbledhje të gabimeve të hasura gjatë rrugës." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Lokaliteti në serverin tuaj ku keni vendosur skedarët Ushahidi. Kjo është nje vlerë e njohur rastësisht, ju lutem sigurohuni se është e saktë. Nëse hapësira është bosh, nuk ka asgjë për tu shqetësuar, kjo do të thotë se ushahidi është instaluar në direktorinë e nivelit më të lartë." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "E përfunduar" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "E përgjithshme" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Gjithësecili mund të kërkojë një kod API. Merrni kodin tuaj" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Kthehuni pas" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "INSTALIM I AVANCUAR" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Ju mund të përfitoni opsionet bazike nëpërmjet proesit me pesë hapa. Kjo përfshin serverin, hartën, emrin e faqes dhe detaje të kontaktit." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "INSTALIM BAZë" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "I thjeshtë dhe i shpejtë. Ju duhet vetëm direktoria kryesore e web sitit tuaj dhe informacioni i bazës së të dhënave. Zgjidhni këtë opsion nëse doni të filloni me shpejtësi. Ju mund të konfiguroni gjithka tjetër më vonë." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Vazhdoni" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Mirë se erdhët në procesin e instalimit të serverit Ushahidi. Zgjidhni një nga mënyrat e mëposhtme të instalimit." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Instalimi përfundoi me sukses" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mail Server-i" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Shembuj: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Fjalëkalimi i Mail Server" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Fjalëkalimi që përdorni zakonisht për t`u identifikuar në email tuaj" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "LLoji i Mail Server" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) ose Post Office Protocol (POP). Kush është ndryshimi?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Emri i përdoruesit të Mail Server" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Nëse jeni duke përdorur Gmail, Hotmail, or Yahoo Mail, vendosni të plotë një adresë emaili në vend të username-it." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Harta" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Ofruesi i Hartës" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi është njësoj funksional për një nga ofruesit e mëposhtëm: Google, Bing or Open Street Map. Zgjidhni atë qe ofron më tepër detaje për zonën tuaj." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Hapa të tjerë..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Fjalëkalimi" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Fjalëkalimi i bazës së të dhënave " + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "I mëparëshëm" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Ju lutem ristartoni Apache Server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Aktivizoni ose aktivizoni SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Disa mail servera ju japin opsionin e përdorimit SSL kur realizoni një lidhje. Rekomandohet përdorimi i SSL për qëllime të rritjes së sigurisë." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Ndërtoni SMS server-in tuaj" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Adresa e email-it të faqes" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Adresa e email për denoncimet" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Kur vizitorët e faqes regjistrohen për tu njoftuar nëpërmjet email-it, të gjitha email-et do të dërgohen nga kjo adresë. Kjo adresë email-i mund të mos të jetë e njëjtë me adresën e email-it të faqes." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Komunikimi me email i faqes do të realizohet nëpërmjet kësaj adrese" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Emri i faqes" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Emri i faqes tuaj" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Slogani i faqes" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Slogani juaj" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Skedaret dhe dosjet e listuara më poshtë duhet të jenë të shkrueshme nga web server-i juaj." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Këtu janë disa udhëzime për të ndryshuar të drejtat e skedarëve:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Përpara se të filloni, ju duhet të siguroheni se skedarët dhe dosjet e mëposhtme mund të modifikohen nga web-browser juaj. Kjo përfshin ndryshimin e miratimit për lejet e skedarëve ." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Për proesin e instalimit, ju lutem bazohuni tek informacioni i mëposhtëm." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Prefiksi i tabeles" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalisht ju nuk duhet të ndryshoni prefiksin e tabelës. Megjithatë, nëse ju doni të nisni instalimin Ushahidi nga një bazë e vetme të dhënash, ju mund ta bëni këtë duke ndryshuar prefiksin këtu." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Titulli" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Për tu identifikuar shkoni tek" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Ngarko raportin e të dhënave" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Emri i përdoruesit" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Emri i përdoruesit të bazës së të dhënave" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "Përdorni kredencialet e mëposhtme" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Shikoni në faqen tuaj të web " diff --git a/application/i18n/po/po-sq_AL/layer.po b/application/i18n/po/po-sq_AL/layer.po new file mode 100644 index 0000000000..fcd93aefdc --- /dev/null +++ b/application/i18n/po/po-sq_AL/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Hapësira për ngjyrën duhet të përmbajë 6 karaktere." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Informacioni në hapësirën për ngjyrën është i detyrueshëm." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Ju nuk keni vendosur një imazh të vlefshëm. Formatet e vetme të pranueshme janë KMZ dhe KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Ju nuk keni vendosur një imazh të vlefshëm" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Emri duhet të përmbajë 3 deri në 80 karaktere." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Informacioni për emrin është i detyrueshëm." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Kërkohet një skedar KML ose URL." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Ju nuk mund të keni njëherësh një skedar KML dhe një skedar URL." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Ju lutem vendosni një URL të vlefshme, p.sh. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-sq_AL/libraries.po b/application/i18n/po/po-sq_AL/libraries.po new file mode 100644 index 0000000000..9129bf7469 --- /dev/null +++ b/application/i18n/po/po-sq_AL/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Nuk u bë e mundur lidhja me serverin Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Nuk u bë e mundur marrja e përgjigjes nga serveri Akismet." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Libraria API : %s për klasën %s nuk mund të gjendet. Ju lutem kontrolloni API task routing table." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Kodi juaj Akismet API nuk është i vlefshëm." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Gabim gjatë realizimit të dërgimit t informacionit!
Ju lutem verifikoni që PHP suportohet nga OpenSSL dhe nëse versioni i PHP është më i madh se 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Mesazhi juaj unicode është tepër i gjatë! (gjatësia aktuale është=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Ju lutem specifikoni adresën e marrësit (PëR)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Ju lutem specifikoni adresën e dërguesit (NGA)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Mesazhi juaj unicode është tepër i gjatë! (gjatësia aktuale është =" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Kjo metodë dërgimi nuk është e pranueshme!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Libraria API %s nuk është e vlefshme. Të gjitha libraritë API duhet të jenë nënklasa të %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Nuk u bë e mundur fshirja e direktorisë %s." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Gabim gjatë ekstraktimit: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Shkarkimi i versionit më të fundit Ushahidi nuk u realizua me sukses. Statusi i kodit HTTP " + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Nuk u bë e mundur të kopjohej skedari %s." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Nuk u bë e mundur të fshihet skedari %s." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Skripti u rindërtua" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Skedari Ushahidi i shkarkuar në formatin zip %s, nuk mund të shkruhet." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s nuk është i disponueshëm ne klasën RiverID." diff --git a/application/i18n/po/po-sq_AL/maintenance.po b/application/i18n/po/po-sq_AL/maintenance.po new file mode 100644 index 0000000000..1d0c0b2b16 --- /dev/null +++ b/application/i18n/po/po-sq_AL/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Na vjen keq, për momentin mbi këtë faqe po punohet. Ju lutem provoni pas disa minutash." diff --git a/application/i18n/po/po-sq_AL/message.po b/application/i18n/po/po-sq_AL/message.po new file mode 100644 index 0000000000..3981645dce --- /dev/null +++ b/application/i18n/po/po-sq_AL/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ju lutem vendosni një kod sigurie të vlefshëm." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Ju lutem vendosni kodin e sigurisë." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Adresa e email-it nuk është e vlefshme." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Hapësira për email-in duhet të jetë të paktën 4 karaktere dhe jo më shumë se 64 karaktere." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kërkohet të vendoset adresa e email." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Hapësira e komentit duhet plotësuar." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Emri duhet të përmbajë të paktën 3 karaktere." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Informacioni për emrin është i detyrueshëm." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Numri i telefonit nuk është i vlefshëm." diff --git a/application/i18n/po/po-sq_AL/mhi.po b/application/i18n/po/po-sq_AL/mhi.po new file mode 100644 index 0000000000..04296b8a56 --- /dev/null +++ b/application/i18n/po/po-sq_AL/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Ju lutem vendosni një kod sigurie të vlefshëm." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Ju lutem vendosni kodin e sigurisë." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Adresa e email-it nuk është e vlefshme." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Ju lutem vendosni një adresë email-i të vlefshme." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Informacioni për mesazhin është i detyrueshëm." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Subjekti duhet të përmbajë të paktën 3 karaktere." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Hapësira e subjektit është e detyrueshme." diff --git a/application/i18n/po/po-sq_AL/notifications.po b/application/i18n/po/po-sq_AL/notifications.po new file mode 100644 index 0000000000..ada51106ea --- /dev/null +++ b/application/i18n/po/po-sq_AL/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Ky mesazh është dërguar nga faqja juaj e web." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Identifikimi i administratorit" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Nje koment i ri është shënuar në faqen tuaj në përgjigje të:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Koment i ri" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Një mesazh i ri është dërguar në faqen tuaj." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Mesazh i ri" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Një raportim i ri është shënuar në faqen tuaj." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Raportim i ri" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Një mesazh i ri është dërguar në faqen tuaj." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Mesazh i ri" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Ju keni marrë një denoncim të ri" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Denoncim i ri!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Ju keni marrë një mesazh privat" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Mesazh privat i ri" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Për t`u përgjigjur shkoni tek: " diff --git a/application/i18n/po/po-sq_AL/page.po b/application/i18n/po/po-sq_AL/page.po new file mode 100644 index 0000000000..763395fc2a --- /dev/null +++ b/application/i18n/po/po-sq_AL/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Ju lutem vendosni Titullin e Faqes." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Titulli i faqes duhet të jetë 3 deri në 150 karaktere ." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Ju lutem vendosni emrin e faqes lidhëse (page tab name)." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Ju lutem vendosni një përshkrim për faqen." diff --git a/application/i18n/po/po-sq_AL/permissions.po b/application/i18n/po/po-sq_AL/permissions.po new file mode 100644 index 0000000000..a807dae22a --- /dev/null +++ b/application/i18n/po/po-sq_AL/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sq_AL/private_message.po b/application/i18n/po/po-sq_AL/private_message.po new file mode 100644 index 0000000000..9bd3537a6e --- /dev/null +++ b/application/i18n/po/po-sq_AL/private_message.po @@ -0,0 +1,43 @@ +#. extracted from en_US/private_message.php, sq_AL/private_message.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:26+0000\n" +"PO-Revision-Date: 2012-08-17 06:26+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sq_AL\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-sq_AL/report.po b/application/i18n/po/po-sq_AL/report.po new file mode 100644 index 0000000000..d0e1962f90 --- /dev/null +++ b/application/i18n/po/po-sq_AL/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Vendodhjet i përkasin një shteti të vetëm. Ju lutem sigurohuni se vendndodhja e denoncimit është brenda këtij shtetiUganda." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Ju lutem vendosni një artikull të vlefshëm për të shkarkuar." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr " Ju lutem vendosni një artikull të vlefshëm për të shkarkuar." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Ju lutem zgjidhni \"Reporte në Pritje për t`u Miratuar ose Raporte të Miratuara\" ose të dyja." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Ju lutem zgjidhni \"Reporte në Pritje për t`u Miratuar ose Raporte të Miratuara\" ose të dyja " + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Ju lutem zgjidhni \"Reporte në Pritje për t`u Miratuar ose Raporte të Miratuara\" ose të dyja " + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Ju lutem zgjidhni \"Reporte në Pritje për t`u Verifikuar ose Raporte të Verifikuara\" ose të dyja, " + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Ju lutem zgjidhni \"Reporte në Pritje për t`u Verifikuar ose Raporte të Verifikuara\" ose të dyja," + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Ju lutem zgjidhni \"Reporte në Pritje për t`u verifikuar ose Raporte të Verifikuara\" ose të dyja," + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Ju lutem zgjidhni një tip të vlefshëm raporti për të shkarkuar." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Ju lutem zgjidhni një tip të vlefshëm raporti për të shkarkuar ," + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Ju lutem zgjidhni një tip të vlefshëm raporti për të shkarkuar." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr " Formati në fushën e datës nuk përmban një të dhënë të vlefshme." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Ju lutem fusni një të datë të vlefshme . Nuk mund të jetë një datë e mëvonshme se dita e sotme." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Ju lutem vendosni një vlerë të vlefshme për Aprovimin e këtij Raporti," + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Ju lutem vendosni një vlerë të vlefshme për Aprovimin e këtij Raporti, " + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Formati i orarit (am\\pm) nuk përmban një vlerë të vlefshme ." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Fusha emërtuar Kategori nuk përmban një kategori të vlefshme ." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Informacion i kategorisë është i i detyrueshëm për tu plotësuar." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Hapësira e datës nuk përmban një vlerë të vlefshme." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Hapësira e datës nuk përmban një vlerë të vlefshme." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Informacioni në hapësirën e datës është i detyrueshëm për tu plotësuar." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Informacioni në hapësirën Përshkrime është i detyrueshëm për tu plotësuar." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Hapësira e orës nuk përmban një orar të vlefshëm." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Informacioni në hapësirën e orës është i detyrueshëm për tu plotësuar." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Ju lutem vendosni një vlerë të vlefshme për Propabilitetin e Informacionit." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Ju lutem vendosni një vlerë t`u vlefshme për Propabilitetin e Informacionit." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr " Hapësira e minutave nuk përmban një vlerë të vlefshëm." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr " Informacioni në hapësirën e minutave është i detyrueshëm për tu plotësuar ." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Hapësira e burimit të informacionit nuk përmban një URL të vlefshme." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Ju lutem sigurohuni që madhësia e fotos të jetë brenda limitit prej 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Hapësira për imazhin nuk përmban një imazh të vlefshëm. Formatet e vetme të pranueshme janë .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Hapësira për imazhin nuk përmban një skedar të vlefshëm." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Ju lutem vendosni një vlerë të vlefshme për Besueshmërinë e Burimit." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Ju lutem vendosni një vlerë të vlefshme për Besueshmërinë e Burimit.." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Hapërisa e \"Titulli i Raportit \" duhet të përmbajë 5 deri në 200 karaktere." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Titulli i informacionit është i detyrueshëm për tu plotësuar." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Ky mund të jetë një sulm CSRF. A jeni të sigurt se doni të modifikoni/krijoni një raportim?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "." + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Ju lutem vendosni një vlerë të vlefshme për të verifikuar këtë raportim." + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Hapësira e linkut të vidios nuk përmban një URL të vlefshme." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr " Hapësira e gjatësisë nuk përmban një vlerë korrekte." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr " Informacioni në hapësirën e vendodhjes është i detyrueshëm për tu plotësuar." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Hapësira e vendodhjes nuk ka një vlerë korrekte. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Ky raport tashmë ka një përkthim në këtë gjuhë." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Hapësira e vendodhjes nuk përmban një vlerë korrekte. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Vendodhja e raportit origjinal dhe rapotit të përkthyer është e njëjtë." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Informacioni në hapësirën e vendndodhjes është i detyrueshëm për tu plotësuar." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr " \"Hapësira e vendodhjes\" duhet të përmbajë 3 deri në 200 karaktere." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Informacioni në hapësirën e vendndodhjes është i detyrueshëm për tu plotësuar." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Hapësira e gjërësisë nuk përmban një vlerë korrekte." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Informacioni në hapësirën e gjerësisë është i detyrueshëm për tu vendosur. Ju lutem klikoni në hartë për të shënuar vendodhjen." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Hapësira e email-it nuk përmban një email të vlefshëm." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Email-i duhet të përmbajë 4 deri në 64 karaktere." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Emri duhet të përmbajë 3 deri në 100 karaktere." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Mbiemri duhet të përmbajë 2 deri në 100 karaktere." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr " Hapësira e Datës së përfundimimt nuk përmban një vlerë korrekte." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Ju lutem vendosni një vlerë në hapësirën e Data e përfundimit. Kjo datë nuk mund të jetë më e vonë se data e sotme" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Data e Nisjes nuk mund të jetë më e vonë se Data Afat ." diff --git a/application/i18n/po/po-sq_AL/reporters.po b/application/i18n/po/po-sq_AL/reporters.po new file mode 100644 index 0000000000..b5bb3c605e --- /dev/null +++ b/application/i18n/po/po-sq_AL/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Fusha latitude nuk permban nje vlere te sakte per nje gjeresi gjeografike." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Fusha e gjeresise gjeografike (latitude) duhet plotesuar. Ju lutem klikoni ne harte per te zgjedhur nje pozicion." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Fusha niveli i raportuesit nuk ka nje vlere te vlefshme" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Fusha niveli i raportuesit nuk ka nje vlere te vlefshme" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Fusha e vendndodhjes duhet te permbaje te pakten 3 dhe jo me shume se 200 karaktere." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Fusha e vendndodhjes eshte e detyrueshme te plotesohet." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Fusha longitude nuk permban nje vlere te sakte per nje gjatesi gjeografike." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Fusha e gjatesise gjeografike (longitude) duhet plotesuar. Ju lutem klikoni ne harte per te zgjedhur nje pozicion." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Raportues i gabuar" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Raportues i gabuar" diff --git a/application/i18n/po/po-sq_AL/reports.po b/application/i18n/po/po-sq_AL/reports.po new file mode 100644 index 0000000000..a38b99a01a --- /dev/null +++ b/application/i18n/po/po-sq_AL/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Ju lutem verifikoni qe keni zgjedhur nje objekt" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Ju lutem verifikoni qe keni zgjedhur nje objekt" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Raportet duhet te kategorizohen para se te aprovohen" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Nuk keni te drejta te kryeni kete veprim" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-sq_AL/roles.po b/application/i18n/po/po-sq_AL/roles.po new file mode 100644 index 0000000000..24d77523f1 --- /dev/null +++ b/application/i18n/po/po-sq_AL/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Elio Qoshi , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-06-07 08:45+0000\n" +"Last-Translator: Elio Qoshi \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Hapësira e përshkrimit duhet të përmbajë 3 deri në 100 karaktere." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr " Informacioni në hapësirën e përshkrimit është i detyrueshëm për tu plotësuar." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Emri duhet të përmbajë vetëm shkronja dhe numra ." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Emri duhet të përmbajë 2 deri në 30 karaktere." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr " Roli i Krye Administratorit nuk mund të modifikohet." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Informacioni për emrin është i detyrueshëm për tu plotësuar." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Niveli i aksesit duhet të jetë një numër nga 0 deri në 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Niveli i aksesit duhet të jetë një numër nga 0 deri në 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Niveli i të drejtave duhet të jetë një numër nga 0 deri në 100." diff --git a/application/i18n/po/po-sq_AL/settings.po b/application/i18n/po/po-sq_AL/settings.po new file mode 100644 index 0000000000..94e34993ca --- /dev/null +++ b/application/i18n/po/po-sq_AL/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/projects/p/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Vlera në hapësirën për lejimin e komenteve nuk është korrekte." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Informacion i detyrueshëm për tu plotësuar." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr " Hapësira për përfshirjen e lajmeve të ditës nuk ka një përmbajtje korrekte." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Informacioni i detyrueshëm për tu plotësuar." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Vlera në hapësirën për lejimin e denoncimeve nuk është korrekte." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr " Informacioni për lejimin e denoncimeve i detyrueshëm." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Hapësira për lejimin e raporteve nuk përmban një vlerë të saktë." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr " Informacioni për lejimin e raporteve i detyrueshëm." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Vlera në hapësirën për publikimin e statistikave nuk është e saktë" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr " Informacioni i detyrueshëm për tu plotësuar." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr " Numri fillestar i rregjistrimeve për do kërkesë API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Nurmi maksimal i rregjitrimeve për do kërkesë" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Numri maksimal i kërkesave API për do adresë IP " + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Hapësira për Akismet nuk ka një përmbajte korrekte." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr " Hapësira e Akismet nuk ka një përmbajte." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr " Informacioni i detyrueshëm për tu plotësuar në hapësirën e cache pages." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr " Vlera në hapësirën cache pages është jo korrekte." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Vlera për jetëgjatësinë e cache pages nuk është korrekte." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr " Informacioni i detyrueshëm për tu plotësuar." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr " Serveri juaj nuk është konfiguruar për të bërë pastrim të URLsë. Ju duhet të ndryshoni konfigurimin e serverit tuaj përpara se të mund të pastroni URL-në. Në linkun e mëposhtëm do të gjeni udhëzimet se si mund të pastroni URL-në tuaj në këtë forum" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Ky opsion e bën Ushahidi-n të aksesueshëm nëpërmjet komandës Pastro URL-të (pa përdorur \"index.php\" në URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Aktivizo pastrimin e URL-së" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Pastro URL-në" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Numri i Clickatell API nuk duhet të përmbajë më tepër se 20 karaktere ." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Informacioni për Clickatell API i detyrueshëm." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr " Fjalëkalimi Clickatell duhet të jetë 5 deri në 50 karaktere ." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Informacioni për Fjalëkalimin Clickatell është i detyrueshëm për tu plotësuar." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Emri i përdoruesit Clickatell nuk mund të jetë më shumë se 50 karaktere." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Informacioni për emrin e përdoruesit Clickatell i detyrueshëm." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Hartë e konfiguruar" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Vendodhje fillestare" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Hapësira per ngjyrën nuk ka një përmbajtje korrekte." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Ngjyra nuk duhet të përmbajë më shumë se 6 karaktere." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Informacion i detyrueshëm për tu plotësuar ." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Pamja e hartës fillestare" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Niveli fillestar i zmadhimit" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Rigjej emrat gjeografik të qyteteve" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr " Informacioni për portën e mail server-it është shumë i gjatë." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Porta e mail server-it duhet të përmbajë vetëm numra." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Fjalëkalimi i mail server-it duhet të përmbajë nga 5 deri në 50 karaktere ." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr " Fjalëkalimi i mail server-it i detyrueshëm për tu plotësuar." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Informacioni për portën e mail server-it është shumë i gjatë." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr " Porta e mail server-it duhet të përmbajë vetëm numra." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr " Informacioni për portën e mail server-it është shumë i gjatë." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Tipi i mail server-it është i detyrueshëm për tu plotësuar." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Emri i përdoruesit të mail serverit nuk duhet të përmbajë më shumë se 50 karaktere ." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Emrit i përdoruesit të mail serverit është i detyrueshëm për tu plotësuar." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Opsionet e facebook-ut" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Për të marë informacionin e mëposhtëm do ju duhet të krijoni një aplikim të ri në Facebook" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook app ID " + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Hapësira e Google Analytics duhet të përmbajë një Web Property ID të vlefshëm në formatin UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Mundësi HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Ky opsion akseson Ushahid-in në një mënyrë të pasigurt. without \"https://\" in the URL prefix" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Ky opsion akseson Ushahid-in në një mënyrë të sigurtë me https në prefiksin URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Hapësira e Artikujve për faqe nuk përmban informacion korrekt. " + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Informacioni i artikujve për faqe është i domosdoshëm për t`u plotësuar." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Hapësira e Artikujve për faqe (admin) nuk përmban informacion korrekt ." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Informacioni i artikujve për faqe(admin) është i domosdoshëm për t`u plotësuar." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sq_AL/sharing.po b/application/i18n/po/po-sq_AL/sharing.po new file mode 100644 index 0000000000..67401d2a56 --- /dev/null +++ b/application/i18n/po/po-sq_AL/sharing.po @@ -0,0 +1,68 @@ +#. extracted from en_US/sharing.php, sq_AL/sharing.php +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-17 06:51+0000\n" +"PO-Revision-Date: 2012-08-17 06:51+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sq_AL\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-sq_AL/stats.po b/application/i18n/po/po-sq_AL/stats.po new file mode 100644 index 0000000000..31bebb449c --- /dev/null +++ b/application/i18n/po/po-sq_AL/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Aprovuar" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategori" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Impakti i kategorisë" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Ky grafik ofron një pamje lineare të raporteve sipas kategorive në kohë. Lëviz nga e majta në të djathtë për të patur një pamje krahasuese midis kategorive të ndryshme. Vendosni maus-in mbi grafik për më tepër detaje." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Zgjidhni një periudhë kohore." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Shtetet" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Shteti" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Ndarja e Shtetit" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr " Ky është seksioni i statistikave dhe së shpejti do të përmbajë një përshkrim të përgjithshëm. Për momentin përdorni informacionin që keni në dispozicion." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Gabim" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Minifjalor" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Përmbledhje kryesore" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Legjendë" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Pamje e faqeve" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Numri total i faqeve që vizitorët kanë parë në site-n tuaj" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Raportet" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr " Kategoritë e Raporteve " + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr " Statistikat e Raporteve " + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr " Statuset e Raporteve" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Tabela e raporteve" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Të dhëna të raporteve" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistika të pastrukturuara" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Mujore" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Mujore" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Mujore" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Të gjitha" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "E pa Aprovuar" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Vizitorë Unik" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr " Numri i personave që vizitojnë faqen tuaj. Vizitorët unik janë ata që përdorin cookies. Vizitorët që nuk kanë të aktivizuar cookies mund të identifikohen duke përdorur mënyra të tjera si p.sh IP address, rezolucion, browser, plugins, OS, etj." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr " E paverifikuar" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr " E Verifikuar" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Përmbledhje e Vizitorëve" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Vizita" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Një vizitë është rregjistrimi i një vizitori i cili e hap faqen e tij 30 minuta pas aksesit të tij të fundit ." diff --git a/application/i18n/po/po-sq_AL/tooltips.po b/application/i18n/po/po-sq_AL/tooltips.po new file mode 100644 index 0000000000..35cb69bbc4 --- /dev/null +++ b/application/i18n/po/po-sq_AL/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# abrahaj , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Kjo i shton kategorive të tjera raportin. Nëse ju zgjidhni Kategorinë 1 dhe raporti ka tashmë të bashkëlidhur Kategorinë 2, më pas raporti do ti ketë të dyja kategoritë." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Aprovoni ose jo raportin. Nëse e aprovoni kjo do të shfaqet publikisht." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Ju do të jeni në gjendje të caktoni një shenjë dalluese për përdoruesin. Zgjidhni simbolin që caktohet këtu." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "është një varg orësh ose minutash i kufizuar me dy orare, në formatin 24 orësh. Nëse ju vendosni një kohë më të herëshme në hapësorën e dytë, kjo do të shndërrohet në hapësirë të parë. Këto orare duhet të jenë brënda një dite të vetme. Gjithashtu kjo kohë do të kontrollohet nëse përkon me kohën e konfiguruar në faqen tuaj në mundësitë e faqes dhe nuk është e nevojshme që orari i përdoruesit të përputhet me vendndodhjen e tij. Për të injoruar këtë mundësi lëreni afatin kohor 00:00 deri 00:00 ." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Nëse ju do të donit të aktivizonit Kodin TRIGGER vetëm kur një kategori e caktuar është përdorur, ju mund të pozicionoheni aty. Kjo do të bëjë të mundur që Kodi Trigger të aktivizohet vetëm kur një nga kategoritë është përdorur praktikisht. Nëse ju zgjidhni Kategorinë 1 & Kategorinë 2 dhe raporti është pranuar duke përdorur Kategorin 2 & Kategorin 3, ju do të kaloni testin." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Nëse ky veprim ndodh në një ditë të caktuar të javës, vendoseni këtu. Mbani mend që dita është vendosur sipas hapësirës kohore të konfiguruar në vendodhjen tuaj. Klikoni komandën shift, ose kontrolloni për mbivendosjen e ditëve të zgjedhura." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Struktura e email-it që do të dërgohet." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Përmbajtja e email-it që do të dërgohet." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Ju mund të zgjidhni ta lini bosh nëse nuk dëshironi të kontrolloni fjalët kye. Nëse ju vendosni fjalë, do të ju duhet ti ndani ato me presje (,). Për shembull, nëse ju doni të aktivizoni një kod trigger, kur dikush përmënd në mesazhet e tyre termat \"dashuri\" ose \"paqe\", ju do te donit të shtonit \"dashuri , paqe\" në kutinë e fjalëve kyce." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Ju mund të zgjidhni Kudo ose një vendndodhje specifike. Nëse ju zgjidhni një vendndodhje specifike do ju kërkohet të vizatoni një kutizë që përcakton zonën e veprimit. Për shembull, nëse ju doni që kodi Trigger të aktivizohet kur dikush shton një raport në Tiranë, ju duhet të zgjidhni një zonë specifike dhe më pas të vizatoni kutizën rreth Tiranë. Ju mund të ndryshoni madhësinë e këtyre kutizave. Gjithashtu ju mund ti shumëfishoni ato." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Ky kriter do të aktivizojë kodin trigger në llogarinë e N-të për përdoruesit në grup ose përdoruesit individualë. Lëreni bosh nëse doni t`a injoroni atë." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Ky është emri fillestar për t`i shtuar Raportit." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Nëse të gjitha kualifikimet e mësipërme janë kaluar me sukses, Kodi Trigger do të nisë një përgjigje. Kjo mund të variojë nga aprovimi i raportit deri në dërgimin e email-it. Zgjidhni një përgjigje për të aktivizuar opsione shtes për përgjigjet specifike." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Nëse ju zgjidhni \"Triggering User\", email-i do t`i dërgohet përdoruesit i cili ndërmori veprimin. Nëse ju zgjidhni butonin e radios pasi keni zgjedhur kutinë e input-it, ju do të jeni në gjendje të shtoni adresën e përshtatshme të email-it. Kjo është e vlefshme kur ju jeni duke përdorur Kodet Trigger për të njoftuar njerëzit kur pjesë të caktuara të hartës po shohin raportet, kontrollo ins ose disa aktivitete të tjera." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Ju mund të zgjidhni ditët këtu. Ditët janë të përcaktuara nga opsionet e zonës kohore. Nëse dëshironi të përfshini të gjithë datat, atëhere mos përzgjidhni vetëm një prej tyre." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr " Kodi trigger është komponenti kryesor i opsioneve të veprimeve Triggers. Ky është vendi ku ju përcaktoni nëse dëshironi të ndodhë dika kur dikush paraqet një raport, kryen një kontroll , etj. Ju do të jeni në gjendje të përzgjidhni përgjigjet e këtyre ndërveprimeve pasi keni zgjedhur një. " + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr " Përdoruesi mund të jetë një person specific ose dokush tjetër. Nëse ju dëshironi përdorues specifik për të aktivizuar një kod Trigger , ju duhet ti përzgjidhni ato këtu. Përndryshe gjithësecili do të jetë përdorues derisa kodet trigger të jenë të aksesueshëm për të gjithë përdoruesit që veprojnë në sistem." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Cilëson raportin si të verifikuar ose jo." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr " Profilet e faqeve në siti-n Gravatar. Duke klikuar në imazhin tuaj , ju do të përfshiheni në web-in Gravatar ku ju mund të ndryshoni foton tuaj të profilit ." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Ndani vlerat me presje nga njëra tjetra, p.sh. vlera1, vlera2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Ndani cdo vlere me nje presje, p.sh vlera1, vlera2. Nese deshironi te paracaktoni nje vlere atehere mbylleni listen me :: p.sh nese deshironi te paracaktoni vlera3, atehere shkruani vlera1, vlera2, vlera3::vlera3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Ndani do artikull me presje, p.sh. Artikulli 1, Artikulli 2 etj." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Filloni të zgjidhni listën e anëtarve." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Përmbajtja e mesazhit privat" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Mesazh privat" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr " Ju mund të zgjidhni një ngjyrë që do të shfaqet nën foton tuaj të profilit në profilin tuaj publik. Kjo do të jetë gjithashtu ngjyra që do të shfaqet në hartë për kontrollet tuaja." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr " Adresa juaj e email-it" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr " Kjo është një nga mënyrat se si ju identifikoheni në faqen web. Kujtoni që kjo është publike!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Nëse vendoset, ky do të jetë fjalëkalimi juaj i ri. Lëreni bosh nëse ju dëshironi të mbani fjalëkalimin aktual. " + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr " Kjo është e detyrueshme kur përfshihet një përdorues i ri dhe ky do të jetë fjalëkalimi i përdoruesit të ri. Ju duhet të informoni përdoruesit e rinj që ata të ndryshojnë fjalëkalimin pasi janë identifikuar për herë të parë. " + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Duke zgjedhur PO, ju do të merrni sinjale nëpërmjet email-it nëse raporte ose komente të reja janë postuar në web-in tuaj." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr " Fjalëkalimi juaj aktual. Kërkohet të vendosni fjalëkalimit për të parandaluar do ndyshim të paautorizuar në llogarinë tuaj. " + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr " Profili juaj mund të shihet nga gjithësecili në internet në qoftë se ju zgjidhni këtë opsion. Kjo është mënyra më e thjeshtë për të treguar raportet që ju keni publikuar , kontrollet tuaja, dhe gjithka tjetër në faqen tuaj." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr " Kjo është adresa ku mund të gjendet profili juaj publik." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Emri juaj i përdorimit nuk mund të ndryshohet." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr " Nivelet e aksesit janë përdorur për të kufizuar hyrjen në të dhënat e klientëve. Niveli më i lartë i aksesit mund të lejojë aksesin në fusha me nivel më të ulët. Kryeadministratori ka nivelin më të lartë të aksesit (100). Të dhënat publike kanë aksesin më të ulët (0)." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr " Kjo është adresa e emailit që do të përdoret për të dërguar sinjalet e email-it." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr " Lejon përdoruesit që të informohen për do sinjal nga web-i." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr " Kjo lejon grumbullimin e raporteve të njëjta në një pikë të vetme në hartë." + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr " Lejon përdoruesit të komentojnë në raportet në faqet kryesore. " + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr " Kjo lejon lajmet RSS të shfaqen në faqen kryesore." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr " Lejon përdoruesit të shtojnë informacion direkt nga formati i web-it." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr " Numri fillestar i rregjistrimeve për do kërkesë API." + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr " Numri maksimal i rregjistrimeve për do kërkesë API " + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr " Numri maksimal i kërkesave API për do Adresë IP." + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr " Sfondi do të shaqet në website-n tuaj në qoftë se formati i temës që ju keni zgjedhur është i përshtatshëm. Madhësia e rekomanduar e këtij sfondi do të varet nga tema që ju po përdorni. Kujtoni që kjo do të zëvendësojë titullin e faqes dhe sloganin në krye të faqes." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr " Numri i kolonave të bllokut që do të shfaqet në do rrjesht." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr " Aktivizo ose aktivizo faqet fshehura. Kjo e bën faqen më të shpejtë duke reduktuar kohën e përgjigjes. Ne rekomandojmë të përdoret caching kur ka ngarkesë të lartë faqesh. ** Kujtoni që raportet do të jenë të populluara bazuar në skedulin që ju keni vendosur." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Vendosni afatin kohor për cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr " Ky opsion ju jep mundësinë të kontrolloni vendosjen tuaj. Ky është një tip raporti i thjeshtëzuar që nuk është moderuar përpara se të jetë në faqen kryesore dhe të detyrohet të konfigurohet në një mënyrë të caktuar. Kur ju të jeni në gjendje ta bëni këtë , sigurohuni që opsionet e afatit tuaj kohor janë nën UTC dhe tema juaj suporton kontrollet. Kur kjo është e mundur, kontrolli i temave do të kryhet nga opsioni i faqeve të temave\\ addons. " + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr " Vendosni hartën për të mbuluar një vendodhje specifike" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr " Vendosni një kod ngjyre për të gjitha kategoritë në faqen tuaj." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr " Vendosni një ikonë për të gjitha kategoritë në faqen tuaj." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Në këtë shtet është vendosur faqia." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr " Vendosni on ose off komandën Kontakt në faqen kryesore " + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Vendosni on ose off komandën Si të ndihmoshnë faqen kryesore." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr " Ky është numri i raporteve për faqe të paraqitura në faqen kryesore." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Ky është numri i raporteve të shfaqura për faqe në Back End admin." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Kjo është qendra e marrjes së mesazheve." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr " Ky është një sinkronizim i nyjeve të mesazheve me platformën Ushahidi ." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr " Numrat e telefonit nëpërmjet të cilave janë marrë mesazhe." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Vizitorët aktiv të faqes suaj. Merrni të dhëna të detajuara për vizitorët." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Vendosni gjuhën që do të përdoret në faqe." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Nëse zgjidhni opsionin PO, ju duhet të aprovoni do përdorues që krijon një llogari në faqen tuaj duke caktuar rolin e tij. (ie. Anëtar, Administrator, Superadministrator)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr " Kjo përcakton se cila hartë duhet të përdoret në këtë faqe." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr " Duke vendosur këtë vlerë E Vërtetë ose Po ju do të bëni vendosjen tuaj private, pra vetëm përdoruesit me llogari që ju autorizoni mund të kenë akses në vendndodhjen tuaj. " + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr " Nëse kjo është plotësuar me PO, përdoruesit do të marrin një email me një link konfirmimi ku ata të klikojnë përpara se të kenë akses në vendosje. Nëse ju e aktivizoni këtë mbasi të keni pranuar përdorues, ata do duhet të konfirmojnë llogarinë e tyre përpara se të lejohen ta përdorin atë." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Ky është vendi ku email-et qëndrojnë" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Ky është fjalëkalimi për adresën e e-mailit ku dërgohen raportet." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Ky është informacion i detyrueshëm për të pranuar lidhjet hyrese në adresën e e-mailit." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "është e detyrueshme për të mundësuar një lidhje të sigurt." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "është e detyrueshme për të tërhequr email-e nga serveri pritës." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Kjo është adresa e e-mailit ku dërgohen raportet." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Statistikat janë ruajtur në një server të kontrolluar nga Ushahidi. Duke mundësuar këtë opsion, ju fitoni akses të drejtëpërdrejtë tek statistikat në panelin tuaj të administrimit. Duke patur këtë opsion ju nuk do të mblidhni më statistika dhe do ta keni të pamundur të përmirësoni ngarkesën e statistikave kur kjo të fiket. Duke aktivizuar këtë opsion ju fitoni sërisht akses tek statistkat direkt nga paneli juaj." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr " A kanë të tjerët të drejtë të ripublikojnë tekste, mesazhe viedo ose tema që juve dhe përdoruesit tuaj keni krijuar? Shkoni tek: Hapësira e krijimeve Nëse jeni të interesuar për të specifikuar farë të tjerët janë në gjendje të bëjnë me punën tuaj. Kujtoni që të jeni të sakte rreth elementëve të faqes suaj për të cilët jeni të licensuar!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Kjo është adresa e e-mailit që do të marrë raportet e email-eve dhe mesazhet nga forma e kontaktit." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Ky është teksti që do të shfaqet në hartën e faqes kryesore. Kjo është e përdorshme për t dhënë vizitorëve të faqes, informacion të rëndësishëm. Për të fshirë kutinë thjeshtë fshini mesazhin këtu." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Ky është emri i faqes që shfaqet në krye të faqes kryesore." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Ky është një mesazh që do të shfaqet në faqen e raportit të shtuar. Kjo gjë është e mirë për udhëzime për vizitorët që janë duke raportuar" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Shpjego me pak fjalë përmbajtjen e faqes suaj." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Ky është afati kohor ku faqia juaj do të operojë. Kjo do të ndikoje në veprimet ku do ju duhet të përdorni datën si në raportet direkte ashtu edhe në ato indirekte." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Vendosni Fjalët me simbolin # (hashtag) që do të përdoren në tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sq_AL/ui_admin.po b/application/i18n/po/po-sq_AL/ui_admin.po new file mode 100644 index 0000000000..c5f50b14ba --- /dev/null +++ b/application/i18n/po/po-sq_AL/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Elio Qoshi , 2014 +# eno , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-06-07 08:37+0000\n" +"Last-Translator: Elio Qoshi \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Aksesi nuk u aprovua. Kredencialet tuaja mund të jenë të pavlefshme ose kërkesa juaj është refuzuar." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Aksesi nuk u aprovua. Kërkesa juaj është kuptuar, por është refuzuar si pasojë e aksesit të kufizuar. Ju lutem provojeni më vonë." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Niveli i aksesit" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Veprimet" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Shto në kategori" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "u shtua" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "u shtua/ u modifikua" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Shtojca" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administrator" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Njoftime" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Njoftime të marra" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonim" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "çdokush" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Kudo" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API e ndaluar" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Shënime" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Opsionet API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Lejo" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Lejo të gjitha" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "u aprovua" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Aprovimi automatik" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Aprovimi manual" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "E arkivuar" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "A jeni të sigurtë se" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "A jeni i sigurtë se doni të fshini këtë artikull?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "A jeni i sigurtë se doni të fshini këtë foto?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "A jeni i sigurtë se doni të ndërroni formularin?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Cakto" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Detyrat" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Cakto Logon" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Autori" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Autori i email-it" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Mbrapa" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Ndalo IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Ndërmjet kohëve" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Blloko" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Përmbajtja" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Anullo" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategoritë" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Gabim në shfaqjen e grafikut" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Ju lutem sigurohuni se mesazhi juaj është i vlefshëm." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Ju lutem sigurohuni se numri është i vlefshëm." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Ju lutem kontolloni opsionet e SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Detajet e rregjistrimit" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Rregjistrimet" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Qytetet e ngarkuara" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kodi" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Versioni i kodit i pa sinkronizuar." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Ngjyra" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Komentet" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Kodi i konfirmimit të njoftimit tuaj është: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Përdoruesi ka qënë" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "ështje" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Shteti nuk u gjet" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "e krijuar/e modifikuar" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Krijo një raportim" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Përmirësimi me kritika, jo i plotë" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Aktiv për momentin" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Jo aktiv për momentin" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Ju nuk keni lejen e kërkuar për të modifikuar fushat e mëposhtme." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Ditore" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Paneli" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "Baza e të dhënave" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Data & Orari" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Ditët e javës" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Versioni DB i sinkronizuar." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "e fshirë" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Fshi" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Fshi Logon" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demostrim" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Përshkrimi" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "E pa aktivizuar" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "ndarja në fillim" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "ndarja në përfundim" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "klasa ndarëse" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Shkarko Raportet" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Zgjedhjet në listë" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "E modifikuar" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "E modifikuar nga" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Modofiko" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Modifikim" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "I gjithë " + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Gabim në kodin gjeografik! Gabimi HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP Library nuk është instaluar" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Gabim" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Gabim, nuk u bë i mundur postimi i rastit" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "do gjashtë orë" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "do dhymbëdhjetë orë" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Ekperimentale" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Pyetje të Bëra Shpesh" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "Lajme" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Reagim" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "Lajme" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista e zgjedhjeve" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Vlera fillestare" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Tipi të dhënave" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerike" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Teksti i lirë" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Gjatësia (në rrjeshta)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Hapësirë e fshehur" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Maksimumi i karaktereve" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Emri i fushës" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Nyje" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Jo" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Po, mbyllur prej fillimit" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Po, hapur prej fillimit" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Skedari i ngarkuar nuk mund të gjendet" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Skedari nuk mund të hapet" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Formulari nuk ekziston!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forumi" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Hapësira për tekstin (Teksti i lirë)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Hapësira për datën" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Hapësira për komandat e radios" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Hapesira për kutizat" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Hapësira për listimin" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Nga" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Nga" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Gabim në tejkalimin e kohës për emrat gjeografik" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Merr ndihmë" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Mer Më shumë tema" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Mer më shumë shtojca" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Veprimet" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Shto/Modifiko" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Manaxho përdoruesit" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Roli" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Përdoruesi" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ndihmë" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "do orë" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Lajmi për ngjarjet" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Dosja e instalimit ende ekziston. Fshini dosjen e instalimit. Sepse kjo është një dobësi e mundshme të sigurisë." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Rasti" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Rastet" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Detaje mbi rastet" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Parametër i pavlefshëm" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Adresa IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "A është kjo hapësira për datën?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Kush mund të shikojë përgjigjet" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Kush mund të shtojë përgjigje" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Fjala ky" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Fjalët ky" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Adresa e email-it:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Emri i Plotë:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Fjalëkalimi:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Roli:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Emri i përdoruesit:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Nivelet" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "rregjistrohu" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Hyrjet" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Manaxho" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Menaxho Rolet & të drejtat" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Shiko përdoruesit" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Shto/Modifiko Përdorues" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Menaxhoni Listen Tuaj Publike" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Shënuar si" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "shënuar jo si spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "shënuar si spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "nuk përputhet me asnjë dokument" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Mesazhe" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Mesazhet" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Mesazhe Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Mesazhe në Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Mesazhi u dërgua!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minutë" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minuta" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Mungojnë parametrat" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "e modifikuar" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modifiko opsionin e zonës kohore" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "vazhdo më poshtë" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "kthehu më lartë" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Raste të shumëfishta Hosted" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Njoftimet" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Rregjistrimet e mia" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Profili Im" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Raportet e mia" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Votimet" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Pozitive" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negative" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Emri" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Krijo një njoftim të ri" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Krijo një mesazh të ri" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Fjalëkalim i ri" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Jo" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Kjo është një kategori e veantë që nuk do të paraqitet në raportet për përdoruesit. Ajo përdoret për të mbajtur raportet e pa-kategorizuara, si rezultat i fshirjes së një kategorie." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Lajmërime" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Janë të pranueshme edhe shkronjat kapitale." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Nuk u gjetën" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Nuk ka të dhëna. Nuk u gjetën rezultate." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Nuk ka gabim" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Nuk ka rezultate!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "i" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Në një llogari specifike" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "faqja" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "faqet" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Faqja nuk u gjet" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parametrat e përdorura" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Fjalëkalimi" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Ndryshim i fjalëkalimit" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "I/E dashur" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Ne morëm një kërkesë për të ndryshuar fjalëkalimin" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Për të ndryshuar fjalëkalimin,ju lutem klikloni në lidhjen e mëposhtme (ose kopjoni linkun dhe vendoseni në browser-in tuaj)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Sipas kërkesës suaj, fjalëkalimi u ndryshua. Detajet e reja janë si më poshtë" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ndryshoni fjalëkalimin Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefoni" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Ju lutem zgjidhni" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "Mesazh Privat" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Të dhënat nuk u dërguan" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Shikim paraprak" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Mesazh" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Mesazh privat" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Mesazhi privat u dërgua" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Subjekti" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Për" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Renditja publike" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Kualifikuesit" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "lexo" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Rëndësia" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Emri i raportit" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Raportuesit" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Niveli i raportimit" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Raporte" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Përmbledhje e rezultateve" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "I domosdoshëm" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Rivendos" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Përgjigje" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Rezultate" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Tërheq" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Ruaj opsionet" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Kërkim" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Kërko Raporte" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "duke kërkuar për" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Kodi i enkriptuar është akoma në vlerën fillestare. Duhet të ndryshohet për qëllime të sigurisë." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Kjo faqe përdor shërbimin HTTP. Ju duhet të zgjidhni HTTPS për të rritur sigurinë e faqes." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Udhëzimet janë të disponueshme në wiki: " + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Zgjidhni tipin e fushës ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Ju lutem zgjidhni një artikull" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Ju duhet të zgjidhni një Trigger përpara se të zgjidhni një Përgjigje." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Ju duhet të zgjidhni një Trigger përpara se të përcaktoni Kualifikuesit." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Dërguesi" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "I dërguar tek" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Ky mesazh është dërguar nga faqja juaj drejt " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Koha e Server-it" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Opsione" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Paraqitja e faqes" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Paraqitja e rezultateve" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "e paraqitur" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Kategori e veantë" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "është një kategori e veantë që nuk do të paraqitet në raportet që marrin përdoruesit. Ajo përdoret në rastet e dështimit të komandës \"Raportet e besuara\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Fusha specifike" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Gjendja" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistika" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Të dhëna" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Mbledhja e të dhënave nuk u realizua me sukses! Ju lutem provoni përsëri." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Mbledhja e të dhënave nuk u realizua me sukses!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Ditët specifike" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Subjekti" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super administratori" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Detyra u realizua" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Hapësira për tekstin" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Emri" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Menaxho përdoruesit" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "tek" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Regjistrimet totale" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "tek" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Përkthe raportet" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Përdoruesi Triggering" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "i pa aprovuar" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "I panjohur" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Dështimi i panjohur" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "I palexuar" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Ju nuk do të merrni më njoftime nga" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Kliko këtu për të bërë përmirësimin e versionit" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Përmirëso Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Përmirëso statusin Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Përditëso raportet" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Përdoruesi" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Përdoruesit" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "I verifikuar/I pa verifikuar" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Verifiko/Mos verifiko" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versioni" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " Përmirsimi i disponueshëm." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Kodimi i videos" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Mesazh privat" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Shikoni faqen" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Shikoni raportin" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Mirë se erdhët, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Po" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Ju po kërkoni për" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sq_AL/ui_main.po b/application/i18n/po/po-sq_AL/ui_main.po new file mode 100644 index 0000000000..2cdf263792 --- /dev/null +++ b/application/i18n/po/po-sq_AL/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Rreth " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Akses" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Limitet e aksesit " + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Emri i Llogarisë" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Veprime" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ky veprim nuk mund të `bëhet. Jeni i sigurt që doni të vazhdoni?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivizoni" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktiv" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Shto" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Shtuar nga " + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Të dhëna Plotësuese" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr " Raporte plotësuese" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Shto\\modifiko" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Shto një fushë" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Shto një gjuhë" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Shto të re" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Shto një kategori të re" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Përkthe" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administrim" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Merr sinjale" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Më sinjalizo nëse një raport është paraqitur ose po paraqitet:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Ruaj denoncimin tim" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Adresë email-i:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Fusni adresën e email-it" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "Fusni numrin tuaj të telefonit me prefiksin e vendit tuaj" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Merr denoncime" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Numër telefoni:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ose vendosni një shenjë në hartën më poshtë dhe do të merrni të gjithë denoncimet me një distancë 20 kilometra." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Nëse ju nuk mund të gjeni vendndodhjen ju lutemi klikoni në hartë për të shënuar vendndodhjen korrekte." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Lajmet RSS (kopjoni URL e mëposhtme)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Zgjidhni një Qytet" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Step 1: Zgjidhni qytetin ose vendodhjen tuaj:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Step 2: Dërgoni denoncime në:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Hapi 3 (Fakultativ): Zgjidh Kategoritë" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Konfirmo një kërkesë të mëparshme për denoncim" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Denoncimi juaj është ruajtur!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Të gjitha " + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "I lejuar" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Të gjitha kategoritë" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Gjithë kohës" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "dhe" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Aprovoj" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Aprovuar" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Reporte të aprovuara" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Aprovo këtë raport" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "I përafërt" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arkivo" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "E arkivuar" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "tek" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Autor" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Vet kontroll" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Raporte mesatare në ditë" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Në pritje për tu aprovuar" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Në pritje për tu verifikuar" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Logo" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Logot" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Imazhi i logos" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ju mund të ngarkoni imazhin tuaj për logon." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Seria e Logove" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Zgjidhni një logo" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Shfleto profilin" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Anullo" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategori" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategori" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Filteri i Kategorisë" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategoria ka qënë " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Emri i kategorisë" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Ndryshoni periudhën kohore" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Ndryshoni fjalëkalimin" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Ndrysho fotografinë time" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Zgjidh një" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Zgjidhni të dhëna specifike për të shkarkuar" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Ose Zgjidhni periudhen tuaj kohore" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Zgjidhni tipin e hapësirës" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Pastro URL-në" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Pastro" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Pastro hartën" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Mbyll" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "Provëza" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Ngjyra" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Koment" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Komente" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Detajet e Komentit" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Opsionet tuaja tashmë janë ruajtur !" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Konfiguro" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ju keni konfirmuar adresën tuaj të email-it në mënyrë të suksesshme. Ju lutemi identifikohu më poshtë." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Na kontaktoni" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Kodi i sigurisë" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Adresa juaj e e-mailit" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Mesazh" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Mesazhi juaj u dërgua me sukses!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Emri juaj" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Numri juaj i telefonit" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Dërgo mesazhin" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Përmbajtja e mesazhit" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "E drejta e autorit ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Krijo" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Krijo\\modifiko" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Krijo të ri" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Krijoni një fjalëkalim të ri" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Krijoni një raport" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Besueshmëria" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Fjalëkalimi aktual" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Fusha e klientit" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Informacion" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datë" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(muaj/dita/viti)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Data & ora" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "dita" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "`aktivizo" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Tiranë, Shqipëri" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Fshi" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "U fshi" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Të fshira" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Opsioni i fshirjes është aktivizuar" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Fshij të fundit" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Fshij këtë raport" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Fshij atë qe është zgjedhur" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "fshij spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demostrative" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Pershkrim" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Shembull: Pranë karburant Fredi, rruga Mine Peza, pallati 208" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detaje" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Raport direkt" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "I pa aktivizuar" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Mosaprovim" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Shkarko raportet" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Modifiko" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Modifiko hapësirën e formularit" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Modifiko Raportin" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email-i" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Adresë emaili" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Opsionet e Mail Server" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Fjalëkalimi i Mail Server" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Porta e Mail Server " + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "mbështetja e Mail Server SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Tipi Mail Server" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Emri i përdorimit të Mail Server " + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Pra opsionet tuaja duhet të shoqërohen me këtë adresë emaili " + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Për të marë raportet nëpërmjet email-it, ju lutemi rivendosni opsionet e llogarisë suaj të email-it. Email-et do të merren nga " + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Disa server-a kërkojne një adresë të plotë email-i" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Fjalëkalimi i llogarise suaj të email-it" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Porta të zakonshme: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Shembull: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Shembuj: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "E aktivizuar apo e pa aktivizuar lidhja e SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---Bosh---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "Tek" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Gabim!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Shembull" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Shqipëri" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Aplikacione të jashtme" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Link i jashtëm videoje" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Lajmet e ditës" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Merrni një reagim" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Lajmet e ditës" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Lajmi ka qënë" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Artikujt" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Emri i lajmit" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL e lajmit" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Hapësirë e papërdorur" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Skedar" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Skedari juaj kalon madhësinë e lejuar." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filterat" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filterat e Raporteve" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filteri i raporteve" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filterat e raporteve që përmbajnë" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Gjej" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Gjej vendndodhjen" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Emri" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Skeduluesi Nxit nisjen" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Keni harruar fjalëkalimin tuaj?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formular" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formularë" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Përshkrimi i formularit" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Modifiko këtë formular" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "formulari ka qënë" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Titulli i formularit" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Nga" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Emri i plotë" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Vendndodhje qjeografike e vlefshme" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Ngjyrë" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Komente" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiketë" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Trashësia e vijës" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Shko" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "fjalë shoqëruar me simbolin # (hashtag)" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Ka qënë" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Si të ndihmosh" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "I fshehur" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Fsheh" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Fshih këtë mesazh" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Kreu" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Si të raportosh" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Përdoret për t`ju identifikuar në faqen e internetit për përdoruesit e tjerë." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Imazh" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Imazhe" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Imazhe/Ikonë" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Jo aktiv" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Mesazhet e marra" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Incidente përreth" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Vendndodhja e incidenteve" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Përfshi" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Përfshi kategori" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Përfshi hapësirën për klientin" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Përfshi një përshkrim" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Përfshi sa më shumë detaje të jetë e mundur" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "përfshi gjatësinë" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Përfshi vendndodhjen " + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Përfshi gjërësinë" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Media hyrëse" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Vlerësimi i infomacionit" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Vendosni vendndodhjen tuaj ekzakte" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Llogaria juaj nuk ka lejen e duhur për tu lejuar të keni akses të plotë. Ju lutemi kontaktoni administratorin" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Në përgjigje të" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Adresa e IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "A është ky profili juaj?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Artikull" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "Artikuj" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Detajet e artikullit" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Titulli i artikullit" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "elës" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Skedari KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Ngarko skedarin KMZ/KML " + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Gjuhë" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "E fundit" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Muaji i fundit" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Mbiemri" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Viti i fundit" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Gjatësi" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Shtresa" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Shtresa të tjera" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Shtresa ka qënë" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Emri i Shtresës" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Shtresa URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Lini një koment" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Më pak informacion" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivel" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Ky nivel ka qënë" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Emri i nivelit" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "E kufizuar" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Listë" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Duke ngarkuar raportet" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Vendndodhje" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Vendndodhje" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Qytet, Shtet" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Hyrje" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Llogaria u krijua në mënyrë të suksesshme. Ju mund të hyni tani." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Një konfirmim është dërguar në adresën tuaj të email-it." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Adresa e email-it nuk ekziston. Tentoni me një tjetër adresë ose krijoni një llogari të re." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Ju lutem zgjidhni ofruesin tuaj të llogarisë" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Hyni me" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Emai-i dhe fjalëkalimi" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "ID e hapur" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Rregjistrohu" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Krijoni një llogari" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Konfirmimi i rregjistrimit" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Krijoni tani një llogari për të përfituar më shumë karakteristika të faqes." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Gjerësi" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Hartë" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Shënoje si të lexuar" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Shënoje si të palexuar" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Madhësia maksimale e skedarit" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Filteri i Media-s" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Anëtarë" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Menaxhoni llogarinë tuaj" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Mesazh" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Mesazhe" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Detajet e mesazhit" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Mesazh nga një burim jo-numerik:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Celular" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modifiko" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Data e modifikimit" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "Muaj" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Më shumë" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Më shumë Informacion" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "A mund të shtrihet Ushahidi në shumë vende" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Për tu lejuar në këtë vendosje ju duhet të konformoni adresën tuaj të emailit. Nëse ju humbisni email-in e konfirmimit ju mund të kërkoni një tjetër më poshtë." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Emër" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Raportime të afërta" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "I\\E Re" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Lajme" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Lajmet e fundit" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Burimi i lajmeve" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Kategori e re" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Fjalëkalim i ri" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Raport i ri" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Tjetri" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Jo" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Asnjë regjistrim për të shfaqur." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Ska të dhëna" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Asnjë" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Shënime" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "E pa aprovuar" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "E pa aprovuar" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---E pa-zgjedhur---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "jo spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "E paspecifikuar" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Nuk ka raporte" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Nuk ka rezultate" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Zyrtare ; lajmet kryesore" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Opsioni" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Opsionale" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Opsionet" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organizata" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organizatat" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Përshkrimi i organizatës" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email-i i organizatës" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organizata ka qënë" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Emri i organizatës" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Numri i telefonit 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Numri i telefonit 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Website i organizatës" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Origjinale" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Përshkrimi origjinal" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "titulli origjinal" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Vendosje të tjera" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Mesazhet e dërguara" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "duke u nisur" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Faqja" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Faqet" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Përshkrimi i faqes" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Faqja ka qënë" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Emri i faqes lidhëse" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Titulli i faqes" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Kategoria prind" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Fjalëkalimi" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Verifikoni fjalëkalimin" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Fjalëkalimi u ndryshua me sukses! Identifikohuni më poshtë." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Keni harruar fjalëkalimin?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Kontrolloni email për fjalëkalinin e ri." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Qëndro i identifikuar në këtë kompjuter?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Muajin e kaluar" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Vitin e shkuar" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Në pritje" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "për" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Informacion personal Opsional." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefoni" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Foto" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Pamje" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Paje dhe Video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Kërkoni për vendndodhjen tuaj duke përdorur nje emër vendndodhjeje ose kordinata të gjerësisë dhe gjatësisë(formati: 38.19, 85.61), ose klikoni në hartë për të shënuar pozicionin e saktë." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Fillo" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Ju lutem vini re" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Profil Publik" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL e profilit publik" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Paraqit" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Paraqit artikujt" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Mesazhi i mëparshëm" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "I mëparshëm" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Privat" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Ngjyra e profilit" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Profili u ruajt" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Të dhëna të shpejta" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Renditja" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Lexo" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Merr" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Marrë nga" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Prano lajmërime" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Raportet më të fundit" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Rifresko Lajmet e Ditës" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email i regjistruar" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Fshi" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Përgjigju" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Raporto" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Raportet (nga harta,të listuara në rend kronologjik)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Raportuesi" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Raportuesit" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Data e raportimit" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email-i i raportuesit" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Emri i raportuesit" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Raportuesi ka qënë" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Adresa IP e raportuesit" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Mbiemri i raportuesit" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Niveli i raportuesit" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Nivelet e raportuesit" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Telefoni i raportuesit" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Raportet" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Shfleto" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Prano" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Raportet nga ky përdorues" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategoritë" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Data" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Përshkrimi" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Raportet do shkarkohen ne formatin CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Karakteristika" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Gjeni një vend pranë jush" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Emri" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Mbiemri" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Përpuno emrin e vendodhjes" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Burimi i lidhjes për lajmet" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Informacion fakultativ" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Ngarko Foto" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Kthehu tek faqja e raporteve" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Zgjidh një qytet" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Raporti juaj është pranuar nga stafi dhe po shqyrtohet. Do ju kontaktojmë nëse e shikojmë të nevojshme." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Shto një raport të ri" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Koha" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Afati kohor" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Titulli i raportit" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Raporto një Ngjarje" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Detaje të raportit" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Duke dërguar një mesazh tek" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Duke dërguar një email" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Duke derguar një mesazh tweet" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Duke plotësuar këtë formular ne websitin tonë." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Duke përdorur një aplikim" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Raporti u ruajt" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Titulli i raportit" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Kërko më shumë informacion" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Kërko vendndodhjen" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "I detyrueshëm" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Kërkesat" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Ridërgo Email e konfirmimit" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Ndrysho" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Ndrysho filtrat" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Ndrysho fjalëkalimin" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Shfaq emrat e qyteteve për shtetin e zgjedhur" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Llogari të menaxhuara nga shërbimi %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Roli" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Ruaj" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "U ruajt" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Ruaj & Shto tjetër" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Ruaj & Mbyll" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Ruaj raportin" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Skeduli" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Skedulues" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Ditë" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Orë" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Hyrja e Skeduluesit" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minuta" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Ditë e javës" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Kërko" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Rezultatet e kërkimit" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Kodi i sigurisë" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Zgjidh të gjitha" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Zgjidh llojin e fushës" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Zgjidh tipin e formularit" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Zgjidh në hartë" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Zgjidh aq sa duhet" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Ju lutem verifikoni se keni zgjedhur këtë artikull" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Zgjidhni temën" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Dërgo" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Dërgo konfirmimin" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Dërguar tek" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Dërguar" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Dërguar nëpërmjet" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Adresa e serverit" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Tipi i serverit" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Shërbimi" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Emri i përdoruesit të serverit" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID e përdoruesit të shërbimit" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Shpërnda" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Të dhënat e shpërndara" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Shpërndarja u krye" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Duke shpërndare" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Trego" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Trego të gjitha" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Trego mesazhet" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Faqja e web" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "adresa e email e faqes" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL e faqes" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Na vjen keq, ju nuk keni më simbole." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Burimi" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Emri i burimit" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL e burimit" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Shërbimi SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Nga" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Hapi" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Shto një Raport" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Shto nëpërmjet SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Dërgoni SMS tek" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "në celularin tuaj" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Sukses!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "U mor me sukses" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Mbiemri" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Vëzhgim" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistem" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Tema" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Tema fillestare Ushahidi" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Opsionet e temës" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Këtë" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Sot" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Këtë muaj" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Këtë javë" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Këtë vit" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Ky është profili juaj." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Koha" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Titulli " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "tek" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Sot" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Sot në" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Shenjë" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Raportet totale" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "E përkthyer" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Përkthimi i përshkrimit" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Titulli i përkthyer" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Përkthyer në" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Përkthimi" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Përkthimi u ruajt" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tipi" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Nuk u bë e mundur dërgimi i email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Raporte të pa kategorizuara" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "i palexuar" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "I pa verifikuar" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "lajme të përditësuara" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Të përditësuara" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Skedar për tu përditësuar" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Ngarko Raporte" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Me formularin e mëposhtme, ju mund të importoni të dhëna nga Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Duhet të përmbajë të paktën titullin dhe datën e Incidentit." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Nëse kolonat e gjatësisë dhe gjerësisë nuk ofrohen, lokacioni do kodohet duke përdorur Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Shembull i raportit CSV " + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,TITULLI I INCIDENTIT,DATA,LOKACIONI,PëRSHKRIMI,KATEGORIA,U APROVUA,U VERIFIKUA,GJATëSIA,GJëRëSIA
\"1\",\"Dyshohet për vdekje në Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Tre raste janë konfirmuar në Tiranë\",\"VDEKJE, QYTETARë, \",PO,PO,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Grabitje\",\"2009-03-18 10:10:00\",\"Vorë\",\"Grabitje kudo\",\"trazira, vdekje, humbje të pronës, \",PO,JO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Ngarkimi u krye me sukses" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Ngarko Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Përdoruesi" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Emri i përdoruesit" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Admin Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verifikim" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "I verifikuar" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Raporte të verifikuara" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verifiko" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verifiko këtë raport" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versioni" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "nëpërmjet" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Paraqitja" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Shimiket" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Shiko të gjitha" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Shiko të gjithë lajmet e fundit" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Shiko të gjithë raportet" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Shiko artikujt" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Shiko më shumë" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Shiko profilin publik" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Shiko raportin" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Shiko raportet" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "E dukshme" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Në pritje të aprovimit" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Në pritje të verifikimit" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Forumi në rrjet" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Pesha" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Po" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Dje" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Paneli juaj" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Skedari" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Afro" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Largo" diff --git a/application/i18n/po/po-sq_AL/upgrade.po b/application/i18n/po/po-sq_AL/upgrade.po new file mode 100644 index 0000000000..d495fd663b --- /dev/null +++ b/application/i18n/po/po-sq_AL/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Albanian (Albania) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sq_AL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq_AL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Të dhënat e futura janë të pa vlefshme. Vlera mund të jetë 0 për Jo ose 1 për Po." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Përmirësimi automatik" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Përditësim i disponueshëm" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Vazhdo" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Përmirëso versionin" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Do të bëhet përmirësimi i bazës së të dhënave tuaja nga versioni" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "Në versionin më të ri të bazës së të dhënave" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Klikoni në butonin \"Përmirëso\" për të realizuar proesin e përmirsimit." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Nëse doni të ruajmë një kopje të bazës suaj të të dhënave klikoni në butonin e mëposhtëm." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Zgjidhni nëse dëshironi të ruajmë një kopje të bazës së të dhënave përpara se të kryhet përmirësimi? (Rekomandohet)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Baza e të dhënave Ushahidi u përmirësua" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Përmirësimi nuk përfundoi me sukses" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Përmirësimi manual" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Versioni Ushahidi është në përmirësim" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Udhëzimet e mëposhtme tregojnë si të përmirësoni versionin e Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Shkarko
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Shkarko Ushahid-in më të fundit të ndërtuar nga" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Kopjo të dhënat
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Nëse dika nuk shkon si duhet, rekomandohet të bëni një kopje të plotë të të dhënave Ushahid.
Kopjo skedaret
- Ekstrakto skedarin e shkarkuar në formatin zip
- Duke u bazuar në sistemin operues që përdorni në web serverin tuaj, zgjidhni opsionin/mënyrën që preferoni (p.sh. Telnet, FTP, SSH) për tu identifikuar në webserver dhe zëvëndësoni të gjithë përmbajtjen e dosjeve me informacionin më të ri nga ndërtimi.
Përmirëso bazën e të dhënave
- Si fillim përcaktoni versionin e skemës së databazës duke shikuar vlerën db_version në tabelën e opsioneve ose shikoni tek informacioni i përmirësimit Ushahidi ne fillim të faqes.
- Nëse jeni duke përdorur versionin 25, ju duhet të përmirësoni versionin nga 25-26, 26-27, 27-28 e kështu me radhë deri në skedarin SQL më të fundit ne direktorinë tuaj /sql
- Me klinetin e databazës suaj, përmirësoni bazën e të dhënave duke zgjedhur skedarin e duhur sql.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Hapi 3: Shikoni brenda dosjes sql. Nisni përmirësimin në mënyrë manuale në skedarin -.duke filluar nga versioni aktual i instalimit db drejt skedarit përfundimtar sql të përmirësimit." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Step 4: Klikoni në butonin \"Vazhdo\" për të përmirësuar tabelat e nevojshme." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Për përmirësimin automatik, klikoni në butonin e mëposhtëm." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Në përmirësim" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Për të vazhduar me përmirësimin e thjeshtë, kërkohet informacioni i mëposhtëm për serverin FTP që mundësohet(hostet)nga faqja juaj." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "emri i Host FTP: Example: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Fjalëkalimi FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Emri i përdoruesit FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Ju keni marrë versionin më të fundit të Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Versioni i bazës së të dhënave: " + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Kujdes: Versioni i programit në version.php dhe në bazën e të dhënave nuk përputhen." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Kujdes: Versioni i programit në version.php dhe në bazën e të dhënave nuk përputhen." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Baza e të dhënave:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-sr/alerts.po b/application/i18n/po/po-sr/alerts.po new file mode 100644 index 0000000000..3e76027fab --- /dev/null +++ b/application/i18n/po/po-sr/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-sr/auth.po b/application/i18n/po/po-sr/auth.po new file mode 100644 index 0000000000..032cd94b90 --- /dev/null +++ b/application/i18n/po/po-sr/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-sr/bug.po b/application/i18n/po/po-sr/bug.po new file mode 100644 index 0000000000..00b7c9e554 --- /dev/null +++ b/application/i18n/po/po-sr/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-sr/category.po b/application/i18n/po/po-sr/category.po new file mode 100644 index 0000000000..2752fddd2d --- /dev/null +++ b/application/i18n/po/po-sr/category.po @@ -0,0 +1,89 @@ +#. extracted from en_US/category.php, sr/category.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-sr/comments.po b/application/i18n/po/po-sr/comments.po new file mode 100644 index 0000000000..e55bf2ddba --- /dev/null +++ b/application/i18n/po/po-sr/comments.po @@ -0,0 +1,59 @@ +#. extracted from en_US/comments.php, sr/comments.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-sr/contact.po b/application/i18n/po/po-sr/contact.po new file mode 100644 index 0000000000..7a9fc96e8b --- /dev/null +++ b/application/i18n/po/po-sr/contact.po @@ -0,0 +1,74 @@ +#. extracted from en_US/contact.php, sr/contact.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-sr/core.po b/application/i18n/po/po-sr/core.po new file mode 100644 index 0000000000..ddbb259293 --- /dev/null +++ b/application/i18n/po/po-sr/core.po @@ -0,0 +1,144 @@ +#. extracted from en_US/core.php, sr/core.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "You can go to the home page or try again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Ushahidi v%s." +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" + diff --git a/application/i18n/po/po-sr/database.po b/application/i18n/po/po-sr/database.po new file mode 100644 index 0000000000..4cb3e57681 --- /dev/null +++ b/application/i18n/po/po-sr/database.po @@ -0,0 +1,24 @@ +#. extracted from en_US/database.php, sr/database.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-sr/datetime.po b/application/i18n/po/po-sr/datetime.po new file mode 100644 index 0000000000..784d656ee0 --- /dev/null +++ b/application/i18n/po/po-sr/datetime.po @@ -0,0 +1,214 @@ +#. extracted from en_US/datetime.php, sr/datetime.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-sr/feeds.po b/application/i18n/po/po-sr/feeds.po new file mode 100644 index 0000000000..32f35e6b69 --- /dev/null +++ b/application/i18n/po/po-sr/feeds.po @@ -0,0 +1,49 @@ +#. extracted from en_US/feeds.php, sr/feeds.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-sr/footer.po b/application/i18n/po/po-sr/footer.po new file mode 100644 index 0000000000..5ba631f27b --- /dev/null +++ b/application/i18n/po/po-sr/footer.po @@ -0,0 +1,19 @@ +#. extracted from en_US/footer.php, sr/footer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" + diff --git a/application/i18n/po/po-sr/form.po b/application/i18n/po/po-sr/form.po new file mode 100644 index 0000000000..25eef1ab10 --- /dev/null +++ b/application/i18n/po/po-sr/form.po @@ -0,0 +1,104 @@ +#. extracted from en_US/form.php, sr/form.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-sr/imap.po b/application/i18n/po/po-sr/imap.po new file mode 100644 index 0000000000..5a47336aa6 --- /dev/null +++ b/application/i18n/po/po-sr/imap.po @@ -0,0 +1,24 @@ +#. extracted from en_US/imap.php, sr/imap.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-sr/installer.po b/application/i18n/po/po-sr/installer.po new file mode 100644 index 0000000000..fd92158fa8 --- /dev/null +++ b/application/i18n/po/po-sr/installer.po @@ -0,0 +1,354 @@ +#. extracted from en_US/installer.php, sr/installer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-sr/layer.po b/application/i18n/po/po-sr/layer.po new file mode 100644 index 0000000000..ede7c03c7a --- /dev/null +++ b/application/i18n/po/po-sr/layer.po @@ -0,0 +1,59 @@ +#. extracted from en_US/layer.php, sr/layer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-sr/libraries.po b/application/i18n/po/po-sr/libraries.po new file mode 100644 index 0000000000..429304c182 --- /dev/null +++ b/application/i18n/po/po-sr/libraries.po @@ -0,0 +1,109 @@ +#. extracted from en_US/libraries.php, sr/libraries.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-sr/maintenance.po b/application/i18n/po/po-sr/maintenance.po new file mode 100644 index 0000000000..47fd66e6f6 --- /dev/null +++ b/application/i18n/po/po-sr/maintenance.po @@ -0,0 +1,19 @@ +#. extracted from en_US/maintenance.php, sr/maintenance.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-sr/message.po b/application/i18n/po/po-sr/message.po new file mode 100644 index 0000000000..f09db16d84 --- /dev/null +++ b/application/i18n/po/po-sr/message.po @@ -0,0 +1,59 @@ +#. extracted from en_US/message.php, sr/message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-sr/mhi.po b/application/i18n/po/po-sr/mhi.po new file mode 100644 index 0000000000..1c146fc135 --- /dev/null +++ b/application/i18n/po/po-sr/mhi.po @@ -0,0 +1,49 @@ +#. extracted from en_US/mhi.php, sr/mhi.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-sr/notifications.po b/application/i18n/po/po-sr/notifications.po new file mode 100644 index 0000000000..6036adda11 --- /dev/null +++ b/application/i18n/po/po-sr/notifications.po @@ -0,0 +1,89 @@ +#. extracted from en_US/notifications.php, sr/notifications.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-sr/page.po b/application/i18n/po/po-sr/page.po new file mode 100644 index 0000000000..7f21bf261b --- /dev/null +++ b/application/i18n/po/po-sr/page.po @@ -0,0 +1,34 @@ +#. extracted from en_US/page.php, sr/page.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-sr/permissions.po b/application/i18n/po/po-sr/permissions.po new file mode 100644 index 0000000000..e46e034e68 --- /dev/null +++ b/application/i18n/po/po-sr/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sr/private_message.po b/application/i18n/po/po-sr/private_message.po new file mode 100644 index 0000000000..b90bde0f0d --- /dev/null +++ b/application/i18n/po/po-sr/private_message.po @@ -0,0 +1,44 @@ +#. extracted from en_US/private_message.php, sr/private_message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-sr/report.po b/application/i18n/po/po-sr/report.po new file mode 100644 index 0000000000..b731a75356 --- /dev/null +++ b/application/i18n/po/po-sr/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-sr/reporters.po b/application/i18n/po/po-sr/reporters.po new file mode 100644 index 0000000000..73e0763899 --- /dev/null +++ b/application/i18n/po/po-sr/reporters.po @@ -0,0 +1,64 @@ +#. extracted from en_US/reporters.php, sr/reporters.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-sr/reports.po b/application/i18n/po/po-sr/reports.po new file mode 100644 index 0000000000..094132af86 --- /dev/null +++ b/application/i18n/po/po-sr/reports.po @@ -0,0 +1,34 @@ +#. extracted from en_US/reports.php, sr/reports.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-sr/roles.po b/application/i18n/po/po-sr/roles.po new file mode 100644 index 0000000000..448b1a0ede --- /dev/null +++ b/application/i18n/po/po-sr/roles.po @@ -0,0 +1,59 @@ +#. extracted from en_US/roles.php, sr/roles.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-sr/settings.po b/application/i18n/po/po-sr/settings.po new file mode 100644 index 0000000000..8809308bce --- /dev/null +++ b/application/i18n/po/po-sr/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Serbian (http://www.transifex.com/projects/p/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sr/sharing.po b/application/i18n/po/po-sr/sharing.po new file mode 100644 index 0000000000..d034234245 --- /dev/null +++ b/application/i18n/po/po-sr/sharing.po @@ -0,0 +1,69 @@ +#. extracted from en_US/sharing.php, sr/sharing.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-sr/stats.po b/application/i18n/po/po-sr/stats.po new file mode 100644 index 0000000000..7ad21375bc --- /dev/null +++ b/application/i18n/po/po-sr/stats.po @@ -0,0 +1,184 @@ +#. extracted from en_US/stats.php, sr/stats.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-sr/tooltips.po b/application/i18n/po/po-sr/tooltips.po new file mode 100644 index 0000000000..0690276fbe --- /dev/null +++ b/application/i18n/po/po-sr/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sr/ui_admin.po b/application/i18n/po/po-sr/ui_admin.po new file mode 100644 index 0000000000..d33824bfd3 --- /dev/null +++ b/application/i18n/po/po-sr/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sr/ui_main.po b/application/i18n/po/po-sr/ui_main.po new file mode 100644 index 0000000000..6eba247b24 --- /dev/null +++ b/application/i18n/po/po-sr/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Serbian (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "O Nama " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Dobij upozorenja" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Spasi moje upozorenje" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email adresu:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "Unesi email adresu" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ili, mjesto na mapi ispod, i bit ćeš obavješten/a u vidu izvještaja koji pokriva područje unutar 20 km." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Ako nisi našao/la traženu lokaciju, molimo da klikneš na mapu i obilježiš ispravnu lokaciju." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS (kopiraj url ispod)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Korak 1: Obilježi tvoj grad ili lokaciju:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Korak 2: Pošalji upozorenje na moju:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Korak 3 (Proizvoljno): Obilježi kategorije " + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Potvrdi prethodni zahtjev za upozorenje" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Sve kategorije" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Sve kategorije" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategorija" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategorija filtera" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Obriši" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Očisti mapu" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontaktiraj nas" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Tvoja email adresa" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Tvoje ime" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Tvoj broj telefona (nije obavezno)" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Pošalji poruku" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Naslov poruke" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Datum i vrijeme" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Izbriši zadnje" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Izbriši odabrano" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Opis" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "npr. Obala Maka Dizdara 32, Sarajevo" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Povratne informacije" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filteri" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Pronađi lokaciju" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Ime" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Od" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Sakrij" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Naslovna" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Kako prijaviti" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Prezime" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Lokacija" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Grad, Država" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Mapa" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Medij" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Poruka" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Promjeni datum" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Novosti" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Slijedeće" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Zvanične i ostale novosti" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Dodatne" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Slike" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Pretražite vašu lokaciju koristeći naziv lokacije i podatke o geografskoj dužini i širini (u formatu: 38.19,-85.61), ili idite na mapu i odaberite tačnu lokaciju." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Pusti" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Prethodno" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "remove" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Izvještaji" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Pretraži" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Pošalji" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Datum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Ime" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Prezime" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Dajte detaljniju lokaciju" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Link izvora vijesti" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Dodatne Informacije" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Postavi fotografije" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Novi Izvještaj" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Vrijeme" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Naslov izvještaja" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Pošalji email na " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Ispuni ovaj formular." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Isključi sve filtere" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Sigurnosni kod" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Prikaži" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Izvor" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Izvijestite" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "time" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "TITLE " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "do" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Danas" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Danas u" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Tip" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verifikacija" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Prikaži više" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-sr/upgrade.po b/application/i18n/po/po-sr/upgrade.po new file mode 100644 index 0000000000..584b8a3b1b --- /dev/null +++ b/application/i18n/po/po-sr/upgrade.po @@ -0,0 +1,264 @@ +#. extracted from en_US/upgrade.php, sr/upgrade.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-25 00:10+0000\n" +"PO-Revision-Date: 2012-09-25 00:10+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: sr\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-sr_RS/alerts.po b/application/i18n/po/po-sr_RS/alerts.po new file mode 100644 index 0000000000..9fbda79cca --- /dev/null +++ b/application/i18n/po/po-sr_RS/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Ivan Petrović , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "У поље за адресу изгледа да нисте унели исправну Е-адресу?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-sr_RS/auth.po b/application/i18n/po/po-sr_RS/auth.po new file mode 100644 index 0000000000..3f0d5d4e16 --- /dev/null +++ b/application/i18n/po/po-sr_RS/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-sr_RS/bug.po b/application/i18n/po/po-sr_RS/bug.po new file mode 100644 index 0000000000..075e10cd58 --- /dev/null +++ b/application/i18n/po/po-sr_RS/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-sr_RS/permissions.po b/application/i18n/po/po-sr_RS/permissions.po new file mode 100644 index 0000000000..2d4b5234a8 --- /dev/null +++ b/application/i18n/po/po-sr_RS/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-sr_RS/report.po b/application/i18n/po/po-sr_RS/report.po new file mode 100644 index 0000000000..d0ec92f59e --- /dev/null +++ b/application/i18n/po/po-sr_RS/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-sr_RS/settings.po b/application/i18n/po/po-sr_RS/settings.po new file mode 100644 index 0000000000..3b41d0b28e --- /dev/null +++ b/application/i18n/po/po-sr_RS/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/projects/p/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sr_RS/tooltips.po b/application/i18n/po/po-sr_RS/tooltips.po new file mode 100644 index 0000000000..168f2fbe27 --- /dev/null +++ b/application/i18n/po/po-sr_RS/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sr_RS/ui_admin.po b/application/i18n/po/po-sr_RS/ui_admin.po new file mode 100644 index 0000000000..d545c50d32 --- /dev/null +++ b/application/i18n/po/po-sr_RS/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-sr_RS/ui_main.po b/application/i18n/po/po-sr_RS/ui_main.po new file mode 100644 index 0000000000..fb594d5d7f --- /dev/null +++ b/application/i18n/po/po-sr_RS/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-sv_SE/alerts.po b/application/i18n/po/po-sv_SE/alerts.po new file mode 100644 index 0000000000..bbb67369aa --- /dev/null +++ b/application/i18n/po/po-sv_SE/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:00+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-postfältet innehåller inte en giltig e-postadress" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Denna e-postadress har redan registrerats för att få händelser för platsen" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-postadressen måste innehålla mellan 4 och 64 tecken." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-postfältet måste fyllas i om kryssrutan är markerad." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Denna karta är begränsad till endast ett land. Var god och se till att platsen för händelsen befinner sig i landet %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Du har inte valt en giltig plats på kartan." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Du har inte valt en giltig plats på kartan." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Du har inte valt en giltig plats på kartan." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Du har inte valt en giltig plats på kartan." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Mobiltelefonsfältet innehåller inte rätt antal siffror." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Mobilnumret har redan registrerats för att få händelser för platsen" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Mobiltelefonsfältet innehåller inte ett giltigt nummer. Ange bara siffror, inklusive landskod." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Du måste ange antingen ditt mobilnummer eller din e-postadress." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Mobiltelefonsfältet måste fyllas i om kryssrutan är markerad." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Du har inte valt en giltig radie på kartan." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Du har inte valt din radie på kartan." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Händelser saknar mottagare." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Du prenumererar på händelser i följande kategorier" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Denna kod har använts tidigare!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Denna verifieringskod hittades inte! Kontrollera att du har rätt URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Din kod verifierades som den skulle. Du kommer nu att få ett meddelande om händelser när det händer något." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "För att bekräfta din utskicksbegäran, gå till " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Återvänd till utskickssidan och skapa fler utskick" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Din begäran om utskick av händelser till din e-postadress, har skapats och ett verifieringsmeddelande har skickats ut till " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Ange bekräftelsekoden, du fått via e-post, nedan: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Din begäran om e-postutskick har INTE sparats!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Din begäran om e-postutskick har sparats!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Systemet kunde inte slutföra din bekräftelse!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Din begäran om utskick av händelser till din mobiltelefon, har skapats och ett verifieringsmeddelande har skickats ut till " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Ange bekräftelsekoden, du fått via SMS, nedan: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Din begäran om mobilutskick har INTE sparats!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Din begäran om mobilutskick har sparats!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Denna instans är inte uppsatt rätt för att hantera utskick" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Du har fått detta e-postmeddelande då du prenumererar på utskick. Om du inte vill ha detta i framtiden, gå till " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Du kommer inte att få fler utskick från " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Vi kunde inte ta bort din prenumeration. Kontrollera att du har rätt URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "utskick - verifiering" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Du får inget utskick för denna plats förrän du har bekräftat din begäran." diff --git a/application/i18n/po/po-sv_SE/auth.po b/application/i18n/po/po-sv_SE/auth.po new file mode 100644 index 0000000000..34c8c66959 --- /dev/null +++ b/application/i18n/po/po-sv_SE/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# bjorn.albertsson , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-19 22:07+0000\n" +"Last-Translator: bjorn.albertsson \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "E-postfältet innehåller inte en giltig e-postadress?" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Det finns redan ett användarnamn för denna e-postadress." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "E-postfältet måste vara mellan 4 och 64 tecken." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "E-postfältet måste fyllas i." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Det fullständiga namnet måste vara mellan 3 och 100 tecken." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Fullständigt namn måste anges." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Användarnamnet innehåller ogiltiga tecken." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "L&oring;senordet måste bestå av minst 8 tecken." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Skriv samma l&oring;senord i de två l&oring;senordsfälten." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "L&oring;senordsfältet är obiligatoriskt." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Lösenordet måste vara mellan 5 och 16 tecken." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Kontrollera att du angav rätt lösenord." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Ange samma lösenord i båda lösenordsfälten." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Lösenord måste anges." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Bekräftelsefältet för lösenordet måste vara samma som lösenordsfältet." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "E-postfältet innehåller inte en giltig e-postadress?" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Vi hittar inte din e-postadress" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "E-postfältet måste fyllas i." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Du måste definiera minst en användarprofil." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Du måste välja antingen ADMIN eller USER profilen." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Användarprofilen för admin kan inte ändras." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Användarnamnet finns redan." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Användarnamnet måste vara mellan 2 och 16 tecken." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Kontrollera att du angav rätt användarnamn." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Användarnamn måste anges." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Användarprofilen för superadmin kan inte ändras." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-sv_SE/bug.po b/application/i18n/po/po-sv_SE/bug.po new file mode 100644 index 0000000000..ce44cc1eb5 --- /dev/null +++ b/application/i18n/po/po-sv_SE/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:22+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Var god ange en giltig säkerhetskod." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Var god ange säkerhetskoden." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-postfältet verkar inte innehålla en giltig adress?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-postfältet måste vara mellan 4 och 64 tecken långt." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-postfältet kräver att kryssrutan är intryckt." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Fältet för fel erfordras." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ämnesfältet måste minst vara 3 tecken långt." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Ämnesfältet erfordras." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Namnfältet måste minst vara 3 tecken långt." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Namnfältet erfordras." diff --git a/application/i18n/po/po-sv_SE/category.po b/application/i18n/po/po-sv_SE/category.po new file mode 100644 index 0000000000..cbc1f87776 --- /dev/null +++ b/application/i18n/po/po-sv_SE/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:41+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Färgfältet måste vara 6 tecken." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Färgfältet måste fyllas i." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Beskrivningsfältet måste fyllas i." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Kontrollera att den uppladdade filen inte är större än 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Bildfältet innehåller inte en giltig bild. Godkända format är .JPG, .PNG och .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Bildfältet innehåller inte en giltig fil" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Rubrikfältet måste vara mellan 3 och 80 tecken." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Rubrikfältet måste anges." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Du kan inte kategorisera en kategori med underkategorier." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Den överliggande kategorin finns inte." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Fältet för överliggande kategori måste vara numeriskt." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Moderkategorin kan inte vara en specialkategori" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Fältet för överliggande kategori måste fyllas i." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Nuvarande, och överliggande, kategori kan inte vara samma." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Specialkategorier kan inte vara underkategorier." diff --git a/application/i18n/po/po-sv_SE/comments.po b/application/i18n/po/po-sv_SE/comments.po new file mode 100644 index 0000000000..32df0175bd --- /dev/null +++ b/application/i18n/po/po-sv_SE/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:27+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ange en giltig säkerhetskod" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Ange säkerhetskoden" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Du angav en felaktig säkerhetskod." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Namnfältet måste vara minst 3 tecken." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Namnfältet måste fyllas i." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Kommentarsfältet måste fyllas i." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-postfältet verkar inte innehålla en giltig e-postadress?" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-postadressen måste vara mellan 4 och 64 tecken." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-postfältet måste fyllas i om kryssrutan är markerad." diff --git a/application/i18n/po/po-sv_SE/contact.po b/application/i18n/po/po-sv_SE/contact.po new file mode 100644 index 0000000000..d19c87d287 --- /dev/null +++ b/application/i18n/po/po-sv_SE/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:36+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Ange en giltig säkerhetskod" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Var god ange en giltig säkerhetskod." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Ange säkerhetskoden" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-postfältet verkar inte innehålla en giltig e-postadress?" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-postfältet måste vara mellan 4 och 64 tecken." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-postfältet måste fyllas i om kryssrutan är markerad." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Meddelandefältet måste fyllas i." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Namnfältet måste vara minst 3 tecken." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Namnfältet måste fyllas i." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Rubrikfältet måste vara minst 3 tecken." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Rubrikfältet måste fyllas i." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Ett fel uppstod när ditt meddelande skickades." diff --git a/application/i18n/po/po-sv_SE/core.po b/application/i18n/po/po-sv_SE/core.po new file mode 100644 index 0000000000..93783fa72a --- /dev/null +++ b/application/i18n/po/po-sv_SE/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-12-04 21:39+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "konfigurationsfil" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "kontrollant" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "drivrutin" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Drivrutinen %s för biblioteket %s måste läggas till i gränssnittet %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Drivrutinen %s för biblioteket %s kunde inte hittas" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Du kan gå till startsidan eller försöka igen." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:
" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Kunde inte utföra förfrågan" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "hjälpare" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Den efterfrågade filtypen, .%s, accepteras inte i din konfigurationsfil" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Ogiltig metod %s anropas i %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Egenskapen %s finns inte i klassen %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "bibliotek" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Loggbiblioteket är inte skrivbart: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "modell" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi kunde inte bestämma en kontrollant för att köra denna förfrågan: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Ange standardrutten i config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Sidan du efterfrågade, %s, kunde inte hittas." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Rapportera detta problem till Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Den efterfrågade %s, %s, kunde inte hittas" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stackspår" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Laddades på {execution_time} sekunder, använde {memory_usage} av minnet. Skapad av Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "uppgiftsregister" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Det kan bara vara en instans av Ushahidi per sidförfrågan" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Fel %s: %s i fil %s på rad %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "vy" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Du måste först ange filnamet för visning" diff --git a/application/i18n/po/po-sv_SE/database.po b/application/i18n/po/po-sv_SE/database.po new file mode 100644 index 0000000000..273196bce2 --- /dev/null +++ b/application/i18n/po/po-sv_SE/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Databasfel: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Tabellen \"%s\" kan inte hittas i databasen. Kontrollera att du använder senaste databasversionen för denna version av Ushahidi" diff --git a/application/i18n/po/po-sv_SE/datetime.po b/application/i18n/po/po-sv_SE/datetime.po new file mode 100644 index 0000000000..af1106ce5b --- /dev/null +++ b/application/i18n/po/po-sv_SE/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 23:19+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "f.m." + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Fre" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Fredag" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Mån" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Måndag" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "e.m." + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Lör" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Lördag" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Sön" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Söndag" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Tor" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Torsdag" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Tis" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Tisdag" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Ons" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Onsdag" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Januari" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februari" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Mars" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "April" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Maj" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Maj" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Jun" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juni" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Jul" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Juli" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Aug" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Augusti" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "September" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Oktober" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "November" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Dec" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "December" diff --git a/application/i18n/po/po-sv_SE/feeds.po b/application/i18n/po/po-sv_SE/feeds.po new file mode 100644 index 0000000000..3fd225cca1 --- /dev/null +++ b/application/i18n/po/po-sv_SE/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "DATUM" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Flödesnamnet måste vara mellan 3 och 70 tecken." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Ange namnet på flödet." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Ange flödets URL." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Ange en giltig URL. Eg. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "KÄLLA" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "RUBRIK" diff --git a/application/i18n/po/po-sv_SE/footer.po b/application/i18n/po/po-sv_SE/footer.po new file mode 100644 index 0000000000..f59296a9a0 --- /dev/null +++ b/application/i18n/po/po-sv_SE/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl är inte installerat" diff --git a/application/i18n/po/po-sv_SE/form.po b/application/i18n/po/po-sv_SE/form.po new file mode 100644 index 0000000000..825d9ec92e --- /dev/null +++ b/application/i18n/po/po-sv_SE/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:35+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Standardvärdet du angav i fältet är ogiltigt." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Fältnamnet måste vara mellan 3 och 200 tecken." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Ange ett värde mellan 0 och 50 för fältets höjd" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Du har angett ett ogiltigt värde för datumfältet" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Välj Ja eller Nej för datumfältet" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Fältnamnet måste vara mellan 3 och 100 tecken." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Ange fältnamn." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Fältnamnet du angav existerar redan i detta formulär. Var god välj ett annat." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Du har angett ett felaktigt värde för fältet" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Välj om fältet måste fyllas i" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Välj en giltig fälttyp." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Välj en fälttyp." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Ange ett värde mellan 0 och 300 för fältets bredd" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Formulärets beskrivning." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Standardformuläret kan inte tas bort." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Välj vilket i vilket formulär du vill lägga till fältet." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Välj vilket i vilket formulär du vill lägga till fältet." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Formulärnamnet måste vara mellan 3 och 100 tecken." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Formulärets namn." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Ett formulär med det namnet existerar redan. Var god välj ett annat." diff --git a/application/i18n/po/po-sv_SE/imap.po b/application/i18n/po/po-sv_SE/imap.po new file mode 100644 index 0000000000..8dce8ac975 --- /dev/null +++ b/application/i18n/po/po-sv_SE/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Kunde inte öppna IMAP strömmen" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "E-posttjänsten stöds inte" diff --git a/application/i18n/po/po-sv_SE/installer.po b/application/i18n/po/po-sv_SE/installer.po new file mode 100644 index 0000000000..09b94b1957 --- /dev/null +++ b/application/i18n/po/po-sv_SE/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Rotsökväg för installationen" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Databas" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Databasserver" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Om du kör Ushahidi på din lokala maskin, så är detta troligen \"localhost\". Om du kör Ushahidi på en webbserver, så får du uppgifterna från din leverantör" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Databasnamn" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Namnet på databasen som Ushahidi ska använda" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "För mer information, kolla denna artikel på wikin som förklarar mer om databasen" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Standardspråk (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Varje uppsättning av Ushahidi kommer med ett antal inbyggda översättningar. Du kan också lägga till ditt eget språk" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Inaktivera" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Aktivera" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Sammanställning av fel som hittades" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Katalogen på din server där Ushahidifilerna finns. Vi har hittat katalogen automatiskt, vänligen kolla så att det är rätt. Om fältet är tomt så behöver du inte oroa dig. Det betyder att Ushahidi är installerat i roten på din server" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Klar" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Allmänt" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API-Nyckel" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Vem som helst kan få en en API-nyckel. Skaffa din egen" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Tillbaka" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "AVANCERAD INSTALLATION" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Gör alla grundläggande inställningar i dessa 5-steg. Detta inkluderar server, karta, sajtnamn och kontaktuppgifter" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "GRUNDINSTALLATION" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Snabbt och enkelt. Allt du behöver är din webbplats rotkatalog och databasinformation. Välj detta val om du vill komma igång snabbt, och du kan alltid konfigurera allt senare" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Fortsätt" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Välkommen till Ushahidi server installationen. Välj installationsmetod nedan" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Installationen lyckades" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Mailserver" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Mailserveradress" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "T.ex.: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mailserver lösenord" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Lösenordet som används för att komma åt din e-post" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Mailserver port" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Vanliga portar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Mailserver typ" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) eller Post Office Protocol (POP). Vad är skillnaden?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Mailserver användarnamn" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Om du använder Gmail, Hotmail, eller Yahoo Mail, skriv in din fullständiga e-postadress som användare" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Karta" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Kartleverantör" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi fungerar lika bra med följande leverantörer: Google, Bing, Yahoo eller Open Street Map. Välj den som fungerar bäst där ni befinner er" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Övriga steg..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Lösenord" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Databaslösenord" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Föregående" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Vänligen starta om din Apache Server" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Aktivera eller inaktivera SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Vissa mailservrar har möjligheten att köra SSL vid anslutning. Att använda SSL rekommenderas, då det ger en bättre säkerhet" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Konfigurera din SMS server" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Sajtens e-postadress" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Sajtens e-postadress för notifikationer" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "När dina besökare anmäler sig för e-postnotifikationer, kommer de att få e-post från denna adress. Denna adress behöver inte vara samma som sajtens övergripande adress" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "All övergripande e-post från sajten kommer att använda denna adress" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Sajtnamn" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Namnet på sajten" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Sajtslogan" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Sajtens slogan" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Filerna och katalogerna nedan måste ha skrivrättigheter för webbservern" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Här är instruktioner för att ändra filrättigheter:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Innan du startar, så måste du se till så att följande filer är skrivbara för webbservern, vilket innebär att ändra filrättigheterna." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "För installationen så behöver du följande uppgifter" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Tabellprefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalt sett behöver du inte ändra prefixet, men om du kör flera Ushahidi-installationer i en databas, så kan du behöva ändra detta värde" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Rubrik" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "För att logga in, gå till" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Ladda upp rapportdata" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Användarnamn" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Din databasanvändare" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "och använd följande konto" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Visa sajten" diff --git a/application/i18n/po/po-sv_SE/layer.po b/application/i18n/po/po-sv_SE/layer.po new file mode 100644 index 0000000000..2cdc43fea3 --- /dev/null +++ b/application/i18n/po/po-sv_SE/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Färgfältet måste vara 6 tecken långt." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Du måste ange en färg." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Filfältet verkar inte innehålla ett giltigt filformat. Giltiga format är .KMZ, .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Filfältet verkar inte innehålla en giltig fil" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Namnet måste vara mellan 3 och 80 tecken." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Namn måste anges." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Du måste ange antingen en KML Url eller ett filnamn" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Du kan inte både ha en KML fil och en url" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Ange en giltig URL. T.ex. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-sv_SE/libraries.po b/application/i18n/po/po-sv_SE/libraries.po new file mode 100644 index 0000000000..4aff092653 --- /dev/null +++ b/application/i18n/po/po-sv_SE/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:32+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Kan inte ansluta till akismet servern" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Får inget svar från Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API biblioteket: %s för %s klassen kunde inte hittas.\nVar god och kontrollera din API task routing table." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Ogiltig Akismet API nyckel" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Fel när fopen inskicksmetod kördes!
Kontrollera om PHP stödjer OpenSSL och kontrollera att PHP är minst version 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ditt unicode-meddelande är för långt! (Nuvarande längd=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Ange destinationsadress (TILL)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Ange uppehållsadress (FRÅN)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ditt unicode-meddelande är för långt! (Nuvarande längd=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Inskicksmetod stöds inte!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API biblioteket %s är ogiltigt. Alla API bibliotek måste utgöra en subklass till %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Biblioteket %s kunde inte tas bort" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Fel vid öppnade: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Misslyckades vid nedladdning av senaste ushahidiversionen. HTTP status kod" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Filen %s kunde inte kopieras" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Filen %s kunde inte tas bort" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi upgraderings script" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Den nedladdade ushahidi zip-filen %s, kunde inte skrivas" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s är inte tillgängligt i RiverID klassen." diff --git a/application/i18n/po/po-sv_SE/maintenance.po b/application/i18n/po/po-sv_SE/maintenance.po new file mode 100644 index 0000000000..1d1c5d4cbc --- /dev/null +++ b/application/i18n/po/po-sv_SE/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:06+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Tyvärr ligger vår sida nere för underhåll. Prova igen om ett par minuter." diff --git a/application/i18n/po/po-sv_SE/message.po b/application/i18n/po/po-sv_SE/message.po new file mode 100644 index 0000000000..cb2a423001 --- /dev/null +++ b/application/i18n/po/po-sv_SE/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Skriv in en giltig säkerhetskod" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Skriv in säkerhetskoden" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-postfältet verkar inte vara en giltig e-postadress?" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-postfältet måste innehålla mellan 4 och 64 tecken." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "E-postadress krävs om rutan är ikryssad." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Kommentarsfältet måste fyllas i." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Namnfältet måste innehålla minst 3 tecken." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Namnfältet måste fyllas i." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Telefonnumret är inte giltigt." diff --git a/application/i18n/po/po-sv_SE/mhi.po b/application/i18n/po/po-sv_SE/mhi.po new file mode 100644 index 0000000000..6ed290f170 --- /dev/null +++ b/application/i18n/po/po-sv_SE/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:19+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Var god ange en giltig säkerhetskod." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Var god ange säkerhetskoden." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-postfältet verkar inte innehålla en giltig adress." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Var god ange en giltig e-postadress." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Meddelandefältet erfordras." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ämnesfältet måste minst innehålla 3 tecken." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Ämnesfältet erfordras." diff --git a/application/i18n/po/po-sv_SE/notifications.po b/application/i18n/po/po-sv_SE/notifications.po new file mode 100644 index 0000000000..838169c270 --- /dev/null +++ b/application/i18n/po/po-sv_SE/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:47+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Detta meddelande skickades från din hemsida" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Administratör Login" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "En ny kommentar har skrivits in till:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Ny kommentar" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Ett nytt e-postmeddelande har skickats in." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Nytt meddelande" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "En ny rapport har skickats till din hemsida." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Ny rapport" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Ett nytt SMS har skickats in." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Nytt SMS" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Du har mottagit en ny Händelse" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Ny Händelse!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Du Har Mottagit ett Privat Meddelande" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Nytt Privat Meddelande" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "För att Svara, Var God Besök:" diff --git a/application/i18n/po/po-sv_SE/page.po b/application/i18n/po/po-sv_SE/page.po new file mode 100644 index 0000000000..dbc15f143f --- /dev/null +++ b/application/i18n/po/po-sv_SE/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:10+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Ange Titel för Sidan" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Titeln för sidan måste vara mellan 3 och 150 tecken lång." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Ange namn för fliken." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Ange en Beskrivning för Sidan." diff --git a/application/i18n/po/po-sv_SE/permissions.po b/application/i18n/po/po-sv_SE/permissions.po new file mode 100644 index 0000000000..eacd57cdf2 --- /dev/null +++ b/application/i18n/po/po-sv_SE/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-12-04 21:45+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Se Rapporter" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Skapa/Ändra/Ta bort Rapporter" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Godkänn Rapporter" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Verifiera Rapporter" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Hantera Rapport Kommentarer" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Ladda ner Rapporter" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Ladda upp Rapporter" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Hantera Meddelanden" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Hantera Meddela Reportrar" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Se Statistik" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Ändra Inställningar" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Hantera Panel" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Hantera Användare" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Hantera Roller" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Får checka in" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Hantera Incheckningar" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Gå till Gränssnitt för Administratör " + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Gå till Gränssnitt för Användare" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Ta bort alla rapporter" diff --git a/application/i18n/po/po-sv_SE/private_message.po b/application/i18n/po/po-sv_SE/private_message.po new file mode 100644 index 0000000000..98a57c7c62 --- /dev/null +++ b/application/i18n/po/po-sv_SE/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:12+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Parent ID måste vare numerisk" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Till-fälten erfodras" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Användaren du försöker skicka meddelandet till, existerar inte" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Ämnes-fältet erfordras" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Ämnet måste vara mellan 3 och 150 tecken långt" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Meddelande-fältet erfordras" diff --git a/application/i18n/po/po-sv_SE/report.po b/application/i18n/po/po-sv_SE/report.po new file mode 100644 index 0000000000..690bbc5283 --- /dev/null +++ b/application/i18n/po/po-sv_SE/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Välj en giltig post at inkludera i nedladdningen" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Välj en giltig post at inkludera i nedladdningen" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Välj vilken typ av rapport du vill ladda ner" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Välj vilken typ av rapport du vill ladda ner" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Välj vilken typ av rapport du vill ladda ner" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Datumfältet FRÅN verkar inte innehålla en giltig datum?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Ange en giltig datum i FRÅN-fältet. Den kan inte vara en datum i framtiden." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Ange ett giltigt värde för Godkänn denna rapport" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Ange ett giltigt värde för Godkänn denna rapport" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Fältet för am/pm verkar inte innehålla ett giltigt värde?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Kategorifältet verkar inte innehålla en giltig kategori?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Kategorifältet måste fyllas i." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Datumfältet verkar inte innehålla ett giltigt datum?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Datumfältet verkar inte innehålla ett giltigt datum?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Datumfältet måste fyllas i." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Beskrivningsfältet måste fyllas i." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Fältet för timmar verkar inte innehålla ett giltigt värde?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Fältet för timmar måste fyllas i." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Ange ett giltigt värde för Informationssannolikhet" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Ange ett giltigt värde för Informationssannolikhet" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Fältet för minuter verkar inte innehålla ett giltigt värde?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Fältet för minuter måste fyllas i." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Länkfältet för nyhetskällan verkar inte innehålla en giltig URL?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Kontrollera att storleken på bilderna är max 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Fältet för att ladda upp bilder verkar inte innehålla en giltig bildtyp. De enda accepterade formaten är .JPG, .PNG och .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Fältet för att ladda upp bilder verkar inte innehålla en giltig fil" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Ange ett giltigt värde för Källtillförlitlighet" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Ange ett giltigt värde för Källtillförlitlighet" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Rubrikfältet måste vara mellan 3 och 200 tecken." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Rubrikfältet måste fyllas i." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Ange ett giltigt värde för Verifiera denna rapport" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Ange ett giltigt värde för Verifiera denna rapport" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Videolänkfältet verkar inte innehålla en giltig URL?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Latitudfältet verkar inte innehålla ett giltigt värde?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Latitudfältet måste fyllas i. Klicka på kartan för att sätta positionen." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Platsfältet har ett ogiltigt värde. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Denna rapport är redan översatt till detta språk" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Platsfältet har ett ogiltigt värde. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Originalrapporten och översättningen har samma värde (språk)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Platsen måste fyllas i." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Platsnamnet måste vara mellan 3 och 200 tecken." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Platsnamnet måste fyllas i." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Longitudfältet verkar inte innehålla ett giltigt värde?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Longitudfältet måste fyllas i. Klicka på kartan för att sätta positionen." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "E-postfältet verkar inte innehålla en giltig e-postadress?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "E-postfältet måste innehålla mellan 4 och 64 tecken." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Förnamnet måste vara mellan 3 och 100 tecken." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Efternamnet måste vara mellan 3 och 100 tecken." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Datumfältet TILL verkar inte innehålla en giltig datum?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Ange en giltig datum i TILL-fältet. Den kan inte vara en datum i framtiden." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Datumfältet FRÅN kan inte vara större än TILL-fältet." diff --git a/application/i18n/po/po-sv_SE/reporters.po b/application/i18n/po/po-sv_SE/reporters.po new file mode 100644 index 0000000000..253fbda4ba --- /dev/null +++ b/application/i18n/po/po-sv_SE/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:29+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Latitudfältet verkar inte innehålla någon giltig latitud." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Latitudfälten erfordras. Var god och tryck på kartan för att lokalisera platsen." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Fältet för reporternivå verkar inte innehålla en giltig nivå." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Reporterfältet verkar inte innehålla ett giltigt värde." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Lokaliseringsfältet måste vara mellan 3 och 200 tecken långt." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Fältet för platsens namn erfordras." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Longitudfältet verkar inte innehålla en giltig longitud." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Longitudfältet erfordrar. Var god och tryck på kartan för att lokalisera platsen." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Felaktig Reporter" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Felaktig Reporter" diff --git a/application/i18n/po/po-sv_SE/reports.po b/application/i18n/po/po-sv_SE/reports.po new file mode 100644 index 0000000000..9ec4c26d0b --- /dev/null +++ b/application/i18n/po/po-sv_SE/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:16+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Verifiera att du har kryssat in ett element" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Verifiera att du har kryssat in ett element" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Rapporter måste kategoriseras innan de kan godkännas" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Du saknar behörighet att utföra detta" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Du måste välja en fil som ska laddas upp" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Filen som laddas upp måste ha formatet .cvs eller .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Filuppladdnings-fälten verkar inte innehålla en giltig fil" diff --git a/application/i18n/po/po-sv_SE/roles.po b/application/i18n/po/po-sv_SE/roles.po new file mode 100644 index 0000000000..fc769f8e4c --- /dev/null +++ b/application/i18n/po/po-sv_SE/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-03 23:05+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Beskrivningsfältet måste vare mellan 3 och 100 tecken långt." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Beskrivningsfältet måste finnas." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Namnfältet får endast bestå av bokstäver och siffror." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Namnfältet måste vara mellan 2 och 30 tecken långt." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SuperAdmin Rollen Får Inte Modifieras." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Namnfält måste finnas." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Åtkomstfältet måste vara en siffra mellan 0 och 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Åtkomstfältet måste vara en siffra mellan 0 och 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Behörighetsfältet måste vara en siffra mellan 0 och 100." diff --git a/application/i18n/po/po-sv_SE/settings.po b/application/i18n/po/po-sv_SE/settings.po new file mode 100644 index 0000000000..de40730e9a --- /dev/null +++ b/application/i18n/po/po-sv_SE/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Fältet för tillåt kommentarer, verkar inte innehålla ett giltigt värde?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Fältet \"Tillåt kommentarer\" måste fyllas i." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Fältet för infoga flöde, verkar inte innehålla ett giltigt värde?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Fältet för infoga flöde måste fyllas i." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Fältet för tillåt rapporter, verkar inte innehålla ett giltigt värde?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Tillåt rapporter, måste fyllas i." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Fältet för statistikdelning, verkar inte innehålla ett giltigt värde?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Fältet för statistikdelning måste fyllas i." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet fältet innehåller inte ett giltigt värde?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet fältet innehåller inte ett giltigt värde?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Clickatell API nummer får inte innehålla mer än 20 tecken." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Clickatell API nummer måste fyllas i." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Clickatell lösenord ska vara mellan 5 och 50 tecken." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Clickatell lösenord måste fyllas i." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Clickatell användarnamn får inte vara mer än 50 tecken." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Clickatell användarnamn måste fyllas i." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Konfigurera karta" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Standardplats" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Färgfältet verkar inte innehålla ett giltigt värde?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Färgfältet får inte innehålla mer än 6 tecken." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Färgfältet måste fyllas i." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Standardvy karta" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Standard zoom-nivå" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Hämta städer från geonamn" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Mailserver port-fältet är för långt" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Mailserver port-fältet får bara innehålla siffror." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Mailserver lösenord ska vara mellan 5 och 50 tecken." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Mailserver lösenord, måste fyllas i." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Mailserver port-fältet är för långt" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Mailserver port-fältet får bara innehålla siffror." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Mailserver typ-fältet är för långt" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Mailserver typ-fältet måste fyllas i." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Mailserver användarnamn får inte vara mer än 50 tecken." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Mailserver användarnamn, måste fyllas i." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Google Analytics fältet måste innehålla ett giltigt Web Property ID i formatet UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Antal poster per sida för läsaren verkar inte innehålla ett giltigt värde?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Antal poster per sida för läsaren måste anges." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Antal poster per sida för admin verkar inte innehålla ett giltigt värde?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Antal poster per sida för admin måste fyllas i." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Att sätta upp din kartleverantör är en enkel process. Välj leverantör, hämta en API-nyckel från leverantörens hemsida, och ange API-nyckeln" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Zoom-nivå" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Välj kartleverantör" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Ange din nya API-nyckel" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Skaffa API-nyckel" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Sätter upp din kartleverantör i några enkla steg. Välj en leverantör, skaffa API-nyckel från leverantörens sajt, och skriv in denna nyckel" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Kartleverantör" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Kartinställningar" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Spänner denna Ushahidiinstans över flera länder" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Välj land" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Klicka och dra kartan för att sätta din exakta position" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Samla rapporter på karta" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Tillåt användare att skicka in kommentarer till rapporter" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Infoga RSS-flöden på sajt" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Tillåt användare att skicka in rapporter" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet-nyckel" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Standardfärg för alla kategorier" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Visa kontaktsidan" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Visa \"Hur man hjälper\"-sidan" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "E-postadress larm" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "För att få rapporter via e-post, fyll i dina e-postinställningar." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Sajtens e-postadress" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "ID För webbplats - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Poster per sida - mot läsare" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Poster per sida - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Förhindra kommentarsspam genom att använda Akismet från Automattic.
Du kan få en gratis API-nyckel genom att skapa ett WordPress.com användarkonto" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Kontouppgifter Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica Ssjt " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Sajtens språk" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Sajtnamn" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Dela sajtens statistik i API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Sajtslogan" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Sajtinställningar" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Kontouppgifter Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Separera med komma " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Sajtens e-post verkar inte vara en giltig adress?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Sajtens e-postfält måste innehålla mellan 4 och 100 tecken." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Sajtens namn måste vara mellan 3 och 50 tecken." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Sajtens namn krävs." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Sloganen måste vara mellan 3 och 100 tecken." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Sajtens slogan krävs." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Ditt Clickatell API-nummer" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Kontrollera ditt Clickatell konto" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Ladda konto" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Ditt Clickatell lösenord" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Anmäl dig till Clickatells tjänst genom att klicka här" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Ange åtkomstinformationen till Clickatell nedan" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Ditt Clickatell användarnamn" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Ange telefonnummer som är anslutna till Frontline SMS i fälten nedan" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Ange nummer utan + eller bindestreck" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Alternativ 1: Använd Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Använd en global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS inställningar" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Telefonfältet 1 verkar inte innehålla ett giltigt värde?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Telefonfältet 1 får bara innehålla siffror." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Telefonfältet 1 är för långt" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Telefonfältet 2 får bara innehålla siffror." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Telefonfältet 3 är för långt" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Telefonfältet 3 får bara innehålla siffror." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sv_SE/sharing.po b/application/i18n/po/po-sv_SE/sharing.po new file mode 100644 index 0000000000..7f4f220f81 --- /dev/null +++ b/application/i18n/po/po-sv_SE/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Krystian Hoffman , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-12-04 21:33+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Datum" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Skapat datum" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Senast efterfrågad" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Färgfältet måste innehålla 6 tecken." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Fältet för färg måste fyllas i." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Namnet för Delning verkar vara ogiltigt." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Ett namn för Delning behövs." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Sajtens url finns redan" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL för sidan verkar vara ogiltig." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Sajtens URL krävs." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Sajtens URL är inte giltig?" diff --git a/application/i18n/po/po-sv_SE/stats.po b/application/i18n/po/po-sv_SE/stats.po new file mode 100644 index 0000000000..04a62c66be --- /dev/null +++ b/application/i18n/po/po-sv_SE/stats.po @@ -0,0 +1,199 @@ +# +# Translators: +# Haris Alisic , 2012 +# T68 , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Godkänd" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategorier" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Kategoriaktivitet" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Denna graf visar en linjär vy över rapporter per kategori över tid. Bläddra från vänster till höger för att se en jämförande vy för de olika kategorierna. Peka på grafen för mer detaljer" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Välj datumområde" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Länder" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Land" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Nedbrytning av land" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Detta är statistiksektionen. Allmän information kommer framöver. För tillfället kan du bläddra genom länkarna till underkategorierna ovan" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Fel" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Ordlista" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Sammanfattning träffar" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Teckenförklaring" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Sidvisningar" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Det totala antalet sidor som besökare har tittat på på din sajt" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Rapporter" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Rapportkategorier" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Rapportstatistik" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Rapportstatus" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Rapportblad" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Rapportstatistik" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Statistik är inte uppsatt" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 månad" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 månader" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 månader" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Alla" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Icke godkända" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Unika besökare" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Antalet besökare till din uppsättning; Unika besökare bestäms genom cookies. Om en besökare inte har aktiverat cookies, kommer de att identifieras genom en enkel metod där man tar hänsyn till IP adress, upplösning, webbläsare, plugins, operativsystem, etc" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Ej verifierad" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Verifierad" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Sammanställning besökare" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Besök" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Ett besök registreras för en unik besökare som återkommer till sajten efter mer än 30 minuter sedan senaste sidvisningen" diff --git a/application/i18n/po/po-sv_SE/tooltips.po b/application/i18n/po/po-sv_SE/tooltips.po new file mode 100644 index 0000000000..f6d3ecacb2 --- /dev/null +++ b/application/i18n/po/po-sv_SE/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Din e-postadress" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Ditt fullständiga namn" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Om du väljer JA, så får du meddelande via e-post om nya händelser eller kommentarer kommer in på sajten" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Ditt lösenord. Lämna detta fält tomt om du vill behålla ditt nuvarande lösenord" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Ditt användarnamn kan inte ändras" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Denna e-postadress används för e-postutskick av händelser." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Slår av och på kontakta-formuläret på sajten." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Väljer vilket språk som ska användas på sajten." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Denna e-postadress får rapporter och meddelande från kontakta-formuläret." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Detta är namnet på sajten som syns längst upp på sidan." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Förklara med några få ord vad sajten används till." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sv_SE/ui_admin.po b/application/i18n/po/po-sv_SE/ui_admin.po new file mode 100644 index 0000000000..a3cdc9ce17 --- /dev/null +++ b/application/i18n/po/po-sv_SE/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Krystian Hoffman , 2013 +# T68 , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-12-02 22:14+0000\n" +"Last-Translator: Krystian Hoffman \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Nekat tillträde. Antingen är dina inloggningsuppgifter fel, eller så har din begäran nekats" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Nekat tillträde. Din begäran har mottagits, men nekad på grund av tillträdesbegränsningar, t.ex. tid. Försök igen senare" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Åtkomstnivå " + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Händelser" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Lägg till i Kategori " + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "adderad" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "adderad/redigerad" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Tillägg " + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Administratör" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Underrättelse" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Mottagna Underrättelser" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Alla" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "fm. " + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Anonym" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Vem som helst" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Var som helst" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Bannlyst " + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Loggar" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Inställningar" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Ta Bort Bannlysning" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Ta Bort Samtliga Bannlysningar " + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "godkänd" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Gödkänn Automatiskt" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Godkänn Manuellt" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arkiverad" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Är du säker på att du vill" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Är du säker på att du vill ta bort detta? " + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Är du säker på att du vill ta bort detta foto?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Är du säker på att du vill byta formulär?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Tilldela" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Tilldelningar" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Tilldela Emblem" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Författare" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Författare e-post" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Tillbaka" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Bannlys IP " + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Under Tiden " + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Block" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Innehållet " + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Avbryt " + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategorier" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Fel när diagrammet skulle visas" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Kontrollera att meddelandet är giltigt" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Kontrollera att antalet är giltigt" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Kontrollera SMS-inställningarna!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Incheckningsdetaljer" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Incheckningar" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Städerna är laddade" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kod" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Kodversionen är inte synakad." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Färg" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Kommentarer" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Din bekräftelsekod är: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Användaren har varit" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Antal" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Landet hittades inte" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "skapad/redigerad" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Skapa rapport" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritisk Upgradering " + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "För Närvarande Aktiva " + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "För Närvarande Inaktiva" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Du saknar behörighet för att redigera följande skräddarsydda fält. " + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Dagligen" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Instrumentbräda" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "databas" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Datum & Tid" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Datum Tillagt " + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Datum Modifierat" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Veckodagar" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "DB version är inte i synk." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "borttagen" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Ta bort" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Ta bort alla rapporter" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Ta Bort Emblem " + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Beskrivning" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Inaktiverad" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Start på Delare" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Slut på Delare" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div klass" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Ladda ner rapporter" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Element i Rullgardin" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "REDIGERAD" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Redigerad Av" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Redigera" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Redigeringslogg " + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "E-post" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Hela Kollektivet " + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Fel i geokodning! HTTP fel" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP Biblioteket är ej installerat " + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Ogiltig Behörighet" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Fel" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Fel, kan inte skicka in händelse" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Var sjätte timme" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Var tolfte timme" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Experimentell " + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Frågor och svar" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "flöde" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Återrapportering" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "flöden" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Lista med Val" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Standardvärde" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Datatyp " + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "kodning " + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numerisk" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Fri Text" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Höjd (rader)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Gömt Fält " + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Max antal tecken" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Fältnamn" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Skifta" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Nej" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Ja, Stängd som standard " + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Ja, Öppen som standard" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Kan inte hitta uppladdad fil" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Kan inte öppna fil" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Formuläret finns inte!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Textareafält (Fritext)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Datumfält " + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Fält för Envalsknappar" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Fält för Kryssrutor" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Fält för Rullgardin" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Från" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Från" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geonamn Timeout Fel" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Hjälp" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Få fler teman" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Få fler plugins" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Aktiviteter" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Lägg till/Redigera" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "E-post" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Hantera användare" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Roll" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Användare" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "hjälp" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Varje timme" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Händelse-flöde för" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Installationsmappen existerar fortfarande. Ta bort installationsmappen, då detta potentiellt kan medföra en sårbarhet i säkerheten. " + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Instans" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Instanser" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Instansdetaljer" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Ogiltig parameter" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP Adress" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Är detta ett datumfält?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Vem Får Se Svaren" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Vem Får Skicka Svar" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Nyckelord" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Nyckelord" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "E-postadress:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Fullständigt namn:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Lösenord:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Roll:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Användarnamn:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Lager" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Moderator " + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Logga ut" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Loggar" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Hantera" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Hantera Roller & Behörighet" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Hantera användare" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Lägg till/Redigera Användare" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Hantera Din Publika Lista" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Markera Som" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "inte märkt som spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "märkt som spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "matchade inga dokument" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Meddelande" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Meddelanden" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica Meddelanden" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter Meddelanden " + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Ditt meddelande har skickats!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Minut" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Minuter" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Saknad parameter" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Moderator" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "modifierad" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Modifiera Inställningar för Tidszon" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "flytta ner" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "flytta upp" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Multiple Hosted Instances (flera värdinstanser)" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Mina Underrättelser" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Mina Incheckningar" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Min profil" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Mina Rapporter" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Lagda Röster" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Positiv" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Negativ" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Namn" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Skapa Ny Underrättelse" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Skapa Nytt Meddelande" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nytt lösenord" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Nej" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Detta är en specialkategori som inte kommer visas på formuläret användare brukar för att skicka in rapporter. Denna används för rapporter som saknar kategori (icke kategoriserade rapporter) som följd av att en kategori raderats. " + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Meddelande" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Detta är inte skiftlägeskänsligt." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Hittades inte" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Inga Uppgifter. Det finns inga resultat att visa. " + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Inget fel" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Inget resultat att visa!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "av" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "På Särskild Räkning" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenIDs " + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "sida" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "sidor" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Sidan hittades inte" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Tyvärr hittades inte sidan du försöker nå.

Hittade du hit genom att följa en länk från vår sida?
Om du hittade hit via en länk på vår sida, var god kontakta oss så att felet kan åtgärdas.

\nHittade du hit från en annan sida?
Länkar på andra sidor kan ibland vara gamla eller felstavade Informera oss om var du kom hit ifrån, så kan vi kontakta sidan för att försöka korrigera felet.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Tyvärr, sidan du försöker se finns inte. " + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Parametrar som används" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Lösenord" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Återställ lösenord" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Hej" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Vi har fått en begäran att återställa lösenordet för" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "För att ändra lösenordet, klicka på länken nedan (eller kopiera in den i en webbläsare)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Som du begärt, så är ditt lösenord nu återställt. Ditt nya lösenord är" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Återställning Ushahidi lösenord" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Var God Välj" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "em." + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Data skickades inte med post-metoden" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Förhandsvisning" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Meddelande" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Privata Meddelanden" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Privata Meddelandet Skickat" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Ämne" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Till" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Publik Lista" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Kvalifikationer" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "läs" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Relevans" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Rapporttitel" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Rapporteringsdatum" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Reportrar" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Reporternivå" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Rapporter" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Rykte Poäng" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Krävs" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Återställ" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Svar" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Resultat" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Upphäv" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Denna email har redan ett konto administrerat av CrowdmapID. Användaren kommer behöva använda sitt existerande Crowdmap lösenord, för att logga in. " + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Spara Inställningar" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Sök" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Sök Rapporter" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "söker efter" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Krypteringsnyckeln är fortfarande satt till standardvärdet. Detta är osäkert och måste ändras. " + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Denna sida körs över HTTP. Detta bör ändras till HTTPS för ökad säkerhet. " + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Instruktioner finns tillgängliga på wikin: " + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Välj önskat nedladdningsformat för rapporter:- " + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Välj en fälttyp ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Välj en artikel" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Du måste välja en Utlösare innan du kan välja ett Svar." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Du måste välja en Utlösare innan du kan definiera Kvalifikationer. " + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Avsändare" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Skicka Till" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Detta meddelande skickades från din sajt " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Servertid" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Inställningar" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Visar sida" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Visar resultat" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "Visad" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Speciell Kategori" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Detta är en specialkategori som användare inte kan välja i formuläret när en rapport skickas. Den används i samband med funktionen ”Anförtrodda Rapporterade”." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Specifikt Område" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Tillstånd" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Statistik" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Statistik" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Statistikinsamling misslyckades! Antingen är ditt stat_id eller stat_key i inställningarna i databasen felaktiga eller så är vår stat server nere. Försök igen senare för att se om servern är uppe. Om du verkligen behöver komma åt data, så kan du alltid ändra stat_id (sätt till null) och stat_key (sätt till 0) i inställningarna i databasen, för att få statistiken upp att köra igen. Tänk på att du då kommer att tappa tillgången till statistiken som finns på servern just nu." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Statistikinsamling misslyckades!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Specifika Dagar" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Ämne" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Administratör " + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Uppgift utförd" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Textfält" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Namn" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Hantera användare" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Timeout Fel" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "till" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Totalt antal poster" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "till" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Översätt rapporter" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Utlösare" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Användare som Utlöste" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Utlösare" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "icke godkänd" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Okänd" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Okänt Fel" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "ej läst" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Du kommer inte längre mottaga underrättelser från " + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Klicka här för att uppgradera nu" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Uppgradera Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Status uppgradering Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Ladda upp rapporter" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Användare" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Användare" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Bekräfta/Obekräfta " + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Bekräfta/Obekräfta" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Version" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " är tillgänglig för uppgradering." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Videokodning" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Privata Meddelanden" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Visa sajten" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Se Rapport" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Wälkommen, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Ja" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Din sökning efter" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Genom att trycka på knappen nedanför kommer ALLA rapporter i databasen att raderas. Du bör använda denna funktion med försiktighet då den inte kan upphävas." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Innan du fortsätter, rekommenderar vi att du säkerhetskopierar din databas" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Jag försäkrar att jag vill ta bort alla %s rapport(er) från databasen. " + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Är du säker på att du vill ta bort alla rapporter?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Det finns inga rapporter att ta bort." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Antal inloggningar" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Senaste login" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Bekräftat konto?" diff --git a/application/i18n/po/po-sv_SE/ui_main.po b/application/i18n/po/po-sv_SE/ui_main.po new file mode 100644 index 0000000000..dca77ad7db --- /dev/null +++ b/application/i18n/po/po-sv_SE/ui_main.po @@ -0,0 +1,3171 @@ +# +# Translators: +# Krystian Hoffman , 2013 +# T68 , 2013 +# T68 , 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Om " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Tillgång" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Tillgångsbegränsningar" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Konto" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Händelser" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Detta kan inte ångras. Är du säker på att du vill fortsätta?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Aktivera" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Aktiv" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Lägg till" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Skapad av" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Mer information" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Ytterligare rapporter" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Lägg till/Redigera" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Lägg till fält" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Lägg till språk" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Lägg till ny" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Lägg till kategori" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Lägg till översättning" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Administration" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Få meddelanden" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Gör mig uppmärksam på om en rapport sparats:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Spara mina meddelanden" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "e-postadress:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "ange e-postadress" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "ange mobilnummer med landskod" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Hämta meddelanden" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Underrättelse har skickats" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Mobiltelefon:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Eller, markera en punkt på kartan nedan så kommer vi att meddela dig när något rapporterats inom 20 km från denna punkt." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Om du inte kan hitta platsen, klicka på kartan och markera rätt plats." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feed (kopiera url:en nedan)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Välj stad" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Steg 1: Välj stad eller plats:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Steg 2: Skicka meddelande till min:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Steg 3 (Frivilligt): Välj Kategorier" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Bekräfta tidigare begäran" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Din händelse har sparats!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Att göra" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Tillåten" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Tillåtna HTML taggar: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes är endast tillåtna från: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Alla kategorier" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Hela perioden" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "och" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Godkänn" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Godkänd" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Godkända rapporter" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Godkänn denna rapport" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Ungefär" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arkiv" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arkiverade" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Stigande" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "vid" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Skribent" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Automatisk Incheckning" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Rapporter Per Dag i Genomsnitt" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Väntar på godkännande" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Väntar på verifiering" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Emblem" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Emblem" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Emblembild" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Eller så kan du istället ladda upp din egna emblembild" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Emblempack" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Välj Emblem" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blogg" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Bläddra Bland Profiler" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Avbryt" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategorier" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategori" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategorifilter" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategorin har " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Kategorinamn" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Ändra Datumsintervall" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Ändra Lösenord" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Ändra Min Bild" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Välj en" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Välj data att ladda ner" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Eller välj ett eget datumintervall" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Välj fälttyp" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Rena URL:er " + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Rensa" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Rensa kartan" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Stäng" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "samling" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Färg" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Kommentar" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Kommentarer" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Kommentardetaljer" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Dina inställningar har sparats!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Konfigurera" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Du har framgångsrikt bekräftat din e-postsadress! Logga in nedanför." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Du har framgångsrikt bekräftat din e-postadress! En administratör måste godkänna ditt konto innan du loggar in" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "E-post bekräftelse misslyckades! Du kan begära en ny e-post bekräftelse nedanför." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Kontakta oss" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Säkerhetskod" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Din e-postadress" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Meddelande" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Ditt Meddelande Har Skickats!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Ditt namn" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Ditt telefonnummer" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Sänd meddelande" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Meddelandets Ämne" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2010 Ushahidi.com. All Rights Reserved." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Skapa" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Skapa/Redigera" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Skapa ny" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Skapa Nytt Lösenord" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Skapa rapport" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Trovärdighet" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Nuvarande Lösenord" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Anpassade fält" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Information" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Datum" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/åååå)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Datum & Tid" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "Dag" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Inaktivera" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Malmö, Sverige" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Ta bort" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Borttagen" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Tar bort" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Ta bort inaktiverade" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Radera senaste " + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Ta bort denna rapport" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Radera vald" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Ta bort spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Demo" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Beskrivning" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Fallande" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Exempel: Hörnan vid bokhandeln, Hamngatan & Östergatan, Malmö" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Detaljer" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Direktrapport" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Inaktiverad" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Icke godkänd" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Ladda ner rapporter" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Ladda ned" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Redigera" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Redigera formulärfält" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Redigera rapport" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-post" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "E-postadress" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Mailserverinställningar" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Mailservervärd" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mailserver lösenord" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Mailserverport" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Mailserver SSL-stöd" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Mailservertyp" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Mailserver användarnamn" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "så dina inställningar måste stämma överens med denna adress" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "För att få rapporter via e-post, skriv in dina kontouppgifter för e-postadressen nedan. E-post mottages av din" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Några servrar kräver en fullständig e-postadress" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "E-postkontots lösenord" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Vanliga portar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Exampel: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Exampel: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Aktivera eller inaktivera SSL-anslutning" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---- TOM ----" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "till" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Fel!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Exampel" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Sverige" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Mobilappar" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Länk till video (youtube, Vimeo osv)" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Flöde" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Ge feedback" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Flöden" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Flödet har " + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Flödesposter" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Flödesnamn" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Flödes-URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Oanvänt fält" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Fil" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Din fil är för stor" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filter" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtrera rapporter" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtrera rapporter efter" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filtrera rapporter som innehåller" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Hitta" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Hitta plats" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Förnamn" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Schemaläggare för Tvingade Körningar" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Glömt ditt lösenord?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Formulär" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formulär" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Formulärbeskrivning" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Redigera detta formulär" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Formuläret har" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Formulärrubrik" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Från" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Fullständigt namn" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation tillgängligt" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Färg" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Kommentarer" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etikett" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Penseltjocklek" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Gå" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Har" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Hur hjälper man" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Gömd" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "dölj" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "dölj meddelande" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Hem" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Hur rapporterar man" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Används för att identifiera dig på sidan för andra användare." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Bild" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Bilder" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Bild/Ikon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inaktiv" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Brevlåda" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Incident" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Rapporter i närheten" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Plats för rapporten" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Inkludera" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Inkludera kategorier" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Inkludera skräddarsydda fält" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Inkludera beskrivning" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Inkludera så många detaljer som möjligt" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Inkludera latitud" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Inkludera information om plats" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Inkludera longitud" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Ange personlig information" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Inkommande media" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Information utvärdering" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Ange din exakta position" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Ditt konto har inte behörighet för att logga in. Var god kontakta administratören." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Svar till" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Adress" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Är detta din profil?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "post" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "poster" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "postdetaljer" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Postrubrik" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Nyckel" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Nyckelord" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML Fil" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Ladda upp KMZ/KML Fil" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Språk" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Senaste" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Senaste månaden" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Efternamn" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Senaste året" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitud" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Lager" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Andra lager" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Lagret har" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Lagernamn" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Lager-URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Skriv en kommentar" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Mindre Information" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Nivå" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Denna nivå har" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Nivånamn" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Begränsad" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Länk" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Lista" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Laddar Rapporter" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Plats" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Platser" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Stad, Stat eller Land" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Logga in" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Kontot har framgångsrikt skapats. Du kan nu logga in." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "En bekräftelse har skickats till din e-postadress." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Konton skapat. Ditt konto måste godkännas av en administratör innan du kan logga in." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-postadressen existerar inte. Prova en annan adress eller skapa ett konto." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Var god tryck på din kontoleverantör" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Logga in med" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-post och Lösenord" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Registrera" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Skapa ett Konto" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Tack för att du registrerade dig på %1$s. För att bekräfta din e-postadress, var god och tryck här: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Registreringsbekräftelse" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "En ny användare registrerade på %1$s. För att godkänna registreringen, tryck här %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Godkännande av nya Användare" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Ditt användarkonto på %1$s har godkänts. För att logga in, tryck här %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Ditt konto har godkänts" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Skapa ett konto för att ta del utav fler funktioner på sidan." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitud" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Karta" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Markera som läst" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Markera som oläst" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximal filstorlek" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Mediafilter" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Medlemmar" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Hantera Ditt Konto" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Meddelande" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Meddelanden" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Meddelandedetaljer" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Meddelande från en icke-numerisk källa:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Modifiera" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Ändra datum" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "månad" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Mer" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Mer Information" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Spänner denna Ushahidi Instans över flera länder" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Du måste bekräfta din e-postadress för att få tillträde. Om ditt bekräftelsemejl har försvunnit, kan du begära ett nytt nedanför. " + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Namn" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Närliggande Rapport" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Ny" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Nyheter" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Nyhetsflöden" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Nyhetskälla" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Ny kategori" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nytt lösenord" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Ny rapport" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "NÄsta" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Nej" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Inga incheckningar att visa" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Ingen data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Ingen" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Meddelanden" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Inte godkänd" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Inte godkänd" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Inget Valt---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "inte_spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Inte Specificierat" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Det finns inga rapporter" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Inga resultat" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Av" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Officiella nyheter" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "På" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Alternativ" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Valfri" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Alternativ" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Organisation" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Organisationer" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Organisationsbeskrivning" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Organisation e-post" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Organisation har" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Organisationnamn" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Organisation Telefon 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Organisation Telefon 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Organisation Hemsida" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Original" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Originalbeskrivning" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Originalrubrik" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "ANDRA USHAHIDI INSTANSER" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Utkorg" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Utgående" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Sida" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Sidor" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Sidbeskrivning" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Sidan har" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Sidfliksnamn" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Sidrubrik" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Överliggande kategori" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Lösenord" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Skriv lösenordet igen" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Lösenordet bytades framgångsrikt! Logga in nedanför." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Glömt ditt lösenord?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Kontrollera din e-post för nytt lösenord." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Fortsätt vara inloggad på denna dator?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Senaste månaden" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Senaste året" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Avvaktande" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Personlig information Frivilligt.." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Foton" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Bilder" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Bilder och videor" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Sök efter din plats, eller klicka på kartan för att sätta exakt position" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Spela" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Observera" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Tillägg" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Sida med Tillägg" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Publik Profil" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Publik Profil URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Förhandsgranska" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Förhandsgranska post" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Förhandsgranska meddelande" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "FÖREGÅENDE" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Visas ej" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profilfärg" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Din profil har sparats" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Snabbstatistik" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Gradering" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Läs" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Ta emot" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Ta emot från" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Ta emot meddelande" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Senaste rapporterna" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Uppdatera nyhetsflöde" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registrerad E-postadress" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "ta bort" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Svara" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Rapportera" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Rapporter (från kartan i kronologisk ordning)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Rapportör" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Rapportörer" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Rapportör datum" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Rapportör e-post" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Rapportör förnamn" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Rapporten har" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Rapportör IP Adress" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Rapportör efternamn" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Reporternivå" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Reporternivåer" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Rapportör telefon" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Rapporter" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Bläddra" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Skicka" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Rapporter Från Denna Användare" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategorisera" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Rapporter" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Datum" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Beskrivning" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Rapporter kommer att sparas ner i CSV format" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-post" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Funktioner" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Hitta en plats nära dig" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Förnamn" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Efternamn" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Förfina platsnamnet" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Länk nyhetskälla" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Valfri information" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Ladda upp bilder" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Tillbaka till rapportsidan" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Välj stad" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Din rapport har skickats in för granskning. Vi återkommer till dig snarast om det finns behov." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Skicka in ny rapport" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Tid" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Tidslinje" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Rapportrubrik" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Videolänk" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Rapportera in en händelse" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Rapportdetaljer" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Genom att skicka ett meddelande till" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Genom att skicka e-post till " + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Genom att skriva in en tweet med hashtaggen/arna" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Genom att fylla i detta formulär" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Med en app för mobilen " + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Din rapport har sparats" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Rapportrubrik" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Efterfråga mer information" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Efterfråga plats" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Nödvändig" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Krav" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Skicka om E-post Bekräftelse" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Rensa" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Återställ alla filter" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Nollställ lösenord" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Hämta städer för valt land" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Hanterade konton av %s tjänsten." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Du har redan ett konto som hanteras av CrowdmapID! Försök använda din CrowdmapID e-postadress och ditt lösenord för att logga in." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Roll" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Spara" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Sparad" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Spara & lägg till ny" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "SPARA & STÄNG" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Spara rapport" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Schema" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Schemaläggare" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Dag" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Timme" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Schemarläggarlogg" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minut" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Veckodag" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "SÖK" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Sökresultat" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Säkerhetskod" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Välj alla" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Välj fälttyp" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Välj formulärtyp" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Välj på karta" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Välj så många som behövs" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Kontrollera att du valt en post" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Välj tema" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Skicka" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Skicka bekräftelse" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Skickar till" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Skickat" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Skickat av" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Serveradress" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Servertyp" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Tjänst" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Tjänstens användarnamn" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Tjänstens användar-ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Dela" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Delat data" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Delningen har" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Delar" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Kortare karta" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Visa" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Visa alla" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Visa meddelanden" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Visar rapporter från %1$s till %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Websajt" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "sajtens e-postadress" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Sajtens URL" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Mindre karta" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Tyvärr har du inga emblem." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Källa" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Källans namn" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sortera" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sortera efter" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Källans URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL-stöd?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Från" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Steg" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Skicka in en rapport" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Skickat av %1$s via %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Skicka in via SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Skicka ditt SMS till" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "på din telefon" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Det lyckades!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Import lyckades" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Efternamn" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Undersökning" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "System" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Högre karta" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP-port" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Teman" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Standard Ushahidi tema" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Temainställningar" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Denna/detta" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Idag" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Denna månad" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Denna vecka" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Detta år" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Detta är din profil." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "tid" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "RUBRIK " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "till" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Idag" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Idag klockan" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Pollett" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Totalt antal rapporter" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Översatt" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Översatt beskrivning" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Översatt rubrik" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Översätt till" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Översättning" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Översättning har sparats" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Pålitlig" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Typ" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Det gick inte att skicka e-post." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Okategoriserade rapporter" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "Oläst" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Obekräftad" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Updatera flöden" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Ladda upp" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Se våra riktlinjer för rapportuppladdning:- " + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Uppladdningsguide XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Uppladdningsguide CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Fil att ladda upp" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Ladda upp rapporter" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Skräddarsydda fältkolumner måste ha deras form_id infogade t.ex. fältet Test, på standard formuläret, vars ID är 1, kommer blir Test-1. Under importering av skräddarsydda fält, se till att" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Med formuläret nedan, kan du importera händelser till Ushahidimotorn" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Rapporten måste laddas up i antingen CSV eller XML format." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "När incident ID redan existerar i databasen kommer noteringen i CSV/XML filen att ignoreras." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Den måste innehålla åtminstone händelserubrik och datum" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Om ingen position har angetts kommer platsen att geokodas med Google Geocoder" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Om ytterligare information ska importeras t.ex personlig information och/eller skräddarsydda formulärfält" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Åtminstone ett av fälten för personlig information(namn, efternamn, e-post) MÅSTE existera. Tomma protokoll kommer inte att importeras" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Din indata för formulärfälten stämmer överens med de konfigurationsval givna för denna instansen. " + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Valen för kryssruta separeras med ett kommatecken t.ex. om dina val för frukter är äpplen,mongon och vindruvor, så ska du skriva \"äpplen,mangon,vindruvor\" " + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Värden för datumfälten har följande format: mm/dd/åååå t.ex. 3:e Oktober 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Ett exempel på CSV Report" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,HÄNDELSERUBRIK,HÄNDELSEDATUM,PLATS,BESKRIVNING,KATEGORI,GODKÄND,VERIFIERAD
\n\t\t\t\t\t\"1\",\"Olycka i Lund\",\"2010-11-15 01:06:00\",\"Lund\",\"Bilolycka på E22\",\"SNÖSTORM, OLYCKA, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Dödsskjutning\",\"2010-11-16 19:10:00\",\"Malmö\",\"Dödsskjutning i Rosengård\",\"SKOTTLOSSNING, MORD, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Uppladdning OK" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Ladda upp video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Användare" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Användarnamn" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Administratör" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Bekräftelse" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Verifierad" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Verifierade rapporter" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Verifiera" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Verifiera denna rapport" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Version" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Visa" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "visningar" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Visa alla" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Visa alla flöden" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Visa alla rapporter" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Visa post" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Visa fler" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Se Publik Profil" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Visa rapport" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Visa rapporter" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Se Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Synlig" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Väntar på godkännande" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Väntar på verifiering" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Bredare karta" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Webb Formulär" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Webb" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Vikt" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ja" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Igår" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Din kontrollpanel" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Din fil" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zooma in" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zooma ut" diff --git a/application/i18n/po/po-sv_SE/upgrade.po b/application/i18n/po/po-sv_SE/upgrade.po new file mode 100644 index 0000000000..98ab5583d6 --- /dev/null +++ b/application/i18n/po/po-sv_SE/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Uppgraderingen misslyckades" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Instruktionerna nedan visar hur du uppgraderar din Ushahidiinstallation manuellt" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Steg 1: Ladda ner den senaste versionen av Ushahidi på http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Steg 2: Beroende på operativsystemet på webbservern, använd det verktyg som du föredrar (t.ex.: telnet, ftp, ssh) för att logga in på webbservern och byt ut allt innehåll i samtliga kataloger med den senaste versionen. Allt UTOM:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Steg 3: Använd en MySql-klient ( t.ex. phpMyAdmin ), och kör upgrade.sql. Scriptet uppdaterar respektive tabell" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "För automatisk uppgradering, klicka på knappen nedan" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Uppgraderar" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-sw_KE/alerts.po b/application/i18n/po/po-sw_KE/alerts.po new file mode 100644 index 0000000000..b16815a7f2 --- /dev/null +++ b/application/i18n/po/po-sw_KE/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Stephen Wathika Wanjau , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Sehemu ya anwani ya Barua pepe inaonekana kuwa na anwani isiyosahihi." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Anwani ya Barua pepe imeshasajilishwa kupokea arifa katika eneo hilo." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Kifurushi hiki hufanya kazi katika nchi moja pekee. Tafadhali hakikisha kuwa eneo la arifa liko ndani ya nchi hii%s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Hujachagua eneo sahihi kwenye ramani." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Hujachagua eneo sahihi kwenye ramani." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Hujachagua eneo sahihi kwenye ramani." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Hujachagua eneo sahihi kwenye ramani." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Sehemu ya Simu ya Rununu inaonekana kuwa na idadi isiyo sahihi ya nambari." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Nambari ya simu ya rununu imeshasajilishwa kupokea arifa katika eneo lenu." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Sehemu ya Simu ya Rununu inaonekana kuwa na nambari isiyo sahihi. Tafadhali ingiza nambari zinazojumuisha Kificho cha Nchi pekee." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Ni sharti uingize Nambari yako ya Simu au Anwani ya Barua pepe." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Nambari ya Simu ya Rununu inahitajika ikiwa kisanduku cha alama kimetiwa alama." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Hujaweka nusukipenyo sahihi kwenye ramani." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Hujaweka nusukipenyo sahihi kwenye ramani." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Haujaweka mpokezi wa arifa." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Umejisajili kupokea arifa katika kwa vikundi vifuatavyo" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Kificho hiki kimeshathibitishwa!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Kificho hiki cha uthibitisho hakikupatikana! Tafadhali hakikisha umeandika anwani sahihi." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr " Kificho chako kimeshathibitishwa. Sasa utapokea arifa kuhusu matukio kama yanavyotukia." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Ili kuthibitisha ombi la arifa, tafadhali nenda kwa " + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Rudi katika ukurasa wa Arifa ili kuunda arifa zaidi" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Ombi lako la Arifa ya Barua pepe limeundwa na ujumbe wa kuthibitisha umetumwa kwa " + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Tafadhali ingiza kificho cha kuthibitisha anwani yako ya Barua pepe hapa chini: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Ombi lako la Arifa ya Barua pepe HALIJAHIFADHIWA!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Ombi lako la Arifa ya Barua pepe Limehifadhiwa!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Mfumo haukuweza kuchakacha ombi lako la uthibitisho!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Ombi lako la Arifa ya Barua pepe limeundwa na ujumbe wa uthibitisho kutumwa kwa " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Tafadhali ingiza kificho cha uthibitisho wa SMS ulichopokea kwenye simu yako hapa chini: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Ombi lako la Arifa ya Simu HALIJAHIFADHIWA!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Ombi lako la Arifa ya Simu Limehifadhiwa!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Kifurushi hiki haujawekwa kuchakacha arifa vyema" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Umepokea barua pepe hii kwa sababu uliejisajili kupokea arifa. Ikiwa hungependa kupokea arifa kama hizi tena, nenda kwa " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Hutapokea arifa nyingine kutoka kwa " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Hatukuweza kukuondoa kwenye usajili. Tafadhali hakikisha umeweka anwani sahihi." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "arifa - uthibitisho" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Hutapokea arifa nyingine za eneo hili hadi uthibitishe ombi lako." diff --git a/application/i18n/po/po-sw_KE/auth.po b/application/i18n/po/po-sw_KE/auth.po new file mode 100644 index 0000000000..420d5f9ea8 --- /dev/null +++ b/application/i18n/po/po-sw_KE/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Anwani ya barua pepe uliyoingiza si sahihi." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Samahani, anwani ya barua pepe uliopeana inatumika na akaunti nyingine." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Ni sharti sehemu ya barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Sehemu ya barua pepe inahitajika." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Ni sharti sehemu ya Jina iwe ya urefu wa angalau herufi 3 na isizidi herufi 100." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Sehemu ya majina inahitajika." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Sehemu ya majina la mtumizi lina herufi zisizokubalika." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Ni sharti sehemu ya nenosiri iwe na urefu wa angalau herufi 3 na isizidi herufi 8." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Tafadhali hakikisha kuwa umeingiza nenosiri na barua pepe sahihi." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Tafadhali ingiza nenosiri hiyo hiyo kwenye sehemu mbili za nenosiri." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Nenosiri linahitajika." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Ni sharti sehemu ya nenosiri liwe na herufi za kialfabeti, nambari, ishara za #, @, _ na – pekee. " + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Nenosiri ya akaunti yako uliyoweka sasa si sahihi. Tafadhali jaribu tena." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Ni sharti sehemu ya nenosiri iwe na urefu wa angalau herufi 3 na isizidi herufi 8." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Tafadhali hakikisha kuwa umeingiza nenosiri na barua pepe sahihi." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Tafadhali ingiza nenosiri hiyo hiyo kwenye sehemu mbili za nenosiri." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Sehemu ya nenosiri inahitajika." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Ni sharti sehemu ya nenosiri iwe na herufi za kialfabeti, nambari, ishara za #, @, _ na – pekee. " + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Hitilafu imetokea tukijaribu kukuingiza." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Ni sharti sehemu ya nenosiri iwe na urefu wa angalau herufi 3 na isizidi herufi 8." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Tafadhali hakikisha kuwa umeingiza nenosiri na barua pepe sahihi." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Tafadhali ingiza nenosiri hiyo hiyo kwenye sehemu mbili za nenosiri." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Sehemu ya nenosiri inahitajika." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Seva ya udhibitisho ina hitilafu. Tafadhali jaribu baadaye." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Ni sharti sehemu ya nenosiri iwe na herufi za kialfabeti, nambari, ishara za #, @, _ na – pekee. " + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Ni sharti sehemu ya kuthibitisha nenosiri iwe sawia na sehemu ya nenosiri." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Anwani ya barua pepe uliyoingiza si sahihi." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Samahani, hatuna anwani yako ya barua pepe" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Sehemu ya barua pepe inahitajika." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Ni msimamizi mkuu pekee anayeweza kumbadilisha msimamizi mkuu au kumpandisha mtumiaji hadi kuwa msimamizi." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Muundo wa jukumu si sahihi" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Ni sharti sehemu ya jukumu iwe ya urefu wa angalau herufi 5 na isizidi herufi 30." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Ni sharti ufasili angalau jukumu moja." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Ni sharti uchague jukumu la MSIMAMIZI au MTUMIAJI." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr " Kumbusho la nenosiri iliyosahaulika si sahihi" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr " Kumbusho la nenosiri iliyosahaulika lilihitajika" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Jukumu la msimamizi haliwezi kubadilishwa." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Sehemu ya anwani ya wasifu kwa umma inaweza kuwa na nambari na herufi pekee." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Samahani, anwani hii ya wasifu kwa umma tayari inatumika." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Ni sharti sehemu ya wasifu kwa umma iwe ya urefu wa angalau herufi 2 na isizidi herufi 100." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Tafadhali hakikisha kuwa umeingiza wasifu kwa umma sahihi." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Sehemu ya anwani ya wasifu kwa umma inahitajika." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Jukumu la msimamizi mkuu haliwezi kubadilishwa." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Kuna uwezekano wa mathara ya CSRF. Una uhakika unataka kuunda/kuhariri mtumiaji?" diff --git a/application/i18n/po/po-sw_KE/bug.po b/application/i18n/po/po-sw_KE/bug.po new file mode 100644 index 0000000000..07d5fe5d7b --- /dev/null +++ b/application/i18n/po/po-sw_KE/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Tafadhali ingiza kificho cha siri kilicho sahihi" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Tafadhali kificho cha siri." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Sehemu ya anwani ya Barua pepe inaonekana kuwa na anwani isiyo sahihi?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Sehemu ya hitilafu inahitajika." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ni sharti sehemu ya nenosiri iwe ya urefu wa herufi 3." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Sehemu ya mada inahitajika." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ni sharti sehemu ya jina iwe ya urefu wa herufi 3 au zaidi." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Sehemu ya jina inahitajika." diff --git a/application/i18n/po/po-sw_KE/category.po b/application/i18n/po/po-sw_KE/category.po new file mode 100644 index 0000000000..a00106a511 --- /dev/null +++ b/application/i18n/po/po-sw_KE/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Ni sharti sehemu ya rangi iwe ya urefu wa herufi 6." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Sehemu ya rangi inahitajika." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Sehemu ya maelezo inahitajika." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Tafadhali hakikisha kuwa ukubwa wa picha za kupakiwa haupiti KB 50." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Sehemu ya longitudi inaonekana kuwa na picha isiyo sahihi. Miundo pekee inayokubalika ni .JPG, .PNG na .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Sehemu ya picha inaonekana kuwa na faili isiyo sahihi." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Ni sharti sehemu ya kichwa iwe ya urefu wa angalau herufi 3 na isizidi herufi 80." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Sehemu ya nenosiri inahitajika." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Huwezi kuvunja kikundi katika makundi madogo zaidi" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Kikundi kikuu hakipo." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Ni sharti sehemu ya kikundi kikuu iandikwe kwa nambari." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Kikundi kikuu hakiwezi kuwa kikundi maalum" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Sehemu ya kikundi kikuu inahitajika." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kikundi na kikundi kikuu haviwezi kuwa sawia." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Vikundi maalum haviwezi kugawanywa katika vikundi vidogo zaidi." diff --git a/application/i18n/po/po-sw_KE/comments.po b/application/i18n/po/po-sw_KE/comments.po new file mode 100644 index 0000000000..f88633f0fe --- /dev/null +++ b/application/i18n/po/po-sw_KE/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Tafadhali ingiza kificho cha siri kilicho sahihi." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Tafadhali ingiza kificho cha siri." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Umeingiza kificho cha siri kisicho sahihi" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ni sharti sehemu ya jina iwe ya urefu wa angalau herufi 3." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Sehemu ya jina inahitajika." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Sehemu ya maoni inahitajika." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyosahihi." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama." diff --git a/application/i18n/po/po-sw_KE/contact.po b/application/i18n/po/po-sw_KE/contact.po new file mode 100644 index 0000000000..baa312c5b3 --- /dev/null +++ b/application/i18n/po/po-sw_KE/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Tafadhali ingiza kificho cha siri kilicho sahihi." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Tafadhali ingiza kificho cha siri kilicho sahihi." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Tafadhali ingiza kificho cha siri." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyosahihi." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Sehemu ya ujumbe inahitajika." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ni sharti sehemu ya jina iwe ya urefu wa angalau herufi 3." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Sehemu ya jina inahitajika." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ni sharti sehemu ya kichwa iwe ya urefu wa herufi 3." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Sehemu ya mada inahitajika." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Hitilafu ilitokea wakati wa kutuma ujumbe wako" diff --git a/application/i18n/po/po-sw_KE/core.po b/application/i18n/po/po-sw_KE/core.po new file mode 100644 index 0000000000..87115233ed --- /dev/null +++ b/application/i18n/po/po-sw_KE/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "faili ya usanidi" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "kidhibiti" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "kiendeshaji" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "Ni sharti %skiendeshaji cha%smaktaba kitekeleze %sguzano " + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%sKiendeshaji cha%smaktaba hakikupatikana." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Unaweza kuenda kwa home page or try again." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Ombi Haliwezi Kukamilishwa" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "kisaidizi" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Aina ya faili iliyoitishwa,. %s, haikubaliki katika faili yako ya muundo." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Mbinu isiyokubalika %simetumika%s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "%sSifa hii haipatikani katika %skundi hili." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "maktaba" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Saraka ya kuingia haiandikiki:%s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "kifani" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi haingeweza kutambua kidhibiti cha kuchakacha ombi hili:%s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Tafadhali weka njia difoti katika config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Ukurasa uliotafuta,%s, haukupatikana." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Tuma Ripoti kwa Ushahidi Kuhusu Hitilafu Hii" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Ukurasa uliotafutwa %s, %s, haukupatikana" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Mfuatilio wa Mrundiko" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Imepakiwa kwa sekunde {muda wa kutekeleza}, kwa kutumia {kumbukumbu iliyotumika} za kumbukumbu. Imetolewa na Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Ni toleo moja tu la Ushahidi linaloweza kufunguka kwa kila ukurasa uliofunguliwa." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Isiyopatikana%s:%s katika faili%skwenye mtandao%s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "tazama" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Ni sharti utazame jina la faili kabla ya kuwasiliana na mtoaji" diff --git a/application/i18n/po/po-sw_KE/database.po b/application/i18n/po/po-sw_KE/database.po new file mode 100644 index 0000000000..984788d0f8 --- /dev/null +++ b/application/i18n/po/po-sw_KE/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Hitilafu ya databesi%s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Jedwali \"%s\" halipatikani katika databesi. Tafadhali hakikisha akuwa unatumia toleo jipya zaidi la databesi ya Ushahidi." diff --git a/application/i18n/po/po-sw_KE/datetime.po b/application/i18n/po/po-sw_KE/datetime.po new file mode 100644 index 0000000000..5324314a7d --- /dev/null +++ b/application/i18n/po/po-sw_KE/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "asubuhi" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Ijumaa" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Ijumaa" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Jumatatu" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Jumatatu" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "jioni" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Jumamosi" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Jumamosi" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Jumapili" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Jumapili" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Alhamisi" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Alhamisi" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Jumanne" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Jumanne" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Jumatano" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Jumatano" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Jan" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Januari" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Feb" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Februari" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Machi" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Machi" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Apr" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Aprili" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Mei" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mei" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Juni" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Juni" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Julai" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Julai" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Agosti" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Agosti" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Sep" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Septemba" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Okt" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Oktoba" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Nov" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Novemba" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Des" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Desemba" diff --git a/application/i18n/po/po-sw_KE/feeds.po b/application/i18n/po/po-sw_KE/feeds.po new file mode 100644 index 0000000000..efb0a90633 --- /dev/null +++ b/application/i18n/po/po-sw_KE/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "TAREHE" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Ni sharti sehemu ya majina iwe ya urefu wa angalau herufi 3 na isizidi \n\t\t\therufi 70." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Tafadhali ingiza jina la tawanyiko." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Tafadhali ingiza anwani la tawanyiko." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Tafadhali ingiza anwani sahihi. Kwa mfano: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "CHANZO" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Kichwa" diff --git a/application/i18n/po/po-sw_KE/footer.po b/application/i18n/po/po-sw_KE/footer.po new file mode 100644 index 0000000000..767148ecb3 --- /dev/null +++ b/application/i18n/po/po-sw_KE/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl haijawekwa katika mfumo huu" diff --git a/application/i18n/po/po-sw_KE/form.po b/application/i18n/po/po-sw_KE/form.po new file mode 100644 index 0000000000..e9b32ff81d --- /dev/null +++ b/application/i18n/po/po-sw_KE/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Kadirio la difoti uliyoweka katika sehemu hii haikubaliki." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Ni sharti Kichwa cha Ukurasa kiwe cha urefu wa angalau herufi 3 na kisizidi herufi 200." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Tafadhali ingiza kadirio la kati ya 0 na 50 katika sehemu ya urefu." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Umeingiza kadirio lisilo sahihi katika sehemu ya tarehe." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Tafadhali chagua Ndio au La katika Sehemu ya Tarehe." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Ni sharti Jina la Sehemu liwe la urefu wa angalau herufi 3 na kisizidi herufi 100." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Tafadhali ingiza Jina la Sehemu." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Jina la sehemu uliloingiza linatumika tayari katika fomu hii. Tafadhali ingiza lingine." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Umeingiza kadirio lisilo sahihi la Sehemu Inayohitajika." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Tafadhali chagua Ndio au La kwa Sehemu Inayohitajika." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Tafadhali chagua Aina ya Sehemu iliyokubalika." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Tafadhali chagua Aina ya Sehemu." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Tafadhali ingiza kadirio la kati ya 0 na 300 katika Sehemu ya Upana." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Tafadhali ingiza Maelezo ya fomu." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Fomu ya difoti haiwezi kufutwa." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Tafadhali chagua fomu utakayoongeza sehemu hii." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Tafadhali chagua fomu utakayoongeza sehemu hii." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Ni sharti sehemu ya jina la fomu iwe ya urefu wa angalau herufi 3 na isizidi herufi 100." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Tafadhali ingiza jina la fomu." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Fomu iliyo na kichwa hicho tayari ipo. Tafadhali chagua kingine." diff --git a/application/i18n/po/po-sw_KE/imap.po b/application/i18n/po/po-sw_KE/imap.po new file mode 100644 index 0000000000..0f000451cc --- /dev/null +++ b/application/i18n/po/po-sw_KE/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Mkondo wa IMAP haungefunguka" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Huduma ya barua pepe haijaegemezwa" diff --git a/application/i18n/po/po-sw_KE/installer.po b/application/i18n/po/po-sw_KE/installer.po new file mode 100644 index 0000000000..a63092bcd2 --- /dev/null +++ b/application/i18n/po/po-sw_KE/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Njia ya besi" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Databesi" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Shina la Databesi" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Iwapo unaendeshea Ushahidi katika tarakilishi yako, hii hasa itakuwa \"shinalokali\". Iwapo unaendeshea Ushahidi katika seva ya mtandao, utapata habari kuhusu shina lako kutoka kwa mtoaji wa huduma za shina la mtandao." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Jina la Databesi" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Jina la databesi unalotaka kuendeshea Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Kwa habari zaidi, tafadhali tazama this article katika wiki inayotoa habari zaidi kuhusu databesi." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Lugha Difoti (lugha maalum)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Kila kifurushi cha Ushahidi huwa na mseto wa tafsiri za lugha zilizoundiwa ndani. Pia unaweza kuongeza lugha yakoadd your own." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Wezusha" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Wezesha" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Ulioorodheshwa hapa chini ni muhtasari wa hitilafu tulizokumbana nazo." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Eneo katika seva ulipoweka faili zako za Ushahidi kwenye mtandao wako. Tumefuta kadirio hili bila kiatomatiki, tafadhali hakikisha kuwa ni sahihi. Iwapo eneo hili li tupu, usiwe na shaka, inamaanisha kuwa Ushahidi imebandikwa katika ngazi kuu ya orodha ya anwani." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Imekamilika" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Jumla" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google Ufunguo wa API" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Mtu yeyote anaweza kupata ufunguo wa api. Pokea ufunguo wako sasa" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Rudi Nyuma" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "UBADIKAJI WA KIWANGO CHA JUU" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Pata vipimio vyote vya kimsingi vilivyoangaziwa kwenye utaratibu huu wa hatua 5. Hii ni pamoja na seva, ramani, jina la tovuti na habari za mawasiliano." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "UBANDIKAJI WA KIMSINGI" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Ni rahisi na haraka. Unachohitaji ni kina cha orodha ya anwani tovuti yako na habari ya databesi yako. Tumia njia hii iwapo unataka kuanza na kuendelea kwa haraka na kisha unaweza kusanidi mengine yote baadaye." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Endelea" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Karibu katika utaratibu wa kubandika seva ya Ushahidi. Chagua hapa chini aina ya ubandikaji ambao ungependa kutumia." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Ubandikaji Umefaulu" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Seva ya Ujumbe" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Shina la Seva ya Ujumbe" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Mifano: barua pepe.mtandao wako.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Nenosiri ya Seva ya Ujumbe" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Nenosiri unayotumia kuingia katika barua pepe zako." + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Kiingilio cha Seva ya Ujumbe" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Vingilio vinavyotumika sana: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Aina ya Seva ya Ujumbe" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Protokali ya kupata ujumbe wa intaneti (IMAP) au Protokali ya Shirika la posta (POP). Ni nini tofauti?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Jina la mtumiaji wa Seva ya Ujumbe" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Iwapo unatumia Gmail, Hotmail au Yahoo mail, tumia anwani yako ya barua pepe kama jina maalum la mtumiaji." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Ramani" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Mtoaji Ramani" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi inafanya kazi vyema na kila mojawapo ya watoaji hawa wa ramani: Google, Bing au Open Street map. Chagua ile iliyo na habari nyingi kwa mujibu wa eneo lako." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Hatua zingine..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Nenosiri" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Nenosiri ya databesi yako" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Awali" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Tafadhali anzisha tena seva yako ya Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Wezesha au uwezushe SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Baadhi ya seva za ujumbe hukupa chaguo la kutumia SSL unapofanya muunganisho. Inapendekezwa kutumia SSL, kwani ni salama zaidi." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Weka seva yako ya SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Anwani ya Barua pepe ya Tovuti" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Anwani ya Arifa za Barua pepe za Tovuti" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Wageni katika tovuti yako wanapojisajili kupata arifa za barua pepe, watapokea barua pepe kutoka kwa anwani hii. Si lazima anwani hii ya barua pepe iwe kama Anwani ya Barua pepe ya Tovuti." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Mawasiliano ya barua pepe ya tovuti nzima yatawasilishwa kupitia anwani hii." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Jina la Tovuti" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Jina la tovuti yako" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Wito wa Tovuti" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Wito wako" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Faili na folda zilizoorodheshwa hapa chini zinahitaji kuweza kuandikika na seva yako." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Haya ndiyo maagizo ya kubadilisha ruhusa za faili:

\n" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Kabla hujaanza, utahitaji kuhakikisha kuwa faili na folda zifuatazo zinaweza kuandikika na seva yako. Hii inahusisha kubadilisha ruhusa za faili." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Kwa utaritibu wa kubandika, tafadhali jitayarishe na habari zifuatazo." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Utangulizi wa Jedwali" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Kwa kawaida, hufai kubadilisha utangulizi wa jedwali. Hata hivyo, iwapo unataka kuendesha bandiko kadhaa za Ushahidi kutoka kwa databesi moja, unaweza kufanya hivyo kwa kubadilisha utangulizi hapa." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Kichwa" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Ili kuingia, nenda" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Pakia data ya ripoti" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Jina la mtumiaji" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Jina la mtumiaji la databesi yako" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "na utumie hati zinazofuatazo" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Tazama tovuti yako" diff --git a/application/i18n/po/po-sw_KE/layer.po b/application/i18n/po/po-sw_KE/layer.po new file mode 100644 index 0000000000..1f98325ba1 --- /dev/null +++ b/application/i18n/po/po-sw_KE/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Ni sharti sehemu ya rangi iwe ya herufi 6." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Sehemu ya rangi inahitajika." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Sehemu ya faili inaonekana kuwa na faili isiyo sahihi. Faili zinazokubalika ni za .KMZ na .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Sehemu ya faili inaonekana kuwa na faili isiyo sahihi. " + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Ni sharti sehemu ya majina iwe ya urefu wa angalau herufi 3 na isizidi herufi 80." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Sehemu ya majina inahitajika." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Anwani au faili ya KML inahitajika." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Huwezi kuwa na faili ya KML na anwani pamoja." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Tafadhali andika anwani sahihi, kwa mfano: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-sw_KE/libraries.po b/application/i18n/po/po-sw_KE/libraries.po new file mode 100644 index 0000000000..c6dd9069b9 --- /dev/null +++ b/application/i18n/po/po-sw_KE/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Haikuweza kuunganishwa na seva ya Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Mwitikio kutoka Akismet haukuweza kurejeshwa." + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Maktaba ya API: %s kwa %s kundi hili haikuweza kupatikana. Tafadhali chunguza jedwali lako la API la kuwasilisha majukumu." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Anwani yako ya API ya Akismet si sahihi." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Hitilafu wakati wa kutumia mbinu ya kutuma ya fopen!
Tafadhali chunguza ikiwa PHP inaegemezwa na OpenSSL na pia ikiwa toleo hilo la PHP ni zaidi ya 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ujumbe wako wa unicode ni mrefu sana! (Urefu wa hivi sasa=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Tafadhali onyesha bayana anwani unapotaka kutuma ujumbe huo (NENDA)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Tafahali onyesha bayana anwani unapotoka ujumbe huo (KUTOKA)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ujumbe wako wa unicode ni mrefu sana! (Urefu wa hivi sasa=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Mbinu ya kutuma isiyoegemezwa!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Maktaba ya API %s si sahihi. Maktaba zote za API sharti ziwe kundi ndogo za %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Orodha ya anwani %s haikuweza kufutwa." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Hitilafu wakati wa kudondoa: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Upakuaji toleo la Ushahidi la hivi majuzi haukufalu. Kificho cha hali ya HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Faili%s haikuweza kunakiliwa." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Faili%s haikuweza kufutwa." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Mswada wa kuboresha wa Ushihidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Faili ya zip ya Ushahidi iliyopakuliwa %s, haikuweza kuandikwa." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s haipatikani katika kundi la RiverID." diff --git a/application/i18n/po/po-sw_KE/maintenance.po b/application/i18n/po/po-sw_KE/maintenance.po new file mode 100644 index 0000000000..4f587be6f3 --- /dev/null +++ b/application/i18n/po/po-sw_KE/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Samahani, tovuti yetu haifanyi kazi kwa sasa kufuatia ukarabati. Tafadhali jaribu baada ya muda mfupi." diff --git a/application/i18n/po/po-sw_KE/message.po b/application/i18n/po/po-sw_KE/message.po new file mode 100644 index 0000000000..040dafe2b0 --- /dev/null +++ b/application/i18n/po/po-sw_KE/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Tafadhali ingiza kificho cha usalama kilicho sahihi." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Tafadhali ingiza kificho cha usalama." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyo sahihi." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Ni sharti sehemu ya barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Sehemu ya barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Sehemu ya maoni inahitajika." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Ni sharti sehemu ya majina iwe ya urefu wa herufi 3." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Sehemu ya majina inahitajika." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Sehemu ya nambari ya simu si sahihi." diff --git a/application/i18n/po/po-sw_KE/mhi.po b/application/i18n/po/po-sw_KE/mhi.po new file mode 100644 index 0000000000..ce8c71e23f --- /dev/null +++ b/application/i18n/po/po-sw_KE/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Tafadhali ingiza kificho cha usalama kilicho sahihi." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Tafadhali ingiza kificho cha usalama." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Sehemu ya anwani ya Barua pepe inaonekana kuwa na anwani isiyo sahihi." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Tafadhali peana anwani sahihi ya barua pepe. " + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Sehemu ya ujumbe inahitajika." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Ni sharti sehemu ya mada iwe ya urefu wa angalau herufi 3." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Sehemu ya mada inahitajika." diff --git a/application/i18n/po/po-sw_KE/notifications.po b/application/i18n/po/po-sw_KE/notifications.po new file mode 100644 index 0000000000..d6f595b7cd --- /dev/null +++ b/application/i18n/po/po-sw_KE/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Mutie Mule , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Ujumbe huu ulitumwa kutoka kwa tovuti yako" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Kiingilizi cha Mzimamizi" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Oni jipya limewasilishwa katika tovuti yako ili kujibiza:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Oni jipya" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Ujumbe mpya wa barua pepe umewasilishwa katika tovuti yako." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Ujumbe Mpya wa Barua pepe" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Ripoti mpya imewasilishwa katika tovuti yako." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Ripoti Mpya" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Ujumbe mpya wa simu umewasilishwa katika tovuti yako." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Ujumbe Mpya wa Simu" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Umepokea Arifa Mpya" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Arifa Mpya!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Umepokea Ujumbe wa Kibinafsi" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Ujumbe Mpya wa Kibinafsi" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Ili Kujibu Tafadhali Nenda Kwa: " diff --git a/application/i18n/po/po-sw_KE/page.po b/application/i18n/po/po-sw_KE/page.po new file mode 100644 index 0000000000..535ab77d03 --- /dev/null +++ b/application/i18n/po/po-sw_KE/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Tafadhali ingiza Kichwa cha Ukurasa." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Ni sharti Kichwa cha Ukurasa kiwe cha urefu wa angalau herufi 3 na kisizidi herufi 150." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Tafadhali ingiza Jina la Kichupo cha Ukurasa." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Tafadhali ingiza Maelezo ya Ukurasa." diff --git a/application/i18n/po/po-sw_KE/permissions.po b/application/i18n/po/po-sw_KE/permissions.po new file mode 100644 index 0000000000..63f58361ff --- /dev/null +++ b/application/i18n/po/po-sw_KE/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Stephen Wathika Wanjau , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-11-02 08:08+0000\n" +"Last-Translator: Stephen Wathika Wanjau \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Tazama Ripoti" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Unda/Hariri/Futa Ripoti" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Idhinisha Ripoti" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Thibitisha Ripoti" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Dhibiti Maoni Kuhusu Ripoti" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Pakua Ripoti" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Pakia Ripoti" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Dhibiti Ujumbe" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Dhibiti Ripota wa Ujumbe" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Tazama Takwimu" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Badilisha Vipimio" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Dhibiti Jopo" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Dhibiti Watumiaji" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Dhibiti Majukumu" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Zuia Viingilio" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Dhibiti Viingilio" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Fikia Kuzano ya Mtumiaji ya Msimamizi " + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Fikia Kuzano ya Mtumiaji ya Washiriki" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Futa ripoti zote" diff --git a/application/i18n/po/po-sw_KE/private_message.po b/application/i18n/po/po-sw_KE/private_message.po new file mode 100644 index 0000000000..0b0afe1711 --- /dev/null +++ b/application/i18n/po/po-sw_KE/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Ni sharti Kitambulisho Kikuu kiandikwe kwa nambari" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Sehemu ya Kwa inahitajika" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Mtumiaji unayejaribu kutumia ujumbe hayupo" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Sehemu ya mada inahitajika." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Ni sharti mada iwe na kati ya herufi 3 na 150." + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Sehemu ya ujumbe inahitajika." diff --git a/application/i18n/po/po-sw_KE/report.po b/application/i18n/po/po-sw_KE/report.po new file mode 100644 index 0000000000..22910a5037 --- /dev/null +++ b/application/i18n/po/po-sw_KE/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:21+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "hitilafu!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Kifurushi hiki hufanya kazi katika nchi moja pekee. Tafadhali hakikisha kuwa eneo la arifa liko ndani ya nchi hii%s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Tafadhali chagua kipengele sahihi utakachojumuisha katika kipakuzi" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Tafadhali chagua kipengele sahihi utakachojumuisha katika kipakuzi" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Tafadhali chagua\" Ripoti Zinazosubiri Idhini\" au \"Ripoti zilizoidhinishwa\" au zote mbili." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Tafadhali chagua\" Ripoti Zinazosubiri Idhini\" au \"Ripoti zilizoidhinishwa\" au zote mbili." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Tafadhali chagua\" Ripoti Zinazosubiri Idhini\" au \"Ripoti zilizoidhinishwa\" au zote mbili." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Tafadhali chagua\" Ripoti Zinazosibiri Kudhibitishwa\" au \"Ripoti zilizodhibitishwa\" au zote mbili." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Tafadhali chagua\" Ripoti Zinazosibiri Kudhibitishwa\" au \"Ripoti zilizodhibitishwa\" au zote mbili." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Tafadhali chagua\" Ripoti Zinazosibiri Kudhibitishwa\" au \"Ripoti zilizodhibitishwa\" au zote mbili." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Tafadhali chagua aina sahihi ya ripoti ya kupakua" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Tafadhali chagua aina sahihi ya ripoti ya kupakua" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Tafadhali chagua aina sahihi ya ripoti ya kupakua" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Ni sharti uchague muundo wa kupakua. Chagua aitha CSV au XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Tafadhali chagua muundo sahihi wa kupakua ripoti zako katika" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Sehemu ya KUTOKA ya tarehe inaonekana kuwa na tarehe isiyo sahihi." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Tafadhali ingiza tarehe sahihi katika sehemu ya KUTOKA. Tarehe hii haiwezi kuzidi tarehe ya leo." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Idhinisha Ripoti Hii" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Idhinisha Ripoti Hii" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Sehemu ya asubuhi/jioni inaonekana kuwa isiyo sahihi." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Sehemu ya\"Vikundi\" inaonekana kuwa na kikundi kisicho sahihi." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Sehemu ya \"Vikundi\" inahitajika." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Sehemu ya tarehe inaonekana kuwa na faili isiyo sahihi. " + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Sehemu ya tarehe inaonekana kuwa na faili isiyo sahihi. " + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Sehemu ya tarehe inahitajika." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Sehemu ya \"Maelezo\" inahitajika." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Sehemu ya saa inaonekana kuwa na saa isiyo sahihi. " + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Sehemu ya saa inahitajika." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Tafadhali ingiza kadirio sahihi katika sehemu ya Uwezekano wa Taarifa." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Tafadhali ingiza kadirio sahihi katika sehemu ya Uwezekano wa Taarifa." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Sehemu ya dakika inaonekana kuwa na kadirio isiyo sahihi." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Sehemu ya dakika inahitajika." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Inaonekana kuwa sehemu ya viunganishi vya chanzo cha habari ina anwani isiyo sahihi." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Tafadhali hakikisha picha zinazopakiwa hazizidi 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Sehemu ya Kupakua Picha inaonekana kuwa na picha isiyo sahihi. Picha zinazokubalika ni za .JPG, .PNG and .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Sehemu ya Kupakua Picha inaonekana kuwa na faili isiyo sahihi." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Tafadhali ingiza kadirio iliyo sahihi kwa Kuaminika kwa Chanzo." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Tafadhali ingiza kadirio iliyo sahihi kwa Kuaminika kwa Chanzo." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Ni sharti sehemu ya \"Kichwa cha Ripoti\"iwe ya urefu wa angalau herufi 3 na isizidi herufi 200." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Sehemu ya \"Kichwa cha Ripoti\" inahitajika." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Kuna uwezekano wa mathara ya CSRF. Una uhakika unataka kuunda/kuhariri ripoti?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Dhibitisha Ripoti Hii" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Dhibitisha Ripoti Hii" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Inaonekana kuwa sehemu ya viunganishi vya video ina anwani isiyo sahihi." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Sehemu ya latitudi inaonekana kuwa na latitudi isiyo sahihi." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Sehemu ya latitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Sehemu ya kieneno ina kadirio isiyo sahihi. " + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Ripoti hii tayari ina tafsiri ya lugha hii." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Sehemu ya kieneo ina kadirio isiyo sahihi. " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Ripoti ya Asilia na Tafsiri zina kieneo sawa (lugha)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Sehemu ya kieneo inahitajika." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Ni sharti sehemu ya \"Jina la eneo\" iwe ya urefu wa angalau herufi 3 na isizidi herufi 200." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Sehemu ya \"Jina la Eneo\" inahitajika." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Sehemu ya longitudi inaonekana kuwa na longitudi isiyo sahihi." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Sehemu ya longitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyo sahihi." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Ni sharti sehemu ya barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Ni sharti sehemu ya jina la kwanza iwe ya urefu wa angalau herufi 3 na isizidi herufi 100." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Ni sharti sehemu ya jina la mwisho iwe ya urefu wa angalau herufi 2 na isizidi herufi 100." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Sehemu ya HADI ya tarehe inaonekana kuwa na tarehe isiyo sahihi." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Tafadhali ingiza tarehe sahihi katika sehemu ya HADI. Tarehe hii haiwezi kuzidi tarehe ya leo." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Tarehe yako ya KUTOKA haiwezi kuzidi tarehe ya HADI." diff --git a/application/i18n/po/po-sw_KE/reporters.po b/application/i18n/po/po-sw_KE/reporters.po new file mode 100644 index 0000000000..6a3c502040 --- /dev/null +++ b/application/i18n/po/po-sw_KE/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Sehemu ya latitudi inaonekana kuwa na latitudi isiyo sahihi." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Sehemu ya latitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Ngazi ya Ripota inaonekana kuwa na Ngazi isiyo sahihi." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Ngazi ya Ripota inaonekana kuwa na Ngazi isiyo sahihi." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Ni sharti sehemu ya eneo la majina iwe ya urefu wa angalau herufi 3 na isizidi herufi 200." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Sehemu ya eneo la jina inahitajika." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Sehemu ya longitudi inaonekana kuwa na longitudi isiyo sahihi." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Sehemu ya longitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Ripota Asiyekubalika" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Ripota Asiyekubalika" diff --git a/application/i18n/po/po-sw_KE/reports.po b/application/i18n/po/po-sw_KE/reports.po new file mode 100644 index 0000000000..20072cf5d2 --- /dev/null +++ b/application/i18n/po/po-sw_KE/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Tafadhali thibitisha kuwa umeweka alama kwenye kipengele" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Tafadhali thibitisha kuwa umeweka alama kwenye kipengele" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Ni sharti ripoti ziakifishwe kabla ya kuidhinishwa" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Hauna ruhusa ya kufanya kitendo hiki" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Ni sharti uchague faili ya kupakia" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Ni sharti faili ya kupakia iwe ya muundo wa .csv au .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Sehemu ya kupakia faili inaonekana kuwa na faili isiyo sahihi." diff --git a/application/i18n/po/po-sw_KE/roles.po b/application/i18n/po/po-sw_KE/roles.po new file mode 100644 index 0000000000..325b226f6f --- /dev/null +++ b/application/i18n/po/po-sw_KE/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Ni sharti sehemu ya Maelezo iwe na urefu wa angalau herufi 3 na isizidi herufi 100." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Sehemu ya Maelezo inahitajika." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Sehemu ya Jina ni shart iwe na herufi na nambari pekee." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Ni sharti sehemu ya Jina iwe ya urefu wa angalau herufi 2 na isizidi herufi 30." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Jukumu la Msimamizi Mkuu Haliwezi Kubadilishwa." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Sehemu ya Jina inahitajika." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Sehemu ya Ngazi ya Kufikika inafaa kuwa nambari iliyo kati ya 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Sehemu ya Ngazi ya Kufikika inafaa kuwa nambari iliyo kati ya 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Sehemu ya Idhini inafaa kuwa nambari iliyo kati ya 0 - 100." diff --git a/application/i18n/po/po-sw_KE/settings.po b/application/i18n/po/po-sw_KE/settings.po new file mode 100644 index 0000000000..fc0db97e3a --- /dev/null +++ b/application/i18n/po/po-sw_KE/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Stephen Wathika Wanjau , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Sehemu ya ruhusu fikira inaonekana si sahihi" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Sehemu ya ruhusu fikira inahitajika." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Sehemu ya ruhusu tawanyiko inaonekana si sahihi" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Sehemu ya ruhusu tawanyiko inahitajika." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "The allow alerts field does not appear to contain a valid value." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "The allow alerts field is required." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Sehemu ya ruhusu ripoti inaonekana si sahihi" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Sehemu ya ruhusu ripoti inahitajika." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Sehemu ya gawanya takwimu inaonekana si sahihi" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Sehemu ya gawanya takwimu inahitajika." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default number of records to be fetched per API request" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum number of records to be fetched per API request" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum number of API requests per IP address" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Sehemu ya Akismet inaonekana si sahihi" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Sehemu ya Akismet inaonekana si sahihi" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Tafadhali hakikisha kuwa ukubwa wa \"Banner Image\" ni mdogo kuliko 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "The cache pages field is required." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "The cache pages field does not appear to contain a valid value." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "The cache pages lifetime field does not appear to contain a valid value." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "The cache pages lifetime field is required." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs (without \"index.php\" in the URL)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Enable Clean URLs" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Sehemu ya nambari ya Clickatell API haiezi pitisha herufi 20." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Sehemu ya nambari ya Clickatell API inahitajika." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Sehemu ya nywila ya Clickatell lazma iwe baina ya herufi 5 na 50." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Sehemu ya nywila ya Clickatell inahitajika." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Sehemu ya nambari ya jina la mtumizi wa Clickatell API haiezi pitisha herufi 20." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Sehemu ya nambari ya jina la mtumizi wa Clickatell API inahitajika." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Sanidi Ramani" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Default Location" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Sehemu ya rangi inaonekana si sahihi" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Sehemu ya rangi lazima iwe na herufi 6." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Sehemu ya rangi inahitajika." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Mandhari ya Ramani ya Awali" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Zoom ya Ramani ya Awali" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Pata miji kutokana na Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Port ya Mail Server ni ndefu sana" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Sehemu ya port ya Mail Server lazima iwe nambari." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Sehemu ya nywila ya Mail Server lazma iwe baina ya herufi 5 an 50." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Sehemu ya nywila ya Mail Server inahitajika." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Port ya Mail Server ni ndefu sana" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Sehemu ya port ya Mail Server lazima iwe nambari." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Port ya Mail Server ni ndefu sana" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Sehemu ya aina ya Mail Server inahitajika." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Sehemu ya jina la mtumizi wa Mail Server haiezi pitisha herufi 50." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Sehemu ya jina la mtumizi wa Mail Server inahitajika." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Facebook Setup Options" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "To get the information below you will need to create a new Facebook application at" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Sehemu ya Google Analytics lazma iwe na Web Property ID sahihi kwa fomati ya UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Enable HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "This option makes Ushahidi be accessed in unsecure mode; without \"https://\" in the URL prefix" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "This option makes Ushahidi be accessed in secure mode; with https in the URL prefix" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Sehemu ya vipengele kwa kurasa (Uso wa tovuti) inaonekana si sahihi" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Sehemu ya vipengele kwa kurasa (Uso wa tovuti) inahitajika." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Sehemu ya vipengele kwa kurasa (Meneja) inaonekana si sahihi" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Sehemu ya vipengele kwa kurasa (Meneja) inahitajika." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Kueka map provider ni jambo rahisi. Chagua provider, Pata API key Kutoka kwa tovuti ya provider, ubandike API key hapa" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Kipimo cha zoom" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Chagua Map Provider" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Andika API Key mpya" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Pata API Key" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Kueka map provider ni jambo rahisi. Chagua provider, Pata API key Kutoka kwa tovuti ya provider, ubandike API key hapa" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Map provider" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Map Timeline" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Vipimo vya Ramani" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Je hii Ushahidi inatumika kwenye nchi nyingi" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Tafadhali chagua nchi ya awali" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Bonyeza uburute ramani kwa eneo unayoitaka" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Kushanya repoti kwa ramani" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Ruhusu watumizi kutunga fikira zao kwa kila ripoti" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Weka tawanyiko la habari za RSS kwa tovuti" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Allow Users To Subscribe For Alerts" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Ruhusu watumizi kutunga ripoti" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Key ya Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Site Banner" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Blocks Per Row" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Cache Pages" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Cache Pages Lifetime" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Enable Checkins" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Site Copyright Statement" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Rangi ya asili kwa jamii zote" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Default Icon For All Categories" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Delete Banner Image" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Delete Default Icon" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Onyesha kurasa ya mawasiliano" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Onyesha kurasa ya \"Ushaidizi\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Anwani ya barua pepe ya kutanabahisha" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Ili kupata repoti na barua pepe, tafadhali sanidi vipimo vyako vya anwani yako ya barua pepe." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Anwani ya barua pepe ya tovuti" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Vipengele kwa kila kurasa - Uso wa tovuti" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Vipengele kwa kila kurasa - Meneja" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Zuia spam kwa fikira kutumia Akismet kutoka Automattic.
Unaeza pata API key ya bure kwa kujisajilisha kwa akaunti ya mtumizi ya WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Sifa za Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Tovuti ya Laconica " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Lugha ya tovuti" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Manually Approve Users" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Site Message" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Jina la tovuti" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Private Deployment" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Require User Email Confirmation" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Submit Report Message" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Shriki na takwimu za API na wengine" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Tagline ya tovuti" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Timezone" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Vipimo vya tovuti" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Sifa za Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Tofautisha na comma " + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Anwani ya barua pepe ya tovuti inaonekana si sahihi" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Anwani ya barua pepe ya tovuti lazma liwe baina ya herufi 4 na 100." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Jina la tovuti lazma liwe baina ya herufi 3 na 50." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Jina la tovuti linahitajika." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Jina la tagline lazma liwe baina ya herufi 3 na 100." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Jina la tagline linahitajika." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Namba yako ya Clickatell API" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Pesa zilizobaki za Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Engeza Credit ya Clickatell" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Nywila yako ya Clickatell" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Jiunganishe na Clickatells kwa kubonya hapa" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Ingiza maarifa ya kuungana na Clickatell kwa sehemu inayofuata" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Jina la mtumizi wa akaunti yako ya Clickatell" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Pakua na usakinishe FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Andika namba za simu za Frontline SMS kwa sehemu inayofuata" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Andika namba za simu + au mapengo kwa sehemu ifuatayo" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Chaguo la 1: Tumia Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Chaguo la 2: Tumia SMS Gateway ya kimataifa" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Vipimo vya SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Sehemu ya number ya simu ya kwanza inaonekana si sahihi" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Sehemu ya number ya simu ya kwanza lazma iwe na nambari." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Sehemu ya number ya simu ya pili inaonekana si sahihi" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Sehemu ya number ya simu ya pili lazma iwe na nambari." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Sehemu ya number ya simu ya tatu inaonekana si sahihi" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Sehemu ya number ya simu ya tatu lazma iwe na nambari." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Chaguo za Usanidi wa Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-sw_KE/sharing.po b/application/i18n/po/po-sw_KE/sharing.po new file mode 100644 index 0000000000..bd38f3d59f --- /dev/null +++ b/application/i18n/po/po-sw_KE/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Tarehe ya kuingilia" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Tarehe ya Kuongezwa" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Wakati wa Mwisho wa Kufikiwa" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Ni sharti sehemu ya rangi iwe ya urefu wa herufi 6." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Sehemu ya rangi inahitajika." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Inaonekana kuwa jina la Kugawiza si sahihi" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Jina la Kugawiza linahitajika" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Anwani hii ya tovuti tayari ipo" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Inaonekana kuwa anwani hii ya tovuti si sahihi" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Anwani ya tovuti inahitajika." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Inaonekana kuwa sehemu ya anwani ya tovuti ina anwani isiyo sahihi." diff --git a/application/i18n/po/po-sw_KE/stats.po b/application/i18n/po/po-sw_KE/stats.po new file mode 100644 index 0000000000..4a3f3d983d --- /dev/null +++ b/application/i18n/po/po-sw_KE/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Imeidhinishwa" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Vikundi" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Matokeo ya Kikundi" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Chati hii inakuonyesha ripoti kwa njia ya mstari kwa kikundi kwa muda. Buruta kutoka kushoto hadi kulia ili kuona mtazamo linganishi wa vikundi mbali mbali. Kwa maelezo zaidi, peleka kipanya kwenye grafu." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Chagua anuwai ya tarehe" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Nchi" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Nchi" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Habari za Kina Kuhusu Nchi" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Hii ni sehemu ya takwimu na itakua na maelezo ya ujumla hivi karibuni. Kwa sasa vinjari kwa kutumia viunganishi vya vijikundi vilivyo hapo juu." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Hitilafu" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Faharasa" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Muhtasari wa Idadi za Kusomwa" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Kifunguo" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Idadi ya Mitazamo ya Ukurasa" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Jumla ya kurasa ambazo wageni wako wametazama katika tovuti yako" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Ripoti" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Vikundi vya Ripoti" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Takwimu za Ripoti" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Hali ya Ripoti" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Panjikadi ya Ripoti" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Takwimu za Ripoti" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Takwimu Hazijawekwa" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "Mwezi 1" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "Miezi 3" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "Miezi 6" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Zote" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Haijaidhinishwa" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Wageni Maalum" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Idadi ya watu wanaokuja katika kifurushi chako. Wageni maalum hujulikana kwa kutumia kuki. Wageni wasio na kuki zilizowezeshwa watajulikana kwa kutumia nadharia rahisi kwa kuangalia anwani ya IP, mchanganuo, kivinjari, vizibo, Mfumo Endeshaji, na kadhalika." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Haijathabitishwa" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Imethibitishwa" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Muhtasari kuhusu Wageni" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Idadi ya Ziara" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Ziara ni rekodi ya wageni maalum wanaokuja kwenye tovuti kwa muda wa dakika 30 zaidi baada ya mara yake ya mwisho kuangalia kurasa." diff --git a/application/i18n/po/po-sw_KE/tooltips.po b/application/i18n/po/po-sw_KE/tooltips.po new file mode 100644 index 0000000000..9cf03d5368 --- /dev/null +++ b/application/i18n/po/po-sw_KE/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Hii huongeza ripoti kwa vikundi vya ziada. Ukichagua Kikundi cha 1 hapa na ripoti tayari imeambatisha Kikundi cha 2, hivyo basi ripoti itakuwa na Kikundi cha 1 na cha Kikundi 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Huidhinisha ripoti au la. Ikiwa itaidhinishwa, itaonekana na umma." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Utaweza kumpa beji mtumiaji anayechocheza. Chagua beji na itakayowekwa hapa." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Hii ni safu ya saa na/au dakika kati ya nyakati mbili katika mfumo wa 24 wa saa. Ukiingiza wakati wa awali katika sehemu ya sekunde, itabadilishwa na ya kwanza. Ni sharti nyakati hizi ziwe katika siku moja. Wakati huu pia hutazamwa dhidi ya muda uliosanidi kwenye tovuti kulingana na vipimio na not sharti majira ya saa ya mtumiaji yalingane na kifurushi chako. Acha sehemu hii ikiwa 00:00 hadi 00:00 ili kupuuza kipimio hiki." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Ikiwa unataka kuwezesha kichochezi pekee wakati kikundi fulani kinatumika, unaweza kuweka vipimio hapa. Kipimio hiki kitaruhusu kichochezi kuwezeshwa ikiwa mojapo ya vikundi kinatumika. Kwa mfano, ukichagua Kikundi cha 1 na Kikundi cha 2 hapa na ripoti kuwasilishwa kwa kutumia Kikundi cha 2 na Kikundi cha 3, kipimio hiki kitafaulu." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Ikiwa hatua hizi zitatokea katika siku fulani ya wiki, weka vipimio hivyo hapa. Kumbuka kuwa siku hutegemea majira ya saa kama ilivyosanidiwa katika kifurushi chako. Shikilia kutufe cha shift, command, au control ili kuchagua siku kadhaa." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Muundo wa barua pepe itakayotumwa." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Mada ya barua pepe itakayotumwa." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Mtawanyiko unaweza kuwa mitawanyiko yote au mtawanyiko maalum. Ikiwa ungetaka vilisho maalum pekee kuwezesha kichochezi, utahitaji kuchagua hapa. La sivyo, utahitaji kuacha hii kama \"zote\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Jina la mtumiaji kwa Twitter (au majina ya watumiaji mbalimbali yaliyotenganishwa kwa kutumia koma). Iwapo ungependa kuwezesha vichochezi kwa ujumbe ya twitter pekee kutoka mtumiaji fulani, andika jina la mtumiaji huyo hapa (bila kuweka @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Unaweza kuchagua kuacha sehemu hii wazi iwapo hutaki kulinganisha dhidi ya maneno makuu. Kama utaongeza maneno hapa, unahitajika kuyatenganisha kwa kutumia koma (,). Kwa mfano, iwapo unataka kuwezesha kichochezi wakati mtu ametaja \"upendo\" au \"amani\" katika ujumbe wao, utahitaji kuongeza \"upendo, amani\" katika jedwali la maneno makuu." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Unaweza kuchagua mahali popote au eneo maalum. ukichagua mahali maalum, utaulizwa kuchora kisanduku kuzunguka eneo lililoidhiniswa. Kwa mfano, iwapo unataka kichochezi hiki kiwezeshwe wakati mtu amewasilisha ripoti nchini Brazil, utachagua \"eneo maalum\" kisha uchore kisanduku kuzunguka Brazil. Unaweza kufanya visanduku hivi viwe vya ukubwa vile utakavyopenda. Unaweza pia kuchora visanduku vingi." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Kidhibitishi hiki kitawezesha kichochezi katika idadi ya N aidha kwa msingi mzima wa watumiaji au kwa kila mtumiaji. Acha eneo hili tupu ili kupuuza." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Hiki ndicho kichwa difoti cha kuongeza katika ripoti." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Ikiwa vidhibitishi vyote hapo juu vitaidhiniswa , kichochezi kitaanzisha mwitikio. Hatua hii inaweza kuwa kuidhinisha ripoti au kumtumia barua pepe mtumiaji. Chagua mwitikio hapa ili kuwezesha chaguo za ziada kwa majibu maalum." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "Ukichagua \"Kuchochea Mtumiaji\", barua pepe itatumwa kwa mtumiaji aliyetekeleza kitendo hiki. ukiuchagua kitufe cha redio karibu na sanduku ingizi, utaweza kuandika anwani ya barua pepe iliyofanyiwa mabadiliko. Hii ni muhimu iwapo unaunda vichochezi ili kuwaarifu watu wakati sehemu fulani za ramani zinaona ripoti, habari za eneo au shughuli nyingine." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Unaweza kuchagua siku kadhaa hapa. Tarehe zinategemea majira ya wakati katika vipimio vya eneo lako. Ili kurejea katika tarehe zote za difoti, usichague tarehe zozote." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Kichocheo ni kipengele cha msingi unapounda Vichochezi vyako vya Utendaji. Hii itakusaidia kubaini kama ungependa jambo fulani kutendeka mtu anawasilisha ripoti, anapoleta habari za eneo, na kadhalika. Utaweza kuchuja miitikio ya hatua hizi baada ya kuchagua mojawapo." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Mtumiaji anaweza kuwa mtu yeyote au mtumiaji maalum. Ikiwa ungetaka watumiaji maalum kuwezesha kichochezi, utahitaji kuchagua hapa. La sivyo, utahitaji kuacha sehemu hii kama \"yeyote\" kwa sababu vichochezi vingi vimepangiwa kutumika kwa watumiaji wote wanaowasiliana katika mfumo huu." + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Huweka alama kwenye ripoti kamailiyodhibitishwa au la." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Kurasa za wasifu katika tovuti hii hutumia Gravatar. Unapobonyeza kwenye picha yako, utaiingizwa kwenye tovuti ya Gravatar ambapo unaweza kubadilisha picha yako ya wasifu." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Tenganisha kila kadiri kwa koma, kwa mfano kadiri ya 1, kadiri ya 2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Tenganisha kila kadiri kwa koma, kwa mfano kadiri ya 1, kadiri ya 2. Ikiwa unataka kadiri ya difoti, malizia orodha yako ya chaguo na :: Kwa mfano, iwapo unataka kufanya kadiri ya 3 iwe ya difoti, itakuwa kadiri ya 1, kadiri ya 2, kadiri ya 3:: kadiri ya 3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Tenganisha kila kipengele kwa kutumia koma, kwa mfano kipengele cha 1, kipengele cha 2 na kadhalika." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Anza kuorodhesha washiriki." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Mada ya ujumbe wa kibinafsi" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Ujumbe wa kibinafsi" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Unaweza kuchagua rangi ambayo itaonekana na umma katika picha yako ya wasifu . Rangi hii pia itakuwa kitone kitakachoonekana kwenye ramani kuashiria viingizi vyako." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Anwani yako ya barua pepe" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Hii ni mojawapo ya njia ambazo unatambuliwa kwenye tovuti. Kumbuka kwamba hii inaonekena kwa umma!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Ikiwa itaundika, hii itakuwa nenosiri yako mpya. Acha eneo hili tupu iwapo unataka nenosiri yako ya sasa isalie." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Hii inahitaji unapounda jina la mtumiaji mpya na itakuwa nenosiri ya mtumiaji. Unapaswa kumwarifu mtumiaji wako mpya kubadilisha nenosiri yake baada ya kuingia katika tovuti hii kwa mara ya kwanza." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Kuchagua NDIO kutakuwezesha kupata arifa kupitia barua pepe iwapo ripoti mpya au maoni mapya yamewekwa kwenye tovuti yako." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Nenosiri yako ya sasa. Unahitajika kuingiza nenosiri yako ili kuzuia mabadiliko yoyote yasiyoidhinishwa kwenye akaunti yako." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Wasifu wako inaweza kuonekana na mtu yeyote katika mtandao ikiwa utaidhinisha chaguo hili. Hii pia ni njia rahisi ya kuonyesha ripoti ambayo umewasilisha, viingizi vyako, beji, na kadhalika, zote katika ukurasa mmoja." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Hii ndiyo anwani ambapo wasifu wako kwa umma unaweza kupatikana." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Jina lako la mtumizi haliwezi kubadilishwa." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Viwango vya Kufikika hutumiwa kuzuia ufikikaji, hivi kwamba watu watafikia data ya sehemu ya fomu ya ubinafsishaji. Viwango vya juu vya ufikikaji vinaweza kufikia sehemu za ufikikaji vya viwango vya chini zaidi. Msimamizi Mkuu ana kiwango cha ufikikaji cha juu zaidi (100). Data ya umma inaonekana katika kiwango cha ufikikaji cha chini zaidi(0). Washiriki wana kiwango cha ufikaji cha 10. Msimamizi ana kiwango cha 90 cha difoti." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Hii ndio anwani ya barua pepe ambayo itatumiwa kutuma arifa za barua pepe." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Wakubalie watumiaji wajisajili kupokea arifa kupitia mtandao." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Hatua hii inaruhusu ripoti sawa kufungwa katika kitone kimoja kwenye ramani" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Wakubalie watumiaji kutoa maoni kuhusu ripoti kwenye tovuti kuu." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Hatua hii itaruhusu mtawanyiko wa Habari za RSS kuonyeshwa kwenye tovuti kuu." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Wakubalie watumiaji kuwasilisha habari kupitia fomu ya mtandao." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Idadi difoti ya rekodi zitakazochukuliwa kwa kila ombi la API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Idadi kuu ya rekodi zitakazochukuliwa kwa kila ombi la API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Idadi kuu ya maombi ya API kwa kila anwani ya IP." + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Kiashirio cha tovuti huonekana juu, pembeni mwa tovuti yako ikiwa inaingiliana na mandhari unayotumia. Ukubwa wa kiashirio hiki uliopendekezwa hutegemea mandhari unayotumia. Kumbuka kwamba hii itabadilisha anwani ya tovuti na wito uko juu ya ukurasa." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Idadi ya safu wima zitakazoonyeshwa katika kila mstari." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Wezesha au uwezushe ukurasa kufichika. Hatua hii inafanya kurasa kuonekana kwa kasi kwa kupunguza muda wa mwitikio. Tupendekeza matumizi ya mbinu ya kuficha ukurasa katika tovuti yenye shughuli nyingi ** Kumbuka kuwa ripoti zitarundikwa katika sehemu ya mbele ya tovuti kulingana na orodha uliyounda chini yake (Muda wa kudumu kwa kurasa fiche)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Weka muda ambao kurasa fiche zitadumu." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Vipimio hivi huwezesha viingizi kwenye kifurushi chako. Hii aina ya ripoti iliyorahisishwa ambayo haibadilishwi kabla ya kupelekwa katika ukurasa mkuu hivyo inahitaji tovuti yako kusanidiwa kwa njia fulani. Unapowezesha vipimio hivi, hakikisha kuwa majira yako ya wakati yako kwenye mfumo wa UTC na madhari yako yanaingiliana na viingizi. Unapowezesha kipimio hiki, mandhari ya viingizi pekee yatatawezeshwa katika vipimio vyako vya mandhari au/viongezi." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Weka ramani ili ionyeshe eneo maalum." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Weka nenosiri moja ya rangi kwa vikundi vyote kwenye tovuti." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Weka ikoni moja kwa vikundi nyote kwenye tovuti." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Hii ndiyo nchi ambapo tovuti inafurushwa." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Washa au uzime Kichupo cha Mawasiliano kwenye tovuti kuu." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Washa au uzime Kichupo Usaidizi kwenye tovuti kuu." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Hii ndiyo idadi ya ripoti zinazoonyeswa kwa kila ukurasa kwenye tovuti kuu." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Hii ni idadi ya ripoti zinazoonyeswa kwa kila ukurasa kwenye Pembe ya Nyuma ya msimamizi." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Hiki ndicho kitovu cha arifa zinazoingia." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Hii huunganosha arifa zilizo kwenye kitovu na jukwaa la Ushahidi." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Nambari za simu ambazo zitatumika kupokea arifa." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Hufuatilia watu wanaozuru tovuti yako. Pata takwimu za kina za mgeni." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Huweka lugha itakayotumika kwenye tovuti." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Ukiweka chaguo hili kuwa ndio, ni sharti kuidhinisha kila mtumiaji atakayeunda akaunti kwenye tovuti yako kwa kumpatia majukumu (yaani Mshiriki, Msimamizi, Msimamizi Mkuu)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Hii inabaini ramani itakayotumika kwenye tovuti." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Hii inaonyesha mkondo wa wakati kulingana na tarehe na wakati ripoti iliwasilishwa." + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Ukiweka kadirio hili kuwa kweli au ndio, kifurushi chako kitafanywa siri hivi kwamba watumiaji wenye akaunti ulizochagua wataweza kukifikia kifurushi hiki." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Watumiaji watapata barua pepe yenye kiunganishi cha kuthibitisha ili kubonyeza kabla ya kuruhusiwa kuingia katika kifurushi iwapo sehemu hii itawekwa kuwa ndio. Iwapo utawezesha sehemu hii baada ya kifurushi chako kukubali watumiaji, wataongozwa kuthibitisha akaunti zao kabla ya kuruhusiwa kuendelea kuzitumia." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Hapa ndipo barua pepe huwekwa" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Hii ndiyo neno siri ya anwani ya barua pepe inayopokea ripoti." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Hii inahitajika ili kukubali miunganisho inayoingia kutoka mwa anwani ya barua pepe." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Hii inahitajika ili kuhakikisha miunganisho salama." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Hii inahitajika ili kurejesha barua pepe kutoka kwa seva kuu." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Hii ndiyo anwani ya barua pepe inayopokea ripoti." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Takwimu za idadi ya watu waliosoma arifa huhifadhiwa katika seva inayosimamiwa na Ushahidi. Kwa kuwezesha chaguo hili, unaweza kufikia takwimu hizi moja kwa moja katika paneli yako ya msimamizi. Kwa kuiwezusha, utakoma kukusanya takwimu hivyo hautaweza kurejesha takwimu za mkondo uliokusanywa wakati chaguo hili lilikuwa limezimwa." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Je, wengine wana haki ya kuchapisha upya ujumbe, picha, video na /au mandhari ambayo wewe na watumiaji wako mliunda? Nenda kwa https://creativecommons.org/choose/ iwapo una nia ya kubainisha kile wengine wanaweza kufanya katika kazi yako. Kumbuka kubaini vipengele vya tovuti yako unavyoidhinisha!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Hii ndiyo anwani ya barua pepe itakayopokea ripoti ya barua pepe na ujumbe wa simu kutoka kwa fomu ya mawasiliano." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Haya ndiyo maandishi yatakayotokea juu ya ramani katika ukurasa mkuu. Maandishi haya ni muhimu katika kuwapa wanaotembelea tovuti hii habari muhimu. Ili kuliondoa jedwali hili, futa ujumbe huu hapa." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Hili ndilo jina la tovuti linalotokea juu ya tovuti kuu." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Huu ndio ujumbe utakaotokea katika ukurasa wa kuwasilisha ripoti. Ujumbe huu ni muhimu kwa kanusho au maelezo zaidi kwa wageni wako wanaowasilisha ripoti." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Kwa maneno machache, eleza malengo ya tovuti hii." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Haya ndiyo majira ya wakati ambayo tovuti yako itakuwa ikitumia. Majira haya huathiri hatua zozote ulizoweka zinazotumia saa na tarehe, na pia wakati uliopo wa difoti wa ripoti katika sehemu ya mbele na ya nyuma ya tovuti." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Weka tagi ya heshi ya Twitter itakayotumiwa katika arifa." + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-sw_KE/ui_admin.po b/application/i18n/po/po-sw_KE/ui_admin.po new file mode 100644 index 0000000000..f75d16d176 --- /dev/null +++ b/application/i18n/po/po-sw_KE/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Stephen Wathika Wanjau , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-11-02 08:07+0000\n" +"Last-Translator: Stephen Wathika Wanjau \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Haukubaliwi Kuingia. Aidha hati zako si sahihi au ombi lako limekataliwa" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Haukubaliwi Kuingia. Ombi lako limefahamika, lakini limekataliwa kwa sababu ya masharti kama wakati. Jaribu tena baadaye." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Ngazi ya Kufikika" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Hatua" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Ongeza katika Kikundi" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "imeongezwa" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "imeongezwa/imehaririwa" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Nyongeza" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Msimamizi" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Arifa " + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Arifa Zimepokelewa" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Zote" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "ASUBUHI" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Bila jina" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Mtu Yeyote" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Popote" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Imeharamishwa" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Rekodi za API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Vipimio vya API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "TOHARAMISHA" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "TOHARAMISHA ZOTE" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "imeidhinishwa" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Idhinisha Kiatomatiki" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Idhinisha Mwenyewe" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "imehifadhiwa kinyaraka" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Una uhakika unataka ku" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Una uhakika unataka kufuta kipengele hiki?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Una uhakika unataka kufuta picha hii?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Una uhakika unataka kubadili fomu?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Peana " + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Mazoezi" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Peana Beji" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Mwandishi" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Barua ya pepe ya Mwanidishi" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Nyuma" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Haramisha IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Katikati ya Nyakati" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Vitalu" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Maudhui" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Ghairi" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Vikundi" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Kosa katika kuonyesha chati" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Tafadhali hakikisha kuwa ujumbe wako ni sahihi" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Tafadhali hakikisha kuwa nambari ni sahihi" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Tafadhali angalia vipimio vya SMS!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Maelezo ya Viingilio" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Viingilio" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Miji imepakiwa" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kificho" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Toleo la kificho halijasanidiwa" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Rangi" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Maoni" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Kificho chako cha kuthibitisha arifa ni: " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr " Mtumiaji Ame" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Hesabu" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Nchi haikupatikana" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "Imeunda/Imehaririwa" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Unda Ripoti" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Uboreshaji Muhimu" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Imewezeshwa kwa sasa" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Imewezuliwa kwa sasa" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Hauna kibali cha kutosha kuhariri sehemu zifuatazo za kubinafsisha." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Kila siku" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Deshibodi" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "databesi" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Tarehe & Wakati" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Tarehe ya Kuongezwa" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Tarehe ya Kubadilishwa" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Siku za Wiki" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Toleo la DB halijasanidiwa" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "zimefutwa" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Futa" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Futa ripoti zote" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Futa Beji" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Onyesho" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Maelezo" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Imewezuliwa" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Mwanzo wa Kigawanyishi" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Mwisho wa Kigawanyishi" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div kikundi" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Pakua Ripoti" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Chaguo za Vishusho" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "IMEHARIRIWA" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Imehaririwa Na" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Hariri" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Hariri Jedwali" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Barua pepe" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Mkusanyiko Mzima" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Hitilafu katika geocoding! Hitilafu la HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Maktaba ya IMAP PHP hayajabandikwa" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Hati tambulishi sio sahihi" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Hitilafu" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Hitilafu, hatukuweza kuchapisha katika Tukio" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Kwa Kila Saa 6" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Kwa Kila Saa 12" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Majaribio" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Maswali yanayoulizwa Mara Nyingi" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "tawanyiko" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Majibu" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "tawanyiko" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Orodha ya Chaguo" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Kikadirio Difoti" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Aina ya Data" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Ashirio" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "ya Nambari" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Ujumbe Usiolipiwa" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Urefu (kwa mistari)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Sehemu Fiche" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Urefu Mkuu wa Herufi" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Jina la Sehemu" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Togoa" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "La" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Ndio, imefungwa kidifoti" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Ndio, Fungua kidifoti" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Haikupata faili iliyopakiwa" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Haikuweza kufungua faili ili kuisoma" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Fomu Hiyo Haipatikani!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Jukwaa" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Sehemu ya Eneo la Ujumbe (Ujumbe Usiolipiwa)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Sehemu ya Tarehe" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Sehemu ya Vitufe vya Redio" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Sehemu ya Sandukutiki" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Sehemu ya Kushushia" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Kutoka" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Kutoka" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Hitilafu ya Hatima ya Geonames" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Pata usaidizi" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Pata mandhari zaidi" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Pata vizibo zaidi" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Hatua" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Ongeza/Hariri" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Barua pepe" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Dhibiti Watumiaji" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Jukumu" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Mtumiaji" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "usaidizi" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Kila saa" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Twanyiko la tukio kwa" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Folda ya kibandikizi ingalipo. Futa folda hii ya kibandikizi" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Mtajo" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Mitajo" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Maelezo ya Mtajo" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Kigezo Kisicho Sahihi" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Anwani ya IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Hii ni Sehemu ya Tarehe?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Ni Nani Anayeweza Kutazama Majibu" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Ni Nani Anayeweza Kuwasilisha Majibu" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Neno la kina" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Maneno ya kina" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Anwani ya barua pepe:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Majina kwa Kamili:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Nenosiri:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Jukumu:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Jina la mtumiaji" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Safu" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Msimamizi" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "aga" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Jedwali" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Dhibiti" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Dhibiti Majukumu & Idhini" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Tazama Watumiaji" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Ongeza/Hariri Watumiaji" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Dhibiti Orodha yako ya Umma" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Ashiria kama" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "ashiria kama si spamu" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "ashiria kama spamu" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "haikulingana na hati zozote" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Ujumbe" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Ujumbe" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Ujumbe wa Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Ujumbe wa Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Ujumbe wako umetumwa!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Dakika" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Dakika" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Kigezo Kisichopatikana" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Msimamizi" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "imebadilishwa" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Badilisha Vipimio vya Majira ya Saa" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "songa chini" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "songa juu" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Mitajo Mingi Iliyoshikiliwa" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Arifa Yangu" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Viingilio vyangu" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Wasifu Wangu" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Ripoti Zangu" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Kura Zilizopigwa" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Chanya " + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Hasi" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Jina" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Unda Arifa Mpya" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Unda Ujumbe Mpya" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Nenosiri Mpya" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "La" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Hiki ni kikundi maalum ambacho hakitaonekana katika fomu ya kuwasilisha ripoti kwa watumiaji wanaowasilisha ripoti. Kikundi hutumika kushikilia ripoti zilizoachwa bila ripoti kufuatia kufutwa kwa kikundi." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Arifa" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Hii haizingatii Ukubwa wa herufi" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Haikupatikana" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Hakuna data. Hakuna matokeo ya kuonyeshwa" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Hakuna hitilafu" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Hakuna matokeo ya kuonyeshwa!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "ya" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Kwa Idadi Maalum" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "ya Kitambulisho Wazi" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "ukurasa" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "kurasa" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Ukurasa haukupatikana" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Samahani, ukurasa unaojaribu kutazama hauko hapa.

Je, ulifuata kiunganishi kutoka mahali pengine katika tovuti yetu?
Iwapo ulifika katika ukurasa huu kutoka mahali pengine katika tovuti yetu, tafadhali tujulishe ili tujikosoe.

Je, ulifuata kiunganishi kutoka katika tovuti nyingine?
Viunganishi kutoka tovuti nyingine vinaweza kupitwa na wakati au kuandikwa kimakosa. Tuarifu ulipotoka ili tujaribu kuwasiliana na tovuti hiyo nyingine ili turekebishe makosa.

Uliandika anwani mwenyewe?
Inawezekana uliiandika vibaya. Thibitisha kuwa umeiandika sahihi kabisa.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Samahani, ukurasa unaojaribu kutazama haupo hapa." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Vigezo vilivyotumika" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Nenosiri" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Weka Nenosiri tena" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Mpendwa " + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Tumepokea ombi la kuweka tena nenosiri ya " + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Ili kubadilisha nenosiri yako, tafadhali bonyeza kiunganishi hiki (au uinakili na kuiweka kwenye kivinjari chako)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Kama ulivyoomba, nenosiri yako sasa imewekwa tena. Maelezo yako ni kama ifuatavyo." + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Nenosiri ya Ushahidi imewekwa tena" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Simu" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Tafadhali Chagua" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "JIONI" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Data haikutumwa kwa njia ya posta" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Hakikisho" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Ujumbe" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Ujumbe wa kibinafsi" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Ujumbe wa Kibinafsi Umetumwa" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Mada" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Kwa" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Orodha ya Umma" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Vipitishaji" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "soma" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Umuhimu" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Kichwa cha ripoti" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Tarehe ya Ripoti" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Ripota" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Ngazi za Ripota" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Ripoti" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Alama za Sifa" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Inahitajika" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Weka tena" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Mwitikio" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Matokeo" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Kataa" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Barua pepe hii tayari ina akaunti inayosimamiwa na CrowdmapID. Mtumiaji atahitaji kutumia nenosiri ya Crowdmap aliyonayo ili kuingia." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Hifadhi Vipimio" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Tafuta" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Tafuta Ripoti" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "inatafuta" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Ufunguo fiche ungali umewekwa katika kikadirio difoti. Hatua hii si salama hivyo sharti ibadilishwe." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Tovuti hii inaendesha kupitia HTTP. Hii inafaa kuwekwa hadi HTTPS kwa sababu za kiusalama." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr " Maelekezo yanapatikana katika Wiki: " + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Chagua miundo unayopendelea ya kupakua ripoti " + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Chagua Aina ya Sehemu ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Tafadhali chagua kipengele" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Ni sharti uchague Kichochezi kabla ya kuchagua Mwitikio" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Ni sharti uchague Kichochezi kabla ya kubaini Vipitishaji" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Mtumaji" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Imetumwa Kwa" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Huu ujumbe umetumwa kutoka kwa tovuti yako saa " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Wakati wa Seva" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Vipimio" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Inaonyesha ukurasa" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Inaonyesha matokeo" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "imeonyeshwa" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Kikundi Maalum" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Hiki ni kikundi maalum ambacho hakitaonekana katika fomu ya kuwasilisha ripoti kwa watumiaji wanaowasilisha ripoti. Kikundi hiki hutumika pamoja na kipengele cha \"Ripota Walioaminika\"" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Eneo Maalum" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Jimbo" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Takwimu" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Takwimu" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Takwimu Hazikufaulu Kukusanywa. Tafadhali jaribu baadaye." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Takwimu Hazikufaulu Kukusanywa." + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Siku Maalum" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Mada" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Msimamizi Mkuu" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Kazi imefanywa" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Sehemu Ujumbe" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Jina" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Dhibiti Watumiaji" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Hitilafu ya Hatima" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "kwa" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Jumla ya Rekodi" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "kwa" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Tafsiri Ripoti" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Chocheza" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Chocheza Mtumiaji" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Chocheza" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "haijaidhinishwa" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Haijulikani" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Hitilafu Isiyojulikana" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "haijasomwa" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Hutotapokea arifa tena kutoka" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " Bonyeza hapa kuboresha Ushahidi sasa" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Boresha Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Boresha Hali ya Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Pakia Ripoti" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Mtumiaji" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Watumiaji" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi " + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Imedhibitishwa/Haijathibitishwa" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Thibitisha/Tithibitisha" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Toleo" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " iko tayari kuboresha." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Video " + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Ujumbe wa kibinafsi" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Tazama Tovuti" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Tazama ripoti" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Karibu, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Ndio" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Tafuta" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Kubofya kitufe hapa chini kutafuta ripoti ZOTE kwa hifadhidata.Unafaa kutumia kitufe hicho kwa makini kwa maana operesheni hii haiwezi kutenguliwa." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Tunapendekeza uhifadhi hifadhidata yako mahala pengine kable ya kuendelea." + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Nina uhakika nataka kufuta ripoti z(y)ote %s kutoka kwa hifadhidata." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Una uhakika unataka kufuta ripoti zote?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Hakuna ripoti za kufutwa." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Akaunti iliyodhibitishwa?" diff --git a/application/i18n/po/po-sw_KE/ui_main.po b/application/i18n/po/po-sw_KE/ui_main.po new file mode 100644 index 0000000000..173cf02469 --- /dev/null +++ b/application/i18n/po/po-sw_KE/ui_main.po @@ -0,0 +1,3169 @@ +# +# Translators: +# Stephen Wathika Wanjau , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Kuhusu " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Utumizi" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Kikomo cha utumizi" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Jina la akaunti" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Viendo" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Tendo hili haliezi kujitengua. Uko na hakika unataka kuendelea?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Activate" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Imewezeshwa" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Engeza" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Imeengezwa na" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Additional Data" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Ripoti ziada" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Engeza/Badili" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Engeza Uga" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Engeza Lugha" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Engeza Mpta" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Engeza Jamii Mpya" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Engeza Tafsiri" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Usimamizi" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Pata Tanabahisho" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Nitanabahishe kama ripoti imejazwa, au ikiwa:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Hifadhi tanabahisho langu" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "anwani ya barua pepe:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "andika anwani ya barua pepe" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "andika namba ya rununu, pamoja na namba ya nchi yako" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Pata Tanabahisho" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Alert has been" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Simu ya rununu:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ama, eka alama kwa ramani ifuatayo, na tutakutanabahisha ripoti ikitungwa ndani ya kilomita 20." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "If you can't find your location, please click on the map to pinpoint the correct location." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Tawanyiko la RSS (andika anwani ifuatayo)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Chagua mji" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Hatua ya 1: Chagua mji au eneo:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Hatua ya 2: Nitanabahishe kupitia:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Step 3 (Optional): Select Categories" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Thibitisha utanabahisho uliopita" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Tanabahisho lako imehifadhiwa!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Zote" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Imekubalika" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Tagi zinazokubaliwa za HTML: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframe zinakubaliwa tu kutoka: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Jamii zote" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "All Time" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "na" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Pitisha" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Imepitishwa" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Ripoti zilizipitishwa" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Pitisha ripoti hii" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Takriban" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Archive" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Archived" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Ascending" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "kwa" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Mwandishi" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Auto Checkin" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Avg Reports Per Day" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Zinasubiri kupitishwa" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Zinasubiri kuthibitishwa" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Badge" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Badges" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Badge Image" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Or you can upload your own badge image instead." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Badge Pack" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Select a Badge" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blogu" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Browse Profiles" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Ghairi" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Jamii" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Jamii" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kuchujio cha jamii" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Hii jamii ime " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Jina la jamii" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Change Date Range" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Change Password" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Change My Picture" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Chagua" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Chagua pointi za data za kupakua" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Or choose your own date range" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Chagua aina ya uga" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Clean URLs" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Ondoa" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Clear Map" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Funga" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "mikusanyiko" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Rangi" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Comment" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Fikira" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Maelezo ya fikira" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Vipimo vyako vimehifadhiwa!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Sanidi" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "You have successfully confirmed your email address! Please login below." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Umefanikiwa kudhibitsisha anwani yako ya barua pepe! Mtawala ataidhinisha akaunti yako kabla uingie" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Email confirmation failed! You can request a new email confirmation below." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Wasilana na sisi" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Ishara ya usalama" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Your Email Address" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Ujumbe" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Your Message Has Been Sent!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Your Name" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Your Phone Number" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Send Message" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Message Subject" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Tengeneza" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Tengeneza/Badili" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Tengeneza mpya" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Create New Password" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Tengeneza ripoti" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Uaminifu" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Current Password" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Custom Fields" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Maarifa" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Tarehe" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Tarehe & Wakati" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "day" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Deactivate" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Futa" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Imefutwa" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Zimefutwa" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Kufuta haijawezeshwa" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Delete Last" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Futa ripoti hii" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Delete Selected" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Futa Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Sampuli" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Maelezo" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Descending" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Maelezo" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Ripoti moja kwa moja" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Wezua" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Guna" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Pakua ripoti" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Download" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Badili" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Badili uga za fomu" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Badili ripoti" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Barua pepe" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Anwani ya barua pepe" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Vipimo vya Mail Server" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Host ya Mail Server" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Nywila ya Mail Server" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Port ya Mail Server" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "SSL ya Mail Server" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Aina ya Mail Server" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Jina la mtumizi wa Mail Server" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "kwahivyo vipimo vyako vitahusishwa na anwani ya barua pepe hiyo" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Ili uweze kupata ripoti kwa barua pepe, tafadhali weka vipimo vya akaunti yako ya barua pepe kwa nafasi ifuatayo. Tafadhali kumbuka kuwa zitatumwa kwa" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Server zengine zinahitaji anwani ya barua pepe kamili" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Nywila ya akaunti ya barua pepe" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Port za kawaida: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Mifano: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Mifano: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Wezezesha au wezua SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---EMPTY---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "kwa" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Kosa!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Mfano" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "External Apps" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "External Video Link" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Tawanyiko" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Tujibishe" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Tawanyiko" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Tawanyiko" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Vipengele vya tawanyiko" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Jina la tawanyiko" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Anwani ya tawanyiko" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Uga isiyotumika" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Faili" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Your file is over the maximum allowed filesize." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Chujio" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filter Reports" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filter Reports By" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Filter reports that contain" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Tafuta" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Pata eneo" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Jina la kwanza" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Force Run Scheduler" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Umesahau nywila?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Fomu" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Fomu" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Elezo la fomu" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Badili Fomu" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Fomu" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Jina la fomu" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Kutoka" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Majina kwa kamili" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation Imewezeshwa" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Rangi" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Fikira" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Label" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Stroke Width" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Go" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "Imesha" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Usaidizi" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Hidden" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Hide" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "Ficha huu ujumbe" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Nyumbani" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Vipi kuripoti" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Used to identify you on the site to other users." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Picha" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Images" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Picha/Ikoni" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Inactive" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Inbox" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Tukio" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Tukio zilizo karibu" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Eneo la tukio" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Engeza" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Engeza Jamii" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Include Custom Fields" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Engeza maelezo" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Engeza tarifa zozote ziwezekanazo" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Engeza Latitudo" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Engeza maarifa ya eneo" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Engeza Longitudo" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Include Personal Information" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Media inayoingia" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Tathmini ya maarifa" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Andika sehemu yako sahihi" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Your account doesn't have the proper permission to fully log you in. Please contact the administrator." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Kwa kujibisha" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Anwani ya IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Is this your profile?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "kipengele" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "vipengele" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Maarifa ya vipengele" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Jina la kipengele" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Key" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Keywords" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Faili ya KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Pakia Faili ya KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "Anwani ya KML" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Lugha" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Mwisho" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Mwezi uliopita" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Jina la mwisho" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Mwaka uliopita" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Latitudo" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Leya" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Leya zenginezo" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Leya" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Jina la leya" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Anwani ya leya" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Leave a Comment" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Less Information" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Gredi" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Hii Gredi" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Jina la gredi" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Imekadirika" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Kiungo" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Orodha" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Loading Reports" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Eneo" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Eneo" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Mji, Daula na/au Nchi" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Ingia" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Account created successfully. You may log in now." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "A confirmation has been sent to your email address." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Akaunti imeundwa. Akaunti yako lazima iidhinishwe na mtawala kabla uweze kuingia." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Email address doesn't exist. Try a different address or create an account." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Please click your account provider" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Login with" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email and Password" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Sign Up" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Create an Account" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "%1$s%2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Signup Confirmation" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Mtumiaji mpya amejisajiri kwa %1$s. Kuidhinisha kujiandikisha kwake tafadhali enda kwa KISARA: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Idhini ya mtumiaji mpya" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Akaunti yako ya mtumiaji imeidhinishwa kwa %1$s. Kuingia enda kwa KISARA kifuatacho: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Akaunti ya mtimiaji imeidhinishwa" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Create an account now to take advantage of more features on the site." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Longitudo" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Ramani" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Athirisha kuwa imesomwa" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Athirisha kuwa haijasomwa" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maximum filesize" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Chujio la Media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Members" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Manage Your Account" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Ujumbe" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Ujumbe" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Elezo la ujumbe" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Message from a non-numeric source:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobile" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Badilisha" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Tarehe ya kubadilisha" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "month" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Zaidi" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "More Information" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Je Ushahidi hii imetumika kwa nchi nyingi?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Jina" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Nearby Report" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Mpya" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Habari" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Tawanyiko la habari" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Asili ya habari" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Jamii mpya" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Nywila mpya" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Repoti mpya" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Mbele" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "La" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "No checkins to display." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "No data" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "None" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Notisi" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Haijapitishwa" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Haijapitishwa" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Not Selected---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "Si spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Not Specified" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "There are no reports" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Hakuna matokeo" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Off" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Habari rasmi" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "On" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Chaguo" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Hiari" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Chaguo" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Shirika" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Mashirika" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Maelezo ya shirika" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Barua pepe ya shirika" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Shirika" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Jina la shirika" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Simu ya kwanza ya shirika" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Simu ya pili ya shirika" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Tovuti ya shirika" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Awali" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Elezo la awali" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Jina la awali" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "USHAHIDI ZENGINE" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Outbox" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Zinazotoka" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Kurasa" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Kurasa" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Maelezo ya kurasa" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Kurasa" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Jina la sehemu ya kurasa" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Jina la kurasa" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Jamii mzazi" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Nywila" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Rudia kuandika nywila" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Password changed successfully! Login below." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Umesahau nywila?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Angalia barua pepe zako kupata nywila mpya." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Bakia ukiwa umeingia kwa akaunti yako?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Mwezi uliopota" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Mwezi ulipita" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Inasubiri" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "per" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Maarifa ya kibinafsi Hiari." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Simu" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Picha" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Picha" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Picha na video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Cheza" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Tafadhali kumbuka" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Plugin Website" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Public Profile" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Public Profile URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Hakikisho" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Hakikisha kipengele" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Hakikisha ujumbe" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Iliopita" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Private" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profile Color" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Umbo lako limehifadhiwa" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Takwimu za haraka" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Uzani" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Soma" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Pokea" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Pokea fomu" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Pokea uonyo" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Ripoti za hivi karibuni" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Zirudie tawanyiko" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Registered Email" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "ondoa" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Jibu" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Ripoti" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Reports (from the map, listed in chronological order)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Alieripoti" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Walioripoti" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Tarehe ya alieripoti" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Anwani ya barua pepe ya alieripoti" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Jina la kwanza la alieripoti" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Alieripoti" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Anwani ya IP ya alieripoti" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Jina la mwisho la alieripoti" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Gredi ya alieripoti" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Gredi ya aliyeripoti" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Namba ya simu ya alieripoti" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Ripoti" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Vinjari" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Pitisha" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Reports By This User" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Jamii" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Tarehe" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Maelezo" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Ripoti itapakuliwa kwa njia ya CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Barua pepe" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Features" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Tafuta eneo karibu yako" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Jina la kwanza" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Jina la mwisho" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Titta jina la eneo" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Kiungo cha asili ya habari" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Maelezo ya hiari" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Pakia picha" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Rudia kurasa ya ripoti" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Chagua mji" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Ripoti yako imetungwa na wafanyakazi wetu wataipitia. Tutakurudia punde si punde kama inahitajika." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Tunga ripoti mpya" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "wakati" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Wakati" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Jina la ripoti" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Kiungo cha video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Ripoti tukio" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Maelezo ya ripoti" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Kwa kutuma ujumbe kwa" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Kwa kutuma barua pepe kwa" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Kwa kutuma tweet na hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Kwa kujaza fomu" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "By using an app" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Ripoti yako imehifadhiwa" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Jina la ripoti" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Omba maelezo zaidi" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Omba eneo" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Inahitajika" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Mahitaji" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Resend Confirmation Email" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Reset" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Reset all filters" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Rudia nywila" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Pata majina ya miji ya nchi iliochaguliwa" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "%s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Jukumu" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Hifadhi" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Imehifadhika" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Save & Add New" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Hifadhi & Funga" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Hifadhi ripoti" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Schedule" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Scheduler" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Day" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Hour" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Scheduler Log" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Minute" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Day of the Week" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "TAFUTA" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Matokeo ya kutafuta" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Ishara ya usalama" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Chagua zote" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Chagua aina ya uga" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Chagua aina ya fomu" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Chagua kwa ramani" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Chagua nyingi iwezekanavo" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Tafadhali thibitisha umetiki kipengele" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Chagua mandhari" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Tuma" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Send Confirmation" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Tuma kwa" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Imetumwa" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Imetumwa na" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Anwani ya server" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Aina ya server" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Huduma" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Jina la mtumizi wa huduma" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "User ID ya huduma" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Shiriki" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Data ilioshirikishwa" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Ushirikiano" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Kushiriki" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Shorter Map" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Onyesha" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Onyesha zote" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Show Messages" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "%1$s%2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Tovuti" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "Anwani ya barua pepe ya tovuti" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Anwani ya tovuti" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Smaller Map" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "Ujumbe mfupi" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Sorry, you do not have any badges." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Asili" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Jina la asili" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sort" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sort By" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Anwani ya asili" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Inatumia SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Kutoka" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Hatua" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Tunga tukio" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "%1$s%2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Tunga kupitia SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Tuma SMS yako kwa" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "kwenye simu yako" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Success!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Imefanikiwa kuingiza" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Jina la mwisho" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Survey" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "System" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Taller Map" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Port ya TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Mandhari" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Mandhari ya Ushahidi ya awali" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Vipimo vya mandhari" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Hii" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Leo" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Mwezi huu" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "This Week" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Mwaka huu" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "This is your profile." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "wakati" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "JINA " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "kwa" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Leo" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Leo saa" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Total Reports" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Imetafsiriwa" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Maelezoo yaliotafsiriwa" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Jina liliotafsiriwa" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Tafsiri kwa" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Tafsiri" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Tafsiri imehifadhiwa" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Trusted" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Type" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Unable to send email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Uncategorized Reports" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "haijasomwa" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Haijathabitishwa" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Sasisha tawanyiko" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Pakia" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "View our report upload guides:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML Upload guide" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV Upload guide" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Faili ya kupakiwa" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Pakia ripoti" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Na fomu inayofuata, unaeza kuingiza tukio kwenye Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Reports must be uploaded in either CSV or XML format." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "When incident ID already exists in the database, the entry in the CSV/XML file will be ignored." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Inafaa kuwa na angalau Jina la Tukio na Tarehe ya Tukio" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "If importing additional info i.e personal information and/or custom form fields" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "At least one of the personal information fields(name, surname,email) entries MUST exist. Empty records will not be imported" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Your entries for dropdown fields, radio buttons and checkboxes match the options provided for the custom field on your instance" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Checkbox options are separated by a comma e.g if your selected choice of fruits is apples,mangoes and grapes, your entry for this should be \"apples,mangoes,grapes\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Date field values are in the following format: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Sampuli ya repoti ya CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Imefaulu kupakia" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Upload Video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Mtumizi" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Jina la mtumizi" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Meneja ya Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Verification" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Imethibitishwa" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Ripoti zilothibitishwa" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Thibitisha" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Thibithisha ripoti hii" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Toleo" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "via" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Angalia" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Maoni" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Angalia zote" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Angalia tawanyiko zote" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Angalia ripoti zote" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Angalia vipengee" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "View More" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "View Public Profile" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Angalia ripoti" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Angalia ripoti" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "View Video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Inaonekana" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Inangojea kupitishwa" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Inangojea kuthibitishwa" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Wider Map" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web Form" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Uzito" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Ndio" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Jana" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Your Dashboard" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Your file" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Zoom In" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Zoom Out" diff --git a/application/i18n/po/po-sw_KE/upgrade.po b/application/i18n/po/po-sw_KE/upgrade.po new file mode 100644 index 0000000000..a140ef2567 --- /dev/null +++ b/application/i18n/po/po-sw_KE/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/ushahidi/ushahidi-v2/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Invalid input data. It can either be 0 for No or 1 for Yes." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Automatic Upgrade" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Available Updates" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Continue" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Upgrade" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "So, I'm going to upgrade your database from version" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "to the newest database version" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Click on the \"Upgrade\" button and just chillax as I perform the magic." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Backup database before upgrade? (Highly recommended)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi database upgrade" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "%s" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Your database version is up to date." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Upgrade failed at some point" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Manual Upgrade" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi upgrade status" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "The instructions below detail how to manually upgrade your Ushahidi deploymentl" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Download
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Download the most recent Ushahidi build from" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "For automatic upgrade, click on the button below." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "%1$s%2$d%3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Upgrading" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Example: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Password:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP User Name:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "You have the latest version of Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "You do not need to upgrade." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "%d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Warning: Software version in version.php and database do not match." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Warning: Database version in version.php and database do not match." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Database:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "%s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Downloading latest version of ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Log File" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Successfully Downloaded. Unpacking..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Failed downloading." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Successfully Unpacked. Copying files..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Failed unpacking." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Successfully Copied. Upgrading Database..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Failed copying files." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Database backup and upgrade successful." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Failed backing up database." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Database upgrade successful." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Deleting downloaded files..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "%s" diff --git a/application/i18n/po/po-te/alerts.po b/application/i18n/po/po-te/alerts.po new file mode 100644 index 0000000000..2be84ba645 --- /dev/null +++ b/application/i18n/po/po-te/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-te/auth.po b/application/i18n/po/po-te/auth.po new file mode 100644 index 0000000000..d6c7fd2fcb --- /dev/null +++ b/application/i18n/po/po-te/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Vamsi Gopal Vasireddy , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-02 03:41+0000\n" +"Last-Translator: Vamsi Gopal Vasireddy \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-te/bug.po b/application/i18n/po/po-te/bug.po new file mode 100644 index 0000000000..38d1b30779 --- /dev/null +++ b/application/i18n/po/po-te/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-te/category.po b/application/i18n/po/po-te/category.po new file mode 100644 index 0000000000..16453e881d --- /dev/null +++ b/application/i18n/po/po-te/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-te/comments.po b/application/i18n/po/po-te/comments.po new file mode 100644 index 0000000000..9a02071edc --- /dev/null +++ b/application/i18n/po/po-te/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-te/contact.po b/application/i18n/po/po-te/contact.po new file mode 100644 index 0000000000..1148a5519a --- /dev/null +++ b/application/i18n/po/po-te/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-te/core.po b/application/i18n/po/po-te/core.po new file mode 100644 index 0000000000..1f91cd4d70 --- /dev/null +++ b/application/i18n/po/po-te/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Ravi Chandra Enaganti , 2013 +# Vamsi Gopal Vasireddy , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2015-05-02 03:13+0000\n" +"Last-Translator: Vamsi Gopal Vasireddy \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "సహాయకుడు" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "నమూనా" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "మీరు అభ్యర్థించిన పేజీ, %s, దొరకలేదు" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "అభ్యర్థించిన %s, %s, దొరకలేదు" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "వీక్షించు" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-te/database.po b/application/i18n/po/po-te/database.po new file mode 100644 index 0000000000..f69fbd54dd --- /dev/null +++ b/application/i18n/po/po-te/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-te/datetime.po b/application/i18n/po/po-te/datetime.po new file mode 100644 index 0000000000..a953f8b3dc --- /dev/null +++ b/application/i18n/po/po-te/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# వీవెన్ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:17+0000\n" +"Last-Translator: వీవెన్ \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "శుక్ర" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "శుక్రవారం" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "సోమ" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "సోమవారం" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "శని" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "శనివారం" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "ఆది" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "ఆదివారం" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "గురు" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "గురువారం" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "మంగళ" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "మంగళవారం" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "బుధ" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "బుధవారం" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "జన" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "జనవరి" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "ఫిబ్ర" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "ఫిబ్రవరి" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "మార్చి" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "మార్చి" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "ఏప్రి" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "ఏప్రిల్" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "మే" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "మే" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "జూన్" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "జూన్" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "జూలై" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "జూలై" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "ఆగ" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "ఆగస్ట్" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "సెప్టెం" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "సెప్టెంబర్" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "అక్టో" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "అక్టోబర్" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "నవం" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "నవంబర్" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "డిసెం" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "డిసెంబర్" diff --git a/application/i18n/po/po-te/feeds.po b/application/i18n/po/po-te/feeds.po new file mode 100644 index 0000000000..788b63a7b5 --- /dev/null +++ b/application/i18n/po/po-te/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-te/footer.po b/application/i18n/po/po-te/footer.po new file mode 100644 index 0000000000..9cee0ca271 --- /dev/null +++ b/application/i18n/po/po-te/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-te/form.po b/application/i18n/po/po-te/form.po new file mode 100644 index 0000000000..b1d1a5e2f3 --- /dev/null +++ b/application/i18n/po/po-te/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-te/imap.po b/application/i18n/po/po-te/imap.po new file mode 100644 index 0000000000..8f7e51e0cc --- /dev/null +++ b/application/i18n/po/po-te/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-te/installer.po b/application/i18n/po/po-te/installer.po new file mode 100644 index 0000000000..c18689fea5 --- /dev/null +++ b/application/i18n/po/po-te/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-te/layer.po b/application/i18n/po/po-te/layer.po new file mode 100644 index 0000000000..76a51df755 --- /dev/null +++ b/application/i18n/po/po-te/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-te/libraries.po b/application/i18n/po/po-te/libraries.po new file mode 100644 index 0000000000..b291abbb78 --- /dev/null +++ b/application/i18n/po/po-te/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-te/maintenance.po b/application/i18n/po/po-te/maintenance.po new file mode 100644 index 0000000000..bacbccc1e4 --- /dev/null +++ b/application/i18n/po/po-te/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-te/message.po b/application/i18n/po/po-te/message.po new file mode 100644 index 0000000000..d80dda0065 --- /dev/null +++ b/application/i18n/po/po-te/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-te/mhi.po b/application/i18n/po/po-te/mhi.po new file mode 100644 index 0000000000..bd48f9c112 --- /dev/null +++ b/application/i18n/po/po-te/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-te/notifications.po b/application/i18n/po/po-te/notifications.po new file mode 100644 index 0000000000..60ae726b66 --- /dev/null +++ b/application/i18n/po/po-te/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-te/page.po b/application/i18n/po/po-te/page.po new file mode 100644 index 0000000000..7f48914fab --- /dev/null +++ b/application/i18n/po/po-te/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-te/permissions.po b/application/i18n/po/po-te/permissions.po new file mode 100644 index 0000000000..79e2630260 --- /dev/null +++ b/application/i18n/po/po-te/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-te/private_message.po b/application/i18n/po/po-te/private_message.po new file mode 100644 index 0000000000..af7d65d525 --- /dev/null +++ b/application/i18n/po/po-te/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-te/report.po b/application/i18n/po/po-te/report.po new file mode 100644 index 0000000000..fb7dc62fec --- /dev/null +++ b/application/i18n/po/po-te/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 06:22+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-te/reporters.po b/application/i18n/po/po-te/reporters.po new file mode 100644 index 0000000000..b47febee5e --- /dev/null +++ b/application/i18n/po/po-te/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-te/reports.po b/application/i18n/po/po-te/reports.po new file mode 100644 index 0000000000..a12c9014be --- /dev/null +++ b/application/i18n/po/po-te/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Ravi Chandra Enaganti , 2013 +# Vamsi Gopal Vasireddy , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-02 03:05+0000\n" +"Last-Translator: Vamsi Gopal Vasireddy \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "మీరు ఒక అంశం ఎంపిక చేసినట్టు ధృవీకరించండి" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "మీరు ఒక అంశం ఎంపిక చేసినట్టు ధృవీకరించండి" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "ఈ పని చేయడానికి మీకు అనుమతి లేదు" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "మీరు ఎక్కించడానికి ఏదో ఒక దస్త్రాన్ని ఎంచుకోవాలి" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "ఎక్కించే దస్త్రం .csv లేదా .xml అయి ఉండాలి" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "దస్త్రం ఎక్కింపు స్థానంలో సరైన దస్త్రం ఉన్నట్టు కనిపించడం లేదు" diff --git a/application/i18n/po/po-te/roles.po b/application/i18n/po/po-te/roles.po new file mode 100644 index 0000000000..744bde9177 --- /dev/null +++ b/application/i18n/po/po-te/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-te/settings.po b/application/i18n/po/po-te/settings.po new file mode 100644 index 0000000000..592bd23f2d --- /dev/null +++ b/application/i18n/po/po-te/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Ravi Chandra Enaganti , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Telugu (http://www.transifex.com/projects/p/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "సరైన URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-te/sharing.po b/application/i18n/po/po-te/sharing.po new file mode 100644 index 0000000000..60e8f3d772 --- /dev/null +++ b/application/i18n/po/po-te/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-te/stats.po b/application/i18n/po/po-te/stats.po new file mode 100644 index 0000000000..b4635793bd --- /dev/null +++ b/application/i18n/po/po-te/stats.po @@ -0,0 +1,199 @@ +# +# Translators: +# Vamsi Gopal Vasireddy , 2015 +# వీవెన్ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-05-02 03:40+0000\n" +"Last-Translator: Vamsi Gopal Vasireddy \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "వర్గాలు" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "దేశాలు" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "దేశం" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "నివేదికలు" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 నెల" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 నెలలు" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 నెలలు" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "అన్ని" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-te/tooltips.po b/application/i18n/po/po-te/tooltips.po new file mode 100644 index 0000000000..0f61f6a7c1 --- /dev/null +++ b/application/i18n/po/po-te/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-te/ui_admin.po b/application/i18n/po/po-te/ui_admin.po new file mode 100644 index 0000000000..8bd6f413f3 --- /dev/null +++ b/application/i18n/po/po-te/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Vamsi Gopal Vasireddy , 2015 +# వీవెన్ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2015-05-02 03:39+0000\n" +"Last-Translator: Vamsi Gopal Vasireddy \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "చర్యలు" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "హెచ్చరికలు" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "అన్నీ" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "అనామక" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "ఎవరైనా" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "ఎక్కడైనా" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "రచయిత" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "రద్దుచేయి" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "వర్గాలు" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "రంగు" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "వ్యాఖ్యలు" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "తేదీ & సమయం" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "తొలగించండి" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "అన్ని నివేదికలు తొలగించండి" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "వివరణ" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "మార్చు" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "లోపం" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "చర్యలు" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "వాడుకరి" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "సహాయం" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "పూర్తి పేరు:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "సంకేతపదం:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "వాడుకరి పేరు:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "మధ్యవర్తి" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "సందేశం" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "సందేశాలు" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "ట్విట్టర్ సందేశాలు" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "మీ సందేశం పంపబడింది !" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "నిమిషం" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "నిమిషాలు" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "మధ్యవర్తి" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "పేరు" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "కొత్త సంకేతపదం" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "కాదు" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "దొరకలేదు" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "తప్పు లేదు" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "పేజీ" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "పేజీలు" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "సంకేతపదం" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "ప్రియమైన" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "ఫోన్" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "సందేశం" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "ఫలితాలు" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "అమరికలు" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "గణాంకాలు" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "పేరు" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "వాడుకరి" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "వాడుకరులు" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "ఉషహీడీ" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "స్వాగతం," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "వికీ" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "అవును" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-te/ui_main.po b/application/i18n/po/po-te/ui_main.po new file mode 100644 index 0000000000..18478d240a --- /dev/null +++ b/application/i18n/po/po-te/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Ravi Chandra Enaganti , 2013 +# వీవెన్ , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "గురించి" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "ఖాతా పేరు" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "చర్యలు" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "చేర్చు" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "అదనపు భోగట్టా" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "అదనపు నివేదికలు" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "భాషను చేర్చండి" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "కొత్తది చేర్చు" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "ఈమెయిలు చిరునామా:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "ఒక నగరాన్ని ఎంచుకోండి" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "మెట్టు 1: మీ నగరాన్ని లేదా ప్రాంతాన్ని ఎంచుకోండి:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "మెట్టు 2: అలెర్టులను ఎక్కడకు పంపించాలి:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "మెట్టు 3 (ఐచ్చికం): వర్గాలను ఎంచుకోండి" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "అన్నీ" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "అనుమతించినవి" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "అన్ని వర్గాలు" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "మరియు" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "ఆమోదించు" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "ఆమోదించినది" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "రమారమి" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "భాండాగారం" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "బ్లాగు" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "రద్దుచేయి" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "వర్గాలు" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "వర్గం" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "మూసివేయి" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "రంగు" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "వ్యాఖ్య" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "వ్యాఖ్యలు" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "వ్యాఖ్య వివరాలు" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "మమ్మల్ని సంప్రదించండి" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "మీ ఈమెయిలు చిరునామా" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "సందేశం" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "మీ సందేశాన్ని పంపించాం!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "మీ పేరు" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "మీ ఫోను నెంబరు" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "సందేశాన్ని పంపించు" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "సందేశ విషయం" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "కాపీహక్కులు ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "సృష్టించు" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "సృష్టించు/మార్చు" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "ప్రస్తుత సంకేతపదం" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "సమాచారం" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "తేదీ" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "తేదీ & సమయం" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "రోజు" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "నైరోబీ, కెన్యా" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "తొలగించు" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "తొలగించబడినది" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "చివరిదాన్ని తొలగించు" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "ఎంచుకొన్నదాన్ని తొలగించు" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "ప్రదర్శన" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "వివరణ" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "వివరాలు" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "అచేతనం" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "ఈమెయిలు" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "ఈమెయిలు చిరునామా" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---ఖాళీ---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "దోషం!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "ఉదాహరణ" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "కెన్యా" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "ఫేస్‌బుక్" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "దస్త్రం" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "కనిపెట్టు" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "ప్రాంతాన్ని కనిపెట్టు" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "మొదటిపేరు" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "దరఖాస్తు" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "దరఖాస్తులు" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "నుంచి" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "పూర్తి పేరు" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "రంగు" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "వ్యాఖ్యలు" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "వెళ్ళు" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "దాచిన" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "దాచిపెట్టు" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ఈ సందేశాన్ని దాచిపెట్టు" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "ముంగిలి" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "ఎలా నివేదించాలి" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "బొమ్మ" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "బొమ్మలు" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "సంఘటన" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "చేర్చు" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "వర్గాలని చేర్చు" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "ఐపీ చిరునామా" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "ఇది మీ ప్రవరా?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "కీపదాలు" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "భాష" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "చివరి" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "పోయిన నెల" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "ఇంటి పేరు" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "నిరుడు" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "అక్షాంశం" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "పొరలు" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "పొర పేరు" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "ఓ వ్యాఖ్య వదిలి వెళ్ళండి" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "తక్కువ సమాచారం" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "స్థాయి" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "స్థాయి పేరు" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "లంకె" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "జాబితా" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "ప్రాంతం" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "ప్రాంతాలు" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "నగరం, రాష్ట్రం మరియు/లేదా దేశం" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "ఖాతా సృష్టింపు విజయవంతం. మీరిప్పుడు లోనికి ప్రవేశించవచ్చు." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "మీ ఈమెయిలు చిరునామాకి ఒక నిర్ధారణను పంపించాం." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "ఈమెయిలు మరియు సంకేతపదం" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "ఖాతా సృష్టించుకో" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "రేఖాంశం" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "పటం" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "సభ్యులు" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "సందేశం" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "సందేశాలు" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "సందేశ వివరాలు" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "నెల" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "మరింత" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "మరింత సమాచారం" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "పేరు" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "వార్తలు" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "కొత్త సంకేతపదం" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "కొత్త నివేదిక" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "ఐచ్చికం" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "ఎంపికలు" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "అసలు వివరణ" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "పేజీ" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "పేజీలు" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "పేజీ వివరణ" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "సంకేతపదం" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "వ్యక్తిగత సమాచారం ఐచ్చికం." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "దయచేసి గమనించండి" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "మునుజూపు" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "ఇటీవలి నివేదికలు" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "నివేదికలు" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "వర్గాలు" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d నివేదికలు" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "తేదీ" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "వివరణ" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "పేరు" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "ఇంటి పేరు" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "ప్రాంతం పేరు" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "ఐచ్చిక సమాచారం" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "సమయం" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "నివేదిక వివరాలు" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "తప్పనిసరి" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "భద్రపరచు" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "రోజు" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "గంట" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "నిమిషం" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "పంపించ" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "చూపించు" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "అన్నీ చూపించు" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "సైటు ఈమెయిలు చిరునామా" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "ఇంటిపేరు" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "అలంకారాలు" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "అలంకారపు అమరికలు" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "ఈరోజు" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "ఈ నెల" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "ఈ వారం" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "ఈ సంవత్సరం" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "సమయం" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "శీర్షిక" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "ఈరోజు" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "మొత్తం నివేదికలు" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "అనువదించిన వివరణ" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "అనువాదం" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "రకం" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "వాడుకరి" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "వాడుకరి పేరు" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "ఉషహీడీ నిర్వాహకుడు" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "జాలం" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "అవును" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "నిన్న" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "మీ దస్త్రం" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-te/upgrade.po b/application/i18n/po/po-te/upgrade.po new file mode 100644 index 0000000000..77da1a6e28 --- /dev/null +++ b/application/i18n/po/po-te/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:59+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Telugu (http://www.transifex.com/ushahidi/ushahidi-v2/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-th_TH/alerts.po b/application/i18n/po/po-th_TH/alerts.po new file mode 100644 index 0000000000..4d7d2d0b45 --- /dev/null +++ b/application/i18n/po/po-th_TH/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-09 02:15+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ช่องอีเมลมีอีเมล์ที่ไม่ถูกต้อง?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "อีเมล์นั้นได้รับการลงทะเบียนแล้วเพื่อรับการแจ้งเตือนสำหรับตำแหน่งนั้น" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "อีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และไม่เกิน 64 ตัวอักษร" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "จำเป็นต้องใส่อีเมล์หากช่องเครื่องหมายเช็คถูก" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "การใช้งานนี้ครอบคลุมประเทศเดียวเท่านั้น โปรดตรวจสอบว่าตำแหน่งที่แจ้งเตือนอยู่ภายในประเทศนี้ %s" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "จำนวนตัวเลขในช่องใส่หมายเลขโทรศัพท์มือถือไม่ครบถ้วน" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "หมายเลขโทรศัพท์มือถือนั้นได้รับการลงทะเบียนแล้วและจะได้รับการแจ้งเตือนสำหรับตำแหน่งนั้น" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "ช่องใส่โทรศัพท์มือถือไม่ถูกต้อง กรุณาใส่ตัวเลขเท่านั้นพร้อมรหัสประเทศ" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "คุณต้องใส่หมายเลขโทรศัพท์มือถือหรืออีเมล์ของคุณ" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "จำเป็นต้องใส่หมายเลขโทรศัพท์ถ้าช่องเครื่องหมายเช็คถูก" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "คุณยังไม่ได้ตั้งรัศมีที่ถูกต้องบนแผนที่" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "คุณยังไม่ได้ตั้งรัศมีที่ถูกต้องบนแผนที่" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "คุณยังไม่ได้ระบุผู้รับการแจ้งเตือน" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "คุณได้สมัครการแจ้งเตือนต่อไปนี้" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "รหัสนี้ได้รับการยืนยันมาก่อนแล้ว!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "ไม่พบรหัสการตรวจสอบนี้! กรุณายืนยันว่าคุณมี URL ที่ถูกต้อง" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "รหัสของคุณถูกตรวจสอบอย่างถูกต้อง ตอนนี้คุณจะได้รับการแจ้งเตือนอุบัติการณ์ต่างๆที่เกิดขึ้น" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "เพื่อยืนยันการขอแจ้งเตือนของคุณโปรดไปที่" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "กลับไปยังหน้าการแจ้งเตือนเพื่อเพิ่มรายการแจ้งเตือน" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "อีเมล์แจ้งเตือนของคุณได้รับการสร้างขึ้นแล้วและข้อความยืนยันได้ถูกส่งไปที่อีเมล์ของคุณ" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "กรุณากรอกรหัสยืนยันที่คุณได้รับในอีเมล์ข้างล่าง" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "อีเมล์ขอแจ้งเตือนของคุณไม่ได้รับการบันทึกไว้!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "อีเมล์ขอแจ้งเตือนของคุณได้รับการบันทึกแล้ว!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "ระบบไม่สามารถดำเนิน สิ่งที่คุณยืนยัน/ร้องขอมาก!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "การแจ้งเตือนผ่านระบบมือถือของคุณได้รับการสร้างขึ้นแล้วและข้อความยืนยันได้ถูกส่งไป" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "กรุณากรอกรหัส SMS ยืนยันที่คุณได้รับในโทรศัพท์มือถือของคุณข้างล่าง" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "การขอแจ้งเตือนในมือถือของคุณไม่ได้รับการบันทึกไว้!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "การขอแจ้งเตือนในมือถือของคุณได้รับการบันทึก!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "การใช้งานนี้ไม่ได้ตั้งขึ้นมาเพื่อดำเนินการแจ้งเตือนอย่างถูกต้อง" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "คุณได้รับอีเมลนี้เนื่องจากคุณสมัครรับการแจ้งเตือน หากคุณไม่ต้องการที่จะรับการแจ้งเตือนในอนาคตกรุณาไปที่" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "คุณจะไม่ได้รับการแจ้งเตือนจาก" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "เราไม่สามารถที่จะยกเลิกสมาชิกคุณ กรุณายืนยันว่าคุณมี URL ที่ถูกต้อง" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "แจ้งเตือน - ตรวจสอบ" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "คุณจะไม่ได้รับการแจ้งเตือนสำหรับสถานที่นี้จนกว่าคำร้องของคุณได้ทำการยืนยัน" diff --git a/application/i18n/po/po-th_TH/auth.po b/application/i18n/po/po-th_TH/auth.po new file mode 100644 index 0000000000..a3ab83dc9e --- /dev/null +++ b/application/i18n/po/po-th_TH/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-11 07:59+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "อีเมลที่คุณใส่ไม่ถูกต้อง" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "ขออภัย มีบัญชีที่ใช้อีเมลนี้แล้ว" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "อีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และไม่เกิน 64 ตัวอักษร" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "จำเป็นต้องใส่อีเมล์" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "ชื่อฟิลด์จะต้องไม่น้อยกว่า 3 ตัวอักษร และไม่มากกว่า 100 ตัวอักษร" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "จำเป็นต้องระบุชื่อ" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "ชื่อผู้ใช้มีอักขระที่ไม่ถูกต้อง" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "รหัสผ่านฟิลด์ต้องมีอย่างน้อย 8 ตัวอักษร" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "กรุณาตรวจสอบว่าคุณได้ใส่อีเมลและรหัสผ่านที่ถูกต้อง" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "กรุณากรอกรหัสผ่านเดิมในสองช่องสำหรับใส่รหัสผ่าน" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "จำเป็นต้องใส่รหัสผ่าน" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "ฟิลด์รหัสผ่านจะต้องมีตัวอักษร สัญลักษณ์ # หรือ @ ตัวเลข ขีดล่าง และขีดกลาง เท่านั้น" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "รหัสผ่านที่คุณใส่ไม่ถูกต้อง โปรดลองอีกครั้ง" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "ฟิลด์รหัสผ่านต้องมีอย่างน้อย 8 ตัวอักษร" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "กรุณาตรวจสอบว่าคุณได้ใส่อีเมล์และรหัสผ่านที่ถูกต้อง" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "กรุณาใส่รหัสผ่านเดิมในสองช่องรหัสผ่าน" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "ฟิลด์รหัสผ่านจะต้อง" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "ฟิลด์รหัสผ่านจะต้องมีตัวอักษร สัญลักษณ์ # หรือ @ ตัวเลข ขีดล่าง และขีดกลาง เท่านั้น" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "เกิดความขัดข้องในการเข้าใช้ระบบ " + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "ฟิลด์รหัสผ่านต้องมีอย่างน้อย 8 ตัวอักษร" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "กรุณาตรวจสอบว่าคุณได้ใส่อีเมลและรหัสผ่านที่ถูกต้อง" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "กรุณาใส่รหัสผ่านเดิมในสองช่องรหัสผ่าน" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "จำเป็นต้องใส่ฟิลด์รหัสผ่าน" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "เซิร์ฟเวอร์ไม่สามารถใช้งานได้ตอนนี้ โปรดค่อยลองอีกครั้ง" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "ฟิลด์รหัสผ่านจะต้องมีตัวอักษร สัญลักษณ์ # หรือ @ ตัวเลข ขีดล่าง และขีดกลาง เท่านั้น" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "รหัสผ่านในฟิล์ดยืนยันจะต้องตรงกับฟิล์ดระหัสผ่าน" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "อีเมล์ที่คุณใส่ไม่ถูกต้อง" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "ขออภัย เราไม่มีที่อยู่อีเมล์ของคุณ" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "จำเป็นต้องใส่ข้อมูลอีเมล์" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "เพียง superadmin สามารถแก้ไข superadmin หรืออัพเกรดผู้ใช้ให้เป็นผู้ดูแลระบบ" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "รูปแบบไม่ถูกต้อง" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "บทบาทต้องมีอย่างน้อย 5 อักษรและไม่เกิน 30 ตัวอักษร" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "คุณต้องกำหนดอย่างน้อยหนึ่งบทบาท" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "คุณต้องเลือกหนึ่งบทบาท ระหว่างเป็นแอดมินหรือเป็นเพียงผู้ใช้" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "รหัสผ่านไม่สามารถใช้งานได้" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "จำเป็นต้องใส่รัหัสผ่าน" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "ผู้ใช้แบบแอดมินไม่สามารถทำการแก้ไขได้" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "ช่อง URL โปรไฟล์จะต้องมีเพียงตัวเลขและตัวอักษร" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "ขออภัย URL โปรไฟล์นี้ถูกช้งานแล้ว" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "ช่อง URL โปรไฟล์ต้องมีอย่างน้อย 2 ตัวอักษร และไม่มากกว่า 100 ตัวอักษร" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "กรุณาตรวจสอบว่าคุณได้ใส่ URL โปรไฟล์ที่ถูกต้อง" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "จำเป็นต้องใส่ URL โปรไฟล์" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr " superแอดมินไม่สามารถทำการแก้ไขได้" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "อาจมีการโจมตี CSRF คุณตั้งใจที่จะสร้าง/แก้ไขข้อมูลผู้ใช้หรือไม่?" diff --git a/application/i18n/po/po-th_TH/bug.po b/application/i18n/po/po-th_TH/bug.po new file mode 100644 index 0000000000..0b630a3552 --- /dev/null +++ b/application/i18n/po/po-th_TH/bug.po @@ -0,0 +1,68 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-11 08:12+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัย" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "ช่องอีเมล์ไม่ปรากฏอีเมลที่ถูกต้อง?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ช่องอีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และไม่เกิน 64 ตัวอักษร" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "จำเป็นต้องใส่อีเมล์ถ้าช่องทำเครื่องหมายได้เช็คถูก" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "ต้องใส่ข้อมูลในฟิล์ดที่ป้อนข้อมูลไม่ถูต้อง" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "ฟิล์ดหัวข้อต้องมีอย่างน้อย 3 ตัวอักษร" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "ต้องป้อนข้อมูลในฟิล์ดหัวข้อ" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "ฟิลด์ชื่อต้องป้อนข้อมูลอย่างน้อย 3 ตัวอักษร" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "จำเป็นต้องป้อนข้อมูลในฟิล์ดชื่อ" diff --git a/application/i18n/po/po-th_TH/category.po b/application/i18n/po/po-th_TH/category.po new file mode 100644 index 0000000000..22335cd746 --- /dev/null +++ b/application/i18n/po/po-th_TH/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-11 09:19+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "ข้อมูลในฟิล์ดีสีต้องมี 6 ตัวอักษร" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "จำเป็นต้องป้อนข้อมูลในฟิล์ดสี" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "จำเป็นต้องใส่คำอธิบาย" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "โปรดตรวจสอบว่าภาพที่จะอัปโหลดมีขนาดภาพไม่เกิน 50KB" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "รูปภาพไม่ปรากฏรูปแบบภาพที่ถูกต้อง รูปแบบที่ใช้ได้คือ .JPG, .PNG และ .GIF" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "ช่องภาพไม่ปรากฏไฟล์ที่ถูกต้อง" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "ช่องสำหรับชื่อเรื่องต้องมีอย่างน้อย 3 ตัวอักษร และไม่มากกว่า 80 ตัวอักษร" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "จำเป็นต้องใส่ชื่อเรื่อง" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "คุณไม่สามารถแยกหมวดหมู่ที่มีหมวดหมู่ย่อย" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "ไม่มีหมวดหมู่หลัก" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "หมวดหมู่หลักต้องเป็นตัวเลข" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "หมวดหมู่หลักไม่สามารถเป็นหมวดหมู่พิเศษ" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "จำเป็นต้องมีหมวดหมู่หลัก" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "หมวดหมู่และหมวดหมู่หลักไม่สามารถเหมือนกัน" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "หมวดหมู่พิเศษไม่สามารถแยกเป็นหมวดหมู่ย่อยได้" diff --git a/application/i18n/po/po-th_TH/comments.po b/application/i18n/po/po-th_TH/comments.po new file mode 100644 index 0000000000..31f5f8d38e --- /dev/null +++ b/application/i18n/po/po-th_TH/comments.po @@ -0,0 +1,63 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-11 09:21+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัย" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "คุณใส่รหัสรักษาความปลอดภัยที่ไม่ถูกต้อง" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "ช่องสำหรับชื่อต้องมีอย่างน้อย 3 ตัวอักษร" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "จำเป็นต้องใส่ชื่่อ" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "จำเป็นต้องใส่ความเห็น" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ช่องอีเมล์ไม่ปรากฏอีเมล์ที่ถูกต้อง" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ช่องอีเมล์ต้องมีอย่างน้อย 4 และไม่เกิน 64 ตัวอักษร" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "จำเป็นต้องใส่อีเมล์ถ้าช่องทำเครื่องหมายได้ทำการเช็คถูก" diff --git a/application/i18n/po/po-th_TH/contact.po b/application/i18n/po/po-th_TH/contact.po new file mode 100644 index 0000000000..6d22edca05 --- /dev/null +++ b/application/i18n/po/po-th_TH/contact.po @@ -0,0 +1,78 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-11 09:25+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัย" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ช่องอีเมล์ไม่ปรากฏอีเมล์ที่ถูกต้อง" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ช่องอีเมล์ต้องมีอย่างน้อย 4 และไม่เกิน 64 ตัวอักษร" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "จำเป็นต้องใส่อีเมล์ถ้าช่องทำเครื่องหมายได้ทำการเช็คถูก" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "จำเป็นต้องใส่ข้อความ" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "ช่องสำหรับชื่อต้องมีอย่างน้อย 3 ตัวอักษร" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "จำเป็นต้องใส่ชื่อ" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "ช่องสำหรับหัวข้อต้องมีอย่างน้อย 3 ตัวอักษร" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "จำเป็นต้องใส่หัวข้อ" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "มีข้อผิดพลาดในการส่งข้อความของคุณ" diff --git a/application/i18n/po/po-th_TH/core.po b/application/i18n/po/po-th_TH/core.po new file mode 100644 index 0000000000..bc070bf44b --- /dev/null +++ b/application/i18n/po/po-th_TH/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2014-08-24 05:06+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr " config ไฟล์" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "ผู้ควบคุม" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "ไดรเวอร์" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "ไดรเวอร์ %ห สำหรับห้องสมุด %s จะต้องใช้อินเตอร์เฟซ %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "ไม่พบ ไดรเวอร์ %s สำหรับห้องสมุด %s " + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "ไปที่หน้าแรก href=\"%s\"> หรือ ลองอีกครั้ง " + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "ไม่สามารถที่จะดำเนินการตามคำขอ" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "ผู้ช่วยเหลือ" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "ไฟล์ที่คุณร้องขอ .%s, ไม่ได้รับการอนุญาตให้กำหนดค่าได้" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "วิธีการไม่ถูกต้อง %s เรียกใช้ %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "คุณสมบัติ %s ไม่ได้อยู่ในประเภท % s" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "ห้องสมุด" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "ไม่สามารถเขียนไดเรกทอรีล็อกได้ %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "แบบอย่าง" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi ไม่สามารถที่จะควบคุมตรวจสอบการดำเนินการตามคำขอนี้ %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "กรุณาตั้งค่าเริ่มต้นใน config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "ไม่พบเพจที่คุณร้องขอ %s" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr " รายงานปัญหานี้ให้กับ Ushahidi " + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "คำขอ %s, %s, ไม่สามารถพบได้" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "ติดตาม" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "โหลดใน {execution_time} วินาที โดยใช้ {memory_usage} ของหน่วยความจำ สร้างโดย Ushahidi v%s" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "สามารถมีได้เพียงหนึ่งตัวอย่างของ Ushahidi ต่อหน้า" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "ไม่ได้จับ %s: %s ในไฟล์ %s ในบรรทัด %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "ดู" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "คุณต้องตั้งค่ามุมมองก่อนที่จะเรียกชื่อไฟล์กับ render" diff --git a/application/i18n/po/po-th_TH/database.po b/application/i18n/po/po-th_TH/database.po new file mode 100644 index 0000000000..dec56bcd4a --- /dev/null +++ b/application/i18n/po/po-th_TH/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Boripat Lebel , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-13 04:44+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "ผิดพลาดในฐานข้อมูล: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "ตาราง \"%s\" ไม่พบในฐานข้อมูล โปรดตรวจสอบให้แน่ใจว่าคุณกำลังใช้รุ่นล่าสุดของฐานข้อมูลสำหรับรุ่นของ Ushahidi นี้" diff --git a/application/i18n/po/po-th_TH/datetime.po b/application/i18n/po/po-th_TH/datetime.po new file mode 100644 index 0000000000..2cd26def0d --- /dev/null +++ b/application/i18n/po/po-th_TH/datetime.po @@ -0,0 +1,218 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-24 05:11+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "am" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "ศุกร์" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "วันศุกร์" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "จันทร์" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "วันจันทร์" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "pm" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "เสาร์" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "วันเสาร์" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "อาทิตย์" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "วันอาทิตย์" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "พฤหัสบดี" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "วันพฤหัสบดี" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "อังคาร" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "วันอังคาร" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "พุธ" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "วันพุธ" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "ม.ค." + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "มกราคม" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "ก.พ." + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "กุมภาพันธ์" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "มี.ค." + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "มีนาคม" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "เม.ย." + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "เมษายน" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "พ.ค." + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "พฤษภาคม" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "มิ.ย." + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "มิถุนายน" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "ก.ค." + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "กรกฎาคม" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "ส.ค." + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "สิงหาคม" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "ก.ย." + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "กันยายน" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "ต.ค." + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "ตุลาคม" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "พ.ย." + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "พฤศจิกายน" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "ธ.ค." + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "ธันวาคม" diff --git a/application/i18n/po/po-th_TH/feeds.po b/application/i18n/po/po-th_TH/feeds.po new file mode 100644 index 0000000000..0319e903f3 --- /dev/null +++ b/application/i18n/po/po-th_TH/feeds.po @@ -0,0 +1,55 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-13 04:52+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "วันที่" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "ชื่อฟีดต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 70 ตัวอักษร" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "กรุณาใส่ชื่อของฟีด" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "กรุณาใส่ URL ของฟีด" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "โปรดใส่ URL ที่ถูกต้อง เช่น http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "ที่มา" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "ชื่อเรื่อง" diff --git a/application/i18n/po/po-th_TH/footer.po b/application/i18n/po/po-th_TH/footer.po new file mode 100644 index 0000000000..de9b122389 --- /dev/null +++ b/application/i18n/po/po-th_TH/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Boripat Lebel , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-11 09:27+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl ไม่ได้ติดตั้งในระบบนี้" diff --git a/application/i18n/po/po-th_TH/form.po b/application/i18n/po/po-th_TH/form.po new file mode 100644 index 0000000000..7cdd0c2db9 --- /dev/null +++ b/application/i18n/po/po-th_TH/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-13 05:08+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "ค่าเริ่มต้นที่คุณใส่ไม่ถูกต้อง" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "ชื่่อฟิลด์ต้องมีอย่างน้อย 3 ตัวอักษรและไม่เกิน 200 ตัวอักษร" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "กรุณาใส่ค่าความสูงของฟิล์ด 0 ถึง 50" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "คุณได้ใส่ค่าไม่ถูกต้องในช่องวันที่" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "กรุณาเลือกว่า ใช่หรือไม่ใช่ฟิล์ดวันที่" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "ชื่อฟิลด์ต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 100 ตัวอักษร" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "กรุณาใส่ชื่่อฟิลด์" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "ชื่่อฟิลค์ที่คุณใส่มีแล้วในแบบฟอร์มนี้ กรุณาใส่อีกอย่างหนึ่ง" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "คุณได้ใส่ค่าไม่ถูกต้องสำหรับฟิลด์ที่จำเป็น" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "กรุณาเลือกใช่หรือไม่ใช่สำหรับฟิล์ดที่จำเป็น" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "กรุณาเลือกประเภทฟิลด์ที่ถูกต้อง" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "กรุณาเลือกประเภทฟิลด์" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "กรุณาใส่ค่า 0 ถึง 300 สำหรับความกว้างฟิลด์" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "กรุณาใส่รายละเอียดแบบฟอร์ม" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "รูปแบบเริ่มต้นไม่สามารถลบได้" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "กรุณาเลือกรูปแบบที่จะเติ่มในฟิลด์" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "กรุณาเลือกรูปแบบที่จะเติ่มในฟิลด์" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "ชื่่อของฟิลค์ต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 100 ตัวอักษร" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "กรุณาใส่ชื่อของฟอร์ม" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "แบบฟอร์มที่มีชื่่อนี้มีแล้ว กรุณาเลือกชื่่ออื่่น" diff --git a/application/i18n/po/po-th_TH/imap.po b/application/i18n/po/po-th_TH/imap.po new file mode 100644 index 0000000000..35be07f220 --- /dev/null +++ b/application/i18n/po/po-th_TH/imap.po @@ -0,0 +1,28 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-13 05:09+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "ไม่สามารถเปิด IMAP stream" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "บริการอีเมลนี้ไม่ได้รับการสนับสนุน" diff --git a/application/i18n/po/po-th_TH/installer.po b/application/i18n/po/po-th_TH/installer.po new file mode 100644 index 0000000000..71ac150cd9 --- /dev/null +++ b/application/i18n/po/po-th_TH/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-13 06:37+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "เส้นทางฐาน" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "ฐานข้อมูล" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "โฮสต์ฐานข้อมูล" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "ถ้าคุณใช้ Ushahidi บนเครื่องคอมพิวเตอร์ของคุณเองนี้จะเป็น \"localhost\" ถ้าคุณใช้ Ushahidi จากเว็บเซิร์ฟเวอร์คุณจะได้รับข้อมูลโฮสต์ของคุณจากผู้ให้บริการเว็บโฮสติ้งของคุณ" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "ชื่อฐานข้อมูล" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "ชื่อของฐานข้อมูลที่คุณต้องการที่จะทำงานใน Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "สำหรับข้อมูลเพิ่มเติมโปรดตรวจสอบ ในบทความนี้ วิกิพีเดียอธิบายรายละเอียดเกี่ยวกับฐานข้อมูลเพิ่มเติม" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "ภาษาหลัก (ท้องถิ่น)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "การใช้งานของแต่ละ Ushahidi มาพร้อมกับชุดแปลภาษา นอกจากนี้คุณยังสามารถ < href=\"http://wiki.ushahidi.com/doku.php?id=localisation_l10n_internationlisation_i18n&s[]=language#enabling_new_languages\" target = \"_blank\"> เพิ่มของคุณเอง " + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "ปิดการใช้งาน" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "เปิดการใช้งาน" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "ข้างล่างนี้เป็นรายละเอียดของข้อผิดพลาดที่เราพบ" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "สถานที่ตั้งของเซิร์ฟเวอร์ของคุณที่คุณวางไฟล์ Ushahidi ของคุณ เราได้ตรวจพบโดยอัตโนมัติค่านี้ โปรดตรวจสอบให้แน่ใจว่ามันถูกต้อง. ถ้าเขตว่างเปล่าไม่ต้องกังวลเพราะหมายความว่า Ushahidi มีการติดตั้งที่ไดเรกทอรีระดับบนสุด" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "เสร็จสิ้น" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "ทั่วไป" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API คีย์" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "ทุกคนสามารถได้รับคีย์ API ได้รับของคุณตอนนี้ " + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "กลับไป" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "การติดตั้งขั้นสูง" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "รับการตั้งค่าพื้นฐานทั้งหมดผ่านกระบวนการ 5 ขั้นตอนนี้ ซึ่งรวมถึงเซิร์ฟเวอร์ แผนที่ ชื่อเว็บไซต์และรายละเอียดติดต่อ" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "การติดตั้งขั้นพื้นฐาน" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "ง่ายและรวดเร็ว สิ่งที่คุณต้องใช้คือไดเรกทอรีของเว็บไซต์ของคุณและข้อมูลจากฐานข้อมูลของคุณ เลือกตัวเลือกนี้ถ้าคุณต้องการที่จะได้รับการทำงานที่รวดเร็ว นอกจากนี้คุณก็สามารถกำหนดค่าอื่นๆในเวลาภายหลังได้" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "ดำเนินการ" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "ยินดีต้อนรับสู่เซิร์ฟเวอร์ Ushahidi เลือกชนิดของการติดตั้งที่คุณต้องการข้างล่าง" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "ติดตั้งสำเร็จ" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "เมล์เซิร์ฟเวอร์" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "เมล์เซิร์ฟเวอร์โฮสต์" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "ตัวอย่าง: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "รหัสผ่านอีเมลเซิร์ฟเวอร์" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "รหัสผ่านที่คุณใช้เพื่อเข้าสู่ระบบในอีเมล์ของคุณ" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "พอร์ตเซิร์ฟเวอร์เมล์" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "พอร์ตสามัญ: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "ประเภทเซิร์ฟเวอร์อีเมล์" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "ข้อความอินเทอร์เน็ตโปรโตคอล (IMAP) หรือ ไปรษณีย์โปรโตคอล (POP) ความแตกต่างคืออะไร? " + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "ชื่่อเข้าใช้งานเซิร์ฟเวอร์เมล์" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "หากคุณใช้ Gmail, Hotmail หรือ Yahoo Mail, ให้ใส่ที่อยู่อีเมลเพื่อเป็นชื่อผู้ใช้งาน" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "แผนที่" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "ผู้ให้บริการแผนที่" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi ทำงานได้ดีกับสามผู้ให้บริการการทำแผนที่ดั้งต่อไปนี้: Google, Bing หรือ Open Street Map โปรดเลือกบริการการทำแผนที่่ที่ให้รายละเอียดมากที่สุดในพื้นที่ของคุณ" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "ขั้นตอนอื่นๆ ..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "รหัสผ่าน" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "รหัสผ่านสำหรับฐานข้อมูลของคุณ" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "ก่อน" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "โปรดรีสตาร์ท Apache เซิร์ฟเวอร์ของคุณ" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "เปิดหรือปิดการใช้งาน SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "เซิร์ฟเวอร์อีเมล์บางอย่างให้คุณเลือกใช้ SSL เมื่อมีการเชื่อมต่อ แนะนำให้ใช้ SSL เพราะจะช่วยเพิ่มระดับความปลอดภัย" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "ตั้งค่าเซิร์ฟเวอร์ SMS ของคุณ" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "อีเมล์ไซต์" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "ไซต์แจ้งเตือนอีเมล์" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "เมื่อผู้เข้าชมเว็บไซต์ของคุณลงทะเบียนสำหรับการแจ้งเตือนอีเมล พวกเขาจะได้รับอีเมลจากที่อยู่นี้ ที่อยู่อีเมลนี้ไม่จำเป็นต้องเป็นชื่อเดียวกันกับที่อยู่อีเมล์เว็บไซต์" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "ไซต์อีเมล์สื่อสารจะผ่านทางที่อยู่นี้" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "ชื่อไซต์" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "ชื่อของไซต์ของคุณ" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "ไซต์ Tagline" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Tagline ของคุณ" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "ไฟล์และโฟลเดอร์ที่แสดงด้านล่างจะต้องสามารถเขียนได้โดยเว็บเซิร์ฟเวอร์ของคุณ" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

ที่่นี่่มีคำแนะนำสำหรับการเปลี่ยนสิทธิ์ไฟล์:

\n" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "ก่อนที่คุณจะเริ่มต้น คุณจะต้องแน่ใจว่าไฟล์ดังต่อไปนี้และโฟลเดอร์ที่มีสามารถเขียนได้โดยเว็บเซิร์ฟเวอร์ของคุณ ซึ่งเกี่ยวข้องกับการเปลี่ยนแปลงสิทธิ์ของแฟ้ม" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "สำหรับขั้นตอนการติดตั้ง โปรดมีข้อมูลดังต่อไปนี้ติดตัว" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "คำนำหน้าตาราง" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "ปกติคุณจะไม่เปลี่ยนคำนำหน้าตาราง แต่ถ้าคุณต้องการที่จะเรียกใช้การติดตั้ง Ushahidi จากหลายฐานข้อมูลเดียว คุณสามารถทำได้โดยการเปลี่ยนคำนำหน้าตารางที่่นี่่" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "ชื่อเรื่อง" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "เพื่อเข้าสู่ระบบไปที่่" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "อัปโหลดข้อมูลรายงาน" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "ชื่อผู้ใช้" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "ชื่อผู้ใช้ฐานข้อมูล" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "และใช้สิทธิดังต่อไปนี้" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "ดูเว็บไซต์ของคุณ" diff --git a/application/i18n/po/po-th_TH/layer.po b/application/i18n/po/po-th_TH/layer.po new file mode 100644 index 0000000000..8e49104a7a --- /dev/null +++ b/application/i18n/po/po-th_TH/layer.po @@ -0,0 +1,65 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-13 06:47+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "พื้นที่สีต้องมี 6 ตัวอักษร" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "จำเป็นต้องป้อนข้อมูลในฟิล์ดสี" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "ช่องไฟล์ไม่ปรากฏไฟล์ที่ถูกต้องตามรูปแบบ รูปแบบที่ใช้ได้คือ .KMZ และ .KML" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "ช่องไฟล์ไม่ปรากฏไฟล์ที่ถูกต้องตามรูปแบบ" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "ชื่อจะต้องไม่น้อยกว่า 3 ตัวอักษร และไม่มากกว่า 80 ตัวอักษร" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "จำเป็นต้องใส่ชื่อ" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "จำเป็นต้องใส่ไฟล์ URL หรือ KML " + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "คุณไม่สามารถมีทั้งไฟล์ KML และ URL" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "โปรดใส่ URL ที่ถูกต้อง เช่น http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-th_TH/libraries.po b/application/i18n/po/po-th_TH/libraries.po new file mode 100644 index 0000000000..77389c4a76 --- /dev/null +++ b/application/i18n/po/po-th_TH/libraries.po @@ -0,0 +1,119 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-24 05:17+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "ไม่สามารถเชื่อมต่อไปยังเซิร์ฟเวอร์ Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "ไม่สามารถเรียกการตอบสนองจาก Akismet " + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "ห้องสมุด API: %sสำหรับ%s ไม่พบclass กรุณาตรวจสอบตารางงาน API ของคุณ" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "คีย์ API Akismet ของคุณไม่ถูกต้อง" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "ข้อผิดพลาดเกิดขึ้นในขณะที่ระบบดำเนินการส่ง fopen
กรุณาตรวจสอบว่า PHP ใช้งานร่วมกับ OpenSSLได้ และเช็คว่า PHP เป็นเวอร์ชั่นที่สูงกว่า 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "ข้อความยูนิโค้ดของคุณยาวเกินไป! (ความยาวปัจจุบัน=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "โปรดระบุที่อยู่ปลายทาง (ถึง)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "กรุณาระบุแหล่งที่อยู่ (จาก)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "ข้อความยูนิโค้ดของคุณยาวเกินไป! (ความยาวปัจจุบัน=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "ไม่สนับสนุนวิธีการส่ง!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "ห้องสมุด API %s ไม่ถูกต้อง ห้องสมุด API ทั้งหมดจะต้องเป็นหมวดหมู่ย่อยของ %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "ไดเรกทอรี %s ไม่สามารถลบได้" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "ข้อผิดพลาดเกิดขึ้นในขณะที่ทำการสกัด: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "ดาวน์โหลด Ushahidi ล่าสุดล้มเหลว รหัสสถานะ HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "ไฟล์ %s ไม่สามารถคัดลอก" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "ไฟล์ %s ไม่สามารถลบได้" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "อัพเกรดสคริปต์ Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "ซิปไฟล์ดาวน์โหลด Ushahidi %s ไม่สามารถเขียนได้" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s ไม่สามารถใช้ได้ในประเภท RiverID" diff --git a/application/i18n/po/po-th_TH/maintenance.po b/application/i18n/po/po-th_TH/maintenance.po new file mode 100644 index 0000000000..2ba0fc4653 --- /dev/null +++ b/application/i18n/po/po-th_TH/maintenance.po @@ -0,0 +1,25 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-24 05:18+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "ขออภัยเว็บไซต์ของเรากำลังดำเนินการปรับปรุ่งระบบ โปรดลองอีกครั้งในไม่กี่นาที" diff --git a/application/i18n/po/po-th_TH/message.po b/application/i18n/po/po-th_TH/message.po new file mode 100644 index 0000000000..a14652e039 --- /dev/null +++ b/application/i18n/po/po-th_TH/message.po @@ -0,0 +1,63 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-24 05:30+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัย" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "กรุณาใส่รหัสรักษาความปลอดภัย" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "ช่องอีเมล์ไม่ปรากฏอีเมล์ที่ถูกต้อง" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "ช่องอีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และความยาวไม่เกิน 64 ตัวอักษร" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "จำเป็นต้องใส่อีเมล์ในช่องทำเครื่องหมายถูกได้ทำการเช็คถูก" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "กรุณาใส่ความคิดเห็นในช่องแสดงความคิดเห็น" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "ฟิล์ดชื่อต้องมีอย่างน้อย 3 ตัวอักษร" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "กรุณาใส่ชื่อในฟิล์ดชื่อ" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "เบอร์โทรไม่ถูกต้อง" diff --git a/application/i18n/po/po-th_TH/mhi.po b/application/i18n/po/po-th_TH/mhi.po new file mode 100644 index 0000000000..14d174388f --- /dev/null +++ b/application/i18n/po/po-th_TH/mhi.po @@ -0,0 +1,53 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-24 05:36+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "กรุณากรอกรหัสรักษาความปลอดภัย" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "กรุณากรอกรหัสรักษาความปลอดภัย" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "อีเมล์ไม่ถูกต้อง" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "โปรดใส่อีเมลที่ถูกต้อง" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "จำเป็นต้องใส่ข้อความในช่องข้อความ" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "ช่องประเภทต้องมีอย่างน้อย 3 ตัวอักษร" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "จำเป็นต้องใส่ประเภท" diff --git a/application/i18n/po/po-th_TH/notifications.po b/application/i18n/po/po-th_TH/notifications.po new file mode 100644 index 0000000000..7f60c77094 --- /dev/null +++ b/application/i18n/po/po-th_TH/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-24 06:36+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "ข้อความนี้ถูกส่งมาจากเว็บไซต์ของคุณ" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "เข้าสู่ระบบสำหรับผู้ดูแลระบบ" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "ความคิดเห็นใหม่ได้ถูกส่งไปยังเว็บไซต์ของคุณเพื่อตอบสนอง:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "ความเห็นใหม่" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "ข้อความอีเมล์ใหม่ได้รับการส่งไปยังเว็บไซต์ของคุณ" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "อีเมล์ข้อความใหม่" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "รายงานฉบับใหม่ที่ได้รับการส่งไปยังเว็บไซต์ของคุณ" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "รายงานใหม่" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "ข้อความใหม่ได้รับการส่งไปยังเว็บไซต์ของคุณ" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "ข้อความใหม่" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "คุณได้รับการแจ้งเตือนใหม่" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "การแจ้งเตือนใหม่!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "คุณได้รับข้อความส่วนตัว" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "ข้อความส่วนตัวใหม่" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "เพื่อตอบโปรดไปที่:" diff --git a/application/i18n/po/po-th_TH/page.po b/application/i18n/po/po-th_TH/page.po new file mode 100644 index 0000000000..5db4a36940 --- /dev/null +++ b/application/i18n/po/po-th_TH/page.po @@ -0,0 +1,38 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-24 06:38+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "กรุณาใส่ชื่อหน้า" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "ชื่อหน้าจะต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 150 ตัวอักษร" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "กรุณาใส่ชื่อของแท็ปเพจ" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "กรุณาป้อนรายละเอียดของเพจ" diff --git a/application/i18n/po/po-th_TH/permissions.po b/application/i18n/po/po-th_TH/permissions.po new file mode 100644 index 0000000000..8482a18246 --- /dev/null +++ b/application/i18n/po/po-th_TH/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-08-24 07:05+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "ดูรายงาน" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "สร้าง/แก้ไข/ลบรายงาน" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "อนุมัติรายงาน" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "ตรวจสอบรายงาน" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "จัดการความเห็นรายงาน" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "ดาวน์โหลดรายงาน" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "อัปโหลดรายงาน" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "จัดการข้อความ" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "จัดการข้อความผู้สื่อข่าว" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "ดูสถิติ" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "ปรับเปลี่ยนการตั้งค่า" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "จัดการพาเนล" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "จัดการผู้ใช้" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "จัดการบทบาท" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "เข้าใช้ได้" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "จัดการการเข้าใช้" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "เข้าสู่แบบแอดมิน UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "เข้าสู่สมาชิก UI" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "ลบรายงานทั้งหมด" diff --git a/application/i18n/po/po-th_TH/private_message.po b/application/i18n/po/po-th_TH/private_message.po new file mode 100644 index 0000000000..cc46b4f914 --- /dev/null +++ b/application/i18n/po/po-th_TH/private_message.po @@ -0,0 +1,48 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-03 04:19+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "ID หลักจะต้องเป็นตัวเลข" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "ต้องป้อนข้อมูลในฟิล์ด To" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "ผู้ใช้ที่คุณกำลังส่งข้อความถึงไม่ปรากฏชื่อในฐานข้อมูล" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "ต้องป้อนข้อมูลในฟิล์ดหัวข้อ" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "หัวข้อต้องมีความยาวระหว่าง 3 ตัวอักษร ถึง 150 ตัวอักษร" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "ต้องป้อนข้อมูลในฟิล์ดข้อความ" diff --git a/application/i18n/po/po-th_TH/report.po b/application/i18n/po/po-th_TH/report.po new file mode 100644 index 0000000000..916a3874e2 --- /dev/null +++ b/application/i18n/po/po-th_TH/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-09-03 05:07+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "ผิดพลาด!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "การใช้งานนี้ครอบคลุมภายในประเทศเดียวเท่านั้น โปรดตรวจสอบให้แน่ใจว่าสถานที่รายงานอยู่ในประเทศนั้น%s" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "กรุณาป้อนค่าที่ถูกต้องในช่อง \"%s\" " + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "ฟิล์ด \"%s\" จะต้องเป็นตัวเลข" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "จำเป็นต้องป้อนข้อมูลในฟิล์ด\"%s\"" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "ฟิล์ด \"%s\" ไม่ปรากฏข้อมูล" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "บัญชีของคุณไม่สามารถแก้ไข \"%s\"" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "ฟิล์ด \"%s\" จะต้องมีที่อยู่อีเมลที่ถูกต้อง" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "ฟิล์ด \"%s\" จะต้องมีหมายเลขโทรศัพท์ที่ถูกต้อง" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "ฟิล์ด \"%s\" จะต้องมีวันที่ถูกต้อง (วัน/เดือน/ ปี)" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "ฟิล์ด \"%s\" จะต้องมีวันที่ถูกต้อง (วัน/เดือน/ ปี)" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "กรุณาเลือกรายการที่ปรากฏเพื่อทำการดาวน์โหลด" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "กรุณาเลือกรายการที่ปรากฏเพื่อทำการดาวน์โหลด" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "กรุณาเลือก \"รายงานรอการอนุมัติ\" หรือ \"รายงานได้รับการอนุมัติ\" หรือทั้งสองอย่าง" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "กรุณาเลือก \"รายงานรอการอนุมัติ\" หรือ \"รายงานได้รับการอนุมัติ\" หรือทั้งสองอย่าง" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "กรุณาเลือก \"รายงานรอการอนุมัติ\" หรือ \"รายงานได้รับการอนุมัติ\" หรือทั้งสองอย่าง" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "กรุณาเลือก \"รายงานรอการตรวจสอบ\" หรือ \"รายงานได้รับการตรวจสอบ\" หรือทั้งสองอย่าง" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "กรุณาเลือก \"รายงานรอการตรวจสอบ\" หรือ \"รายงานได้รับการตรวจสอบ\" หรือทั้งสองอย่าง" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "กรุณาเลือก \"รายงานรอการตรวจสอบ\" หรือ \"รายงานได้รับการตรวจสอบ\" หรือทั้งสองอย่าง" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "กรุณาเลือกรายงานที่ปรากฏเพื่อการดาวน์โหลด" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "กรุณาเลือกรายงานที่ปรากฏเพื่อการดาวน์โหลด" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "กรุณาเลือกรายงานที่ปรากฏเพื่อการดาวน์โหลด" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "คุณต้องเลือกรูปแบบการดาวน์โหลด เลือกอย่างใดอย่างหนึ่ง CSV หรือ XML" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "กรุณาเลือกรูปแบบที่ปรากฏเพื่อดาวน์โหลดยังรายงานของคุณ" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "ฟิล์ดวันที่ \"จาก\" ไม่ปรากฏวันที่ที่ถูกต้อง" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "กรุณาป้อนวันที่ที่ถูกต้อง และไม่สามารถจะเกินวันนี้ได้" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "กรุณาใส่ค่าที่ถูกต้องในการอนุมัติรายงานนี้" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "กรุณาใส่ค่าที่ถูกต้องในการอนุมัติรายงานนี้" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "ฟิล์ด am/pm ไม่ปรากฏค่าที่ถูกต้อง" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "ช่อง \"หมวดหมู่\" ไม่ปรากฏหมวดหมู่ที่ถูกต้อง" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "จำเป็นต้องใส่ \"หมวดหมู่\" " + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "ฟิลด์วันที่ไม่ปรากฏวันที่ถูกต้อง" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "ฟิลด์วันที่ไม่ปรากฏวันที่ถูกต้อง" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "จำเป็นต้องใส่ฟิลด์วันที่" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "จำเป็นต้องใส่ \"คำอธิบาย\"" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "ช่องชั่วโมงไม่ปรากฏชั่วโมงที่ถูกต้อง" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "จำเป็นต้องใส่ชั่วโมง" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าจะเป็นของข้อมูล" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าจะเป็นของข้อมูล" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "ช่องนาทีไม่ปรากฏค่าที่ถูกต้อง" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "จำเป็นต้องใส่นาที" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "URL ที่เชื่อมโยงแหล่งข่าวไม่ถูกต้อง" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "โปรดตรวจสอบว่าภาพมีขนาดการอัปโหลดไม่เกิน 2MB" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "รูปแบบภาพที่จะให้อัพโหลดไม่ถูกต้อง รูปแบบภาพที่ใช้ได้คือ .JPG, .PNG และ .GIF" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "ภาพที่ให้อัพโหลดไม่ถูกต้อง" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าเชื่อถือของแหล่งที่มา" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าเชื่อถือของแหล่งที่มา" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "\"ชื่อเรื่องของรายงาน\" ต้องมีอย่างน้อย 3 และไม่เกิน 200 ตัวอักษร" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "จำเป็นต้องใส่ \"ชื่อรายงาน\"" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "เป็นไปได้ว่าอาจจะมีการโจมตี CSRF คุณต้องการสร้าง/แก้ไขรายงานจริงหรือไม่" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "กรุณาใส่ค่าที่ถูกต้องในการตรวจสอบรายงานนี้" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "กรุณาใส่ค่าที่ถูกต้องในการตรวจสอบรายงานนี้" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "ช่องวิดีโอลิงก์ไม่ปรากฏ URL ที่ถูกต้อง" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "ช่องละติจูดไม่ปรากฏละติจูดที่ถูกต้อง" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "จำเป็นต้องใส่ละติจูด กรุณาคลิกแผนที่เพื่อระบุตำแหน่ง" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "ช่องสถานที่มีค่าที่ไม่ถูกต้อง" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "รายงานนี้มีการแปลเป็นภาษานี้แล้ว" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "ช่องสถานที่มีค่าที่ไม่ถูกต้อง" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "รายงานต้นฉบับและที่แปลมีสถานที่เกิดเหตุที่เดียวกัน (ภาษาท้องถิ่น)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "จำเป็นต้องระบุสถานที่เกิดเหตุ" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "ช่อง \"ตั้งชื่อ\" ต้องมีอย่างน้อย 3 และไม่เกิน 200 ตัวอักษร" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "จำเป็นต้องใส่ \"ชื่อสถานที่\"" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "ช่องลองจิจูดไม่ปรากฏลองจิจูดที่ถูกต้อง" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "จำเป็นต้องใส่ลองจิจูด กรุณาคลิกบนแผนที่เพื่อระบุตำแหน่ง" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "ช่องอีเมลไม่ปรากฏที่อยู่อีเมลที่ถูกต้อง" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "ช่องอีเมล์ต้องมีอย่างน้อย 4 และไม่เกิน 64 ตัวอักษร" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "ช่องสำหรับชื่อต้องมีอย่างน้อย 3 และไม่มากกว่า 100 ตัวอักษร" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "ช่องสำหรับนามสกุลต้องมีอย่างน้อย 2 และไม่มากกว่า 100 ตัวอักษร" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "ช่องวันที่ \"ถึง\" ไม่ปรากฏวันที่ที่ถูกต้อง" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "จำเป็นต้องใส่วันที่ และไม่สามารถจะเกินวันนี้ได้" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "วันที่จากไม่สามารถมากกว่าวันที่ถึง" diff --git a/application/i18n/po/po-th_TH/reporters.po b/application/i18n/po/po-th_TH/reporters.po new file mode 100644 index 0000000000..17963c6350 --- /dev/null +++ b/application/i18n/po/po-th_TH/reporters.po @@ -0,0 +1,73 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-03 05:12+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "ช่องละติจูดไม่ปรากฏละติจูดที่ถูกต้อง" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "จำเป็นต้องใส่ละติจูด กรุณาคลิกบนแผนที่เพื่อระบุตำแหน่ง" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "ช่องระดับผู้รายงานไม่ปรากฏระดับที่ถูกต้อง" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "ช่องระดับผู้รายงานข่าวไม่ปรากฏระดับที่ถูกต้อง" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "ชื่อที่ตั้งจะต้องมีอย่างน้อย 3 และไม่เกิน 200 ตัวอักษร" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "จำเป็นต้องใส่ชื่อที่ตั้ง" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "ช่องลองจิจูดไม่ปรากฏลองจิจูดที่ถูกต้อง" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "จำเป็นต้องใส่ลองจิจูด กรุณาคลิกบนแผนที่เพื่อระบุตำแหน่ง" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "ผู้รายงานไม่ถูกต้อง" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "ผู้รายงานไม่ถูกต้อง" diff --git a/application/i18n/po/po-th_TH/reports.po b/application/i18n/po/po-th_TH/reports.po new file mode 100644 index 0000000000..d72351a0c6 --- /dev/null +++ b/application/i18n/po/po-th_TH/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Boripat Lebel , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-03 05:18+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "โปรดตรวจสอบว่าคุณได้ทำการเช็ครายการ" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "โปรดตรวจสอบว่าคุณได้ทำการเช็ครายการ" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "รายงานต้องมีการจัดหมวดหมู่ก่อนที่จะสามารถได้รับการอนุมัติ" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "คุณไม่ได้รับอนุญาตให้ดำเนินการนี้" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "คุณต้องเลือกไฟล์ที่จะอัปโหลด" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "อัพโหลดไฟล์ต้องอยู่ในรูปแบบ .csv หรือ .xml " + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "ช่องอัปโหลดไฟล์มีไฟล์ที่ไม่ถูกต้อง" diff --git a/application/i18n/po/po-th_TH/roles.po b/application/i18n/po/po-th_TH/roles.po new file mode 100644 index 0000000000..23283962ee --- /dev/null +++ b/application/i18n/po/po-th_TH/roles.po @@ -0,0 +1,64 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-03 07:12+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "ช่องคำอธิบายต้องมีอย่างน้อย 3 และไม่มากกว่า 100 ตัวอักษร" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "จำเป็นต้องใส่คำอธิบาย" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "ช่องชื่อจะต้องมีเพียงตัวอักษรหรือตัวเลข" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "ฟิล์ดชื่อต้องมีอย่างน้อย 2 ตัวอักษรและไม่เกิน 30 ตัวอักษร" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "บทบาท superadmin ไม่สามารถถูกแก้ไขได้" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "จำเป็นต้องใส่ชื่อ" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level ฟิล์ดจะต้องมีตัวเลขระหว่าง 0 - 100" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Access Level ฟิล์ดจะต้องมีตัวเลขระหว่าง 0 - 100" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Permission ฟิล์ดจะต้องมีตัวเลขระหว่าง 0 - 100" diff --git a/application/i18n/po/po-th_TH/settings.po b/application/i18n/po/po-th_TH/settings.po new file mode 100644 index 0000000000..cbee3927ee --- /dev/null +++ b/application/i18n/po/po-th_TH/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-09-12 14:35+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "ฟิล์ดแสดงความคิดเห็นไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "จำเป็นต้องใส่แสดงความคิด" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "ช่องฟีดไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "จำเป็นต้องใส่ฟีด" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "ช่องมวดหมู่ของฟีดไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "จำเป็นต้องใส่หมวดหมู่ฟีด" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "ช่องแจ้งเตือนไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "จำเป็นต้องใส่แจ้งเตือนที่อนุญาต" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "ช่องรายงานข้อมูลไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "จำเป็นต้องใส่รายงานที่อนุญาต" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "ฟิล์ดสถิติไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "จำเป็นต้องเพิ่มข้อมูลในฟิล์ดสถิติ" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "หมายเลขเริ่มต้นของระเบียนที่จะเรียกตามคำขอ API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "จำนวนสูงสุดของบันทึกที่จะเรียกตามคำขอ API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "จำนวนสูงสุดของการร้องขอ API ต่อที่อยู่ IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "ฟิล์ด Akismet ไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "ฟิล์ด Akismet ไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "ช่องเว็บไซต์แบนเนอร์ไม่ปรากฏภาพที่ถูกต้องตามรูปแบบที่ได้รับการยอมรับซึ่งคือ .JPG, .PNG และ .GIF" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "โปรดตรวจสอบว่า \"ภาพแบนเนอร์\" มีขนาดน้อยกว่า 250 KB" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "ช่อง \"ภาพแบนเนอร์\" ไม่ปรากฏไฟล์ที่ถูกต้อง" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "จำเป็นต้องใส่ข้อมูลหน้าแคช" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "แคชไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "ฟิล์ดอายุใช้งานในหน้าสำแคชไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "จำเป็นต้องใส่ฟิล์ดอายุใช้งานในหน้าแคช" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "ดูเหมือนว่าเซิร์ฟเวอร์ของคุณไม่ได้กำหนดค่า URL ที่สะอาดได้ คุณจะต้องเปลี่ยนการตั้งค่าของเซิร์ฟเวอร์ของคุณก่อนที่คุณจะ สามารถเปิดใช้งาน URL ที่สะอาด ดูข้อมูลเพิ่มเติมเกี่ยวกับ วิธีการเปิดใช้ URL this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "ตัวเลือกนี้จะทำให้ Ushahidi ที่จะเข้าถึงได้ผ่านทาง URL ที่ \"สะอาด\" (โดยไม่ต้อง \"index.php\" ใน URL)" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "เปิดใช้งาน คลีน URLs " + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "คลีน URLs" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "ฟิล์ดหมายเลขของ Clickatell API จะต้องไม่เกิน 20 ตัวอักษร" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "จำเป็นต้องใส่ตัวเลขในฟิล์ด Clickatell API" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "ฟิล์ดรหัสผ่าน Clickatell ต้องมีอย่างน้อย 5 และไม่มากกว่า 50 ตัวอักษร" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "จำเป็นต้องใส่รหัสผ่านฟิล์ด Clickatell" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "ฟิล์ดชื่อผู้ใช้งาน Clickatell จะต้องไม่เกิน 50 ตัวอักษร" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "จำเป็นต้องใส่ฟิล์ดชื่อผู้ใช้งาน Clickatell" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "กำหนดค่าแผนที่" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "เริ่มต้นที่" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "ฟิล์ดสีไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "ฟิล์ดสีจะต้องไม่มากกว่า 6 ตัวอักษรยาว" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "จำเป็นต้องใส่ฟิล์ดสี" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "ค่าเริ่มต้นมุมมองแผนที" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "ตั้งการซูมที่ค่าเริ่มต้น" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "เรียกเมืองจาก Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายยาวเกินไป" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายควรมีตัวเลขเท่านั้น" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "รหัสผ่านเมล์เซิร์ฟเวอร์ต้องมีอย่างน้อย 5 และไม่มากกว่า 50 ตัวอักษร" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "จำเป็นต้องใส่ฟิล์ดรหัสผ่านเมลเซิร์ฟเวอร์" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายยาวเกินไป" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายควรมีตัวเลขเท่านั้น" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายยาวเกินไป" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "จำเป็นต้องใส่ฟิล์ดเซิร์ฟเวอร์จดหมาย" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "ฟิล์ดชื่อผู้ใช้เซิร์ฟเวอร์อีเมลจะต้องไม่มากกว่า 50 ตัวอักษร" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "จำเป็นต้องใส่ฟิล์ดชื่อผู้ใช้เซิร์ฟเวอร์อีเมล์" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "ตัวเลือกการตั้งค่า Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "เพื่อจะเอาข้อมูลด้านล่างนี้ คุณจะต้องสร้าง Facebook ใหม่" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "การตั้งค่าให้ผู้ใช้ระบบสามารถเข้าสู่ระบบผ่านทาง Facebook, นี้ ไม่ สร้าง โปรแกรม Facebookสำหรับใช้งาน" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "ฟิล์ด Google Analytics จะต้องมี Web Property ID ในรูปแบบ UA-XXXXX-XX" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "เปิดใช้งาน HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "ตัวเลือกนี้จะทำให้ Ushahidi เข้าถึงได้ในโหมด unsecure; โดยไม่ต้อง \"https://\" ในคำนำหน้า URL " + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "ตัวเลือกนี้จะทำให้ Ushahidi เข้าถึงได้ในโหมด unsecure; โดยไม่ต้อง \"https://\" ในคำนำหน้า URL " + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "ช่องรายการต่อหน้า(ส่วนหน้า)ไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "จำเป็นต้องใส่รายการต่อหน้า(ส่วนหน้า)" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "ช่องรายการต่อหน้า(ผู้ดูแลระบบ)ไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "จำเป็นต้องใส่ายการต่อหน้า(ผู้ดูแลระบบ)" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "การตั้งค่าผู้ให้บริการแผนที่ของคุณกำลังดำเนินการ เลือกผู้ให้บริการได้รับโดยการใส่ค่า API คีย์ที่ได้รับมาจากผู้ให้บริการ " + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "ระดับซูม" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "เลือกผู้ให้บริการแผนที่" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "ใส่คีย์ API ใหม่" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "รับคีย์ API " + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "การตั้งค่าผู้ให้บริการแผนที่ของคุณ เป็นกระบวนการที่ ตรงไปข้างหน้า เลือกผู้ให้บริการได้รับคีย์ APIจากเว็บไซต์ของผู้ให้บริการ และ ใส่ คีย์ API" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "ผู้ให้บริการแผนที่" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "ไทม์ไลน์แผนที่" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "ตั้งค่าแผนที่" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "การใช้งาน Ushahidi นี้คลอบคลุมหลายประเทศหรือไม่?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "กรุณาเลือกประเทศเริ่มต้น" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "คลิกและลากแผนที่เพื่อกำหนดตำแหน่งที่แน่นอนของคุณ" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "กลุ่มรายงานบนแผนที่" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "อนุญาตให้ผู้ใช้ส่งความเห็นไปยังรายงาน" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "รวม RSS ฟีดข่าวบนเว็บไซต์" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "สร้างหมวดหมู่ใหม่จากฟีด" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "ให้ผู้ใช้สามารถสมัครรับการแจ้งเตือน" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "ให้ผู้ใช้ส่งรายงานได้" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "คีย์ Akismet " + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "เว็บไซต์แบนเนอร์" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "บล็อกต่อแถว" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "หน้าแคช" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "ช่วงอายุของหน้าแคช" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "เปิดใช้งานการเช็คอิน" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "แถลงเป็นเว็บไซต์ Copyright" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "ตั้งสีเริ่มต้นสำหรับทุกหมวดหมู่" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "ตั้งไอคอนเริ่มต้นสำหรับทุกหมวดหมู่" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "ลบภาพแบนเนอร์" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "ลบไอคอนเริ่มต้น" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "แสดงหน้าติดต่อ" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "แสดงหน้า \"วิธีการช่วยเหลือ\" " + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "ที่อยู่อีเมล์สำหรับแจ้งเตือน" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "เพื่อที่จะได้รับรายงานทางอีเมลกรุณาตั้งค่าบัญชีในอีเมลของคุณ" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "อีเมล์เว็บไซต์" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "รหัสคุณสมบัติเว็บ - รูปแบบ: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "รายการต่อหน้า - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "รายการต่อหน้า - ผู้ดูแลระบบ" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "ป้องกัน สแปมความคิดเห็น โดยใช้ Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "ข้อมูลประจำตัว Laconica" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "เว็บไซต์ Laconica " + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "ไซต์ภาษา" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "อนุมัติผู้ใช้ด้วยตนเอง" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "ข้อความในเว็บไซต์" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "ชื่อเว็บไซต์" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "การใช้งานส่วนตัว" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "ผู้ใช้จำเป็นต้องมีการยืนยันอีเมล์" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "ส่งข้อความรายงาน" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "เปิดใช้งานสถิติ (เก็บไว้บนเซิร์ฟเวอร์ของ Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Tagline เว็บไซต์" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "โซนเวลา" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "ตั้งค่าไซต์" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "เงื่อนไขการค้นหาของ Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "# - แยกด้วยเครื่องหมายจุลภาค" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "ฟีด geolocation - ชื่อผู้ใช้ Geonames" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "ช่องอีเมล์เว็บไซต์ไม่ปรากฏที่อยู่อีเมลที่ถูกต้อง" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "ช่องอีเมล์เว็บไซต์ต้องมีอย่างน้อย 4 และรไม่มากกว่า 100 ตัวอักษร" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "ช่องชื่อเว็บไซต์ต้องมีอย่างน้อย 3 และไม่มากกว่า 50 ตัวอักษร" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "จำเป็นต้องใส่ชื่อเว็บไซต์" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "ช่อง tagline ต้องมีอย่างน้อย 3 และไม่มากกว่า 100 ตัวอักษร" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "จำเป็นต้องใส่ tagline" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "ตัวเลข Clickatell API ของคุณ" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "ตรวจสอบ Clickatell เครดิตยอดคงเหลือของคุณ" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "โหลดเครดิตบาลานซ์" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "รหัสผ่าน Clickatell ของคุณ " + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "สมัครใช้บริการ Clickatells โดย href=\"https://www.clickatell.com/central/user/client/step1.php?prod_id=2\" คลิกที่นี่ " + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "ใส่ข้อมูล Clickatell ของคุณด้านล่าง" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "ชื่อผู้ใช้งาน Clickatell ของคูณ" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "Frontline SMS เป็นซอฟต์แวร์ฟรีและเปิดแหล่ง ที่ช่วยให้ ผู้ใช้สามารถส่ง และรับข้อความ กับกลุ่ม ใหญ่ของผู้คน ผ่านโทรศัพท์มือถือ คลิกที่กล่องด้านล่างเพื่อ ดาวน์โหลดรุ่นล่าสุด จาก FrontlineSMS.com" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "ดาวน์โหลดและติดตั้ง FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "คำแนะนำโดยละเอียด เกี่ยวกับวิธีการ ส่ง SMS จากการติดตั้ง FronlineSMS ของคุณมีอยู่ here คีย์ URL และ API ด้านล่าง จะต้องตั้งค่าการซิงค์ กับ FrontlineSMS" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "คัดลอกและวางลงในช่อง FrontlineSMS \"ที่อยู่\"" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "คัดลอกและวางลงในช่อง FrontlineSMS \"Ushahidi API คีย์\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "เชื่อมต่อ FrontlineSMS กับที่จะใช้งาน Ushahidi " + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "ใส่หมายเลขโทรศัพท์ที่เชื่อมต่อกับ Frontline SMS ด้านล่าง" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "ใส่จำนวนโดยไม่ใช้ + หรือขีดกลางด้านล่าง" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "ตัวเลือกที่ 1: ใช้ Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "ตัวเลือกที่ 2: ใช้ทั่วโลก SMS เกตเวย์" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "ตัวเลือกการตั้งค่า SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "ช่องโทรศัพท์ 1 ไม่ปรากฏค่าที่ถูกต้อง" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "ช่องโทรศัพท์ 1 ควรมีตัวเลขเท่านั้น" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "ช่องโทรศัพท์ 2 ยาวเกินไป" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "ช่องโทรศัพท์ 2 ควรมีตัวเลขเท่านั้น" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "ช่องโทรศัพท์ 3 ยาวเกินไป" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "ช่องโทรศัพท์ 3 ควรที่จะมีแต่ตัวเลข" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "ตัวเลือกการตั้งค่าของทวิตเตอร์" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "เพื่อที่จะได้รับข้อมูลด้านล่างโปรดตั้งค่าการใช้งานของคุณเป็นโปรแกรมทวิตเตอร์ใหม่ที่" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "คีย์ของผู้บริโภค" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "ข้อมูลส่วนตัวผู้ใช้" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "เข้าสู่โทเค็น" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "เข้าสู่โทเค็นลับ" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "ตั้งค่าการทดสอบ" diff --git a/application/i18n/po/po-th_TH/sharing.po b/application/i18n/po/po-th_TH/sharing.po new file mode 100644 index 0000000000..ebc8a204b0 --- /dev/null +++ b/application/i18n/po/po-th_TH/sharing.po @@ -0,0 +1,73 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-06 03:51+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "วันที่เข้า" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "เพิ่มเมื่อวันที่" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "เข้ามาครั้งล่าสุด" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "ฟิล์ดสีต้องมี 6 ตัวอักษร" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "จำเป็นต้องป้อนข้อมูลในฟิล์ดสี" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "ชื่อที่ใช้ร่วมไม่ถูกต้อง" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "จำเป็นต้องใส่ชื่อที่ใช้ร่วม" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "URL เว็บไซต์นี้ใช้แล้ว" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "URL ของเว็บไซต์ไม่ถูกต้อง" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "จำเป็นต้องใส่ URL เว็บไซต์" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "URL ของเว็บไซต์ไม่ถูกต้อง" diff --git a/application/i18n/po/po-th_TH/stats.po b/application/i18n/po/po-th_TH/stats.po new file mode 100644 index 0000000000..8a35ba6425 --- /dev/null +++ b/application/i18n/po/po-th_TH/stats.po @@ -0,0 +1,199 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-09-12 14:09+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "ได้รับการอนุมัติ" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "หมวดหมู่" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "หมวดหมู่ผลกระทบ" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "แผนภูมินี้จะช่วยให้คุณเห็นเชิงเส้นของรายงานตามหมวดหมู่เมื่อเวลาผ่านไป เลื่อนจากซ้ายไปขวาเพื่อดูมุมมองและเปรียบเทียบประเภทที่แตกต่างกัน เลื่อนเมาส์บนกราฟสำหรับรายละเอียดเพิ่มเติม" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "เลือกช่วงวันที่" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "ประเทศ" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "ประเทศ" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "รายละเอียดประเทศ" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "นี้เป็นส่วนของสถิติและจะมีคำอธิบายทั่วไปในเร็วๆนี้ สำหรับตอนนี้เรียกดูรอบๆโดยการเชื่อมโยงหมวดหมู่ย่อยข้างต้น" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "ผิดพลาด" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "อภิธานศัพท์" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "ไปที่บทสรุปย่อ" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "ลีเจนด์" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "มุมมอง" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "จำนวนทั้งหมดของหน้าเว็บที่ผู้เข้าชมได้ดูในเว็บไซต์ของคุณ" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "รายงาน" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "หมวดหมู่รายงาน" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "สถิติรายงาน" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "สถานะรายงาน" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "รายงาน Punchcard" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "สถิติรายงาน" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "ไม่ได้ตั้งค่าสถิติ" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 เดือน" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 เดือน" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 เดือน" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "ทั้งหมด" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "ยังไม่อนุมัติ" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "ผู้เข้าชมที่ไม่ซ้ำกัน" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "จำนวนการเข้าชมงานของคุณรายบุคคลจะถูกให้ใช้ cookies ส่วนผู้เข้าชมที่ไม่ได้เปิดใช้งาน cookies จะถูกส่งไปแก้ไขข้อมูล ทั้งที่อยู่ IP ความละเอียด เบราว์เซอร์ ปลั๊กอิน OS ฯลฯ " + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "ไม่ได้ตรวจสอบ" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "ตรวจสอบแล้ว" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "สรุปข้อมูลผู้เข้าชม" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "เข้าชม" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "การเยี่ยมชมเป็นการบันทึกแบบรายบุคลที่มาเยี่ยมชมเว็บไซด์นานกส่า 30 นาทีผ่านหน้ามุมมองของผู้เยี่ยมชมเอง" diff --git a/application/i18n/po/po-th_TH/tooltips.po b/application/i18n/po/po-th_TH/tooltips.po new file mode 100644 index 0000000000..d02361cead --- /dev/null +++ b/application/i18n/po/po-th_TH/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "การเพิ่มรายงานในหมวดหมู่เพิ่มเติม กรณีคุณเลือกหมวดหมู่ที่ 1 แต่รายงานได้จัดประเภทไว้แล้วว่าอยู่ในรายงานประเภทที่ 2 ระบบจะจัดารให้รายงานนี้อยู่ในทั้งสองประเภท คือ ทั้งหมวด 1 และหมวด 2" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "อนุมัติรายงานหรือไม่ หากอนุมัติแล้วจะแสดงต่อสาธารณะได้" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "คุณสามารถที่จะกำหนด badge สาารถเลือก badge ได้ที่นี่" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "นี้เป็นช่วงของเวลาและ/หรือนาทีระหว่างสองเวลาในรูปแบบ 24 ชั่วโมง หากคุณใส่เวลาก่อนหน้านี้ในฟิลด์ที่สองมันก็จะถูกพลิกกับครั้งแรก เวลาพวกนี้จะต้องอยู่ภายในวันเดียวกัน นอกจากนี้เวลานี้มีการตรวจสอบกับเวลาที่คุณได้กำหนดค่าบนเว็บไซต์ของคุณในการตั้งค่าเว็บไซต์และnot จำเป็นต้องคำนวณเวลาที่ผู้ใช้มีปฏิสัมพันธ์กับการใช้งานของคุณ ถ้าไม่สนใจรอบคัดเลือกนี้ให้ทิ้งไว้ที่ 0:00-00:00 " + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "ถ้าคุณต้องการที่จะเปิดใช้งานเฉพาะบางหมวดหมู่เท่านั้นคุณสามารถตั้งค่าได้ที่นี่ ซึ่งการตั้งค่าจะทำให้เฉพาะหมวดหมู่ที่เลือกทำงานเท่านั้น เวลาที่คุณเปิดใช้งาน แต่ถ้าคุณเลือกใช้งานทั้งหมวดหมู่ ที่ 1 และ หมวด 2 ที่นี่ และรายงานถูกส่งไปให้ใช้งานหมวดหมู่ที่ 2 และ 3 ด้วย" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "ถ้าการค่าให้การทำงานนี้ให้ดำเนินการในบางวันของสัปดาห์คุณสามารถตั้งค่าได้ที่นี่เลย แต่คุณควรเข้าใจว่าวันที่ระบุจะจัดการตามค่าไทม์โซนที่ใช้ และคุณสามารถที่จะกด shif+ command หรือ control ค้างไว้หากต้องการเลิกหลายๆวัน " + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "เนื้อหาของอีเมลที่จะส่ง" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "เรื่องของอีเมลที่จะส่ง" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "การฟีดข้อมูลของคุณสามารถเลือกแบบฟีดทั้งหมด หรือเลือกบางฟีดได้ หากคุณเลือกเฉพาะบางตัว คุณก็สามารถเลือกจากรายการต่อไปนี้ หากไม่เลือกระบบจะเลือกเป็นฟีดแบบทั้งหมด " + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "การทวิตเตอร์ข้อความคนอื่นนั้น (ถ้าจะทวิตที่ละหลายคนก็ให้ใส่ชื่อกั้นด้วยเครื่องหมายจุลภาค \",\") ส่วนกรณีที่อยากตั้งค่าให้มีการส่งข้อความทวิตได้เฉพาะบสงคนเท่านั้น คุณก็สามารถระบบชื่อผู้นั้นได้ที่นี่ (แต่ชื่อนั้นต้องไม่มี@) " + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "ไม่จำเป็นต้องใส่ข้อมูลในช่องนี้ หากคุณไม่อยากใส่ keywords. แต่ถ้าคุณใส่ keywords คุณสามารถกั้นแต่ละตัวด้วยเครื่องหมายจุลภาค (,) ตัวอย่างเช่น ถ้าจะกล่าวถึง \"ความรัก\" หรือ \"สันติภาพ \" ก็สามารถใส่ keywords ดังนี้ \" ความรัก, สันติภาพ\" " + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "คุณสามารถเลือกตำแหน่งใดก็ได้ หรือ เลือกเฉาะบางจุด ถ้าหากเลือกเฉพาะบางจุดก็สามารถสร้างกล่อรอบตำแหน่งที่จะดำนเนินการได้เลย ตัวอย่างเช่น ถ้าคุณต้องการให้ทำงานเมือมีใครส่งรายงานมาจากประเทศไทย คุณก็เลือกตำแหน่งบนของประเทศไทย เป็นต้น นอกจากนั้นคุณยังสามารถวาดรูปกล่องให้มีขนาดเล็กหรือใหญ่ได้ตามที่ต้องการ และนอกจากนั้นยังทำสามารถวาดหลายๆจุดตามที่ต้องการได้" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "เฉพาะผู้ใช้ที่อนุญาตเท่านั้นที่ปรากฏบน N- th ทั้งนี้รวมผู้ใช้ที่เป็นกลุ่มและเป็นรายๆ แต่ไม่อยากตั้งค่าก็ไม่ต้องใส่ข้อมูลในช่องนี้ได้" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "นี้เป็นหัวข้อเริ่มต้นที่จะเพิ่มการรายงาน" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "หากผู้ใช้ได้ผ่านการอนุญาตแล้ว ทริกเกอร์จะเริ่มต้นการตอบสนอง โดยให้สามารถส่งรายงานการยังอีเมล์ของผู้ใช้ ซึ่งคุณสามารถเลือกกิจกรรมอื่นๆ ได้จากรายการต่อไปนี้ " + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "หากคุณเลือก \" ทริกเกอร์ ผู้ใช้\" อีเมล์จะถูกส่งไปยังผู้ใช้ที่ดำเนินงาน หากคุณเลือก ปุ่ม ที่อยู่ถัดจาก กล่องใส่ที่คุณจะสามารถ ป้อนที่อยู่ อีเมลที่กำหนดเอง นี้จะเป็นประโยชน์ ถ้าคุณกำลังตั้งค่า ทริกเกอร์ ที่จะแจ้งให้ ผู้คนเมื่อ บางส่วนของ แผนที่ จะเห็น รายงาน เช็คอิน หรือ กิจกรรม อื่น ๆ" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "คุณสามารถเลือกวันต่างๆได้ที่นี่ วันที่จะถูกกำหนดโดยค่าไทมโซนนั้นๆ กรณีต้อการใช้ค่าวันที่เริ่มต้นแต่แรก คุณไม่จำเป็นที่ต้องเลือกวันที่ใดๆ " + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "ทริกเกอร์เป็นองค์ประกอบหลักของการตั้งค่า ทริกเกอร์ การกระทำของคุณ ซึ่งเป็นที่ที่ คุณตรวจสอบว่า คุณต้องการ บางสิ่งบางอย่างที่จะเกิดขึ้น เมื่อมีคน ส่งรายงาน การดำเนินการตรวจสอบใน ฯลฯ คุณ จะสามารถ ในการกรอง การตอบสนองต่อ การกระทำเหล่านี้ หลังจากเลือก หนึ่ง" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "ผู้ใช้สามารถเป็นใครก็ได้ หรือผู้ใช้บางคนเท่านั้น หากคุณเลือกบางคน ก็เลือกได้ที่นี่ แต่หากเลือกให้เป็นใครก็ได้ ก็เลือกเป็นใครก็ได้ " + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "เช็ครายงานว่าได้ผ่านการตรวจสอบแล้วหรือยัง? " + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "หน้าโปรไฟล์ ในเว็บไซต์นี้ใช้ Gravatar เพียงคลิกที่ ภาพ คุณจะสามารถใช้ Gravatar และสามารถเปลี่ยนรูปโปรไฟล์ของคุณได้ที่นี่" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "แยกแต่ละค่าด้วยเครื่องหมายจุลภาค \",\" เช่น value1, value2" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "แยกแต่ละค่าด้วยเครื่องหมายจุลภาค เช่น value1 , value2 ในกรณีที่คุณ ต้องการตั้งค่าเริ่มต้นจบ รายการของตัวเลือก ที่มี :: เช่น ของคุณหากคุณต้องการให้ value3 เริ่มต้น ก็จะมี ค่า 1 , value2 , value3 :: value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "แยกแต่ละค่าด้วยเครื่องหมายจุลภาค \",\" เช่น Item 1, Item 2 ฯลฯ" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "เริ่มพิมพ์ข้อความไปยังสมาชิกในกลุ่มได้" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "หัวข้อในข้อความส่วนตัว" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "ข้อความส่วนตัว" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "คุณสามารถเลือกสีพื้นบนรูปโปรไฟล์ของคุณในโปรไฟล์สาธารณะของคุณ สีนี้จะเป็น จุด สีที่แสดงบนแผนที่สำหรับ checkins ของคุณ" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "ที่อยู่อีเมลของคุณ" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "นี้เป็นหนึ่งในวิธีที่คุณจะแสดงตัวตนของคุณบนเว็บไซต์ แต่โปรดพึงคำนึงว่านี่เป็นที่สาธารณะ!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "หากตั้งค่า นี่จะเป็นรหัสผ่านอันใหม่ของคุณ หากคุณต้องการใช้รหัสเดิมก็ไม่จำเป็นต้องใส่ข้อมูลใดๆในช่องนี้ " + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "นี่คือความต้องการเมื่อมีการสร้างผู้ใช้ใหม่ และจะเป็นรหัสผ่านของผู้ใช้ คุณควรจะแจ้งให้ผู้ใช้ใหม่ของคุณเปลี่ยนรหัสผ่านของพวกเขาหลังจากเข้าสู่ระบบ เป็นครั้งแรก" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "เลือก YES ช่วยให้คุณได้รับการแจ้งเตือนทางอีเมล์ เมื่อมีรายงาน หรือความคิดเห็นใหม่ที่โพสต์ บนเว็บไซต์ของคุณ" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "รหัสผ่านของคุณในปัจจุบัน เราต้องการให้คุณใส่รหัสผ่านของคุณเพื่อป้องกันการเปลี่ยนแปลงใด ๆ ที่ ไม่พึงประสงค์ในบัญชีของคุณ" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "รายละเอียด ของคุณ สามารถดูได้โดย คนบนอินเทอร์เน็ต ถ้าคุณตรวจสอบ ตัวเลือกนี้ นี้ยังเป็น วิธีที่ง่ายที่สุด ที่จะแสดง รายงานที่คุณ ได้ ส่ง checkins ของคุณ , ป้าย ฯลฯ ทั้งหมดใน หนึ่งหน้า" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "นี่คือที่อยู่ที่ที่จะปรากฏในโปรไฟล์สาธารณะของคุณ " + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "ชื่อผู้ใชhของคุณไม่สามารถเปลี่ยนแปลงได้" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "ระดับการเข้าถึงข้อมูล ที่ใช้ในการ จำกัด การเข้าถึง ข้อมูลที่กำหนดเอง ในแบบฟอร์ม ระดับการเข้าถึง ที่สูงขึ้น สามารถเข้าถึง เขตข้อมูลจาก ระดับที่ต่ำกว่า superadmin มีระดับการเข้าถึง ที่สูงที่สุด ( 100 ) ข้อมูลสาธารณะ จะปรากฏที่ ระดับการเข้าถึง ที่ต่ำที่สุด (0) สมาชิกมี ระดับการเข้าถึง 10 ระบบคือ ระดับการเข้าถึง 90 โดยค่าเริ่มต้น" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "นี่คือที่อยู่อีเมล์ที่จะใช้ในการส่งการแจ้งเตือนทางอีเมล์" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "อนุญาตให้ผู้ใช้สมัครเป็นสมาชิกสำหรับการแจ้งเตือนผ่านทางเว็บ" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "นี้จะช่วยให้ bundling ของรายงานที่คล้ายกันเป็นจุดเดียวบนแผนที่" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "อนุญาตให้ผู้ใช้แสดงความคิดเห็นเกี่ยวกับรายงานในหน้าหลักของเว็บไซต์" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "นี้จะช่วยให้ RSS ฟีดข่าวแสดงบนหน้าหลักของเว็บไซต์" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "นี้จะช่วยให้การสร้างหมวดหมู่ใหม่จาก RSS ฟีดข่าว" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "อนุญาตให้ผู้ใช้ส่งข้อมูลผ่านทางแบบฟอร์มบนเว็บ" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "หมายเลขเริ่มต้นของระเบียนที่จะเรียกตามคำขอ API" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "จำนวนสูงสุดของรายการที่จะเรียกตามคำขอ API" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "จำนวนสูงสุดของการร้องขอ API ต่อที่อยู่ IP" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "แบนเนอร์ เว็บไซต์ที่ แสดงขึ้น ที่ด้านบนของ ส่วนหน้า ของเว็บไซต์ของคุณ ถ้า รูปแบบ ที่คุณใช้ สนับสนุน ขนาดที่แนะนำ สำหรับ แบนเนอร์นี้ จะขึ้นอยู่กับ รูปแบบ ที่คุณใช้ เก็บไว้ในใจ ว่านี้จะ เปลี่ยน ชื่อเว็บไซต์และ เชือก ที่ด้านบนสุด ของหน้า" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "จำนวนของคอลัมน์ในแต่ละแถว" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "เปิดหรือ ปิดการใช้งาน แคช หน้า นี้จะทำให้การ แสดง หน้าเว็บ ได้เร็วขึ้นโดย การตัด เวลาการตอบสนอง เรา ขอแนะนำให้ใช้ แคช ในเว็บไซต์ การจราจรสูง ** โปรดจำไว้ว่า รายงาน จะ มีประชากร ใน ส่วนหน้าตาม ตารางเวลา ที่คุณ กำหนดไว้ต่ำกว่า ( อายุการใช้งาน Cache)" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "กำหนดการใช้งานของแคช" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "การตั้งค่า นี้จะช่วยให้ การใช้งาน ที่ checkins ของคุณ ประเภทรายงานง่าย ที่ไม่ได้ มีการตรวจสอบ ก่อนที่จะไปที่หน้าแรกและ ต้องมี เว็บไซต์ของคุณ จะได้รับการ กำหนดค่า ทางหนึ่ง เมื่อคุณเปิดใช้งาน นี้ให้แน่ใจว่า การตั้งค่า เขตเวลาที่ คุณอยู่ใน เวลา UTC และ ธีม ของคุณสนับสนุน checkins เมื่อคุณ เปิดใช้งานนี้ ธีม เช็ค อย่างเดียว จะ กลายเป็น ใช้งาน ภายใต้ หน้า addons / การตั้งค่า รูปแบบ ของคุณ" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "ตั้งค่าแผนที่เพื่อให้ครอบคลุมสถานที่ต่างๆ" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "ตั้งค่ารหัสสีหนึ่งสำหรับทุกหมวดหมู่" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "ตั้งค่าไอคอนหนึ่งสำหรับทุกหมวดหมู" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "นี้ป็นประเทศที่เว็บไซต์จะทำการนำเข้าไปใช้งาน" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "เปิดหรือปิดแท็บที่ติดต่อในเว็บไซต์หน้าหลัก" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "เปิดหรือปิดแท็บช่วยเหลือในเว็บไซต์หน้าหลัก" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "นี้เป็นจำนวนรายงานแสดงต่อหนึ่งหน้าในเว็บไซต์หน้าหลัก" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "นี้เป็นจำนวนรายงานที่แสดงต่อหนึ่งหน้าผู้ดูแลระบบ Back End" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "นี้เป็นศูนย์กลางสำหรับข้อความที่เข้ามา" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "synchronizes ข้อความในฮับกับแพลตฟอร์ม Ushahidi" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "หมายเลขโทรศัพท์ที่จะได้รับข้อความ" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "ติดตามผู้เข้าชมเว็บไซต์ของคุณ ดูรายละเอียดสถิติผู้เข้าชม" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "ตั้งค่าภาษาที่จะใช้ในเว็บไซต์" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "ถ้าคุณตั้งค่าตัวเลือกนี้เพื่อ ใช่ คุณต้องอนุมัติทุกให้ผู้ใช้รายคนที่สามารถสร้าง บัญชีผู้ใช้บนเว็บไซต์ของคุณได้ โดยการกำหนด บทบาท ต่างๆ ( ie. สมาชิก Admin, superadmin )" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "กำหนดแผนที่ที่จะใช้ในเว็บไซต์ได้ที่นี่" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "แสดงรายงานตามเวลาและวันที่ส่งรายงาน" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "การตั้งค่านี้เป็น จริง หรือ ใช่ จะทำให้ผู้ใช้ของคุณ ใช้งานแบบเป็นส่วนตัวเท่านั้น ซึ่งเฉพาะผู้ใช้ที่คุณระบุเท่านั้นที่สามารถใช้งานได้" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "ผู้ใช้ จะถูกส่งไป มีการเชื่อมโยง การยืนยัน คลิก ก่อนที่พวกเขา ได้รับอนุญาตให้ เข้าสู่ การใช้งานที่ว่านี้ ถูกตั้งไว้ที่ ใช่ ถ้าคุณ เปิดใช้งานนี้ ผู้ใช้ หลังจากการใช้งาน ของคุณ ได้ รับการยอมรับ พวกเขา จะได้รับแจ้ง เพื่อยืนยัน บัญชีของพวกเขา ก่อนที่ พวกเขาจะ ได้รับอนุญาตให้ ดำเนินการต่อการ ใช้มัน" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "นี้คือที่อยู่อีเมล์" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "นี้เป็นรหัสผ่านสำหรับที่อยู่อีเมลที่ได้รับรายงาน" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "นี้จำเป็นต้องได้รับการยินยอมในการเชื่อมต่อจากที่อยู่อีเมล" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "นี้เป็นสิ่งจำเป็นเพื่อทำให้การชื่อมต่อที่มีความปลอดภัยมากขึ้น" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "นี้เป็นสิ่งจำเป็นเพื่อดึงอีเมลจากเซิร์ฟเวอร์โฮสต์" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "นี่คือที่อยู่ อีเมลที่ ได้รับรายงาน" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "สถิติการเข้าชมจะถูกเก็บไว้บนเซิร์ฟเวอร์ ที่ควบคุมโดย Ushahidi ด้วยการทำให้ ตัวเลือกนี้คุณ สามารถเข้าถึงสถิติ โดยตรง ในแผง admin ของคุณ โดย ปิดการใช้งาน คุณจะหยุดการเก็บรวบรวม สถิติและ จะไม่สามารถที่จะกู้คืน การเก็บรวบรวมสถิติการเข้าชมได้ในขณะที่ถูกปิด" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "ทำ คนอื่น มีสิทธิที่จะ เผยแพร่ ข้อความ , ภาพ, วิดีโอและ / หรือ รูปแบบการออกแบบ ที่คุณและ สร้าง ผู้ใช้ของคุณ หรือไม่ ไปที่ https://creativecommons.org/choose/ ถ้าคุณ มีความสนใจใน การระบุ สิ่งที่คนอื่น มีความ สามารถที่จะ ทำอย่างไรกับ การทำงานของคุณ และจำไว้ว่า จะเป็น ที่เฉพาะเจาะจง เกี่ยวกับสิ่งที่ องค์ประกอบของ เว็บไซต์ที่คุณกำลัง ใบอนุญาต !" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "นี่คือที่อยู่อีเมลที่จะได้รับรายงานและข้อความจากแบบฟอร์มติดต่อ" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "นี่คือข้อความ ที่จะปรากฏบนแผนที่ในหน้าแรกนี้จะเป็นประโยชน์ สำหรับการให้ข้อมูลที่สำคัญในการ เข้าชมในเว็บไซต์ เอากล่องเพียงแค่ลบข้อความที่นี่" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "นี่คือชื่อของเว็บไซต์ที่จะปรากฏขึ้นที่ด้านบนของหน้าหลักเว็บไซต์" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "นี่คือข้อความที่จะแสดงขึ้นบนหน้าส่งรายงาน และเป็นข้อมูลแจ้งกับผู้มาเยี่ยมชมเว็บไวด์ หรือผู้ไม่ประสงค์ดี " + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "รายละเีอยดคล้าวๆ เกี่ยวกับเว็บไซด์" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "นี้เป็นไทม์โซนของเว็บไซต์คุณ จึงมีผลกระทบกับการกระทำใด ๆ ที่คุณดำเนินการ และเกี่ยวข้องกับ วัน เวลาตามค่าที่ตั้งไว้ ร่วมถึงการเริ่มต้นเวลาตอนนี้ ของรายงานที่ส่งไปมาของเว็บไซต์" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "ตั้ง twitter hashtag ที่จะ นำมาใช้ใน ทวีต" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-th_TH/ui_admin.po b/application/i18n/po/po-th_TH/ui_admin.po new file mode 100644 index 0000000000..bcc7812700 --- /dev/null +++ b/application/i18n/po/po-th_TH/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-09-12 14:37+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "คุณไม่สามารถเข้าใช้งาน สิทธิของคุณอาจจะไม่ถูกต้องหรือการร้องขอของคุณได้รับการปฏิเสธ" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "ไม่สามารถเข้าใช้งานได้ คำขอของคุณได้รับการพิจรณาแล้วแต่ถูกปฏิเสธเนื่องจากมีการจำกัดการเข้าใช้งาน ลองกลับมาใช้ใหม่อีกครั้ง" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "ระดับการเข้าถึงข้อมูล" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "การปฏิบัติ" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "เพิ่มหมวดหมู่" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "เพิ่มแล้ว" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "เพิ่ม/แก้ไข" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "แอดออน" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "ผู้ดูแลระบบ" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "การแจ้งเตือน" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "ได้รับการแจ้งเตือน" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "ทั้งหมด" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "ไม่ระบุชื่อ" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "ใครก็ได้" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "ทุกแห่ง" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "ห้าม API" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "บันทึก API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "การตั้งค่า API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "ยกเลิกการห้าม" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "ยกเลิกการห้ามทั้งหมด" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "ได้รับการอนุมัติ" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "อนุมัติแบบอัตโนมัติ" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "อนุมัติแบบธรรมดา" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "จัดเก็บ" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "คุณแน่ใจว่าคุณต้องการที่จะ" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "คุณแน่ใจหรือว่าต้องการลบรายการนี้" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "คุณแน่ใจว่าคุณต้องการที่จะลบภาพนี้" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "คุณแน่ใจว่าคุณต้องการที่จะเปลี่ยนรูปแบบ?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "กำหนด" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "งานที่ได้มอบหมาย" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "กำหนดแบดจ์" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "ผู้เขียน" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "ผู้เขียนอีเมล์" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "กลับ" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "ห้าม IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "ระหว่างเวลา" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "บล็อก" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "เนื้อหา" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "ยกเลิก" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "หมวดหมู่" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "แผนภูมิแสดงข้อผิดพลาด" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "โปรดตรวจสอบให้แน่ใจว่าข้อความของคุณถูกต้อง" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "กรุณาตรวจสอบว่าจำนวนถูกต้อง" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "กรุณาตรวจสอบการตั้งค่า SMS ของคุณ!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "ตรวจสอบรายละเอียด" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "ตรวจสอบ" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "โหลดเมือง" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "รหัส" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "รหัสออกจากซิงค์" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "สี" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "ความเห็น" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "รหัสยืนยันการแจ้งเตือนของคุณคือ:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "ผู้ใช้ได้รับการ" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "นับ" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "ไม่พบประเทศ" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "สร้าง/แก้ไข" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "สร้างรายงาน" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "อัพเกรดที่สำคัญ" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "ใช้งานในขณะนี้" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "ไม่ได้ใช้งานในขณะนี้" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะแก้ไขฟิลด์นี้ได้" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "ประจำวัน" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "แดชบอร์ด" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "ฐานข้อมูล" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "วันที่และเวลา" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "เพิ่มวันแล้ว" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "วันแก้ไขแล้ว" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "วันในหนึ่งสัปดาห์" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "รุ่น DB ออกจากซิงค์" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "ลบแล้ว" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "ลบ" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "ลบรายงานทั้งหมด" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "ลบแบดจ์" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "การสาธิต" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "ลักษณะ" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "ปิดการใช้งานแล้ว" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "เริ่มแบ่ง" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "การแบ่งสิ้นสุด" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "ประเภท div " + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "ดาวน์โหลดรายงาน" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "ตัวเลือกจาก dropdown" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "แก้ไขแล้ว" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "แก้ไขโดย" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "แก้ไข" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "บันทึกการแก้ไข" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "อีเมล์" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "ทั้งกลุ่ม" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "ข้อผิดพลาดใน geocoding! ข้อผิดพลาด HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "ไม่ได้ติดตั้ง IMAP PHP Library" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "ข้อมูลประจำตัวไม่ถูกต้อง" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "ผิดพลาด" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "เกิดข้อผิดพลาด ไม่สามารถที่จะโพสต์ได้" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "ทุกหกชั่วโมง" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "ทุกสิบสองชั่วโมง" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "ทดลอง" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ's" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "ฟีด" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "ข้อเสนอแนะ" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "ฟีด" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "รายการทางเลือก" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "ค่าเริ่มต้น" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "ชนิดข้อมูล" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "มาร์กอัป" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "เป็นตัวเลข" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "ข้อความ" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "ความสูง (แถว)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "ฟิลด์ที่ซ่อนอยู่" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "ความยาวตัวอักษรสูงสุด" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "ชื่อฟีลค์" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Toggle" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "ไม่" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "ใช่่ ปิดโดยใช้ค่าเริ่มต้น" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "ใช่ เปิดโดยใช้ค่าเริ่มต้น" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "ไม่สามารถหาไฟล์ที่อัพโหลด" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "ไม่สามารถเปิดไฟล์ได้" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "ไม่มีแบบฟอร์มนี้!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "ฟอรัม" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "พื้นที่ใส่ข้อความ (ข้อความ)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "ฟีล์ดวันที่" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "ฟิลด์ปุ่มวิทยุ" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "ฟิลด์ช่องทำเครื่องหมาย" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "ฟีลค์ dropdown" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "จาก" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "จาก" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "เกิดข้อผิดพลาดจาก Geonames เวลาหมด" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "ขอความช่วยเหลือ" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "เพิ่มรูปแบบให้มากขึ้น" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "รับปลั๊กอินเพิ่มเติม" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "การปฏิบัติ" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "เพิ่ม/แก้ไข" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "อีเมล์" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "จัดการผู้ใช้" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "บทบาท" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "ผู้ใช้" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "ช่วยเหลือ" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "ทุกๆชั่วโมง" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "ฟีดเหตุการณ์ที่เกิดขึ้น" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "โฟลเดอร์การติดตั้งยังคงมีอยู่ ลบโฟลเดอร์ติดตั้งนี้เพราะมันเสื่องความปลอดภัย" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "ตัวอย่าง" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "ตัวอย่าง" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "รายละเอียดตัวอย่าง" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "พารามิเตอร์ที่ไม่ถูกต้อง" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "ที่อยู่ IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "นี้เป็นฟิลด์วันที่หรือไม่" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "ใครสามารถดูคำตอบ" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "ใครสามารถส่งคำตอบ" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "คำหลัก" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "คำหลัก" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "อีเมล์:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "ชื่อเต็ม:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "รหัสผ่าน:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "บทบาท:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "ชื่อผู้ใช้:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "ชั้น" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "ผู้ดำเนินรายการ" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "ออกจากระบบ" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "ที่บันทึก" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "จัดการ" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "จัดการบทบาทและสิทธิ์" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "ดูผู้ใช้" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "เพิ่ม/แก้ไขผู้ใช้" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "จัดการรายการสาธารณะ" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "มาร์คเป็น" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "ทำเครื่องหมายว่าไม่ได้เป็นสแปม" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "ทำเครื่องหมายว่าเป็นสแปม" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "ไม่ตรงกับเอกสารใดๆ" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "ข้อความ" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "ข้อความ" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "ข้อความ Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "ข้อความ Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "ข้อความของคุณได้ถูกส่ง!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "นาที" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "นาที" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "พารามิเตอร์ที่ขาดหายไป" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "ผู้ดำเนินรายการ" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "แก้ไข" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "ปรับเปลี่ยนการตั้งค่าโซนเวลา" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "ย้ายลง" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "เลื่อนขึ้น" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "หลายอินสแตนซ์โฮสต์" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "การแจ้งเตือนของฉัน" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "ตรวจสอบเข่้าของฉัน" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "โปรไฟล์ของฉัน" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "รายงานของฉัน" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "โหวต" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "บวก" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "ลบ" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "ชื่อ" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "สร้างการแจ้งเตือนใหม่" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "สร้างข้อความใหม่" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "รหัสผ่านใหม่" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "ไม่" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "นี้เป็นหมวดหมู่พิเศษที่จะไม่แสดงในแบบฟอร์มการส่งรายงานสำหรับผู้ใช้ส่งรายงาน เนื่องจากจะใช้ในการเก็บรายงานที่ทิ้งไว้โดยไม่มีหมวดหมู่ (รายงานที่ไม่ได้แยก) เป็นผลมาจากการลบหมวดหมู่" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "การแจ้งเตือน" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "นี้ไม่ใช่กรณีที่สำคัญ" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "ไม่พบ" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "ไม่มีข้อมูลให้แสดง" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "ไม่มีข้อผิดพลาด" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "ไม่มีข้อมูลให้แสดงผลได้!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "ของ" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "ในจำนวนที่เจาะจง" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "หน้า" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "หน้า" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "ไม่พบหน้า" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "ขออภัย เว็บที่คุณกำลังพยายามที่จะดูไม่มี

คุณตามลิงค์จากว็บไซต์อื่นหรือของเรา?
หากคุณมาถึงหน้านี้จากส่วนหนึ่งของเว็บไซต์ของเรา กรุณา contact us ติดต่อเรา เพื่อที่จะให้เราได้สามารถแก้ไขข้อผิดพลาดของเรา.

คุณตามลิงค์จากเว็บไซต์อื่นหรือไม่?
ลิงค์จากเว็บไซต์อื่นๆบางครั้งอาจจะล้าสมัยหรือสะกดผิด บอกเรา เว็บไซต์ที่คุณมาจากและเราจะพยายามติดต่อกับเว็บไซต์นั่นๆเพื่อที่จะแก้ไขปัญหา

คุณพิมพ์ URL หรือเปล่า?
คุณอาจจะพิมพ์ที่อยู่ (URL) ที่ไม่ถูกต้อง ตรวจสอบให้แน่ใจว่าคุณสะกดคำที่ถูกต้องแน่นอน ฯลฯ

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "ขออภัยหน้าเว็บที่คุณกำลังพยายามที่จะดูเข้าไปดูไม่ได้อยู่ที่นี่" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "พารามิเตอร์ที่ใช้" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "รหัสผ่าน" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "เปลี่ยนรหัสผ่าน" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "เรียน" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "เราได้รับคำขอที่จะเปลี่ยนรหัสผ่านสำหรับ" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "ในการเปลี่ยนรหัสผ่านของคุณ กรุณาคลิกลิงค์ด้านล่าง (หรือคัดลอกและวางลงในเบราว์เซอร์ของคุณ)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "ตามที่คุณร้องขอ รหัสผ่านของคุณได้รับการถูกเปลี่ยนแล้ว รายละเอียดใหม่ของคุณมีดังนี้" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "รีเซ็ตรหัสผ่าน Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "โทรศัพท์" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "กรุณาเลือก" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "ข้อมูลไม่ได้ถูกส่งโดยการโพสต์" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "แสดงตัวอย่าง" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "ข้อความ" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "ข้อความส่วนตัว" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "ข้อความส่วนตัวได้ถูกส่งแล้ว" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "เรื่อง" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "ถึง" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "รายการสาธารณะ" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "คัดเลือก" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "อ่าน" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "ความสัมพันธ์" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "ชื่อเรื่องของรายงาน" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "วันที่รายงาน" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "ผู้รายงาน" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "ระดับของผู้รายงาน" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "รายงาน" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "คะแนนชื่อเสียง" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "จำเป็น" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "ตั้งใหม่" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "การตอบ" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "ผล" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "เรียกกลับคืน" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "อีเมลนี้มีอยู่แล้วในบัญชีที่ของ Crowdmap ID ผู้ใช้จะต้องใช้รหัสผ่านที่มีอยู่แล้วจาก Crowdmap เพื่อเข้าสู่ระบบ" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "บันทึกการตั้งค่า" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "ค้นหา" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "รายงานการค้นหา" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "ค้นหาเกี่ยวกับ" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "คีย์รหัสลับยังคงเป็นตามค่าเริ่มต้น ซึ่งไม่ปลอดภัยและต้องมีการเปลี่ยนแปลง" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "เว็บไซต์นี้ถูกเสิร์ฟผ่าน HTTP ควรจะตั้งค่า HTTPS เพื่อเพิ่มความปลอดภัย" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "คำแนะนำมีอยู่ในวิกิพีเดีย:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "เลือกรูปแบบที่คุณต้องการดาวน์โหลดรายงาน: -" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- เลือกประเภทฟิลด์ ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "กรุณาเลือกรายการ" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "คุณต้องเลือกทริกเกอร์ก่อนที่คุณจะสามารถเลือกการตอบสนอง" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "คุณต้องเลือกทริกเกอร์ก่อนที่คุณจะนิยาม Qualifier" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "ผู้ส่ง" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "ส่งไปที่" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "ข้อความนี้ถูกส่งมาจากเว็บไซต์ของคุณที่" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "เวลาเซิร์ฟเวอร์" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "การตั้งค่า" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "แสดงหน้า" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "กำลังแสดงผล" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "แสดงให้เห็นว่า" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "หมวดหมู่พิเศษ" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "อันนี้เป็นหมวดหมู่พิเศษที่จะไม่แสดงในแบบฟอร์มการส่งรายงานสำหรับผู้ใช้ส่งรายงาน ซึ่งจะถูกนำมาใช้ร่วมกับคุณสมบัติ \"รายงานที่ยินยอม\" " + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "พื้นที่ที่เจาะจง" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "สภาพ" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "สถิติ" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "สถิติ" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "การเก็บรวบรวมสถิติล้มเหลว โปรดลองอีกครั้งในภายหลัง" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr " เก็บสถิติล้มเหลว" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "ระบุวันที่" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "เรื่อง" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Super Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "งานที่ได้ทำการดำเนินการ" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "ฟิลด์ข้อความ" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "ชื่อ" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "จัดการผู้ใช้" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "เกิดข้อผิดพลาด เนื่องจากหมดเวลา" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "ถึง" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "บันทึกรวม" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "ถึง" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "แปลรายงาน" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "ผู้ใช้ Trigger" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Triggers" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "ไม่อนุมัติ" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "ไม่ทราบ" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "ล้มเหลว ไม่สามารถระบุสาเหตุ" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "ไม่ได้อ่าน" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "คุณจะไม่ได้รับการแจ้งเตือนจาก" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "คลิกที่นี่เพื่ออัพเกรดตอนนี้" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "อัพเกรด Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "อัพเกรดสถานะ Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "อัปโหลดรายงาน" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "ผู้ใช้" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "ผู้ใช้" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "ตรวจสอบ/ยืนยัน" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "ตรวจสอบ/ยกเลิกการยืนยัน" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "เวอร์ชัน" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "สามารถอัพเกรดได้" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "รหัสวิดีโอ" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "ข้อความส่วนตัว" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "ดูเว็บไซต์" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "ดูรายงาน" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "ยินดีต้อนรับ" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "วิกิพีเดีย" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "ใช่" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "ที่คุณค้นหา" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "คลิกที่ปุ่มด้านล่างนี้จะลบรายงานทั้งหมดในฐานข้อมูล คุณควรใช้ด้วยความระมัดระวังเพราะการดำเนินการนี้ไม่สามารถยกเลิกได้" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "เราแนะนำให้คุณสำรองฐานข้อมูลของคุณก่อนที่จะดำเนินการต่อไป" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "ฉันแน่ใจว่าฉันต้องการที่จะลบรายงาน(s)ทั้งหมด %s จากฐานข้อมูล" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "คุณแน่ใจหรือว่าต้องการที่จะลบรายงานทั้งหมดหรือไม่" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "ไม่มีรายงานให้ลบ" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "จำนวนการเข้าสู่ระบบ" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "เข้าระบบครั้งสุดท้าย" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "ยืนยันบัญชีหรือไม่" diff --git a/application/i18n/po/po-th_TH/ui_main.po b/application/i18n/po/po-th_TH/ui_main.po new file mode 100644 index 0000000000..b9cb5db08d --- /dev/null +++ b/application/i18n/po/po-th_TH/ui_main.po @@ -0,0 +1,3171 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +# penguinarmy , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "เกี่ยวกับ" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "เข้าใช้" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "จำกัดการเข้าถึง" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "ชื่อผู้ใช้" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "ดำเนินการ" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "การกระทำนี้สามารถถูกยกเลิกได้ คุณแน่ใจว่าต้องการดำเนินการต่อ?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "ยอมรับ" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "ยอมรับ" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "เพิ่ม" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "เพิ่มโดย" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "วันที่เพิ่มเติม" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "รายงานเพิ่มเติม" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "เพิ่ม/แก้" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "เพิ่มฟิลด์" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "เพิ่มภาษา" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "เพิ่มใหม่" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "เพิ่มกลุ่มใหม่" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "เพิ่มตัวแปลภาษา" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "จัดการบริหาร" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "รับการแจ้งเตือน" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "เตือนฉันด้วย ถ้ามีเหตุการณ์เกิดขึ้นในบริเวณ" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "บันทึกการแจ้งเหตุ" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "อีเมล์" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "โปรดกรอดอีเมล์" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "โปรดกรอกหมายเลขโทรศัพท์ ตัวอย่าง. +66 8 xxxx xxxx" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "รับการแจ้งเตือน" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "ได้รับการแจ้งเตือน" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "โทรศัพท์เคลื่อนที่" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "หรือเลือกพื้นที่ในแผนที่ด้านล่าง และเราจะแจ้งเตือนคุณเมื่อมีรายงานแจ้งเข้ามา ที่อยู่ในรัศมี 20 กิโลเมตร" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "หากคุณไม่สามารถค้นหาสถานที่ของคุณได้ กรุณาคลิกที่แผนที่เพื่อกำหนดพิกัดของคุณ" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "ฟีด (คัดลอก URL) ด้านล่าง" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "เลือกเมือง" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "ขั้นตอนที่ 1: เลือกเมืองหรือสถานที่ของคุณ:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "ขั้นตอนที่ 2: ติดต่อกลับหาฉันได้ทาง:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "ขั้นตอนที่ 3 (เพิ่มเติม): เลือกหมวดหมู่" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "ยืนยันการรับแจ้งเตือน" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "การแจ้งเตือนถูกบันทึกแล้ว!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "ทั้งหมด" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "อนุญาต" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "แท็ก HTML ที่อนุญาต: \"% s\"" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes จะได้รับอนุญาตจากเพียง:% s" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "หมวดหมู่ทั้งหมด" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "ทุกเวลา" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "และ" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "ยืนยัน" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "ได้รับการยืนยันแล้ว" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "รายงานที่ยืนยันแล้ว" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "ยืนยันรายงานนี้" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "ประมาณ" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "ที่จัดเก็บเอกสาร" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "ที่จัดเก็บเอกสาร" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "จากน้อยไปมาก" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "ที่" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "ผู้เขียน" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "ตรวจสอบอัตโนมัติ" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "รายงานเฉลี่ยต่อวัน" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "รอการยืนยัน" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "รอตรวจสอบ" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "แบดจ์" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "แบดจ์" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "ภาพแบดจ์" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "หรือคุณสามารถอัปโหลดภาพแบตจ์ของคุณเองแทน" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "รายการแบดจ์" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "เลือกแบดจ์" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "บล็อค" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "เรียกโปรไฟล์" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "ยกเลิก" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "หมวดหมู่" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "ประเภท" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "กรองประเภท" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "ประเภทนี้ถูก" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "ชื่อประเภท" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "เลือกช่วงวัน" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "เปลี่ยนรหัสผ่าน" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "เปลี่ยนรูปภาพ" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "โปรดเลือก" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "เลือกตำแหน่งข้อมูลที่ต้องการดาวน์โหลด" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "หรือเลือกช่วงข้อมูลที่ต้องการ" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "เลือกประเภทฟิลด์" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "จัดระเบียบ URL" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "ล้างข้อมูล" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "ล้างข้อมูลแผนที่" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "ปิด" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "กลุ่ม" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "สี" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "ความคิดเห็น" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "ความคิดเห็น" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "รายละเอียดความคิดเห็น" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "การตั้งค่าของคุณถูกบันทึกแล้ว" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "ตั้งค่า" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "คุณได้ทำการยืนยันอีเมล์เรียบร้อยแล้ว! เข้าระบบด้านล่าง" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "คุณได้ยืนยันที่อยู่อีเมล์ของคุณเรียบร้อยแล้ว! ผู้ดูแลระบบต้องอนุมัติบัญชีของคุณก่อนที่คุณจะเข้าสู่ระบบได้" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "อีเมล์ยืนยันล้มเหลว คุณสามารถขออีเมล์ยืนยันใหม่ข้างล่าง" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "ติดต่อเรา" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "รหัสการรักษาความปลอดภัย" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "อีเมล์ของคุณ" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "ข้อความ" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "ข้อความถูกส่งแล้ว" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "ชื่อ" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "เบอร์โทรศัพท์" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "ส่งข้อความ" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "หัวข้อ" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "ลิขสิทธิ ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "สร้าง" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "สร้าง/แก้ไข" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "สร้างใหม่" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "ตั้งรหัสผ่านใหม่" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "สร้างรายงาน" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "ความน่าเชื่อถือ" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "รหัสผ่านปัจจุบัน" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "ตั้งค่าฟิลด์" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "ข้อมูล" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "วันที่" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(ดด/วว/ปปปป)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "วัน & เวลา" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "วัน" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "ไม่ทำงาน" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "ไนโรบี, เคนยา" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "ลบ" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "ลบแล้ว" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "ลบ" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "ลบรายการที่ใช้งานไม่ได้" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "ลบล่าสุด" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "ลบรายงานนี้" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "ลบที่เลือก" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "ลบแสปม" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "ตัวอย่าง" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "รายละเอียด" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "จากมากไปน้อย" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "ตัวอย่างเช่น: ซอย 14 อ.ปากเกร็ด จ.นนทบุรี" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "รายละเอียด" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "รายงานโดยตรง" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "ยกเลิกการใช้งาน" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "ไม่อนุมัติ" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "ดาวน์โหลดรายงาน" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "ดาวน์โหลด" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "แก้ไข" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "แก้ไขฟิลด์" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "แก้ไขรายงาน" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "อีเมล์" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "อีเมล์" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "ตั้งค่าเมล์เซอร์เวอร์" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "เมลเซิร์ฟเวอร์โฮสต์" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "อีเมล์รหัสผ่านสำหรับเซิร์ฟเวอร์" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "พอร์ตเซิร์ฟเวอร์สำหรับอีเมล์" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "ให้บริการช่วยเหลือเซิร์ฟเวอร์อีเมล์ SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "ประเภทเซิร์ฟเวอร์อีเมล์" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "อีเมล์ชื่อผู้ใช้งาน" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "ดังนั้นการตั้งค่าของคุณจะต้องเกี่ยวข้องกับที่อยู่อีเมล์นี้" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "เพื่อที่จะได้รับรายงานทางอีเมลโปรดเข้าการตั้งค่าบัญชีอีเมลของคุณด้านล่าง โปรดทราบว่าอีเมล์จะได้รับในอีเมลที่อยู่ของคุณ" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "เซิร์ฟเวอร์บางรายการต้องป้อนที่อยู่อีเมล์" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "รหัสผ่านของบัญชีอีเมล์" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "พอร์ตสามัญ: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "ตัวอย่าง: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "ตัวอย่าง: pop3, IMAP" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "เปิดหรือปิดการใช้งานการเชื่อมต่อ SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "-----ค่าว่าง---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "ถึง" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "ผิดพลาด!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "ตัวอย่าง" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "ประเทศเคนย่า" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "แอปฯ ภายนอก" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "วิดีโอลิงค์" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "ฟีด" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "ให้ข้อเสนอแนะ" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "กรุณาให้ข้อเสนอแนะเกี่ยวกับประสบการณ์ของคุณโดยการส่งอีเมล์ไปยัง" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "ฟีด" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "ฟีดนี้ได้" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "รายการฟีด" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "ชื่อฟีด" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "ฟีด URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "ฟิลด์ข้อมูลที่ไม่ได้ใช้" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "ไฟล์" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "ไฟล์ของคุณขนาดใหญ่เกิดกว่าที่อนุญาต" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "ตัวกรอง" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "กรองรายงาน" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "กรองโดย" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "กรองโดยมีคำว่า" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "ค้นหา" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "ค้นหาสถานที่" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "ชื่อ" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "บังคับการจัดตารางเวลา" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "ลืมรหัสผ่าน?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "ฟอร์ม" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "ฟอร์ม" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "รายละเอียดฟอร์ม" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "แก้ไขฟอร์ม" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "ฟอร์มนี้ได้" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "ชื่อฟอร์ม" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "จาก" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "ชื่อ" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "มี GeoLocation" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "สี" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "อธิบาย" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "ป้าย" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "ความกว้างของเส้น" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "ไป" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "#" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "เคยมี" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "วิธีการช่วยเหลือ" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "ซ่อนไว้" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "ซ่อน" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ซ่อนข้อความนี้" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "หน้าหลัก" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "รายงานอย่างไร?" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "ใช้ในการระบุตัวตนของคุณบนเว็บไซต์ของผู้อื่น" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "รูปภาพ" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "รูปภาพ" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "รูปภาพ/ไอคอน" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "ไม่ได้ทำงาน" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "กล่องจดหมาย" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "เหตุการณ์" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "เหตุการณ์ที่ใกล้เคียง" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "เหตุการณ์ในพื้นที่" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "ประกอบด้วย" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "รวมหมวดหมู่" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "รวมตั้งค่าฟิลด์" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "รวมคำอธิบาย" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "รวมถึงรายละเอียดมากที่สุดเท่าที่เป็นไปได้" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "รวมถึงละติจูด" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "รวมถึงข้อมูลที่อยู่" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "มีลองจิจูด" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "รวมข้อมูลส่วนบุคคล" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "สื่อที่เข้ามา" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "การประเมินผลข้อมูล" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "ป้อนสถานที่แม่นยำของคุณ" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "บัญชีของคุณไม่ได้รับอนุญาตที่เหมาะสมในการรองรับการเข้าสู่ระบบ กรุณาติดต่อผู้ดูแล" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "เพื่อตอบสนองต่อ" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "หมายเลขไอพี" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "นี้เป็นรายละเอียดของคุณหรือไม่" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "รายการ" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "รายการ" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "รายการ_รายละเอียด" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "ชื่อรายการ" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "กุญแจ" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "คำหลัก" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "ไฟล์ KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "อัปโหลดไฟล์ KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "ภาษา" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "สุดท้าย" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "เดือนที่แล้ว" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "นามสกุล" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "ปีก่อน" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "ละติจูด" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "ชั้น" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "ชั้นอื่นๆ" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "ชั้นที่ได้รับการ" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "ชื่อชั้น" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "ชั้น URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "แสดงความคิดเห็น" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "ข้อมูลน้อยลง" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "ระดับ" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "ระดับนี้ได้รับ" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "ชื่อระดับ" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "จำกัด" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "ลิงค์" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "รายชื่อ" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "โหลดรายงาน" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "สถานที่" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "สถานที่" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "เมือง, รัฐ และ/หรือ ประเทศ" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "เข้าสู่ระบบ" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "บัญชีผู้ใช้ถูกสร้างแล้ว คุณสามารถเข้าใช้งานได้ทันที" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "ข้อความยืนยันได้ถูกส่งไปยังที่อยู่อีเมล์ของคุณแล้ว" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "บัญชีถูกสร้างแล้ว บัญชีของคุณจะต้องได้รับการอนุมัติโดยผู้ดูแลระบบก่อนที่คุณจะสามารถเข้าสู่ระบบได้" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "ที่อยู่อีเมล์ไม่ถูกต้อง ลองใช้ที่อยู่อีเมล์อื่น หรือสร้างบัญชีใหม่" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "กรุณาลือกผู้ให้บริการบัญชีของคุณ" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "เข้าสู่ระบบด้วย" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "อีเมล์และรหัสผ่าน" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "เปิด ID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "สมัคร" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "สร้างบัญชี" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "ขอขอบคุณสำหรับการลงทะเบียนที่% 1$s เพื่อยืนยันอีเมล์ของคุณโปรดไปที่ URL ต่อไปนี้:% 2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "ยืนยันการลงทะเบียน" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "ผู้ใช้ใหม่ได้ลงทะเบียนที่% 1$s เพื่ออนุมัติการลงทะเบียนของพวกเขาโปรดไปที่ URL ต่อไปนี้: % 2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "อนุมัติผู้ใช้ใหม่" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "บัญชีของคุณได้รับการอนุมัติสำหรับ %1$s เพื่อเข้าสู่ระบบให้ไปที่ URL ต่อไปนี้: % 2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "บัญชีได้รับการอนุมัติ" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "สร้างบัญชีตอนนี้เพื่อใช้ประโยชน์จากฟีเจอร์อื่นๆ ของเว็บไซต์" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "ลองจิจูด" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "แผนที่" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "มาร์คว่าอ่าน" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "มาร์คว่ายังไม่ได้อ่าน" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "ขนาดไฟล์สูงสุด" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "สื่อ" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "กรองสื่อ" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "สมาชิก" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "จัดการบัญชีของคุณ" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "ข้อความ" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "ข้อความ" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "รายละเอียดข้อความ" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "ข้อความจากแหล่งที่ไม่ใช่ตัวเลข" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "โทรศัพท์มือถือ" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "แก้ไข" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "แก้ไขวันที่" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "เดือน" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "เพิ่มเติม" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "ข้อมูลเพิ่มเติม" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "มีการใช้งาน Ushahidi ข้ามหลายประเทศไม่?" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "คุณต้องยืนยันอีเมล์ของคุณในการใช้งานนี้ ถ้าคุณทำอีเมล์ที่ยืนยันหาย คุณสามารถขอใหม่ด้านล่าง" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "ชื่อ" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "รายงานที่อยู่ใกล้ๆ" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "ใหม่" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "ข่าว" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "ฟีดข่าว" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "แหล่งที่มาของข่าว" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "หมวดหมู่ใหม่" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "รหัสผ่านใหม่" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "รายงานใหม่" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "ต่อไป" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "ไม่" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "ไม่มีเช็คอินเพื่อแสดง" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "ไม่มีข้อมูล" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "ไม่มี" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "คำชี้แจง" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "ไม่ได้รับการอนุมัติ" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "ไม่ได้รับการอนุมัติ" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---ไม่ได้เลือก---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "ไม่ใช่สแปม" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "ไม่ระบุ" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "ไม่มีรายงาน" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "ไม่มีผลลัพธ์" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "ปิด" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "ทางการ และ ข่าวกระแสหลัก" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "เปิด" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "ตัวเลือก" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "ทางเลือก" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "ตัวเลือก" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "องค์กร" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "องค์กร" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "รายละเอียดองค์กร" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "อีเมล์องค์กร" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "องค์กรได้รับการ" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "ชื่อองค์กร" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "เบอร์โทรศัพท์องค์การ 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "เบอร์โทรศัพท์องค์การ 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "เว็บไซต์องค์กร" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "ต้นฉบับ" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "อธิบายต้นฉบับ" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "ชื่อต้นฉบับ" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "ปรับใช้อื่น ๆ" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "กล่องออก" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "ขาออก" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "หน้า" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "หน้า" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "รายละเอียดหน้า" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "หน้านี้ถูก" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "ชื่อหน้าแท็บ" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "ชื่อหน้า" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "ประเภทย่อย" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "รหัสผ่าน" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "ยืนยันรหัสผ่าน" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "เปลี่ยนรหัสผ่านแล้ว! เข้าใช้งานด้านล่าง" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "ลืมรหัสผ่าน?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "ตรวจสอบรหัสผ่านใหม่ได้ที่อีเมล์ของคุณ" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "จำการเข้าใช้บนเครื่องนี้?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "เดือนที่ผ่านมา" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "ปีที่ผ่านมา" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "คงค้าง" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "ต่อ" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "ข้อมูลส่วนบุคคล การดำเนินการ" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "โทร" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "รูปถ่าย" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "รูปภาพ" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "รูปและวีดีโอ" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* ค้นหาสถานที่ตั้งของคุณโดยใช้ชื่อสถานที่ หรือ ละติจูดและลองจิจูด (รูปแบบ: 38.19, 85.61) หรือคลิกที่แผนที่เพื่อหาตำแหน่งที่ถูกต้อง" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "เล่น" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "บันทึก" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "พลั๊กอิน" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "ปลั๊กอินเว็บไซต์" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "โปรไฟล์ส่วนกลาง" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL โปรไฟล์ส่วนกลาง" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "แสดงตัวอย่าง" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "แสดงตัวอย่างรายการ" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "แสดงตัวอย่างข้อความ" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "ก่อนหน้า" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "ส่วนตัว" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "สีโปรไฟล์" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "โปรไฟล์ได้ถูกบันทึกแล้ว" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "เริ่มทันที" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "อันดับ" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "อ่าน" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "รับ" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "รับจาก" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "รับการแจ้งเตือน" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "รายงานล่าสุด" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "ปรับปรุงฟีดข่าว" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "อีเมล์ที่ลงทะเบียน" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "นำออก" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "ตอบกลับ" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "รายงาน" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "รายงาน (จากแผนที่ที่ระบุไว้ตามลำดับ) " + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "ผู้รายงาน" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "ผู้รายงาน" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "รายงานประจำวันที่" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "อีเมล์ผู้รายงาน" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "ชื่อผู้รายงาน" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "ผู้รายงานถูก" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "หมายเลขไอพีผู้รายงาน" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "นามสกุลผู้รายงาน" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "ระดับผู้รายงาน" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "ระดับผู้รายงาน" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "เบอร์โทรผู้รายงาน" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "รายงาน" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "ค้นหา" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "ส่ง" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "รายงานโดยผู้ใช้นี้" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "หมวดหมู่" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d รายงาน" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "วันที่" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "รายละเอียด" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "รายงานจะถูกดาวน์โหลดในรูปแบบ CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "อีเมล์" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "คุณสมบัติ" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "หาที่อยู่ใกล้คุณ" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "ชื่อจริง" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "นามสกุล" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "ชื่อสถานที่" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "ลิงค์ข่าว" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "ข้อมูลเพิ่มเติม" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "อัพโหลกรูป" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "กลับสู่หน้ารายงาน" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "เลือกเมือง" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "รายงานของคุณได้ถูกส่งไปยังเจ้าหน้าที่ของเราแล้วเพื่อรับการพิจารณา เราจะติดต่อกลับมาหาคุณในไม่ช้า" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "ส่งรายงานใหม่" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "เวลา" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "ระยะเวลารายงาน" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "หัวเรื่องรายงาน" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "ลิงค์วีดีโอ" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "รายงานเหตุการณ์" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "รายละเอียดรายงาน" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "โดยการส่งข้อความไปยัง" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "โดยการส่งอีเมล" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "โดยการส่งทวีตพร้อม #" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "โดยการกรอกแบบฟอร์มนี้ในเว็บไซต์ของเรา" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "โดยใช้แอพ" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "รายงานของคุณได้รับการบันทึกแล้ว" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "ชื่อรายงาน" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "ขอข้อมูลเพิ่มเติม" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "ขอตำแหน่ง" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "จำเป็น" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "ต้องการ" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "ส่งอีเมล์ยืนยันอีกครั้ง" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "ยกเลิก" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "ยกเลิกตัวกรอง" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "ตั้งรหัสใหม่" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "เรียกชื่อเมืองของประเทศที่เลือก" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "บัญชีที่จัดการโดยบริการ % s" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "คุณมีบัญชี CrowdmapID แล้ว! ลองใช้อีเมล CrowdmapID ของคุณและรหัสผ่านเพื่อเข้าสู่ระบบ" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "บทบาท" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "บันทึก" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "บันทึกแล้ว" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "บันทึกและเพิ่มใหม่" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "บันทึกและปิด" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "บันทึกรายงาน" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "ตารางเวลา" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "จัดตารางเวลา" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "วัน" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "ชั่วโมง" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "บันทึกการจัดตารางเวลา" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "นาที" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "วันต่อสัปดาห์" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "ค้นหา" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "ผลการค้นหา" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "รหัสความปลอดภัย" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "เลือกทั้งหมด" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "เลือกประเภทฟิลด์" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "เลือกประเภทแบบฟอร์ม" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "เลือกในแผนที่" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "เลือกเท่าที่ต้องการ" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "โปรดตรวจสอบว่าคุณได้เลือกรายการ" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "เลือกชุดรูปแบบ" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "ส่ง" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "ส่งการยืนยัน" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "กำลังส่งไปยัง" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "ส่งแล้ว" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "ส่งโดย" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "ที่อยู่ของเซิร์ฟเวอร์" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "ชนิดของเซิร์ฟเวอร์" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "บริการ" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "ชื่อผู้ให้บริการ" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID ผู้ให้บริการ" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "แชร์" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "ข้อมูลที่ใช้ร่วมกัน" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "แชร์ได้" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "แชร์" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "แผนที่สั้นลง" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "แสดง" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "แสดงทั้งหมด" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "แสดงข้อความ" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "แสดงรายงานจาก % 1 $ s% 2 $ s " + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "เว็บไซต์" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "อีเมล์ของไซต์" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL เว็บไซต์" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "แผนที่ที่เล็กลง" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "ขออภัยคุณไม่ได้มีป้ายใดๆ" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "แหล่ง" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "ชื่อแหล่งที่มา" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "จัดกลุ่ม" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "จัดกลุ่มโดย" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL แหล่งที่มา" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "สแปม" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL สนับสนุน?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "จาก" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "ขั้นตอน" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "ส่งรายงาน" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "ส่งโดย % 1 $ s ผ่าน % 2 $ s " + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "ส่งผ่านทาง SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "ส่ง SMS ของคุณไปยัง" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "ในโทรศัพท์ของคุณ" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "สำเร็จ!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "นำเข้ามาสำเร็จ" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "นามสกุล" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "สำรวจ" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "ระบบ" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "แผนที่ที่สูงขึ้น" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "พอร์ต TCP " + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "รูปแบบ" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "รูปแบบเริ่มต้นของ Ushahidi " + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "ตั้งค่ารูปแบบ" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "นี้" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "วันนี้" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "เดือนนี้" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "สัปดาห์นี้" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "ปีนี้" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "นี้เป็นโปรไฟล์ของคุณ" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "เวลา" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "ชื่อเรื่อง" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "ไปยัง" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "วันนี้" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "วันนี้เวลา" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "เครื่องหมาย" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "รายงานทั้งหมด" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "แปล" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "แปลรายละเอียด" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "แปลชื่อเรื่อง" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "แปลเป็น" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "แปลความหมาย" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "ที่แปลได้รับการบันทึกแล้ว" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "ที่เชื่อถือ" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "ประเภท" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "ไม่สามารถส่งอีเมล" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "รายงานไม่ได้จัดหมวดหมู่" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "ไม่ได้อ่าน" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "ไม่ได้ตรวจสอบ" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "ปรับปรุงฟีด" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "อัปโหลด" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "ดูคำแนะนำการอัปโหลดรายงานของเรา: -" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "คู่มืออัพโหลด XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "คู่มืออัพโหลด CVS" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "ไฟล์ที่จะอัปโหลด" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "อัปโหลดรายงาน" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "คอลัมน์ฟิลด์ที่กำหนดเองจะต้องมี form_id ของพวกเขาต่อท้าย เช่นทดสอบฟิลด์ที่กำหนดเองในรูปแบบเริ่มต้นที่มี id1 จะได้รับการทดสอบ-1 ในระหว่างการนำเข้าข้อมูลฟอร์มที่กำหนดเองให้แน่ใจว่า" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "คุณสามารถเล่าเรื่องราวต่างๆ ลงใน Ushahidi โดยการใช้แบบฟอร์มด้านล่าง" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "รายงานต้องอัพโหลดทั้งในรูปแบบ CSV หรือ XML" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "ในเหตุการณ์ที่มี ID ในฐานข้อมูลอยู่แล้ว รายการในไฟล์ CSV / XML จะถูกละเว้นละเว้น" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "ต้องมีอย่างน้อยชื่อเรื่องเหตุการณ์และวันที่เหตุการณ์เกิด" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "ถ้าไม่มีคอลัมน์สำหรับละติจูดและลองจิจูด ตำแหน่งจะถูก geocoded โดยการใช้ Google Geocoder แทน" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "ถ้านำเข้าข้อมูลเพิ่มเติมเช่นข้อมูลส่วนบุคคลและ/หรือฟอร์มที่กำหนดเอง" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "อย่างน้อยต้องมีหนึ่งข้อมูลส่วนตัว (ชื่อ, นามสกุล, อีเมล) เพื่อทำการบันทึก ถ้านทึกว่างเปล่าจะไม่ถูกนำเข้า" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "ในกรณีของคุณ รายการข้อมูลแบบเลื่อนลง ปุ่มวิทยุและช่องตรงกับตัวเลือก เหมาะสำหรับฟิลด์ที่คุณกำหนดเอง" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "ช่องทำเครื่องหมายจะถูกแยกออกด้วยจุลภาค เช่นถ้าคุณเลือกผลไม้แอปเปิ้ล มะม่วง และองุ่น รายการของคุณนี้ควรจะเป็น \"แอปเปิ้ล,มะม่วง,องุ่น\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "ข้อมูลวันที่อยู่ในรูปแบบดังต่อไปนี้: mm / dd / yyyy เช่น 3 ตุลาคม 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "ตัวอย่างรายงาน CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,ชื่อเรื่องเหตุการณ์,เหตุการณ์\nวันที่,ที่ตั้ง,รายละเอียด,ประเภท,ได้รับการอนุมัติ,การตรวจสอบ,ละติจูด,ลองจิจูด
\"1\", \"สงสัยว่าการตายในไนโรบี\", \"2009-05-15 01:06:00\", \"ไนโรบี \",\" สามกรณีที่ได้รับการยืนยันใน C. เดลอุรุกวัย \",\" ตายพลเรือน \"ใช่ใช่\" -1.287 \",\" 36.821 \"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"ขโมย\",\"2009-03-18 10:10:00\",\"อักกรา\",\"ปล้นสะดมที่เกิดขึ้นทุกที่\", \"การจลาจล,ตาย,สูญเสียทรัพย์สิน, \",ใช่,ไม่ใช่,\"5.55\", \"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "อัปโหลดสำเร็จ" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "อัปโหลดวิดีโอ" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "ผู้ใช้" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "ชื่อผู้ใช้" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "ผู้ดูแลระบบ Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "ตรวจสอบ" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "ตรวจสอบแล้ว" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "รายงานที่ตรวจสอบแล้ว" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "ตรวจสอบ" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "ตรวจสอบรายงานนี้" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "เวอร์ชัน" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "ผ่านทาง" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "วีดีโอ" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "ดู" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "ดู" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "ดูทั้งหมด" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "ดูฟีดทั้งหมด" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "ดูรายงานทั้งหมด" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "ดูรายการ" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "ดูเพิ่มเติม" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "ดูรายละเอียด" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "ดูรายงาน" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "ดูรายงาน" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "ดูวิดีโอ" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "มองเห็นได้" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "รอการอนุมัติ" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "รอการตรวจสอบ" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "แผนที่ที่กว้างขึ้น" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "เว็บฟอร์ม" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "เว็บ" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "น้ำหนัก" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "ใช่" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "เมื่อวาน" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "แดชบอร์ดของคุณ" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "ไฟล์ของคุณ" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "ซูมเข้า" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "ซูมออก" diff --git a/application/i18n/po/po-th_TH/upgrade.po b/application/i18n/po/po-th_TH/upgrade.po new file mode 100644 index 0000000000..19882c2f2b --- /dev/null +++ b/application/i18n/po/po-th_TH/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Boripat Lebel , 2014 +# Ngamnet_review , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2014-09-07 04:32+0000\n" +"Last-Translator: Ngamnet_review \n" +"Language-Team: Thai (Thailand) (http://www.transifex.com/ushahidi/ushahidi-v2/language/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "ใส่ข้อมูลที่ไม่ถูกต้อง โปรดใส่ 0 แทน ใช่ หรือ ใส่ 1 แทนไม่ใช่ " + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "อัพเกรดอัตโนมัติ" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "อัพเกรดที่ทำได้" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "ต่อไป" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "อัพเกรด" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "ดังนั้นเราจะอัพเกรดฐานข้อมูลของคุณจากรุ่น" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "ฐานข้อมูลรุ่นใหม่ล่าสุด" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "คลิกที่ปุ่ม \"อัพเกรด\" และ chillax จะดำเนินการ" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "หากคุณต้องการให้เราสำรองฐานของคุณ ทำได้โดยการติ๊กปุ่มตรวจสอบด้านล่างและเราจะทำให้คุณทันที" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "จะสำรองฐานข้อมูลก่อนที่จะอัพเกรดหรือไม่? ( ควรจำทำ )" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "อัพเกรดฐานข้อมูล Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi ได้รับการปรับปรุงแล้ว! ก่อนที่คุณจะดำเนินการต่อคุณจำเป็นต้องอัพเดทฐานข้อมูลของคุณให้เป็นรุ่นใหม่ล่าสุด (% s)" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "รุ่นฐานข้อมูลของคุณเป็นรุ่นล่าสุด" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "อัพเกรดล้มเหลว" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "อัพเกรดด้วยตนเอง" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "สถานะการอัพเกรด Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "คำแนะนำด้านล่างเป็นรายละเอียดวิธีการอัพเกรด Ushahidi deployment ด้วยตนเอง" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
ดาวน์โหลด
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- ดาวน์โหลด Ushahidi build รุ่นล่าสุดจาก" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "< dt > การสำรองข้อมูล < dd> - .htaccess , ./applications/config/config.php ./applications/config/database.php และ ./applications/config/auth php ไฟล์ . เพียง ในกรณีที่มีอะไรผิดพลาดจึงแนะนำให้คุณสำรองข้อมูลทั้งหมด ในการใช้งาน Ushahidi คัดลอกไฟล์ < dd> < dt > - < dd> - การอันซิปไฟล์ที่ดาวน์โหลด < dd> - ขึ้นอยู่กับระบบปฏิบัติการที่กำลังทำงานบนเว็บเซิร์ฟเวอร์ เลือกใช้เครื่องมือที่ต้องการ/โหมด (เช่น Telnet , FTP, SSH ) ที่จะเข้าสู่ระบบไปยังเว็บเซิร์ฟเวอร์และแทนที่เนื้อหาของทั้งหมด โฟลเดอร์ที่มีใหม่ล่าสุดจาก ที่สร้า เมื่อเร็วๆ นี้ < dt > ฐานข้อมูล Upgrde < dd> - ตรวจสอบรุ่นแรก คีมาฐานข้อมูลของคุณ โดยดูที่ db_version ค่าในตาราง การตั้งค่าหรือ ดูที่ Ushahidiข้อมูลการอัพเกรด ที่ด้านบนสุดของหน้านี้ < dd> - ถ้าคุณอยู่ที่รุ่น 25 คุณจะต้องอัพเกรด 25-26 , 26-27 , 27-28 และอื่น ๆ ไปยังแฟ้ม SQL ล่าสุดใน / SQL . ไดเรกทอรี < dd> - . กับ ฐานข้อมูลลูกค้า ของคุณอัพเกรดฐานข้อมูลโดยการดำเนินการ แฟ้ม upgradex - x.sql ที่เหมาะสม " + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr " ขั้นที่ 3: ดูจาก SQL โฟลเดอร์ Manuall ดำเนินการอัพเกรด< xx > - < xx > .sql ไฟล์ เริ่มต้นจาก db ปัจจุบันของคุณ ที่ติดตั้งผ่านไฟล์ SQLล่าสุด" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr " ขั้นที่ 4: คลิกที่ปุ่ม\"ต่อไป\"เช็คเลือกเพื่อที่จะอัพเกรดตารางที่จำเป็น" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "เพื่อการอัพเกรดอัตโนมัติให้คลิกที่ปุ่มด้านล่าง" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "คุณกำลังใช้ Ushahidi v%1$s กับรุ่นฐานข้อมูล %2$d ที่ทำงานบน %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "กำลังอัพเกรด" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "เพื่อที่จะดำเนินการอัพเกรดแบบง่าย ข้อมูลต่อไปนี้เป็นสิ่งจำเป็นสำหรับเซิร์ฟเวอร์ที่เว็บไซต์ของคุณเป็นโฮสต์" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "ชื่อโฮสต์ FTP: ตัวอย่าง:\"โลคอลโฮสต์\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "รหัสผ่าน FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "ชื่อผู้ใช้ FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "คุณมีรุ่นล่าสุดของ Ushahidi" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "คุณไม่จำเป็นต้องอัพเกรด" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "ฐานข้อมูลรุ่น: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "คำเตือน: รุ่นซอฟต์แวร์ใน version.php และฐานข้อมูลไม่ตรงกับ" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "คำเตือน: รุ่นซอฟต์แวร์ใน version.php และฐานข้อมูลไม่ตรงกับ" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "ฐานข้อมูล:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "กำลังดาวน์โหลดรุ่นล่าสุดของ Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "ตารางบันทึกไฟล์" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "ดาวน์โหลดประสบความสำเร็จ เปิดใช้งาน..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "การดาวน์โหลดล้มเหลว" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "การเปิดใช้งานสำเร็จแล้ว กำลังคัดลอกไฟล์..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "การเปิดใช้งานล้มเหลว" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "การคัดลอกประสบความสำเร็จแล้ว กำลังอัพเกรดฐานข้อมูล..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "การคัดลอกไฟล์ล้มเหลว" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "การสำรองข้อมูลและการอัพเกรดประสบความสำเร็จแล้ว" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "การสำรองฐานข้อมูลหล้มเหลว" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "การอัพเกรดฐานข้อมูลประสบความสำเร็จ" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "กำลังลบไฟล์ที่ดาวน์โหลด..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "UPGRADE ประสบความสำเร็จ ดู Log File" diff --git a/application/i18n/po/po-tr_TR/alerts.po b/application/i18n/po/po-tr_TR/alerts.po new file mode 100644 index 0000000000..6c01eb38b9 --- /dev/null +++ b/application/i18n/po/po-tr_TR/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Caner Başaran , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:38+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-posta adresinizi girdiğiniz alanda geçerli bir adres gözükmüyor?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Bu e-posta adresi zaten bu bölgedeki uyarıları almak için sistemimizde kayıtlı" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-posta adresiniz en az 4, en fazla 64 karakter uzunluğunda olmalı." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kullanım koşullarını kabul ettiyseniz mutlaka sisteme bir e-posta girmeniz gerekmektedir." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Haritada geçerli bir bölge seçmediniz." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Haritada geçerli bir bölge seçmediniz." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Haritada geçerli bir bölge seçmediniz." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Haritada geçerli bir bölge seçmediniz." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Cep telefonu numaranız eksik veya fazla girilmiş gözüküyor." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Bu cep telefonu numarası zaten bu bölgedeki uyarıları almak için sistemimizde kayıtlı" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Cep telefonu numarası geçerli değil. Lütfen sadece ülke kodunuzu (Türkiye için +90) ve numaranızı giriniz." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Cep telefonu numaranızı veya e-posta adresinizi girmek zorundasınız." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Kullanım koşullarını kabul ettiyseniz mutlaka sisteme bir cep telefonu numarası girmeniz gerekmektedir." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Geçerli bir etki alanı ayarlamadınız." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Geçerli bir etki alanı ayarlamadınız." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Bu kod zaten onaylanmış!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Bu onay kodu bulunamadı! Lütfen doğru URL adresine sahip olduğunuzdan emin olun." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Kodunuz başarıyla onaylandı. Artık, olaylar hakkında anlık bilgi alabileceksiniz." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Uyarı isteğinizi onaylamak için lütfen şurayı ziyaret edin" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Daha fazla uyarı oluşturmak için Uyarılar sayfasına dönün" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "E-posta Uyarı istediğiniz oluşturuldu ve onay iletisi gönderildi" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Lütfen E-Postanıza gelen onay kodunu girin:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "E-posta ile uyarı isteğiniz KAYDEDİLEMEDİ!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "E-posta ile uyarı isteğiniz kaydedildi!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Doğrulama işleminiz TAMAMLANAMADI!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Mobil uyarı isteğiniz kaydedildi ve doğrulama iletisi şu telefon numarasına gönderildi:" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Lütfen cep telefonunuza gönderilen onay kodunuzu giriniz:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Mobil uyarı isteğiniz KAYDEDİLEMEDİ!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Mobil uyarı isteğiniz kaydedildi!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Plana göre yerleştirme düzgün bir şekilde ayarlanmadı" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Uyarı alma bölümüne abone olduğunuz için bu e-postayı almaktasınız. Bu e-postayı almak istemiyorsanız: (link here)" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "(e-mail address here) adlı e-posta adresinden artık uyarı almayacaksınız" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Biz sizin aboneliğinizi iptal edemiyoruz. Lütfen adresin doğru olduğundan emin olun." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "uyarılar - onaylama" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "İsteğinizi onaylamadığınız sürece uyarı bilgisi alamayacaksınız." diff --git a/application/i18n/po/po-tr_TR/auth.po b/application/i18n/po/po-tr_TR/auth.po new file mode 100644 index 0000000000..71daf3d883 --- /dev/null +++ b/application/i18n/po/po-tr_TR/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Caner Başaran , 2015 +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:48+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Bu e-posta alanı geçerli bir adres içermiyor." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Üzgünüz, bu e-posta adresi için zaten bir hesap var." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "E-posta adresi en az 4, en fazla 64 karakter uzunluğunda olmalıdır." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "E-posta alanı boş bırakılamaz." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "İsim en az 3, en fazla 100 karakter uzunluğuna olmalıdır." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "İsim alanı boş bırakılamaz." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Kullanıcı ismi geçersiz karakterler içeriyor." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Parola alanı en az 8 karakter uzunluğunda olmalıdır." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Lütfen geçerli bir e-posta ve parola girdiğinizi kontrol edin." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Lütfen iki parola alanına da aynı parolayı girin." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Parola alanı boş bırakılamaz." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Parolanız sadece abecesel karakterler, # ve @ simgeleri, rakamlar, altçizgiler ve tirelerden oluşmalıdır" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Parola alanı boş bırakılamaz." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Parolanız en az 8 karakterden oluşmalıdır." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Lütfen iki parola alanına da aynı parolayı girin." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Parola alanı boş bırakılamaz." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Parola doğrulama alanı içeriği parola ile aynı olmalıdır." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Geçersiz bir e-posta adresi girdiniz." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Üzgünüz, e-posta adresiniz kayıtlı değil." + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "E-posta alanı boş bırakılamaz." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Geçersiz ünvan formatı." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Ünvan kısmı en az 5, en fazla 30 karakterden oluşmalıdır." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "En az 1 adet ünvan belitmelisiniz." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Yönetici veya kullanıcı ünvanlarından birini seçmelisiniz." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Yönetici ünvanı düzenlenemez." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Üzgünüz, bu kullanıcı ismi zaten kullanılıyor." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Kullanıcı ismi en az 2, en fazla 16 karakterden oluşmalıdır." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Kullanıcı ismi boş bırakılamaz." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Süper Yönetici ünvanı düzenlenemez." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-tr_TR/bug.po b/application/i18n/po/po-tr_TR/bug.po new file mode 100644 index 0000000000..3f6a114be2 --- /dev/null +++ b/application/i18n/po/po-tr_TR/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Lütfen geçerli bir güvenlik kodu girin." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Lütfen güvenlik kodunu girin" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "E-posta adresi geçerli değil gibi görünüyor." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-posta adresi en az 4, en fazla 64 karakterden oluşmalıdır." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Onay kutucuğunu tıkladıysanız, bir e-posta adresi de girmeniz gereklidir." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Hata alanı boş bırakılamaz" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Başlık alanı en az 3 karakterden oluşmalıdır." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Başlık alanı boş bırakılamaz." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "İsim alanı en az 3 karakterden oluşmalıdır." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "İsim alanı boş bırakılamaz." diff --git a/application/i18n/po/po-tr_TR/category.po b/application/i18n/po/po-tr_TR/category.po new file mode 100644 index 0000000000..faa67f6dfc --- /dev/null +++ b/application/i18n/po/po-tr_TR/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Renk kısmı en az 6 karakterden oluşmalıdır." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Renk kısmı boş bırakılamaz." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Açıklama kısmı boş bırakılamaz." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "En fazla 50KB resim yükleme hakkınız olduğu aklınızda bulunsun." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Seçilen dosya türü geçerli değil. Geçerli olan dosya türleri .JPG, .PNG, .GIF olmalıdır." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Resim yükleme kısmı geçersiz bir dosya türü içermektedir" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Başlık kısmı en az 3, en fazla 80 karakter uzunluğunda olmalıdır." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Başlık kısmı boş bırakılamaz." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Ebeveyn kategorisi girilmedi." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Ebeveyn kategorisi bölümü numerik (sayı) olmalıdır." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Ebeveyn kategorisinin girilmesi gereklidir." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Kategori ve ebeveyn kategorisi aynı olamaz." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-tr_TR/comments.po b/application/i18n/po/po-tr_TR/comments.po new file mode 100644 index 0000000000..f72b89d9f1 --- /dev/null +++ b/application/i18n/po/po-tr_TR/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Lütfen geçerli bir güvenlik kodu girin" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Lütfen güvenlik kodunu girin" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "İsim kısmı en az 3 karakterden oluşmalıdır." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "İsim kısmı boş bırakılamaz." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Yorumlar kısmı boş bırakılamaz." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-posta adresi geçerli değil." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-posta adresi en az 4, en fazla 64 karakter uzunluğunda olmalıdır." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kullanım koşullarını kabul ettiyseniz e-posta alanını doldurmak zorundasınız." diff --git a/application/i18n/po/po-tr_TR/contact.po b/application/i18n/po/po-tr_TR/contact.po new file mode 100644 index 0000000000..5023f0e4c0 --- /dev/null +++ b/application/i18n/po/po-tr_TR/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Caner Başaran , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:33+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Lütfen geçerli bir güvenlik kodu girin" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Lütfen güvenlik kodunu girin" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Girilen e-posta adresi geçerli değil" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-posta adresi en az 4, en fazla 64 karakter uzunluğunda olmalıdır." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kullanım koşullarını kabul ettiyseniz sisteme e-posta girmeniz gereklidir." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "İleti alanı boş bırakılamaz." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "İsim kısmı en az 3 karakterden oluşmalıdır." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "İsim kısmı boş bırakılamaz." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Başlık kısmı en az 3 karakterden oluşmalıdır." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Başlık kısmı boş bırakılamaz." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-tr_TR/core.po b/application/i18n/po/po-tr_TR/core.po new file mode 100644 index 0000000000..f4c0ce2ac8 --- /dev/null +++ b/application/i18n/po/po-tr_TR/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "konfigürasyon dosyası" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "yönetici" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "sürücü" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s kütüphanesi (library) için olan %s sürücüsü (driver) %s arayüzünü (interface) oluşturmalıdır." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s kütüphanesi (library) için %s sürücüsü (driver) bulunamadı." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Anasayfa'ya gidebilir ya da yeniden deneyebilirsiniz." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "İstek Tamamlanamadı." + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "yardımcı" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "İstenen dosya türünün (%s) konfigürasyon dosyasının içerisinde görüntülenmesine izin verilmiyor." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Geçerli olmayan yöntem %s, %s diye bilinir." + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "%s sınıfında (class) %s özelliği (property) bulunmuyor." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "kütüphane" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Günlük dosyası yazılamıyor: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi kontrol eden dosyayı belirleyemiyor: %s " + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Lütfen varsayılan dosya yolunu \"config/routes.php\" olarak ayarlayın. " + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "İstenen sayfa (%s) bulunamadı." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Bu Sorunu Ushahidiye Bildirin" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "İstenen (%s) bulunamadı" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Yığın Takibi" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "{execution_time} saniyede, {memory_usage} hafıza kullanarak yüklendi. Ushahidi Tarafından Oluşturuldu v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Her sayfa isteğinde, Ushahidi size sadece bir örnek gösterebilir" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Yakalanamayan %s: %s adlı dosya içerisinde %s. satırda %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "görüntüle" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Sunum yapmadan önce dosya ismi görüntüleme kısmını ayarlamak zorundasınız" diff --git a/application/i18n/po/po-tr_TR/database.po b/application/i18n/po/po-tr_TR/database.po new file mode 100644 index 0000000000..213dff5253 --- /dev/null +++ b/application/i18n/po/po-tr_TR/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Veritabanı hatası: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "\"%s\" tablosu veritabanı içerisinde bulunamadı. Lütfen Ushahidinin şu anki versiyonu için en güncel veritabanı sürümünü kullandığınıza emin olun." diff --git a/application/i18n/po/po-tr_TR/datetime.po b/application/i18n/po/po-tr_TR/datetime.po new file mode 100644 index 0000000000..7b5aa21a9c --- /dev/null +++ b/application/i18n/po/po-tr_TR/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-31 08:21+0000\n" +"Last-Translator: Talha Okur \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "öö" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Cum" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Cuma" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Pzt" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Pazartesi" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "ös" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Cmt" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Cumartesi" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Paz" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Pazar" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Perş" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Perşembe" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Sal" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Salı" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Çarş" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Çarşamba" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Oca" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Ocak" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Şub" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Şubat" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Mar" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Mart" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Nis" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Nisan" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "May" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Mayıs" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Haz" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Haziran" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Tem" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Temmuz" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Ağu" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Ağustos" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Eyl" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Eylül" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Eki" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Ekim" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Kas" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Kasım" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Ara" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Aralık" diff --git a/application/i18n/po/po-tr_TR/feeds.po b/application/i18n/po/po-tr_TR/feeds.po new file mode 100644 index 0000000000..ae3885ed0a --- /dev/null +++ b/application/i18n/po/po-tr_TR/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "TARİH" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Besleme ismi en az 3, en çok 70 karakter uzunluğunda olmalıdır." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Lütfen beslemenin adını girin." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Lütfen beslemenin URL'sini girin." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Lütfen geçerli bir URL girin. Örn. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "KAYNAK" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Başlık" diff --git a/application/i18n/po/po-tr_TR/footer.po b/application/i18n/po/po-tr_TR/footer.po new file mode 100644 index 0000000000..8dfa3f0e57 --- /dev/null +++ b/application/i18n/po/po-tr_TR/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "Bu sistemde php5-curl yüklü değil." diff --git a/application/i18n/po/po-tr_TR/form.po b/application/i18n/po/po-tr_TR/form.po new file mode 100644 index 0000000000..612735dc57 --- /dev/null +++ b/application/i18n/po/po-tr_TR/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Sağladığınız varsayılan değer bu alan için geçerli değil." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Alan Adı en az 3, en fazla 200 karakter uzunluğunda olmalıdır." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Lütfen Alan Yüksekliği kısmına 0 ile 50 arasında bir rakam girin" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Geçersiz bir tarih girdiniz" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Lütfen Tarih Alanı için Evet ya da Hayırı seçin" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Alan Adı en az 3, en fazla 100 karakter uzunluğunda olmalıdır." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Lütfen Alan Adı girin." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Gerekli Alan için yanlış bir değer girdiniz." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Gerekli Alan için lütfen Evet ya da Hayırı seçin" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Lütfen geçerli bir Alan Türü seçin." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Lütfen bir Alan Türü seçin." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Lütfen Alan Genişliği kısmına 0 ile 300 arasında bir rakam girin" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Lütfen form açıklaması girin." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Varsayılan form silinemez." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Lütfen bu alana eklemek istediğiniz formu seçin." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Lütfen bu alana eklemek istediğiniz formu seçin." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Form adı en az 3, en çok 100 karakter uzunluğunda olmalıdır." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Lütfen formun adını girin." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-tr_TR/imap.po b/application/i18n/po/po-tr_TR/imap.po new file mode 100644 index 0000000000..548ead9033 --- /dev/null +++ b/application/i18n/po/po-tr_TR/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "IMAP kanalı açılamadı." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "E-posta servisi desteklenmiyor." diff --git a/application/i18n/po/po-tr_TR/installer.po b/application/i18n/po/po-tr_TR/installer.po new file mode 100644 index 0000000000..ac86bd13c7 --- /dev/null +++ b/application/i18n/po/po-tr_TR/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Caner Başaran , 2015 +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:49+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Ana Yol" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Veritabanı" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Veritabanı Sunucusu" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Eğer Ushahidiyi kendi bilgisayarınızda çalıştırıyorsanız, muhtemelen bu bölümün ismi \"localhost\" olacaktır. Eğer Ushahidiyi başka bir web sunucusunda çalıştırıyorsanız, sunucu sağlayıcınızdan bu bilgiyi almanız gerekmektedir." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Veritabanı İsmi" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Ushahidiyi çalıştıracağınız veritabanının ismi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Veritabanı hakkında daha fazla bilgi almak için lütfen bu konuyu inceleyin. (Bu konu İngilizcedir.)" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Varsayılan Dil (Yerel)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Ushahidi bir çok dil ile birlikte gelir. İsterseniz sizde kendi dilinizi ekleyebilirsiniz" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Deaktif" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Aktif" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Aşağıda listelenen hatalar ile karşılaştık." + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Sunucunuzdaki bu konum Ushahidi dosyalarının bulunduğu yerdir. Biz bu konumu otomatik olarak tespit ettik, lütfen bu konumun doğru olduğundan emin olun.Eğer bu alan boş ise, endişelenmeyin, Ushahidi en üst seviyedeki dizine kurulmuştur." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Tamamlandı" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Genel" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Anahtarı" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Herhangi biri API anahtarı alabilir. Kendininkini al (İngilizce)" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Geri Dön" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "GELİŞMİŞ YÜKLEME" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "5-adım yöntemiyle bütün basit yükleme işlemlerini tamamlayın. (Sunucu, harita, site ismi ve iletişim bilgileri dahil.)" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "BASİT YÜKLEME" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Hızlı ve basit. Bütün ihtiyacınız olan sitenizin kök dizini ve veritabanı bilgileri! Eğer hemen sitenizin yayına girmesini istiyorsanız bu seçeneği seçin, daha sonra istediğiniz bölümleri ayarlayabilirsiniz." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "İlerle" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Ushahidi sunucusu yükleme merkezine hoşgeldiniz. Lütfen aşağıdaki yükleme çeşitlerinden birini seçin." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Yükleme Başarılı" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Posta Sunucusu" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Posta Sunucu Sağlayıcısı" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Örnek: posta.sizinsiteniz.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Posta Sunucu Parolası" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "E-posta hesabınıza girerken kullandığınız parola" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Posta Sunucu Portu" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Sık Kullanılan Portlar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Posta Sunucu Tipi" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) veya Post Office Protocol (POP). Aralarındaki fark nedir? (İngilizce)" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Posta Sunucusu Kullanıcı Adı" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Gmail, Hotmail veya Yahoo Mail kullanıyorsanız, kullanıcı adı alanına tüm e-posta adresinizi girin." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Harita" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Harita Sağlayıcı" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi bu haritalama sistemleriyle aşağı yukarı aynı verimlilikte çalışır: Google, Bing, Yahoo veya Open Street Map. Bulunduğunuz yeri en detaylı olarak gösteren haritalama sistemini seçmenizde fayda var." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Diğer Adımlar..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Parola" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Veritabanınızın Parolası" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Geri" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Lütfen Apache sunucusunu baştan başlatın" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "SSL'i etkinleştir veya devre dışı bırak." + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Bazı posta sunucuları bağlantı gönderirken SSL sistemini kullanmanıza izin verir.SSL kullanmak güvenliğiniz açısından tavsiye edilir" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "SMS sunucusunu oluşturun" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Sitenizin E-posta Adresi" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Sitenizin Uyarılar için E-posta Adresi" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Ziyaretçileriniz uyarı havuzuna abone olduklarında, uyarıları bu e-posta adresinden alacaklar. Bu e-posta adresi ile sitenin genel e-posta adresiyle aynı olmak zorunda değil." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Site hakkında gönderilen e-postalar bu adresten gönderilecektir." + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Site Adı" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Sitenizin adı" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Site Etiketleri" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Sizin etiketleriniz" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Düzgün bir kurulum için aşağıda listelenen dosya ve klasörler yazılabilir olmalı." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Dosya izinlerinin değiştirilmesi hakkında bilgiler (İngilizce):

,\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Yükleme işlemine başlamadan önce belirtilen dosya ve klasörlerin yazılabilir olduğundan emin olun. Bu konu dosya izinleriyle alakalıdır." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Yükleme kısmı için lütfen belirtilen bilgileri elinizde bulundurun." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Tablo Öneki" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Normalde tablo önekini kurulum sırasında değiştirmezsiniz. Fakat tek bir veritabanına birden fazla Ushahidi kurmak istiyorsanız gerekli değişiklikleri bu kısımdan yapabilirsiniz" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Başlık" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Giriş yapmak için," + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Rapor bilgisi yükle" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Kullanıcı Adı" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Veritabanı kullanıcı adınız" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "ve belirtilen kimlik bilgilerini kullanın" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Siteyi görüntüle" diff --git a/application/i18n/po/po-tr_TR/layer.po b/application/i18n/po/po-tr_TR/layer.po new file mode 100644 index 0000000000..fddcfbe232 --- /dev/null +++ b/application/i18n/po/po-tr_TR/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Renk alanı en az 6 karakterden oluşmalıdır." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Renk alanı boş bırakılamaz." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Dosya uzantısı geçersiz. .KMZ, .KML uzantılı dosyalar kabul edilmektedir." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Dosya geçersiz görünüyor." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "İsim alanı en az 3, en fazla 80 karakterden oluşmalıdır." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "İsim alanı boş bırakılamaz." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Bir KML URL'si ya da Dosyası gereklidir" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Aynı anda hem bir KML dosyasına ve bir KML URL'sine sahip olamazsınız" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Lütfen geçerli bir adres giriniz. Örn. http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-tr_TR/libraries.po b/application/i18n/po/po-tr_TR/libraries.po new file mode 100644 index 0000000000..6eb3fa7df1 --- /dev/null +++ b/application/i18n/po/po-tr_TR/libraries.po @@ -0,0 +1,119 @@ +# +# Translators: +# Caner Başaran , 2012,2015 +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:33+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Akismet sunucusuna bağlanılamadı" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Akismet'ten gelen yanıta cevap verilemedi" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API kütüphanesi: %s için %s sınıfı bulunamadı. Lütfen API görev yolunuzu kontrol edin." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Akismet API anahtarı geçerli değil" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Hata! Fopen komutu ile gönderme metodu çalışmadı!
Lütfen PHP sunucusunun OpenSSL desteği olduğuna ve PHP versiyonunun 5.2den yüksek olduğuna emin olun" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Unicode iletiniz çok uzun! (Mevcut uzunluk=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Lütfen gidilecek adresi belirtin (KİME)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Lütfen kaynak adresi belirtin (KİMDEN)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Unicode iletiniz çok uzun! (Uzunluk=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Desteklenmeyen gönderim metodu!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API kütüphanesi (%s) geçerli değil. Bütün API kütüphaneleri %s arasınıfı olmalıdır" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Dosya %s silinemedi" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Çıkartılırken hata: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Ushahidi'nin en son sürümü indirilirken hata oluştu. HTTP durum kodu" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Dosya %s kopyalanamadı" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Dosya %s silinemedi" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi güncelleme yazılımı" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "İndirilen Ushahidi zip dosyası %s, yazılamadı" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "RiverID sınıfında \"%s\" mevcut değil." diff --git a/application/i18n/po/po-tr_TR/maintenance.po b/application/i18n/po/po-tr_TR/maintenance.po new file mode 100644 index 0000000000..90b482a81a --- /dev/null +++ b/application/i18n/po/po-tr_TR/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 15:13+0000\n" +"Last-Translator: Talha Okur \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Üzgünüm, sitemizde şuan bakım çalışması vardır. Lütfen birkaç dakika sonra tekrar deneyin." diff --git a/application/i18n/po/po-tr_TR/message.po b/application/i18n/po/po-tr_TR/message.po new file mode 100644 index 0000000000..afe9a6c01f --- /dev/null +++ b/application/i18n/po/po-tr_TR/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Lütfen geçerli bir güvenlik kodu girin" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Lütfen güvenlik kodunu girin" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-posta adresi geçersiz." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "E-posta kısmı en az 4, en fazla 64 karakter uzunluğunda olmalı." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Kullanım koşullarını kabul ettiyseniz sisteme e-posta adresi girmeniz gerekir." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Yorumlar kısmı boş bırakılamaz." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "İsim kısmı en az 3 karakterden oluşmalı." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "İsim kısmı boş bırakılamaz." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Telefon kısmı geçerli değil." diff --git a/application/i18n/po/po-tr_TR/mhi.po b/application/i18n/po/po-tr_TR/mhi.po new file mode 100644 index 0000000000..6374cda9d5 --- /dev/null +++ b/application/i18n/po/po-tr_TR/mhi.po @@ -0,0 +1,53 @@ +# +# Translators: +# Caner Başaran , 2015 +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:31+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Lütfen geçerli bir güvenlik kodu giriniz." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Lütfen güvenlik kodunu giriniz." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "E-posta adresi geçerli değil gibi görünüyor." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Lütfen geçerli bir e-posta adresi giriniz." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "İleti alanı boş bırakılamaz." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Başlık en az 3 karakterden oluşmalıdır." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Başlık alanı boş bırakılamaz." diff --git a/application/i18n/po/po-tr_TR/notifications.po b/application/i18n/po/po-tr_TR/notifications.po new file mode 100644 index 0000000000..77b05ff962 --- /dev/null +++ b/application/i18n/po/po-tr_TR/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# Caner Başaran , 2015 +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:34+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Bu ileti internet sitenizden gönderildi." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Yönetici Girişi" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Şu habere internet sitenizde yorum yazıldı:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Yeni Yorum" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "İnternet sitenize yeni bir e-posta iletisi gönderildi." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Yeni E-posta" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "İnternet sitenize yeni bir rapor gönderildi." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Yeni Rapor" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "İnternet sitenize yeni bir kısa mesaj gönderildi." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Yeni Kısa Mesaj" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Yeni bir Uyarı Aldınız" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Yeni Uyarı!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Özel Bir İletiniz Var!" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Yeni Özel İleti" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Cevaplamak İçin: " diff --git a/application/i18n/po/po-tr_TR/page.po b/application/i18n/po/po-tr_TR/page.po new file mode 100644 index 0000000000..3f6bbc94b5 --- /dev/null +++ b/application/i18n/po/po-tr_TR/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 19:00+0000\n" +"Last-Translator: Talha Okur \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Lütfen bir sayfa başlığı giriniz" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Sayfa başlığı 3 karakterden kısa ve 150 karakterden uzun olamaz." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Lütfen sayfa etiket adını giriniz." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Lütfen bir sayfa açıklaması giriniz." diff --git a/application/i18n/po/po-tr_TR/permissions.po b/application/i18n/po/po-tr_TR/permissions.po new file mode 100644 index 0000000000..a78f1d8834 --- /dev/null +++ b/application/i18n/po/po-tr_TR/permissions.po @@ -0,0 +1,114 @@ +# +# Translators: +# Caner Başaran , 2015 +# Mehmet Ertekin , 2013 +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2015-01-30 12:34+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Raporları görüntüle" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Rapor Yarat/Düzenle/Sil" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Raporları Onayla" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Raporları Doğrula" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Rapor Yorumlarını Yönet" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Raporları İndir" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Raporları Karşıya Yükle" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "İletileri Yönet" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "İleti Raporlarını Yönet" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "İstatistikleri Görüntüle" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Ayarları Değiştir" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Panel Yönetimi" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Kullanıcı Yönetimi" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Rol Yönetimi" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Kontrol edebilirsiniz" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Girişleri Yönet" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Yönetici Erişimi UI" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Üye Erişimi" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-tr_TR/private_message.po b/application/i18n/po/po-tr_TR/private_message.po new file mode 100644 index 0000000000..85d1bf38a6 --- /dev/null +++ b/application/i18n/po/po-tr_TR/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Caner Başaran , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:32+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Konu alanı boş bırakılamaz." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "İleti alanı boş bırakılamaz." diff --git a/application/i18n/po/po-tr_TR/report.po b/application/i18n/po/po-tr_TR/report.po new file mode 100644 index 0000000000..0e43ac4f1e --- /dev/null +++ b/application/i18n/po/po-tr_TR/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Caner Başaran , 2015 +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2015-01-30 12:11+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "hata!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Bu harita sadece bir ülkeyi kapsıyor. Lütfen rapor yerinin bu %s. ülkesi içinde olduğunu emin olun." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "\"%s\" alanı boş bırakılamaz." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Karşıdan yüklemeye dahil etmek için lütfen geçerli bir nesne seçin" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Karşıdan yüklemeye dahil etmek için lütfen geçerli bir nesne seçin" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Lütfen \"Onay Bekleyen Raporlar\" ya da \"Onaylanan Raporları\" ya da her ikisini de seçin. " + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Lütfen \"Onay Bekleyen Raporlar\" ya da \"Onaylanan Raporları\" ya da her ikisini de seçin. " + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Lütfen \"Onay Bekleyen Raporlar\" ya da \"Onaylanan Raporları\" ya da her ikisini de seçin. " + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Lütfen \"Onay Bekleyen Raporlar\" ya da \"Onaylanan Raporları\" ya da her ikisini de seçin. " + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Lütfen \"Onay Bekleyen Raporlar\" ya da \"Onaylanan Raporları\" ya da her ikisini de seçin. " + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Lütfen \"Onay Bekleyen Raporlar\" ya da \"Onaylanan Raporları\" ya da her ikisini de seçin. " + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "KİMDEN tarihi kısmında geçerli bir tarih görünmüyor?" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Lütfen geçerli bir KİMDEN tarihi girin. Bu tarih, bugünden daha ileri bir tarih olamaz." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Bu Raporu Onaylamak için lütfen geçerli bir değer girin" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "öö/ös seçeneğini girdiğiniz alanda geçerli bir değer görünmüyor?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Kategori kısmı geçerli değil?" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Kategori kısmı boş bırakılamaz." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Tarih kısmında geçerli bir tarih görünmüyor?" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Tarih kısmında geçerli bir tarih görünmüyor?" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Tarih kısmı boş bırakılamaz." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Tanım kısmı boş bırakılamaz." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Saat kısmında geçerli bir saat değeri görünmüyor?" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Saat kısmı boş bırakılamaz." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Bilgi Olasılığı için lütfen geçerli bir değer girin" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Bilgi Olasılığı için lütfen geçerli bir değer girin" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Dakika kısmında geçerli bir değer görünmüyor?" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Dakika kısmı boş bırakılamaz." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Haber kaynağı linkleri alanında geçerli bir URL görünmüyor?" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Yükleyeceğiniz fotoğraf büyüklüğünün 2MBı geçmediğinden lütfen emin olun." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Yükleme yapılacak fotoğraf alanında geçerli bir fotoğraf görünmüyor. Sadece .JPG, .PNG ve .GIF formatları geçerlidir." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Yükleme yapılacak fotoğraf kısmı geçerli bir dosya içermiyor" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Kaynak Güvenilirliği için lütfen geçerli bir kaynak girin" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Kaynak Güvenilirliği için lütfen geçerli bir kaynak girin" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Başlık en az 3, en fazla 200 karakter uzunluğunda olmalıdır." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Başlık kısmı boş bırakılamaz." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "CSFR saldırısı ihtimali. Bir rapor oluşturmak/güncellemek mi istiyorsunuz?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Bu Raporu Doğrulamak için lütfen geçerli bir değer giriniz" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Bu Raporu Doğrulamak için lütfen geçerli bir değer giriniz" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Video linkleri alanında geçerli bir URL görünmüyor?" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Genişlik kısmında geçerli bir genişlik değeri görünmüyor?" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Genişlik kısmı boş bırakılamaz. Bir konum seçmek için lütfen haritaya tıklayın." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Olay yeri kısmı yanlış bir değer içeriyor." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Bu raporun, bu dil için zaten çevirisi mevcut" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Olay yeri kısmı yanlış bir değer içeriyor." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Orjinal Rapor ve Çeviri aynı olay yerine sahip olmalı (dil)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Olay yeri kısmı boş bırakılamaz." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Konum adı en az 3, en çok 200 karakter uzunluğunda olmalıdır." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Konum adı alanı boş bırakılamaz." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Boylam kısmında geçerli bir boylam değeri görünmüyor?" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Boylam kısmı boş bırakılamaz. Bir konum seçmek için lütfen haritaya tıklayın." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "E-posta adresi kısmında geçerli bir e-posta adresi görünmüyor?" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "E-posta adresi en az 4, en çok 64 karakter uzunluğunda olmalıdır." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "İsminiz en az 3, en çok 100 karakter uzunluğunda olmalıdır." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Soyisminiz en az 3, en çok 100 karakter uzunluğunda olmalıdır." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "KİME tarih kısmında geçerli bir tarih görünmüyor?" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Lütfen geçerli bir KİME tarihi girin. Bu, bugünün tarihinden daha ileri bir tarih olamaz." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "KİMDEN tarihi KİME tarihinden daha ileri bir tarih olamaz." diff --git a/application/i18n/po/po-tr_TR/reporters.po b/application/i18n/po/po-tr_TR/reporters.po new file mode 100644 index 0000000000..f3d118b3d4 --- /dev/null +++ b/application/i18n/po/po-tr_TR/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# emrahgursel , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Geçersiz bir enlem girdiniz." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Enlem alanı boş bırakılamaz. Lütfen haritada tıklayarak bir nokta belirleyiniz." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Haberci Seviyesi geçerli değil" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Haberci Seviyesi geçerli değil" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Yer ismi alanı en az 3, en fazla 200 karakterden oluşmalıdır." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Yer ismi alanı boş bırakılamaz." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Geçersiz bir boylam girdiniz." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Boylam kısmı boş bırakılamaz. Lütfen haritada tıklayarak bir nokta belirleyiniz." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Geçersiz Haberci" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Geçersiz Haberci" diff --git a/application/i18n/po/po-tr_TR/reports.po b/application/i18n/po/po-tr_TR/reports.po new file mode 100644 index 0000000000..86aa6c6e7b --- /dev/null +++ b/application/i18n/po/po-tr_TR/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 19:15+0000\n" +"Last-Translator: Talha Okur \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Lütfen bir ögeyi kontrol ettiğinizi doğrulayın" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Raporlar onaylanmadan önce sınıflandırılmalıdır." + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Bu eylemi gerçekleştirmek için izniniz yok" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Yükleme yapabilmek için bir dosya seçmelisiniz" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Yüklenen dosya .cvs ya da .xml biçiminde olmalıdır." + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-tr_TR/roles.po b/application/i18n/po/po-tr_TR/roles.po new file mode 100644 index 0000000000..c94187caf5 --- /dev/null +++ b/application/i18n/po/po-tr_TR/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Açıklama kısmı en az 3, en fazla 100 karakter uzunluğunda olmalıdır." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Açıklama kısmı boş bırakılamaz." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "İsim kısmı sadece harflerden veya rakamlardan oluşmalıdır." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "İsim kısmı en az 2, en fazla 30 karaterden oluşmalıdır." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "SüperAdmin Ünvanı Değiştirilemez." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "İsim kısmı boş bırakılamaz." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Erişim seviyesi kısmı 0 ila 100 arası bir numara olmalıdır." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Erişim seviyesi kısmı 0 ila 100 arası bir numara olmalıdır." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-tr_TR/settings.po b/application/i18n/po/po-tr_TR/settings.po new file mode 100644 index 0000000000..2b13cbe95f --- /dev/null +++ b/application/i18n/po/po-tr_TR/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Caner Başaran , 2015 +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2015-01-30 12:50+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "İzin verilen yorumlar kısmında geçerli bir değer görünmüyor?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "İzin verilen yorumlar kısmı boş bırakılamaz." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Besleme alanında geçerli bir değer görünmüyor?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Besleme alanı boş bırakılamaz." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "İzin verilen raporlar kısmında geçerli bir değer görünmüyor?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "İzin verilen raporlar kısmı boş bırakılamaz." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "İstatistik paylaşım kısmında geçerli bir değer görünmüyor?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "İstatistik paylaşım kısmı boş bırakılamaz." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "API isteği doğrultusunda varsayılan kayıtların sayısı" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "API isteği doğrultusunda kayıtların maksimum sayısı" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "IP adresi başına API isteği doğrultusunda kayıtların maksimum sayısı" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet kısmında geçerli bir değer görünmüyor?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet kısmında geçerli bir değer görünmüyor?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Önbellek sayfası boş bırakılamaz." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Önbellek sayfasında geçerli bir değer görünmüyor?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Önbellek ömrü kısmında geçerli bir değer görünmüyor?" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Önbellek ömrü kısmı boş bırakılamaz." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Görünüşe göre sunucu kısa bağlantıyla görülebilecek şekilde ayarlanmamış. Kısa bağlantıları aktif etmeden önce sunucunuzu ayarlamanız gerekiyor. Daha fazla bilgi ve kısa bağlantıları aktif etmek için tıkla (İngilizce)" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Bu ayar Ushahidinin kısa bağlantıyla erişilmesine izin verir. (Bağlantıda \"index.php\" olmadan.)" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Kısa Bağlantıları Aktif Et" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Kısa Bağlantı" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Clickatell API Numara kısmı 20 karakterden uzun olmamalıdır." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "The Clickatell API Numara kısmı boş bırakılamaz." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Clickatell Parola kısmı en az 5, en fazla 50 karakter uzunluğunda olmalıdır." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Clickatell Parola kısmı boş bırakılamaz." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Clickatell Kullanıcı Adı kısmı 50 karakterden uzun olmamalıdır." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Clickatell Kullanıcı Adı kısmı boş bırakılamaz." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Haritayı Ayarla" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Varsayılan Konum" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Renk besleme kısmında geçerli bir değer görünmüyor?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Renk besleme kısmı en fazla 6 karakter uzunluğunda olmalıdır." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Renk besleme kısmı boş bırakılamaz." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Varsayılan Harita Görünümü" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Varsayılan Yakınlaştırma Seviyesi" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Geonamesten Şehirleri Al" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "E-posta sunucusu port kısmı çok uzun" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "E-posta sunucusu port kısmı sadece rakamlardan oluşmalıdır." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "E-posta Sunucu Parolası en az 5, en fazla 50 karakter uzunluğunda olmalıdır." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "E-posta Sunucu Parolası boş bırakılamaz." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "E-posta sunucusunun port kısmı çok uzun" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "E-posta sunucusunun port kısmı sadece rakamlardan oluşmalıdır." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "E-posta sunucusunun port kısmı çok uzun" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "E-posta Sunucu Tipi kısmı boş bırakılamaz." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "E-posta Sunucu Kullanıcı Adı 50 karakterden daha uzun olamaz." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "E-posta Sunucu Kullanıcı Adı kısmı boş bırakılamaz." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Facebook Kurulum Ayarları" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Aşağıdaki bilgileri almak için (link here) adlı adresten yeni bir facebook uygulaması yaratmanız gerekir" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook Uygulama Kimliği" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook Uygulama Gizliliği" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Google Analytics kısmı geçerli bir bölge kimliği içermesi gerekir. (UA-XXXXX-XX şeklinde) " + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "HTTPSyi Aktif Et" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Bu ayar Ushahidiye güvenli olmayan bir şekilde erişilmesini sağlar; bağlantının başında \"https://\" olmadan." + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Bu ayar Ushahidiye güvenli bir şekilde erişilmesini sağlar; bağlantının başında https olur." + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Sayfa başına haber sayısı (Görülebilir) kısmında geçerli bir değer görünmüyor?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Sayfa başına haber sayısı (Görülebilir) kısmı boş bırakılamaz." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Sayfa başına haber sayısı (Admin) kısmında geçerli bir değer görünmüyor?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Sayfa başına haber sayısı (Admin) kısmı boş bırakılamaz." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Harita sağlayıcı seçmek ve düzenlemek kolay bir iştir. Sağlayıcıyı seçin, sağlayıcının kendi sitesinden API anahtarını alın ve API anahtarını girin" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Yakınlaştırma Seviyesi" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Harita Sağlayıcı seç" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Yeni API Anahtarını Girin" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "API Anahtarı Al" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Harita sağlayıcı seçmek ve düzenlemek kolay bir iştir. Sağlayıcıyı seçin, sağlayıcının kendi sitesinden API anahtarını alın ve API anahtarını girin" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Harita sağlayıcı" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Harita zaman tüneli" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Harita Ayarları" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Ushahidi birden fazla ülke seçildiğinde verimli olarak çalışır mı" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Lütfen varsayılan bir ülke seçin" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Net konumunuzu ayarlamak için harita üzerindeki yere tıklayıp, çekin" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Harita üzerindeki Kümelenmiş Uyarılar" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Kullanıcıların Uyarılar hakkında Yorum yapmasına İzin verin" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "İnternet Sitesi üzerindeki RSS Beslemelerini dahil et" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Kullanıcıların Uyarı göndermesine İzin verin" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet Anahtarı" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Satır başına Sütun Sayısı" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Önbellek Sayfaları" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Önbellek Sayfalarının Ömürleri" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Girişler" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Sitenin Telif Hakkı Beyanı" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Bütün Kategoriler için Varsayılan Renk" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "İletişim Sayfasını Görüntüle" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "\"Nasıl yardım edebilirim\" Sayfasını Görüntüle" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "E-posta Adresi Uyarıları" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Raporları e-posta aracılığıyla almak istiyorsanız lütfen e-posta hesabı ayarlarını tamamlayın." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Sitenin E-posta Adresi" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Konum Kimliği - Format: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Sayfa başına düşen Haberler - Görülebilir Sayfa Sonu" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Sayfa başına düşen Haberler - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Yorumlardaki spam olayını engellemek için Akismet adlı sistemi ziyaret edin.
WordPress.com kullanıcı hesabına kayıt olarak ücretsiz API anahtarı alabilirsiniz." + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica Referansları" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Site Dili" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Site İletisi" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Site Adı" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Özel Dağıtım" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Bildirim İletisini Gönder" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "İstatistikleri Aktif Et (Bilgiler Ushahidinin Sunucusunda Depolanır)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Site Etiket Satırı" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Zaman Dilimi" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Site Ayarları" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter Arama Politikası" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Virgül kullanarak ayırın" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Sitenin e-posta kısmına geçerli bir değer girilmemiş?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Sitenin e-posta kısmı en az 4, en fazla 100 karakterden oluşmalıdır." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Sitenin ismi en az 3, en fazla 50 karakterden oluşmalıdır." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Site ismi boş bırakılamaz." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Etiketler en az 3, en fazla 100 karakterden oluşmalıdır." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Etiket kısmı boş bırakılamaz" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Sizin Clickatell API Numaranız" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Clickatell Bakiyenizi Kontrol Edin" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Hesaba Para Yükle" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Clickatell Parolanız" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Clickatell servisine kayıt olmak için buraya tıklayın" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Clickatell iletişim bilgilerini girin" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Clickatell Kullanıcı Adınız" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "FrotlineSMS'i indir ve yükle." + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Frontline SMS adlı uygulamaya bağlanmış numaraları aşağıdaki kısma girin" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Unutmayın, numara karakter içermemelidir. (+, # gibi)" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Seçenek 1: Frontline SMS Kullan" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Seçenek 2: Global SMS Gateway Kullan" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS Kurulum Ayarları" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Telefon 1 kısmında geçerli bir değer gözükmüyor?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Telefon 1 kısmı sadece rakamlardan oluşmalıdır." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Telefon 2 kısmı çok uzun" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Telefon 2 kısmı sadece rakamlardan oluşmalıdır." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Telefon 3 kısmı çok uzun" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Telefon 3 kısmı sadece rakamlardan oluşmalıdır." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Twitter Kurulum Ayarları" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Aşağıdaki bilgileri almak için yeni bir Twitter uygulaması oluşturmanız gerekir" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Deneme Ayarları" diff --git a/application/i18n/po/po-tr_TR/sharing.po b/application/i18n/po/po-tr_TR/sharing.po new file mode 100644 index 0000000000..0a9e413ce9 --- /dev/null +++ b/application/i18n/po/po-tr_TR/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Giriş tarihi" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Tarih Eklendi" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Son Erişim" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Renk ismi en az 6 karakter uzunluğunda olmalı." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Renk alanı boş bırakılamaz." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Paylaşım ismi geçerli değil" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Paylaşım ismi boş bırakılamaz." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Bu URL adresi zaten var." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Bu URL adresi geçerli değil" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "URL adresi boş bırakılamaz" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Bu URL adresi geçerli değil" diff --git a/application/i18n/po/po-tr_TR/stats.po b/application/i18n/po/po-tr_TR/stats.po new file mode 100644 index 0000000000..5864532fff --- /dev/null +++ b/application/i18n/po/po-tr_TR/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Onaylandı" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Kategoriler" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Kategori Etkisi" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Bu tablo size raporların doğrusal bir görünümünü verir. Fareyi soldan sağa doğru götürerek farklı kategorilerde görünüme sahip olabilirsiniz. Daha fazla detay için fare ile grafiğin üzerine gidiniz." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Bir tarih aralığı seçin" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Ülkeler" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Ülke" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Merhaba, burası istatistiksel bölümdür. Genel açıklama yakında burada olacaktır. Şimdilik aşağıda bulunan alt kategorilere göz atabilirsiniz." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Hata" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Sözlük" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Tıklanma özeti" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Açıklama" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Tıklanma sayısı" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Sayfanızı ziyaret eden toplam kişi sayısı" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Raporlar" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Rapor Kategorileri" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Rapor İstatistikleri" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Rapor Durumları" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Rapor İstatistikleri" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Ay" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Ay" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Ay" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Hepsi" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Onaylanmamış" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Tekil ziyaretçiler" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Doğrulanmamış" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Doğrulanmış" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Ziyaretçi Özeti" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Ziyaretler" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-tr_TR/tooltips.po b/application/i18n/po/po-tr_TR/tooltips.po new file mode 100644 index 0000000000..38a78a5b27 --- /dev/null +++ b/application/i18n/po/po-tr_TR/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Caner Başaran , 2015 +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-01-30 12:50+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Üye listesine yazmaya başlayın." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Özel ileti konusu" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Özel İleti" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "E-posta adresiniz" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Tam adınız" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Web sitenize yeni rapor ya da yorum gönderildiğinden, EVET'i seçerek e-posta yolu ile haberdar olabilirsiniz" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Parolanız. Eğer şuan ki parolanız tutmak istiyorsanız bu alanı boş bırakın" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Bu sizin profilinizin bulunabilir açık adresidir." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Kullanıcı adınız değiştirilemez" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Bu e-posta adresi e-posta uyarıları göndermek için kullanılacak." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Kullanıcıların İnternet yoluyla alarmları takip etmesine izin verin." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Benzer raporların harita üzerinde tek bir noktada gruplandırılmasına izin verir" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Kullanıcıların ana sitedeki raporlar hakkında yorum yapabilmelerine izin verir." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "RSS Haberleri beslemelerinin ana sitede gösterilmesine izin verir." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Kullanıcıların web formu yoluyla bilgi göndermelerine izin verir." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Her IP Adresi için maksimum API istek sayısı" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Sayfayı ön belleğe açıp kapatma. Bu özellik, cevap sürelerini kısaltarak sayfaları daha hızlı gösterir. Yüksek büyüklükteki sayfaları gezerken bu özelliği açmanız önerilir. **Raporlar, belirlemiş olduğunuz zamana göre sırayla hazırlanır (Cache Ömrü) (??)" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Ön bellek süresini belirleyin." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Bu ayar konuma göre yer bildirmeyi sağlar. Bu basitleştirilmiş ve kontrol edilmemiş rapor türü, kendi sitenizin ayarları yapılmadığı sürece anasayfanızda görünür." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Belirli bir konumu göstermek için harita oluşturun." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Sitedeki tüm kategoriler için bir renk kodu seçin" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Sitedeki tüm kategoriler için bir simge seçin." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Bu ülke sitenin yayınının yapıldığı ülkedir" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Ana sitede İletişim Sekmesi'ni açın ya da kapatın. " + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Ana sitede Yardım Sekmesi'ni açın ya da kapatın." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Ana sitedeki her sayfa için gösterilen rapor numarasıdır" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Gelen iletiler merkezidir" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Ushahidi platformu ile merkezdeki iletileri senkronize eder" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Metin mesajlarının geldiği telefon numarasıdır" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Sitede kullanılacak dili seçer." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Sitede hangi haritanın kullanılacağını belirler" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Bu değeri doğru ya da evet yaparak yayınınızı özel yapabilirsiniz; böylece sadece sizin belirleyeceğiniz hesaba sahip kullanıcılar yayına erişebilir." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "E-postaların saklandığı yer" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Bu parola, raporların geldiği e-posta adresi içindir." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "E-posta adreslerinden gelen bağlantıları kabul etmek için gereklidir" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Güvenli bir bağlantı oluşturmak gereklidir" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Ana makine sunucusundan gelen e-postaları düzeltebilmek için gereklidir" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Raporların geldiği e-posta adresidir" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Çalışmanız için telif hakkı istemek her zaman iyi bir fikirdir. İhtiyaçlarınıza göre doğru lisansı belirmek için, şu adresi ziyaret edin: http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "İletişim formundan e-posta raporları ve iletilerin geldiği e-posta adresidir." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Anasayfadaki haritanın üstünde görünecek olan metindir. Sitedeki ziyaretçilere önemli bilgiler vermek için kullanışlıdır. Kutuyu silmek için, buradaki iletiyi silin." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Ana sitenin en üstünde görünen sitenin adıdır." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Bir kaç kelimeyle bu sitenin ne hakkında olduğunu açıklayın." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Tweet de kullanılacak olan twitter hashtagi'ni belirleyin" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-tr_TR/ui_admin.po b/application/i18n/po/po-tr_TR/ui_admin.po new file mode 100644 index 0000000000..b3ce574450 --- /dev/null +++ b/application/i18n/po/po-tr_TR/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Caner Başaran , 2012,2015 +# Orbit C, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2015-01-30 12:51+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Giriş engellendi. Referanslarınız geçerli değil ya da isteğiniz reddedildi." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Giriş engellendi. İsteğiniz iletildi ancak zaman gibi çeşitli kısıtlamalar nedeniyle gerçekleştirilmedi. Lütfen daha sonra tekrar deneyiniz." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Erişim Seviyesi" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Eylemler" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Kategori Ekle" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "eklendi" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "eklendi/değiştirildi" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Eklentiler" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Yönetici" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Uyarılar" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Uyarılar Alındı" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "Ö.Ö" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Gizli" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Herhangi biri" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Herhangi bir yer" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API Engellendi" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API Kayıtları" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Ayarları" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Engeli kaldır" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Bütün engelleri kaldır" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "onaylandı" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Otomatik Onaylama" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Elle Onayla" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Arşivlendi" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Şunu yapmak istediğinize emin misiniz" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Bu maddeyi silmek istediğinize emin misiniz" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Bu resmi silmek istediğinize emin misiniz" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Formları değiştirmek istediğinize emin misiniz" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Ata" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Atamalar" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Rozet Ata" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Yazar" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Yazar e-posta adresi" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Geri" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "IP'yi engelle" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Vakitler Arasında" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Sütun" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Beden" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "İptal" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Kategoriler" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Tabloyu göstermede bir hata oluştu" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "İletinizin geçerli olduğuna emin olun" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Numaranın geçerli olduğuna emin olun" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Lütfen kısa mesaj ayarlarınızı kontrol edin!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Yer Bildirim Detayları" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Yer bildirimleri" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Yüklenen şehirlenen" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "kod" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Kod sürümü güncel değil." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Renk" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Yorumlar" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Uyarılar için onay kodunuz:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Bu kullanıcı" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Say" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Ülke bulunamadı" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "oluşturuldu/değiştirildi" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Rapor oluştur" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Kritik Güncelleme" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Şu Anda Aktif" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Şu Anda Pasif" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Günlük" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Kontrol Paneli" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "veri tabanı" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Gün ve Saat" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Tarih Eklendi" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Tarih Değiştirildi" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Haftanın günleri" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Veri tabanı güncel değil" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "silindi" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Sil" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Tüm raporları sil" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Rozeti Sil" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Örnek" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Açıklama" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Hizmet Dışı" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Raporları İndir" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Şu kişi tarafından değiştirildi" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Düzenle" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Düzenleme Kayıdı" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "E-posta" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Coğrafi kodlama hatası! HTTP hatası" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP Kütüphanesi yüklenmemiş" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Hata" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Olay yayınlanırken bir hata oluştu." + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Her 6 Saatte Bir" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Her 12 Saatte Bir" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Deneysel" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "SSS" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "besleme" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Geri Besleme" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "besleme" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Varsayılan Değer" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Veri Türü" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Yükseklik (Satır)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "En Fazla Karakter Limiti" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Alan İsmi" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Hayır" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Yüklenilen dosya bulunamadı" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Dosya okunamadı" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Form Mevcut Değil!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Forum" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Yazı Alanı (Serbest Yazı)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Tarih Alanı" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Gönderen" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Gönderen" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Yerisimleri Zamana Aşımı Hatası" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Yardım İste" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Daha fazla tema al" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Daha fazla plugin al" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Eylemler" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Ekle/Düzenle" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "E-posta" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Kullanıcıları Yönet" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Rol" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Kullanıcı" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "yardım" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Saatlik" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Olay beslemesi için" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Durum" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Durumlar" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Durum Detayı" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Yanlış Parametre" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP Adresi" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Bu Tarih Alanı mı?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "E-posta Adresi" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Tam İsim:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Parola:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Ünvan:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Kullanıcı Adı:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Kademeler" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Yönetici" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Çıkış" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Kayıtlar" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Yönet" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Rolleri ve İzinleri Yönet" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Kullanıcıları Gör" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Kullanıcı Ekle/Düzenle" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "\"gereksiz değil\" olarak işaretle" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "gereksiz olarak işaretle" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "hiç bir sonuç bulunamadı" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "İleti" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "İletiler" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica İletileri" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter İletileri" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "İletiniz gönderildi!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Dakika" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Eksik Parametre" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Yönetici" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "değiştirildi" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "aşağı in" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "yukarı çık" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Çoklu Ana Makina Durumları" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Profilim" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Raporlarım" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Yeni İleti Oluştur" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Yeni Parola" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Hayır" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Bildiri" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Büyük/Küçük harf duyarlı değildir" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Bulunamadı" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Data yok. Gösterilecek sonuç yok." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Hata Yok" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Sonuç bulunamadı!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "." + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "sayfa" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "sayfalar" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Sayfa Bulunamadı" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Kullanılan Parametreler" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Parola" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Parola Sıfırlama" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Sayın" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Şu kullanıcı ismi için parola sıfırlama isteği aldık:" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Parolanızı değiştirmek için lütfen aşağıdaki adrese tıklayınız (ya da kopyalayıp adres çubuğunuza yapıştırınız)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "İsteğiniz üzerine parolanız sıfırlandı. Yeni kullanıcı bilgileriniz aşağıdaki gibidir" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi parola sıfırlama" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Lütfen Seçin" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "Ö.S" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Data postalama yoluyla gönderilmedi" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Önizle" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "İleti" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Özel İletiler" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Özel İleti Gönder" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Herkese Açık Listeleme" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "oku" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Uygunluk" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Raportörler" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Raportör Derecesi" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Raporlar" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Gerekli" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Sıfırla" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Sonuçlar" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Ayarları Kaydet" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Ara" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "arıyor" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "---Alan Türü Seçin---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Madde seçin" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Gönderen" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Bu ileti internet sayfanızdan şu saatte gönderildi" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Sunucu Saati" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Ayarlar" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Sayfa gösteriliyor" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Sonuçlar gösteriliyor" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Özel Kategori" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Bu, kullanıcıları bildirdiğiniz raporda gözükmeyecek özel bir kategoridir, \"Güvenilen Raportörler\" özelliği ile birlikte kullanılır." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "İstatistikler" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "İstatistikler" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "İstatistik toplaması başarısız oldu! Lütfen daha sonra tekrar deneyin." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "İstatistik toplaması başarısız oldu!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Süper Admin" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Gerçekleştirilen Görev" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Yazı Alanı" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "İsim" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Kullanıcıları Yönet" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "e" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Toplam Kayıtlar" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "e" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Raporları Başka Bir Dile Çevir" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "onaylanmadış" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Bilinmiyor" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "Okunmamış" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Sürüm yükseltmek için buraya yıklayın" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Ushahidi Sürümünü Yükselt" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Ushahidi Durumunu Yükselt" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Raporları Yükle" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Kullanıcı" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Kullanıcılar" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Versiyon" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "yükseltmek için hazır." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Özel İletiler" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Siteyi Görüntüle" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Raporu Gör" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Merhaba," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Viki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Evet" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Arama sonucunuz" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "İlerlemeden önce veritabanızı yedeklemeniz önerilir." + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Veritabanından tüm %s rapor(lar)ı silmek istediğimden eminim." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Tüm raporları silmek istediğinize emin misiniz?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Giriş sayısı" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Son giriş" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-tr_TR/ui_main.po b/application/i18n/po/po-tr_TR/ui_main.po new file mode 100644 index 0000000000..dae660a6ba --- /dev/null +++ b/application/i18n/po/po-tr_TR/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# Caner Başaran , 2012-2013,2015 +# mertakbal , 2014 +# Talha Okur , 2013 +# Zehramir , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-01-30 12:57+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Hakkında" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Erişim" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Erişim Sınırları" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Hesap Adı" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Eylemler" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Bu eylem geri alınamaz. Devam etmek istediğinizden emin misiniz?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Etkinleştir" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Etkin" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Ekle" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Tarafından Eklendi" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Ek Veri" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Ek Raporlar" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Ekle/Değiştir" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Bir Alan Ekle" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Dil Ekle" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Yeni Ekle" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Yeni Kategori Ekle" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Çeviri Ekle" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Yönetici" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Uyarıları Al" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Bir rapor dosyalandığında beni uyar:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Uyarımı Kaydet" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "E-posta adresi:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "e-posta adresi girin" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "ülke kodu ile birlikte cep telefonu numaranızı girin" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Uyarıları Al" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Uyarı olmuştur" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Cep telefonu:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Ve ya, alt taraftaki harita üzerinde bir nokta belirleyin, ve bu noktanın 20 kilometre içerisindeki bir yerden rapor yollandığında sizi uyaralım." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Eğer yerinizi belirleyemiyorsanız lütfen aşağıdaki haritadan belirleyiniz." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Beslemesi (alt taraftaki url adresini kopyalayın)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Şehir seçin" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Adım 1: Şehir veya yerinizi seçiniz:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Adım 2: Uyarıları şuraya gönderin:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Adım 3 (Opsiyonel): Kategorileri Seçin" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Önceki Bir Uyarı İsteğini Onaylayın" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Uyarınız kaydedildi!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Hepsi" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "İzin Verildi" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "İzin verilen HTML etiketleri: \"% s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "% S: Iframeler yanlızca izin verilir." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Tüm Kategoriler" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Tüm zamanlar" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "ve" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Onayla" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Onaylandı" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Onaylanan Raporlar" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Bu Raporu Onayla" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Yaklaşık Bir Tahmin Yap" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Arşivle" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Arşivlendi" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Yükselen" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "(There is no one-to-one translation for this word)" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Yazar" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Otomatik Kontrol" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Otomatik" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Gün Başına Avg Raporları" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Onay Bekleniyor" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Doğrulama Bekleniyor" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Rozet" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Rozetler" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Rozet Resmi" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Ya da kendi rozet resmini yükleyebilirsin." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Rozet Paketi" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Bir Rozet seç" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Ağ Güncesi" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Profillere Gözat" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "İptal Et" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Kategoriler" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Kategori" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Kategori Filtresi" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Kategori" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Kategori İsmi" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Tarih Aralığı Değiştir" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Parola Değiştir" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Fotoğrafını Değiştir" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Bir adet" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Karşıdan yüklemek için veri noktaları seçin" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Ya da kendi tarih aralığınızı seçin" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Alan türü seçin" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "URL'leri temizle" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Temizle" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Haritayı temizle" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Kapat" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "kümeler" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Renk" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Yorum" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Yorumlar" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Yorum Detayları" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Ayarlarınız Kaydedildi!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Yapılandır" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "E-posta adresiniz doğrulandı! Lütfen giriş yapın." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Başarıyla e-posta adresinizi doğruladı! Girişten önce bir yöneticinin hesabınızı onaylaması gerekecek." + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "E-posta onayı başarısız! Aşağıda yeni bir e-posta onayı talep edebilirsiniz." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Bizimle İletişime Geçin" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Güvenlik Kodu" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "E-posta Adresiniz" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "İleti" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "İletiniz gönderildi!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "İsminiz" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Telefon Numaranız" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "İleti Gönder" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "İleti Konusu" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Telif Hakkı ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Oluştur" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Oluştur/Düzenle" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Yeni Oluştur" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Yeni Parola Oluştur" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Rapor Oluştur" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Güvenilirlik" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Geçerli Parola" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Özel Alanlar" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Bilgi" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Tarih" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(aa/gg/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Tarih & Saat" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "gün" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "günlük" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Devre dışı bırak" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Sil" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Silindi" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Silinenler" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Silme Devre Dışı" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Son Silinen" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Bu Raporu Sil" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Seçileni Sil" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "İstenmeyenleri Sil" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Deneme sürümü" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Tanım" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Inme" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Örnek: Eğitim Mah. Ömerbey Çıkmaz Sokak. No:19-B Kadıköy / İSTANBUL" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Ayrıntılar" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Doğrudan bildir" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Devre dışı" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Onaylama" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Raporları İndir" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Download" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Düzenle" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Form alanlarını düzenle" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Raporları düzenle" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "E-posta" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "E-posta Adresi" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Posta Sunucusu Ayarları" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Posta Sunucu Sağlayıcısı" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Posta Sunucu Parolası" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Posta Sunucu Girişi" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Posta sunucusu SSL desteği" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Posta Sunucu Tipi" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Posta Sunucusu Kullanıcı Adı" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "bu nedenle ayarlarınız eposta adresinizle ilişkili olmak zorunda" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Raporları e-posta olarak alabilmek için lütfen email adresini aşağıdaki hesap ayarlarına yaz. E-postaların şuraya geleceğini unutma" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Bazı sunucular tam e-posta adresi gerektirir" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "E-posta hesabı parolası" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Sık Kullanılan Portlar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Örnek: posta.sizinsiteniz.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Örnek: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "SSL bağlantılarını etkinleştir veya devre dışı bırak" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---BOŞ---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "e" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Hata!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Örnek" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Dış uygulamalar" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Harici Video Link" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Bildirim" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Geri bildirim sağlayın" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Bize deneyim hakkında aşağıda belirtilen e-posta adresine geribildirim verin" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Bildirimler" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Bildirim alanı " + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Bildirim öğeleri" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Bildirim ismi" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "Bildirim url adresi " + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Kullanılmayan alan" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Dosya" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Dosyanız maximun izin dosya boyutu üzerinde" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Filtreler" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Filtre raporlar" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Filtre Raporları" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Ihtiva filtre raporlari" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Bul" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Yeri Bulun " + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Isim " + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Kuvvet çalışma zamanlayıcı" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Parolanızı mı unuttunuz?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Form" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Formlar" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Form Açıklaması" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Bu formu düzenle" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Form olmuştur" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Form başlığı" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr " ´den" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Ad Soyad" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoKonumu mevcut" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Renk" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Yorumlar" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Etiket" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Inme genişliği" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Git" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "olmuş" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Nasıl yardımcı olabilirsin" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Gizli " + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Gizle" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "bu iletiyi gizle" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Anasayfa" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "saatlik " + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Nasil rapor verilebilir" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "Kimlik " + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Diğer kullanıcılara sitede sizi tanımlamak için kullanılır" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Görüntü" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Görüntüler" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Görüntü/Ikon" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Pasif" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Gelen kutusu" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Olay" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Yakın olaylar" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Olay yeri" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Dahil et " + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Kategorileri dahil et " + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Özel alanlar dahil et " + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Tanımlama dahil et " + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Mümkün olduğunca çok ayrıntı dahil et " + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Enlem dahil et " + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Konum bilgilerini dahil et " + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Boylami dahil et " + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Kişisel bilgileri dahil et" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Gelen medya" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Bilgi değerlendirme" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Tam konumunu gir" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Hesabınızın tam olarak oturumunuzu açmak için izin vermiyor. Sayfa yöneticisine başvurun." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Aralık" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "cevaben" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP Adresi" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Bu sizin profil mi?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "Kalem" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "maddeler" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "Kalem detayları" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Kalem Ismi " + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Anahtar" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Anahtar kelimeler" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML dosyası" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "KMZ/KML dosyası yükle" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Dil " + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Son" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Son bir ay" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Soyisim" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Son bir sene" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Elem" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Tabakalar" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Diğer tabakalar" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "tabaka olmuştur" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Tabaka ismi" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Tabaka url " + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Bir yorum gir" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Daha az bilgi" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Seviye" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Bu seviye olmuştur" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Seviye ismi" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Sınırlı" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Link" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Liste" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Raporlar Yükleniyor" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Konum" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Konumlar" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Sehir, eyalet ve/veya Ülke" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Login" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Hesap başarıyla oluşturuldu. Şimdi giriş yapabilirsiniz." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Bir onay e-posta adresinize gönderildi." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Hesabın oluşturuldu. Giriş öncesi hesabın bir yönetici tarafından onaylanmalıdır." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "E-posta adresi bulunmadı. Farklı bir adres dene veya bir hesap oluştur." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Hesap sağlayıcıyı tıkla." + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Giriş" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "E-posta ve parola ile giriş" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "Açık Kimlik " + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Kayıt ol " + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Bir hesap oluştur" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "% 1 $´a kadar kayıdın için teşekkür ederiz. E-posta adresini onaylamak için, aşağıdaki URL'ye git lütfen: % 2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Kayıt onayı" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Bir yeni kullanıcı% 1 $ s kadar imzaladı. Aşağıdaki URL'ye gidin lütfen kayıtlarını onaylamak için:% 2 $ s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Yeni kullanıcı onayı" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Kullanıcı hesabın %1$ için onaylanmıştır. Aşağıdaki URL'ye gidin giriş için:%2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Kullanıcı hesabı onaylandı." + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Sitenin daha fazla özelliklerinden yararlanmak için şimdi bir hesap oluştur." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Boylam" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Harita" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Okundu olarak işaretle." + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Okunmadı olarak işaretle" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Maksimum dosya boyutu" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Medya" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Medya filtresi" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Üyeler" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Hesabını yönet" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "İleti" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "İletiler" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "İleti Detayları" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Bir sayısal olmayan bir kaynaktan gelen ileti:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Mobil" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Değiştir" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Tarihi değiştir" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "ay" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "Aylık" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Daha fazla" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Daha fazla bilgi " + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Bu Ushahidi uygulaması birçok ülke dahil ediyor mu" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Bu uygulamayı kullanmak için e-posta adresinizi onaylamanız gerekir. Eğer onay e-posta kaybettiysen, aşağıda yenisini talep et." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Isim " + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Yakın olayların raporu" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Yeni" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Haberler" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Haber Bildirimleri" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Haber Kaynağı" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Yeni Kategori" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Yeni parola" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Yeni Rapor" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Sonraki " + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Hayir" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Görüntülecek Checkin yok." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Veri yok " + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Hiçbiri" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Bildiriler" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Onaylanmamış" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Onaylanmamış" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "Seçilmemiş" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "spam değil" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Belirtilmemiş" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Hiçbir raporlar yoktur." + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Hiçbir sonuç yoktur." + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Kapalı" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Resmi ve amp; ana haber" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Açık" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Seçenek" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Seçenekli" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Seçenekler" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Kurum" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Kurumlar" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Kurumun tanımı" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Kurumun e posta adresi" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Kurum olmuştur" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Kurum ismi " + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Kurum Telefonu 1 " + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Kurum Telefonu 2 " + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Kurumun websayfası" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Orjinal" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Orjinal tanımlaması" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Orijinal başlık" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Başka uygulamalar" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Giden kutusu" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Giden" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Sayfa" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Sayfalar" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Sayfa tanımlaması" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Sayfa yapıldı" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Sayfa sekmesi adı" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Sayfa başlığı" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Ana kategori" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Parola" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Parolayı Doğrula" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Parola başarıyla değiştirildi! Aşağıda giriş yapabilirsin." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Parolanızı unuttunuz mu?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Yeni parola için e-postanı kontrol et." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Bu bilgisayarda oturum açık kalsın" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Gecen ay" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Gecen sene" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Beklemede" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "başına" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Kişisel Bilgiler İsteğe bağlı. " + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Telefon" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Fotoğraflar" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Görüntüler" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Resim ve Videolar " + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Konumunu, ya konum adıyla ya da enlemve boylam koordinatlarını kullanarak seç (biçim: 38.19, 85,61), ya da doğru konumunu işaretlemek için harita üzerine tıkla." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Oynat" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Lütfen unutma " + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Plugins" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Websayfa Plugin " + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Açık profil" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Açık Profil URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Önizleme" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Maddeyi Önizle" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "İletiyi Önizle" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Önceki" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Özel" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profil Rengi" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Profilin kayıt edildi" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Hızlı istatistikler" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Değerlendirme" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Oku" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "al " + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "´den al " + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Bildirimleri al" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Son raporlar" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Haber Bildirimini Güncelle" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Kayıtlı e-posta" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Kaldır" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Cevap yaz " + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Rapor yaz " + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Raporlar (haritadan kronolojik sırayla listelendi) " + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Muhabir" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Muhabirler" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Murhabirin Tarihi" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Muhabir E-postası" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Muhabir Isim " + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Muhabir oldu" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Muhabirin IP adresi" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Muhabirin Soyismi" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Muhabirin Seviyesi" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Muhabirlerin seviyeleri" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Muhabirin Telefonu" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Raporlar" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Gözat" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Gönder" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Bu kullanıcının raporları" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Kategoriler" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Raporlar" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Tarih" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Tanımlama" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Raporlar csv formatında indirilebilir olacak" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "E-posta" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Özellikler" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Sana yakın bir yer bul" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Isim" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Soyisim" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Konumun adı" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Haber kaynağın bağlantısı" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Isteğe bağlı bilgi" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Fotoğraf yükle" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Raporlar sayfasına geri dön" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Bir şehir seç" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Raporunuz başarıyla ekibimize ulaştırılmıştır. Gerekirse size en kısa zamanda geri dönüş yaparız. " + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Yeni rapor gönder " + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Zaman" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Raporların zaman cizelgesi" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Raporun ismi" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Video Link " + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Bir olay raporla" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Rapor detaylari" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Bir ileti sonraki adrese yazarak" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "E-posta yazarak" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Aşağıdaki haşhtaglerle bir tweet göndererek" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Web sitemizde bu formu doldurarak" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Bir app´i kullanarak" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Raporun kayıt edildi" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Rapor başlığı" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Daha fazla bilgi talep et" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Konumu sorgula" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Zorunlu" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Gereksinimler" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Onay e-postası" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Yeniden ayarla" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Bütün filtreleri sıfırla" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Parolayı Sıfırla" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Seçilen ülke için şehir adlarını almak" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Hesaplar %s servisi tarafından yönetilmektedir." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Zaten CrowdmapID tarafından yönetilen bir hesabın var! CrowdmapID e-postası ve parolanı kullanarak yeniden giriş yapmayı dene." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Rol" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Kaydet" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Kaydedildi" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Kaydet ve yeni ekle" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Kaydet ve Kapat" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Raporu kaydet" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Zamanlama" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Takvim" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Gün" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Saat" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Zamanlayıcı günlüğü" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Dakka" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Haftanin Günü" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Arama" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Arama sonuçları" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Güvenlik Kodu" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Hepsini Seç" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Bir alan türü seçin" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Bir tip seç" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Haritada seç" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Gerektiği kadar seçenek seçebilirsin" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Bir maddeyi işaretlediğinizinden emin ol" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Tema Seç" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Gönder" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Gönderilme Onayı" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Su kişiye gönderiliyor" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Gönderildi" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Şu kişi tarafından gönderildi" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Sunucu Adı" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Sunucu Tipi" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Servis" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Servis Kullanıcı Adı" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Servis Kullanıcı ID'si" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Paylaş" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Paylaşılan Bilgi" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Paylaşım şöyle oldu" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Paylaşılan" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Daha kısa Harita" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Göster" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Hepsini göster" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "İletileri göster" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Şuradan başlayarak raporları görüntüle %1$s şuraya kadar %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Wb sayfası" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "sayfa e-posta adresi" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Sayfa URL'si" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Daha küçük Harita" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Üzgünüz, kimlik kartınız (badge) yok." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Kaynak" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Kaynak ismi" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sırala" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Şunlara göre sırala" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Kaynak URL'si" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL Desteği?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Buradan" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Adım" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Rapor gönder" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "%1$s, %2$s üzerinden gönderildi. " + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "SMS ile gönder" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Şuraya SMS gönder" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "telefonunda" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Başarılı!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Başarıyla import edildi" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Soyad" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Araştırma" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Sistem" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Daha uzun Harita" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP Portu" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Temalar" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Varsayılan Ushahidi Teması" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Tema Ayarları" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Bu" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Bugün" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Bu Ay" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Bu Hafta" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Bu Yıl" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Bu senin profilin." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Zaman" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Başlık" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Bugün" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Bugün şurada" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Simge" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Toplam Raporlar" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Çevrilmiş" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Çevrilmiş Açıklama" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Çevrilmiş Başlık" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Şu dile çevir" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Çeviri" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Çeviri kaydedildi" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Güvenilir" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Yaz" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "E-posta gönderimi başarısız." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Kategorilendirilmemiş Raporlar" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "okunmamış" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Doğrulanmamış" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Bildirimleri Güncelle" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Yükle" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Rapor yükleme rehberimizi gözden geçir:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML Yükleme rehberi" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV Yükleme rehberi" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Yüklenecek Dosya" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Raporlar Yükle" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Özelleştirilmiş alan sütunlarına kendi form_id leri eklenmelidir. Örneğin standard formdaki Test özelleştirilmişs alanının id numarası 1 ise Test-1 eklenmelidir. Özelleştirilmiş form import ederlen buna dikkat edilmelidir. " + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Aşağıdaki formu kullanarak Ushahidi motoruna olay kayıtları yükleyebilirsiniz." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Raporlar CSV ya da XML formatında yüklenmelidirler." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Eğer olay ID'si (kayıt numarası) veri bankasında mevcutsa, CSV/XML dosyasındaki kayıt dikkate alınmayacaktır." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "En azından Olay Başlığı ve Olay Tarihi mevcut olmalı." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Eğer enlem ve boylam bilgileri mevcut değilse, konum Google Geocoder üzerinden belirlenecektir." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Eğer kişisel bilgiler ya/ya da özelleştirilmiş form alanları gibi fazladan bilgiler girilecekse" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Kişisel bilgi alanlarından (isim, soyisim ve e-posta) en azından bir tanesi girilmiş OLMALIDIR. Boş raporlar kayda geçirilmez." + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Açılan listeye, radio düğmelerine ve onay kutusuna girilecek olan alanlar özelleştirilmiş alandaki seçeneklerle örtüşmelidir." + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Onay kutusu seçenekleri virgüllerle ayrılır. Örneğin eğer seçenekler meyvalardan oluşuyorsa elma,mango,üzüm şeklinde yazılırlar." + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Tarih alanı değerleri şu formattadır: ay/gün/yıl örneğin 3 Ekim 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "CSV Raporu Örneği" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\", \"Talan\", \"2009-03-18 10:10:00\", \"Akra\", NO, YES, \"5,55\" \"isyanlar, ÖLÜMLER, MÜLKİYET KAYIP\", \"her yerde oluyor Yağma\", \"-,2166667 \"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Yükleme başarılı" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Video Yükle" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL/İnternet Linki" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Kullanıcı" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Kullanıcı Adı" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi Admini" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Doğrulama" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Doğrulanmış" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Doğrulanmış Raporlar" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Doğrula" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Bu Raporu Doğrula" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Versiyon" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "aracılığı ile" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Görünüm" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Görünümler" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Hepsini Gör" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Bütün Alanları Gör" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Bütün Raporları Gör" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Öğeleri Gör" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Daha Fazlasını Gör" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Genel Profili Gör" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Raporu Gör" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Raporları Gör" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Videoyu İzle" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Görünür" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Onay Bekleniyor" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Doğrulama Bekleniyor" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Daha Geniş Harita" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web Formu" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Ağırlık/Genişlik" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "Haftalık" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Evet" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Dün" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Kontrol Paneli" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Dosyaların" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Küçült" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Büyüt" diff --git a/application/i18n/po/po-tr_TR/upgrade.po b/application/i18n/po/po-tr_TR/upgrade.po new file mode 100644 index 0000000000..07ed5f92e8 --- /dev/null +++ b/application/i18n/po/po-tr_TR/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Caner Başaran , 2015 +# Talha Okur , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2015-01-30 12:48+0000\n" +"Last-Translator: Caner Başaran \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/ushahidi/ushahidi-v2/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Geçersiz girdi verisi. Hayır için 0, Evet için 1 olabilir." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Otomatik Yükseltme" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Mevcut Güncellemeler" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Devam Et" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Yükselt" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Böylelikle, veritabanınızı mevcut sürümden yükselteceğim" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "en yeni veritabanı sürümüne" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "\"Yükselt\" butonuna tıkla ve ben büyüyü gerçekleştirirken sadece arkana yaslan." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Ek olarak, eğer veritabanınızın bir yedeğini almamı istiyorsanız, yapmanız gereken sadece aşağıdaki kutucuğu işaretlemek, bunu sizin için zahmetsizce yapacağım." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Yükseltmeden önce veritabanının yedeği alınsın mı? (Şiddetle tavsiye edilir)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi veritabanı yükseltmesi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi yükseltildi! Devam etmeden önce, veritabanınızı en yeni versiyonuna yükseltmeniz gerekmekte (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Veritabanınızın sürümü şuan güncel." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Yükseltme işlemi bir yerde başarısız oldu" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "El ile Yükseltme" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi yükseltme durumu" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Aşağıdaki açıklamalar Ushahidi yayınınızı nasıl el ile yükseltebileceğinizi detaylı bir şekilde açıklıyor" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
İndir
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- En güncel Ushahidi sürümünü karşıdan indir" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr " Step 4: Gerekli tabloları yükseltmek için \"Devam et\" butonuna tıklayın." + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Adım 4: Gerekli tabloları yükseltmek için \"Devam Et\" tuşuna basınız." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Otomatik yükseltme için aşağıdaki butona basınız." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Yükseltiliyor" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP Parolanız:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP Kullanıcı Adı:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "En son sürüm Ushahidi kullanmaktasınız." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Yükseltmeniz gerekmiyor." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Veritabanı sürümü: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Dikkat: version.php ile veritabanındaki yazılım sürümü uyuşmamakta." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Dikkat: version.php ve veritabanında ki veritabanı sürümü uyuşmamakta." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Veritabanı:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "BETA!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Ushahidi'nin son sürümü indiriliyor..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Kayıt Dosyası" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "İndirme başarılı. Açılıyor..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "İndirme başarısız." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Açma işlemi başarısız." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Kopyalama başarılı! Veritabanı güncelleniyor..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Dosya kopyalama başarısız." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Veritabanı yedekleme ve yükseltme işlemi başarılı." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Veritabanı yedekleme işlemi başarısız." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Veritabanı yükseltme işlemi başarılı." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "İndirilen dosyalar siliniyor..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "YÜKSELTME BAŞARILI. Kayıt dosyası'nı göster." diff --git a/application/i18n/po/po-uk/alerts.po b/application/i18n/po/po-uk/alerts.po new file mode 100644 index 0000000000..ba51e9a7f0 --- /dev/null +++ b/application/i18n/po/po-uk/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-uk/auth.po b/application/i18n/po/po-uk/auth.po new file mode 100644 index 0000000000..9b3e50c0b5 --- /dev/null +++ b/application/i18n/po/po-uk/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-uk/bug.po b/application/i18n/po/po-uk/bug.po new file mode 100644 index 0000000000..fad39a8364 --- /dev/null +++ b/application/i18n/po/po-uk/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-uk/category.po b/application/i18n/po/po-uk/category.po new file mode 100644 index 0000000000..ed7a9f22f8 --- /dev/null +++ b/application/i18n/po/po-uk/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-uk/comments.po b/application/i18n/po/po-uk/comments.po new file mode 100644 index 0000000000..bfe4ddb8eb --- /dev/null +++ b/application/i18n/po/po-uk/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-uk/contact.po b/application/i18n/po/po-uk/contact.po new file mode 100644 index 0000000000..0e20f5c8eb --- /dev/null +++ b/application/i18n/po/po-uk/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-uk/core.po b/application/i18n/po/po-uk/core.po new file mode 100644 index 0000000000..6c4665f362 --- /dev/null +++ b/application/i18n/po/po-uk/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-uk/database.po b/application/i18n/po/po-uk/database.po new file mode 100644 index 0000000000..33abbbd6a0 --- /dev/null +++ b/application/i18n/po/po-uk/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-uk/datetime.po b/application/i18n/po/po-uk/datetime.po new file mode 100644 index 0000000000..a32de21729 --- /dev/null +++ b/application/i18n/po/po-uk/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-uk/feeds.po b/application/i18n/po/po-uk/feeds.po new file mode 100644 index 0000000000..ce1e911431 --- /dev/null +++ b/application/i18n/po/po-uk/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-uk/footer.po b/application/i18n/po/po-uk/footer.po new file mode 100644 index 0000000000..6a7fd2571b --- /dev/null +++ b/application/i18n/po/po-uk/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-uk/form.po b/application/i18n/po/po-uk/form.po new file mode 100644 index 0000000000..1645c6a78f --- /dev/null +++ b/application/i18n/po/po-uk/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-uk/imap.po b/application/i18n/po/po-uk/imap.po new file mode 100644 index 0000000000..d377a0c327 --- /dev/null +++ b/application/i18n/po/po-uk/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-uk/installer.po b/application/i18n/po/po-uk/installer.po new file mode 100644 index 0000000000..fdf0c1b80f --- /dev/null +++ b/application/i18n/po/po-uk/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-uk/layer.po b/application/i18n/po/po-uk/layer.po new file mode 100644 index 0000000000..33f0d5ad6e --- /dev/null +++ b/application/i18n/po/po-uk/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-uk/libraries.po b/application/i18n/po/po-uk/libraries.po new file mode 100644 index 0000000000..ea52e0786a --- /dev/null +++ b/application/i18n/po/po-uk/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-uk/maintenance.po b/application/i18n/po/po-uk/maintenance.po new file mode 100644 index 0000000000..fd17ea2ab1 --- /dev/null +++ b/application/i18n/po/po-uk/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-uk/message.po b/application/i18n/po/po-uk/message.po new file mode 100644 index 0000000000..45d2492049 --- /dev/null +++ b/application/i18n/po/po-uk/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-uk/mhi.po b/application/i18n/po/po-uk/mhi.po new file mode 100644 index 0000000000..fa48ae37f3 --- /dev/null +++ b/application/i18n/po/po-uk/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-uk/notifications.po b/application/i18n/po/po-uk/notifications.po new file mode 100644 index 0000000000..dd365ac098 --- /dev/null +++ b/application/i18n/po/po-uk/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-uk/page.po b/application/i18n/po/po-uk/page.po new file mode 100644 index 0000000000..cd2dbe25ed --- /dev/null +++ b/application/i18n/po/po-uk/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-uk/permissions.po b/application/i18n/po/po-uk/permissions.po new file mode 100644 index 0000000000..367f3a04e5 --- /dev/null +++ b/application/i18n/po/po-uk/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-uk/private_message.po b/application/i18n/po/po-uk/private_message.po new file mode 100644 index 0000000000..12a71d139e --- /dev/null +++ b/application/i18n/po/po-uk/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-uk/report.po b/application/i18n/po/po-uk/report.po new file mode 100644 index 0000000000..7456595bb3 --- /dev/null +++ b/application/i18n/po/po-uk/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-uk/reporters.po b/application/i18n/po/po-uk/reporters.po new file mode 100644 index 0000000000..78f7ba70c8 --- /dev/null +++ b/application/i18n/po/po-uk/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-uk/reports.po b/application/i18n/po/po-uk/reports.po new file mode 100644 index 0000000000..b6f6c660cc --- /dev/null +++ b/application/i18n/po/po-uk/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-uk/roles.po b/application/i18n/po/po-uk/roles.po new file mode 100644 index 0000000000..51a6a1e0a8 --- /dev/null +++ b/application/i18n/po/po-uk/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-uk/settings.po b/application/i18n/po/po-uk/settings.po new file mode 100644 index 0000000000..d9dadd4c55 --- /dev/null +++ b/application/i18n/po/po-uk/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/projects/p/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-uk/sharing.po b/application/i18n/po/po-uk/sharing.po new file mode 100644 index 0000000000..57806efe03 --- /dev/null +++ b/application/i18n/po/po-uk/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-uk/stats.po b/application/i18n/po/po-uk/stats.po new file mode 100644 index 0000000000..7d53fc6a60 --- /dev/null +++ b/application/i18n/po/po-uk/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-uk/tooltips.po b/application/i18n/po/po-uk/tooltips.po new file mode 100644 index 0000000000..36b8ade5d3 --- /dev/null +++ b/application/i18n/po/po-uk/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-uk/ui_admin.po b/application/i18n/po/po-uk/ui_admin.po new file mode 100644 index 0000000000..64125a81d1 --- /dev/null +++ b/application/i18n/po/po-uk/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-uk/ui_main.po b/application/i18n/po/po-uk/ui_main.po new file mode 100644 index 0000000000..f5f8a5ea34 --- /dev/null +++ b/application/i18n/po/po-uk/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-uk/upgrade.po b/application/i18n/po/po-uk/upgrade.po new file mode 100644 index 0000000000..11f8128091 --- /dev/null +++ b/application/i18n/po/po-uk/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2014-03-26 13:38+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Ukrainian (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-uk_UA/alerts.po b/application/i18n/po/po-uk_UA/alerts.po new file mode 100644 index 0000000000..01ad603d8c --- /dev/null +++ b/application/i18n/po/po-uk_UA/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Вашу Email адресу введено не правильно. Будь ласка, перевірте та введіть адресу правильно." + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Цей Email вже зареєстрований для цієї зони, введіть інший Email" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Довжина Вашої Email адреси не може бути менше 4 символів і не може перевищувати 64 символи." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Потрібно ввести Email адресу (або зніміть прапорець)." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Це розгортання охоплює лише одну країну. Будь ласка, переконайтеся, що розташування знаходиться в країні %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Ви не правильно вибрали місцерозміщення на карті." + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Ви не правильно вибрали місцерозміщення на карті." + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Ви не правильно вибрали місцерозміщення на карті." + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Ви не правильно вибрали місцерозміщення на карті." + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Поле номеру мобільного телефона містить неправильну кількість цифр." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Цей номер вже зареєстрований для цієї зони, введіть інший номер" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Номер телефону введений не правильно. Введіть тільки цифри з кодом країни." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Ви повинні ввести або телефонний номер або адресу електронної пошти." + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Потрібно ввести номер телефону, або зніміть прапорець." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Ви не встановили дійсний радіус на карті." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Ви не встановили радіус на карті." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Ви не задали одержувача тривоги." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Ви маєте підписку на тривогу з наступних категорій" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Цей код вже використаний!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Цей код підтвердження не було знайдено! Будь ласка, підтвердіть, що Ви маєте правильний URL." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Ваш код підтверджений правильно. Тепер ви будете отримувати оповіщення про події." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Для того щоб підтвердити заявку на отримання оповіщення, перейдіть:" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Поверніться на сторінку Сповіщень для створення нових." + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Ви включили систему сповіщення по електронній пошті, код підтвердження було відіслано на" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Введіть код підтвердження, який Ви отримали електронною поштою: " + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Ваші налаштування системи сповіщень по Email НЕ було збережено!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Ваші налаштування системи сповіщень по Email збережено!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Системі не вдалося опрацювати Вашу заявку!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Мобільна система сповіщення була створена, повідомлення з кодом підтвердження було відіслано на " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Введіть код підтвердження який ви отримали на наш мобільний телефон: " + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Ваші налаштування мобільної системи сповіщеня НЕ було збережено!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Налаштування мобільної системи сповіщень збережені!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Не правильно налаштована система сповіщень" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Ви отримали цей лист через те що ви підписані на отримання сповіщень. Якщо ви не хочете отримувати майбутні сповіщення перейдіть:" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Ви більше не будете отримувати сповіщення від " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Ми не змогли скасувати підписку. Будь ласка, перевірте правильність URL." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "Підтвердження сповіщень" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Ви не зможете отримувати сповіщення поки не введете код підтвердження" diff --git a/application/i18n/po/po-uk_UA/auth.po b/application/i18n/po/po-uk_UA/auth.po new file mode 100644 index 0000000000..459e1e3e9f --- /dev/null +++ b/application/i18n/po/po-uk_UA/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Електронну адресу введено неправильно, введіть прввильно." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Вибачте, вже існує користувач із такою електронною адресою." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Довжина адреси електронної пошти повинна містити від 4 до 64 символів." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Введіть електронну адресу." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Довжина поля повного імені повинна бути не менша 3 і не більша 100 символів. " + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Введіть повне ім'я." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Ім'я користувача містить недозволені символи." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Довжина паролю повинна бути не менша 8 символів." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Перевірте, чи ви ввели вірну електронну адресу та пароль." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Будь ласка, введіть той самий пароль в обидва поля." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Поле пароль є обов'язковим." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "У полі паролю можуть бути тільки літери, символи # і @ , цифри, символи підкреслення і тире" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Щойно введений вами пароль для вашого профілю невірний. Будь ласка, введіть знову." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Довжина паролю повинна бути не менша 8 символів." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Перевірте, чи ви ввели вірну електронну адресу та пароль." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Будь ласка, введіть той самий пароль в обидва поля." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Поле пароль є обов'язковим." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "У полі паролю можуть бути тільки літери, символи # і @ , цифри, символи підкреслення і тире" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Трапилася помилка під час вашої спроби ввійти." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Довжина паролю повинна бути не менша 5 і не більша 16 символів." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Перевірте, чи ви ввели вірну електронну адресу та пароль." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Будь ласка, введіть той самий пароль в обидва поля." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Введіть пароль." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Сервер аутентифікації не працює. Будь ласка, спробуйте ще раз пізніше." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "У полі паролю можуть бути тільки літери, символи # і @ , цифри, символи підкреслення і тире" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Підтвердження паролю повинно бути ідентичне з паролем." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Введіть правильну електронну адресу." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Вибачте, ми не маємо вашої електронної адреси" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Введіть електронну адресу. " + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Лише суперадміністратор може змінити суперадміністратора або надати користувачу прав адміністратора." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Неправильний формат ролі." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Довжина ролі повинна бути не менша 5 і не більша 30 символів." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Ви повинні визначити хоча б одну роль." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Виберіть роль або ADMIN або USER." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Неприпустимий маркер при відновленні пароля." + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Неприпустимий маркер при відновленні пароля." + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Роль користувача admin не може бути змінено." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Поле публічної URL-адреси профілю може містити лише цифри та букви." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Вибачте, таке ім'я користувача вже використовується." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Довжина імені користувача повинна містити не менше 2 і не більше 16 символів." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Перевірте, чи ви ввели вірну публічну URL-адресу профілю." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Введіть ім'я користувача. " + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Роль користувача super admin не може бути змінено." + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Можлива атака CSRF. Ви дійсно хочете створювати / редагувати користувача?" diff --git a/application/i18n/po/po-uk_UA/bug.po b/application/i18n/po/po-uk_UA/bug.po new file mode 100644 index 0000000000..952093914f --- /dev/null +++ b/application/i18n/po/po-uk_UA/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Будь ласка, введіть правильний код безпеки" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Будь ласка, введіть код безпеки" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Електронну адресу введено неправильно." + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Довжина електронної адреси повинна бути не менше 4 і не більше 64 символів." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Потрібно ввести електронну адресу, або зніміть прапорець." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Введіть опис помилки." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Довжина теми повинна бути не менше 3 символів." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Введіть поле Тема." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Довжина імені повинна бути не менше 3 символів." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Введіть поле Ім'я." diff --git a/application/i18n/po/po-uk_UA/category.po b/application/i18n/po/po-uk_UA/category.po new file mode 100644 index 0000000000..5783f43bda --- /dev/null +++ b/application/i18n/po/po-uk_UA/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 04:33+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Поле кольору має містити 6 символів." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Введіть колір." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Потрібно ввести опис." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Будь ласка, переконайтеся, що розмір файлів зображень не перевищує 50 Кб." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Бракує правильного зображення. Приймаються лише формати .JPG, .PNG та .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Поле зображення не містить правильного файлу." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Назва має містити від 3-х до 80-ти символів. " + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Будь ласка, введіть назву." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Ви не можете робити підкатегоризацію категорії з підкатегоріями." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Дана батьківська папка не існує." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Назва батьківської папки має складатися виключно з цифр." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Батьківська категорія не може бути спеціальною категорією" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Введіть назву батьківської папки." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Папка та батьківська папка не можуть мати однакові назви." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Спеціальні категорії не можуть бути підкатегоризовані." diff --git a/application/i18n/po/po-uk_UA/comments.po b/application/i18n/po/po-uk_UA/comments.po new file mode 100644 index 0000000000..2d844443c4 --- /dev/null +++ b/application/i18n/po/po-uk_UA/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 18:16+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Будь ласка, введіть правильний код безпеки." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Будь ласка, введіть код безпеки." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Ви ввели невірний код безпеки." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Поле імені має містити принаймні три символи." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Введіть ім'я." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Введіть текст коментаря." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Поле email містить неправильну електронну адресу." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Електронна адреса має містити від 4-х до 64-х символів." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Якщо поле email адреси відмічено прапорцем, треба ввести електронну адресу. " diff --git a/application/i18n/po/po-uk_UA/contact.po b/application/i18n/po/po-uk_UA/contact.po new file mode 100644 index 0000000000..5c2c7d146d --- /dev/null +++ b/application/i18n/po/po-uk_UA/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 16:58+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Будь ласка, введіть правильний код безпеки" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Будь ласка, введіть правильний код безпеки." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Будь ласка, введіть код безпеки" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Поле email містить неправильну електронну адресу." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Поле електронної пошти повинно бути довжиною не менше 4 і не більше 64 символів." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Потрібно ввести Email адресу або зніміть прапорець." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Поле повідомлення є обов'язковим." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "У полі \"Ім'я\" має бути не менше 3-х символів." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Поле \"Ім'я\" є обов'язковим." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "У полі теми має бути не менше 3-х символів." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Поле теми є обов'язковим." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Трапилася помилка при надсиланні вашого повідомлення." diff --git a/application/i18n/po/po-uk_UA/core.po b/application/i18n/po/po-uk_UA/core.po new file mode 100644 index 0000000000..ab4fb6ae9b --- /dev/null +++ b/application/i18n/po/po-uk_UA/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-25 18:17+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "конфігураційний файл" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "контролер" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "драйвер" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s драйвер для бібліотеки %s мусить надавати інтерфейс %s" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s драйвер для %s бібліотеки не може бути знайдено" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Ви можете перейти на сторінку головна або спробувати ще раз." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Неможливо виконати запит" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "помічник" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Шуканий тип файлу, .%s, не допускається у конфігураційному файлі" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Невірний метод %s викликається у %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Властивість %s не існує у класі %s" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "бібліотека" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Каталог для лог-файлів не доступний для запису: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "модель" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi була не в змозі визначити контролер для обробки цього запиту: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Будь ласка, встановіть маршрут за замовчанням у config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Сторінка, яку ви просили, %s, не може бути знайдена." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr " Розказати про проблему Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Повідомте Ushahidi про цю проблему" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Трасування стеку" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Завантажено протягом {execution_time} секунд, використовуючи {memory_usage} памяті. Згенеровано Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "лнп" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Можлива лише один екземпляр Ushahidi на сторінку запиту" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Неперехоплене %s: %s у файлі %s рядок %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "вид" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Ви повинні встановити вид файлу перед викликом рендера" diff --git a/application/i18n/po/po-uk_UA/database.po b/application/i18n/po/po-uk_UA/database.po new file mode 100644 index 0000000000..9bf8b12cde --- /dev/null +++ b/application/i18n/po/po-uk_UA/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Помилка бази даних: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Таблиця \"%s\" не може бути знайдений в базі даних. Будь ласка, переконайтеся, що ви використовуєте останню версію бази даних для даної версії Ushahidi" diff --git a/application/i18n/po/po-uk_UA/datetime.po b/application/i18n/po/po-uk_UA/datetime.po new file mode 100644 index 0000000000..e9b9e5200b --- /dev/null +++ b/application/i18n/po/po-uk_UA/datetime.po @@ -0,0 +1,218 @@ +# +# Translators: +# skolesnyk , 2012 +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 17:52+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "ранку" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "Пт" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "П'ятниця" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "Пн" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Понеділок" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "вечора" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "Сб" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Субота" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "Нд" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Неділя" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "Чт" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Четвер" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "Вт" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Вівторок" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "Ср" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Середа" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "січ" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "січень" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "лют" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "лютий" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "бер" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "березень" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "кві" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "квітень" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "тра" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "травень" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "чер" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "червень" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "лип" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "липень" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "сер" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "серпень" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "вер" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "вересень" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "жов" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "жовтень" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "лис" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "листопад" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "гру" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "грудень" diff --git a/application/i18n/po/po-uk_UA/feeds.po b/application/i18n/po/po-uk_UA/feeds.po new file mode 100644 index 0000000000..3a91daab36 --- /dev/null +++ b/application/i18n/po/po-uk_UA/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "ДАТА" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Назва каналу повинна мати довжину не менше 3 і не більше 70 символів" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Введіть назву каналу" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Введіть URL каналу" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Будь ласка, введіть коректну URL-адресу. Наприклад, http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "Джерело" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Назва" diff --git a/application/i18n/po/po-uk_UA/footer.po b/application/i18n/po/po-uk_UA/footer.po new file mode 100644 index 0000000000..07751abe4c --- /dev/null +++ b/application/i18n/po/po-uk_UA/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl не встановлено на цій системі" diff --git a/application/i18n/po/po-uk_UA/form.po b/application/i18n/po/po-uk_UA/form.po new file mode 100644 index 0000000000..f30ee1159b --- /dev/null +++ b/application/i18n/po/po-uk_UA/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 17:05+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Типове значення, яке ви надали для поля, є недійсним." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Ім'я поля має бути довжиною не менше 3 і не більше 200 символів." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Будь ласка, введіть значення від 0 до 50 для висоти поля" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Ви ввели невірне значення для поля дати" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Будь ласка, виберіть Так або Ні для поля дати" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Ім'я поля має бути довжиною не менше 3 і не більше 200 символів." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Будь ласка, введіть ім'я поля." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Ім'я поля, введене вами, вже існує в цій формі. Будь ласка, введіть інше." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Ви ввели невірне значення для поля" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Будь ласка, виберіть Так або Ні для потрібного поля." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Будь ласка, виберіть правильний тип поля." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Будь ласка, виберіть тип поля." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Будь ласка, введіть значення від 0 до 300 як ширину поля" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Будь ласка, введіть опис форми." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Форма за замовчанням не може бути видалена." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Будь ласка, виберіть, до якої форми це поле має бути додане." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Будь ласка, виберіть, до якої форми це поле має бути додане." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Поле назви форми має бути довжиною не менше 3 і не більше 200 символів." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Будь ласка, введіть назву форми." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Форма з такою назвою вже існує. Будь ласка, виберіть іншу." diff --git a/application/i18n/po/po-uk_UA/imap.po b/application/i18n/po/po-uk_UA/imap.po new file mode 100644 index 0000000000..69680c7746 --- /dev/null +++ b/application/i18n/po/po-uk_UA/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Не вдалося відкрити потік IMAP" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Служба електронної пошти не підтримується" diff --git a/application/i18n/po/po-uk_UA/installer.po b/application/i18n/po/po-uk_UA/installer.po new file mode 100644 index 0000000000..50b189ab07 --- /dev/null +++ b/application/i18n/po/po-uk_UA/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Шлях до бази даних" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "База даних" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Хост бази даних" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Якщо ви працюєте в Ushahidi на вашому власному комп'ютері, швидше за все, це буде \"localhost\". Якщо ви працюєте в Ushahidi з веб-сервера, ви отримаєте інформацію про ваш хост у веб-хостинг провайдера" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Назва бази даних" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Назва бази даних, на якій ви хочете запустити Ushahidi" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Для отримання додаткової інформації, будь ласка, ознайомтеся з цією статтею на вікі, яка освітлює бази даних більш докладно" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Мова за замовчанням (Локаль)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Кожна копія Ushahidi поставляється з набором вбудованих мов перекладу. Ви можете також додати свої власні" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Відключити" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Увімкнути" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Нижче наводиться резюме помилки, з якою ми зіткнулися" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Місце на Вашому сервері, де ви розмістили свої файли Ushahidi. Ми автоматично виявляємо це значення, будь ласка, переконайтеся, що це правильно. Якщо поле пусте, не хвилюйтеся, це означає, ushahidi встановлений в каталог верхнього рівня." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Завершено" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Загальні" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google ключ API" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Кожен може отримати ключ API. Отримайте свій" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Назад" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "Розширена установка" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Виберіть усі основні параметри через цей 5-ступінчастий процес. Це включає в себе сервер, карти, назву сайту і контактні дані" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "Звичайна установка" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Просто і швидко. Все що вам потрібно - це кореневий каталог вашого сайту і інформація про базу даних. Виберіть цю опцію, якщо ви хочете швидко отримати систему, що працює, і ви завжди можете налаштувати все інше потім" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Продовжити" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Ласкаво просимо до процесу установки сервера Ushahidi. Виберіть, який тип встановлення ви хотіли б використовувати, нижче" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Установка успішно завершена" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Поштовий сервер" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Хост поштового сервера" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Наприклад: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Пароль поштового сервера" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Пароль, який ви зазвичай використовуєте щоб увійти на свою адресу електронної пошти" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Порт поштового сервера" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Часто використовувані порти: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Тип поштового сервера" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). У чому різниця?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Користувач" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "кщо ви використовуєте Gmail, Hotmail або Yahoo Mail, введіть повну адресу електронної пошти як ім'я користувача" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Карта" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Постачальник карти" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi працює однаково добре з будь-якою з цих чотирьох провайдерів карт: Google, Bing, Yahoo або Open Street Map. Виберіть ту, яка найбільш детальна у вашому районі" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Інші кроки..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Пароль" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Ваш пароль бази даних" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Назад" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Будь ласка, перезавантажте сервер Apache" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Дозволити або відключити SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Деякі поштові сервери дають Вам можливість використовувати SSL для установки зв'язку. Використання SSL рекомендується, оскільки це дає вам додатковий рівень безпеки" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Встановлення вашого SMS-сервера" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Адреса електронної пошти сайту" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Адреса електронної пошти повідомлень сайту" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Коли відвідувачі вашого сайту підпишуться на оповіщення по електронній пошті, вони будуть отримувати листи з цієї адреси. Ця адреса не повинна бути такою ж, як адреса електронної пошти сайту" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Електронна пошта всередині вашого сайту буде направлятися через цю адресу" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Назва сайту" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Назва вашого сайту" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Підзаголовок сайту" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Ваш слоган" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Файли і папки, перераховані нижче повинні бути доступні для запису веб-сервером" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Нижче наведено інструкції для зміни прав доступу до файлів:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Перш ніж почати, ви повинні переконатися, що файли і папки доступні для запису з веб-сервера. Це передбачає зміну права доступу до файлів" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Для установки, будь ласка, тримайте наступну інформацію під рукою" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Префікс таблиці" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Як правило, ви не повинні змінювати префікс таблиць. Однак, якщо ви хочете запустити декілька установок Ushahidi з однієї бази даних ви можете зробити це, змінивши префікс тут" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Назва" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Щоб увійти, перейдіть на" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Завантажити дані звіту" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Користувач" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Користувач бази даних" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "і використовуйте такі дані" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Перегляд веб-сайту" diff --git a/application/i18n/po/po-uk_UA/layer.po b/application/i18n/po/po-uk_UA/layer.po new file mode 100644 index 0000000000..6e7dee99b2 --- /dev/null +++ b/application/i18n/po/po-uk_UA/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Поле кольору повинно бути довжиною 6 символів." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Поле кольору є обов'язковим." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Поле файла, здається, не містить правильний файл. Приймаються тільки формати. KMZ. KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Поле файла, здається, не містить правильний файл" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Поле назви має бути довжиною не менше 3 і не більше 80 символів." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Назва є обов'язковою." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "KML Url або файл є необхідним" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Ви не можете мати одночасно файл KML і url" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Будь ласка, введіть URL-адресу. Наприклад, http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-uk_UA/libraries.po b/application/i18n/po/po-uk_UA/libraries.po new file mode 100644 index 0000000000..9f39a462ca --- /dev/null +++ b/application/i18n/po/po-uk_UA/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 04:28+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Не вдається підключитися до сервера Akismet" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Відповідь від Akismet не може бути відновлена" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Бібліотека API: %s, для класу %s не може бути знайдене. Будь ласка, перевірте таблиці маршрутизації завдань API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Ваш Akismet API ключ недійсний" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Помилка при виконанні FOPEN!
Будь ласка, перевірте чи працює у PHP підтримка OpenSSL і чи версія PHP більша, ніж 5.2" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ваше повідомлення unicode занадто довге! (Поточна довжина =" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Будь ласка, вкажіть адресу призначення (TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Будь ласка, вкажіть адресу джерела (FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Ваше повідомлення unicode занадто довге! (Поточна довжина =" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Не підтримується спосіб передачі!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API-бібліотека %s є недійсною. Всі API-бібліотеки повинні бути підкласами %s" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Каталог %s не може бути видалений" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Помилка при розпакуванні: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Завантаження останньої ushahidi не вдалося. Код статусу HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Файл %s не може бути скопійований" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Файл %s не може бути видалений" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Сценарій оновлення Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Завантажений zip-файл ushahidi %s, не може бути записаний" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s недоступний у класі RiverID." diff --git a/application/i18n/po/po-uk_UA/maintenance.po b/application/i18n/po/po-uk_UA/maintenance.po new file mode 100644 index 0000000000..3c13e51e37 --- /dev/null +++ b/application/i18n/po/po-uk_UA/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 16:13+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "На жаль, наш сайт в даний час закритий на технічне обслуговування. Повторіть спробу через кілька хвилин." diff --git a/application/i18n/po/po-uk_UA/message.po b/application/i18n/po/po-uk_UA/message.po new file mode 100644 index 0000000000..c8694c1bd5 --- /dev/null +++ b/application/i18n/po/po-uk_UA/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 04:29+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Будь ласка, введіть правильний код безпеки" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Будь ласка, введіть код безпеки" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Поле email містить неправильну електронну адресу." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Поле електронної пошти повинно бути довжиною не менше 4 і не більше 64 символів." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Поле електронної пошти є обов'язковим, якщо встановлений прапорець." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Поле коментарів є обов'язковим." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Поле назви має бути довжиною не менше 3 символів." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Назва є обов'язковою." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Номер телефона неправильний" diff --git a/application/i18n/po/po-uk_UA/mhi.po b/application/i18n/po/po-uk_UA/mhi.po new file mode 100644 index 0000000000..b84e3c4043 --- /dev/null +++ b/application/i18n/po/po-uk_UA/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Будь ласка, введіть правильний код безпеки." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Будь ласка, введіть код безпеки." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Email-адресу введено невірно" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Введіть правильну адресу" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Поле повідомлення є обов'язковим." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Тема має бути довжиною не менше 3 символів." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Тема є обов'язковою." diff --git a/application/i18n/po/po-uk_UA/notifications.po b/application/i18n/po/po-uk_UA/notifications.po new file mode 100644 index 0000000000..46c0cc14ef --- /dev/null +++ b/application/i18n/po/po-uk_UA/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 16:45+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Це повідомлення було відправлено з вашого сайту" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Логін адміністратора" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Новий коментар був надісланий на ваш сайт у відповідь на:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Новий коментар" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Нове повідомлення електронної пошти було надіслане на ваш сайт." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Нове повідомлення електронної пошти" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Нова доповідь була надіслана на ваш сайт." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Нова доповідь" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Нове текстове повідомлення було надіслано на ваш сайт." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Нове текстове повідомлення" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Ви отримали нове попередження" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Нове попередження!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Ви отримали приватне повідомлення" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Нове приватне повідомлення" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Для відповіді перейдіть:" diff --git a/application/i18n/po/po-uk_UA/page.po b/application/i18n/po/po-uk_UA/page.po new file mode 100644 index 0000000000..c3eb0021e3 --- /dev/null +++ b/application/i18n/po/po-uk_UA/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 16:37+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Будь ласка, введіть заголовок сторінки." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Заголовок сторінки повинен бути менше 3 і не більше 150 символів." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Будь ласка, введіть ім'я вкладки сторінки." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Будь ласка, введіть опис сторінки." diff --git a/application/i18n/po/po-uk_UA/permissions.po b/application/i18n/po/po-uk_UA/permissions.po new file mode 100644 index 0000000000..019ba31f58 --- /dev/null +++ b/application/i18n/po/po-uk_UA/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 14:30+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Переглянути звіти" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Створити/Редагувати/Видалити Звіти" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Схвалити Звіти" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Перевірити Звіти" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Управляти коментарями звітів" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Завантажити звіти" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Вивантажити звіти" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Управляти повідомленнями" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Управляти репортерами повідомлень" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Переглянути статитистику" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Змінити параметри" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Панель управління" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Управляти користувачами" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Управляти ролями" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Можна реєструвати" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Управління реєстраціями" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Доступ до інтерфейсу адмінстратора" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Доступ до інтерфейсу членів" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Видалити усі звіти" diff --git a/application/i18n/po/po-uk_UA/private_message.po b/application/i18n/po/po-uk_UA/private_message.po new file mode 100644 index 0000000000..d3e59254aa --- /dev/null +++ b/application/i18n/po/po-uk_UA/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 16:26+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Батьківський ID мусить бути числовим" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Поле Кому є обов'язковим" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Користувача, якому ви намагаєтеся відправити повідомлення, не існує" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Поле теми є обов'язковим" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Тема мусить бути між 3 та 150 символами" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Поле повідомлення є обов'язковим" diff --git a/application/i18n/po/po-uk_UA/report.po b/application/i18n/po/po-uk_UA/report.po new file mode 100644 index 0000000000..ff3986b009 --- /dev/null +++ b/application/i18n/po/po-uk_UA/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 07:43+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "помилка!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Це розгортання охоплює лише одну країну. Будь ласка, переконайтеся, що розташування звіту знаходиться в країні %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Будь ласка, введіть вірне значення для поля \"%s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Поле \"%s\" мусить бути числовим." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Поле \"%s\" є обов'язковим" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Поле \"%s\" не існує." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Поле \"%s\" не може редагуватися вашим профілем." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Поле \"%s\" мусить містити вірну електронну адресу." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Поле \"%s\" мусить містити вірний телефонний номер." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Поле \"%s\" мусить містити вірну дату (ММ/ДД/РРРР)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Поле \"%s\" мусить містити вірну дату (ДД/ММ/РРРР)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Виберіть правильний формат для завантаження" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Виберіть правильний формат для завантаження" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Виберіть \"Звіти, які очікують схвалення\" або \"Схвалені звіти\" чи обидва." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Виберіть \"Звіти, які очікують схвалення\" або \"Схвалені звіти\" чи обидва." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Виберіть \"Звіти, які очікують схвалення\" або \"Схвалені звіти\" чи обидва." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Виберіть \"Звіти, які очікують перевірки\" або \"Перевірені звіти\" чи обидва." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Виберіть \"Звіти, які очікують перевірки\" або \"Перевірені звіти\" чи обидва." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Виберіть \"Звіти, які очікують перевірки\" або \"Перевірені звіти\" чи обидва." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Будь ласка, виберіть правильний тип звіту для завантаження" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Будь ласка, виберіть правильний тип звіту для завантаження" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Будь ласка, виберіть правильний тип звіту для завантаження" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Ви повинні вибрати формат завантаження. Виберіть CSV або XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Будь ласка, виберіть вірний формат для завантаження вашого звіту" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Поле дати ВІД містить неправильні значення" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Введіть правильну дату для поля ВІД. Вона не може бути більше сьогодняшнього числа." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Будь ласка, введіть припустиме значення щоб підтвердити цей звіт" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Будь ласка, введіть припустиме значення щоб підтвердити цей звіт" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Неправильно вказано час (АМ/РМ)" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Категорія введена невірно" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Введіть категорію." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Дата введена у неправильному форматі" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Дата введена у неправильному форматі" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Введіть дату." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Введіть опис." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Час введений у неправильному форматі." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Введіть значення години." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Будь ласка, введіть припустиме значення для імовірності інформації" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Будь ласка, введіть припустиме значення для імовірності інформації" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Хвилини введені у неправильному форматі." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Введіть хвилини." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "URL посилання на джерело новин введений неправильно." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Будь ласка, переконайтеся, що розмір фото, що додається, не більше 2 Мб." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Файли фотографій мають неправильний формат, додайте файли в .JPG, .PNG або .GIF форматах." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Файли фотографій пошкоджені або мають неправильний формат" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Будь ласка, введіть припустиме значення для надійності джерела" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Будь ласка, введіть припустиме значення для надійності джерела" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Довжина назви не може бути менше 3х и більша за 200 символів." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Введіть назву." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Можлива атака CSRF. Ви дійсно хочете створювати / редагувати звіт?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Будь ласка, введіть припустиме значення для перевіреності цієї події" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Будь ласка, введіть припустиме значення для перевіреності цієї події" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Посилання на відео введене невірно" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Координати широти місцевості введені неправильно" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введіть координати широти місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Поле локалі введене неправильно." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Дане повідомлення вже переведено на дану мову" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Поле локалі введене неправильно." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Оригінальний звіт і переклад мають однакову локаль (мову)" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Введіть локаль." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Довжина назви місця не може бути менше 3х і більше 200 символів." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Введіть назву місця." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Координати довготи місцевості введені неправильно" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введіть координати довготи місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "'Email введений в неправильному форматі" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Довжина Email не може бути менше 4х і більше 64 символів." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Довжина імені не може бути менше 3х і більше 100 символів." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Довжина прізвища не може бути менше 3х і більше 100 символів." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Поле дати ДО містить неправильні значення" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Введіть правильный формат дати для поля ДО. Воно не може бути більше сьогодняшнього числа." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Дата ВІД не може бути більше, ніж дата ДО." diff --git a/application/i18n/po/po-uk_UA/reporters.po b/application/i18n/po/po-uk_UA/reporters.po new file mode 100644 index 0000000000..ec39b34df1 --- /dev/null +++ b/application/i18n/po/po-uk_UA/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Координати широти місцевості введені неправильно" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введіть координати широти місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Рівень повідомника неправильний" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Рівень повідомника неправильний" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Довжина назви місця не може бути менше 3х і більше 200 символів." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Введіть назву місця." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Координати довготи місцевості введені неправильно" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Введіть координати довготи місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Неправильна особа" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Неправильна особа" diff --git a/application/i18n/po/po-uk_UA/reports.po b/application/i18n/po/po-uk_UA/reports.po new file mode 100644 index 0000000000..ef7850e6da --- /dev/null +++ b/application/i18n/po/po-uk_UA/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 15:28+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Переконайтеся, що ви вже відмітили один елемент" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Переконайтеся, що ви вже відмітили один елемент" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Звіти повинні бути класифіковані, перш ніж вони можуть бути схвалені" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "У вас немає дозволу на виконання цієї дії" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Ви повинні вибрати файл для вивантаження" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Файл для вивантаження мусить бути у форматі .csv або .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Поле файлу вивантаження, здається, не містить правильний файл" diff --git a/application/i18n/po/po-uk_UA/roles.po b/application/i18n/po/po-uk_UA/roles.po new file mode 100644 index 0000000000..33b9c84890 --- /dev/null +++ b/application/i18n/po/po-uk_UA/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 18:16+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Поле опису має мати довжину не менше 3х и не більше 100 символів." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Поле опису має бути заповнене." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Поле імені може містити лише літери та цифри." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Поле імені має мати довжину не менше 2х и не більше 30 символів." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Роль SuperAdmin не може бути змінена." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Поле імені має бути заповнене." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Поле рівня доступу має бути число між 0-100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Поле рівня доступу має бути число між 0-100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Поле дозволів має бути число між 0-100." diff --git a/application/i18n/po/po-uk_UA/settings.po b/application/i18n/po/po-uk_UA/settings.po new file mode 100644 index 0000000000..4ea61818ff --- /dev/null +++ b/application/i18n/po/po-uk_UA/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# Андрій Бандура , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 18:53+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Поле про дозвіл коментувати заповнене невірно" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Поле про дозвіл коментувати має бути заповнене." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Поле про RSS-стрічку заповнене невірно" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Поле про RSS-стрічку має бути заповнене." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "Поле категорії RSS-стрічки заповнене невірно" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Поле категорії стрічки є обов'язковим." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Це поле дозволу сповіщень не містить правильне значення." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Поле дозволу сповіщень обов'язкове." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Поле про можливість відправляти звіти заповнене невірно" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Поле про можливість відправляти звіти має бути заповнене." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Поле про відправку статистики заповнене невірно" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Поле про відправку статистики має бути заповнене." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Кількість записів, за замовчуванням отримуваних за запитом API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Максимальна кількість записів, отримуваних за запитом API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Максимальна кількість запитів API на одну IP-адресу" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Поле Akismet заповнене невірно" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Поле Akismet заповнене невірно" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Поле банера сайту повинно містити вірне зображення. Прийнятні лише формати .JPG, .PNG та .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Переконайтеся, що розмір зображення банера не менший за 250 КБ." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Поле зображення банера не містить правильного файлу." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Поле кешування сторінок повинно бути заповнене" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Заповніть поле кешування сторінок" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Час кешування сторінок заповнений невірно" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Введіть час кешування сторінок" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Ваш сервер не налаштований для чистих URL. Налаштуйте Ваш сервер до увімкнення даної послуги. Для більш детальної інформації зайдите post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Це дозволить Ushahidi заходити на \"чисті\" сайти без входу на \"index.php\"." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Дозволити чисті URL" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Чисті URL" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Довжина номера Clickatell API не повинна перевищувати 20 символів." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Введіть Clickatell API номер." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Довжина паролю Clickatell не повинна перевищувати 50 символів." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Введіть пароль Clickatell." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Довжина імені користувача Clickatell не повинна перевищувати 50 символів." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Введіть ім'я користувача Clickatell." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Налаштувати карту" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Місцезнаходження за замовчуванням" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Поле кольору містить неправильні дані" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Поле кольору повинно бути 6-значним" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Введіть колір." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Бачити карту за замовчуванням" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Рівень масштабу за замовчуванням" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Отримати назви з ГЕОназв" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Поле хоста Сервера пошти надто довге" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Хост сервера пошти повинен містити лише цифри." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Довжина паролю сервера пошти не повинна перевищувати 50 символів." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Введіть пароль сервера пошти." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Поле порта Сервера пошти надто довге" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Порт сервера пошти повинен містити лише цифри." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Поле типу сервера пошти надто довге" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Введіть тип сервера пошти." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Довжина імені користувача сервера пошти не повинна перевищувати 50 символів." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Введіть ім'я користувача сервера пошти." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Параметри установки Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Щоб отримати інформацію нижче вам потрібно створити новий додаток Facebook на" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Ці параметри дозволяють користувачам увійти через Facebook, не створюючи програм під facebook для вашого використання" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "ID програми на Facebook" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Секрет програми Facebook" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Поле Google Analytics повинне містити діючий Web Property ID у форматі UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Увімкнути HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Цей параметр надає Ushahidi доступ у небезпечному режимі; без \"https://\" у префіксі URL" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Цей параметр надає Ushahidi доступ у безпечному режимі; з https у префіксі URL" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Поле кількості звітів на сторінці (Головній) заповнене неправильно" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Введіть кількість звітів на сторінці для (Головна)." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Поле кількості звітів на сторінці (Admin) заповнене неправильно" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Введіть кількість звітів на сторінці для (Admin)." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Вибір провайдера карти відбувається напряму з провайдером. Виберіть провайдера, отримайте API ключ, Введіть ключ на сайті" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Масштаб" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Виберіть провайдера карти" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Виберіть новий API ключ" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Отримати ключ API " + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Вибір провайдера карти відбувається напряму з провайдером. Виберіть провайдера, отримайте API ключ, Введіть ключ на сайті" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Провайдер карти" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Карта часової шкали" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Властивості карти" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Чи об'єднує Ushahidi декілька країн" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Виберіть країну за замовчанням" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Клікніть на карту щоб вказати точне місцезнаходження" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Кластеризувати звіти по Карті" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Дозволити користувачам відправляти коментарі до звітів" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Включити стрічку новин RSS на головній сторінці сайта" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Створити Нову категорію з каналів" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Дозволити користувачам підписатися на оповіщення" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Дозволити користувачам відправляти звіти про події" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet ключ" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Банер сайту" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "блоків на рядок" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Кешування сторінок" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Час кешування сторінок" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Увімкнути реєстрації" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Заява авторського права сайту" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Колір за замовчуванням для всіх категорій" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Типова піктограма для всіх категорій" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Видалити зображення банера" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Видалити типову піктограму" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Відображати страницу контактів" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Відображати сторінку \"Як допомогти\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Email для сповіщення" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr " Щоб отримати звіти по пошті, будь ласка, налаштуйте параметри Вашого email." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Email Веб сайта" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Ідентифікатор Google Analytics - формат: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Кількість елементів на сторінці - Головна" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Кількість елементів на сторінці - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Захистіться від спаму, використовуючи Akismet от Automattic.
Ви можете отримати безкоштовний API ключ в WordPress.com user account" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica акаунт" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica Сайт" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Мова сайта" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Ручне схвалення користувачів" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Повідомлення сайту" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Назва сайту" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Окреме розгортання" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Вимагати підтвердження електронної адреси користувача" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Надіслати повідомлення звіту" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Відправляти статистику в API" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Заголовок сайту" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Часовий пояс" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Параметри сайта" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Twitter аккаунт" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Хэштеги - відокремте комами" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Геолокація стрічок - ім'я користувача Geonames" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Email веб сайта введений неправильно" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Довжина Email веб сайта не повинна містити менше 4х і більше 100 символів." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Довжина назви сайта не повинна містити менше 3х символів і більше 50 символів." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Введіть назву сайта." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Довжина поля заголовку має бути не менше 3х і більше 100 символів." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Введіть поле заголовку." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Введіть ваш Clickatell API Номер" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Перевірте Ваш баланс на Clickatell" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Завантажте баланс на Clickatell" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Введіть Ваш Clickatell Пароль" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Підключіться до послуги Clickatell в clicking here" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Введіть Вашу інформацію Clickatell внизу" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Введіть ваш Clickatell логін" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS - вільна програма з відкритим вихідним кодом, яка дозволяє користувачам відправляти і отримувати текстові повідомлення з великими групами людей за допомогою мобільних телефонів. Клацніть на кнопку, щоб завантажити останню версію FrontlineSMS.com" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Завантажити та встановити FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Детальні вказівки, як надіслати СМС з вашої програми FronlineSMS, доступна тут. URL та API ключ нижче потрібні, щоб налаштувати синхронізацію з FrontlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Копіювати та вставити це у поле від FrontlineSMS \"Адреса\"" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Копіювати та вставити це у поле від FrontlineSMS \"Ushahidi API Ключ\"" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Підключення FrontlineSMS до цього розгортання Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Введіть номер телефона, підключений до Frontline SMS в поле внизу" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Введіть номер без символів + чи скобок" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Option 1: Використовуйте Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Option 2: Використовуйте Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Налаштування SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Телефон 1 занадто довгий" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Телефон 1 має включати лише цифри." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Телефон 2 занадто довгий" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Телефон 2 має включати лише цифри." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Телефон 3 занадто довгий" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Телефон 3 має включати лише цифри." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Параметри установки Твіттера" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Щоб отримати інформацію нижче вам потрібно створити новий додаток Твіттера на" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Ключ покупця" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Таємниця покупця" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Маркер доступу" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Секрет маркера доступу" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Тестові параметри" diff --git a/application/i18n/po/po-uk_UA/sharing.po b/application/i18n/po/po-uk_UA/sharing.po new file mode 100644 index 0000000000..d4fb0b0c84 --- /dev/null +++ b/application/i18n/po/po-uk_UA/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-26 04:31+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Дата реєстрації" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Дата додана" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Останній доступ" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Довжина кольору має бути 6-значною" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Введіть колір." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Ім'я обміну введено невірно." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Потрібно ім'я обміну." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "URL сайта вже існує" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Адреса сайта введена невірно" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Введіть url сайта" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Адреса сайта введена невірно" diff --git a/application/i18n/po/po-uk_UA/stats.po b/application/i18n/po/po-uk_UA/stats.po new file mode 100644 index 0000000000..fc6c555f67 --- /dev/null +++ b/application/i18n/po/po-uk_UA/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 17:51+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Підтверджено" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Категорії" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Категорія впливу" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Ця діаграма дає вам лінійне представлення повідомлень за категоріями протягом довгого часу. Прокрутіть зліва направо, щоб побачити порівняльний огляд різних категорій. Наведіть курсор миші на графік для детальнішої інформації" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Виберіть інтервал дат" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Країни" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Країна" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Розподіл країн" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Це відділ статистики. Опис скоро буде доданий, поки перегляньте посилання нижче" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Помилка" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Глосарій" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Статистика кліків" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Історія" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Сторінки" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Кількість сторінок, які переглянули відвідувачі на Вашому сайті" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Звіти" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Категорії звітів" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Статистика звітів" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Статус звіта" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Повідомити перфокарти" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Статистика повідомлень" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Статистика не включена" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 Місяць" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 Місяці" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 Місяців" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Все" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Не підтверджено" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Унікальні відвідувачі" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Кількість людей, що приходять на ваш сайт; унікальні відвідувачі визначаються за допомогою cookies. У випадку, якщо у відвідувача не включені cookies, то вони будуть визначені з використанням простої евристики з урахуванням IP-адреси, браузера, плагінам, ОС і т.д." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Не перевірено" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Перевірено" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Зведення по відвідувачам" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Відвідування" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Відвідування — кількість унікальних відвідувачів, що повернулись на сайт більш ніж на 30 хвилин після останнього перегляду сторінки" diff --git a/application/i18n/po/po-uk_UA/tooltips.po b/application/i18n/po/po-uk_UA/tooltips.po new file mode 100644 index 0000000000..3fd29e7fc4 --- /dev/null +++ b/application/i18n/po/po-uk_UA/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Андрій Бандура , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "Дозволяє додавати додаткові категорії до звіту. Якщо ви виберете \"Категорія1\" для повідомлення, яке вже знаходиться в \"Категорія2\", то повідомлення буде прив'язано до обох категорій." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Затверджує звіт чи ні. У разі схвалення він буде відображатися публічно." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "Ви зможете призначити значок для тригерного користувача. Виберіть тут значок для призначення." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "Це діапазон годин і / або хвилин в 24-годинному форматі. Якщо ви вводите більш ранній час у друге поле, воно буде дзеркально відображено в першому. Ці значення часу повинні бути в межах одного дня. Крім того, цей час звіряється з налаштуванням часу на вашому сайті в налаштуваннях сайту і НЕ обов'язково з часовим поясом користувача, який зв'язується з вашим розгортанням. Залиште його з 00:00 до 00:00, щоб ігнорувати цей специфікатор." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "Ви можете задати умову активації тригерів при використанні певних категорій. Наприклад, якщо ви вибрали умову \"Категорія1 і Категорія2\", а повідомлення прив'язане до Категорія2 і Категорія3, то вона виконає задану умову." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "Якщо ці дії відбуваються в певні дні тижня, задайте це тут. Майте на увазі, день визначається часовим поясом, налаштованим в розгортанні. Утримуйте shift, command, або control, для вибору декількох днів." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Тіло листа, який буде надіслано." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Тема листа, який буде надіслано." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "Каналом можуть бути всі канали або конкретні канали. Якщо ви хочете тільки конкретні канали для активації тригера, ви можете вибрати їх тут. В іншому випадку, залиште «все»" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Ім'я користувача Twitter (або багато імен користувачів через коми). Якщо Ви хочете активізувати тригери тільки для повідомлень twitter від конкретного користувача, введіть його ім'я користувача тут (без @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "Ви можете залишити це поле порожнім, якщо ви не хочете перевірити за ключовими словами. Якщо ви додаєте слова тут, ви повинні розділити їх комами (,). Наприклад, якщо ви хочете, щоб активувати тригер, коли хтось згадує „любов\" або „мир\" у своєму посланні, вам потрібно буде додати „любов, мир\" у ​​вікні ключових слів." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "Ви можете вибрати \"де завгодно\" або вказати місце розташування. Якщо ви вибрали місце розташування, ви можете вказати периметр, де відбувається дія. Наприклад, якщо ви хочете активувати тригер, коли будь-хто вкаже крапку в Івано-Франківській області, вам необхідно виділити дану область одним або декількома прямокутниками." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "Цей визначник активує тригер на N-ому числі або для бази всього колективу користувачів або для кожного окремого користувача. Залиште це поле порожнім, щоб його ігнорувати." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "Ця типова назва для додавання в звіт." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "Якщо всі критерії вище були пройдені, то тригер запустить дію - від схвалення повідомлення до електронного листа користувачу. Виберіть необхідні додаткові опції." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "При виборі \"Тригерний користувач\" електронного листа буде відіслано користувачеві, який виконав дію. При використанні радіо-кнопки після поля введення ви зможете ввести будь-який інший e-mail. Це корисно, коли ви встановлюєте тригери для повідомлення користувачів про зміни, що відбулися." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "Ви можете вибрати кілька днів тут. Дати визначається вашими налаштуваннями часового поясу розгортання. Для того, щоб за замовчуванням залишилися всі дати, що не відзначайте жодних дат." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "Тригер є основним елементом для налаштування \"Дій за умовою\". Ви можете вибрати будь-яку дію, коли хто-небудь відправить нове повідомлення, зареєструється і т. д." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "Користувачем може бути будь-хто або конкретний користувач. Якщо ви хочете, щоб лише певні користувачі активували тригер, то ви будете хотіти вибрати їх тут. В іншому випадку, ви захочете залишити це як \"кожному\", бо більшість тригерів створені для всіх користувачів, що взаємодіють з системою" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Позначає звіт як перевірений або ні." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Аватари анкет даного сайту використовують сервіс Gravatar. Натиснувши на ваш аватар, ви будете переадресовані на їхній сайт, де зможете змінити зображення." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Відокремте кожне значення комою. Наприклад: Значення1, Значення2 і т. д." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Кожне значення відокремлюється комою, наприклад, value1, value2. Якщо ви хочете задати значення за замовчуванням, закінчите список опцій :: наприклад, якщо ви хочете задати value3 як замовчування, це буде value1, value2, value3 :: value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Відокремте кожний елемент комою. Наприклад: пункт 1, пункт 2 і т. д." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Почніть набирати, щоб випав список користувачів." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Тема приватного повідомлення" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Приватне повідомлення" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "Ви можете вибрати колір, який буде відображений під вашим аватаром. Цим кольором також будуть відображатися повідомлення, які ви відправили." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Ваша Email адреса" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "Повне ім'я" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "Якщо задано, це буде ваш новий пароль. Залиште це поле порожнім, якщо ви хочете зберегти ваш поточний пароль." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "Це потрібно при створенні нового користувача і буде паролем користувача. Ви повинні інформувати свого нового користувача про можливість зміни пароля після першого входу в систему." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Виберіть Так для отримання сповіщень через Email для нових повідомлень або коментарів, які були виставлені на веб сайті" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Ваш пароль. Залиште поле пустим якщо ви хочете залишити старий пароль" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Ваша анкета може бути переглянута ким завгодно, якщо ви відзначите цю опцію. Це також найпростіший спосіб показати звіти, які ви відправили, ваші повернення, значки, і т.д. все на одній сторінці." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "Це - адреса, де можна знайти ваш громадський профіль." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Ім'я користувача не может бути змінене" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Рівень доступу використовується для обмеження доступу до користувацьких полів. Володар великого рівня зможе побачити поля з меншим рівнем. Суперадміністратор має вищий рівень доступу (100). Дані, призначені для публічного перегляду мають нижчий рівень (0). Члени мають рівень доступу 10. Адміністратор має типовий рівень доступу 90." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "Цей email буде використаний для відправки сповіщень" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Дозволити користувачам підписатися на повідомлення через мережу." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "Дозволяє додавати повідомлення на одну і ту же точку на карті" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Дозволити користувачам коментувати повідомлення на головній сторінці." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "Дозволяє додавання стрічки новий RSS на головній сторінці." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Це дозволяє створити нову категорію із каналів новин RSS." + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Дозволити користувачам відправляти повідомлення через веб форму." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Кількість записів за замовчанням, отримуваних API-запитом" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Максимальна кількість записів, отримуваних API-запитом" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Максимальна кількість API-запитів на IP-адресу" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "Заставка показується нагорі вашого сайту, якщо тема її підтримує. Оптимальний розмір залежить від використовуваної теми. Зверніть увагу, що заставка замінить собою назву і слоган сайту." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Число блоків, які будуть показані у кожному ряду." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Дозволити або відключити кешування сторінок. Кешування дозволяє прискорити показ сторінок. Ми рекомендуємо використовувати кешування на завантажених сайтах. Пам'ятайте, що доповіді будуть розміщені на сторінках сайту на основі розкладу, встановленого нижче (час життя кешу)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Установити час життя кешу" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "Цей параметр дозволяє checkins на розгортанні. Це спрощений тип звіту, який не модерується, перш ніж він йде на головну сторінку, що вимагає певного налаштування вашого сайту. При включенні цього, переконайтеся, що ваш часовий пояс, настройка за Гринвічем і ваша тема підтримує checkins. При включенні цього, тільки теми для checkins стануть доступними на сторінці налаштувань надбудов/тем." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Встановити карту для відображення окремого місцезнаходження" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Вибрати один колір для всіх категорій на сайті" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Вибрати одну піктограму для всіх категорій на сайті." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "Країна, де буде встановлена платформа" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Вмикає і вимикає панель контактів на головній сторінці." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Вмикає і вимикає панель допомоги на головній сторінці." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "Кількість повідомлень які будуть показані на одній сторінці (Головна)." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "Кількість повідомлень які будут показані на одній сторінці (Admin)." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "Хаб для вхідних повідомлень" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "Синхронізує повідомлення з платформою Ushahidi" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Телефонні номери, через які були отримані повідомлення" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Відслідковує відвідувачів Вашого сайта. Отримайте детальну статистику про відвідувачів" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Вибрати мову веб-сайта" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "Якщо ви встановлюєте цей параметр \"так\", ви повинні схвалити кожного окремого користувача, який створить обліковий запис на вашому сайті, призначаючи їм ролі (тобто Член, Адмін, СуперАдмін)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "Визначає, яка карта буде використана на сайті" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "Це відображає на часовій шкалі дату і час надходження звіту" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Встановлення цього значення в істину або так зробить вашу Ushahidi приватною, тільки користувачі, які мають облікові записи, які ви вкажете, будуть мати доступ до системи." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Якщо встановлено \"так\", користувачі отримають email з посиланням підтвердження перед дозволом реєстрації в розгортанні. Якщо Ви дозволите це після того, як ваше розгортання брало користувачів, їм буде відправлений запит підтвердити їх обліковий запис, щоб їм дозволили продовжити використовувати її." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "Місцезнаходження повідомлень" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "Пароль для Email адреси, що отримує повідомлення" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "Порт для отримання доступа до вхідних повідомлень через Email" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "Потрібно для більш безпечного обміну повідомленнями" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "Технологія отримання доступа до вхідних повідомлень через Email" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "Email адреса, на яку будуть приходити повідомлення" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Дозволяє отримати статистику повідомлень через API." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Завжди добре додавати авторські права до роботи. Для допомоги у виборі правильної ліцензії для ваших потреб, відвідайте http://creativecommons.org/choose/." + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "Це email на який будуть відправлені всі email сповіщення и повідомлення з форми контактів." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "Це назва сайта, що буде відображена в верхній частині головної сторінки. Вона корисна, якщо ви хочете повідомити щось користувачам. Щоб видалити це поле, видаліть текст." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "Це назва сайту, що показується нагорі" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "Повідомлення, яке буде показуватися користувачам на сторінці заповнення даних про новий повідомленні. Можливе використання для інформування про юридичну відповідальність або інших інструкцій." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "Опис веб сайта в декількох словах." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "Це часовий пояс, в якому ваш сайт буде працювати. Це впливає на будь-які дії, які ви задали, що використовують час і дату, а також поточний час за замовчуванням для звітів на передній і задній частині сайту." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Вибрати хештег, який буде використаний у твіттері" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-uk_UA/ui_admin.po b/application/i18n/po/po-uk_UA/ui_admin.po new file mode 100644 index 0000000000..e5e027b8e5 --- /dev/null +++ b/application/i18n/po/po-uk_UA/ui_admin.po @@ -0,0 +1,1657 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 14:29+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Немає доступу. Ваші облікові дані не є дійсними чи вашому запиту було відмовлено вручну" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Немає доступу. Ваш запит був оброблений, але сервер зараз перевантажений. Спробуйте пізніше" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Рівень доступу" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Дії" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Додати до категорії" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "додано" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "додано/відредаговано" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Доповнення" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Адміністратор" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Сповіщення" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Сповіщення отримані" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Все" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "AM" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Анонім" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Будь-хто" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Скрізь" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API заблоковане" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Журнали API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API Логи" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "Розблокувати" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "Розблокувати всіх" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "підтверджено" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Підтвердити автоматично" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Підтвердити вручну" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Заархівовано" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Ви впевнені, що хочете" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Ви впевнені, що хочете видалити це" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Ви впевнені, що хочете видалити це фото" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Ви впевнені, що хочете поміняти форми місцями" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Призначити" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Призначення" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Призначити значок" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Автор" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email Автора" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Назад" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "Заблокувати ІР" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "У проміжках" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Блоки" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Тіло" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Сказувати" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Категорії" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "График невірно відображений" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Перевірте повідомлення" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Перевірте номер" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Перевірте налаштування СМС!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Подробиці реєстрації" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Реєстрації" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Завантажені міста" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "код" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Версія кода не синхронна" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Колір" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Коментарі" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Ваш код підтвердження сповіщень:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Користувач був" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Число" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Країна не знайдена" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "створено/редаговано" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Створити повідомлення" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Критичне оновлення" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Поточно активні" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Поточно неактивні" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "У вас немає достатніх прав для редагування наступних власних полів." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Щоденно" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Дошка" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "база даних" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Дата і час" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Дату додано" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Дату змінено" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Дні тижня" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Версія БД не синхронна." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "видалено" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Видалити" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Видалити ці повідомлення" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Видалити значок" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Демо" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Опис" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Відключено" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Початок" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Кінець" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "клас div" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Завантажити звіти" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Випадаючий вибори" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "ВІДРЕДАГОВАНО" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Відредаговано" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Редагувати" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Редагувати журнал" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Ел. пошта" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Весь колектив" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Помилка geocoding! HTTP Помилка" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Не була встановлена IMAP PHP бібліотека" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Невірні повноваження" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Помилка" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Помилка, не вдалося відправити подію" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Кожні шість годин" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Кожні дванадцать годин" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Експериментальний" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "ЧАПи" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "стрічка" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Відгук" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "стрічки" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Список виборів" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Значення за замовчанням" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Тип даних" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Розмітка" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Числовий" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Звичайний текст" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Висота (в рядках)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Приховане поле" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Максимальна кількість символів" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Назва поля" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Перемикати" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Ні" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Так, закрито типово." + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Так, відкрито типово" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Не вдалося знайти завантажений файл" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Не вдалося відкрити файл для читання" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Ця форма не існує!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Форум" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Поле для текста (Вільний текст)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Поле дати" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Поле радіокнопок" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Поле прапорців" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Спадне поле" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Від" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Від" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Geoname помилка (таймаут)" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Отримати допомогу" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Отримати більше тем" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Отримати більше модулів" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Дії" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Додати/Редагувати" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Ел. пошта" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Керування користувачами" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Роль" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Користувач" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "допомога" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Щогодинно" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Стрічка новин для" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Тека інсталятора все ще існує. Вилучіть теку установки. Це потенційна вразливість." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Прив'язка" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Прив'язки" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Деталі прив'язки" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Неправильний параметр" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP адреса" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Це поле дати?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Хто може переглядати відповіді" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Хто може підтверджувати відповіді" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Ключове слово" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Ключові слова" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email адреса:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Повне ім'я:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Пароль:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Роль:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Ім'я користувача:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Шари" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Модератор" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Вийти" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Логи" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Керувати" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Керувати ролями і дозволами" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Керувати користувачами" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Додати/редагувати" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Управляти вашим публічним списком" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Відмітити як" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "Відмічено как не СПАМ" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "Відмічено как СПАМ" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "Схожих документів не знайдено" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Пошта" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Пошта" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Laconica повідомлення" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Повідомлення Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Ваше повідомлення було відправлено!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Хвилина" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Хвилини" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Відсутній параметр" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Модератор" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "змінено" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Змінити установку часового поясу" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "рухатися вниз" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "рухатися вгору" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Множинні прив'язки" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Мої сповіщення" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Мої реєстрації" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Мій профіль" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Мої звіти" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Проголосували" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Додатний" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Від'ємний" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Ім'я" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Створити нове сповіщення" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Створити нове повідомлення" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Новий пароль" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Ні" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Це особлива категорія, яка не буде відображатися на формі подачі звітів для користувачів, які подають звіти. Це використовується для зберігання звітів, які залишились без категорії (некатегоризовані звіти) в результаті видалення категорії." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Сповіщення" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Не чутливий до регістру." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Не знайдено" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Нема даних для відображення" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Нема помилки" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Нема результатів до відображення!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "з" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "На вказане число" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "сторінка" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "сторінки" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Сторінка не знайдена" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Вибачте, сторінка, яку ви намагаєтеся переглянути, переміщена.

Спробуйте пошукати її на інших сторінках сайту?
Якщо ви потрапили на цю сторінку з іншої частини нашого сайту, зв'яжіться з нами , щоб ми могли виправити наші помилки.

Ви по посиланню з іншого сайту?
Посилання з інших сайтів може іноді бути застарілими або неправильними. Розкажіть нам , звідки ви прийшли, і ми можемо спробувати зв'язатися з тим сайтом, щоб вирішити цю проблему.

Ви ввели URL?
Ви могли набрати адресу (URL) неправильно. Спробуйте ввести знову.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "На жаль, сторінка, яку ви намагаєтеся переглянути, не тут." + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Використані параметри" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Пароль" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Скидання пароля" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Шановний(а)" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Ми отримали запит на скидання пароля" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Щоб змінити пароль, натисніть на посилання нижче (або скопіюйте та вставте його в адресний рядок браузера)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Як ви просили, ваш пароль в даний час змінений. Ваш новий пароль наступний" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi пароль змінено" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Будь ласка, виберіть" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Дані не було відправлено" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Перегляд" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Повідомлення" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Приватні повідомлення" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Приватне повідомлення надіслано" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Тема" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "До" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Публічне розміщення" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Визначники" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "читати" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Значимість" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Заголовок звіту" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Дата звіту" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Оглядачі" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Рівні оглядача" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Звіти" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Репутація" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Обов'язковий" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Скасувати" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Відгук" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Результати" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Відміна" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Ця електронна адреса вже має обліковий запис, керований CrowdmapID. Користувачеві потрібно буде використовувати свій існуючий пароль Crowdmap для входу." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Розблокувати всіх" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Пошук" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Шукати звіти" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "шукаємо" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Ключ шифрування як і раніше заданий типовим значенням. Це небезпечно і потрібно змінити." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Цей сайт подається через HTTP. Потрібно встановити на HTTPS для підвищення безпеки." + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Вказівки доступні на вікі:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Виберіть потрібний формат завантаження звітів:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Виберіть Тип поля ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Виберіть пункт" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Ви повинні вибрати тригер, перш ніж вибрати відповідь." + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Ви повинні вибрати тригер, перш ніж визначити кваліфікацію." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Відправник" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Надіслати до" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Це повідомлення було відправлено з вашого веб сайта о" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Час сервера" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Налаштування" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Показана сторінка" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Показувана сторінка" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "показано" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Спеціальна категорія" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Це особлива категорія, яка не буде відображатися на формі подачі звітів для користувачів, які подають звіти. Це використовується в поєднанні з функцією \"Довірені Репортери\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Вказана область" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Стан" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Статистика" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Статистика" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Не вдалося! Наш сервер статистики не працює чи щось було неправильно налаштовано при встановленні Ushahidi.Будь ласка, повторіть спробу пізніше. Щоб обнулити статистику, змініть stat_id (поставте null) і stat_key (поставте 0) в параметрах таблиці в БД. УВАГА: Ви не зможете повернути дані!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Не вдалося зібрати дані статистики!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Вказані дні" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Тема" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Суперадміністратор" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Завдання виконано" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Поле для текста" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Ім'я" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Керування користувачами" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Помилка таймауту" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "до" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Всього записів" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "до" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Перекласти повідомлення" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Тригер" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Тригерний користувач " + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Тригери" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "не підтверджено" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Невідомо" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Невідомий збій" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "не прочитано" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Ви більше не будете отримувати сповіщення від " + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Натисніть щоб оновити" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Оновленя Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Статус оновлення Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Завантажити повідомлення" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Користувач" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Користувачі" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Перевірено/неперевірено" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Перевіряти/Не перевіряти" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Версія" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "готовий до оновлення." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Кодування відео" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Приватні повідомлення" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Переглянути сайт" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Переглянути звіт" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Ласкаво просимо," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Вікі" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Так" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Ваш пошук для" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Натиснувши нижче кнопку, ви вилучите УСІ звіти у базі даних. Цим вам потрібно з обережністю користуватися, бо ця операція не зворотна." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Ми рекомендуємо вам зарезервувати базу даних перед продовження" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Я справді хочу вилучити %s звіт(ів) з бази даних." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Ви справді хочете вилучити усі звіти?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Немає звітів для вилучення." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Число входжень" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Останній вхід" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Підтверджений профіль?" diff --git a/application/i18n/po/po-uk_UA/ui_main.po b/application/i18n/po/po-uk_UA/ui_main.po new file mode 100644 index 0000000000..2d47c24b4c --- /dev/null +++ b/application/i18n/po/po-uk_UA/ui_main.po @@ -0,0 +1,3171 @@ +# +# Translators: +# Den , 2013 +# skolesnyk , 2012 +# Андрій Бандура , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Про нас" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Доступ" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Обмеження доступа" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Логін" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Дії" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Ця операція не може бути скасована. Ви впевнені, що хочете продовжити?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Активувати" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Активний" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Додати" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Додано" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Додаткові дані" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Додаткові звіти" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Додати/редагувати" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Додати поле" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Додати мову" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Додати нове" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Додати нову категорію" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Додати переклад" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Адміністрація" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Отримувати сповіщення" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Повідомити, якщо повідомлення про подію виставлено біля позначеної точки:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Надіслати" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Email адреса:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "введіть email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "введіть телефонний номер з кодом країни" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Отримувати сповіщення" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Оповіщення вже було" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Номер телефона:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Або позначте точку на карті для того щоб отримувати сповіщення про події в межах 20 км" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Якщо ви не можете знайти де ви знаходитесь, клацніть на потрібне місце на карті." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS стрічка (скопіюйте url внизу)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Виберіть місто" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Step 1: Виберіть місто чи місце розташування:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Step 2: Відправте сповіщення на:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Крок 3 (необов’язковий): Виберіть категорії" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Підтвердьте останній запит на сповіщення" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Ваше сповіщення надіслане!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Всі" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Дозволені" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Дозволені теги HTML: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Фрейми дозволені лише від: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Всі категорії" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "За весь час" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "та" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Підтвердити" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Підтверджено" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Підтверджені повідомлення" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Підтвердити це повідомлення" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Округлити" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Архів" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Архівовано" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "За збільшенням" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "в" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Автор" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Автореєстрація" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Сер. число звітів за день" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Очікування підтвердження" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Очікування перевірки" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Значок" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Значки" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Зображення значка" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Або ви можете завантажити своє власне зображення знака замість цього." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Пакунок значків" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Вибрати значок" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Блог" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Перегляд профілів" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Скасувати" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Категорії" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Категорія" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Фільтр категорій" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Категорія була " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Назва категорії" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Змінити інтервал дат" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Змінити пароль" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Змінити моє зображення" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Вибрати" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Вибрати точку даних для завантаження" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Або виберіть свій власний діапазон дат" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Вибрати тип поля" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Чисті URL" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Очистити" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Очистити карту" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Закрити" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "кластери" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Колір" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Коментар" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Коментарі" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Деталі коментаря" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Налаштування збережені!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Налаштувати" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Ви успішно підтвердили свою електронну адресу. Будь ласка, увійдіть нижче." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Ви успішно підтвердили свою електронну адресу! Адміністратор повинен схвалити ваш обліковий запис перед вашим входом" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Підтвердження електронною поштою не вдалося! Ви можете запитати нове підтвердження по електронній пошті нижче." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Контакти" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Код безпеки" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Ваша електронна пошта" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Повідомлення" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Ваше повідомлення вже надіслано!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Ваше Ім'я" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Ваш Номер Телефону" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Надіслати Повідомлення" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Тема повідомлення" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Авторські права ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Створити" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Створити/редагувати" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Створити" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Створити Новий Пароль" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Створити звіт" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Достовірність" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Поточний пароль" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Власні поля" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Інформація" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Дата" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(мм/дд/рррр)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Дата і час" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "день" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Деактивувати" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Київ, Україна" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Видалити" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Видалено" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Видаляє" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Видалення відключено" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Видалити останнє" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Видалити це повідомлення" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Видалити виділене" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Видалити СПАМ" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Демо" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Опис" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "За зменшенням" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Приклад: Україна, Київ, Майдан Незалежності" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Деталі" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Пряме повідомлення" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Відключено" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Відхилити" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Стягти повідомлення" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Завантажити" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Редагувати" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Змінити поля форми" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Редагувати звіт" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Ел. пошта" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Адреса еmail" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Налаштування сервера пошти" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Хост сервера пошти" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Пароль поштового сервера" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Порт поштового сервера" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Підтримка SSL поштовим сервером" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Тип поштового сервера" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Ім'я користувача поштового сервера" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "Ваши налаштування будуть зв'язані з цим Email" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "ля того щоб отримати повідомлення про події по Email, введіть нижче свій Email. Примітка, Email буде отримано" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Сервери можуть попросити повну адресу Email" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Пароль Email" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Найчастіші порти: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Приклади: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Приклади: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Увімкнути або вимкнути SSL підключення" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---ПОРОЖНЬО---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "до" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Помилка!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Приклад" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Україна" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Зовнішні програми" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Посилання на зовнішнє відео" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Фейсбук" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Стрічка" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Залиште вашу думку" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Будь ласка, дайте нам відгук з своїми враженнями, відправивши електронного листа на " + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Стрічки" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Стрічка вже була" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Елементи стрічки" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Назва стрічки" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL стрічки" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Невикористане поле" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Файл" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Ваш файл перевищує максимальний дозволений розмір." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Фільтри" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Фільтрувати звіти" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Фільтрувати звіти за" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Фільтрувати звіти, що містять" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Знайти" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Знайти місце" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Ім'я" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Примусовий запуск планувальника" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Забули пароль?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Форма" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Форми" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Опис форми" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Змінити цю форму" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Форму було" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Заголовок форми" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Від" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Повне ім'я" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "GeoLocation доступне" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Колір" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Коментарі" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Мітка" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Товщина риски" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Перейти" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Хэштег" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "було" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Як допомогти" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Приховане" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Сховати" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "сховати це повідомлення" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Головна" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Як повідомити" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ІД" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Використане, щоб ідентифікувати вас на сайті відносно інших користувачів." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Картинка" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Картинки" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Картинка/Ярлик" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Неактивне" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Вхідні" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Подія" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Події поблизу" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Місцезнаходження події" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Включити" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Включити категорії" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Включити власні поля" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Включити опис" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Включити максимальну кількість деталей" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Включити широту" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Включити інформацію про місцезнаходження" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Включити довготу" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Включити особисту інформацію" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Вхідне медіа" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Оцінка інформації" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Введіть точне місцезнаходження" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Ваш обліковий запис не має права, щоб повністю увійти сюди. Зв'яжіться з адміністратором." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "У відповідь на" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP адреса" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Це ваш профіль?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "елемент" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "елементи" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "деталі елемента" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Заголовок елемента" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Ключ" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Ключові слова" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML файл" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Відправити KMZ/KML файл" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "мова" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Останній" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Останній місяць" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Прізвище" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Останній рік" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Широта" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Шари" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Інші шари" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Шар було" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Назва шара" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "URL шара" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Лишити коментар" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Менше інформації" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Рівень" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Цей рівень був" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Назва рівня" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Обмежений" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Посилання" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Список" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Завантаження звітів" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Положення" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Положення" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Місто, Штат та/або країна" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Логін" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Обліковий запис успішно створено. Ви можете увійти зараз." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Підтвердження вже надіслано на вашу електронну адресу." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Обліковий запис створено. Він має бути схвалений адміністратором, аби ви могли увійти." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Електронна адреса не існує. Спробуйте іншу або створіть нову." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Клацніть постачальника вашого облікового запису" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Увійти з" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Електронна пошта та пароль" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Реєстрація" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Створити обліковий запис" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Дякуємо вам за реєстрацію о %1$s. Щоб підтвердити вашу електронну пошту, перейдіть на наступну URL: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Підтвердження реєстрації" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Новий користувач вже зареєструвався о %1$s. Для схвалення вашої реєстрації, будь ласка, перейдіть на наступну URL: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Схвалення нового користувача" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Ваш обліковий запис вже схвалено для %1$s. Для входу перейдіть за наступним посиланням: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Схвалений обліковий запис" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Створити обліковий запис зараз, щоб скористатися більшими можливостями на сайті." + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Довгота" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Карта " + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Виділити як прочитане" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Виділити як непрочитане" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Найбільший розмір файлу" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Медіа" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Meдia фільтр" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Учасники" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Управління вашим профілем" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Повідомлення" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Повідомлення" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Інформація про лист" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Повідомлення від нечислового джерела:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Мобільний" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Оновити" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Оновити дату" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "місяць" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Більше" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Більше інформації" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Чи містить Ushahidi декілька країн одночасно" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Ви повинні підтвердити вашу електронну пошту для доступу до цього використання. Якщо ви втратили ваш лист підтвердження, то ви можете запросити новий нижче." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Назва" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Сусідній звіт" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Нове" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Новини" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Стрічки новин" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Джерело новин" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Нова категорія" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Новий пароль" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Новий звіт" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Наступне" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Ні" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Нема реєстрацій для відображення." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Немає даних" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Жодне" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Зауваження" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Не підтверджені" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Не підтверджений" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Не обрано---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "не спам" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Не визначений" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Нема звітів" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Нема результатів" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Вимк." + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Офіційні та основні новини" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Увімк." + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Опція" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Опціонально" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Опції" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Організація" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Організації" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Опис організації" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email організації" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Організацію було" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Назва організації" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Телефон організації 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Телефон організації 1" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Сайт організації" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Початковий" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Початковий опис" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Початковий заголовок" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Інші USHAHIDI приклади" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Вихідні" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Вихідний" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Сторінка" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "Сторінки" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Опис сторінки" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Сторінку було" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Назва панелі сторінки" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Заголовок сторінки" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Батьківська категорія" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Пароль" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Введіть пароль знову" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Пароль успішно змінено. Увійдіть нижче." + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Забули пароль?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Новий пароль був відправлений на ваш Email." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Запам'ятати комп'ютер?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Минулий місяць" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Минулий рік" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Очікування" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "за" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Особиста інформація Опціонально." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Телефон" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Фотографії" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Зображення" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Зображення та відео" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Пошук по назві місця розташування, або залиште точку на карті для визначення точного місцеположення" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Програти" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Замітка" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Додатки" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Вебсайт додатку" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Публічний профіль" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "URL публічного профілю" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Показати" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Показати елемент" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Показати повідомлення" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Попереднє" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Приватний" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Колір профілю" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Профіль був збережений" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Швидка статистика" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Рейтинг" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Читати" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Отримати" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Отримати від" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Отримувати сповіщення" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Останні звіти" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Оновити стрічки новин" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Зареєстрована адреса" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "видалити" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Відповісти" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Звіт" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Звіти (на карті, перераховані у хронологічному порядку) " + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Оглядач" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Оглядачі" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Дата реєстрації оглядача" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email оглядача" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Ім'я оглядача" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Оглядач був" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "IP адреса оглядача" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Прізвище оглядача" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Рівень оглядача" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Рівні оглядача" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Телефон оглядача" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Звіти" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Переглянути" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Відправити" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Звіти від цього користувача" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Категорії" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Звіти" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Дата" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Опис" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Звіт буде збережений в CSV форматі" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Електронна пошта" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Можливості" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Знайти місцеположення біля вас" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Ім'я" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Прізвище" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Уточніть назву місцеположення" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Посилання на новини" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Додаткова інформація" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Завантажити фото" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Повернутися на сторінку звітів" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Вибрати місто" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Ваш звіт відправлено нашим співробітникам. При потребі ми обов'язково зв'яжемося з Вами" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Відправити новий звіт" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Час" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Часова шкала" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Заголовок звіту" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Посилання на відео" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Повідомити про подію" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Деталі звіту" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Відправивши СМС на" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Відправивши email на" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Відправивши в твіттер повідомлення з хештеґом" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Заповнивши цю форму" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "За використанням програми" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Ваш звіт було збережено" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Заголовок звіту" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Потрібно більше інформації" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Дізнатися про положення" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Обов’язково" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Вимоги" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Повторне підтвердження електронною поштою" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Переустановка" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Очистити усі фільтри" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Оновити пароль" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Отримати назви міст для вибраних країн" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Облікові записи управляються службою %s." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "У вас вже є обліковий запис, керований CrowdmapID! Спробуйте використати вашу пошту CrowdmapID та пароль для входу." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Роль" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Зберегти" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Збережений" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Зберегти і додати нове" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Зберегти і закрити" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Зберегти звіт" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Розклад" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Планувальник" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "День" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Година" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Логи планувальника" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Хвилина" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "День тижня" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Пошук" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Результати пошуку" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Захисний код" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Вибрати все" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Вибрати тип поля" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Вибрати тип форми" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Вибрати на карті" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Вибрати декілька" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Виберіть мінімум один елемент" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Вибрати тему" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Відправити" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Надіслати підтвердження" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Відправлення до" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Відправлено" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Відправлено" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Адреса сервера" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Тип сервера" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Служба" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Логін користувача служби" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "ID користувача служби" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Розділити" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Спільна інформація" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Обмін вже був" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Сумісно" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Коротша карта" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Показати" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Показати всі" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Показати повідомлення" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Показані звіти від %1$s до %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Сайт" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "email сайта" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "URL Сайта" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Менша карта" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "СМС" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "На жаль, ви не маєте жодних значків." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Джерело" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Назва джерела" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Сортувати" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Сортувати за" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "URL джерела" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "СПАМ" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL підтримка?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Від" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Крок" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Відправити звіт" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Поданий від %1$s через %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Відправити через SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Відправити SMS для" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "на Вашому телефоні" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Успішно!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Успішно імпортировано" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Прізвище" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Огляд" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Система" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Вища карта" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP порт" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Теми" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Тема Ushahidi за замовчанням" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Налаштування теми" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Цей" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Сьогодні" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "В цьому місяці" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Цього тижня" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "В цьому році" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Це ваш профіль." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "час" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Заголовок" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "до" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Сьогодні" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Сьогодні в" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Знак" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Всього звітів" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Перекладено" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Перекладений опис" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Перекладений заголовок" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Перекласти на" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Переклад" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Переклад було збережено" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Перевірено" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Тип" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Твіттер" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Неможливо надіслати пошту." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Звіти без категорій" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "не прочитано" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Не підтверджено" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Оновити стрічки" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Завантажити" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Переглянути наш звіт вивантаживши посібники: -" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Вивантажити інструкцію XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Вивантажити інструкцію CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Файли для завантаження" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Передати звіти на сайт" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Власне поле стовпців повинно мати свій form_id докладений до них, наприклад, власне поле Тест, на типовій формі, ідентифікатор якої є 1, буде Тест-1. Під час імпорту власних полів форми, переконайтеся, що" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "У даній формі, ви можете імпортувати події до движка Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Звіти мають бути вивантажені у форматі CSV або XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Якщо ID події вже існує в БД, то запис у CSV/XML файлі не буде принятий." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Повинні міститися як мінімум заголовок і дата події" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Якщо стовпці широти і довготи не надані, то місце розташування буде прив'язана до місцевості за допомогою Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Якщо імпорт додаткової інформації, тобто особистої інформації та / або власних полів форми" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Принаймні одне з полів особистої інформації (ім'я, прізвище, адресу електронної пошти) повинне існувати. Порожні рядки не будуть імпортовані" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Ваші дані для випадаючого списку полів, перемикачів і прапорців збігаються з параметрами, наданими для власного поля на вашому екземплярі" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Декілька параметрів мають бути відокремлені комами, наприклад, якщо ваш вибір фруктів - яблука, манго і виноград, то ваші записи для цього повинні бути \"яблука, манго, виноград\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Значення полів дати є у наступному форматі: мм/дд/рррр, тобто 3 жовтня 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Приклад CSV звіту" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,ЗАГОЛОВОК ПОДІЇ, ДАТА ПОДІЇ,МІСЦЕПОЛОЖЕННЯ,ОПИС,КАТЕГОРІЯ,ПІДТВЕРДЖЕНИЙ,ПЕРЕВІРЕНИЙ
\n\"1\",\"ПОЖЕЖА В ОШЕ\",\"2010-06-10 01:06:00\",\"ОШ\",\"ТРИ ВИПАДКИ БУЛИ ПІДТВЕРДЖЕНІ УРЯДОМ\",\"СМЕРТІ, ГРОМАДЯНСЬКІ, \",ТАК,НІ" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"БІЖЕНЦІ\",\"2010-06-11 10:10:00\",\"ЖАЛАЛАБАД\",\"БІЖЕНЦІ ПОВСЮДУ\",\"ДОПОМОГА, СМЕРТІ\",ТАК,ТАК" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Завантаження успішно завершене" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Вивантажити Відео" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "URL" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Користувач" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Логін" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Адміністратор Ushahidi" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Підтвердження" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Перевірено" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Перевірені звіти" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Перевірити" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Перевірити цей звіт" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Версія" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "через" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Відео" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Показати" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Покази" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Показати ВСЕ" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Показати всі стрічки" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Показати всі звіти" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Показати елементи" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Дивитися більше" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Переглянути публічний профіль" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Показати звіти" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Показати звіт" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Переглянути відео" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Видимий" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Очікування підтвердження" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Очікування перевірки" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Ширша карта" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Веб-форма" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Веб" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Вага" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Так" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Вчора" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Ваша дошка" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Ваш файл" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Збільшити" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Зменшити" diff --git a/application/i18n/po/po-uk_UA/upgrade.po b/application/i18n/po/po-uk_UA/upgrade.po new file mode 100644 index 0000000000..d4900e7ab2 --- /dev/null +++ b/application/i18n/po/po-uk_UA/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Андрій Бандура , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-29 13:29+0000\n" +"Last-Translator: Андрій Бандура \n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/ushahidi/ushahidi-v2/language/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Неправильні дані. Введіть 0 як Ні або 1 як Так" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Автоматичне оновлення" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Доступні оновлення" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Продовжити" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Оновити" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Зараз відбудеться оновлення бази даних з версії" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "до найновішої версії бази даних" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Натисніть на кнопку \"Оновити\" і зачекайте" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Якщо ви хочете зробити резервну копію бази даних перед оновленням, відзначте галочкою прапорець нижче" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Зробити резервну копію бази даних перед оновленням (Рекомендується)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Оновлення бази даних Ushahidi " + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi вже оновлено! Перед продовження вам потрібно оновити вашу базу даних до найновішої версії (%s)." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Версія вашої бази даних найновіша." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Оновлення перервалося" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Ручне оновлення" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Стан оновлення Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Як оновити Ushahidi вручну" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "Крок 1:: Завантажте останню версію ushahidi з http://download.ushahidi.com" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "Крок 2:: В залежності від ОС вебсервера, виберіть потрібний канал передачі (i.e: telnet, ftp, ssh) для входа на веб сервер и повністю замініть вміст останньою версією Ushahidi. Крім:" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "Крок 4:: Натисніть на кнопку \"\"Продовжити\": щоб оновити таблиці" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr " Крок 3: Перегляньте sql теку. Вручну виконайте оновлення - . Sql файлу, з поточною встановленою версією бази даних до останнього оновлення sql файлу." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Для автоматичного оновлення натисніть нижче" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Для автоматичного оновлення натисніть кнопку нижче." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "В даний час ви використовуєте Ushahidi v%1$s з версією бази даних %2$d, що працює на %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Оновлюється" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Щоб продовжити просте оновлення серверу FTP, на якому розміщений ваш веб-сайт, потрібна наступна інформація." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP сервер :Наприклад: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP пароль:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP ім'я користувача:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "У вас остання версія Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Вам не потрібно оновлювати." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Версія бази даних: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Увага: Версія програми в version.php і базі даних не збігається." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Увага: Версія програми в version.php і базі даних не збігається." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "База даних:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "БЕТА!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Завантажується остання версія ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Файл журналу" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Успішно завантажено. Розпаковуються…" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Завантаження провалилося." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Успішно розпаковано. Копіюються файли…" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Розпакування провалилося." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Успішно скопійовано. Оновлюється база даних…" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Копіювання файлів провалилося." + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Успішне резервування та оновлення бази даних." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Резервування бази даних провалилося." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Успішне оновлення бази даних." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Видаляються завантажені файли…" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "УСПІШНЕ ОНОВЛЕННЯ. Перегляньте журнал" diff --git a/application/i18n/po/po-ur_PK/alerts.po b/application/i18n/po/po-ur_PK/alerts.po new file mode 100644 index 0000000000..8cfb0e05e5 --- /dev/null +++ b/application/i18n/po/po-ur_PK/alerts.po @@ -0,0 +1,229 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 05:58+0000\n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-ur_PK/auth.po b/application/i18n/po/po-ur_PK/auth.po new file mode 100644 index 0000000000..c8dffbcaf4 --- /dev/null +++ b/application/i18n/po/po-ur_PK/auth.po @@ -0,0 +1,250 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:00+0000\n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-ur_PK/bug.po b/application/i18n/po/po-ur_PK/bug.po new file mode 100644 index 0000000000..d4da560b97 --- /dev/null +++ b/application/i18n/po/po-ur_PK/bug.po @@ -0,0 +1,65 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2012-06-01 06:01+0000\n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-ur_PK/category.po b/application/i18n/po/po-ur_PK/category.po new file mode 100644 index 0000000000..d49bacc783 --- /dev/null +++ b/application/i18n/po/po-ur_PK/category.po @@ -0,0 +1,89 @@ +#. extracted from en_US/category.php, ur_PK/category.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "The image field does not appear to contain a valid image. The only accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/comments.po b/application/i18n/po/po-ur_PK/comments.po new file mode 100644 index 0000000000..259d24a475 --- /dev/null +++ b/application/i18n/po/po-ur_PK/comments.po @@ -0,0 +1,59 @@ +#. extracted from en_US/comments.php, ur_PK/comments.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/contact.po b/application/i18n/po/po-ur_PK/contact.po new file mode 100644 index 0000000000..b8d35f5343 --- /dev/null +++ b/application/i18n/po/po-ur_PK/contact.po @@ -0,0 +1,74 @@ +#. extracted from en_US/contact.php, ur_PK/contact.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/core.po b/application/i18n/po/po-ur_PK/core.po new file mode 100644 index 0000000000..32124eb848 --- /dev/null +++ b/application/i18n/po/po-ur_PK/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Robbie MacKay , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-04-18 21:09+0000\n" +"Last-Translator: Robbie MacKay \n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "rtl" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-ur_PK/database.po b/application/i18n/po/po-ur_PK/database.po new file mode 100644 index 0000000000..4916e9cd76 --- /dev/null +++ b/application/i18n/po/po-ur_PK/database.po @@ -0,0 +1,24 @@ +#. extracted from en_US/database.php, ur_PK/database.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "Table \"%s\" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/datetime.po b/application/i18n/po/po-ur_PK/datetime.po new file mode 100644 index 0000000000..6096f96af5 --- /dev/null +++ b/application/i18n/po/po-ur_PK/datetime.po @@ -0,0 +1,214 @@ +#. extracted from en_US/datetime.php, ur_PK/datetime.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/feeds.po b/application/i18n/po/po-ur_PK/feeds.po new file mode 100644 index 0000000000..92505286a8 --- /dev/null +++ b/application/i18n/po/po-ur_PK/feeds.po @@ -0,0 +1,49 @@ +#. extracted from en_US/feeds.php, ur_PK/feeds.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "The feed name field must be at least 3 and no more \n\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/footer.po b/application/i18n/po/po-ur_PK/footer.po new file mode 100644 index 0000000000..3ee9d45cb7 --- /dev/null +++ b/application/i18n/po/po-ur_PK/footer.po @@ -0,0 +1,19 @@ +#. extracted from en_US/footer.php, ur_PK/footer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/form.po b/application/i18n/po/po-ur_PK/form.po new file mode 100644 index 0000000000..231bb6ab69 --- /dev/null +++ b/application/i18n/po/po-ur_PK/form.po @@ -0,0 +1,104 @@ +#. extracted from en_US/form.php, ur_PK/form.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/imap.po b/application/i18n/po/po-ur_PK/imap.po new file mode 100644 index 0000000000..37ccc4cca7 --- /dev/null +++ b/application/i18n/po/po-ur_PK/imap.po @@ -0,0 +1,24 @@ +#. extracted from en_US/imap.php, ur_PK/imap.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/installer.po b/application/i18n/po/po-ur_PK/installer.po new file mode 100644 index 0000000000..0c37c41921 --- /dev/null +++ b/application/i18n/po/po-ur_PK/installer.po @@ -0,0 +1,354 @@ +#. extracted from en_US/installer.php, ur_PK/installer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "If you are running Ushahidi on your own computer, this will more than likely be \"localhost\". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "For more information, please check out this article on the wiki that talks about databases in more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "Anyone can get an api key. Get yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "Simple and fast. All you need is your website's root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "Ushahidi works equally well with any of these three mapping providers: Google, Bing or Open Street Map. Choose the one that has the most detail in your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "When your site visitors sign up for email alerts, they will receive emails from this address. This email address does not have to be the same as the Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "

Here are instructions for changing file permissions:

\n " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "For the installation process, please have the following bits of information on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "Normally you would not change the table prefix. However, if you want to run multiple Ushahidi installations from a single database, you can do that by changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/layer.po b/application/i18n/po/po-ur_PK/layer.po new file mode 100644 index 0000000000..306d9278b8 --- /dev/null +++ b/application/i18n/po/po-ur_PK/layer.po @@ -0,0 +1,59 @@ +#. extracted from en_US/layer.php, ur_PK/layer.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "The file field does not appear to contain a valid file. The only accepted formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/libraries.po b/application/i18n/po/po-ur_PK/libraries.po new file mode 100644 index 0000000000..7360043709 --- /dev/null +++ b/application/i18n/po/po-ur_PK/libraries.po @@ -0,0 +1,109 @@ +#. extracted from en_US/libraries.php, ur_PK/libraries.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "The API library: %s for the %s class could not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "Error while executing fopen sending method!
Please check whether PHP has OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/maintenance.po b/application/i18n/po/po-ur_PK/maintenance.po new file mode 100644 index 0000000000..5a2536d437 --- /dev/null +++ b/application/i18n/po/po-ur_PK/maintenance.po @@ -0,0 +1,19 @@ +#. extracted from en_US/maintenance.php, ur_PK/maintenance.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "Sorry, our site is currently down for maintenance. Please try again in a few minutes." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/message.po b/application/i18n/po/po-ur_PK/message.po new file mode 100644 index 0000000000..1606a7ddb3 --- /dev/null +++ b/application/i18n/po/po-ur_PK/message.po @@ -0,0 +1,59 @@ +#. extracted from en_US/message.php, ur_PK/message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/mhi.po b/application/i18n/po/po-ur_PK/mhi.po new file mode 100644 index 0000000000..8e0d6ae621 --- /dev/null +++ b/application/i18n/po/po-ur_PK/mhi.po @@ -0,0 +1,49 @@ +#. extracted from en_US/mhi.php, ur_PK/mhi.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/notifications.po b/application/i18n/po/po-ur_PK/notifications.po new file mode 100644 index 0000000000..4a12a92f57 --- /dev/null +++ b/application/i18n/po/po-ur_PK/notifications.po @@ -0,0 +1,89 @@ +#. extracted from en_US/notifications.php, ur_PK/notifications.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/page.po b/application/i18n/po/po-ur_PK/page.po new file mode 100644 index 0000000000..02f9f454bc --- /dev/null +++ b/application/i18n/po/po-ur_PK/page.po @@ -0,0 +1,34 @@ +#. extracted from en_US/page.php, ur_PK/page.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/permissions.po b/application/i18n/po/po-ur_PK/permissions.po new file mode 100644 index 0000000000..7ae17a4e0c --- /dev/null +++ b/application/i18n/po/po-ur_PK/permissions.po @@ -0,0 +1,110 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-08-15 05:43+0000\n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-ur_PK/private_message.po b/application/i18n/po/po-ur_PK/private_message.po new file mode 100644 index 0000000000..b6d4e1e3d1 --- /dev/null +++ b/application/i18n/po/po-ur_PK/private_message.po @@ -0,0 +1,44 @@ +#. extracted from en_US/private_message.php, ur_PK/private_message.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/report.po b/application/i18n/po/po-ur_PK/report.po new file mode 100644 index 0000000000..67e166597a --- /dev/null +++ b/application/i18n/po/po-ur_PK/report.po @@ -0,0 +1,391 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-ur_PK/reporters.po b/application/i18n/po/po-ur_PK/reporters.po new file mode 100644 index 0000000000..2393fad977 --- /dev/null +++ b/application/i18n/po/po-ur_PK/reporters.po @@ -0,0 +1,64 @@ +#. extracted from en_US/reporters.php, ur_PK/reporters.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "The latitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "The longitude field is required. Please click on the map to pinpoint a location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/reports.po b/application/i18n/po/po-ur_PK/reports.po new file mode 100644 index 0000000000..d94103fcac --- /dev/null +++ b/application/i18n/po/po-ur_PK/reports.po @@ -0,0 +1,34 @@ +#. extracted from en_US/reports.php, ur_PK/reports.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/roles.po b/application/i18n/po/po-ur_PK/roles.po new file mode 100644 index 0000000000..49eebe8b97 --- /dev/null +++ b/application/i18n/po/po-ur_PK/roles.po @@ -0,0 +1,59 @@ +#. extracted from en_US/roles.php, ur_PK/roles.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/settings.po b/application/i18n/po/po-ur_PK/settings.po new file mode 100644 index 0000000000..e95b1cf209 --- /dev/null +++ b/application/i18n/po/po-ur_PK/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-ur_PK/sharing.po b/application/i18n/po/po-ur_PK/sharing.po new file mode 100644 index 0000000000..00f7093bfd --- /dev/null +++ b/application/i18n/po/po-ur_PK/sharing.po @@ -0,0 +1,69 @@ +#. extracted from en_US/sharing.php, ur_PK/sharing.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/stats.po b/application/i18n/po/po-ur_PK/stats.po new file mode 100644 index 0000000000..84dc8a2882 --- /dev/null +++ b/application/i18n/po/po-ur_PK/stats.po @@ -0,0 +1,184 @@ +#. extracted from en_US/stats.php, ur_PK/stats.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "This is the statistics section and will contain a general description here soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "The number of individuals coming to your deployment. Unique visitors are determined using cookies. Visitors that do not have cookies enabled will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview." +msgstr "" + diff --git a/application/i18n/po/po-ur_PK/tooltips.po b/application/i18n/po/po-ur_PK/tooltips.po new file mode 100644 index 0000000000..4749ca42da --- /dev/null +++ b/application/i18n/po/po-ur_PK/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-ur_PK/ui_admin.po b/application/i18n/po/po-ur_PK/ui_admin.po new file mode 100644 index 0000000000..325bf65653 --- /dev/null +++ b/application/i18n/po/po-ur_PK/ui_admin.po @@ -0,0 +1,1655 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2012-06-07 02:49+0000\n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-ur_PK/ui_main.po b/application/i18n/po/po-ur_PK/ui_main.po new file mode 100644 index 0000000000..e51f73bdd2 --- /dev/null +++ b/application/i18n/po/po-ur_PK/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Urdu (Pakistan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "متعلق " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "الرٹ حاصل کریں" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "فلٹرز" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "ہم سے رابطہ" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "ائے دیں" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "سب کچھ" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "صفحۂ اوّل" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "تصاویر" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "خبریں" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "remove" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr " رپورٹس" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "رپورٹ بھیجیں " + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr " رپورٹس" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-ur_PK/upgrade.po b/application/i18n/po/po-ur_PK/upgrade.po new file mode 100644 index 0000000000..aa677a7152 --- /dev/null +++ b/application/i18n/po/po-ur_PK/upgrade.po @@ -0,0 +1,264 @@ +#. extracted from en_US/upgrade.php, ur_PK/upgrade.php# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi-Localizations\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-09-20 22:18+0000\n" +"PO-Revision-Date: 2012-09-20 22:18+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: ushahidi-i18n-manager\n" +"Language: ur_PK\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "Backup database before upgrade? (Highly recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "Ushahidi has been updated! Before you continue, you need to update your database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "The instructions below detail how to manually upgrade your Ushahidi deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it's recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "Step 4: Click on the \"Continue\" button to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "You are currently using Ushahidi v%s with database version %d running on %s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded " +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" + diff --git a/application/i18n/po/po-vi/alerts.po b/application/i18n/po/po-vi/alerts.po new file mode 100644 index 0000000000..fcf20cfcb0 --- /dev/null +++ b/application/i18n/po/po-vi/alerts.po @@ -0,0 +1,231 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "Phần địa chỉ email đã được đăng ký và nhận cảnh báo từ địa điểm đó." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm cảnh báo nằm trong quốc gia %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Phần khung thông tin di động dường như không chứa các chữ số hợp với yêu cầu." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Số di động này đã được đăng ký và nhận thông tin từ địa điểm đó." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Phần khung thông tin về điện thoại di động chứa dữ liệu không hợp lệ. Xin vui lòng nhập vào số liệu kèm theo mã quốc gia." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Bạn phải điền vào hoặc phần số di động của bạn hoặc địa chỉ email" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Khung thông tin điện thoại di động cần được đánh dấu chọn." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Bạn vẫn chưa thiết lập bán kính hợp lệ trên bản đồ." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Bạn vẫn chưa chọn bán kính trên bản đồ." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Bạn vẫn chưa chỉnh cảnh báo về người gửi." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Bạn đã đăng ký phần cảnh báo cho các phần mục sau" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Mã đã được xác nhận trước đó!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Không tìm thấy mã xác nhận! Xin vui lòng xác nhận rằng bạn đã điền vào đúng đường dẫn liên kết." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Mã của bạn không được xác nhận chính xác. Bạn sẽ nhận được cảnh báo về vấn đề này ngay lập tức." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Để xác nhận yêu cầu về cảnh báo của bạn, vui lòng truy cập" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Quay trở về trang cảnh báo để tạo các cảnh báo khác" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Yêu cầu nhận cảnh báo bằng email của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Xin điền vào mã xác nhận từ email mà bạn nhận được ở phần bên dưới:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Yêu cầu gửi email cảnh báo của bạn VẪN CHƯA được lưu!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Yêu cầu nhận email cảnh báo của bạn đã được lưu!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Hiện hệ thống không thể xử lý yêu cầu xác nhận của bạn!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Yêu cầu nhận cảnh báo bằng điện thoại của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Xin điền vào mã xác nhận từ SMS mà bạn nhận được trên điện thoại ở phần bên dưới:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Yêu cầu gửi tin nhắn cảnh báo đến điện thoại của bạn VẪN CHƯA được lưu!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Yêu cầu nhận tin nhắn cảnh báo trên điện thoại của bạn đã được lưu!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Việc triển khai này vẫn chưa được thiết lập chính xác trong việc xử lý các cảnh báo" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Bạn nhận được email này vì bạn đã đăng ký theo dõi việc nhận các cảnh báo. Nếu bạn không muốn nhận các cảnh báo trong thời gian tới hãy truy cập" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Bạn sẽ không còn nhận các cảnh báo từ" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Hiện chúng tôi không thể gỡ bỏ chế độ đăng ký từ bạn. Xin vui lòng xác nhận là bạn đã truy cập vào liên kết đúng cú pháp." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "cảnh báo - xác nhận" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Bạn sẽ không còn nhận được các cảnh báo về địa điểm này cho tới khi bạn xác nhận yêu cầu của mình." diff --git a/application/i18n/po/po-vi/auth.po b/application/i18n/po/po-vi/auth.po new file mode 100644 index 0000000000..8345d51398 --- /dev/null +++ b/application/i18n/po/po-vi/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "Email mà bạn cung cấp không phải là một địa chỉ email hợp lệ." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "Rất tiếc, một người dùng khác đã đăng ký tài khoản với tên của địa chỉ email này." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "Phần khung thông tin email không được để trống." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Phần khung thông tin tên người dùng không được chứa các ký tự vốn không được cho phép." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Phần khung thông tin mật khẩu phải có ít nhất 8 ký tự về độ dài." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Xin vui lòng kiểm tra lại phần thông tin về email và mật khẩu bạn đã điền vào có hợp lệ hay không." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Vui lòng điền vào phần mật khẩu mà bạn đã cung cấp ở hai phần phía trước." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Phần khung thông tin mật khẩu không được để trống." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Phần mật khẩu hiện tại bạn đã điền vào cho tài khoản của mình không đúng. Vui lòng thử lại lần nữa." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Phần mật khẩu không được để trống." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Xảy ra lỗi khi bạn đăng nhập." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Phần mật khẩu không được để trống." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Hệ thống máy chủ cho việc xác nhận hiện đang ngừng phục vụ. Xin vui lòng thử lại sau." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Phần xác nhận mật khẩu phải có mật khẩu trùng với phần mật khẩu mà bạn đã cung cấp." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Email mà bạn cung cấp không phải là một địa chỉ email hợp lệ." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Rất tiếc, chúng tôi hiện không có địa chỉ email của bạn" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Phần khung thông tin email không được để trống." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Chỉ có người mới có thể hiệu chỉnh các Quản Trị Viên Đứng Đầu khác hoặc nâng cấp độ người dùng thông thường thành Quản Trị Viên." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Định dạng về quyền phân phối dạng người dùng không hợp lệ." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Phần khung thông tin vai trò phải có ít nhất 5 ký tự hoặc tối đa 30 ký tự về độ dài." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Bạn phải xác định ít nhất một vai trò của người dùng." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Bạn phải chọn hoặc vai trò Quản Trị Viên hoặc Người Dùng thông thường." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Phần dữ liệu về quên mật khẩu không hợp lệ" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Đã yêu cầu về việc quên mật khẩu" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Vai trò người dùng quản trị không thể được hiệu chỉnh." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Phần thông tin về đường dẫn liên kết đến hồ sơ công cộng chỉ được chứa các ký tự số và chữ." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Rất tiếc, đường dẫn liên kết đến hồ sơ cá nhân này hiện đã được đăng ký cho người khác." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Phần khung thông tin liên kết đến hồ sơ cá nhân phải có ít nhất 2 ký tự hoặc tối đa 100 ký tự về độ dài." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Xin vui lòng kiểm tra phần thông tin đường dẫn liên kết đến hồ sơ công cộng là hợp lệ." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Phần khung thông tin đường dẫn liên kết đến hồ sơ công cộng không được để trống." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa người dùng này không?" diff --git a/application/i18n/po/po-vi/bug.po b/application/i18n/po/po-vi/bug.po new file mode 100644 index 0000000000..b5cb778c06 --- /dev/null +++ b/application/i18n/po/po-vi/bug.po @@ -0,0 +1,67 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Vui lòng điền vào mã an ninh." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Phần thông tin về địa chỉ email không chứa địa chỉ email hợp lệ?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải chứa ít nhất 4 ký tự và tối đa 64 ký tự về độ dài." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần khung thông tin email yêu cầu phần lựa chọn phải được đánh dấu chọn." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "Phần khung thông tin về lỗi không được để trống." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "Phần khung thông tin về chủ đề không được để trống." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "Phần khung thông tin về tên không được để trống." diff --git a/application/i18n/po/po-vi/category.po b/application/i18n/po/po-vi/category.po new file mode 100644 index 0000000000..bd5610e4a8 --- /dev/null +++ b/application/i18n/po/po-vi/category.po @@ -0,0 +1,94 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 11:09+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "Phần khung thông tin màu sắc phải chứa chính xác 6 ký tự về độ dài." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "Phần khung thông tin về màu sắc không được để trống." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "Phần khung thông tin về mô tả không được để trống." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Phần khung thông tin về hỉnh ảnh chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "Phần khung thông tin về hỉnh ảnh không chứa định dạng tập tin hợp lệ" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Phần khung thông tin tiêu đề phải chứa ít nhất 3 ký tự và tối đa 80 ký tự về độ dài." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Phần khung thông tin về tiêu đề không được để trống." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Bạn không thể giảm cấp phân loại của phần phân loại khi phần đó đã được giảm cấp." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Phân loại gốc không tồn tại." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Phần khung thông tin về phân loại gốc phải ở dạng số." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Phần khung thông tin về phân loại gốc phải không thể mang thuộc tính là phân loại đặc biệt" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Phần khung thông tin về thư mục gốc không được để trống." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Phần phân loại và phân loại gốc không được phép ở cùng dạng." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Phân loại đặc biệt không được phép mang thuộc tính là phân loại giảm cấp." diff --git a/application/i18n/po/po-vi/comments.po b/application/i18n/po/po-vi/comments.po new file mode 100644 index 0000000000..a5c820e49b --- /dev/null +++ b/application/i18n/po/po-vi/comments.po @@ -0,0 +1,62 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 12:14+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "Vui lòng điền vào mã an ninh." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "Bạn đã điền vào sai mã an ninh." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Phần khung thông tin về bình luận không được để trống." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn." diff --git a/application/i18n/po/po-vi/contact.po b/application/i18n/po/po-vi/contact.po new file mode 100644 index 0000000000..0464016bff --- /dev/null +++ b/application/i18n/po/po-vi/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 14:39+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Vui lòng điền vào mã an ninh." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Phần nội dung tin nhắn không được để trống." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Phần khung thông tin về chủ đề không được để trống." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Xảy ra lỗi khi gửi đi tin nhắn của bạn." diff --git a/application/i18n/po/po-vi/core.po b/application/i18n/po/po-vi/core.po new file mode 100644 index 0000000000..67283d6b1c --- /dev/null +++ b/application/i18n/po/po-vi/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-07-09 14:46+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "tập tin cấu hình" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "trình điều khiển" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "driver" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "The %s driver cho phần thư viện %s phải mang tính hoàn thiện cho phần giao diện %s." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Không tìm thấy driver %s sử dụng cho thư viện %s." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Bạn có thể truy cập vào trang chủ hoặc try again." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Không thể hoàn tất việc thực thi yêu cầu" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "trình giúp đỡ" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Loại tập tin được yêu cầu, .%s, không được phép xuất hiện trong phần xem tập tin cấu hình của bạn." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Phương thức %s không hợp lệ được gọi trong %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Thuộc tính %s không tồn tại trong class %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "thư viện" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Thư mục chứa tập tin nhật trình không thể ghi được dữ liệu: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "mô hình" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi không thể xác định được trình điều khiển để xử lý yêu cầu này: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Xin vui lòng thiết đặt route mặc định trong phần config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Trang mà bạn yêu cầu, %s, không được tìm thấy." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Gửi báo cáo về vấn đề này đến Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Phần yêu cầu %s, %s, không được tìm thấy." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Đã tải trong vòng {execution_time} giây, sử dụng {memory_usage} bộ nhớ. Được tạo bởi Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Chỉ có duy nhất một yêu cầu được thực hiện cho mỗi tiến trình trong mỗi trang." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Uncaught %s: %s trong tập tin %s trên dòng %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "xem" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Bạn phải thiết đặc chức năng xem tên tập tin trước khi gọi phần render." diff --git a/application/i18n/po/po-vi/database.po b/application/i18n/po/po-vi/database.po new file mode 100644 index 0000000000..0ca1d08486 --- /dev/null +++ b/application/i18n/po/po-vi/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 14:47+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Lỗi cơ sở dữ liệu: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Không tìm thấy bảng \"%s\" trong cơ sở dữ liệu. Hãy chắc chắn rằng bạn đang sử dụng phiên bản mới nhất của cơ sở dữ liệu dành cho phiên bản Ushahidi này." diff --git a/application/i18n/po/po-vi/datetime.po b/application/i18n/po/po-vi/datetime.po new file mode 100644 index 0000000000..6990e186fd --- /dev/null +++ b/application/i18n/po/po-vi/datetime.po @@ -0,0 +1,217 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 14:51+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "sáng" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "T6" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Thứ sáu" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "T2" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Thứ hai" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "tối" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "T7" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Thứ bảy" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "CN" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Chủ nhật" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "T5" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Thứ năm" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "T3" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Thứ ba" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "T4" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "Thứ tư" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Th1" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "Tháng một" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Th2" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "Tháng hai" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Th3" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "Tháng ba" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Th4" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "Tháng tư" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Th5" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "Tháng năm" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Th6" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "Tháng sáu" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Th7" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "Tháng bảy" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Th8" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Tháng tám" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Th9" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "Tháng chín" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Th10" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "Tháng mười" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Th11" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "Tháng mười một" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Th12" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "Tháng mười hai" diff --git a/application/i18n/po/po-vi/feeds.po b/application/i18n/po/po-vi/feeds.po new file mode 100644 index 0000000000..b594234fc2 --- /dev/null +++ b/application/i18n/po/po-vi/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 14:57+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "NGÀY THÁNG" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Phần khung thông tin tên feed phải có ít nhất 3 ký tự \n\t\t\ttối đa 70 ký tự về độ dài." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "Vui lòng điền vào tên của feed." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "Vui lòng điền vào đường dẫn liên kết của feed." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "NGUỒN" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Tiêu đề" diff --git a/application/i18n/po/po-vi/footer.po b/application/i18n/po/po-vi/footer.po new file mode 100644 index 0000000000..50103d9346 --- /dev/null +++ b/application/i18n/po/po-vi/footer.po @@ -0,0 +1,22 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 14:57+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl hiện chưa được cài đặt trên hệ thống này." diff --git a/application/i18n/po/po-vi/form.po b/application/i18n/po/po-vi/form.po new file mode 100644 index 0000000000..f24884a62d --- /dev/null +++ b/application/i18n/po/po-vi/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 15:06+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Giá trị mặc định bạn cung cấp cho phần khung thông tin này là không hợp lệ." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự hoặc tối đa 200 ký tự về độ dài." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "Xin điền vào giá trị của không thông tin về chiều cao trong khoảng 0 đến 50." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "Bạn vừa điền vào một giá trị không hợp lệ cho khung thông tin ngày tháng." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin ngày tháng." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự hoặc tối đa 100 ký tự về độ dài." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "Vui lòng điền vào khung thông tin tên." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Phần khung thông tin về tên mà bạn vừa điền vào đã có trong mẫu đơn này. Vui lòng điền vào một phần khác." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "Bạn vừa điền vào một giá trị không hợp lệ cho khung thông tin được yêu cầu." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin được yêu cầu." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "Chọn một loại khung thông tin hợp lệ." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Xin vui lòng chọn một loại khung thông tin." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Xin điền vào giá trị của khung thông tin về độ rộng trong khoảng 0 đến 300." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Xin điền vào mô tả về mẫu đơn." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Không thể xóa mẫu đơn mặc định." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Phần khung thông tin tên của mẫu đơn phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Vui lòng điền vào tên của mẫu đơn." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Một mẫu đơn với tiêu đề như thế đã tồn tại. Vui lòng chọn một phần khác." diff --git a/application/i18n/po/po-vi/imap.po b/application/i18n/po/po-vi/imap.po new file mode 100644 index 0000000000..11e1292a50 --- /dev/null +++ b/application/i18n/po/po-vi/imap.po @@ -0,0 +1,27 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-09 15:07+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Không thể mở luồng dữ liệu dạng IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Dịch vụ email này không được hỗ trợ." diff --git a/application/i18n/po/po-vi/installer.po b/application/i18n/po/po-vi/installer.po new file mode 100644 index 0000000000..aa44b10a1d --- /dev/null +++ b/application/i18n/po/po-vi/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 08:46+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Đường dẫn gốc" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Cơ sở dữ liệu" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Host của cơ sở dữ liệu" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Nếu bạn thực thi Ushahidi từ chính máy tính của bạn, điều này có nghĩa rằng đây là một \"localhost\". Nếu bạn thực thi Ushahidi từ web server, bạn sẽ nhận được thông tin về host của bạn từ nhà cung cấp dịch vụ web hosting." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Tên cơ sở dữ liệu" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Tên của cơ sở dữ liệu mà bạn muốn Ushahidi được thực thi trong đó" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Để biết thêm thông tin, vui lòng truy cập phần đề mục này trên hệ thống wiki có bàn về cơ sở dữ liệu với đầy đủ thông tin chi tiết." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Ngôn ngữ mặc định (địa phương)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Mỗi phần phát triển của Ushahidi đi kèm theo đó là các gói ngôn ngữ ứng với từng quốc gia sở tại. Bạn cũng có thể thêm vào phần dịch của riêng bạn." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Vô hiệu hóa" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "Bật" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "Được hiển thị dưới đây là thông tin tóm tắt về các lỗi mà hệ thống gặp phải" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Địa điểm trên máy chủ của bạn nơi đặt các tập tin từ Ushahidi. Hệ thống sẽ tự động xác định giá trị này, hãy kiểm tra xem giá trị này có đúng và hợp lệ hay không. Nếu phần thông tin này bị để trống, thì cũng đừng quá lo lắng, điều này có nghĩa rằng Ushahidi đã được cài đặt ở thư mục gốc." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Đã hoàn tất" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Tổng quan" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Bất kỳ ai cũng có thể nhận được khóa api này. Bạn cũng có thể làm điều đó ngay bây giờ" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Quay trở lại" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "CÀI ĐẶT NÂNG CAO" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Nhận tất cả các thiết lập cơ bản thông qua quá trình bao gồm 5 bước này. Bao gồm máy chủ, bản đồ, tên trang và chi tiết về các liên hệ cơ bản." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "CÀI ĐẶT CƠ BẢN" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Đơn giản và nhanh chóng. Mọi điều bạn cần là một thư mục gốc của website do bạn lập cùng thông tin về cơ sở dữ liệu mà bạn thiết lập. Chọn tùy chọn này nếu bạn muốn trình cài đặt nhanh chóng hơn theo kiểu tự động, dĩ nhiên là bạn hoàn toàn có đầy đủ quyền thiết lập và chỉnh sửa bất cứ khi nào sau khi quá trình cài đặt đã hoàn tất." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Tiếp tục" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Chào mừng bạn đến phần cài đặt dành cho máy chủ Ushahidi. Chọn loại cài đặt mà bạn mong muốn ở phía bên dưới." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "Quá trình cài đặt thành công" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "Máy chủ mail" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Máy chủ host dành cho mail" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Thí dụ: mail.websitecủabạn.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mật khẩu máy chủ mail" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Mật khẩu bạn dùng để đăng nhập vào tài khoản email của mình" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Cổng kết nối máy chủ Mail" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Các cổng thông thường: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Loại máy chủ mail" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) hoặc Post Office Protocol (POP). Điều gì là khác nhau giữa hai phần này?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Tên người dùng máy chủ mail" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Nếu bạn sử dụng Gmail, Hotmail hoặc Yahoo Mail, điền vào đầy đủ địa chỉ email dưới dạng tên người dùng." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Bản đồ" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Nhà cung cấp bản đồ" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi có thể thao tác trơn tru với bất kỳ nhà cung cấp dịch vụ bản đồ nào: Google, Bing hoặc Open Street Map. Chọn loại nhà cung cấp có thông tin hữu dụng nhất ở khu vực của bạn." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Các bước khác..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Mật khẩu" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Mật khẩu đối với cơ sở dữ liệu" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Trước đó" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Xin vui lòng khởi động lại máy chủ Apache của bạn" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Bật hoặc vô hiệu hóa kết nối dạng SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Một vài máy chủ mail cung cấp cho bạn tùy chọn sử dụng kết nối dạng SSL khi thực hiện việc kết nối truyền tải dữ liệu. Bạn nên dùng loại kết nối này để tăng tính bảo mật cho trang của bạn." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Cài đặt hệ thống máy chủ SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Địa chỉ email của trang" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Địa chỉ email nhận cảnh báo" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Khi trang của bạn nhận đăng ký từ các người dùng khác, những người đăng ký sẽ nhận các email từ địa chỉ email này. Địa chỉ email này không cần thiết phải giống hệ địa chỉ email của trang." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Việc mở rộng thao tác giao tiếp thông qua email sẽ được chọn lựa thông qua địa chỉ này" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Tên trang" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Tên của trang mà bạn muốn lập" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Các thẻ đánh dấu liên quan đến trang" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Thẻ đánh dấu của bạn" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Các tập tin và thư mục được liêkt bên dưới cần được thiết lập quyền có thể ghi dữ liệu trên hệ thống web của bạn." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Sau đây là hướng dẫn về các quyền hạn liên quan đến việc thay đổi nội dung tập tin:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Trước khi bắt đầu, bạn cần phải chắc chắn rằng các tập tin và thư mục sau đây có được quyền ghi dữ liệu trên hệ thống máy chủ web của bạn. Bao gồm cả các quyền truy cập và thay đổi nội dung tập tin." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Đối với quá trình cài đặt, xin vui lòng đọc các thông tin sau đây." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Table Prefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Thông thường bạn sẽ không cần thay đổi table prefix. Tuy nhiên, nếu bạn chạy nhiều tiến trình cài đặt liên quan đến Ushahidi từ một cơ sở dữ liệu duy nhất, bạn có thể thực hiện việc thay đổi các tiền tố đứng trước tên bảng dữ liệu tại đây." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Tiêu đề" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Để đăng nhập, hãy truy cập" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Tải lên dữ liệu báo cáo" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Tên người dùng" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Tên cơ sở dữ liệu của bạn" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "và sử dụng các phần ủy nhiệm tiếp sau đây" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Xem trang web của bạn" diff --git a/application/i18n/po/po-vi/layer.po b/application/i18n/po/po-vi/layer.po new file mode 100644 index 0000000000..ce762aee24 --- /dev/null +++ b/application/i18n/po/po-vi/layer.po @@ -0,0 +1,64 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 08:50+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "Phần khung thông tin màu sắc phải chứa chính xác 6 ký tự về độ dài." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "Phần khung thông tin về màu sắc không được để trống." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "Phần khung thông tin về tập tin chứa dạng tập tin không hợp lệ. Chỉ chấp nhận các định dạng .KMZ và .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Phần khung thông tin về tập tin chứa dạng tập tin không hợp lệ." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 80 ký tự về độ dài." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Cả hai phần đường dẫn liên kết KML hoặc tập tin đều phải có." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Bạn không thể vừa chọn tập tin KML và đường dẫn liên kết kèm theo." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-vi/libraries.po b/application/i18n/po/po-vi/libraries.po new file mode 100644 index 0000000000..04346fcd48 --- /dev/null +++ b/application/i18n/po/po-vi/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 08:58+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Không thể kết nối đến máy chủ Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Không nhận được tín hiệu phản hồi từ Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Thư viện API: %s dành cho %s class không được tìm thấy. Vui lòng kiểm tra lại bảng routing cho tác vụ API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Khóa Akismet API của bạn không hợp lệ." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Lỗi khi thực thi phương pháp gửi!
Vui lòng kiểm tra liệu PHP có hỗ trợ OpenSSL hay không và liệu phiên bản PHP mới hơn bản 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Xin vui lfong xác nhận địa chỉ gửi (ĐẾN)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Xin vui lòng xác định địa chỉ nguồn (TỪ)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Phương pháp gửi không được hỗ trợ!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Thư viện API %s không hợp lệ. Tất cả các thư viện API phải là lớp con của %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "Không thể xóa thư mục %s." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Lỗi xảy ra khi giải nén: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Thất bại khi tải về phiên bản mới nhất của Ushahidi. Trạng thái mã HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "Không thể sao chép tập tin %s." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "Không thể xóa tập tin %s." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Đoạn mã lệnh để nâng cấp Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "Không thể ghi dữ liệu lên tập tin nén Ushahidi %s được tải về." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s hiện không phải là lớp RiverID hiện có." diff --git a/application/i18n/po/po-vi/maintenance.po b/application/i18n/po/po-vi/maintenance.po new file mode 100644 index 0000000000..8a665f70c6 --- /dev/null +++ b/application/i18n/po/po-vi/maintenance.po @@ -0,0 +1,24 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 05:42+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Rất tiếc, trang này của chúng tôi hiện đang ở trạng thái bảo trì. Xin vui lòng quay lại sau ít phút nữa." diff --git a/application/i18n/po/po-vi/message.po b/application/i18n/po/po-vi/message.po new file mode 100644 index 0000000000..e54f18b932 --- /dev/null +++ b/application/i18n/po/po-vi/message.po @@ -0,0 +1,62 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 08:59+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "Vui lòng điền vào mã an ninh." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Phần khung thông tin về bình luận không được để trống." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Phần khung thông tin về số điện thoại không hợp lệ." diff --git a/application/i18n/po/po-vi/mhi.po b/application/i18n/po/po-vi/mhi.po new file mode 100644 index 0000000000..f58798ee96 --- /dev/null +++ b/application/i18n/po/po-vi/mhi.po @@ -0,0 +1,52 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 09:00+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "Vui lòng điền vào mã an ninh." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "Xin vui lòng cung cấp một địa chỉ email hợp lệ." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "Phần nội dung tin nhắn không được để trống." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "Phần khung thông tin về chủ đề không được để trống." diff --git a/application/i18n/po/po-vi/notifications.po b/application/i18n/po/po-vi/notifications.po new file mode 100644 index 0000000000..816d6b5f5d --- /dev/null +++ b/application/i18n/po/po-vi/notifications.po @@ -0,0 +1,92 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 09:04+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Tin nhắn này đã được gửi từ website của bạn." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Đăng nhập dạng Quản Trị Viên" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "Một bình luận mới đã được đệ trình trên website của bạn trả lời về vấn đề:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Bình luận mới" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Một tin nhắn mới dạng email đã được gửi đến website của bạn." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Tin nhắn mới" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Một báo cáo mới đã được gửi đến website của bạn." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Báo cáo mới" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Một tin nhắn mới đã được gửi đến website của bạn." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "Tạo tin nhắn mới" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Bạn đã nhận được một cảnh báo mới" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Cảnh báo mới!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Bạn đã nhận được một tin nhắn riêng mới" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Tạo mới tin nhắn riêng" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Để trả lời vui lòng truy cập:" diff --git a/application/i18n/po/po-vi/page.po b/application/i18n/po/po-vi/page.po new file mode 100644 index 0000000000..b005c9dc29 --- /dev/null +++ b/application/i18n/po/po-vi/page.po @@ -0,0 +1,37 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 09:05+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "Vui lòng điền vào tiêu đề trang." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Phần tiêu đề trang phải có ít nhất 3 ký tự hoặc tối đa 150 ký tự về độ dài." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "Vui lòng điền vào tên hiển thị trên tab của trang." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "Xin điền vào mô tả về trang." diff --git a/application/i18n/po/po-vi/permissions.po b/application/i18n/po/po-vi/permissions.po new file mode 100644 index 0000000000..90ca854a9f --- /dev/null +++ b/application/i18n/po/po-vi/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Anh Phan , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 11:21+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Xem báo cáo" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Tạo/Chỉnh Sửa/Xóa báo cáo" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "Chấp thuận báo cáo" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Xác nhận báo cáo" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Quản lý bình luận về báo cáo" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Tải về báo cáo" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Tải lên báo cáo" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Quản lý tin nhắn" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Quản lý tin nhắn từ người thực hiện báo cáo" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Xem trạng thái" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Chỉnh sửa Thiết Lập" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Quản lý Khung Điều Khiển" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Quản lý người dùng" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Quản lý Vai Trò" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Có thể đi đến" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Quản lý điểm đến" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Truy cập giao diện Quản Trị Viên" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Truy cập giao diện Thành Viên" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "Xóa tất cả các báo cáo" diff --git a/application/i18n/po/po-vi/private_message.po b/application/i18n/po/po-vi/private_message.po new file mode 100644 index 0000000000..1767415bd8 --- /dev/null +++ b/application/i18n/po/po-vi/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 05:29+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Chỉ số gốc phải ở dạng số" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "Phần khung thông tin về đối tượng nhận không được để trống." + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Người dùng mà bạn đang muốn gửi tin nhắn không tồn tại" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "Phần khung thông tin về chủ đề không được để trống." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Chủ đề tin nhắn phải có ít nhất 3 ký tự và tối đa 150 ký tự về độ dài" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "Phần nội dung tin nhắn không được để trống." diff --git a/application/i18n/po/po-vi/report.po b/application/i18n/po/po-vi/report.po new file mode 100644 index 0000000000..6cf8e3e8b0 --- /dev/null +++ b/application/i18n/po/po-vi/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Anh Phan , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-08-22 09:01+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "lỗi!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm báo cáo nằm trong quốc gia %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Vui lòng điền vào một giá trị hợp lệ cho phần khung thông tin của \"%s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Phần khung thông tin \"%s\" phải ở dạng số." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Phần khung thông tin \"%s\" không được để trống." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Phần khung thông tin \"%s\" không tồn tại." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Tài khoản của bạn không thể chỉnh sửa phần khung thông tin \"%s\"." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Phần khung thông tin \"%s\" phải chứa một địa chỉ email hợp lệ." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Phần khung thông tin \"%s\" phải chứa một số điện thoại hợp lệ." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Phần khung thông tin \"%s\" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Phần khung thông tin \"%s\" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Xin chọn một đối tượng hợp lệ trong phần tải về." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Xin vui lòng lựa chọn một đối tượng hợp lệ trong phần tải về." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Xác Nhận\" hoặc \"Báo Cáo Đã Được Xác Nhận\" hoặc cả hai." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Xác Nhận\" hoặc \"Báo Cáo Đã Được Xác Nhận\" hoặc cả hai." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Xin vui lòng chọn một loại báo cáo hợp lệ để tải về." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Xin vui lòng chọn một loại báo cáo hợp lệ để tải về." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Xin vui lòng chọn một loại báo cáo hợp lệ để tải về." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Bạn phải chọn một định dạng để tải về. Chọn hoặc CSV hoặc XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Xin vui lòng chọn một loại báo cáo hợp lệ để tải về ở" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "Phần khung thông tin về ngày gửi TỪ không chứa định dạng tập tin hợp lệ." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi Từ. Ngày này không thể lớn hơn ngày hiện tại." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Phần khung thông tin về sáng/tối không chứa giá trị hợp lệ." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Phần khung thông tin về \"Phân Loại\" không chứa định dạng phân loại hợp lệ." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Phần khung thông tin về \"Phân Loại\" không được để trống." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Phần khung thông tin ngày tháng không được để trống." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Phần khung thông tin về \"Mô Tả\" không được để trống." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Phần khung thông tin về giờ chứa định dạng giờ không hợp lệ." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Phần khung thông tin về giờ không được để trống." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Phần khung thông tin về phút chứa dạng phút không hợp lệ." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Phần khung thông tin về phút không được để trống." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Phần liên kết đường dẫn đến nguồn tin không chứa đường dẫn hợp lệ." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Phần khung thông tin về hỉnh ảnh tải lên chứa định dạng hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Phần khung thông tin về hình ảnh được tải lên chứa định dạng tập tin không hợp lệ." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Phần khung thông tin \"Tiêu Đề Báo Cáo\" phải chứa ít nhất 3 ký tự và tối đa 200 ký tự về độ dài." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Phần khung thông tin \"Tiêu Đề Báo Cáo\" không được để trống." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa báo cáo về việc này không?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Phần liên kết đường dẫn video không chứa đường dẫn hợp lệ." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Báo cáo này đã có phần chuyển ngữ dành cho dạng ngôn ngữ này." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Báo Cáo Gốc và phần Dịch có cùng ngôn ngữ với nhau (ngôn ngữ bản địa)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Phần khung thông tin ngôn ngữ không được để trống." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Phần khung thông tin \"Tên Địa Điểm\" phải có ít nhất 3 ký tự và tối đa 200 ký tự về độ dài." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Phần khung thông tin \"Tên Địa Điểm\" không được để trống." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Phần khung thông tin về kinh độ không chứa định dạng kinh độ hợp lệ." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Phần khung thông tin về kinh độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Phần khung thông tin họ phải có ít nhất 2 ký tự và tối đa 100 ký tự về độ dài." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Phần khung thông tin về ngày gửi ĐẾN không chứa định dạng tập tin hợp lệ." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi ĐẾN. Ngày này không thể lớn hơn ngày hiện tại." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Ngày GỬI TỪ không được lớn hơn ngày GỬI ĐẾN." diff --git a/application/i18n/po/po-vi/reporters.po b/application/i18n/po/po-vi/reporters.po new file mode 100644 index 0000000000..232fe298f8 --- /dev/null +++ b/application/i18n/po/po-vi/reporters.po @@ -0,0 +1,72 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 10:32+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Phần khung thông tin về Người Báo Cáo không chứa định dạng tập tin hợp lệ." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Phần khung thông tin về Cấp Độ Người Báo Cáo không chứa định dạng tập tin hợp lệ." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "Phần khung thông tin tên địa điểm phải có ít nhất 3 ký tự và tối đa 200 ký tự về độ dài." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "Phần khung thông tin tên địa điểm không được để trống." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Phần khung thông tin về kinh độ không chứa định dạng kinh độ hợp lệ." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Phần khung thông tin về kinh độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Người Báo Cáo không hợp lệ" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Người Báo Cáo không hợp lệ" diff --git a/application/i18n/po/po-vi/reports.po b/application/i18n/po/po-vi/reports.po new file mode 100644 index 0000000000..f4f1bde591 --- /dev/null +++ b/application/i18n/po/po-vi/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 05:39+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Xin xác nhận bạn đã chọn đối tượng" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Xin xác nhận bạn đã chọn đối tượng" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Báo cáo phải được phân loại trước khi được chấp thuận" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Bạn không có quyền thực hiện thao tác này" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Bạn phải chọn một tập tin để tải lên" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Tập tin tải lên phải có định dạng .csv hoặc .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "Phần khung thông tin về tập tin được tải lên không chứa định dạng tập tin hợp lệ" diff --git a/application/i18n/po/po-vi/roles.po b/application/i18n/po/po-vi/roles.po new file mode 100644 index 0000000000..5e930cd436 --- /dev/null +++ b/application/i18n/po/po-vi/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 10:35+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin Mô Tả phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Phần khung thông tin về Mô Tả không được để trống." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Phần khung thông tin Tên chỉ được chứa các ký tự hoặc số." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Phần khung thông tin Tên phải có ít nhất 2 ký tự hoặc tối đa 30 ký tự về độ dài." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "Phần khung thông tin Tên không được để trống." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Phần khung thông tin Cấp Độ Truy Cập phải có giá trị từ 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Phần khung thông tin Cấp Độ Truy Cập phải có giá trị từ 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "Phần khung thông tin Quyền Hạn phải có giá trị từ 0 - 100." diff --git a/application/i18n/po/po-vi/settings.po b/application/i18n/po/po-vi/settings.po new file mode 100644 index 0000000000..d9f4211a73 --- /dev/null +++ b/application/i18n/po/po-vi/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# daidungsi , 2014 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-06-21 12:51+0000\n" +"Last-Translator: daidungsi \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "Phần khung thông tin cho phép bình luận không chứa giá trị hợp lệ." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "Phần khung thông tin cho phép bình luận không được để trống." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "Phần khung thông tin bao gồm feed chứa định dạng không hợp lệ." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "Phần khung thông tin bao gồm feed không được để trống." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "Lĩnh vực danh mục nguồn cấp dữ liệu bao gồm không chứa một giá trị hợp lệ." + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "Lĩnh vực danh mục nguồn cấp dữ liệu bao gồm là bắt buộc." + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Phần khung thông tin cho phép cảnh báo không được để trống." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Phần khung thông tin cho phép báo cáo không được để trống." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Phần khung thông tin về trạng thái chia sẻ chứa giá trị không hợp lệ." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Phần khung thông tin trạng thái chia sẻ không được để trống." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Số lượng mặc định các bản tin được tải về với từng yêu cầu API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Số lượng tối đa các bản tin được tải về với từng yêu cầu API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Số lượng tối đa các API được yêu cầu với từng địa chỉ IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Phần khung thông tin về Akismet không chứa giá trị hợp lệ." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Phần khung thông tin về Akismet không chứa giá trị hợp lệ." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Phần khung thông tin về hỉnh ảnh băng rôn chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Xin chắc rằng \"Hình ảnh băng rôn\" có dung lượng nhỏ hơn 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Phần khung thông tin về \"Hình Ảnh Băng Rôn\" không chứa định dạng tập tin hợp lệ." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Phần khung thông tin số trang trong bộ nhớ đệm không được để trống." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Phần khung thông tin về số trang trong bộ nhớ đệm không chứa giá trị hợp lệ." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không chứa giá trị hợp lệ." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Có vẻ như phía máy chủ của bạn vẫn chưa được cấu hình để dọn dẹp các đường dẫn liên kết. Bạn cần thay đổi cấu hình của phía máy chủ do bạn đảm nhiệm trước khi bạn muốn dọn dẹp các đường dẫn liên kết. Tìm hiểu thêm tại phần bài mục này trong diễn đàn" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết sạch (không có phần \"index.php\" trong đường dẫn)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Bật tính năng dọn dẹp đường dẫn liên kết" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Dọn dẹp đường dẫn liên kết" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Phần khung thông tin về số lượng Clickatel API không được quá 200 ký tự về độ dài." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Phần khung thông tin về Mật Khẩu Clickatel phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Phần khung thông tin mật Khẩu Clickatel không được để trống." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Phần khung thông tin Tên Người Dùng Clickatel không được quá 50 ký tự về độ dài." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Phần khung thông tin về Tên Người Dùng Clickatel không được để trống." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Chỉnh cấu hình bản đồ" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Địa điểm mặc định" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Phần khung thông tin về màu sắc của feed chứa định dạng không hợp lệ." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Phần khung thông tin màu sắc không được vượt quá 6 ký tự về độ dài." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Phần khung thông tin về màu sắc không được để trống." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Chế độ xem bản đồ mặc định" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Mức độ phóng to mặc định" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Nhận danh sách các thành phố từ Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Phần khung thông tin về Mật Khẩu của máy chủ mail phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Phần mật khẩu mail phía máy chủ không được để trống." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Phần loại mail phía máy chủ không được để trống." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Phần khung thông tin Tên Người Dùng Máy Chủ Mail không được quá 50 ký tự về độ dài." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Phần tên người dùng mail phía máy chủ không được để trống." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Tùy chọn cài đặt Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Facebook mới tại" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Các thiết lập sao cho phép người dùng đăng nhập thông qua Facebook, thao tác này does not tạo một ứng dụng facebook cho dự án của bạn" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Phần khung thông tin Google Analytics phải chứa một Web Property ID hợp lệ theo định dạng UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Bật HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết không an toàn; không có phần \"https://\" ở phía trước đường dẫn liên kết" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Tùy chọn này cho phép truy cập Ushahidi thông qua các chế độ truy cập an toàn; có phần \"https://\" ở phía trước đường dẫn liên kết" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Phần khung thông tin về số lượng đối tượng mỗi trang (Frontend) chứa giá trị không hợp lệ." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Phần khung thông tin số lượng đối tượng mỗi trang (Frontend) không được để trống." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) chứa giá trị không hợp lệ." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) không được để trống." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Mức độ phóng to" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Chọn một nhà cung cấp bản đồ" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Điền vào khóa API mới" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Nhận một khóa API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Nhà cung cấp bản đồ" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Thời gian bản đồ" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Thiết lập bản đồ" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Viện triển khai Ushahidi có được tiến hành ở nhiều quốc gia hay không?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Xin vui lòng chọn một quốc gia mặc định." + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Click và rê bản đồ để chọn địa điểm chính xác" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Gom lại các báo cáo trên bản đồ" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Cho phép người dùng đệ trình bình luận đến các báo cáo" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Bao gồm thông tin RSS dạng Feed trên Website" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "Tạo hạng mục mới từ những nguồn cấp dữ liệu" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Cho phép người dùng đăng ký theo dõi các cảnh báo" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Cho phép người dùng đệ trình các báo cáo" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Khóa Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Băng rông đặt trên trang" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Khóa theo dòng" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Bộ nhớ đệm dành cho trang" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Thời gian thực thi bộ nhớ đệm cho trang" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Bật tính năng điểm đến" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Thông báo về bản quyền trên trang" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Màu mặc định cho tất cả phân loại" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Biểu tượng mặc định cho tất cả phân loại" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Xóa hình ảnh băng rôn" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Xóa biểu tượng mặc định" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Hiển thị trang liên lạc" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Hiển thị trang \"Làm cách nào để nhận trợ giúp\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Địa chỉ email cảnh báo" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Để có thể nhận các báo cáo bằng email, vui lòng cấu hình lại thiết lập dành cho tài khoản email của bạn." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Địa chỉ email nhận cảnh báo" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Định dạng: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Số đối tượng mỗi trang - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Số đối tượng mỗi trang - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Chặn các bình luận dạng spam bằngAkismet theo kiểu tự động.
Bạn có thể đăng ký nhận một khóa API miễn phí từ tài khoản người dùng ở WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica Credentials" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Trang Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Ngôn ngữ trang" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Chấp thuận bởi người sử dụng" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Trang tin nhắn" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Tên trang" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Tiến trình riêng tư" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Yêu cầu cần có email xác nhận" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Đệ trình tin nhắn báo cáo" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Bật tính năng thống kê (được lưu trữ ở phía máy chủ của Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Các thẻ đánh dấu liên quan đến trang" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Múi giờ" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Thiết lập trang" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Tìm các cụm từ trong Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Tách biệt bởi dấu phẩy" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "Cấp dữ liệu vị trí địa lý - cơ sở dữ liệu địa lý tên người dùng" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin trang email dường như chứa địa chỉ email không hợp lệ." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Phần khung thông tin trang email phải có ít nhất 4 ký tự và tối đa 100 ký tự về độ dài." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Phần khung thông tin tên trang phải có ít nhất 3 ký tự và tối đa 50 ký tự về độ dài." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Phần khung thông tin tên trang không được để trống." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin tagline phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Phần khung thông tin về tagline không được để trống." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Số Clickatell API của bạn" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Kiểm tra trạng thái cân bằng tín dụng trên Clickatell của bạn" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Tải trạng thái cân bằng tín dụng" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Mật khẩu tài khoản Clickatell của bạn" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Đăng ký sử dụng dịch vụ Clickatells bằng cách click vào đây" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Điền vào thông tin truy cập tài khoản Clickatell của bạn bên dưới" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Điền vào tên tài khoản Clickatell của bạn" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS là phần mềm miễn phí mã nguồn mở cho phép người dùng gửi và nhận tin nhắn văn bản đến số một số lượng lớn người dùng có liên kết với nhau theo nhóm thông qua điện thoại. Click vào ô bên dưới để tải về phiên bản mới nhất từ FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Tải và cài đặt FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Thông tin chi tiết về hướng dẫn cách gửi SMS từ FronlineSMS hiện có ở here. Đường dẫn liên kết và khóa API bên dưới cần được thêm vào để cài đặt phần đồng bộ hóa với FronlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Sao chép và dán phần này vào trong phần thông tin \"Địa Chỉ\" của FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Sao chép và dán phần này vào trong khung thông tin \"Ushahidi API Key\" của FrontlineSMS" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Đang kết nối FrontlineSMS đến phần giao tiếp với Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Điền vào (những) số điện thoại được kết nối đến SMS Frontline ở (những) khung thông tin bên dưới" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Điền vào số và nên nhớ không đặt vào dấu + hay dấu gạch ngang" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Tùy chọn 1: Sử dụng Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Tùy chọn 2: Sử dụng Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Tùy chọn cài đặt SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Số điện thoại 1 ở khung thông tin không chứa giá trị hợp lệ." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Phần khung thông tin số điện thoại 1 chỉ nên chứa số." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Phần số điện thoại 2 quá dài." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Phần khung thông tin số điện thoại 2 chỉ nên chứa số." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Phần số điện thoại 3 quá dài." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Phần khung thông tin số điện thoại 3 chỉ nên chứa số." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Tùy chọn cài đặt Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Twitter mới tại" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Khóa người tiêu dùng" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Bí mật người tiêu dùng" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Token truy cập" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Token bí mật truy cập" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Thử các thiết lập" diff --git a/application/i18n/po/po-vi/sharing.po b/application/i18n/po/po-vi/sharing.po new file mode 100644 index 0000000000..ab332569f5 --- /dev/null +++ b/application/i18n/po/po-vi/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 05:37+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Ngày chuyển vào" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Đã thêm ngày tháng" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Lần truy cập gần đây nhất" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "Phần khung thông tin màu sắc phải chứa chính xác 6 ký tự về độ dài." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "Phần khung thông tin về màu sắc không được để trống." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Phần tên Chia Sẻ không hợp lệ." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Phần tên Chia Sẻ không được để trống." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Liên kết đường dẫn của trang đã tồn tại." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Liên kết đường dẫn của trang không hợp lệ." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Phần liên kết đường dẫn của trang không được để trống." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Phần liên kết đường dẫn của trang không chứa đường dẫn hợp lệ." diff --git a/application/i18n/po/po-vi/stats.po b/application/i18n/po/po-vi/stats.po new file mode 100644 index 0000000000..8b832c8d78 --- /dev/null +++ b/application/i18n/po/po-vi/stats.po @@ -0,0 +1,198 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 20:06+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Đã chấp thuận" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Phân Loại" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Tác động phân loại" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Biểu đồ này cho bạn cách nhìn theo dạng tuyến tính của các báo cáo theo từng dạng phân loại theo từng thời điểm thời gian. Kéo chuột từ trái sang phải để xem phần so sánh giữa các loại. Di chuyển chuột đến vùng biểu đồ để biết thêm chi tiết." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Chọn một khoảng ngày tháng." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Quốc gia" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Quốc gia" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Hệ thống quốc gia bị lỗi" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Đây là phần dành cho thống kê và sẽ chứa các mô tả tổng quan trong thời gian sắp tới. Cho tới hiện tại, duyệt tìm các phần phân loại khác ở đường dẫn bên dưới." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Lỗi" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Bảng từ vựng" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Chọn Tóm tắt" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Huyền thoại" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Số lượng truy cập" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Tổng số lượng lượng truy cập đến từ phía người dùng" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Báo cáo" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Phân loại báo cáo" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Thống kê báo cáo" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Trạng thái báo cáo" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Punchcard của báo cáo" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Trạng thái báo cáo" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "Chưa cài đặt trạng thái" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 tháng" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 tháng" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 tháng" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Tất cả" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Chưa được chấp thuận" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "Các người xem độc lập" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Số lượng của mỗi cá nhân trong dự án của bạn. Các người xem độc lập được xác định bởi việc sử dụng các cookies. Các người xem thường không bật tính năng cookies nên sẽ được xác định dựa vào thuật toán heuristic trong việc phân loại theo địa chỉ IP, độ phân giải, trình duyệt, tiện ích, hệ điều hành v.v..." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Chưa xác nhận" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Đã xác nhận" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Tóm tắt khách truy cập" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Truy cập" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Một lượt được tính là truy cập trong bảng ghi dữ liệu với mỗi khách viếng thăm độc lập trang web dựa trên lượt xem qua mỗi quãng thời gian kéo dài 30 phút." diff --git a/application/i18n/po/po-vi/tooltips.po b/application/i18n/po/po-vi/tooltips.po new file mode 100644 index 0000000000..58f05fce38 --- /dev/null +++ b/application/i18n/po/po-vi/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# daidungsi , 2014 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "Approves a report or not. If approved, it will show up publicly." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Body of the email that will be sent." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Subject of email that will be sent." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"all\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for twitter messages from a particular user, enter their username here (not including @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions \"love\" or \"peace\" in their message, you will want to add \"love, peace\" in the keywords box." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select \"specific area\" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "This is the default title to add to the report." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "If you select \"Triggering User\", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"anyone\" since most triggers are set up for all users interacting with the system" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marks a report as verified or not." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separate each value with a comma, e.g. value1, value2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Start typing to list members." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Private message subject" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Private message" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Your email address" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "This is one of the ways that you are identified on the website. Keep in mind that this is public!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "If set, this will be your new password. Leave this field blank if you wish to keep your current password." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Selecting YES lets you get alerts via email when new reports or comments are posted on your website." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Your current password. We require you enter your password to prevent any unauthorized changes to your account." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you've submitted, your checkins, badges, etc all on one page." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "This is the address where your public profile can be found." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Your username cannot be changed." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "This is the email address that will be used to send email alerts." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Allow users to subscribe for alerts via the web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "This allows bundling of similar reports into a single dot on the map" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Allow users to comment on reports on the main site." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "This allows RSS News feeds to be displayed on the main site." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "Điều này cho phép tạo hạng mục mới từ những nguồn cung cấp tin tức cập nhật kiểu RSS" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Allow users to submit information via the web form." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default number of records to be fetched per API request" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum number of records to be fetched per API request" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum number of API requests per IP address" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Number of Block columns that will be displayed on each row." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Set the lifetime of the cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Set the map to cover a specific location." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Set one color code for all the categories on the site." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Set one icon for all the categories on the site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "This is the country the site is being deployed." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Turn the Contact Tab on or off on the main site." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Turn the How to Help Tab on or off on the main site." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "This is the number of reports displayed per page on the main site." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "This is the number of reports displayed per page on the admin Back End." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "This is the hub for incoming messages." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "This synchronizes the messages in the hub with the Ushahidi platform." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Phone numbers through which the text messages are received." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Tracks visitors of your site. Get detailed visitor statistics." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Sets the language that will be used in the site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "This defines which map is to be used on the site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "This shows the timeline based on the date and time reports were submitted" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "This is where the emails reside" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "This is the password for the email address that receives reports." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "This is required to accept incoming connections from the email address." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "This is required to enhance a secure connection." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "This is required to retrieve e-mails from the host server." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "This is the email address that receives reports." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "This is the email address that will receive email reports and messages from the contact form." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "This is the name of the site that appears at the top of the main site." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "In a few words, explain what this site is about." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Set the twitter hashtag that will be used on a tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-vi/ui_admin.po b/application/i18n/po/po-vi/ui_admin.po new file mode 100644 index 0000000000..cfd69d8541 --- /dev/null +++ b/application/i18n/po/po-vi/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Anh Phan , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 11:21+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Truy cập bị từ chối. Có thể quyền ủy nhiệm của bạn không hợp lệ hoặc yêu cầu của bạn bị từ chối." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Truy cập bị từ chối. Yêu cầu của bạn có đã được nhận, nhưng bị từ chối vì bị hạn chế số lần truy cập. Hãy thử lại khi khác." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Cấp độ truy cập" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Thao tác" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Thêm vào phân loại" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "đã thêm vào" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "đã thêm vào/đã chỉnh sửa" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Tiện ích" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Quản trị viên" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Cảnh báo" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Cảnh báo đã nhận được" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Tất cả" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "Sáng" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Vô danh" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Bất kỳ ai" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Bất kỳ vị trí nào" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API bị cấm" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Nhật trình API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Thiết lập API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "GỠ LỆNH CẤM" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "GỠ LỆNH CẤM CHO TẤT CẢ" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "đã chấp thuận" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Tự động chấp thuận" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Chấp thuận bởi người sử dụng" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Đã sao lưu" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Bạn có chắc muốn" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Bạn có chắc muốn xóa đối tượng này?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Bạn có chắc muốn xóa hình chụp này?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Bạn có chắc muốn chuyển đổi các lá đơn?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Gán" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Việc gán" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Gán phù hiệu" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Tác giả" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email tác giả" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Quay lại" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "CẤM IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Giữa các lần" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Khối" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Cơ thể" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Hủy bỏ" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Phân loại" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Xảy ra lỗi khi hiển thị biểu đồ" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Xin chắc chắc rằng tin nhắn của bạn là hợp lệ." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Xin chắc chắn rằng con số này là hợp lệ." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Xin vui lòng kiểm tra thiết lập SMS của bạn!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Chi tiết về điểm đến" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Điểm đến" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Đã tải các thành phố" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "mã" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Phiên bản mã cho việc đồng bộ hóa." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Màu sắc" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Bình luận" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Xác nhận mã cảnh báo của bạn là:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Người dùng này đã được" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Số lần" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Không tìm thấy quốc gia" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "đã tạo/đã sửa" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Tạo một báo cáo" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Cập nhật khẩn cấp" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Hiện đang hoạt động" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Hiện đang không hoạt động" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Bạn không có quyền tác động để thay đổi các khung thông tin dưới đây." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Hằng ngày" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Bảng điều khiển" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "cơ sở dữ liệu" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Ngày tháng & Thời gian" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Đã thêm vào ngày tháng" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Đã chỉnh sửa ngày tháng" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Ngày trong tuần" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Phiên bản DB đã quá hạn để đồng bộ hóa." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "đã xóa" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Xóa" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "Xóa tất cả các báo cáo" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Xóa phù hiệu" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Bản thử nghiệm" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Mô tả" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Vô hiệu hóa" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Bắt đầu phân phát" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Kết thúc phân phát" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Tải về báo cáo" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Lựa chọn xổ xuống" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "ĐÃ SỬA" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Đã sửa bởi" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Chỉnh sửa" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Nhật trình chỉnh sửa" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Toàn bộ việc thu thập" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Lỗi khi đang xác định mã địa lý! Lỗi về HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Thư viện PHP IMAP chưa được cài đặt" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Giấy ủy nhiệm không hợp lệ" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Lỗi" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Lỗi, không thể đăng tiến trình này" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Mỗi sáu giờ" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Mỗi mười hai giờ" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Thực nghiệm " + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Câu hỏi thường gặp" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Phản hồi" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feed" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Danh sách lựa chọn" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Giá trị mặc định" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Loại dữ liệu" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numeric" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Free Text" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Chiều cao (tính bằng dòng)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Khung thông tin bị ẩn" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Độ dài ký tự tối đa" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Tên khung thông tin" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Chuyển đổi" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Không đồng ý" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Đồng ý, đã đóng lại theo mặc định" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Đồng ý, mở theo mặc định" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Không thể tìm thấy tập tin được tải lên" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Không thể mở tập tin để đọc dữ liệu" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Phần đơn này không hề tồn tại!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Diễn đàn" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Khu vực khung thông tin văn bản (văn bản tự do)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Khung thông tin ngày tháng" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Khung thông tin nút lựa chọn" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Khung thông tin phần đánh dấu" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Khung thông tin menu xổ xuống" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Từ" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Từ" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Lỗi vì thời gian kết nối đến Geonames quá hạn" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Nhận sự giúp đỡ" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Tải thêm nhiều giao diện hơn" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Tải thêm nhiều tiện ích hơn" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Thao tác" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Thêm/sửa" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Quản lý người dùng" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Vai trò" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Người dùng" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "trợ giúp" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Hằng giờ" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Feed tiến trình cho" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Thư mục cài đặt vẫn không tồn tại. Xóa thư mục cài đặt. Đây là tiềm ẩn an ninh quan trọng." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Tiến trình" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Tiến trình" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Thông tin tiến trình" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Thông số không hợp lệ" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Địa chỉ IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Đây có phải là khung thông tin ngày tháng?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Ai có thể xem các câu trả lời" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Ai có thể đệ trinh cầu trả lời" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Từ khóa" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Từ khóa" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Địa chỉ email:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Tên đầy đủ:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Mật khẩu:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Vai trò:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Tên người dùng:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Lớp" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Người điều hành" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Đăng xuất" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Nhật trình" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Quản lý" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Quản lý Vai trò & Quyền hạn" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Xem người dùng" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Thêm/sửa người dùng" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Quản lý việc liệt kê công cộng của bạn" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Đánh dấu dưới dạng" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "đã đánh dấu không phải spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "đã đánh dấu dưới dạng spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "Không khớp với bất kỳ tài liệu nào" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Tin nhắn" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Tin nhắn Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Tin nhắn Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Tin nhắn của bạn đã được gửi!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Phút" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Phút" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Thiếu các thông số" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Người điều hành" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "đã chỉnh sửa" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Chỉnh sửa thiết lập thời gian vùng miền" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "di chuyển xuống" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "di chuyển lên" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Tiến trình Multiple hosted" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Cản báo của tôi" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Điểm đến của tôi" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Hồ sơ của tôi" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Báo cáo của tôi" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Bình chọn diễn viên" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Dương tính" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Âm tính" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Tên" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Tạo cảnh báo mới" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Tạo tin nhắn mới" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Mật khẩu mới" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Không đồng ý" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần đệ trình báo cáo từ những người dùng gửi các báo khác. Phần này được sử dụng để giữ các báo cáo còn lại vốn chưa được phân loại (các báo cáo chưa được phân loại) dưới dạng phân loại bị xóa." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Thông báo" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Không phân biệt chữ in hoa." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Không tìm thấy" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Không có dữ liệu. Không có kết quả nào được hiển thị." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Không có lỗi" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Không có kết quả để hiển thị!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "của" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Dựa trên số lượng" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "trang" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "trang" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Không tìm thấy trang" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Rất tiếc, trang bạn muốn truy cập hiện không có.

Bạn đã đi đến đường liên kết này từ một nơi khác trên trang của chúng tôi?
Nếu bạn truy cập đến trang này từ trang thuộc hệ thống hiện tại, xin vui lòng liên hệ với chúng tôi để chúng tôi có thể khắc phục vấn đề này.

Có phải bạn đã truy cập đến trang này từ đường dẫn ở các trang khác không thuộc hệ thống của chúng tôi?
Liên kết ở các trang khác không thuộc hệ thống của chúng tôi thường sai về mặt cú pháp hoặc các liên kết đó đã quá hạn truy cập. Hãy thông báo cho chúng tôi biết trang mà bạn đã truy cập trước khi click vào đường liên kết để đến trang này nhằm khắc phục vấn đề lỗi trang trên.

Có phải bạn đã gõ vào đường dẫn?
Có thể bạn đã gõ vào đường dẫn (địa chỉ) sai cú pháp. Hãy xem lại đường dẫn hay địa chỉ mà bạn đã truy cập.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Rất tiếc, trang bạn đang muốn truy cập hiện không tồn tại" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Thông số được sử dụng" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Mật khẩu" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Đặt lại mật khẩu" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Thân mến" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Chúng tôi đã nhận được yêu cầu đặt lại mật khẩu cho" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Để có thể thay đổi mật khẩu của bạn, vui lòng click vào liên kết phía dưới (hoặc sao chép và dán vào trình duyệt của bạn)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Theo như yêu cầu của bạn, mật khẩu đã được thay đôi. Thông tin chi tiết sẽ có dạng" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Đặt lại mật khẩu Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Điện thoại" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Xin vui lòng chọn" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Dữ liệu không được gửi bởi phương thức đăng bài" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Xem trước" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Tin nhắn riêng tư" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Tin nhắn riêng đã được gửi" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Chủ đề" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Đến" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Liệt kê công cộng" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Người thẩm định" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "đọc" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Thích hợp" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Báo cáo tiêu đề" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Ngày ghi báo cáo" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Người báo cáo" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Nhãn người báo cáo" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Báo cáo" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Điểm danh vọng" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Yêu cầu" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Đặt lại" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Trả lời" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Kết quả" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Hủy bỏ" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Email này có một tài khoản gắn kết với CrowdmapID. Người sử dụng sẽ cần sử dụng mật khẩu bên phía Crowdmap để đăng nhập." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Lưu thiết lập" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Tìm kiếm" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Tìm kiếm báo cáo" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "tìm kiếm về" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Khóa mã hóa được chỉnh về giá trị mặc định. Điều này không an toàn và cần phải được thay đổi." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Trang này đang sử dụng phương thức HTTP. Vì lí do an ninh nên chuyển về dạng HTTPS" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Các hướng dẫn hiện đang được phổ biến trên wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Chọn định dạng báo cáo tải về mà bạn muốn:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Chọn một loại khung thông tin ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Xin chọn một đối tượng" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Bạn phải chọn một Trigger trước khi chọn Trả Lời" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Bạn phải chọn một Trigger trước khi bạn xác định Người Thẩm Định." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Người gửi" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Gửi đến" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Tin nhắn này đã được gửi đến website của bạn tại" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Thời gian server" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Thiết lập" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Hiển thị trang" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Hiển thị kết quả" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "đã hiển thị" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Phân loại đặc biệt" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần mẫu đơn đệ trình báo cáo từ phía người dùng khi họ đệ trình các báo cáo. Tính năng này có liên kết với tính năng \"Người Gửi Báo Cáo Được Tin Tưởng\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Khu vực xác địn" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Trạng thái" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Thống kê" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Trạng thái" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Tổng hợp trạng thái thất bại! Xin vui lòng thử lại lần nữa." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Tổng hợp trạng thái thất bại!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Xác định ngày" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Chủ đề" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Quản trị viên chính yếu" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tác vụ đã thực hiện" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Khung thông tin văn bản" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Tên" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Quản lý người dùng" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Lỗi về quá hạn thời gian" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "đến" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Tổng cộng các bản ghi" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "đến" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Dịch các báo cáo" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Người dùng Trigger" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Trigger" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "chưa được chấp thuận" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Chưa Rõ" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Lỗi chưa rõ" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "chưa đọc" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Bạn sẽ không còn nhận cảnh báo từ" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Click vào đây để nâng cấp ngay bây giờ" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Nâng cấp Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Trạng thái nâng cấp Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Tải lên báo cáo" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Người dùng" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Người dùng" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Đã xác nhận/Vẫn chưa xác nhận" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Xác nhận/Chưa xác nhận" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Phiên bản" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "hiện đã có thể nâng cấp." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Mã hóa video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Tin nhắn riêng" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Xem trang" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Xem báo cáo" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Chào mừng," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Đồng ý" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Tìm kiếm của bạn về" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "Click vào nút bên dưới sẽ xóa TOÀN BỘ các báo cáo trong cơ sở dữ liệu. Bạn nên sử dụng nút này với sự cẩn trọng tối đa vì tiến trình này không thể được hủy bỏ." + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "Chúng tôi khuyến nghị bạn nên sao lưu lại cơ sở dữ liệu của mình trước khi tiếp tục" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "Tôi chắc chắc rằng tôi muốn xóa toàn bộ %s (các) báo cáo trong cơ sở dữ liệu." + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "Bạn có chắc chắc rằng bạn muốn xóa toàn bộ các báo cáo?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "Hiện không có báo cáo nào để xóa." + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "Số lần đăng nhập" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "Lần đăng nhập cuối cùng" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "Đã xác nhận tài khoản?" diff --git a/application/i18n/po/po-vi/ui_main.po b/application/i18n/po/po-vi/ui_main.po new file mode 100644 index 0000000000..40253b356d --- /dev/null +++ b/application/i18n/po/po-vi/ui_main.po @@ -0,0 +1,3171 @@ +# +# Translators: +# Anh Phan , 2013 +# daidungsi , 2014-2015 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-04-29 10:06+0000\n" +"Last-Translator: daidungsi \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "Dịch bởi Phan Anh" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Truy cập" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Giới hạn truy cập" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Tên tài khoản" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Thao tác" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Thao tác hiện vẫn chưa hoàn tất. Bạn có chắc muốn tiếp tục?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Kích hoạt" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Đang hoạt động" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Thêm" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Thêm vào bởi" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dữ liệu bổ sung" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Báo cáo bổ sung" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Thêm/Sửa" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Thêm một trường" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Thêm ngôn ngữ" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Thêm mới" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Thêm Phân Loại Mới" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Thêm Chuyển Ngữ" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Quản Trị" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Nhận thông báo" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "Thông báo tôi khi một báo cáo đã được thực thi, hoặc xung quanh:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Lưu Thông Báo Của Tôi" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Địa chỉ email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "điền vào địa chỉ email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "điền vào số điện thoại đi kèm theo là mã vùng điện thoại đứng đầu" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Nhận Thông Báo" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Cảnh báo đã được" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Số di động:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Hoặc click vào một điểm nào đó ở bản đồ bên dưới, và chúng tối sẽ thông báo cho bạn khi báo cáo đã được hoàn tất trong vòng chu vi 20 ki lô mét." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Nếu bạn không thể tìm thấy vị trí của bạn, bạn có thể click vào bản đồ để chỉ ra vị trí hiện tại của bạn." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Tin RSS (sao chép đường dẫn bên dưới)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Chọn một thành phố" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Bước 1:Chọn thành phố hoặc địa điểm của bạn:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Bước 2: Gửi thông báo tới:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Bước 3 (không có cũng được): Chọn Phân Loại" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Xác nhận Yêu Cầu Thông Báo Trước Đó" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Phần thông báo của bạn đã được lưu!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Tất cả" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Cho phép" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Cho phép các thẻ đánh dấu HTLM: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes chỉ được cho phép từ: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Tất cả Phân Loại" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Tất cả thời gian" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "và" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Chấp thuận" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Đã chấp thuận" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Báo cáo đã chấp thuận" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Chấp thuận báo cáo này" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Xấp xỉ" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Sao lưu" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Đã sao lưu" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Tăng dần" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "tại" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Tác giả" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Tự động đăng nhập" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "Tự động" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Trung bình báo cáo mỗi ngày" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Đang đợi việc chấp thuận" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Đang đợi việc xác nhận" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Huy hiệu" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Huy hiệu" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Hình ảnh huy hiệu" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Hoặc bạn có thể tự tải hình ảnh về huy hiệu của chính bạn." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Gói huy hiệu" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Chọn một huy hiệu" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Duyệt tìm Hồ Sơ" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Hủy bỏ" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Phân Loại" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Phân Loại" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Bộ lọc phân loại" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Phân loại đã được" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Tên phân loại" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Thay đổi khoảng thời gian" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Thay đổi mật khẩu" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Thay đổi hình ảnh của bạn" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Chọn một" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Chọn điểm dữ liệu để tải xuống" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Hoặc chọn khoảng thời gian của riêng bạn" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Chọn loại trường" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Làm rỗng URL" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Làm rỗng" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Làm rỗng bản đồ" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Đóng lại" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "bó" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Màu sắc" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Bình luận" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Bình luận" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Chi tiết Bình luận" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Thiết lập của bạn đã được lưu!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Chỉnh sửa" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Bạn đã xác nhận thành công địa chỉ email của bạn! Hãy đăng nhập bên dưới, biên dịch bởi Phan Anh." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Bạn đã xác nhận thành công địa chỉ email của bạn! Quản trị viên phải chấp thuận tài khoản của bạn trước khi đăng nhập vào" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Việc xác nhận email không thành công! Bạn có thể được quyền yêu cầu thêm một email xác nhận nữa bên dưới." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Liên hệ chúng tôi" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Mã an ninh" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Thay đổi địa chỉ email của bạn" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Tin nhắn của bạn đã được gửi!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Tên của bạn" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Số điện thoại của bạn" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Gửi tin nhắn" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Tựa đề tin nhắn" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Biên dịch bởi phan Anh ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Tạo" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Tạo/sửa" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Tạo mới" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Tạo mật khẩu mới" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Tạo báo cáo" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Độ tin cậy" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Mật khẩu hiện tại" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Trường tự chọn" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Thông tin" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Ngày tháng" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(tt/nn/nnnn)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Thời gian & Ngày tháng" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "ngày" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "Hàng ngày" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Tắt kích hoạt" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Xóa" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Đã xóa" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Xóa" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Tắt tính năng xóa" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Xóa tận cùng" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Xóa báo cáo này" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Xóa những vùng được chọn" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Xóa Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Thử nghiệm" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Mô tả" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Giảm dần" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Thí dụ: Góc phố Thần Kinh, số 5 đường Tưng Tửng & số 4 bệnh viện Nhiệt Đới, thành phố Phồng Tôm" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Chi tiết" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Báo cáo trực tiếp" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Vô hiệu hóa" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Không chấp thuận" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Tải về báo cáo" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Tải xuống" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Sửa" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Sửa các trường trong mẫu đơn" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Sửa báo cáo" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Địa chỉ email" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Thiết lập server mail" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Server Host Mail" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mật khẩu Mail Server" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Cổng kết nối Mail Server" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Hỗ trợ kết nối SSL Mail Server" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Loại Mail Server" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Tên người dùng Mail Server" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "nên các thiết lập cần được gắn với địa chỉ email này" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Để có thể nhận báo cáo bằng email, hãy điền vào địa chỉ tài khoản email của bạn trong phần thiết lập bên dưới. Chú ý rằng email sẽ nhận được tại email của bạn" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Một vài server yêu cầu việc hoàn tất địa chỉ email" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Mật khẩu tài khoản email" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Cổng kết nối thường gặp: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Thí dụ: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Thí du: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Bật hoặc tắt kết nối dạng SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---RỖNG---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "đến" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Lỗi!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Thí dụ" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Ứng dụng bổ sung" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Liên kết video bổ sung" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Cung cấp phản hồi" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "Mong gửi cho chúng tôi phản hồi về kinh nghiệm của bạn bằng cách gửi thư điện tử tới" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Feed đã được" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Đối tượng feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Tên feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL của Feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Các trường không sử dụng" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Tập ti" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Tập tin của bạn có kích thước quá giới hạn cho phép." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Bộ lọc" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Lọc báo cáo" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Lọc báo cáo bởi" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Lọc các báo cáo chứa" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Tìm kiếm" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Địa điểm tìm kiếm" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Tên" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Thời gian bắt buộc chạy" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Quên mật khẩu ư?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Mẫu đơn" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Mẫu đơn" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Miêu tả mẫu đơn" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Sửa mẫu đơn này" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Mẫu đơn đã được" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Tiêu đề mẫu đơn" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Từ" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Họ tên đầy đủ" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Địa chỉ địa lý hiện có" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Màu sắc" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Bình luận" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Nhãn" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Độ rộng nét" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Đi đến" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "đã được" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Giúp đỡ bằng cách nào" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Bị ẩn" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ẩn" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ẩn tin nhắn này" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Trang chủ" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "Hàng giờ" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Làm cách nào để báo cáo" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "Chỉ số" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Sử dụng để nhận dạng bạn trên các trang với những người sử dụng khác." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Hình ảnh" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Hình ảnh" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Hình ảnh/Biểu tượng" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Tắt kích hoạt" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Hộp thư" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Ngẫu nhiên" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Ngẫu nhiên gần đây" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Địa điểm ngẫu nhiên" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Bao gồm" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Bao gồm phân loại" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Bao gồm trường tự chọn" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Bao gồm mô tả" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Bao gồm càng nhiều thông tin càng tốt" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Bao gồm vĩ độ" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Bao gồm thông tin địa điểm" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Bao gồm kinh độ" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Bao gồm thông tin cá nhân" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Media được gửi tới" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Thử nghiệm thông tin" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Điền vào vị trí chính xác của bạn" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Tài khoản của bạn không có quyền truy cập cao hơn để có thể ghi nhận mọi tác động. Hãy liên hệ người quản trị." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "Khoảng thời gian" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Để trả lời về" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Địa chỉ IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Đây là hồ sơ của bạn?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "đối tượng" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "đối tượng" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item_details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Tiêu đề đối tượng" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Khóa" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Từ khóa" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Tập tin KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Tải lên tập tin KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Ngôn ngữ" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Trước đó" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Tháng trước" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Họ" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Năm trước" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Vĩ độ" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Lớp" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Lớp khác" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Lớp đã bị" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Tên lớp" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Đường dẫn đến lớp" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Để lại bình luận" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Ít thông ti" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Cấp độ" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Cấp độ này được" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Tên cấp độ" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Hạn chế" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Đường liên kết" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Danh sách" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Đang tải báo cáo" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Địa điểm" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Địa điểm" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Thành phố, Bang và/hoặc quốc gia" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Đăng nhập" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Tài khoản đã được tạo thành công. Bạn có thể đăng nhập ngay bây giờ." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Xác nhận đã được gửi đến địa chỉ email của bạn." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Đã tạo xong tài khoản. Tài khoản của bạn phải được chấp thuận bởi quản trị viên trước khi bạn có thể đăng nhập vào." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Địa chỉ email không tồn tại. Xin vui lòng thử một địa chỉ khác hoặc tạo một tài khoản." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Xin vui lòng click vào nhà cung cấp tài khoản của bạn" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Đăng nhập với" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email và mật khẩu" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Đăng ký" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Tạo một tài khoản" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Cảm ơn bạn đã đăng ký tại %1$s. Để có thể xác nhận email của mình, vui lòng truy cập đường dẫn sau: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Xác nhận đăng ký" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Một người dùng mới đã đăng ký tại %1$s. Để chấp thuận việc đăng ký này vui lòng truy cập vào đường dẫn sau: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Chấp thuận yêu cầu đăng ký" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Tài khoản của bạn đã được chấp thuận về %1$s. Để có thể đăng nhập hãy truy cập vào đường dẫn sau: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Đã chấp thuận tài khoản mới" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Tạo một tài khoản mới sẽ tận dụng được nhiều tính năng trên trang này" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Kinh độ" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Bản đồ" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Đánh dấu đã đọc" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Đánh dấu chưa đọc" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Kích thước tối đa của tập tin" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Bộ lọc media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Thành viên" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Quản lý tài khoản" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Tin nhắn" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Chi tiết tin nhắn" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Tin nhắn được gửi từ một nguồn không rõ số liệu:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Di động" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Chỉnh sửa" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Chỉnh sửa ngày tháng" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "tháng" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "Hàng tháng" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Các phần khác" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Thông tin bổ sung" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Bạn phải xác nhận email để có thể truy cập đến phần này. Nếu bạn mất thư xác nhận, bạn có thể yêu cầu gửi lại mã xác nhận một lần nữa bên dưới." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Tên" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Báo cáo gần đây" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Mới" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Tin tức" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Tin tức feed" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Nguồn tin tức" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Tạo phân loại mới" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Mật khẩu mới" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Báo cáo mới" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Tiếp theo" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Không đồng ý" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Không có thông tin về đăng nhập để hiển thị." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Không có dữ liệu" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Không" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Chú ý" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Chưa được cho phép" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Chưa được cho phép" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Chưa được chọn---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "không phải spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Chưa được xác định" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Không có báo cáo nào" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Không có kết quả nào" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Tắt" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Dòng & tin tức chính thức" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Mở" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Tùy chọn" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Tùy chọn" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Tùy chọn" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Tổ chức" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Tổ chức" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Mô tả về tổ chức" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email tổ chức" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Tổ chức đã được" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Tên tổ chức" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Điện thoại tổ chức 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Điện thoại tổ chức 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Website của tổ chức" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Nguyên bản" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Mô tả nguyên bản" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Tiêu đề gốc" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Các tiến trình khác" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Hộp thư gửi đi" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Đang gửi đi" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Trang" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "TRang" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Mô tả về trang" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Trang đã bị" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Tên tab của trang" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Tiêu đề trang" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Phân loại gốc" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Mật khẩu" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Xác nhận mật khẩu" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Mật khẩu đã được thay đổi thành công! Vui lòng đăng nhập trở lại bên dứoi" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Quên mật khẩu?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Kiểm tra email của bạn về mật khẩu mới." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Giữ trạng thái đăng nhập trên máy tính này?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Tháng trước đó" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Năm trước đó" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Đang đợi" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "mỗi" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Tùy chọnthông tin cá nhân." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Điện thoại" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Hình chụp" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Hình ảnh" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Hình ảnh và video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Tìm kiếm địa chỉ của bạn dựa vào tên địa điểm hoặc vị trí vĩ độ, kinh độ (theo định dạng: 38.19, 85.61), HOẶC click vào bản đồ và chọn phần địa điểm chính xác hiện tại của bạn." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Phát" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Để lại ghi chú" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Tiện ích" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Tiện ích Website" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Hồ sơ công cộng" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Đường dẫn đến hồ sơ công cộng" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Xem thử" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Xem thử đối tượng" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Xem thử tin nhắn" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Trước đó" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Riêng tư" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Màu sắc hồ sơ" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Hồ sơ của bạn đã được lưu" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Trạng thái nhanh" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Xếp hạng" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Đọc" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Nhận" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Nhận từ" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Thông báo nhận được" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Báo cáo gần đây" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Cập nhật lại tin tức feed" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email đã đăng ký" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Loại bỏ" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Trả lời" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Báo cáo" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Báo cáo (từ bản đồ, được liệt kê theo thứ tự niên đại)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Người báo cáo" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Người báo cáo" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Ngày người gửi báo cáo" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email của người gửi báo cáo" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Tên của người gửi báo cáo" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Người báo cáo đã được" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Địa chỉ IP của người báo cáo" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Họ của người báo cáo" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Cấp độ người báo cáo" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Cấp độ người báo cáo" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Điện thoại người báo cáo" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Báo cáo" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Duyệt tìm" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Đệ trình" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Báo cáo thực hiện bởi người dùng này" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Phân loại" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Báo cáo" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Ngày tháng" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Mô tả" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Báo cáo sẽ được tải về dưới định dạng CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Tính năng" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Tìm một địa điểm gần bạn" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Tên" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Họ" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Tên địa điểm" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Đường dẫn đến nguồn tin" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Thông tin tùy chọn" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Tải lên hình chụp" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Quay trở lại trang báo cáo" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Chọn một thành phố" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Báo cáo của bạn đã được đệ trình đến đội ngũ để xem xét. Chúng tôi sẽ trả lời bạn trong thời gian ngắn nhất có thể." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Đệ trình một báo cáo mới" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Thời gian" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Thời gian báo cáo" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Tiêu đề báo cáo" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Đường liên kết video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Báo cáo sự việc nào đó" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Chi tiết báo cáo" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Bằng cách gửi tin nhắn tới" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Bằng cách gửi email" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Bằng cách gửi tweet với mã hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Bằng việc điền vào lá đơn này trên website của chúng tôi." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Bằng việc sử dụng ứng dụng này" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Báo cáo của bạn đã được lưu" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Tiêu đề báo cáo" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Yêu cầu gửi thêm thông tin" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Yêu cầu về địa điểm" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Đã yêu cầu" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Các yêu cầu cần có" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Gửi lại email xác nhận" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Thiết đặt lại" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Thiết đặt lại tất cả bộ lọc" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Thiết đặt lại mật khẩu" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Nhận thông tin về tên thành phố của quốc gia được chọn" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Tài khoản được quản lý bởi %s dịch vụ." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Bạn đã có tài khoản được quản lý bởi CrowdmapID! Hãy thử sử dụng email của CrowdmapID mà bạn có cùng mật khẩu để đăng nhập." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Vai trò" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Lưu" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Đã lưu" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Lưu &Thêm mới" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Lưu & Đóng lại" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Lưu lại báo cáo" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Thời khóa biểu" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Người lập thời khóa biểu" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Ngày" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Giờ" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Nhật trình người lập thời khóa biểu" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Phút" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Ngày trong tuần" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Tìm kiếm" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Tìm kết quả" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Mã an ninh" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Chọn tất cả" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Chọn một loại khung thông tin" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Chọn một loại đơn" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Chọn trong bản đồ" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Chọn theo nhu cầu" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Xin xác nhận bạn đã chọn đối tượng" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Chọn giao diện" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Gửi" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Xác nhận gửi" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Đang gửi đến" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Đã gửi" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Được gửi bởi" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Địa chỉ server" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Loại server" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Dịch vụ" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Dịch vụ tên người dùng" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Chỉ số dịch vụ người dùng" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Chia sẻ" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Dữ liệu được chia sẻ" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Việc chia sẻ đã được" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Đang chia sẻ" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Bản đồ ngắn hơn" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Hiển thị" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Hiển thị tất cả" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Hiển thị tin nhắn" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Đang hiển thị báo cáo từ %1$s đến %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "địa chỉ email của trang" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Đường dẫn" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Bản đồ nhỏ hơn" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Rất tiếc, bạn chưa có huy hiệu nào." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Nguồn" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Tên nguồn" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sắp xếp" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sắp xếp theo" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Đường dẫn đến nguồn" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Hỗ trợ SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Từ" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Bước" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Đệ trình một báo cáo" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Được đệ trình bởi %1$s thông qua %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Đệ trình thông qua SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Gửi SMS của bạn đến" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "trên điện thoại" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Thành công!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Đã nhập dữ liệu thành công" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Tên" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Khảo sát" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Hệ thống" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Bản đồ cao hơn" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Cổng kết nối TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Giao diện" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Sử dụng giao diện mặc định" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Thiết lập giao diện" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Đây" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hôm nay" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Tháng này" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Tuần này" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Năm này" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Đây là hồ sơ của bạn." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Thời gian" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Tiêu đề" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "đến" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hôm nay" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hôm nay tại" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Tổng số báo cáo" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Đã được dịch" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Mô tả đã được dịch" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Tiêu đề đã được dịch" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Dịch sang" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Dịch thuật" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Dịch thuật đã được lưu" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Được tin tưởng" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Loại" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Không thể gửi email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Báo cáo chưa được phân loại" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "chưa đọc" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Chưa xác nhận" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Cập nhật feed" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Tải lên" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Xem hướng dẫn tải lên báo cáo của chúng tôi:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Hướng dẫn tải lên XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Hướng dẫn tải lên CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Tải lên tập tin" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Tải lên báo cáo" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Với đơn bên dưới, bạn có thể nhập vào các dữ kiện của mình đến trung tâm xử lý của Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Báo cáo phải được tải lên ở định dạng CSV hoặc XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Khi có một ID nào đó đã tồn tại trước đó trong cơ sở dữ liệu, phần khung thông tin trong tập tin CSV/XML sẽ được bỏ qua." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Phải chứa tiêu đề và ngày tháng xảy ra sự kiện." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Nếu không có vĩ độ và kinh độ cho cột số liệu, phần địa điểm sẽ được thiết lập bởi Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Nếu nhập các dữ liệu bổ sung ví dụ như thông tin cá nhân và/hoặc khung thông tin mẫu đơn" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Có ít nhất một khung thông tin cá nhân (tên, họ, email) PHẢI được liệt kê. Các khung thông tin rỗng sẽ không được nhập dữ liệu vào" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Các khung thông tin của bạn cho menu xổ xuống, lựa chọn khoanh tròn và đánh dấu chọn vào các tùy chọn được cung cấp tùy theo trường hợp của bạn" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Đánh dấu tùy chọn được ngăn cách nhau bởi dấu phẩy, thí dụ nếu lựa chọn của bạn là trái cây và liên quan đến táo, xoài và nho, thì dòng thông tin bạn nên điền vào là \"táo,xoài,nho\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Khung giá trị ngày tháng nên ở định dạng: tt/nn/nnnn ví dụ ngày 3 tháng mười năm 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Mẫu báo cáo CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Tải lên thành công" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Tải lên video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "Đường dẫn" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Người dùng" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Tên người dùng" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Quản trị viên" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Xác nhận" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Đã xác nhận" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Báo cáo đã được xác nhận" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Xác nhận" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Xác nhận báo cáo này" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Phiên bản" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "thông qua" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Xem" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Xem" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Xem tất cả" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Xem tất cả feed" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Xem tất cả báo cáo" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Xem các đối tượng" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Xem thêm nữa" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Xem Hồ Sơ Công Cộng" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Xem báo cáo" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Xem báo cáo" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Xem video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Cho phép hiển thị" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Đang đợi chấp thuận" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Đang đợi xác nhận" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Bản đồ rộng hơn" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Mẫu đơn web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Cân nặng" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "Hàng tuần" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Đồng ý" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ngày hôm qua" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Bảng điều khiển của bạn" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Tập tin của bạn" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Phóng to" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Thu nhỏ" diff --git a/application/i18n/po/po-vi/upgrade.po b/application/i18n/po/po-vi/upgrade.po new file mode 100644 index 0000000000..5b930ba3d9 --- /dev/null +++ b/application/i18n/po/po-vi/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-07-10 20:23+0000\n" +"Last-Translator: Anh Phan \n" +"Language-Team: Vietnamese (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dữ liệu nhập vào không hợp lệ. Phần này chỉ được có giá trị 0 nếu không đồng ý và 1 nếu đồng ý." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Tự động nâng cấp" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Các nâng cấp hiện có" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Tiếp tục" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Nâng cấp" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "Hệ thống sắp sửa nâng cấp cơ sở dữ liệu của bạn từ phiên bản hiện tại" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "đến phiên bản cơ sở dữ liệu mới nhất" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Click vào \"Nâng Cấp\" và đợi trong giây lát." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Và nếu bạn muốn hệ thống sao lưu cơ sở dữ liệu của bạn, chỉ cần đánh dấu chọn vào nút bên dưới, hệ thống sẽ tự động thực hiện việc sao lưu." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Sao lưu cơ sở dữ liệu trước khi nâng cấp? (Khuyến nghị nên chọn)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Cập nhật cơ sở dữ liệu Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi đã được cập nhật! Trước khi tiếp tục, bạn cần cập nhật phiên bản mới nhất (%s) của cơ sở dữ liệu bạn hiện có." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Phiên bản cơ sở dữ liệu của bạn là phiên bản mới nhất." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Việc nâng cấp gặp phải lỗi" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Tự người dùng nâng cấp" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Trạng thái cập nhật của Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Các hướng dẫn bên dưới sẽ hướng dẫn chi tiết người dùng về việc nâng cấp các tiến trình của Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Tải về
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Tải về các phiên bản gần đây nhất từ Ushahidi" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Sao lưu
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Để đề phòng trục trặc có thể xảy ra, chúng tôi khuyên bạn nên chọn việc sao lưu toàn bộ dự án của mình.
Sao chép các tập tin
- Giải nén các tập tin dạng zip
- Tùy thuộc vào hệ điều hành đang chạy trên nền web server nào, thì hãy sử dụng công cụ/chế độ tương thích kèm theo (ví dụ: Telnet, FTP, SSH) để đăng nhập vào webserver và thay đổi nội dung của tất cả các thư mục với phần nội dung mới nhất vừa tạo.
Nâng cấp cơ sở dữ liệu
- Trước tiên hãy xác định phiên bản cơ sở dữ liệu dựa vào giá trị db_version trong phần bảng thiết lập hoặc dựa vào thông tin cập nhật từ Ushahidi hiển thị ở phía trên cùng của trang này.
- Nếu phiên bản của bạn hiện ở mốc 25, bạn cần nâng cấp theo hướng 25-26, 26-27, 27-28 và cứ tiếp tục như thế đối với các tập tin SQL mới nhất /sql trong thư mục.
- Với phần cơ sở dữ liệu phía client, nâng cấp cơ sở dữ liệu bởi việc thi hành lệnh trên tập tin thích hợp upgradex-x.sql.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Bước 3: Quan sát phía bên trong sql thư mục. Thiết lập lệnh nâng cấp-.sql file bắt đầu từ cơ sở dữ liệu hiện tại của phần mà bạn cài đặt cho đến tập tin nâng cấp sql cuối cùng." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Bước 4: Click vào phần \"Tiếp tục\"để nâng cấp các bảng dữ liệu cần thiết." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Để thực hiện chế độ nâng cấp tự động, click vào nút bên dưới." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Bạn hiện đang sử dụng phiên bản Ushahidi v%1$s kèm theo cơ sở dữ liệu có phiên bản %2$d được chạy trên nền %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Đang nâng cấp" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Để tiếp tục phần nâng cấp theo hướng dễ dàng, các thông tin này cần có máy chủ dạng FTP và website mà bạn đặt trên host đó." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Ví dụ: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Mật khẩu FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Tên người dùng FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Bạn hiện đang sử dụng phiên bản mới nhất từ Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Bạn không cần thiết phải thực hiện thao tác cập nhật." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Phiên bản cơ sở dữ liệu: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Cảnh báo: Phiên bản phần mềm trong version.php và cơ sở dữ liệu không khớp lẫn nhau." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Cảnh báo: phiên bản cơ sở dữ liệu trong version.php và cơ sở dữ liệu không khớp lẫn nhau." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Cơ sở dữ liệu:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "THỬ NGHIỆM!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Đang tải về phiên bản mới nhất từ Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Tập tin nhật trình" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Đã tải về thành công. Đang mở các gói dữ liệu..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Xảy ra lỗi khi đang tải về." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Đã mở các gói thành công. Đang sao chép các tập tin..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Xảy ra lỗi khi mở các gói dữ liệu." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Đã sao chép thành công. Đang cập nhật cơ sở dữ liệu..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Xảy ra lỗi khi sao chép các tập tin" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Đã sao lưu và cập nhật cơ sở dữ liệu thành công." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Thất bại khi thực hiện thao tác sao lưu cơ sở dữ liệu." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Đã cập nhật cơ sở dữ liệu thành công." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Đang xóa các tập tin đã được tải về..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "CẬP NHẬT THÀNH CÔNG. Xem Tập tin nhật trình" diff --git a/application/i18n/po/po-vi_VN/alerts.po b/application/i18n/po/po-vi_VN/alerts.po new file mode 100644 index 0000000000..b0b93a69f3 --- /dev/null +++ b/application/i18n/po/po-vi_VN/alerts.po @@ -0,0 +1,232 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "lĩnh vực thư không xuất hiện phần chứa địa chỉ thư hợp lệ?" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "địa chỉ thư đã được đăng kí và nhận được cảnh báo cho địa điểm đó." + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn." + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm cảnh báo nằm trong quốc gia %s." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "Phần khung thông tin di động dường như không chứa các chữ số hợp với yêu cầu." + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "Số di động này đã được đăng ký và nhận thông tin từ địa điểm đó." + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "Phần khung thông tin về điện thoại di động chứa dữ liệu không hợp lệ. Xin vui lòng nhập vào số liệu kèm theo mã quốc gia." + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "Bạn phải điền vào hoặc phần số di động của bạn hoặc địa chỉ email" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "Khung thông tin điện thoại di động cần được đánh dấu chọn." + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "Bạn vẫn chưa thiết lập bán kính hợp lệ trên bản đồ." + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "Bạn vẫn chưa chọn bán kính trên bản đồ." + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "Bạn vẫn chưa chỉnh cảnh báo về người gửi." + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "Bạn đã đăng ký phần cảnh báo cho các phần mục sau" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "Mã đã được xác nhận trước đó!" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "Không tìm thấy mã xác nhận! Xin vui lòng xác nhận rằng bạn đã điền vào đúng đường dẫn liên kết." + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "Mã của bạn không được xác nhận chính xác. Bạn sẽ nhận được cảnh báo về vấn đề này ngay lập tức." + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "Để xác nhận yêu cầu về cảnh báo của bạn, vui lòng truy cập" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "Quay trở về trang cảnh báo để tạo các cảnh báo khác" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "Yêu cầu nhận cảnh báo bằng email của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "Xin điền vào mã xác nhận từ email mà bạn nhận được ở phần bên dưới:" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "Yêu cầu gửi email cảnh báo của bạn VẪN CHƯA được lưu!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "Yêu cầu nhận email cảnh báo của bạn đã được lưu!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "Hiện hệ thống không thể xử lý yêu cầu xác nhận của bạn!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "Yêu cầu nhận cảnh báo bằng điện thoại của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "Xin điền vào mã xác nhận từ SMS mà bạn nhận được trên điện thoại ở phần bên dưới:" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "Yêu cầu gửi tin nhắn cảnh báo đến điện thoại của bạn VẪN CHƯA được lưu!" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "Yêu cầu nhận tin nhắn cảnh báo trên điện thoại của bạn đã được lưu!" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "Việc triển khai này vẫn chưa được thiết lập chính xác trong việc xử lý các cảnh báo" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "Bạn nhận được email này vì bạn đã đăng ký theo dõi việc nhận các cảnh báo. Nếu bạn không muốn nhận các cảnh báo trong thời gian tới hãy truy cập" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "Bạn sẽ không còn nhận các cảnh báo từ" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "Hiện chúng tôi không thể gỡ bỏ chế độ đăng ký từ bạn. Xin vui lòng xác nhận là bạn đã truy cập vào liên kết đúng cú pháp." + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "cảnh báo - xác nhận" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "Bạn sẽ không còn nhận được các cảnh báo về địa điểm này cho tới khi bạn xác nhận yêu cầu của mình." diff --git a/application/i18n/po/po-vi_VN/auth.po b/application/i18n/po/po-vi_VN/auth.po new file mode 100644 index 0000000000..2af9f18e45 --- /dev/null +++ b/application/i18n/po/po-vi_VN/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "email bạn đã nhập là một địa chỉ thư không hợp lệ." + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "xin lỗi, tài khoản người dùng đã tồn tại cho địa chỉ thư này." + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài." + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "lĩnh vực thư nhất thiết phải có." + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "lĩnh vực tên nhất thiết phải có." + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "Phần khung thông tin tên người dùng không được chứa các ký tự vốn không được cho phép." + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "lĩnh vực mật khẩu phải có độ dài ít nhất 8 kí tự." + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "xin vui lòng kiểm tra rằng bạn đã nhập chính xác thư và mật khẩu." + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "xin vui lòng nhập mật khẩu tương tự trong lĩnh vực mật khẩu thứ hai." + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "Phần khung thông tin mật khẩu không được để trống." + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang." + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "Phần mật khẩu hiện tại bạn đã điền vào cho tài khoản của mình không đúng. Vui lòng thử lại lần nữa." + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài." + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "Phần mật khẩu không được để trống." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang." + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "Xảy ra lỗi khi bạn đăng nhập." + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài." + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ." + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước." + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "Phần mật khẩu không được để trống." + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "Hệ thống máy chủ cho việc xác nhận hiện đang ngừng phục vụ. Xin vui lòng thử lại sau." + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang." + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "Phần xác nhận mật khẩu phải có mật khẩu trùng với phần mật khẩu mà bạn đã cung cấp." + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "Email mà bạn cung cấp không phải là một địa chỉ email hợp lệ." + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "Rất tiếc, chúng tôi hiện không có địa chỉ email của bạn" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "Phần khung thông tin email không được để trống." + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "Chỉ có người mới có thể hiệu chỉnh các Quản Trị Viên Đứng Đầu khác hoặc nâng cấp độ người dùng thông thường thành Quản Trị Viên." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "Định dạng về quyền phân phối dạng người dùng không hợp lệ." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "Phần khung thông tin vai trò phải có ít nhất 5 ký tự hoặc tối đa 30 ký tự về độ dài." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "Bạn phải xác định ít nhất một vai trò của người dùng." + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "Bạn phải chọn hoặc vai trò Quản Trị Viên hoặc Người Dùng thông thường." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "Phần dữ liệu về quên mật khẩu không hợp lệ" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "Đã yêu cầu về việc quên mật khẩu" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "Vai trò người dùng quản trị không thể được hiệu chỉnh." + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "Phần thông tin về đường dẫn liên kết đến hồ sơ công cộng chỉ được chứa các ký tự số và chữ." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "Rất tiếc, đường dẫn liên kết đến hồ sơ cá nhân này hiện đã được đăng ký cho người khác." + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "Phần khung thông tin liên kết đến hồ sơ cá nhân phải có ít nhất 2 ký tự hoặc tối đa 100 ký tự về độ dài." + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "Xin vui lòng kiểm tra phần thông tin đường dẫn liên kết đến hồ sơ công cộng là hợp lệ." + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "Phần khung thông tin đường dẫn liên kết đến hồ sơ công cộng không được để trống." + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa người dùng này không?" diff --git a/application/i18n/po/po-vi_VN/bug.po b/application/i18n/po/po-vi_VN/bug.po new file mode 100644 index 0000000000..7bf581c332 --- /dev/null +++ b/application/i18n/po/po-vi_VN/bug.po @@ -0,0 +1,68 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "Vui lòng điền vào mã an ninh." + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "Phần thông tin về địa chỉ email không chứa địa chỉ email hợp lệ?" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải chứa ít nhất 4 ký tự và tối đa 64 ký tự về độ dài." + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "lĩnh vực email được yêu cầu nếu phần lựa chọn được đánh dấu." + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "lĩnh vực lỗi nhất thiết phải có." + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "lĩnh vực chủ đề phải có ít nhất 3 kí tự độ dài." + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "lĩnh vực chủ đề nhất thiết phải có." + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "lĩnh vực tên phải chứa ít nhất 3 ký tự về độ dài." + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "lĩnh vực tên nhất thiết phải có." diff --git a/application/i18n/po/po-vi_VN/category.po b/application/i18n/po/po-vi_VN/category.po new file mode 100644 index 0000000000..1adc07fa95 --- /dev/null +++ b/application/i18n/po/po-vi_VN/category.po @@ -0,0 +1,95 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 15:50+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "lĩnh vực màu sắc phải có độ dài 6 kí tự." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "lĩnh vực màu sắc nhất thiết phải có." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "lĩnh vực mô tả nhất thiết phải có." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "Phần khung thông tin về hỉnh ảnh chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "lĩnh vực hình ảnh không xuất hiện để chứa tập tin hợp lệ." + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "Phần khung thông tin tiêu đề phải chứa ít nhất 3 ký tự và tối đa 80 ký tự về độ dài." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "Phần khung thông tin về tiêu đề không được để trống." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "Bạn không thể giảm cấp phân loại của phần phân loại khi phần đó đã được giảm cấp." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "Phân loại gốc không tồn tại." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "Phần khung thông tin về phân loại gốc phải ở dạng số." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "Phần khung thông tin về phân loại gốc phải không thể mang thuộc tính là phân loại đặc biệt" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "Phần khung thông tin về thư mục gốc không được để trống." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "Phần phân loại và phân loại gốc không được phép ở cùng dạng." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "Phân loại đặc biệt không được phép mang thuộc tính là phân loại giảm cấp." diff --git a/application/i18n/po/po-vi_VN/comments.po b/application/i18n/po/po-vi_VN/comments.po new file mode 100644 index 0000000000..8f88a9676c --- /dev/null +++ b/application/i18n/po/po-vi_VN/comments.po @@ -0,0 +1,63 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 17:48+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "xin vui lòng nhập một mã an ninh hợp lệ." + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "xin vui lòng nhập mã an ninh." + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "bạn đã nhập sai mã an ninh." + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài." + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "Phần khung thông tin về bình luận không được để trống." + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn." diff --git a/application/i18n/po/po-vi_VN/contact.po b/application/i18n/po/po-vi_VN/contact.po new file mode 100644 index 0000000000..b0b36087a5 --- /dev/null +++ b/application/i18n/po/po-vi_VN/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 17:05+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "Vui lòng điền vào mã an ninh hợp lệ." + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "Vui lòng điền vào mã an ninh." + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn." + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "Phần nội dung tin nhắn không được để trống." + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài." + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài." + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "Phần khung thông tin về chủ đề không được để trống." + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "Xảy ra lỗi khi gửi đi tin nhắn của bạn." diff --git a/application/i18n/po/po-vi_VN/core.po b/application/i18n/po/po-vi_VN/core.po new file mode 100644 index 0000000000..4f9313b6ee --- /dev/null +++ b/application/i18n/po/po-vi_VN/core.po @@ -0,0 +1,159 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-09-05 16:59+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "tập tin cấu hình" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "trình điều khiển" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "chương trình điều khiển" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "chương trình điều khiển %s cho phần thư viện %s phải mang tính hoàn thiện cho phần giao diện %s." + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "Không tìm thấy chương trình điều khiển %s sử dụng cho thư viện %s." + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "Bạn có thể truy cập vào trang chủ hoặc thử lại." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "Không thể hoàn thành yêu cầu" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "trình giúp đỡ" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "Loại tập tin được yêu cầu, .%s, không được phép xuất hiện trong phần xem tập tin cấu hình của bạn." + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "Phương thức %s không hợp lệ được gọi trong %s" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "Thuộc tính %s không tồn tại trong class %s." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "thư viện" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "Thư mục chứa tập tin nhật trình không thể ghi được dữ liệu: %s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "mô hình" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi không thể xác định được trình điều khiển để xử lý yêu cầu này: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "Xin vui lòng thiết đặt route mặc định trong phần config/routes.php" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "Trang mà bạn yêu cầu, %s, không được tìm thấy." + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "Gửi báo cáo về vấn đề này đến Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "Phần yêu cầu %s, %s, không được tìm thấy." + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "Stack Trace" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "Đã tải trong vòng {execution_time} giây, sử dụng {memory_usage} bộ nhớ. Được tạo bởi Ushahidi v%s." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Chỉ có duy nhất một yêu cầu được thực hiện cho mỗi tiến trình trong mỗi trang." + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "Uncaught %s: %s trong tập tin %s trên dòng %s" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "xem" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "Bạn phải thiết lập xem tên tập tin trước khi gọi phần render." diff --git a/application/i18n/po/po-vi_VN/database.po b/application/i18n/po/po-vi_VN/database.po new file mode 100644 index 0000000000..77097ed099 --- /dev/null +++ b/application/i18n/po/po-vi_VN/database.po @@ -0,0 +1,29 @@ +# +# Translators: +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 07:15+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "Lỗi cơ sở dữ liệu: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "Không tìm thấy bảng \"%s\" trong cơ sở dữ liệu. Hãy chắc chắn rằng bạn đang sử dụng phiên bản mới nhất của cơ sở dữ liệu dành cho phiên bản Ushahidi này." diff --git a/application/i18n/po/po-vi_VN/datetime.po b/application/i18n/po/po-vi_VN/datetime.po new file mode 100644 index 0000000000..177e55c1c8 --- /dev/null +++ b/application/i18n/po/po-vi_VN/datetime.po @@ -0,0 +1,218 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 15:26+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "sáng" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "T6" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "Thứ sáu" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "T2" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "Thứ hai" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "tối" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "T7" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "Thứ bảy" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "CN" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "Chủ nhật" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "T5" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "Thứ năm" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "T3" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "Thứ ba" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "T4" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "thứ 4" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "Th1" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "tháng 1" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "Th2" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "tháng 2" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "Th3" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "tháng 3" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "Th4" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "tháng 4" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "Th5" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "tháng 5" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "Th6" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "tháng 6" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "Th7" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "tháng 7" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "Th8" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "Tháng 8" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "Th9" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "tháng 9" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "Th10" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "tháng 10" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "Th11" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "tháng 11" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "Th12" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "tháng 12" diff --git a/application/i18n/po/po-vi_VN/feeds.po b/application/i18n/po/po-vi_VN/feeds.po new file mode 100644 index 0000000000..0fe2854615 --- /dev/null +++ b/application/i18n/po/po-vi_VN/feeds.po @@ -0,0 +1,55 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 15:33+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "NGÀY THÁNG" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "Phần khung thông tin tên feed phải có ít nhất 3 ký tự \n\t\t\ttối đa 70 ký tự về độ dài." + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "hãy nhập tên của nguồn cung cấp dữ liệu." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "hãy nhập đường dẫn liên kết của nguồn cung cấp dữ liệu." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "NGUỒN" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "Tiêu đề" diff --git a/application/i18n/po/po-vi_VN/footer.po b/application/i18n/po/po-vi_VN/footer.po new file mode 100644 index 0000000000..3aa9bd6e73 --- /dev/null +++ b/application/i18n/po/po-vi_VN/footer.po @@ -0,0 +1,23 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 17:26+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl hiện chưa được cài đặt trong hệ thống này." diff --git a/application/i18n/po/po-vi_VN/form.po b/application/i18n/po/po-vi_VN/form.po new file mode 100644 index 0000000000..ef6118906f --- /dev/null +++ b/application/i18n/po/po-vi_VN/form.po @@ -0,0 +1,123 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 15:44+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "Giá trị mặc định bạn đã cung cấp cho lĩnh vực này là không hợp lệ." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "lĩnh vực tên phải có ít nhất 3 ký tự hoặc tối đa 200 ký tự về độ dài." + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "xin hãy nhập giá trị 0 đến 50 cho lĩnh vực chiều cao." + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "bạn đã nhập một giá trị không hợp lệ cho lĩnh vực ngày." + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin ngày tháng." + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "lĩnh vực tên phải có ít nhất 3 ký tự hoặc tối đa 100 ký tự về độ dài." + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "xin vui lòng nhập lĩnh vực tên." + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "Phần khung thông tin về tên mà bạn vừa điền vào đã có trong mẫu đơn này. Vui lòng điền vào một phần khác." + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "bạn đã nhập một giá trị không hợp lệ cho lĩnh vực được yêu cầu." + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin được yêu cầu." + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "xin vui lòng chọn một loại lĩnh vực hợp lệ." + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "Xin vui lòng chọn một loại lĩnh vực." + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "Xin điền vào giá trị của khung thông tin về độ rộng trong khoảng 0 đến 300." + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "Xin điền vào mô tả về mẫu đơn." + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "Không thể xóa mẫu đơn mặc định." + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào." + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào." + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "Phần khung thông tin tên của mẫu đơn phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "Vui lòng điền vào tên của mẫu đơn." + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "Một mẫu đơn với tiêu đề như thế đã tồn tại. Vui lòng chọn một phần khác." diff --git a/application/i18n/po/po-vi_VN/imap.po b/application/i18n/po/po-vi_VN/imap.po new file mode 100644 index 0000000000..3e6aa3aa22 --- /dev/null +++ b/application/i18n/po/po-vi_VN/imap.po @@ -0,0 +1,28 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 17:27+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "Không thể mở luồng dữ liệu dạng IMAP." + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "Dịch vụ thư này hiện không được hỗ trợ." diff --git a/application/i18n/po/po-vi_VN/installer.po b/application/i18n/po/po-vi_VN/installer.po new file mode 100644 index 0000000000..c7d79d0b8f --- /dev/null +++ b/application/i18n/po/po-vi_VN/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 17:06+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "Đường dẫn gốc" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "Cơ sở dữ liệu" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "Host của cơ sở dữ liệu" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "Nếu bạn thực thi Ushahidi từ chính máy tính của bạn, điều này có nghĩa rằng đây là một \"localhost\". Nếu bạn thực thi Ushahidi từ web server, bạn sẽ nhận được thông tin về host của bạn từ nhà cung cấp dịch vụ web hosting." + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "Tên cơ sở dữ liệu" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "Tên của cơ sở dữ liệu mà bạn muốn chạy Ushahidi trong đó" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "Để biết thêm thông tin, vui lòng truy cập phần đề mục này trên hệ thống wiki có bàn về cơ sở dữ liệu với đầy đủ thông tin chi tiết." + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "Ngôn ngữ mặc định (địa phương)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "Mỗi phần phát triển của Ushahidi đi kèm theo đó là các gói ngôn ngữ ứng với từng quốc gia sở tại. Bạn cũng có thể thêm vào phần dịch của riêng bạn." + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "Vô hiệu hóa" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "kích hoạt" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "danh sách dưới đây là tóm tắt về các lỗi mà hệ thống gặp phải" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "Địa điểm trên máy chủ của bạn nơi đặt các tập tin từ Ushahidi. Hệ thống sẽ tự động xác định giá trị này, hãy kiểm tra xem giá trị này có đúng và hợp lệ hay không. Nếu phần thông tin này bị để trống, thì cũng đừng quá lo lắng, điều này có nghĩa rằng Ushahidi đã được cài đặt ở thư mục gốc." + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "Đã hoàn tất" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "Tổng quan" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google chìa khóa API" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "Bất kỳ ai cũng có thể nhận được khóa api này. Bạn cũng có thể làm điều đó ngay bây giờ" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "Quay trở lại" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "CÀI ĐẶT NÂNG CAO" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "Nhận tất cả các thiết lập cơ bản thông qua quá trình bao gồm 5 bước này. Bao gồm máy chủ, bản đồ, tên trang và chi tiết về các liên hệ cơ bản." + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "CÀI ĐẶT CƠ BẢN" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "Đơn giản và nhanh chóng. Mọi điều bạn cần là một thư mục gốc của website do bạn lập cùng thông tin về cơ sở dữ liệu mà bạn thiết lập. Chọn tùy chọn này nếu bạn muốn trình cài đặt nhanh chóng hơn theo kiểu tự động, dĩ nhiên là bạn hoàn toàn có đầy đủ quyền thiết lập và chỉnh sửa bất cứ khi nào sau khi quá trình cài đặt đã hoàn tất." + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "Tiếp tục" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "Chào mừng bạn đến phần cài đặt dành cho máy chủ Ushahidi. Chọn loại cài đặt mà bạn mong muốn sử dụng ở phía dưới." + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "cài đặt thành công" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "thư máy chủ" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "Máy chủ host dành cho thư" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Thí dụ: mail.websitecủabạn.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "Mật khẩu thư máy chủ" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "Mật khẩu bạn dùng để đăng nhập vào tài khoản email của mình" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "Cổng kết nối hòm thư máy chủ" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Các cổng thông thường: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "Loại máy chủ mail" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet Message Access Protocol (IMAP) hoặc Post Office Protocol (POP). Điều gì là khác nhau giữa hai phần này?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "Tên người dùng máy chủ mail" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "Nếu bạn sử dụng Gmail, Hotmail hoặc Yahoo Mail, điền vào đầy đủ địa chỉ email dưới dạng tên người dùng." + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "Bản đồ" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "Nhà cung cấp bản đồ" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi có thể thao tác trơn tru với bất kỳ nhà cung cấp dịch vụ bản đồ nào: Google, Bing hoặc Open Street Map. Chọn loại nhà cung cấp có thông tin hữu dụng nhất ở khu vực của bạn." + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "Các bước khác..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "Mật khẩu" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "Mật khẩu đối với cơ sở dữ liệu" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "Trước đó" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "Xin vui lòng khởi động lại máy chủ Apache của bạn" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "Bật hoặc vô hiệu hóa kết nối dạng SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "Một vài máy chủ mail cung cấp cho bạn tùy chọn sử dụng kết nối dạng SSL khi thực hiện việc kết nối truyền tải dữ liệu. Bạn nên dùng loại kết nối này để tăng tính bảo mật cho trang của bạn." + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "Cài đặt hệ thống máy chủ SMS" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "Địa chỉ email của trang" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "Địa chỉ email nhận cảnh báo" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "Khi trang của bạn nhận đăng ký từ các người dùng khác, những người đăng ký sẽ nhận các email từ địa chỉ email này. Địa chỉ email này không cần thiết phải giống hệ địa chỉ email của trang." + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "Việc mở rộng thao tác giao tiếp thông qua email sẽ được chọn lựa thông qua địa chỉ này" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "Tên trang" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "Tên của trang mà bạn muốn lập" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "Các thẻ đánh dấu liên quan đến trang" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "Thẻ đánh dấu của bạn" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "Các tập tin và thư mục được liêkt bên dưới cần được thiết lập quyền có thể ghi dữ liệu trên hệ thống web của bạn." + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

Sau đây là hướng dẫn về các quyền hạn liên quan đến việc thay đổi nội dung tập tin:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "Trước khi bắt đầu, bạn cần phải chắc chắn rằng các tập tin và thư mục sau đây có được quyền ghi dữ liệu trên hệ thống máy chủ web của bạn. Bao gồm cả các quyền truy cập và thay đổi nội dung tập tin." + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "Đối với quá trình cài đặt, xin vui lòng đọc các thông tin sau đây." + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "Table Prefix" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "Thông thường bạn sẽ không cần thay đổi table prefix. Tuy nhiên, nếu bạn chạy nhiều tiến trình cài đặt liên quan đến Ushahidi từ một cơ sở dữ liệu duy nhất, bạn có thể thực hiện việc thay đổi các tiền tố đứng trước tên bảng dữ liệu tại đây." + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "Tiêu đề" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "Để đăng nhập, hãy truy cập" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "Tải lên dữ liệu báo cáo" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "Tên người dùng" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "Tên cơ sở dữ liệu của bạn" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "và sử dụng các phần ủy nhiệm tiếp sau đây" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "Xem trang web của bạn" diff --git a/application/i18n/po/po-vi_VN/layer.po b/application/i18n/po/po-vi_VN/layer.po new file mode 100644 index 0000000000..f0c468b9cd --- /dev/null +++ b/application/i18n/po/po-vi_VN/layer.po @@ -0,0 +1,65 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 07:03+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "lĩnh vực màu sắc phải chứa độ dài 6 ký tự." + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "lĩnh vực màu sắc nhất thiết phải có." + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "lĩnh vực tập tin chứa dạng tập tin không hợp lệ. Chỉ chấp nhận các định dạng .KMZ và .KML." + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "Phần khung thông tin về tập tin chứa dạng tập tin không hợp lệ." + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 80 ký tự về độ dài." + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "lĩnh vực tên nhất thiết phải có." + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "Cả hai phần đường dẫn liên kết KML hoặc tập tin đều phải có." + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "Bạn không thể vừa chọn tập tin KML và đường dẫn liên kết kèm theo." + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-vi_VN/libraries.po b/application/i18n/po/po-vi_VN/libraries.po new file mode 100644 index 0000000000..f7fddf02f9 --- /dev/null +++ b/application/i18n/po/po-vi_VN/libraries.po @@ -0,0 +1,119 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 07:18+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "Không thể kết nối đến máy chủ Akismet." + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "Không nhận được tín hiệu phản hồi từ Akismet" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "Thư viện API: %s dành cho %s class không được tìm thấy. Vui lòng kiểm tra lại bảng routing cho tác vụ API." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "Khóa Akismet API của bạn không hợp lệ." + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "Lỗi khi thực thi phương pháp gửi!
Vui lòng kiểm tra liệu PHP có hỗ trợ OpenSSL hay không và liệu phiên bản PHP mới hơn bản 5.2." + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "Xin vui lòng xác nhận địa chỉ gửi (ĐẾN)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "Xin vui lòng xác định địa chỉ nguồn (TỪ)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "Phương pháp gửi không được hỗ trợ!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "Thư viện API %s không hợp lệ. Tất cả các thư viện API phải là lớp con của %s." + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "thư mục %s không thể xóa được." + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "Lỗi xảy ra khi giải nén: %s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "Thất bại khi tải về phiên bản mới nhất của Ushahidi. Trạng thái mã HTTP" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "tập tin %s không thể sao chép được." + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "tập tin %s không thể xóa được." + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Đoạn mã lệnh để nâng cấp Ushahidi" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "tập tin nén Ushahidi được tải về %s không thể ghi dữ liệu lên." + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s hiện không phải là lớp RiverID hiện có." diff --git a/application/i18n/po/po-vi_VN/maintenance.po b/application/i18n/po/po-vi_VN/maintenance.po new file mode 100644 index 0000000000..b6134a4e51 --- /dev/null +++ b/application/i18n/po/po-vi_VN/maintenance.po @@ -0,0 +1,25 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 07:17+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "Rất tiếc, trang của chúng tôi hiện đang ở trạng thái bảo trì. hãy thử lại sau ít phút nữa." diff --git a/application/i18n/po/po-vi_VN/message.po b/application/i18n/po/po-vi_VN/message.po new file mode 100644 index 0000000000..d00606a041 --- /dev/null +++ b/application/i18n/po/po-vi_VN/message.po @@ -0,0 +1,63 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 17:49+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "xin vui lòng nhập mã an ninh hợp lệ." + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "xin vui lòng nhập mã an ninh." + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự." + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn." + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "Phần khung thông tin về bình luận không được để trống." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài." + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "Phần khung thông tin tên không được để trống." + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "Phần khung thông tin về số điện thoại không hợp lệ." diff --git a/application/i18n/po/po-vi_VN/mhi.po b/application/i18n/po/po-vi_VN/mhi.po new file mode 100644 index 0000000000..921a04bec2 --- /dev/null +++ b/application/i18n/po/po-vi_VN/mhi.po @@ -0,0 +1,53 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 15:53+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "xin nhập một mã an ninh hợp lệ." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "hãy nhập mã an ninh." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "linh vực thư không xuất hiện để chứa địa chỉ thư hợp lệ." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "xin cung cấp một địa chỉ thư hợp lệ." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "lĩnh vực tin nhắn nhất thiết phải có." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "lĩnh vực chủ đề nhất thiết phải có." diff --git a/application/i18n/po/po-vi_VN/notifications.po b/application/i18n/po/po-vi_VN/notifications.po new file mode 100644 index 0000000000..76e6735e9b --- /dev/null +++ b/application/i18n/po/po-vi_VN/notifications.po @@ -0,0 +1,93 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 17:41+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "Tin nhắn này đã được gửi từ website của bạn." + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "Đăng nhập dạng Quản Trị Viên" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "một bình luận mới đã được gửi tới website của bạn trả lời về:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "Bình luận mới" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "Một tin nhắn mới dạng email đã được gửi đến website của bạn." + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "Tin nhắn email mới" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "Một báo cáo mới đã được gửi đến website của bạn." + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "Báo cáo mới" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "Một tin nhắn mới đã được gửi đến website của bạn." + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "văn bản tin nhắn mới" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "Bạn đã nhận được một cảnh báo mới" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "Cảnh báo mới!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "Bạn đã nhận được một tin nhắn riêng mới" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "Tạo mới tin nhắn riêng" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "Để trả lời vui lòng truy cập:" diff --git a/application/i18n/po/po-vi_VN/page.po b/application/i18n/po/po-vi_VN/page.po new file mode 100644 index 0000000000..a46c1c1994 --- /dev/null +++ b/application/i18n/po/po-vi_VN/page.po @@ -0,0 +1,38 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 07:14+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "hãy nhập vào tiêu đề trang." + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "Phần tiêu đề trang phải có ít nhất 3 ký tự và tối đa 150 ký tự về độ dài." + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "hãy nhập vào tên hiển thị tab của trang." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "hãy nhập vào mô tả trang." diff --git a/application/i18n/po/po-vi_VN/permissions.po b/application/i18n/po/po-vi_VN/permissions.po new file mode 100644 index 0000000000..2c52c31411 --- /dev/null +++ b/application/i18n/po/po-vi_VN/permissions.po @@ -0,0 +1,113 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "Xem báo cáo" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "Tạo/Chỉnh Sửa/Xóa báo cáo" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "chấp thuận báo cáo" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "Xác nhận báo cáo" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "Quản lý các bình luận báo cáo" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "Tải về báo cáo" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "Tải lên báo cáo" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "Quản lý tin nhắn" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "Quản lý tin nhắn từ người báo cáo" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "Xem trạng thái" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "Chỉnh sửa Thiết Lập" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "Quản lý Khung Điều Khiển" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "Quản lý người dùng" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "Quản lý Vai Trò" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "Có thể đi đến" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "Quản lý điểm đến" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "Truy cập giao diện Quản Trị Viên" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "Truy cập giao diện Thành Viên" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-vi_VN/private_message.po b/application/i18n/po/po-vi_VN/private_message.po new file mode 100644 index 0000000000..b7556455bb --- /dev/null +++ b/application/i18n/po/po-vi_VN/private_message.po @@ -0,0 +1,48 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 07:12+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "Chỉ số gốc phải ở dạng số" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "lĩnh vực về đối tượng nhận được yêu cầu." + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "Người dùng mà bạn đang muốn gửi tin nhắn không tồn tại" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "lĩnh vực chủ đề được yêu cầu." + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "Chủ đề phải có trong khoảng3 ký tự và 150 ký tự" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "lĩnh vực tin nhắn được yêu cầu." diff --git a/application/i18n/po/po-vi_VN/report.po b/application/i18n/po/po-vi_VN/report.po new file mode 100644 index 0000000000..b00b41d39c --- /dev/null +++ b/application/i18n/po/po-vi_VN/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-09-06 17:44+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "lỗi!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm báo cáo nằm trong quốc gia %s." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "Vui lòng điền vào một giá trị hợp lệ cho phần khung thông tin của \"%s\"." + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "Phần khung thông tin \"%s\" phải ở dạng số." + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "Phần khung thông tin \"%s\" không được để trống." + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "Phần khung thông tin \"%s\" không tồn tại." + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "Tài khoản của bạn không thể chỉnh sửa phần khung thông tin \"%s\"." + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "Phần khung thông tin \"%s\" phải chứa một địa chỉ email hợp lệ." + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "Phần khung thông tin \"%s\" phải chứa một số điện thoại hợp lệ." + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "Phần khung thông tin \"%s\" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN)." + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "Phần khung thông tin \"%s\" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN)." + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "Xin vui lòng lựa chọn một mục hợp lệ đã bao gồm trong phần tải về." + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "Xin vui lòng lựa chọn một mục hợp lệ đã bao gồm trong phần tải về." + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Xác Nhận\" hoặc \"Báo Cáo Đã Được Xác Nhận\" hoặc cả hai." + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Xác Nhận\" hoặc \"Báo Cáo Đã Được Xác Nhận\" hoặc cả hai." + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "Xin vui lòng chọn \"Các Báo Cáo Đang Đợi Chấp Nhận\" hoặc \"Chấp Nhận Báo Cáo\" hoặc cả hai." + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "Xin vui lòng lựa chọn một loại báo cáo hợp lệ để tải về." + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "Xin vui lòng chọn một loại báo cáo hợp lệ để tải về." + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "Xin vui lòng chọn một loại báo cáo hợp lệ để tải về." + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "Bạn phải chọn một định dạng để tải về. Chọn hoặc CSV hoặc XML." + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "Xin vui lòng chọn một loại báo cáo hợp lệ để tải về ở" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "lĩnh vực thông tin về ngày gửi TỪ không xuất hiện phần chứa định dạng tập tin hợp lệ." + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi Từ. Ngày này không thể lớn hơn ngày hiện tại." + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "Phần khung thông tin về sáng/tối không chứa giá trị hợp lệ." + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "Phần khung thông tin về \"Phân Loại\" không chứa định dạng phân loại hợp lệ." + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "Phần khung thông tin về \"Phân Loại\" không được để trống." + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ." + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ." + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "Phần khung thông tin ngày tháng không được để trống." + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "Phần khung thông tin về \"Mô Tả\" không được để trống." + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "Phần khung thông tin về giờ chứa định dạng giờ không hợp lệ." + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "Phần khung thông tin về giờ không được để trống." + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin." + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin." + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "Phần khung thông tin về phút chứa dạng phút không hợp lệ." + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "Phần khung thông tin về phút không được để trống." + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "Phần liên kết đường dẫn đến nguồn tin không chứa đường dẫn hợp lệ." + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 2MB." + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Phần khung thông tin về hỉnh ảnh tải lên chứa định dạng hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF." + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "Phần khung thông tin về hình ảnh được tải lên chứa định dạng tập tin không hợp lệ." + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin." + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin." + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Phần khung thông tin \"Tiêu Đề Báo Cáo\" phải chứa ít nhất 3 ký tự và tối đa 200 ký tự về độ dài." + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "Phần khung thông tin \"Tiêu Đề Báo Cáo\" không được để trống." + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa báo cáo về việc này không?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "Phần liên kết đường dẫn video không chứa đường dẫn hợp lệ." + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ." + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ." + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "Báo cáo này đã có phần chuyển ngữ dành cho dạng ngôn ngữ này." + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ." + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "Báo Cáo Gốc và phần Dịch có cùng ngôn ngữ với nhau (ngôn ngữ bản địa)." + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "Phần khung thông tin ngôn ngữ không được để trống." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "Phần khung thông tin \"Tên Địa Điểm\" phải có ít nhất 3 ký tự và tối đa 200 ký tự về độ dài." + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "Phần khung thông tin \"Tên Địa Điểm\" không được để trống." + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "Phần khung thông tin về kinh độ không chứa định dạng kinh độ hợp lệ." + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Phần khung thông tin về kinh độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ." + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài." + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "Phần khung thông tin họ phải có ít nhất 2 ký tự và tối đa 100 ký tự về độ dài." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "Phần khung thông tin về ngày gửi ĐẾN không chứa định dạng tập tin hợp lệ." + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi ĐẾN. Ngày này không thể lớn hơn ngày hiện tại." + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "Ngày GỬI TỪ không được lớn hơn ngày GỬI ĐẾN." diff --git a/application/i18n/po/po-vi_VN/reporters.po b/application/i18n/po/po-vi_VN/reporters.po new file mode 100644 index 0000000000..0ea5a7fc32 --- /dev/null +++ b/application/i18n/po/po-vi_VN/reporters.po @@ -0,0 +1,73 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 16:17+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ." + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "Phần khung thông tin về Người Báo Cáo không chứa định dạng tập tin hợp lệ." + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "lĩnh vực về Cấp Độ Người Báo Cáo không chứa định dạng tập tin hợp lệ." + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "lĩnh vực tên địa điểm phải có ít nhất 3 ký tự và không hơn 200 ký tự về độ dài." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "lĩnh vực tên địa điểm được yêu cầu." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "lĩnh vực kinh độ không chứa định dạng kinh độ hợp lệ." + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "lĩnh vực kinh độ được yêu cầu. Xin vui lòng click vào bản đồ để chọn địa điểm." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "Người Báo Cáo không hợp lệ" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "Người Báo Cáo không hợp lệ" diff --git a/application/i18n/po/po-vi_VN/reports.po b/application/i18n/po/po-vi_VN/reports.po new file mode 100644 index 0000000000..356b83d38e --- /dev/null +++ b/application/i18n/po/po-vi_VN/reports.po @@ -0,0 +1,53 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 07:06+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "Xin xác nhận bạn đã chọn đối tượng" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "Xin xác nhận bạn đã chọn đối tượng" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "Báo cáo phải được phân loại trước khi được chấp thuận" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "Bạn không có quyền thực hiện thao tác này" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "Bạn phải chọn một tập tin để tải lên" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "Tập tin tải lên phải có định dạng .csv hoặc .xml" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "lĩnh vực thông tin tập tin tải lên dường như không chứa tập tin hợp lệ" diff --git a/application/i18n/po/po-vi_VN/roles.po b/application/i18n/po/po-vi_VN/roles.po new file mode 100644 index 0000000000..c307a2351c --- /dev/null +++ b/application/i18n/po/po-vi_VN/roles.po @@ -0,0 +1,64 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 08:03+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin Mô Tả phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "Phần khung thông tin về Mô Tả nhất thiết phải có." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "Phần khung thông tin Tên chỉ được chứa các ký tự hoặc số." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "Phần khung thông tin Tên phải có ít nhất 2 ký tự hoặc tối đa 30 ký tự về độ dài." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "lĩnh vực tên nhất thiết phải có." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "lĩnh vực Cấp Độ Truy Cập phải có giá trị từ 0 - 100." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "Phần khung thông tin Cấp Độ Truy Cập phải có giá trị từ 0 - 100." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "lĩnh vực Quyền Hạn phải có giá trị giữa 0 - 100." diff --git a/application/i18n/po/po-vi_VN/settings.po b/application/i18n/po/po-vi_VN/settings.po new file mode 100644 index 0000000000..17d375dffa --- /dev/null +++ b/application/i18n/po/po-vi_VN/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "lĩnh vực cho phép bình luận dường như không chứa giá trị hợp lệ." + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "lĩnh vực cho phép bình luận nhất thiết phải có." + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "lĩnh vực thông tin bao gồm nguồn cung cấp dữ liệu dường như không chứa giá trị hợp lệ." + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "lĩnh vực bao gồm nguồn cung cấp dữ liệu nhất thiết phải có." + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ." + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "Phần khung thông tin cho phép cảnh báo không được để trống." + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ." + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "Phần khung thông tin cho phép báo cáo không được để trống." + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "Phần khung thông tin về trạng thái chia sẻ chứa giá trị không hợp lệ." + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "Phần khung thông tin trạng thái chia sẻ không được để trống." + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Số lượng mặc định các bản tin được tải về với từng yêu cầu API" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Số lượng tối đa các bản tin được tải về với từng yêu cầu API" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Số lượng tối đa các API được yêu cầu với từng địa chỉ IP" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Phần khung thông tin về Akismet không chứa giá trị hợp lệ." + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Phần khung thông tin về Akismet không chứa giá trị hợp lệ." + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "Phần khung thông tin về hỉnh ảnh băng rôn chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF." + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "Xin chắc rằng \"Hình ảnh băng rôn\" có dung lượng nhỏ hơn 250 KB." + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "Phần khung thông tin về \"Hình Ảnh Băng Rôn\" không chứa định dạng tập tin hợp lệ." + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "Phần khung thông tin số trang trong bộ nhớ đệm không được để trống." + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "Phần khung thông tin về số trang trong bộ nhớ đệm không chứa giá trị hợp lệ." + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không chứa giá trị hợp lệ." + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống." + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "Có vẻ như phía máy chủ của bạn vẫn chưa được cấu hình để dọn dẹp các đường dẫn liên kết. Bạn cần thay đổi cấu hình của phía máy chủ do bạn đảm nhiệm trước khi bạn muốn dọn dẹp các đường dẫn liên kết. Tìm hiểu thêm tại phần bài mục này trong diễn đàn" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết sạch (không có phần \"index.php\" trong đường dẫn)." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "Bật tính năng dọn dẹp đường dẫn liên kết" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "Dọn dẹp đường dẫn liên kết" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Phần khung thông tin về số lượng Clickatel API không được quá 200 ký tự về độ dài." + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống." + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Phần khung thông tin về Mật Khẩu Clickatel phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài." + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Phần khung thông tin mật Khẩu Clickatel không được để trống." + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Phần khung thông tin Tên Người Dùng Clickatel không được quá 50 ký tự về độ dài." + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Phần khung thông tin về Tên Người Dùng Clickatel không được để trống." + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "Chỉnh cấu hình bản đồ" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "Địa điểm mặc định" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "Phần khung thông tin về màu sắc của feed chứa định dạng không hợp lệ." + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "Phần khung thông tin màu sắc không được vượt quá 6 ký tự về độ dài." + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "Phần khung thông tin về màu sắc không được để trống." + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "Chế độ xem bản đồ mặc định" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "Mức độ phóng to mặc định" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "Nhận danh sách các thành phố từ Geonames" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài." + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số." + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Phần khung thông tin về Mật Khẩu của máy chủ mail phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài." + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "Phần mật khẩu mail phía máy chủ không được để trống." + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài." + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số." + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài." + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "Phần loại mail phía máy chủ không được để trống." + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "Phần khung thông tin Tên Người Dùng Máy Chủ Mail không được quá 50 ký tự về độ dài." + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "Phần tên người dùng mail phía máy chủ không được để trống." + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Tùy chọn cài đặt Facebook" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Facebook mới tại" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "Các thiết lập sao cho phép người dùng đăng nhập thông qua Facebook, thao tác này does not tạo một ứng dụng facebook cho dự án của bạn" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook App Secret" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Phần khung thông tin Google Analytics phải chứa một Web Property ID hợp lệ theo định dạng UA-XXXXX-XX." + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "Bật HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết không an toàn; không có phần \"https://\" ở phía trước đường dẫn liên kết" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "Tùy chọn này cho phép truy cập Ushahidi thông qua các chế độ truy cập an toàn; có phần \"https://\" ở phía trước đường dẫn liên kết" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "Phần khung thông tin về số lượng đối tượng mỗi trang (Frontend) chứa giá trị không hợp lệ." + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "Phần khung thông tin số lượng đối tượng mỗi trang (Frontend) không được để trống." + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) chứa giá trị không hợp lệ." + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) không được để trống." + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API." + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "Mức độ phóng to" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "Chọn một nhà cung cấp bản đồ" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "Điền vào khóa API mới" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "Nhận một khóa API" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API." + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "Nhà cung cấp bản đồ" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "Thời gian bản đồ" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "Thiết lập bản đồ" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Viện triển khai Ushahidi có được tiến hành ở nhiều quốc gia hay không?" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "Xin vui lòng chọn một quốc gia mặc định." + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "Click và rê bản đồ để chọn địa điểm chính xác" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "Gom lại các báo cáo trên bản đồ" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "Cho phép người dùng đệ trình bình luận đến các báo cáo" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "Bao gồm thông tin RSS dạng Feed trên Website" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "Cho phép người dùng đăng ký theo dõi các cảnh báo" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "Cho phép người dùng đệ trình các báo cáo" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Khóa Akismet" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "Băng rông đặt trên trang" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "Khóa theo dòng" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "Bộ nhớ đệm dành cho trang" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "Thời gian thực thi bộ nhớ đệm cho trang" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "Bật tính năng điểm đến" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "Thông báo về bản quyền trên trang" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "Màu mặc định cho tất cả phân loại" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "Biểu tượng mặc định cho tất cả phân loại" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "Xóa hình ảnh băng rôn" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "Xóa biểu tượng mặc định" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "Hiển thị trang liên lạc" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "Hiển thị trang \"Làm cách nào để nhận trợ giúp\"" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "Địa chỉ email cảnh báo" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "Để có thể nhận các báo cáo bằng email, vui lòng cấu hình lại thiết lập dành cho tài khoản email của bạn." + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "Địa chỉ email nhận cảnh báo" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "Google Analytics" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Định dạng: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "Số đối tượng mỗi trang - Front End" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "Số đối tượng mỗi trang - Admin" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "Chặn các bình luận dạng spam bằngAkismet theo kiểu tự động.
Bạn có thể đăng ký nhận một khóa API miễn phí từ tài khoản người dùng ở WordPress.com" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica Credentials" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Trang Laconica" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "Ngôn ngữ trang" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "Chấp thuận bởi người sử dụng" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "Trang tin nhắn" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "Tên trang" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "Tiến trình riêng tư" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "Yêu cầu cần có email xác nhận" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "Đệ trình tin nhắn báo cáo" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "Bật tính năng thống kê (được lưu trữ ở phía máy chủ của Ushahidi)" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "Các thẻ đánh dấu liên quan đến trang" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "Múi giờ" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "Thiết lập trang" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "Tìm các cụm từ trong Twitter" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "Hashtags - Tách biệt bởi dấu phẩy" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "Phần khung thông tin trang email dường như chứa địa chỉ email không hợp lệ." + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "Phần khung thông tin trang email phải có ít nhất 4 ký tự và tối đa 100 ký tự về độ dài." + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "Phần khung thông tin tên trang phải có ít nhất 3 ký tự và tối đa 50 ký tự về độ dài." + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "Phần khung thông tin tên trang không được để trống." + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "Phần khung thông tin tagline phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài." + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "Phần khung thông tin về tagline không được để trống." + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "Số Clickatell API của bạn" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "Kiểm tra trạng thái cân bằng tín dụng trên Clickatell của bạn" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "Tải trạng thái cân bằng tín dụng" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "Mật khẩu tài khoản Clickatell của bạn" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "Đăng ký sử dụng dịch vụ Clickatells bằng cách click vào đây" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "Điền vào thông tin truy cập tài khoản Clickatell của bạn bên dưới" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "Điền vào tên tài khoản Clickatell của bạn" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS là phần mềm miễn phí mã nguồn mở cho phép người dùng gửi và nhận tin nhắn văn bản đến số một số lượng lớn người dùng có liên kết với nhau theo nhóm thông qua điện thoại. Click vào ô bên dưới để tải về phiên bản mới nhất từ FrontlineSMS.com." + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "Tải và cài đặt FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "Thông tin chi tiết về hướng dẫn cách gửi SMS từ FronlineSMS hiện có ở here. Đường dẫn liên kết và khóa API bên dưới cần được thêm vào để cài đặt phần đồng bộ hóa với FronlineSMS." + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "Sao chép và dán phần này vào trong phần thông tin \"Địa Chỉ\" của FrontlineSMS" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "Sao chép và dán phần này vào trong khung thông tin \"Ushahidi API Key\" của FrontlineSMS" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "Đang kết nối FrontlineSMS đến phần giao tiếp với Ushahidi" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "Điền vào (những) số điện thoại được kết nối đến SMS Frontline ở (những) khung thông tin bên dưới" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "Điền vào số và nên nhớ không đặt vào dấu + hay dấu gạch ngang" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "Tùy chọn 1: Sử dụng Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "Tùy chọn 2: Sử dụng Global SMS Gateway" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "Tùy chọn cài đặt SMS" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "Số điện thoại 1 ở khung thông tin không chứa giá trị hợp lệ." + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "Phần khung thông tin số điện thoại 1 chỉ nên chứa số." + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "Phần số điện thoại 2 quá dài." + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "Phần khung thông tin số điện thoại 2 chỉ nên chứa số." + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "Phần số điện thoại 3 quá dài." + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "Phần khung thông tin số điện thoại 3 chỉ nên chứa số." + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Tùy chọn cài đặt Twitter" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Twitter mới tại" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "Khóa người tiêu dùng" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "Bí mật người tiêu dùng" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "Token truy cập" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "Token bí mật truy cập" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "Thử các thiết lập" diff --git a/application/i18n/po/po-vi_VN/sharing.po b/application/i18n/po/po-vi_VN/sharing.po new file mode 100644 index 0000000000..5fa5521354 --- /dev/null +++ b/application/i18n/po/po-vi_VN/sharing.po @@ -0,0 +1,73 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-05 16:24+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Ngày chuyển vào" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "Đã thêm ngày tháng" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "Lần truy cập gần đây nhất" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "lĩnh vực màu sắc phải chứa 6 ký tự về độ dài." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "lĩnh vực màu sắc phải có." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "Phần tên Chia Sẻ hình như không hợp lệ." + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "Phần tên Chia Sẻ phải có." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "Liên kết đường dẫn của trang đã tồn tại." + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "Liên kết đường dẫn của trang không hợp lệ." + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "Phần liên kết đường dẫn của trang phải có." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "Phần liên kết đường dẫn của trang không chứa đường dẫn hợp lệ." diff --git a/application/i18n/po/po-vi_VN/stats.po b/application/i18n/po/po-vi_VN/stats.po new file mode 100644 index 0000000000..60b9ea544e --- /dev/null +++ b/application/i18n/po/po-vi_VN/stats.po @@ -0,0 +1,199 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 08:08+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "Đã chấp thuận" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "Phân Loại" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "Tác động phân loại" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "Biểu đồ này cho bạn cách nhìn theo dạng tuyến tính của các báo cáo theo từng dạng phân loại theo từng thời điểm thời gian. Kéo chuột từ trái sang phải để xem phần so sánh giữa các loại. Di chuyển chuột đến vùng biểu đồ để biết thêm chi tiết." + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "Chọn một khoảng ngày tháng." + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "Quốc gia" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "Quốc gia" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "Hệ thống quốc gia bị lỗi" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "Đây là phần dành cho thống kê và sẽ chứa các mô tả tổng quan trong thời gian sắp tới. Cho tới hiện tại, duyệt tìm các phần phân loại khác ở đường dẫn bên dưới." + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "Lỗi" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "Bảng từ vựng" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "Chọn Tóm tắt" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "Huyền thoại" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "Số lượng truy cập" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "Tổng số lượng của trang với lượng truy cập đến từ phía người dùng trong trang mạng của bạn" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "Báo cáo" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "Phân loại báo cáo" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "Thống kê báo cáo" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "Trạng thái báo cáo" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "Punchcard của báo cáo" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "Trạng thái báo cáo" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "trạng thái chưa thiết lập" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1 tháng" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3 tháng" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6 tháng" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "Tất cả" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "Chưa được chấp thuận" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "những người xem độc lập" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "Số lượng của mỗi cá nhân trong dự án của bạn. Các người xem độc lập được xác định bởi việc sử dụng các cookies. Các người xem thường không bật tính năng cookies nên sẽ được xác định dựa vào thuật toán heuristic trong việc phân loại theo địa chỉ IP, độ phân giải, trình duyệt, tiện ích, hệ điều hành v.v..." + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "Chưa xác nhận" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "Đã xác nhận" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "Tóm tắt khách truy cập" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "Truy cập" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "Một lượt được tính là truy cập trong bảng ghi dữ liệu với mỗi khách viếng thăm độc lập trang web dựa trên lượt xem qua mỗi quãng thời gian kéo dài 30 phút." diff --git a/application/i18n/po/po-vi_VN/tooltips.po b/application/i18n/po/po-vi_VN/tooltips.po new file mode 100644 index 0000000000..0a435869b5 --- /dev/null +++ b/application/i18n/po/po-vi_VN/tooltips.po @@ -0,0 +1,585 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "báo cáo thêm này để thêm các hạng mục. Nếu bạn chọn loại 1 ở đây và báo cáo đã có Loại 2 gắn liền với nó, báo cáo sau đó sẽ có cả hai loại 1 và loại 2." + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "chấp thuận báo cáo hay không. Nếu được chấp thuận, nó sẽ hiển thị công khai." + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here." + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test." + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection." + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "Body of the email that will be sent." + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "Subject of email that will be sent." + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"all\"" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for twitter messages from a particular user, enter their username here (not including @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions \"love\" or \"peace\" in their message, you will want to add \"love, peace\" in the keywords box." + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select \"specific area\" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes." + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it." + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "This is the default title to add to the report." + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses." + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "If you select \"Triggering User\", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity." + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates." + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one." + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as \"anyone\" since most triggers are set up for all users interacting with the system" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "Marks a report as verified or not." + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture." + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "Separate each value with a comma, e.g. value1, value2." + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "Start typing to list members." + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "Private message subject" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "Private message" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins." + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "Your email address" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "This is one of the ways that you are identified on the website. Keep in mind that this is public!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "If set, this will be your new password. Leave this field blank if you wish to keep your current password." + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time." + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "Selecting YES lets you get alerts via email when new reports or comments are posted on your website." + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "Your current password. We require you enter your password to prevent any unauthorized changes to your account." + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you've submitted, your checkins, badges, etc all on one page." + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "This is the address where your public profile can be found." + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "Your username cannot be changed." + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default." + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "This is the email address that will be used to send email alerts." + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "Allow users to subscribe for alerts via the web." + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "This allows bundling of similar reports into a single dot on the map" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "Allow users to comment on reports on the main site." + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "This allows RSS News feeds to be displayed on the main site." + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "Allow users to submit information via the web form." + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default number of records to be fetched per API request" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum number of records to be fetched per API request" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum number of API requests per IP address" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page." + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "Number of Block columns that will be displayed on each row." + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime)." + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "Set the lifetime of the cache." + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page." + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "Set the map to cover a specific location." + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "Set one color code for all the categories on the site." + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "Set one icon for all the categories on the site." + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "This is the country the site is being deployed." + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "Turn the Contact Tab on or off on the main site." + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "Turn the How to Help Tab on or off on the main site." + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "This is the number of reports displayed per page on the main site." + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "This is the number of reports displayed per page on the admin Back End." + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "This is the hub for incoming messages." + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "This synchronizes the messages in the hub with the Ushahidi platform." + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "Phone numbers through which the text messages are received." + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "Tracks visitors of your site. Get detailed visitor statistics." + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "Sets the language that will be used in the site." + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin)." + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "This defines which map is to be used on the site." + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "This shows the timeline based on the date and time reports were submitted" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment." + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it." + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "This is where the emails reside" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "This is the password for the email address that receives reports." + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "This is required to accept incoming connections from the email address." + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "This is required to enhance a secure connection." + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "This is required to retrieve e-mails from the host server." + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "This is the email address that receives reports." + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off." + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "This is the email address that will receive email reports and messages from the contact form." + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here." + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "This is the name of the site that appears at the top of the main site." + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting." + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "In a few words, explain what this site is about." + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site." + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "Set the twitter hashtag that will be used on a tweet" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-vi_VN/ui_admin.po b/application/i18n/po/po-vi_VN/ui_admin.po new file mode 100644 index 0000000000..d51588db1c --- /dev/null +++ b/application/i18n/po/po-vi_VN/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "Truy cập bị từ chối. Có thể quyền ủy nhiệm của bạn không hợp lệ hoặc yêu cầu của bạn bị từ chối." + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "Truy cập bị từ chối. Yêu cầu của bạn có đã được nhận, nhưng bị từ chối vì bị hạn chế số lần truy cập. hãy quay lại sau." + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "Cấp độ truy cập" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "Thao tác" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "Thêm vào phân loại" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "đã thêm vào" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "đã thêm vào/đã chỉnh sửa" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "Tiện ích" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "Quản trị viên" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "Cảnh báo" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "Cảnh báo đã nhận được" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "Tất cả" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "Sáng" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "Vô danh" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "Bất kỳ ai" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "Bất kỳ vị trí nào" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API bị cấm" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "Nhật trình API" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "Thiết lập API" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "GỠ LỆNH CẤM" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "GỠ LỆNH CẤM CHO TẤT CẢ" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "đã chấp thuận" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "Tự động chấp thuận" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "Chấp thuận bởi người sử dụng" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "Đã sao lưu" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "Bạn có chắc muốn" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "Bạn có chắc muốn xóa đối tượng này?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "Bạn có chắc muốn xóa hình chụp này?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "Bạn có chắc muốn chuyển đổi các lá đơn?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "Gán" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "Việc gán" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "Gán phù hiệu" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "Tác giả" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "Email tác giả" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "Quay lại" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "CẤM IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "Giữa các lần" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "Khối" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "Cơ thể" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "Hủy bỏ" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "Phân loại" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "Xảy ra lỗi khi hiển thị biểu đồ" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "Xin chắc chắc rằng tin nhắn của bạn là hợp lệ." + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "Xin chắc chắn rằng con số này là hợp lệ." + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "Xin vui lòng kiểm tra thiết lập SMS của bạn!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "Chi tiết về điểm đến" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "Điểm đến" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "Đã tải các thành phố" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "mã" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "Phiên bản mã cho việc đồng bộ hóa." + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "Màu sắc" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "Bình luận" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "Xác nhận mã cảnh báo của bạn là:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "Người dùng này đã được" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "Số lần" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "Không tìm thấy quốc gia" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "đã tạo/đã sửa" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "Tạo một báo cáo" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "Cập nhật khẩn cấp" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "Hiện đang hoạt động" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "Hiện đang không hoạt động" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "Bạn không có quyền tác động để thay đổi các khung thông tin dưới đây." + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "Hằng ngày" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "Bảng điều khiển" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "cơ sở dữ liệu" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "Ngày tháng & Thời gian" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "Đã thêm vào ngày tháng" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "Đã chỉnh sửa ngày tháng" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "Ngày trong tuần" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "Phiên bản DB đã quá hạn để đồng bộ hóa." + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "đã xóa" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "Xóa" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "Xóa phù hiệu" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "Bản thử nghiệm" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "Mô tả" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "Vô hiệu hóa" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Bắt đầu phân phát" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Kết thúc phân phát" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div class" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "Tải về báo cáo" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "Lựa chọn xổ xuống" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "ĐÃ SỬA" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "Đã sửa bởi" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "Chỉnh sửa" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "Nhật trình chỉnh sửa" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "Email" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "Toàn bộ việc thu thập" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "Lỗi khi đang xác định mã địa lý! Lỗi về HTTP" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "Thư viện PHP IMAP chưa được cài đặt" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "Giấy ủy nhiệm không hợp lệ" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "Lỗi" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "Lỗi, không thể đăng tiến trình này" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "Mỗi sáu giờ" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "Mỗi mười hai giờ" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "Thực nghiệm " + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "Câu hỏi thường gặp" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "feed" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "Phản hồi" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "feed" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "Danh sách lựa chọn" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "Giá trị mặc định" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "Loại dữ liệu" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "Markup" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "Numeric" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "Free Text" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "Chiều cao (tính bằng dòng)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "Khung thông tin bị ẩn" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "Độ dài ký tự tối đa" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "Tên khung thông tin" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "Chuyển đổi" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "Không đồng ý" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "Đồng ý, đã đóng lại theo mặc định" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "Đồng ý, mở theo mặc định" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "Không thể tìm thấy tập tin được tải lên" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "Không thể mở tập tin để đọc dữ liệu" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "Phần đơn này không hề tồn tại!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "Diễn đàn" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "Khu vực khung thông tin văn bản (văn bản tự do)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "Khung thông tin ngày tháng" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "Khung thông tin nút lựa chọn" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "Khung thông tin phần đánh dấu" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "Khung thông tin menu xổ xuống" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "Từ" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "Từ" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "Lỗi vì thời gian kết nối đến Geonames quá hạn" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "Nhận sự giúp đỡ" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "Tải thêm nhiều giao diện hơn" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "Tải thêm nhiều tiện ích hơn" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "Thao tác" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "Thêm/sửa" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "Email" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "Quản lý người dùng" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "Vai trò" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "Người dùng" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "trợ giúp" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "Hằng giờ" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "Feed tiến trình cho" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "Thư mục cài đặt vẫn không tồn tại. Xóa thư mục cài đặt. Đây là tiềm ẩn an ninh quan trọng." + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "Tiến trình" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "Tiến trình" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "Thông tin tiến trình" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "Thông số không hợp lệ" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "Địa chỉ IP" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "Đây có phải là khung thông tin ngày tháng?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "Ai có thể xem các câu trả lời" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "Ai có thể đệ trinh cầu trả lời" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "Từ khóa" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "Từ khóa" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Địa chỉ email:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "Tên đầy đủ:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "Mật khẩu:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "Vai trò:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "Tên người dùng:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "Lớp" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "Người điều hành" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "Đăng xuất" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "Nhật trình" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "Quản lý" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "Quản lý Vai trò & Quyền hạn" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "Xem người dùng" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "Thêm/sửa người dùng" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "Quản lý việc liệt kê công cộng của bạn" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "Đánh dấu dưới dạng" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "đã đánh dấu không phải spam" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "đã đánh dấu dưới dạng spam" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "Không khớp với bất kỳ tài liệu nào" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "Tin nhắn" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "Tin nhắn Laconica" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Tin nhắn Twitter" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "Tin nhắn của bạn đã được gửi!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "Phút" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "Phút" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "Thiếu các thông số" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "Người điều hành" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "đã chỉnh sửa" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "Chỉnh sửa thiết lập thời gian vùng miền" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "di chuyển xuống" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "di chuyển lên" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "Tiến trình Multiple hosted" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "Cản báo của tôi" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "Điểm đến của tôi" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "Hồ sơ của tôi" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "Báo cáo của tôi" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "Bình chọn diễn viên" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "Dương tính" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "Âm tính" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "Tên" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "Tạo cảnh báo mới" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "Tạo tin nhắn mới" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "Mật khẩu mới" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "Không đồng ý" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần đệ trình báo cáo từ những người dùng gửi các báo khác. Phần này được sử dụng để giữ các báo cáo còn lại vốn chưa được phân loại (các báo cáo chưa được phân loại) dưới dạng phân loại bị xóa." + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "Thông báo" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "Không phân biệt chữ in hoa." + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "Không tìm thấy" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "Không có dữ liệu. Không có kết quả nào được hiển thị." + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "Không có lỗi" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "Không có kết quả để hiển thị!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "của" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "Dựa trên số lượng" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "trang" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "trang" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "Không tìm thấy trang" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "Rất tiếc, trang bạn muốn truy cập hiện không có.

Bạn đã đi đến đường liên kết này từ một nơi khác trên trang của chúng tôi?
Nếu bạn truy cập đến trang này từ trang thuộc hệ thống hiện tại, xin vui lòng liên hệ với chúng tôi để chúng tôi có thể khắc phục vấn đề này.

Có phải bạn đã truy cập đến trang này từ đường dẫn ở các trang khác không thuộc hệ thống của chúng tôi?
Liên kết ở các trang khác không thuộc hệ thống của chúng tôi thường sai về mặt cú pháp hoặc các liên kết đó đã quá hạn truy cập. Hãy thông báo cho chúng tôi biết trang mà bạn đã truy cập trước khi click vào đường liên kết để đến trang này nhằm khắc phục vấn đề lỗi trang trên.

Có phải bạn đã gõ vào đường dẫn?
Có thể bạn đã gõ vào đường dẫn (địa chỉ) sai cú pháp. Hãy xem lại đường dẫn hay địa chỉ mà bạn đã truy cập.

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "Rất tiếc, trang bạn đang muốn truy cập hiện không tồn tại" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "Thông số được sử dụng" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "Mật khẩu" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "Đặt lại mật khẩu" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "Thân mến" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "Chúng tôi đã nhận được yêu cầu đặt lại mật khẩu cho" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "Để có thể thay đổi mật khẩu của bạn, vui lòng click vào liên kết phía dưới (hoặc sao chép và dán vào trình duyệt của bạn)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "Theo như yêu cầu của bạn, mật khẩu đã được thay đôi. Thông tin chi tiết sẽ có dạng" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Đặt lại mật khẩu Ushahidi" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "Điện thoại" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "Xin vui lòng chọn" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "PM" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "Dữ liệu không được gửi bởi phương thức đăng bài" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "Xem trước" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "Tin nhắn riêng tư" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "Tin nhắn riêng đã được gửi" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "Chủ đề" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "Đến" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "Liệt kê công cộng" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "Người thẩm định" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "đọc" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "Thích hợp" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "Báo cáo tiêu đề" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "Ngày ghi báo cáo" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "Người báo cáo" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "Nhãn người báo cáo" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "Báo cáo" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "Điểm danh vọng" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "Yêu cầu" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "Đặt lại" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "Trả lời" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "Kết quả" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "Hủy bỏ" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "Email này có một tài khoản gắn kết với CrowdmapID. Người sử dụng sẽ cần sử dụng mật khẩu bên phía Crowdmap để đăng nhập." + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "Lưu thiết lập" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "Tìm kiếm" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "Tìm kiếm báo cáo" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "tìm kiếm về" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "Khóa mã hóa được chỉnh về giá trị mặc định. Điều này không an toàn và cần phải được thay đổi." + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "Trang này đang sử dụng phương thức HTTP. Vì lí do an ninh nên chuyển về dạng HTTPS" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "Các hướng dẫn hiện đang được phổ biến trên wiki:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "Chọn định dạng báo cáo tải về mà bạn muốn:-" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- Chọn một loại khung thông tin ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "Xin chọn một đối tượng" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "Bạn phải chọn một Trigger trước khi chọn Trả Lời" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "Bạn phải chọn một Trigger trước khi bạn xác định Người Thẩm Định." + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "Người gửi" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "Gửi đến" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "Tin nhắn này đã được gửi đến website của bạn tại" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "Thời gian server" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "Thiết lập" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "Hiển thị trang" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "Hiển thị kết quả" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "đã hiển thị" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "Phân loại đặc biệt" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần mẫu đơn đệ trình báo cáo từ phía người dùng khi họ đệ trình các báo cáo. Tính năng này có liên kết với tính năng \"Người Gửi Báo Cáo Được Tin Tưởng\"." + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "Khu vực xác địn" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "Trạng thái" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "Thống kê" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "Trạng thái" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Tổng hợp trạng thái thất bại! Xin vui lòng thử lại lần nữa." + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "Tổng hợp trạng thái thất bại!" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "Xác định ngày" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "Chủ đề" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "Quản trị viên chính yếu" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "Tác vụ đã thực hiện" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "Khung thông tin văn bản" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "Tên" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "Quản lý người dùng" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "Lỗi về quá hạn thời gian" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "đến" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "Tổng cộng các bản ghi" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "đến" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "Dịch các báo cáo" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "Trigger" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "Người dùng Trigger" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "Trigger" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "chưa được chấp thuận" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "Chưa Rõ" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "Lỗi chưa rõ" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "chưa đọc" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "Bạn sẽ không còn nhận cảnh báo từ" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "Click vào đây để nâng cấp ngay bây giờ" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "Nâng cấp Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Trạng thái nâng cấp Ushahidi" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "Tải lên báo cáo" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "Người dùng" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "Người dùng" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "Đã xác nhận/Vẫn chưa xác nhận" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "Xác nhận/Chưa xác nhận" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "Phiên bản" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "hiện đã có thể nâng cấp." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "Mã hóa video" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "Tin nhắn riêng" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "Xem trang" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "Xem báo cáo" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "Chào mừng," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "Đồng ý" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "Tìm kiếm của bạn về" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-vi_VN/ui_main.po b/application/i18n/po/po-vi_VN/ui_main.po new file mode 100644 index 0000000000..05d63fb0b8 --- /dev/null +++ b/application/i18n/po/po-vi_VN/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "về" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "Truy cập" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "Giới hạn truy cập" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "Tên tài khoản" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "Thao tác" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "Thao tác hiện vẫn chưa hoàn tất. Bạn có chắc muốn tiếp tục?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "Kích hoạt" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "Đang hoạt động" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "Thêm" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "Thêm vào bởi" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "Dữ liệu bổ sung" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "Báo cáo bổ sung" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "Thêm/Sửa" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "Thêm một lĩnh vực" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "Thêm ngôn ngữ" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "Thêm mới" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "Thêm Phân Loại Mới" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "Thêm Chuyển Ngữ" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "Quản Trị viên" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "Nhận cảnh báo" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "cảnh báo tôi khi một báo cáo đã được thực thi, hoặc xung quanh:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "Lưu Thông Báo Của Tôi" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "Địa chỉ email:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "điền vào địa chỉ email" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "điền vào số điện thoại đi kèm theo là mã vùng điện thoại đứng đầu" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "Nhận Thông Báo" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "Cảnh báo đã được" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "Số di động:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "Hoặc click vào một điểm nào đó ở bản đồ bên dưới, và chúng tối sẽ thông báo cho bạn khi báo cáo đã được hoàn tất trong vòng chu vi 20 ki lô mét." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "Nếu bạn không thể tìm thấy vị trí của bạn, bạn có thể click vào bản đồ để chỉ ra vị trí hiện tại của bạn." + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "Tin RSS (sao chép đường dẫn bên dưới)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "Chọn một thành phố" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "Bước 1:Chọn thành phố hoặc địa điểm của bạn:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "Bước 2: Gửi thông báo tới:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "Bước 3 (không có cũng được): Chọn Phân Loại" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "Xác nhận Yêu Cầu Thông Báo Trước Đó" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "Phần thông báo của bạn đã được lưu!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "Tất cả" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "Cho phép" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "Cho phép các thẻ đánh dấu HTLM: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "Iframes chỉ được cho phép từ: %s." + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "Tất cả Phân Loại" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "Tất cả thời gian" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "và" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "Chấp thuận" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "Đã chấp thuận" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "Báo cáo đã chấp thuận" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "Chấp thuận báo cáo này" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "Xấp xỉ" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "Sao lưu" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "Đã sao lưu" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "Tăng dần" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "tại" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "Tác giả" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "Tự động đăng nhập" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "Trung bình báo cáo mỗi ngày" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "Đang đợi việc chấp thuận" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "Đang đợi việc xác nhận" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "Huy hiệu" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "Huy hiệu" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "Hình ảnh huy hiệu" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "Hoặc bạn có thể tự tải hình ảnh về huy hiệu của chính bạn." + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "Gói huy hiệu" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "Chọn một huy hiệu" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Blog" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "Duyệt tìm Hồ Sơ" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "Hủy bỏ" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "Phân Loại" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "Phân Loại" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "Bộ lọc phân loại" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "Phân loại đã được" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "Tên phân loại" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "Thay đổi khoảng thời gian" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "Thay đổi mật khẩu" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "Thay đổi hình ảnh của bạn" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "Chọn một" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "Chọn điểm dữ liệu để tải xuống" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "Hoặc chọn khoảng thời gian của riêng bạn" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "Chọn loại trường" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "Làm rỗng URL" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "Làm rỗng" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "Làm rỗng bản đồ" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "Đóng lại" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "bó" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "Màu sắc" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "Bình luận" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "Bình luận" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "Chi tiết Bình luận" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "Thiết lập của bạn đã được lưu!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "Chỉnh sửa" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "Bạn đã xác nhận thành công địa chỉ email của bạn! Hãy đăng nhập bên dưới, biên dịch bởi Phan Anh." + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "Bạn đã xác nhận thành công địa chỉ email của bạn! Quản trị viên phải chấp thuận tài khoản của bạn trước khi đăng nhập vào" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "Việc xác nhận email không thành công! Bạn có thể được quyền yêu cầu thêm một email xác nhận nữa bên dưới." + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "Liên hệ chúng tôi" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "Mã an ninh" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "Thay đổi địa chỉ email của bạn" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "Tin nhắn của bạn đã được gửi!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "Tên của bạn" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "Số điện thoại của bạn" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "Gửi tin nhắn" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "Tựa đề tin nhắn" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Biên dịch bởi phan Anh ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "Tạo" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "Tạo/sửa" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "Tạo mới" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "Tạo mật khẩu mới" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "Tạo báo cáo" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "Độ tin cậy" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "Mật khẩu hiện tại" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "Trường tự chọn" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "Thông tin" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "Ngày tháng" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(tt/nn/nnnn)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "Thời gian & Ngày tháng" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "ngày" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "Tắt kích hoạt" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "Nairobi, Kenya" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "Xóa" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "Đã xóa" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "Xóa" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "Tắt tính năng xóa" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "Xóa tận cùng" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "Xóa báo cáo này" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "Xóa những vùng được chọn" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "Xóa Spam" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "Thử nghiệm" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "Mô tả" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "Giảm dần" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "Thí dụ: Góc phố Thần Kinh, số 5 đường Tưng Tửng & số 4 bệnh viện Nhiệt Đới, thành phố Phồng Tôm" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "Chi tiết" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "Báo cáo trực tiếp" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "Vô hiệu hóa" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "Không chấp thuận" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "Tải về báo cáo" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "Tải xuống" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "Sửa" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "Sửa các trường trong mẫu đơn" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "Sửa báo cáo" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "Email" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "Địa chỉ email" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "Thiết lập server mail" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "Server Host Mail" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "Mật khẩu Mail Server" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "Cổng kết nối Mail Server" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "Hỗ trợ kết nối SSL Mail Server" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "Loại Mail Server" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "Tên người dùng Mail Server" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "nên các thiết lập cần được gắn với địa chỉ email này" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "Để có thể nhận báo cáo bằng email, hãy điền vào địa chỉ tài khoản email của bạn trong phần thiết lập bên dưới. Chú ý rằng email sẽ nhận được tại email của bạn" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "Một vài server yêu cầu việc hoàn tất địa chỉ email" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "Mật khẩu tài khoản email" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "Cổng kết nối thường gặp: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "Thí dụ: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "Thí du: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "Bật hoặc tắt kết nối dạng SSL" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---RỖNG---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "đến" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "Lỗi!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "Thí dụ" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "Kenya" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "Ứng dụng bổ sung" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "Liên kết video bổ sung" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "Facebook" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "Feed" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "Cung cấp phản hồi" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "Feeds" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "Feed đã được" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "Đối tượng feed" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "Tên feed" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "URL của Feed" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "Các trường không sử dụng" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "Tập ti" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "Tập tin của bạn có kích thước quá giới hạn cho phép." + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "Bộ lọc" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "Lọc báo cáo" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "Lọc báo cáo bởi" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "Lọc các báo cáo chứa" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "Tìm kiếm" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "Địa điểm tìm kiếm" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "Tên" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "Thời gian bắt buộc chạy" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "Quên mật khẩu ư?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "Mẫu đơn" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "Mẫu đơn" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "Miêu tả mẫu đơn" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "Sửa mẫu đơn này" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "Mẫu đơn đã được" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "Tiêu đề mẫu đơn" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "Từ" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "Họ tên đầy đủ" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "Địa chỉ địa lý hiện có" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "Màu sắc" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "Bình luận" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "Nhãn" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "Độ rộng nét" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "Đi đến" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "Hashtag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "đã được" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "Giúp đỡ bằng cách nào" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "Bị ẩn" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "Ẩn" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "ẩn tin nhắn này" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "Trang chủ" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "Làm cách nào để báo cáo" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "Chỉ số" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "Sử dụng để nhận dạng bạn trên các trang với những người sử dụng khác." + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "Hình ảnh" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "Hình ảnh" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "Hình ảnh/Biểu tượng" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "Tắt kích hoạt" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "Hộp thư" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "Ngẫu nhiên" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "Ngẫu nhiên gần đây" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "Địa điểm ngẫu nhiên" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "Bao gồm" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "Bao gồm phân loại" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "Bao gồm trường tự chọn" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "Bao gồm mô tả" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "Bao gồm càng nhiều thông tin càng tốt" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "Bao gồm vĩ độ" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "Bao gồm thông tin địa điểm" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "Bao gồm kinh độ" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "Bao gồm thông tin cá nhân" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "Media được gửi tới" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "Thử nghiệm thông tin" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "Điền vào vị trí chính xác của bạn" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "Tài khoản của bạn không có quyền truy cập cao hơn để có thể ghi nhận mọi tác động. Hãy liên hệ người quản trị." + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "Để trả lời về" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "Địa chỉ IP" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "Đây là hồ sơ của bạn?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "đối tượng" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "đối tượng" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "item_details" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "Tiêu đề đối tượng" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "Khóa" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "Từ khóa" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "Tập tin KMZ/KML" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "Tải lên tập tin KMZ/KML" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML URL" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "Laconica" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "Ngôn ngữ" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "Trước đó" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "Tháng trước" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "Họ" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "Năm trước" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "Vĩ độ" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "Lớp" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "Lớp khác" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "Lớp đã bị" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "Tên lớp" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "Đường dẫn đến lớp" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "Để lại bình luận" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "Ít thông ti" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "Cấp độ" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "Cấp độ này được" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "Tên cấp độ" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "Hạn chế" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "Đường liên kết" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "Danh sách" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "Đang tải báo cáo" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "Địa điểm" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "Địa điểm" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "Thành phố, Bang và/hoặc quốc gia" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "Đăng nhập" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "Tài khoản đã được tạo thành công. Bạn có thể đăng nhập ngay bây giờ." + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "Xác nhận đã được gửi đến địa chỉ email của bạn." + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "Đã tạo xong tài khoản. Tài khoản của bạn phải được chấp thuận bởi quản trị viên trước khi bạn có thể đăng nhập vào." + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "Địa chỉ email không tồn tại. Xin vui lòng thử một địa chỉ khác hoặc tạo một tài khoản." + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "Xin vui lòng click vào nhà cung cấp tài khoản của bạn" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "Đăng nhập với" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "Email và mật khẩu" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "OpenID" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "Đăng ký" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "Tạo một tài khoản" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "Cảm ơn bạn đã đăng ký tại %1$s. Để có thể xác nhận email của mình, vui lòng truy cập đường dẫn sau: %2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "Xác nhận đăng ký" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "Một người dùng mới đã đăng ký tại %1$s. Để chấp thuận việc đăng ký này vui lòng truy cập vào đường dẫn sau: %2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "Chấp thuận yêu cầu đăng ký" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "Tài khoản của bạn đã được chấp thuận về %1$s. Để có thể đăng nhập hãy truy cập vào đường dẫn sau: %2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "Đã chấp thuận tài khoản mới" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "Tạo một tài khoản mới sẽ tận dụng được nhiều tính năng trên trang này" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "Kinh độ" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "Bản đồ" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "Đánh dấu đã đọc" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "Đánh dấu chưa đọc" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "Kích thước tối đa của tập tin" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "Media" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "Bộ lọc media" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "Thành viên" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "Quản lý tài khoản" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "Tin nhắn" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "Tin nhắn" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "Chi tiết tin nhắn" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "Tin nhắn được gửi từ một nguồn không rõ số liệu:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "Di động" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "Chỉnh sửa" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "Chỉnh sửa ngày tháng" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "tháng" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "Các phần khác" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "Thông tin bổ sung" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "Bạn phải xác nhận email để có thể truy cập đến phần này. Nếu bạn mất thư xác nhận, bạn có thể yêu cầu gửi lại mã xác nhận một lần nữa bên dưới." + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "Tên" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "Báo cáo gần đây" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "Mới" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "Tin tức" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "Tin tức feed" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "Nguồn tin tức" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "Tạo phân loại mới" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "Mật khẩu mới" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "Báo cáo mới" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "Tiếp theo" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "Không đồng ý" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "Không có thông tin về đăng nhập để hiển thị." + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "Không có dữ liệu" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "Không" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "Chú ý" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "Chưa được cho phép" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "Chưa được cho phép" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---Chưa được chọn---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "không phải spam" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "Chưa được xác định" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "Không có báo cáo nào" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "Không có kết quả nào" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "Tắt" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "Dòng & tin tức chính thức" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "Mở" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "Tùy chọn" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "Tùy chọn" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "Tùy chọn" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "Tổ chức" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "Tổ chức" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "Mô tả về tổ chức" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "Email tổ chức" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "Tổ chức đã được" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "Tên tổ chức" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "Điện thoại tổ chức 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "Điện thoại tổ chức 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "Website của tổ chức" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "Nguyên bản" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "Mô tả nguyên bản" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "Tiêu đề gốc" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "Các tiến trình khác" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "Hộp thư gửi đi" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "Đang gửi đi" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "Trang" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "TRang" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "Mô tả về trang" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "Trang đã bị" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "Tên tab của trang" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "Tiêu đề trang" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "Phân loại gốc" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "Mật khẩu" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "Xác nhận mật khẩu" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "Mật khẩu đã được thay đổi thành công! Vui lòng đăng nhập trở lại bên dứoi" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "Quên mật khẩu?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "Kiểm tra email của bạn về mật khẩu mới." + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "Giữ trạng thái đăng nhập trên máy tính này?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "Tháng trước đó" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "Năm trước đó" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "Đang đợi" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "mỗi" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "Tùy chọnthông tin cá nhân." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "Điện thoại" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "Hình chụp" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "Hình ảnh" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "Hình ảnh và video" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* Tìm kiếm địa chỉ của bạn dựa vào tên địa điểm hoặc vị trí vĩ độ, kinh độ (theo định dạng: 38.19, 85.61), HOẶC click vào bản đồ và chọn phần địa điểm chính xác hiện tại của bạn." + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "Phát" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "Để lại ghi chú" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "Tiện ích" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "Tiện ích Website" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "Hồ sơ công cộng" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "Đường dẫn đến hồ sơ công cộng" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "Xem thử" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "Xem thử đối tượng" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "Xem thử tin nhắn" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "Trước đó" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "Riêng tư" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Màu sắc hồ sơ" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "Hồ sơ của bạn đã được lưu" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "Trạng thái nhanh" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "Xếp hạng" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Đọc" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "Nhận" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "Nhận từ" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "Thông báo nhận được" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "Báo cáo gần đây" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "Cập nhật lại tin tức feed" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "Email đã đăng ký" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "Loại bỏ" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "Trả lời" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "Báo cáo" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "Báo cáo (từ bản đồ, được liệt kê theo thứ tự niên đại)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "Người báo cáo" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "Người báo cáo" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "Ngày người gửi báo cáo" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "Email của người gửi báo cáo" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "Tên của người gửi báo cáo" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "Người báo cáo đã được" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "Địa chỉ IP của người báo cáo" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "Họ của người báo cáo" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "Cấp độ người báo cáo" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "Cấp độ người báo cáo" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "Điện thoại người báo cáo" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "Báo cáo" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "Duyệt tìm" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "Đệ trình" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "Báo cáo thực hiện bởi người dùng này" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "Phân loại" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d Báo cáo" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "Ngày tháng" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "Mô tả" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "Báo cáo sẽ được tải về dưới định dạng CSV" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "Email" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "Tính năng" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "Tìm một địa điểm gần bạn" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "Tên" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "Họ" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "Tên địa điểm" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "Đường dẫn đến nguồn tin" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "Thông tin tùy chọn" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "Tải lên hình chụp" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "Quay trở lại trang báo cáo" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "Chọn một thành phố" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "Báo cáo của bạn đã được đệ trình đến đội ngũ để xem xét. Chúng tôi sẽ trả lời bạn trong thời gian ngắn nhất có thể." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "Đệ trình một báo cáo mới" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "Thời gian" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "Thời gian báo cáo" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "Tiêu đề báo cáo" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "Đường liên kết video" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "Báo cáo sự việc nào đó" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "Chi tiết báo cáo" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "Bằng cách gửi tin nhắn tới" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "Bằng cách gửi email" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "Bằng cách gửi tweet với mã hashtag/s" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "Bằng việc điền vào lá đơn này trên website của chúng tôi." + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "Bằng việc sử dụng ứng dụng này" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "Báo cáo của bạn đã được lưu" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "Tiêu đề báo cáo" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "Yêu cầu gửi thêm thông tin" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "Yêu cầu về địa điểm" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "Đã yêu cầu" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "Các yêu cầu cần có" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "Gửi lại email xác nhận" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "Thiết đặt lại" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "Thiết đặt lại tất cả bộ lọc" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "Thiết đặt lại mật khẩu" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "Nhận thông tin về tên thành phố của quốc gia được chọn" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "Tài khoản được quản lý bởi %s dịch vụ." + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "Bạn đã có tài khoản được quản lý bởi CrowdmapID! Hãy thử sử dụng email của CrowdmapID mà bạn có cùng mật khẩu để đăng nhập." + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "Vai trò" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "Lưu" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "Đã lưu" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "Lưu &Thêm mới" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "Lưu & Đóng lại" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "Lưu lại báo cáo" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "Thời khóa biểu" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "Người lập thời khóa biểu" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "Ngày" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "Giờ" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "Nhật trình người lập thời khóa biểu" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "Phút" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "Ngày trong tuần" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "Tìm kiếm" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "Tìm kết quả" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "Mã an ninh" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "Chọn tất cả" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "Chọn một loại khung thông tin" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "Chọn một loại đơn" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "Chọn trong bản đồ" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "Chọn theo nhu cầu" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "Xin xác nhận bạn đã chọn đối tượng" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "Chọn giao diện" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "Gửi" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "Xác nhận gửi" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "Đang gửi đến" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "Đã gửi" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "Được gửi bởi" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "Địa chỉ server" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "Loại server" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "Dịch vụ" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "Dịch vụ tên người dùng" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "Chỉ số dịch vụ người dùng" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "Chia sẻ" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "Dữ liệu được chia sẻ" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "Việc chia sẻ đã được" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "Đang chia sẻ" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "Bản đồ ngắn hơn" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "Hiển thị" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "Hiển thị tất cả" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "Hiển thị tin nhắn" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "Đang hiển thị báo cáo từ %1$s đến %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "Website" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "địa chỉ email của trang" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "Đường dẫn" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "Bản đồ nhỏ hơn" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "SMS" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "Rất tiếc, bạn chưa có huy hiệu nào." + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "Nguồn" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "Tên nguồn" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "Sắp xếp" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "Sắp xếp theo" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "Đường dẫn đến nguồn" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "Spam" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "Hỗ trợ SSL?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "Từ" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "Bước" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "Đệ trình một báo cáo" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "Được đệ trình bởi %1$s thông qua %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "Đệ trình thông qua SMS" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "Gửi SMS của bạn đến" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "trên điện thoại" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "Thành công!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "Đã nhập dữ liệu thành công" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "Tên" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "Khảo sát" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "Hệ thống" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "Bản đồ cao hơn" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "Cổng kết nối TCP" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "Giao diện" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Sử dụng giao diện mặc định" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "Thiết lập giao diện" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "Đây" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "Hôm nay" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "Tháng này" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "Tuần này" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "Năm này" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "Đây là hồ sơ của bạn." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "Thời gian" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "Tiêu đề" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "đến" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "Hôm nay" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "Hôm nay tại" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "Token" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "Tổng số báo cáo" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "Đã được dịch" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "Mô tả đã được dịch" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "Tiêu đề đã được dịch" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "Dịch sang" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "Dịch thuật" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "Dịch thuật đã được lưu" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "Được tin tưởng" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "Loại" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "Twitter" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "Không thể gửi email." + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "Báo cáo chưa được phân loại" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "chưa đọc" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "Chưa xác nhận" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "Cập nhật feed" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "Tải lên" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "Xem hướng dẫn tải lên báo cáo của chúng tôi:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "Hướng dẫn tải lên XML" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "Hướng dẫn tải lên CSV" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "Tải lên tập tin" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "Tải lên báo cáo" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "Với đơn bên dưới, bạn có thể nhập vào các dữ kiện của mình đến trung tâm xử lý của Ushahidi." + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "Báo cáo phải được tải lên ở định dạng CSV hoặc XML." + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "Khi có một ID nào đó đã tồn tại trước đó trong cơ sở dữ liệu, phần khung thông tin trong tập tin CSV/XML sẽ được bỏ qua." + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "Phải chứa tiêu đề và ngày tháng xảy ra sự kiện." + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "Nếu không có vĩ độ và kinh độ cho cột số liệu, phần địa điểm sẽ được thiết lập bởi Google Geocoder." + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "Nếu nhập các dữ liệu bổ sung ví dụ như thông tin cá nhân và/hoặc khung thông tin mẫu đơn" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "Có ít nhất một khung thông tin cá nhân (tên, họ, email) PHẢI được liệt kê. Các khung thông tin rỗng sẽ không được nhập dữ liệu vào" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "Các khung thông tin của bạn cho menu xổ xuống, lựa chọn khoanh tròn và đánh dấu chọn vào các tùy chọn được cung cấp tùy theo trường hợp của bạn" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "Đánh dấu tùy chọn được ngăn cách nhau bởi dấu phẩy, thí dụ nếu lựa chọn của bạn là trái cây và liên quan đến táo, xoài và nho, thì dòng thông tin bạn nên điền vào là \"táo,xoài,nho\"" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "Khung giá trị ngày tháng nên ở định dạng: tt/nn/nnnn ví dụ ngày 3 tháng mười năm 2012 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "Mẫu báo cáo CSV" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "Tải lên thành công" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "Tải lên video" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "Đường dẫn" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "Người dùng" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "Tên người dùng" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Quản trị viên" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "Xác nhận" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "Đã xác nhận" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "Báo cáo đã được xác nhận" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "Xác nhận" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "Xác nhận báo cáo này" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "Phiên bản" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "thông qua" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "Video" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "Xem" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "Xem" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "Xem tất cả" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "Xem tất cả feed" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "Xem tất cả báo cáo" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "Xem các đối tượng" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "Xem thêm nữa" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "Xem Hồ Sơ Công Cộng" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "Xem báo cáo" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "Xem báo cáo" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "Xem video" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "Cho phép hiển thị" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "Đang đợi chấp thuận" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "Đang đợi xác nhận" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "Bản đồ rộng hơn" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Mẫu đơn web" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "Web" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "Cân nặng" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "Đồng ý" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "Ngày hôm qua" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "Bảng điều khiển của bạn" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "Tập tin của bạn" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "Phóng to" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "Thu nhỏ" diff --git a/application/i18n/po/po-vi_VN/upgrade.po b/application/i18n/po/po-vi_VN/upgrade.po new file mode 100644 index 0000000000..bddb7f3b2f --- /dev/null +++ b/application/i18n/po/po-vi_VN/upgrade.po @@ -0,0 +1,301 @@ +# +# Translators: +# Thu Hoai , 2013 +# Anh Phan , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-09-06 17:47+0000\n" +"Last-Translator: Thu Hoai \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ushahidi/ushahidi-v2/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "Dữ liệu nhập vào không hợp lệ. Phần này chỉ được có giá trị 0 nếu không đồng ý và 1 nếu đồng ý." + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "Tự động nâng cấp" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "Các nâng cấp hiện có" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "Tiếp tục" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "Nâng cấp" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "vì vậy, tôi sẽ nâng cấp hệ thống cơ sở dữ liệu của bạn từ phiên bản" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "đến phiên bản cơ sở dữ liệu mới nhất" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "Click vào nút \"Nâng Cấp\" và đợi trong giây lát." + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "Và nếu bạn muốn hệ thống sao lưu cơ sở dữ liệu của bạn, chỉ cần đánh dấu chọn vào nút bên dưới, hệ thống sẽ tự động thực hiện việc sao lưu." + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "Sao lưu cơ sở dữ liệu trước khi nâng cấp? (Khuyến nghị nên chọn)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "nâng cấp cơ sở dữ liệu Ushahidi" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi đã được cập nhật! Trước khi tiếp tục, bạn cần cập nhật phiên bản mới nhất (%s) của cơ sở dữ liệu bạn hiện có." + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "Phiên bản cơ sở dữ liệu của bạn là phiên bản mới nhất." + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "Việc nâng cấp gặp phải lỗi" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "Tự người dùng nâng cấp" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Trạng thái cập nhật của Ushahidi" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "Các hướng dẫn bên dưới sẽ hướng dẫn chi tiết người dùng về việc nâng cấp các tiến trình của Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
Tải về
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- Tải về các phiên bản gần đây nhất từ Ushahidi" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
Sao lưu
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Để đề phòng trục trặc có thể xảy ra, chúng tôi khuyên bạn nên chọn việc sao lưu toàn bộ dự án của mình.
Sao chép các tập tin
- Giải nén các tập tin dạng zip
- Tùy thuộc vào hệ điều hành đang chạy trên nền web server nào, thì hãy sử dụng công cụ/chế độ tương thích kèm theo (ví dụ: Telnet, FTP, SSH) để đăng nhập vào webserver và thay đổi nội dung của tất cả các thư mục với phần nội dung mới nhất vừa tạo.
Nâng cấp cơ sở dữ liệu
- Trước tiên hãy xác định phiên bản cơ sở dữ liệu dựa vào giá trị db_version trong phần bảng thiết lập hoặc dựa vào thông tin cập nhật từ Ushahidi hiển thị ở phía trên cùng của trang này.
- Nếu phiên bản của bạn hiện ở mốc 25, bạn cần nâng cấp theo hướng 25-26, 26-27, 27-28 và cứ tiếp tục như thế đối với các tập tin SQL mới nhất /sql trong thư mục.
- Với phần cơ sở dữ liệu phía client, nâng cấp cơ sở dữ liệu bởi việc thi hành lệnh trên tập tin thích hợp upgradex-x.sql.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Bước 3: Quan sát phía bên trong sql thư mục. Thiết lập lệnh nâng cấp-.sql file bắt đầu từ cơ sở dữ liệu hiện tại của phần mà bạn cài đặt cho đến tập tin nâng cấp sql cuối cùng." + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Bước 4: Click vào phần \"Tiếp tục\"để nâng cấp các bảng dữ liệu cần thiết." + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "Để thực hiện chế độ nâng cấp tự động, click vào nút bên dưới." + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "Bạn hiện đang sử dụng phiên bản Ushahidi v%1$s kèm theo cơ sở dữ liệu có phiên bản %2$d được chạy trên nền %3$s" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "Đang nâng cấp" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "Để tiếp tục phần nâng cấp theo hướng dễ dàng, các thông tin này cần có máy chủ dạng FTP và website mà bạn đặt trên host đó." + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP Hostname: Ví dụ: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "Mật khẩu FTP:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "Tên người dùng FTP:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "Bạn hiện đang sử dụng phiên bản mới nhất từ Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "Bạn không cần thiết phải thực hiện thao tác cập nhật." + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "Phiên bản cơ sở dữ liệu: %d" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "Cảnh báo: Phiên bản phần mềm trong version.php và cơ sở dữ liệu không khớp lẫn nhau." + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "Cảnh báo: phiên bản cơ sở dữ liệu trong version.php và cơ sở dữ liệu không khớp lẫn nhau." + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "Cơ sở dữ liệu:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "THỬ NGHIỆM!" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "Đang tải về phiên bản mới nhất từ Ushahidi..." + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "Tập tin nhật trình" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "Đã tải về thành công. Đang mở các gói dữ liệu..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "Xảy ra lỗi khi đang tải về." + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "Đã mở các gói thành công. Đang sao chép các tập tin..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "Xảy ra lỗi khi mở các gói dữ liệu." + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "Đã sao chép thành công. Đang cập nhật cơ sở dữ liệu..." + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "Xảy ra lỗi khi sao chép các tập tin" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "Đã sao lưu và cập nhật cơ sở dữ liệu thành công." + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "Thất bại khi thực hiện thao tác sao lưu cơ sở dữ liệu." + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "Đã cập nhật cơ sở dữ liệu thành công." + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "Đang xóa các tập tin đã được tải về..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "CẬP NHẬT THÀNH CÔNG. Xem Tập tin nhật trình" diff --git a/application/i18n/po/po-zh/alerts.po b/application/i18n/po/po-zh/alerts.po new file mode 100644 index 0000000000..fb868a272b --- /dev/null +++ b/application/i18n/po/po-zh/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "" diff --git a/application/i18n/po/po-zh/auth.po b/application/i18n/po/po-zh/auth.po new file mode 100644 index 0000000000..e08d2bef8b --- /dev/null +++ b/application/i18n/po/po-zh/auth.po @@ -0,0 +1,251 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:10+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "" diff --git a/application/i18n/po/po-zh/bug.po b/application/i18n/po/po-zh/bug.po new file mode 100644 index 0000000000..193aa08c23 --- /dev/null +++ b/application/i18n/po/po-zh/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "" diff --git a/application/i18n/po/po-zh/category.po b/application/i18n/po/po-zh/category.po new file mode 100644 index 0000000000..c4cc45fd40 --- /dev/null +++ b/application/i18n/po/po-zh/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "" diff --git a/application/i18n/po/po-zh/comments.po b/application/i18n/po/po-zh/comments.po new file mode 100644 index 0000000000..541de4a7da --- /dev/null +++ b/application/i18n/po/po-zh/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" diff --git a/application/i18n/po/po-zh/contact.po b/application/i18n/po/po-zh/contact.po new file mode 100644 index 0000000000..95f7809bbd --- /dev/null +++ b/application/i18n/po/po-zh/contact.po @@ -0,0 +1,76 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "" diff --git a/application/i18n/po/po-zh/core.po b/application/i18n/po/po-zh/core.po new file mode 100644 index 0000000000..cd7ce5856f --- /dev/null +++ b/application/i18n/po/po-zh/core.po @@ -0,0 +1,157 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "" + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "" diff --git a/application/i18n/po/po-zh/database.po b/application/i18n/po/po-zh/database.po new file mode 100644 index 0000000000..c844e8d1cb --- /dev/null +++ b/application/i18n/po/po-zh/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "" diff --git a/application/i18n/po/po-zh/datetime.po b/application/i18n/po/po-zh/datetime.po new file mode 100644 index 0000000000..d9342143b1 --- /dev/null +++ b/application/i18n/po/po-zh/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "" diff --git a/application/i18n/po/po-zh/feeds.po b/application/i18n/po/po-zh/feeds.po new file mode 100644 index 0000000000..11dcb220cb --- /dev/null +++ b/application/i18n/po/po-zh/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "" diff --git a/application/i18n/po/po-zh/footer.po b/application/i18n/po/po-zh/footer.po new file mode 100644 index 0000000000..3f1371977b --- /dev/null +++ b/application/i18n/po/po-zh/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "" diff --git a/application/i18n/po/po-zh/form.po b/application/i18n/po/po-zh/form.po new file mode 100644 index 0000000000..0380465431 --- /dev/null +++ b/application/i18n/po/po-zh/form.po @@ -0,0 +1,121 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "" diff --git a/application/i18n/po/po-zh/imap.po b/application/i18n/po/po-zh/imap.po new file mode 100644 index 0000000000..5c4021fefb --- /dev/null +++ b/application/i18n/po/po-zh/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "" diff --git a/application/i18n/po/po-zh/installer.po b/application/i18n/po/po-zh/installer.po new file mode 100644 index 0000000000..57ca8fe854 --- /dev/null +++ b/application/i18n/po/po-zh/installer.po @@ -0,0 +1,409 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "" + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "" + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "" diff --git a/application/i18n/po/po-zh/layer.po b/application/i18n/po/po-zh/layer.po new file mode 100644 index 0000000000..b4a0b53f28 --- /dev/null +++ b/application/i18n/po/po-zh/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "" diff --git a/application/i18n/po/po-zh/libraries.po b/application/i18n/po/po-zh/libraries.po new file mode 100644 index 0000000000..9a83eff278 --- /dev/null +++ b/application/i18n/po/po-zh/libraries.po @@ -0,0 +1,117 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "" diff --git a/application/i18n/po/po-zh/maintenance.po b/application/i18n/po/po-zh/maintenance.po new file mode 100644 index 0000000000..4fdace0337 --- /dev/null +++ b/application/i18n/po/po-zh/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "" diff --git a/application/i18n/po/po-zh/message.po b/application/i18n/po/po-zh/message.po new file mode 100644 index 0000000000..e62defafaa --- /dev/null +++ b/application/i18n/po/po-zh/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "" diff --git a/application/i18n/po/po-zh/mhi.po b/application/i18n/po/po-zh/mhi.po new file mode 100644 index 0000000000..3f4ffa27e5 --- /dev/null +++ b/application/i18n/po/po-zh/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "" diff --git a/application/i18n/po/po-zh/notifications.po b/application/i18n/po/po-zh/notifications.po new file mode 100644 index 0000000000..e90fb6ad57 --- /dev/null +++ b/application/i18n/po/po-zh/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "" diff --git a/application/i18n/po/po-zh/page.po b/application/i18n/po/po-zh/page.po new file mode 100644 index 0000000000..f1d01ebc6c --- /dev/null +++ b/application/i18n/po/po-zh/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "" diff --git a/application/i18n/po/po-zh/permissions.po b/application/i18n/po/po-zh/permissions.po new file mode 100644 index 0000000000..16749c9a72 --- /dev/null +++ b/application/i18n/po/po-zh/permissions.po @@ -0,0 +1,111 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-zh/private_message.po b/application/i18n/po/po-zh/private_message.po new file mode 100644 index 0000000000..69dcd9e51f --- /dev/null +++ b/application/i18n/po/po-zh/private_message.po @@ -0,0 +1,46 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "" diff --git a/application/i18n/po/po-zh/report.po b/application/i18n/po/po-zh/report.po new file mode 100644 index 0000000000..2ff80f611d --- /dev/null +++ b/application/i18n/po/po-zh/report.po @@ -0,0 +1,392 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "" + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "" diff --git a/application/i18n/po/po-zh/reporters.po b/application/i18n/po/po-zh/reporters.po new file mode 100644 index 0000000000..c73419d05a --- /dev/null +++ b/application/i18n/po/po-zh/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "" diff --git a/application/i18n/po/po-zh/reports.po b/application/i18n/po/po-zh/reports.po new file mode 100644 index 0000000000..c1525269cb --- /dev/null +++ b/application/i18n/po/po-zh/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "" diff --git a/application/i18n/po/po-zh/roles.po b/application/i18n/po/po-zh/roles.po new file mode 100644 index 0000000000..dbf4238fcc --- /dev/null +++ b/application/i18n/po/po-zh/roles.po @@ -0,0 +1,62 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "" diff --git a/application/i18n/po/po-zh/settings.po b/application/i18n/po/po-zh/settings.po new file mode 100644 index 0000000000..8b320bcbd5 --- /dev/null +++ b/application/i18n/po/po-zh/settings.po @@ -0,0 +1,858 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (http://www.transifex.com/projects/p/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-zh/sharing.po b/application/i18n/po/po-zh/sharing.po new file mode 100644 index 0000000000..27e0afde67 --- /dev/null +++ b/application/i18n/po/po-zh/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "" diff --git a/application/i18n/po/po-zh/stats.po b/application/i18n/po/po-zh/stats.po new file mode 100644 index 0000000000..e5f81eee4b --- /dev/null +++ b/application/i18n/po/po-zh/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "" diff --git a/application/i18n/po/po-zh/tooltips.po b/application/i18n/po/po-zh/tooltips.po new file mode 100644 index 0000000000..401f251490 --- /dev/null +++ b/application/i18n/po/po-zh/tooltips.po @@ -0,0 +1,583 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-zh/ui_admin.po b/application/i18n/po/po-zh/ui_admin.po new file mode 100644 index 0000000000..df4a9d7970 --- /dev/null +++ b/application/i18n/po/po-zh/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "" + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-zh/ui_main.po b/application/i18n/po/po-zh/ui_main.po new file mode 100644 index 0000000000..1d4addff0a --- /dev/null +++ b/application/i18n/po/po-zh/ui_main.po @@ -0,0 +1,3168 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "" + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "" + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "" diff --git a/application/i18n/po/po-zh/upgrade.po b/application/i18n/po/po-zh/upgrade.po new file mode 100644 index 0000000000..71a4c3a5d5 --- /dev/null +++ b/application/i18n/po/po-zh/upgrade.po @@ -0,0 +1,299 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-10-23 07:13+0000\n" +"Last-Translator: Angela Oduor \n" +"Language-Team: Chinese (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "" + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/po/po-zh_CN/alerts.po b/application/i18n/po/po-zh_CN/alerts.po new file mode 100644 index 0000000000..b716a0d8f0 --- /dev/null +++ b/application/i18n/po/po-zh_CN/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "电子邮箱地址格式不正确。" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "此电子邮箱地址已被注册接收本站警示信息。" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "电子邮箱地址长度须在4至64个字符之间。" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "打钩则电子邮箱地址为必填项。" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "您报告的事件地点跨越了本网站部署的国家范围。请确保事件地点是在%s" + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "请您在地图上标记一个范围正确的地点。" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "请您在地图上标记事件发生的地点。" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "请您在地图上标记范围正确的地点。" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "请您在地图上标记事件发生的地点。" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "手机号码的位数不正确。" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "此手机号码已被注册接收本站警示信息。" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "手机号码格式不正确,请输入数字,需包含国家代码。" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "您必须输入手机号码或电子邮箱地址。" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "打钩则手机号码为必填项。" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "请您在地图上设定正确的半径范围。" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "请您在地图上设定半径范围。" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "您还没有设置一个收件人,用来接收本站的警示信息。" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "您已订阅了本站以下类别的事件报道的警示信息。" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "验证码已过期。" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "验证码没找到!请检查您输入的 URL 是否正确。" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "验证通过,当有事件发生时您会收到警示消息。" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "要确认您的请求,请点击" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "返回警示页面,创建更多警示" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "您的电子邮箱接收警示的请求已创建,验证信息将发送到" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "请您在下面输入邮件验证信息中提到的验证码" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "您的电子邮箱接收警示的请求没有被保存。" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "您的电子邮箱接收警示的请求已被保存。" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "系统不能处理您的验证请求!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "您的手机号码接收警示的请求已创建,验证信息将发送到" + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "请您在下面输入手机验证信息中提到的验证码" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "您的手机号码接收警示的请求没有被保存。" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "您的手机号码接收警示的请求已被保存。" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "系统配置不正确,导致不能处理警示信息。" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "收到这封邮件是因为您订阅了事件警示信息。如果您不想再收到此类信息请点击" + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "您将不会再收到本站的事件警示信息" + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "我们不能取消你的警报订阅,请检查您输入了正确的URL地址。" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "事件警示 - 验证邮件" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "在确认这个请求之前,您不会收到事件警示信息。" diff --git a/application/i18n/po/po-zh_CN/auth.po b/application/i18n/po/po-zh_CN/auth.po new file mode 100644 index 0000000000..a9d4a97af0 --- /dev/null +++ b/application/i18n/po/po-zh_CN/auth.po @@ -0,0 +1,253 @@ +# +# Translators: +# Lidia Cibor , 2014 +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-30 18:58+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "电子邮箱地址格式不正确。" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "对不起,这个电子邮箱地址已被其他用户使用。" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "电子邮箱地址长度须在4至64个字符之间。" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "电子邮箱地址是必填项。" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "用户名的长度须在3至100个字符之间。" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "用户名是必填项。" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "用户名包含不合法字符。" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "密码必须有至少8个字符的长度。" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "请您输入正确的电子邮箱地址和密码。" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "两次输入的密码不一致。" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "请输入密码。" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "密码只能由字母,数字和符号#、@、_以及-组成。" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "您输入的账户密码是不正确的,请再试一次。" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "密码必须有至少8个字符的长度。" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "请您输入正确的电子邮箱地址和密码。" + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "两次输入的密码不一致。" + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "请输入密码。" + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "密码只能由字母,数字和符号#、@、_以及-组成。" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "登录时发生了一个错误。" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "密码必须有至少8个字符的长度。" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "请您输入正确的电子邮箱地址和密码。" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "两次输入的密码不一致。" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "请输入密码。" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "访问认证服务器失败,请稍后再试。" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "密码只能由字母,数字和符号#、@、_以及-组成。" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "两次输入的密码不一致。" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "电子邮箱地址格式不正确。" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "对不起,电子邮箱地址不存在。" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "电子邮箱地址是必填项。" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "只有超级管理员可以修改超级管理员或升级用户到管理员。" + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "无效的角色。" + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "角色不得少于5个字符,不得多于30个字符" + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "至少要定义一个角色" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "必须选择 ADMIN 或 USER 中的一个角色." + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "忘记密码令牌无效" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "忘记密码令牌需要" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "管理员角色不能被修改。" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "公开资料页面的 URL 地址只能包含数字和字母。" + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "对不起,这个资料页面的 URL 地址已被使用。" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "公开资料的相对 URL 地址长度须在2至16个字符之间。" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "请检查您输入的公开资料页面的 URL 地址。" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "公开资料的相对 URL 地址是必填项。" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "超级管理员角色不能被修改。" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "可能的 CSRF(跨站请求伪造)攻击。你真的要创建/编辑用户?" diff --git a/application/i18n/po/po-zh_CN/bug.po b/application/i18n/po/po-zh_CN/bug.po new file mode 100644 index 0000000000..4820f27fd3 --- /dev/null +++ b/application/i18n/po/po-zh_CN/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "请输入有效的验证码" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "请输入验证码" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "电子邮箱地址格式不正确" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "电子邮箱地址长度须在4至64个字符之间" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "打钩则电子邮箱地址为必填项" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "错误信息是必填项" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "标题长度须不少于3个字符" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "标题是必填项" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "用户名长度须不少于3个字符" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "用户名是必填项" diff --git a/application/i18n/po/po-zh_CN/category.po b/application/i18n/po/po-zh_CN/category.po new file mode 100644 index 0000000000..0bfed06bd3 --- /dev/null +++ b/application/i18n/po/po-zh_CN/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "颜色值长度应是6个字符" + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "颜色是必填项" + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "类别的描述是必填项" + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "图片文件大小不能超过50K" + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "图片文件格式不正确,只能上传 .JPG, .PNG 和 .GIF" + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "图片文件格式不正确" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "标题必须在3至80个字符之间" + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "标题是必填项" + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "要创建的子类别已在父类别中存在" + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "父类别不存在" + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "父类别必须是数字" + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "父类别不能是一个有特殊性的类别" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "父类别是必填项" + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "要创建的子类别不能与父类别相同" + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "有特殊性的类别不能创建子类别" diff --git a/application/i18n/po/po-zh_CN/comments.po b/application/i18n/po/po-zh_CN/comments.po new file mode 100644 index 0000000000..61b4e09fae --- /dev/null +++ b/application/i18n/po/po-zh_CN/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "验证码输入不正确" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "请输入验证码" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "输入了错误的验证码" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "用户名长度须不少于3个字母" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "用户名是必填项" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "评论内容是必填项" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "电子邮箱地址格式不正确" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "电子邮箱地址长度应在4至64个字符之间" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "打钩则电子邮箱地址为必填项" diff --git a/application/i18n/po/po-zh_CN/contact.po b/application/i18n/po/po-zh_CN/contact.po new file mode 100644 index 0000000000..1b259f60ce --- /dev/null +++ b/application/i18n/po/po-zh_CN/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 14:33+0000\n" +"Last-Translator: Qxiaojoe <1303133601@qq.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "验证码输入不正确" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "请输入一个有效地安全地代码。" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "请输入验证码" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "电子邮箱地址格式不正确" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "电子邮箱地址长度应为4至64个字符" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "打钩则电子邮箱地址为必填项" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "消息内容是必填项" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "用户名长度须不少于3个字母" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "用户名是必填项" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "主题长度必须超过3个字符" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "主题是必填项" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "有个错误正发到你的消息里。" diff --git a/application/i18n/po/po-zh_CN/core.po b/application/i18n/po/po-zh_CN/core.po new file mode 100644 index 0000000000..5ad660ee6b --- /dev/null +++ b/application/i18n/po/po-zh_CN/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2013-06-28 14:32+0000\n" +"Last-Translator: Qxiaojoe <1303133601@qq.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "设置文件" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "控制器" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "驱动" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s库的%s驱动必须采用%s界面" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "无法找到%s库的%s驱动" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "您可以连接到 主页再试一遍." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "无法完成请求" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "帮助" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "您请求的文件类型.%s,不被允许访问。" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "无效的调用方法%s,在类%s中。" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "属性%s并不存在于类%s中。" + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "库" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "日志目录不可写:%s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "模型" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi 无法确定执行此请求的控制器: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "请在 config/routes.php 中设置默认路由" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "您所要求的页面%s,没有找到。" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "报告给 Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "您请求的资源%s, %s,没有找到。" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "堆栈跟踪" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "载入用时{execution_time}秒,使用内存{memory_usage}. 由 Ushahidi v%s生成。" + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Ushahidi 的每一个请求只能有一个实例。" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "未捕获 %s:%s 位于文件%s的第%s行" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "查看" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "您必须在调用前设置查看的文件名。" diff --git a/application/i18n/po/po-zh_CN/database.po b/application/i18n/po/po-zh_CN/database.po new file mode 100644 index 0000000000..123173b343 --- /dev/null +++ b/application/i18n/po/po-zh_CN/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "数据库错误:%s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "无法在数据库中找到表\"%s\"。请确认您正在使用 Ushahidi 最新版本中的数据库。" diff --git a/application/i18n/po/po-zh_CN/datetime.po b/application/i18n/po/po-zh_CN/datetime.po new file mode 100644 index 0000000000..815a6a86a0 --- /dev/null +++ b/application/i18n/po/po-zh_CN/datetime.po @@ -0,0 +1,216 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "上午" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "五" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "星期五" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "一" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "星期一" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "下午" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "六" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "星期六" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "日" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "星期日" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "四" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "星期四" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "二" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "星期二" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "三" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "星期三" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "一月" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "一月" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "二月" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "二月" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "三月" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "三月" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "四月" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "四月" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "五月" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "五月" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "六月" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "六月" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "七月" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "七月" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "八月" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "八月" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "九月" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "九月" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "十月" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "十月" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "十一月" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "十一月" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "十二月" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "十二月" diff --git a/application/i18n/po/po-zh_CN/feeds.po b/application/i18n/po/po-zh_CN/feeds.po new file mode 100644 index 0000000000..e532d8a529 --- /dev/null +++ b/application/i18n/po/po-zh_CN/feeds.po @@ -0,0 +1,53 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "日期" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "RSS 名称的长度应在3至70个字符之间" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "请输入RSS的名称" + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "请输入 RSS 的源地址" + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "请输入一个正确的URL。比如:http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "来源" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "标题" diff --git a/application/i18n/po/po-zh_CN/footer.po b/application/i18n/po/po-zh_CN/footer.po new file mode 100644 index 0000000000..1f5166fc73 --- /dev/null +++ b/application/i18n/po/po-zh_CN/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl 还没有安装到系统中。" diff --git a/application/i18n/po/po-zh_CN/form.po b/application/i18n/po/po-zh_CN/form.po new file mode 100644 index 0000000000..d776acee81 --- /dev/null +++ b/application/i18n/po/po-zh_CN/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 13:33+0000\n" +"Last-Translator: Qxiaojoe <1303133601@qq.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "您提供的该字段的默认值是无效的。" + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "字段长度为3至200个字符。" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "请设置字段控件的高度为0到50之间的值。" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "请在日期字段输入正确的日期。" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "选择是为必填项,否为非必填" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "字段名称的长度应为3至100个字符" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "请输入字段名称" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "你输入的字段名已经存在于这个表格中。请输入另一个。" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "您输入了不符合字段格式要求的内容。" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "选择是为必填项,否为非必填" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "请选择一个有效的字段类型" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "请选择字段类型" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "请设置字段控件的长度为0到50之间的值。" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "请输入表单描述" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "默认表单不能删除" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "请选择要添加字段的表单" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "请选择要添加字段的表单" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "表单名字的长度必须在3至100个字符之间" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "请输入表单的名字" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "表格标题已存在,请另选一个。" diff --git a/application/i18n/po/po-zh_CN/imap.po b/application/i18n/po/po-zh_CN/imap.po new file mode 100644 index 0000000000..87d15d3738 --- /dev/null +++ b/application/i18n/po/po-zh_CN/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "无法打开 IMAP 流。" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "不支持的电子邮件服务器。" diff --git a/application/i18n/po/po-zh_CN/installer.po b/application/i18n/po/po-zh_CN/installer.po new file mode 100644 index 0000000000..5ad14f3a15 --- /dev/null +++ b/application/i18n/po/po-zh_CN/installer.po @@ -0,0 +1,411 @@ +# +# Translators: +# elhuevogrande , 2013 +# Lidia Cibor , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-30 18:54+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "基本路径" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "数据库" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "数据库主机" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "如果您运行 Ushahidi 在自己的计算机上,该值可能是“localhost”;如果您从 Web 服务器运行 Ushahidi,你需要从您的网站托管服务提供商得到你的主机信息。" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "数据库名" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "您要运行 Ushahidi 的数据库名称" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "有关详细信息,请查看这篇文章 wiki 上关于数据库的会谈更多细节。" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "默认语言 (Locale)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "每个Ushahidi部署带有语言翻译建立了一套。你也可以添加自己的。" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "禁用" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "启用" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "下面列出的是我们遇到的错误的汇总。" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "服务器上的位置放置的 Ushahidi 文件。我们已自动检测到这个值,请确保它是正确的。如果该字段是空的,不用担心,它是指安装在 Ushahidi 是顶层目录。" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "完了" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "总" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "GoogleAPI密钥" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "任何人可以得到一个 API 钥匙. 获取一个" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "返回" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "高级安装" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "通过5个步骤完成所有基本设置。这包括服务器,地图,网站的名称和联系方式。" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "基本安装" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "如果你想要得到快速启动和运行,选择此选项,简单、快捷。你只需要设置网站的根目录和数据库的信息,稍后可以配置一切。" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "完成" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "欢迎来到 Ushahidi 服务器安装界面。选择您想用下面的哪种类型的安装" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "安装成功!" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "邮件服务器" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "邮件服务器主机" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "例如: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "邮件服务器密码" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "您登陆电子邮箱的密码" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "邮件服务器端口" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "常用的端口: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "邮件服务器类型" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet 邮件访问协议 (IMAP) or 邮局协议 (POP). 有什么区别?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "邮件服务器名称" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "如果您使用 Gmail,Hotmail,雅虎邮箱,输入一个完整的电子邮箱地址作为用户名。" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "地图" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "地图提供程序" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi 与三个地图提供程序能很好的工作:谷歌,必应(Bing)或 Open Street Map。选择您所在地区的最详细的一个。" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "其他步骤..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "密码" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "数据库密码" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "上一步" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "请重启 Apache 服务器" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "开启 or 禁用 SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "有些邮件服务器使用SSL建立连接,因为SSL能提高安全水平。" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "安装 SMS 服务" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "网站电子邮箱地址" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "网站警示电子邮箱地址" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "当你的网站访客注册电子邮箱接收警示信息,他们将收到来自该地址的邮件。此邮件地址不必是同一网站的电子邮件地址。" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "网站将通过这个电子邮箱地址过滤通信。" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "站点名称" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "您的网站名称" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "网站口号" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "你网站的标语、口号" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "下面列出的文件和文件夹,需要在您的网络服务器上设置为可写。" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

下面是改变文件权限的说明:

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "在您开始之前,您需要确保以下文件和文件夹在您的网络服务器上可写,这涉及到改变文件权限。" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "安装过程中,请记下一下信息" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "数据表前缀" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "通常你不会更改表前缀。不过,如果你想从一个单一的数据库中运行多个 Ushahidi 实例,你可以通过改变这里的前缀" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "标题" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "登录, Go to" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "上传 Report 数据" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "用户名" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "数据库用户名" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "并使用下列认证" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "查看您的网站" diff --git a/application/i18n/po/po-zh_CN/layer.po b/application/i18n/po/po-zh_CN/layer.po new file mode 100644 index 0000000000..903d8f9a00 --- /dev/null +++ b/application/i18n/po/po-zh_CN/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "颜色值长度应是6个字符" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "颜色值是必填项" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "文件地址不包含有效的文件。只接受.KMZ,.KML 类型的文件" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "文件地址不包含有效的文件" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "姓名的长度应在3到80个字符之间" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "姓名是必填项" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "需要填入 KML,链接或文件" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "你无法同时使用一个 KML 文件和 URL 链接" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "请输入一个正确的 URL。比如:http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-zh_CN/libraries.po b/application/i18n/po/po-zh_CN/libraries.po new file mode 100644 index 0000000000..9c5b34c3ab --- /dev/null +++ b/application/i18n/po/po-zh_CN/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Lidia Cibor , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-08-30 19:01+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "无法连接 Akismet 服务器" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "无法从 Akismet 获得回复" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API库 %s中无法找到%s类。请检查您的 API 任务中的路径表" + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "您的 Akismet API 密匙无效" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "执行打开文件发送方式中发生错误!
请检查 PHP 是否支持 OpenSSL,或 PHP 是否是5.2之后的版本" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "您的验证信息过长!(目前长度:" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "请写明收件地址(TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "请写明发件地址(FROM)!" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "您的验证信息过长!(目前长度:" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "不支持的方送方式!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API库%s无效。所有 API 库都必须是%s的子类型" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "目录%s无法被删除" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "解压时发生错误:%s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "下载最新的 Ushahidi 中发生错误。服务器状态代码:" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "无法拷贝文件%s" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "无法删除文件%s" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi 升级脚本" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "下载的 Ushahidi 压缩文件%s无法写入" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s 不提供在RiverID类可。" diff --git a/application/i18n/po/po-zh_CN/maintenance.po b/application/i18n/po/po-zh_CN/maintenance.po new file mode 100644 index 0000000000..1254d2f407 --- /dev/null +++ b/application/i18n/po/po-zh_CN/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "很抱歉,我们的网站目前停机维护。请在稍后再试。" diff --git a/application/i18n/po/po-zh_CN/message.po b/application/i18n/po/po-zh_CN/message.po new file mode 100644 index 0000000000..05bc767f69 --- /dev/null +++ b/application/i18n/po/po-zh_CN/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "请输入一个有效的验证码" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "请输入安全码" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "电子邮箱地址格式不正确" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "电子邮箱地址长度须在4至64个字符之间" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "打钩则电子邮箱地址为必填项" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "评论栏为必填项" + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "用户名长度须不少于3个字母" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "用户名为必填项" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "手机号码不正确" diff --git a/application/i18n/po/po-zh_CN/mhi.po b/application/i18n/po/po-zh_CN/mhi.po new file mode 100644 index 0000000000..7d17489efe --- /dev/null +++ b/application/i18n/po/po-zh_CN/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "请输入有效的验证码" + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "请输入验证码" + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "电子邮箱地址格式不正确" + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "请提供有效的电子邮箱地址" + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "信息栏为必填项" + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "标题栏须不少于3个字母" + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "标题栏为必填项" diff --git a/application/i18n/po/po-zh_CN/notifications.po b/application/i18n/po/po-zh_CN/notifications.po new file mode 100644 index 0000000000..d3e8d57e00 --- /dev/null +++ b/application/i18n/po/po-zh_CN/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "这些信息是从您的网站发出的。" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "管理员登录" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "有新的评论,回应:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "新的评论" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "有新的邮件" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "新的邮件" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "有新的事件报告" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "新的事件" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "有新的文本消息" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "新的文本消息" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "您收到了一个事件警示。" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "新的警示!" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "您收到了一个私信。" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "新的私信!" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "回复请转到:" diff --git a/application/i18n/po/po-zh_CN/page.po b/application/i18n/po/po-zh_CN/page.po new file mode 100644 index 0000000000..c99008bfce --- /dev/null +++ b/application/i18n/po/po-zh_CN/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "请输入自定义页面的标题。" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "页面标题需要不小于3个,但不超过150个的字符。" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "请输入页面的链接标签的名称。" + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "请输入自定义页面的内容。" diff --git a/application/i18n/po/po-zh_CN/permissions.po b/application/i18n/po/po-zh_CN/permissions.po new file mode 100644 index 0000000000..b692247a66 --- /dev/null +++ b/application/i18n/po/po-zh_CN/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# Lidia Cibor , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-08-30 18:55+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "查看报告" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "建立/编辑/删除 报告" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "批准报告" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "核实报告" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "管理报告的评论" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "下载报告" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "上传报告。" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "管理消息" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "管理消息报告" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "查看统计" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "修改设置" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "管理面板" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "管理用户" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "管理角色" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "允许签入" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "管理签入" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "进入管理员界面" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "进入成员界面" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "删除所有报告" diff --git a/application/i18n/po/po-zh_CN/private_message.po b/application/i18n/po/po-zh_CN/private_message.po new file mode 100644 index 0000000000..950f6b94ac --- /dev/null +++ b/application/i18n/po/po-zh_CN/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# elhuevogrande , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-25 22:43+0000\n" +"Last-Translator: elhuevogrande \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "父身份必须是数字" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "收件人是必填项" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "信件接受的人不存在" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "标题是必填项" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "标题长度须不少于3个字符,不大于150字符" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "信息内容是必填项" diff --git a/application/i18n/po/po-zh_CN/report.po b/application/i18n/po/po-zh_CN/report.po new file mode 100644 index 0000000000..3b62cb8b66 --- /dev/null +++ b/application/i18n/po/po-zh_CN/report.po @@ -0,0 +1,394 @@ +# +# Translators: +# Lidia Cibor , 2014 +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-08-30 19:02+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "错误!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "您报告的事件地点跨越了本网站部署的国家范围。请确保事件地点是在Uganda国家或地区范围内." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "请输入为“%s”字段的有效值。" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "“% s”字段必须为数字。" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "“% s”字段是必需的。" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "“%s”字段不存在。" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "通过你的账号不能编辑“%s”。" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "“%s”字段必须包含一个有效的email地址。" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "“%s”必须包含一个有效的电话号码" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "“%s”格式必须包含有效地的日期(月/日/年)。" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "“%s”格式必须包含有效地的日期(日/月/年)。" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "请选择一个有效的项目" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "请选择一个有效的项目" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "请选择\"等待核准\"或\"已核准\"这两种状态的报告。" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "请至少选择一个\"等待核准\"或\"已核准\"这两种状态的报告。" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "请选择一个\"等待核准\"或\"已核准\"这两种状态的报告。" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "请选择\"等待验证\"或\"已验证”这两种状态的报告。" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "请至少选择一个\"等待验证\"或\"已验证”这两种状态的报告。" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "请选择一个\"等待验证\"或\"已验证”这两种状态的报告。" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "一个选择有效的事件报告类型进行下载" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "一个选择有效的事件报告类型进行下载" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "一个选择有效的事件报告类型进行下载" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "选择一个下载格式,是CSV或者XML格式。" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "请选择一个有效的格式去下载报告" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "发件日期无效" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "请选择有效的发件日期。不能晚于今天。" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "请为“核准该事件报告”选择一个有效的值" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "请为“核准该事件报告”选择一个有效的值" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "上午/下午格式不正确" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "类别栏格式不正确" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "类别为必填项" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "日期格式不正确" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "日期格式不正确" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "日期为必填项" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "描述为必填项" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "小时格式不正确" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "小时为必填项" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "请为“信息准确度”输入一个有效值" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "请为“信息准确度”输入一个有效值" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "分钟格式不正确" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "分钟为必填项" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "新闻来源链接格式不正确" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "请确认您上传的照片大小不大于2MB" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "上传照片格式无效。仅接受.JPG、.PNG和.GIF格式的图片" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "上传照片文件无效" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "请为“来源可靠度”输入一个有效值" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "请为“来源可靠度”输入一个有效值" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "标题的长度须在3到200个字符之间" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "标题栏为必填项" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "可能的CSRF(跨站请求伪造)攻击。你真的要创建/编辑一份报告?" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "请为“验证此报告”输入一个有效值" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "请为“验证此报告”输入一个有效值" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "视频链接中包含无效的URL地址" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "纬度值格式错误" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "纬度值为必填项。您可以点击地图确定地点" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "地点栏无效" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "此报告已有该语言的翻译版本" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "地点格式错误" + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "原始报告与翻译报告的语言相同" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "语言为必填项" + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "地点名称长度必须在3到200个字符之间" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "地点名为必填项" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "经度值格式错误" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "经度值为必填项。您可以点击地图确定地点" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "邮件地址格式不正确" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "邮件地址长度须在4至64个字符之间" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "名字长度须在3到100个字符之间" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "姓长度须在3到100个字符之间" + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "收件日期格式错误" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "请输入有效的收件日期,不得晚于今日" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "发送日期不得晚于收件日期" diff --git a/application/i18n/po/po-zh_CN/reporters.po b/application/i18n/po/po-zh_CN/reporters.po new file mode 100644 index 0000000000..ae5773ec61 --- /dev/null +++ b/application/i18n/po/po-zh_CN/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "纬度值无效" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "纬度值为必填项。您可以点击地图确定地点" + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "报告者等级无效" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "报告者等级无效" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "地点名称长度必须在3到200个字符之间" + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "地点名为必填项" + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "经度值无效" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "经度值为必填项。您可以点击地图确定地点" + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "无效的报告者" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "无效的报告者" diff --git a/application/i18n/po/po-zh_CN/reports.po b/application/i18n/po/po-zh_CN/reports.po new file mode 100644 index 0000000000..e91f285e52 --- /dev/null +++ b/application/i18n/po/po-zh_CN/reports.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 09:05+0000\n" +"Last-Translator: Qxiaojoe <1303133601@qq.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "请核实你检查过的条目" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "请核实你检查过的条目" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "须在批准前把报道分类好" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "你无权限来执行此操作。" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "你必须选择一个文件去上传。" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "此上传文件必须是.csv或.xml格式。" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "文件上传字段似乎并不包含一个有效的文件。" diff --git a/application/i18n/po/po-zh_CN/roles.po b/application/i18n/po/po-zh_CN/roles.po new file mode 100644 index 0000000000..71a55dcc99 --- /dev/null +++ b/application/i18n/po/po-zh_CN/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-06-28 13:24+0000\n" +"Last-Translator: Qxiaojoe <1303133601@qq.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "描述的长度须在3到100个字符之间" + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "描述为必填项" + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "用户名中只能包含字母和数字" + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "用户名的长度应在3到80个字符之间" + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "超级管理员角色不能被更改" + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "姓名为必填项" + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "访问级别必须是0到100之间的数字." + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "访问级别必须输入0到100之间的数字." + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "权限字段必须是0-100之间的数字。" diff --git a/application/i18n/po/po-zh_CN/settings.po b/application/i18n/po/po-zh_CN/settings.po new file mode 100644 index 0000000000..aae2791713 --- /dev/null +++ b/application/i18n/po/po-zh_CN/settings.po @@ -0,0 +1,860 @@ +# +# Translators: +# Lidia Cibor , 2014 +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-08-30 19:10+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "允许评论栏格式错误" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "允许评论为必选项" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "包括反馈栏格式错误" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "包括反馈为必选项" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "饲料类别字段似乎不包含有效的值。" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "饲料类别字段是必须的。" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "允许警示字段似乎并不包含一个有效的值" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "允许警示字段为必填项。" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "允许报告栏格式错误" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "允许报告为必填项" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "数据分享栏格式错误" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "数据分享为必选项" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "默认记录数量为每个API请求所获得的数量" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "最大记录数量为每个API请求所获得的数量" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "每个IP地址最大的API请求数量" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet 栏格式错误" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "Akismet 栏格式错误" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "该网站横幅似乎并不包含一个有效的图像。只接受 .JPG, .PNG and .GIF格式。" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "请确认“横幅图像”的大小不超过250 KB。" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "“横幅图像”似乎并不包含有效文件。" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "缓存网页为必选项" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "缓存网页格式错误" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "缓存网页时间格式错误" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "缓存网页时间为必填项" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "您的服务器看起来配置为非简洁链接。您将需要更改您的服务器的配置,才可以启用简洁链接。更多信息请参阅如何启用简洁链接的 这个论坛的帖子" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "此选项使 Ushahidi 通过简洁链接的网址(不包括“index.php”的 URL 中)访问。" + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "允许清除链接" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "清除链接" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "Clickatell API 号码不得长于20个字符" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "Clickatell API 号码为必填项" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "Clickatell 密码长度须在5到50个字符之间" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "Clickatell 密码为必填项" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "Clickatell 用户名不得长于50个字符" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "Clickatell 用户名为必填项" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "地图设置" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "默认地址" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "颜色值格式错误" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "颜色值长度应是6个字符" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "颜色值为必填项" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "查看默认地图" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "默认缩放度" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "从城市地名检索" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "邮件服务器端口过长" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "邮件服务器端口只能包含数字" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "邮件服务器密码必须在5到50个字符之间" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "邮件服务器密码为必填项" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "邮件服务器端口过长" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "邮件服务器端口只能包含数字" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "邮件服务器端口过长" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "邮件服务器类型为必填项" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "邮件服务器用户名不得长于50个字符" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "邮件服务器用户名为必填项" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "Facebook 安装选项" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "要获取信息,您将需要创建一个新的 Facebook 的应用" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "这些设置允许用户通过 Facebook登录,这个不是在你的部属上建立一个facebook应用" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "Facebook App ID" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "Facebook应用程序的秘密" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "Google Analytics 中必须包含有效的网站内容 ID,格式为UA-XXXXX-XX" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "启用 HTTPS" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "该选项使 Ushahidi 以不安全的模式访问;不包括 \"https://\" URL 前缀" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "该选项使 Ushahidi 以安全的模式访问;包括 \"https://\" URL 前缀" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "HTTPS" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "每页项目数(前端)格式错误" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "每页项目数(前端)为必填项" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "每页项目数(管理员)格式错误" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "每页项目数(管理员)格式错误" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "设置地图提供商的过程非常简单。选择提供商,从提供商的网站获得 API 密匙,然后输入该密匙即可。" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "缩放" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "选择地图提供商" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "输入新的 API 密匙" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "获得 API 密匙" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "设置地图提供商的过程非常简单。选择提供商,从提供商的网站获得 API 密匙,然后输入该密匙即可。" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "地图提供商" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "地图时间表" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "地图设置" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "该 Ushahidi 布署是否跨越多个国家" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "请选择默认的国家" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "点击并拖动地图选择确切的位置" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "在地图上生成群报告" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "允许所有用户对报告进行评论" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "包括网站上的 RSS 新闻源" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "您创建从饲料新类别" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "允许用户订阅事件报告警示" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "允许用户提交报告" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "Akismet 密匙" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "网站横幅" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "块数每行" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "缓存页" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "缓存页保存时间" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "启用签入" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "网站版权描述" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "为所有分类采用默认颜色" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "类别的默认图标" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "删除横幅图片" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "删除默认图标" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "显示联系页面" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "显示 \"帮助\" 页" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "事件报告警示邮件地址" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "如果想通过电子邮件接收报告,请在此设置您的电子邮件账号。" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "网站电子邮件地址" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "谷歌分析" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "网页内容ID - 格式:UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "每页项目数量(前端)" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "每页项目数量(管理员)" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "防止垃圾评论使用 Akismet 自动处理.
你可以得到免费的密钥注册一个 WordPress.com 用户账户" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "Laconica 证书" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "Laconica 网站" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "网站语言" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "手动批准用户" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "网站信息" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "网站名称" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "隐私设置" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "需要用户的电子邮件确认" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "提交事件报告的信息" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "允许数据存储在 Ushahidi 的服务器" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "网站标签" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "时区" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "网站设置" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "推特(Twitter)搜索关键词" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "标签,以英文逗号分隔" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "饲料地理位置 - 地理名称用户名" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "网站电子邮箱格式无效" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "网站电子邮箱地址长度须在4到100个字符之间" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "网站名称长度须在3到50个字符之间" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "网站名称为必填项" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "标签栏长度须在3到100个字符之间" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "标签栏为必选项" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "您的 Clickatell API 号码" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "查看您的 Clickatell 帐户余额" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "读取帐户余额" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "您的 Clickatell 密码" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "点击这里注册 Clickatell 服务" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "在此输入您的 Clickatell 登录信息" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "您的 Clickatell 用户名" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "FrontlineSMS是免费和开源的软件,这使用户通过手机发送和接受短信和一大群人。点击下面的框从FrontlineSMS.com下载最新版。" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "下载和安装FrontlineSMS" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "详细地说明了可用的安装就是如何从你的FronlineSMS发送短信here. 下面的URL和API键需要和FrontlineSMS设置成同步。" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "复制并粘贴到 FrontlineSMS地址字段。" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "复制并粘贴到FrontlineSMS \"Ushahidi API键\" 字段" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr " 把FrontlineSMS连接到Ushahidi部署。" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "在下方输入连入 Frontline SMS 的电话号码" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "请输入电话号码,不包含“+”和“-”" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "选项1:使用 Frontline SMS" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "选项2:使用 Global SMS 接口" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "SMS 设置选项" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "电话号码1格式错误" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "电话号码1只能包括数字" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "电话号码2过长" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "电话号码2只能包括数字" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "电话号码3过长" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "电话号码3只能包括数字" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "Twitter设置选项" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "得到信息如下,在一个新的Twitter应用程序上设置你的部署" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "消费者关键" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "消费者秘密" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "访问令牌" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "访问令牌秘密" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "测试设置" diff --git a/application/i18n/po/po-zh_CN/sharing.po b/application/i18n/po/po-zh_CN/sharing.po new file mode 100644 index 0000000000..5f764dc1f1 --- /dev/null +++ b/application/i18n/po/po-zh_CN/sharing.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "进入时间" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "增加日期" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "最后接入" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "颜色值长度应是6个字符" + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "颜色值为必填项" + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "共享名称格式错误" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "共享名称为必填项" + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "该网站链接已存在" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "该网站链接无效" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "网站链接为必填项" + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "网站链接中包含无效的 URL 地址" diff --git a/application/i18n/po/po-zh_CN/stats.po b/application/i18n/po/po-zh_CN/stats.po new file mode 100644 index 0000000000..71326edd29 --- /dev/null +++ b/application/i18n/po/po-zh_CN/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "已核准" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "类别" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "分类影响" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "您可以在该表格中看到各类别的报告量随时间变化的情况。从左到右拖动滚动条可以看到不同分类的情况。将鼠标移到图片上可以查看详情。" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "选择日期范围" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "国家" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "国家" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "国家分布" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "您好,这是数据部分。总体描述将随后放出。现在,您可以在上面的分类链接中访问其他页面。" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "错误" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "术语表" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "点击统计" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "图例" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "页面访问" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "访问者在您的网站上访问页面的总数量" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "事件报告" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "事件类型" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "报告数据" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "报告状态" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "事件报告穿孔卡" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "报告数据" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "数据未确定" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1个月" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3个月" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6个月" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "全部" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "未核准" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "独立访问者" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "访问您的页面的人数;独立访问者的身份标识为其浏览器 cookie。如果来访者没有使用 cookie,将通过IP地址、协议、浏览器、插件、操作系统等方式来验证其身份。" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "未验证" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "已验证" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "访客总数" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "访问" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "在最后一次页面访问以后30分钟后重新登录的独立访问者将被视为一次新的访问。" diff --git a/application/i18n/po/po-zh_CN/tooltips.po b/application/i18n/po/po-zh_CN/tooltips.po new file mode 100644 index 0000000000..30daf4fdcc --- /dev/null +++ b/application/i18n/po/po-zh_CN/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# Lidia Cibor , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "这增加了报告的额外类别。如果你选择1类和2类报告已连接到它,该报告将有1类和2类。" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "批准报告或否。如果获得批准,它将被公开。" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "你可以分配一个徽章给用户。选中一个徽章,然后在这里分配。" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "这是二十四小时制的时分范围,第一区域要比第二区域早,否则需要反转,并且将检查系统配置时间。" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "如果你想激活触发器当在指定类别被使用时,您可以在这里设置。如果一篇事件报告有多个分类类别,且每个类别都有触发器,那么只激活一个。" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "如果这些动作发生在每周的特定日子,请在此设置。按住 Shift、Commond(Mac)、或者 Control(Windows)健选择几个日期。" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "邮件内容将被发送" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "邮件标题将被发送" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "源可以是所有饲料所有的饲料或特定饲料。如果你只想特定饲料激活触发器,你会想在这里选择它们。否则,你将要离开这个“皆”" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "官方中文译名推特作者的用户名 (或多个用户名用逗号分隔)。如果你想激活触发器仅对于官方中文译名推特消息从一个特定的用户, 在这里输入自己的用户名(不包括@)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "如果你不想要关键字,那么让此处空白;否则,多个关键字用英文逗号分隔。" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "你可以设定在任何地方或一个特定的位置。如果你选择了一个特定的位置,你将被要求画一个框周围的地区是一个行动。例如,如果你想要这个触发器被激活时,有人提出一个报告在巴西,你会选择“特别区域”,然后在巴西画一个区域。你可以把这些区域画小或大,也可以画多个。" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "该限定符将激活特定数的集群用户或独立用户。留空白可以忽略。" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "这是默认添加到报告的标题。" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "如果所有的限定都通过,触发器将启动响应。这将产生从核准事件报告到发邮件到用户的变化。选择回应激活额外选项。" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "如果你选择“触发的用户”,电子邮件将被发送到执行行动的用户。如果你选择单选按钮旁边的输入框,你将能够进入一个定制的电子邮件地址。当你设置触发的用户在某些地区的地图看到报告,签入或其他一些活动时是有用的。" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "你可以选择多个日期。由时区配置决定。如果不选择日期,默认为所有日期。" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "触发器是调定你的行为操作的核心部件。当有人提交一个事件报告,签入等行为时,你可以通过它过滤回应或使某事发生。" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "用户可以是任何人,或一个特定的用户。如果你只喜欢特定用户激活触发器,你可以选择他们;否则,你将要排除这个“anyone”当最触发器设置为所有用户与系统的相互作用" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "标记一个事件报告已验证或未验证。" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "资料页面本网站使用 Gravatar。通过点击你的头像,你将被带到 Gravatar 网站。在那里,您可以更改您的个人资料头像。" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "用英文逗号分隔每一个值,例如1,2。" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "用英文逗号分隔每一个值,例如1,2。如果你想设置默认值,在选项列表结束位置加::符号。例如,如果你想让 Value 3为默认值,这将是 Value 1,Value 2,Value 3::Value 3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "用英文逗号分隔每一个值,例如 Item 1, Item 2 etc." + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "开始输入成员名单" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "私信标题" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "私信" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "您可以选择一种颜色,将显示在您的个人资料图片在您的公众形象。这也将是彩色点阵显示的地图为您的签入。" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "您的电子邮箱地址" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "这是确定在网站上标识的一种方法。请记住这是公开信息!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "如果设置,这将是您的新密码。将此字段留空如果您想保留您的当前密码。" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "这是在创建一个新用户时的一个要求,将作为用户密码。你应该通知你的新用户,在第一次登陆后修改他们的密码。" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "选择\"是\"让你通过电子邮件在新的事件报告或评论发布时获取事件警示信息。" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "您当前的密码。我们要求您输入您的密码,防止任何未经授权的更改您的帐户。" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "选中此项后,任何人都可以查看你的资料。这是最简单的来展示您提交的报告,您的登入,徽章,等等信息。" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "您的公众资料的地址。" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "你的用户名不能更改。" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "访问级别是用来限制访问自定义表单域数据。较高的访问级别可以访问域从较低水平。superadmin 具有最高的访问级别(100)。公共数据显示在最低访问级别(0)。成员的访问级别10。管理员访问90级默认。" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "这是用来发送事件警示的电子邮箱地址。" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "允许用户通过网络订阅事件警示。" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "允许捆绑类似的报告,到一个单一的点在地图上" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "允许用户在主站上评论。" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "允许RSS源显示在主站上。" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "这允许创建新的分类,从RSS新闻源。" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "允许用户通过网络形式提交信息。" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "默认记录号码被每个 API request 获取" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "最大记录号码被每个 API request 获取" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "每个IP地址请求的最大记录数" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "网站横幅显示了在顶部的前端的网站如果您使用的是支持它的主题。建议的大小,这面旗帜将取决于你使用的主题。记住,这将取代网站标题和标语在页面顶部。" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "多块列将被显示在每一行。" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "启用或禁用页面缓存。这使得网页的显示速度更快的响应时间。我们建议使用缓存高流量的网站。* *记住,报告将被填充在前端的基础上设置的计划下(缓存生命周期)。" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "设置缓存生命周期。" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "这个设置允许你登入。这是一个简化的报告类型,不是在它的主页,需要您的站点配置一定的方式。当你激活这个,确定你的时区设置在协调世界时和你的主题支持登记表。当你使这一主题,checkin-only 将启用在你的插件/主题设置页面。" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "设置地图的覆盖一个特定的位置。" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "为网站上所有类别设置一个颜色代码。" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "为网站上所有类别设置一个图标" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "这是网站将被部署的国家。" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "关闭或打开联系方式页面" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "关闭或打开帮助页面" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "这是在主站上显示的事件报告的数量。" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "这是在管理后台上显示的事件报告的数量。" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "这是该中心收到的消息。" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "这将同步信息枢纽 Ushahidi。" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "短信息接收的手机号码。" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "跟踪您的访客。获得详细的访客统计。" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "设置网站使用的语言。" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "如果你设置这个选项,你必须通过每个个人用户创建一个帐户,在您的网站他们的角色分配(即 Member,Admin,superadmin)。" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "定义网站使用的地图。" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "这显示了在时间线根据提交的日期和时间的报告" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "设置此值为真或是使得只有拥有帐户的用户能够访问网站的部署。" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "用户将通过电子邮件发送一个确认链接点击才可以登录到部署,如果这是设置为“是”。如果你使这一部署后接受了用户,他们将被提示确认他们的帐户之前,他们将被允许继续使用它。" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "这是邮件服务器主机" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "这是电子邮箱的密码" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "这是邮件服务器的端口" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "安全链接 SSL 支持" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "为从主服务器上接收Email,此选项是必须的。" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "事件报告邮件接收电子邮箱用户名" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "命中数据存储在服务器控制 Ushahidi。通过启用此选项,您可以存取击中统计直接在您的控制面板。通过禁用它,你将停止收集数据和将无法收回的交通统计资料收集,这是关闭的。" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "其他人有权发布文本,图像,视频和/或设计主题,您和您的用户创建?如果你有兴趣去 https://creativecommons.org/choose/ 指定其他人能够做你的工作。记得具体是什么内容的网站,你的认证!" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "这是从联系我们页面接收邮件或事件报告的电子邮件地址。" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "这个文本是出现在地图上的主页。这是非常有用的重要信息网站上的访客。不要它,只需在这里把消息删除。" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "这是出现在顶部的本网站的名称。" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "这是显示在表单提交页面的一个信息。可以是一个好的免责声明或进一步指示你的访客编写表单。" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "一句话描述这个网站" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "这是您的网站上运行的时区。这影响任何行动,建立了利用时间和日期,以及默认的当前时间报告的前端和后端的网站。" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "设置推特(twitter)#标签用于鸣叫" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "" diff --git a/application/i18n/po/po-zh_CN/ui_admin.po b/application/i18n/po/po-zh_CN/ui_admin.po new file mode 100644 index 0000000000..2389f7ea81 --- /dev/null +++ b/application/i18n/po/po-zh_CN/ui_admin.po @@ -0,0 +1,1658 @@ +# +# Translators: +# Lidia Cibor , 2014 +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2014-08-31 19:08+0000\n" +"Last-Translator: Lidia Cibor \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "拒绝登入。您的证书无效,或您的请求被拒绝。" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "拒绝登入。您的请求已收到,但由于登入限制(如时间)原因,该请求已被拒绝。请稍后再试。" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "访问级别" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "操作" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "创建到栏目" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "已创建" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "已创建/编辑" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "插件" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "管理员" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "提醒" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "收到提醒" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "全部" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "上午" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "匿名" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "访问者" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "未知地" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API 禁止" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API 日志" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API设置" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "取消禁止" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "全部取消禁止" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "已批准" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "自动批准" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "手动批准" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "已归档" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "您确定您要" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "您确定您要删除该项吗" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "您确定您要删除该照片吗" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "您确定希望更换表单吗" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "分配" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "任务" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "分配徽章" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "作者" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "作者邮件" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "返回" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "禁止IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "起止时间" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "文件块" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "文件体" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "取消" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "栏目" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "表格显示错误" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "请确认您的消息有效" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "请确认该号码有效" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "请查看您的SMS设置!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "签入详情" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "签入" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "已载入城市" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "代码" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "代码版本未能同步" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "颜色" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "评论" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "您的警告验证码是:" + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "该用户已被" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "计数" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "无法找到国家" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "创建/编辑" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "创建报告" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "关键更新" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "CSV文件格式" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "当前处于活动状态" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "当前处于非活动状态" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "您没有有足够的权限编辑以下的自定义字段。" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "每天" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "控制面板" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "数据库" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "日期与时间" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "添加日期" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "修改日期" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "这个礼拜。" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "数据库版本未能同步" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "删除" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "删除 " + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "删除所有的报告?" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "删除徽章" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "演示" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "描述" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "禁用" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "Divider 开始" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "Divider 结束" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "div类目" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "下载报告" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "下拉选择" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "编辑" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "由%s编辑" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "编辑" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "编辑记录" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "电子邮件" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "集体" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "地域符合中发生错误!HTTP 错误" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP库未安装" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "错误的证书" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "错误" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "错误,无法发布事件" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "每六个小时" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "每12个小时" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "试验性的" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "FAQ" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "反馈" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "反馈" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "反馈" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "选择列表" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "默认值" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "数据类型" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "Javascript" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "审定" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "数字" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "自由文本" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "高度(行)" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "隐藏字段" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "最大字母数" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "域名称" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "切换" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "否" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "是的,默认情况下关闭。" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "是的,默认情况下打开。" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "无法找到上传的文件" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "无法打开文件" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "该类型不存在" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "论坛" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "文本区域(自由文本)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "日期框" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "单选按钮" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "多选框" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "下拉框" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "从" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "从" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "地名资讯超时错误" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "需要帮助" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "得到更多的主题" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "得到更多地插件" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "操作" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "增加/编辑" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "电子邮件" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "管理用户" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "角色" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "用户" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "帮助" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "每小时" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "对事件的反馈" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "安装文件夹依然存在,删除安装文件夹,这是一个潜在地安全漏洞。" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "事件" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "事件" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "事件详情" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "无效的参数" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP地址" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "这是一个数据域吗?" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "谁可以查看答案?" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "谁可以提交答案?" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "关键字" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "关键字" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "电子邮件地址:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "全名:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "密码:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "角色:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "用户名:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "层:" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "管理员:" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "登出" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "日志" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "管理" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "管理角色与权限" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "查看用户" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "添加/编辑用户" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "管理你的公共列表" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "标记为" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "标记为非垃圾邮件" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "标记为垃圾邮件" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "不符合任何文档" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "短信" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "短信" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "位置信息" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter 信息" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "您的信息已发送!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "MHI" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "分钟" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "分" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "缺少参数" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "管理员" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "修改" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "编辑时区" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "下移" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "上移" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "多主机实例" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "我的提醒" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "签入记录" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "我的信息" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "我的报告" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "投票数" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "肯定" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "否定" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "名称" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "创建新的提醒" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "创建新的消息" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "新密码" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "否" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "这是一个特殊的类别,将不会显示在用户提交报告的页面。这是用来存放作为删除的没有分类(未归类报告)的报告。" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "通告" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "不区分大小写" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "无法找到" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "没有数据。没有可显示的结果" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "没有错误" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "没有可以显示的结果!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "自" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "关于具体计算" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "OpenID's" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "页" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "页" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "页面无法找到" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "抱歉,你正在访问的页面不在这里。

你是从我们的网站上打开链接的?
如果你是从我们的网站的另一个链接到了这个页面,请 联系我们以便我们能纠正错误。

你是从另一个网站打开下面的链接吗?
从其他网站链接有时可能超时或拼写有误。告诉我们你是从哪个网站访问的,我们可以试着联系其他的网站来解决这个问题。

你输入网址了吗?
你可能输入的是错误地地址(网站)。检查以确保你的拼写是正确的,以及大小写等等。

" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "抱歉,你访问的页面不在这里。" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "使用的参数" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "密码" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "重置密码" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "亲爱的" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "我们收到了重置密码的请求,发送自" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "如果要修改您的密码,请点击下面的链接(或将其复制粘贴到您的浏览器地址栏)" + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "根据您的请求,您的密码将被重置。可以在下面的地址查看详细信息:" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "Ushahidi 密码重置" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "电话" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "请选择" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "短信" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "数据未能以发布方式送出" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "预览" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "消息" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "私人信息" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "发送私人信息" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "标题" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "接收人" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "公共列表" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "限定条件" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "读取" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "相关" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "报告标题" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "报告日期" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "报告人" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "报告人等级" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "灾情报道" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "信誉分数" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "必需项" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "重置" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "回应" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "结果" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "撤销" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "CrowdmapID管理已有的Email账号,用户登录时需有Crowdmap 密码。" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "保存设置" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "搜索" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "搜索报告" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "搜索:" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "加密密钥仍设置为默认值。这是不安全的,必须改变。" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "本网站通过 HTTP 提供服务。应设置为 HTTP 以提高安全性。" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "维基(Wiki)说明:" + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "选择你想要的报告下载格式" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- 选择一个类型 ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "选择一项" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "你必须在选择一个回应前选择一个触发事件。" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "你必须在定义限定条件前选择一个触发事件。" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "发送者" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "接受者" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "来自您的网站的信息发送时间为" + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "服务器时间" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "设置" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "显示页" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "显示结果" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "显示" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "特殊分类" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "这是一个特殊分类,将不会在用户提交的报告表单中显示。该分类需与“可信的报告者”一起使用" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "特定区域" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "状态" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "数据" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "浏览数据" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "数据收集失败!请稍后重试" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "数据收集失败" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "特殊的日子" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "标题" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "超级管理员" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "任务已完成" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "文字栏" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "姓名" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "管理用户" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "超时错误" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "至" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "合计结果" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "至" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "翻译结果" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "触发器" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "触发的用户" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "触发程序" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "未验证的" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "未知" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "未知的错误" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "未读" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "您还没有收到过任何提醒。" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr "点击立即升级" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "升级 Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "Ushahidi 升级状态" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "上传报告" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "用户" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "用户" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "Ushahidi" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "已验证/未验证" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "确认/取消 验证" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "版本" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr "可用于升级" + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "视频编码" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "私人消息" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "查看页面" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "查看报告" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "欢迎," + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "维基" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "XML" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "是" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "您的搜索" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "点击下面的按钮如果你想删除对数据库中的所有报告。你应该知道,此操作不可撤消。" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "在继续之前,我们建议您备份您的资料库" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "我敢肯定,我想从数据库中删除所有的%s的报告。" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "您确定要删除所有的报告?" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "不存在要删除的报告。" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "登录数" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "最后登录" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "确认帐户?" diff --git a/application/i18n/po/po-zh_CN/ui_main.po b/application/i18n/po/po-zh_CN/ui_main.po new file mode 100644 index 0000000000..73229652e9 --- /dev/null +++ b/application/i18n/po/po-zh_CN/ui_main.po @@ -0,0 +1,3172 @@ +# +# Translators: +# elhuevogrande , 2013 +# leeshzh , 2013 +# Lidia Cibor , 2014 +# Plato Leung , 2012 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2014-09-27 05:31+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "关于 " + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "接入" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "接入限制" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "用户名" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "操作" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "这个操作不能撤销. 你确定要继续吗?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "激活" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "激活" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "增加" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "增加" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "附加数据" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "更多的报道" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "增加/编辑" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "增加一个域" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "增加新语言" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "增加新的" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "增加新分类" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "增加翻译" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "管理员" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "接收你附近的报道" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "如果有新的报道加入,或在附近有新的报告,警告我" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "保存我的设置" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "邮箱地址:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "输入邮箱地址" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "输入手机号码 ,包含国家区号(+86 是中国) [暂时没有开通]" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "接收你附近的报道" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "提醒已经被" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "手机:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "在下面地图上选择一个中心点, 系统将把一定范围内的最新报道发送给你." + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "如果您无法找到您的地址,请在地图上标注正确的地址" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS 订阅(复制下面的地址)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "选择城市" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "第一步: 选择你关注的城市或位置" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "第二步: 发送最新案例至我的邮箱" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "第三步: 选择分类" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "验证我之前的申请" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "您的提醒已经保存!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "其他" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "允许" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "允许的HTML标签: \"%s\"." + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "%s的:内部框架只能在允许的。" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "全部分类" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "所有时间" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "和" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "激活" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "已激活" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "己激活的报道" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "激活这篇报道" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "类似的" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "档案" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "已归档" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "升序" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "在" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "作者" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "自动签入" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "平均每日报道数" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "等待激活" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "未解决" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "徽章" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "获得的徽章" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "徽章图像" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "或者你可以上传你自己的徽章图像。" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "徽章包" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "选择一个徽章" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "博客" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "浏览个人资料" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "取消" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "分类" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "分类" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "分类过滤" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "这个分类已经存在 " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "分类名称" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "更改日期范围" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "更改密码" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "修改图像" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "选择一个" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "选择下载的数据点" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "自定义时间范围" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "选择域类型" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "简洁链接" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "清除" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "清除地图" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "关闭" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "群" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "颜色" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "评论" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "评论" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "评论正文" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "你的设置保存了!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "设置" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "您已经成功地确认您的电子邮件地址!请在下面登录。" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "您已成功确认您的电子邮件地址!你登录之前,管理员必须批准您的帐户" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "电子邮件认证失败!您可以在下面申请重新认证。" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "联系我们" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "安全码" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "您的电子邮箱地址" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "信息" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "您的信息已发送至" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "您的姓名" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "您的电话号码" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "发送信息" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "信息标题" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright ©" + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "创建" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "创建/编辑" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "新建" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "创建新密码" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "创建报道" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "信誉" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "密码" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "其它" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "信息" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "日期" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(mm/dd/yyyy)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "时间日期" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "日" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "解除" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "肯尼亚内罗毕" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "删除" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "已删除" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "删除" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "删除无效项" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "删除最新的" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "删除此报道" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "删除选中的" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "删除垃圾邮件" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "演示" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "描述" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "降下" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "越精确越好" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "详细" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "直接报道" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "无效的" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "关闭" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "下载报道" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "下载" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "编辑" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "编辑类型" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "编辑报道" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "邮箱" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "邮箱地址" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "邮件服务器设置" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "邮件服务器主机" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "邮件服务器密码" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "邮件服务器端口" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "邮件服务器SSL支持" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "邮件服务器类型" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "邮件服务器用户名" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "根据您的设置,必须填入电子邮件地址" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "如果要通过电子邮件接受报道,请在下面填入您的电子邮件设置。请注意,电子邮件将发送至您的" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "某些服务器需要完整的电子邮件地址" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "电子邮件帐号密码" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "通用端口:25,110,995(Gmail的POP3 SSL),993(Gmail的IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "例如:mail.您的网站.com,imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "例如:pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "可用的或不可用的SSL连接" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---空---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "至" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "错误!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "示例" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "肯尼亚" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "外部应用程序" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "外部视频链接" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "脸书" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "反馈" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "快速反馈" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "通过发送电子邮件到请给我们介绍一下您的经验反馈" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "反馈" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "该反馈已" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "反馈项目" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "反馈姓名" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "反馈链接" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "未使用的域" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "文件" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "您的文件超过允许的最大大小。" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "过滤器" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "过滤后的报告" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "案例筛选" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "根据包含内容筛选" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "找到" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "寻找位置" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "名字" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "强制执行时间表" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "忘记密码?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "表单" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "表单" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "表彰描述" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "编辑此表单" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "该表单已" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "表单标题" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "从" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "全名" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "地理位置可用" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "颜色" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "评论" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "表" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "线条宽度" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "前往" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "tag" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "已被" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "救援组织/团队" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "隐藏" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "隐藏" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "隐藏这个消息" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "主页" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "可以通过那些方式报道案例?" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "HTTPS" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "ID" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "用于识别您和网站上的其他用户。" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "图像" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "图像" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "图像/图标" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "不活动的" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "收件箱" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "案例" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "附近事件" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "发生地" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "含有" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "含有分类" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "包括自定义字段" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "含有描述" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "含有尽可能详细的信息" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "含有纬度(Latitude)" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "含有地址信息" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "含有经度(Longitude)" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "包含个人信息" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "含有媒体" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "信息评分" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "输入您的详细地址" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "您的帐户没有适当的权限登陆,请联系管理员。" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "作为响应" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP地址" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "这是您的个人资料吗?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "项目" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "项目" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "项目详情" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "项目标题" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "密匙" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "关键词" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML 文件" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "上传 KMZ/KML 文件" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "KML链接" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "浴室" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "语言" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "最新的" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "上个月" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "昵称(网上 ID)" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "去年" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "纬度" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "图层" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "更多图层" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "该图层已" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "图层名称" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "图层地址" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "评论" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "信息较少" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "等级" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "该等级已" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "等级名" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "受限的" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "链接" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "清单" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "加载报道" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "位置" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "位置" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr "城市, 省 或者 国家" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "登录" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "用户创建成功,您现在可以登录。" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "一封确认邮件已发送到您注册的电子邮件地址。" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "帐号创建。您的帐户必须由管理员批准后才能登录。" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "电子邮件地址不存在,请尝试不同的 Email,或创建一个帐户。" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "请点击您的帐户提供者。" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "登录" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "电子邮件和密码" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "用户号" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "登录" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "创建账户" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "感谢您注册时%1$s。确认您的电子邮件地址,请访问以下网址:%2$s" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "登录确认" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "一个新的用户已签署了位于%1$s。批准其注册请至以下网址:%2$s" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "新用户 审批" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "您的用户帐户已被批准对于%1$s。登录到以下网址:%2$s" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "用户帐户批准" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "现在创建一个帐户,享有网站上的更多的功能。" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "经度" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "地图" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "标记为已读" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "标记为未读" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "最大文件大小" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "媒体" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "媒体过滤" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "会员" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "管理您的账户" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "短信/邮件/微博" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "短信/邮件/微博" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "短信内容" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "消息自一个非数字的来源:" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "移动的" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "修改" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "修改时间" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "月" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "更多" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "更多信息" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "该 Ushahidi 布署是否跨越多个国家" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "您必须通过确认您的电子邮件地址来访问此部署。如果你失去了你的确认电子邮件,您可以重新发一次。" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "名称" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "最近报道" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "新的" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "新闻" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "新闻订阅" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "新闻来源" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "新分类" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "新密码" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "新报道" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "下一个" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "否" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "没有签入记录显示。" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "没有数据" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "无" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "注释" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "未激活" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "未激活" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---未选中---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "不是垃圾邮件" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "未归类" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "没有报道" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "没有结果" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "关" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "官方&媒体消息" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "开" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "选项" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "可选的" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "选项" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "救援组织&团队" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "组织" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "组织描述" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "组织电子邮件" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "该组织已" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "组织名" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "组织电话 1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "组织电话 2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "组织网站" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "原始的" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "原始描述" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "原始题目" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "OTHER USHAHIDI INSTANCES" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "发件箱" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "正在发送" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "页面" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "页" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "页面描述" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "该页面已被" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "页面表名" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "页面标题" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "父类别" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "密码" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "重新输入您的密码" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "密码修改成功!请重新登录。" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "忘记密码了吗?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "您可以登录邮箱取回新的密码" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "在这台计算机上保存记录?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "一个月内" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "一年内" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "待定的" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "每" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "个人信息 选填." + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "电话" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "图片" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "图片" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "图片 于 视频" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* 使用地点名称或纬度,经度坐标(格式:38.19,85.61),或点击地图找准正确的位置来搜索您的位置。" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "播放" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "请注意" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "插件" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "插入网站" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "公开的个人资料" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "公开的个人资料地址(URL)" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "预览" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "预览项" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "预览消息" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "上一个" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "私人的" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "配置文件的颜色" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "您的设置已保存" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "快速入口" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "评分" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "Leído" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "接收" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "接收自" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "接收提醒" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "最新报道" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "刷新报道" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "注册的电子邮件" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "删除" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "回复" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "查看新案例" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "最新案例 (来自当前地图, 按照时间顺序排列)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "报道人" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "报道人" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "报道人日期" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "报道人邮箱" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "报道人" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "报道人已经" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "报道人 IP 地址" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "昵称(网络 ID)" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "报道人等级" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "报道人等级" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "报道人电话" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "最新报道" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "浏览" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "提交" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "这些用户发布的报告" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "分类(至少选择一项)" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "%d 报道" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "日期" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "案例描述" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "报告将以 CSV 形式下载" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "电子邮件" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "特征" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "选择你附近地址" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "姓名" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "昵称(网络 ID)" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "精确位置信息" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "新闻来源链接" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "联系方式(可选)" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "上传照片" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "回到案例报道页面" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "选择城市" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "你的报道已经提交给我们的工作人员. 如有必要我们会尽快联系你." + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "提交新的案例报道" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "时间" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "时间线" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "标题" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "视频链接" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "报道新案例" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "报告详情" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "通过发送短信至" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "通过发送电子邮件至" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "通过用热门标签发送推特" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "在网站上报道新案例" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "通过使用一个应用程序" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "你的报道已经保存" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "标题" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "需求更多的信息" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "需求地址" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "必须项" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "需求" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "重发确认邮件" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "重置" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "清除所有筛选条件" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "重置密码" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "从选择的国家获取城市名" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "账户管理由%s提供服务。" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "你已经有一个帐户用CrowdmapID管理! 请尝试使用CrowdmapID 电子邮件地址和密码。" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "角色" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "订阅RSS" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "保存" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "已保存" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "保存 & 添加一个" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "关闭并保存" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "保存" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "日程" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "日程设定" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "日" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "时" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "日程设定记录" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "分" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "星期" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "搜索" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "搜索结果" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "验证码" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "选择所有" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "选择域类型" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "选择种类类型" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "在地图上选择" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "选择全部需要的" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "请确认您已经勾选了其中一项" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "选择主题" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "发送" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "发送确认邮件" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "发送到" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "发送" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "发送人" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "服务器地址" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "服务器类型" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "服务器" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "服务器用户名" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "服务器用户ID" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "分享" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "分享数据" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "分享成功" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "分享" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "段地图" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "显示" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "显示所有" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "显示消息" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "显示报道从%1$s 到 %2$s" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "网站" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "网站邮箱地址" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "网站地址" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "小地图" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "短信" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "对不起,您还没有任何徽章。" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "来源" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "来源名称" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "排序" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "排序方式" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "来源地址 URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "垃圾邮件" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL 支持?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "来自" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "步骤" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "报道新案例" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "提交经 %1$s 通过 %2$s" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "用短信提交" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "发送短信至" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "用你的手机" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "成功!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "导入成功" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "名字" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "新开线路" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "系统" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "高地图" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP 端口" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "主题" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Ushahidi 默认主题" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "主题" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "此" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "今天" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "本月" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "本周" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "今年" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "这是您的资料。" + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "时间" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "标题 " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "去" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "今天" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "今天" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "令牌" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "全部报告" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "已翻译" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "翻译描述" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "翻译标题" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "翻译成" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "译文" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "译文已保存" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "受信任的" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "来源" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "推特" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "无法发送电子邮件。" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "未分类的报告" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "未读" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "未验证" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "升级需求" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "上传" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "报道上载说明:-" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "XML 上载说明" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "CSV上载说明" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "上传文件" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "上传报道" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "自定义字段列必须有与其form_id 附加到它们例如自定义字段测试,默认的形式,其ID为1时,这将是Test-1。 如果您将导入自定义表单字段, 你保证" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "您可以用以下表格将事件导入 Ushahidi 的引擎" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "上载的视频要用CSV或XML格式" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "当事件ID已经存在于数据库中, 该CSV/ XML文件中的条目将被忽略。" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "必须至少包括“事件名称”和“事件日期”" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "如果没有提供经度和纬度列将使用 Google Geocoder 的地理编码,位置。" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "要是进口多信息: 个人信息或者自己定义的表格字段" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "至少要包含一项个人信息(例如名,姓,电子邮件等)。空记录不会被导入。" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "你的项下拉框,单选按钮和复选框符合规定的自定义字段选项在你的榜样" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "复选框选项之间用逗号分隔 例如,如果果您选择的选择是苹果,芒果和葡萄您的输入应“苹果,芒果,葡萄”" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "日期字段的值是按以下格式: m月d日yyyy 年例如2012年10月3日 = 10/03/2012" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "CSV报告示例" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,案例标题,案例日期,位置,描述,分类,认可,验证
\n\t\t\t\t\t\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"二\",\"抢劫\",\"2009-03-18 10:10:00\".\"阿克拉\",\"抢劫发生无处不在\",\"骚乱, 死亡, 财产损失, \",是,否,\"5.55\",\"-0.2166667\"" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "上传成功" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "上传视频" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "链接" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "用户" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "用户名" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi 管理员" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "验证状态" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "已解决" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "问题已经解决" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "解决" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "问题已经解决" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "版本" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "来自" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "视频" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "显示" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "显示" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "更多" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "显示所有源" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "显示所有报告" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "查看新闻条目" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "显示更多" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "查看公开的资料" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "查看报道" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "查看报道" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "看视频" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "可见" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "等待批准" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "等待验证" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "宽地图" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web表格" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "网络" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "重量" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "是" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "昨天" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "您的控制面板" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "您的文件" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "放大" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "缩小" diff --git a/application/i18n/po/po-zh_CN/upgrade.po b/application/i18n/po/po-zh_CN/upgrade.po new file mode 100644 index 0000000000..50ff4ab004 --- /dev/null +++ b/application/i18n/po/po-zh_CN/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# Qxiaojoe <1303133601@qq.com>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2013-06-27 10:02+0000\n" +"Last-Translator: Qxiaojoe <1303133601@qq.com>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "无效的输入数据。0表示否,1表示是。" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "自动升级" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "可用的更新" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "继续" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "升级" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "我们将把您的数据库自" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "版本升级至新的版本" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "点击“升级”按钮,在我们升级的过程中您可以放松一下。" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "如果您希望我们为您备份数据库,只需要点击下面的按钮,就可以轻松备份了" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "在升级时是否备份数据库?(强烈推荐您如此做)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi 数据库升级" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi 软件已更新!在继续操作之前,你需要把你的数据库更新至最新版本 (%s)。" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "你的数据库版本是最新的。" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "升级失败" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "手动升级" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi 升级情况" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "下面的说明细节如何手动升级你 Ushahidi" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
下载
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- 下载最新的 Ushahidi" + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
备份
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- 只是以防万一, 建议,整个备份 Ushahidi 当前的配置。
复制文件
- 解压缩下载的文件
- 依赖于不同的服务器系统,使用您的首选工具/模式 (e.g. Telnet, FTP, SSH) 登录到服务器和更换内容的所有文件夹与最新的新构建。
升级数据库
- 首先确定你的数据库架构版本 db_version 在配置表中的值或在本页面最上面查看Ushahidi升级信息。
- 如果你的版本是 version 25, 你需要从 25-26, 26-27, 27-28 依次更新到最新的 SQL /sql 目录.
- 同时,数据库客户端也要通过执行 upgradex-x.sql 文件更新.
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "Step 3: 查看 sql 文件夹. 手动运行 upgrade-.sql 文件开始从当前数据库版本更新" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "Step 4: 点击 \"Continue\" 按钮更新所需要的数据表" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "要自动更新,请点击下面的按钮" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "你当前使用在 %3$s上运行Ushahidi v%1$s 和数据库版本 %2$d " + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "正在升级" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "继续简易升级,要求提供下列信息的服务器,您的网站上托管。" + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP 主机名: Example: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP 密码:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP 账户:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "您已经更新到最新版本 Ushahidi." + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "不需要再更新。" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "数据库版本: " + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "警告:version.php 和数据库软件版本不匹配。" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "警告:在version.php 数据库版本与数据库不匹配。" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "数据库:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "Ushahidi %s" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "测试版" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "下载最新的ushahidi版本" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "日志文件" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "下载成功。解压中..." + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "下载失败" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "升级成功。正在复制文件..." + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "解压失败" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "复制成功。正在升级数据库……" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "复制文件失败。" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "数据库备份并升级成功。" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "数据库备份失败。" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "数据库升级成功。" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "正在删除下载文件..." + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "升级成功。查看日志文件" diff --git a/application/i18n/po/po-zh_TW/alerts.po b/application/i18n/po/po-zh_TW/alerts.po new file mode 100644 index 0000000000..63bdf69050 --- /dev/null +++ b/application/i18n/po/po-zh_TW/alerts.po @@ -0,0 +1,230 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-20 11:56+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: alerts.alert_email.email +msgctxt "alerts.alert_email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "請輸入有效的電子郵件信箱" + +#: alerts.alert_email.email_check +msgctxt "alerts.alert_email.email_check" +msgid "" +"That Email address has already been registered to receive alerts for that " +"location." +msgstr "針對您所選擇區域的通知電子郵件信箱已經登錄" + +#: alerts.alert_email.length +msgctxt "alerts.alert_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "電子郵件信箱必須在4~64字元之間" + +#: alerts.alert_email.required +msgctxt "alerts.alert_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "如果勾選了電子信箱,則電子信箱為必填" + +#: alerts.alert_country.single_country +msgctxt "alerts.alert_country.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the alert " +"location is within the country %s." +msgstr "您報告的事件地點跨越了本網站部署的國家範圍。請確保事件地點是在 %s 國家或地區範圍內." + +#: alerts.alert_lat.between +msgctxt "alerts.alert_lat.between" +msgid "You have not selected a valid location on the map." +msgstr "請在地圖上選擇正確的地點" + +#: alerts.alert_lat.required +msgctxt "alerts.alert_lat.required" +msgid "You have not selected a valid location on the map." +msgstr "請在地圖上選擇正確的地點" + +#: alerts.alert_lon.between +msgctxt "alerts.alert_lon.between" +msgid "You have not selected a valid location on the map." +msgstr "請在地圖上選擇正確的地點" + +#: alerts.alert_lon.required +msgctxt "alerts.alert_lon.required" +msgid "You have not selected a valid location on the map." +msgstr "請在地圖上選擇正確的地點" + +#: alerts.alert_mobile.length +msgctxt "alerts.alert_mobile.length" +msgid "" +"The Mobile Phone field does not seem to contain the right amount of digits." +msgstr "手機號碼長度不符" + +#: alerts.alert_mobile.mobile_check +msgctxt "alerts.alert_mobile.mobile_check" +msgid "" +"That Mobile Phone Number has already been registered to receive alerts for " +"that location." +msgstr "針對您所選擇區域的通知簡訊號碼已經登錄" + +#: alerts.alert_mobile.numeric +msgctxt "alerts.alert_mobile.numeric" +msgid "" +"The Mobile Phone field does not appear to contain a valid phone. Please " +"input numbers only including Country Code." +msgstr "目前所填入的手機號碼無效,請填入國碼" + +#: alerts.alert_mobile.one_required +msgctxt "alerts.alert_mobile.one_required" +msgid "You must enter either your Mobile Phone Number or your Email Address." +msgstr "手機號碼或電子郵件信箱之一為必填" + +#: alerts.alert_mobile.required +msgctxt "alerts.alert_mobile.required" +msgid "The Mobile Phone field is required if the checkbox is checked." +msgstr "如果勾選了手機,則手機號碼為必填" + +#: alerts.alert_radius.in_array +msgctxt "alerts.alert_radius.in_array" +msgid "You have not set a valid radius on the map." +msgstr "請在地圖上設定你欲選擇的半徑範圍" + +#: alerts.alert_radius.required +msgctxt "alerts.alert_radius.required" +msgid "You have not set your radius on the map." +msgstr "請在地圖上設定你欲選擇的半徑範圍" + +#: alerts.alert_recipient.required +msgctxt "alerts.alert_recipient.required" +msgid "You have not set a recipient for alerts." +msgstr "您還沒有設置一個收件人,用來接收本站發布的警示信息。" + +#: alerts.alerts_subscribed +msgctxt "alerts.alerts_subscribed" +msgid "You have subscribed for alerts with the following categories" +msgstr "您已訂閱了本站以下類別的事件報導的警示信息" + +#: alerts.code_already_verified +msgctxt "alerts.code_already_verified" +msgid "This code has been verified before!" +msgstr "這組認證碼已經被使用過" + +#: alerts.code_not_found +msgctxt "alerts.code_not_found" +msgid "" +"This verification code was not found! Please confirm that you have the " +"correct URL." +msgstr "請確認已輸入正確的認證碼" + +#: alerts.code_verified +msgctxt "alerts.code_verified" +msgid "" +" Your code was verified correctly. You will now receive alerts about " +"incidents as they happen." +msgstr "認證已經完成,當所選擇的地點有通報事件時,您將會收到通知" + +#: alerts.confirm_request +msgctxt "alerts.confirm_request" +msgid "To confirm your alert request, please go to " +msgstr "確認你的事件通知申請,請到" + +#: alerts.create_more_alerts +msgctxt "alerts.create_more_alerts" +msgid "Return to the Alerts page to create more alerts" +msgstr "返回事件通知頁,以設定更多通知" + +#: alerts.email_alert_request_created +msgctxt "alerts.email_alert_request_created" +msgid "" +"Your Email Alert request has been created and verification message has been " +"sent to " +msgstr "認證申請已完成,認證碼訊息已經送至" + +#: alerts.email_code +msgctxt "alerts.email_code" +msgid "Please enter the Email confirmation code you received below: " +msgstr "請輸入以下電子信箱所收到的認證碼" + +#: alerts.email_error_head +msgctxt "alerts.email_error_head" +msgid "Your Email Alert Request Has NOT Been Saved!" +msgstr "您的電子信箱事件通知申請並未被儲存!" + +#: alerts.email_ok_head +msgctxt "alerts.email_ok_head" +msgid "Your Email Alert Request Has Been Saved!" +msgstr "您的電子信箱事件通知申請已經被儲存!" + +#: alerts.error +msgctxt "alerts.error" +msgid "The system was not able to process your confirmation request!" +msgstr "系統不能處理您的驗證請求!" + +#: alerts.mobile_alert_request_created +msgctxt "alerts.mobile_alert_request_created" +msgid "" +"Your Mobile Alert request has been created and verification message has been" +" sent to " +msgstr "認證申請已完成,認證碼訊息已經送至 " + +#: alerts.mobile_code +msgctxt "alerts.mobile_code" +msgid "" +"Please enter the SMS confirmation code you received on your mobile phone " +"below: " +msgstr "請輸入以下手機號碼所收到的簡訊認證碼" + +#: alerts.mobile_error_head +msgctxt "alerts.mobile_error_head" +msgid "Your Mobile Alert Request Has NOT Been Saved!" +msgstr "您的手機簡訊事件通知申請並未被儲存" + +#: alerts.mobile_ok_head +msgctxt "alerts.mobile_ok_head" +msgid "Your Mobile Alert Request Has Been Saved!" +msgstr "您的手機簡訊事件通知申請已經被儲存" + +#: alerts.settings_error +msgctxt "alerts.settings_error" +msgid "This deployment is not set up to correctly process alerts" +msgstr "系統配置不正確,導致不能處理警示信息" + +#: alerts.unsubscribe +msgctxt "alerts.unsubscribe" +msgid "" +"You have received this email because you subscribed to receive alerts. If " +"you do not wish to receive future alerts go to " +msgstr "收到這個訊息是由於您曾經設定事件通知。如果你不想收到事件通知,請到 " + +#: alerts.unsubscribed +msgctxt "alerts.unsubscribed" +msgid "You will no longer receive alerts from " +msgstr "您將不會再收到事件通知 " + +#: alerts.unsubscribe_failed +msgctxt "alerts.unsubscribe_failed" +msgid "" +"We were not able to unsubscribe you. Please confirm that you have the " +"correct URL." +msgstr "系統無法處理取消事件通知。請確認已輸入正確的網址" + +#: alerts.verification_email_subject +msgctxt "alerts.verification_email_subject" +msgid "alerts - verification" +msgstr "事件通知- 認證訊息" + +#: alerts.verify_code +msgctxt "alerts.verify_code" +msgid "" +"You will not receive alerts on this location until you confirm your request." +msgstr "在完成申請程序之前,您將不會收到關於這個點的任何訊息." diff --git a/application/i18n/po/po-zh_TW/auth.po b/application/i18n/po/po-zh_TW/auth.po new file mode 100644 index 0000000000..3fd9175b09 --- /dev/null +++ b/application/i18n/po/po-zh_TW/auth.po @@ -0,0 +1,252 @@ +# +# Translators: +# Cai Fang Ye, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-01 16:58+0000\n" +"Last-Translator: Cai Fang Ye\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: auth.email.email +msgctxt "auth.email.email" +msgid "The email you entered is not a valid email address." +msgstr "請確認email為正確資料" + +#: auth.email.exists +msgctxt "auth.email.exists" +msgid "Sorry, a user account already exists for this email address." +msgstr "抱歉,這個email帳號已經註冊了" + +#: auth.email.length +msgctxt "auth.email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "email資料需為4~64個字元" + +#: auth.email.required +msgctxt "auth.email.required" +msgid "The email field is required." +msgstr "email為必填" + +#: auth.name.length +msgctxt "auth.name.length" +msgid "The name field must be at least 3 and no more 100 characters long." +msgstr "姓名欄位必須填入3~100個字元" + +#: auth.name.required +msgctxt "auth.name.required" +msgid "The name field is required." +msgstr "姓名為必填" + +#: auth.name.standard_text +msgctxt "auth.name.standard_text" +msgid "The username field contains disallowed characters." +msgstr "使用者名稱出現不能使用的字元" + +#: auth.current_password.length +msgctxt "auth.current_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "密碼至少8個字元" + +#: auth.current_password.login error +msgctxt "auth.current_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "請確認您是否輸入正確的電子郵件和密碼" + +#: auth.current_password.matches +msgctxt "auth.current_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "請輸入一樣的密碼在兩個密碼欄位裡" + +#: auth.current_password.required +msgctxt "auth.current_password.required" +msgid "The password field is required." +msgstr "密碼欄位是必要的" + +#: auth.current_password.alpha_dash +msgctxt "auth.current_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "密碼欄位必須有英文字元, 另外, 其餘符號只能是#、@、數字、底線或破折號" + +#: auth.current_password.incorrect +msgctxt "auth.current_password.incorrect" +msgid "" +"The current password you entered for your account is incorrect. Please try " +"again." +msgstr "該帳號您輸入的密碼不正確, 請再試一次" + +#: auth.new_password.length +msgctxt "auth.new_password.length" +msgid "The password field must be at least 8 characters long." +msgstr "密碼必須為5~16個字元" + +#: auth.new_password.login error +msgctxt "auth.new_password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "請確認你已輸入正確的密碼." + +#: auth.new_password.matches +msgctxt "auth.new_password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "請在兩個密碼欄位中輸入一樣的密碼." + +#: auth.new_password.required +msgctxt "auth.new_password.required" +msgid "The password field is required." +msgstr "密碼為必填欄位." + +#: auth.new_password.alpha_dash +msgctxt "auth.new_password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "密碼只能由字母,數字和符號#,@,_以及-組成" + +#: auth.password.default +msgctxt "auth.password.default" +msgid "There has been an error attempting to log you in." +msgstr "之前曾有試圖登入的錯誤" + +#: auth.password.length +msgctxt "auth.password.length" +msgid "The password field must be at least 8 characters long." +msgstr "密碼必須為5~16個字元" + +#: auth.password.login error +msgctxt "auth.password.login error" +msgid "Please check that you entered the correct email and password." +msgstr "請確認你已輸入正確的密碼" + +#: auth.password.matches +msgctxt "auth.password.matches" +msgid "Please enter the same password in the two password fields." +msgstr "請在兩個密碼欄位中輸入一樣的密碼" + +#: auth.password.required +msgctxt "auth.password.required" +msgid "The password field is required." +msgstr "密碼為必填欄位" + +#: auth.password.riverid server down +msgctxt "auth.password.riverid server down" +msgid "The authentication server is down. Please try again later." +msgstr "認證伺服器當機, 請稍後再試" + +#: auth.password.riverid +msgctxt "auth.password.riverid" +msgid "%s" +msgstr "%s" + +#: auth.password.alpha_dash +msgctxt "auth.password.alpha_dash" +msgid "" +"The password field must have alphabetical characters, the # and @ symbols, " +"numbers, underscores and dashes only" +msgstr "密碼只能由字母,數字和符號#,@,_以及-組成" + +#: auth.password_confirm.matches +msgctxt "auth.password_confirm.matches" +msgid "The password confirmation field must match the password field." +msgstr "密碼確認欄位資料需與密碼欄位資料一致" + +#: auth.resetemail.email +msgctxt "auth.resetemail.email" +msgid "The email you entered is not a valid email address." +msgstr "請確認輸入的email是正確的" + +#: auth.resetemail.invalid +msgctxt "auth.resetemail.invalid" +msgid "Sorry, we don't have your email address" +msgstr "抱歉,系統內沒有你的email資料" + +#: auth.resetemail.required +msgctxt "auth.resetemail.required" +msgid "The email field is required." +msgstr "email欄位為必填" + +#: auth.role.superadmin_modify +msgctxt "auth.role.superadmin_modify" +msgid "Only a superadmin may modify a superadmin or upgrade a user to admin." +msgstr "只有超級管理員可以修改超級管理員或升級用戶到管理員." + +#: auth.roles.alpha_numeric +msgctxt "auth.roles.alpha_numeric" +msgid "Invalid role format." +msgstr "無效的角色." + +#: auth.roles.length +msgctxt "auth.roles.length" +msgid "The role field must be at least 5 and no more than 30 characters long." +msgstr "角色地欄位字元長度需於5~30之間." + +#: auth.roles.required +msgctxt "auth.roles.required" +msgid "You must define at least one role." +msgstr "請至少選擇一種角色" + +#: auth.roles.values +msgctxt "auth.roles.values" +msgid "You must select either ADMIN or USER role." +msgstr "必須選擇是管理者或使用者" + +#: auth.token.invalid +msgctxt "auth.token.invalid" +msgid "The forgotten password token is invalid" +msgstr "忘記密碼憑證無效" + +#: auth.token.required +msgctxt "auth.token.required" +msgid "Forgotten password token was required" +msgstr "需要忘記密碼的憑證" + +#: auth.username.admin +msgctxt "auth.username.admin" +msgid "The admin user role cannot be modified." +msgstr "管理者權限無法被修改" + +#: auth.username.alpha_numeric +msgctxt "auth.username.alpha_numeric" +msgid "The public profile URL field must only contain numbers and letters." +msgstr "公告頁面的URL網址地址只能包含數字和字母." + +#: auth.username.exists +msgctxt "auth.username.exists" +msgid "Sorry, this public profile URL is already in use." +msgstr "抱歉,這個使用者名稱已經被註冊" + +#: auth.username.length +msgctxt "auth.username.length" +msgid "" +"The public profile URL field must be at least 2 and no more 100 characters " +"long." +msgstr "使用者帳號必須為2~16個字元" + +#: auth.username.login error +msgctxt "auth.username.login error" +msgid "Please check that you entered the correct public profile URL." +msgstr "請確認你已輸入正確的使用者名稱" + +#: auth.username.required +msgctxt "auth.username.required" +msgid "The public profile URL field is required." +msgstr "使用者帳號為必填" + +#: auth.username.superadmin +msgctxt "auth.username.superadmin" +msgid "The super admin role cannot be modified." +msgstr "超級管理者權限無法被修改" + +#: auth.username.csrf +msgctxt "auth.username.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a user?" +msgstr "可能的的CSRF(跨站請求偽造)攻擊。你真的要建立/編輯用戶?" diff --git a/application/i18n/po/po-zh_TW/bug.po b/application/i18n/po/po-zh_TW/bug.po new file mode 100644 index 0000000000..822e842a01 --- /dev/null +++ b/application/i18n/po/po-zh_TW/bug.po @@ -0,0 +1,66 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-11-19 16:52+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: bug.captcha.default +msgctxt "bug.captcha.default" +msgid "Please enter a valid security code." +msgstr "請輸入有效的安全碼" + +#: bug.captcha.required +msgctxt "bug.captcha.required" +msgid "Please enter the security code." +msgstr "請輸入安全碼" + +#: bug.email.email +msgctxt "bug.email.email" +msgid "The Email field does not appear to contain a valid email address?" +msgstr "電子信箱欄位顯示未填入有效的資料" + +#: bug.email.length +msgctxt "bug.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "電子信箱欄位需填入4~46個字元" + +#: bug.email.required +msgctxt "bug.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "如果已勾選,則電子信箱為必填" + +#: bug.error.required +msgctxt "bug.error.required" +msgid "The error field is required." +msgstr "錯誤欄位為必填" + +#: bug.subject.length +msgctxt "bug.subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "主題欄位需至少三個字元" + +#: bug.subject.required +msgctxt "bug.subject.required" +msgid "The subject field is required." +msgstr "主題欄位為必填" + +#: bug.yourname.length +msgctxt "bug.yourname.length" +msgid "The name field must be at least 3 characters long." +msgstr "姓名欄位至少需三個字元" + +#: bug.yourname.required +msgctxt "bug.yourname.required" +msgid "The name field is required." +msgstr "姓名欄位為必填." diff --git a/application/i18n/po/po-zh_TW/category.po b/application/i18n/po/po-zh_TW/category.po new file mode 100644 index 0000000000..1b71cf3334 --- /dev/null +++ b/application/i18n/po/po-zh_TW/category.po @@ -0,0 +1,93 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:04+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: category.category_color.length +msgctxt "category.category_color.length" +msgid "The color field must be 6 characters long." +msgstr "顏色欄位字元至少需六碼." + +#: category.category_color.required +msgctxt "category.category_color.required" +msgid "The color field is required." +msgstr "顏色欄位為必填." + +#: category.category_description.required +msgctxt "category.category_description.required" +msgid "The description field is required." +msgstr "描述欄位為必填." + +#: category.category_image.size +msgctxt "category.category_image.size" +msgid "Please ensure that image uploads sizes are limited to 50KB." +msgstr "請確認上傳地圖檔未超過50KB." + +#: category.category_image.type +msgctxt "category.category_image.type" +msgid "" +"The image field does not appear to contain a valid image. The only accepted " +"formats are .JPG, .PNG and .GIF." +msgstr "請確認上傳圖檔格式,需為JPG,PNG或GIF." + +#: category.category_image.valid +msgctxt "category.category_image.valid" +msgid "The image field does not appear to contain a valid file" +msgstr "請確認上傳圖檔為正確檔案格式" + +#: category.category_title.length +msgctxt "category.category_title.length" +msgid "The title field must be at least 3 and no more 80 characters long." +msgstr "標題欄位字元長度為3~80之間." + +#: category.category_title.required +msgctxt "category.category_title.required" +msgid "The title field is required." +msgstr "標題欄位為必填." + +#: category.parent_id.already_parent +msgctxt "category.parent_id.already_parent" +msgid "You cannot subcategorize a category with subcategories." +msgstr "要創建的子類別已在父類別中存在." + +#: category.parent_id.exists +msgctxt "category.parent_id.exists" +msgid "The parent category does not exist." +msgstr "上一層分類並不存在." + +#: category.parent_id.numeric +msgctxt "category.parent_id.numeric" +msgid "The parent category field must be numeric." +msgstr "上一層分類代码需為數字." + +#: category.parent_id.parent_trusted +msgctxt "category.parent_id.parent_trusted" +msgid "The parent category cannot be a special category" +msgstr "上一層分類不能是一個有特殊性的類別" + +#: category.parent_id.required +msgctxt "category.parent_id.required" +msgid "The parent category field is required." +msgstr "上一層分類為必填." + +#: category.parent_id.same +msgctxt "category.parent_id.same" +msgid "The category and the parent category cannot be the same." +msgstr "分類與上一層分類名稱不得相同." + +#: category.parent_id.special +msgctxt "category.parent_id.special" +msgid "Special categories cannot be subcategorised." +msgstr "有特殊性的類別不能創建子類別" diff --git a/application/i18n/po/po-zh_TW/comments.po b/application/i18n/po/po-zh_TW/comments.po new file mode 100644 index 0000000000..184136fb24 --- /dev/null +++ b/application/i18n/po/po-zh_TW/comments.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: comments.captcha.default +msgctxt "comments.captcha.default" +msgid "Please enter a valid security code." +msgstr "請輸入有效的安全碼" + +#: comments.captcha.required +msgctxt "comments.captcha.required" +msgid "Please enter the security code." +msgstr "請輸入安全碼" + +#: comments.captcha.valid +msgctxt "comments.captcha.valid" +msgid "You entered the wrong security code." +msgstr "輸入了錯誤的驗證碼" + +#: comments.comment_author.length +msgctxt "comments.comment_author.length" +msgid "The name field must be at least 3 characters long." +msgstr "名字至少為3個字元" + +#: comments.comment_author.required +msgctxt "comments.comment_author.required" +msgid "The name field is required." +msgstr "姓名欄位為必填" + +#: comments.comment_description.required +msgctxt "comments.comment_description.required" +msgid "The comments field is required." +msgstr "訊息欄位為必填" + +#: comments.comment_email.email +msgctxt "comments.comment_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "請確認已輸入正確的Email" + +#: comments.comment_email.length +msgctxt "comments.comment_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email資料需為4~64位元" + +#: comments.comment_email.required +msgctxt "comments.comment_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "當選擇Email時,則Email欄位為必填" diff --git a/application/i18n/po/po-zh_TW/contact.po b/application/i18n/po/po-zh_TW/contact.po new file mode 100644 index 0000000000..866ea39d99 --- /dev/null +++ b/application/i18n/po/po-zh_TW/contact.po @@ -0,0 +1,77 @@ +# +# Translators: +# Cai Fang Ye, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-01 16:59+0000\n" +"Last-Translator: Cai Fang Ye\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: contact.captcha.default +msgctxt "contact.captcha.default" +msgid "Please enter a valid security code." +msgstr "請輸入正確的安全碼" + +#: contact.captcha.valid +msgctxt "contact.captcha.valid" +msgid "Please enter a valid security code." +msgstr "請輸入有效的安全碼" + +#: contact.captcha.required +msgctxt "contact.captcha.required" +msgid "Please enter the security code." +msgstr "請輸入安全碼" + +#: contact.contact_email.email +msgctxt "contact.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "請確認已輸入有效的Email" + +#: contact.contact_email.length +msgctxt "contact.contact_email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email資料需為4~64字元" + +#: contact.contact_email.required +msgctxt "contact.contact_email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "如果已經選擇Email,則Email欄位為必填" + +#: contact.contact_message.required +msgctxt "contact.contact_message.required" +msgid "The message field is required." +msgstr "訊息欄位為必填" + +#: contact.contact_name.length +msgctxt "contact.contact_name.length" +msgid "The name field must be at least 3 characters long." +msgstr "姓名欄位至少為1個字元" + +#: contact.contact_name.required +msgctxt "contact.contact_name.required" +msgid "The name field is required." +msgstr "姓名欄位為必填" + +#: contact.contact_subject.length +msgctxt "contact.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "主題欄位置少為3個字元" + +#: contact.contact_subject.required +msgctxt "contact.contact_subject.required" +msgid "The subject field is required." +msgstr "主題欄位為必填" + +#: contact.email_send.failed +msgctxt "contact.email_send.failed" +msgid "There was an error sending your message." +msgstr "傳送您的訊息中發生了錯誤" diff --git a/application/i18n/po/po-zh_TW/core.po b/application/i18n/po/po-zh_TW/core.po new file mode 100644 index 0000000000..49fafb728f --- /dev/null +++ b/application/i18n/po/po-zh_TW/core.po @@ -0,0 +1,158 @@ +# +# Translators: +# Cai Fang Ye, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-10 03:37+0000\n" +"PO-Revision-Date: 2014-01-01 17:00+0000\n" +"Last-Translator: Cai Fang Ye\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: core.config +msgctxt "core.config" +msgid "config file" +msgstr "配置文件" + +#: core.controller +msgctxt "core.controller" +msgid "controller" +msgstr "控制器" + +#: core.driver +msgctxt "core.driver" +msgid "driver" +msgstr "驅動" + +#: core.driver_implements +msgctxt "core.driver_implements" +msgid "The %s driver for the %s library must implement the %s interface." +msgstr "%s驱动的%s库必须采用%s界面" + +#: core.driver_not_found +msgctxt "core.driver_not_found" +msgid "The %s driver for the %s library could not be found." +msgstr "%s驅動的%s庫不存在" + +#: core.errors_disabled +msgctxt "core.errors_disabled" +msgid "" +"You can go to the home page or try " +"again." +msgstr "您可以連接到主頁再試一遍." + +#: core.error_file_line +msgctxt "core.error_file_line" +msgid "%s [%s]:" +msgstr "%s [%s]:" + +#: core.generic_error +msgctxt "core.generic_error" +msgid "Unable to Complete Request" +msgstr "無法完成請求" + +#: core.helper +msgctxt "core.helper" +msgid "helper" +msgstr "幫助" + +#: core.invalid_filetype +msgctxt "core.invalid_filetype" +msgid "" +"The requested filetype, .%s, is not allowed in your view configuration file." +msgstr "您請求的文件類型.%s,不被允許訪問" + +#: core.invalid_method +msgctxt "core.invalid_method" +msgid "Invalid method %s called in %s" +msgstr "无效的调用方法%s,在%s的調用中" + +#: core.invalid_property +msgctxt "core.invalid_property" +msgid "The %s property does not exist in the %s class." +msgstr "屬性%s並不存在於類%s中." + +#: core.library +msgctxt "core.library" +msgid "library" +msgstr "库" + +#: core.log_dir_unwritable +msgctxt "core.log_dir_unwritable" +msgid "The log directory is not writable: %s" +msgstr "日誌目錄不可寫:%s" + +#: core.model +msgctxt "core.model" +msgid "model" +msgstr "模型" + +#: core.no_controller +msgctxt "core.no_controller" +msgid "" +"Ushahidi was not able to determine a controller to process this request: %s" +msgstr "Ushahidi無法確定執行此請求的控制器: %s" + +#: core.no_default_route +msgctxt "core.no_default_route" +msgid "Please set a default route in config/routes.php" +msgstr "請在config/routes.php中設置默認路由" + +#: core.page_not_found +msgctxt "core.page_not_found" +msgid "The page you requested, %s, could not be found." +msgstr "您所要求的頁面%s,沒有找到" + +#: core.report_bug +msgctxt "core.report_bug" +msgid "Report This Issue To Ushahidi" +msgstr "報告給Ushahidi" + +#: core.resource_not_found +msgctxt "core.resource_not_found" +msgid "The requested %s, %s, could not be found." +msgstr "您請求的資源%s, %s,沒有找到" + +#: core.stack_trace +msgctxt "core.stack_trace" +msgid "Stack Trace" +msgstr "堆棧跟踪" + +#: core.stats_footer +msgctxt "core.stats_footer" +msgid "" +"Loaded in {execution_time} seconds, using {memory_usage} of memory. " +"Generated by Ushahidi v%s." +msgstr "載入用時{execution_time}秒,使用內存{memory_usage}. 由Ushahidi v%s生成." + +#: core.text_direction +msgctxt "core.text_direction" +msgid "ltr" +msgstr "ltr" + +#: core.there_can_be_only_one +msgctxt "core.there_can_be_only_one" +msgid "There can be only one instance of Ushahidi per page request." +msgstr "Ushahidi的每一個請求只能有一個實例" + +#: core.uncaught_exception +msgctxt "core.uncaught_exception" +msgid "Uncaught %s: %s in file %s on line %s" +msgstr "未捕獲 ​​%s:%s 位於文件%s的第%s行" + +#: core.view +msgctxt "core.view" +msgid "view" +msgstr "查看" + +#: core.view_set_filename +msgctxt "core.view_set_filename" +msgid "You must set the the view filename before calling render." +msgstr "調用Render之前,您必須設置視圖文件名" diff --git a/application/i18n/po/po-zh_TW/database.po b/application/i18n/po/po-zh_TW/database.po new file mode 100644 index 0000000000..da5e2dc19a --- /dev/null +++ b/application/i18n/po/po-zh_TW/database.po @@ -0,0 +1,28 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: database.error +msgctxt "database.error" +msgid "Database error: %s" +msgstr "數據庫錯誤: %s" + +#: database.table_not_found +msgctxt "database.table_not_found" +msgid "" +"Table \"%s\" cannot be found in the database. Please make sure you are using" +" the latest version of the database for this version of Ushahidi." +msgstr "無法在數據庫中找到表\"%s\"。請確認您正在使用Ushahidi最新版本中的數據庫." diff --git a/application/i18n/po/po-zh_TW/datetime.po b/application/i18n/po/po-zh_TW/datetime.po new file mode 100644 index 0000000000..4361af477d --- /dev/null +++ b/application/i18n/po/po-zh_TW/datetime.po @@ -0,0 +1,218 @@ +# +# Translators: +# Ashley Lin , 2012 +# kiang , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-28 18:27+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: datetime.am +msgctxt "datetime.am" +msgid "am" +msgstr "上午" + +#: datetime.friday.abbv +msgctxt "datetime.friday.abbv" +msgid "Fri" +msgstr "週五" + +#: datetime.friday.full +msgctxt "datetime.friday.full" +msgid "Friday" +msgstr "週五" + +#: datetime.monday.abbv +msgctxt "datetime.monday.abbv" +msgid "Mon" +msgstr "週一" + +#: datetime.monday.full +msgctxt "datetime.monday.full" +msgid "Monday" +msgstr "週一" + +#: datetime.pm +msgctxt "datetime.pm" +msgid "pm" +msgstr "下午" + +#: datetime.saturday.abbv +msgctxt "datetime.saturday.abbv" +msgid "Sat" +msgstr "週六" + +#: datetime.saturday.full +msgctxt "datetime.saturday.full" +msgid "Saturday" +msgstr "週六" + +#: datetime.sunday.abbv +msgctxt "datetime.sunday.abbv" +msgid "Sun" +msgstr "週日" + +#: datetime.sunday.full +msgctxt "datetime.sunday.full" +msgid "Sunday" +msgstr "週日" + +#: datetime.thursday.abbv +msgctxt "datetime.thursday.abbv" +msgid "Thu" +msgstr "週四" + +#: datetime.thursday.full +msgctxt "datetime.thursday.full" +msgid "Thursday" +msgstr "週四" + +#: datetime.tuesday.abbv +msgctxt "datetime.tuesday.abbv" +msgid "Tue" +msgstr "週二" + +#: datetime.tuesday.full +msgctxt "datetime.tuesday.full" +msgid "Tuesday" +msgstr "週二" + +#: datetime.wednesday.abbv +msgctxt "datetime.wednesday.abbv" +msgid "Wed" +msgstr "週三" + +#: datetime.wednesday.full +msgctxt "datetime.wednesday.full" +msgid "Wednesday" +msgstr "週三" + +#: datetime.january.abbv +msgctxt "datetime.january.abbv" +msgid "Jan" +msgstr "1月" + +#: datetime.january.full +msgctxt "datetime.january.full" +msgid "January" +msgstr "一月" + +#: datetime.february.abbv +msgctxt "datetime.february.abbv" +msgid "Feb" +msgstr "2月" + +#: datetime.february.full +msgctxt "datetime.february.full" +msgid "February" +msgstr "二月" + +#: datetime.march.abbv +msgctxt "datetime.march.abbv" +msgid "Mar" +msgstr "3月" + +#: datetime.march.full +msgctxt "datetime.march.full" +msgid "March" +msgstr "三月" + +#: datetime.april.abbv +msgctxt "datetime.april.abbv" +msgid "Apr" +msgstr "4月" + +#: datetime.april.full +msgctxt "datetime.april.full" +msgid "April" +msgstr "四月" + +#: datetime.may.abbv +msgctxt "datetime.may.abbv" +msgid "May" +msgstr "5月" + +#: datetime.may.full +msgctxt "datetime.may.full" +msgid "May" +msgstr "五月" + +#: datetime.june.abbv +msgctxt "datetime.june.abbv" +msgid "Jun" +msgstr "6月" + +#: datetime.june.full +msgctxt "datetime.june.full" +msgid "June" +msgstr "六月" + +#: datetime.july.abbv +msgctxt "datetime.july.abbv" +msgid "Jul" +msgstr "7月" + +#: datetime.july.full +msgctxt "datetime.july.full" +msgid "July" +msgstr "七月" + +#: datetime.august.abbv +msgctxt "datetime.august.abbv" +msgid "Aug" +msgstr "8月" + +#: datetime.august.full +msgctxt "datetime.august.full" +msgid "August" +msgstr "八月" + +#: datetime.september.abbv +msgctxt "datetime.september.abbv" +msgid "Sep" +msgstr "9月" + +#: datetime.september.full +msgctxt "datetime.september.full" +msgid "September" +msgstr "九月" + +#: datetime.october.abbv +msgctxt "datetime.october.abbv" +msgid "Oct" +msgstr "10月" + +#: datetime.october.full +msgctxt "datetime.october.full" +msgid "October" +msgstr "十月" + +#: datetime.november.abbv +msgctxt "datetime.november.abbv" +msgid "Nov" +msgstr "11月" + +#: datetime.november.full +msgctxt "datetime.november.full" +msgid "November" +msgstr "十一月" + +#: datetime.december.abbv +msgctxt "datetime.december.abbv" +msgid "Dec" +msgstr "12月" + +#: datetime.december.full +msgctxt "datetime.december.full" +msgid "December" +msgstr "十二月" diff --git a/application/i18n/po/po-zh_TW/feeds.po b/application/i18n/po/po-zh_TW/feeds.po new file mode 100644 index 0000000000..55a321ef6c --- /dev/null +++ b/application/i18n/po/po-zh_TW/feeds.po @@ -0,0 +1,54 @@ +# +# Translators: +# kiang , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-28 18:26+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: feeds.date +msgctxt "feeds.date" +msgid "DATE" +msgstr "日期" + +#: feeds.feed_name.length +msgctxt "feeds.feed_name.length" +msgid "" +"The feed name field must be at least 3 and no more \n" +"\t\t\t70 characters long." +msgstr "RSS名稱的長度應在3至70個字元之間" + +#: feeds.feed_name.required +msgctxt "feeds.feed_name.required" +msgid "Please enter the name of the feed." +msgstr "請輸入RSS的名稱." + +#: feeds.feed_url.required +msgctxt "feeds.feed_url.required" +msgid "Please enter feed's URL." +msgstr "請輸入RSS的源地址(URL)." + +#: feeds.feed_url.url +msgctxt "feeds.feed_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com" +msgstr "請輸入一個正確的URL。比如. http://www.ushahidi.com" + +#: feeds.source +msgctxt "feeds.source" +msgid "SOURCE" +msgstr "來源" + +#: feeds.title +msgctxt "feeds.title" +msgid "Title" +msgstr "標題" diff --git a/application/i18n/po/po-zh_TW/footer.po b/application/i18n/po/po-zh_TW/footer.po new file mode 100644 index 0000000000..470a8e5c53 --- /dev/null +++ b/application/i18n/po/po-zh_TW/footer.po @@ -0,0 +1,21 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: footer.cURL_not_installed +msgctxt "footer.cURL_not_installed" +msgid "php5-curl is not installed on this system." +msgstr "php5-curl 還沒有安裝到系統中" diff --git a/application/i18n/po/po-zh_TW/form.po b/application/i18n/po/po-zh_TW/form.po new file mode 100644 index 0000000000..b00b8fe7b7 --- /dev/null +++ b/application/i18n/po/po-zh_TW/form.po @@ -0,0 +1,122 @@ +# +# Translators: +# Cai Fang Ye, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-01 17:01+0000\n" +"Last-Translator: Cai Fang Ye\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: form.field_default.default +msgctxt "form.field_default.default" +msgid "The default value you have provided for the field is invalid." +msgstr "之前所提供的欄位預設值為無效資料." + +#: form.field_default.length +msgctxt "form.field_default.length" +msgid "" +"The Field Name must be at least 3 and no more than 200 characters long." +msgstr "欄位名稱不得超過200個字元" + +#: form.field_height.between +msgctxt "form.field_height.between" +msgid "Please enter a value 0 to 50 for the Field Height." +msgstr "請輸入欄位高度值,需介於0~50" + +#: form.field_isdate.between +msgctxt "form.field_isdate.between" +msgid "You have entered an invalid value for Date Field." +msgstr "你輸入的資料不正確" + +#: form.field_isdate.required +msgctxt "form.field_isdate.required" +msgid "Please select Yes or No for the Date Field." +msgstr "請確認是否新增日期欄位" + +#: form.field_name.length +msgctxt "form.field_name.length" +msgid "" +"The Field Name must be at least 3 and no more than 100 characters long." +msgstr "欄位名稱需為3~100個字元" + +#: form.field_name.required +msgctxt "form.field_name.required" +msgid "Please enter Field Name." +msgstr "請輸入欄位名稱" + +#: form.field_name.duplicate +msgctxt "form.field_name.duplicate" +msgid "" +"The field name you entered already exists on this form. Please enter another" +" one." +msgstr "您所輸入的欄位名稱在此表格已存在, 請輸入其它的名稱" + +#: form.field_required.between +msgctxt "form.field_required.between" +msgid "You have entered an invalid value for Field Required." +msgstr "你輸入的資料不正確" + +#: form.field_required.required +msgctxt "form.field_required.required" +msgid "Please select Yes or No for Field Required." +msgstr "請確認是否新增欄位" + +#: form.field_type.numeric +msgctxt "form.field_type.numeric" +msgid "Please select a valid Field Type." +msgstr "請選擇一個正確的欄位類型" + +#: form.field_type.required +msgctxt "form.field_type.required" +msgid "Please select a Field Type." +msgstr "請選擇一個欄位類型" + +#: form.field_width.between +msgctxt "form.field_width.between" +msgid "Please enter a value 0 to 300 for the Field Width." +msgstr "請輸入欄位寬度值,需介於0~300" + +#: form.form_description.required +msgctxt "form.form_description.required" +msgid "Please enter form's Description." +msgstr "請輸入表格描述" + +#: form.form_id.default +msgctxt "form.form_id.default" +msgid "The default form cannot be deleted." +msgstr "預設的表格無法被刪除" + +#: form.form_id.numeric +msgctxt "form.form_id.numeric" +msgid "Please select which form to add this field to." +msgstr "請選擇欲增加欄位的表格" + +#: form.form_id.required +msgctxt "form.form_id.required" +msgid "Please select which form to add this field to." +msgstr "請選擇欲增加欄位的表格" + +#: form.form_title.length +msgctxt "form.form_title.length" +msgid "" +"The form name field must be at least 3 and no more than 100 characters long." +msgstr "表格名稱需為3~100個字元" + +#: form.form_title.required +msgctxt "form.form_title.required" +msgid "Please enter the name of the form." +msgstr "請輸入表格名稱" + +#: form.form_title.exists +msgctxt "form.form_title.exists" +msgid "A form with that title already exists. Please choose another." +msgstr "有此標題的表格已存在, 請選擇其它的" diff --git a/application/i18n/po/po-zh_TW/imap.po b/application/i18n/po/po-zh_TW/imap.po new file mode 100644 index 0000000000..a82228535e --- /dev/null +++ b/application/i18n/po/po-zh_TW/imap.po @@ -0,0 +1,26 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: imap.imap_stream_not_opened +msgctxt "imap.imap_stream_not_opened" +msgid "Could not open IMAP stream." +msgstr "無法開啟 IMAP stream" + +#: imap.unsupported_service +msgctxt "imap.unsupported_service" +msgid "The email service is not supported." +msgstr "不支持的電子郵件服務器" diff --git a/application/i18n/po/po-zh_TW/installer.po b/application/i18n/po/po-zh_TW/installer.po new file mode 100644 index 0000000000..95d468f2e8 --- /dev/null +++ b/application/i18n/po/po-zh_TW/installer.po @@ -0,0 +1,410 @@ +# +# Translators: +# Cai Fang Ye, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-01 16:41+0000\n" +"Last-Translator: Cai Fang Ye\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: installer.base_path +msgctxt "installer.base_path" +msgid "Base Path" +msgstr "根路徑" + +#: installer.database +msgctxt "installer.database" +msgid "Database" +msgstr "資料庫" + +#: installer.database_host +msgctxt "installer.database_host" +msgid "Database Host" +msgstr "資料庫主機" + +#: installer.database_host_description +msgctxt "installer.database_host_description" +msgid "" +"If you are running Ushahidi on your own computer, this will more than likely" +" be \"localhost\". If you are running Ushahidi from a web server, you will " +"get your host information from your web hosting provider." +msgstr "如果您運行Ushahidi在自己的電腦上,該值可能是“localhost”;如果您從Web服務器運行Ushahidi,你需要從您的網站託管服務提供商得到你的主機信息。" + +#: installer.database_name +msgctxt "installer.database_name" +msgid "Database Name" +msgstr "數據庫名" + +#: installer.database_name_description +msgctxt "installer.database_name_description" +msgid "The name of the database you want to run Ushahidi in" +msgstr "您要运行Ushahidi的数据库名称" + +#: installer.db_information_link +msgctxt "installer.db_information_link" +msgid "" +"For more information, please check out this article on the wiki that talks about databases in" +" more detail." +msgstr "有關詳細信息,請查看這篇文章 wiki上關於數據庫的會談更多細節。" + +#: installer.default_language +msgctxt "installer.default_language" +msgid "Default Language (Locale)" +msgstr "默認語言(區域)" + +#: installer.default_language_description +msgctxt "installer.default_language_description" +msgid "" +"Each deployment of Ushahidi comes with a set of built in language " +"translations. You can also add your own." +msgstr "每個Ushahidi部署帶有語言翻譯建立了一套。你也可以添加自己的" + +#: installer.disable +msgctxt "installer.disable" +msgid "Disable" +msgstr "禁用" + +#: installer.enable +msgctxt "installer.enable" +msgid "Enable" +msgstr "啟用" + +#: installer.error_summary +msgctxt "installer.error_summary" +msgid "Listed below is a summary of the errors we encountered." +msgstr "下面列出的是我們遇到的錯誤的匯總" + +#: installer.files_location_text +msgctxt "installer.files_location_text" +msgid "" +"The location on your server where you placed your Ushahidi files. We" +" have automatically detected this value, please make sure that it is " +"correct. If the field is empty, do not worry, it means ushahidi is " +"installed at the top level directory." +msgstr "服務器上的位置放置的Ushahidi文件。我們已自動檢測到這個值,請確保它是正確的。 如果該字段是空的,不用擔心,它是指安裝在ushahidi是頂層目錄。" + +#: installer.finished +msgctxt "installer.finished" +msgid "Finished" +msgstr "已完成" + +#: installer.general +msgctxt "installer.general" +msgid "General" +msgstr "一般的" + +#: installer.google_key +msgctxt "installer.google_key" +msgid "Google API Key" +msgstr "Google API Key" + +#: installer.google_key_description +msgctxt "installer.google_key_description" +msgid "" +"Anyone can get an api key. Get " +"yours now" +msgstr "任何人可以得到一個API 鑰匙. 獲取一個" + +#: installer.go_back +msgctxt "installer.go_back" +msgid "Go Back" +msgstr "返回" + +#: installer.index.advanced +msgctxt "installer.index.advanced" +msgid "ADVANCED INSTALLATION" +msgstr "高級安裝" + +#: installer.index.advanced_installation_description +msgctxt "installer.index.advanced_installation_description" +msgid "" +"Get all the basic settings completed through this 5-step process. This " +"includes server, map, site name and contact details." +msgstr "通過5個步驟完成所有基本設置。這包括服務器,地圖,網站的名稱和聯繫方式。" + +#: installer.index.basic_installation +msgctxt "installer.index.basic_installation" +msgid "BASIC INSTALLATION" +msgstr "基本安裝" + +#: installer.index.basic_installation_description +msgctxt "installer.index.basic_installation_description" +msgid "" +"Simple and fast. All you need is your website's root directory and your " +"database information. Choose this option if you want to get up and running " +"quickly, and you can always configure everything else later." +msgstr "如果你想要得到快速啟動和運行,選擇此選項,簡單、快捷。你只需要設置網站的根目錄和數據庫的信息​​,稍後可以配置一切。" + +#: installer.index.proceed +msgctxt "installer.index.proceed" +msgid "Proceed" +msgstr "完成" + +#: installer.index.welcome +msgctxt "installer.index.welcome" +msgid "" +"Welcome to the Ushahidi server install process. Choose which type of " +"installation you would like to use below." +msgstr "歡迎來到Ushahidi服務器安裝界面。選擇您想用下面的哪種類型的安裝" + +#: installer.installation_successful +msgctxt "installer.installation_successful" +msgid "Installation Successful" +msgstr "安裝成功" + +#: installer.mail_server +msgctxt "installer.mail_server" +msgid "Mail Server" +msgstr "郵件服務器" + +#: installer.mail_server_host +msgctxt "installer.mail_server_host" +msgid "Mail Server Host" +msgstr "郵件服務器主機" + +#: installer.mail_server_host_description +msgctxt "installer.mail_server_host_description" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "舉例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: installer.mail_server_password +msgctxt "installer.mail_server_password" +msgid "Mail Server Password" +msgstr "郵件服務密碼" + +#: installer.mail_server_password_description +msgctxt "installer.mail_server_password_description" +msgid "The password you normally use to login in to your email" +msgstr "您登陸Email電子郵箱的密碼" + +#: installer.mail_server_port +msgctxt "installer.mail_server_port" +msgid "Mail Server Port" +msgstr "郵件服務器端口" + +#: installer.mail_server_port_description +msgctxt "installer.mail_server_port_description" +msgid "Common Ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "常用的端口:25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: installer.mail_server_type +msgctxt "installer.mail_server_type" +msgid "Mail Server Type" +msgstr "郵件服務器類型" + +#: installer.mail_server_type_description +msgctxt "installer.mail_server_type_description" +msgid "" +"Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?" +msgstr "Internet邮件访问协议 (IMAP) or 邮局协议 (POP). 有什么区别?" + +#: installer.mail_server_username +msgctxt "installer.mail_server_username" +msgid "Mail Server Username" +msgstr "郵件服務賬戶" + +#: installer.mail_server_username_description +msgctxt "installer.mail_server_username_description" +msgid "" +"If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address " +"as a username." +msgstr "如果您使用Gmail,Hotmail,雅虎郵箱,輸入一個完整的電子郵箱地址作為用戶名。" + +#: installer.map +msgctxt "installer.map" +msgid "Map" +msgstr "地圖" + +#: installer.map_provider +msgctxt "installer.map_provider" +msgid "Map Provider" +msgstr "地圖提供程式" + +#: installer.map_provider_description +msgctxt "installer.map_provider_description" +msgid "" +"Ushahidi works equally well with any of these three mapping providers: " +"Google, Bing or Open Street Map. Choose the one that has the most detail in " +"your area." +msgstr "Ushahidi與三個地圖提供程式能很好的工作:谷歌,必應(Bing)或Open Street Map。選擇您所在地區的最詳細的一個。" + +#: installer.other_steps +msgctxt "installer.other_steps" +msgid "Other steps..." +msgstr "其他步驟..." + +#: installer.password +msgctxt "installer.password" +msgid "Password" +msgstr "密碼" + +#: installer.password_description +msgctxt "installer.password_description" +msgid "Your database password" +msgstr "數據庫密碼" + +#: installer.previous +msgctxt "installer.previous" +msgid "Previous" +msgstr "上一步" + +#: installer.restart_apache +msgctxt "installer.restart_apache" +msgid "Please restart your Apache Server" +msgstr "請重啟Apache服務器" + +#: installer.select_mail_server_ssl +msgctxt "installer.select_mail_server_ssl" +msgid "Enable or disable SSL" +msgstr "開啟 or 禁用 SSL" + +#: installer.select_mail_server_ssl_description +msgctxt "installer.select_mail_server_ssl_description" +msgid "" +"Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it " +"gives you an added level of security." +msgstr "有些郵件服務器使用SSL建立連接,因為SSL能提高安全水平。" + +#: installer.setup_sms +msgctxt "installer.setup_sms" +msgid "Set up your SMS server" +msgstr "安裝 SMS 服務" + +#: installer.site_email +msgctxt "installer.site_email" +msgid "Site Email Address" +msgstr "網站電子郵箱地址" + +#: installer.site_email_alerts +msgctxt "installer.site_email_alerts" +msgid "Site Alert Email Address" +msgstr "網站警示電子郵箱地址" + +#: installer.site_email_alerts_description +msgctxt "installer.site_email_alerts_description" +msgid "" +"When your site visitors sign up for email alerts, they will receive emails " +"from this address. This email address does not have to be the same as the " +"Site Email Address." +msgstr "當你的網站訪客註冊電子郵箱接收警示信息,他們將收到來自該地址的郵件。此郵件地址不必是同一網站的電子郵件地址。" + +#: installer.site_email_description +msgctxt "installer.site_email_description" +msgid "Site wide email communication will be funneled through this address" +msgstr "網站將通過這個電子郵箱地址過濾通信。" + +#: installer.site_name +msgctxt "installer.site_name" +msgid "Site Name" +msgstr "站點名稱" + +#: installer.site_name_description +msgctxt "installer.site_name_description" +msgid "The name of your site" +msgstr "您的網站名稱" + +#: installer.site_tagline +msgctxt "installer.site_tagline" +msgid "Site Tagline" +msgstr "網站口號" + +#: installer.site_tagline_description +msgctxt "installer.site_tagline_description" +msgid "Your tagline" +msgstr "你網站的標語、口號" + +#: installer.summary.text_1 +msgctxt "installer.summary.text_1" +msgid "" +"The files and folders listed below need to be writable by your webserver." +msgstr "下面列出的文件和文件夾,需要在您的網絡服務器上設置為可寫" + +#: installer.summary.text_2 +msgctxt "installer.summary.text_2" +msgid "" +"

Here are instructions for changing file permissions:

\n" +" " +msgstr "

下面是改變文件權限的說明

\n " + +#: installer.summary.text_3 +msgctxt "installer.summary.text_3" +msgid "" +"Before you get started, you will need to make sure the following files and " +"folders are writable by your webserver. This involves changing file " +"permissions." +msgstr "在您開始之前,您需要確保以下文件和文件夾在您的網絡服務器上可寫,這涉及到改變文件權限" + +#: installer.summary.text_4 +msgctxt "installer.summary.text_4" +msgid "" +"For the installation process, please have the following bits of information " +"on hand." +msgstr "安裝過程中,請記下一下信息" + +#: installer.table_prefix +msgctxt "installer.table_prefix" +msgid "Table Prefix" +msgstr "數據表前綴" + +#: installer.table_prefix_description +msgctxt "installer.table_prefix_description" +msgid "" +"Normally you would not change the table prefix. However, if you want to run " +"multiple Ushahidi installations from a single database, you can do that by " +"changing the prefix here." +msgstr "通常你不會更改表前綴。不過,如果你想從一個單一的數據庫中運行多個Ushahidi實例,你可以通過改變這裡的前綴" + +#: installer.title +msgctxt "installer.title" +msgid "Title" +msgstr "標題" + +#: installer.to_login +msgctxt "installer.to_login" +msgid "To login, go to" +msgstr "登錄, go to" + +#: installer.upload_data +msgctxt "installer.upload_data" +msgid "Upload report data" +msgstr "上傳Report數據" + +#: installer.username +msgctxt "installer.username" +msgid "Username" +msgstr "用戶名" + +#: installer.username_description +msgctxt "installer.username_description" +msgid "Your database username" +msgstr "數據庫用戶名" + +#: installer.use_credentials +msgctxt "installer.use_credentials" +msgid "and use the following credentials" +msgstr "並使用下列認證" + +#: installer.view_site +msgctxt "installer.view_site" +msgid "View your website" +msgstr "查看您的網站" diff --git a/application/i18n/po/po-zh_TW/layer.po b/application/i18n/po/po-zh_TW/layer.po new file mode 100644 index 0000000000..c3997968ef --- /dev/null +++ b/application/i18n/po/po-zh_TW/layer.po @@ -0,0 +1,63 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:05+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: layer.layer_color.length +msgctxt "layer.layer_color.length" +msgid "The color field must be 6 characters long." +msgstr "顏色欄位資料必須至少為6個字元" + +#: layer.layer_color.required +msgctxt "layer.layer_color.required" +msgid "The color field is required." +msgstr "顏色欄位為必填" + +#: layer.layer_file.type +msgctxt "layer.layer_file.type" +msgid "" +"The file field does not appear to contain a valid file. The only accepted " +"formats are .KMZ and .KML." +msgstr "文件地址不包含有效的文件。只接受.KMZ,.KML類型的文件" + +#: layer.layer_file.valid +msgctxt "layer.layer_file.valid" +msgid "The file field does not appear to contain a valid file" +msgstr "文件地址不包含有效的文件" + +#: layer.layer_name.length +msgctxt "layer.layer_name.length" +msgid "The name field must be at least 3 and no more 80 characters long." +msgstr "姓名欄位需為3~80個字元" + +#: layer.layer_name.required +msgctxt "layer.layer_name.required" +msgid "The name field is required." +msgstr "姓名欄位為必填" + +#: layer.layer_url.atleast +msgctxt "layer.layer_url.atleast" +msgid "Either a KML URL or File is required." +msgstr "請至少輸入KML Url 或File" + +#: layer.layer_url.both +msgctxt "layer.layer_url.both" +msgid "You can't have both a KML file and a URL." +msgstr "你無法同時使用一個KML文件和URL鏈接" + +#: layer.layer_url.url +msgctxt "layer.layer_url.url" +msgid "Please enter a valid URL, e.g. http://www.ushahidi.com/layerl.kml" +msgstr "請輸入有效的網址,例如:http://www.ushahidi.com/layerl.kml" diff --git a/application/i18n/po/po-zh_TW/libraries.po b/application/i18n/po/po-zh_TW/libraries.po new file mode 100644 index 0000000000..e2da1991b2 --- /dev/null +++ b/application/i18n/po/po-zh_TW/libraries.po @@ -0,0 +1,118 @@ +# +# Translators: +# Cai Fang Ye, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-01 17:03+0000\n" +"Last-Translator: Cai Fang Ye\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: libraries.akismet_cannot_connect +msgctxt "libraries.akismet_cannot_connect" +msgid "Could not connect to Akismet server." +msgstr "無法連接akismet服務器" + +#: libraries.akismet_cannot_retrieve +msgctxt "libraries.akismet_cannot_retrieve" +msgid "The response from Akismet could not be retrieved." +msgstr "无法从Akismet获得回复" + +#: libraries.api_library_not_found +msgctxt "libraries.api_library_not_found" +msgid "" +"The API library: %s for the %s class could" +" not be found. Please check your API task routing table." +msgstr "API庫%s中無法找到%s類。請檢查您的API任務中的路徑表." + +#: libraries.askimet_invalid_apikey +msgctxt "libraries.askimet_invalid_apikey" +msgid "Your Akismet API key is not valid." +msgstr "您的Akismet API密匙無效" + +#: libraries.clickatell_fopen_error +msgctxt "libraries.clickatell_fopen_error" +msgid "" +"Error while executing fopen sending method!
Please check whether PHP has " +"OpenSSL support and whether the PHP version is greater than 5.2." +msgstr "執行打開文件發送方式中發生錯誤!
請檢查PHP是否支持OpenSSL,或PHP是否是5.2之後的版本" + +#: libraries.clickatell_message_too_long +msgctxt "libraries.clickatell_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "您的驗證信息過長! (目前長度:" + +#: libraries.clickatell_no_destination_address +msgctxt "libraries.clickatell_no_destination_address" +msgid "Please specify a destination address (TO)!" +msgstr "請寫明收件地址(TO)!" + +#: libraries.clickatell_no_sender_address +msgctxt "libraries.clickatell_no_sender_address" +msgid "Please specify source address (FROM)!" +msgstr "請寫明發件地址(FROM)" + +#: libraries.clickatell_unicode_message_too_long +msgctxt "libraries.clickatell_unicode_message_too_long" +msgid "Your unicode message is too long! (Current length=" +msgstr "您的Unicode的驗證信息過長! (目前長度:=" + +#: libraries.clickatell_unsupported_method +msgctxt "libraries.clickatell_unsupported_method" +msgid "Unsupported sending method!" +msgstr "不支持的方送方式!" + +#: libraries.invalid_api_library +msgctxt "libraries.invalid_api_library" +msgid "" +"The API library %s is invalid. All API libraries must be subclasses of %s." +msgstr "API庫%s無效。所有API庫都必須是%s的子類型" + +#: libraries.upgrade_directory_not_deleted +msgctxt "libraries.upgrade_directory_not_deleted" +msgid "Directory %s could not be deleted." +msgstr "目錄%s無法被刪除" + +#: libraries.upgrade_extracting_error +msgctxt "libraries.upgrade_extracting_error" +msgid "Error while extracting: %s" +msgstr "解壓時發生錯誤:%s" + +#: libraries.upgrade_failed +msgctxt "libraries.upgrade_failed" +msgid "Downloading the latest Ushahidi failed. HTTP status code" +msgstr "下載最新的Ushahidi中發生錯誤。服務器狀態代碼:" + +#: libraries.upgrade_file_not_copied +msgctxt "libraries.upgrade_file_not_copied" +msgid "File %s could not be copied." +msgstr "無法拷貝文件%s" + +#: libraries.upgrade_file_not_deleted +msgctxt "libraries.upgrade_file_not_deleted" +msgid "File %s could not be deleted." +msgstr "無法刪除文件%s" + +#: libraries.upgrade_title +msgctxt "libraries.upgrade_title" +msgid "Ushahidi upgrade script" +msgstr "Ushahidi升級腳本" + +#: libraries.upgrade_zip_error +msgctxt "libraries.upgrade_zip_error" +msgid "" +"The downloaded Ushahidi zip file %s, could not be written." +msgstr "下載的Ushahidi壓縮文件%s無法寫入" + +#: libraries.riverid_variable_not_available +msgctxt "libraries.riverid_variable_not_available" +msgid "%s is not available in the RiverID class." +msgstr "%s 在RiverID類別中無法使用" diff --git a/application/i18n/po/po-zh_TW/maintenance.po b/application/i18n/po/po-zh_TW/maintenance.po new file mode 100644 index 0000000000..4b47ceaac0 --- /dev/null +++ b/application/i18n/po/po-zh_TW/maintenance.po @@ -0,0 +1,23 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: maintenance.message +msgctxt "maintenance.message" +msgid "" +"Sorry, our site is currently down for maintenance. Please try again in a few" +" minutes." +msgstr "很抱歉,我們的網站目前停機維護。請在稍後再試。" diff --git a/application/i18n/po/po-zh_TW/message.po b/application/i18n/po/po-zh_TW/message.po new file mode 100644 index 0000000000..9865757991 --- /dev/null +++ b/application/i18n/po/po-zh_TW/message.po @@ -0,0 +1,61 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: message.captcha.default +msgctxt "message.captcha.default" +msgid "Please enter a valid security code." +msgstr "請輸入正確的安全碼" + +#: message.captcha.required +msgctxt "message.captcha.required" +msgid "Please enter the security code." +msgstr "請輸入安全碼" + +#: message.email.email +msgctxt "message.email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "請確認已輸入有效的Email" + +#: message.email.length +msgctxt "message.email.length" +msgid "The Email field must be at least 4 and no more 64 characters long." +msgstr "Email資料需為4~64字元" + +#: message.email.required +msgctxt "message.email.required" +msgid "The Email field is required if the checkbox is checked." +msgstr "如果已經選擇Email,則Email欄位為必填" + +#: message.message.required +msgctxt "message.message.required" +msgid "The comments field is required." +msgstr "回應欄位為必填." + +#: message.name.length +msgctxt "message.name.length" +msgid "The name field must be at least 3 characters long." +msgstr "姓名欄位必須至少3個字元" + +#: message.name.required +msgctxt "message.name.required" +msgid "The name field is required." +msgstr "姓名欄位是必填" + +#: message.phone.length +msgctxt "message.phone.length" +msgid "The phone field is not valid." +msgstr "電話欄位資料為無效資料." diff --git a/application/i18n/po/po-zh_TW/mhi.po b/application/i18n/po/po-zh_TW/mhi.po new file mode 100644 index 0000000000..c23df8676e --- /dev/null +++ b/application/i18n/po/po-zh_TW/mhi.po @@ -0,0 +1,51 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: mhi.contact_captcha.default +msgctxt "mhi.contact_captcha.default" +msgid "Please enter a valid security code." +msgstr "請輸入正確的安全碼." + +#: mhi.contact_captcha.required +msgctxt "mhi.contact_captcha.required" +msgid "Please enter the security code." +msgstr "請輸入正確的安全碼." + +#: mhi.contact_email.email +msgctxt "mhi.contact_email.email" +msgid "The Email field does not appear to contain a valid email address." +msgstr "請於信箱欄位內填入正確資料." + +#: mhi.contact_email.required +msgctxt "mhi.contact_email.required" +msgid "Please provide a valid email address." +msgstr "請填入正確的信箱資料." + +#: mhi.contact_message.required +msgctxt "mhi.contact_message.required" +msgid "The message field is required." +msgstr "訊息欄位為必填." + +#: mhi.contact_subject.length +msgctxt "mhi.contact_subject.length" +msgid "The subject field must be at least 3 characters long." +msgstr "標題欄位置少需3個字元." + +#: mhi.contact_subject.required +msgctxt "mhi.contact_subject.required" +msgid "The subject field is required." +msgstr "標題欄位為必填." diff --git a/application/i18n/po/po-zh_TW/notifications.po b/application/i18n/po/po-zh_TW/notifications.po new file mode 100644 index 0000000000..4dab7489be --- /dev/null +++ b/application/i18n/po/po-zh_TW/notifications.po @@ -0,0 +1,91 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: notifications.admin_footer +msgctxt "notifications.admin_footer" +msgid "This message was sent from your website." +msgstr "这些信息是从您的网站发出的" + +#: notifications.admin_login_url +msgctxt "notifications.admin_login_url" +msgid "Administrator Login" +msgstr "管理員登錄" + +#: notifications.admin_new_comment.message +msgctxt "notifications.admin_new_comment.message" +msgid "A new comment has been submitted to your website in response to:" +msgstr "有新的評論,回應:" + +#: notifications.admin_new_comment.subject +msgctxt "notifications.admin_new_comment.subject" +msgid "New Comment" +msgstr "新的評論" + +#: notifications.admin_new_email.message +msgctxt "notifications.admin_new_email.message" +msgid "A new email message has been submitted to your website." +msgstr "有新的郵件" + +#: notifications.admin_new_email.subject +msgctxt "notifications.admin_new_email.subject" +msgid "New Email Message" +msgstr "新的郵件" + +#: notifications.admin_new_report.message +msgctxt "notifications.admin_new_report.message" +msgid "A new report has been submitted to your website." +msgstr "有新的事件報告" + +#: notifications.admin_new_report.subject +msgctxt "notifications.admin_new_report.subject" +msgid "New Report" +msgstr "新的報告" + +#: notifications.admin_new_sms.message +msgctxt "notifications.admin_new_sms.message" +msgid "A new text message has been submitted to your website." +msgstr "有新的文本消息" + +#: notifications.admin_new_sms.subject +msgctxt "notifications.admin_new_sms.subject" +msgid "New Text Message" +msgstr "新的消息" + +#: notifications.member_new_alert.message +msgctxt "notifications.member_new_alert.message" +msgid "You Have Received a New Alert" +msgstr "您收到了一個事件警示" + +#: notifications.member_new_alert.subject +msgctxt "notifications.member_new_alert.subject" +msgid "New Alert!" +msgstr "新的警示" + +#: notifications.member_new_message.message +msgctxt "notifications.member_new_message.message" +msgid "You Have Received a Private Message" +msgstr "您收到了一個私信" + +#: notifications.member_new_message.subject +msgctxt "notifications.member_new_message.subject" +msgid "New Private Message" +msgstr "私信" + +#: notifications.member_new_message.footer +msgctxt "notifications.member_new_message.footer" +msgid "To Reply Please Go To: " +msgstr "回復請轉到 " diff --git a/application/i18n/po/po-zh_TW/page.po b/application/i18n/po/po-zh_TW/page.po new file mode 100644 index 0000000000..d27b5931c1 --- /dev/null +++ b/application/i18n/po/po-zh_TW/page.po @@ -0,0 +1,36 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: page.page_title.required +msgctxt "page.page_title.required" +msgid "Please enter a Page Title." +msgstr "請輸入自定義頁面的標題" + +#: page.page_title.length +msgctxt "page.page_title.length" +msgid "Page Title must be at least 3 and no more than 150 characters long." +msgstr "頁面標題需要不小於3個,但不超過150個的字符" + +#: page.page_tab.required +msgctxt "page.page_tab.required" +msgid "Please enter a Page Tab Name." +msgstr "请输入页面的链接标签的名称." + +#: page.page_description.required +msgctxt "page.page_description.required" +msgid "Please enter a Page Description." +msgstr "请输入自定义页面的内容." diff --git a/application/i18n/po/po-zh_TW/permissions.po b/application/i18n/po/po-zh_TW/permissions.po new file mode 100644 index 0000000000..5ca116be3f --- /dev/null +++ b/application/i18n/po/po-zh_TW/permissions.po @@ -0,0 +1,112 @@ +# +# Translators: +# kiang , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2015-04-08 06:35+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: permissions.reports_view +msgctxt "permissions.reports_view" +msgid "View Reports" +msgstr "" + +#: permissions.reports_edit +msgctxt "permissions.reports_edit" +msgid "Create/Edit/Delete Reports" +msgstr "建立/編輯/" + +#: permissions.reports_approve +msgctxt "permissions.reports_approve" +msgid "Approve Reports" +msgstr "" + +#: permissions.reports_verify +msgctxt "permissions.reports_verify" +msgid "Verify Reports" +msgstr "" + +#: permissions.reports_comments +msgctxt "permissions.reports_comments" +msgid "Manage Report Comments" +msgstr "" + +#: permissions.reports_download +msgctxt "permissions.reports_download" +msgid "Download Reports" +msgstr "" + +#: permissions.reports_upload +msgctxt "permissions.reports_upload" +msgid "Upload Reports" +msgstr "" + +#: permissions.messages +msgctxt "permissions.messages" +msgid "Manage Messages" +msgstr "" + +#: permissions.messages_reporters +msgctxt "permissions.messages_reporters" +msgid "Manage Message Reporters" +msgstr "" + +#: permissions.stats +msgctxt "permissions.stats" +msgid "View Stats" +msgstr "" + +#: permissions.settings +msgctxt "permissions.settings" +msgid "Modify Settings" +msgstr "" + +#: permissions.manage +msgctxt "permissions.manage" +msgid "Manage Panel" +msgstr "" + +#: permissions.users +msgctxt "permissions.users" +msgid "Manage Users" +msgstr "" + +#: permissions.manage_roles +msgctxt "permissions.manage_roles" +msgid "Manage Roles" +msgstr "" + +#: permissions.checkin +msgctxt "permissions.checkin" +msgid "Can checkin" +msgstr "" + +#: permissions.checkin_admin +msgctxt "permissions.checkin_admin" +msgid "Manage checkins" +msgstr "" + +#: permissions.admin_ui +msgctxt "permissions.admin_ui" +msgid "Access Admin UI" +msgstr "" + +#: permissions.member_ui +msgctxt "permissions.member_ui" +msgid "Access Members UI" +msgstr "" + +#: permissions.delete_all_reports +msgctxt "permissions.delete_all_reports" +msgid "Delete all reports" +msgstr "" diff --git a/application/i18n/po/po-zh_TW/private_message.po b/application/i18n/po/po-zh_TW/private_message.po new file mode 100644 index 0000000000..a433259bab --- /dev/null +++ b/application/i18n/po/po-zh_TW/private_message.po @@ -0,0 +1,47 @@ +# +# Translators: +# kiang , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-28 18:25+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: private_message.parent_id.numeric +msgctxt "private_message.parent_id.numeric" +msgid "Parent ID must be numeric" +msgstr "上一層代號必須是數字" + +#: private_message.private_to.required +msgctxt "private_message.private_to.required" +msgid "The To field is required" +msgstr "收件人欄位是必填的" + +#: private_message.private_to.exists +msgctxt "private_message.private_to.exists" +msgid "The user you are try to send a message to does not exist" +msgstr "您試著要發送訊息的對象不存在" + +#: private_message.private_subject.required +msgctxt "private_message.private_subject.required" +msgid "The subject field is required" +msgstr "主旨欄位是必填的" + +#: private_message.private_subject.length +msgctxt "private_message.private_subject.length" +msgid "Subject must be between 3 and 150 characters" +msgstr "主旨文字數必須介於 3 到 150 字元" + +#: private_message.private_message.required +msgctxt "private_message.private_message.required" +msgid "The message field is required" +msgstr "訊息欄位是必填的" diff --git a/application/i18n/po/po-zh_TW/report.po b/application/i18n/po/po-zh_TW/report.po new file mode 100644 index 0000000000..6c06acfafe --- /dev/null +++ b/application/i18n/po/po-zh_TW/report.po @@ -0,0 +1,393 @@ +# +# Translators: +# Cai Fang Ye, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-08-22 06:26+0000\n" +"PO-Revision-Date: 2014-01-01 17:08+0000\n" +"Last-Translator: Cai Fang Ye\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: report.comments_form_error +msgctxt "report.comments_form_error" +msgid "error!" +msgstr "錯誤!" + +#: report.country_name.single_country +msgctxt "report.country_name.single_country" +msgid "" +"This deployment spans within one country only. Please make sure the report " +"location is within the country %s." +msgstr "您報告的事件地點跨越了本網站部署的國家範圍。請確保事件地點是在 %s 國家或地區範圍內." + +#: report.custom_field.values +msgctxt "report.custom_field.values" +msgid "Please enter a valid value for the \"%s\" field." +msgstr "請輸入一個有效的值於\"%s\" 欄位" + +#: report.custom_field.numeric +msgctxt "report.custom_field.numeric" +msgid "The \"%s\" field must be numeric." +msgstr "\"%s\" 欄位必須是數字" + +#: report.custom_field.required +msgctxt "report.custom_field.required" +msgid "The \"%s\" field is required." +msgstr "\"%s\" 欄位是必須的" + +#: report.custom_field.not_exist +msgctxt "report.custom_field.not_exist" +msgid "The \"%s\" field is does not exist." +msgstr "\"%s\" 欄位不存在" + +#: report.custom_field.permission +msgctxt "report.custom_field.permission" +msgid "The \"%s\" field cannot be edited by your account." +msgstr "您的帳號無法編輯\"%s\" 欄位" + +#: report.custom_field.email +msgctxt "report.custom_field.email" +msgid "The \"%s\" field must contain a valid email address." +msgstr "\"%s\" 欄位必須包含有效的電子郵件地址" + +#: report.custom_field.phone +msgctxt "report.custom_field.phone" +msgid "The \"%s\" field must contain a valid phone number." +msgstr "\"%s\" 欄位必須包含一個有效的電話號碼" + +#: report.custom_field.date_mmddyyyy +msgctxt "report.custom_field.date_mmddyyyy" +msgid "The \"%s\" field must contain a valid date (MM/DD/YYYY)." +msgstr "\"%s\" 欄位必須包含有效的日期 (MM/DD/YYYY)" + +#: report.custom_field.date_ddmmyyyy +msgctxt "report.custom_field.date_ddmmyyyy" +msgid "The \"%s\" field must contain a valid date (DD/MM/YYYY)." +msgstr "\"%s\" 欄位必須包含有效的日期 (DD/MM/YYYY)" + +#: report.data_include.between +msgctxt "report.data_include.between" +msgid "Please select a valid item to include in the download." +msgstr "請選擇一個有效的項目" + +#: report.data_include.numeric +msgctxt "report.data_include.numeric" +msgid "Please select a valid item to include in the download." +msgstr "請選擇一個有效的項目" + +#: report.data_active.between +msgctxt "report.data_active.between" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "請選擇\"等待核准\"或\"已核准\"這兩種狀態的報告。" + +#: report.data_active.numeric +msgctxt "report.data_active.numeric" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "請至少選擇一個\"等待核准\"或\"已核准\"這兩種狀態的報告。" + +#: report.data_active.required +msgctxt "report.data_active.required" +msgid "Please select \"Reports Awaiting Approval\" or \"Approved Reports\" or both." +msgstr "請選擇一個\"等待核准\"或\"已核准\"這兩種狀態的報告。" + +#: report.data_verified.between +msgctxt "report.data_verified.between" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "請選擇\"等待驗證\"或\"已驗證”這兩種狀態的報告。" + +#: report.data_verified.numeric +msgctxt "report.data_verified.numeric" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "請至少選擇一個\"等待驗證\"或\"已驗證”這兩種狀態的報告。" + +#: report.data_verified.required +msgctxt "report.data_verified.required" +msgid "" +"Please select \"Reports Awaiting Verification\" or \"Verified Reports\" or " +"both." +msgstr "請選擇一個\"等待驗證\"或\"已驗證”這兩種狀態的報告。" + +#: report.data_point.between +msgctxt "report.data_point.between" +msgid "Please select a valid type of report to download." +msgstr "一個選擇有效的事件報告類型進行下載" + +#: report.data_point.numeric +msgctxt "report.data_point.numeric" +msgid "Please select a valid type of report to download." +msgstr "一個選擇有效的事件報告類型進行下載" + +#: report.data_point.required +msgctxt "report.data_point.required" +msgid "Please select a valid type of report to download." +msgstr "一個選擇有效的事件報告類型進行下載" + +#: report.format.required +msgctxt "report.format.required" +msgid "You must select a download format. Select either CSV or XML." +msgstr "您必須選擇下載的格式, CSV或XML" + +#: report.format.valid +msgctxt "report.format.valid" +msgid "Please select a valid format to download your reports in" +msgstr "請選擇有效的格式來下載您的回報" + +#: report.from_date.date_mmddyyyy +msgctxt "report.from_date.date_mmddyyyy" +msgid "The FROM date field does not appear to contain a valid date." +msgstr "開始日期無效" + +#: report.from_date.range +msgctxt "report.from_date.range" +msgid "Please enter a valid FROM date. It cannot be greater than today." +msgstr "請選擇有效的開始日期,不能晚於今天" + +#: report.incident_active.between +msgctxt "report.incident_active.between" +msgid "Please enter a valid value for Approve This Report" +msgstr "請為“核准該事件報告”選擇一個有效的值" + +#: report.incident_active.required +msgctxt "report.incident_active.required" +msgid "Please enter a valid value for Approve This Report" +msgstr "請為“核准該事件報告”選擇一個有效的值" + +#: report.incident_ampm.validvalues +msgctxt "report.incident_ampm.validvalues" +msgid "The am/pm field does not appear to contain a valid value." +msgstr "包含AM/PM的格式不正確?" + +#: report.incident_category.numeric +msgctxt "report.incident_category.numeric" +msgid "The \"Categories\" field does not appear to contain a valid category." +msgstr "類別格式不正確" + +#: report.incident_category.required +msgctxt "report.incident_category.required" +msgid "The \"Categories\" field is required." +msgstr "類別為必填項" + +#: report.incident_date.date_ddmmyyyy +msgctxt "report.incident_date.date_ddmmyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "日期格式不正確" + +#: report.incident_date.date_mmddyyyy +msgctxt "report.incident_date.date_mmddyyyy" +msgid "The date field does not appear to contain a valid date." +msgstr "日期格式不正確" + +#: report.incident_date.required +msgctxt "report.incident_date.required" +msgid "The date field is required." +msgstr "日期為必填項" + +#: report.incident_description.required +msgctxt "report.incident_description.required" +msgid "The \"Description\" field is required." +msgstr "描述為必填項" + +#: report.incident_hour.between +msgctxt "report.incident_hour.between" +msgid "The hour field does not appear to contain a valid hour." +msgstr "小時格式不正確" + +#: report.incident_hour.required +msgctxt "report.incident_hour.required" +msgid "The hour field is required." +msgstr "小時為必填項" + +#: report.incident_information.alpha +msgctxt "report.incident_information.alpha" +msgid "Please enter a valid value for Information Probability." +msgstr "請為“信息準確度”輸入一個有效值" + +#: report.incident_information.length +msgctxt "report.incident_information.length" +msgid "Please enter a valid value for Information Probability." +msgstr "請為“信息準確度”輸入一個有效值" + +#: report.incident_minute.between +msgctxt "report.incident_minute.between" +msgid "The minute field does not appear to contain a valid value." +msgstr "分鐘格式不正確" + +#: report.incident_minute.required +msgctxt "report.incident_minute.required" +msgid "The minute field is required." +msgstr "分鐘為必​​填項" + +#: report.incident_news.url +msgctxt "report.incident_news.url" +msgid "The news source links field does not appear to contain a valid URL." +msgstr "新聞來源鏈接格式不正確" + +#: report.incident_photo.size +msgctxt "report.incident_photo.size" +msgid "Please ensure that photo upload sizes are limited to 2MB." +msgstr "請確認您上傳的照片大小不大於2MB" + +#: report.incident_photo.type +msgctxt "report.incident_photo.type" +msgid "" +"The Upload Photos field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "上傳照片格式無效。僅接受.JPG、.PNG和.GIF格式的圖片" + +#: report.incident_photo.valid +msgctxt "report.incident_photo.valid" +msgid "The Upload Photos field does not appear to contain a valid file." +msgstr "上傳照片文件無效" + +#: report.incident_source.alpha +msgctxt "report.incident_source.alpha" +msgid "Please enter a valid value for Source Reliability." +msgstr "請為“來源可靠度”輸入一個有效值" + +#: report.incident_source.length +msgctxt "report.incident_source.length" +msgid "Please enter a valid value for Source Reliability." +msgstr "請為“來源可靠度”輸入一個有效值" + +#: report.incident_title.length +msgctxt "report.incident_title.length" +msgid "" +"The \"Report Title\" field must be at least 3 and no more 200 characters " +"long." +msgstr "標題的長度須在3到200個字符之間" + +#: report.incident_title.required +msgctxt "report.incident_title.required" +msgid "The \"Report Title\" field is required." +msgstr "標題欄為必填項" + +#: report.incident_title.csrf +msgctxt "report.incident_title.csrf" +msgid "Possible CSRF attack. Did you really mean to create/edit a report?" +msgstr "可能的CSRF(跨站請求偽造)攻擊。你真的要創建/編輯一份報告" + +#: report.incident_verified.between +msgctxt "report.incident_verified.between" +msgid "Please enter a valid value for Verify This Report." +msgstr "請為“驗證此報告”輸入一個有效值" + +#: report.incident_verified.required +msgctxt "report.incident_verified.required" +msgid "Please enter a valid value for Verify This Report." +msgstr "請為“驗證此報告”輸入一個有效值" + +#: report.incident_video.url +msgctxt "report.incident_video.url" +msgid "The video links field does not appear to contain a valid URL." +msgstr "視頻鏈接中包含無效的URL地址" + +#: report.latitude.between +msgctxt "report.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "緯度值格式錯誤" + +#: report.latitude.required +msgctxt "report.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "緯度值為必填項。您可以點擊地圖確定地點" + +#: report.locale.alpha_dash +msgctxt "report.locale.alpha_dash" +msgid "The locale field has an incorrect value. " +msgstr "地點無效" + +#: report.locale.exists +msgctxt "report.locale.exists" +msgid "This report already has a translation for this language." +msgstr "此報告已有該語言的翻譯版本" + +#: report.locale.length +msgctxt "report.locale.length" +msgid "The locale field has an incorrect value. " +msgstr "地點格式錯誤 " + +#: report.locale.locale +msgctxt "report.locale.locale" +msgid "" +"The Original Report and the Translation have the same locale (language)." +msgstr "原始報告與翻譯報告的語言相同" + +#: report.locale.required +msgctxt "report.locale.required" +msgid "The locale is required." +msgstr "語言為必填項." + +#: report.location_name.length +msgctxt "report.location_name.length" +msgid "" +"The \"Location Name\" field must be at least 3 and no more 200 characters " +"long." +msgstr "地點名稱長度必須在3到200個字符之間" + +#: report.location_name.required +msgctxt "report.location_name.required" +msgid "The \"Location Name\" field is required." +msgstr "地點名為必填項" + +#: report.longitude.between +msgctxt "report.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "經度值格式錯誤" + +#: report.longitude.required +msgctxt "report.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "經度值為必填項。您可以點擊地圖確定地點" + +#: report.person_email.email +msgctxt "report.person_email.email" +msgid "The email field does not appear to contain a valid email address." +msgstr "郵件地址格式不正確" + +#: report.person_email.length +msgctxt "report.person_email.length" +msgid "The email field must be at least 4 and no more 64 characters long." +msgstr "郵件地址長度須在4至64個字符之間" + +#: report.person_first.length +msgctxt "report.person_first.length" +msgid "" +"The first name field must be at least 3 and no more 100 characters long." +msgstr "名字長度須在3到100個字符之間" + +#: report.person_last.length +msgctxt "report.person_last.length" +msgid "" +"The last name field must be at least 2 and no more 100 characters long." +msgstr "姓長度須在3到100個字符之間." + +#: report.to_date.date_mmddyyyy +msgctxt "report.to_date.date_mmddyyyy" +msgid "The TO date field does not appear to contain a valid date." +msgstr "結束日期格式錯誤" + +#: report.to_date.range +msgctxt "report.to_date.range" +msgid "Please enter a valid TO date. It cannot be greater than today." +msgstr "開始日期不得晚於結束日期" + +#: report.to_date.range_greater +msgctxt "report.to_date.range_greater" +msgid "Your FROM date cannot be greater than your TO date." +msgstr "開始日期不得晚於結束日期" diff --git a/application/i18n/po/po-zh_TW/reporters.po b/application/i18n/po/po-zh_TW/reporters.po new file mode 100644 index 0000000000..fc004fb533 --- /dev/null +++ b/application/i18n/po/po-zh_TW/reporters.po @@ -0,0 +1,71 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:06+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reporters.latitude.between +msgctxt "reporters.latitude.between" +msgid "The latitude field does not appear to contain a valid latitude." +msgstr "緯度欄位資料顯示為無效" + +#: reporters.latitude.required +msgctxt "reporters.latitude.required" +msgid "" +"The latitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "緯度欄位為必填,請在地圖上點選一個位置." + +#: reporters.level_id.numeric +msgctxt "reporters.level_id.numeric" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "報告者等級無效" + +#: reporters.level_id.required +msgctxt "reporters.level_id.required" +msgid "The Reporter Level field does not appear to contain a valid Level." +msgstr "報告者等級無效" + +#: reporters.location_name.length +msgctxt "reporters.location_name.length" +msgid "" +"The location name field must be at least 3 and no more 200 characters long." +msgstr "地點名稱長度為2~200個字元." + +#: reporters.location_name.required +msgctxt "reporters.location_name.required" +msgid "The location name field is required." +msgstr "地點名稱欄位為必填." + +#: reporters.longitude.between +msgctxt "reporters.longitude.between" +msgid "The longitude field does not appear to contain a valid longitude." +msgstr "經度欄位資料顯示為無效" + +#: reporters.longitude.required +msgctxt "reporters.longitude.required" +msgid "" +"The longitude field is required. Please click on the map to pinpoint a " +"location." +msgstr "經度欄位為必填,請在地圖上點選一個位置." + +#: reporters.reporter_id.numeric +msgctxt "reporters.reporter_id.numeric" +msgid "Invalid Reporter" +msgstr "無效的報告者" + +#: reporters.reporter_id.required +msgctxt "reporters.reporter_id.required" +msgid "Invalid Reporter" +msgstr "無效的報告者" diff --git a/application/i18n/po/po-zh_TW/reports.po b/application/i18n/po/po-zh_TW/reports.po new file mode 100644 index 0000000000..d4632701be --- /dev/null +++ b/application/i18n/po/po-zh_TW/reports.po @@ -0,0 +1,52 @@ +# +# Translators: +# kiang , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-09 00:48+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: reports.incident_id.required +msgctxt "reports.incident_id.required" +msgid "Please verify that you have checked an item" +msgstr "請確認已選擇一個項目" + +#: reports.incident_id.numeric +msgctxt "reports.incident_id.numeric" +msgid "Please verify that you have checked an item" +msgstr "請確認已選擇一個項目" + +#: reports.incident_id.categories_required +msgctxt "reports.incident_id.categories_required" +msgid "Reports must be categorized before they can be approved" +msgstr "通報必須設定分類才能夠送審" + +#: reports.action.permission +msgctxt "reports.action.permission" +msgid "You don't have permission to perform this action" +msgstr "您沒有權限執行這個操作" + +#: reports.uploadfile.required +msgctxt "reports.uploadfile.required" +msgid "You must select a file to upload" +msgstr "您必須選擇一個檔案上傳" + +#: reports.uploadfile.type +msgctxt "reports.uploadfile.type" +msgid "The upload file must either be of .csv or .xml format" +msgstr "上傳的檔案必須是 .csv 或 .xml 格式" + +#: reports.uploadfile.valid +msgctxt "reports.uploadfile.valid" +msgid "The file upload field does not seem to contain a valid file" +msgstr "檔案上傳欄位沒有收到正確的檔案" diff --git a/application/i18n/po/po-zh_TW/roles.po b/application/i18n/po/po-zh_TW/roles.po new file mode 100644 index 0000000000..edaa7e37af --- /dev/null +++ b/application/i18n/po/po-zh_TW/roles.po @@ -0,0 +1,63 @@ +# +# Translators: +# kiang , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2014-01-28 18:27+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: roles.description.length +msgctxt "roles.description.length" +msgid "" +"The Description field must be at least 3 and no more 100 characters long." +msgstr "描述欄位長度需為3~100之間." + +#: roles.description.required +msgctxt "roles.description.required" +msgid "The Description field is required." +msgstr "描述欄位為必填." + +#: roles.name.alpha_numeric +msgctxt "roles.name.alpha_numeric" +msgid "The Name field must only contain letters or numbers." +msgstr "使用者名稱欄位需包含英文字母與數字." + +#: roles.name.length +msgctxt "roles.name.length" +msgid "The Name field must be at least 2 and no more than 30 characters long." +msgstr "使用者名稱欄位長度需為2~30之間." + +#: roles.name.nomodify +msgctxt "roles.name.nomodify" +msgid "SuperAdmin Role Cannot Be Modified." +msgstr "最高管理者角色不得更動." + +#: roles.name.required +msgctxt "roles.name.required" +msgid "The Name field is required." +msgstr "使用者名稱欄位為必填." + +#: roles.access_level.numeric +msgctxt "roles.access_level.numeric" +msgid "Access Level field must be a number between 0 - 100." +msgstr "權限層級欄位必須是介於 0 - 100 的數字" + +#: roles.access_level.required +msgctxt "roles.access_level.required" +msgid "Access Level field must be a number between 0 - 100." +msgstr "權限層級欄位必須是介於 0 - 100 的數字" + +#: roles.permissions.numeric +msgctxt "roles.permissions.numeric" +msgid "Permissions field must be a number between 0 - 100." +msgstr "權限欄位必須是介於 0 - 100 的數字" diff --git a/application/i18n/po/po-zh_TW/settings.po b/application/i18n/po/po-zh_TW/settings.po new file mode 100644 index 0000000000..a98c2510d1 --- /dev/null +++ b/application/i18n/po/po-zh_TW/settings.po @@ -0,0 +1,859 @@ +# +# Translators: +# kiang , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-03-12 06:26+0000\n" +"PO-Revision-Date: 2014-03-12 06:20+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: settings.allow_comments.between +msgctxt "settings.allow_comments.between" +msgid "The allow comments field does not appear to contain a valid value." +msgstr "The allow comments field does not appear to contain a valid value?" + +#: settings.allow_comments.required +msgctxt "settings.allow_comments.required" +msgid "The allow comments field is required." +msgstr "允許評論欄位是必填的" + +#: settings.allow_feed.between +msgctxt "settings.allow_feed.between" +msgid "The include feed field does not appear to contain a valid value." +msgstr "The include feed field does not appear to contain a valid value?" + +#: settings.allow_feed.required +msgctxt "settings.allow_feed.required" +msgid "The include feed field is required." +msgstr "包含的來源欄位是必填的" + +#: settings.allow_feed_category.between +msgctxt "settings.allow_feed_category.between" +msgid "" +"The include feed category field does not appear to contain a valid value." +msgstr "" + +#: settings.allow_feed_category.required +msgctxt "settings.allow_feed_category.required" +msgid "The include feed category field is required." +msgstr "" + +#: settings.allow_alerts.between +msgctxt "settings.allow_alerts.between" +msgid "The allow alerts field does not appear to contain a valid value." +msgstr "允許警示欄位沒有輸入正確的資料" + +#: settings.allow_alerts.required +msgctxt "settings.allow_alerts.required" +msgid "The allow alerts field is required." +msgstr "允許警示欄位是必填的" + +#: settings.allow_reports.between +msgctxt "settings.allow_reports.between" +msgid "The allow reports field does not appear to contain a valid value." +msgstr "The allow reports field does not appear to contain a valid value?" + +#: settings.allow_reports.required +msgctxt "settings.allow_reports.required" +msgid "The allow reports field is required." +msgstr "" + +#: settings.allow_stat_sharing.between +msgctxt "settings.allow_stat_sharing.between" +msgid "The stat sharing field does not appear to contain a valid value." +msgstr "The stat sharing field does not appear to contain a valid value?" + +#: settings.allow_stat_sharing.required +msgctxt "settings.allow_stat_sharing.required" +msgid "The stat sharing field is required." +msgstr "統計資訊分享欄位是必填的" + +#: settings.api.default_record_limit +msgctxt "settings.api.default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "Default no. of records to be fetched per API request" + +#: settings.api.maximum_record_limit +msgctxt "settings.api.maximum_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "Maximum no. of records to be fetched per API request" + +#: settings.api.maximum_requests_per_ip_address +msgctxt "settings.api.maximum_requests_per_ip_address" +msgid "Maximum number of API requests per IP address" +msgstr "Maximum no. of API requests per IP address" + +#: settings.api_akismet.alpha_numeric +msgctxt "settings.api_akismet.alpha_numeric" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.api_akismet.length +msgctxt "settings.api_akismet.length" +msgid "The Akismet field does not appear to contain a valid value." +msgstr "The Akismet field does not appear to contain a valid value?" + +#: settings.banner_image.type +msgctxt "settings.banner_image.type" +msgid "" +"The Site Banner field does not appear to contain a valid image. The only " +"accepted formats are .JPG, .PNG and .GIF." +msgstr "" + +#: settings.banner_image.size +msgctxt "settings.banner_image.size" +msgid "Please ensure that \"Banner Image\" size is less than 250 KB." +msgstr "" + +#: settings.banner_image.valid +msgctxt "settings.banner_image.valid" +msgid "The \"Banner Image\" field does not appear to contain a valid file." +msgstr "" + +#: settings.cache_pages.between +msgctxt "settings.cache_pages.between" +msgid "The cache pages field is required." +msgstr "" + +#: settings.cache_pages.required +msgctxt "settings.cache_pages.required" +msgid "The cache pages field does not appear to contain a valid value." +msgstr "The cache pages field does not appear to contain a valid value?" + +#: settings.cache_pages_lifetime.in_array +msgctxt "settings.cache_pages_lifetime.in_array" +msgid "" +"The cache pages lifetime field does not appear to contain a valid value." +msgstr "The cache pages lifetime field does not appear to contain a valid value?" + +#: settings.cache_pages_lifetime.required +msgctxt "settings.cache_pages_lifetime.required" +msgid "The cache pages lifetime field is required." +msgstr "" + +#: settings.cleanurl.clean_url_disabled +msgctxt "settings.cleanurl.clean_url_disabled" +msgid "" +"It looks like your server is not configured to handle clean URLs. You will " +"need to change the configuration of your server before you can enable clean " +"URLs. See more info on how to enable clean URLs at this forum post" +msgstr "It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post" + +#: settings.cleanurl.clean_url_enabled +msgctxt "settings.cleanurl.clean_url_enabled" +msgid "" +"This option makes Ushahidi to be accessed via \"clean\" URLs (without " +"\"index.php\" in the URL)." +msgstr "This option makes Ushahidi to be accessed via \"clean\" URLs. Without \"index.php\" in the URL." + +#: settings.cleanurl.enable_clean_url +msgctxt "settings.cleanurl.enable_clean_url" +msgid "Enable Clean URLs" +msgstr "啟用簡潔網址" + +#: settings.cleanurl.title +msgctxt "settings.cleanurl.title" +msgid "Clean URLs" +msgstr "" + +#: settings.clickatell_api.length +msgctxt "settings.clickatell_api.length" +msgid "The Clickatell API number field must be no more 20 characters long." +msgstr "" + +#: settings.clickatell_api.required +msgctxt "settings.clickatell_api.required" +msgid "The Clickatell API number field is required." +msgstr "" + +#: settings.clickatell_password.length +msgctxt "settings.clickatell_password.length" +msgid "" +"The Clickatell Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.clickatell_password.required +msgctxt "settings.clickatell_password.required" +msgid "The Clickatell Password field is required." +msgstr "" + +#: settings.clickatell_username.length +msgctxt "settings.clickatell_username.length" +msgid "The Clickatell Username field must be no more 50 characters long." +msgstr "" + +#: settings.clickatell_username.required +msgctxt "settings.clickatell_username.required" +msgid "The Clickatell Username field is required." +msgstr "" + +#: settings.configure_map +msgctxt "settings.configure_map" +msgid "Configure Map" +msgstr "設定地圖" + +#: settings.default_location +msgctxt "settings.default_location" +msgid "Default Location" +msgstr "預設地點" + +#: settings.default_map_all.alpha_numeric +msgctxt "settings.default_map_all.alpha_numeric" +msgid "The color feed field does not appear to contain a valid value." +msgstr "The color feed field does not appear to contain a valid value?" + +#: settings.default_map_all.length +msgctxt "settings.default_map_all.length" +msgid "The color field must be no more 6 characters long." +msgstr "顏色欄位不能夠超過 6 個字元" + +#: settings.default_map_all.required +msgctxt "settings.default_map_all.required" +msgid "The color field is required." +msgstr "顏色欄位是必填的" + +#: settings.default_map_view +msgctxt "settings.default_map_view" +msgid "Default Map View" +msgstr "預設地圖畫面" + +#: settings.default_zoom_level +msgctxt "settings.default_zoom_level" +msgid "Default Zoom Level" +msgstr "預設放大層級" + +#: settings.download_city_list +msgctxt "settings.download_city_list" +msgid "Retrieve Cities From Geonames" +msgstr "從 Geonames 取得城市資料" + +#: settings.email_host.length +msgctxt "settings.email_host.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_host.numeric +msgctxt "settings.email_host.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_password.length +msgctxt "settings.email_password.length" +msgid "" +"The Mail Server Password field must be at least 5 and no more 50 characters " +"long." +msgstr "" + +#: settings.email_password.required +msgctxt "settings.email_password.required" +msgid "The Mail Server Password field is required." +msgstr "" + +#: settings.email_port.length +msgctxt "settings.email_port.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_port.numeric +msgctxt "settings.email_port.numeric" +msgid "The Mail server port field should contain numbers only." +msgstr "" + +#: settings.email_servertype.length +msgctxt "settings.email_servertype.length" +msgid "The Mail server port field is too long." +msgstr "The Mail server port field is too long" + +#: settings.email_servertype.required +msgctxt "settings.email_servertype.required" +msgid "The Mail Server Type field is required." +msgstr "" + +#: settings.email_username.length +msgctxt "settings.email_username.length" +msgid "The Mail Server Username field must be no more 50 characters long." +msgstr "" + +#: settings.email_username.required +msgctxt "settings.email_username.required" +msgid "The Mail Server Username field is required." +msgstr "" + +#: settings.facebook.title +msgctxt "settings.facebook.title" +msgid "Facebook Setup Options" +msgstr "" + +#: settings.facebook.description +msgctxt "settings.facebook.description" +msgid "" +"To get the information below you will need to create a new Facebook " +"application at" +msgstr "" + +#: settings.facebook.description_2 +msgctxt "settings.facebook.description_2" +msgid "" +"These settings allow users to login via Facebook, this does " +"not create a facebook application for your deployment" +msgstr "" + +#: settings.facebook.app_id +msgctxt "settings.facebook.app_id" +msgid "Facebook App ID" +msgstr "" + +#: settings.facebook.app_secret +msgctxt "settings.facebook.app_secret" +msgid "Facebook App Secret" +msgstr "" + +#: settings.google_analytics.length +msgctxt "settings.google_analytics.length" +msgid "" +"The Google Analytics field must contain a valid Web Property ID in the " +"format UA-XXXXX-XX." +msgstr "" + +#: settings.https.enable_https +msgctxt "settings.https.enable_https" +msgid "Enable HTTPS" +msgstr "" + +#: settings.https.https_disabled +msgctxt "settings.https.https_disabled" +msgid "" +"This option makes Ushahidi be accessed in unsecure mode; " +"without \"https://\" in the URL prefix" +msgstr "" + +#: settings.https.https_enabled +msgctxt "settings.https.https_enabled" +msgid "" +"This option makes Ushahidi be accessed in secure mode; with " +"https in the URL prefix" +msgstr "" + +#: settings.https.title +msgctxt "settings.https.title" +msgid "HTTPS" +msgstr "" + +#: settings.items_per_page.between +msgctxt "settings.items_per_page.between" +msgid "" +"The items per page (Frontend) field does not appear to contain a valid " +"value." +msgstr "The items per page (Frontend) field does not appear to contain a valid value?" + +#: settings.items_per_page.required +msgctxt "settings.items_per_page.required" +msgid "The items per page (Frontend) field is required." +msgstr "" + +#: settings.items_per_page_admin.between +msgctxt "settings.items_per_page_admin.between" +msgid "" +"The items per page (Admin) field does not appear to contain a valid value." +msgstr "The items per page (Admin) field does not appear to contain a valid value?" + +#: settings.items_per_page_admin.required +msgctxt "settings.items_per_page_admin.required" +msgid "The items per page (Admin) field is required." +msgstr "" + +#: settings.map.default_location +msgctxt "settings.map.default_location" +msgid "" +"Setting up your map provider is a straight- forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map.zoom +msgctxt "settings.map.zoom" +msgid "Zoom Level" +msgstr "" + +#: settings.map_provider.choose +msgctxt "settings.map_provider.choose" +msgid "Select a Map Provider" +msgstr "" + +#: settings.map_provider.enter_api +msgctxt "settings.map_provider.enter_api" +msgid "Enter the new API Key" +msgstr "" + +#: settings.map_provider.get_api +msgctxt "settings.map_provider.get_api" +msgid "Get an API Key" +msgstr "" + +#: settings.map_provider.info +msgctxt "settings.map_provider.info" +msgid "" +"Setting up your map provider is a straight-forward process. Select a " +"provider, obtain an API key from the provider's site, and enter the API key." +msgstr "Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider's site, and enter the API key" + +#: settings.map_provider.name +msgctxt "settings.map_provider.name" +msgid "Map provider" +msgstr "" + +#: settings.map_timeline +msgctxt "settings.map_timeline" +msgid "Map Timeline" +msgstr "" + +#: settings.map_settings +msgctxt "settings.map_settings" +msgid "Map Settings" +msgstr "" + +#: settings.multiple_countries +msgctxt "settings.multiple_countries" +msgid "Does this Ushahidi Deployment span multiple countries?" +msgstr "Does this Ushahidi Deployment Span Multiple Countries" + +#: settings.select_default_location +msgctxt "settings.select_default_location" +msgid "Please select a default country" +msgstr "" + +#: settings.set_location +msgctxt "settings.set_location" +msgid "Click and drag the map to set your exact location" +msgstr "" + +#: settings.site.allow_clustering +msgctxt "settings.site.allow_clustering" +msgid "Cluster Reports on Map" +msgstr "" + +#: settings.site.allow_comments +msgctxt "settings.site.allow_comments" +msgid "Allow Users to Submit Comments to Reports" +msgstr "" + +#: settings.site.allow_feed +msgctxt "settings.site.allow_feed" +msgid "Include RSS News Feed on Website" +msgstr "" + +#: settings.site.allow_feed_category +msgctxt "settings.site.allow_feed_category" +msgid "Create New Category from Feeds" +msgstr "" + +#: settings.site.allow_alerts +msgctxt "settings.site.allow_alerts" +msgid "Allow Users To Subscribe For Alerts" +msgstr "" + +#: settings.site.allow_reports +msgctxt "settings.site.allow_reports" +msgid "Allow Users To Submit Reports" +msgstr "" + +#: settings.site.api_akismet +msgctxt "settings.site.api_akismet" +msgid "Akismet Key" +msgstr "" + +#: settings.site.banner +msgctxt "settings.site.banner" +msgid "Site Banner" +msgstr "" + +#: settings.site.blocks_per_row +msgctxt "settings.site.blocks_per_row" +msgid "Blocks Per Row" +msgstr "" + +#: settings.site.cache_pages +msgctxt "settings.site.cache_pages" +msgid "Cache Pages" +msgstr "" + +#: settings.site.cache_pages_lifetime +msgctxt "settings.site.cache_pages_lifetime" +msgid "Cache Pages Lifetime" +msgstr "" + +#: settings.site.checkins +msgctxt "settings.site.checkins" +msgid "Enable Checkins" +msgstr "" + +#: settings.site.copyright_statement +msgctxt "settings.site.copyright_statement" +msgid "Site Copyright Statement" +msgstr "" + +#: settings.site.default_category_colors +msgctxt "settings.site.default_category_colors" +msgid "Default Color For All Categories" +msgstr "" + +#: settings.site.default_category_icons +msgctxt "settings.site.default_category_icons" +msgid "Default Icon For All Categories" +msgstr "" + +#: settings.site.delete_banner_image +msgctxt "settings.site.delete_banner_image" +msgid "Delete Banner Image" +msgstr "" + +#: settings.site.delete_default_map_all_icon +msgctxt "settings.site.delete_default_map_all_icon" +msgid "Delete Default Icon" +msgstr "" + +#: settings.site.display_contact_page +msgctxt "settings.site.display_contact_page" +msgid "Display Contact Page" +msgstr "" + +#: settings.site.display_howtohelp_page +msgctxt "settings.site.display_howtohelp_page" +msgid "Display \"How to Help\" Page" +msgstr "" + +#: settings.site.email_alerts +msgctxt "settings.site.email_alerts" +msgid "Alerts Email Address" +msgstr "" + +#: settings.site.email_notice +msgctxt "settings.site.email_notice" +msgid "" +"In order to receive reports by email, please configure your email " +"account settings." +msgstr "" + +#: settings.site.email_site +msgctxt "settings.site.email_site" +msgid "Site Email Address" +msgstr "" + +#: settings.site.google_analytics +msgctxt "settings.site.google_analytics" +msgid "Google Analytics" +msgstr "" + +#: settings.site.google_analytics_example +msgctxt "settings.site.google_analytics_example" +msgid "Web Property ID - Format: UA-XXXXX-XX" +msgstr "Web Property ID - Formato: UA-XXXXX-XX" + +#: settings.site.items_per_page +msgctxt "settings.site.items_per_page" +msgid "Items Per Page - Front End" +msgstr "" + +#: settings.site.items_per_page_admin +msgctxt "settings.site.items_per_page_admin" +msgid "Items Per Page - Admin" +msgstr "" + +#: settings.site.kismet_notice +msgctxt "settings.site.kismet_notice" +msgid "" +"Prevent comment spam using Akismet from Automattic.
You can get a free API " +"key by registering for a WordPress.com user account" +msgstr "" + +#: settings.site.laconica_configuration +msgctxt "settings.site.laconica_configuration" +msgid "Laconica Credentials" +msgstr "" + +#: settings.site.laconica_site +msgctxt "settings.site.laconica_site" +msgid "Laconica Site " +msgstr "" + +#: settings.site.language +msgctxt "settings.site.language" +msgid "Site Language" +msgstr "" + +#: settings.site.manually_approve_users +msgctxt "settings.site.manually_approve_users" +msgid "Manually Approve Users" +msgstr "" + +#: settings.site.message +msgctxt "settings.site.message" +msgid "Site Message" +msgstr "" + +#: settings.site.name +msgctxt "settings.site.name" +msgid "Site Name" +msgstr "" + +#: settings.site.private_deployment +msgctxt "settings.site.private_deployment" +msgid "Private Deployment" +msgstr "私人網站" + +#: settings.site.require_email_confirmation +msgctxt "settings.site.require_email_confirmation" +msgid "Require User Email Confirmation" +msgstr "" + +#: settings.site.submit_report_message +msgctxt "settings.site.submit_report_message" +msgid "Submit Report Message" +msgstr "" + +#: settings.site.share_site_stats +msgctxt "settings.site.share_site_stats" +msgid "Enable Statistics (Stored on Ushahidi's server)" +msgstr "" + +#: settings.site.tagline +msgctxt "settings.site.tagline" +msgid "Site Tagline" +msgstr "" + +#: settings.site.timezone +msgctxt "settings.site.timezone" +msgid "Timezone" +msgstr "" + +#: settings.site.title +msgctxt "settings.site.title" +msgid "Site Settings" +msgstr "" + +#: settings.site.twitter_configuration +msgctxt "settings.site.twitter_configuration" +msgid "Twitter Search Terms" +msgstr "" + +#: settings.site.twitter_hashtags +msgctxt "settings.site.twitter_hashtags" +msgid "Hashtags - Separate with commas " +msgstr "" + +#: settings.site.feed_geolocation_user +msgctxt "settings.site.feed_geolocation_user" +msgid "Feeds geolocation - Geonames username" +msgstr "" + +#: settings.site_email.email +msgctxt "settings.site_email.email" +msgid "The site email field does not appear to contain a valid email address." +msgstr "The site email field does not appear to contain a valid email address?" + +#: settings.site_email.length +msgctxt "settings.site_email.length" +msgid "" +"The site email field must be at least 4 and no more 100 characters long." +msgstr "" + +#: settings.site_name.length +msgctxt "settings.site_name.length" +msgid "The site name field must be at least 3 and no more 50 characters long." +msgstr "" + +#: settings.site_name.required +msgctxt "settings.site_name.required" +msgid "The site name field is required." +msgstr "" + +#: settings.site_tagline.length +msgctxt "settings.site_tagline.length" +msgid "The tagline field must be at least 3 and no more 100 characters long." +msgstr "" + +#: settings.site_tagline.required +msgctxt "settings.site_tagline.required" +msgid "The tagline field is required." +msgstr "" + +#: settings.sms.clickatell_api +msgctxt "settings.sms.clickatell_api" +msgid "Your Clickatell API Number" +msgstr "" + +#: settings.sms.clickatell_check_balance +msgctxt "settings.sms.clickatell_check_balance" +msgid "Check Your Clickatell Credit Balance" +msgstr "" + +#: settings.sms.clickatell_load_balance +msgctxt "settings.sms.clickatell_load_balance" +msgid "Load Credit Balance" +msgstr "" + +#: settings.sms.clickatell_password +msgctxt "settings.sms.clickatell_password" +msgid "Your Clickatell Password" +msgstr "" + +#: settings.sms.clickatell_text_1 +msgctxt "settings.sms.clickatell_text_1" +msgid "" +"Sign up for Clickatells service by clicking here" +msgstr "" + +#: settings.sms.clickatell_text_2 +msgctxt "settings.sms.clickatell_text_2" +msgid "Enter your Clickatell access information below" +msgstr "" + +#: settings.sms.clickatell_username +msgctxt "settings.sms.clickatell_username" +msgid "Your Clickatell User Name" +msgstr "" + +#: settings.sms.flsms_description +msgctxt "settings.sms.flsms_description" +msgid "" +"FrontlineSMS is free and open source software that enables users to send and" +" receive text messages with large groups of people through mobile phones. " +"Click on the box below to download the latest version from FrontlineSMS.com." +msgstr "" + +#: settings.sms.flsms_download +msgctxt "settings.sms.flsms_download" +msgid "Download and install FrontlineSMS" +msgstr "" + +#: settings.sms.flsms_instructions +msgctxt "settings.sms.flsms_instructions" +msgid "" +"Detailed instructions on how to send SMS from your FronlineSMS installation " +"are available here. The URL and API Key below are required " +"to set up the sync with FrontlineSMS." +msgstr "" + +#: settings.sms.flsms_link +msgctxt "settings.sms.flsms_link" +msgid "Copy and paste this into the FrontlineSMS \"Address\" field" +msgstr "" + +#: settings.sms.flsms_key +msgctxt "settings.sms.flsms_key" +msgid "Copy and paste this into the FrontlineSMS \"Ushahidi API Key\" field" +msgstr "" + +#: settings.sms.flsms_synchronize +msgctxt "settings.sms.flsms_synchronize" +msgid "Connecting FrontlineSMS to this Ushahidi deployment" +msgstr "" + +#: settings.sms.flsms_text_1 +msgctxt "settings.sms.flsms_text_1" +msgid "Enter phone number(s) connected to Frontline SMS in the field(s) below" +msgstr "" + +#: settings.sms.flsms_text_2 +msgctxt "settings.sms.flsms_text_2" +msgid "Enter the number without any + or dashes below" +msgstr "" + +#: settings.sms.option_1 +msgctxt "settings.sms.option_1" +msgid "Option 1: Use Frontline SMS" +msgstr "" + +#: settings.sms.option_2 +msgctxt "settings.sms.option_2" +msgid "Option 2: Use a Global SMS Gateway" +msgstr "" + +#: settings.sms.title +msgctxt "settings.sms.title" +msgid "SMS Setup Options" +msgstr "" + +#: settings.sms_no1.length +msgctxt "settings.sms_no1.length" +msgid "The phone 1 field does not appear to contain a valid value." +msgstr "The phone 1 field does not appear to contain a valid value?" + +#: settings.sms_no1.numeric +msgctxt "settings.sms_no1.numeric" +msgid "The phone 1 field should contain numbers only." +msgstr "" + +#: settings.sms_no2.length +msgctxt "settings.sms_no2.length" +msgid "The phone 2 field is too long." +msgstr "The phone 2 field is too long" + +#: settings.sms_no2.numeric +msgctxt "settings.sms_no2.numeric" +msgid "The phone 2 field should contain numbers only." +msgstr "" + +#: settings.sms_no3.length +msgctxt "settings.sms_no3.length" +msgid "The phone 3 field is too long." +msgstr "The phone 3 field is too long" + +#: settings.sms_no3.numeric +msgctxt "settings.sms_no3.numeric" +msgid "The phone 3 field should contain numbers only." +msgstr "" + +#: settings.twitter.title +msgctxt "settings.twitter.title" +msgid "Twitter Setup Options" +msgstr "" + +#: settings.twitter.description +msgctxt "settings.twitter.description" +msgid "" +"To get the information below, set up your deployment as a new Twitter " +"application at" +msgstr "" + +#: settings.twitter.api_key +msgctxt "settings.twitter.api_key" +msgid "Consumer Key" +msgstr "" + +#: settings.twitter.api_key_secret +msgctxt "settings.twitter.api_key_secret" +msgid "Consumer secret" +msgstr "" + +#: settings.twitter.token +msgctxt "settings.twitter.token" +msgid "Access Token" +msgstr "" + +#: settings.twitter.token_secret +msgctxt "settings.twitter.token_secret" +msgid "Access Token Secret" +msgstr "" + +#: settings.test_settings +msgctxt "settings.test_settings" +msgid "Test settings" +msgstr "" diff --git a/application/i18n/po/po-zh_TW/sharing.po b/application/i18n/po/po-zh_TW/sharing.po new file mode 100644 index 0000000000..019217f0cb --- /dev/null +++ b/application/i18n/po/po-zh_TW/sharing.po @@ -0,0 +1,72 @@ +# +# Translators: +# kiang , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2015-04-08 06:34+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: sharing.date +msgctxt "sharing.date" +msgid "Ingress date" +msgstr "Ingress 日期" + +#: sharing.date_added +msgctxt "sharing.date_added" +msgid "Date Added" +msgstr "日期已新增" + +#: sharing.last_access +msgctxt "sharing.last_access" +msgid "Last Access" +msgstr "上一次連線" + +#: sharing.sharing_color.length +msgctxt "sharing.sharing_color.length" +msgid "The color field must be 6 characters long." +msgstr "顏色欄位至少需六瑪." + +#: sharing.sharing_color.required +msgctxt "sharing.sharing_color.required" +msgid "The color field is required." +msgstr "顏色欄位為必填." + +#: sharing.sharing_name.length +msgctxt "sharing.sharing_name.length" +msgid "The Sharing name does not appear to be valid." +msgstr "分享名稱顯示為無效" + +#: sharing.sharing_name.required +msgctxt "sharing.sharing_name.required" +msgid "A Sharing name is required." +msgstr "分享名稱為必填." + +#: sharing.sharing_url.exists +msgctxt "sharing.sharing_url.exists" +msgid "The site URL already exists." +msgstr "這個網址已經存在" + +#: sharing.sharing_url.length +msgctxt "sharing.sharing_url.length" +msgid "The site URL does not appear to be valid." +msgstr "這個網址顯示為無效?" + +#: sharing.sharing_url.required +msgctxt "sharing.sharing_url.required" +msgid "The site URL is required." +msgstr "網址欄位為必填." + +#: sharing.sharing_url.url +msgctxt "sharing.sharing_url.url" +msgid "The site URL field does not appear to contain a valid URL." +msgstr "網址欄位顯示包含無效資料?" diff --git a/application/i18n/po/po-zh_TW/stats.po b/application/i18n/po/po-zh_TW/stats.po new file mode 100644 index 0000000000..74b07060bc --- /dev/null +++ b/application/i18n/po/po-zh_TW/stats.po @@ -0,0 +1,197 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-09 06:11+0000\n" +"PO-Revision-Date: 2013-04-17 06:07+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: stats.approved +msgctxt "stats.approved" +msgid "Approved" +msgstr "已核准" + +#: stats.categories +msgctxt "stats.categories" +msgid "Categories" +msgstr "分類" + +#: stats.category_impact +msgctxt "stats.category_impact" +msgid "Category Impact" +msgstr "分類影響" + +#: stats.category_impact_description +msgctxt "stats.category_impact_description" +msgid "" +"This chart gives you a linear view of the reports by category over time. " +"Scroll from left to right to see a comparative view of the different " +"categories. Mouse over the graph for more details." +msgstr "您可以在該表格中看到各類別的報告量隨時間變化的情況。從左到右拖動滾動條可以看到不同分類的情況。將鼠標移到圖片上可以查看詳情。" + +#: stats.choose_date_range +msgctxt "stats.choose_date_range" +msgid "Choose a date range." +msgstr "選擇日期範圍" + +#: stats.countries +msgctxt "stats.countries" +msgid "Countries" +msgstr "國別" + +#: stats.country +msgctxt "stats.country" +msgid "Country" +msgstr "國家" + +#: stats.country_breakdown +msgctxt "stats.country_breakdown" +msgid "Country Breakdown" +msgstr "國家分佈" + +#: stats.description +msgctxt "stats.description" +msgid "" +"This is the statistics section and will contain a general description here " +"soon. For now, browse around using the sub category links above." +msgstr "您好,這是數據部分。總體描述將隨後放出。現在,您可以在上面的分類鏈接中訪問其他頁面" + +#: stats.error +msgctxt "stats.error" +msgid "Error" +msgstr "錯誤" + +#: stats.glossary +msgctxt "stats.glossary" +msgid "Glossary" +msgstr "術語表" + +#: stats.hit_summary +msgctxt "stats.hit_summary" +msgid "Hit Summary" +msgstr "點擊統計" + +#: stats.legend +msgctxt "stats.legend" +msgid "Legend" +msgstr "圖例" + +#: stats.pageviews +msgctxt "stats.pageviews" +msgid "Pageviews" +msgstr "頁面訪問" + +#: stats.pageviews_description +msgctxt "stats.pageviews_description" +msgid "The total number of pages that visitors have viewed on your site" +msgstr "訪問者在您的網站上訪問頁面的總數量" + +#: stats.reports +msgctxt "stats.reports" +msgid "Reports" +msgstr "事件報告" + +#: stats.reports_categories +msgctxt "stats.reports_categories" +msgid "Reports Categories" +msgstr "事件分類" + +#: stats.reports_statistics +msgctxt "stats.reports_statistics" +msgid "Reports Statistics" +msgstr "報告數據" + +#: stats.reports_status +msgctxt "stats.reports_status" +msgid "Reports Status" +msgstr "報告狀態" + +#: stats.report_punchcard +msgctxt "stats.report_punchcard" +msgid "Report Punchcard" +msgstr "事件報告穿孔卡" + +#: stats.report_stats +msgctxt "stats.report_stats" +msgid "Report Stats" +msgstr "報告數據" + +#: stats.stats_not_setup +msgctxt "stats.stats_not_setup" +msgid "Stats Not Set Up" +msgstr "數據未確定" + +#: stats.time_range_1 +msgctxt "stats.time_range_1" +msgid "1 Month" +msgstr "1個月" + +#: stats.time_range_2 +msgctxt "stats.time_range_2" +msgid "3 Months" +msgstr "3個月" + +#: stats.time_range_3 +msgctxt "stats.time_range_3" +msgid "6 Months" +msgstr "6個月" + +#: stats.time_range_all +msgctxt "stats.time_range_all" +msgid "All" +msgstr "全部" + +#: stats.unapproved +msgctxt "stats.unapproved" +msgid "Unapproved" +msgstr "未核准" + +#: stats.unique_visitors +msgctxt "stats.unique_visitors" +msgid "Unique Visitors" +msgstr "獨立訪問者" + +#: stats.unique_visitors_description +msgctxt "stats.unique_visitors_description" +msgid "" +"The number of individuals coming to your deployment. Unique visitors are " +"determined using cookies. Visitors that do not have cookies enabled will be " +"identified using a simple heuristic taking into account IP address, " +"resolution, browser, plugins, OS, etc." +msgstr "訪問您的頁面的人數;獨立訪問者的身份標識為其瀏覽器cookie。如果來訪者沒有使用cookie,將通過IP地址、協議、瀏覽器、插件、操作系統等方式來驗證其身份。" + +#: stats.unverified +msgctxt "stats.unverified" +msgid "Unverified" +msgstr "未驗證" + +#: stats.verified +msgctxt "stats.verified" +msgid "Verified" +msgstr "已驗證" + +#: stats.visitor_summary +msgctxt "stats.visitor_summary" +msgid "Visitor Summary" +msgstr "訪客總數" + +#: stats.visits +msgctxt "stats.visits" +msgid "Visits" +msgstr "訪問數" + +#: stats.visits_description +msgctxt "stats.visits_description" +msgid "" +"A visit is a record of a unique visitor coming to the site more than 30 " +"minutes past his/her last pageview." +msgstr "在最後一次頁面訪問以後30分鐘後重新登錄的獨立訪問者將被視為一次新的訪問" diff --git a/application/i18n/po/po-zh_TW/tooltips.po b/application/i18n/po/po-zh_TW/tooltips.po new file mode 100644 index 0000000000..2779486564 --- /dev/null +++ b/application/i18n/po/po-zh_TW/tooltips.po @@ -0,0 +1,584 @@ +# +# Translators: +# kiang , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-04-08 06:32+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: tooltips.actions.add_to_category +msgctxt "tooltips.actions.add_to_category" +msgid "" +"This adds the report to additional categories. If you select Category 1 here" +" and the report already has Category 2 attached to it, the report will then " +"have both Category 1 and Category 2." +msgstr "這增加了報告的額外類別。如果你選擇1類和2類報告已連接到它,該報告將有1類和2類。" + +#: tooltips.actions.approve +msgctxt "tooltips.actions.approve" +msgid "Approves a report or not. If approved, it will show up publicly." +msgstr "是否核准通报。如果获得批准,它将被公开。" + +#: tooltips.actions.assign_badge +msgctxt "tooltips.actions.assign_badge" +msgid "" +"You will be able to assign a badge to the triggering user. Pick the badge " +"that gets assigned here." +msgstr "可以分配一個徽章給用戶。選中一個徽章,然後在這里分配。" + +#: tooltips.actions.between_times +msgctxt "tooltips.actions.between_times" +msgid "" +"This is a range of hours and/or minutes between two times in 24 hour format." +" If you input an earlier time in the second field, it will be flipped with " +"the first. These times must be within a single day. Also, this time is " +"checked against the time you have configured on your site in site settings " +"and not necessarily the timezone of the user interacting " +"with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier." +msgstr "這是二十四小時制的時分範圍,第一區域要比第二區域早,否則需要反轉,同時將比如係統配置時間且無關時區。" + +#: tooltips.actions.category +msgctxt "tooltips.actions.category" +msgid "" +"If you would like to activate triggers only when a certain category is being" +" used, you can set that here. This will allow a trigger to be activated if " +"only one of the categories is used. For instace, if you select Category 1 " +"and Category 2 here and a report is submitted using Category 2 and Category " +"3, it will pass the test." +msgstr "如果你想激活觸發器當在指定類別被使用時,您可以在這裡設置。如果一篇事件報告有多個分類類別,且每個類別都有觸發器,那麼只激活一個。" + +#: tooltips.actions.days_of_the_week +msgctxt "tooltips.actions.days_of_the_week" +msgid "" +"If these actions happen on certain days of the week, set that here. Keep in " +"mind the day is determined by the timezone configured on your deployment. " +"Hold shift, command, or control for multiple day selection." +msgstr "如果這些動作發生在每週的特定日子,請在此設置。按住Shift、Commond(Mac)、或者Control(Windows)健選擇幾個日期。" + +#: tooltips.actions.email_body +msgctxt "tooltips.actions.email_body" +msgid "Body of the email that will be sent." +msgstr "郵件內容將被發送" + +#: tooltips.actions.email_subject +msgctxt "tooltips.actions.email_subject" +msgid "Subject of email that will be sent." +msgstr "郵件標題將被發送" + +#: tooltips.actions.feed_id +msgctxt "tooltips.actions.feed_id" +msgid "" +"The feed can be all feeds or a specific feeds. If you would only like " +"specific feeds to activate a trigger, you will want to select them here. " +"Otherwise, you will want to leave this as \"all\"" +msgstr "這個資料來源可以是所有資料來源或是一個特定的資料來源,如果想要指定一個資料來源觸發動作,可以在這邊選擇。或是維持 \"全部\" 的選項即可。" + +#: tooltips.actions.from +msgctxt "tooltips.actions.from" +msgid "" +"Twitter author username (or multiple usernames separated by commas). If you " +"would like to activate triggers only for twitter messages from a particular " +"user, enter their username here (not including @)" +msgstr "Twitter 作者帳號(或是透過逗點分隔多個帳號),如果只想要特定使用者 twitter 訊息觸發動作,可以在這裡輸入他們的帳號(不要包含 @)" + +#: tooltips.actions.keywords +msgctxt "tooltips.actions.keywords" +msgid "" +"You can choose to leave this blank if you do not want to check against " +"keywords. If you add words here, you will need to separate them with a comma" +" (,). For example, if you want to activate a trigger when someone mentions " +"\"love\" or \"peace\" in their message, you will want to add \"love, peace\"" +" in the keywords box." +msgstr "如果您不想要關鍵字,那麼讓此處空白;否則,多個關鍵字用英文逗號分隔。" + +#: tooltips.actions.location +msgctxt "tooltips.actions.location" +msgid "" +"You can either select anywhere or a specific location. If you select a " +"specific location, you will be asked to draw a box around the area that " +"qualifies an action. For example, if you want this trigger to be activated " +"when someone submits a report in Brazil, you will select \"specific area\" " +"and then draw the box around Brazil. You can make these boxes as small or as" +" large as you would like. You can also draw multiple boxes." +msgstr "你可以設定在任何地方或一個特定的位置。如果你選擇了一個特定的位置,你將被要求畫一個框周圍的地區是一個行動。例如,如果你想要這個觸發器被激活時,有人提出一個報告在巴西,你會選擇“特別區域”,然後在巴西畫一個區域。你可以把這些區域畫小或大,也可以畫多個。" + +#: tooltips.actions.on_specific_count +msgctxt "tooltips.actions.on_specific_count" +msgid "" +"This qualifier will activate the trigger on the N-th count either for the " +"entire collective user base or for each individual user. Leave this blank to" +" ignore it." +msgstr "該限定符將激活特定數的集群用戶或獨立用戶。留空白可以忽略。" + +#: tooltips.actions.report_title +msgctxt "tooltips.actions.report_title" +msgid "This is the default title to add to the report." +msgstr "這是默認添加到報告的標題。" + +#: tooltips.actions.response +msgctxt "tooltips.actions.response" +msgid "" +"If all of the qualifiers above are passed, the trigger will initiate a " +"response. This can range from approving a report to emailing a user. Select " +"the response here to activate additional options for the specific responses." +msgstr "如果所有的限定都通過,觸發器將啟動響應。這將產生從核准事件報告到發郵件到用戶的變化。選擇回應激活額外選項。" + +#: tooltips.actions.send_to +msgctxt "tooltips.actions.send_to" +msgid "" +"If you select \"Triggering User\", the email will be sent to the user who " +"performed the action. If you select the radio button next to the input box, " +"you will be able to enter a custom email address. This is useful if you are " +"setting up triggers to notify people when certain parts of the map are " +"seeing reports, check ins or some other activity." +msgstr "如果你選擇“觸發的用戶”,電子郵件將被發送到執行行動的用戶。如果你選擇單選按鈕旁邊的輸入框,你將能夠進入一個定制的電子郵件地址。當你設置觸發的用戶在某些地區的地圖看到報告,簽入或其他一些活動時是有用的。" + +#: tooltips.actions.specific_days +msgctxt "tooltips.actions.specific_days" +msgid "" +"You can select multiple days here. Dates are determined by your deployment " +"timezone setting. In order to default to all dates, do not select any dates." +msgstr "你可以選擇多個日期。由時區配置決定。如果不選擇日期,默認為所有日期。" + +#: tooltips.actions.trigger +msgctxt "tooltips.actions.trigger" +msgid "" +"The trigger is the core component of setting up your Action Triggers. This " +"is where you determine if you would like something to happen when someone " +"submits a report, performs a check in, etc. You will be able to filter " +"responses to these actions after selecting one." +msgstr "觸發器是調定你的行為操作的核心部件。當有人提交一個事件報告,簽入等行為時,你可以通過它過濾回應或使某事發生。" + +#: tooltips.actions.user +msgctxt "tooltips.actions.user" +msgid "" +"The user can be anyone or a specific user. If you would only like specific " +"users to activate a trigger, you will want to select them here. Otherwise, " +"you will want to leave this as \"anyone\" since most triggers are set up for" +" all users interacting with the system" +msgstr "用戶可以是任何人,或一個特定的用戶。如果你只喜歡特定用戶激活觸發器,你可以選擇他們;否則,你將要排除這個“anyone”當最觸發器設置為所有用戶與系統的相互作用" + +#: tooltips.actions.verify +msgctxt "tooltips.actions.verify" +msgid "Marks a report as verified or not." +msgstr "標註一個通報為已驗證或未驗證" + +#: tooltips.change_picture +msgctxt "tooltips.change_picture" +msgid "" +"Profile pages on this site use Gravatar. By clicking on your image, you will" +" be taken to the Gravatar website where you can change your profile picture." +msgstr "資料頁面本網站使用 Gravatar。通過點擊你的頭像,你將被帶到 Gravatar 網站。在那裡,您可以更改您的個人資料頭像。" + +#: tooltips.default_value +msgctxt "tooltips.default_value" +msgid "Separate each value with a comma, e.g. value1, value2." +msgstr "用英文逗號分隔每一個值,例如1,2。" + +#: tooltips.radio_choices +msgctxt "tooltips.radio_choices" +msgid "" +"Separate each value with a comma, e.g. value1, value2. In case you want to " +"set a default value, end your list of options with :: e.g If you want to " +"make value3 the default, it will be value1, value2, value3::value3" +msgstr "用英文逗號分隔每一個值,例如1,2。如果你想設置默認值,在選項列表結束位置加::符號。例如,如果你想讓Value 3為默認值,這將是Value 1,Value 2,Value 3::Value 3" + +#: tooltips.dropdown_choices +msgctxt "tooltips.dropdown_choices" +msgid "Separate each choice item with a comma, e.g. Item 1, Item 2 etc." +msgstr "用英文逗號分隔每一個值,範例, Item 1, Item 2" + +#: tooltips.private_to +msgctxt "tooltips.private_to" +msgid "Start typing to list members." +msgstr "開始鍵入列表成員" + +#: tooltips.private_subject +msgctxt "tooltips.private_subject" +msgid "Private message subject" +msgstr "私人訊息的主題" + +#: tooltips.private_message +msgctxt "tooltips.private_message" +msgid "Private message" +msgstr "私人訊息" + +#: tooltips.profile_color +msgctxt "tooltips.profile_color" +msgid "" +"You can select a color that will show up under your profile picture on your " +"public profile. This color will also be the color dot that shows up on the " +"map for your checkins." +msgstr "您可以選擇一種顏色,將顯示在您的個人資料圖片在您的公眾形象。這也將是彩色點陣顯示的地圖為您的簽入。" + +#: tooltips.profile_email +msgctxt "tooltips.profile_email" +msgid "Your email address" +msgstr "您的電子郵箱地址" + +#: tooltips.profile_name +msgctxt "tooltips.profile_name" +msgid "" +"This is one of the ways that you are identified on the website. Keep in mind" +" that this is public!" +msgstr "這是你在網站上識別的方式之一。請記住,這是公開的!" + +#: tooltips.profile_new_password +msgctxt "tooltips.profile_new_password" +msgid "" +"If set, this will be your new password. Leave this field blank if you wish " +"to keep your current password." +msgstr "如果設定,這將是您的新密碼。如果你想保留當前的密碼,留下該字段空白。" + +#: tooltips.profile_new_users_password +msgctxt "tooltips.profile_new_users_password" +msgid "" +"This is a requirement when creating a new user and will be the users " +"password. You should inform your new user to change their password after " +"logging in for the first time." +msgstr "這是一個要求,創建一個新用戶時,將創建用戶的密碼。你應該通知您的新用戶,首次登錄後改變自己的密碼。" + +#: tooltips.profile_notify +msgctxt "tooltips.profile_notify" +msgid "" +"Selecting YES lets you get alerts via email when new reports or comments are" +" posted on your website." +msgstr "選擇 YES,新的報告或意見在您的網站上發表時,讓你通過電子郵件得到通知。" + +#: tooltips.profile_password +msgctxt "tooltips.profile_password" +msgid "" +"Your current password. We require you enter your password to prevent any " +"unauthorized changes to your account." +msgstr "您的當前密碼。我們要求您輸入密碼,以防止任何未經授權的更改您的帳戶。" + +#: tooltips.profile_public +msgctxt "tooltips.profile_public" +msgid "" +"Your profile can be viewed by anyone on the Internet if you check this " +"option. This is also the easiest way to show off the reports you've " +"submitted, your checkins, badges, etc all on one page." +msgstr "如果你勾選這個選項,互聯網上的任何人都可以查看您的個人資料。這也是最簡單的方式來顯示您已提交通報,您的簽入,徽章等所有在這個頁面上的報告。" + +#: tooltips.profile_public_url +msgctxt "tooltips.profile_public_url" +msgid "This is the address where your public profile can be found." +msgstr "這是您的公共檔案的 URL 地址。" + +#: tooltips.profile_username +msgctxt "tooltips.profile_username" +msgid "Your username cannot be changed." +msgstr "您的用戶名不能更改。" + +#: tooltips.settings_access_level +msgctxt "tooltips.settings_access_level" +msgid "" +"Access Levels are used to restrict access to custom form field data. Higher " +"access levels can access fields from lower levels. Superadmin has the " +"highest access level (100). Public data is displayed at the lowest access " +"level (0). Members have access level 10. Admin is access level 90 by " +"default." +msgstr "訪問級別是用來限制訪問自定義表單字段數據。更高的訪問級別,可訪問下級的領域。超級管理員擁有最高的訪問級別(100)。公開資料顯示的最低訪問級別(0)。成員有訪問級別10。 admin是默認訪問級別90。" + +#: tooltips.settings_alert_email +msgctxt "tooltips.settings_alert_email" +msgid "This is the email address that will be used to send email alerts." +msgstr "這個電子郵件地址用來發送電子郵件警報。" + +#: tooltips.settings_allow_alerts +msgctxt "tooltips.settings_allow_alerts" +msgid "Allow users to subscribe for alerts via the web." +msgstr "允許用戶通 Web 網絡訂閱警報。" + +#: tooltips.settings_allow_clustering +msgctxt "tooltips.settings_allow_clustering" +msgid "This allows bundling of similar reports into a single dot on the map" +msgstr "這使得類似的通報捆綁成在地圖上顯示的一個點" + +#: tooltips.settings_allow_comments +msgctxt "tooltips.settings_allow_comments" +msgid "Allow users to comment on reports on the main site." +msgstr "允許用戶對主站點的通報發表評論。" + +#: tooltips.settings_allow_feed +msgctxt "tooltips.settings_allow_feed" +msgid "This allows RSS News feeds to be displayed on the main site." +msgstr "這使得主站點上顯示RSS新聞訂閱。" + +#: tooltips.settings_allow_feed_category +msgctxt "tooltips.settings_allow_feed_category" +msgid "This allows creating new Category from RSS News feeds." +msgstr "這可以從 RSS 新聞資料來源建立新分類" + +#: tooltips.settings_allow_reports +msgctxt "tooltips.settings_allow_reports" +msgid "Allow users to submit information via the web form." +msgstr "允許用戶通過 Web 網絡形式提交信息。" + +#: tooltips.settings_api_default_record_limit +msgctxt "tooltips.settings_api_default_record_limit" +msgid "Default number of records to be fetched per API request" +msgstr "每個API請求獲取的默認記錄數" + +#: tooltips.settings_api_max_record_limit +msgctxt "tooltips.settings_api_max_record_limit" +msgid "Maximum number of records to be fetched per API request" +msgstr "每個API請求要提取的最大記錄數" + +#: tooltips.settings_api_max_requests_per_ip +msgctxt "tooltips.settings_api_max_requests_per_ip" +msgid "Maximum number of API requests per IP address" +msgstr "每個IP地址的API請求的最大數量" + +#: tooltips.settings_banner +msgctxt "tooltips.settings_banner" +msgid "" +"The site banner shows up at the top of the front end of your website if the " +"theme you are using supports it. The recommended size for this banner will " +"depend on the theme you are using. Keep in mind that this will replace the " +"site title and tagline at the top of the page." +msgstr "該網站橫幅顯示在您網站的前端,如果您正在使用的主題支持它的頂部。這個橫幅的建議的大小將取決於您所使用的主題。記住,這將取代網站的標題和標語,在頁面頂部。" + +#: tooltips.settings_blocks_per_row +msgctxt "tooltips.settings_blocks_per_row" +msgid "Number of Block columns that will be displayed on each row." +msgstr "每行顯示的列數" + +#: tooltips.settings_cache_pages +msgctxt "tooltips.settings_cache_pages" +msgid "" +"Enable or disable page caching. This makes pages display faster by cutting " +"response times. We recommend using caching on high traffic sites. **Remember" +" that reports will be populated on the front end based on the schedule you " +"set below (Cache Lifetime)." +msgstr "啟用或禁用頁面緩存。這使得頁面顯示,減少響應時間快。我們建議使用高流量的網站緩存。 **記住,報告將基於下面您設定的日程(緩存終身)前端填充。" + +#: tooltips.settings_cache_pages_lifetime +msgctxt "tooltips.settings_cache_pages_lifetime" +msgid "Set the lifetime of the cache." +msgstr "設置緩存的生命週期。" + +#: tooltips.settings_checkins +msgctxt "tooltips.settings_checkins" +msgid "" +"This setting enables checkins on your deployment. This is a simplified " +"report type that is not moderated before it goes on the homepage and " +"requires your site to be configured a certain way. When you enable this, " +"make sure your timezone setting is on UTC and your theme supports checkins. " +"When you enable this, checkin-only themes will become enabled under your " +"addons/themes settings page." +msgstr "此設置使得您的部署的簽入。這是一個簡化的報告未緩和之前,它在主頁上,需要您的網站進行配置,以某種方式。當您啟用此功能,確保您的時區設置為UTC與你的主題支持簽入。當您啟用此簽,唯一的主題,將成為下你的插件/主題設置頁面啟用。" + +#: tooltips.settings_configure_map +msgctxt "tooltips.settings_configure_map" +msgid "Set the map to cover a specific location." +msgstr "設置覆蓋一個特定的位置的地圖。" + +#: tooltips.settings_default_category_colors +msgctxt "tooltips.settings_default_category_colors" +msgid "Set one color code for all the categories on the site." +msgstr "設置一個網站上的所有類別的顏色代碼。" + +#: tooltips.settings_default_category_icons +msgctxt "tooltips.settings_default_category_icons" +msgid "Set one icon for all the categories on the site." +msgstr "設置一個圖標在網站上的所有類別。" + +#: tooltips.settings_default_location +msgctxt "tooltips.settings_default_location" +msgid "This is the country the site is being deployed." +msgstr "這是該網站將部署的國家。" + +#: tooltips.settings_display_contact +msgctxt "tooltips.settings_display_contact" +msgid "Turn the Contact Tab on or off on the main site." +msgstr "在主點上打開或關閉“聯繫我們”標籤頁" + +#: tooltips.settings_display_howtohelp +msgctxt "tooltips.settings_display_howtohelp" +msgid "Turn the How to Help Tab on or off on the main site." +msgstr "在主點上打開或關閉“幫助”標籤頁" + +#: tooltips.settings_display_items_per_page +msgctxt "tooltips.settings_display_items_per_page" +msgid "This is the number of reports displayed per page on the main site." +msgstr "主站上每頁顯示的通報數" + +#: tooltips.settings_display_items_per_page_admin +msgctxt "tooltips.settings_display_items_per_page_admin" +msgid "" +"This is the number of reports displayed per page on the admin Back End." +msgstr "網站後台每頁顯示的通報數" + +#: tooltips.settings_flsms_download +msgctxt "tooltips.settings_flsms_download" +msgid "This is the hub for incoming messages." +msgstr "這是傳入消息的樞紐" + +#: tooltips.settings_flsms_synchronize +msgctxt "tooltips.settings_flsms_synchronize" +msgid "This synchronizes the messages in the hub with the Ushahidi platform." +msgstr "這與 Ushahidi 平台的樞紐同步的消息。" + +#: tooltips.settings_flsms_text_1 +msgctxt "tooltips.settings_flsms_text_1" +msgid "Phone numbers through which the text messages are received." +msgstr "接收短信的電話號碼" + +#: tooltips.settings_google_analytics +msgctxt "tooltips.settings_google_analytics" +msgid "Tracks visitors of your site. Get detailed visitor statistics." +msgstr "跟踪您的網站的訪問者。獲取詳細的訪客統計。" + +#: tooltips.settings_locale +msgctxt "tooltips.settings_locale" +msgid "Sets the language that will be used in the site." +msgstr "設定將在網站上使用的語言。" + +#: tooltips.settings_manually_approve_users +msgctxt "tooltips.settings_manually_approve_users" +msgid "" +"If you set this option to yes, you must approve every individual user who " +"creates an account on your site by assigning them roles (ie. Member, Admin, " +"Superadmin)." +msgstr "如果將此選項設置為 yes,你必須批准您的網站上創建一個帳戶,由他們分配角色(即會員 Member,管理員 Admin,超級管理員 Superadmin)的每一個人用戶。" + +#: tooltips.settings_map_provider +msgctxt "tooltips.settings_map_provider" +msgid "This defines which map is to be used on the site." +msgstr "定義是要在網站上使用哪種地圖" + +#: tooltips.settings_map_timeline +msgctxt "tooltips.settings_map_timeline" +msgid "" +"This shows the timeline based on the date and time reports were submitted" +msgstr "" + +#: tooltips.settings_private_deployment +msgctxt "tooltips.settings_private_deployment" +msgid "" +"Setting this value to true or yes will make your deployment private so only " +"users with accounts that you specify will be able to access the deployment." +msgstr "將此值設置為true或yes,將讓您的部署私營所以只與你指定的帳戶的用戶將能夠訪問部署。" + +#: tooltips.settings_require_email_confirmation +msgctxt "tooltips.settings_require_email_confirmation" +msgid "" +"Users will be emailed with a confirmation link to click before they are " +"allowed to log into the deployment if this is set to yes. If you enable this" +" after your deployment has accepted users, they will be prompted to confirm " +"their account before they will be allowed to continue using it." +msgstr "用戶將通過電子郵件發送一個確認鏈接,點擊後,他們被允許登錄到部署,如果此設置為yes。如果啟用此部署後已接受用戶,他們會提示,以確認他們的帳戶之前,他們將被允許繼續使用它。" + +#: tooltips.settings_server_host +msgctxt "tooltips.settings_server_host" +msgid "This is where the emails reside" +msgstr "電子郵件位於" + +#: tooltips.settings_server_password +msgctxt "tooltips.settings_server_password" +msgid "This is the password for the email address that receives reports." +msgstr "這是接收報告的電子郵件地址的密碼。" + +#: tooltips.settings_server_port +msgctxt "tooltips.settings_server_port" +msgid "" +"This is required to accept incoming connections from the email address." +msgstr "這是必需的,以從電子郵件地址接受入站連接" + +#: tooltips.settings_server_ssl_support +msgctxt "tooltips.settings_server_ssl_support" +msgid "This is required to enhance a secure connection." +msgstr "這是必需的,以提高安全連接" + +#: tooltips.settings_server_type +msgctxt "tooltips.settings_server_type" +msgid "This is required to retrieve e-mails from the host server." +msgstr "這是必需的,從主機服務器檢索電子郵件" + +#: tooltips.settings_server_username +msgctxt "tooltips.settings_server_username" +msgid "This is the email address that receives reports." +msgstr "這是接收報告的電子郵件地址。" + +#: tooltips.settings_share_site_stats +msgctxt "tooltips.settings_share_site_stats" +msgid "" +"Hit statistics are stored on a server controlled by Ushahidi. By enabling " +"this option, you gain access to hit statistics directly in your admin panel." +" By disabling it, you will stop collecting statistics and will be unable to " +"recover traffic stats collected while this is turned off." +msgstr "命中統計數據存儲在服務器 Ushahidi 控制。啟用此選項,您將獲得直接打在你的管理面板的統計。通過禁用它,你將停止收集統計信息,將無法恢復,而這是關閉收集的流量統計。" + +#: tooltips.settings_site_copyright_statement +msgctxt "tooltips.settings_site_copyright_statement" +msgid "" +"Do others have the right to republish text, images, video and/or design " +"themes that you and your users create? Go to " +"https://creativecommons.org/choose/ if you are interested in specifying what" +" others are able to do with your work. And remember to be specific about " +"what elements of the site you are licensing!" +msgstr "其他人有没有權利重新发布您和你的用户创建的文本,圖像,視頻或設計的主題?如果您想知道其他人使用您的著作有哪些指定的許可,去https://creativecommons.org/choose/" + +#: tooltips.settings_site_email +msgctxt "tooltips.settings_site_email" +msgid "" +"This is the email address that will receive email reports and messages from " +"the contact form." +msgstr "這個電子郵件地址用來接收電子郵件報告和“聯繫我們”標籤頁的信息。" + +#: tooltips.settings_site_message +msgctxt "tooltips.settings_site_message" +msgid "" +"This is text that will appear above the map on the homepage. This is useful " +"for giving important information to visitors on the site. To remove the box," +" simply delete the message here." +msgstr "出現在主頁地圖上方的文字。對網站的訪問者,這是有用的重要信息。要刪除,只需刪除的這個文字。" + +#: tooltips.settings_site_name +msgctxt "tooltips.settings_site_name" +msgid "This is the name of the site that appears at the top of the main site." +msgstr "這是出現在主點頂端的網站的名稱。" + +#: tooltips.settings_site_submit_report_message +msgctxt "tooltips.settings_site_submit_report_message" +msgid "" +"This is a message that will show up on the submit report page. This is good " +"for disclaimers or further instructions for your visitors who are reporting." +msgstr "這是提交報告的頁面上,將顯示一條消息。這報告的免責聲明或進一步說明,這對您的訪問者來說非常友好。" + +#: tooltips.settings_site_tagline +msgctxt "tooltips.settings_site_tagline" +msgid "In a few words, explain what this site is about." +msgstr "於三言兩語,說明這個網站是什麼。" + +#: tooltips.settings_site_timezone +msgctxt "tooltips.settings_site_timezone" +msgid "" +"This is the timezone that your site will operate on. This has an impact on " +"any actions you have set up that utilize time and date, as well as the " +"default current time for reports on the front and back end of the site." +msgstr "這是您的網站運作上的時區。這對您已經設置了,使用時間和日期,以及前端和後端的網站上的報告的默認當前時間的任何行動的影響。" + +#: tooltips.settings_twitter_configuration +msgctxt "tooltips.settings_twitter_configuration" +msgid "Set the twitter hashtag that will be used on a tweet" +msgstr "設置推特(twitter)#标签" + +#: tooltips.feed_geolocation_user +msgctxt "tooltips.feed_geolocation_user" +msgid "" +"If you want to geocode your feed entries, grab a user http://geonames.org, " +"enable the free webservices and enter it here. Leave empty to disable this " +"function.

Beware of the the use limits!" +msgstr "如果想要將資料來源轉為地理座標,可以在 http://geonames.org 註冊一個帳號然後將網路服務資訊輸入這裡,空白表示停用這個功能。

需要注意使用次數限制。" diff --git a/application/i18n/po/po-zh_TW/ui_admin.po b/application/i18n/po/po-zh_TW/ui_admin.po new file mode 100644 index 0000000000..a7357e0865 --- /dev/null +++ b/application/i18n/po/po-zh_TW/ui_admin.po @@ -0,0 +1,1656 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2013-09-11 06:22+0000\n" +"PO-Revision-Date: 2013-09-11 06:17+0000\n" +"Last-Translator: ushbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_admin.access_denied_credentials +msgctxt "ui_admin.access_denied_credentials" +msgid "" +"Access denied. Either your credentials are not valid or your request has " +"been refused." +msgstr "讀取被拒絕,有可能是你的帳號資料已經無效,或是您的請求曾經被拒絕" + +#: ui_admin.access_denied_others +msgctxt "ui_admin.access_denied_others" +msgid "" +"Access denied. Your request has been understood, but denied due to access " +"limits like time. Try back later." +msgstr "讀取被拒絕,有可能是因為頻寬限制,請稍後再試" + +#: ui_admin.access_level +msgctxt "ui_admin.access_level" +msgid "Access Level" +msgstr "訪問級別" + +#: ui_admin.actions +msgctxt "ui_admin.actions" +msgid "Actions" +msgstr "動作" + +#: ui_admin.add_to_category +msgctxt "ui_admin.add_to_category" +msgid "Add to Category" +msgstr "新增到類別" + +#: ui_admin.added +msgctxt "ui_admin.added" +msgid "added" +msgstr "已新增" + +#: ui_admin.added_edited +msgctxt "ui_admin.added_edited" +msgid "added/edited" +msgstr "已新增/已編輯" + +#: ui_admin.addons +msgctxt "ui_admin.addons" +msgid "Addons" +msgstr "插件" + +#: ui_admin.admin_role +msgctxt "ui_admin.admin_role" +msgid "Admin" +msgstr "管理" + +#: ui_admin.alerts +msgctxt "ui_admin.alerts" +msgid "Alerts" +msgstr "提醒" + +#: ui_admin.alerts_received +msgctxt "ui_admin.alerts_received" +msgid "Alerts Received" +msgstr "收到的提醒" + +#: ui_admin.all +msgctxt "ui_admin.all" +msgid "All" +msgstr "" + +#: ui_admin.am +msgctxt "ui_admin.am" +msgid "AM" +msgstr "" + +#: ui_admin.anonymous +msgctxt "ui_admin.anonymous" +msgid "Anonymous" +msgstr "匿名者" + +#: ui_admin.anyone_role +msgctxt "ui_admin.anyone_role" +msgid "Anyone" +msgstr "訪問者" + +#: ui_admin.anywhere +msgctxt "ui_admin.anywhere" +msgid "Anywhere" +msgstr "未知地" + +#: ui_admin.api_banned +msgctxt "ui_admin.api_banned" +msgid "API Banned" +msgstr "API 禁止" + +#: ui_admin.api_logs +msgctxt "ui_admin.api_logs" +msgid "API Logs" +msgstr "API 日誌" + +#: ui_admin.api_settings +msgctxt "ui_admin.api_settings" +msgid "API Settings" +msgstr "API 設定" + +#: ui_admin.api_unban +msgctxt "ui_admin.api_unban" +msgid "UNBAN" +msgstr "取消禁止" + +#: ui_admin.api_unban_all +msgctxt "ui_admin.api_unban_all" +msgid "UNBAN ALL" +msgstr "全部取消禁止" + +#: ui_admin.approved +msgctxt "ui_admin.approved" +msgid "approved" +msgstr "已核准" + +#: ui_admin.approve_auto +msgctxt "ui_admin.approve_auto" +msgid "Auto Approve" +msgstr "自動核准" + +#: ui_admin.approve_manual +msgctxt "ui_admin.approve_manual" +msgid "Manually Approve" +msgstr "手動核准" + +#: ui_admin.archived +msgctxt "ui_admin.archived" +msgid "Archived" +msgstr "已存檔" + +#: ui_admin.are_you_sure_you_want_to +msgctxt "ui_admin.are_you_sure_you_want_to" +msgid "Are you sure you want to" +msgstr "您確定要" + +#: ui_admin.are_you_sure_you_want_to_delete_this_item +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_item" +msgid "Are you sure you want to delete this item?" +msgstr "您確定要刪除該項嗎?" + +#: ui_admin.are_you_sure_you_want_to_delete_this_photo +msgctxt "ui_admin.are_you_sure_you_want_to_delete_this_photo" +msgid "Are you sure you want to delete this photo?" +msgstr "您確定要刪除該照片嗎?" + +#: ui_admin.are_you_sure_you_want_to_switch_forms +msgctxt "ui_admin.are_you_sure_you_want_to_switch_forms" +msgid "Are you sure you want to switch forms?" +msgstr "您確定更換表格嗎?" + +#: ui_admin.assign +msgctxt "ui_admin.assign" +msgid "Assign" +msgstr "分配" + +#: ui_admin.assignments +msgctxt "ui_admin.assignments" +msgid "Assignments" +msgstr "任務" + +#: ui_admin.assign_badge +msgctxt "ui_admin.assign_badge" +msgid "Assign Badge" +msgstr "分配徽章" + +#: ui_admin.author +msgctxt "ui_admin.author" +msgid "Author" +msgstr "作者" + +#: ui_admin.author_email +msgctxt "ui_admin.author_email" +msgid "Author email" +msgstr "作者 Email" + +#: ui_admin.back +msgctxt "ui_admin.back" +msgid "Back" +msgstr "回去" + +#: ui_admin.banip_action +msgctxt "ui_admin.banip_action" +msgid "Ban IP" +msgstr "禁止 IP" + +#: ui_admin.between_times +msgctxt "ui_admin.between_times" +msgid "Between Times" +msgstr "起止時間" + +#: ui_admin.blocks +msgctxt "ui_admin.blocks" +msgid "Blocks" +msgstr "區塊" + +#: ui_admin.body +msgctxt "ui_admin.body" +msgid "Body" +msgstr "文件體" + +#: ui_admin.cancel +msgctxt "ui_admin.cancel" +msgid "Cancel" +msgstr "取消" + +#: ui_admin.categories +msgctxt "ui_admin.categories" +msgid "Categories" +msgstr "分類" + +#: ui_admin.chart_display_error +msgctxt "ui_admin.chart_display_error" +msgid "Error displaying chart" +msgstr "圖表顯示錯誤" + +#: ui_admin.check_message_valid +msgctxt "ui_admin.check_message_valid" +msgid "Please make sure your message is valid." +msgstr "請確認你的留言訊息正確" + +#: ui_admin.check_number +msgctxt "ui_admin.check_number" +msgid "Please make sure the number is valid." +msgstr "請確認你已輸入正確的號碼" + +#: ui_admin.check_sms_settings +msgctxt "ui_admin.check_sms_settings" +msgid "Please check your SMS settings!" +msgstr "請確認簡訊設定!" + +#: ui_admin.checkin_details +msgctxt "ui_admin.checkin_details" +msgid "Checkin Details" +msgstr "簽入詳情" + +#: ui_admin.checkins +msgctxt "ui_admin.checkins" +msgid "Checkins" +msgstr "簽入" + +#: ui_admin.cities_loaded +msgctxt "ui_admin.cities_loaded" +msgid "Cities loaded" +msgstr "已載入的城市" + +#: ui_admin.code +msgctxt "ui_admin.code" +msgid "code" +msgstr "程式" + +#: ui_admin.code_out_of_sync +msgctxt "ui_admin.code_out_of_sync" +msgid "Code version out of sync." +msgstr "程式本版不一致" + +#: ui_admin.color +msgctxt "ui_admin.color" +msgid "Color" +msgstr "顏色" + +#: ui_admin.comments +msgctxt "ui_admin.comments" +msgid "Comments" +msgstr "留言" + +#: ui_admin.confirmation_code +msgctxt "ui_admin.confirmation_code" +msgid "Your alerts confirmation code is: " +msgstr "你的通知確認碼為 " + +#: ui_admin.confirm_msg +msgctxt "ui_admin.confirm_msg" +msgid "The User Has Been" +msgstr "該使用者已經" + +#: ui_admin.count +msgctxt "ui_admin.count" +msgid "Count" +msgstr "計數" + +#: ui_admin.country_not_found +msgctxt "ui_admin.country_not_found" +msgid "Country Not Found" +msgstr "找不到這個國家" + +#: ui_admin.created_edited +msgctxt "ui_admin.created_edited" +msgid "created/edited" +msgstr "已新增/已編輯" + +#: ui_admin.create_report +msgctxt "ui_admin.create_report" +msgid "Create a Report" +msgstr "新增一個通報" + +#: ui_admin.critical_upgrade +msgctxt "ui_admin.critical_upgrade" +msgid "Critical Upgrade" +msgstr "重要的升級" + +#: ui_admin.csv +msgctxt "ui_admin.csv" +msgid "CSV" +msgstr "" + +#: ui_admin.currently_active +msgctxt "ui_admin.currently_active" +msgid "Currently Active" +msgstr "當前處於活動狀態" + +#: ui_admin.currently_inactive +msgctxt "ui_admin.currently_inactive" +msgid "Currently Inactive" +msgstr "當前處於非活動狀態" + +#: ui_admin.custom_forms_insufficient_permissions +msgctxt "ui_admin.custom_forms_insufficient_permissions" +msgid "" +"You don't have sufficient permissions to edit the following custom fields." +msgstr "您沒有有足夠的權限編輯以下的自定義字段。" + +#: ui_admin.daily +msgctxt "ui_admin.daily" +msgid "Daily" +msgstr "每天" + +#: ui_admin.dashboard +msgctxt "ui_admin.dashboard" +msgid "Dashboard" +msgstr "總覽" + +#: ui_admin.database +msgctxt "ui_admin.database" +msgid "database" +msgstr "資料庫" + +#: ui_admin.date_time +msgctxt "ui_admin.date_time" +msgid "Date & Time" +msgstr "日期& 時間" + +#: ui_admin.date_added +msgctxt "ui_admin.date_added" +msgid "Date Added" +msgstr "" + +#: ui_admin.date_modified +msgctxt "ui_admin.date_modified" +msgid "Date Modified" +msgstr "" + +#: ui_admin.days_of_the_week +msgctxt "ui_admin.days_of_the_week" +msgid "Days of the week" +msgstr "" + +#: ui_admin.db_out_of_sync +msgctxt "ui_admin.db_out_of_sync" +msgid "DB version out of sync." +msgstr "資料庫版本不一致" + +#: ui_admin.deleted +msgctxt "ui_admin.deleted" +msgid "deleted" +msgstr "已刪除" + +#: ui_admin.delete_action +msgctxt "ui_admin.delete_action" +msgid "Delete" +msgstr "刪除" + +#: ui_admin.delete_all +msgctxt "ui_admin.delete_all" +msgid "Delete all reports" +msgstr "" + +#: ui_admin.delete_badge +msgctxt "ui_admin.delete_badge" +msgid "Delete Badge" +msgstr "刪除徽章" + +#: ui_admin.demo +msgctxt "ui_admin.demo" +msgid "Demo" +msgstr "範例" + +#: ui_admin.description +msgctxt "ui_admin.description" +msgid "Description" +msgstr "描述" + +#: ui_admin.disabled +msgctxt "ui_admin.disabled" +msgid "Disabled" +msgstr "禁用" + +#: ui_admin.divider_start_field +msgctxt "ui_admin.divider_start_field" +msgid "Divider Start" +msgstr "分頻開始" + +#: ui_admin.divider_end_field +msgctxt "ui_admin.divider_end_field" +msgid "Divider End" +msgstr "分頻結束" + +#: ui_admin.divider_class +msgctxt "ui_admin.divider_class" +msgid "div class" +msgstr "" + +#: ui_admin.download_reports +msgctxt "ui_admin.download_reports" +msgid "Download Reports" +msgstr "下載通報資料" + +#: ui_admin.dropdown_choices +msgctxt "ui_admin.dropdown_choices" +msgid "Dropdown Choices" +msgstr "下拉選項" + +#: ui_admin.edited +msgctxt "ui_admin.edited" +msgid "EDITED" +msgstr "" + +#: ui_admin.edited_by +msgctxt "ui_admin.edited_by" +msgid "Edited By" +msgstr "" + +#: ui_admin.edit_action +msgctxt "ui_admin.edit_action" +msgid "Edit" +msgstr "編輯" + +#: ui_admin.edit_log +msgctxt "ui_admin.edit_log" +msgid "Edit Log" +msgstr "" + +#: ui_admin.email +msgctxt "ui_admin.email" +msgid "Email" +msgstr "" + +#: ui_admin.entire_collective +msgctxt "ui_admin.entire_collective" +msgid "Entire Collective" +msgstr "" + +#: ui_admin.error_geocoding +msgctxt "ui_admin.error_geocoding" +msgid "Error in geocoding! HTTP error" +msgstr "地理相關程式有錯誤! HTTP發生錯誤" + +#: ui_admin.error_imap +msgctxt "ui_admin.error_imap" +msgid "IMAP PHP Library is not installed" +msgstr "IMAP PHP 庫未安裝" + +#: ui_admin.error_twitter +msgctxt "ui_admin.error_twitter" +msgid "Incorrect Credentials" +msgstr "" + +#: ui_admin.error_msg +msgctxt "ui_admin.error_msg" +msgid "Error" +msgstr "錯誤" + +#: ui_admin.error_post_incident +msgctxt "ui_admin.error_post_incident" +msgid "Error, unable to post incident" +msgstr "錯誤,無法通報事件" + +#: ui_admin.every_six_hours +msgctxt "ui_admin.every_six_hours" +msgid "Every Six Hours" +msgstr "每六個小時" + +#: ui_admin.every_twelve_hours +msgctxt "ui_admin.every_twelve_hours" +msgid "Every Twelve Hours" +msgstr "每十二個小時" + +#: ui_admin.experimental +msgctxt "ui_admin.experimental" +msgid "Experimental" +msgstr "實驗性的" + +#: ui_admin.faqs +msgctxt "ui_admin.faqs" +msgid "FAQ's" +msgstr "問與答" + +#: ui_admin.feed +msgctxt "ui_admin.feed" +msgid "feed" +msgstr "" + +#: ui_admin.feedback +msgctxt "ui_admin.feedback" +msgid "Feedback" +msgstr "意見回饋" + +#: ui_admin.feeds +msgctxt "ui_admin.feeds" +msgid "feeds" +msgstr "" + +#: ui_admin.field_choices +msgctxt "ui_admin.field_choices" +msgid "List of Choices" +msgstr "選擇列表" + +#: ui_admin.field_default +msgctxt "ui_admin.field_default" +msgid "Default Value" +msgstr "預設值" + +#: ui_admin.field_datatype +msgctxt "ui_admin.field_datatype" +msgid "Data Type" +msgstr "數據類型" + +#: ui_admin.field_datatype_javascript +msgctxt "ui_admin.field_datatype_javascript" +msgid "Javascript" +msgstr "" + +#: ui_admin.field_datatype_markup +msgctxt "ui_admin.field_datatype_markup" +msgid "Markup" +msgstr "" + +#: ui_admin.field_datatype_numeric +msgctxt "ui_admin.field_datatype_numeric" +msgid "Numeric" +msgstr "數字框" + +#: ui_admin.field_datatype_text +msgctxt "ui_admin.field_datatype_text" +msgid "Free Text" +msgstr "文本框" + +#: ui_admin.field_height +msgctxt "ui_admin.field_height" +msgid "Height (In Rows)" +msgstr "欄高" + +#: ui_admin.field_hidden +msgctxt "ui_admin.field_hidden" +msgid "Hidden Field" +msgstr "隱藏字段" + +#: ui_admin.field_maxlength +msgctxt "ui_admin.field_maxlength" +msgid "Maximum Character Length" +msgstr "字元最大限制" + +#: ui_admin.field_name +msgctxt "ui_admin.field_name" +msgid "Field Name" +msgstr "欄位名稱" + +#: ui_admin.field_toggle +msgctxt "ui_admin.field_toggle" +msgid "Toggle" +msgstr "" + +#: ui_admin.field_toggle_no +msgctxt "ui_admin.field_toggle_no" +msgid "No" +msgstr "否" + +#: ui_admin.field_toggle_yes_close +msgctxt "ui_admin.field_toggle_yes_close" +msgid "Yes, Closed by default" +msgstr "是的,默認情況下關閉" + +#: ui_admin.field_toggle_yes_open +msgctxt "ui_admin.field_toggle_yes_open" +msgid "Yes, Open by default" +msgstr "是的,默認情況下打開" + +#: ui_admin.file_not_found_upload +msgctxt "ui_admin.file_not_found_upload" +msgid "Could not find uploaded file" +msgstr "找不到上傳的檔案" + +#: ui_admin.file_open_error +msgctxt "ui_admin.file_open_error" +msgid "Could not open file for reading" +msgstr "無法打開檔案" + +#: ui_admin.form_not_exists +msgctxt "ui_admin.form_not_exists" +msgid "That Form Does Not Exist!" +msgstr "這個格式不存在!" + +#: ui_admin.forum +msgctxt "ui_admin.forum" +msgid "Forum" +msgstr "論壇" + +#: ui_admin.free_text_field +msgctxt "ui_admin.free_text_field" +msgid "Text Area Field (Free Text)" +msgstr "純文字欄位 (Free Text)" + +#: ui_admin.date_field +msgctxt "ui_admin.date_field" +msgid "Date Field" +msgstr "日期框" + +#: ui_admin.radio_field +msgctxt "ui_admin.radio_field" +msgid "Radio Buttons Field" +msgstr "單選按鈕" + +#: ui_admin.checkbox_field +msgctxt "ui_admin.checkbox_field" +msgid "Checkboxes Field" +msgstr "多選框" + +#: ui_admin.dropdown_field +msgctxt "ui_admin.dropdown_field" +msgid "Dropdown Field" +msgstr "下拉框" + +#: ui_admin.from +msgctxt "ui_admin.from" +msgid "From" +msgstr "來自" + +#: ui_admin.from_date +msgctxt "ui_admin.from_date" +msgid "From" +msgstr "來自" + +#: ui_admin.geonames_timeout +msgctxt "ui_admin.geonames_timeout" +msgid "Geonames Timeout Error" +msgstr "地名超時錯誤" + +#: ui_admin.get_help +msgctxt "ui_admin.get_help" +msgid "Get Help" +msgstr "取得協助" + +#: ui_admin.get_more_themes +msgctxt "ui_admin.get_more_themes" +msgid "Get more themes" +msgstr "" + +#: ui_admin.get_more_plugins +msgctxt "ui_admin.get_more_plugins" +msgid "Get more plugins" +msgstr "" + +#: ui_admin.header_actions +msgctxt "ui_admin.header_actions" +msgid "Actions" +msgstr "動作" + +#: ui_admin.header_add_edit +msgctxt "ui_admin.header_add_edit" +msgid "Add/Edit" +msgstr "新增/編輯" + +#: ui_admin.header_email +msgctxt "ui_admin.header_email" +msgid "Email" +msgstr "" + +#: ui_admin.header_manage_users +msgctxt "ui_admin.header_manage_users" +msgid "Manage Users" +msgstr "管理使用者" + +#: ui_admin.header_role +msgctxt "ui_admin.header_role" +msgid "Role" +msgstr "角色" + +#: ui_admin.header_user +msgctxt "ui_admin.header_user" +msgid "User" +msgstr "使用者" + +#: ui_admin.help +msgctxt "ui_admin.help" +msgid "help" +msgstr "協助" + +#: ui_admin.hourly +msgctxt "ui_admin.hourly" +msgid "Hourly" +msgstr "每小時" + +#: ui_admin.incident_feed +msgctxt "ui_admin.incident_feed" +msgid "Incident feed for" +msgstr "" + +#: ui_admin.installer_info +msgctxt "ui_admin.installer_info" +msgid "" +"The installer folder still exists. Delete the installer folder. It is a " +"potential security vulnerability." +msgstr "" + +#: ui_admin.instance +msgctxt "ui_admin.instance" +msgid "Instance" +msgstr "" + +#: ui_admin.instances +msgctxt "ui_admin.instances" +msgid "Instances" +msgstr "" + +#: ui_admin.instance_details +msgctxt "ui_admin.instance_details" +msgid "Instance Details" +msgstr "" + +#: ui_admin.invalid_parameter +msgctxt "ui_admin.invalid_parameter" +msgid "Invalid Parameter" +msgstr "" + +#: ui_admin.ip_address +msgctxt "ui_admin.ip_address" +msgid "IP Address" +msgstr "IP 位置" + +#: ui_admin.is_date +msgctxt "ui_admin.is_date" +msgid "Is this a Date Field?" +msgstr "請確認為正確日期格式" + +#: ui_admin.ispublic_visible +msgctxt "ui_admin.ispublic_visible" +msgid "Who Can View Answers" +msgstr "誰可以查看解答?" + +#: ui_admin.ispublic_submit +msgctxt "ui_admin.ispublic_submit" +msgid "Who Can Submit Answers" +msgstr "誰可以提交解答" + +#: ui_admin.keyword +msgctxt "ui_admin.keyword" +msgid "Keyword" +msgstr "關鍵字" + +#: ui_admin.keywords +msgctxt "ui_admin.keywords" +msgid "Keywords" +msgstr "關鍵字" + +#: ui_admin.label_email +msgctxt "ui_admin.label_email" +msgid "Email Address:" +msgstr "Email 信箱:" + +#: ui_admin.label_full_name +msgctxt "ui_admin.label_full_name" +msgid "Full Name:" +msgstr "全名:" + +#: ui_admin.label_password +msgctxt "ui_admin.label_password" +msgid "Password:" +msgstr "密碼:" + +#: ui_admin.label_role +msgctxt "ui_admin.label_role" +msgid "Role:" +msgstr "角色:" + +#: ui_admin.label_username +msgctxt "ui_admin.label_username" +msgid "Username:" +msgstr "使用者名稱:" + +#: ui_admin.layers +msgctxt "ui_admin.layers" +msgid "Layers" +msgstr "圖層" + +#: ui_admin.login_role +msgctxt "ui_admin.login_role" +msgid "Moderator" +msgstr "審核者" + +#: ui_admin.logout +msgctxt "ui_admin.logout" +msgid "Logout" +msgstr "登出" + +#: ui_admin.logs +msgctxt "ui_admin.logs" +msgid "Logs" +msgstr "" + +#: ui_admin.manage +msgctxt "ui_admin.manage" +msgid "Manage" +msgstr "管理" + +#: ui_admin.manage_roles +msgctxt "ui_admin.manage_roles" +msgid "Manage Roles & Permissions" +msgstr "管理角色與權限" + +#: ui_admin.manage_users +msgctxt "ui_admin.manage_users" +msgid "View Users" +msgstr "查看使用者" + +#: ui_admin.manage_users_edit +msgctxt "ui_admin.manage_users_edit" +msgid "Add/Edit Users" +msgstr "新增/編輯 使用者" + +#: ui_admin.manage_public_listing +msgctxt "ui_admin.manage_public_listing" +msgid "Manage Your Public Listing" +msgstr "" + +#: ui_admin.mark_as +msgctxt "ui_admin.mark_as" +msgid "Mark As" +msgstr "標註為" + +#: ui_admin.marked_as_not_spam +msgctxt "ui_admin.marked_as_not_spam" +msgid "marked as not spam" +msgstr "標註為非垃圾訊息" + +#: ui_admin.marked_as_spam +msgctxt "ui_admin.marked_as_spam" +msgid "marked as spam" +msgstr "標註為垃圾訊息" + +#: ui_admin.match_no_documents +msgctxt "ui_admin.match_no_documents" +msgid "did not match any documents" +msgstr "未符合任何文件" + +#: ui_admin.message +msgctxt "ui_admin.message" +msgid "Message" +msgstr "訊息" + +#: ui_admin.messages +msgctxt "ui_admin.messages" +msgid "Messages" +msgstr "訊息" + +#: ui_admin.messages_laconica +msgctxt "ui_admin.messages_laconica" +msgid "Laconica Messages" +msgstr "" + +#: ui_admin.messages_twitter +msgctxt "ui_admin.messages_twitter" +msgid "Twitter Messages" +msgstr "Twitter 訊息" + +#: ui_admin.message_sent +msgctxt "ui_admin.message_sent" +msgid "Your message has been sent!" +msgstr "你的訊息已經送出!" + +#: ui_admin.mhi +msgctxt "ui_admin.mhi" +msgid "MHI" +msgstr "" + +#: ui_admin.minute +msgctxt "ui_admin.minute" +msgid "Minute" +msgstr "" + +#: ui_admin.minutes +msgctxt "ui_admin.minutes" +msgid "Minutes" +msgstr "" + +#: ui_admin.missing_parameter +msgctxt "ui_admin.missing_parameter" +msgid "Missing Parameter" +msgstr "" + +#: ui_admin.moderator +msgctxt "ui_admin.moderator" +msgid "Moderator" +msgstr "" + +#: ui_admin.modified +msgctxt "ui_admin.modified" +msgid "modified" +msgstr "" + +#: ui_admin.modify_timezone +msgctxt "ui_admin.modify_timezone" +msgid "Modify Timezone Setting" +msgstr "修改時區設置" + +#: ui_admin.move_down_action +msgctxt "ui_admin.move_down_action" +msgid "move down" +msgstr "往下移" + +#: ui_admin.move_up_action +msgctxt "ui_admin.move_up_action" +msgid "move up" +msgstr "往上移" + +#: ui_admin.multiple_hosted_instances +msgctxt "ui_admin.multiple_hosted_instances" +msgid "Multiple Hosted Instances" +msgstr "多個託管實例" + +#: ui_admin.my_alerts +msgctxt "ui_admin.my_alerts" +msgid "My Alerts" +msgstr "我的快訊" + +#: ui_admin.my_checkins +msgctxt "ui_admin.my_checkins" +msgid "My Checkins" +msgstr "我的簽入" + +#: ui_admin.my_profile +msgctxt "ui_admin.my_profile" +msgid "My Profile" +msgstr "我的個人資料" + +#: ui_admin.my_reports +msgctxt "ui_admin.my_reports" +msgid "My Reports" +msgstr "我的通報" + +#: ui_admin.my_votes +msgctxt "ui_admin.my_votes" +msgid "Votes Cast" +msgstr "投票數" + +#: ui_admin.my_votes_up +msgctxt "ui_admin.my_votes_up" +msgid "Positive" +msgstr "肯定" + +#: ui_admin.my_votes_down +msgctxt "ui_admin.my_votes_down" +msgid "Negative" +msgstr "否定" + +#: ui_admin.name +msgctxt "ui_admin.name" +msgid "Name" +msgstr "" + +#: ui_admin.new_alert +msgctxt "ui_admin.new_alert" +msgid "Create New Alert" +msgstr "新增通知" + +#: ui_admin.new_private +msgctxt "ui_admin.new_private" +msgid "Create New Message" +msgstr "新增訊息" + +#: ui_admin.new_password +msgctxt "ui_admin.new_password" +msgid "New Password" +msgstr "新密碼" + +#: ui_admin.no +msgctxt "ui_admin.no" +msgid "No" +msgstr "" + +#: ui_admin.none_category_explanation +msgctxt "ui_admin.none_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used to hold reports left without" +" categories(uncategorized reports) as a result of category deletion." +msgstr "這是一個特殊的類別,將不會顯示在用戶提交報告的頁面。這是用來存放作為刪除的沒有分類(未歸類報告)的報告。" + +#: ui_admin.notification +msgctxt "ui_admin.notification" +msgid "Notification" +msgstr "通告" + +#: ui_admin.not_case_sensitive +msgctxt "ui_admin.not_case_sensitive" +msgid "This is not case sensitive." +msgstr "不區分大小寫" + +#: ui_admin.not_found +msgctxt "ui_admin.not_found" +msgid "Not Found" +msgstr "找不到相關資訊" + +#: ui_admin.no_data +msgctxt "ui_admin.no_data" +msgid "No data. There are no results to show." +msgstr "沒有數據,沒有可顯示的結果。" + +#: ui_admin.no_error +msgctxt "ui_admin.no_error" +msgid "No Error" +msgstr "沒有錯誤" + +#: ui_admin.no_result_display_msg +msgctxt "ui_admin.no_result_display_msg" +msgid "No Results To Display!" +msgstr "沒有結果!" + +#: ui_admin.of +msgctxt "ui_admin.of" +msgid "of" +msgstr "" + +#: ui_admin.on_specific_count +msgctxt "ui_admin.on_specific_count" +msgid "On Specific Count" +msgstr "" + +#: ui_admin.openids +msgctxt "ui_admin.openids" +msgid "OpenID's" +msgstr "" + +#: ui_admin.page +msgctxt "ui_admin.page" +msgid "page" +msgstr "頁" + +#: ui_admin.pages +msgctxt "ui_admin.pages" +msgid "pages" +msgstr "頁" + +#: ui_admin.page_not_found +msgctxt "ui_admin.page_not_found" +msgid "Page Not Found" +msgstr "找不到網頁" + +#: ui_admin.page_not_found_message_with_contact +msgctxt "ui_admin.page_not_found_message_with_contact" +msgid "" +"Sorry, the page you are trying to view is not here.

Did you follow" +" a link from somewhere else on our site?
If you reached this " +"page from another part of our site, please contact us so " +"that we can correct our mistake.

Did you follow a link from " +"another site?
Links from other sites can sometimes be " +"outdated or misspelled. Tell us where you came from and " +"we can try to contact the other site in order to fix the " +"problem.

Did you type the URL?
You may have " +"typed the address (URL) incorrectly. Check to make sure you have got the " +"exact right spelling, capitalization, etc.

" +msgstr "" + +#: ui_admin.page_not_found_message +msgctxt "ui_admin.page_not_found_message" +msgid "Sorry, the page you are trying to view is not here." +msgstr "" + +#: ui_admin.parameters_used +msgctxt "ui_admin.parameters_used" +msgid "Parameters Used" +msgstr "" + +#: ui_admin.password +msgctxt "ui_admin.password" +msgid "Password" +msgstr "密碼" + +#: ui_admin.password_reset +msgctxt "ui_admin.password_reset" +msgid "Password Reset" +msgstr "重設密碼" + +#: ui_admin.password_reset_message_line_1 +msgctxt "ui_admin.password_reset_message_line_1" +msgid "Dear" +msgstr "" + +#: ui_admin.password_reset_message_line_2 +msgctxt "ui_admin.password_reset_message_line_2" +msgid "We received a request to reset the password for" +msgstr "我們收到一個重設密碼的需求for" + +#: ui_admin.password_reset_message_line_3 +msgctxt "ui_admin.password_reset_message_line_3" +msgid "" +"To change your password, please click on the link below (or copy and paste " +"it into your browser)." +msgstr "欲修改密碼,請點選以下連結 (或複製以下連結至瀏覽器)." + +#: ui_admin.password_reset_message_line_4 +msgctxt "ui_admin.password_reset_message_line_4" +msgid "" +"As you requested, your password has now been reset. Your new details are as " +"follows" +msgstr "你的密碼已經重設。詳細資訊如下:" + +#: ui_admin.password_reset_subject +msgctxt "ui_admin.password_reset_subject" +msgid "Ushahidi password reset" +msgstr "重設 Ushahidi 密碼" + +#: ui_admin.phone +msgctxt "ui_admin.phone" +msgid "Phone" +msgstr "電話" + +#: ui_admin.please_select +msgctxt "ui_admin.please_select" +msgid "Please Select" +msgstr "請選擇" + +#: ui_admin.pm +msgctxt "ui_admin.pm" +msgid "PM" +msgstr "" + +#: ui_admin.post_method_not_used +msgctxt "ui_admin.post_method_not_used" +msgid "Data was not sent by post method" +msgstr "數據未能以POST方式送出" + +#: ui_admin.preview +msgctxt "ui_admin.preview" +msgid "Preview" +msgstr "預覽" + +#: ui_admin.private_message +msgctxt "ui_admin.private_message" +msgid "Message" +msgstr "訊息" + +#: ui_admin.private_messages +msgctxt "ui_admin.private_messages" +msgid "Private Messages" +msgstr "私人訊息" + +#: ui_admin.private_sent +msgctxt "ui_admin.private_sent" +msgid "Private Message Sent" +msgstr "發送私人訊息" + +#: ui_admin.private_subject +msgctxt "ui_admin.private_subject" +msgid "Subject" +msgstr "標題" + +#: ui_admin.private_to +msgctxt "ui_admin.private_to" +msgid "To" +msgstr "接收人" + +#: ui_admin.public_listing +msgctxt "ui_admin.public_listing" +msgid "Public Listing" +msgstr "" + +#: ui_admin.qualifiers +msgctxt "ui_admin.qualifiers" +msgid "Qualifiers" +msgstr "限定條件" + +#: ui_admin.read +msgctxt "ui_admin.read" +msgid "read" +msgstr "讀取" + +#: ui_admin.relevance +msgctxt "ui_admin.relevance" +msgid "Relevance" +msgstr "符合程度" + +#: ui_admin.report_title +msgctxt "ui_admin.report_title" +msgid "Report Title" +msgstr "通報標題" + +#: ui_admin.report_date +msgctxt "ui_admin.report_date" +msgid "Report Date" +msgstr "" + +#: ui_admin.reporters +msgctxt "ui_admin.reporters" +msgid "Reporters" +msgstr "通報者" + +#: ui_admin.reporter_levels +msgctxt "ui_admin.reporter_levels" +msgid "Reporter Levels" +msgstr "通報者層級" + +#: ui_admin.reports +msgctxt "ui_admin.reports" +msgid "Reports" +msgstr "通報事件" + +#: ui_admin.reputation +msgctxt "ui_admin.reputation" +msgid "Reputation Score" +msgstr "信譽分數" + +#: ui_admin.required +msgctxt "ui_admin.required" +msgid "Required" +msgstr "必填" + +#: ui_admin.reset +msgctxt "ui_admin.reset" +msgid "Reset" +msgstr "重設" + +#: ui_admin.response +msgctxt "ui_admin.response" +msgid "Response" +msgstr "回應" + +#: ui_admin.results +msgctxt "ui_admin.results" +msgid "Results" +msgstr "結果" + +#: ui_admin.revoke +msgctxt "ui_admin.revoke" +msgid "Revoke" +msgstr "撤銷" + +#: ui_admin.riverid_exists_admin +msgctxt "ui_admin.riverid_exists_admin" +msgid "" +"This email already has an account managed by CrowdmapID. The user will need " +"to use their existing Crowdmap password to login." +msgstr "" + +#: ui_admin.save_settings +msgctxt "ui_admin.save_settings" +msgid "Save Settings" +msgstr "保存設定" + +#: ui_admin.search +msgctxt "ui_admin.search" +msgid "Search" +msgstr "查詢" + +#: ui_admin.search_reports +msgctxt "ui_admin.search_reports" +msgid "Search Reports" +msgstr "" + +#: ui_admin.searching_for +msgctxt "ui_admin.searching_for" +msgid "searching for" +msgstr "查詢for" + +#: ui_admin.security_info_encryption_key +msgctxt "ui_admin.security_info_encryption_key" +msgid "" +"The encryption key is still set to the default value. This is insecure and " +"must be changed." +msgstr "加密密鑰仍設置為默認值,這是不安全的,必須改變。" + +#: ui_admin.security_info_https +msgctxt "ui_admin.security_info_https" +msgid "" +"This site being served over HTTP. This should be set to HTTPS for increased " +"security." +msgstr "本網站通過HTTP提供服務。應設置為HTTPS以提高安全性。" + +#: ui_admin.security_info_instructions +msgctxt "ui_admin.security_info_instructions" +msgid "Instructions are available on the wiki: " +msgstr "維基(Wiki)說明: " + +#: ui_admin.select_download_format +msgctxt "ui_admin.select_download_format" +msgid "Select your desired reports download format:-" +msgstr "" + +#: ui_admin.select_field_type +msgctxt "ui_admin.select_field_type" +msgid "--- Select A Field Type ---" +msgstr "--- 選擇欄位形式 ---" + +#: ui_admin.select_item +msgctxt "ui_admin.select_item" +msgid "Please select an item" +msgstr "請選擇一個品項" + +#: ui_admin.select_trigger_before_response +msgctxt "ui_admin.select_trigger_before_response" +msgid "You must select a Trigger before you can select a Response." +msgstr "" + +#: ui_admin.select_trigger_before_qualifiers +msgctxt "ui_admin.select_trigger_before_qualifiers" +msgid "You must select a Trigger before you can define Qualifiers." +msgstr "" + +#: ui_admin.sender +msgctxt "ui_admin.sender" +msgid "Sender" +msgstr "寄送者" + +#: ui_admin.send_to +msgctxt "ui_admin.send_to" +msgid "Send To" +msgstr "接受者" + +#: ui_admin.sent_from_website +msgctxt "ui_admin.sent_from_website" +msgid "This message was sent from your website at " +msgstr "這則訊息被送出,由你的網站 " + +#: ui_admin.server_time +msgctxt "ui_admin.server_time" +msgid "Server Time" +msgstr "服務器時間" + +#: ui_admin.settings +msgctxt "ui_admin.settings" +msgid "Settings" +msgstr "設定" + +#: ui_admin.showing_page +msgctxt "ui_admin.showing_page" +msgid "Showing page" +msgstr "顯示頁面" + +#: ui_admin.showing_results +msgctxt "ui_admin.showing_results" +msgid "Showing results" +msgstr "顯示結果" + +#: ui_admin.shown +msgctxt "ui_admin.shown" +msgid "shown" +msgstr "" + +#: ui_admin.special_category +msgctxt "ui_admin.special_category" +msgid "Special Category" +msgstr "特殊分類" + +#: ui_admin.special_category_explanation +msgctxt "ui_admin.special_category_explanation" +msgid "" +"This is a special category that will not show up on the report submission " +"form for users submitting reports. This is used in conjunction with the " +"\"Trusted Reporters\" feature." +msgstr "這是一個特殊分類,將不會在用戶提交的報告表單中顯示。該分類需與“可信的報告者”一起使用。" + +#: ui_admin.specific_area +msgctxt "ui_admin.specific_area" +msgid "Specific Area" +msgstr "特別區域" + +#: ui_admin.state +msgctxt "ui_admin.state" +msgid "State" +msgstr "" + +#: ui_admin.statistics +msgctxt "ui_admin.statistics" +msgid "Statistics" +msgstr "統計" + +#: ui_admin.stats +msgctxt "ui_admin.stats" +msgid "Stats" +msgstr "統計" + +#: ui_admin.stats_collection_error +msgctxt "ui_admin.stats_collection_error" +msgid "Stat collection failed! Please try again later." +msgstr "Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!" + +#: ui_admin.stats_collection_error_short +msgctxt "ui_admin.stats_collection_error_short" +msgid "Stat Collection Failed!" +msgstr "" + +#: ui_admin.specific_days +msgctxt "ui_admin.specific_days" +msgid "Specific Days" +msgstr "特殊的日子" + +#: ui_admin.subject +msgctxt "ui_admin.subject" +msgid "Subject" +msgstr "主題" + +#: ui_admin.superadmin_role +msgctxt "ui_admin.superadmin_role" +msgid "Super Admin" +msgstr "超級管理者" + +#: ui_admin.task_performed +msgctxt "ui_admin.task_performed" +msgid "Task Performed" +msgstr "任務已執行" + +#: ui_admin.text_field +msgctxt "ui_admin.text_field" +msgid "Text Field" +msgstr "純文字欄位" + +#: ui_admin.theme_name +msgctxt "ui_admin.theme_name" +msgid "Name" +msgstr "姓名" + +#: ui_admin.title +msgctxt "ui_admin.title" +msgid "Manage Users" +msgstr "管理使用者" + +#: ui_admin.timeout +msgctxt "ui_admin.timeout" +msgid "Timeout Error" +msgstr "" + +#: ui_admin.to +msgctxt "ui_admin.to" +msgid "to" +msgstr "" + +#: ui_admin.total_records +msgctxt "ui_admin.total_records" +msgid "Total Records" +msgstr "全部紀錄" + +#: ui_admin.to_date +msgctxt "ui_admin.to_date" +msgid "to" +msgstr "" + +#: ui_admin.translate_reports +msgctxt "ui_admin.translate_reports" +msgid "Translate Reports" +msgstr "翻譯報告" + +#: ui_admin.trigger +msgctxt "ui_admin.trigger" +msgid "Trigger" +msgstr "觸發器" + +#: ui_admin.triggering_user +msgctxt "ui_admin.triggering_user" +msgid "Triggering User" +msgstr "觸發用戶" + +#: ui_admin.triggers +msgctxt "ui_admin.triggers" +msgid "Triggers" +msgstr "觸發器" + +#: ui_admin.unapproved +msgctxt "ui_admin.unapproved" +msgid "unapproved" +msgstr "未核准" + +#: ui_admin.unknown +msgctxt "ui_admin.unknown" +msgid "Unknown" +msgstr "未知" + +#: ui_admin.unknown_failure +msgctxt "ui_admin.unknown_failure" +msgid "Unknown Failure" +msgstr "未知的錯誤" + +#: ui_admin.unread +msgctxt "ui_admin.unread" +msgid "unread" +msgstr "未讀取" + +#: ui_admin.unsubscribe_message +msgctxt "ui_admin.unsubscribe_message" +msgid "You will no longer receive alerts from" +msgstr "您將不再接收警示,從" + +#: ui_admin.update_link +msgctxt "ui_admin.update_link" +msgid " Click here to upgrade now" +msgstr " 點選這裡以升級" + +#: ui_admin.upgrade_ushahidi +msgctxt "ui_admin.upgrade_ushahidi" +msgid "Upgrade Ushahidi" +msgstr "升級 Ushahidi" + +#: ui_admin.upgrade_ushahidi_status +msgctxt "ui_admin.upgrade_ushahidi_status" +msgid "Upgrade Ushahidi Status" +msgstr "升級 Ushahidi 狀態" + +#: ui_admin.upload_reports +msgctxt "ui_admin.upload_reports" +msgid "Upload Reports" +msgstr "上傳報告" + +#: ui_admin.user +msgctxt "ui_admin.user" +msgid "User" +msgstr "" + +#: ui_admin.users +msgctxt "ui_admin.users" +msgid "Users" +msgstr "使用者" + +#: ui_admin.ushahidi +msgctxt "ui_admin.ushahidi" +msgid "Ushahidi" +msgstr "" + +#: ui_admin.verified_unverified +msgctxt "ui_admin.verified_unverified" +msgid "Verified/Unverified" +msgstr "已驗證/未驗證" + +#: ui_admin.verify_unverify +msgctxt "ui_admin.verify_unverify" +msgid "Verify/Unverify" +msgstr "確認/取消 驗證" + +#: ui_admin.version +msgctxt "ui_admin.version" +msgid "Version" +msgstr "版本" + +#: ui_admin.version_available +msgctxt "ui_admin.version_available" +msgid " is available for upgrade." +msgstr " 已可升級." + +#: ui_admin.video_encoding +msgctxt "ui_admin.video_encoding" +msgid "Video Encoding" +msgstr "視頻編碼" + +#: ui_admin.view_private +msgctxt "ui_admin.view_private" +msgid "Private Messages" +msgstr "私人訊息" + +#: ui_admin.view_site +msgctxt "ui_admin.view_site" +msgid "View Site" +msgstr "瀏覽網站" + +#: ui_admin.view_report +msgctxt "ui_admin.view_report" +msgid "View Report" +msgstr "查看通報" + +#: ui_admin.welcome +msgctxt "ui_admin.welcome" +msgid "Welcome, " +msgstr "歡迎, " + +#: ui_admin.wiki +msgctxt "ui_admin.wiki" +msgid "Wiki" +msgstr "維基 Wiki" + +#: ui_admin.xml +msgctxt "ui_admin.xml" +msgid "XML" +msgstr "" + +#: ui_admin.yes +msgctxt "ui_admin.yes" +msgid "Yes" +msgstr "是" + +#: ui_admin.your_search_for +msgctxt "ui_admin.your_search_for" +msgid "Your search for" +msgstr "您的搜索" + +#: ui_admin.delete_all_instructions +msgctxt "ui_admin.delete_all_instructions" +msgid "" +"Clicking the button below will delete ALL reports on the database. You " +"should use this with caution as this operation cannot be undone." +msgstr "" + +#: ui_admin.delete_all_backup +msgctxt "ui_admin.delete_all_backup" +msgid "We recommend you backup your database before proceeding" +msgstr "" + +#: ui_admin.delete_all_button +msgctxt "ui_admin.delete_all_button" +msgid "I'm sure I want to delete all %s report(s) from the database." +msgstr "" + +#: ui_admin.delete_all_confirm +msgctxt "ui_admin.delete_all_confirm" +msgid "Are you sure you want to delete all reports?" +msgstr "" + +#: ui_admin.delete_all_no_reports +msgctxt "ui_admin.delete_all_no_reports" +msgid "There are no reports to be deleted." +msgstr "" + +#: ui_admin.user_no_logins +msgctxt "ui_admin.user_no_logins" +msgid "Number of logins" +msgstr "" + +#: ui_admin.user_last_login +msgctxt "ui_admin.user_last_login" +msgid "Last login" +msgstr "" + +#: ui_admin.user_confirmed_account +msgctxt "ui_admin.user_confirmed_account" +msgid "Confirmed account?" +msgstr "" diff --git a/application/i18n/po/po-zh_TW/ui_main.po b/application/i18n/po/po-zh_TW/ui_main.po new file mode 100644 index 0000000000..2e31754b8f --- /dev/null +++ b/application/i18n/po/po-zh_TW/ui_main.po @@ -0,0 +1,3170 @@ +# +# Translators: +# Jude Lin , 2014 +# Pomin Wu , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2014-09-27 05:08+0000\n" +"PO-Revision-Date: 2015-04-30 04:43+0000\n" +"Last-Translator: Pomin Wu \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: ui_main.about +msgctxt "ui_main.about" +msgid "About " +msgstr "關於" + +#: ui_main.access +msgctxt "ui_main.access" +msgid "Access" +msgstr "連線" + +#: ui_main.access_limits +msgctxt "ui_main.access_limits" +msgid "Access Limits" +msgstr "連線限制" + +#: ui_main.account_name +msgctxt "ui_main.account_name" +msgid "Account Name" +msgstr "帳戶名稱" + +#: ui_main.actions +msgctxt "ui_main.actions" +msgid "Actions" +msgstr "動作" + +#: ui_main.action_confirm +msgctxt "ui_main.action_confirm" +msgid "This action cannot be undone. Are you sure you want to continue?" +msgstr "這個動作無法恢復,請確認是否繼續?" + +#: ui_main.activate +msgctxt "ui_main.activate" +msgid "Activate" +msgstr "啟動" + +#: ui_main.active +msgctxt "ui_main.active" +msgid "Active" +msgstr "開啟中" + +#: ui_main.add +msgctxt "ui_main.add" +msgid "Add" +msgstr "新增" + +#: ui_main.added_by +msgctxt "ui_main.added_by" +msgid "Added By" +msgstr "新增人員為" + +#: ui_main.additional_data +msgctxt "ui_main.additional_data" +msgid "Additional Data" +msgstr "附加數據" + +#: ui_main.additional_reports +msgctxt "ui_main.additional_reports" +msgid "Additional Reports" +msgstr "其他說明內容" + +#: ui_main.add_edit +msgctxt "ui_main.add_edit" +msgid "Add/Edit" +msgstr "新增/編輯" + +#: ui_main.add_field +msgctxt "ui_main.add_field" +msgid "Add a Field" +msgstr "新增一個編輯域" + +#: ui_main.add_language +msgctxt "ui_main.add_language" +msgid "Add Language" +msgstr "新增語言" + +#: ui_main.add_new +msgctxt "ui_main.add_new" +msgid "Add New" +msgstr "新增" + +#: ui_main.add_new_category +msgctxt "ui_main.add_new_category" +msgid "Add New Category" +msgstr "新增類別" + +#: ui_main.add_translation +msgctxt "ui_main.add_translation" +msgid "Add Translation" +msgstr "新增翻譯" + +#: ui_main.admin +msgctxt "ui_main.admin" +msgid "Administration" +msgstr "管理者" + +#: ui_main.alerts +msgctxt "ui_main.alerts" +msgid "Get Alerts" +msgstr "設定事件通知" + +#: ui_main.alerts_alert_me +msgctxt "ui_main.alerts_alert_me" +msgid "Alert me if a report is filed in, or around:" +msgstr "當有通報事件發生在我所選擇的地點時,請通知我:" + +#: ui_main.alerts_btn_send +msgctxt "ui_main.alerts_btn_send" +msgid "Save My Alert" +msgstr "儲存我的事件通知設定" + +#: ui_main.alerts_email +msgctxt "ui_main.alerts_email" +msgid "Email address:" +msgstr "電子信箱:" + +#: ui_main.alerts_enter_email +msgctxt "ui_main.alerts_enter_email" +msgid "enter email address" +msgstr "輸入電子信箱" + +#: ui_main.alerts_enter_mobile +msgctxt "ui_main.alerts_enter_mobile" +msgid "enter mobile number with country code" +msgstr "請輸入含有國碼的手機號碼" + +#: ui_main.alerts_get +msgctxt "ui_main.alerts_get" +msgid "Get Alerts" +msgstr "設定事件通知" + +#: ui_main.alert_has_been +msgctxt "ui_main.alert_has_been" +msgid "Alert has been" +msgstr "" + +#: ui_main.alerts_mobile_phone +msgctxt "ui_main.alerts_mobile_phone" +msgid "Mobile phone:" +msgstr "行動電話:" + +#: ui_main.alerts_place_spot +msgctxt "ui_main.alerts_place_spot" +msgid "" +"Or place a spot on the map below, and we will alert you when a report is " +"submitted within 20 kilometers." +msgstr "或是在地圖中選擇一個中心點,當通報事件在半徑20公里內時,你就會收到通知" + +#: ui_main.alerts_place_spot2 +msgctxt "ui_main.alerts_place_spot2" +msgid "" +"If you can't find your location, please click on the map to pinpoint the " +"correct location." +msgstr "如果你無法確認地點名稱,請直接在地圖上點選正確位置。" + +#: ui_main.alerts_rss +msgctxt "ui_main.alerts_rss" +msgid "RSS Feeds (copy the URL below)" +msgstr "RSS Feeds (複製下列 url)" + +#: ui_main.alerts_select_city +msgctxt "ui_main.alerts_select_city" +msgid "Select a city" +msgstr "選擇城市" + +#: ui_main.alerts_step1_select_city +msgctxt "ui_main.alerts_step1_select_city" +msgid "Step 1: Select your city or location:" +msgstr "1. 選擇通報事件城市或地點:" + +#: ui_main.alerts_step2_send_alerts +msgctxt "ui_main.alerts_step2_send_alerts" +msgid "Step 2: Send alerts to my:" +msgstr "2. 將通報事件訊息送到我的:" + +#: ui_main.alerts_step3_select_catgories +msgctxt "ui_main.alerts_step3_select_catgories" +msgid "Step 3 (Optional): Select Categories" +msgstr "步驟 3 (Optional): 選擇分類" + +#: ui_main.alert_confirm_previous +msgctxt "ui_main.alert_confirm_previous" +msgid "Confirm A Previous Alert Request" +msgstr "確認之前的事件通知設定" + +#: ui_main.alert_saved +msgctxt "ui_main.alert_saved" +msgid "Your Alert Has Been Saved!" +msgstr "你的事件通知設定已經被儲存!" + +#: ui_main.all +msgctxt "ui_main.all" +msgid "All" +msgstr "全部" + +#: ui_main.allowed +msgctxt "ui_main.allowed" +msgid "Allowed" +msgstr "允許" + +#: ui_main.allowed_tags +msgctxt "ui_main.allowed_tags" +msgid "Allowed HTML tags: \"%s\"." +msgstr "容許使用 HTML 標籤 \"%s\"。" + +#: ui_main.allowed_iframes +msgctxt "ui_main.allowed_iframes" +msgid "Iframes are only allowed from: %s." +msgstr "只容許來自 %s 的 Iframe 標籤。" + +#: ui_main.all_categories +msgctxt "ui_main.all_categories" +msgid "All Categories" +msgstr "全部分類" + +#: ui_main.all_time +msgctxt "ui_main.all_time" +msgid "All Time" +msgstr "所有時間" + +#: ui_main.and +msgctxt "ui_main.and" +msgid "and" +msgstr "與" + +#: ui_main.api +msgctxt "ui_main.api" +msgid "API" +msgstr "API" + +#: ui_main.approve +msgctxt "ui_main.approve" +msgid "Approve" +msgstr "核准" + +#: ui_main.approved +msgctxt "ui_main.approved" +msgid "Approved" +msgstr "已核准" + +#: ui_main.approved_reports +msgctxt "ui_main.approved_reports" +msgid "Approved Reports" +msgstr "已核准的通報" + +#: ui_main.approve_this_report +msgctxt "ui_main.approve_this_report" +msgid "Approve this Report" +msgstr "核准此通報" + +#: ui_main.approximate +msgctxt "ui_main.approximate" +msgid "Approximate" +msgstr "大約" + +#: ui_main.archive +msgctxt "ui_main.archive" +msgid "Archive" +msgstr "檔案" + +#: ui_main.archived +msgctxt "ui_main.archived" +msgid "Archived" +msgstr "已歸檔" + +#: ui_main.ascending +msgctxt "ui_main.ascending" +msgid "Ascending" +msgstr "" + +#: ui_main.at +msgctxt "ui_main.at" +msgid "at" +msgstr "在" + +#: ui_main.author +msgctxt "ui_main.author" +msgid "Author" +msgstr "作者" + +#: ui_main.auto_checkin +msgctxt "ui_main.auto_checkin" +msgid "Auto Checkin" +msgstr "自動簽入" + +#: ui_main.Auto +msgctxt "ui_main.Auto" +msgid "Auto" +msgstr "" + +#: ui_main.avg_reports_per_day +msgctxt "ui_main.avg_reports_per_day" +msgid "Avg Reports Per Day" +msgstr "每日平均事件數量" + +#: ui_main.awaiting_approval +msgctxt "ui_main.awaiting_approval" +msgid "Awaiting Approval" +msgstr "等候核准中" + +#: ui_main.awaiting_verification +msgctxt "ui_main.awaiting_verification" +msgid "Awaiting Verification" +msgstr "等候驗證中" + +#: ui_main.badge +msgctxt "ui_main.badge" +msgid "Badge" +msgstr "徽章" + +#: ui_main.badges +msgctxt "ui_main.badges" +msgid "Badges" +msgstr "獲得的徽章" + +#: ui_main.badge_image +msgctxt "ui_main.badge_image" +msgid "Badge Image" +msgstr "徽章圖像" + +#: ui_main.badge_image_upload_your_own +msgctxt "ui_main.badge_image_upload_your_own" +msgid "Or you can upload your own badge image instead." +msgstr "或者上傳你自己的徽章圖像。" + +#: ui_main.badge_pack +msgctxt "ui_main.badge_pack" +msgid "Badge Pack" +msgstr "徽章打包" + +#: ui_main.badge_select +msgctxt "ui_main.badge_select" +msgid "Select a Badge" +msgstr "選擇一個徽章" + +#: ui_main.blog +msgctxt "ui_main.blog" +msgid "Blog" +msgstr "Ushahidi 部落格" + +#: ui_main.browse_profiles +msgctxt "ui_main.browse_profiles" +msgid "Browse Profiles" +msgstr "瀏覽個人資料" + +#: ui_main.cancel +msgctxt "ui_main.cancel" +msgid "Cancel" +msgstr "取消" + +#: ui_main.categories +msgctxt "ui_main.categories" +msgid "Categories" +msgstr "分類" + +#: ui_main.category +msgctxt "ui_main.category" +msgid "Category" +msgstr "分類" + +#: ui_main.category_filter +msgctxt "ui_main.category_filter" +msgid "Category Filter" +msgstr "類別過濾" + +#: ui_main.category_has_been +msgctxt "ui_main.category_has_been" +msgid "The category has been " +msgstr "這個類別 " + +#: ui_main.category_name +msgctxt "ui_main.category_name" +msgid "Category Name" +msgstr "類別名稱" + +#: ui_main.change_date_range +msgctxt "ui_main.change_date_range" +msgid "Change Date Range" +msgstr "更改日期範圍" + +#: ui_main.change_password +msgctxt "ui_main.change_password" +msgid "Change Password" +msgstr "更改密碼" + +#: ui_main.change_picture +msgctxt "ui_main.change_picture" +msgid "Change My Picture" +msgstr "修改圖像" + +#: ui_main.choose +msgctxt "ui_main.choose" +msgid "Choose a" +msgstr "選擇一個" + +#: ui_main.choose_data_points +msgctxt "ui_main.choose_data_points" +msgid "Choose data points to download" +msgstr "選擇欲下載的資料" + +#: ui_main.choose_date_range +msgctxt "ui_main.choose_date_range" +msgid "Or choose your own date range" +msgstr "或者自定義時間範圍" + +#: ui_main.choose_field_type +msgctxt "ui_main.choose_field_type" +msgid "Choose field type" +msgstr "選擇編輯域格式" + +#: ui_main.cleanurl +msgctxt "ui_main.cleanurl" +msgid "Clean URLs" +msgstr "簡易URL" + +#: ui_main.clear +msgctxt "ui_main.clear" +msgid "Clear" +msgstr "清除" + +#: ui_main.clear_map +msgctxt "ui_main.clear_map" +msgid "Clear Map" +msgstr "清理地圖" + +#: ui_main.close +msgctxt "ui_main.close" +msgid "Close" +msgstr "關閉" + +#: ui_main.clusters +msgctxt "ui_main.clusters" +msgid "clusters" +msgstr "群" + +#: ui_main.color +msgctxt "ui_main.color" +msgid "Color" +msgstr "顏色" + +#: ui_main.comment +msgctxt "ui_main.comment" +msgid "Comment" +msgstr "留言" + +#: ui_main.comments +msgctxt "ui_main.comments" +msgid "Comments" +msgstr "留言" + +#: ui_main.comment_details +msgctxt "ui_main.comment_details" +msgid "Comment Details" +msgstr "留言詳細內容" + +#: ui_main.configuration_saved +msgctxt "ui_main.configuration_saved" +msgid "Your Settings Have Been Saved!" +msgstr "您的設定已經被儲存!" + +#: ui_main.configure +msgctxt "ui_main.configure" +msgid "Configure" +msgstr "設定" + +#: ui_main.confirm_email_successful +msgctxt "ui_main.confirm_email_successful" +msgid "" +"You have successfully confirmed your email address! Please login below." +msgstr "您已經成功地提交了您的電子郵件地址!請在下面登錄。" + +#: ui_main.confirm_email_successful_and_approval +msgctxt "ui_main.confirm_email_successful_and_approval" +msgid "" +"You have successfully confirmed your email address! An administrator must " +"approve your account before you login" +msgstr "" + +#: ui_main.confirm_email_failed +msgctxt "ui_main.confirm_email_failed" +msgid "" +"Email confirmation failed! You can request a new email confirmation below." +msgstr "" + +#: ui_main.contact +msgctxt "ui_main.contact" +msgid "Contact Us" +msgstr "聯繫我們" + +#: ui_main.contact_code +msgctxt "ui_main.contact_code" +msgid "Security Code" +msgstr "驗證碼" + +#: ui_main.contact_email +msgctxt "ui_main.contact_email" +msgid "Your Email Address" +msgstr "您的電子郵件" + +#: ui_main.contact_message +msgctxt "ui_main.contact_message" +msgid "Message" +msgstr "訊息" + +#: ui_main.contact_message_has_send +msgctxt "ui_main.contact_message_has_send" +msgid "Your Message Has Been Sent!" +msgstr "你的訊息已經送出!" + +#: ui_main.contact_name +msgctxt "ui_main.contact_name" +msgid "Your Name" +msgstr "你的姓名" + +#: ui_main.contact_phone +msgctxt "ui_main.contact_phone" +msgid "Your Phone Number" +msgstr "你的電話" + +#: ui_main.contact_send +msgctxt "ui_main.contact_send" +msgid "Send Message" +msgstr "送出訊息" + +#: ui_main.contact_subject +msgctxt "ui_main.contact_subject" +msgid "Message Subject" +msgstr "訊息主旨" + +#: ui_main.copyright +msgctxt "ui_main.copyright" +msgid "Copyright ©" +msgstr "Copyright © 2009 Ushahidi.com. 版權所有." + +#: ui_main.create +msgctxt "ui_main.create" +msgid "Create" +msgstr "新增" + +#: ui_main.create_edit +msgctxt "ui_main.create_edit" +msgid "Create/Edit" +msgstr "新增/編輯" + +#: ui_main.create_new +msgctxt "ui_main.create_new" +msgid "Create New" +msgstr "新增通報" + +#: ui_main.create_new_password +msgctxt "ui_main.create_new_password" +msgid "Create New Password" +msgstr "創建新密碼" + +#: ui_main.create_report +msgctxt "ui_main.create_report" +msgid "Create Report" +msgstr "新增通報" + +#: ui_main.credibility +msgctxt "ui_main.credibility" +msgid "Credibility" +msgstr "可信度" + +#: ui_main.current_password +msgctxt "ui_main.current_password" +msgid "Current Password" +msgstr "當前密碼" + +#: ui_main.custom_fields +msgctxt "ui_main.custom_fields" +msgid "Custom Fields" +msgstr "其它" + +#: ui_main.data +msgctxt "ui_main.data" +msgid "Information" +msgstr "資料" + +#: ui_main.date +msgctxt "ui_main.date" +msgid "Date" +msgstr "日期" + +#: ui_main.date_format +msgctxt "ui_main.date_format" +msgid "(mm/dd/yyyy)" +msgstr "(月月/日日/年年年年)" + +#: ui_main.date_time +msgctxt "ui_main.date_time" +msgid "Date & Time" +msgstr "日期與時間" + +#: ui_main.day +msgctxt "ui_main.day" +msgid "day" +msgstr "日" + +#: ui_main.Daily +msgctxt "ui_main.Daily" +msgid "Daily" +msgstr "" + +#: ui_main.deactivate +msgctxt "ui_main.deactivate" +msgid "Deactivate" +msgstr "解除" + +#: ui_main.default_location_name +msgctxt "ui_main.default_location_name" +msgid "Nairobi, Kenya" +msgstr "台灣" + +#: ui_main.delete +msgctxt "ui_main.delete" +msgid "Delete" +msgstr "刪除" + +#: ui_main.deleted +msgctxt "ui_main.deleted" +msgid "Deleted" +msgstr "已刪除" + +#: ui_main.deletes +msgctxt "ui_main.deletes" +msgid "Deletes" +msgstr "刪除" + +#: ui_main.delete_disabled +msgctxt "ui_main.delete_disabled" +msgid "Delete Disabled" +msgstr "刪除(不可用)" + +#: ui_main.delete_last +msgctxt "ui_main.delete_last" +msgid "Delete Last" +msgstr "刪除上一個" + +#: ui_main.delete_report +msgctxt "ui_main.delete_report" +msgid "Delete this Report" +msgstr "刪除此通報" + +#: ui_main.delete_selected +msgctxt "ui_main.delete_selected" +msgid "Delete Selected" +msgstr "刪除所選項目\t" + +#: ui_main.delete_spam +msgctxt "ui_main.delete_spam" +msgid "Delete Spam" +msgstr "刪除垃圾" + +#: ui_main.demo +msgctxt "ui_main.demo" +msgid "Demo" +msgstr "示範" + +#: ui_main.description +msgctxt "ui_main.description" +msgid "Description" +msgstr "描述" + +#: ui_main.descending +msgctxt "ui_main.descending" +msgid "Descending" +msgstr "" + +#: ui_main.detailed_location_example +msgctxt "ui_main.detailed_location_example" +msgid "Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg" +msgstr "範例:中正市場的街角,在中山路與民族路交叉口,大海市" + +#: ui_main.details +msgctxt "ui_main.details" +msgid "Details" +msgstr "細節" + +#: ui_main.direct_report +msgctxt "ui_main.direct_report" +msgid "Direct Report" +msgstr "直接通報" + +#: ui_main.disabled +msgctxt "ui_main.disabled" +msgid "Disabled" +msgstr "" + +#: ui_main.disapprove +msgctxt "ui_main.disapprove" +msgid "Unapprove" +msgstr "尚未核准" + +#: ui_main.download_reports +msgctxt "ui_main.download_reports" +msgid "Download Reports" +msgstr "下載通報" + +#: ui_main.download +msgctxt "ui_main.download" +msgid "Download" +msgstr "" + +#: ui_main.edit +msgctxt "ui_main.edit" +msgid "Edit" +msgstr "編輯" + +#: ui_main.edit_form_fields +msgctxt "ui_main.edit_form_fields" +msgid "Edit Form Fields" +msgstr "編輯域" + +#: ui_main.edit_report +msgctxt "ui_main.edit_report" +msgid "Edit Report" +msgstr "編輯通報" + +#: ui_main.email +msgctxt "ui_main.email" +msgid "Email" +msgstr "" + +#: ui_main.email_address +msgctxt "ui_main.email_address" +msgid "Email Address" +msgstr "電子郵件信箱" + +#: ui_main.email_configuration +msgctxt "ui_main.email_configuration" +msgid "Mail Server Settings" +msgstr "郵件主機設定" + +#: ui_main.email_server_host +msgctxt "ui_main.email_server_host" +msgid "Mail Server Host" +msgstr "郵件服務器主機" + +#: ui_main.email_server_password +msgctxt "ui_main.email_server_password" +msgid "Mail Server Password" +msgstr "郵件主機密碼" + +#: ui_main.email_server_port +msgctxt "ui_main.email_server_port" +msgid "Mail Server Port" +msgstr "郵件服務端口" + +#: ui_main.email_server_ssl_support +msgctxt "ui_main.email_server_ssl_support" +msgid "Mail Server SSL support" +msgstr "郵件服務器支持SSL" + +#: ui_main.email_server_type +msgctxt "ui_main.email_server_type" +msgid "Mail Server Type" +msgstr "郵件主機型態" + +#: ui_main.email_server_username +msgctxt "ui_main.email_server_username" +msgid "Mail Server Username" +msgstr "郵件使用者帳號" + +#: ui_main.email_settings_comment_0 +msgctxt "ui_main.email_settings_comment_0" +msgid "so your settings have to be associated with this email address" +msgstr "您的電子信箱設定已經完成" + +#: ui_main.email_settings_comment_00 +msgctxt "ui_main.email_settings_comment_00" +msgid "" +"In order to receive reports by email, please input your email account " +"settings below. Please note that emails will be received at your" +msgstr "由於您將已電子郵件信箱收取通報,因此請在下方輸入您的電子郵件信箱" + +#: ui_main.email_settings_comment_1 +msgctxt "ui_main.email_settings_comment_1" +msgid "Some servers require a complete email address" +msgstr "部份服務要求完整的電子郵件信箱資料" + +#: ui_main.email_settings_comment_2 +msgctxt "ui_main.email_settings_comment_2" +msgid "Email account password" +msgstr "電子郵件信箱密碼" + +#: ui_main.email_settings_comment_3 +msgctxt "ui_main.email_settings_comment_3" +msgid "Common ports: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" +msgstr "通用端口: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)" + +#: ui_main.email_settings_comment_4 +msgctxt "ui_main.email_settings_comment_4" +msgid "Examples: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" +msgstr "範例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com" + +#: ui_main.email_settings_comment_5 +msgctxt "ui_main.email_settings_comment_5" +msgid "Examples: pop3, imap" +msgstr "範例: pop3, imap" + +#: ui_main.email_settings_comment_6 +msgctxt "ui_main.email_settings_comment_6" +msgid "Enable or disable SSL connections" +msgstr "啟用或禁用SSL連接" + +#: ui_main.empty +msgctxt "ui_main.empty" +msgid "---EMPTY---" +msgstr "---空---" + +#: ui_main.end_point +msgctxt "ui_main.end_point" +msgid "to" +msgstr "至" + +#: ui_main.error +msgctxt "ui_main.error" +msgid "Error!" +msgstr "錯誤!" + +#: ui_main.example +msgctxt "ui_main.example" +msgid "Example" +msgstr "範例" + +#: ui_main.example_country +msgctxt "ui_main.example_country" +msgid "Kenya" +msgstr "肯尼亞" + +#: ui_main.external_apps +msgctxt "ui_main.external_apps" +msgid "External Apps" +msgstr "外部應用程式" + +#: ui_main.external_video_link +msgctxt "ui_main.external_video_link" +msgid "External Video Link" +msgstr "其他影片連結" + +#: ui_main.facebook +msgctxt "ui_main.facebook" +msgid "Facebook" +msgstr "" + +#: ui_main.feed +msgctxt "ui_main.feed" +msgid "Feed" +msgstr "反饋" + +#: ui_main.feedback +msgctxt "ui_main.feedback" +msgid "Provide Feedback" +msgstr "反饋意見" + +#: ui_main.feedback_reports +msgctxt "ui_main.feedback_reports" +msgid "Please give us feedback about your experience by sending an email to " +msgstr "" + +#: ui_main.feeds +msgctxt "ui_main.feeds" +msgid "Feeds" +msgstr "訂閱" + +#: ui_main.feed_has_been +msgctxt "ui_main.feed_has_been" +msgid "The feed has been" +msgstr "這個訂閱" + +#: ui_main.feed_items +msgctxt "ui_main.feed_items" +msgid "Feed Items" +msgstr "訂閱數" + +#: ui_main.feed_name +msgctxt "ui_main.feed_name" +msgid "Feed Name" +msgstr "訂閱名稱" + +#: ui_main.feed_url +msgctxt "ui_main.feed_url" +msgid "Feed URL" +msgstr "訂閱 URL" + +#: ui_main.field_unused +msgctxt "ui_main.field_unused" +msgid "Unused field" +msgstr "未使用的編輯域" + +#: ui_main.file +msgctxt "ui_main.file" +msgid "File" +msgstr "文件" + +#: ui_main.file_over_max_allowed +msgctxt "ui_main.file_over_max_allowed" +msgid "Your file is over the maximum allowed filesize." +msgstr "您的文件超過允許的最大文件大小。" + +#: ui_main.filters +msgctxt "ui_main.filters" +msgid "Filters" +msgstr "篩選" + +#: ui_main.filter_reports +msgctxt "ui_main.filter_reports" +msgid "Filter Reports" +msgstr "篩選通報" + +#: ui_main.filter_reports_by +msgctxt "ui_main.filter_reports_by" +msgid "Filter Reports By" +msgstr "篩選以下條件通報" + +#: ui_main.filter_reports_contain +msgctxt "ui_main.filter_reports_contain" +msgid "Filter reports that contain" +msgstr "篩選條件包括" + +#: ui_main.find +msgctxt "ui_main.find" +msgid "Find" +msgstr "尋找" + +#: ui_main.find_location +msgctxt "ui_main.find_location" +msgid "Find Location" +msgstr "尋找地點" + +#: ui_main.first_name +msgctxt "ui_main.first_name" +msgid "First Name" +msgstr "名" + +#: ui_main.force_run_scheduler +msgctxt "ui_main.force_run_scheduler" +msgid "Force Run Scheduler" +msgstr "強制執行日程安排" + +#: ui_main.forgot_password +msgctxt "ui_main.forgot_password" +msgid "Forgot your password?" +msgstr "忘記密碼?" + +#: ui_main.form +msgctxt "ui_main.form" +msgid "Form" +msgstr "格式" + +#: ui_main.forms +msgctxt "ui_main.forms" +msgid "Forms" +msgstr "格式" + +#: ui_main.form_description +msgctxt "ui_main.form_description" +msgid "Form Description" +msgstr "格式描述" + +#: ui_main.form_edit +msgctxt "ui_main.form_edit" +msgid "Edit this Form" +msgstr "編輯這個格式" + +#: ui_main.form_has_been +msgctxt "ui_main.form_has_been" +msgid "The form has been" +msgstr "此格式" + +#: ui_main.form_title +msgctxt "ui_main.form_title" +msgid "Form Title" +msgstr "格式標題" + +#: ui_main.from +msgctxt "ui_main.from" +msgid "From" +msgstr "來自" + +#: ui_main.full_name +msgctxt "ui_main.full_name" +msgid "Full Name" +msgstr "完整姓名" + +#: ui_main.geolocation_available +msgctxt "ui_main.geolocation_available" +msgid "GeoLocation Available" +msgstr "可取得地理位置" + +#: ui_main.geometry_color +msgctxt "ui_main.geometry_color" +msgid "Color" +msgstr "顏色" + +#: ui_main.geometry_comments +msgctxt "ui_main.geometry_comments" +msgid "Comments" +msgstr "回應" + +#: ui_main.geometry_label +msgctxt "ui_main.geometry_label" +msgid "Label" +msgstr "標籤" + +#: ui_main.geometry_strokewidth +msgctxt "ui_main.geometry_strokewidth" +msgid "Stroke Width" +msgstr "線條寬度" + +#: ui_main.go +msgctxt "ui_main.go" +msgid "Go" +msgstr "" + +#: ui_main.hashtag +msgctxt "ui_main.hashtag" +msgid "Hashtag" +msgstr "" + +#: ui_main.has_been +msgctxt "ui_main.has_been" +msgid "Has Been" +msgstr "曾經" + +#: ui_main.help +msgctxt "ui_main.help" +msgid "How to Help" +msgstr "如何協助" + +#: ui_main.hidden +msgctxt "ui_main.hidden" +msgid "Hidden" +msgstr "隱藏" + +#: ui_main.hide +msgctxt "ui_main.hide" +msgid "Hide" +msgstr "隱藏" + +#: ui_main.hide_this_message +msgctxt "ui_main.hide_this_message" +msgid "hide this message" +msgstr "隱藏此訊息" + +#: ui_main.home +msgctxt "ui_main.home" +msgid "Home" +msgstr "首頁" + +#: ui_main.Hourly +msgctxt "ui_main.Hourly" +msgid "Hourly" +msgstr "" + +#: ui_main.how_to_report +msgctxt "ui_main.how_to_report" +msgid "How to Report" +msgstr "如何通報" + +#: ui_main.https +msgctxt "ui_main.https" +msgid "HTTPS" +msgstr "" + +#: ui_main.id +msgctxt "ui_main.id" +msgid "ID" +msgstr "" + +#: ui_main.identify_you +msgctxt "ui_main.identify_you" +msgid "Used to identify you on the site to other users." +msgstr "用於識別您和網站上的其他用戶" + +#: ui_main.image +msgctxt "ui_main.image" +msgid "Image" +msgstr "影像" + +#: ui_main.images +msgctxt "ui_main.images" +msgid "Images" +msgstr "影像" + +#: ui_main.image_icon +msgctxt "ui_main.image_icon" +msgid "Image/Icon" +msgstr "圖像" + +#: ui_main.inactive +msgctxt "ui_main.inactive" +msgid "Inactive" +msgstr "未開啟" + +#: ui_main.inbox +msgctxt "ui_main.inbox" +msgid "Inbox" +msgstr "收件箱" + +#: ui_main.incident +msgctxt "ui_main.incident" +msgid "Incident" +msgstr "事件" + +#: ui_main.incidents_nearby +msgctxt "ui_main.incidents_nearby" +msgid "Incidents Nearby" +msgstr "附近的事件" + +#: ui_main.incident_location +msgctxt "ui_main.incident_location" +msgid "Incident Location" +msgstr "事件地點" + +#: ui_main.include +msgctxt "ui_main.include" +msgid "Include" +msgstr "包括" + +#: ui_main.include_categories +msgctxt "ui_main.include_categories" +msgid "Include Categories" +msgstr "目錄" + +#: ui_main.include_custom_fields +msgctxt "ui_main.include_custom_fields" +msgid "Include Custom Fields" +msgstr "包括自定義字段" + +#: ui_main.include_description +msgctxt "ui_main.include_description" +msgid "Include Description" +msgstr "描述" + +#: ui_main.include_detail +msgctxt "ui_main.include_detail" +msgid "Include as much detail as possible" +msgstr "盡可能填寫詳細的資料" + +#: ui_main.include_latitude +msgctxt "ui_main.include_latitude" +msgid "Include Latitude" +msgstr "緯度" + +#: ui_main.include_location_information +msgctxt "ui_main.include_location_information" +msgid "Include Location Information" +msgstr "地點資訊" + +#: ui_main.include_longitude +msgctxt "ui_main.include_longitude" +msgid "Include Longitude" +msgstr "經度" + +#: ui_main.include_personal_info +msgctxt "ui_main.include_personal_info" +msgid "Include Personal Information" +msgstr "" + +#: ui_main.incoming_media +msgctxt "ui_main.incoming_media" +msgid "Incoming Media" +msgstr "新進媒體" + +#: ui_main.information_evaluation +msgctxt "ui_main.information_evaluation" +msgid "Information Evaluation" +msgstr "訊息評估" + +#: ui_main.input_location +msgctxt "ui_main.input_location" +msgid "Enter your precise location" +msgstr "輸入你的詳細地點" + +#: ui_main.insufficient_role +msgctxt "ui_main.insufficient_role" +msgid "" +"Your account doesn't have the proper permission to fully log you in. Please " +"contact the administrator." +msgstr "您的帳戶沒有許可的權限登陸,請聯繫管理員。" + +#: ui_main.interval +msgctxt "ui_main.interval" +msgid "Interval" +msgstr "" + +#: ui_main.in_response_to +msgctxt "ui_main.in_response_to" +msgid "In response to" +msgstr "回應給" + +#: ui_main.ip_address +msgctxt "ui_main.ip_address" +msgid "IP Address" +msgstr "IP地址" + +#: ui_main.is_this_your_profile +msgctxt "ui_main.is_this_your_profile" +msgid "Is this your profile?" +msgstr "是您的個人資料嗎?" + +#: ui_main.item +msgctxt "ui_main.item" +msgid "item" +msgstr "項目" + +#: ui_main.items +msgctxt "ui_main.items" +msgid "items" +msgstr "項目" + +#: ui_main.item_details +msgctxt "ui_main.item_details" +msgid "item_details" +msgstr "項目細節" + +#: ui_main.item_title +msgctxt "ui_main.item_title" +msgid "Item Title" +msgstr "項目標題" + +#: ui_main.key +msgctxt "ui_main.key" +msgid "Key" +msgstr "" + +#: ui_main.keywords +msgctxt "ui_main.keywords" +msgid "Keywords" +msgstr "" + +#: ui_main.kml_kmz_file +msgctxt "ui_main.kml_kmz_file" +msgid "KMZ/KML File" +msgstr "KMZ/KML 文件" + +#: ui_main.kml_kmz_upload +msgctxt "ui_main.kml_kmz_upload" +msgid "Upload KMZ/KML File" +msgstr "上傳 KMZ/KML 文件" + +#: ui_main.kml_url +msgctxt "ui_main.kml_url" +msgid "KML URL" +msgstr "" + +#: ui_main.laconica +msgctxt "ui_main.laconica" +msgid "Laconica" +msgstr "" + +#: ui_main.language +msgctxt "ui_main.language" +msgid "Language" +msgstr "語言" + +#: ui_main.last +msgctxt "ui_main.last" +msgid "Last" +msgstr "上一個" + +#: ui_main.last_month +msgctxt "ui_main.last_month" +msgid "Last Month" +msgstr "上個月" + +#: ui_main.last_name +msgctxt "ui_main.last_name" +msgid "Last Name" +msgstr "姓" + +#: ui_main.last_year +msgctxt "ui_main.last_year" +msgid "Last Year" +msgstr "去年" + +#: ui_main.latitude +msgctxt "ui_main.latitude" +msgid "Latitude" +msgstr "緯度" + +#: ui_main.layers +msgctxt "ui_main.layers" +msgid "Layers" +msgstr "圖層" + +#: ui_main.layers_filter +msgctxt "ui_main.layers_filter" +msgid "Other Layers" +msgstr "其他圖層" + +#: ui_main.layer_has_been +msgctxt "ui_main.layer_has_been" +msgid "The Layer Has Been" +msgstr "這個圖層" + +#: ui_main.layer_name +msgctxt "ui_main.layer_name" +msgid "Layer Name" +msgstr "圖層名稱" + +#: ui_main.layer_url +msgctxt "ui_main.layer_url" +msgid "Layer URL" +msgstr "圖層URL" + +#: ui_main.leave_a_comment +msgctxt "ui_main.leave_a_comment" +msgid "Leave a Comment" +msgstr "撰寫回應" + +#: ui_main.less_information +msgctxt "ui_main.less_information" +msgid "Less Information" +msgstr "" + +#: ui_main.level +msgctxt "ui_main.level" +msgid "Level" +msgstr "層級" + +#: ui_main.level_has_been +msgctxt "ui_main.level_has_been" +msgid "This level has been" +msgstr "這個層級已經" + +#: ui_main.level_name +msgctxt "ui_main.level_name" +msgid "Level Name" +msgstr "層級名稱" + +#: ui_main.limited +msgctxt "ui_main.limited" +msgid "Limited" +msgstr "有限的" + +#: ui_main.link +msgctxt "ui_main.link" +msgid "Link" +msgstr "連結" + +#: ui_main.list +msgctxt "ui_main.list" +msgid "List" +msgstr "列表" + +#: ui_main.loading_reports +msgctxt "ui_main.loading_reports" +msgid "Loading Reports" +msgstr "加載通報" + +#: ui_main.location +msgctxt "ui_main.location" +msgid "Location" +msgstr "地點" + +#: ui_main.locations +msgctxt "ui_main.locations" +msgid "Locations" +msgstr "地點" + +#: ui_main.location_example +msgctxt "ui_main.location_example" +msgid "City, State and/or Country" +msgstr " 縣市、鄉鎮、或區的名稱" + +#: ui_main.login +msgctxt "ui_main.login" +msgid "Login" +msgstr "登入" + +#: ui_main.login_account_creation_successful +msgctxt "ui_main.login_account_creation_successful" +msgid "Account created successfully. You may log in now." +msgstr "賬戶創建成功,您現在可以登錄。" + +#: ui_main.login_confirmation_sent +msgctxt "ui_main.login_confirmation_sent" +msgid "A confirmation has been sent to your email address." +msgstr "一封確認郵件已發送到您註冊的電子郵箱。" + +#: ui_main.login_approval_required +msgctxt "ui_main.login_approval_required" +msgid "" +"Account created. Your account must be approved by an admin before you can " +"login." +msgstr "" + +#: ui_main.login_email_doesnt_exist +msgctxt "ui_main.login_email_doesnt_exist" +msgid "" +"Email address doesn't exist. Try a different address or create an account." +msgstr "電子郵箱不存在,請嘗試不同的電子郵箱,或創建一個帳戶。" + +#: ui_main.login_select_openid +msgctxt "ui_main.login_select_openid" +msgid "Please click your account provider" +msgstr "請點擊選擇您的帳戶提供者" + +#: ui_main.login_with +msgctxt "ui_main.login_with" +msgid "Login with" +msgstr "登錄" + +#: ui_main.login_userpass +msgctxt "ui_main.login_userpass" +msgid "Email and Password" +msgstr "以電子郵箱和密碼" + +#: ui_main.login_openid +msgctxt "ui_main.login_openid" +msgid "OpenID" +msgstr "用戶號" + +#: ui_main.login_signup +msgctxt "ui_main.login_signup" +msgid "Sign Up" +msgstr "註冊" + +#: ui_main.login_signup_click +msgctxt "ui_main.login_signup_click" +msgid "Create an Account" +msgstr "註冊新帳戶" + +#: ui_main.login_signup_confirmation_message +msgctxt "ui_main.login_signup_confirmation_message" +msgid "" +"Thank you for signing up at %1$s. To confirm your email address, please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_confirmation_subject +msgctxt "ui_main.login_signup_confirmation_subject" +msgid "Signup Confirmation" +msgstr "註冊確認" + +#: ui_main.login_signup_admin_approval_message +msgctxt "ui_main.login_signup_admin_approval_message" +msgid "" +"An new user has signed up at %1$s. To approve their registration please go " +"to the following URL: %2$s" +msgstr "" + +#: ui_main.login_signup_admin_approval_subject +msgctxt "ui_main.login_signup_admin_approval_subject" +msgid "New User Approval" +msgstr "" + +#: ui_main.login_signup_approval_message +msgctxt "ui_main.login_signup_approval_message" +msgid "" +"Your user account has been approved for %1$s. To login go to the following " +"URL: %2$s" +msgstr "" + +#: ui_main.login_signup_approval_subject +msgctxt "ui_main.login_signup_approval_subject" +msgid "User account approved" +msgstr "" + +#: ui_main.login_signup_text +msgctxt "ui_main.login_signup_text" +msgid "Create an account now to take advantage of more features on the site." +msgstr "現在創建一個帳戶,獲得更多的網站功能。" + +#: ui_main.longitude +msgctxt "ui_main.longitude" +msgid "Longitude" +msgstr "經度" + +#: ui_main.map +msgctxt "ui_main.map" +msgid "Map" +msgstr "地圖" + +#: ui_main.mark_read +msgctxt "ui_main.mark_read" +msgid "Mark as Read" +msgstr "標示為已讀取" + +#: ui_main.mark_unread +msgctxt "ui_main.mark_unread" +msgid "Mark as Unread" +msgstr "標示為未讀取" + +#: ui_main.maximum_filesize +msgctxt "ui_main.maximum_filesize" +msgid "Maximum filesize" +msgstr "最大文件大小" + +#: ui_main.media +msgctxt "ui_main.media" +msgid "Media" +msgstr "媒體" + +#: ui_main.media_filter +msgctxt "ui_main.media_filter" +msgid "Media Filter" +msgstr "媒體過濾" + +#: ui_main.members +msgctxt "ui_main.members" +msgid "Members" +msgstr "成員" + +#: ui_main.manage_your_account +msgctxt "ui_main.manage_your_account" +msgid "Manage Your Account" +msgstr "管理您的賬戶" + +#: ui_main.message +msgctxt "ui_main.message" +msgid "Message" +msgstr "訊息" + +#: ui_main.messages +msgctxt "ui_main.messages" +msgid "Messages" +msgstr "訊息" + +#: ui_main.message_details +msgctxt "ui_main.message_details" +msgid "Message Details" +msgstr "訊息詳細內容" + +#: ui_main.message_non_numeric_source +msgctxt "ui_main.message_non_numeric_source" +msgid "Message from a non-numeric source:" +msgstr "" + +#: ui_main.mobile +msgctxt "ui_main.mobile" +msgid "Mobile" +msgstr "手機" + +#: ui_main.modify +msgctxt "ui_main.modify" +msgid "Modify" +msgstr "調整" + +#: ui_main.modify_date +msgctxt "ui_main.modify_date" +msgid "Modify Date" +msgstr "調整日期" + +#: ui_main.month +msgctxt "ui_main.month" +msgid "month" +msgstr "月" + +#: ui_main.Monthly +msgctxt "ui_main.Monthly" +msgid "Monthly" +msgstr "" + +#: ui_main.more +msgctxt "ui_main.more" +msgid "More" +msgstr "更多" + +#: ui_main.more_information +msgctxt "ui_main.more_information" +msgid "More Information" +msgstr "更多訊息" + +#: ui_main.multi_country_instance +msgctxt "ui_main.multi_country_instance" +msgid "Does this Ushahidi Deployment Span Multiple Countries" +msgstr "網站的 Ushahidi 部署是否可跨越多個國家" + +#: ui_main.must_confirm_email_address +msgctxt "ui_main.must_confirm_email_address" +msgid "" +"You must confirm your email address to access this deployment. If you lost " +"your confirmation email, you can request a new one below." +msgstr "您必須通過確認電子郵件來訪問此網站。如果您沒有找到確認郵件,您可以重新發一次。" + +#: ui_main.name +msgctxt "ui_main.name" +msgid "Name" +msgstr "名稱" + +#: ui_main.nearby_report +msgctxt "ui_main.nearby_report" +msgid "Nearby Report" +msgstr "附近的通報" + +#: ui_main.new +msgctxt "ui_main.new" +msgid "New" +msgstr "新" + +#: ui_main.news +msgctxt "ui_main.news" +msgid "News" +msgstr "新聞" + +#: ui_main.news_feeds +msgctxt "ui_main.news_feeds" +msgid "News Feeds" +msgstr "新聞 Feeds" + +#: ui_main.news_source +msgctxt "ui_main.news_source" +msgid "News Source" +msgstr "新聞來源" + +#: ui_main.new_category +msgctxt "ui_main.new_category" +msgid "New Category" +msgstr "新分類" + +#: ui_main.new_password +msgctxt "ui_main.new_password" +msgid "New Password" +msgstr "新密碼" + +#: ui_main.new_report +msgctxt "ui_main.new_report" +msgid "New Report" +msgstr "新通報" + +#: ui_main.next +msgctxt "ui_main.next" +msgid "Next" +msgstr "下一個" + +#: ui_main.no +msgctxt "ui_main.no" +msgid "No" +msgstr "否" + +#: ui_main.no_checkins +msgctxt "ui_main.no_checkins" +msgid "No checkins to display." +msgstr "沒有簽入記錄顯示" + +#: ui_main.no_data +msgctxt "ui_main.no_data" +msgid "No data" +msgstr "沒有數據" + +#: ui_main.none +msgctxt "ui_main.none" +msgid "None" +msgstr "" + +#: ui_main.notices +msgctxt "ui_main.notices" +msgid "Notices" +msgstr "注意" + +#: ui_main.not_approved +msgctxt "ui_main.not_approved" +msgid "Not Approved" +msgstr "尚未核准" + +#: ui_main.not_approved_singular +msgctxt "ui_main.not_approved_singular" +msgid "Not Approved" +msgstr "尚未核准" + +#: ui_main.not_selected +msgctxt "ui_main.not_selected" +msgid "---Not Selected---" +msgstr "---未選中---" + +#: ui_main.not_spam +msgctxt "ui_main.not_spam" +msgid "not spam" +msgstr "不是垃圾" + +#: ui_main.not_specified +msgctxt "ui_main.not_specified" +msgid "Not Specified" +msgstr "未指定" + +#: ui_main.no_reports +msgctxt "ui_main.no_reports" +msgid "There are no reports" +msgstr "目前無任何通報資料" + +#: ui_main.no_results +msgctxt "ui_main.no_results" +msgid "There are no results" +msgstr "沒有符合的結果" + +#: ui_main.off +msgctxt "ui_main.off" +msgid "Off" +msgstr "" + +#: ui_main.official_news +msgctxt "ui_main.official_news" +msgid "Official & mainstream news" +msgstr "相關新聞" + +#: ui_main.on +msgctxt "ui_main.on" +msgid "On" +msgstr "" + +#: ui_main.option +msgctxt "ui_main.option" +msgid "Option" +msgstr "選項" + +#: ui_main.optional +msgctxt "ui_main.optional" +msgid "Optional" +msgstr "非必要性的" + +#: ui_main.options +msgctxt "ui_main.options" +msgid "Options" +msgstr "選項" + +#: ui_main.organization +msgctxt "ui_main.organization" +msgid "Organization" +msgstr "組織" + +#: ui_main.organizations +msgctxt "ui_main.organizations" +msgid "Organizations" +msgstr "組織" + +#: ui_main.organization_description +msgctxt "ui_main.organization_description" +msgid "Organization Description" +msgstr "組織描述" + +#: ui_main.organization_email +msgctxt "ui_main.organization_email" +msgid "Organization Email" +msgstr "組織Email" + +#: ui_main.organization_has_been +msgctxt "ui_main.organization_has_been" +msgid "The Organization Has Been" +msgstr "這個組織曾經" + +#: ui_main.organization_name +msgctxt "ui_main.organization_name" +msgid "Organization Name" +msgstr "組織名稱" + +#: ui_main.organization_phone_1 +msgctxt "ui_main.organization_phone_1" +msgid "Organization Phone 1" +msgstr "組織電話1" + +#: ui_main.organization_phone_2 +msgctxt "ui_main.organization_phone_2" +msgid "Organization Phone 2" +msgstr "組織電話2" + +#: ui_main.organization_website +msgctxt "ui_main.organization_website" +msgid "Organization Website" +msgstr "組織網站" + +#: ui_main.original +msgctxt "ui_main.original" +msgid "Original" +msgstr "原始的" + +#: ui_main.original_description +msgctxt "ui_main.original_description" +msgid "Original Description" +msgstr "原始描述" + +#: ui_main.original_title +msgctxt "ui_main.original_title" +msgid "Original Title" +msgstr "原始標題" + +#: ui_main.other_ushahidi_instances +msgctxt "ui_main.other_ushahidi_instances" +msgid "Other Deployments" +msgstr "OTHER USHAHIDI DEPLOYMENTS" + +#: ui_main.outbox +msgctxt "ui_main.outbox" +msgid "Outbox" +msgstr "發件箱" + +#: ui_main.outgoing +msgctxt "ui_main.outgoing" +msgid "Outgoing" +msgstr "正在發送" + +#: ui_main.page +msgctxt "ui_main.page" +msgid "Page" +msgstr "頁" + +#: ui_main.pages +msgctxt "ui_main.pages" +msgid "Pages" +msgstr "頁" + +#: ui_main.page_description +msgctxt "ui_main.page_description" +msgid "Page Description" +msgstr "頁面描述" + +#: ui_main.page_has_been +msgctxt "ui_main.page_has_been" +msgid "The Page Has Been" +msgstr "本頁曾經" + +#: ui_main.page_tab_name +msgctxt "ui_main.page_tab_name" +msgid "Page Tab Name" +msgstr "頁面標籤" + +#: ui_main.page_title +msgctxt "ui_main.page_title" +msgid "Page Title" +msgstr "頁面標題" + +#: ui_main.parent_category +msgctxt "ui_main.parent_category" +msgid "Parent Category" +msgstr "上一層類別" + +#: ui_main.password +msgctxt "ui_main.password" +msgid "Password" +msgstr "密碼" + +#: ui_main.password_again +msgctxt "ui_main.password_again" +msgid "Verify Password" +msgstr "再次輸入你的密碼" + +#: ui_main.password_changed_successfully +msgctxt "ui_main.password_changed_successfully" +msgid "Password changed successfully! Login below." +msgstr "密碼修改成功!請重新登錄。" + +#: ui_main.password_forgot +msgctxt "ui_main.password_forgot" +msgid "Forgot your password?" +msgstr "忘記你的密碼?" + +#: ui_main.password_reset_confirm +msgctxt "ui_main.password_reset_confirm" +msgid "Check your email for the new password." +msgstr "新的密碼已經寄到你的信箱,請收信確認" + +#: ui_main.password_save +msgctxt "ui_main.password_save" +msgid "Stay logged in on this computer?" +msgstr "要在這台電腦保持登入狀態嗎?" + +#: ui_main.past_month +msgctxt "ui_main.past_month" +msgid "Past Month" +msgstr "上個月" + +#: ui_main.past_year +msgctxt "ui_main.past_year" +msgid "Past Year" +msgstr "去年" + +#: ui_main.pending +msgctxt "ui_main.pending" +msgid "Pending" +msgstr "暫緩" + +#: ui_main.per +msgctxt "ui_main.per" +msgid "per" +msgstr "" + +#: ui_main.personal_information +msgctxt "ui_main.personal_information" +msgid "Personal Information Optional." +msgstr "個人資訊 選填" + +#: ui_main.phone +msgctxt "ui_main.phone" +msgid "Phone" +msgstr "電話" + +#: ui_main.photos +msgctxt "ui_main.photos" +msgid "Photos" +msgstr "" + +#: ui_main.pictures +msgctxt "ui_main.pictures" +msgid "Pictures" +msgstr "照片" + +#: ui_main.pictures_and_videos +msgctxt "ui_main.pictures_and_videos" +msgid "Pictures and Videos" +msgstr "照片與影片" + +#: ui_main.pinpoint_location +msgctxt "ui_main.pinpoint_location" +msgid "" +"* Search for your location using a location name OR latitude,longitude " +"coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the " +"correct location." +msgstr "* 用地名或經緯度座標(格式: 121.5, 23.4)搜尋地點,或是在地圖上標示正確的位置" + +#: ui_main.play +msgctxt "ui_main.play" +msgid "Play" +msgstr "播放" + +#: ui_main.please_note +msgctxt "ui_main.please_note" +msgid "Please Note" +msgstr "" + +#: ui_main.plugins +msgctxt "ui_main.plugins" +msgid "Plugins" +msgstr "插件" + +#: ui_main.plugin_url +msgctxt "ui_main.plugin_url" +msgid "Plugin Website" +msgstr "插件" + +#: ui_main.public_profile +msgctxt "ui_main.public_profile" +msgid "Public Profile" +msgstr "公開的個人檔案" + +#: ui_main.public_profile_url +msgctxt "ui_main.public_profile_url" +msgid "Public Profile URL" +msgstr "公開的個人檔案 URL" + +#: ui_main.preview +msgctxt "ui_main.preview" +msgid "Preview" +msgstr "預覽" + +#: ui_main.preview_item +msgctxt "ui_main.preview_item" +msgid "Preview Item" +msgstr "預覽項目" + +#: ui_main.preview_message +msgctxt "ui_main.preview_message" +msgid "Preview Message" +msgstr "預覽訊息" + +#: ui_main.previous +msgctxt "ui_main.previous" +msgid "Previous" +msgstr "前一個" + +#: ui_main.private +msgctxt "ui_main.private" +msgid "Private" +msgstr "隱私的" + +#: ui_main.profile_color +msgctxt "ui_main.profile_color" +msgid "Profile Color" +msgstr "Profile 顏色" + +#: ui_main.profile_saved +msgctxt "ui_main.profile_saved" +msgid "Your Profile Has Been Saved" +msgstr "你的個人檔案已經被儲存" + +#: ui_main.quick_stats +msgctxt "ui_main.quick_stats" +msgid "Quick Stats" +msgstr "統計摘要" + +#: ui_main.rating +msgctxt "ui_main.rating" +msgid "Rating" +msgstr "評分" + +#: ui_main.read +msgctxt "ui_main.read" +msgid "Read" +msgstr "閱讀" + +#: ui_main.receive +msgctxt "ui_main.receive" +msgid "Receive" +msgstr "接收" + +#: ui_main.receive_from +msgctxt "ui_main.receive_from" +msgid "Receive from" +msgstr "接受自" + +#: ui_main.receive_notifications +msgctxt "ui_main.receive_notifications" +msgid "Receive Notifications" +msgstr "接收通知" + +#: ui_main.recent_reports +msgctxt "ui_main.recent_reports" +msgid "Recent Reports" +msgstr "最新的通報" + +#: ui_main.refresh_news_feeds +msgctxt "ui_main.refresh_news_feeds" +msgid "Refresh News Feeds" +msgstr "更新新聞 Feeds" + +#: ui_main.registered_email +msgctxt "ui_main.registered_email" +msgid "Registered Email" +msgstr "註冊的電子郵箱" + +#: ui_main.remove +msgctxt "ui_main.remove" +msgid "Remove" +msgstr "移除" + +#: ui_main.reply +msgctxt "ui_main.reply" +msgid "Reply" +msgstr "回覆" + +#: ui_main.report +msgctxt "ui_main.report" +msgid "Report" +msgstr "通報" + +#: ui_main.reports_listed +msgctxt "ui_main.reports_listed" +msgid "Reports (from the map, listed in chronological order)" +msgstr "最新通報 (來自當前地圖, 按照時間順序排列)" + +#: ui_main.reporter +msgctxt "ui_main.reporter" +msgid "Reporter" +msgstr "通報者" + +#: ui_main.reporters +msgctxt "ui_main.reporters" +msgid "Reporters" +msgstr "報告者" + +#: ui_main.reporter_date +msgctxt "ui_main.reporter_date" +msgid "Reporter Date" +msgstr "報告日期" + +#: ui_main.reporter_email +msgctxt "ui_main.reporter_email" +msgid "Reporter Email" +msgstr "通報者 Email" + +#: ui_main.reporter_first_name +msgctxt "ui_main.reporter_first_name" +msgid "Reporter First Name" +msgstr "通報者名字" + +#: ui_main.reporter_has_been +msgctxt "ui_main.reporter_has_been" +msgid "The Reporter Has Been" +msgstr "這個事件" + +#: ui_main.reporter_ip +msgctxt "ui_main.reporter_ip" +msgid "Reporter IP Address" +msgstr "通報者 IP 地址" + +#: ui_main.reporter_last_name +msgctxt "ui_main.reporter_last_name" +msgid "Reporter Last Name" +msgstr "通報者姓氏" + +#: ui_main.reporter_level +msgctxt "ui_main.reporter_level" +msgid "Reporter Level" +msgstr "通報者層級" + +#: ui_main.reporter_levels +msgctxt "ui_main.reporter_levels" +msgid "Reporter Levels" +msgstr "通報者層級" + +#: ui_main.reporter_phone +msgctxt "ui_main.reporter_phone" +msgid "Reporter Phone" +msgstr "通報者電話" + +#: ui_main.reports +msgctxt "ui_main.reports" +msgid "Reports" +msgstr "事件列表" + +#: ui_main.reports_btn_browse +msgctxt "ui_main.reports_btn_browse" +msgid "Browse" +msgstr "瀏覽" + +#: ui_main.reports_btn_submit +msgctxt "ui_main.reports_btn_submit" +msgid "Submit" +msgstr "送出" + +#: ui_main.reports_by_this_user +msgctxt "ui_main.reports_by_this_user" +msgid "Reports By This User" +msgstr "這些用戶的通報" + +#: ui_main.reports_categories +msgctxt "ui_main.reports_categories" +msgid "Categories" +msgstr "分類" + +#: ui_main.reports_count +msgctxt "ui_main.reports_count" +msgid "%d Reports" +msgstr "" + +#: ui_main.reports_date +msgctxt "ui_main.reports_date" +msgid "Date" +msgstr "日期" + +#: ui_main.reports_description +msgctxt "ui_main.reports_description" +msgid "Description" +msgstr "描述" + +#: ui_main.reports_download_csv +msgctxt "ui_main.reports_download_csv" +msgid "Reports will be downloaded in CSV format" +msgstr "通報資料將會以 CSV 格式下載" + +#: ui_main.reports_email +msgctxt "ui_main.reports_email" +msgid "Email" +msgstr "" + +#: ui_main.reports_features +msgctxt "ui_main.reports_features" +msgid "Features" +msgstr "重點" + +#: ui_main.reports_find_location +msgctxt "ui_main.reports_find_location" +msgid "Find a location near you" +msgstr "事件地點" + +#: ui_main.reports_first +msgctxt "ui_main.reports_first" +msgid "First Name" +msgstr "名" + +#: ui_main.reports_last +msgctxt "ui_main.reports_last" +msgid "Last Name" +msgstr "姓" + +#: ui_main.reports_location_name +msgctxt "ui_main.reports_location_name" +msgid "Location Name" +msgstr "確認地點名稱" + +#: ui_main.reports_news +msgctxt "ui_main.reports_news" +msgid "News Source Link" +msgstr "相關新聞報導" + +#: ui_main.reports_optional +msgctxt "ui_main.reports_optional" +msgid "Optional Information" +msgstr "其他資訊" + +#: ui_main.reports_photos +msgctxt "ui_main.reports_photos" +msgid "Upload Photos" +msgstr "上傳照片" + +#: ui_main.reports_return +msgctxt "ui_main.reports_return" +msgid "Return to the reports page" +msgstr "返回事件列表頁" + +#: ui_main.reports_select_city +msgctxt "ui_main.reports_select_city" +msgid "Select a City" +msgstr "選擇縣市" + +#: ui_main.reports_submitted +msgctxt "ui_main.reports_submitted" +msgid "" +"Your Report has been submitted to our staff for review. We will get back to " +"you shortly if necessary." +msgstr "通報資料已經送交審核小組,如有需要將會與你聯繫確認內容" + +#: ui_main.reports_submit_new +msgctxt "ui_main.reports_submit_new" +msgid "Submit a New Report" +msgstr "通報事件" + +#: ui_main.reports_time +msgctxt "ui_main.reports_time" +msgid "Time" +msgstr "時間" + +#: ui_main.reports_timeline +msgctxt "ui_main.reports_timeline" +msgid "Reports Timeline" +msgstr "時間線" + +#: ui_main.reports_title +msgctxt "ui_main.reports_title" +msgid "Report Title" +msgstr "標題" + +#: ui_main.reports_video +msgctxt "ui_main.reports_video" +msgid "Video link" +msgstr "影片連結" + +#: ui_main.report_an_incident +msgctxt "ui_main.report_an_incident" +msgid "Report an Incident" +msgstr "通報事件" + +#: ui_main.report_details +msgctxt "ui_main.report_details" +msgid "Report Details" +msgstr "通報詳情" + +#: ui_main.report_option_1 +msgctxt "ui_main.report_option_1" +msgid "By sending a message to" +msgstr "透過送一則訊息至" + +#: ui_main.report_option_2 +msgctxt "ui_main.report_option_2" +msgid "By sending an email" +msgstr "發一封 Email 至" + +#: ui_main.report_option_3 +msgctxt "ui_main.report_option_3" +msgid "By sending a tweet with the hashtag/s" +msgstr "發送一個推文,含有以下 hashtags" + +#: ui_main.report_option_4 +msgctxt "ui_main.report_option_4" +msgid "By filling this form on our website." +msgstr "點選這裡,填寫通報表格" + +#: ui_main.report_option_external_apps +msgctxt "ui_main.report_option_external_apps" +msgid "By using an app" +msgstr "通過使用一個應用程式" + +#: ui_main.report_saved +msgctxt "ui_main.report_saved" +msgid "Your Report Has Been Saved" +msgstr "這則通報已經被儲存" + +#: ui_main.report_title +msgctxt "ui_main.report_title" +msgid "Report Title" +msgstr "事件標題" + +#: ui_main.request_information +msgctxt "ui_main.request_information" +msgid "Request more information" +msgstr "請求更多的信息" + +#: ui_main.request_location +msgctxt "ui_main.request_location" +msgid "Request location" +msgstr "確認地點" + +#: ui_main.required +msgctxt "ui_main.required" +msgid "Required" +msgstr "請求" + +#: ui_main.requirements +msgctxt "ui_main.requirements" +msgid "Requirements" +msgstr "請求" + +#: ui_main.resend_confirm_email +msgctxt "ui_main.resend_confirm_email" +msgid "Resend Confirmation Email" +msgstr "重發確認郵件" + +#: ui_main.reset +msgctxt "ui_main.reset" +msgid "Reset" +msgstr "重設" + +#: ui_main.reset_all_filters +msgctxt "ui_main.reset_all_filters" +msgid "Reset all filters" +msgstr "清除所有篩選條件" + +#: ui_main.reset_password +msgctxt "ui_main.reset_password" +msgid "Reset Password" +msgstr "重設密碼" + +#: ui_main.retrieve_city_names +msgctxt "ui_main.retrieve_city_names" +msgid "Retrieve city names for the selected country" +msgstr "從選擇的國家獲取城市名" + +#: ui_main.riverid_information +msgctxt "ui_main.riverid_information" +msgid "Accounts managed by the %s service." +msgstr "賬戶管理由%s提供服務。" + +#: ui_main.riverid_exists_login +msgctxt "ui_main.riverid_exists_login" +msgid "" +"You already have an account managed by CrowdmapID! Try using your CrowdmapID" +" email and password to login." +msgstr "" + +#: ui_main.role +msgctxt "ui_main.role" +msgid "Role" +msgstr "角色" + +#: ui_main.rss +msgctxt "ui_main.rss" +msgid "RSS" +msgstr "" + +#: ui_main.save +msgctxt "ui_main.save" +msgid "Save" +msgstr "儲存" + +#: ui_main.saved +msgctxt "ui_main.saved" +msgid "Saved" +msgstr "儲存" + +#: ui_main.save_add_new +msgctxt "ui_main.save_add_new" +msgid "Save & Add New" +msgstr "保存 & 新增" + +#: ui_main.save_close +msgctxt "ui_main.save_close" +msgid "Save & Close" +msgstr "儲存 & 關閉" + +#: ui_main.save_report +msgctxt "ui_main.save_report" +msgid "Save Report" +msgstr "儲存報告" + +#: ui_main.schedule +msgctxt "ui_main.schedule" +msgid "Schedule" +msgstr "計畫" + +#: ui_main.scheduler +msgctxt "ui_main.scheduler" +msgid "Scheduler" +msgstr "排程" + +#: ui_main.scheduler_day +msgctxt "ui_main.scheduler_day" +msgid "Day" +msgstr "日" + +#: ui_main.scheduler_hour +msgctxt "ui_main.scheduler_hour" +msgid "Hour" +msgstr "時" + +#: ui_main.scheduler_log +msgctxt "ui_main.scheduler_log" +msgid "Scheduler Log" +msgstr "日程設定日誌" + +#: ui_main.scheduler_minute +msgctxt "ui_main.scheduler_minute" +msgid "Minute" +msgstr "分" + +#: ui_main.scheduler_weekday +msgctxt "ui_main.scheduler_weekday" +msgid "Day of the Week" +msgstr "星期" + +#: ui_main.search +msgctxt "ui_main.search" +msgid "Search" +msgstr "搜尋" + +#: ui_main.search_results +msgctxt "ui_main.search_results" +msgid "Search Results" +msgstr "搜尋結果" + +#: ui_main.security_code +msgctxt "ui_main.security_code" +msgid "Security Code" +msgstr "驗證碼" + +#: ui_main.select_all +msgctxt "ui_main.select_all" +msgid "Select All" +msgstr "全選" + +#: ui_main.select_field_type +msgctxt "ui_main.select_field_type" +msgid "Select a Field Type" +msgstr "選擇一個欄位類型" + +#: ui_main.select_form_type +msgctxt "ui_main.select_form_type" +msgid "Select A Form Type" +msgstr "選擇一個格式類型" + +#: ui_main.select_in_map +msgctxt "ui_main.select_in_map" +msgid "Select in the map" +msgstr "在地圖中選擇" + +#: ui_main.select_multiple +msgctxt "ui_main.select_multiple" +msgid "Select as many as needed" +msgstr "選擇所有需要的" + +#: ui_main.select_one +msgctxt "ui_main.select_one" +msgid "Please verify that you have checked an item" +msgstr "請確認以選擇一個項目" + +#: ui_main.select_theme +msgctxt "ui_main.select_theme" +msgid "Select Theme" +msgstr "選擇主題" + +#: ui_main.send +msgctxt "ui_main.send" +msgid "Send" +msgstr "發送" + +#: ui_main.send_confirmation +msgctxt "ui_main.send_confirmation" +msgid "Send Confirmation" +msgstr "發送確認" + +#: ui_main.sending_to +msgctxt "ui_main.sending_to" +msgid "Sending To" +msgstr "寄送至" + +#: ui_main.sent +msgctxt "ui_main.sent" +msgid "Sent" +msgstr "已送出" + +#: ui_main.sent_by +msgctxt "ui_main.sent_by" +msgid "Sent by" +msgstr "寄件者" + +#: ui_main.server_address +msgctxt "ui_main.server_address" +msgid "Server address" +msgstr "服務器地址" + +#: ui_main.server_type +msgctxt "ui_main.server_type" +msgid "Server type" +msgstr "服務器類型" + +#: ui_main.service +msgctxt "ui_main.service" +msgid "Service" +msgstr "服務" + +#: ui_main.service_username +msgctxt "ui_main.service_username" +msgid "Service Username" +msgstr "賬戶名" + +#: ui_main.service_user_id +msgctxt "ui_main.service_user_id" +msgid "Service User ID" +msgstr "賬戶號" + +#: ui_main.share +msgctxt "ui_main.share" +msgid "Share" +msgstr "分享" + +#: ui_main.shared_data +msgctxt "ui_main.shared_data" +msgid "Shared data" +msgstr "分享數據" + +#: ui_main.share_has_been +msgctxt "ui_main.share_has_been" +msgid "The share has been" +msgstr "分享已經" + +#: ui_main.sharing +msgctxt "ui_main.sharing" +msgid "Sharing" +msgstr "分享" + +#: ui_main.shorter_map +msgctxt "ui_main.shorter_map" +msgid "Shorter Map" +msgstr "" + +#: ui_main.show +msgctxt "ui_main.show" +msgid "Show" +msgstr "顯示" + +#: ui_main.show_all +msgctxt "ui_main.show_all" +msgid "Show all" +msgstr "顯示所有" + +#: ui_main.show_messages +msgctxt "ui_main.show_messages" +msgid "Show Messages" +msgstr "顯示消息" + +#: ui_main.showing_reports_from +msgctxt "ui_main.showing_reports_from" +msgid "Showing Reports From %1$s to %2$s" +msgstr "" + +#: ui_main.site +msgctxt "ui_main.site" +msgid "Website" +msgstr "網站" + +#: ui_main.site_email_address +msgctxt "ui_main.site_email_address" +msgid "site email address" +msgstr "網站電子郵箱" + +#: ui_main.site_url +msgctxt "ui_main.site_url" +msgid "Site URL" +msgstr "網站地址" + +#: ui_main.smaller_map +msgctxt "ui_main.smaller_map" +msgid "Smaller Map" +msgstr "" + +#: ui_main.sms +msgctxt "ui_main.sms" +msgid "SMS" +msgstr "" + +#: ui_main.sorry_no_badges +msgctxt "ui_main.sorry_no_badges" +msgid "Sorry, you do not have any badges." +msgstr "對不起,您還沒有獲得任何徽章。" + +#: ui_main.source +msgctxt "ui_main.source" +msgid "Source" +msgstr "來源" + +#: ui_main.source_name +msgctxt "ui_main.source_name" +msgid "Source name" +msgstr "來源名稱" + +#: ui_main.sort +msgctxt "ui_main.sort" +msgid "Sort" +msgstr "" + +#: ui_main.sort_by +msgctxt "ui_main.sort_by" +msgid "Sort By" +msgstr "" + +#: ui_main.source_url +msgctxt "ui_main.source_url" +msgid "Source URL" +msgstr "來源URL" + +#: ui_main.spam +msgctxt "ui_main.spam" +msgid "Spam" +msgstr "" + +#: ui_main.ssl_support +msgctxt "ui_main.ssl_support" +msgid "SSL Support?" +msgstr "SSL支持?" + +#: ui_main.start_point +msgctxt "ui_main.start_point" +msgid "From" +msgstr "來自" + +#: ui_main.step +msgctxt "ui_main.step" +msgid "Step" +msgstr "步驟" + +#: ui_main.submit +msgctxt "ui_main.submit" +msgid "Submit a Report" +msgstr "通報事件" + +#: ui_main.submitted_by +msgctxt "ui_main.submitted_by" +msgid "Submitted by %1$s via %2$s" +msgstr "" + +#: ui_main.submit_sms +msgctxt "ui_main.submit_sms" +msgid "Submit via SMS" +msgstr "以簡訊通報" + +#: ui_main.submit_sms1 +msgctxt "ui_main.submit_sms1" +msgid "Send your SMS to" +msgstr "把你的簡訊送到" + +#: ui_main.submit_sms2 +msgctxt "ui_main.submit_sms2" +msgid "on your phone" +msgstr "你的手機" + +#: ui_main.success +msgctxt "ui_main.success" +msgid "Success!" +msgstr "成功!" + +#: ui_main.successfuly_imported +msgctxt "ui_main.successfuly_imported" +msgid "Succesfully imported" +msgstr "已成功匯入" + +#: ui_main.surname +msgctxt "ui_main.surname" +msgid "Surname" +msgstr "別名" + +#: ui_main.survey +msgctxt "ui_main.survey" +msgid "Survey" +msgstr "新开线路" + +#: ui_main.system +msgctxt "ui_main.system" +msgid "System" +msgstr "" + +#: ui_main.taller_map +msgctxt "ui_main.taller_map" +msgid "Taller Map" +msgstr "" + +#: ui_main.tcp_port +msgctxt "ui_main.tcp_port" +msgid "TCP Port" +msgstr "TCP 端口" + +#: ui_main.themes +msgctxt "ui_main.themes" +msgid "Themes" +msgstr "主題" + +#: ui_main.theme_default +msgctxt "ui_main.theme_default" +msgid "Default Ushahidi Theme" +msgstr "Ushahidi 預設主題" + +#: ui_main.theme_settings +msgctxt "ui_main.theme_settings" +msgid "Theme Settings" +msgstr "設定主題" + +#: ui_main.this +msgctxt "ui_main.this" +msgid "This" +msgstr "此" + +#: ui_main.this_day +msgctxt "ui_main.this_day" +msgid "Today" +msgstr "今天" + +#: ui_main.this_month +msgctxt "ui_main.this_month" +msgid "This Month" +msgstr "本月" + +#: ui_main.this_week +msgctxt "ui_main.this_week" +msgid "This Week" +msgstr "本週" + +#: ui_main.this_year +msgctxt "ui_main.this_year" +msgid "This Year" +msgstr "今年" + +#: ui_main.this_is_your_profile +msgctxt "ui_main.this_is_your_profile" +msgid "This is your profile." +msgstr "这是您的资料." + +#: ui_main.time +msgctxt "ui_main.time" +msgid "Time" +msgstr "時間" + +#: ui_main.title +msgctxt "ui_main.title" +msgid "Title " +msgstr "標題 " + +#: ui_main.to +msgctxt "ui_main.to" +msgid "to" +msgstr "" + +#: ui_main.today +msgctxt "ui_main.today" +msgid "Today" +msgstr "今天" + +#: ui_main.today_at +msgctxt "ui_main.today_at" +msgid "Today at" +msgstr "" + +#: ui_main.token +msgctxt "ui_main.token" +msgid "Token" +msgstr "" + +#: ui_main.total_reports +msgctxt "ui_main.total_reports" +msgid "Total Reports" +msgstr "總數" + +#: ui_main.translated +msgctxt "ui_main.translated" +msgid "Translated" +msgstr "已翻譯" + +#: ui_main.translated_description +msgctxt "ui_main.translated_description" +msgid "Translated Description" +msgstr "翻譯過的描述" + +#: ui_main.translated_title +msgctxt "ui_main.translated_title" +msgid "Translated Title" +msgstr "翻譯過的標題" + +#: ui_main.translate_to +msgctxt "ui_main.translate_to" +msgid "Translate to" +msgstr "翻譯成" + +#: ui_main.translation +msgctxt "ui_main.translation" +msgid "Translation" +msgstr "翻譯" + +#: ui_main.translation_saved +msgctxt "ui_main.translation_saved" +msgid "Translation has been saved" +msgstr "翻譯已經被儲存" + +#: ui_main.trusted +msgctxt "ui_main.trusted" +msgid "Trusted" +msgstr "" + +#: ui_main.type +msgctxt "ui_main.type" +msgid "Type" +msgstr "" + +#: ui_main.twitter +msgctxt "ui_main.twitter" +msgid "Twitter" +msgstr "" + +#: ui_main.unable_send_email +msgctxt "ui_main.unable_send_email" +msgid "Unable to send email." +msgstr "" + +#: ui_main.uncategorized_reports +msgctxt "ui_main.uncategorized_reports" +msgid "Uncategorized Reports" +msgstr "" + +#: ui_main.unread +msgctxt "ui_main.unread" +msgid "unread" +msgstr "未讀" + +#: ui_main.unverified +msgctxt "ui_main.unverified" +msgid "Unverified" +msgstr "未驗證" + +#: ui_main.update_feeds +msgctxt "ui_main.update_feeds" +msgid "Update feeds" +msgstr "" + +#: ui_main.upload +msgctxt "ui_main.upload" +msgid "Upload" +msgstr "上傳" + +#: ui_main.upload_guide +msgctxt "ui_main.upload_guide" +msgid "View our report upload guides:-" +msgstr "" + +#: ui_main.upload_docs_1 +msgctxt "ui_main.upload_docs_1" +msgid "XML Upload guide" +msgstr "" + +#: ui_main.upload_docs_2 +msgctxt "ui_main.upload_docs_2" +msgid "CSV Upload guide" +msgstr "" + +#: ui_main.upload_file +msgctxt "ui_main.upload_file" +msgid "File to upload" +msgstr "上傳文件" + +#: ui_main.upload_reports +msgctxt "ui_main.upload_reports" +msgid "Upload Reports" +msgstr "上傳通報" + +#: ui_main.upload_reports_custom_forms +msgctxt "ui_main.upload_reports_custom_forms" +msgid "" +"Custom field columns must have their form_id appended to them e.g custom " +"field Test, on the default form, whose id is 1, will be Test-1. During " +"custom form field import, ensure that" +msgstr "" + +#: ui_main.upload_reports_detail_1 +msgctxt "ui_main.upload_reports_detail_1" +msgid "" +"With the form below, you can import incidents into the Ushahidi engine." +msgstr "透過以下的格式,你可以將事件通報匯入至 Ushahidi" + +#: ui_main.upload_reports_detail_2 +msgctxt "ui_main.upload_reports_detail_2" +msgid "Reports must be uploaded in either CSV or XML format." +msgstr "" + +#: ui_main.upload_reports_detail_3 +msgctxt "ui_main.upload_reports_detail_3" +msgid "" +"When incident ID already exists in the database, the entry in the CSV/XML " +"file will be ignored." +msgstr "" + +#: ui_main.upload_reports_detail_4 +msgctxt "ui_main.upload_reports_detail_4" +msgid "It must contain at least Incident Title and Incident Date." +msgstr "事件標題與日期為必填資料" + +#: ui_main.upload_reports_detail_4b +msgctxt "ui_main.upload_reports_detail_4b" +msgid "" +"If no latitude and longitude columns are supplied, the location will be " +"geocoded using the Google Geocoder." +msgstr "如果沒有提供經度和緯度列將使用Google Geocoder的地理編碼" + +#: ui_main.upload_reports_detail_4c +msgctxt "ui_main.upload_reports_detail_4c" +msgid "" +"If importing additional info i.e personal information and/or custom form " +"fields" +msgstr "" + +#: ui_main.upload_reports_detail_4d +msgctxt "ui_main.upload_reports_detail_4d" +msgid "" +"At least one of the personal information fields(name, surname,email) entries" +" MUST exist. Empty records will not be imported" +msgstr "" + +#: ui_main.upload_reports_detail_4e +msgctxt "ui_main.upload_reports_detail_4e" +msgid "" +"Your entries for dropdown fields, radio buttons and checkboxes match the " +"options provided for the custom field on your instance" +msgstr "" + +#: ui_main.upload_reports_detail_4f +msgctxt "ui_main.upload_reports_detail_4f" +msgid "" +"Checkbox options are separated by a comma e.g if your selected choice of " +"fruits is apples,mangoes and grapes, your entry for this should be " +"\"apples,mangoes,grapes\"" +msgstr "" + +#: ui_main.upload_reports_detail_4g +msgctxt "ui_main.upload_reports_detail_4g" +msgid "" +"Date field values are in the following format: mm/dd/yyyy e.g 3rd October " +"2012 = 10/03/2012" +msgstr "" + +#: ui_main.upload_reports_detail_5 +msgctxt "ui_main.upload_reports_detail_5" +msgid "A Sample CSV Report" +msgstr "事件通報 CSV 格式範例" + +#: ui_main.upload_reports_detail_6 +msgctxt "ui_main.upload_reports_detail_6" +msgid "" +"#,INCIDENT TITLE,INCIDENT " +"DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 " +"01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del " +"Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES,\"-1.287\",\"36.821\"" +msgstr "#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
\"1\",\"Suspected death in Nairobi\",\"2009-05-15 01:06:00\",\"Nairobi\",\"Three cases have been confirmed in C. del Uruguay\",\"DEATHS, CIVILIANS, \",YES,YES" + +#: ui_main.upload_reports_detail_7 +msgctxt "ui_main.upload_reports_detail_7" +msgid "" +"\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening " +"everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, " +"\",YES,NO,\"5.55\",\"-0.2166667\"" +msgstr "\"2\",\"Looting\",\"2009-03-18 10:10:00\",\"Accra\",\"Looting happening everywhere\",\"RIOTS, DEATHS, PROPERTY LOSS, \",YES,NO" + +#: ui_main.upload_successful +msgctxt "ui_main.upload_successful" +msgid "Upload Successful" +msgstr "成功上傳" + +#: ui_main.upload_video +msgctxt "ui_main.upload_video" +msgid "Upload Video" +msgstr "上傳視頻" + +#: ui_main.url +msgctxt "ui_main.url" +msgid "URL" +msgstr "" + +#: ui_main.user +msgctxt "ui_main.user" +msgid "User" +msgstr "使用者" + +#: ui_main.username +msgctxt "ui_main.username" +msgid "Username" +msgstr "使用者名稱" + +#: ui_main.ushahidi_admin +msgctxt "ui_main.ushahidi_admin" +msgid "Ushahidi Admin" +msgstr "Ushahidi 管理者" + +#: ui_main.verification +msgctxt "ui_main.verification" +msgid "Verification" +msgstr "驗證狀態" + +#: ui_main.verified +msgctxt "ui_main.verified" +msgid "Verified" +msgstr "已確認" + +#: ui_main.verified_reports +msgctxt "ui_main.verified_reports" +msgid "Verified Reports" +msgstr "已確認的通報" + +#: ui_main.verify +msgctxt "ui_main.verify" +msgid "Verify" +msgstr "確認" + +#: ui_main.verify_this_report +msgctxt "ui_main.verify_this_report" +msgid "Verify this Report" +msgstr "確認這個通報" + +#: ui_main.version +msgctxt "ui_main.version" +msgid "Version" +msgstr "版本" + +#: ui_main.via +msgctxt "ui_main.via" +msgid "via" +msgstr "來自" + +#: ui_main.video +msgctxt "ui_main.video" +msgid "Video" +msgstr "影片" + +#: ui_main.view +msgctxt "ui_main.view" +msgid "View" +msgstr "觀看" + +#: ui_main.views +msgctxt "ui_main.views" +msgid "Views" +msgstr "瀏覽" + +#: ui_main.view_all +msgctxt "ui_main.view_all" +msgid "View All" +msgstr "觀看全部" + +#: ui_main.view_all_feeds +msgctxt "ui_main.view_all_feeds" +msgid "View all feeds" +msgstr "瀏覽全部feeds" + +#: ui_main.view_all_reports +msgctxt "ui_main.view_all_reports" +msgid "View all reports" +msgstr "瀏覽全部通報事件" + +#: ui_main.view_items +msgctxt "ui_main.view_items" +msgid "View Items" +msgstr "瀏覽項目" + +#: ui_main.view_more +msgctxt "ui_main.view_more" +msgid "View More" +msgstr "瀏覽更多" + +#: ui_main.view_public_profile +msgctxt "ui_main.view_public_profile" +msgid "View Public Profile" +msgstr "查看公開的資料" + +#: ui_main.view_report +msgctxt "ui_main.view_report" +msgid "View Report" +msgstr "瀏覽通報" + +#: ui_main.view_reports +msgctxt "ui_main.view_reports" +msgid "View Reports" +msgstr "瀏覽全部通報" + +#: ui_main.view_video +msgctxt "ui_main.view_video" +msgid "View Video" +msgstr "" + +#: ui_main.visible +msgctxt "ui_main.visible" +msgid "Visible" +msgstr "可見" + +#: ui_main.waiting_approval +msgctxt "ui_main.waiting_approval" +msgid "Waiting Approval" +msgstr "等候核准" + +#: ui_main.waiting_verification +msgctxt "ui_main.waiting_verification" +msgid "Waiting Verification" +msgstr "等候確認" + +#: ui_main.wider_map +msgctxt "ui_main.wider_map" +msgid "Wider Map" +msgstr "" + +#: ui_main.web_form +msgctxt "ui_main.web_form" +msgid "Web Form" +msgstr "Web 表格" + +#: ui_main.web +msgctxt "ui_main.web" +msgid "Web" +msgstr "" + +#: ui_main.weight +msgctxt "ui_main.weight" +msgid "Weight" +msgstr "" + +#: ui_main.Weekly +msgctxt "ui_main.Weekly" +msgid "Weekly" +msgstr "" + +#: ui_main.yes +msgctxt "ui_main.yes" +msgid "Yes" +msgstr "是" + +#: ui_main.yesterday +msgctxt "ui_main.yesterday" +msgid "Yesterday" +msgstr "昨日" + +#: ui_main.your_dashboard +msgctxt "ui_main.your_dashboard" +msgid "Your Dashboard" +msgstr "控制面板" + +#: ui_main.your_file +msgctxt "ui_main.your_file" +msgid "Your file" +msgstr "您的文件" + +#: ui_main.zoom_in +msgctxt "ui_main.zoom_in" +msgid "Zoom In" +msgstr "放大" + +#: ui_main.zoom_out +msgctxt "ui_main.zoom_out" +msgid "Zoom Out" +msgstr "縮小" diff --git a/application/i18n/po/po-zh_TW/upgrade.po b/application/i18n/po/po-zh_TW/upgrade.po new file mode 100644 index 0000000000..0f3ec8cf76 --- /dev/null +++ b/application/i18n/po/po-zh_TW/upgrade.po @@ -0,0 +1,300 @@ +# +# Translators: +# kiang , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Ushahidi v2.X\n" +"Report-Msgid-Bugs-To: http://github.com/ushahidi/Ushahidi-Localizations/issues\n" +"POT-Creation-Date: 2012-12-14 06:11+0000\n" +"PO-Revision-Date: 2015-04-08 06:38+0000\n" +"Last-Translator: kiang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/ushahidi/ushahidi-v2/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: ushahidi-i18n-manager\n" + +#: upgrade.upgrade.between +msgctxt "upgrade.upgrade.between" +msgid "Invalid input data. It can either be 0 for No or 1 for Yes." +msgstr "無效的輸入資料。0代表否,1代表是" + +#: upgrade.upgrade_automatic +msgctxt "upgrade.upgrade_automatic" +msgid "Automatic Upgrade" +msgstr "自動更新" + +#: upgrade.upgrade_available +msgctxt "upgrade.upgrade_available" +msgid "Available Updates" +msgstr "可用的更新" + +#: upgrade.upgrade_continue_btn_text +msgctxt "upgrade.upgrade_continue_btn_text" +msgid "Continue" +msgstr "繼續" + +#: upgrade.upgrade_db_btn_text +msgctxt "upgrade.upgrade_db_btn_text" +msgid "Upgrade" +msgstr "升級" + +#: upgrade.upgrade_db_text_1 +msgctxt "upgrade.upgrade_db_text_1" +msgid "So, I'm going to upgrade your database from version" +msgstr "我們將把您的數據庫從版本" + +#: upgrade.upgrade_db_text_2 +msgctxt "upgrade.upgrade_db_text_2" +msgid "to the newest database version" +msgstr "升級至新的版本" + +#: upgrade.upgrade_db_text_3 +msgctxt "upgrade.upgrade_db_text_3" +msgid "Click on the \"Upgrade\" button and just chillax as I perform the magic." +msgstr "點擊“升級”按鈕,在我們升級的過程中您可以放鬆一下。" + +#: upgrade.upgrade_db_text_4 +msgctxt "upgrade.upgrade_db_text_4" +msgid "" +"Oh, also if you want me to backup your database, just tick the check button " +"below and I will do that for you in a breeze." +msgstr "如果您希望我們為您備份數據庫,只需要選中下面的可選框,就可以輕鬆備份了" + +#: upgrade.upgrade_db_text_5 +msgctxt "upgrade.upgrade_db_text_5" +msgid "" +"Backup database before upgrade? (Highly " +"recommended)" +msgstr "更新前要備份資料庫嗎? (強烈推薦)" + +#: upgrade.upgrade_db_title +msgctxt "upgrade.upgrade_db_title" +msgid "Ushahidi database upgrade" +msgstr "Ushahidi 資料庫更新" + +#: upgrade.upgrade_db_info +msgctxt "upgrade.upgrade_db_info" +msgid "" +"Ushahidi has been updated! Before you continue, you need to update your " +"database to the newest version (%s)." +msgstr "Ushahidi 已經更新,在繼續之前請先將資料庫更新到最新版本 (%s)" + +#: upgrade.upgrade_db_up_to_date +msgctxt "upgrade.upgrade_db_up_to_date" +msgid "Your database version is up to date." +msgstr "" + +#: upgrade.upgrade_failed +msgctxt "upgrade.upgrade_failed" +msgid "Upgrade failed at some point" +msgstr "升級失敗" + +#: upgrade.upgrade_manual +msgctxt "upgrade.upgrade_manual" +msgid "Manual Upgrade" +msgstr "手動升級" + +#: upgrade.upgrade_status +msgctxt "upgrade.upgrade_status" +msgid "Ushahidi upgrade status" +msgstr "Ushahidi 升級狀態" + +#: upgrade.upgrade_text_1 +msgctxt "upgrade.upgrade_text_1" +msgid "" +"The instructions below detail how to manually upgrade your Ushahidi " +"deploymentl" +msgstr "下面的說明細節如何手動升級你的 Ushahidi 部署程序" + +#: upgrade.upgrade_text_2 +msgctxt "upgrade.upgrade_text_2" +msgid "
Download
" +msgstr "
下載
" + +#: upgrade.upgrade_text_3 +msgctxt "upgrade.upgrade_text_3" +msgid "
- Download the most recent Ushahidi build from" +msgstr "
- 下載最新的 Ushahidi," + +#: upgrade.upgrade_text_4 +msgctxt "upgrade.upgrade_text_4" +msgid "" +"
Backup
- .htaccess, " +"./applications/config/config.php, ./applications/config/database.php and " +"./applications/config/auth.php files.
- Just in case something goes" +" wrong, it's recommended you make an entire backup of your Ushahidi " +"deployment.
Copy files
- Extract the " +"downloaded zip file
- Depending on the operating system running the " +"web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to" +" the webserver and replace the contents of all the folders with the newest " +"from the recent build.
Upgrde database
- " +"First determine your database schema version by looking at the " +"db_version value in the settings table or look at the " +"Ushahidi upgrade information at the top of this page.
- If you are " +"at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to " +"the latest SQL file in your /sql directory.
- With " +"your database client, upgrade the database by executing the appropriate " +"upgradex-x.sql file.
" +msgstr "
備份
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- 只是以防萬一, 建議,整個備份 Ushahidi 當前的配置。
複製文件
- 解壓縮下載的文件
- 根据不同的服务器系统,使用您的首选工具/模式(例如 Telnet, FTP, SSH) 登錄到服務器和更換內容的所有文件夾與最新的構建。
升級數據庫
- 首先確定你的數據庫架構版本, 在配置表中的 db_version 值或在本頁面最上面查看Ushahidi升級信息。
- 如果你的版本是version 25, 你需要從25-26, 26-27, 27-28 依次更新到最新的SQL /sql 目錄。
- 同時,數據庫客戶端也要通過執行upgradex-x.sql 文件更新。
" + +#: upgrade.upgrade_tables +msgctxt "upgrade.upgrade_tables" +msgid "" +"Step 3: Look inside the sql folder. " +"Manuall run the upgrade-.sql file starting from the current db " +"version of your install through to the final sql upgrade file." +msgstr "步驟 3: 查看 sql 文件夾,手動運行 upgrade-.sql 文件開始從當前數據庫版本更新。" + +#: upgrade.upgrade_text_5 +msgctxt "upgrade.upgrade_text_5" +msgid "" +"Step 4: Click on the \"Continue\" button " +"to upgrade the necessary tables." +msgstr "步驟 4: 點擊 \"繼續\" 按鈕更新所需要的數據表。" + +#: upgrade.upgrade_text_6 +msgctxt "upgrade.upgrade_text_6" +msgid "For automatic upgrade, click on the button below." +msgstr "要自動更新,請點擊下面的按鈕。" + +#: upgrade.upgrade_title_text +msgctxt "upgrade.upgrade_title_text" +msgid "" +"You are currently using Ushahidi v%1$s with database version %2$d running on" +" %3$s" +msgstr "" + +#: upgrade.upgrading +msgctxt "upgrade.upgrading" +msgid "Upgrading" +msgstr "正在升級" + +#: upgrade.upgrade_ftp_text +msgctxt "upgrade.upgrade_ftp_text" +msgid "" +"To continue with the easy upgrade, the following information is required for" +" the FTP server that your website is hosted on." +msgstr "繼續簡易升級,要求提供登陸網站託管主機FTP服務器的下列信息," + +#: upgrade.upgrade_ftp_hostname +msgctxt "upgrade.upgrade_ftp_hostname" +msgid "FTP Hostname: Example: \"localhost\"" +msgstr "FTP 主機名: Example: \"localhost\"" + +#: upgrade.upgrade_ftp_password +msgctxt "upgrade.upgrade_ftp_password" +msgid "FTP Password:" +msgstr "FTP 密碼:" + +#: upgrade.upgrade_ftp_username +msgctxt "upgrade.upgrade_ftp_username" +msgid "FTP User Name:" +msgstr "FTP 賬戶:" + +#: upgrade.upgrade_status_info +msgctxt "upgrade.upgrade_status_info" +msgid "You have the latest version of Ushahidi." +msgstr "您已經更新到最新版本 Ushahidi。" + +#: upgrade.upgrade_status_info_2 +msgctxt "upgrade.upgrade_status_info_2" +msgid "You do not need to upgrade." +msgstr "" + +#: upgrade.upgrade_db_version +msgctxt "upgrade.upgrade_db_version" +msgid "Database version: %d" +msgstr "數據庫版本: " + +#: upgrade.upgrade_warning_software_version +msgctxt "upgrade.upgrade_warning_software_version" +msgid "Warning: Software version in version.php and database do not match." +msgstr "警告:version.php中的軟件版本和數據庫版本不匹配。" + +#: upgrade.upgrade_warning_db_version +msgctxt "upgrade.upgrade_warning_db_version" +msgid "Warning: Database version in version.php and database do not match." +msgstr "警告:version.php中的數據庫版本與數據庫不匹配" + +#: upgrade.upgrade_database +msgctxt "upgrade.upgrade_database" +msgid "Database:" +msgstr "數據庫:" + +#: upgrade.ushahidi_release_version +msgctxt "upgrade.ushahidi_release_version" +msgid "Ushahidi %s" +msgstr "" + +#: upgrade.beta +msgctxt "upgrade.beta" +msgid "BETA!" +msgstr "" + +#: upgrade.download +msgctxt "upgrade.download" +msgid "Downloading latest version of ushahidi..." +msgstr "" + +#: upgrade.log_file +msgctxt "upgrade.log_file" +msgid "Log File" +msgstr "" + +#: upgrade.successfully_downloaded +msgctxt "upgrade.successfully_downloaded" +msgid "Successfully Downloaded. Unpacking..." +msgstr "" + +#: upgrade.failed_downloading +msgctxt "upgrade.failed_downloading" +msgid "Failed downloading." +msgstr "" + +#: upgrade.successfully_unpacked +msgctxt "upgrade.successfully_unpacked" +msgid "Successfully Unpacked. Copying files..." +msgstr "" + +#: upgrade.failed_unpacking +msgctxt "upgrade.failed_unpacking" +msgid "Failed unpacking." +msgstr "" + +#: upgrade.successfully_copied +msgctxt "upgrade.successfully_copied" +msgid "Successfully Copied. Upgrading Database..." +msgstr "" + +#: upgrade.failed_copying +msgctxt "upgrade.failed_copying" +msgid "Failed copying files." +msgstr "" + +#: upgrade.backup_success +msgctxt "upgrade.backup_success" +msgid "Database backup and upgrade successful." +msgstr "" + +#: upgrade.backup_failed +msgctxt "upgrade.backup_failed" +msgid "Failed backing up database." +msgstr "" + +#: upgrade.dbupgrade_success +msgctxt "upgrade.dbupgrade_success" +msgid "Database upgrade successful." +msgstr "" + +#: upgrade.deleting_files +msgctxt "upgrade.deleting_files" +msgid "Deleting downloaded files..." +msgstr "" + +#: upgrade.upgrade_success +msgctxt "upgrade.upgrade_success" +msgid "UPGRADE SUCCESSFUL. View Log File" +msgstr "" diff --git a/application/i18n/pr_US/alerts.php b/application/i18n/pr_US/alerts.php new file mode 100755 index 0000000000..0ec49c27f5 --- /dev/null +++ b/application/i18n/pr_US/alerts.php @@ -0,0 +1,15 @@ + array( + 'email' => 'This is a test', + 'email_check' => 'Harrr!', + ) , + 'alert_radius' => array( + 'in_array' => 'Yarr! Ye can\'t make a circle that big!', + ) , +); diff --git a/application/i18n/pr_US/auth.php b/application/i18n/pr_US/auth.php new file mode 100755 index 0000000000..9c5a5fb162 --- /dev/null +++ b/application/i18n/pr_US/auth.php @@ -0,0 +1,45 @@ + array( + 'email' => 'è,ò,ù,à', + 'exists' => 'è,ò,ù,à', + 'length' => 'è,ò,ù,à', + 'required' => 'è,ò,ù,à', + ) , + 'name' => array( + 'length' => 'è,ò,ù,à', + 'required' => 'è,ò,ù,à', + 'standard_text' => 'è,ò,ù,à', + ) , + 'password' => array( + 'length' => 'è,ò,ù,à', + 'matches' => 'è,ò,ù,à', + 'required' => 'è,ò,ù,à', + ) , + 'password_confirm' => array( + 'matches' => 'è,ò,ù,à', + ) , + 'resetemail' => array( + 'email' => 'è,ò,ù,à', + 'invalid' => 'è,ò,ù,à', + 'required' => 'è,ò,ù,à', + ) , + 'roles' => array( + 'alpha_numeric' => 'è,ò,ù,à', + 'length' => 'è,ò,ù,à', + 'required' => 'è,ò,ù,à', + 'values' => 'è,ò,ù,à', + ) , + 'username' => array( + 'admin' => 'è,ò,ù,à', + 'exists' => 'è,ò,ù,à', + 'length' => 'è,ò,ù,à', + 'required' => 'è,ò,ù,à', + 'superadmin' => 'è,ò,ù,à', + ) , +); diff --git a/application/i18n/pr_US/bug.php b/application/i18n/pr_US/bug.php new file mode 100755 index 0000000000..47757cb82b --- /dev/null +++ b/application/i18n/pr_US/bug.php @@ -0,0 +1,16 @@ + array( + 'default' => 'captcherrr*default', + 'required' => 'Captcharrr+required', + ) , + 'email' => array( + 'email' => 'This is a test I\'ll test this I will - test this with Some $ funky Character * ddsad * # $ % ^ fjdskfdsl few ferw f \\ \\ \\ \\ \' \' \' \' ', + 'length' => '\' \' \' \' \' ', + ) , +); diff --git a/application/i18n/pr_US/category.php b/application/i18n/pr_US/category.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/pr_US/category.php @@ -0,0 +1,7 @@ + array( + 'default' => 'è\\ù\\ò lalalaè weeeeù yoooooò SEE ME!', + ) , +); diff --git a/application/i18n/pr_US/contact.php b/application/i18n/pr_US/contact.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/pr_US/contact.php @@ -0,0 +1,7 @@ + 'YARR! Thar be a problem with the database: %s', +); diff --git a/application/i18n/pr_US/datetime.php b/application/i18n/pr_US/datetime.php new file mode 100755 index 0000000000..ac70cbe240 --- /dev/null +++ b/application/i18n/pr_US/datetime.php @@ -0,0 +1,10 @@ + 'in the morn\'', + 'pm' => 'in the evenin\'', +); diff --git a/application/i18n/pr_US/feeds.php b/application/i18n/pr_US/feeds.php new file mode 100755 index 0000000000..2f79d007a2 --- /dev/null +++ b/application/i18n/pr_US/feeds.php @@ -0,0 +1,12 @@ + 'Date arrrr!!!!!!!', + 'feed_name' => array( + 'length' => 'Hopefully final test.', + ) , +); diff --git a/application/i18n/pr_US/footer.php b/application/i18n/pr_US/footer.php new file mode 100755 index 0000000000..273ceba7f5 --- /dev/null +++ b/application/i18n/pr_US/footer.php @@ -0,0 +1,9 @@ + 'php5-curl is not installed on this system *SQUAK*!!!!!!', +); diff --git a/application/i18n/pr_US/form.php b/application/i18n/pr_US/form.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/pr_US/form.php @@ -0,0 +1,7 @@ + array( + 'default' => 'è,ò,ù,à', + ) , +); diff --git a/application/i18n/pr_US/mhi.php b/application/i18n/pr_US/mhi.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/pr_US/mhi.php @@ -0,0 +1,7 @@ + array( + 'length' => 'The yar description yadda yadda argh', + ) , +); diff --git a/application/i18n/pr_US/settings.php b/application/i18n/pr_US/settings.php new file mode 100755 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/pr_US/settings.php @@ -0,0 +1,7 @@ + 'fdsfdsaf', + 'access' => 'gsdafdsa', +); diff --git a/application/i18n/pr_US/upgrade.php b/application/i18n/pr_US/upgrade.php new file mode 100755 index 0000000000..930ef9ee36 --- /dev/null +++ b/application/i18n/pr_US/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'email_check' => 'Esse email já foi registrado para o recebimento de alertas sobre este local.', + 'length' => 'O campo do email deve ter pelo menos 4 e no máximo 64 caracteres.', + 'required' => 'É necessário preencher o campo do email se a caixa de seleção tiver sido marcada.', + ) , + 'alert_country' => array( + 'single_country' => 'Essa implantação está dentro de um único país. Por favor, verifique se o local corresponde ao país %s.', + ) , + 'alert_lat' => array( + 'between' => 'Você não selecionou um local válido no mapa.', + 'required' => 'Você não selecionou um local válido no mapa.', + ) , + 'alert_lon' => array( + 'between' => 'Você não selecionou um local válido no mapa.', + 'required' => 'Você não selecionou um local válido no mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'O campo do número do celular não parece conter a quantidade correta de dígitos.', + 'mobile_check' => 'Este número de celular já foi registrado para o recebimento de alertas sobre este local.', + 'numeric' => 'O campo do número do celular não parece conter um número válido. Digite apenas números, incluindo o código do país.', + 'one_required' => 'É preciso fornecer um número do celular ou endereço de email.', + 'required' => 'É necessário fornecer o número do celular se a caixa de seleção tiver sido marcada.', + ) , + 'alert_radius' => array( + 'in_array' => 'Você não definiu um raio de alcance válido no mapa.', + 'required' => 'Você não definiu um raio de alcance no mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'Você não definiu um destinatário para alertas.', + ) , + 'alerts_subscribed' => 'Você se inscreveu para alertas com as seguintes categorias', + 'code_already_verified' => 'Esse código já foi verificado.', + 'code_not_found' => 'O código de verificação não foi encontrado. Confirme se a URL está correta.', + 'code_verified' => 'O código foi verificado corretamente. A partir de agora, os alertas serão enviados a medida que os eventos aconteçam.', + 'confirm_request' => 'Para confirmar a solicitação de alertas, acesse ', + 'create_more_alerts' => 'Volte à página de alertas para criar outras notificações.', + 'email_alert_request_created' => 'Foi criada uma solicitação de alerta por email, e uma mensagem de verificação foi enviada para ', + 'email_code' => 'Digite o código de confirmação recebido por email abaixo: ', + 'email_error_head' => 'A solicitação de alertas por email NÃO foi gravada.', + 'email_ok_head' => 'A solicitação de alertas por email foi gravada.', + 'error' => 'Não foi possível processar sua confirmação.', + 'mobile_alert_request_created' => 'Foi criada uma solicitação de alerta por celular, e uma mensagem de verificação foi enviada para ', + 'mobile_code' => 'Digite o código de confirmação recebido via mensagem de SMS abaixo: ', + 'mobile_error_head' => 'A solicitação de alerta por celular NÃO foi salva.', + 'mobile_ok_head' => 'A solicitação de alerta por celular foi salva.', + 'settings_error' => 'Essa versão não está configurada para processar alertas corretamente.', + 'unsubscribe' => 'Você recebeu este email porque se cadastrou para receber alertas. Caso não queira receber alertas no futuro, acesse ', + 'unsubscribed' => 'Não serão mais enviados alertas de ', + 'unsubscribe_failed' => 'Não foi possível cancelar a sua inscrição. Confirme se a URL está correta.', + 'verification_email_subject' => 'Alertas - Verificação', + 'verify_code' => 'Não serão enviados alertas sobre essa localidade até que a solicitação tenha sido confirmada.', +); diff --git a/application/i18n/pt_BR/auth.php b/application/i18n/pt_BR/auth.php new file mode 100755 index 0000000000..ceccc26f11 --- /dev/null +++ b/application/i18n/pt_BR/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'exists' => 'Um nome de usuário já foi registrado com esse email.', + 'length' => 'O campo do email deve ter pelo menos 4 e no máximo 64 caracteres.', + 'required' => 'É necessário preencher o campo do email.', + ) , + 'name' => array( + 'length' => 'O nome deve ter pelo menos 3 e no máximo 100 caracteres.', + 'required' => 'É necessário preencher o campo do nome.', + 'standard_text' => 'O campo do nome de usuário contém caracteres não permitidos.', + ) , + 'current_password' => array( + 'length' => 'O campo senha deve ter pelo menos 8 caracteres.', + 'login error' => 'Por favor, verifique se você digitou o e-mail e senha corretamente.', + 'matches' => 'Por favor insira a mesma senha nos dois campos de senha.', + 'required' => 'O campo senha é necessária.', + 'alpha_dash' => 'O campo senha pode ter caracteres alfabéticos, os símbolos # e @, números, sublinhados e traços únicos', + 'incorrect' => 'A senha atual que você entrou para a sua conta está incorreto. Por favor, tente novamente.', + ) , + 'new_password' => array( + 'length' => 'O campo senha deve ter pelo menos 8 caracteres.', + 'login error' => 'Por favor, verifique se você digitou o e-mail e senha corretamente.', + 'matches' => 'Por favor insira a mesma senha nos dois campos de senha.', + 'required' => 'O campo senha é necessária.', + 'alpha_dash' => 'O campo senha deve ter caracteres alfabéticos, os símbolos # e @, números, sublinhados e traços únicos', + ) , + 'password' => array( + 'default' => 'Houve um erro ao tentar fazer seu login.', + 'length' => 'O campo senha deve ter pelo menos 8 caracteres.', + 'login error' => 'Verifique se a senha foi digitada corretamente.', + 'matches' => 'Digite a mesma senha nos dois campos.', + 'required' => 'É necessário preencher o campo senha.', + 'riverid server down' => 'O servidor de autenticação é baixo. Por favor, tente novamente mais tarde.', + 'riverid' => '%s', + 'alpha_dash' => 'O campo senha deve ter caracteres alfabéticos, os símbolos # e @, números, sublinhados e traços únicos', + ) , + 'password_confirm' => array( + 'matches' => 'O campo de confirmação da senha deve corresponder à senha digitada no primeiro campo.', + ) , + 'resetemail' => array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'invalid' => 'Não foi possível encontrar esse email.', + 'required' => 'É necessário preencher o campo de email.', + ) , + 'role' => array( + 'superadmin_modify' => 'Apenas um superadmin pode modificar uma superadmin ou atualizar um usuário admin.', + ) , + 'roles' => array( + 'alpha_numeric' => 'O formato do perfil é inválido', + 'length' => 'O campo perfil deve ter pelo menos 5 e no máximo 30 caracteres.', + 'required' => 'É necessário definir pelo menos um perfil.', + 'values' => 'É necessário definir o perfil de ADMIN ou de USUÁRIO.', + ) , + 'token' => array( + 'invalid' => 'O código de senha esquecida é inválido', + 'required' => 'Era preciso um código de senha esquecida', + ) , + 'username' => array( + 'admin' => 'Não é possível modificar o perfil de admin.', + 'alpha_numeric' => 'O campo de URL de perfil público deve conter apenas números e letras.', + 'exists' => 'Esse nome de usuário já está em uso.', + 'length' => 'O campo de URL do perfil público deve ter pelo menos 2 e no máximo 100 caracteres.', + 'login error' => 'Verifique se o nome de usuário foi digitado corretamente.', + 'required' => 'É necessário preencher o campo nome de usuário.', + 'superadmin' => 'Não é possível modificar o perfil de super admin.', + 'csrf' => 'Ataque CSRF possível. Será que você realmente quer dizer para criar/editar um usuário?', + ) , +); diff --git a/application/i18n/pt_BR/bug.php b/application/i18n/pt_BR/bug.php new file mode 100755 index 0000000000..dd780e0116 --- /dev/null +++ b/application/i18n/pt_BR/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Forneça um código de segurança válido.', + 'required' => 'Forneça um código de segurança.', + ) , + 'email' => array( + 'email' => 'O campo de email não parece conter um endereço válido.', + 'length' => 'Os dados do campo de endereço deve conter pelo menos 4 e no máximo 64 caracteres.', + 'required' => 'É necessário preencher o campo do email se a caixa de seleção tiver sido marcada.', + ) , + 'error' => array( + 'required' => 'É necessário preencher o campo erro.', + ) , + 'subject' => array( + 'length' => 'O campo de assunto deve ter pelo menos 3 caracteres.', + 'required' => 'É necessário preencher o campo assunto.', + ) , + 'yourname' => array( + 'length' => 'O campo nome deve ter pelo menos 3 caracteres.', + 'required' => 'É necessário preencher o campo nome.', + ) , +); diff --git a/application/i18n/pt_BR/category.php b/application/i18n/pt_BR/category.php new file mode 100755 index 0000000000..5e34c54fcc --- /dev/null +++ b/application/i18n/pt_BR/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'O campo cor deve ter 6 caracteres.', + 'required' => 'É necessário preencher o campo cor.', + ) , + 'category_description' => array( + 'required' => 'É necessário preencher o campo descrição.', + ) , + 'category_image' => array( + 'size' => 'Certifique-se de que as fotos enviadas têm até 50KB.', + 'type' => 'O campo de imagem parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF.', + 'valid' => 'O campo de imagem parece não conter um arquivo válido.', + ) , + 'category_title' => array( + 'length' => 'O campo título deve ter pelo menos 3 e no máximo 80 caracteres.', + 'required' => 'É necessário preencher o campo título.', + ) , + 'parent_id' => array( + 'already_parent' => 'Você não pode categorizar uma categoria com subcategorias.', + 'exists' => 'A categoria principal não existe.', + 'numeric' => 'É necessário preencher o campo de categoria principal com números.', + 'parent_trusted' => 'A categoria pai não pode ser uma categoria especial', + 'required' => 'É necessário preencher o campo de categoria principal.', + 'same' => 'A categoria não pode ser a mesma da categoria principal.', + 'special' => 'Categorias especiais não podem ser subcategorizadas.', + ) , +); diff --git a/application/i18n/pt_BR/comments.php b/application/i18n/pt_BR/comments.php new file mode 100755 index 0000000000..d3224ed738 --- /dev/null +++ b/application/i18n/pt_BR/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Digite um código de segurança válido.', + 'required' => 'Digite o código de segurança.', + 'valid' => 'Você inseriu o código de segurança errado.', + ) , + 'comment_author' => array( + 'length' => 'O campo nome deve ter pelo menos 3 caracteres.', + 'required' => 'É necessário preencher o campo nome.', + ) , + 'comment_description' => array( + 'required' => 'É necessário preencher o campo de comentários.', + ) , + 'comment_email' => array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'length' => 'O campo do email deve ter pelo menos 4 e no máximo 64 caracteres.', + 'required' => 'É necessário preencher o campo do email se a caixa de seleção tiver sido marcada.', + ) , +); diff --git a/application/i18n/pt_BR/contact.php b/application/i18n/pt_BR/contact.php new file mode 100755 index 0000000000..b87701570e --- /dev/null +++ b/application/i18n/pt_BR/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Digite um código de segurança válido.', + 'valid' => 'Por favor insira um código de segurança correto.', + 'required' => 'Digite o código de segurança.', + ) , + 'contact_email' => array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'length' => 'O campo do email deve ter pelo menos 4 e no máximo 64 caracteres.', + 'required' => 'É necessário preencher o campo do email se a caixa de seleção tiver sido marcada.', + ) , + 'contact_message' => array( + 'required' => 'É necessário preencher o campo de mensagem.', + ) , + 'contact_name' => array( + 'length' => 'O campo nome deve ter pelo menos 3 caracteres.', + 'required' => 'É necessário preencher o campo nome.', + ) , + 'contact_subject' => array( + 'length' => 'O campo de assunto deve ter pelo menos 3 caracteres.', + 'required' => 'É necessário preencher o campo de assunto.', + ) , + 'email_send' => array( + 'failed' => 'Houve um erro ao enviar a sua mensagem.', + ) , +); diff --git a/application/i18n/pt_BR/core.php b/application/i18n/pt_BR/core.php new file mode 100755 index 0000000000..f027f46927 --- /dev/null +++ b/application/i18n/pt_BR/core.php @@ -0,0 +1,35 @@ + 'arquivo config', + 'controller' => 'controlador', + 'driver' => 'driver', + 'driver_implements' => 'O driver %s para a coleção %s deve ser implementado na interface do %s', + 'driver_not_found' => 'Não foi possível encontrar o driver %s para a coleção %s.', + 'errors_disabled' => 'Acesse a página inicial ou tente novamente.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Não foi possível completar a solicitação', + 'helper' => 'assistente', + 'invalid_filetype' => 'A solicitação desse tipo de arquivo, .%s, não é permitido durante visualização da configuração do arquivo', + 'invalid_method' => 'Método inválido %s solicitado em %s', + 'invalid_property' => 'A propriedade %s não existe na classe %s.', + 'library' => 'coleção', + 'log_dir_unwritable' => 'O diretório não pode ser escrito: %s', + 'model' => 'modelo', + 'no_controller' => 'Ushahidi não conseguiu determinar um controlador para processar a solicitação: %s', + 'no_default_route' => 'Defina um route padrão em config/routes.php', + 'page_not_found' => 'Não foi possível encontrar a página solicitada: %s.', + 'report_bug' => 'Relate esse problema ao Ushahidi', + 'resource_not_found' => 'A solicitação %s, %s, não pode ser encontrada', + 'stack_trace' => 'Rastreamento de Pilha', + 'stats_footer' => 'Carregado em {execution_time} segundos, usando {memory_usage} de memória. Gerado pelo Ushahidi v%s.', + 'text_direction' => 'epd', + 'there_can_be_only_one' => 'Só é possível haver uma versão do Ushahidi por página solicitada', + 'uncaught_exception' => '%s não captado: %s no arquivo %s linha %s', + 'view' => 'visualizar', + 'view_set_filename' => 'É preciso determinar visualização do arquivo antes de solicitar renderização', +); diff --git a/application/i18n/pt_BR/database.php b/application/i18n/pt_BR/database.php new file mode 100755 index 0000000000..46455d603b --- /dev/null +++ b/application/i18n/pt_BR/database.php @@ -0,0 +1,10 @@ + 'Erro de database: %s', + 'table_not_found' => 'Não foi possível encontrar a tabela "%s" na database. Certifique-se de que está usando a última versão da database para essa versão do Ushahidi', +); diff --git a/application/i18n/pt_BR/datetime.php b/application/i18n/pt_BR/datetime.php new file mode 100755 index 0000000000..99ed57ce2a --- /dev/null +++ b/application/i18n/pt_BR/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Sex', + 'full' => 'Sexta', + ) , + 'monday' => array( + 'abbv' => 'Seg', + 'full' => 'Segunda', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sáb', + 'full' => 'Sábado', + ) , + 'sunday' => array( + 'abbv' => 'Dom', + 'full' => 'Domingo', + ) , + 'thursday' => array( + 'abbv' => 'Qui', + 'full' => 'Quinta', + ) , + 'tuesday' => array( + 'abbv' => 'Ter', + 'full' => 'Terça', + ) , + 'wednesday' => array( + 'abbv' => 'Qua', + 'full' => 'Quarta', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Janeiro', + ) , + 'february' => array( + 'abbv' => 'Fev', + 'full' => 'Fevereiro', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Março', + ) , + 'april' => array( + 'abbv' => 'Abr', + 'full' => 'Abril', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Maio', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Junho', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Julho', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agosto', + ) , + 'september' => array( + 'abbv' => 'Set', + 'full' => 'Setembro', + ) , + 'october' => array( + 'abbv' => 'Out', + 'full' => 'Outubro', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novembro', + ) , + 'december' => array( + 'abbv' => 'Dez', + 'full' => 'Dezembro', + ) , +); diff --git a/application/i18n/pt_BR/feeds.php b/application/i18n/pt_BR/feeds.php new file mode 100755 index 0000000000..0d18184e1e --- /dev/null +++ b/application/i18n/pt_BR/feeds.php @@ -0,0 +1,20 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'O nome do feed deve ter pelo menos 3 e no máximo + 70 caracteres.', + 'required' => 'Digite o nome do feed.', + ) , + 'feed_url' => array( + 'required' => 'Digite uma URL válida para o feed.', + 'url' => 'Digite uma URL válida. Ex. http://www.eleitor2010.com', + ) , + 'source' => 'FONTE', + 'title' => 'TÍTULO', +); diff --git a/application/i18n/pt_BR/footer.php b/application/i18n/pt_BR/footer.php new file mode 100755 index 0000000000..329bb719d2 --- /dev/null +++ b/application/i18n/pt_BR/footer.php @@ -0,0 +1,9 @@ + 'O php5-curl não está instalado nesse sistema.', +); diff --git a/application/i18n/pt_BR/form.php b/application/i18n/pt_BR/form.php new file mode 100755 index 0000000000..1b64bec519 --- /dev/null +++ b/application/i18n/pt_BR/form.php @@ -0,0 +1,51 @@ + array( + 'default' => 'O valor padrão que você forneceu para o campo é inválido.', + 'length' => 'O nome do campo deve ter pelo menos 3 e no máximo + 200 caracteres.', + ) , + 'field_height' => array( + 'between' => 'Digite um valor entre 0 e 50 para o campo altura.', + ) , + 'field_isdate' => array( + 'between' => 'Não foi digitado um valor válido para o campo data.', + 'required' => 'Indique sim ou não para o campo data.', + ) , + 'field_name' => array( + 'length' => 'O nome do campo deve ter pelo menos 3 e no máximo + 100 caracteres.', + 'required' => 'Defina um nome para o campo.', + 'duplicate' => 'O nome que você deu ao campo já existe neste formulário. Por favor, escolha outro.', + ) , + 'field_required' => array( + 'between' => 'Não foi digitado um valor válido para os campos solicitados.', + 'required' => 'Indique sim ou não para campo solicitado.', + ) , + 'field_type' => array( + 'numeric' => 'Defina um tipo válido para o campo.', + 'required' => 'Defina um tipo para o campo.', + ) , + 'field_width' => array( + 'between' => 'Digite um valor entre 0 e 300 para o campo largura.', + ) , + 'form_description' => array( + 'required' => 'Forneça a descrição do formulário.', + ) , + 'form_id' => array( + 'default' => 'Não é possível apagar o formulário padrão.', + 'numeric' => 'Selecione qual formulário adicionar a esse campo.', + 'required' => 'Selecione qual formulário adicionar a esse campo.', + ) , + 'form_title' => array( + 'length' => 'O nome do formulário deve ter pelo menos 3 e no máximo + 100 caracteres.', + 'required' => 'Digite o nome do formulário.', + 'exists' => 'Um formulário com este título já existe. Por favor, escolha outro.', + ) , +); diff --git a/application/i18n/pt_BR/imap.php b/application/i18n/pt_BR/imap.php new file mode 100755 index 0000000000..16cd9f9144 --- /dev/null +++ b/application/i18n/pt_BR/imap.php @@ -0,0 +1,10 @@ + 'Não foi possível abrir o acesso IMAP', + 'unsupported_service' => 'Serviço de email não suportado', +); diff --git a/application/i18n/pt_BR/installer.php b/application/i18n/pt_BR/installer.php new file mode 100755 index 0000000000..2a603ded60 --- /dev/null +++ b/application/i18n/pt_BR/installer.php @@ -0,0 +1,84 @@ + 'Caminho básico', + 'database' => 'Base de dados', + 'database_host' => 'hospedagem de base de dados', + 'database_host_description' => 'Caso esteja rodando Ushahidi no seu computador, será normalmente o "localhost". Caso esteja rodando o Ushahidi de um servidor, será necessário obter as informações sobre o provedor de internet', + 'database_name' => 'Nome da database', + 'database_name_description' => 'Nome da database na qual você quer rodar o Ushahidi', + 'db_information_link' => 'Para obter mais informações, leia esse artigo no wiki, que aborda database mais detalhadamente.', + 'default_language' => 'Idioma padrão (Locale)', + 'default_language_description' => 'Cada versão do Ushahidi vem com um conjunto embutido de tradução. É possível também acrescentar o seu idioma', + 'disable' => 'Desabilitar', + 'enable' => 'Habilitar', + 'error_summary' => 'Veja abaixo um resumo dos erros encontrados', + 'files_location_text' => 'O local no servidor onde os arquivos do Ushahidi foram guardados. Esse dado foi automaticamente identificado, certifique-se de que está correto. Se o campo estiver vazio, não se preocupe: isso significa que o ushahidi está instalado no diretório principal', + 'finished' => 'Encerrado', + 'general' => 'Geral', + 'google_key' => 'Chave API Google', + 'google_key_description' => 'Qualquer pessoa pode obter uma chave api. Obtenha a sua agora.', + 'go_back' => 'Voltar', + 'index' => array( + 'advanced' => 'INSTALAÇÃO AVANÇADA', + 'advanced_installation_description' => 'Complete toda a configuração básica por meio das 5 etapas desse processo. Elas abarcam servidor, mapa, nome do site e detalhes de contato.', + 'basic_installation' => 'INSTALAÇÃO BÁSICA', + 'basic_installation_description' => 'Fácil e rápido. Só é necessário ter em mãos o diretório root de seu site e as informações de sua database. Escolha essa opção se preferir o funcionamento rápido, e as outras configurações podem ser feitas mais tarde', + 'proceed' => 'Continuar', + 'welcome' => 'Bem-vindo ao processo de instalação do servidor do Ushahidi. Escolha o tipo de instalação que você prefere a seguir.', + ) , + 'installation_successful' => 'Instalação feita com sucesso', + 'mail_server' => 'Servidor de email', + 'mail_server_host' => 'Host do servidor de email', + 'mail_server_host_description' => 'Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Senha do servidor de email', + 'mail_server_password_description' => 'Senha usada normalmente para acessar seu email', + 'mail_server_port' => 'Porta do servidor de email', + 'mail_server_port_description' => 'Portas comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tipo de servidor de email', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) ou Post Office Protocol (POP). Qual é a diferença?', + 'mail_server_username' => 'Nome de usuário do servidor de email', + 'mail_server_username_description' => 'Caso esteja usando Gmail, Hotmail ou Yahoo Mail, forneça o email completo como nome de usuário', + 'map' => 'Mapa', + 'map_provider' => 'Provedor do mapa', + 'map_provider_description' => 'O Ushahidi funciona da mesma forma com qualquer um desses provedores de mapas: Google, Bing, Yahoo ou Open Street Map. Escolha o que apresentar mais detalhes sobre a sua área.', + 'other_steps' => 'Outros passos...', + 'password' => 'Senha', + 'password_description' => 'Senha da database', + 'previous' => 'Anterior', + 'restart_apache' => 'Reinicie o seu servidor Apache', + 'select_mail_server_ssl' => 'Habilitar ou desabilitar SSL', + 'select_mail_server_ssl_description' => 'Alguns servidores de email oferecem a opção de usar SSL ao fazer uma conexão. É recomendável usar SSL para prover um nível maior de segurança.', + 'setup_sms' => 'Configurar servidor de SMS', + 'site_email' => 'Email do site', + 'site_email_alerts' => 'Alerta de email do site', + 'site_email_alerts_description' => 'Quando os visitantes do seu site inscreverem-se para receber alertas de email, eles receberão mensagens por meio desse endereço. Não é necessário que seja o mesmo email fornecido como email do site.', + 'site_email_description' => 'Os comunicados do site serão canalizados através deste endereço', + 'site_name' => 'Nome do site', + 'site_name_description' => 'Nome do seu site', + 'site_tagline' => 'Slogan do site', + 'site_tagline_description' => 'Seu slogan', + 'summary' => array( + 'text_1' => 'Os arquivos e pastas a seguir podem ser gravadas pelo seu servidor web', + 'text_2' => '

Veja aqui instruções sobre como mudar permissões de arquivo:

+ ', + 'text_3' => 'Antes de começar, é preciso certificar-se de que os arquivos e pastas a seguir podem ser gravadas pelo seu servidor web. Esse processo envolve alteração de permissões.', + 'text_4' => 'Para prosseguir com o processo de instalação, tenha em mãos os seguintes dados:', + ) , + 'table_prefix' => 'Prefixo da tabela', + 'table_prefix_description' => 'Normalmente, não é preciso mudar o prefixo da tabela. No entanto, caso você queira rodar várias instalações do Ushahidi em uma única database, é preciso mudar o prefixo aqui.', + 'title' => 'Título', + 'to_login' => 'Para fazer login, acesse', + 'upload_data' => 'Carregar dados de relato', + 'username' => 'Nome de usuário', + 'username_description' => 'Nome de usuário na database', + 'use_credentials' => 'e use as credenciais a seguir', + 'view_site' => 'Ver o site', +); diff --git a/application/i18n/pt_BR/layer.php b/application/i18n/pt_BR/layer.php new file mode 100755 index 0000000000..784c050e1f --- /dev/null +++ b/application/i18n/pt_BR/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'O campo cor deve ter 6 caracteres.', + 'required' => 'É necessário escolher uma cor.', + ) , + 'layer_file' => array( + 'type' => 'O campo arquivo parece não conter um arquivo válido. Os únicos formatos aceitos são .KMZ e .KML.', + 'valid' => 'O campo arquivo parece não conter um arquivo válido.', + ) , + 'layer_name' => array( + 'length' => 'O campo nome deve ter pelo menos 3 e no máximo 80 caracteres.', + 'required' => 'É necessário fornecer o nome do campo.', + ) , + 'layer_url' => array( + 'atleast' => 'É necessário fornecer uma URL ou um arquivo KML.', + 'both' => 'Não é possível fornecer ambos, URL e arquivo KML.', + 'url' => 'Forneça uma URL válida. Exemplo: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/pt_BR/libraries.php b/application/i18n/pt_BR/libraries.php new file mode 100755 index 0000000000..7ac692cb90 --- /dev/null +++ b/application/i18n/pt_BR/libraries.php @@ -0,0 +1,27 @@ + 'Não foi possível conectar com o servidor Akismet', + 'akismet_cannot_retrieve' => 'Não foi possível retornar uma resposta do Akismet', + 'api_library_not_found' => 'Não foi possível encontrar a biblioteca da API %s, para a class %s. Verifique no painel da tabela de roteamento de sua API.', + 'askimet_invalid_apikey' => 'A chave API Akismet não é válida.', + 'clickatell_fopen_error' => 'Erro durante a execução do método de envio!
Verifique se o PHP tem suporte OpenSSL e verifique se a versão de PHP é mais atual que 5.2', + 'clickatell_message_too_long' => 'Sua mensagem de unicode é muito longa (Tamanho atual=', + 'clickatell_no_destination_address' => 'Especifique um endereço de destino (PARA)', + 'clickatell_no_sender_address' => 'Especifique um endereço fonte (DE)', + 'clickatell_unicode_message_too_long' => 'Sua mensagem de unicode é muito longa (Tamanho atual=', + 'clickatell_unsupported_method' => 'Método de envio não suportado', + 'invalid_api_library' => 'A biblioteca da API %s é inválida. Todas as bibliotecas da API devem ser subclasses de %s.', + 'upgrade_directory_not_deleted' => 'Não foi possível apagar o diretório %s', + 'upgrade_extracting_error' => 'Erro durante a extração: %s', + 'upgrade_failed' => 'Houve falha no download do último ushahidi. Código de status do HTTP', + 'upgrade_file_not_copied' => 'Não foi possível copiar o arquivo %s', + 'upgrade_file_not_deleted' => 'Não foi possível apagar o arquivo %s', + 'upgrade_title' => 'Script de atualização do Ushahidi', + 'upgrade_zip_error' => 'Não foi possível concluir o download do arquivo zipado do ushahidi %s', + 'riverid_variable_not_available' => '%s não está disponível na classe RiverID ', +); diff --git a/application/i18n/pt_BR/maintenance.php b/application/i18n/pt_BR/maintenance.php new file mode 100644 index 0000000000..66a7191163 --- /dev/null +++ b/application/i18n/pt_BR/maintenance.php @@ -0,0 +1,9 @@ + 'Desculpe, nosso site está em manutenção. Por favor, tente novamente em alguns minutos.', +); diff --git a/application/i18n/pt_BR/message.php b/application/i18n/pt_BR/message.php new file mode 100755 index 0000000000..bde8c7210c --- /dev/null +++ b/application/i18n/pt_BR/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Digite um código de segurança válido.', + 'required' => 'Digite o código de segurança.', + ) , + 'email' => array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'length' => 'O campo do email deve ter pelo menos 4 e no máximo 64 caracteres.', + 'required' => 'É necessário preencher o campo do email se a caixa de seleção tiver sido marcada.', + ) , + 'message' => array( + 'required' => 'É necessário preencher o campo comentários.', + ) , + 'name' => array( + 'length' => 'O campo nome deve ter pelo menos 3 caracteres.', + 'required' => 'É necessário preencher o campo nome.', + ) , + 'phone' => array( + 'length' => 'O telefone não é válido.', + ) , +); diff --git a/application/i18n/pt_BR/mhi.php b/application/i18n/pt_BR/mhi.php new file mode 100755 index 0000000000..2ade19c30a --- /dev/null +++ b/application/i18n/pt_BR/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Forneça um código de segurança válido.', + 'required' => 'Forneça um código de segurança.', + ) , + 'contact_email' => array( + 'email' => 'O campo email parece não conter um endereço eletrônico válido.', + 'required' => 'Forneça um email válido.', + ) , + 'contact_message' => array( + 'required' => 'É necessário preencher o campo mesagem.', + ) , + 'contact_subject' => array( + 'length' => 'O campo assunto deve ter pelo menos 3 caracteres', + 'required' => 'É necessário preencher o campo assunto.', + ) , +); diff --git a/application/i18n/pt_BR/notifications.php b/application/i18n/pt_BR/notifications.php new file mode 100755 index 0000000000..410f634d9e --- /dev/null +++ b/application/i18n/pt_BR/notifications.php @@ -0,0 +1,35 @@ + 'A mensagem a seguir foi enviada a partir do seu site', + 'admin_login_url' => 'Login de administrador', + 'admin_new_comment' => array( + 'message' => 'Um novo comentário foi enviado para o seu site em resposta a:', + 'subject' => 'Novo comentário', + ) , + 'admin_new_email' => array( + 'message' => 'Uma nova mensagem de email foi enviada para o seu site.', + 'subject' => 'Nova mensagem de email', + ) , + 'admin_new_report' => array( + 'message' => 'Um novo relato foi enviado para o seu site.', + 'subject' => 'Novo relato', + ) , + 'admin_new_sms' => array( + 'message' => 'Uma nova mensagem de texto foi enviada para o seu site.', + 'subject' => 'Nova mensagem de texto', + ) , + 'member_new_alert' => array( + 'message' => 'Você recebeu um novo alerta', + 'subject' => 'Novo Alerta!', + ) , + 'member_new_message' => array( + 'message' => 'Você recebeu uma mensagem privada', + 'subject' => 'Nova mensagem privada', + 'footer' => 'Para responder por favor vá para:', + ) , +); diff --git a/application/i18n/pt_BR/page.php b/application/i18n/pt_BR/page.php new file mode 100644 index 0000000000..27590ee954 --- /dev/null +++ b/application/i18n/pt_BR/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Por favor insira um título de página.', + 'length' => 'Título da página deve ser no mínimo 3 e no máximo 150 caracteres.', + ) , + 'page_tab' => array( + 'required' => 'Por favor insira um nome de guia da página.', + ) , + 'page_description' => array( + 'required' => 'Por favor insira uma descrição da página.', + ) , +); diff --git a/application/i18n/pt_BR/permissions.php b/application/i18n/pt_BR/permissions.php new file mode 100644 index 0000000000..2dc0702ca3 --- /dev/null +++ b/application/i18n/pt_BR/permissions.php @@ -0,0 +1,27 @@ + 'Ver Relatos', + 'reports_edit' => 'Criar/Editar/Excluir Relatos', + 'reports_approve' => 'Aprovar Relatos', + 'reports_verify' => 'Verificar Relatos', + 'reports_comments' => 'Gerenciar Comentários dos Relatos', + 'reports_download' => 'Descarregar Relatos', + 'reports_upload' => 'Carregar Relatos', + 'messages' => 'Gerenciar Mensagens', + 'messages_reporters' => 'Gerenciar Relatores de Mensagens', + 'stats' => 'Ver estatísticas', + 'settings' => 'Modificar configurações', + 'manage' => 'Gerenciar Painel', + 'users' => 'Gerenciar Usuários', + 'manage_roles' => 'Gerenciar Funções', + 'checkin' => 'Permitir checkin', + 'checkin_admin' => 'Gerenciar checkins', + 'admin_ui' => 'Acesse UI de administração', + 'member_ui' => 'Acesse UI de membros', + 'delete_all_reports' => 'Deletar todos os relatos', +); diff --git a/application/i18n/pt_BR/private_message.php b/application/i18n/pt_BR/private_message.php new file mode 100644 index 0000000000..b03973a2d8 --- /dev/null +++ b/application/i18n/pt_BR/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'ID pai deve ser numérico', + ) , + 'private_to' => array( + 'required' => 'O campo Para é requerido', + 'exists' => 'O usuário a que você está tentar enviar uma mensagem não existe', + ) , + 'private_subject' => array( + 'required' => 'O campo assunto é obrigatório', + 'length' => 'Assunto deve ter entre 3 e 150 caracteres', + ) , + 'private_message' => array( + 'required' => 'O campo de mensagem é necessária', + ) , +); diff --git a/application/i18n/pt_BR/report.php b/application/i18n/pt_BR/report.php new file mode 100755 index 0000000000..ed0becd9b5 --- /dev/null +++ b/application/i18n/pt_BR/report.php @@ -0,0 +1,139 @@ + 'erro!', + 'country_name' => array( + 'single_country' => 'Essa implantação se estende dentro de um único país. Por favor, verifique se o local está dentro do referido país %s.', + ) , + 'custom_field' => array( + 'values' => 'Por favor, preencha um valor válido para o campo "%s"', + 'numeric' => 'O campo "%s" deve ser numérico.', + 'required' => 'É necessário preencher o campo "%s".', + 'not_exist' => 'O campo "%s" não existe.', + 'permission' => 'O campo "%s" não pode ser editado pela sua conta.', + 'email' => 'O campo "%s" deve conter um endereço de email válido.', + 'phone' => 'O campo "%s" deve conter um número de telefone válido.', + 'date_mmddyyyy' => 'O campo "%s" deve conter uma data válida no formato americano (MM/DD/YYYY)', + 'date_ddmmyyyy' => 'O campo "%s" deve conter uma data válida (DD/MM/YYYY)', + ) , + 'data_include' => array( + 'between' => 'Selecione um item válido para incluir no download.', + 'numeric' => 'Selecione um item válido para incluir no download.', + ) , + 'data_active' => array( + 'between' => 'Por favor, selecione "Relatos Aguardando Aprovação" ou "Relatos Aprovados" ou ambos.', + 'numeric' => 'Por favor, selecione "Relatos Aguardando Aprovação" ou "Relatos Aprovados" ou ambos.', + 'required' => 'Por favor, selecione "Relatos Aguardando Aprovação" ou "Relatos aprovados" ou ambos.', + ) , + 'data_verified' => array( + 'between' => 'Por favor, selecione "Relatos Aguardando Verificação" ou "Relatos Verificados" ou ambos.', + 'numeric' => 'Por favor, selecione "Relatos Aguardando Verificação" ou "Relatos Verificados" ou ambos.', + 'required' => 'Por favor, selecione "Relatos Aguardando Verificação" ou "Relatos Verificados" ou ambos.', + ) , + 'data_point' => array( + 'between' => 'Selecione um tipo válido de relato para baixar.', + 'numeric' => 'Selecione um tipo válido de relato para baixar.', + 'required' => 'Selecione um tipo válido de relato para baixar.', + ) , + 'format' => array( + 'required' => 'Você deve escolher um formato para download. Escolha entre CSV ou XML.', + 'valid' => 'Por favor, escolha um formato válido no qual descarregar seus relatos', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'O campo da data inicial parece não conter uma data válida.', + 'range' => 'Digite uma data inicial válida, não pode ser posterior a data de hoje.', + ) , + 'incident_active' => array( + 'between' => 'Forneça dados válidos para o campo aprove esse relato.', + 'required' => 'Forneça dados válidos para o campo aprove esse relato.', + ) , + 'incident_ampm' => array( + 'validvalues' => 'O campo am/pm parece não conter dados válidos.', + ) , + 'incident_category' => array( + 'numeric' => 'O campo categoria parece não conter uma categoria válida.', + 'required' => 'É necessário preencher o campo categoria.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'O campo data parece não conter uma data válida.', + 'date_mmddyyyy' => 'O campo data parece não conter uma data válida.', + 'required' => 'É necessário preencher o campo data.', + ) , + 'incident_description' => array( + 'required' => 'É necessário preencher o campo descrição.', + ) , + 'incident_hour' => array( + 'between' => 'O campo horário parece não conter uma hora válida.', + 'required' => 'É necessário preencher o campo horário.', + ) , + 'incident_information' => array( + 'alpha' => 'Forneça dados válidos para o campo probabilidade da informação.', + 'length' => 'Forneça dados válidos para o campo probabilidade da informação.', + ) , + 'incident_minute' => array( + 'between' => 'O campo horário parece não conter uma hora válida.', + 'required' => 'É necessário preencher o campo horário.', + ) , + 'incident_news' => array( + 'url' => 'O link da fonte de notícias parece não conter uma URL válida.', + ) , + 'incident_photo' => array( + 'size' => 'Certifique-se de que o tamanho das fotos enviadas está limitado a 2MB.', + 'type' => 'O campo de envio de fotos parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF.', + 'valid' => 'O campo de envio de fotos parece não conter um arquivo válido.', + ) , + 'incident_source' => array( + 'alpha' => 'Forneça dados válidos para o campo confiabilidade da fonte.', + 'length' => 'Forneça dados válidos para o campo confiabilidade da fonte.', + ) , + 'incident_title' => array( + 'length' => 'O campo título deve ter pelo menos 3 e no máximo 200 caracteres.', + 'required' => 'É necessário preencher o campo título.', + 'csrf' => 'Possível ataque CSRF. Você realmente pretendia criar/editar um relato?', + ) , + 'incident_verified' => array( + 'between' => 'Forneça dados válidos para o campo verificar esse relato.', + 'required' => 'Forneça dados válidos para o campo verificar esse relato.', + ) , + 'incident_video' => array( + 'url' => 'O link do vídeo parece não conter uma URL válida.', + ) , + 'latitude' => array( + 'between' => 'O campo latitude parece não conter uma latitude válida.', + 'required' => 'É necessário preencher o campo latitude. Clique no mapa para apontar um local.', + ) , + 'locale' => array( + 'alpha_dash' => 'O campo locale apresenta um valor incorreto. ', + 'exists' => 'Esse relato já tem uma tradução nesse idioma.', + 'length' => 'O campo locale apresenta um valor incorreto. ', + 'locale' => 'O relato original e a tradução apresentam o mesmo locale (idioma).', + 'required' => 'É necessário fornecer o locale.', + ) , + 'location_name' => array( + 'length' => 'O nome do local deve ter pelo menos 3 e no máximo 200 caracteres.', + 'required' => 'É necessário preencher o campo local.', + ) , + 'longitude' => array( + 'between' => 'O campo longitude parece não conter uma longitude válida.', + 'required' => 'É necessário preencher o campo longitude. Clique no mapa para apontar um local.', + ) , + 'person_email' => array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'length' => 'O campo de email deve ter pelo menos 4 e no máximo 64 caracteres.', + ) , + 'person_first' => array( + 'length' => 'O nome deve ter pelo menos 3 e no máximo 100 caracteres.', + ) , + 'person_last' => array( + 'length' => 'O sobrenome deve ter pelo menos 3 e no máximo 100 caracteres.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'O campo da data final parece não conter uma data válida.', + 'range' => 'Digite uma data inicial válida, não pode ser posterior a data de hoje.', + 'range_greater' => 'A data inicial não pode ter posterior à data final.', + ) , +); diff --git a/application/i18n/pt_BR/reporters.php b/application/i18n/pt_BR/reporters.php new file mode 100755 index 0000000000..da82cd179e --- /dev/null +++ b/application/i18n/pt_BR/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'O campo latitude parece não conter uma latitude válida.', + 'required' => 'O campo latitude é obrigatório. Por favor clique no mapa para mapear a posição.', + ) , + 'level_id' => array( + 'numeric' => 'O campo Nível Repórter parece não conter um Nível válido? ', + 'required' => 'O campo Nível Repórter parece não conter um Nível válido? ', + ) , + 'location_name' => array( + 'length' => 'O campo localização precisa ter no mínimo 3 e no máximo 200 caracteres.', + 'required' => 'O campo localização é obrigatório.', + ) , + 'longitude' => array( + 'between' => 'O campo longitude não parece conter uma longitude válida.', + 'required' => 'O campo longitude é obrigatório. Por favor clique no mapa para mapear a localização.', + ) , + 'reporter_id' => array( + 'numeric' => 'Repórter Inválido', + 'required' => 'Repórter Inválido', + ) , +); diff --git a/application/i18n/pt_BR/reports.php b/application/i18n/pt_BR/reports.php new file mode 100644 index 0000000000..33ca79ed8e --- /dev/null +++ b/application/i18n/pt_BR/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Por favor, verifique se checou um item', + 'numeric' => 'Por favor, verifique se checou um item', + 'categories_required' => 'Relatos devem ser categorizados antes de poderem ser aprovados', + ) , + 'action' => array( + 'permission' => 'Você não tem permissão para executar esta ação', + ) , + 'uploadfile' => array( + 'required' => 'Você deve escolher um arquivo para carregar', + 'type' => 'O arquivo a carregar deve estar em formato .csv ou .xml.', + 'valid' => 'O campo de carregamento de arquivo não parece conter um arquivo válido', + ) , +); diff --git a/application/i18n/pt_BR/roles.php b/application/i18n/pt_BR/roles.php new file mode 100755 index 0000000000..c29808eb2d --- /dev/null +++ b/application/i18n/pt_BR/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'O campo descrição deve ter pelo menos 3 e no máximo 100 caracteres.', + 'required' => 'É necessário preencher o campo descrição.', + ) , + 'name' => array( + 'alpha_numeric' => 'O campo nome deve conter apenas letras e números.', + 'length' => 'O campo nome deve ter pelo menos 2 e no máximo 30 caracteres.', + 'nomodify' => 'O perfil de SuperAdmin não pode ser modificado.', + 'required' => 'O campo nome precisa ser preenchido.', + ) , + 'access_level' => array( + 'numeric' => 'Campo Nível de acesso deve ser um número entre 0 - 100.', + 'required' => 'Campo Nível de acesso deve ser um número entre 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Campo de permissões deve ser um número entre 0 - 100.', + ) , +); diff --git a/application/i18n/pt_BR/settings.php b/application/i18n/pt_BR/settings.php new file mode 100755 index 0000000000..62352b1b96 --- /dev/null +++ b/application/i18n/pt_BR/settings.php @@ -0,0 +1,234 @@ + array( + 'between' => 'O campo de permissão de comentários parece não conter dados válidos.', + 'required' => 'É necessário preencher o campo permissão de comentários.', + ) , + 'allow_feed' => array( + 'between' => 'O campo de inclusão de feed parece não conter dados válidos.', + 'required' => 'É necessário preencher o campo inclusão de feed.', + ) , + 'allow_alerts' => array( + 'between' => 'O campo permitir alertas não parece conter um valor válido.', + 'required' => 'O campo permitir alertas é necessário.', + ) , + 'allow_reports' => array( + 'between' => 'O campo de permissão de relatos parece não conter dados válidos.', + 'required' => 'É necessário preencher o campo permissão de relatos.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'O campo de compartilhamento de estatísticas parece não conter dados válidos.', + 'required' => 'É necessário preencher o campo de compartilhamento de estatísticas.', + ) , + 'api' => array( + 'default_record_limit' => 'Quantidade padrão de recordes a ser buscada por solicitação da API', + 'maximum_record_limit' => 'Quantidade máxima de recordes a ser buscada por solicitação da API', + 'maximum_requests_per_ip_address' => 'Quantidade máxima de solicitações à API por endereço de IP.', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'O campo Akismet parece não conter dados válidos.', + 'length' => 'O campo Akismet parece não conter dados válidos.', + ) , + 'banner_image' => array( + 'type' => 'O campo de Banner do Site parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF.', + 'size' => 'Por favor, certifique-se de que a "Imagem do Banner" ocupa menos de 250 KB.', + 'valid' => 'O campo "Imagem do Banner" parece não conter um arquivo válido.', + ) , + 'cache_pages' => array( + 'between' => 'É necessário preencher o campo cache.', + 'required' => 'O campo cache parece não conter dados válidos.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'O campo cache parece não conter dados válidos.', + 'required' => 'É necessário preencher o campo vida útil do cache.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'O servidor parece não estar configurado para lidar com URLs amigáveis. É preciso alterar essa configuração no servidor antes de habilitar URLs amigáveis. Veja mais informações sobre URLs amigáveis no fórum', + 'clean_url_enabled' => 'Essa opção torna o Ushahidi acessível via "URLs amigáveis", sem "index.php" na URL.', + 'enable_clean_url' => 'Permitir URLs amigáveis', + 'title' => 'URLs amigáveis', + ) , + 'clickatell_api' => array( + 'length' => 'O nome número da API Clickatell não pode ter mais de 20 caracteres.', + 'required' => 'É necessário fornecer um número de API Clickatell.', + ) , + 'clickatell_password' => array( + 'length' => 'A senha do Clickatell deve ter pelo menos 5 e no máximo 50 caracteres.', + 'required' => 'É necessário fornecer uma senha no Clickatell.', + ) , + 'clickatell_username' => array( + 'length' => 'O nome de usuário Clickatell não pode ter mais de 50 caracteres.', + 'required' => 'É necessário fornecer um nome de usuário no Clickatell.', + ) , + 'configure_map' => 'Configurar mapa', + 'default_location' => 'Localização padrão', + 'default_map_all' => array( + 'alpha_numeric' => 'O campo cor parece não conter dados válidos.', + 'length' => 'O campo cor não pode ter mais que seis 6 caracteres.', + 'required' => 'É necessário preencher o campo cor.', + ) , + 'default_map_view' => 'Visualização padrão do mapa', + 'default_zoom_level' => 'Nível padrão de zoom', + 'download_city_list' => 'Buscar cidades no Geonames', + 'email_host' => array( + 'length' => 'A porta do servidor de email é muito longa.', + 'numeric' => 'A porta do servidor só pode conter números.', + ) , + 'email_password' => array( + 'length' => 'A senha do servidor do email deve ter pelo menos 5 e no máximo 50 caracteres.', + 'required' => 'É necessário fornecer a senha do email do servidor.', + ) , + 'email_port' => array( + 'length' => 'A porta do servidor de email é muito longa.', + 'numeric' => 'A porta do servidor só pode conter números.', + ) , + 'email_servertype' => array( + 'length' => 'A porta do servidor de email é muito longa.', + 'required' => 'É necessário fornecer um tipo de servidor de email.', + ) , + 'email_username' => array( + 'length' => 'O nome de usuário do servidor de email não pode ter mais de 50 caracteres.', + 'required' => 'É necessário fornecer o email do servidor.', + ) , + 'facebook' => array( + 'title' => 'Opções de configuração do Facebook.', + 'description' => 'Para obter as informações abaixo, você precisa criar um novo aplicativo no Facebook.', + 'description_2' => 'Essas configurações permitem que os usuários façam login via Facebook, isto não cria um aplicativo do Facebook para sua implantação', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'O campo Google Analytics deve conter um Web Property ID válido no formato UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Habilitar HTTPS', + 'https_disabled' => 'Esta opção faz Ushahidi ser acessado no modo inseguro; sem "https://" no prefixo de URL', + 'https_enabled' => 'Esta opção faz Ushahidi ser acessado em modo seguro, com https no prefixo de URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'O campo de itens por página (no site) parece não conter dados válidos.', + 'required' => 'É necessário preencherr o campo de itens por página (no site).', + ) , + 'items_per_page_admin' => array( + 'between' => 'O campo de itens por página (Admin) parece não conter dados válidos.', + 'required' => 'É necessário preencher o campo de itens por página (Admin).', + ) , + 'map' => array( + 'default_location' => 'Configurar o provedor de mapa é um processo simples. Escolha um provedor, obtenha uma chave API do provedor do site, e digite a chave API.', + 'zoom' => 'Nível de zoom', + ) , + 'map_provider' => array( + 'choose' => 'Escolha um provedor de mapa', + 'enter_api' => 'Digite a nova chave API', + 'get_api' => 'Consiga uma chave API', + 'info' => 'Configurar o provedor de mapa é um processo simples. Escolha um provedor, obtenha uma chave API do provedor do site, e digite a chave API.', + 'name' => 'Provedor de mapa', + ) , + 'map_timeline' => 'Mapa da Linha do Tempo', + 'map_settings' => 'Configuração do mapa', + 'multiple_countries' => 'Essa versão do Ushahidi será usada em vários países?', + 'select_default_location' => 'Escolha um país padrão', + 'set_location' => 'Clique e arraste para o mapa para definir a localização exata.', + 'site' => array( + 'allow_clustering' => 'Mostrar relatos em um mapa', + 'allow_comments' => 'Permitir que usuários enviem comentários nos relatos', + 'allow_feed' => 'Incluir feed de notícias de RSS no site', + 'allow_alerts' => 'Permitir que os usuários de subscrição de alertas', + 'allow_reports' => 'Permitir que usuários enviem relatos?', + 'api_akismet' => 'Chave do Akismet', + 'banner' => 'Banner do site', + 'blocks_per_row' => 'Blocos por linha', + 'cache_pages' => 'Páginas em cache', + 'cache_pages_lifetime' => 'Vida útil do cache', + 'checkins' => 'Ativar Checkins', + 'copyright_statement' => 'Declaração de Copyright do site', + 'default_category_colors' => 'Cor padrão para todas as categorias', + 'default_category_icons' => 'Ícone padrão para todas as categorias', + 'delete_banner_image' => 'Deletar a imagem do Banner', + 'delete_default_map_all_icon' => 'Deletar ícone Padrão', + 'display_contact_page' => 'Exibir página de contato?', + 'display_howtohelp_page' => 'Exibir a página Como ajudar?', + 'email_alerts' => 'Alertas por email', + 'email_notice' => 'Para receber alertas por email, configure sua conta de email.', + 'email_site' => 'E-mail do site', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Itens por página - Capa', + 'items_per_page_admin' => 'Itens por página - Admin', + 'kismet_notice' => 'Previna spam nos comentários usando Akismet do Automattic.
Você receberá uma chave API ao registrar-se com o seu nome de usuário no WordPress.com.', + 'laconica_configuration' => 'Credenciais no Laconica', + 'laconica_site' => 'Site Laconica ', + 'language' => 'Idioma do site', + 'manually_approve_users' => 'Aprovação manual de usuários', + 'message' => 'Mensagem do site', + 'name' => 'Nome do site', + 'private_deployment' => 'Plataforma privada', + 'require_email_confirmation' => 'Requerer confirmação de Email do usuário', + 'submit_report_message' => 'Mensagem para Envio de Relato', + 'share_site_stats' => 'Compartilhe estatísticas com API', + 'tagline' => 'Slogan do site', + 'timezone' => 'Timezone', + 'title' => 'Configurações do site', + 'twitter_configuration' => 'Credenciais no Twitter', + 'twitter_hashtags' => 'Hashtags, separadas por vírgulas ', + ) , + 'site_email' => array( + 'email' => 'O campo do email parece não conter um endereço de email válido.', + 'length' => 'O campo de email do site deve ter pelo menos 4 e no máximo 100 caracteres.', + ) , + 'site_name' => array( + 'length' => 'O campo nome do site deve ter pelo menos 3 e no máximo 50 caracteres.', + 'required' => 'É necessário fornecer o nome do site.', + ) , + 'site_tagline' => array( + 'length' => 'O campo nome de slogan deve ter pelo menos 3 e no máximo 100 caracteres.', + 'required' => 'É necessário preencher o campo de slogan.', + ) , + 'sms' => array( + 'clickatell_api' => 'Número da API Clickatell', + 'clickatell_check_balance' => 'Verifique o saldo disponpivel no Clickatell', + 'clickatell_load_balance' => 'Creditar', + 'clickatell_password' => 'Senha no Clickatell', + 'clickatell_text_1' => 'Inscreva-se no serviço Clickatells clicando aqui.', + 'clickatell_text_2' => 'Forneça os seus dados de acesso no Clickatell abaixo', + 'clickatell_username' => 'Nome de usuário no Clickatell', + 'flsms_description' => 'FrontlineSMS é um software livre e de código aberto que permite aos usuários enviar e receber mensagens de texto com grandes grupos de pessoas através de telefones celulares. Clique na caixa abaixo para baixar a versão mais recente do FrontlineSMS.com', + 'flsms_download' => 'Descarregue e instale FrontlineSMS', + 'flsms_instructions' => 'Instruções detalhadas sobre como enviar SMS a partir de sua instalação FronlineSMS estão disponíveis aqui. O hyperlink e a chave API a seguir são necessários para configurar a sincronização com FrontlineSMS.', + 'flsms_link' => 'Copie e cole no campo FrontlineSMS "Endereço"', + 'flsms_key' => 'Copie e cole isto no campo de FrontlineSMS "Ushahidi API Key"', + 'flsms_synchronize' => 'Conectando FrontlineSMS para esta implantação Ushahidi', + 'flsms_text_1' => 'Forneça o número de telefone conectado ao Frontline SMS no campo abaixo.', + 'flsms_text_2' => 'Forneça o número sem nenhum + ou traços baixos no campo abaixo.', + 'option_1' => '1ª opção: Use Frontline SMS', + 'option_2' => '2ª opção: Use a Global SMS Gateway', + 'title' => 'Opções de configuração de SMS', + ) , + 'sms_no1' => array( + 'length' => 'O 1º campo do número de telefone parece não conter dados válidos.', + 'numeric' => 'O 1º campo do número de telefone deve conter apenas números.', + ) , + 'sms_no2' => array( + 'length' => 'O 2º campo do número de telefone é muito longo.', + 'numeric' => 'O 2º campo do número de telefone deve conter apenas números.', + ) , + 'sms_no3' => array( + 'length' => 'O 3º campo do número de telefone é muito longo.', + 'numeric' => 'O 3º campo do número de telefone deve conter apenas números.', + ) , + 'twitter' => array( + 'title' => 'Opções de configuração do Twitter.', + 'description' => 'Para obter as informações abaixo, configure sua instalação como um nova aplicação do Twitter em', + 'api_key' => '"Consumer Key" (Chave do Consumidor)', + 'api_key_secret' => '"Consumer secret" (Segredo do consumidor)', + 'token' => '"Access Token" (Token de Acesso)', + 'token_secret' => '"Access Token Secret" (Segredo do Token de Acesso)', + ) , + 'test_settings' => 'Configurações de teste', +); diff --git a/application/i18n/pt_BR/sharing.php b/application/i18n/pt_BR/sharing.php new file mode 100755 index 0000000000..e921a3f748 --- /dev/null +++ b/application/i18n/pt_BR/sharing.php @@ -0,0 +1,25 @@ + 'Data de inscrição', + 'date_added' => 'Data do envio', + 'last_access' => 'Último acesso', + 'sharing_color' => array( + 'length' => 'O campo cor deve ter 6 caracteres.', + 'required' => 'É necessário escolher uma cor.', + ) , + 'sharing_name' => array( + 'length' => 'O compartilhamento parece não ter um nome válido.', + 'required' => 'É preciso ter um nome para o compartilhamento.', + ) , + 'sharing_url' => array( + 'exists' => 'A URL do site já existe.', + 'length' => 'A URL do site parece não ser válida.', + 'required' => 'É necessário fornecer a URL do site.', + 'url' => 'O campo de URL do site parece não conter uma URL válida.', + ) , +); diff --git a/application/i18n/pt_BR/stats.php b/application/i18n/pt_BR/stats.php new file mode 100755 index 0000000000..abb8505e73 --- /dev/null +++ b/application/i18n/pt_BR/stats.php @@ -0,0 +1,42 @@ + 'Aprovado', + 'categories' => 'Categorias', + 'category_impact' => 'Impacto das categorias', + 'category_impact_description' => 'Esse gráfico fornece uma visualização linear dos relatos por categorias no decorrer do tempo. Role da esquerda para a direita para ver uma comparação das diferentes categorias. Passe o mouse sob o gráfico para obter mais detalhes.', + 'choose_date_range' => 'Escolha um intervalo de tempo', + 'countries' => 'Países', + 'country' => 'País', + 'country_breakdown' => 'Divisão por países', + 'description' => 'Olá, essa é a seção de estatísticas. Haverá descrições gerais aqui, em breve. Por hora, navegue usando os links das sub-categorias acima.', + 'error' => 'Erro', + 'glossary' => 'Glossário', + 'hit_summary' => 'Súmario de acessos', + 'legend' => 'Legenda', + 'pageviews' => 'Páginas vistas', + 'pageviews_description' => 'Quantidade total de páginas visitadas no site até agora.', + 'reports' => 'Relatos', + 'reports_categories' => 'Categorias de relatos', + 'reports_statistics' => 'Estatísticas de relatos', + 'reports_status' => 'Status de relatos', + 'report_punchcard' => 'Relatos detalhados', + 'report_stats' => 'Estatísticas de relatos', + 'stats_not_setup' => 'Estatísticas não configuradas', + 'time_range_1' => '1 mês', + 'time_range_2' => '3 meses', + 'time_range_3' => '6 meses', + 'time_range_all' => 'Todos', + 'unapproved' => 'Não aprovados', + 'unique_visitors' => 'Visitantes únicos', + 'unique_visitors_description' => 'Quantidade de indivíduos visitando o seu site; visitantes exclusivos são contados por meio do uso de cookies. Caso o visitante não tenha habilitado o uso de cookies, eles serão identificados usando um conjunto simples de observações do endereço de IP, resolução, nevegador, plugins, sistema operacional, etc.', + 'unverified' => 'Não verificados', + 'verified' => 'Verificado', + 'visitor_summary' => 'Sumário dos visitantes', + 'visits' => 'Visitas', + 'visits_description' => 'Uma visita é o registro de uma única pessoa acessando o seu site mais de 30 minutos após a última página vista.', +); diff --git a/application/i18n/pt_BR/tooltips.php b/application/i18n/pt_BR/tooltips.php new file mode 100755 index 0000000000..bc5875798e --- /dev/null +++ b/application/i18n/pt_BR/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => 'Isso inclui o relato em categorias adicionais. Se você selecionar Categoria 1 aqui e o relato já tem a Categoria 2 vinculada a ele, o relato então terá ambas Categoria 1 e Categoria 2.', + 'approve' => 'Aprova um relato ou não. Se aprovado, ele aparecerá publicamente.', + 'assign_badge' => 'Você será capaz de atribuir uma emblema para o usuário gatilho. Escolha o emblema que é atribuído aqui.', + 'between_times' => 'Trata-se de uma série de horas e/ou minutos entre duas vezes no formato de 24 horas. Se introduzir uma hora mais cedo no segundo campo, será invertida com o primeiro. Estes tempos devem estar dentro de um único dia. Além disso, este tempo é verificado com o que você configurou nas configurações do site e não necessariamente o fuso horário do usuário interagindo com a sua projeto. Deixe em 0:00 para 00:00 para ignorar esse qualificador.', + 'category' => 'Se você gostaria de ativar gatilhos somente quando uma determinada categoria for utilizada, você pode o definir aqui. Isso permitirá que um gatilho seja ativado caso uma das categorias seja utilizada. Por exemplo, caso você selecione as Categoria 1 e Categoria 2 aqui e um relato for enviado enviado utilizando as Categoria 2 e Categoria 3, ele irá passar no teste.', + 'days_of_the_week' => 'Se essas ações acontecem em determinados dias da semana, defina isso aqui. Tenha em mente o dia é determinada pelo fuso horário configurado em sua instalação. Segure shift, comando ou control para seleção de dias múltiplos.', + 'email_body' => 'Corpo do e-mail que será enviado.', + 'email_subject' => 'Assunto do e-mail que será enviado', + 'feed_id' => 'O feed pode ser todos os feeds ou feeds específicos. Se você só quer que feeds específicos ativem um gatilho, você deve escolhê-los aqui. De outra forma, você deve deixar isto como "todos"', + 'from' => 'Nome de usuário do remetente no Twitter (ou de múltiplos usuários separados por vírgulas). Se você quer ativar gatilhos somente para mensagens no twitter enviadas por um usuário específico, inclua o nome de usuário dele aqui (sem preceder por @)', + 'keywords' => 'Você pode optar por deixar em branco se você não quiser verificar as palavras-chave. Se você adicionar palavras aqui, você vai precisar separá-los com uma vírgula (,). Por exemplo, se você deseja ativar um gatilho quando alguém menciona "amor" ou "paz" em sua mensagem, você vai ter que adicionar "paz, amor" na caixa de palavras-chave.', + 'location' => 'Você pode escolher qualquer lugar ou um local específico. Se você selecionar um local específico, você será convidado para desenhar uma caixa ao redor da área que qualifica uma ação. Por exemplo, se você quer que o gatilho seja ativado quando alguém apresenta um relato no Brasil, você selecionará "área específica" e, em seguida, desenhará a caixa em torno do Brasil. Você pode fazer essas caixas tão pequenas ou tão grandes quanto queira. Você também pode desenhar múltiplas caixas.', + 'on_specific_count' => 'Este qualificador irá ativar o gatilho na contagem N-th tanto para a base de usuários toda a coletividade ou para cada usuário individual. Deixe em branco a ignorá-lo.', + 'report_title' => 'Este é o título padrão para adicionar ao relato.', + 'response' => 'Se todos os qualificadores acima passarem, o gatilho gerará uma resposta. Isto pode variar de aprovar um relato a enviar um e-mail para um usuário. Selecione a resposta aqui para ativar opções adicionais para as respostas específicas.', + 'send_to' => 'Se você selecionar "Usuário gatilho", o e-mail será enviado para o usuário que executou a ação. Se você selecionar o botão de rádio ao lado da caixa de entrada, você poderá digitar um endereço de e-mail personalizado. Isso é útil se você está montando gatilhos para notificar pessoas quando certas partes do mapa estão recebendo relatos, check-ins ou alguma outra atividade.', + 'specific_days' => 'Você pode selecionar vários dias aqui. Datas são determinadas pela definição de fuso horário implantação. A fim de padrão para todas as datas, não selecione qualquer data.', + 'trigger' => 'O gatilho é o principal componente da criação de Gatilhos de Ação . Aqui é onde você determina se gostaria que algo acontecesse quando alguém envia um relato, realiza um check-in, etc. Você será capaz de filtrar as respostas a essas ações depois de selecionar um.', + 'user' => 'O usuário pode ser qualquer um, ou um usuário específico. Se você quer que apenas usuários específicos ativem um gatilho, você deve selecioná-los aqui. Caso contrário, você deve deixar este como "qualquer um", já que a maioria dos gatilhos são criados para todos os usuários interagindo com o sistema', + 'verify' => 'Marca um relato como verificado ou não.', + ) , + 'change_picture' => 'Páginas de perfil neste site usam Gravatar. Ao clicar na imagem, você será levado para o site Gravatar onde você pode mudar a sua foto do perfil.', + 'default_value' => 'Separe cada valor com uma vírgula, por exemplo, valor1, valor2.', + 'radio_choices' => 'Separe cada valor com uma vírgula, por exemplo, valor1, valor2. No caso de você querer definir um valor padrão, terminar a sua lista de opções com :: por exemplo: Se você quiser fazer o padrão valor3, ele deve ser valor1, valor2, valor3 :: value3', + 'dropdown_choices' => 'Separar cada item escolha com uma vírgula, por exemplo, Item 1, Item 2 etc', + 'private_to' => 'Comece a digitar a lista de membros.', + 'private_subject' => 'Assunto da mensagem privada', + 'private_message' => 'Mensagem privada', + 'profile_color' => 'Você pode selecionar uma cor que vai aparecer em sua foto de perfil em seu perfil público. Esta cor também será o ponto de cor que aparece no mapa para seus checkins', + 'profile_email' => 'Seu e-mail', + 'profile_name' => 'Seu nome completo', + 'profile_new_password' => 'Se definida, esta será a sua nova senha. Deixar este campo em branco se você deseja manter a sua senha atual.', + 'profile_new_users_password' => 'Esta é uma exigência ao criar um novo usuário e será a senha de usuários. Você deve informar o seu novo usuário para alterar sua senha após entrar pela primeira vez.', + 'profile_notify' => 'Ao clicar em SIM, você receberá alertas via email sempre que um novo relato ou comentário for enviado ao seu site.', + 'profile_password' => 'Sua senha. Deixe esse campo vazio se quiser manter a sua senha atual.', + 'profile_public' => 'Seu perfil pode ser visto por qualquer pessoa na Internet se você marcar essa opção. Esta é também a maneira mais fácil de mostrar os relatos que você enviou, seus check-ins, emblemas etc, tudo em uma página', + 'profile_public_url' => 'Este é o endereço onde o seu perfil público pode ser encontrado.', + 'profile_username' => 'Não é possível mudar o nome de usuário.', + 'settings_access_level' => 'Níveis de acesso são usados ​​para restringir o acesso a dados de campo de formulário personalizado. Maiores níveis de acesso podem acessar campos de níveis mais baixos. Superadmin tem o nível mais alto de acesso (100). Dados públicos são exibido no menor nível de acesso (0). Os membros têm nível de acesso 10. Admin é o nível de acesso 90 por padrão.', + 'settings_alert_email' => 'É o endereço de email que será usado para o envio de alertas.', + 'settings_allow_alerts' => 'Permitir que usuários subscrevam alertas via web.', + 'settings_allow_clustering' => 'Permite que relatos parecidos sejam agrupados em um único ponto no site.', + 'settings_allow_comments' => 'Permite que usuários deixem comentários em relatos no site principal.', + 'settings_allow_feed' => 'Permite que feeds de RSS sejam exibidos no site principal.', + 'settings_allow_reports' => 'Permite que usuários enviem informações por meio de um formulário online.', + 'settings_api_default_record_limit' => 'Quantidade padrão de dados a serem buscados por solicitação API.', + 'settings_api_max_record_limit' => 'Quantidade máxima de dados a serem buscados por solicitação API.', + 'settings_api_max_requests_per_ip' => 'Quantidade máxima de dados a serem solicitados da API por endereço de IP.', + 'settings_banner' => 'O banner site aparece no topo da parte frontal do seu site, se o tema que você está usando oferece suporte a ele. O tamanho recomendado para esta faixa vai depender do tema que você está usando. Tenha em atenção que este vai substituir o título do site e tagline no topo da página.', + 'settings_blocks_per_row' => 'Número de colunas do bloco que serão exibidos em cada linha.', + 'settings_cache_pages' => 'Habilitar ou desabilitar page caching. Isto faz com que as páginas sejam carregadas rapidamente pois reduz o tempo de resposta. Recomendamos usar caching em sites de grande tráfico. **Lembre-se que os relatos serão preenchidos na plataforma baseado no calendário que você definiu (tempo de vida do Cache).', + 'settings_cache_pages_lifetime' => 'Marcar o tempo de vida do cache.', + 'settings_checkins' => 'Esta configuração permite o uso de checkins em seu ushahidi. Trata-se de um tipo de relato simplificado, que não passa por moderação antes da publicação e requer que o seu site seja configurado de uma determinada maneira. Ao habilitar esse recurso, certifique-se de sua configuração de fuso horário está em UTC e seu tema suporta checkins. Apenas temas com checkin estarão habilitados na página de configurações de addons/temas.', + 'settings_configure_map' => 'Marcar mapa para cobrir uma região específica ', + 'settings_default_category_colors' => 'Marcar um código de cor para todas as categorias do site', + 'settings_default_category_icons' => 'Definir um ícone para todas as categorias no site.', + 'settings_default_location' => 'Esse é o país onde o site está sendo usado', + 'settings_display_contact' => 'Liga ou desliga a seção de contato no site principal.', + 'settings_display_howtohelp' => 'Liga ou desliga a seção como ajudar no site principal.', + 'settings_display_items_per_page' => 'Quantidade de relatos exibidos por página no site principal.', + 'settings_display_items_per_page_admin' => 'Quantidade de relatos exibidos por página no painel de controle.', + 'settings_flsms_download' => 'Esse é o hub das mensagens de entrada', + 'settings_flsms_synchronize' => 'Isto sincroniza as mensagens no hub com a plataforma Ushahidi', + 'settings_flsms_text_1' => 'Números de telefones por meio dos quais as mensagens são recebidas.', + 'settings_google_analytics' => 'Rastreia visitantes do site. Veja estatísticas detalhadas sobre os visitantes', + 'settings_locale' => 'Define o idioma que será usado no site.', + 'settings_manually_approve_users' => 'Se você definir esta opção para sim, você deve aprovar cada usuário individual que cria uma conta em seu site, atribuindo-lhes funções (Membro ou seja, Administrador, Superadministrador).', + 'settings_map_provider' => 'Define qual mapa será usado no site.', + 'settings_map_timeline' => 'Isto mostra a linha do tempo com base na data e hora em que relatos foram enviados', + 'settings_private_deployment' => 'Ao definir esse valor como verdadeiro ou sim, a o seu ushahidi será privado e apenas os usuários que você especificar poderão acessar o sistema.', + 'settings_require_email_confirmation' => 'Usuários receberão um link de confirmação para clicar antes de serem autorizados a entrar se aqui é definido como sim. Se você ativar esta após a instalação aceitar usuários, ele será solicitado a confirmar a sua conta antes de serem autorizados a continuar a usá-lo.', + 'settings_server_host' => 'Esse é onde os emails são arquivados', + 'settings_server_password' => 'Este é a senha para o endereço de email que recebe relatos.', + 'settings_server_port' => 'Isto é obrigatório para aceitar conexões de entrada deste endereço de email', + 'settings_server_ssl_support' => 'É necessário para aumentar a segurança da conexão.', + 'settings_server_type' => 'É necessário para receber emails do servidor.', + 'settings_server_username' => 'É o email que recebe relatos.', + 'settings_share_site_stats' => 'Os dados de acesso são gravados no servidor controlado pelo Ushahidi. Ao habilitar esta opção, você obtém acesso aos dados de acesso através do painel de administração. Desabilitando, você não coletará dados de acesso e ficará sem acesso aos dados coletados enquanto essa função estiver desabilitada.', + 'settings_site_copyright_statement' => 'É uma boa ideia definir o copyright do seu trabalho. Para obter ajudar para determinar a melhor licença para o seuc caso, acesse http://creativecommons.org/choose/.', + 'settings_site_email' => 'É o email que receberá relatos e mensagens enviadas por meio do formulário de contato.', + 'settings_site_message' => 'Esse texto aparecerá acima do mapa, na homepage. É útil para prover informações importantes a visitantes do site.', + 'settings_site_name' => 'Trata-se do nome do site, e aparecerá no topo do site principal.', + 'settings_site_submit_report_message' => 'Esta é uma mensagem que aparecerá na página de envio de relato. Isso é bom para avisos ou instruções adicionais para os visitantes que estão reportando.', + 'settings_site_tagline' => 'Em poucas palavras, explique o que o site é.', + 'settings_site_timezone' => 'Este é o fuso horário em que seu site operará. Isso impacta quaisquer ações que você configurou que utilizem data e hora, bem como o horário padrão para relatos, seja na interação com ou no mecanismo interno do site.', + 'settings_twitter_configuration' => 'Defina a hashtag que será usada no twitter', +); diff --git a/application/i18n/pt_BR/ui_admin.php b/application/i18n/pt_BR/ui_admin.php new file mode 100755 index 0000000000..1a1d100fa8 --- /dev/null +++ b/application/i18n/pt_BR/ui_admin.php @@ -0,0 +1,329 @@ + 'Acesso negado. As informações não são válidas ou sua requisição foi recusada', + 'access_denied_others' => 'Acesso negado. Sua requisição foi processada, mas negada por limites de acesso como limite de tempo. Tente novamente mais tarde', + 'access_level' => 'Nível de Acesso', + 'actions' => 'Ações', + 'add_to_category' => 'Adicionar categoria', + 'added' => 'adicionado', + 'added_edited' => 'adicionado/editado', + 'addons' => 'Extras', + 'admin_role' => 'Administrador', + 'alerts' => 'Alertas', + 'alerts_received' => 'Alertas Recebidos', + 'all' => 'Tudo', + 'am' => 'AM', + 'anonymous' => 'Anônimo', + 'anyone_role' => 'Nenhum', + 'anywhere' => 'Algum', + 'api_banned' => 'API bloqueada', + 'api_logs' => 'Histórico de API', + 'api_settings' => 'Configurações de API', + 'api_unban' => 'PERMITIR', + 'api_unban_all' => 'PERMITIR TODOS', + 'approved' => 'aprovado', + 'approve_auto' => 'Aprovar automaticamente', + 'approve_manual' => 'Aprovar Manualmente', + 'archived' => 'Arquivado', + 'are_you_sure_you_want_to' => 'Tem certeza que deseja', + 'are_you_sure_you_want_to_delete_this_item' => 'Tem certeza que deseja apagar esse item?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Tem certeza que deseja apagar essa foto?', + 'are_you_sure_you_want_to_switch_forms' => 'Tem certeza que deseja alternar formulários', + 'assign' => 'Assinar', + 'assignments' => 'Assinaturas', + 'assign_badge' => 'Assinar Emblema', + 'author' => 'Autor', + 'author_email' => 'E-mail do autor', + 'back' => 'Voltar', + 'banip_action' => 'Bloquear IP', + 'between_times' => 'Entre tempos', + 'blocks' => 'Blocos', + 'body' => 'Corpo', + 'cancel' => 'Cancelar', + 'categories' => 'Categorias', + 'chart_display_error' => 'Erro na exibição do gráfico', + 'check_message_valid' => 'Certifique-se de que a mensagem é válida', + 'check_number' => 'Certifique-se de que o número é válido', + 'check_sms_settings' => 'Verifique suas configurações de SMS', + 'checkin_details' => 'Detalhes de Creckin', + 'checkins' => 'Verificando', + 'cities_loaded' => 'Cidades carregadas', + 'code' => 'código', + 'code_out_of_sync' => 'A versão do código não está sincronizada.', + 'color' => 'Cor', + 'comments' => 'Comentários', + 'confirmation_code' => 'Seu código de confirmação de alertas é:', + 'confirm_msg' => 'Este usuário foi', + 'count' => 'Contador', + 'country_not_found' => 'Não foi encontrado este país', + 'created_edited' => 'criado/editado', + 'create_report' => 'Criar relato', + 'critical_upgrade' => 'Atualização importante', + 'csv' => 'CSV', + 'currently_active' => 'Atualmente Ativo', + 'currently_inactive' => 'Atualmente Inativo', + 'custom_forms_insufficient_permissions' => 'Você não tem permissões suficientes para editar os seguintes campos personalizados.', + 'daily' => 'Diariamente', + 'dashboard' => 'Painel', + 'database' => 'banco de dados', + 'date_time' => 'Data e horário', + 'date_added' => 'Data de inclusão', + 'date_modified' => 'Data de modificação', + 'days_of_the_week' => 'Dias da semana', + 'db_out_of_sync' => 'A versão da DB não está sincronizada.', + 'deleted' => 'excluído', + 'delete_action' => 'Excluir', + 'delete_all' => 'Deletar todos os relatos', + 'delete_badge' => 'Apagar Emblema', + 'demo' => 'Demo', + 'description' => 'Descrição', + 'disabled' => 'Desabilitado', + 'divider_start_field' => 'Iniciar divisor', + 'divider_end_field' => 'Finalizar divisor', + 'divider_class' => 'div class', + 'download_reports' => 'Baixar relatos', + 'dropdown_choices' => 'Menu de escolhas suspensas', + 'edited' => 'EDITADO', + 'edited_by' => 'Editado por', + 'edit_action' => 'Editar', + 'edit_log' => 'Editar log', + 'email' => 'E-mail', + 'entire_collective' => 'Coletivo', + 'error_geocoding' => 'Erro na geolocalização. Erro de HTTP', + 'error_imap' => 'Biblioteca IMAP para PHP não instalada', + 'error_twitter' => 'Credentiais incorretas', + 'error_msg' => 'Erro', + 'error_post_incident' => 'Erro: não foi possível publicar o incidente.', + 'every_six_hours' => 'A cada seis horas', + 'every_twelve_hours' => 'A cada doze horas', + 'experimental' => 'Experimental', + 'faqs' => 'FAQ', + 'feed' => 'feed', + 'feedback' => 'Feedback', + 'feeds' => 'feeds', + 'field_choices' => 'Lista de Escolhas', + 'field_default' => 'Valor padrão', + 'field_datatype' => 'Tipi de Arquivo', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Remarcação', + 'field_datatype_numeric' => 'Numérico', + 'field_datatype_text' => 'Texto Livre', + 'field_height' => 'Altura (em linhas)', + 'field_hidden' => 'Campo escondido', + 'field_maxlength' => 'Quantidade máxima de caracteres', + 'field_name' => 'Nome do campo', + 'field_toggle' => 'Alternar', + 'field_toggle_no' => 'Não', + 'field_toggle_yes_close' => 'Sim, Fechado por padrão', + 'field_toggle_yes_open' => 'Sim, Aberto por padrão', + 'file_not_found_upload' => 'Não foi possível encontrar arquivo enviado', + 'file_open_error' => 'Não foi possível abrir o arquivo para leitura', + 'form_not_exists' => 'Esse formulário não existe', + 'forum' => 'Fórum', + 'free_text_field' => 'Campo de texto (texto livre)', + 'date_field' => 'Campo de Data', + 'radio_field' => 'Campo de Botões de Rádio', + 'checkbox_field' => 'Campo de Confirmação', + 'dropdown_field' => 'Campo de menu suspenso', + 'from' => 'De', + 'from_date' => 'De', + 'geonames_timeout' => 'Erro de lapso de tempo no Geonames', + 'get_help' => 'Ajuda', + 'get_more_themes' => 'Obtenha mais temas', + 'get_more_plugins' => 'Obtenha mais plugins', + 'header_actions' => 'Ações', + 'header_add_edit' => 'Adicionar/Editar', + 'header_email' => 'E-mail', + 'header_manage_users' => 'Gerenciar usuários', + 'header_role' => 'Perfil', + 'header_user' => 'Usuário', + 'help' => 'ajuda', + 'hourly' => 'Por hora', + 'incident_feed' => 'Feed de incidente para', + 'installer_info' => 'A pasta de instalação ainda existe. Exclua a pasta de instalação. É uma potencial vulnerabilidade de segurança.', + 'instance' => 'Versão', + 'instances' => 'Versões', + 'instance_details' => 'Detalhes da versão', + 'invalid_parameter' => 'Parâmetro inválido', + 'ip_address' => 'Endereço de IP', + 'is_date' => 'Esse campo é de data?', + 'ispublic_visible' => 'Quem Pode Ver Respostas', + 'ispublic_submit' => 'Quem pode enviar respostas', + 'keyword' => 'Palavra Chave', + 'keywords' => 'Palavras Chaves', + 'label_email' => 'E-mail:', + 'label_full_name' => 'Nome completo:', + 'label_password' => 'Senha:', + 'label_role' => 'Função:', + 'label_username' => 'Usuário:', + 'layers' => 'Camadas', + 'login_role' => 'Moderador', + 'logout' => 'Sair', + 'logs' => 'Históricos', + 'manage' => 'Gerenciamento', + 'manage_roles' => 'Gerenciar perfis e permissões', + 'manage_users' => 'Ver usuários', + 'manage_users_edit' => 'Acrescentar/Editar usuários', + 'manage_public_listing' => 'Gerenciar seu perfil público.', + 'mark_as' => 'Marcar Como', + 'marked_as_not_spam' => 'marcado como seguro', + 'marked_as_spam' => 'marcado as spam', + 'match_no_documents' => 'não foi companível com nenhum documento', + 'message' => 'Mensagem', + 'messages' => 'Mensagens', + 'messages_laconica' => 'Mensagens da Laconica', + 'messages_twitter' => 'Mensagens do Twitter', + 'message_sent' => 'A mensagem foi enviada.', + 'mhi' => 'MHI', + 'minute' => 'Minuto', + 'minutes' => 'Minutos', + 'missing_parameter' => 'Parâmetros ausentes', + 'moderator' => 'Moderador', + 'modified' => 'modificado', + 'modify_timezone' => 'Modificar Configuração do Timezone', + 'move_down_action' => 'descer', + 'move_up_action' => 'subir', + 'multiple_hosted_instances' => 'Versões múltiplas hospedadas', + 'my_alerts' => 'Meus Alertas', + 'my_checkins' => 'Meus Checkins', + 'my_profile' => 'Meu perfil', + 'my_reports' => 'Meus Relatos', + 'my_votes' => 'Cotos Expressos', + 'my_votes_up' => 'Positivo', + 'my_votes_down' => 'Negativo', + 'name' => 'Nome', + 'new_alert' => 'Criar Novo Alerta', + 'new_private' => 'Criar Nova Mensagem', + 'new_password' => 'Nova senha', + 'no' => 'Não', + 'none_category_explanation' => 'Esta é uma categoria especial que não aparecerá no formulário de envio de relatos para os usuários enviando relatos. ELa é usada para armazenar os relatos deixados sem categorias (relatórios não categorizados) como resultado da remoção de uma categoria.', + 'notification' => 'Notificações', + 'not_case_sensitive' => 'Não há diferenciação entre maíusculas e minúsculas', + 'not_found' => 'Não encontrado', + 'no_data' => 'Sem informações. Não há resultados a serem exibidos.', + 'no_error' => 'Não houve erro', + 'no_result_display_msg' => 'Não foram encontrados resultados.', + 'of' => 'de', + 'on_specific_count' => 'Na contagem específica', + 'openids' => 'OpenID\'s', + 'page' => 'página', + 'pages' => 'páginas', + 'page_not_found' => 'Página não encontrada', + 'page_not_found_message_with_contact' => 'Desculpe, a página que você tentou acessar não está aqui.

Você seguiu um link de outra parte de nosso site?
Se você chegou nesta página por outra parte de nosso site, por favor contacte-nos para que corrijamos nosso erro.

Você seguiu um link em outro site?
Links de outros sites podem às vezes ter perdido a validade ou conterem erros. Diga-nos de onde você veio e nós tentaremos contactar o outro site para consertar o problema.

Você digitou o URL?
Você pode ter digitado errado o endereço (URL). Verifique se usou as letras e símbolos exatos, e não trocou maiúsculas com minúsculas etc.

', + 'page_not_found_message' => 'Desculpe, a página que você tentou acessar não está aqui.', + 'parameters_used' => 'Parâmetros usados', + 'password' => 'Senha', + 'password_reset' => 'Reconfigurar senha', + 'password_reset_message_line_1' => 'Caro (a)', + 'password_reset_message_line_2' => 'Recebemos uma solicitação para reconfigurar a senha de', + 'password_reset_message_line_3' => 'Para modificar sua senha, clique no link abaixo (ou copie e cole o mesmo em seu navegador)', + 'password_reset_message_line_4' => 'Como solicitado, sua senha foi reconfigurada. Os novos detalhes são', + 'password_reset_subject' => 'Reconfiguração de senha do ushahidi', + 'phone' => 'Telefone', + 'please_select' => 'Por favor Selecione', + 'pm' => 'PM', + 'post_method_not_used' => 'Os dados não foram enviados por meio de post', + 'preview' => 'Preview', + 'private_message' => 'Mensagem', + 'private_messages' => 'Mensagens Privadas', + 'private_sent' => 'Mensagens Privadas Enviadas', + 'private_subject' => 'Assunto', + 'private_to' => 'Para', + 'public_listing' => 'Listagem pública', + 'qualifiers' => 'Qualificadores', + 'read' => 'ler', + 'relevance' => 'Relevância', + 'report_title' => 'Título do Relato', + 'report_date' => 'Data do relato', + 'reporters' => 'Contribuidores', + 'reporter_levels' => 'Níveis de relatos', + 'reports' => 'Relatos', + 'reputation' => 'Nível da Reputação', + 'required' => 'Necessário', + 'reset' => 'Reconfigurar', + 'response' => 'Resposta', + 'results' => 'Resultados', + 'revoke' => 'Revogar', + 'riverid_exists_admin' => 'Este email já tem uma conta gerenciada pelo CrowdmapID. O usuário deve utilizar a senha já existente para autenticar-se.', + 'save_settings' => 'Gravar configurações', + 'search' => 'Busca', + 'search_reports' => 'Procurar Relatos', + 'searching_for' => 'Procurando por', + 'security_info_encryption_key' => 'A chave de criptografia ainda está definido para o valor padrão. Isto é inseguro e deve ser alterada.', + 'security_info_https' => 'Este site está roda sobre HTTP. Isso deve ser redefinido para HTTPS para maior segurança.', + 'security_info_instructions' => 'Instruções estão disponíveis no Wiki:', + 'select_download_format' => 'Selecione os formatos de descarga de relatos desejados:-', + 'select_field_type' => '--- Escolha um tipo de campo ---', + 'select_item' => 'Esolha um item', + 'select_trigger_before_response' => 'Você deve selecionar um "gatilho" antes de selecionar uma Resposta.', + 'select_trigger_before_qualifiers' => 'Você deve selecionar um "gatilho" antes de selecionar uma Qualificação.', + 'sender' => 'Remetente', + 'send_to' => 'Enviar Para', + 'sent_from_website' => 'Essa mensagem foi enviada a partir de seu site às', + 'server_time' => 'Tempo do servidor', + 'settings' => 'Configurações', + 'showing_page' => 'Exibindo página', + 'showing_results' => 'Exibindo resultados', + 'shown' => 'Mostrar', + 'special_category' => 'Categoria especial', + 'special_category_explanation' => 'Essa categoria especial não será exibida no formulário de submissão de relatos. É usada em conjunção com o recurso de "Contribuidores de confiança".', + 'specific_area' => 'Área específica', + 'state' => 'Estado', + 'statistics' => 'Estatísticas', + 'stats' => 'Estatísticas', + 'stats_collection_error' => 'Falha na coleta de estatísticas. Tente novamente mais tarde.', + 'stats_collection_error_short' => 'Falha na coleta de estatísticas.', + 'specific_days' => 'Dias Específicos', + 'subject' => 'Assunto', + 'superadmin_role' => 'Super admin', + 'task_performed' => 'Tarefa executada', + 'text_field' => 'Campo de texto', + 'theme_name' => 'Nome', + 'title' => 'Gerenciar usuários', + 'timeout' => 'Erro de tempo expirado', + 'to' => 'para', + 'total_records' => 'Total de relatos', + 'to_date' => 'até', + 'translate_reports' => 'Traduzir relatos', + 'trigger' => 'Gatilho', + 'triggering_user' => 'Usuário gatilho', + 'triggers' => 'Gatilhos', + 'unapproved' => 'não aprovado', + 'unknown' => 'Desconhecido', + 'unknown_failure' => 'Falha desconhecida', + 'unread' => 'não lido', + 'unsubscribe_message' => 'Você não vai mais receber alertas de', + 'update_link' => 'Clique aqui para fazer a atualização agora', + 'upgrade_ushahidi' => 'Atualizar Ushahidi', + 'upgrade_ushahidi_status' => 'Status da atualização do Ushahidi', + 'upload_reports' => 'Fazer upload de relatos', + 'user' => 'Usuário', + 'users' => 'Usuários', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificado/Não verificada', + 'verify_unverify' => 'Verificar/Não verificar', + 'version' => 'Moderador', + 'version_available' => ' conta com uma atualização disponível.', + 'video_encoding' => 'Encode de Vídeo', + 'view_private' => 'Mensagens Privadas', + 'view_site' => 'Ver site', + 'view_report' => 'Ver Relato', + 'welcome' => 'Olá, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Sim', + 'your_search_for' => 'Sua busca por', + 'delete_all_instructions' => 'Clicar o botão abaixo deletará TODOS os relatos do banco de dados. Você deve usar isto com cuidado pois esta operação não pode ser desfeita.', + 'delete_all_backup' => 'Nós recomendamos que você faça backup do seu banco de dados antes de proceder', + 'delete_all_button' => 'Estou certo que quero deletar todos os %s relato(s) do banco de dados.', + 'delete_all_confirm' => 'Tem certeza que quer deletar todos os relatos?', + 'delete_all_no_reports' => 'Não há relatos a deletar.', + 'user_no_logins' => 'Número de logins', + 'user_last_login' => 'Último login', + 'user_confirmed_account' => 'Conta confirmada?', +); diff --git a/application/i18n/pt_BR/ui_main.php b/application/i18n/pt_BR/ui_main.php new file mode 100755 index 0000000000..9cdb6969ba --- /dev/null +++ b/application/i18n/pt_BR/ui_main.php @@ -0,0 +1,620 @@ + 'Sobre ', + 'access' => 'Acesso', + 'access_limits' => 'Limites de acesso', + 'account_name' => 'Nome de usuário', + 'actions' => 'Ações', + 'action_confirm' => 'Não é possível desfazer isso. Tem certeza que quer continuar?', + 'activate' => 'Ativar', + 'active' => 'Ativo', + 'add' => 'Adicionar', + 'added_by' => 'Adicionado por', + 'additional_data' => 'Dados adicionais', + 'additional_reports' => 'Relatos extras', + 'add_edit' => 'Adicionar/Editar', + 'add_field' => 'Adicionar campo', + 'add_language' => 'Adicionar idioma', + 'add_new' => 'Adicionar novo', + 'add_new_category' => 'Adicionar nova categoria', + 'add_translation' => 'Adicionar tradução', + 'admin' => 'Admin', + 'alerts' => 'Receber alertas', + 'alerts_alert_me' => 'Receber alertas de relatos feitos perto de:', + 'alerts_btn_send' => 'Salvar meus alertas', + 'alerts_email' => 'Email:', + 'alerts_enter_email' => 'forneça um email', + 'alerts_enter_mobile' => 'forneça um telefone celular, com código de país', + 'alerts_get' => 'Receber alertas', + 'alert_has_been' => 'O Alerta foi', + 'alerts_mobile_phone' => 'Telefone celular:', + 'alerts_place_spot' => 'Ou defina um local no mapa abaixo, e você receberá um alerta quando forem feitos relatos em um raio de 20 quilômetros.', + 'alerts_place_spot2' => 'Caso você não consiga encontrar o local desejado, clique no mapa para apontar a localização correta.', + 'alerts_rss' => 'Receber por RSS (copie a url abaixo)', + 'alerts_select_city' => 'Selecione a cidade', + 'alerts_step1_select_city' => 'Primeiro passo: Selecione sua cidade ou localidade', + 'alerts_step2_send_alerts' => 'Segundo passo: Enviar alertas para meu', + 'alerts_step3_select_catgories' => 'Terceiro passo (opcional): Escolha categorias', + 'alert_confirm_previous' => 'Confirmar solicitação anterior de alerta', + 'alert_saved' => 'Seu alerta foi salvo!', + 'all' => 'Todos', + 'allowed' => 'Permitido', + 'allowed_tags' => 'Etiquetas HTML permitidas: "%s".', + 'allowed_iframes' => 'Iframes são apenas permitidos desde: %s.', + 'all_categories' => 'Todas as categorias', + 'all_time' => 'Todo o Tempo', + 'and' => 'e', + 'api' => 'API', + 'approve' => 'Aprovar', + 'approved' => 'Aprovado', + 'approved_reports' => 'Relatos aprovados', + 'approve_this_report' => 'Aprovar esse relato', + 'approximate' => 'Aproximado', + 'archive' => 'Arquivar', + 'archived' => 'Arquivado', + 'ascending' => 'Crescente', + 'at' => 'em', + 'author' => 'Autor', + 'auto_checkin' => 'Auto Checkin', + 'avg_reports_per_day' => 'Quantidade édia de relatos por dia', + 'awaiting_approval' => 'Aguardando aprovação', + 'awaiting_verification' => 'Aguardando verificação', + 'badge' => 'Emblema', + 'badges' => 'Emblemas', + 'badge_image' => 'Imagem do Emblema', + 'badge_image_upload_your_own' => 'Ou você pode enviar sua imagem do próprio emblema no lugar.', + 'badge_pack' => 'Emblema Pack', + 'badge_select' => 'selecione Emblema', + 'blog' => 'Blog', + 'browse_profiles' => 'Procurar Perfis', + 'cancel' => 'Cancelar', + 'categories' => 'Categorias', + 'category' => 'Categoria', + 'category_filter' => 'Filtro de categorias', + 'category_has_been' => 'Essa categoria foi', + 'category_name' => 'Nome da categoria', + 'change_date_range' => 'Troque o período da data', + 'change_password' => 'Troque a senha', + 'change_picture' => 'Troque a Figura', + 'choose' => 'Escolha', + 'choose_data_points' => 'Escolha intervalo de datas para download', + 'choose_date_range' => 'Ou escolha seu período de data', + 'choose_field_type' => 'Escolha tipo', + 'cleanurl' => 'URLs amigável', + 'clear' => 'Limpar', + 'clear_map' => 'Limpar mapa', + 'close' => 'Fechar', + 'clusters' => 'grupos', + 'color' => 'Cor', + 'comment' => 'Comentário', + 'comments' => 'Comentários', + 'comment_details' => 'Detalhes do comentário', + 'configuration_saved' => 'Suas configurações foram salvas!', + 'configure' => 'Configurar', + 'confirm_email_successful' => 'Você tem sucesso confirmou o seu endereço de e-mail! Por favor, faça login abaixo.', + 'confirm_email_successful_and_approval' => 'Você confirmou seu endereço de email! Um administrador deverá aprovar sua conta antes que você possa fazer login.', + 'confirm_email_failed' => 'E-mail de confirmação falhou! Você pode solicitar um novo e-mail de confirmação abaixo.', + 'contact' => 'Contato', + 'contact_code' => 'Código de segurança', + 'contact_email' => 'Seu endereço de e-mail', + 'contact_message' => 'Mensagem', + 'contact_message_has_send' => 'A mensagem foi enviada.', + 'contact_name' => 'Nome', + 'contact_phone' => 'Número de telefone', + 'contact_send' => 'Enviar mensagem', + 'contact_subject' => 'Assunto', + 'copyright' => 'Direitos autorais ©', + 'create' => 'Criar', + 'create_edit' => 'Criar/Editar', + 'create_new' => 'Criar novo', + 'create_new_password' => 'Criar Nova Senha.', + 'create_report' => 'Criar relato', + 'credibility' => 'Credibilidade', + 'current_password' => 'Senha Atual', + 'custom_fields' => 'campos customizados', + 'data' => 'Informações', + 'date' => 'Data', + 'date_format' => '(mm/dd/aaaa)', + 'date_time' => 'Data e horário', + 'day' => 'dia', + 'deactivate' => 'Desativar', + 'default_location_name' => 'Brasília, Brasil', + 'delete' => 'Apagar', + 'deleted' => 'Apagado', + 'deletes' => 'Apagados', + 'delete_disabled' => 'Recurso de apagar desabilitado', + 'delete_last' => 'Apagar o último', + 'delete_report' => 'Apagar esse relato', + 'delete_selected' => 'Apagar selecionados', + 'delete_spam' => 'Apagar spam', + 'demo' => 'Demo', + 'description' => 'Descrição', + 'descending' => 'Decrescente', + 'detailed_location_example' => 'Exemplo: Esquina do Palácio do Congresso Nacional, Praça dos Três Poderes, Brasília', + 'details' => 'Detalhes', + 'direct_report' => 'Relato direto', + 'disabled' => 'Desabilitado', + 'disapprove' => 'Desaprovar', + 'download_reports' => 'Baixar relatos', + 'download' => 'Download', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar campos do formulário', + 'edit_report' => 'Editar relatos', + 'email' => 'Email', + 'email_address' => 'Endereço de e-mail', + 'email_configuration' => 'Configuração do servidor de e-mail', + 'email_server_host' => 'Host do servidor de e-mail', + 'email_server_password' => 'Senha do servidor de e-mail', + 'email_server_port' => 'Porta do servidor de e-mail', + 'email_server_ssl_support' => 'Suporte SSL do servidor de e-mail', + 'email_server_type' => 'Tipo do servidor de e-mail', + 'email_server_username' => 'Nome de usuário do servidor de e-mail', + 'email_settings_comment_0' => 'portanto os dados devem ser associados a esse e-mail', + 'email_settings_comment_00' => 'Para receber relatos por email, forneça as configurações de seu e-mail abaixo. Lembre-se que os alertas serão recebidos em', + 'email_settings_comment_1' => 'Alguns servidores requerem um endereço de e-mail completo', + 'email_settings_comment_2' => 'Senha da conta de e-mail', + 'email_settings_comment_3' => 'Portas comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Exemplos: pop3, imap', + 'email_settings_comment_6' => 'Habilitar ou desabilitar conexões de SSL', + 'empty' => '---VAZIO---', + 'end_point' => 'para', + 'error' => 'Erro!', + 'example' => 'Exemplo', + 'example_country' => 'Brasil', + 'external_apps' => 'Aplicações Externas', + 'external_video_link' => 'Link de Vídeo Externo', + 'facebook' => 'Facebook', + 'feed' => 'Alimentar', + 'feedback' => 'Enviar comentários', + 'feeds' => 'Feeds', + 'feed_has_been' => 'Esse feed foi', + 'feed_items' => 'Itens do feed', + 'feed_name' => 'Nome do feed', + 'feed_url' => 'URL do feed', + 'field_unused' => 'Campos não usados', + 'file' => 'Arquivo', + 'file_over_max_allowed' => 'Seu arquivo é maior que o tamanho máximo permitido.', + 'filters' => 'Filtros', + 'filter_reports' => 'Filtrar Relatos', + 'filter_reports_by' => 'Filtrar Relatos Por', + 'filter_reports_contain' => 'Filtrar relatos que contenham', + 'find' => 'Encontrar', + 'find_location' => 'Encontrar localidade', + 'first_name' => 'Nome', + 'force_run_scheduler' => 'Forçar a inicialização do planejador', + 'forgot_password' => 'Esqueceu a senha?', + 'form' => 'Formulário', + 'forms' => 'Formulários', + 'form_description' => 'Descrição do formulário', + 'form_edit' => 'Editar esse formulário', + 'form_has_been' => 'O formulário foi', + 'form_title' => 'Título do formulário', + 'from' => 'De', + 'full_name' => 'Nome completo', + 'geolocation_available' => 'Geolocalização disponível', + 'geometry_color' => 'Cor', + 'geometry_comments' => 'Comentários', + 'geometry_label' => 'Etiqueta', + 'geometry_strokewidth' => 'Largura curso', + 'go' => 'Ir', + 'hashtag' => 'Hashtag', + 'has_been' => 'foi', + 'help' => 'Como ajudar', + 'hidden' => 'Oculto', + 'hide' => 'Ocultar', + 'hide_this_message' => 'ocultar essa mensagem', + 'home' => 'Início', + 'how_to_report' => 'Como relatar', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Usado para identificar você no site para outros usuários.', + 'image' => 'Imagem', + 'images' => 'Imagens', + 'image_icon' => 'Imagem/Ícone', + 'inactive' => 'Inativo', + 'inbox' => 'Caixa de entrada', + 'incident' => 'Incidente', + 'incidents_nearby' => 'Incidentes próximos', + 'incident_location' => 'Local do incidente', + 'include' => 'Incluir', + 'include_categories' => 'Incluir categorias', + 'include_custom_fields' => 'Incluir campos personalizados', + 'include_description' => 'Incluir descrição', + 'include_detail' => 'Incluir a maior quantidade de informações possível', + 'include_latitude' => 'Incluir latitude', + 'include_location_information' => 'Incluir dados sobre o local', + 'include_longitude' => 'Incluir longitude', + 'include_personal_info' => 'Inclua Informação Pessoal', + 'incoming_media' => 'Mídia recebida', + 'information_evaluation' => 'Avaliação da informação', + 'input_location' => 'Forneça o local exato', + 'insufficient_role' => 'Sua conta não tem a permissão necessária para você entrar. Por favor, contate o administrador.', + 'in_response_to' => 'em resposta a', + 'ip_address' => 'Endereço de IP', + 'is_this_your_profile' => 'É este o seu perfil?', + 'item' => 'item', + 'items' => 'itens', + 'item_details' => 'detalhes', + 'item_title' => 'Título do item', + 'key' => 'Chave', + 'keywords' => 'Palavras-chave', + 'kml_kmz_file' => 'Arquivo KMZ/KML', + 'kml_kmz_upload' => 'Enviar arquivo KMZ/KML', + 'kml_url' => 'URL KML', + 'laconica' => 'Laconica', + 'language' => 'Idioma', + 'last' => 'Último', + 'last_month' => 'Último mês', + 'last_name' => 'Sobrenome', + 'last_year' => 'Último ano', + 'latitude' => 'Latitude', + 'layers' => 'Camadas', + 'layers_filter' => 'Outras camadas', + 'layer_has_been' => 'A camada foi', + 'layer_name' => 'Nome da camada', + 'layer_url' => 'URL da camada', + 'leave_a_comment' => 'Deixe um comentário', + 'less_information' => 'Menos Informação', + 'level' => 'Nível', + 'level_has_been' => 'Esse nível foi', + 'level_name' => 'Nome do nível', + 'limited' => 'Limitado', + 'link' => 'Link', + 'list' => 'Listar', + 'loading_reports' => 'Carregando Relatos', + 'location' => 'Local', + 'locations' => 'Locais', + 'location_example' => 'Cidade, estado e/ou país', + 'login' => 'Login', + 'login_account_creation_successful' => 'Conta criada com sucesso. Você pode entrar agora.', + 'login_confirmation_sent' => 'A confirmação foi enviado para seu endereço de e-mail.', + 'login_approval_required' => 'Conta criada. Sua conta deve ser aprovada por um administrador antes que você possa fazer login.', + 'login_email_doesnt_exist' => 'Endereço de e-mail não existe. Tente um endereço diferente ou criar uma conta.', + 'login_select_openid' => 'Por favor, clique em sua conta de provedor', + 'login_with' => 'Login com', + 'login_userpass' => 'Email e Senha', + 'login_openid' => 'OpenID', + 'login_signup' => 'Assinar', + 'login_signup_click' => 'Criar uma Conta', + 'login_signup_confirmation_message' => 'Obrigado por registrar-se com %1$s. Para confirmar seu endereço de email, por favor vá para o seguinte URL: %2$s', + 'login_signup_confirmation_subject' => 'Confirmação de Assinatura', + 'login_signup_admin_approval_message' => 'Um novo usuário cadastrou-se em %1$s. Para aprovar o cadastro, por favor acesse o seguinte URL: %2$s', + 'login_signup_admin_approval_subject' => 'Aprovação de Novo Usuário', + 'login_signup_approval_message' => 'Sua conta de usuário foi aprovada por %1$s. Para fazer login vá para o seguinte URL: %2$s', + 'login_signup_approval_subject' => 'Conta de usuário aprovada', + 'login_signup_text' => 'Criar uma conta agora para tirar mais proveito dos recursos do site.', + 'longitude' => 'Longitude', + 'map' => 'Mapa', + 'mark_read' => 'Marcar como lida', + 'mark_unread' => 'Marcar como não lida', + 'maximum_filesize' => 'Tamanho máximo do arquivo', + 'media' => 'Mídia', + 'media_filter' => 'Filtro de mídia', + 'members' => 'Membros', + 'manage_your_account' => 'Gerencie sua conta', + 'message' => 'Mensagem', + 'messages' => 'Mensagens', + 'message_details' => 'Detalhes da mensagem', + 'message_non_numeric_source' => 'Mensagem de uma fonte não-numérica:', + 'mobile' => 'Celular', + 'modify' => 'Modificar', + 'modify_date' => 'Modificar data', + 'month' => 'mês', + 'more' => 'Mais', + 'more_information' => 'Mais informações', + 'multi_country_instance' => 'Essa versão do Ushahidi será usada em múltiplos países?', + 'must_confirm_email_address' => 'Você deve confirmar seu endereço de e-mail para acessar esta implantação. Se você perdeu o seu e-mail de confirmação, você pode solicitar um novo abaixo.', + 'name' => 'Nome', + 'nearby_report' => 'Relatos próximos', + 'new' => 'Novos', + 'news' => 'Notícias', + 'news_feeds' => 'Feeds de notícias', + 'news_source' => 'Fontes de notícias', + 'new_category' => 'Nova categoria', + 'new_password' => 'Nova senha', + 'new_report' => 'Novo relato', + 'next' => 'Próximo', + 'no' => 'Não', + 'no_checkins' => 'Sem checkins para mostra.', + 'no_data' => 'Sem arquivos', + 'none' => 'Nenhum', + 'notices' => 'Avisos', + 'not_approved' => 'Não aprovados', + 'not_approved_singular' => 'Não aprovado', + 'not_selected' => '---Não Selecionado---', + 'not_spam' => 'não é spam', + 'not_specified' => 'Não especificado', + 'no_reports' => 'Não há relatos', + 'no_results' => 'Não há resultados', + 'off' => 'Desligado', + 'official_news' => 'Notícias oficiais e dos meios de comunicação', + 'on' => 'Ligado', + 'option' => 'Opção', + 'optional' => 'Opcional', + 'options' => 'Opções', + 'organization' => 'Organização', + 'organizations' => 'Organizações', + 'organization_description' => 'Descrição da organização', + 'organization_email' => 'Email da organização', + 'organization_has_been' => 'A organização foi', + 'organization_name' => 'Nome da organização', + 'organization_phone_1' => '1º telefone da organização', + 'organization_phone_2' => '2º telefone da organização', + 'organization_website' => 'Site da organização', + 'original' => 'Original', + 'original_description' => 'Descrição original', + 'original_title' => 'Título original', + 'other_ushahidi_instances' => 'OUTRAS VERSÕES DO USHAHIDI', + 'outbox' => 'Caixa de saída', + 'outgoing' => 'Saída', + 'page' => 'Página', + 'pages' => 'Páginas', + 'page_description' => 'Descrição da página', + 'page_has_been' => 'A página foi', + 'page_tab_name' => 'Nome da guia da página', + 'page_title' => 'Título da página', + 'parent_category' => 'Categoria principal', + 'password' => 'Senha', + 'password_again' => 'Digite a senha novamente', + 'password_changed_successfully' => 'Senha alterada com sucesso! Login abaixo.', + 'password_forgot' => 'Esqueceu a senha?', + 'password_reset_confirm' => 'Verifique a nova senha em seu email.', + 'password_save' => 'Permanecer conectado nesse computador?', + 'past_month' => 'Mês passado', + 'past_year' => 'Ano passado', + 'pending' => 'Pendente', + 'per' => 'por', + 'personal_information' => 'Dados pessoais opcionais.', + 'phone' => 'Telefone', + 'photos' => 'Fotos', + 'pictures' => 'Fotos', + 'pictures_and_videos' => 'Fotos e vídeos', + 'pinpoint_location' => '* Procure o local usando o nome do lugar, as coordenadas de latitude e longitude (formato: 38.19,-85.61), ou clique sob o local para apontar o ponto exato no mapa.', + 'play' => 'Executar', + 'please_note' => 'Observação', + 'plugins' => 'Plugins', + 'plugin_url' => 'Site de plugin', + 'public_profile' => 'Perfil Público', + 'public_profile_url' => 'URL do Perfil Público', + 'preview' => 'Visualizar', + 'preview_item' => 'Item anterior', + 'preview_message' => 'Mensagem anterior', + 'previous' => 'Anterior', + 'private' => 'Privado', + 'profile_color' => 'Cor do Perfil', + 'profile_saved' => 'Seu perfil foi salvo', + 'quick_stats' => 'Estatísticas rápidas', + 'rating' => 'Classificação', + 'read' => 'Lido', + 'receive' => 'Receber', + 'receive_from' => 'Receber de', + 'receive_notifications' => 'Receber notificações', + 'recent_reports' => 'Relatos recentes', + 'refresh_news_feeds' => 'Atualizar feeds de notícias', + 'registered_email' => 'Email Registrado', + 'remove' => 'remover', + 'reply' => 'Responder', + 'report' => 'Relatar', + 'reports_listed' => 'Relatos (a partir do mapa, listados em ordem cronológica)', + 'reporter' => 'Repórter', + 'reporters' => 'Repórteres', + 'reporter_date' => 'Data do relato', + 'reporter_email' => 'Email do repórter', + 'reporter_first_name' => 'Nome do repórter', + 'reporter_has_been' => 'O repórter foi', + 'reporter_ip' => 'Endereço de IP do repórter', + 'reporter_last_name' => 'Sobrenome do repórter', + 'reporter_level' => 'Nível do repórter', + 'reporter_levels' => 'Níveis de repórter', + 'reporter_phone' => 'Telefone do repórter', + 'reports' => 'Ver relatos', + 'reports_btn_browse' => 'Navegar', + 'reports_btn_submit' => 'Enviar', + 'reports_by_this_user' => 'Relatos Por Este Usuário', + 'reports_categories' => 'Categorias', + 'reports_count' => '%d Relatos', + 'reports_date' => 'Data', + 'reports_description' => 'Descrição', + 'reports_download_csv' => 'Os relatos serão baixados em formato CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Recursos', + 'reports_find_location' => 'Encontrar um local perto de você', + 'reports_first' => 'Nome', + 'reports_last' => 'Sobrenome', + 'reports_location_name' => 'Refinar nome do local', + 'reports_news' => 'Link de fonte de notícias', + 'reports_optional' => 'Informações opcionais', + 'reports_photos' => 'Enviar fotos', + 'reports_return' => 'Voltar à página de relatos', + 'reports_select_city' => 'Selecionar a cidade', + 'reports_submitted' => 'Seu relato foi enviado para revisão. Nossa equipe entrará em contato em breve, se necessário.', + 'reports_submit_new' => 'Enviar novo relato', + 'reports_time' => 'Horário', + 'reports_timeline' => 'Cronologia', + 'reports_title' => 'Título do relato', + 'reports_video' => 'Link do vídeo', + 'report_an_incident' => 'Relatar um incidente', + 'report_details' => 'Detalhes do relato', + 'report_option_1' => 'Enviando uma mensagem para', + 'report_option_2' => 'Enviando um email para ', + 'report_option_3' => 'Enviando um tweet com a hashtag', + 'report_option_4' => 'Preenchendo esse formulário', + 'report_option_external_apps' => 'Usando aplicativo', + 'report_saved' => 'Seu relato foi salvo', + 'report_title' => 'Título do relato', + 'request_information' => 'Solicitar mais informações', + 'request_location' => 'Solicitar local', + 'required' => 'Requerido', + 'requirements' => 'Requisitos', + 'resend_confirm_email' => 'Reenviar Confirmação de Email', + 'reset' => 'Resetar', + 'reset_all_filters' => 'Resetar todos os filtros', + 'reset_password' => 'Restaurar senha', + 'retrieve_city_names' => 'Encontrar os nomes das cidades para o país selecionado', + 'riverid_information' => 'Contas gerenciadas pelo serviço %s.', + 'riverid_exists_login' => 'Você já tem uma conta gerida pelo CrowdmapID! Tente usar seu email e senha do CrowdmapID.', + 'role' => 'Perfil', + 'rss' => 'RSS', + 'save' => 'Salvar', + 'saved' => 'Gravado', + 'save_add_new' => 'Salvar e Novo', + 'save_close' => 'Salvar e fechar', + 'save_report' => 'Salvar relato', + 'schedule' => 'Agendar', + 'scheduler' => 'Planejador', + 'scheduler_day' => 'Dia', + 'scheduler_hour' => 'Hora', + 'scheduler_log' => 'Histórico de planejamento', + 'scheduler_minute' => 'Minuto', + 'scheduler_weekday' => 'Dia da semana', + 'search' => 'BUSCAR', + 'search_results' => 'Resultados da busca', + 'security_code' => 'Código de segurança', + 'select_all' => 'Selecionar todos', + 'select_field_type' => 'Escolha um tipo de campo', + 'select_form_type' => 'Selecione tipo de formulário', + 'select_in_map' => 'Selecione no mapa', + 'select_multiple' => 'Selecione quantos forem precisos', + 'select_one' => 'Verifique se um item foi escolhido', + 'select_theme' => 'Escolher tema', + 'send' => 'Enviar', + 'send_confirmation' => 'Enviar Confirmação', + 'sending_to' => 'Enviando para', + 'sent' => 'Enviado', + 'sent_by' => 'Enviado por', + 'server_address' => 'Endereço do servidor', + 'server_type' => 'Tipo do servidor', + 'service' => 'Servidor', + 'service_username' => 'Nome de usuário no servidor', + 'service_user_id' => 'ID do usuário do servidor', + 'share' => 'Compartilhar', + 'shared_data' => 'Compartilhar dados', + 'share_has_been' => 'O compartilhamento foi', + 'sharing' => 'Compartilhando', + 'shorter_map' => 'Mapa curto', + 'show' => 'Exibir', + 'show_all' => 'Exibir todos', + 'show_messages' => 'Mostra Mensagens', + 'showing_reports_from' => 'Mostrando relatos De %1$s a %2$s', + 'site' => 'Site', + 'site_email_address' => 'email do site', + 'site_url' => 'URL do site', + 'smaller_map' => 'Mapa pequeno', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Desculpe, você não tem nenhum emblema.', + 'source' => 'Fonte', + 'source_name' => 'Nome da fonte', + 'sort' => 'Ordene', + 'sort_by' => 'Ordene por', + 'source_url' => 'URL da fonte', + 'spam' => 'Spam', + 'ssl_support' => 'Suporte SSL?', + 'start_point' => 'De', + 'step' => 'Passo', + 'submit' => 'Enviar relato', + 'submitted_by' => 'Enviado por %1$s via %2$s', + 'submit_sms' => 'Enviar via SMS', + 'submit_sms1' => 'Enviar SMS para', + 'submit_sms2' => 'do seu telefone', + 'success' => 'Completo!', + 'successfuly_imported' => 'Importação bem-sucedida', + 'surname' => 'Sobrenome', + 'survey' => 'Vistoria', + 'system' => 'Sistema', + 'taller_map' => 'Mapa mais alto', + 'tcp_port' => 'TCP Porta', + 'themes' => 'Temas', + 'theme_default' => 'Tema padrão do Ushahidi', + 'theme_settings' => 'Configuração de temas', + 'this' => 'Esse', + 'this_day' => 'Hoje', + 'this_month' => 'Nesse mês', + 'this_week' => 'Esta semana', + 'this_year' => 'Nesse ano', + 'this_is_your_profile' => 'Este é o seu perfil.', + 'time' => 'horário', + 'title' => 'TÍTULO ', + 'to' => 'a', + 'today' => 'Hoje', + 'today_at' => 'Hoje às', + 'token' => 'Símbolo', + 'total_reports' => 'Todos os relatos', + 'translated' => 'Traduzido', + 'translated_description' => 'Descrição traduzida', + 'translated_title' => 'Título traduzido', + 'translate_to' => 'Traduzir para', + 'translation' => 'Tradução', + 'translation_saved' => 'A tradução foi salva', + 'trusted' => 'Verdadeiro', + 'type' => 'Tipo', + 'twitter' => 'Twitter', + 'unable_send_email' => 'habilitado para enviar Email.', + 'uncategorized_reports' => 'Relatos Não Categorizados', + 'unread' => 'Não lido', + 'unverified' => 'Não verificado', + 'update_feeds' => 'Atualizar feeds', + 'upload' => 'Enviar', + 'upload_guide' => 'Veja nosso guia de carregamento de relatos:-', + 'upload_docs_1' => 'Guia de carregamento XML', + 'upload_docs_2' => 'Guia de carregamento CSV', + 'upload_file' => 'Enviar arquivos', + 'upload_reports' => 'Importar relatos', + 'upload_reports_custom_forms' => 'As colunas dos campos personalizados devem ter sua form_id prefixada a elas, por exemplo, campo personalizado Teste, no formulário padrão, cuja id é 1, será Test-1. Durante a importação de campos personalizados de formulário, certifique-se de que', + 'upload_reports_detail_1' => 'Usando o formulário abaixo, é possível importar incidentes no sistema Ushahidi', + 'upload_reports_detail_2' => 'Relatos devem ser carregados em formato CSV ou XML', + 'upload_reports_detail_3' => 'Quando a ID incidente já existe no banco de dados, a entrada no arquivo CSV/XML será ignorada.', + 'upload_reports_detail_4' => 'É necessário fornecer pelo menos um título e uma data para o relato', + 'upload_reports_detail_4b' => 'Se nenhuma latitude e longitude forem fornecidos, o local será geocodificados com o Geocoder Google', + 'upload_reports_detail_4c' => 'Caso esteja importando informações adicionais, isto é, informações pessoais e/ou campos personalizados', + 'upload_reports_detail_4d' => 'DEVE existir uma entrada para ao menos um dos campos de informação pessoal (nome, sobrenome, email) . Registros vazios não serão importados.', + 'upload_reports_detail_4e' => 'Suas entradas em campos de múltipla escolha, botões de rádio e caixas de marcar batem com as opções fornecidas para o campo personalizado na sua instância', + 'upload_reports_detail_4f' => 'Opções em caixas de marcar são separadas por vírgulas, por exemplo, se sua escolha de frutas é maçã, mangas e uvas, sua entrada para este deve ser "maçãs,mangas,uvas"', + 'upload_reports_detail_4g' => 'Valores em campos de data são no seguinte formato: mm/dd/aaaa por exemplo 3 de outubro de 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Exemplo de relato CSV', + 'upload_reports_detail_6' => '#,TÍTULO DO RELATO,DATA DO RELATO,LOCAL,DESCRIÇÃO,CATEGORIA,APROVADO,VERIFICADO
"1","Denúncia de compra de voto em São Paulo","2010-10-03 10:06:00","São Paulo","Candidato fulano oferece um sapato para quem votar nele","COMPRA DE VOTOS, ELEIÇÕES ESTADUAIS, ",SIM,SIM', + 'upload_reports_detail_7' => '"2","Atos de Intimidação","2010-10-03 10:10:00","Rio de Janeiro","Atos de Intimidação acontecendo na porta das seções eleitorais","ATOS DE INTIMIDAÇÃO, COAÇÃO, ELEIÇÕES MAJORITÁRIAS, ",SIM,NÃO', + 'upload_successful' => 'Enviado com sucesso', + 'upload_video' => 'Upload Video', + 'url' => 'URL', + 'user' => 'Usuário', + 'username' => 'Nome de usuário', + 'ushahidi_admin' => 'Admin do Ushahidi', + 'verification' => 'Verificação', + 'verified' => 'Verificado', + 'verified_reports' => 'Verificar relatos', + 'verify' => 'Verificar', + 'verify_this_report' => 'Verificar esse relato', + 'version' => 'Versão', + 'via' => 'via', + 'video' => 'Vídeo', + 'view' => 'Ver', + 'views' => 'Visualizações', + 'view_all' => 'Ver todos', + 'view_all_feeds' => 'Ver todos os feeds', + 'view_all_reports' => 'Ver todos os relatos', + 'view_items' => 'Ver itens', + 'view_more' => 'Mais', + 'view_public_profile' => 'Ver o Perfil Público', + 'view_report' => 'Ver relato', + 'view_reports' => 'Ver relatos', + 'view_video' => 'Ver Vídeo', + 'visible' => 'Visível', + 'waiting_approval' => 'Aguardando aprovação', + 'waiting_verification' => 'Aguardando verificação', + 'wider_map' => 'Mapa longitudinal', + 'web_form' => 'Formulário Web', + 'web' => 'Web', + 'weight' => 'Peso', + 'yes' => 'Sim', + 'yesterday' => 'Ontem', + 'your_dashboard' => 'Seu painel de instrumentos', + 'your_file' => 'Seu arquivo', + 'zoom_in' => 'Aproximar zoom', + 'zoom_out' => 'Afastar zoom', +); diff --git a/application/i18n/pt_BR/upgrade.php b/application/i18n/pt_BR/upgrade.php new file mode 100755 index 0000000000..786afdc9ee --- /dev/null +++ b/application/i18n/pt_BR/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Dados inválidos. Somente 0 para Não ou 1 para Sim.', + ) , + 'upgrade_automatic' => 'Atualização Automática', + 'upgrade_available' => 'Atualizações Disponíveis', + 'upgrade_continue_btn_text' => 'Continue', + 'upgrade_db_btn_text' => 'Atualizar', + 'upgrade_db_text_1' => 'Eu irei atualizar seu banco de dados da versão', + 'upgrade_db_text_2' => 'para a versão do banco de dados mais recente', + 'upgrade_db_text_3' => 'Clique no botão "Atualizar" e relaxe enquanto eu faço a mágica.', + 'upgrade_db_text_4' => 'Ah, se você quiser eu posso fazer o backup do seu banco de dados, basta checar a caixa abaixo e vou fazer isso para você facilmente. ', + 'upgrade_db_text_5' => 'Fazer backup do banco de dados antes da atualização?(Fortemente recomendado)', + 'upgrade_db_title' => 'Atualização do banco de dados da Ushahidi', + 'upgrade_db_info' => 'Ushahidi foi atualizado! Antes de continuar, você precisa atualizar o seu banco de dados para a versão mais recente (%s).', + 'upgrade_db_up_to_date' => 'Sua versão do banco de dados está atualizada.', + 'upgrade_failed' => 'Houve falha na atualização', + 'upgrade_manual' => 'Atualização Manual', + 'upgrade_status' => 'Status da atualização do Ushahidi', + 'upgrade_text_1' => 'As instruções abaixo detalham como atualizar essa versão do Ushahidi manualmente', + 'upgrade_text_2' => '
Download
', + 'upgrade_text_3' => '
- Faça o download da versão mais recente do Ushahidi de', + 'upgrade_text_4' => '
Backup
- os arquivos .htaccess, ./applications/config/config.php, ./applications/config/database.php e ./applications/config/auth.php.
- Para caso algo dê errado, é recomendado que você faça um backup completo da sua instalação do Ushahidi.
Copie arquivos
- Extraia o arquivo zip baixado
- Dependendo do sistema operacional rodando no servidor web, use seu modo/ferramenta preferido (e.g. Telnet, FTP, SSH) para fazer login no servidor web e trocar o conteúdo de todas as pastas pelos mais novos da versão recente.
Atualize o banco de dados
- Primeiro determine a versão do schema do seu banco de dados olhando o valor db_version na tabela settings ou olhe as informações de atualização do Ushahidi no topo desta página.
- Se você está na versão 25, você precisa atualizar da 25-26, 26-27, 27-28 e assim por diante até o mais recente arquivo SQL no diretório /sql.
- Com seu cliente de banco de dados, atualize o banco de dados executando o arquivo upgradex-x.sql apropriado.
', + 'upgrade_tables' => ' Etapa 3: Olhe dentro da pastasql. Execute manualmente o arquivo upgrade-.sql a partir da versão db atual de sua instalação até o último arquivo de atualização sql.', + 'upgrade_text_5' => 'Etapa 4: Clique no botão "Continuar" para atualizar as tabelas necessárias.', + 'upgrade_text_6' => 'Para atualização automática, clique no botão abaixo.', + 'upgrade_title_text' => 'Você está atualmente usando Ushahidi v%1$s com banco de dados versão %2$d rodando sobre %3$s', + 'upgrading' => 'Atualizando', + 'upgrade_ftp_text' => 'Para continuar com a atualização simplificada, a seguinte informação é necessária para o servidor FTP em que seu site está hospedado.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Exemplo: "localhost"', + 'upgrade_ftp_password' => 'FTP Password:', + 'upgrade_ftp_username' => 'FTP User Name:', + 'upgrade_status_info' => 'Você tem a versão mais recente do Ushahidi.', + 'upgrade_status_info_2' => 'Você não precisa atualizar.', + 'upgrade_db_version' => 'Versão do banco de dados: %d', + 'upgrade_warning_software_version' => 'Atenção: Versão de software em version.php e banco de dados não coincidem.', + 'upgrade_warning_db_version' => 'Atenção: Versão de banco de dados em version.php e banco de dados não coincidem.', + 'upgrade_database' => 'Banco de dados:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Baixando a última versão do Ushahid...', + 'log_file' => 'Arquivo Log', + 'successfully_downloaded' => 'Descarregado com sucesso. Desempacotando...', + 'failed_downloading' => 'Falha no download.', + 'successfully_unpacked' => 'Descomprimido com sucesso. Copiando arquivos ...', + 'failed_unpacking' => 'Falha na descompressão.', + 'successfully_copied' => 'Copiado com sucesso. Atualizando banco de dados ...', + 'failed_copying' => 'Falha ao copiar arquivos.', + 'backup_success' => 'Backup de banco de dados e atualização bem sucedidas.', + 'backup_failed' => 'Falha no backup do banco de dados.', + 'dbupgrade_success' => 'Atualização do banco de dados bem sucedida.', + 'deleting_files' => 'Apagando arquivos baixados ...', + 'upgrade_success' => 'UPGRADE BEM SUCEDIDO. Veja o Arquivo Log', +); diff --git a/application/i18n/pt_PT/alerts.php b/application/i18n/pt_PT/alerts.php new file mode 100755 index 0000000000..d68836e5bb --- /dev/null +++ b/application/i18n/pt_PT/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'O campo do Email parece conter um endereço de email inválido?', + 'email_check' => 'Esse endereço de Email já se encontra registado na nossa base de dados para receber alertas nessa localização', + 'length' => 'O campo do Email deve ter entre 4 a 64 caracteres.', + 'required' => 'O campo do e-mail é obrigatório, se a opção estiver seccionada.', + ) , + 'alert_country' => array( + 'single_country' => 'Esta função estará disponível apenas para um país. Por favor, verifique se o local do alerta se encontra circunscrito ao país %s.', + ) , + 'alert_lat' => array( + 'between' => 'Não seleccionou uma localização válida no mapa.', + 'required' => 'Não seleccionou uma localização válida no mapa.', + ) , + 'alert_lon' => array( + 'between' => 'Não seleccionou uma localização válida no mapa.', + 'required' => 'Não seleccionou uma localização válida no mapa.', + ) , + 'alert_mobile' => array( + 'length' => 'O campo do Telemóvel parece não conter o número de dígitos correcto.', + 'mobile_check' => 'Esse Número de Telemóvel já se encontra registado na nossa base de dados para receber alertas nessa localização.', + 'numeric' => 'O campo do Telemóvel parece não conter um número válido. Por favor insira apenas dígitos, incluindo o número de código do país (Portugal +351).', + 'one_required' => 'Tem de inserir o seu Número de Telemóvel ou Endereço de Email.', + 'required' => 'O campo do Telemóvel é obrigatório, se a opção estiver selecionada.', + ) , + 'alert_radius' => array( + 'in_array' => 'Não definiu um raio válido no mapa.', + 'required' => 'Não definiu o seu raio no mapa.', + ) , + 'alert_recipient' => array( + 'required' => 'Ainda não definiu um destinatário para os alertas.', + ) , + 'alerts_subscribed' => 'Inscreveu-se para receber alertas com as seguintes categorias', + 'code_already_verified' => 'Este código já foi verificado!', + 'code_not_found' => 'Este código de verificação não foi encontrado! Por favor confirme que tem o URL correcto.', + 'code_verified' => 'O seu código foi verificado correctamente. A partir deste momento irá receber alertas de incidentes conforme forem ocorrendo.', + 'confirm_request' => 'Para confirmar o seu pedido de alerta por favor vá a ', + 'create_more_alerts' => 'Voltar à página de Alertas para criar mais alertas', + 'email_alert_request_created' => 'O seu pedido de Alerta por Email foi criado e uma mensagem de verificação foi enviada para', + 'email_code' => 'Por favor insira abaixo o código de confirmação de Email que recebeu: ', + 'email_error_head' => 'O seu pedido de Alerta por Email NÃO FICOU registado!', + 'email_ok_head' => 'O seu pedido de Alerta por Email foi registado!', + 'error' => 'O sistema não foi capaz de processar o seu pedido de confirmação!', + 'mobile_alert_request_created' => 'O seu pedido de Alerta por Telemóvel foi criado e uma mensagem de verificação foi enviada para', + 'mobile_code' => 'Por favor, insira abaixo o código de confirmação SMS que recebeu no seu telemóvel:', + 'mobile_error_head' => 'O seu pedido de Alerta por Telemóvel NÃO FICOU registado!', + 'mobile_ok_head' => 'O seu pedido de Alerta por Telemóvel foi registado!', + 'settings_error' => 'Esta implantação não está configurada para processar alertas correctamente', + 'unsubscribe' => 'Recebeu este email porque subscreveu a recepção de alertas. Caso não pretenda receber futuros alertas vá a', + 'unsubscribed' => 'Nunca mais irá receber alertas de ', + 'unsubscribe_failed' => 'Não fomos capazes de o desinscrever. Por favor confirme que tem o URL correcto.', + 'verification_email_subject' => 'alertas - verificação', + 'verify_code' => 'Não receberá alertas nesta localização até que confirme o seu pedido.', +); diff --git a/application/i18n/pt_PT/auth.php b/application/i18n/pt_PT/auth.php new file mode 100755 index 0000000000..633683bf43 --- /dev/null +++ b/application/i18n/pt_PT/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'O e-mail inserido não é um endereço de e-mail válido.', + 'exists' => 'Desculpe, já existe uma conta de utilizador para este endereço de e-mail.', + 'length' => 'O campo do e-mail deve ter pelo menos 4 e não mais de 64 carateres.', + 'required' => 'O campo do e-mail é obrigatório.', + ) , + 'name' => array( + 'length' => 'O campo do nome deve ter pelo menos 3 e não mais de 100 carateres.', + 'required' => 'O campo do nome é obrigatório.', + 'standard_text' => 'O campo do nome do utilizador contém carateres não autorizados.', + ) , + 'current_password' => array( + 'length' => 'A sua senha deve ter pelo menos 8 carateres.', + 'login error' => 'Por favor, verifique se inseriu corretamente o e-mail e a senha.', + 'matches' => 'Por favor, insira a mesma senha nos dois campos da senha.', + 'required' => 'O campo da senha é obrigatório.', + 'alpha_dash' => 'O campo da senha só deverá ter carateres alfabéticos, os símbolos # e @, números, sublinhados e travessões', + 'incorrect' => 'A senha atual que inserida para a sua conta está incorreta. Por favor, tente novamente.', + ) , + 'new_password' => array( + 'length' => 'O campo de senha deve ter pelo menos 8 carateres.', + 'login error' => 'Por favor, verifique se inseriu corretamente o e-mail e a senha.', + 'matches' => 'Por favor, insira a mesma senha nos dois campos da senha.', + 'required' => 'O campo da senha é obrigatório.', + 'alpha_dash' => 'O campo de senha só deverá ter carateres alfabéticos, símbolos o # e @, números, sublinhados e travessões', + ) , + 'password' => array( + 'default' => 'Ocorreu um erro ao tentar iniciar a sua sessão.', + 'length' => 'O campo da senha deve ter pelo menos 8 carateres.', + 'login error' => 'Por favor, verifique se inseriu corretamente o endereço de e-mail e a senha.', + 'matches' => 'Por favor, insira a mesma senha nos dois campos da senha.', + 'required' => 'O campo da senha é obrigatório.', + 'riverid server down' => 'O servidor de autenticação está desligado. Por favor, tente novamente mais tarde.', + 'riverid' => '%s', + 'alpha_dash' => 'O campo de senha só deverá ter carateres alfabéticos, os símbolos # e @, números, sublinhados e travessões', + ) , + 'password_confirm' => array( + 'matches' => 'O campo da confirmação da senha deve ser igual ao campo da senha.', + ) , + 'resetemail' => array( + 'email' => 'O e-mail inserido não é um endereço de e-mail válido.', + 'invalid' => 'Desculpe, nós não temos o seu endereço de e-mail.', + 'required' => 'O campo do e-mail é obrigatório.', + ) , + 'role' => array( + 'superadmin_modify' => 'Apenas um \'superadmin\' pode modificar uma \'superadmin\' ou atualizar um utilizador para administrador.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Formato de função inválido.', + 'length' => 'O campo da função deve ter pelo menos 5 e não mais de 30 carateres.', + 'required' => 'Deve definir pelo menos um tipo de função.', + 'values' => 'Deve selecionar uma das funções ADMIN ou USER.', + ) , + 'token' => array( + 'invalid' => 'O código da senha esquecida é inválido', + 'required' => 'Era preciso um código de senha esquecida', + ) , + 'username' => array( + 'admin' => 'A função de utilizador \'admin\' não pode ser modificada.', + 'alpha_numeric' => 'O campo do URL de perfil público só deverá conter números e letras.', + 'exists' => 'Desculpe, mas este URL de perfil público já está a ser utilizado.', + 'length' => 'O URL do perfil público deve ter pelo menos 2 e não mais de 100 carateres.', + 'login error' => 'Por favor, verifique se inseriu corretamente o URL de perfil público.', + 'required' => 'O campo do URL do perfil público é obrigatório.', + 'superadmin' => 'A função de utilizador \'super admin\' não pode ser modificada.', + 'csrf' => 'Possível ataque CSRF. Pretendia criar/editar um utilizador?', + ) , +); diff --git a/application/i18n/pt_PT/bug.php b/application/i18n/pt_PT/bug.php new file mode 100755 index 0000000000..3071de0e12 --- /dev/null +++ b/application/i18n/pt_PT/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Por favor, insira um código de segurança válido.', + 'required' => 'Por favor, insira o código de segurança.', + ) , + 'email' => array( + 'email' => 'O campo do e-mail parece não conter um endereço de e-mail inválido?', + 'length' => 'O campo do e-mail deve ter entre 4 a 64 carateres.', + 'required' => 'O campo do e-mail é obrigatório, se a opção estiver selecionada.', + ) , + 'error' => array( + 'required' => 'O campo do erro é obrigatório.', + ) , + 'subject' => array( + 'length' => 'O campo do assunto deve ter pelo menos 3 carateres.', + 'required' => 'O campo do assunto é obrigatório.', + ) , + 'yourname' => array( + 'length' => 'O campo do nome deve ter pelos 3 carateres.', + 'required' => 'O campo do nome é obrigatório.', + ) , +); diff --git a/application/i18n/pt_PT/category.php b/application/i18n/pt_PT/category.php new file mode 100755 index 0000000000..5eaae84c8a --- /dev/null +++ b/application/i18n/pt_PT/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'O campo da cor deverá ter 6 carateres.', + 'required' => 'O campo da cor é obrigatório.', + ) , + 'category_description' => array( + 'required' => 'O campo da descrição é obrigatório.', + ) , + 'category_image' => array( + 'size' => 'Por favor, certifique-se que o tamanho da imagem a enviar seja limitada a 50KB.', + 'type' => 'O campo de imagem parece não conter uma imagem válida. Os únicos formatos aceitos são .JPG, .PNG e .GIF.', + 'valid' => 'O campo de imagem parece não conter um arquivo válido.', + ) , + 'category_title' => array( + 'length' => 'O campo título deve ter pelo menos 3 e no máximo 80 caracteres.', + 'required' => 'O campo do título é obrigatório.', + ) , + 'parent_id' => array( + 'already_parent' => 'Você não pode subcategorizar uma categoria com subcategorias.', + 'exists' => 'A categoria principal não existe.', + 'numeric' => 'É necessário preencher o campo de categoria principal com números.', + 'parent_trusted' => 'A categoria pai não pode ser uma categoria especial', + 'required' => 'O campo da categoria fonte é obrigatório.', + 'same' => 'A categoria não pode ser a mesma da categoria principal.', + 'special' => 'Categorias especiais não podem ser subcategorizadas.', + ) , +); diff --git a/application/i18n/pt_PT/comments.php b/application/i18n/pt_PT/comments.php new file mode 100755 index 0000000000..9dca770011 --- /dev/null +++ b/application/i18n/pt_PT/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Please enter a valid security code', + 'required' => 'Please enter the security code', + 'valid' => 'Introduziu o código de segurança errado', + ) , + 'comment_author' => array( + 'length' => 'O campo do nome deve ter pelos 3 caracteres.', + 'required' => 'O campo do nome é obrigatório.', + ) , + 'comment_description' => array( + 'required' => 'O campo dos comentários é obrigatório.', + ) , + 'comment_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'length' => 'O campo do email deve ter pelo menos 4 e no máximo 64 caracteres.', + 'required' => 'O campo do e-mail é obrigatório, se a opção estiver selecionada.', + ) , +); diff --git a/application/i18n/pt_PT/contact.php b/application/i18n/pt_PT/contact.php new file mode 100755 index 0000000000..fb1e52477a --- /dev/null +++ b/application/i18n/pt_PT/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Please enter a valid security code', + 'valid' => 'Por favor introduza um código de segurança válido', + 'required' => 'Please enter the security code', + ) , + 'contact_email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'length' => 'O campo do e-mail deve ter entre 4 a 64 carateres.', + 'required' => 'O campo do e-mail é obrigatório, se a opção estiver selecionada.', + ) , + 'contact_message' => array( + 'required' => 'O campo da mensagem é obrigatório.', + ) , + 'contact_name' => array( + 'length' => 'O campo do nome deve ter pelo menos 3 carateres.', + 'required' => 'O campo do nome é obrigatório.', + ) , + 'contact_subject' => array( + 'length' => 'O campo do assunto deve ter pelo menos 3 carateres.', + 'required' => 'O campo do assunto é obrigatório.', + ) , + 'email_send' => array( + 'failed' => 'Surgiu um erro a enviar a mensagem', + ) , +); diff --git a/application/i18n/pt_PT/core.php b/application/i18n/pt_PT/core.php new file mode 100755 index 0000000000..21690824ef --- /dev/null +++ b/application/i18n/pt_PT/core.php @@ -0,0 +1,23 @@ + 'Ficheiro de Configuração', + 'controller' => 'Controlador', + 'driver' => 'Controlador', + 'driver_implements' => 'O controlador %s para a biblioteca %s deve implementar a interface %s', + 'driver_not_found' => 'Não foi possível encontrar o controlador %s para a biblioteca %s', + 'helper' => 'ajuda', + 'invalid_filetype' => 'O tipo de ficheiro solicitado, .%s, não é permitido no seu ficheiro configuração de visualização', + 'library' => 'biblioteca', + 'log_dir_unwritable' => 'A diretoria de registos não é gravável: %s', + 'model' => 'modelo', + 'page_not_found' => 'Não foi possível encontrar a página solicitada, %s.', + 'report_bug' => 'Comunique Isto à Ushahidi', + 'resource_not_found' => 'Não foi possível encontrar o %s, %s, solicitado.', + 'there_can_be_only_one' => 'Só pode existir uma instância do Ushahidi por página solicitada', + 'view_set_filename' => 'Deve definir o nome de ficheiro da visualização antes de executar a renderização', +); diff --git a/application/i18n/pt_PT/database.php b/application/i18n/pt_PT/database.php new file mode 100755 index 0000000000..7e42f20a28 --- /dev/null +++ b/application/i18n/pt_PT/database.php @@ -0,0 +1,10 @@ + 'Erro de base de dados: %s', + 'table_not_found' => 'Table "%s" cannot be found in the database. Please make sure you are using the latest version of the database for this version of Ushahidi', +); diff --git a/application/i18n/pt_PT/datetime.php b/application/i18n/pt_PT/datetime.php new file mode 100755 index 0000000000..f10e1691c6 --- /dev/null +++ b/application/i18n/pt_PT/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Sex', + 'full' => 'Sexta-feira', + ) , + 'monday' => array( + 'abbv' => 'Seg', + 'full' => 'Segunda-feira', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sáb', + 'full' => 'Sábado', + ) , + 'sunday' => array( + 'abbv' => 'Dom', + 'full' => 'Domingo', + ) , + 'thursday' => array( + 'abbv' => 'Qui', + 'full' => 'Quinta-feira', + ) , + 'tuesday' => array( + 'abbv' => 'Ter', + 'full' => 'Terça-feira', + ) , + 'wednesday' => array( + 'abbv' => 'Qua', + 'full' => 'Quarta-feira', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Janeiro', + ) , + 'february' => array( + 'abbv' => 'Fev', + 'full' => 'Fevereiro', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Março', + ) , + 'april' => array( + 'abbv' => 'Abr', + 'full' => 'Abril', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Maio', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Junho', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Julho', + ) , + 'august' => array( + 'abbv' => 'Ago', + 'full' => 'Agosto', + ) , + 'september' => array( + 'abbv' => 'Set', + 'full' => 'Setembro', + ) , + 'october' => array( + 'abbv' => 'Out', + 'full' => 'Outubro', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novembro', + ) , + 'december' => array( + 'abbv' => 'Dez', + 'full' => 'Dezembro', + ) , +); diff --git a/application/i18n/pt_PT/feeds.php b/application/i18n/pt_PT/feeds.php new file mode 100755 index 0000000000..f45eb0de52 --- /dev/null +++ b/application/i18n/pt_PT/feeds.php @@ -0,0 +1,19 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'O campo de nome do feed terá que ter um mínimo de 3 e um máximo de 70 caractéres. ', + 'required' => 'Por favor introduza o nome do feed', + ) , + 'feed_url' => array( + 'required' => 'Por favor introduza a URL do feed', + 'url' => 'Please enter a valid URL. Eg. http://www.ushahidi.com', + ) , + 'source' => 'Fonte', + 'title' => 'Título', +); diff --git a/application/i18n/pt_PT/footer.php b/application/i18n/pt_PT/footer.php new file mode 100755 index 0000000000..ec1084f63e --- /dev/null +++ b/application/i18n/pt_PT/footer.php @@ -0,0 +1,9 @@ + 'php5-curl não está instalado correctamente no seu sistema', +); diff --git a/application/i18n/pt_PT/form.php b/application/i18n/pt_PT/form.php new file mode 100755 index 0000000000..0fbc6c1aaa --- /dev/null +++ b/application/i18n/pt_PT/form.php @@ -0,0 +1,43 @@ + array( + 'length' => 'The Field Name must be at least 3 and no more + 200 characters long.', + ) , + 'field_height' => array( + 'between' => 'Please enter a value 0 to 50 for the Field Height', + ) , + 'field_isdate' => array( + 'between' => 'You have entered an invalid value for Date Field', + 'required' => 'Please select Yes or No for the Date Field', + ) , + 'field_name' => array( + 'length' => 'The Field Name must be at least 3 and no more + 100 characters long.', + 'required' => 'Por favor introduza nome do campo', + ) , + 'field_required' => array( + 'between' => 'Inseriu um valor inválido no Campo Necessário.', + 'required' => 'Por favor, selecione Sim ou Não no Campo Necessário.', + ) , + 'field_type' => array( + 'required' => 'Por favor escolha o tipo de campo', + ) , + 'field_width' => array( + 'between' => 'Please enter a value 0 to 300 for the Field Width', + ) , + 'form_description' => array( + 'required' => 'Por favor introduza a descrição do formulário', + ) , + 'form_title' => array( + 'length' => 'The form name field must be at least 3 and no more + 100 characters long.', + 'required' => 'Por favor introduza o nome do formulário.', + 'exists' => 'Um formulário com o mesmo título já existe. Por favor introduza outro título.', + ) , +); diff --git a/application/i18n/pt_PT/imap.php b/application/i18n/pt_PT/imap.php new file mode 100755 index 0000000000..cb9502f4ea --- /dev/null +++ b/application/i18n/pt_PT/imap.php @@ -0,0 +1,10 @@ + 'Could not open IMAP stream', + 'unsupported_service' => 'The email service is not supported', +); diff --git a/application/i18n/pt_PT/installer.php b/application/i18n/pt_PT/installer.php new file mode 100755 index 0000000000..74de23111d --- /dev/null +++ b/application/i18n/pt_PT/installer.php @@ -0,0 +1,84 @@ + 'Caminho Base', + 'database' => 'Base de Dados', + 'database_host' => 'Hospedeiro da Base de Dados', + 'database_host_description' => 'Se estiver a executar o Ushahidi no seu computador, este poderá ser como "localhost". Se estiver a executar o Ushahidi a partir de um servidor da web, irá obter a informação do hospedeiro do seu fornecedor do hospediro da web.', + 'database_name' => 'Nome da Base de Dados', + 'database_name_description' => 'O nome da base de dados em que deseja executar o Ushahidi', + 'db_information_link' => 'Para mais informação, por favor, consulte este artículo no wiki que fala sobre as bases de dados em mais detalhe.', + 'default_language' => 'Idioma Predefinido (Local)', + 'default_language_description' => 'Cada implementação do Ushahidi vem com um conjunto de traduções do idioma incluídas . Também pode adicionar o seu idioma', + 'disable' => 'Desativar', + 'enable' => 'Ativar', + 'error_summary' => 'Em baixo, tem listado um resumo dos erros que nós encontramos.', + 'files_location_text' => 'The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory', + 'finished' => 'Terminado', + 'general' => 'Geral', + 'google_key' => 'Google código API', + 'google_key_description' => 'Qualquer pessoa pode obter um código api. Obtenha agora o seu', + 'go_back' => 'Voltar', + 'index' => array( + 'advanced' => 'INSTALAÇÃO AVANÇADA', + 'advanced_installation_description' => 'Obtenha todas as definições básicas completas através deste processo de 5 passos. Estes incluem o servidor, mapa, nome do site e detalhes do contacto.', + 'basic_installation' => 'INSTALAÇÃO BÁSICA', + 'basic_installation_description' => 'Simples e rápida. Tudo o que precisa, é da sua diretoria raiz do site da web e a informação da base de dados. Escolha esta opção se desejar efetuar uma instalação rápida, e poderá configurar tudo mais tarde.', + 'proceed' => 'Prosseguir', + 'welcome' => 'Bem-vindo ao processo de instalção do Ushahidi. Escolha em baixo, qual o tipo de instalação a utilizar.', + ) , + 'installation_successful' => 'Instalação Bem Sucedida!', + 'mail_server' => 'Servidor da Correspondência', + 'mail_server_host' => 'Hospedeiro do Servidor da Correspondência', + 'mail_server_host_description' => 'Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Senha do Servidor da Correspondência', + 'mail_server_password_description' => 'A senha que utiliza normalmente para iniciar a sessão do seu e-mail', + 'mail_server_port' => 'Porta do Servidor da Correspondência', + 'mail_server_port_description' => 'Portas Comuns: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tipo de Servidor da Correspondência', + 'mail_server_type_description' => 'Protocolo de Acesso de Mensagens da Internet (IMAP) ou Protocolo "Post Office" (POP). Qual é a diferença?', + 'mail_server_username' => 'Nome de Utilizador do Servidor da Correspondência', + 'mail_server_username_description' => 'Se estiver a utilizar o correio do Gmail, Hotmail, ou Yahoo, insira o endereço de e-mail completo como nome de utilizador.', + 'map' => 'Mapa', + 'map_provider' => 'Fornecedor do Mapa', + 'map_provider_description' => 'Ushahidi funciona igualmente bem com qualquer um destes três provedores de mapeamento: Google, Bing ou Open Street Map. Escolha um que tenha o maior detalhe da sua área.', + 'other_steps' => 'Outros Passos ...', + 'password' => 'Senha', + 'password_description' => 'A senha da base de dados', + 'previous' => 'Anterior', + 'restart_apache' => 'Por favor, reinicie o Servidor Apache', + 'select_mail_server_ssl' => 'Ativar ou desativar SSL', + 'select_mail_server_ssl_description' => 'Alguns servidores de e-mail oferecem a opção para utilizar SSL quando efetua uma coneção. è recomendado que utilize SSL porque este proporciona um nível de segurança mais elevado.', + 'setup_sms' => 'Configure o seu servidor SMS', + 'site_email' => 'Endereço do e-mail do Site', + 'site_email_alerts' => 'Endereço do e-mail de Alerta do Site', + 'site_email_alerts_description' => 'Quando os visitantes do seu site se registarem para os alertas por e-mail, eles irão receber e-mails deste endereço. Este endereço de e-mail não tem de ser o mesmo Endereço de e-mail do Site.', + 'site_email_description' => 'A comunicação de e-mail do site irá ser enviada através deste endereço', + 'site_name' => 'Nome do Site', + 'site_name_description' => 'O nome do seu site', + 'site_tagline' => 'Slogan do Site', + 'site_tagline_description' => 'O seu slogan', + 'summary' => array( + 'text_1' => 'Os ficheiros e pastas abaixo listados precisam de ser graváveis pelo seu servidor da web.', + 'text_2' => '

Aqui estão as instruções para alterar as permissões da alteração de ficheiro:

+ ', + 'text_3' => 'Antes de iniciar, terá de verificar se os seguintes ficheiros e pastas são graváveis pelo seu servidor da web. Isto envolve as permissões da alteração de ficheiro.', + 'text_4' => 'For the installation process, please have the following bits of information on hand', + ) , + 'table_prefix' => 'Prefixo da Tabela', + 'table_prefix_description' => 'Normalmente não pode alterar o prefixo da tabela. Contudo, se desejar executar múltiplas instalações Ushahidi de uma única base de dados, pode fazer isso, alterando aqui o prefixo.', + 'title' => 'Título', + 'to_login' => 'Para iniciar a sessão, vá até', + 'upload_data' => 'Enviar relatório dos dados', + 'username' => 'Nome de Utilizador', + 'username_description' => 'O seu nome de utilizador da base de dados', + 'use_credentials' => 'e utilize as seguintes credenciais', + 'view_site' => 'Visualize o seu site da web', +); diff --git a/application/i18n/pt_PT/layer.php b/application/i18n/pt_PT/layer.php new file mode 100755 index 0000000000..70e6d04b21 --- /dev/null +++ b/application/i18n/pt_PT/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'O campo de cor tem de ter 6 carateres', + 'required' => 'O campo de cor é obrigatório.', + ) , + 'layer_file' => array( + 'type' => 'The file field does not appear to contain a valid file. The only accepted formats are .KMZ, .KML.', + 'valid' => 'O campo de ficheiro não contem um ficheiro válido', + ) , + 'layer_name' => array( + 'length' => 'O campo de nome tem um mínimo de 3 e um máximo de 80 carateres', + 'required' => 'O campo do nome é obrigatório.', + ) , + 'layer_url' => array( + 'atleast' => 'É necessário um URL KML ou Ficheiro.', + 'both' => 'You can\'t have both a KML file and a url', + 'url' => 'Please enter a valid URL. Eg. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/pt_PT/libraries.php b/application/i18n/pt_PT/libraries.php new file mode 100755 index 0000000000..b26eba2d71 --- /dev/null +++ b/application/i18n/pt_PT/libraries.php @@ -0,0 +1,20 @@ + 'Could not connect to akismet server', + 'akismet_cannot_retrieve' => 'The response from Akismet could not be retrieved', + 'askimet_invalid_apikey' => 'Your Akismet API key is not valid', + 'clickatell_fopen_error' => 'Error while executing fopen sending method!
Please check does PHP have OpenSSL support and check does PHP version is greater than 5.2', + 'clickatell_message_too_long' => 'Your unicode message is too long! (Current lenght=', + 'clickatell_unicode_message_too_long' => 'Your unicode message is too long! (Current lenght=', + 'clickatell_unsupported_method' => 'Método de envio não suportado!', + 'upgrade_directory_not_deleted' => 'Directory %s could not be deleted', + 'upgrade_failed' => 'Downloading the latest ushahidi failed. HTTP status code', + 'upgrade_file_not_copied' => 'File %s could not be copied', + 'upgrade_file_not_deleted' => 'File %s could not be deleted', + 'upgrade_zip_error' => 'The downloaded ushahidi zip file %s, could not be written', +); diff --git a/application/i18n/pt_PT/maintenance.php b/application/i18n/pt_PT/maintenance.php new file mode 100644 index 0000000000..c592a2c297 --- /dev/null +++ b/application/i18n/pt_PT/maintenance.php @@ -0,0 +1,9 @@ + 'Lamentamos, mas o nosso site está em manutenção. Por favor, tente outra vez mais tarde.', +); diff --git a/application/i18n/pt_PT/message.php b/application/i18n/pt_PT/message.php new file mode 100755 index 0000000000..9687ee0a5f --- /dev/null +++ b/application/i18n/pt_PT/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Please enter a valid security code', + 'required' => 'Please enter the security code', + ) , + 'email' => array( + 'email' => 'The Email field does not appear to contain a valid email address?', + 'length' => 'O campo de email deve ter pelo menos 4 caracteres e no máximo 64 caracteres.', + 'required' => 'O campo do e-mail é obrigatório, se a opção estiver selecionada.', + ) , + 'message' => array( + 'required' => 'O campo dos comentários é obrigatório.', + ) , + 'name' => array( + 'length' => 'O campo de nome deve ter pelo menos 3 caracteres.', + 'required' => 'O campo do nome é obrigatório.', + ) , + 'phone' => array( + 'length' => 'O campo de telefone é obrigatório', + ) , +); diff --git a/application/i18n/pt_PT/mhi.php b/application/i18n/pt_PT/mhi.php new file mode 100755 index 0000000000..3ef02bc92c --- /dev/null +++ b/application/i18n/pt_PT/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Por favor introduza um código de segurança válido', + 'required' => 'Por favor, introduza o código de segurança', + ) , + 'contact_email' => array( + 'email' => 'O campo do e-mail parece não possuir um endereço válido', + 'required' => 'Por favor, introduza um e-mail válido', + ) , + 'contact_message' => array( + 'required' => 'O campo da mensagem é obrigatório.', + ) , + 'contact_subject' => array( + 'length' => 'O campo de assunto deve ter um mínimo de 3 carateres', + 'required' => 'O campo do assunto é obrigatório.', + ) , +); diff --git a/application/i18n/pt_PT/notifications.php b/application/i18n/pt_PT/notifications.php new file mode 100755 index 0000000000..1c70a6854e --- /dev/null +++ b/application/i18n/pt_PT/notifications.php @@ -0,0 +1,35 @@ + 'Esta mensagem foi enviada do seu site da web.', + 'admin_login_url' => 'Início de Sessão do Administrador', + 'admin_new_comment' => array( + 'message' => 'Foi submetido um novo comentário para o seu site da web, em resposta a:', + 'subject' => 'Novo Comentário', + ) , + 'admin_new_email' => array( + 'message' => 'Foi submetida uma nova mensagem de e-mail para o seu site da web.', + 'subject' => 'Nova Mensagem de e-mail', + ) , + 'admin_new_report' => array( + 'message' => 'Foi submetido um novo relatório para o seu site da web', + 'subject' => 'Novo Relatório', + ) , + 'admin_new_sms' => array( + 'message' => 'Foi submetida uma nova mensagem de texto para o seu site da web.', + 'subject' => 'Nova Mensagem de Texto', + ) , + 'member_new_alert' => array( + 'message' => 'Recebeu um Novo Alerta', + 'subject' => 'Novo Alerta!', + ) , + 'member_new_message' => array( + 'message' => 'Recebeu uma Mensagem Privada', + 'subject' => 'Nova Mensagem Privada', + 'footer' => 'Para responder, vá por favor:', + ) , +); diff --git a/application/i18n/pt_PT/page.php b/application/i18n/pt_PT/page.php new file mode 100644 index 0000000000..5ee4005eca --- /dev/null +++ b/application/i18n/pt_PT/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Por favor escreva um título de página', + 'length' => 'O título da página deverá ter um mínimo de 3 e um máximo de 150 carateres', + ) , + 'page_tab' => array( + 'required' => 'Por favor, introduza um nome para o separador da aba', + ) , + 'page_description' => array( + 'required' => 'Por favor escreva uma descrição da página', + ) , +); diff --git a/application/i18n/pt_PT/permissions.php b/application/i18n/pt_PT/permissions.php new file mode 100644 index 0000000000..79609b2833 --- /dev/null +++ b/application/i18n/pt_PT/permissions.php @@ -0,0 +1,20 @@ + 'Ver Relatos', + 'reports_edit' => 'Criar/Editar/Apagar Relatos', + 'reports_approve' => 'Aprovar Relatos', + 'reports_verify' => 'Verificar relatos', + 'reports_comments' => 'Gerir comentários dos relatos', + 'reports_download' => 'Download dos relatos', + 'reports_upload' => 'Upload de relatos', + 'messages' => 'Gerir mensagens', + 'messages_reporters' => 'Gerir relatores de mensagens', + 'stats' => 'Ver estatísticas', + 'manage' => 'Gerir paínel', + 'users' => 'Gerir utilizadores', +); diff --git a/application/i18n/pt_PT/private_message.php b/application/i18n/pt_PT/private_message.php new file mode 100644 index 0000000000..184cc52606 --- /dev/null +++ b/application/i18n/pt_PT/private_message.php @@ -0,0 +1,15 @@ + array( + 'required' => 'O campo "assunto" é de preenchimento obrigatório', + 'length' => 'O assunto deverá ter entre 3 e 150 carateres', + ) , + 'private_message' => array( + 'required' => 'O campo "mensagem" é de preenchimento obrigatório', + ) , +); diff --git a/application/i18n/pt_PT/report.php b/application/i18n/pt_PT/report.php new file mode 100755 index 0000000000..c3735a7afa --- /dev/null +++ b/application/i18n/pt_PT/report.php @@ -0,0 +1,95 @@ + 'erro!', + 'data_include' => array( + 'between' => 'Please select a valid item to include in the download', + 'numeric' => 'Please select a valid item to include in the download', + ) , + 'data_point' => array( + 'between' => 'Please select a valid type of report to download', + 'numeric' => 'Please select a valid type of report to download', + 'required' => 'Please select a valid type of report to download', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'The FROM date field does not appear to contain a valid date?', + ) , + 'incident_ampm' => array( + 'validvalues' => 'The am/pm field does not appear to contain a valid value?', + ) , + 'incident_category' => array( + 'numeric' => 'The category field does not appear to contain a valid category?', + 'required' => 'O campo "Categorias" é obrigatório.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'The date field does not appear to contain a valid date?', + 'date_mmddyyyy' => 'The date field does not appear to contain a valid date?', + 'required' => 'O campo da data é obrigatório.', + ) , + 'incident_description' => array( + 'required' => 'O campo "Descrição" é obrigatório.', + ) , + 'incident_hour' => array( + 'between' => 'The hour field does not appear to contain a valid hour?', + 'required' => 'O campo das horas é obrigatório.', + ) , + 'incident_information' => array( + 'alpha' => 'Please enter a valid value for Information Probability', + 'length' => 'Please enter a valid value for Information Probability', + ) , + 'incident_minute' => array( + 'between' => 'The minute field does not appear to contain a valid value?', + 'required' => 'O campo dos minutos é obrigatório.', + ) , + 'incident_news' => array( + 'url' => 'The news source links field does not appear to contain a valid URL?', + ) , + 'incident_photo' => array( + 'size' => 'Please ensure that photo uploads sizes are limited to 2MB.', + 'valid' => 'The Upload Photos field does not appear to contain a valid file', + ) , + 'incident_source' => array( + 'alpha' => 'Please enter a valid value for Source Reliability', + 'length' => 'Please enter a valid value for Source Reliability', + ) , + 'incident_title' => array( + 'length' => 'The title field must be at least 3 and no more 200 characters long.', + 'required' => 'O campo "Título do Relatório" é obrigatório.', + ) , + 'incident_verified' => array( + 'between' => 'Please enter a valid value for Verify This Report', + 'required' => 'Please enter a valid value for Verify This Report', + ) , + 'incident_video' => array( + 'url' => 'The video links field does not appear to contain a valid URL?', + ) , + 'latitude' => array( + 'between' => 'The latitude field does not appear to contain a valid latitude?', + 'required' => 'O campo da latitude é obrigatório. Por favor, clique no mapa para apontar a localização.', + ) , + 'locale' => array( + 'exists' => 'This report already has a translation for this language', + 'locale' => 'The Original Report and the Translation have the same locale (language)', + 'required' => 'A localização é obrigatória.', + ) , + 'location_name' => array( + 'length' => 'The location name field must be at least 3 and no more 200 characters long.', + 'required' => 'O campo "Nome da Localização" é obrigatório.', + ) , + 'longitude' => array( + 'between' => 'The longitude field does not appear to contain a valid longitude?', + ) , + 'person_email' => array( + 'email' => 'The email field does not appear to contain a valid email address?', + ) , + 'person_last' => array( + 'length' => 'The last name field must be at least 3 and no more 100 characters long.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'The TO date field does not appear to contain a valid date?', + ) , +); diff --git a/application/i18n/pt_PT/reporters.php b/application/i18n/pt_PT/reporters.php new file mode 100755 index 0000000000..88de403ab3 --- /dev/null +++ b/application/i18n/pt_PT/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'O campo de latitude não contem uma latitude válida.', + 'required' => 'O campo de latitude é obrigatório. Por favor, clique no mapa para apontar a localização', + ) , + 'level_id' => array( + 'numeric' => 'O campo Nível Repórter parece não conter um Nível válido? ', + 'required' => 'O campo Nível Repórter parece não conter um Nível válido?', + ) , + 'location_name' => array( + 'length' => 'O campo localização precisa ter no mínimo 3 e no máximo 200 caracteres.', + 'required' => 'O campo do nome da localização é obrigatório.', + ) , + 'longitude' => array( + 'between' => 'O campo longitude não parece conter uma longitude válida.', + 'required' => 'O campo longitude é obrigatório. Por favor clique no mapa para mapear a localização.', + ) , + 'reporter_id' => array( + 'numeric' => 'Relator inválido', + 'required' => 'Relator inválido', + ) , +); diff --git a/application/i18n/pt_PT/reports.php b/application/i18n/pt_PT/reports.php new file mode 100644 index 0000000000..9ec65bcbc6 --- /dev/null +++ b/application/i18n/pt_PT/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Por favor, verifique se selecionou pelo menos um item', + 'numeric' => 'Por favor, verifique se selecionou pelo menos um item', + 'categories_required' => 'Os relatórios devem ser categorizados antes de poderem ser aprovados', + ) , + 'action' => array( + 'permission' => 'Não tem permissão para realizar esta ação', + ) , + 'uploadfile' => array( + 'required' => 'Deve selecionar um ficheiro para enviar', + 'type' => 'O ficheiro a enviar deve ter a extensão .csv ou .xml', + 'valid' => 'O campo do ficheiro a enviar parece não possuir um ficheiro válido', + ) , +); diff --git a/application/i18n/pt_PT/roles.php b/application/i18n/pt_PT/roles.php new file mode 100755 index 0000000000..e28f78cc24 --- /dev/null +++ b/application/i18n/pt_PT/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'O campo da descrição deve ter pelo entre 3 e 100 carateres.', + 'required' => 'O campo Descrição é obrigatório.', + ) , + 'name' => array( + 'alpha_numeric' => 'O campo do nome só deve conter letras ou números.', + 'length' => 'O campo do nome deve ter entre 2 e 30 carateres.', + 'nomodify' => 'A Função do "Super Administrador" Não Pode Ser Modificada.', + 'required' => 'É o campo Nome é obrigatório.', + ) , + 'access_level' => array( + 'numeric' => 'O campo do nível de acesso deve ter um número entre 0 e 100.', + 'required' => 'O campo do nível de acesso deve ter um número entre 0 e 100.', + ) , + 'permissions' => array( + 'numeric' => 'O campo das permissões deve ter um número entre 0 e 100.', + ) , +); diff --git a/application/i18n/pt_PT/settings.php b/application/i18n/pt_PT/settings.php new file mode 100755 index 0000000000..bbc12aa203 --- /dev/null +++ b/application/i18n/pt_PT/settings.php @@ -0,0 +1,142 @@ + array( + 'between' => 'O campo de autorização dos comentários não parece conter um valor válido.', + 'required' => 'O campo dos comentários de permissão é obrigatório.', + ) , + 'allow_feed' => array( + 'between' => 'O campo de incluir a fonte não parece conter um valor válido.', + 'required' => 'O campo de incluir é obrigatório.', + ) , + 'allow_feed_category' => array( + 'required' => 'O campo de incluir a fonte é obrigatório.', + ) , + 'allow_alerts' => array( + 'between' => 'O campo de alertas de permissão parece não conter um valor válido.', + 'required' => 'O campo dos alertas de permissão é obrigatório.', + ) , + 'allow_reports' => array( + 'between' => 'O campo dos relatórios de permissão parecem não conter um valor válido.', + 'required' => 'O campo dos relatórios de permissão é obrigatório.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'O campo do estado de compartilhar parece não conter um valor válido.', + 'required' => 'O campo do estado de compartilhar é obrigatório.', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value?', + 'length' => 'The Akismet field does not appear to contain a valid value?', + ) , + 'cache_pages' => array( + 'between' => 'É necessário o campo da cache das páginas.', + 'required' => 'O campo da cache das páginas parece não conter um valor válido.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs. Without "index.php" in the URL.', + 'enable_clean_url' => 'Ativar Limpar os URL\'s', + 'title' => ' Limpar URL\'s', + ) , + 'configure_map' => 'Configurar Mapa', + 'default_location' => 'Localização Predefinida', + 'default_map_all' => array( + 'alpha_numeric' => 'O campo da cor da fonte parece não conter um valor válido.', + 'required' => 'É necessário o campo da cor.', + ) , + 'default_map_view' => 'Visualização de Mapa Predefinida', + 'default_zoom_level' => 'Nível do Zoom Predefinido', + 'download_city_list' => 'Obter as Cidades a partir do Geonames', + 'email_host' => array( + 'length' => 'O campo da porta do servidor de Mail é muito longo.', + 'numeric' => 'O campo da porta do servidor de Mail só deverá conter números.', + ) , + 'email_port' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'email_servertype' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'facebook' => array( + 'title' => 'Opções de Configuração do Facebook', + 'app_id' => 'Id. da App do facebook', + ) , + 'https' => array( + 'enable_https' => 'Ativar HTTPS', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value?', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value?', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'zoom' => 'Nível do Zoom', + ) , + 'map_provider' => array( + 'choose' => 'Selecione um Fornecedor de Mapas', + 'get_api' => 'Obter um Código API', + 'info' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + 'name' => 'Fornecedor de Mapas', + ) , + 'map_timeline' => 'Barra Cronológica do Mapa', + 'map_settings' => 'Definições do Mapa', + 'multiple_countries' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'select_default_location' => 'Por favor, selecione um país predefinido', + 'set_location' => 'Clique e arraste o mapa para definir o seu local exato.', + 'site' => array( + 'allow_comments' => 'Permitir que os Utilizadores Submetam os Comentários para os Relatórios', + 'allow_feed' => 'Incluir Fonte de Notícias RSS no Site da Web', + 'allow_alerts' => 'Permitir que os Utilizadores Subscrevam para os Alertas', + 'allow_reports' => 'Permitir que os utilizadores Submetam Relatórios', + 'banner' => 'Faixa de Site', + 'checkins' => 'Ativar Verificações', + 'copyright_statement' => 'Declaração dos direitos de Autor do Site', + 'default_category_colors' => 'Cor Predefinida para Todas as Categorias', + 'default_category_icons' => 'Ícone Predefinido para Todas as Categorias', + 'delete_banner_image' => 'Apagar Imagem da Faixa', + 'delete_default_map_all_icon' => 'Apagar Ícone Predefinido', + 'display_contact_page' => 'Exibir Página de Contactos', + 'display_howtohelp_page' => 'Exibir Página "Como Ajudar"', + 'email_alerts' => 'Endereço de e-mail dos Alertas', + 'email_site' => 'Endereço de e-mail do Site', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page_admin' => 'Itens por Página - Administrador', + 'laconica_configuration' => 'Credenciais do Laconica', + 'laconica_site' => 'Site do Laconica', + 'language' => 'Idioam do Site', + 'manually_approve_users' => 'Aprovar Utilizadores Manualmente', + 'message' => 'Mensagem do Site', + 'name' => 'Nome do Site', + 'share_site_stats' => 'Share Site Statistics in API', + 'timezone' => 'Zona Horária', + 'title' => 'Definições do Site', + 'twitter_configuration' => 'Twitter Credentials', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address?', + ) , + 'sms' => array( + 'clickatell_password' => 'A Sua Senha Clickatell', + 'clickatell_username' => 'O Seu Nome de Utilizador Clickatell', + 'title' => 'Opções da Configuração de SMS', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value?', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long', + ) , + 'twitter' => array( + 'title' => 'Opções de Configuração do Twitter', + ) , +); diff --git a/application/i18n/pt_PT/sharing.php b/application/i18n/pt_PT/sharing.php new file mode 100755 index 0000000000..e44c93783a --- /dev/null +++ b/application/i18n/pt_PT/sharing.php @@ -0,0 +1,25 @@ + 'Data de inscrição', + 'date_added' => 'Data do envio', + 'last_access' => 'Último acesso', + 'sharing_color' => array( + 'length' => 'O campo cor deve ter 6 caracteres.', + 'required' => 'É necessário escolher uma cor.', + ) , + 'sharing_name' => array( + 'length' => 'O compartilhamento parece não ter um nome válido.', + 'required' => 'É preciso ter um nome para o compartilhamento.', + ) , + 'sharing_url' => array( + 'exists' => 'The site url already exists', + 'length' => 'A URL do site parece não ser válida.', + 'required' => 'The site url is required.', + 'url' => 'The site url field does not appear to contain a valid URL?', + ) , +); diff --git a/application/i18n/pt_PT/stats.php b/application/i18n/pt_PT/stats.php new file mode 100755 index 0000000000..20a3176d3f --- /dev/null +++ b/application/i18n/pt_PT/stats.php @@ -0,0 +1,37 @@ + 'Aprovado', + 'categories' => 'Categorias', + 'category_impact' => 'Categoria de impacto', + 'category_impact_description' => 'This chart gives you a linear view of the reports by category over time. Scroll from left to right to see a comparative view of the different categories. Mouse over the graph for more details', + 'choose_date_range' => 'Choose a date range', + 'countries' => 'Países', + 'country' => 'País', + 'country_breakdown' => 'Resumo de países', + 'description' => 'Hello, this is the statistics section. General description going here soon. For now, browse around using the sub category links above', + 'error' => 'Erro', + 'glossary' => 'Glossário', + 'hit_summary' => 'Resumo de visitas a site', + 'legend' => 'Lenda', + 'reports' => 'Relatos', + 'reports_categories' => 'Categories de relatos', + 'reports_statistics' => 'Estatísticas de relatos', + 'reports_status' => 'Estado de relatos', + 'time_range_1' => '1 mês', + 'time_range_2' => '3 meses', + 'time_range_3' => '6 meses ', + 'time_range_all' => 'Todos', + 'unapproved' => 'Não aprovado', + 'unique_visitors' => 'Visitantes únicos', + 'unique_visitors_description' => 'The number of individuals coming to your deployment; Unique Visitors are determined using cookies. In the case that a visitor does not have cookies enabled, they will be identified using a simple heuristic taking into account IP address, resolution, browser, plugins, OS, etc', + 'unverified' => 'Não verificado', + 'verified' => 'Verificado', + 'visitor_summary' => 'Resumo de visitantes', + 'visits' => 'Visitas', + 'visits_description' => 'A visit is a record of a unique visitor coming to the site more than 30 minutes past his/her last pageview', +); diff --git a/application/i18n/pt_PT/tooltips.php b/application/i18n/pt_PT/tooltips.php new file mode 100755 index 0000000000..cfce745e7c --- /dev/null +++ b/application/i18n/pt_PT/tooltips.php @@ -0,0 +1,40 @@ + array( + 'approve' => 'Aprova ou não um relatório. Se aprovado, este irá aparecer publicamente.', + 'email_body' => 'Corpo do e-mail que irá ser enviado.', + 'email_subject' => 'Assunto do e-mail que irá ser enviado.', + 'verify' => 'Marca um relatório como verificado ou não.', + ) , + 'default_value' => 'Separar os valores com uma vírgula, ex.: valor1, valor2.', + 'private_to' => 'Inicie a digitação para a lista de membros.', + 'private_subject' => 'Assunto da mensagem privada', + 'private_message' => 'Mensagem privada', + 'profile_email' => 'O seu endereço de e-mail', + 'profile_notify' => 'Ao selecionar \'SIM\' deixa-o receber os alertas através do e-mail quando são publicados novos relatórios ou comentários no seu site da web.', + 'profile_password' => 'A sua senha atual. Nós necessitamos que insira a sua senha para evitar qualquer alteração não autorizada à sua conta.', + 'profile_username' => 'O seu nome de utilizador não pode ser alterado.', + 'settings_allow_alerts' => 'Permite que os utilizadores subscrevam para os alertas através da web.', + 'settings_allow_comments' => 'Permite que os utilizadores comentem nos relatórios no site principal.', + 'settings_configure_map' => 'Defina o mapa para cobrir uma localização especifica.', + 'settings_default_category_colors' => 'Defina um código da cor para todas as categorias no site.', + 'settings_default_category_icons' => 'Defina um ícone para todas as categhorias no site.', + 'settings_default_location' => 'Este é o país em que o site está a ser implementado.', + 'settings_flsms_download' => 'Este é o concentrador para as mensagens a receber.', + 'settings_google_analytics' => 'Rastos dos visitantes do seu site. Obtenha as estatísticas detalhadas do visitante.', + 'settings_locale' => 'Define o idioma que será utilizado no site.', + 'settings_map_provider' => 'This defines which map is to be used on the site', + 'settings_server_host' => 'Os emails serão guardados nessa parte', + 'settings_server_password' => 'This is the password for the email address that receives reports', + 'settings_server_port' => 'Isso é preciso para aceitar conexões do endereço email', + 'settings_server_ssl_support' => 'This is required to enhance a secure connection', + 'settings_server_type' => 'This is required to retrieve e-mails from the host server', + 'settings_server_username' => 'This is the email address that receives reports', + 'settings_share_site_stats' => 'This gives access to report statistics via the API.', + 'settings_site_tagline' => 'Explique brevemente a função do site.', +); diff --git a/application/i18n/pt_PT/ui_admin.php b/application/i18n/pt_PT/ui_admin.php new file mode 100755 index 0000000000..8662645022 --- /dev/null +++ b/application/i18n/pt_PT/ui_admin.php @@ -0,0 +1,291 @@ + 'Acesso negado. As suas credenciais não são válidas ou o seu pedido foi recusado.', + 'access_denied_others' => 'Acesso negado. O seu pedido foi entendido, mas negado devido a limites de acesso, tal como, tempo. Tente voltar mais tarde.', + 'access_level' => 'Nível de Acesso', + 'actions' => 'Ações', + 'add_to_category' => 'Adicionar à Categoria', + 'added' => 'adicionado', + 'added_edited' => 'adicionado/editado', + 'addons' => 'Complementares', + 'admin_role' => 'Administrador', + 'alerts' => 'Alertas', + 'alerts_received' => 'Alertas Recebidos', + 'all' => 'Todos', + 'am' => 'AM', + 'anonymous' => 'Anónimo', + 'anyone_role' => 'Alguém', + 'anywhere' => 'Em qualquer parte', + 'api_banned' => 'API Banida', + 'api_logs' => 'Registos de Eventos API', + 'api_settings' => 'Configurações de API', + 'api_unban' => 'RETIRAR BANE', + 'api_unban_all' => 'RETERIAR BANE a TUDO', + 'approved' => 'Aprovado', + 'approve_auto' => 'Aprovar Automaticamente', + 'approve_manual' => 'Aprovar Manualmente', + 'archived' => 'Arquivado', + 'are_you_sure_you_want_to' => 'Tem a certeza que pretende', + 'are_you_sure_you_want_to_delete_this_item' => 'Tem a certeza que pretende apagar este item?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Tem a certeza que pretende apagar esta fotografia?', + 'are_you_sure_you_want_to_switch_forms' => 'Tem a certeza que pretende mudar de formulários?', + 'assign' => 'Atribuir', + 'assignments' => 'Atribuições', + 'assign_badge' => 'Atribuir Crachá', + 'author' => 'Autor', + 'author_email' => 'E-mail do Autor', + 'back' => 'Voltar', + 'banip_action' => 'Banir IP', + 'between_times' => 'Entre Tempos', + 'blocks' => 'Blocos', + 'body' => 'Corpo', + 'cancel' => 'Cancelar', + 'categories' => 'Categorias', + 'chart_display_error' => 'Erro ao visualizar o gráfico', + 'check_message_valid' => 'Por favor, certique-se de que a sua mensagem é válida.', + 'check_number' => 'Por favor, certifique-se de que o número é válido.', + 'check_sms_settings' => 'Por favor, verifique as suas configurações de SMS', + 'checkin_details' => 'Detalhes de Verificação', + 'checkins' => 'Verificações', + 'cities_loaded' => 'Cidades carregadas', + 'code' => 'código', + 'code_out_of_sync' => 'Versão de código dessincronizada.', + 'color' => 'Cor', + 'comments' => 'Comentários', + 'confirmation_code' => 'O seu código de confirmação de alertas é:', + 'confirm_msg' => 'Este Utilizador Foi', + 'count' => 'Contagem', + 'country_not_found' => 'País não encontrado', + 'created_edited' => 'criado/editado', + 'create_report' => 'Criar um Relatório', + 'critical_upgrade' => 'Atualização Crítica', + 'csv' => 'CSV', + 'currently_active' => 'Atualmente Ativo', + 'currently_inactive' => 'Atualmente Inativo', + 'custom_forms_insufficient_permissions' => 'Não tem permissões suficientes para editar os seguintes campos personalizados.', + 'daily' => 'Diariamente', + 'dashboard' => 'Painel', + 'database' => 'base de dados', + 'date_time' => 'Data & Hora', + 'date_added' => 'Data Adicionada', + 'date_modified' => 'Data Alterada', + 'days_of_the_week' => 'Dias da semana', + 'db_out_of_sync' => 'Versão de DB dessincronizada.', + 'deleted' => 'apagado', + 'delete_action' => 'Apagar', + 'delete_all' => 'Apagar tudos os relatorios', + 'delete_badge' => 'Apagar Crachá', + 'demo' => 'Demonstração', + 'description' => 'Descrição', + 'disabled' => 'Desativado', + 'divider_start_field' => 'Início do Divisor', + 'divider_end_field' => 'Fim do Divisor', + 'divider_class' => 'classe divisor', + 'download_reports' => 'Transferir Relatórios', + 'dropdown_choices' => 'Lista de Seleções', + 'edited' => 'EDITADO', + 'edited_by' => 'Editado por', + 'edit_action' => 'Editar', + 'edit_log' => 'Editar Registo de Eventos', + 'email' => 'e-mail', + 'entire_collective' => 'Todo Coletivo', + 'error_geocoding' => 'Erro na geocodificação! Erro HTTP', + 'error_imap' => 'A biblioteca PHP IMAP não está instalada', + 'error_twitter' => 'Dados incorrectos', + 'error_msg' => 'Erro', + 'error_post_incident' => 'Erro, não é possível afixar o incidente', + 'every_six_hours' => 'A cada seis horas', + 'every_twelve_hours' => 'A cada doze horas', + 'experimental' => 'Experimental', + 'faqs' => 'Perguntas Mais Frequentes', + 'feed' => 'feed', + 'feedback' => 'Feedback', + 'feeds' => 'feeds', + 'field_choices' => 'Lista de Seleções', + 'field_default' => 'Valor Predefinido', + 'field_datatype' => 'Tipo de Dados', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'de Marcação', + 'field_datatype_numeric' => 'Numérico', + 'field_datatype_text' => 'Texto Livre', + 'field_height' => 'Altura (em linhas)', + 'field_hidden' => 'Campo Ocultado', + 'field_maxlength' => 'Limite máximo de carateres', + 'field_name' => 'Nome do Campo', + 'field_toggle' => 'Alternar', + 'field_toggle_no' => 'Não', + 'field_toggle_yes_close' => 'Sim, fechado por predefinição', + 'field_toggle_yes_open' => 'Sim, aberto por predefinição', + 'file_not_found_upload' => 'Não foi possível encontrar o ficheiro enviado', + 'file_open_error' => 'Não foi possível abrir o ficheiro para leitura', + 'form_not_exists' => 'Esse Formulário Não Existe!', + 'forum' => 'Fórum', + 'free_text_field' => 'Campo da Área do Texto (Texto Livre)', + 'date_field' => 'Campo da Data', + 'radio_field' => 'Campo dos Botões Radio', + 'checkbox_field' => 'Campo das Caixas de Marcação', + 'dropdown_field' => 'Campo da Lista', + 'from' => 'De', + 'from_date' => 'De', + 'geonames_timeout' => 'Erro de Intervalo do Geonames', + 'get_help' => 'Obter Ajuda', + 'get_more_themes' => 'Obter mais temas', + 'get_more_plugins' => 'Obter mais plugins', + 'header_actions' => 'Ações', + 'header_add_edit' => 'Adicionar/Editar', + 'header_email' => 'e-mail', + 'header_manage_users' => 'Gerir Utilizadores', + 'header_role' => 'Função', + 'header_user' => 'Utilizador', + 'help' => 'ajuda', + 'hourly' => 'De hora em hora', + 'incident_feed' => 'Incidente de feed para', + 'installer_info' => 'A pasta de instalação ainda existe. Apaga a pasta de instalação, pois ela cria uma vulnerabilidade de segurança.', + 'instance' => 'Instância', + 'instances' => 'Instâncias', + 'instance_details' => 'Detalhes da Instância', + 'invalid_parameter' => 'Parâmetro Inválido', + 'ip_address' => 'Endereço de IP', + 'is_date' => 'É o Campo da Data?', + 'ispublic_visible' => 'Quem Pode Ver as Respostas', + 'ispublic_submit' => 'Quem Pode Submeter as Respostas', + 'keyword' => 'Palavra-chave', + 'keywords' => 'Palavras-chaves', + 'label_email' => 'Endereço de e-mail:', + 'label_full_name' => 'Nome Completo:', + 'label_password' => 'Senha:', + 'label_role' => 'Função:', + 'label_username' => 'Nome de Utilizador:', + 'layers' => 'Camadas', + 'login_role' => 'Moderador', + 'logout' => 'Fechar Sessão', + 'logs' => 'Registos de Eventos', + 'manage' => 'Gerir', + 'manage_roles' => 'Gerir Funções e Permissões', + 'manage_users' => 'Ver Utilizadores', + 'manage_users_edit' => 'Adicionar/Editar Utilizadores', + 'mark_as' => 'Marcar Como', + 'marked_as_not_spam' => 'marcado como não spam', + 'marked_as_spam' => 'marcado como spam', + 'match_no_documents' => 'não corresponde a quaisquer documentos', + 'message' => 'Mensagem', + 'messages' => 'Mensagens', + 'messages_laconica' => 'Mensagens do StatusNet', + 'messages_twitter' => 'Mensagens do Twitter', + 'message_sent' => 'A sua mensagem foi enviada!', + 'mhi' => 'MHI', + 'minute' => 'Minuto', + 'minutes' => 'Minutos', + 'missing_parameter' => 'Parâmetro em Falta', + 'moderator' => 'Moderador', + 'modified' => 'modificado', + 'modify_timezone' => 'Modificar as Definições do Fuso Horário', + 'move_down_action' => 'mover para baixo', + 'move_up_action' => 'mover para cima', + 'multiple_hosted_instances' => 'Múltiplas Instâncias Recebidas', + 'my_alerts' => 'Os Meus Alertas', + 'my_checkins' => 'As Minhas Verificações', + 'my_profile' => 'O Meu Perfil', + 'my_reports' => 'Os Meus Relatórios', + 'my_votes' => 'Votos Expressos', + 'my_votes_up' => 'Positivo', + 'my_votes_down' => 'Negativo', + 'name' => 'Nome', + 'new_alert' => 'Criar Novo Alerta', + 'new_private' => 'Criar Nova Mensagem', + 'new_password' => 'Nova Senha', + 'no' => 'Não', + 'none_category_explanation' => 'Esta é uma categoria especial que não irá aparecer no formulário de submissão do relatório para os relatórios submetidos pelos utilizadores. Isto é utilizado para manter os relatórios sem categorias atribuídas (relatórios não categorizados) como resultado de uma eliminação da categoria.', + 'notification' => 'Notificação', + 'not_case_sensitive' => 'Não é sensível a MAI/MIN.', + 'not_found' => 'Não Encontrado', + 'no_data' => 'Sem dados. Não existem resultados para apresentar.', + 'no_error' => 'Nenhum Erro', + 'no_result_display_msg' => 'Sem Resultados para Apresentar!', + 'of' => 'de', + 'on_specific_count' => 'Numa Contagem Específica', + 'openids' => 'OpenID', + 'page' => 'página', + 'pages' => 'páginas', + 'page_not_found' => 'Página não encontrada', + 'page_not_found_message' => 'Desculpa, a página que você quer visualizar não existe.', + 'parameters_used' => 'Parâmetros utilizados', + 'password' => 'Senha', + 'password_reset' => 'Reinicar Senha', + 'password_reset_message_line_1' => 'Caro', + 'password_reset_message_line_2' => 'Nós recebemos um pedido para reiniciar a senha para', + 'password_reset_message_line_3' => 'Para alterar a sua senha, por favor, clique em baixo na hiperligação (ou copie-a e cole no seu navegador).', + 'password_reset_message_line_4' => 'A sua senha foi redefinida. Seguem os seus dados atualizados', + 'password_reset_subject' => 'Redefinir senha', + 'phone' => 'Telefone', + 'please_select' => 'Por favor selecione', + 'pm' => 'PM', + 'preview' => 'Pré-visualização', + 'private_message' => 'Mensagem', + 'private_messages' => 'Mensagens privadas', + 'private_sent' => 'Mensagem privada enviada', + 'private_subject' => 'Assunto', + 'private_to' => 'Para', + 'read' => 'lidos', + 'relevance' => 'Relevância', + 'report_title' => 'Título do relato', + 'report_date' => 'Data do relato', + 'reporters' => 'Relatores', + 'reports' => 'Relatos', + 'required' => 'Obrigatório', + 'reset' => 'Redefinir', + 'response' => 'Resposta', + 'results' => 'Resultados', + 'save_settings' => 'UNBAN ALL', + 'search' => 'Pesquisa', + 'search_reports' => 'Pesquisar relatos', + 'searching_for' => 'a pesquisar por', + 'select_download_format' => 'Escolhe o formato de dados que pretendes descarregar', + 'select_item' => 'Por favor selecione um item', + 'sender' => 'Remitente', + 'send_to' => 'Enviar para', + 'server_time' => 'Tempo do servidor', + 'settings' => 'Definições', + 'special_category' => 'Categoria especial', + 'state' => 'Estado', + 'statistics' => 'Estatísticas', + 'stats' => 'Estatísticas', + 'stats_collection_error' => 'Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!', + 'specific_days' => 'Dias específicos', + 'subject' => 'Assunto', + 'superadmin_role' => 'Super Admin', + 'text_field' => 'Campo de texto', + 'theme_name' => 'Nome', + 'title' => 'Gerir utilizadores', + 'to' => 'para', + 'to_date' => 'para', + 'translate_reports' => 'Traduzir relatos', + 'unapproved' => 'não aprovado', + 'unknown' => 'desconhecido', + 'unknown_failure' => 'Erro Desconhecido', + 'unread' => 'não lido', + 'unsubscribe_message' => 'Não irá receber mais alertas de', + 'upgrade_ushahidi' => 'Atualizar o Ushahidi', + 'upgrade_ushahidi_status' => 'Atualizar estado do Ushahidi', + 'user' => 'Utilizador', + 'users' => 'Utilizadores', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificado/Não verificado', + 'version' => 'Versão', + 'version_available' => 'pode ser atualizada.', + 'view_private' => 'Mensagens privadas', + 'view_site' => 'Ver site', + 'view_report' => 'Ver relato', + 'welcome' => 'Bem-vindo', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Sim', + 'user_no_logins' => 'Entradas', + 'user_last_login' => 'Última entrada', + 'user_confirmed_account' => 'Conta confirmada?', +); diff --git a/application/i18n/pt_PT/ui_main.php b/application/i18n/pt_PT/ui_main.php new file mode 100755 index 0000000000..04b1b5c78b --- /dev/null +++ b/application/i18n/pt_PT/ui_main.php @@ -0,0 +1,621 @@ + 'Sobre Nós', + 'access' => 'Acesso', + 'access_limits' => 'Limite de Acesso', + 'account_name' => 'Nome de Conta', + 'actions' => 'Acções', + 'action_confirm' => 'Esta acção não poderá ser desfeita. Tem a certeza de que pretende continuar?', + 'activate' => 'Ativar', + 'active' => 'Activo', + 'add' => 'Adicionar', + 'added_by' => 'Adicionado por', + 'additional_data' => 'Dados adicionais', + 'additional_reports' => 'Relatórios Adicionais', + 'add_edit' => 'Adicionar/editar', + 'add_field' => 'Adicionar Campo', + 'add_language' => 'Adicionar Linguagem', + 'add_new' => 'Adicionar Novo', + 'add_new_category' => 'Adicionar Nova Categoria', + 'add_translation' => 'Adicionar Traducção', + 'admin' => 'Administração', + 'alerts' => 'Obter alertas', + 'alerts_alert_me' => 'Avisem-me se surgir um relato nas redondezas:', + 'alerts_btn_send' => 'Guardar o Meu Alerta', + 'alerts_email' => 'Endereço de Email:', + 'alerts_enter_email' => 'Insira o seu email', + 'alerts_enter_mobile' => 'Insira o número de telemóvel com o código de país (portugal +351)', + 'alerts_get' => 'Obter os Alertas', + 'alert_has_been' => 'O alerta foi', + 'alerts_mobile_phone' => 'Telemóvel:', + 'alerts_place_spot' => 'Ou, seleccione o local pretendido no mapa abaixo, e será avisado quando surgir um relato nas redondezas ( 20 quilómetros).', + 'alerts_place_spot2' => 'Se não consegue encontrar a sua localização, por favor indique no mapa a localização correta', + 'alerts_rss' => 'RSS Feeds (copie o endereço abaixo)', + 'alerts_select_city' => 'Selecione a cidade', + 'alerts_step1_select_city' => 'Passo 1: Selecione a sua cidade ou localização:', + 'alerts_step2_send_alerts' => 'Passo 2: Enviem-me os alertas para o:', + 'alerts_step3_select_catgories' => 'Passo 3 (Opcional): Selecionar as Categorias', + 'alert_confirm_previous' => 'Confirmação do anterior alerta', + 'alert_saved' => 'O seu alerta foi guardado!', + 'all' => 'Todos', + 'allowed' => 'Permitido', + 'allowed_tags' => 'Etiquetas HTML permitidas: "%s".', + 'allowed_iframes' => 'Iframes são apenas permitidos desde: %s.', + 'all_categories' => 'Todas as Categorias', + 'all_time' => 'Todos', + 'and' => 'e', + 'api' => 'API', + 'approve' => 'Aprovado', + 'approved' => 'Aprovado', + 'approved_reports' => 'Relatos Aprovados', + 'approve_this_report' => 'Aprovar este Relato', + 'approximate' => 'Aproximado', + 'archive' => 'Arquivar', + 'archived' => 'Arquivado', + 'ascending' => 'Ascendente', + 'at' => 'neste', + 'author' => 'Autor', + 'auto_checkin' => 'Login automático', + 'avg_reports_per_day' => 'Média de Relatórios por Dia', + 'awaiting_approval' => 'Á espera de aprovação', + 'awaiting_verification' => 'Aguardando verificação', + 'badge' => 'Emblema', + 'badges' => 'Emblemas', + 'badge_image' => 'Imagem do Emblema', + 'badge_image_upload_your_own' => 'Ou pode enviar a sua própria imagem para o emblema', + 'badge_pack' => 'Pacote de emblemas', + 'badge_select' => 'Escolha um Emblema', + 'blog' => 'Blog', + 'browse_profiles' => 'Ver Perfis', + 'cancel' => 'Cancelar', + 'categories' => 'Categorias', + 'category' => 'Categoria', + 'category_filter' => 'Filtro de Categoria', + 'category_has_been' => 'A categoria foi ', + 'category_name' => 'Nome da Categoria', + 'change_date_range' => 'Alterar Intervalo de Datas', + 'change_password' => 'Alterar Senha', + 'change_picture' => 'Alterar a minha Imagem', + 'choose' => 'Seleccione um', + 'choose_data_points' => 'Seleccione o conjunto para fazer download', + 'choose_date_range' => 'Ou escolha o seu próprio intervalo de datas', + 'choose_field_type' => 'Escolha o tipo de campo', + 'cleanurl' => 'Limpar Endereços (URL)', + 'clear' => 'Limpar', + 'clear_map' => 'Limpar Mapa', + 'close' => 'Fechar', + 'clusters' => 'Grupos', + 'color' => 'Cor', + 'comment' => 'Comentar', + 'comments' => 'Comentário', + 'comment_details' => 'Detalhes do comentário', + 'configuration_saved' => 'As suas definições foram gravadas!', + 'configure' => 'Configuração', + 'confirm_email_successful' => 'Confirmou com sucesso o seu endereço de correio eletrónico! Por favor faça login.', + 'confirm_email_successful_and_approval' => 'Você confirmou seu endereço de email! Um administrador deverá aprovar sua conta antes que você possa fazer login.', + 'confirm_email_failed' => 'Confirmação de email falhou! Pode pedir nova confirmação em baixo', + 'contact' => 'Contacto ', + 'contact_code' => 'Código de Segurança', + 'contact_email' => 'O seu endereço de Correio Eletrónico', + 'contact_message' => 'Mensagem', + 'contact_message_has_send' => 'A sua Mensagem foi enviada!', + 'contact_name' => 'Nome', + 'contact_phone' => 'Número de Telefone', + 'contact_send' => 'Enviar Mensagem', + 'contact_subject' => 'Assunto', + 'copyright' => 'Copyright © 2010 Ushahidi.com. Todos os direitos reservados (traducção fbnsantos.com).', + 'create' => 'Criar', + 'create_edit' => 'Criar/Editar', + 'create_new' => 'Criar Novo', + 'create_new_password' => 'Criar nova Senha', + 'create_report' => 'Criar Relatório', + 'credibility' => 'Credibilidade', + 'current_password' => 'Senha Atual', + 'custom_fields' => 'Campos personalisados', + 'data' => 'Informação', + 'date' => 'Data', + 'date_format' => '(mm/dd/aa)', + 'date_time' => 'Data & Hora', + 'day' => 'dia', + 'deactivate' => 'Desativar', + 'default_location_name' => 'Santa Maria da Feira, Portugal', + 'delete' => 'Eliminar', + 'deleted' => 'Eliminado', + 'deletes' => 'Eliminar', + 'delete_disabled' => 'Desligado a função eliminar', + 'delete_last' => 'Apagar Último', + 'delete_report' => 'Eliminar este relato', + 'delete_selected' => 'Apagar Selecionado', + 'delete_spam' => 'Eliminar Spam', + 'demo' => 'Demonstração', + 'description' => 'Descrição', + 'descending' => 'Descendente', + 'detailed_location_example' => 'Exemplo: Esquina do shoping, rua das antas, Porto', + 'details' => 'Detalhes', + 'direct_report' => 'Relato Directo', + 'disabled' => 'Desligado', + 'disapprove' => 'Não aprovado', + 'download_reports' => 'Download relatos', + 'download' => 'Descarregar', + 'edit' => 'Editar', + 'edit_form_fields' => 'Editar campos do formulário', + 'edit_report' => 'Editar Relato', + 'email' => 'Email', + 'email_address' => 'Endereço de Email', + 'email_configuration' => 'Configurações do servidor de email', + 'email_server_host' => 'Servidor de Mail', + 'email_server_password' => 'Senha do Servidor de Mail', + 'email_server_port' => 'Porta do Servidor de Mail', + 'email_server_ssl_support' => 'Suporte SSL do Servidor de Mail', + 'email_server_type' => 'Tipo de Servidor de Mail', + 'email_server_username' => 'Nome de utilizador do Servidor de Mail', + 'email_settings_comment_0' => 'Como tal, as configurações devem ser as associadas a este endereço de email', + 'email_settings_comment_00' => 'No sentido de receber relatos por email, por favor insira mais abaixo, a configuração da sua conta de email. Tenha em atenção que os emails serão recebidos no seu', + 'email_settings_comment_1' => 'Alguns servidores exigem o nome da conta de email completa', + 'email_settings_comment_2' => 'Password da sua conta de email', + 'email_settings_comment_3' => 'Portas: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Exemplos: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Exemplos: pop3, imap', + 'email_settings_comment_6' => 'Activar ou desactival ligações seguras (SSL)', + 'empty' => '---VAZIO---', + 'end_point' => 'Para', + 'error' => 'Erro!', + 'example' => 'Exemplo', + 'example_country' => 'Portugal', + 'external_apps' => 'Aplicações Externas', + 'external_video_link' => 'Link para Vídeo Externo', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Dê-nos a sua opinião', + 'feedback_reports' => 'Por favor, dê a sua opinião sobre a web, enviando um e-mail para', + 'feeds' => 'Feeds', + 'feed_has_been' => 'Este feed foi', + 'feed_items' => 'Itens do Feed', + 'feed_name' => 'Nome do Feed', + 'feed_url' => 'URL do Feed', + 'field_unused' => 'Campo não utilizado', + 'file' => 'Ficheiro', + 'file_over_max_allowed' => 'O seu ficheiro tem mais do que o máximo permitido para tamanho de ficheiro', + 'filters' => 'Filtros', + 'filter_reports' => 'Filtrar Relatórios', + 'filter_reports_by' => 'Filtrar Relatórios por', + 'filter_reports_contain' => 'Filtrar relatórios que contenham', + 'find' => 'Pesquisar', + 'find_location' => 'Procurar Lugar', + 'first_name' => 'Primeiro Nome', + 'force_run_scheduler' => 'Forçar Execução do Calendarizador', + 'forgot_password' => 'Esqueceu da sua password?', + 'form' => 'Formulário', + 'forms' => 'Formulários', + 'form_description' => 'Descrição do Formulário', + 'form_edit' => 'Editar este formulário', + 'form_has_been' => 'O Formulário foi', + 'form_title' => 'Título do Formulário', + 'from' => 'De', + 'full_name' => 'Nome Completo', + 'geolocation_available' => 'Georreferenciação Disponível', + 'geometry_color' => 'Cor', + 'geometry_comments' => 'Comentários', + 'geometry_label' => 'Etiqueta', + 'geometry_strokewidth' => 'Largura de Traço', + 'go' => 'IR', + 'hashtag' => 'Hashtag', + 'has_been' => 'Foi', + 'help' => 'Como ajudar', + 'hidden' => 'Escondido', + 'hide' => 'Esconder', + 'hide_this_message' => 'Esconder esta mensagem', + 'home' => 'Inicio', + 'how_to_report' => 'Como relatar', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Usado para o identificar no sítio perante os outros utilizadores', + 'image' => 'Imagem', + 'images' => 'Imagens', + 'image_icon' => 'Imagem/Icon', + 'inactive' => 'Desativo', + 'inbox' => 'Caixa de entrada', + 'incident' => 'Incidente', + 'incidents_nearby' => 'Relatos na vizinhança', + 'incident_location' => 'Localização do Relato', + 'include' => 'Incluir', + 'include_categories' => 'Inserir nas Categorias', + 'include_custom_fields' => 'Incluir Campos Personalizados', + 'include_description' => 'Insira a descrição', + 'include_detail' => 'Insira o máximo de detalhe possível', + 'include_latitude' => 'Insira Latitude', + 'include_location_information' => 'Insira informação sobre a localização', + 'include_longitude' => 'Insira Longitude', + 'include_personal_info' => 'Incluir Informação Pessoal', + 'incoming_media' => 'Media a Entrar', + 'information_evaluation' => 'Actualização da Informação', + 'input_location' => 'Insira o seu local com precisão', + 'insufficient_role' => 'A sua conta não tem a autorização necessária para login completo. Por favor contacte o administrador.', + 'in_response_to' => 'Em resposta a', + 'ip_address' => 'Endereço IP', + 'is_this_your_profile' => 'É este o seu perfil?', + 'item' => 'Campo', + 'items' => 'campos', + 'item_details' => 'detalhes do campo', + 'item_title' => 'Título do campo', + 'key' => 'Chave', + 'keywords' => 'Palavras chave', + 'kml_kmz_file' => 'Ficheiro KMZ/KML', + 'kml_kmz_upload' => 'Enviar ficheiro KMZ/KML', + 'kml_url' => 'URL do KML', + 'laconica' => 'Lacónica', + 'language' => 'Lingua', + 'last' => 'Último', + 'last_month' => 'Mês passado', + 'last_name' => 'Sobrenome', + 'last_year' => 'Último ano', + 'latitude' => 'Latitude', + 'layers' => 'Camadas', + 'layers_filter' => 'Outras Layers', + 'layer_has_been' => 'A Layer foi', + 'layer_name' => 'Nome da Layer', + 'layer_url' => 'URL da Camada', + 'leave_a_comment' => 'Deixar um comentário', + 'less_information' => 'Menos Informação', + 'level' => 'Nível', + 'level_has_been' => 'Este nível foi', + 'level_name' => 'Nome do nível', + 'limited' => 'Limitado', + 'link' => 'Link', + 'list' => 'Lista', + 'loading_reports' => 'A carregar relatórios', + 'location' => 'Localização', + 'locations' => 'Localizações', + 'location_example' => 'Cidade, Estado e/ou País', + 'login' => 'Login', + 'login_account_creation_successful' => 'Conta criada com sucesso. Pode fazer login agora.', + 'login_confirmation_sent' => 'Foi enviada uma confirmação para o seu endereço de email', + 'login_approval_required' => 'Conta criada. Sua conta deve ser aprovada por um administrador antes de poder entrar.', + 'login_email_doesnt_exist' => 'O endereço de email não existe. Tente um endereço diferente ou crie uma conta.', + 'login_select_openid' => 'Por favor escolha o seu fornecedor de conta.', + 'login_with' => 'Fazer Login com', + 'login_userpass' => 'Email e Senha', + 'login_openid' => 'OpenID', + 'login_signup' => 'Subscrever', + 'login_signup_click' => 'Criar uma Conta', + 'login_signup_confirmation_message' => 'Obrigado por subscrever %1$s. Para confirmar o seu endereço de email por favor vá ao seguinte URL: %2$s', + 'login_signup_confirmation_subject' => 'Confirmação de Subscrição', + 'login_signup_admin_approval_message' => 'Um novo usuário se inscreveu em %1$s. Para aprovar a sua inscrição, por favor vá para o seguinte URL: %2$s', + 'login_signup_admin_approval_subject' => 'aprovação de um novo usuário', + 'login_signup_approval_message' => 'Sua conta de usuário foi aprovada para %1$s. Para entrar vá para o seguinte URL: %2$s', + 'login_signup_approval_subject' => 'Conta de usuário aprovado', + 'login_signup_text' => 'Criar uma conta agora para poder tirar mais partido das potencialidades deste sítio.', + 'longitude' => 'Longitude', + 'map' => 'Mapa', + 'mark_read' => 'Marcar como lido', + 'mark_unread' => 'Marcar como para ler', + 'maximum_filesize' => 'Tamanho máximo de ficheiro', + 'media' => 'Media', + 'media_filter' => 'Filtro de Media', + 'members' => 'Membros', + 'manage_your_account' => 'Gerir a sua conta', + 'message' => 'Messagem', + 'messages' => 'Mensagens', + 'message_details' => 'Detalhes da Mensagem', + 'message_non_numeric_source' => 'Mensagem de uma fonte não numérica:', + 'mobile' => 'Telemóvel', + 'modify' => 'Alterar', + 'modify_date' => 'Data da alteração', + 'month' => 'mês', + 'more' => 'Mais', + 'more_information' => 'Informação Adicional', + 'multi_country_instance' => 'Esta instalação de Ushahidi engloba vários Países?', + 'must_confirm_email_address' => 'Tem de confirmar o seu endereço de email para aceder a esta instalação. Se perdeu o seu email de confirmação pode pedir um novo em baixo.', + 'name' => 'Nome', + 'nearby_report' => 'Relatório de Proximidade', + 'new' => 'Novo', + 'news' => 'Notícias', + 'news_feeds' => 'Feeds de Notícias', + 'news_source' => 'Fonte das notícias', + 'new_category' => 'Nova Categoria', + 'new_password' => 'Nova Password', + 'new_report' => 'Novo Relato', + 'next' => 'próximo', + 'no' => 'Não', + 'no_checkins' => 'Sem entradas para visualizar', + 'no_data' => 'Sem dados', + 'none' => 'Nenhum', + 'notices' => 'Avisos', + 'not_approved' => 'Reprovado', + 'not_approved_singular' => 'Reprovado', + 'not_selected' => '---Não Selecionado---', + 'not_spam' => 'não é spam', + 'not_specified' => 'Não Especificado', + 'no_reports' => 'Não há relatórios', + 'no_results' => 'Não existem resultados', + 'off' => 'Desligado', + 'official_news' => 'Oficial & mainstream news', + 'on' => 'Ligado', + 'option' => 'Opção', + 'optional' => 'Opcional', + 'options' => 'Opções', + 'organization' => 'Organização', + 'organizations' => 'Organizações', + 'organization_description' => 'Descrição da Organização', + 'organization_email' => 'Email da Organização', + 'organization_has_been' => 'A organização foi', + 'organization_name' => 'Nome da Organização', + 'organization_phone_1' => 'Telefone 1 da Organização', + 'organization_phone_2' => 'Telefone 2 da Organização', + 'organization_website' => 'Website da organização', + 'original' => 'Original', + 'original_description' => 'Descrição Original', + 'original_title' => 'Título Original', + 'other_ushahidi_instances' => 'OUTRAS IMPLEMENTAÇÕES DO USHAHIDI', + 'outbox' => 'Caixa de Saída', + 'outgoing' => 'A Sair', + 'page' => 'Página', + 'pages' => 'Páginas', + 'page_description' => 'Descrição da página', + 'page_has_been' => 'A página foi', + 'page_tab_name' => 'Nome do Link para a página', + 'page_title' => 'Título da página', + 'parent_category' => 'Pertence à categoria', + 'password' => 'Senha', + 'password_again' => 'Insira novamente a sua Password', + 'password_changed_successfully' => 'Senha alterada com sucesso! Faça Login em baixo', + 'password_forgot' => 'Esqueceu a sua password?', + 'password_reset_confirm' => 'Foi enviado para o seu email a nova password.', + 'password_save' => 'Manter ligado neste computador?', + 'past_month' => 'Mês passado', + 'past_year' => 'Ano passado', + 'pending' => 'Pendente', + 'per' => 'por', + 'personal_information' => 'Informação pessoal Opcional.', + 'phone' => 'Telefone', + 'photos' => 'Fotos', + 'pictures' => 'Imagens', + 'pictures_and_videos' => 'Imagens e Vídeos', + 'pinpoint_location' => '* pesquise pela sua localização, ou coloque o símbolo (apontador) na localização correcta', + 'play' => 'Jogar', + 'please_note' => 'Repare', + 'plugins' => 'Plugins', + 'plugin_url' => 'Site Web para plugins', + 'public_profile' => 'Perfil Público', + 'public_profile_url' => 'URL do Perfil Público', + 'preview' => 'Anterior', + 'preview_item' => 'Campo anterior', + 'preview_message' => 'Mensagem anterior', + 'previous' => 'Anteriores', + 'private' => 'Privado', + 'profile_color' => 'Cor do Perfil', + 'profile_saved' => 'O seu perfil foi gravado', + 'quick_stats' => 'Estatísticas Simples', + 'rating' => 'Classificação', + 'read' => 'Ler', + 'receive' => 'Recebido', + 'receive_from' => 'Recebido de', + 'receive_notifications' => 'Notificações recebidas', + 'recent_reports' => 'Relatos recentes', + 'refresh_news_feeds' => 'Refrescar Novos Feeds de Notícias', + 'registered_email' => 'Email Registado', + 'remove' => 'remover', + 'reply' => 'Responder', + 'report' => 'Relatar', + 'reports_listed' => 'Relatórios (do mapa, por ordem cronológica)', + 'reporter' => 'Repórter', + 'reporters' => 'Repórteres', + 'reporter_date' => 'Data da Reportagem', + 'reporter_email' => 'Email do Reporter', + 'reporter_first_name' => 'Nome do Reporter', + 'reporter_has_been' => 'O reporter foi', + 'reporter_ip' => 'endereço IP do Repórter', + 'reporter_last_name' => 'Sobrenome do Reporter', + 'reporter_level' => 'Nível do Repórter', + 'reporter_levels' => 'Níveis dos Repórteres', + 'reporter_phone' => 'Telefone do Reporter', + 'reports' => 'Relatos', + 'reports_btn_browse' => 'Procurar', + 'reports_btn_submit' => 'Enviar', + 'reports_by_this_user' => 'Relatórios deste Utilizador', + 'reports_categories' => 'Categorias', + 'reports_count' => '%d Relatórios', + 'reports_date' => 'Data', + 'reports_description' => 'Descrição', + 'reports_download_csv' => 'Os relatos serão enviados no formato CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Características', + 'reports_find_location' => 'Procure a sua localização', + 'reports_first' => 'Primeiro Nome', + 'reports_last' => 'Sobrenome', + 'reports_location_name' => 'Mais detalhes sobre a localização', + 'reports_news' => 'Link para a fonte de informação', + 'reports_optional' => 'Informação Opcional', + 'reports_photos' => 'Enviar Fotos', + 'reports_return' => 'Voltar para a páginas dos relatos', + 'reports_select_city' => 'Seleccione a cidade', + 'reports_submitted' => 'O seu relato foi submetido à nossa equipa para revisão/aprovação. Nós em breve entraremos em contacto consigo caso seja necessário.', + 'reports_submit_new' => 'Submeter um novo relato', + 'reports_time' => 'Hora', + 'reports_timeline' => 'Linha temporal', + 'reports_title' => 'Título do relato', + 'reports_video' => 'Link do Vídeo', + 'report_an_incident' => 'Relatar acontecimento', + 'report_details' => 'Detalhes do Relatório', + 'report_option_1' => 'Através do envio de um sms para:', + 'report_option_2' => 'Através do envio de um email para: ', + 'report_option_3' => 'Através do envio de um tweet com o hashtag/s', + 'report_option_4' => 'Através do preenchimento do formulário (Preferível)', + 'report_option_external_apps' => 'Usando uma aplicação', + 'report_saved' => 'O seu relato foi guardado', + 'report_title' => 'Título do relato', + 'request_information' => 'Pedido de mais informações', + 'request_location' => 'Pedido de Localização', + 'required' => 'Obrigatório', + 'requirements' => 'Requísitos', + 'resend_confirm_email' => 'Reenviar Email de confirmação', + 'reset' => 'Repor', + 'reset_all_filters' => 'Repor todos os Filtros', + 'reset_password' => 'Renovar Password', + 'retrieve_city_names' => 'a procurar as cidades através do país seleccionado', + 'riverid_information' => 'Contas geridas pelo serviço %s .', + 'riverid_exists_login' => 'Já tem uma conta gerida por CrowdMapID! Tente usar o seu email CrowdMapID e a sua senha para entrar', + 'role' => 'Papel', + 'rss' => 'RSS', + 'save' => 'Guardar', + 'saved' => 'Guardado', + 'save_add_new' => 'Guardar e Acrescentar Novo', + 'save_close' => 'Guardar & Fechar', + 'save_report' => 'Guardar relato', + 'schedule' => 'Calendário', + 'scheduler' => 'Calendarizar', + 'scheduler_day' => 'Dia', + 'scheduler_hour' => 'Hora', + 'scheduler_log' => 'Registos do Calendarizador', + 'scheduler_minute' => 'Minutos', + 'scheduler_weekday' => 'Dia da semana', + 'search' => 'PESQUISAR', + 'search_results' => 'Resultados da Pesquisa', + 'security_code' => 'Código de segurança', + 'select_all' => 'Selectionar todos', + 'select_field_type' => 'Seleccione o tipo de campo', + 'select_form_type' => 'Seleccione o tipo de formulário', + 'select_in_map' => 'Seleccione no mapa', + 'select_multiple' => 'Seleccione tudo o que pretender', + 'select_one' => 'Por favor, certifique que escolheu pelo menos um item', + 'select_theme' => 'Seleccionar aparência', + 'send' => 'Enviar', + 'send_confirmation' => 'Enviar Confirmação', + 'sending_to' => 'A enviar para', + 'sent' => 'Enviado', + 'sent_by' => 'Enviado por', + 'server_address' => 'Endereço do Servidor', + 'server_type' => 'Tipo do Servidor', + 'service' => 'Serviço', + 'service_username' => 'Nome de Utilizador do Serviço', + 'service_user_id' => 'ID de Utilizador do Serviço', + 'share' => 'Partilhar', + 'shared_data' => 'Data da partilha', + 'share_has_been' => 'A partilha foi', + 'sharing' => 'Partilhando', + 'shorter_map' => 'Mapa mais curto', + 'show' => 'Mostrar', + 'show_all' => 'Mostrar todos', + 'show_messages' => 'Mostrar Mensagens', + 'showing_reports_from' => 'A mostrar relatórios de %1$s até %2$s', + 'site' => 'Sítio de Web', + 'site_email_address' => 'Endereço de email do site', + 'site_url' => 'URL do Sítio', + 'smaller_map' => 'Mapa mais pequeno', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Desculpe, não tem quaisquer emblemas', + 'source' => 'Fonte', + 'source_name' => 'Nome da fonte', + 'sort' => 'Ordenar', + 'sort_by' => 'Ordenar por', + 'source_url' => 'URL da fonte', + 'spam' => 'Spam', + 'ssl_support' => 'Suporte SSL?', + 'start_point' => 'De', + 'step' => 'Passo', + 'submit' => 'Enviar relato', + 'submitted_by' => 'Enviado por %1$s via %2$s', + 'submit_sms' => 'Enviar por SMS', + 'submit_sms1' => 'Envie o seu SMS para', + 'submit_sms2' => 'no seu telemóvel', + 'success' => 'Sucesso!', + 'successfuly_imported' => 'Importado com sucesso', + 'surname' => 'Sobrenome', + 'survey' => 'Inquérito', + 'system' => 'Sistema', + 'taller_map' => 'Mapa mais alto', + 'tcp_port' => 'Porta TCP', + 'themes' => 'Temas', + 'theme_default' => 'Aparência por omissão (Ushahidi Theme)', + 'theme_settings' => 'Configuração da aparência', + 'this' => 'Isto', + 'this_day' => 'Hoje', + 'this_month' => 'Este mês', + 'this_week' => 'Esta Semana', + 'this_year' => 'Este ano', + 'this_is_your_profile' => 'Este é o seu perfil', + 'time' => 'hora', + 'title' => 'TÍTULO ', + 'to' => 'para', + 'today' => 'hoje', + 'today_at' => 'Hoje às', + 'token' => 'Token', + 'total_reports' => 'Relatórios Totais', + 'translated' => 'Traduzido', + 'translated_description' => 'Descrição traduzida', + 'translated_title' => 'Título da tradução', + 'translate_to' => 'Traduzido para', + 'translation' => 'Traducção', + 'translation_saved' => 'A tradução foi guardada', + 'trusted' => 'De Confiança', + 'type' => 'Tipo', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Impossível enviar email', + 'uncategorized_reports' => 'Relatórios não categorizados', + 'unread' => 'por ler', + 'unverified' => 'Não verificado', + 'update_feeds' => 'Actualização dos feeds', + 'upload' => 'Enviar', + 'upload_guide' => 'Visualize os nossos guias de envio de relatórios:-', + 'upload_docs_1' => 'Guia de envio de XML', + 'upload_docs_2' => 'Guia de envio de CSV', + 'upload_file' => 'Ficheiro a enviar', + 'upload_reports' => 'Envio de Relatos', + 'upload_reports_custom_forms' => 'Campos personalizados devem ter o seu form_id apenso, por exemplo o campo personalizado Test, no formulário por defeito, com id igual a 1, será Test-1. durante a importação de campos personalizados assegure que', + 'upload_reports_detail_1' => 'Com o formulário abaixo, você pode inportar relatos para a plataforma Ushahidi', + 'upload_reports_detail_2' => 'Os relatórios devem ser enviados em formato CSV ou XML.', + 'upload_reports_detail_3' => 'Quando o ID de incidente já existe na base de dados, a entrada no ficheiro CSV/XML será ignorada.', + 'upload_reports_detail_4' => 'Tem de conter pelo menos o título do relato e a data da ocorrência', + 'upload_reports_detail_4b' => 'Se as colunas de latitude e longitude forem fornecidas, a localização será geo-codificada usando o Google Geocoder.', + 'upload_reports_detail_4c' => 'Se estiver a importar informação adicional, por exemplo informação pessoal e / ou campos personalizados de formulário', + 'upload_reports_detail_4d' => 'Pelo menos um dos campos de informação pessoal (nome, sobrenome, email) DEVEM existir. Registos em branco não serão importados.', + 'upload_reports_detail_4e' => 'Os seus valores para os campos de dropdown, caixas de verificação e botões de escolha combinam com as opções fornecidas pelo campo personalizado da sua instância.', + 'upload_reports_detail_4f' => 'As opções de escolha são separadas por vírgula, por exemplo se a sua lista de frutas é maçãs, mangas e limões, então a sua entrada para esta deve ser "maçãs,mangas,limões"', + 'upload_reports_detail_4g' => 'Os valores do campo Data estão no seguinte formato: mm/dd/aaaa, exemplo o dia 3 de Outubro de 1963 será 10/03/1963', + 'upload_reports_detail_5' => 'Ficheiro de relatos CSV exemplo', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => 'Enviado com sucesso', + 'upload_video' => 'Enviar Vídeo', + 'url' => 'URL', + 'user' => 'Utilizador', + 'username' => 'Nome de Utilizador', + 'ushahidi_admin' => 'Administrador Ushahidi', + 'verification' => 'Verificação', + 'verified' => 'Verificado', + 'verified_reports' => 'Relatos verificados', + 'verify' => 'Verificar', + 'verify_this_report' => 'Verifique este relato', + 'version' => 'Versão', + 'via' => 'via', + 'video' => 'Vídeo', + 'view' => 'Ver', + 'views' => 'Vistos', + 'view_all' => 'Ver TODOS', + 'view_all_feeds' => 'Ver todos feeds', + 'view_all_reports' => 'Ver todos relatos', + 'view_items' => 'Ver Items', + 'view_more' => 'Ver Mais', + 'view_public_profile' => 'Ver Perfil Público', + 'view_report' => 'Ver relato', + 'view_reports' => 'Ver relatos', + 'view_video' => 'Visualizar o Vídeo', + 'visible' => 'Visível', + 'waiting_approval' => 'À espera de aprovação', + 'waiting_verification' => 'À espera de verificação', + 'wider_map' => 'Mapa mais largo', + 'web_form' => 'Formulário Web', + 'web' => 'Web', + 'weight' => 'Peso', + 'yes' => 'Sim', + 'yesterday' => 'Ontem', + 'your_dashboard' => 'O seu Painel de Controlo', + 'your_file' => 'O seu ficheiro', + 'zoom_in' => 'Aumentar', + 'zoom_out' => 'Reduzir', +); diff --git a/application/i18n/pt_PT/upgrade.php b/application/i18n/pt_PT/upgrade.php new file mode 100755 index 0000000000..8cf521065e --- /dev/null +++ b/application/i18n/pt_PT/upgrade.php @@ -0,0 +1,57 @@ + array( + 'between' => 'Dados inseridos inválidos. Estes devem ser 0 para Não ou 1 para Sim.', + ) , + 'upgrade_automatic' => 'Atualização Automática', + 'upgrade_available' => 'Atualizações Disponíveis', + 'upgrade_continue_btn_text' => 'Continuar', + 'upgrade_db_btn_text' => 'Atualizar', + 'upgrade_db_text_1' => 'Deste modo, eu vou atualizar a sua base de dados da versão', + 'upgrade_db_text_2' => 'para a nova versão da base de dados', + 'upgrade_db_text_3' => 'Clique em "Atualizar" e relaxe enquanto eu realizo a magia.', + 'upgrade_db_title' => 'Atualizar a base de dados Ushahidi', + 'upgrade_db_info' => 'O Ushahidi foi atualizado! Antes de continuar, precisa de atualizar a sua base de dados para a versão (%s) mais recente.', + 'upgrade_db_up_to_date' => 'A versão da sua base de dados está atualizada.', + 'upgrade_failed' => 'A atualização falhou', + 'upgrade_manual' => 'Atualização Manual', + 'upgrade_status' => 'Estado da atualização do Ushahidi', + 'upgrade_text_1' => 'The instructions below details how to manually upgrade your Ushahidi deployment', + 'upgrade_text_2' => 'Step 1: Download the most recent ushahidi build from http://download.ushahidi.com', + 'upgrade_text_3' => 'Step 2: Depending on the operating system running the webserver, use your preferred tool/mode (i.e: telnet, ftp, ssh) to login to the webserver and replace the contents of all the folders with the newest from the recent build. All EXCEPT:', + 'upgrade_text_4' => 'Step 3: Use your favorite Mysql client ( eg. phpMyAdmin ), and execute the upgrade.sql. The script shall update and alter the respective tables', + 'upgrade_text_5' => 'For automatic upgrade, click on the button below', + 'upgrade_text_6' => 'Para uma atualização automática, clique no botão abaixo.', + 'upgrade_title_text' => 'Atualmente, está a utilizar o Ushahidi v%1$s com a versão %2$d da base de dados em execução no %3$s', + 'upgrading' => 'A atualizar', + 'upgrade_ftp_text' => 'Para continuar com a atualização fácil, é necessária a informação seguinte para o servidor FTP em que o seu site da web está hospedado.', + 'upgrade_ftp_hostname' => 'Nome do Hospedeiro FTP: Exemplo: "localhost"', + 'upgrade_ftp_password' => 'Password do FTP:', + 'upgrade_ftp_username' => 'Nome de Utilizador do FTP', + 'upgrade_status_info' => 'Já possui a última versão do Ushahidi.', + 'upgrade_status_info_2' => 'Não precisa de atualizar.', + 'upgrade_db_version' => 'Versão da base de dados: %d', + 'upgrade_warning_software_version' => 'Aviso: A versão php do programa e a base de dados não correspondem.', + 'upgrade_warning_db_version' => 'Aviso: A versão da base de dados na versão php e a base de dados não correspondem.', + 'upgrade_database' => 'Base de dados:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'A transferiri a última versão do Ushahidi ...', + 'log_file' => 'Ficheiro de Registos', + 'successfully_downloaded' => 'Transferência bem sucedida. A descompactar ...', + 'failed_downloading' => 'Não foi possível transferir.', + 'successfully_unpacked' => 'Descompactação bem sucedida. A copiar os ficheiros ...', + 'failed_unpacking' => 'Não foi possível descompactar.', + 'successfully_copied' => 'Cópia bem sucedida. A atualizar a base de dados ...', + 'failed_copying' => 'Não foi possível copiar os ficheiros.', + 'backup_success' => 'A cópia de segurança e atualização foram bem sucedidas.', + 'backup_failed' => 'O backup do banco de dados falhou.', + 'dbupgrade_success' => 'Base de dados atualizada com sucesso.', + 'deleting_files' => 'A apagar os ficheiros transferidos ...', + 'upgrade_success' => 'ATUALIZAÇÃO BEM SUCEDIDA. Consulte o Ficheiro de Registos', +); diff --git a/application/i18n/ro_RO/alerts.php b/application/i18n/ro_RO/alerts.php new file mode 100755 index 0000000000..e8e1768f12 --- /dev/null +++ b/application/i18n/ro_RO/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Adresa e-mail incorectă', + 'email_check' => 'Această adresă de e-mail a fost deja înregistrată pentru a primi alerte pentru această locație.', + 'length' => 'Câmpul adresa e-mail trebuie să conțină minim 4 caractere si mai maxim 64 caractere.', + 'required' => 'Câmpul adresa e-mail este obligatoriu daca este pusă bifa.', + ) , + 'alert_country' => array( + 'single_country' => 'Această implementare cuprinde doar o singură țară. Vă rugăm să vă asigurați că locația alertei este în țara %s. ', + ) , + 'alert_lat' => array( + 'between' => 'Nu ați selectat o locație validă pe hartă.', + 'required' => 'Nu ați selectat o locație validă pe hartă.', + ) , + 'alert_lon' => array( + 'between' => 'Nu ați selectat o locație validă pe hartă.', + 'required' => 'Nu ați selectat o locație validă pe hartă.', + ) , + 'alert_mobile' => array( + 'length' => 'Câmpul pentru telefon mobil nu conține numarul corespunzător de cifre.', + 'mobile_check' => 'Acest număr de telefon a fost înregistrat deja pentru primirea alertelor legate de acea locaţie', + 'numeric' => 'Câmpul Telefon Mobil nu pare să conţină un telefon valabil. Vă rugăm să introduceţi numerul, indicînd codul ţării.', + 'one_required' => 'Trebuie să introduceţi numărul de telefon mobil sau adresa e-mail.', + 'required' => 'Câmpul telefon mobil este obligatoriu daca este pusă bifa.', + ) , + 'alert_radius' => array( + 'in_array' => 'Nu aţi ales o secţiune validă pe hartă.', + 'required' => 'Nu aţi ales o secţiune pe hartă.', + ) , + 'alert_recipient' => array( + 'required' => 'Nu ați configurat un destinatar pentru alerte.', + ) , + 'alerts_subscribed' => 'V-ați abonat la alerte din următoarele categorii', + 'code_already_verified' => 'Acest cod a fost deja verificat!', + 'code_not_found' => 'Acest cod de verificare nu a fost găsit! Verifica adresa URL.', + 'code_verified' => 'Codul a fost validat. Acum vei primi alerte despre incidentele care au loc.', + 'confirm_request' => 'Pentru a confirma cererea de creare alerte, accesează', + 'create_more_alerts' => 'întoarcete la pagina Alerte pentru a crea mai multe alerte.', + 'email_alert_request_created' => 'Cererea dumneavoastră a fost creată şi mesajul de verificare a fost trimis', + 'email_code' => 'Introdu mai jos codul de confirmare primit pe email:', + 'email_error_head' => 'Cererea dumneavoastră E-mail Alert NU a fost salvată!', + 'email_ok_head' => 'Cererea dumneavoastră E-mail Alert a fost salvată!', + 'error' => 'Sistemul nu a procesat cererea dumneavoastră de confirmare!', + 'mobile_alert_request_created' => 'Cererea dumneavoastră Mobile Alert a fost creată şi mesajul de verificare a fost trimis', + 'mobile_code' => 'Vă rog să introduceţi codul de confirmare SMS mai jos:', + 'mobile_error_head' => 'Cererea dumneavoastră Mobile Alert NU a fost salvată!', + 'mobile_ok_head' => 'Cererea dumneavoastră Mobile Alert a fost salvată!', + 'settings_error' => 'Această implementare nu este configurată pentru a procesa corect alertele', + 'unsubscribe' => 'Ai primit acest email pentru că te-ai înscris să primești alerte. Dacă nu mai dorești să primești alerte, mergi la', + 'unsubscribed' => 'Nu vei mai primi alerte de la', + 'unsubscribe_failed' => 'Nu am fost în stare să vă dezabonăm. Vă rugăm să confirmaţi faptul că aveţi URL-ul corect.', + 'verification_email_subject' => 'alerte - verificare', + 'verify_code' => 'Nu vei primi alerte despre acestă locație pană când nu confirmi cererea.', +); diff --git a/application/i18n/ro_RO/auth.php b/application/i18n/ro_RO/auth.php new file mode 100755 index 0000000000..fc11f5e84e --- /dev/null +++ b/application/i18n/ro_RO/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Câmpul de e-mail nu pare să conţină o adresă de e-mail validă.', + 'exists' => 'Există deja un cont pentru această adresă e-mail.', + 'length' => 'Câmpul de e-mail trebuie să conţină cel puţin 4 şi nu mai mult de 64 caractere.', + 'required' => 'Câmpul de e-mail este necesar.', + ) , + 'name' => array( + 'length' => 'Câmpul pentru nume trebuie să fie de cel puţin 3 şi nu mai mult de 100 de caractere.', + 'required' => 'Câmpul Numele Complet este necesar.', + 'standard_text' => 'Câmpul Nume de utilizator conţine caractere nepermise.', + ) , + 'current_password' => array( + 'length' => 'Câmpul ce conține parola trebuie să fie de cel puțin 8 caractere.', + 'login error' => 'Vă rugăm să verificați dacă ați introdus corect email-ul și parola.', + 'matches' => 'Vă rugăm să introduceți aceeași parolă în cele două câmpuri ce conțin parola.', + 'required' => 'Este necesară introducerea parolei.', + 'alpha_dash' => 'Câmpul parola trebuie să conțină numai caractere alfanumerice, simbolul # și @, numere, caracterul underscore și liniuță', + 'incorrect' => 'Parola curentă pe care ați introdus pentru contul dvs. este incorectă. Vă rugăm să încercați din nou.', + ) , + 'new_password' => array( + 'length' => 'Câmpul ce conține parola trebuie să fie de cel puțin 8 caractere.', + 'login error' => 'Vă rugăm să verificați dacă ați introdus corect email-ul și parola.', + 'matches' => 'Vă rugăm să introduceți aceeași parolă în cele două câmpuri ce conțin parola.', + 'required' => 'Este necesară introducerea parolei.', + 'alpha_dash' => 'Câmpul parola trebuie să conțină numai caractere alfanumerice, simbolul # și @, numere, caracterul underscore și liniuță', + ) , + 'password' => array( + 'default' => 'Există o eroare la încercarea de a vă autentifica.', + 'length' => 'Câmpul Parolă trebuie să fie de cel puţin 5 şi nu mai mult 16 caractere.', + 'login error' => 'Vă rugăm să verificați dacă ați introdus corect email-ul și parola.', + 'matches' => 'Vă rugăm să introduceţi aceeaşi parolă în ambele câmpuri pentru parolă.', + 'required' => 'Câmpul Parolă este necesar.', + 'riverid server down' => 'Serverul unde se face autentificarea este nefuncțional. Vă rugăm să încercați din nou mai târziu.', + 'riverid' => '%s', + 'alpha_dash' => 'Câmpul parola trebuie să conțină numai caractere alfanumerice, simbolul # și @, numere, caracterul underscore și liniuță', + ) , + 'password_confirm' => array( + 'matches' => 'Câmpul de Confirmare Parolă trebuie să se potrivească câmpului Parolă.', + ) , + 'resetemail' => array( + 'email' => 'Câmpul de e-mail nu pare să conţină o adresă de e-mail validă.', + 'invalid' => 'Ne pare rău, nu avem adresa dumneavoastră de e-mail.', + 'required' => 'Câmpul de E-mail este necesar.', + ) , + 'role' => array( + 'superadmin_modify' => 'Numai un superadmin poate modifica un alt superadmin sau upgrada un utilizator la admin.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Format Rol nevalid.', + 'length' => 'Câmpul Rolul trebuie să fie de cel puţin 5 şi nu mai mult de 30 caractere lungime.', + 'required' => 'Trebuie să definiţi cel puţin un rol.', + 'values' => 'Trebuie să selectaţi fie rol de ADMIN, fie rol de UTILIZATOR.', + ) , + 'token' => array( + 'invalid' => 'Simbolul parolei uitate este invalid', + 'required' => 'Simbolul parolei uitate este necesar', + ) , + 'username' => array( + 'admin' => 'Rolul ADMIN nu pot fi modificat.', + 'alpha_numeric' => 'Câmpul ce conține URL-ul profilului public trebuie să conțină doar cifre și litere.', + 'exists' => 'Ne pare rău, acest nume de utilizator este deja în uz.', + 'length' => 'Campul Numelui de utilizator trebuie să fie de cel puţin 2 şi nu mai mult 16 caractere.', + 'login error' => 'Vă rugăm să verificați dacă ați introdus corect URL-ul profilului public.', + 'required' => 'Campul Numelui de utilizator este necesar.', + 'superadmin' => 'Rolul de super admin nu poate fi modificat.', + 'csrf' => 'Posibil atac CSRF. Credeți serios că doriți să creați /editați un utilizator?', + ) , +); diff --git a/application/i18n/ro_RO/bug.php b/application/i18n/ro_RO/bug.php new file mode 100755 index 0000000000..718500fd48 --- /dev/null +++ b/application/i18n/ro_RO/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Vă rugăm introduceți un cod de securitate valid.', + 'required' => 'Vă rugăm introduceți un cod de securitate.', + ) , + 'email' => array( + 'email' => 'Câmpul email nu pare să conțină o adresă validă de email?', + 'length' => 'Câmpul email trebuie să fie de cel puțin 4 caractere și nu mai mult de 64 de caractere lungime.', + 'required' => 'Câmpul email este necesar dacă checkbox-ul este bifat.', + ) , + 'error' => array( + 'required' => 'Câmpul ce conține eroarea este necesar.', + ) , + 'subject' => array( + 'length' => 'Câmpul ce conține subiectul trebuie să fie de cel puțin 3 caractere lungime.', + 'required' => 'Câmpul subiect este necesar.', + ) , + 'yourname' => array( + 'length' => 'Câmpul ce conține numele trebuie să fie de cel puțin 3 caractere lungime.', + 'required' => 'Câmpul ce conține numele este necesar.', + ) , +); diff --git a/application/i18n/ro_RO/category.php b/application/i18n/ro_RO/category.php new file mode 100755 index 0000000000..0372d8c7c5 --- /dev/null +++ b/application/i18n/ro_RO/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Câmpul culoare trebuie să aibă 6 caractere lungime.', + 'required' => 'Câmpul culoare este necesar.', + ) , + 'category_description' => array( + 'required' => 'Câmpul descriere este necesar.', + ) , + 'category_image' => array( + 'size' => 'Vă rugăm asigurați-vă că imaginile încărcate sunt limitate la 50KB.', + 'type' => 'Câmpul pentru imagini nu pare să conțină o imagine validă. Formatele acceptate sunt doar .JPG, .PNG și .GIF.', + 'valid' => 'Câmpul imagine nu pare să conțină un fișier valid', + ) , + 'category_title' => array( + 'length' => 'Câmpul titlu trebuie să fie de cel puțin 3 caractere și nu mai mult de 80 de caractere lungime.', + 'required' => 'Câmpul titlu este necesar.', + ) , + 'parent_id' => array( + 'already_parent' => 'Nu puteți subclasifica o categorie cu subcategorii.', + 'exists' => 'Categoria părinte nu există.', + 'numeric' => 'Câmpul pentru categoria părinte trebuie să fie numeric.', + 'parent_trusted' => 'Categoria părinte nu poate fi a categorie specială', + 'required' => 'Câmpul categoria părinte este necesar.', + 'same' => 'Categoria și categoria părinte nu pot fi identice.', + 'special' => 'Categoriile speciale nu pot fi subclasificate.', + ) , +); diff --git a/application/i18n/ro_RO/comments.php b/application/i18n/ro_RO/comments.php new file mode 100755 index 0000000000..ae2b234d9f --- /dev/null +++ b/application/i18n/ro_RO/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Vă rugăm să introduceți un cod de securitate valid.', + 'required' => 'Vă rugăm să introduceți codul de securitate.', + 'valid' => 'Ați introdus un cod de securitate greșit.', + ) , + 'comment_author' => array( + 'length' => 'Câmpul nume trebuie să aibă cel puțin 3 caractere lungime.', + 'required' => 'Câmpul nume este necesar.', + ) , + 'comment_description' => array( + 'required' => 'Câmpul de comentarii este necesar.', + ) , + 'comment_email' => array( + 'email' => 'Câmpul ce conține email-ul nu pare să conțină o adresă de email validă.', + 'length' => 'Câmpul ce conține email-ul trebuie să aibă cel puțin 4 dar nu mai mult de 64 de caractere lungime.', + 'required' => 'Câmpul ce conține email-ul este necesar dacă checkbox-ul este activ.', + ) , +); diff --git a/application/i18n/ro_RO/contact.php b/application/i18n/ro_RO/contact.php new file mode 100755 index 0000000000..5bc87d03d9 --- /dev/null +++ b/application/i18n/ro_RO/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Vă rugăm să introduceți un cod de securitate valid.', + 'valid' => 'Vă rugăm să introduceți un cod de securitate valid.', + 'required' => 'Vă rugăm să introduceți un cod de securitate.', + ) , + 'contact_email' => array( + 'email' => 'Câmpul email nu pare să conțină o adresă validă de email.', + 'length' => 'Câmpul email trebuie să fie de cel puțin 4 caractere și nu mai mult de 64 de caractere lungime.', + 'required' => 'Câmpul email este necesar dacă checkbox-ul este bifat.', + ) , + 'contact_message' => array( + 'required' => 'Câmpul e conține mesajul este necesar.', + ) , + 'contact_name' => array( + 'length' => 'Câmpul ce conține numele trebuie să fie de cel puțin 3 caractere lungime.', + 'required' => 'Câmpul ce conține numele este necesar.', + ) , + 'contact_subject' => array( + 'length' => 'Câmpul ce conține subiectul trebuie să fie de cel puțin 3 caractere lungime.', + 'required' => 'Câmpul ce conține subiectul este necesar.', + ) , + 'email_send' => array( + 'failed' => 'A apărut o eroare la trimiterea mesajului.', + ) , +); diff --git a/application/i18n/ro_RO/core.php b/application/i18n/ro_RO/core.php new file mode 100755 index 0000000000..8e604befc7 --- /dev/null +++ b/application/i18n/ro_RO/core.php @@ -0,0 +1,35 @@ + 'fișerul de configurare', + 'controller' => 'controlor', + 'driver' => 'driver', + 'driver_implements' => 'Driver-ul %s pentru biblioteca %s trebuie să implementeze interfața %s.', + 'driver_not_found' => 'Driver-ul %s pentru biblioteca %s nu a putut fi găsit.', + 'errors_disabled' => 'Poți merge la Acasă sau Încearcă iar.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Imposibil de a finaliza solicitarea', + 'helper' => 'ajutor', + 'invalid_filetype' => 'Tipul de fișier solicitat, .%s, nu este permis în fișierul dvs. de configurare.', + 'invalid_method' => 'Metoda invalidă %s este apelată în %s', + 'invalid_property' => 'Proprietatea %s nu există în clasa %s.', + 'library' => 'bibliotecă', + 'log_dir_unwritable' => 'Directorul de log nu este writable: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi nu a fost în măsură să determine un controller pentru a procesa această cerere:%s', + 'no_default_route' => 'Vă rugăm să setați o rută implicită în config/routes.php', + 'page_not_found' => 'Pagina solicitată, %s, nu a putut fi găsită.', + 'report_bug' => 'Raportați această problemă la Ushahidi', + 'resource_not_found' => '%s, %s, solicitată nu a putut fi găsită', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Încărcat în {execution_time} secunde, utilizând {memory_usage} de memorie. Generat de Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Nu poate fi decât o singură instanță Ushahidi pe cerere de pagină.', + 'uncaught_exception' => 'Neprins %s: %s în fișierul %s la linia %s', + 'view' => 'vezi', + 'view_set_filename' => 'Trebuie să setați numele fișierului de vizualizare înainte de a apela render.', +); diff --git a/application/i18n/ro_RO/database.php b/application/i18n/ro_RO/database.php new file mode 100755 index 0000000000..bb262a3868 --- /dev/null +++ b/application/i18n/ro_RO/database.php @@ -0,0 +1,10 @@ + 'Eroare în baza de date: %s', + 'table_not_found' => 'Tabelul "% s" nu pot fi găsit în baza de date. Vă rugăm să vă asiguraţi că utilizaţi cea mai recentă versiune a bazei de date pentru această versiune de Ushahidi', +); diff --git a/application/i18n/ro_RO/datetime.php b/application/i18n/ro_RO/datetime.php new file mode 100755 index 0000000000..33259d01e6 --- /dev/null +++ b/application/i18n/ro_RO/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Vin', + 'full' => 'Vineri', + ) , + 'monday' => array( + 'abbv' => 'Lun', + 'full' => 'Luni', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sâm', + 'full' => 'Sâmbătă', + ) , + 'sunday' => array( + 'abbv' => 'Dum', + 'full' => 'Duminică', + ) , + 'thursday' => array( + 'abbv' => 'Joi', + 'full' => 'Joi', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => 'Marți', + ) , + 'wednesday' => array( + 'abbv' => 'Mie', + 'full' => 'Miercuri', + ) , + 'january' => array( + 'abbv' => 'Ian', + 'full' => 'Ianuarie', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februarie', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Martie', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'Aprilie', + ) , + 'may' => array( + 'abbv' => 'Mai', + 'full' => 'Mai', + ) , + 'june' => array( + 'abbv' => 'Iun', + 'full' => 'Iunie', + ) , + 'july' => array( + 'abbv' => 'Iul', + 'full' => 'Iulie', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'August', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'Septembrie', + ) , + 'october' => array( + 'abbv' => 'Oct', + 'full' => 'Octombrie', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Noiembrie', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'Decembrie', + ) , +); diff --git a/application/i18n/ro_RO/feeds.php b/application/i18n/ro_RO/feeds.php new file mode 100755 index 0000000000..758d65601b --- /dev/null +++ b/application/i18n/ro_RO/feeds.php @@ -0,0 +1,19 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'Câmpul nume trebuie să aibă cel puțin 3 dar nu mai mult de ⏎ »»»70 de caractere lungime.', + 'required' => 'Vă rugăm să introduceți numele feed-ului.', + ) , + 'feed_url' => array( + 'required' => 'Vă rugăm să introduceți URL-ul feed-ului.', + 'url' => 'Vă rugăm să introduceți un URL valid, de ex http://www.ushahidi.com', + ) , + 'source' => 'SURSA', + 'title' => 'Titlul', +); diff --git a/application/i18n/ro_RO/footer.php b/application/i18n/ro_RO/footer.php new file mode 100755 index 0000000000..e11f10f113 --- /dev/null +++ b/application/i18n/ro_RO/footer.php @@ -0,0 +1,9 @@ + 'php5-curl nu este instalat pe acest sistem.', +); diff --git a/application/i18n/ro_RO/form.php b/application/i18n/ro_RO/form.php new file mode 100755 index 0000000000..7eab1697f4 --- /dev/null +++ b/application/i18n/ro_RO/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Valoarea implicită care ați furnizat-o pentru câmp este invalidă.', + 'length' => 'Câmpul ce conține numele trebuie să fie de cel puțin 3 și nu mai mult de 200 de caractere lungime.', + ) , + 'field_height' => array( + 'between' => 'Vă rugăm introduceți o valoare între 0 și 50 pentru înălțimea cîmpului.', + ) , + 'field_isdate' => array( + 'between' => 'Ați introdus o valoare invalidă pentru câmpul data.', + 'required' => 'Vă rugăm să selectați Da sau Nu pentru câmpul data.', + ) , + 'field_name' => array( + 'length' => 'Câmpul ce conține numele trebuie să fie de cel puțin 3 și nu mai mult de 100 de caractere lungime.', + 'required' => 'Vă rugăm introduceți câmpul nume.', + 'duplicate' => 'Numele câmpului pe care l-ați introdus există deja pe acest formular. Vă rugăm să introduceți altul.', + ) , + 'field_required' => array( + 'between' => 'Ați introdus o valoare invalidă pentru câmpul obligatoriu.', + 'required' => 'Vă rugăm să selectați Da sau Nu pentru câmpul obligatoriu.', + ) , + 'field_type' => array( + 'numeric' => 'Vă rugăm să selectați un tip de câmp valid.', + 'required' => 'Vă rugăm să selectați un tip de câmp.', + ) , + 'field_width' => array( + 'between' => 'Vă rugăm introduceți o valoare între 0 și 300 pentru lățimea cîmpului.', + ) , + 'form_description' => array( + 'required' => 'Vă rugăm introduceți descrierea formularului.', + ) , + 'form_id' => array( + 'default' => 'Formularul default nu poate fi șters.', + 'numeric' => 'Vă rugăm selectați cărui formular i se adăugă acest câmp.', + 'required' => 'Vă rugăm selectați cărui formular i se adăugă acest câmp.', + ) , + 'form_title' => array( + 'length' => 'Câmpul ce conține numele trebuie să fie de cel puțin 3 și nu mai mult de 100 de caractere lungime.', + 'required' => 'Vă rugăm să introduceți numele formularului.', + 'exists' => 'Un formular cu acest titlu există deja. Vă rugăm să alegeți un alt titlu.', + ) , +); diff --git a/application/i18n/ro_RO/imap.php b/application/i18n/ro_RO/imap.php new file mode 100755 index 0000000000..4791e3504e --- /dev/null +++ b/application/i18n/ro_RO/imap.php @@ -0,0 +1,10 @@ + 'Nu a putut deschide stream-ul IMAP.', + 'unsupported_service' => 'Serviciul de e-mail nu este acceptat.', +); diff --git a/application/i18n/ro_RO/installer.php b/application/i18n/ro_RO/installer.php new file mode 100755 index 0000000000..c8ae3250c8 --- /dev/null +++ b/application/i18n/ro_RO/installer.php @@ -0,0 +1,80 @@ + 'Calea de bază', + 'database' => 'Baza de date', + 'database_host' => 'Host baza de date', + 'database_host_description' => 'Dacă se execută Ushahidi pe propriul computer, acest lucru va fi mai mult decât probabil "localhost". Dacă se execută Ushahidi de pe un server de web, veți primi informațiile de la furnizorul dvs. de web hosting.', + 'database_name' => 'Nume baza de bate', + 'database_name_description' => 'Numele bazei de date pe care doriți să rulați Ushahidi', + 'db_information_link' => 'Pentru mai multe informații, vă rugăm să citițiacest articol de pe wiki care vorbește despre bazele de date mult mai în detaliu.', + 'default_language' => 'Limba implictă (Locală)', + 'default_language_description' => 'Fiecare implementare Ushahidi vine cu un set de traduceri. Puteți să adaugați propria traducere.', + 'disable' => 'Dezactivează', + 'enable' => 'Activează', + 'error_summary' => 'Mai jos este arătat un rezumat al erorilor cu care ne-am confruntat.', + 'files_location_text' => 'Locația de pe server-ul unde ați pus fișierele Ushahidi. Am detectat în mod automat această valoare, vă rugăm să vă asigurați că este corectă. Dacă câmpul este gol, nu vă faceți griji, aceasta înseamnă că ushahidi este instalat în directorul de nivel superior.', + 'finished' => 'Terminat', + 'general' => 'General', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Oricine poate obține o cheie key. Obține acum', + 'go_back' => 'Mergi înapoi', + 'index' => array( + 'advanced' => 'INSTALARE AVANSATĂ', + 'advanced_installation_description' => 'Înscrieți-vă toate setările de bază prin acest proces de 5 pași. Aceasta include servere, hartă, nume site si date de contact.', + 'basic_installation' => 'INSTALARE BASIC', + 'basic_installation_description' => 'Simplu si rapid. Tot ce ai nevoie este directorul rădăcină al site-ul dvs. și informațiile legate de baza de date. Alegeți această opțiune dacă doriți să mergeți mai repede, si puteti configura totul ceva mai târziu.', + 'proceed' => 'Continuă', + 'welcome' => 'Bine ați venit la procesul de instalare a server-ului Ushahidi. Alegeți mai jos ce tip de instalare doriți să utilizați.', + ) , + 'installation_successful' => 'Instalare cu succes', + 'mail_server' => 'Server de Mail', + 'mail_server_host' => 'Host Server de ', + 'mail_server_host_description' => 'Exemple: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Parola Server de Mail', + 'mail_server_password_description' => 'Parola pe care o utilizați în mod normal pentru a putea accesa căsuța de email.', + 'mail_server_port' => 'Port Server de Mail', + 'mail_server_port_description' => 'Porturi comune: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Tip Server de Mail', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). Care este diferența?', + 'mail_server_username' => 'Utilizator Server de Mail', + 'mail_server_username_description' => 'Dacă utilizați Gmail, Hotmail sau Yahoo Mail, introduceți o adresă de e-mail completă ca nume de utilizator.', + 'map' => 'Hartă', + 'map_provider' => 'Furnizor Hărți', + 'map_provider_description' => 'Ushahidi funcționează la fel de bine cu oricare dintre cei trei furnizori de hărți: Google, Bing sau Open Street. Alegeți una care are cele mai multe detalii din zona dumneavoastră.', + 'other_steps' => 'Alți pași...', + 'password' => 'Parolă', + 'password_description' => 'Parola baza de date', + 'previous' => 'Anterior', + 'restart_apache' => 'Vă rugăm restartați Server-ul Apache', + 'select_mail_server_ssl' => 'Activează sau dezactivează SSL', + 'select_mail_server_ssl_description' => 'Unele servere de poștă electronică vă oferă opțiunea de a utiliza SSL atunci când se face o conexiune. Utilizarea SSL este recomandată, deoarece vă oferă un nivel suplimentar de securitate.', + 'setup_sms' => 'Setează serverul SMS', + 'site_email' => 'Adresa de email a site-ului', + 'site_email_alerts' => 'Adresa de email a alertelor site-ului', + 'site_email_alerts_description' => 'Când vizitatorii site-ului dvs. se înscriu pentru alerte email, ei vor primi emailuri de la această adresă. Această adresă de email nu trebuie să fie aceeași cu adresa email a site-ului.', + 'site_email_description' => 'Comunicarea email site-ului va fi canalizată prin această adresă', + 'site_name' => 'Nume site', + 'site_name_description' => 'Numele site-ului dvs.', + 'site_tagline' => 'Sloganul site-ului', + 'site_tagline_description' => 'Sloganul dvs.', + 'summary' => array( + 'text_1' => 'Fișierele și folderele de mai jos trebuie să fie writeable pe serverul dvs. de web.', + 'text_2' => '

Acestea sunt instrucțiunile pentru schimbarea permisiunilor la nivel de fițier:

', + 'text_3' => 'Înainte de a începe, va trebui să vă asigurați că următoarele fișiere și foldere sunt writeable pe serverul dvs. de web. Acest lucru implică schimbarea permisiunilor la nivel de fișiere.', + 'text_4' => 'Pentru procesul de instalare, vă rugăm să aveți la îndemână următoarele informații.', + ) , + 'table_prefix' => 'Prefix Tabel', + 'table_prefix_description' => 'În mod normal nu ar trebui schimbat prefixul tabelul. Cu toate acestea, dacă doriți să rulați mai multe instalări Ushahidi intr-o singură bază de date, puteți face acest lucru prin schimbarea prefixului aici.', + 'title' => 'Titlu', + 'to_login' => 'Pentru logare, mergeți la', + 'upload_data' => 'Încarcă datele raportului', + 'username' => 'Nume utilizator', + 'username_description' => 'Nume utilizator pentru baza de date', + 'use_credentials' => 'și utilizați acreditările următoare', + 'view_site' => 'Vizualizți website', +); diff --git a/application/i18n/ro_RO/layer.php b/application/i18n/ro_RO/layer.php new file mode 100755 index 0000000000..d41c42ba02 --- /dev/null +++ b/application/i18n/ro_RO/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Câmpul culoare trebuie să aibă 6 caractere lungime.', + 'required' => 'Câmpul culoare este necesar.', + ) , + 'layer_file' => array( + 'type' => 'Câmpul fișier nu pare să conțină un fișier valid. Formatele acceptate sunt doar .KMZ si .KML.', + 'valid' => 'Câmpul fișier nu pare să conțină un fișier valid', + ) , + 'layer_name' => array( + 'length' => 'Câmpul nume trebuie să aibă cel puțin 3 dar nu mai mult de 80 de caractere lungime.', + 'required' => 'Câmpul nume este necesar.', + ) , + 'layer_url' => array( + 'atleast' => 'Ori KML URL ori Fișierul este necesar.', + 'both' => 'Nu puteți avea atât un fișier KML cât și o adresă URL.', + 'url' => 'Vă rugăm introduceți un URL valid, e.g. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/ro_RO/libraries.php b/application/i18n/ro_RO/libraries.php new file mode 100755 index 0000000000..9d8703ecf7 --- /dev/null +++ b/application/i18n/ro_RO/libraries.php @@ -0,0 +1,27 @@ + 'Nu s-a putut conecta la serverul Akismet.', + 'akismet_cannot_retrieve' => 'Răspunsul de la Akismet nu a putut fi recuperat.', + 'api_library_not_found' => 'Biblioteca API: %s pentru clasa %s nu a putut fi găsită. Vă rugăm să verificați activitățile API din tabelul de rutare.', + 'askimet_invalid_apikey' => 'Cheia dvs. Akismet API nu este validă.', + 'clickatell_fopen_error' => 'Eroare în timpul execuției metodei de trimitere fopen!
Vă rugăm să verificați dacă PHP are suport OpenSSL și dacă versiunea PHP este mai mare de 5.2.', + 'clickatell_message_too_long' => 'Mesajul dvs. unicode este prea lung! (Lungimea curentă=', + 'clickatell_no_destination_address' => 'Vă rugăm specificați o adresă de destinație (TO)!', + 'clickatell_no_sender_address' => 'Vă rugăm specificați o adresă de expediție (FROM)!', + 'clickatell_unicode_message_too_long' => 'Mesajul dvs. unicode este prea lung! (Lungimea curentă=', + 'clickatell_unsupported_method' => 'Metodă de trimitere neacceptată!', + 'invalid_api_library' => 'Biblioteca API %s este invalidă. Toate bibliotecile API trebuie să fie subclase ale %s.', + 'upgrade_directory_not_deleted' => 'Directorul %s nu poate fi șters.', + 'upgrade_extracting_error' => 'Eroare în timp ce extrăgea: %s', + 'upgrade_failed' => 'Ultimul download Ushahidi a eșuat. HTTP cod status', + 'upgrade_file_not_copied' => 'Fișierul %s nu poate fi copiat.', + 'upgrade_file_not_deleted' => 'Fișierul %s nu poate fi șters.', + 'upgrade_title' => 'Script pentru upgrade Ushahidi', + 'upgrade_zip_error' => 'Fișierul decărcat Ushahidi zip %s, nu poate fi scris.', + 'riverid_variable_not_available' => '%s nu este disponibilă în clasa the RiverID.', +); diff --git a/application/i18n/ro_RO/maintenance.php b/application/i18n/ro_RO/maintenance.php new file mode 100644 index 0000000000..a93c0d47c5 --- /dev/null +++ b/application/i18n/ro_RO/maintenance.php @@ -0,0 +1,9 @@ + 'Ne pare rău, site-ul nostru este indisponibil pentru mentenață. Vă rugăm să încercați din nou în câteva minute.', +); diff --git a/application/i18n/ro_RO/message.php b/application/i18n/ro_RO/message.php new file mode 100755 index 0000000000..13beda7d5d --- /dev/null +++ b/application/i18n/ro_RO/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Vă rugăm să introduceți un cod de securitate valid.', + 'required' => 'Vă rugăm să introduceți codul de securitate.', + ) , + 'email' => array( + 'email' => 'Câmpul de email nu pare să conțină o adresă de email validă.', + 'length' => 'Câmpul email trebuie să fie de cel puțin 4 și nu mai mult de 64 caractere lungime.', + 'required' => 'Câmpul email este necesar dacă checkbox-ul este activ.', + ) , + 'message' => array( + 'required' => 'Câmpul de comentarii este necesar.', + ) , + 'name' => array( + 'length' => 'Câmpul nume trebuie să fie de cel puțin 3 caractere lungime.', + 'required' => 'Câmpul de nume este necesar.', + ) , + 'phone' => array( + 'length' => 'Câmpul de telefon este necesar.', + ) , +); diff --git a/application/i18n/ro_RO/mhi.php b/application/i18n/ro_RO/mhi.php new file mode 100755 index 0000000000..e5d6623dea --- /dev/null +++ b/application/i18n/ro_RO/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Vă rugăm să introduceți un cod de securitate valid.', + 'required' => 'Vă rugăm să introduceți un cod de securitate.', + ) , + 'contact_email' => array( + 'email' => 'Câmpul de email-ul nu pare să conțină o adresă validă de email.', + 'required' => 'Vă rugăm să introduceți o adresa validă de email.', + ) , + 'contact_message' => array( + 'required' => 'Câmpul de mesaj este necesar.', + ) , + 'contact_subject' => array( + 'length' => 'Câmpul ce conține subiectul trebuie să fie cel puțin 3 caractere lungime.', + 'required' => 'Câmpul ce conține subiectul este necesar', + ) , +); diff --git a/application/i18n/ro_RO/notifications.php b/application/i18n/ro_RO/notifications.php new file mode 100755 index 0000000000..8ce2906466 --- /dev/null +++ b/application/i18n/ro_RO/notifications.php @@ -0,0 +1,35 @@ + 'Acest mesaj a fost trimis de pe site-ul tau.', + 'admin_login_url' => 'Login Administrator', + 'admin_new_comment' => array( + 'message' => 'Un nou comentariu a fost trimis site-ului dvs., ca răspuns la:', + 'subject' => 'Comentariu Nou', + ) , + 'admin_new_email' => array( + 'message' => 'Un nou comentariu a fost trimis site-ului dvs.', + 'subject' => 'Mesaj Nou Email', + ) , + 'admin_new_report' => array( + 'message' => 'Un nou raport a fost trimis site-ului dvs.', + 'subject' => 'Raport Nou', + ) , + 'admin_new_sms' => array( + 'message' => 'Un nou mesaj text a fost trimis site-ului dvs.', + 'subject' => 'Mesaj Text Nou', + ) , + 'member_new_alert' => array( + 'message' => 'Ați primit o nouă alertă', + 'subject' => 'Alertă Nouă!', + ) , + 'member_new_message' => array( + 'message' => 'Ați primit un mesaj privat', + 'subject' => 'Mesaj privat Nou', + 'footer' => 'Pentru a răspunde vă rugăm mergeți la:', + ) , +); diff --git a/application/i18n/ro_RO/page.php b/application/i18n/ro_RO/page.php new file mode 100644 index 0000000000..7d2363b3e9 --- /dev/null +++ b/application/i18n/ro_RO/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Vă rugăm introduceți un titlu de pagină.', + 'length' => 'Titlul paginii trebuie să aibă cel puțin 3 dar nu mai mult de 150 de caractere lungime.', + ) , + 'page_tab' => array( + 'required' => 'Vă rugăm introduceți nume pentru tab-ul paginii.', + ) , + 'page_description' => array( + 'required' => 'Vă rugăm introduceți o descriere a paginii.', + ) , +); diff --git a/application/i18n/ro_RO/permissions.php b/application/i18n/ro_RO/permissions.php new file mode 100644 index 0000000000..1021a49e47 --- /dev/null +++ b/application/i18n/ro_RO/permissions.php @@ -0,0 +1,26 @@ + 'Vizualizare Rapoarte', + 'reports_edit' => 'Crează/Modifică/Șterge Rapoarte', + 'reports_approve' => 'Aprobă Rapoarte', + 'reports_verify' => 'Verifică Rapoarte', + 'reports_comments' => 'Gestionează Comentariile Rapoartelor', + 'reports_download' => 'Descarcă Rapoarte', + 'reports_upload' => 'Încarcă Rapoarte', + 'messages' => 'Gestionează Rapoarte', + 'messages_reporters' => 'Gestionează Mesajele Raportorilor', + 'stats' => 'Vizualizare Statistici', + 'settings' => 'Modifică Setari', + 'manage' => 'Gestionează Panel', + 'users' => 'Gestionează Utilizatori', + 'manage_roles' => 'Gestionează Roluri', + 'checkin' => 'Can checkin', + 'checkin_admin' => 'Gestionează checkin', + 'admin_ui' => 'Acces Admin UI', + 'member_ui' => 'Acces Membrii UI', +); diff --git a/application/i18n/ro_RO/private_message.php b/application/i18n/ro_RO/private_message.php new file mode 100644 index 0000000000..a15f348fda --- /dev/null +++ b/application/i18n/ro_RO/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Părinți ID trebuie să fie numeric', + ) , + 'private_to' => array( + 'required' => 'Câmpul Către este obligatoriu', + 'exists' => 'Utilizatorul către care încerca să trimiți un mesaj nu există', + ) , + 'private_subject' => array( + 'required' => 'Câmpul subiect este necesar', + 'length' => 'Câmpul subiect trebuie să fie între 3 și 150 de caractere', + ) , + 'private_message' => array( + 'required' => 'Câmpul mesaj este obligatoriu', + ) , +); diff --git a/application/i18n/ro_RO/report.php b/application/i18n/ro_RO/report.php new file mode 100755 index 0000000000..336985132d --- /dev/null +++ b/application/i18n/ro_RO/report.php @@ -0,0 +1,138 @@ + 'Eroare!', + 'country_name' => array( + 'single_country' => 'Această implementare cuprinde doar o singură țară. Vă rugăm să vă asigurați că locația alertei este în țara %s. ', + ) , + 'custom_field' => array( + 'numeric' => 'Câmpul "%s" trebuie să fie numeric.', + 'required' => 'Câmpul "%s" este necesar.', + 'not_exist' => 'Câmpul "%s" nu exista.', + 'permission' => 'Câmpul "%s" nu poate fi editat cu contul tau.', + 'email' => 'Câmpul "%s" trebuie să contina o adresa de mail valida.', + 'phone' => 'Câmpul "%s" trebuie să contina un număr de telefon valid.', + 'date_mmddyyyy' => 'Câmpul "%s" trebuie să conțină o dată validă (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'Câmpul "%s" trebuie să conțină o dată validă (DD/MM/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Vă rugăm să selectați un element valabil de inclus în download.', + 'numeric' => 'Vă rugăm să selectați un element valabil de inclus în download.', + ) , + 'data_active' => array( + 'between' => 'Vă rugăm să selectați "Rapoarte în curs de aprobare" sau "Rapoarte aprobate" sau ambele.', + 'numeric' => 'Vă rugăm să selectați "Rapoarte în curs de aprobare" sau "Rapoarte aprobate" sau ambele.', + 'required' => 'Vă rugăm să selectați "Rapoarte în curs de aprobare" sau "Rapoarte aprobate" sau ambele.', + ) , + 'data_verified' => array( + 'between' => 'Vă rugăm să selectați "Rapoarte în curs de aprobare" sau "Rapoarte aprobate" sau ambele.', + 'numeric' => 'Vă rugăm să selectați "Rapoarte în curs de aprobare" sau "Rapoarte aprobate" sau ambele.', + 'required' => 'Vă rugăm să selectați "Rapoarte în curs de aprobare" sau "Rapoarte aprobate" sau ambele.', + ) , + 'data_point' => array( + 'between' => 'Vă rugăm să selectați un tip valid de raport pentru descărcare.', + 'numeric' => 'Vă rugăm să selectați un tip valid de raport pentru descărcare.', + 'required' => 'Vă rugăm să selectați un tip valid de raport pentru descărcare.', + ) , + 'format' => array( + 'required' => 'Trebuie să selectați un format de descărcare. Selectați fie CSV sau XML.', + 'valid' => 'Vă rugăm să selectați un format valabil în care să descărcați rapoartele', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Câmpul data FROM nu pare să conțină o dată validă.', + 'range' => 'Vă rugăm să introduceți o dată validă pentru câmpul FROM. Data nu poate fi mai mare decât ziua curentă.', + ) , + 'incident_active' => array( + 'between' => 'Vă rugăm să introduceți o valoare validă pentru Aprobă Prezentul Raport', + 'required' => 'Vă rugăm să introduceți o valoare validă pentru Aprobă Prezentul Raport', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Câmpul am/pm nu pare să conțină o valoare validă.', + ) , + 'incident_category' => array( + 'numeric' => 'Câmpul "Categorii" nu pare să conțină o categorie validă.', + 'required' => 'Câmpul "Categorii" este necesar.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Câmpul data nu pare să conțină o dată validă.', + 'date_mmddyyyy' => 'Câmpul data nu pare să conțină o dată validă.', + 'required' => 'Câmpul data este necesar.', + ) , + 'incident_description' => array( + 'required' => 'Câmpul "Descriere" este necesar.', + ) , + 'incident_hour' => array( + 'between' => 'Câmpul ora nu pare să conțină o oră validă.', + 'required' => 'Câmpul oră este necesar.', + ) , + 'incident_information' => array( + 'alpha' => 'Vă rugăm să introduceți o valoare validă pentru Probabilitatea Informațiilor.', + 'length' => 'Vă rugăm să introduceți o valoare validă pentru Probabilitatea Informațiilor.', + ) , + 'incident_minute' => array( + 'between' => 'Câmpul minute nu pare să conțină o valoare validă.', + 'required' => 'Câmpul minut este necesar.', + ) , + 'incident_news' => array( + 'url' => 'Câmpul ce conține link-uri cu surse de știri nu pare să conțină o adresă URL validă.', + ) , + 'incident_photo' => array( + 'size' => 'Vă rugăm, asigurați-vă că fotografiile încărcate sunt limitate la 2MB.', + 'type' => 'Câmpul de Încărcare Fotografii nu pare să conțină o imagine validă. Formatele acceptate sunt doar. JPG,. PNG și. GIF.', + 'valid' => 'Câmpul de Încărcare Fotografii nu pare să conțină un fișier valid.', + ) , + 'incident_source' => array( + 'alpha' => 'Vă rugăm să introduceți o valoare validă pentru Fiabilitatea Sursei.', + 'length' => 'Vă rugăm să introduceți o valoare validă pentru Fiabilitatea Sursei.', + ) , + 'incident_title' => array( + 'length' => 'Câmpul "Titlu Raport" trebuie să aibă cel puțin 3 dar nu mai mult de 200 de caractere lungime.', + 'required' => 'Câmpul "Titlu Raport" este necesar.', + 'csrf' => 'Posibil atac CSRF. Credeți serios că vreți să creați / editați un raport?', + ) , + 'incident_verified' => array( + 'between' => 'Vă rugăm să introduceți o valoare validă pentru câmpul Verifica acest raport.', + 'required' => 'Vă rugăm să introduceți o valoare validă pentru câmpul Verifica acest raport.', + ) , + 'incident_video' => array( + 'url' => 'Câmpul Link-uri video nu pare să conțină o adresă URL validă.', + ) , + 'latitude' => array( + 'between' => 'Câmpul latitudine nu pare să conțină o latitudine validă.', + 'required' => 'Câmpul latitudine este necesar. Vă rugăm să faceți clic pe harta pentru a indica o locație.', + ) , + 'locale' => array( + 'alpha_dash' => 'Câmpul localizare are o valoare incorectă.', + 'exists' => 'Acest raport are deja o traducere pentru această limbă.', + 'length' => 'Câmpul localizare are o valoare incorectă.', + 'locale' => 'Raportul original și traducerea au aceeași localizare (limbă).', + 'required' => 'Câmpul localizare este necesar.', + ) , + 'location_name' => array( + 'length' => 'Câmpul "Nume Locație" trebuie să aibă cel puțin 3 dar nu mai mult de 200 de caractere lungime.', + 'required' => 'Câmpul "Nume Locație" este necesar.', + ) , + 'longitude' => array( + 'between' => 'Câmpul longitudine nu pare să conțină o longitudine validă.', + 'required' => 'Câmpul longitudine este necesar. Vă rugăm să faceți clic pe harta pentru a indica o locație.', + ) , + 'person_email' => array( + 'email' => 'Câmpul email nu pare să conțină o adresa de email validă.', + 'length' => 'Câmpul email trebuie să aibă cel puțin 4 dar nu mai mult de 64 de caractere lungime.', + ) , + 'person_first' => array( + 'length' => 'Câmpul prenume trebuie să aibă cel puțin 3 dar nu mai mult de 100 de caractere lungime.', + ) , + 'person_last' => array( + 'length' => 'Câmpul nume trebuie să aibă cel puțin 2 dar nu mai mult de 100 de caractere lungime.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Câmpul data TO nu pare să conțină o dată validă.', + 'range' => 'Vă rugăm să introduceți o dată validă pentru câmpul TO. Data nu poate fi mai mare decât ziua curentă.', + 'range_greater' => 'Câmpul dată FROM nu poate fi mai mare decât câmpul dată TO.', + ) , +); diff --git a/application/i18n/ro_RO/reporters.php b/application/i18n/ro_RO/reporters.php new file mode 100755 index 0000000000..1450aee9f9 --- /dev/null +++ b/application/i18n/ro_RO/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Câmpul pentru latitudine pare să nu conțină coordonate valide.', + 'required' => 'Câmpul pentru latitudine este necesar. Vă rugăm să faceți click pe hartă pentru a indica locul dorit.', + ) , + 'level_id' => array( + 'numeric' => 'Câmpul pentru Level-ul Raportorului pare să nu conțină o valoare corespunzătoare.', + 'required' => 'Câmpul pentru Level-ul Raportorului pare să nu conțină o valoare corespunzătoare.', + ) , + 'location_name' => array( + 'length' => 'Numele locului trebuie să conțină între 3 și 200 de caractere.', + 'required' => 'Câmpul pentru locație este necesar.', + ) , + 'longitude' => array( + 'between' => 'Câmpul pentru longitudine pare să nu conțină coordonate valide.', + 'required' => 'Câmpul pentru longitudine este necesar. Vă rugăm să faceți click pe hartă pentru a indica locul dorit.', + ) , + 'reporter_id' => array( + 'numeric' => 'Raportor invalid', + 'required' => 'Raportor invalid', + ) , +); diff --git a/application/i18n/ro_RO/reports.php b/application/i18n/ro_RO/reports.php new file mode 100644 index 0000000000..b5eaeff079 --- /dev/null +++ b/application/i18n/ro_RO/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Vă rugăm să contolați dacă ați verificat elementul', + 'numeric' => 'Vă rugăm să contolați dacă ați verificat elementul', + 'categories_required' => 'Semnalările trebuiesc categorizate înainte de a fi aprobate', + ) , + 'action' => array( + 'permission' => 'Nu aveți permisiunea de a executa această acțiune', + ) , + 'uploadfile' => array( + 'required' => 'Trebuie să selectați un fișier de încărcat', + 'type' => 'Fișierul încărcat trebuie să fie ori .csv ori format .xml', + 'valid' => 'Câmp cu fișierul de încarcat nu pare să conțină un fișier valid', + ) , +); diff --git a/application/i18n/ro_RO/roles.php b/application/i18n/ro_RO/roles.php new file mode 100755 index 0000000000..3141beb91a --- /dev/null +++ b/application/i18n/ro_RO/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Câmpul descriere trebuie să aibă cel puțin 3 dar nu mai mult de 100 de caractere lungime.', + 'required' => 'Este necesar câmpul descriere.', + ) , + 'name' => array( + 'alpha_numeric' => 'Câmpul de conține numele trebuie să conțină numai litere sau numere.', + 'length' => 'Câmpul de conține numele trebuie să aibă cel puțin 2 dar nu mai mult de 30 de caractere lungime.', + 'nomodify' => 'Rolul SuperAdmin nu poate fi modificat.', + 'required' => 'Este necesar câmpul nume.', + ) , + 'access_level' => array( + 'numeric' => 'Câmpul Access Level trebuie să fie între 0 - 100.', + 'required' => 'Câmpul Access Level trebuie să fie între 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Câmpul Permissions trebuie să fie între 0 - 100.', + ) , +); diff --git a/application/i18n/ro_RO/settings.php b/application/i18n/ro_RO/settings.php new file mode 100755 index 0000000000..0e4231bba3 --- /dev/null +++ b/application/i18n/ro_RO/settings.php @@ -0,0 +1,146 @@ + array( + 'between' => 'Câmpul de permitere a comentariilor nu pare să conțină o valoare validă.', + 'required' => 'Câmpul de permitere a comentariilor este necesar.', + ) , + 'allow_feed' => array( + 'between' => 'Câmpul include feed nu pare să conțină o valoare validă.', + 'required' => 'Câmpul include feed este necesar.', + ) , + 'allow_alerts' => array( + 'between' => 'Câmpul permite alerte nu pare să conțină o valoare validă.', + 'required' => 'Câmpul permite alerte este necesar.', + ) , + 'allow_reports' => array( + 'between' => 'Câmpul permite rapoarte nu pare să conțină o valoare validă.', + 'required' => 'Câmpul permite rapoarte este necesar.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Câmpul de sharing statistici nu pare să conțină o valoare validă.', + 'required' => 'Câmpul de sharing statistici este necesar.', + ) , + 'api' => array( + 'default_record_limit' => 'Numărul implicit de înregistrări care urmează să fie aduse de o cerere API', + 'maximum_record_limit' => 'Numărul maxim de înregistrări care urmează să fie aduse de o cerere API', + 'maximum_requests_per_ip_address' => 'Numărul maxim de cereri API per addresă IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Câmpul Akismet nu pare a conține o valoare validă.', + 'length' => 'Câmpul Akismet nu pare a conține o valoare validă.', + ) , + 'cache_pages' => array( + 'between' => 'Câmpul ce conține paginile cache este necesar.', + 'required' => 'Câmpul ce conține paginile cache nu pare a conține o valoare validă.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Câmpul ce conține timpul de viață al paginilor cache nu pare a conține o valoare validă.', + 'required' => 'Câmpul ce conține timpul de viață al paginilor cache este necesar.', + ) , + 'cleanurl' => array( + 'enable_clean_url' => 'Activează curățarea URL-urilor', + 'title' => 'Curăță URL-uri', + ) , + 'clickatell_api' => array( + 'length' => 'Câmpul numeric Clickatell API nu trebuie să aiba mai mult de 20 de caractere lungime.', + 'required' => 'Câmpul numeric Clickatell API este necesar.', + ) , + 'clickatell_password' => array( + 'length' => 'Câmpul Clickatell trebuie să aiba cel putin 5 dar nu mai mult de 50 de caractere lungime.', + 'required' => 'Câmpul Clickatell este necesar.', + ) , + 'clickatell_username' => array( + 'length' => 'Câmpul Clickatell Username nu trebuie să aiba mai mult de 50 de caractere lungime.', + 'required' => 'Câmpul Clickatell Username este necesar.', + ) , + 'configure_map' => 'Configurare harta', + 'default_location' => 'Locația implicită ', + 'default_map_all' => array( + 'alpha_numeric' => 'Câmpul culoare feed nu pare să conțină o valoare validă.', + 'length' => 'Campul culoare nu trebuie sa aiba mai mult de 6 caractere lungime.', + 'required' => 'Câmpul culoare este necesar.', + ) , + 'default_map_view' => 'Vizualizare harta implicita', + 'default_zoom_level' => 'Nivel harta implicita', + 'email_host' => array( + 'length' => 'Câmpul ce conține mail server port este prea lung.', + 'numeric' => 'Câmpul ce conține portul pentru serverul de mail trebuie sa contina numai numere.', + ) , + 'email_password' => array( + 'length' => 'Câmpul Parola server mail trebuie să aiba cel putin 5 dar nu mai mult de 50 de caractere lungime.', + 'required' => 'Câmpul ce conține parola de mail server este necesar.', + ) , + 'email_port' => array( + 'length' => 'Câmpul ce conține port pentru serverul de mail este prea lung.', + 'numeric' => 'Câmpul ce conține portul pentru serverul de mail trebuie sa contina numai numere.', + ) , + 'email_servertype' => array( + 'length' => 'Câmpul ce conține mail server port este prea lung.', + 'required' => 'Câmpul ce conține tipul de mail server este necesar.', + ) , + 'facebook' => array( + 'title' => 'Opținuni Facebook Setup', + 'app_id' => 'ID Facebook App', + 'app_secret' => 'Secret Facebook App ', + ) , + 'https' => array( + 'enable_https' => 'Activează HTTPS', + 'title' => 'HTTPS', + ) , + 'map' => array( + 'zoom' => 'Nivel zoom', + ) , + 'map_provider' => array( + 'choose' => 'Selecteaza furnizor harta', + 'enter_api' => 'Introduce noua cheie API', + 'get_api' => 'Obtine o cheie API ', + 'name' => 'Furnizor harta', + ) , + 'map_settings' => 'Setari harta', + 'multiple_countries' => 'Are această implementare Ushahidi deschidere în mai multe țări?', + 'select_default_location' => 'Selecteaza o tara default', + 'site' => array( + 'api_akismet' => 'Cheie Akismet ', + 'banner' => 'Site Banner', + 'blocks_per_row' => 'Blocuri pe rand', + 'cache_pages' => 'Pagini cache', + 'cache_pages_lifetime' => 'Timpul de viata al paginilor cache', + 'checkins' => 'Permite Checkins', + 'default_category_colors' => 'Culoarea implicită pentru toate categoriile', + 'delete_banner_image' => 'Șterge imaginea banner', + 'delete_default_map_all_icon' => 'Sterge icoana default', + 'email_alerts' => 'Adresa de email a alertelor', + 'email_site' => 'Adresa de email a site-ului', + 'google_analytics' => 'Google Analytics', + 'language' => 'Limba site', + 'manually_approve_users' => 'Aprobă manual utilizatorii', + 'message' => 'Mesaj site', + 'name' => 'Nume site', + 'private_deployment' => 'Implementare privată', + 'require_email_confirmation' => 'Necesita email de confirmare a utilizatorului', + 'timezone' => 'Fus orar', + 'title' => 'Setari site', + ) , + 'site_email' => array( + 'email' => 'Câmpul email al siteului nu pare să conțină o adresa de email validă.', + ) , + 'site_name' => array( + 'length' => 'Câmpul nume trebuie să aibă cel puțin 3 dar nu mai mult de 50 de caractere lungime.', + 'required' => 'Câmpul ce conține numele site-ului este necesar.', + ) , + 'sms' => array( + 'title' => 'Optiuni setare SMS', + ) , + 'sms_no1' => array( + 'numeric' => 'Câmpul ce conține telefon 1 trebuie sa contina numai numere.', + ) , + 'twitter' => array( + 'token' => 'Token acces', + 'token_secret' => 'Tokensecret acces', + ) , +); diff --git a/application/i18n/ro_RO/sharing.php b/application/i18n/ro_RO/sharing.php new file mode 100755 index 0000000000..4db90b9097 --- /dev/null +++ b/application/i18n/ro_RO/sharing.php @@ -0,0 +1,25 @@ + 'Data introducerii', + 'date_added' => 'Data adăugarii', + 'last_access' => 'Ultima accesare', + 'sharing_color' => array( + 'length' => 'Câmpul pentru culoare trebuie să aibă cel puțin 6 caractere.', + 'required' => 'Câmpul pentru culoare este necesar.', + ) , + 'sharing_name' => array( + 'length' => 'Numele de sharing nu pare a fi valid.', + 'required' => 'Un nume de sharing este necesar.', + ) , + 'sharing_url' => array( + 'exists' => 'URL-ul acestui site existp deja.', + 'length' => 'URL-ul acestui site nu pare valid.', + 'required' => 'URL-ul acestui site este necesar.', + 'url' => 'Câmpul ce conține URL-ul acestui site nu conține un URL valid.', + ) , +); diff --git a/application/i18n/ro_RO/stats.php b/application/i18n/ro_RO/stats.php new file mode 100755 index 0000000000..1fc36b82f8 --- /dev/null +++ b/application/i18n/ro_RO/stats.php @@ -0,0 +1,42 @@ + 'Aprobat', + 'categories' => 'Categorii', + 'category_impact' => 'Impact Categorie', + 'category_impact_description' => 'Această diagramă vă oferă o vedere liniara a rapoartelor pe categorii de-a lungul timpului. Derulați de la stânga la dreapta pentru a vedea o imagine comparativă a diferitelor categorii. Puneți mouse-ul peste grafic pentru mai multe detalii.', + 'choose_date_range' => 'Alege un interval pentru dată.', + 'countries' => 'Țări', + 'country' => 'Țara', + 'country_breakdown' => 'Împărțire pe țări', + 'description' => 'Aceasta este secțiunea de statistici și va conține o descriere generală în curând. Pentru moment, navigați folosind link-urile de mai sus ale subcategoriei.', + 'error' => 'Eroare', + 'glossary' => 'Glosar', + 'hit_summary' => 'Sumar Hit-uri', + 'legend' => 'Legendă', + 'pageviews' => 'Pagini vizualizate', + 'pageviews_description' => 'Numărul total de pagini pe care vizitatorii l-au văzut pe site-ul dvs.', + 'reports' => 'Rapoarte', + 'reports_categories' => 'Categorii Rapoarte', + 'reports_statistics' => 'Statistici Rapoarte', + 'reports_status' => 'Status Rapoarte', + 'report_punchcard' => 'Raport Punchcard', + 'report_stats' => 'Statistici Rapoarte', + 'stats_not_setup' => 'Statisticile nu au fost setate', + 'time_range_1' => '1 Lună', + 'time_range_2' => '3 Luni', + 'time_range_3' => '6 Luni', + 'time_range_all' => 'Tot', + 'unapproved' => 'Neaprobat', + 'unique_visitors' => 'Vizitatori unici', + 'unique_visitors_description' => 'Numărul de persoane care vin această implementare. Vizitatorii unici sunt determinați folosind cookie-urile. Vizitatorii care nu au cookie-urile activate vor fi identificați ținând cont de adresa IP, rezoluția, browser-ul, plugin-uri, sistem de operare, etc.', + 'unverified' => 'Neverificat', + 'verified' => 'Verificat', + 'visitor_summary' => 'Sumar Vizitatori', + 'visits' => 'Vizite', + 'visits_description' => 'O vizită este o înregistrare a unui vizitator unic ce revine la site în mai mult de 30 minute de la ultima vizualizare de pagină.', +); diff --git a/application/i18n/ro_RO/tooltips.php b/application/i18n/ro_RO/tooltips.php new file mode 100755 index 0000000000..d505211785 --- /dev/null +++ b/application/i18n/ro_RO/tooltips.php @@ -0,0 +1,30 @@ + array( + 'add_to_category' => 'Aceasta adaugă raportul la categorii adiționale. Dacă selectați Categoria 1 și raportul are deja Categoria 2, raportul va avea atunci atât Categoria 1 cât și Categoria 2.', + 'approve' => 'Aprobă un raport sau nu. Dacă va fi aprobat, aceasta va apărea în mod public.', + 'assign_badge' => 'Veți fi capabil să atribuiți o insignă utilizatorului ce face declanșarea. Alege insigna pe care i-o repartizați aici.', + 'email_body' => 'Corpul mesajului pentru emailul ce va fi trimis.', + 'email_subject' => 'Subiectul emailului ce va fi trimis.', + 'report_title' => 'Acesta este titlul implicit ce va fi adăugat la raport.', + 'verify' => 'Marchează un raport ca verificat sau nu.', + ) , + 'default_value' => 'Separați fiecare valoare cu o virgulă, de exemplu, valoare1, valoare2.', + 'dropdown_choices' => 'Separați fiecare element cu o virgulă, de exemplu, valoare1, valoare2.', + 'private_to' => 'Începeți să scrieti lista membrilor.', + 'private_subject' => 'Subiectul mesajului privat', + 'private_message' => 'Mesaj privat', + 'profile_email' => 'Adresa dvs. de email', + 'profile_public_url' => 'Aceasta este adresa unde profilul dvs. public poate fi găsit.', + 'profile_username' => 'Numele utilizatorului nu poate fi schimbat.', + 'settings_alert_email' => 'Aceasta este adresa de email care va fi folosita pentru a trimite alerte prin e-mail.', + 'settings_allow_comments' => 'Permite utilizatorilor sa comenteze rapoartele in site-ul principal.', + 'settings_cache_pages_lifetime' => 'Setează durata de viață a cache-ului.', + 'settings_flsms_text_1' => 'Numerele de telefon prin care mesajele text sunt primite.', + 'settings_map_provider' => 'Acesta defineste care harta va fi utilizată pe site.', +); diff --git a/application/i18n/ro_RO/ui_admin.php b/application/i18n/ro_RO/ui_admin.php new file mode 100755 index 0000000000..635eebe337 --- /dev/null +++ b/application/i18n/ro_RO/ui_admin.php @@ -0,0 +1,319 @@ + 'Accesul interzis. Ori nu ai suficiente drepturi , ori cererea a fost refuzată.', + 'access_denied_others' => 'Accesul interzis. Cererea a fost procesată, dar respinsă datorită unor limitări cum ar fi timpul. Încercați mai târziu.', + 'access_level' => 'Nivel de acces', + 'actions' => 'Acțiuni', + 'add_to_category' => 'Adaugă la categorii', + 'added' => 'adăugat', + 'added_edited' => 'adăugat/editat', + 'addons' => 'Addon-uri', + 'admin_role' => 'Administrator', + 'alerts' => 'Alerte', + 'alerts_received' => 'Alerte Primite', + 'all' => 'Tot', + 'am' => 'AM', + 'anonymous' => 'Anonim', + 'anyone_role' => 'Oricine', + 'anywhere' => 'Oriunde', + 'api_banned' => 'API interzis', + 'api_logs' => 'Log-uri API', + 'api_settings' => 'Setări API', + 'api_unban' => 'Ridică interdicția', + 'api_unban_all' => 'Ridică interdicția pentru toți', + 'approved' => 'aprobat', + 'approve_auto' => 'Aprobă automat', + 'approve_manual' => 'Aprobă manual', + 'archived' => 'Arhivat', + 'are_you_sure_you_want_to' => 'Ești sigur că vrei să', + 'are_you_sure_you_want_to_delete_this_item' => 'Ești sigur că vrei să ștergi acest element?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Ești sigur că vrei să ștergi această poză?', + 'are_you_sure_you_want_to_switch_forms' => 'Ești sigur că vrei să schimbi formularele?', + 'assign' => 'Atribuie', + 'assignments' => 'Atribuții', + 'assign_badge' => 'Atribuie insignă (badge)', + 'author' => 'Autor', + 'author_email' => 'Email autor', + 'back' => 'Înapoi', + 'banip_action' => 'Interzice IP', + 'between_times' => 'Între timpi', + 'blocks' => 'Blocuri', + 'body' => 'Corp', + 'cancel' => 'Anulează', + 'categories' => 'Categorii', + 'chart_display_error' => 'Eroare la afișarea hărții', + 'check_message_valid' => 'Vă rugăm verificați dacă mesajul este valid.', + 'check_number' => 'Vă rugăm asigurați-vă că numărul este valid.', + 'check_sms_settings' => 'Verifică setările pentru SMS!', + 'checkin_details' => 'Detalii Checkin', + 'checkins' => 'Checkin-uri', + 'cities_loaded' => 'Orașe încărcate', + 'code' => 'cod', + 'code_out_of_sync' => 'Versiunea de cod nu este sincronizată', + 'color' => 'Culoare', + 'comments' => 'Comentarii', + 'confirmation_code' => 'Codul dvs. de confirmare a alertelor este:', + 'confirm_msg' => 'Utilizatorul a fost', + 'count' => 'Sumă', + 'country_not_found' => 'Țara nu a fost găsită', + 'created_edited' => 'creat/editat', + 'create_report' => 'Crează o semnalare', + 'critical_upgrade' => 'Upgrade critic', + 'csv' => 'CSV', + 'currently_active' => 'Activ în momentul de față', + 'currently_inactive' => 'Inactiv în momentul de față', + 'custom_forms_insufficient_permissions' => 'Nu aveți permisiuni suficiente pentru a edita următoarele câmpuri personalizate.', + 'daily' => 'Zilnic', + 'dashboard' => 'Panou', + 'database' => 'bază de date', + 'date_time' => 'Data & Ora', + 'date_added' => 'Data adăugării', + 'date_modified' => 'Data modificării', + 'days_of_the_week' => 'Zilele săptamânii', + 'db_out_of_sync' => 'Versiunea bazei de date nu poate fi sincronizată.', + 'deleted' => 'șters', + 'delete_action' => 'Șterge', + 'delete_badge' => 'Șterge insigna', + 'demo' => 'Demo', + 'description' => 'Descriere', + 'disabled' => 'Dezactivat', + 'divider_start_field' => 'Începutul separatorului', + 'divider_end_field' => 'Sfâșitul separatorului', + 'divider_class' => 'clasa div-ului', + 'download_reports' => 'Descarcă semnalările', + 'dropdown_choices' => 'Alegeri în mod dropdown', + 'edited' => 'EDITAT', + 'edited_by' => 'Editat de către', + 'edit_action' => 'Editează', + 'edit_log' => 'Editează log', + 'email' => 'Email', + 'entire_collective' => 'Întregul colectiv', + 'error_geocoding' => 'Eroare în geocoding! Eroare HTTP', + 'error_imap' => 'Librăria PHP pentru IMAP nu este instalată', + 'error_msg' => 'Eroare', + 'error_post_incident' => 'Eroare, incidentul nu poate fi postat', + 'every_six_hours' => 'La fiecare șase ore', + 'every_twelve_hours' => 'La fiecare douăsprezece ore', + 'experimental' => 'Experimental', + 'faqs' => 'FAQ\'s', + 'feed' => 'feed', + 'feedback' => 'Feedback', + 'feeds' => 'feed-uri', + 'field_choices' => 'Lista de opțiuni', + 'field_default' => 'Valoarea implicită', + 'field_datatype' => 'Tipul de date', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Marcaj', + 'field_datatype_numeric' => 'Numeric', + 'field_datatype_text' => 'Text liber', + 'field_height' => 'Înălțime (în rânduri)', + 'field_hidden' => 'Câmpuri ascunse', + 'field_maxlength' => 'Lungimea maximă de caractere', + 'field_name' => 'Numele câmpului', + 'field_toggle' => 'Comută', + 'field_toggle_no' => 'Nu', + 'field_toggle_yes_close' => 'Da, închis ca și implicit', + 'field_toggle_yes_open' => 'Da, deschis ca și implicit', + 'file_not_found_upload' => 'Nu a putut fi găsit fișierul încărcat', + 'file_open_error' => 'Nu a putut fi deschis fișierul pentru a fi citit', + 'form_not_exists' => 'Acel formular nu exista!', + 'forum' => 'Forum', + 'free_text_field' => 'Câmp cu text (Text liber)', + 'date_field' => 'Câmpul pentru dată', + 'radio_field' => 'Câmpul pentru butoane de tip Radio', + 'checkbox_field' => 'Câmpul pentru ckeckbox-uri', + 'dropdown_field' => 'Câmpul pentru dropdown-uri', + 'from' => 'De la', + 'from_date' => 'De la', + 'geonames_timeout' => 'Geonames Timeout Error', + 'get_help' => 'Cere ajutor', + 'get_more_themes' => 'Obține mai multe teme', + 'get_more_plugins' => 'Obține mai multe plugin-uri', + 'header_actions' => 'Acțiuni', + 'header_add_edit' => 'Adaugă/Editează', + 'header_email' => 'Email', + 'header_manage_users' => 'Gestionează utilizatorii', + 'header_role' => 'Rol', + 'header_user' => 'Utilizator', + 'help' => 'ajutor', + 'hourly' => 'În fiecare oră', + 'incident_feed' => 'Feedul incidentului pentru', + 'installer_info' => 'Directorul de instalare încă există. Șterge directorul de instalare. Este o potențială vulneralibitate a securității.', + 'instance' => 'Instanța', + 'instances' => 'Instanțe', + 'instance_details' => 'Detalii instanță', + 'invalid_parameter' => 'Parametru invalid', + 'ip_address' => 'Adresa IP', + 'is_date' => 'Este acesta un câmp pentru data?', + 'ispublic_visible' => 'Cine poate vedea răspunsurile', + 'ispublic_submit' => 'Cine poate trimite răspunsurile', + 'keyword' => 'Cuvânt cheie', + 'keywords' => 'Cuvinte cheie', + 'label_email' => 'Adresa email:', + 'label_full_name' => 'Numele complet:', + 'label_password' => 'Parola:', + 'label_role' => 'Rol:', + 'label_username' => 'Nume utilizator:', + 'layers' => 'Straturi', + 'login_role' => 'Moderator', + 'logout' => 'Deconectare', + 'logs' => 'Log-uri', + 'manage' => 'Gestionează', + 'manage_roles' => 'Gestionează roluri & permisiuni', + 'manage_users' => 'Vezi utilizatori', + 'manage_users_edit' => 'Adaugă/Editează Utilizatori', + 'manage_public_listing' => 'Gestionează listele tale publice', + 'mark_as' => 'Marchează ca', + 'marked_as_not_spam' => 'marcat ca not spam', + 'marked_as_spam' => 'marcat ca spam', + 'match_no_documents' => 'nu a returnat nici un document', + 'message' => 'Mesaj', + 'messages' => 'mesaje', + 'messages_laconica' => 'Mesaje Laconica StatusNet', + 'messages_twitter' => 'Mesaje Twitter', + 'message_sent' => 'Mesajul tău a fost trimis!', + 'mhi' => 'MHI', + 'minute' => 'Minut', + 'minutes' => 'Minute', + 'missing_parameter' => 'Parametru lipsă', + 'moderator' => 'Moderator', + 'modified' => 'modificat', + 'modify_timezone' => 'Modifică setările zonei de fus orar', + 'move_down_action' => 'Mută jos', + 'move_up_action' => 'Mută sus', + 'multiple_hosted_instances' => 'Mai multe instanțe găzduite', + 'my_alerts' => 'Alertele mele', + 'my_checkins' => 'Checkin-urile mele', + 'my_profile' => 'Profilul meu', + 'my_reports' => 'Semnalările mele', + 'my_votes' => 'Voturile exprimate', + 'my_votes_up' => 'Pozitive', + 'my_votes_down' => 'Negative', + 'name' => 'Nume', + 'new_alert' => 'Crează o noua alertă', + 'new_private' => 'Crează un nou mesaj', + 'new_password' => 'Noua parolă', + 'no' => 'Nu', + 'none_category_explanation' => 'Aceasta este o categorie specială care nu va apărea în formularul de trimitere a semnalărilor pentru utilizatorii care trimit semnalări. Aceasta este utilizată pentru a păstrarea semnalărilor rămase fără categorie (semnalări necategorisite) ca urmare a ștergerii unei categorii.', + 'notification' => 'Notificare', + 'not_case_sensitive' => 'Acest element nu este case sensitive.', + 'not_found' => 'Nu a fost găsit', + 'no_data' => 'Nu sunt date. Nu există rezultate de afișat.', + 'no_error' => 'Nu există erori', + 'no_result_display_msg' => 'Nu există rezultate de afișat!', + 'of' => 'de', + 'on_specific_count' => 'La numărătoarea specifică', + 'openids' => 'OpenID-uri', + 'page' => 'pagina', + 'pages' => 'pagini', + 'page_not_found' => 'Pagina nu a fost găsită', + 'page_not_found_message_with_contact' => 'Ne pare rău, pagina pe care încercați să o vizualizați nu este aici.

Ați urmat un link din altă parte a site-ului nostru?
Dacă ați ajuns la această pagină din altă parte a site-ului nostru, vă rugăm să ne contactațiastfel încât să putem corecta această greseală.

Ați urmat un link din alt site?
Link-urile de la alte site-uri pot fi, uneori, depășite sau scrise gresit.Spune-ne de unde ai venit și putem încerca să contactăm site-ul pentru a rezolva problema.

Ați tastat URL-ul?
Este posibil să fi tastat adresa (URL) incorect. Verificați pentru a vă asigura că ați scris corect, capitalizarea, etc.

', + 'page_not_found_message' => 'Ne pare rău, pagina pe care încercați să o vizualizați nu este aici.', + 'parameters_used' => 'Parametri utilizați', + 'password' => 'Parola', + 'password_reset' => 'Resetarea parolei', + 'password_reset_message_line_1' => 'Dragă', + 'password_reset_message_line_2' => 'Am primit o cerere de resetare a parolei pentru', + 'password_reset_message_line_3' => 'Pentru a schimba parola, vă rugam accesați link-ul de mai jos (sau copy-paste în browser).', + 'password_reset_message_line_4' => 'Așa cum ați solicitat, parola dvs. a fost resetată. Noile dvs. detalii sunt', + 'password_reset_subject' => 'Resetarea parolei Ushahidi', + 'phone' => 'Telefon', + 'please_select' => 'Vă rugăm selectați', + 'pm' => 'PM', + 'post_method_not_used' => 'Datele nu au fost trimise prin metoda post', + 'preview' => 'Previzualizare', + 'private_message' => 'Mesaj', + 'private_messages' => 'Mesaje privat', + 'private_sent' => 'Mesaj privat trimis', + 'private_subject' => 'Subiect', + 'private_to' => 'Către', + 'public_listing' => 'Listă publică', + 'qualifiers' => 'Calificative', + 'read' => 'citește', + 'relevance' => 'Relevanță', + 'report_title' => 'Titlu semnalare', + 'report_date' => 'Date raportării', + 'reporters' => 'Reporteri', + 'reporter_levels' => 'Niveluri reporter', + 'reports' => 'Semnalări', + 'reputation' => 'Scor de reputație', + 'required' => 'Necesar', + 'reset' => 'Resetare', + 'response' => 'Răspuns', + 'results' => 'Rezultate', + 'revoke' => 'Revocare', + 'riverid_exists_admin' => 'Acest e-mail are deja un cont administrat de CrowdmapID. Utilizatorul va trebui să utilizeze parola Crowdmap existentă pentru a se autentifica.', + 'save_settings' => 'Salvează setările', + 'search' => 'Caută', + 'search_reports' => 'Caută semnalări', + 'searching_for' => 'în căutare de', + 'security_info_encryption_key' => 'Cheia criptată este încă setată pe valoarea default. Acest lucru este nesigur și trebuie să fie schimbat.', + 'security_info_https' => 'Acest site folosește HTTP. Acest lucru trebuie schimbat pentru a crește gradul de securitate.', + 'security_info_instructions' => 'Instrucțiunile sunt disponibile pe wiki:', + 'select_download_format' => 'Selectați formatul dorit pentru descărcarea rapoartelor: -', + 'select_field_type' => '--- Selecteaza Tipul Campului ---', + 'select_item' => 'Selectează un element', + 'select_trigger_before_response' => 'Trebuie selectat un mecanism de declanșare înainte de a trimite un Răspuns.', + 'select_trigger_before_qualifiers' => 'Trebuie selectat un mecanism de declanșare înainte de a defini Calificativele.', + 'sender' => 'Expeditor', + 'send_to' => 'Trimite către', + 'sent_from_website' => 'Acest mesaj a fost trimis de pe site-ul tău la ', + 'server_time' => 'Ora și data server-ului', + 'settings' => 'Setări', + 'showing_page' => 'Afișare pagină', + 'showing_results' => 'Afișare rezultate', + 'shown' => 'afișate', + 'special_category' => 'Categorie specială', + 'special_category_explanation' => 'Aceasta este o categorie specială, care nu va apărea pe formularul de trimitere a semnalărilor pentru utilizatorii care trimit semnalări. Această categorie va fi afiliată funcției de "Reporteri de încredere"', + 'specific_area' => 'Arie specifică', + 'state' => 'Regiune', + 'statistics' => 'Statistici', + 'stats' => 'Statistici', + 'stats_collection_error' => 'Colectarea statisticilor a eșuat! Vă rugăm să încercați mai târziu.', + 'stats_collection_error_short' => 'Colectarea statisticilor a eșuat!', + 'specific_days' => 'Zile specifice', + 'subject' => 'Subiect', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'Activități realizate', + 'text_field' => 'Câmp text', + 'theme_name' => 'Nume', + 'title' => 'Gestionează utilizatorii', + 'timeout' => 'Eroare de timeout', + 'to' => 'către', + 'total_records' => 'Total înregistrări', + 'to_date' => 'către', + 'translate_reports' => 'Tradu Semnalările', + 'trigger' => 'Declanșare', + 'triggering_user' => 'Utilizator declanșator', + 'triggers' => 'Declanșări', + 'unapproved' => 'neaprobat', + 'unknown' => 'necunoscut', + 'unknown_failure' => 'Eroare necunoscută', + 'unread' => 'necitit(e)', + 'unsubscribe_message' => 'Nu vei mai primi alerte de la', + 'update_link' => 'Apasă aici pentru a upgrada în acest moment', + 'upgrade_ushahidi' => 'Upgradeaza Ushahidi', + 'upgrade_ushahidi_status' => 'Upgradează statusul Ushahidi', + 'upload_reports' => 'Încarcă semnalări', + 'user' => 'Utilizator', + 'users' => 'Utilizatori', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Verificat/Neverificat', + 'verify_unverify' => 'Verifică/Nu verifica', + 'version' => 'Versiune', + 'version_available' => 'este disponibil pentru upgradare.', + 'video_encoding' => 'Codare Video', + 'view_private' => 'Mesaje private', + 'view_site' => 'Vezi site-ul', + 'view_report' => 'Vezi semnalarea', + 'welcome' => 'Bine ai venit,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Da', + 'your_search_for' => 'Căutarea ta pentru', +); diff --git a/application/i18n/ro_RO/ui_main.php b/application/i18n/ro_RO/ui_main.php new file mode 100755 index 0000000000..82aa4d7433 --- /dev/null +++ b/application/i18n/ro_RO/ui_main.php @@ -0,0 +1,612 @@ + 'Despre', + 'access' => 'Acces', + 'access_limits' => 'Limite Acces', + 'account_name' => 'Nume cont', + 'actions' => 'Acțiuni', + 'action_confirm' => 'Această acțiune nu poate fi anulată. Sunteți sigur ca doriți să continuați?\'', + 'activate' => 'Activează', + 'active' => 'Activ', + 'add' => 'Adaugă', + 'added_by' => 'Adăugat de', + 'additional_data' => 'Date suplimentare', + 'additional_reports' => 'Semnalări suplimentare', + 'add_edit' => 'Adaugă/Editează', + 'add_field' => 'Adaugă un câmp', + 'add_language' => 'Adaugă o limbă', + 'add_new' => 'Adaugă un nou', + 'add_new_category' => 'Adaugă o Nouă categorie', + 'add_translation' => 'Adaugă traducere', + 'admin' => 'Administrare', + 'alerts' => 'Primește Alerte', + 'alerts_alert_me' => 'Alertează-mă dacă apare o semnalare nouă:', + 'alerts_btn_send' => 'Salvează Alerta mea', + 'alerts_email' => 'Adresa de email:', + 'alerts_enter_email' => 'introduceți adresa de email', + 'alerts_enter_mobile' => 'introduceți numărul de mobil incluzând prefixul de țară', + 'alerts_get' => 'Primește Alerte', + 'alert_has_been' => 'Alerta a fost', + 'alerts_mobile_phone' => 'Nr. de telefon mobil:', + 'alerts_place_spot' => 'Sau selectează un punct pe harta de mai jos, iar noi te vom alerta dacă a fost semnalat ceva pe o rază de 20 de km.', + 'alerts_place_spot2' => 'Dacă nu puteți găsi locul dorit, dați click pe hartă pentru a indica locul corect.', + 'alerts_rss' => 'Feeduri RSS (copiază URLul de mai jos)', + 'alerts_select_city' => 'Alege un oraș', + 'alerts_step1_select_city' => 'Pasul 1: Selectează orașul sau locul dorit:', + 'alerts_step2_send_alerts' => 'Pasul 2: Trimite alerte către:', + 'alerts_step3_select_catgories' => 'Pasul 3 (Opțional): Selectează categoriile', + 'alert_confirm_previous' => 'Confirmă o cerere de alertă anterioară', + 'alert_saved' => 'Alerta dvs. a fost salvată!', + 'all' => 'Toate', + 'allowed' => 'Permis', + 'all_categories' => 'Toate categoriile', + 'all_time' => 'Tot timpul', + 'and' => 'și', + 'api' => 'API', + 'approve' => 'Aprobă', + 'approved' => 'Aprobate', + 'approved_reports' => 'Semnalări Aprobate', + 'approve_this_report' => 'Aprobă această semnalare', + 'approximate' => 'Aproximativ', + 'archive' => 'Arhiva', + 'archived' => 'Arhivat', + 'ascending' => 'Crescător', + 'at' => 'la', + 'author' => 'Autor', + 'auto_checkin' => 'Auto Checkin', + 'avg_reports_per_day' => 'Medie semnalări pe zi', + 'awaiting_approval' => 'Așteaptă aprobarea', + 'awaiting_verification' => 'Așteaptă verificarea', + 'badge' => 'Insigna', + 'badges' => 'Insigne', + 'badge_image' => 'Imagine insigna', + 'badge_image_upload_your_own' => 'Sau poți încărca în schimb propria ta imagine a insignei', + 'badge_pack' => 'Grup de insigne', + 'badge_select' => 'Selectează o insignă', + 'blog' => 'Blog', + 'browse_profiles' => 'Caută profile', + 'cancel' => 'Anulează', + 'categories' => 'Categorii', + 'category' => 'Categorie', + 'category_filter' => 'Filtru de categorii', + 'category_has_been' => 'Categoria a fost ', + 'category_name' => 'Numele categoriei', + 'change_date_range' => 'Schimbă intervalul de timp', + 'change_password' => 'Schimbă parola', + 'change_picture' => 'Schimbă poza', + 'choose' => 'Alege', + 'choose_data_points' => 'Alege datele pe care vrei să le downloadezi', + 'choose_date_range' => 'Sau alege intervalul de timp propriu', + 'choose_field_type' => 'Alege tipul de câmp', + 'cleanurl' => 'Golește URLuri', + 'clear' => 'Golește', + 'clear_map' => 'Curață harta', + 'close' => 'Închide', + 'clusters' => 'clustere', + 'color' => 'Culoare', + 'comment' => 'Comentariu', + 'comments' => 'Comentarii', + 'comment_details' => 'Detalii Comentariu', + 'configuration_saved' => 'Setările tale au fost salvate!', + 'configure' => 'Configurează', + 'confirm_email_successful' => 'Ați confirmat cu succes adresa de email! Vă rugăm să vă autentificați mai jos.', + 'confirm_email_failed' => 'Confirmarea emailului a esuat! Poți cere o noua confirmare mai jos.', + 'contact' => 'Contactează-ne', + 'contact_code' => 'Cod de securitate', + 'contact_email' => 'Adresa de email', + 'contact_message' => 'Mesaj', + 'contact_message_has_send' => 'Mesajul tău a fost trimis!', + 'contact_name' => 'Numele tău', + 'contact_phone' => 'Nr. tău de telefon', + 'contact_send' => 'Trimite mesaj', + 'contact_subject' => 'Subiectul mesajului', + 'copyright' => 'Copyright ©', + 'create' => 'Crează', + 'create_edit' => 'Crează/Editează', + 'create_new' => 'Crează un nou', + 'create_new_password' => 'Crează o nouă parolă', + 'create_report' => 'Semnalează ceva nou', + 'credibility' => 'Credibilitate', + 'current_password' => 'Parola curentă', + 'custom_fields' => 'Câmpuri personalizate', + 'data' => 'Informații', + 'date' => 'Data', + 'date_format' => '(ll/zz/aaaa)', + 'date_time' => 'Data & ora', + 'day' => 'zi', + 'deactivate' => 'Dezactivează', + 'default_location_name' => 'București, România', + 'delete' => 'Șterge', + 'deleted' => 'Șters', + 'deletes' => 'Ștergeri', + 'delete_disabled' => 'Ștergerea dezactivată', + 'delete_last' => 'Șterge ultimul', + 'delete_report' => 'Șterge această semnalare', + 'delete_selected' => 'Șterge pe cele selectate', + 'delete_spam' => 'Șterge Spamul', + 'demo' => 'Demo', + 'description' => 'Descriere', + 'descending' => 'Descrescător', + 'detailed_location_example' => 'Exemplu: Colț cu Piața Norilor, Radulescu-Motru 54, București', + 'details' => 'Detalii', + 'direct_report' => 'Semnalare Directă', + 'disabled' => 'Dezactivat', + 'disapprove' => 'Neaprobat', + 'download_reports' => 'Downloadează Semnalări', + 'download' => 'Download', + 'edit' => 'Editează', + 'edit_form_fields' => 'Editează Câmpurile Formularului', + 'edit_report' => 'Editează Semnalarea', + 'email' => 'Email', + 'email_address' => 'Adresa email', + 'email_configuration' => 'Setari server de Mail', + 'email_server_host' => 'Mail Server Host', + 'email_server_password' => 'Parola Serverului de Mail', + 'email_server_port' => 'Portul Serverului de Mail', + 'email_server_ssl_support' => 'Suport SSL pentru serverul de Mail', + 'email_server_type' => 'Tipul serverului de Mail', + 'email_server_username' => 'Username pentru serverul de Mail', + 'email_settings_comment_0' => 'astfel încât setările trebuiesc să fie asociate cu această adresă de email', + 'email_settings_comment_00' => 'Pentru a putea primi semnălari prin email, vă rugăm să introduceți mai jos setările contului dvs. de email. Rețineți că email-urile vor fi trimise la adresa dvs.', + 'email_settings_comment_1' => 'Unele servere necesită adresa întreagă de email', + 'email_settings_comment_2' => 'Parola contului de email', + 'email_settings_comment_3' => 'Porturi uzuale: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Exemple: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Exemple: pop3, imap', + 'email_settings_comment_6' => 'Activează sau dezactivează conexiunile SSL', + 'empty' => '-----GOL-----', + 'end_point' => 'către', + 'error' => 'Eroare!', + 'example' => 'Exemplu', + 'example_country' => 'Romania', + 'external_apps' => 'Aplicații externe', + 'external_video_link' => 'Link video extern', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Trimite Feedback', + 'feeds' => 'Feeds', + 'feed_has_been' => 'Acest feed a fost', + 'feed_items' => 'Elemente Feed', + 'feed_name' => 'Nume Feed', + 'feed_url' => 'URL Feed', + 'field_unused' => 'Câmp neutilizat', + 'file' => 'Fișier', + 'file_over_max_allowed' => 'Fișierul tău depășește dimensiunea impusă.', + 'filters' => 'Filtre', + 'filter_reports' => 'Filtrează Semnalările', + 'filter_reports_by' => 'Filtrează Semnalările după', + 'filter_reports_contain' => 'Filtrează semnalările ce conțin', + 'find' => 'Găsește', + 'find_location' => 'Găsește locul', + 'first_name' => 'Prenume', + 'force_run_scheduler' => 'Forțează Rularea Planificării', + 'forgot_password' => 'Ai uitat parola?', + 'form' => 'Formular', + 'forms' => 'Formulare', + 'form_description' => 'Descriere Formular', + 'form_edit' => 'Editează acest formular', + 'form_has_been' => 'Acest formular a fost', + 'form_title' => 'Titlu formular', + 'from' => 'De la', + 'full_name' => 'Nume și prenume', + 'geolocation_available' => 'Funcția GeoLocation este disponibilă', + 'geometry_color' => 'Culoare', + 'geometry_comments' => 'Comentarii', + 'geometry_label' => 'Etichetă', + 'geometry_strokewidth' => 'Lățimea conturului', + 'go' => 'Du-te', + 'hashtag' => 'Hashtag', + 'has_been' => 'A fost', + 'help' => 'Cum să ajuți', + 'hidden' => 'Ascuns', + 'hide' => 'Ascunde', + 'hide_this_message' => 'Ascunde acest mesaj', + 'home' => 'Acasă', + 'how_to_report' => 'Cum să semnalezi', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Utilizat pentru a vă identifica pe site pentru alți utilizatori.', + 'image' => 'Imagine', + 'images' => 'Imagini', + 'image_icon' => 'Imagine/Iconiță', + 'inactive' => 'Inactiv', + 'inbox' => 'Inbox', + 'incident' => 'Incident', + 'incidents_nearby' => 'Incidente în apropiere', + 'incident_location' => 'Locul incidentului', + 'include' => 'Include', + 'include_categories' => 'Include Categoriile', + 'include_custom_fields' => 'Include câmpuri personalizate', + 'include_description' => 'Include Descrierea', + 'include_detail' => 'Include cat mai multe detalii posibile', + 'include_latitude' => 'Include Latitudinea', + 'include_location_information' => 'Include informații despre loc', + 'include_longitude' => 'Include Longitudinea', + 'include_personal_info' => 'Include Informații Personale', + 'incoming_media' => 'Materiale Media pe punctul de a sosi', + 'information_evaluation' => 'Evaluarea Informației', + 'input_location' => 'Precizează cu exactitate locul tău', + 'insufficient_role' => 'Contul dvs. nu are permisiunile corespunzătoare pentru a vă conecta. Vă rugăm să contactați administratorul.', + 'in_response_to' => 'Ca răspuns la', + 'ip_address' => 'Adresa IP', + 'is_this_your_profile' => 'Este acesta profilul tau?', + 'item' => 'element', + 'items' => 'elemente', + 'item_details' => 'detalii_element', + 'item_title' => 'Titlul elementului', + 'key' => 'Cheie', + 'keywords' => 'Cuvinte cheie', + 'kml_kmz_file' => 'Fișier KMZ/KML', + 'kml_kmz_upload' => 'Încarcă fișierul KMZ/KML', + 'kml_url' => 'URL-ul KML', + 'laconica' => 'Concis', + 'language' => 'Limbă', + 'last' => 'Ultimul', + 'last_month' => 'Luna trecută', + 'last_name' => 'Nume de familie', + 'last_year' => 'Anul trecut', + 'latitude' => 'Latitudine', + 'layers' => 'Layere', + 'layers_filter' => 'Alte layere', + 'layer_has_been' => 'Layerul a fost', + 'layer_name' => 'Numele layerului', + 'layer_url' => 'URLul layerului', + 'leave_a_comment' => 'Lasă un comentariu', + 'less_information' => 'Mai puține informații', + 'level' => 'Nivel', + 'level_has_been' => 'Acest nivel a fost', + 'level_name' => 'Numele nivelului', + 'limited' => 'Limitat', + 'link' => 'Link', + 'list' => 'Listă', + 'loading_reports' => 'Încărcare Semnalări', + 'location' => 'Loc', + 'locations' => 'Locuri', + 'location_example' => 'Oraș, Județ și/sau Sector', + 'login' => 'Autentificare', + 'login_account_creation_successful' => 'Cont creat cu succe', + 'login_confirmation_sent' => 'Un email de confirmare a fost trimis către dvs.', + 'login_email_doesnt_exist' => 'Adresa de email nu există. Vă rugăm să încercați o altă adresă sau să creați un nou cont.', + 'login_select_openid' => 'Vă rugăm să faceți click pe providerul de cont', + 'login_with' => 'Autentifică-te cu', + 'login_userpass' => 'email și parola', + 'login_openid' => 'OpenID', + 'login_signup' => 'Autentificare', + 'login_signup_click' => 'Crează un cont', + 'login_signup_confirmation_message' => 'Vă mulțumim că v-ați înregistrat la %1$s. Pentru a confirma adresa de email, vă rugăm accesați următorul URL: %2$s', + 'login_signup_confirmation_subject' => 'Confirmarea înregistrării', + 'login_signup_text' => 'Crează un cont acum pentru a profita de mai multe funcționalități ale site-ul.', + 'longitude' => 'Longitudine', + 'map' => 'Harta', + 'mark_read' => 'Machează ca citite', + 'mark_unread' => 'Machează ca necitite', + 'maximum_filesize' => 'Dimensiunea maximă a fișierului', + 'media' => 'Materiale media', + 'media_filter' => 'Filtru materiale media', + 'members' => 'Membrii', + 'manage_your_account' => 'Gestionați contul dvs.', + 'message' => 'Mesaj', + 'messages' => 'Mesaje', + 'message_details' => 'Detalii mesaje', + 'message_non_numeric_source' => 'Mesaje de la o sursă non-numerică:', + 'mobile' => 'Mobil', + 'modify' => 'Modifică', + 'modify_date' => 'Modifică data', + 'month' => 'luna', + 'more' => 'Mai mult', + 'more_information' => 'Mai multe informații', + 'multi_country_instance' => 'Are această implementare de Ushahidi deschidere în mai multe țări', + 'must_confirm_email_address' => 'Trebuie să confirmați adresa dvs. de email pentru a accesa această implementare. Dacă ați pierdut emailul de confirmare, puteți cere un altul mai jos.', + 'name' => 'Nume', + 'nearby_report' => 'Semnalări prin apropiere', + 'new' => 'Nou', + 'news' => 'Știri', + 'news_feeds' => 'Feeduri Știri', + 'news_source' => 'Sursă Știri', + 'new_category' => 'Categorie nouă', + 'new_password' => 'Parolă nouă', + 'new_report' => 'Semnalare nouă', + 'next' => 'Următoarea', + 'no' => 'Nu', + 'no_checkins' => 'Nu sunt checkinuri de afișat.', + 'no_data' => 'Nu există date', + 'none' => 'nimic', + 'notices' => 'Notificări', + 'not_approved' => 'Neaprobate', + 'not_approved_singular' => 'Neaprobate', + 'not_selected' => '---Neselectate---', + 'not_spam' => 'nu e spam', + 'not_specified' => 'Nespecificat', + 'no_reports' => 'Nu există semnalări', + 'no_results' => 'Nu există rezultate', + 'off' => 'Dezactivat', + 'official_news' => 'Fluxul & de știri oficial', + 'on' => 'Activat', + 'option' => 'Opțiune', + 'optional' => 'Opțional', + 'options' => 'Opțiuni', + 'organization' => 'Organizația', + 'organizations' => 'Organizații', + 'organization_description' => 'Descrierea organizației', + 'organization_email' => 'Adresa de email a organizației', + 'organization_has_been' => 'Organizația a fost', + 'organization_name' => 'Numele organizației', + 'organization_phone_1' => 'Telefonul Organizației 1', + 'organization_phone_2' => 'Telefonul Organizației 2', + 'organization_website' => 'Site-ul Organizației', + 'original' => 'Inițial', + 'original_description' => 'Descrierea inițială', + 'original_title' => 'Titlul inițial', + 'other_ushahidi_instances' => 'Alte implementări', + 'outbox' => 'Trimise', + 'outgoing' => 'În curs de trimitere', + 'page' => 'Pagina', + 'pages' => 'Pagini', + 'page_description' => 'Descrierea paginii', + 'page_has_been' => 'Pagina a fost', + 'page_tab_name' => 'Nume pentru tab-ul paginii', + 'page_title' => 'Titlul paginii', + 'parent_category' => 'Categoria părinte', + 'password' => 'Parola', + 'password_again' => 'Verifică parola', + 'password_changed_successfully' => 'Parola a fost schimbată cu succes! Autentifică-te mai jos.', + 'password_forgot' => 'Ai uitat parola?', + 'password_reset_confirm' => 'Verifică-ți emailul pentru noua parolă.', + 'password_save' => 'Ramâneți autentificat pe computerul acesta?', + 'past_month' => 'Luna trecută', + 'past_year' => 'Anul trecut', + 'pending' => 'În așteptare', + 'per' => 'per', + 'personal_information' => 'Informații personale Opțional.', + 'phone' => 'Telefon', + 'photos' => 'Poze', + 'pictures' => 'Imagini', + 'pictures_and_videos' => 'Imagini și Video', + 'pinpoint_location' => '* Căutați locația dvs. tastând numele locației SAU coordonatele de latitudine, longitudine (format: 38.19, 85.61) SAU dați click pe hartă pentru a indica locul dorit.', + 'play' => 'Pornește', + 'please_note' => 'Rețineți', + 'plugins' => 'Plugin-uri', + 'plugin_url' => 'Site Plugin-uri', + 'public_profile' => 'Profil public', + 'public_profile_url' => 'URL profil public', + 'preview' => 'Previzualizează', + 'preview_item' => 'Previzualizare element', + 'preview_message' => 'Previzualizare mesaj', + 'previous' => 'Înapoi', + 'private' => 'Privat', + 'profile_color' => 'Culoare profil', + 'profile_saved' => 'Modificările făcute la profil au fost salvate', + 'quick_stats' => 'Statistici Rapide', + 'rating' => 'Rating', + 'read' => 'Citește', + 'receive' => 'Primește', + 'receive_from' => 'Primește de la', + 'receive_notifications' => 'Primește notificări', + 'recent_reports' => 'Semnalări recente', + 'refresh_news_feeds' => 'Updatează fluxul de știri', + 'registered_email' => 'Email-ul înregistrat ', + 'remove' => 'Șterge', + 'reply' => 'Răspunde', + 'report' => 'Semnalează', + 'reports_listed' => 'Semnalări (de pe harta, listate cronologic)\'', + 'reporter' => 'Reporter', + 'reporters' => 'Reporteri', + 'reporter_date' => 'Reporter de date', + 'reporter_email' => 'Email Reporter', + 'reporter_first_name' => 'Prenume Reporter', + 'reporter_has_been' => 'Reporterul a fost', + 'reporter_ip' => 'Adresa IP a reporterului', + 'reporter_last_name' => 'Numele Reporterului', + 'reporter_level' => 'Nivelul Reporterului', + 'reporter_levels' => 'Nivelurile Reporterului', + 'reporter_phone' => 'Telefonul Reporterului', + 'reports' => 'Semnalări', + 'reports_btn_browse' => 'Navighează', + 'reports_btn_submit' => 'Trimite', + 'reports_by_this_user' => 'Semnalari ale acestui utilizatorului', + 'reports_categories' => 'Categorii', + 'reports_count' => '%d Semnalări', + 'reports_date' => 'Data', + 'reports_description' => 'Descrierea', + 'reports_download_csv' => 'Semnalările vor fi downloadate în format CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Funcționalități', + 'reports_find_location' => 'Caută un loc în preajma ta', + 'reports_first' => 'Prenume', + 'reports_last' => 'Nume', + 'reports_location_name' => 'Detaliază locul', + 'reports_news' => 'Linkul știrii', + 'reports_optional' => 'Informații opționale', + 'reports_photos' => 'Uploadează poze', + 'reports_return' => 'Întoarce-te la pagina de semnalări', + 'reports_select_city' => 'Selectează un oraș', + 'reports_submitted' => 'Semnalarea trimisă de tine va fi analizată de echipa noastră. Vom răspunde în cel mai scurt timp dacă este necesar.', + 'reports_submit_new' => 'Trimite o nouă semnalare', + 'reports_time' => 'Ora', + 'reports_timeline' => 'Cronologic semnalărilor', + 'reports_title' => 'Titlul semnalării', + 'reports_video' => 'Link Video', + 'report_an_incident' => 'Semnalează un incident', + 'report_details' => 'Detalii Semnalare', + 'report_option_1' => 'Trimițând un mesaj la', + 'report_option_2' => 'Trimițând un email la', + 'report_option_3' => 'Trimițând un tweet cu hashtag-ul', + 'report_option_4' => 'Completând formularul', + 'report_option_external_apps' => 'Utilizând o aplicație', + 'report_saved' => 'Semnalarea ta a fost salvată', + 'report_title' => 'Titlul semnalării', + 'request_information' => 'Cere detalii', + 'request_location' => 'Solicită locul', + 'required' => 'Necesar', + 'requirements' => 'Cerințe', + 'resend_confirm_email' => 'Retrimite email de confirmare', + 'reset' => 'Resetează', + 'reset_all_filters' => 'Resetează toate filtrele', + 'reset_password' => 'Resetează parola', + 'retrieve_city_names' => 'Preia nume de orașe din țara selectată', + 'riverid_information' => 'Conturi gestionate de serviciul %s.', + 'riverid_exists_login' => 'Aveți deja un cont administrat de CrowdmapID! Încercați să folosiți e-mail-ul și parola CrowdmapID pentru autentificare.', + 'role' => 'Rol', + 'rss' => 'RSS', + 'save' => 'Salvează', + 'saved' => 'Salvat', + 'save_add_new' => 'Salvează & Adaugă unul nou', + 'save_close' => 'Salvează & Închide', + 'save_report' => 'Salvează semnalarea', + 'schedule' => 'Planifică', + 'scheduler' => 'Planificare', + 'scheduler_day' => 'Zi', + 'scheduler_hour' => 'Ora', + 'scheduler_log' => 'Log Planificare', + 'scheduler_minute' => 'Minut', + 'scheduler_weekday' => 'Ziua saptămânii', + 'search' => 'Caută', + 'search_results' => 'Caută', + 'security_code' => 'Cod de securitate', + 'select_all' => 'Selectează tot', + 'select_field_type' => 'Selectează tipul de câmp', + 'select_form_type' => 'Selectează tipul de formular', + 'select_in_map' => 'Selectează pe harta', + 'select_multiple' => 'Selectează câte opțiuni ai nevoie', + 'select_one' => 'Vă rugăm să verificați că ați selectat un element', + 'select_theme' => 'Selectează tema', + 'send' => 'Trimite', + 'send_confirmation' => 'Trimite confirmare', + 'sending_to' => 'Trimite către', + 'sent' => 'Trimis', + 'sent_by' => 'Trimis de către', + 'server_address' => 'Adresă server', + 'server_type' => 'Tip server', + 'service' => 'Serviciu', + 'service_username' => 'Username Serviciu', + 'service_user_id' => 'User Id Seviciu', + 'share' => 'Share', + 'shared_data' => 'Data share', + 'share_has_been' => 'Share-uirea a fost', + 'sharing' => 'Share-uire', + 'shorter_map' => 'Harta scurtată', + 'show' => 'Arată', + 'show_all' => 'Arată tot', + 'show_messages' => 'Arată mesajele', + 'showing_reports_from' => 'Arată rapoartele de la %1$s la %2$s', + 'site' => 'Website', + 'site_email_address' => 'adresa email site', + 'site_url' => 'URL site', + 'smaller_map' => 'Harta micșorată', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Ne pare rău, nu aveți nici o insignă.', + 'source' => 'Sursa', + 'source_name' => 'Numele sursei', + 'sort' => 'Sortează', + 'sort_by' => 'Sortează în funcție de', + 'source_url' => 'URL sursă', + 'spam' => 'Spam', + 'ssl_support' => 'Suport SSL?', + 'start_point' => 'De la', + 'step' => 'Pas', + 'submit' => 'Trimite o semnalare', + 'submitted_by' => 'Trimis de %1$s prin %2$s', + 'submit_sms' => 'Trimis prin SMS', + 'submit_sms1' => 'Trimite SMS-ul către', + 'submit_sms2' => 'pe telefonul tău', + 'success' => 'Succes!', + 'successfuly_imported' => 'Importul a fost făcut cu succes', + 'surname' => 'Nume de familie', + 'survey' => 'Sondaj', + 'system' => 'Sistem', + 'taller_map' => 'Harta înălțată', + 'tcp_port' => 'Port TCP', + 'themes' => 'Teme', + 'theme_default' => 'Tema Ushahidi de bază', + 'theme_settings' => 'Setari tema', + 'this' => 'Acest', + 'this_day' => 'Azi', + 'this_month' => 'Luna aceasta', + 'this_week' => 'Săptămâna aceasta', + 'this_year' => 'Anul acesta', + 'this_is_your_profile' => 'Acesta este profilul dvs.', + 'time' => 'Ora', + 'title' => 'Titlu', + 'to' => 'către', + 'today' => 'Astăzi', + 'today_at' => 'Astăzi la', + 'token' => 'Semn', + 'total_reports' => 'Total Semnalări', + 'translated' => 'Tradus', + 'translated_description' => 'Descrierea tradusă', + 'translated_title' => 'Titlul tradus', + 'translate_to' => 'Trandu în', + 'translation' => 'Traducere', + 'translation_saved' => 'Traducerea a fost salvată', + 'trusted' => 'De încredere', + 'type' => 'Tip', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Emailul nu poate fi trimis.', + 'uncategorized_reports' => 'Semnalări fără caregorie', + 'unread' => 'Necitite', + 'unverified' => 'Neverificate', + 'update_feeds' => 'Modifica feeds', + 'upload' => 'Încarcă', + 'upload_guide' => 'Vizualizează ghidurile noastre pentru incărcarea de rapoarte', + 'upload_docs_1' => 'Ghid XML Upload', + 'upload_docs_2' => 'Ghid CSV Upload', + 'upload_file' => 'Fișier de încărcat', + 'upload_reports' => 'Încarcă semnalări', + 'upload_reports_custom_forms' => 'Coloanele personalizate ale câmpului trebuie să aibă anexată form_id lor ,de exemplu câmpul personalizat de Test, pe formularul implicit, al cărui id este 1, va fi Test-1. În timpul importului câmpurilor personalizate ale formularului, asigurați-vă că', + 'upload_reports_detail_1' => 'Cu ajutorul formularului de mai jos puteți importa incidente în motorul Ushahidi.', + 'upload_reports_detail_2' => 'Rapoartele trebuiesc încărcate în format CSV sau XML.', + 'upload_reports_detail_3' => 'Atunci când ID-ul incidentului există deja în baza de date, înregistrarea din fișierul CSV/XML va fi ignorată.', + 'upload_reports_detail_4' => 'Trebuie să conțina cel puțin titlul unei semnalări și data acesteia', + 'upload_reports_detail_4b' => 'Dacă coloanele de latitudine și longitudine nu sunt furnizate, locația va fi stabilită utilizând Google Geocoder.', + 'upload_reports_detail_4c' => 'Dacă se importă informații adiționale de ex. informații personale și/sau câmpuri din formulare personalizate', + 'upload_reports_detail_4d' => 'Cel puțin unul din câmpurile ce conțin informații personale (nume, prenume, email) TREBUIE să existe. Înregistrările goale nu vor fi imporate.', + 'upload_reports_detail_4e' => 'Intrările dvs. pentru câmpuri derulante, butoane radio și căsuțe corespund opțiunilor prevăzute pentru câmpul personalizat pe instanța dvs', + 'upload_reports_detail_4f' => 'Opțiunile Checkbox sunt separate printr-o virgulă, de exemplu, în cazul în care alegerea dvs pentru fructe este de mere, mango și struguri, intrarea pentru acest lucru ar fi "mere, mango, struguri"', + 'upload_reports_detail_4g' => 'Valorile pentru câmpul dată au următorul format: ll/zz/aaaa de exemplu, 03 octombrie 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Un exemplu de semnalare în format CSV', + 'upload_reports_detail_6' => '#,TITLUL incidentului,DATA INCIDENTULUI,LOC, DESCRIERE, CATEGORIE, APROBAT, VERIFICAT,LATITUDINE;LONGITUDINE
"1", "Moarte suspectă în Nairobi", "2009-05-15 01:06:00", "Nairobi", "Trei cazuri au fost confirmate în C. del Uruguay","DECESE, CIVILI, ",DA,DA,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Încărcare realizată cu succes', + 'upload_video' => 'Încarcă Video', + 'url' => 'URL', + 'user' => 'Utilizator', + 'username' => 'Nume utilizator', + 'ushahidi_admin' => 'Administrator Ushahidi', + 'verification' => 'Verificare', + 'verified' => 'Verificat', + 'verified_reports' => 'Semnalare verificată', + 'verify' => 'Verifică', + 'verify_this_report' => 'Verifică această semnalare', + 'version' => 'Versiune', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Vezi', + 'views' => 'Vizualizări', + 'view_all' => 'Vezi tot', + 'view_all_feeds' => 'Vezi toate feedurile', + 'view_all_reports' => 'Vezi toate semnalările', + 'view_items' => 'Vezi elemente', + 'view_more' => 'Detalii', + 'view_public_profile' => 'Vezi profilul public', + 'view_report' => 'Vezi semnalare', + 'view_reports' => 'Vezi semnalări', + 'view_video' => 'Vizualizează video', + 'visible' => 'Vizibil', + 'waiting_approval' => 'Așteaptă aprobare', + 'waiting_verification' => 'Așteaptă verificare', + 'wider_map' => 'Harta lărgită', + 'web_form' => 'Formular Web', + 'web' => 'Web', + 'weight' => 'Greutate', + 'yes' => 'Da', + 'yesterday' => 'Ieri', + 'your_dashboard' => 'Bordul tău', + 'your_file' => 'Fișerul tău', + 'zoom_in' => 'Zoom In', + 'zoom_out' => 'Zoom Out', +); diff --git a/application/i18n/ro_RO/upgrade.php b/application/i18n/ro_RO/upgrade.php new file mode 100755 index 0000000000..dc9dbfe430 --- /dev/null +++ b/application/i18n/ro_RO/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Datele introduse sunt invalide. Poate fi fie 0 pentru Nu, fie 1 pentru Da.', + ) , + 'upgrade_automatic' => 'Upgrade automat', + 'upgrade_available' => 'Actualizări disponibile', + 'upgrade_continue_btn_text' => 'Continuă', + 'upgrade_db_btn_text' => 'Upgrade', + 'upgrade_db_text_1' => 'Deci, voi face upgrade la baza de date de la versiunea', + 'upgrade_db_text_2' => 'la ultima versiune a bazei de date', + 'upgrade_db_text_3' => 'Faceți click pe butonul "Upgrade" și relaxațivă cât timp se efectuează magia.', + 'upgrade_db_text_4' => 'Ohh, de asemenea, dacă vrei să faci backup la baza de date, bifează căsuța de mai jos și voi face asta pentru tine într-o secundă.', + 'upgrade_db_text_5' => 'Faceți un Backup la baza de date înainte de upgrade? (Foarte recomandat)', + 'upgrade_db_title' => 'Upgrade la baza de date Ushahidi', + 'upgrade_db_info' => 'Ushahidi a fost actualizat! Înainte să continui, trebuie să actualizezi baza de date cu cea mai nouă versiune (%s).', + 'upgrade_db_up_to_date' => 'Versiunea bazei de date este cea mai recentă.', + 'upgrade_failed' => 'Upgrade esuat la un anumit moment.', + 'upgrade_manual' => 'Upgrade manual', + 'upgrade_status' => 'Statul Ushahidi upgrade', + 'upgrade_text_1' => 'Instrucțiunile de mai jos detaliază cum se upgradează manual implementarea ta Usahahidi.', + 'upgrade_text_2' => '
Descarcă
', + 'upgrade_text_3' => '
- Descarcă cel mai recent build Ushahidi de la', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- În cazul în care ceva este greșit, se recomandă un backup total al implementării Ushahidi.
Copiază fișierele
- Extrage fișierele zip descărcate
- În funcție de sistemul de operare al serverului de web, utilizați tool-urile/mod-ul preferat (e.g. Telnet, FTP, SSH) de login la webserver și înlocuiți conținutul tuturor directoarelor cu cele mai noi din build-ul recent.
Upgrade baza de date
- Determină în primul rând versiunea schemei bazei de date prin aflarea valorii db_version din tabelul de setări sau uită-te la informațiile de upgrade Ushahidi din partea de sus a acestei pagini.
- Dacă ești la versiunea 25, trebuie să upgradezi de la 25-26, 26-27, 27-28 și așa mai departe până la ultimul fișier SQL din directorul /sql .
- Folosind clientul bazei de date, upgradeaza baza de date prin executarea fișierului de upgrade x.sql adecvat.
', + 'upgrade_tables' => 'Pasul 3: Uită-te în directorul sql. Execută manual fișierul upgrade-.sql pornind de la versiunea curentă a bazei de date instalate până la utimul fișer sql de upgrade.', + 'upgrade_text_5' => 'Pasul 4: Click pe butonul "Continuă" pentru a upgrada tabelele necesare.', + 'upgrade_text_6' => 'Pentru upgrade automat, apasă pe butonul de mai jos.', + 'upgrade_title_text' => 'În prezent, utilizați Ushahidi v%1$s cu versiunea bazei de date %2$d ce rulează pe %3$s', + 'upgrading' => 'Upgradaing', + 'upgrade_ftp_text' => 'Pentru a continua cu un upgrade simplu, următoarele informații sunt necesare serverului FTP pe care website-ul tău este găzduit.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Exemplu: "localhost"', + 'upgrade_ftp_password' => 'Parola FTP:', + 'upgrade_ftp_username' => 'Nume utilizator FTP:', + 'upgrade_status_info' => 'Aveți ultima versiune de Ushahidi', + 'upgrade_status_info_2' => 'Nu este necesar să faci upgrade', + 'upgrade_db_version' => 'Versiunea bazei de date: %d', + 'upgrade_warning_software_version' => 'Atenție: Versiunea software din version.php și din baza de date nu corespund.', + 'upgrade_warning_db_version' => 'Atenție: Versiunea bazei de date din version.php și din baza de date nu corespund.', + 'upgrade_database' => 'Baza de date:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Descarcă ultima versiune de ushahidi...', + 'log_file' => 'Fișierul jurnal', + 'successfully_downloaded' => 'Descărcat cu succes. Unpacking...', + 'failed_downloading' => 'Descărcarea a eșuat.', + 'successfully_unpacked' => 'Dezarhivat cu succez. Copiază fișierele...', + 'failed_unpacking' => 'Dezarhivarea a eșuat.', + 'successfully_copied' => 'Copiat cu succes. Upgradeaza baza de date...', + 'failed_copying' => 'Copierea fișierelor a eșuat.', + 'backup_success' => 'Backup bază de date și upgrade efectuat cu succes.', + 'backup_failed' => 'Realizarea unui back-up al bazei de date a eșuat.', + 'dbupgrade_success' => 'Upgrade bază de date efectuat cu succes.', + 'deleting_files' => 'Fișierele descărcate se șterg...', + 'upgrade_success' => 'UPGRADE EFECTUAT CU SUCCES. Vizualizează
Fișerul Jurnal', +); diff --git a/application/i18n/ru_RU/alerts.php b/application/i18n/ru_RU/alerts.php new file mode 100755 index 0000000000..bec154ee58 --- /dev/null +++ b/application/i18n/ru_RU/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'E-mail адрес введен неверно.', + 'email_check' => 'Этот e-mail уже подписан для оповещений по данной локации', + 'length' => 'Длина е-mail адреса должна быть от 4 до 64 символов.', + 'required' => 'Требуется адрес e-mail, или уберите галочку.', + ) , + 'alert_country' => array( + 'single_country' => 'В данный экземпляр входит лишь одна страна. Пожалуйста, убедитесь, что месторасположение сообщения находится в стране %s ', + ) , + 'alert_lat' => array( + 'between' => 'Вы неправильно выбрали местоположение на карте.', + 'required' => 'Вы не выбрали местоположение на карте.', + ) , + 'alert_lon' => array( + 'between' => 'Вы неправильно выбрали местоположение на карте.', + 'required' => 'Вы неправильно выбрали местоположение на карте.', + ) , + 'alert_mobile' => array( + 'length' => 'Похоже, мобильный номер введен неправильно, введите правильный номер.', + 'mobile_check' => 'Этот номер уже подписан для оповещений по данной локации', + 'numeric' => 'Номер телефона введен неправильно, введите только цифры с кодом страны.', + 'one_required' => 'Введите телефонный номер или адрес e-mail.', + 'required' => 'Введите номер телефона, или уберите галочку.', + ) , + 'alert_radius' => array( + 'in_array' => 'Вы не установили радиус событий на карте.', + 'required' => 'Вы не установили радиус событий на карте.', + ) , + 'alert_recipient' => array( + 'required' => 'Вы не выбрали получателей для оповещений.', + ) , + 'alerts_subscribed' => 'Вы подписаны на оповещения о следующих категориях', + 'code_already_verified' => 'Этот код уже был использован!', + 'code_not_found' => 'Код подтверждения не был найден. Введите правильный URL.', + 'code_verified' => 'Ваш код подтвержден. Теперь вы будете получать оповещения о событиях.', + 'confirm_request' => 'Чтобы подтвердить подписку на оповещения, перейдите по ссылке: ', + 'create_more_alerts' => 'Назад, для создания подписок.', + 'email_alert_request_created' => 'Запрос на оповещения по e-mail был создан, через некоторое время вы получите письмо с кодом подтверждения на адрес ', + 'email_code' => 'Введите код подтверждения который был отправлен вам на адрес:', + 'email_error_head' => 'Настройка оповещений по email НЕ была сохранена!', + 'email_ok_head' => 'Настройка оповещений по электропочте была сохранена.', + 'error' => 'Не удалось обработать код подтверждения!', + 'mobile_alert_request_created' => 'Запрос на подписку по SMS был создан, через некоторое время вы получите SMS с кодом подтверждения', + 'mobile_code' => 'Введите код подтверждения который был отправлен на SMS: ', + 'mobile_error_head' => 'Не удалось сохранить настройки оповещения по SMS!', + 'mobile_ok_head' => 'Настройка оповещений по SMS была сохранена!', + 'settings_error' => 'Карта настроена неверно для того, чтобы получать оповещения', + 'unsubscribe' => 'Вы получили это письмо т. к. подписались на оповещения Ушахиди. Если вы хотите отписаться от них, зайдите: ', + 'unsubscribed' => 'Вы больше не будете получать оповещения от:', + 'unsubscribe_failed' => 'Мы не смогли отписать вас от оповещений. Пожалуйста, проверьте адрес.', + 'verification_email_subject' => 'Подтверждение на подписку оповещений Ushahidi', + 'verify_code' => 'Вы не сможете получать оповещения по данной локации, пока не введете код подтверждения.', +); diff --git a/application/i18n/ru_RU/auth.php b/application/i18n/ru_RU/auth.php new file mode 100644 index 0000000000..682495da99 --- /dev/null +++ b/application/i18n/ru_RU/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'E-mail адрес введен неверно', + 'exists' => 'Данный e-mail уже используется', + 'length' => 'Длина e-mail адреса должна быть от 4 до 64 символов.', + 'required' => 'Введите e-mail', + ) , + 'name' => array( + 'length' => 'Имя должно быть от 3 до 100 символов', + 'required' => 'Поле Имя обязательно для заполнения', + 'standard_text' => 'Поле Имя содержит недопустимые символы.', + ) , + 'current_password' => array( + 'length' => 'Поле пароль должно содержать не менее 8 символов', + 'login error' => 'Проверьте правильность ввода email и пароля', + 'matches' => 'Пароль и подтверждение не совпадают', + 'required' => 'Поле для ввода пароля обязательно для заполнения', + 'alpha_dash' => 'Поле пароль может содержать в только буквы, символы # и @, цифры, символы подчеркивание и тире.', + 'incorrect' => 'Пароль введен неверно. Попробуйте ещё раз', + ) , + 'new_password' => array( + 'length' => 'В поле пароля должно быть не менее 8 символов.', + 'login error' => 'Убедитесь, что Вы ввели правильный адрес электронной почты и пароль .', + 'matches' => 'Введите одинаковые пароли в оба поля паролей.', + 'required' => 'Поле для ввода пароля не нужно.', + 'alpha_dash' => 'Поле пароля должно иметь только алфавитные символы, знаки # и @ , цифры, символы подчеркивания и тире', + ) , + 'password' => array( + 'default' => 'Возникла ошибка при попытке вашего входа в систему.', + 'length' => 'Длина Пароля должна быть от 5 до 16 символов', + 'login error' => 'Пароль введен неверно', + 'matches' => 'Введите идентичный пароль в двух соответствующих полях', + 'required' => 'Введите пароль', + 'riverid server down' => 'Сервер аутентификации не работает. Повторите попытку позже.', + 'riverid' => '%s', + 'alpha_dash' => 'Поле пароль может содержать в только буквы, символы # и @, цифры, символы подчеркивание и тире.', + ) , + 'password_confirm' => array( + 'matches' => 'Введенные пароли должны совпадать', + ) , + 'resetemail' => array( + 'email' => 'Введите правильный e-mail адрес', + 'invalid' => 'Ваш e-mail не зарегистрирован в нашей системе', + 'required' => 'Введите e-mail', + ) , + 'role' => array( + 'superadmin_modify' => 'Только СуперАдмин может сменить СуперАдмина или обновить пользователя до администратора.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Недопустимый формат роли.', + 'length' => 'Поле "роль" должно быть не менее 5 и не более 30 символов.', + 'required' => 'Вы должны задать хотя бы одну роль', + 'values' => 'Выберите АДМИНИСТРАТОР или ПОЛЬЗОВАТЕЛЬ', + ) , + 'token' => array( + 'invalid' => 'Маркер "забыт пароль" неверен', + 'required' => 'Нужен маркер "забыт пароль"', + ) , + 'username' => array( + 'admin' => 'Роль пользователя Администратор не может быть изменена', + 'alpha_numeric' => 'В поле URL общедоступный профиль должен содержать только цифры и буквы.', + 'exists' => 'Имя пользователя уже используется', + 'length' => 'Длина Имени пользователя должна быть от 2 до 16 символов', + 'login error' => 'Введите правильное имя пользователя', + 'required' => 'Введите имя пользователя.', + 'superadmin' => 'Роль пользователя Суперадминистратор не может быть изменена', + 'csrf' => 'Возможны CSRF атаки. Вы действительно собираетесь создать/редактировать пользователя?', + ) , +); diff --git a/application/i18n/ru_RU/bug.php b/application/i18n/ru_RU/bug.php new file mode 100755 index 0000000000..335166bd5c --- /dev/null +++ b/application/i18n/ru_RU/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Введите правильный защитный код', + 'required' => 'Введите защитный код', + ) , + 'email' => array( + 'email' => 'E-mail адрес введен неправильно.', + 'length' => 'Длина e-mail адреса должна быть от 4 до 64 символов.', + 'required' => 'Необходим email, или уберите галочку.', + ) , + 'error' => array( + 'required' => 'Введите описание ошибки', + ) , + 'subject' => array( + 'length' => 'Длина темы должна быть не менее 3 символов', + 'required' => 'Заполните поле Тема', + ) , + 'yourname' => array( + 'length' => 'Имя не может быть менее 3 символов', + 'required' => 'Введите ваше имя', + ) , +); diff --git a/application/i18n/ru_RU/category.php b/application/i18n/ru_RU/category.php new file mode 100755 index 0000000000..4860ef9cdf --- /dev/null +++ b/application/i18n/ru_RU/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Поле цвет должно содержать 6 знаков (например 00FF00).', + 'required' => 'Задайте цвет категории.', + ) , + 'category_description' => array( + 'required' => 'Введите описание категории.', + ) , + 'category_image' => array( + 'size' => 'Изображение должно быть меньше 50 kВ.', + 'type' => 'Вы действительно загрузили изображение? Поддерживаются форматы JPG / PNG / GIF.', + 'valid' => 'Не могу открыть изображение, файл испорчен.', + ) , + 'category_title' => array( + 'length' => 'Название должно содержать от 3 до 80 символов.', + 'required' => 'Введите название.', + ) , + 'parent_id' => array( + 'already_parent' => 'Вы не можете разбить категорию на подкатегории.', + 'exists' => 'Родительская категория не существует.', + 'numeric' => 'Родительская категория должна быть числом.', + 'parent_trusted' => 'Родительская категория не может быть специальной категорией', + 'required' => 'Родительская категория обязательна.', + 'same' => 'Категория и родительская категория не могут быть одинаковыми.', + 'special' => 'Специальные категории не могут быть разбиты на подкатегории.', + ) , +); diff --git a/application/i18n/ru_RU/comments.php b/application/i18n/ru_RU/comments.php new file mode 100755 index 0000000000..d0eb6acf20 --- /dev/null +++ b/application/i18n/ru_RU/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Пожалуйста, введите правильный защитный код', + 'required' => 'Пожалуйста, введите защитный код', + 'valid' => 'Вы ввели неправильный код безопасности.', + ) , + 'comment_author' => array( + 'length' => 'Имя должно быть не меньше 3 символов.', + 'required' => 'Введите имя.', + ) , + 'comment_description' => array( + 'required' => 'Введите комментарий.', + ) , + 'comment_email' => array( + 'email' => 'Введен неправильный email.', + 'length' => 'Email должен быть от 4 до 64 символов.', + 'required' => 'Введите email или снимите галочку.', + ) , +); diff --git a/application/i18n/ru_RU/contact.php b/application/i18n/ru_RU/contact.php new file mode 100755 index 0000000000..1eacc3f24f --- /dev/null +++ b/application/i18n/ru_RU/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Введите правильный защитный код', + 'valid' => 'Введите правильный защитный код', + 'required' => 'Введите защитный код', + ) , + 'contact_email' => array( + 'email' => 'Введен неправильный email.', + 'length' => 'Email должен содержать от 4 до 64 символов.', + 'required' => 'Введите email или уберите галочку.', + ) , + 'contact_message' => array( + 'required' => 'Введите текст сообщения.', + ) , + 'contact_name' => array( + 'length' => 'Имя должно быть не менее 3 символов.', + 'required' => 'Введите имя.', + ) , + 'contact_subject' => array( + 'length' => 'Тема не должна быть менее 3-х символов.', + 'required' => 'Введите тему.', + ) , + 'email_send' => array( + 'failed' => 'Произошла ошибка при отправке сообщения.', + ) , +); diff --git a/application/i18n/ru_RU/core.php b/application/i18n/ru_RU/core.php new file mode 100755 index 0000000000..eea2f8bbfe --- /dev/null +++ b/application/i18n/ru_RU/core.php @@ -0,0 +1,35 @@ + 'файл конфигураци', + 'controller' => 'контроллер', + 'driver' => 'драйвер', + 'driver_implements' => 'The %s driver for the %s library must implement the %s interface', + 'driver_not_found' => 'The %s driver for the %s library could not be found', + 'errors_disabled' => 'Вы можете перейти на домашнюю страницу или пробовать снова.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Невозможно выполнить запрос', + 'helper' => 'помощник', + 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file', + 'invalid_method' => 'Недопустимый метод %s вызова %s', + 'invalid_property' => 'Свойство %s не существует в классе %s.', + 'library' => 'библиотека', + 'log_dir_unwritable' => 'Каталог журнала не доступен для записи: %s', + 'model' => 'модель', + 'no_controller' => 'Ushahidi не смог определить контроллер для обработки этого запроса: %s', + 'no_default_route' => 'Задайте маршрут по умолчанию в config/routes.php', + 'page_not_found' => 'Запрашиваемая станица %s, не может быть найдена.', + 'report_bug' => 'Сообщить об этой проблеме', + 'resource_not_found' => 'The requested %s, %s, could not be found', + 'stack_trace' => 'Трассировка стека', + 'stats_footer' => 'Загружено за {execution_time} секунд, используя {memory_usage} памяти. Создано Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'There can be only one deployment of Ushahidi per page request', + 'uncaught_exception' => 'Неперехваченные % s: %s в файле %s на линии %s', + 'view' => 'вид', + 'view_set_filename' => 'You must set the the view filename before calling render', +); diff --git a/application/i18n/ru_RU/database.php b/application/i18n/ru_RU/database.php new file mode 100755 index 0000000000..5a2934dfd8 --- /dev/null +++ b/application/i18n/ru_RU/database.php @@ -0,0 +1,10 @@ + 'Ошибка базы данных: %s', + 'table_not_found' => 'Таблица "%s" не найдена. Пожалуйста, убедитесь, что вы используете последнюю версию БД для этой версии Ushahidi', +); diff --git a/application/i18n/ru_RU/datetime.php b/application/i18n/ru_RU/datetime.php new file mode 100755 index 0000000000..aeb3f198b6 --- /dev/null +++ b/application/i18n/ru_RU/datetime.php @@ -0,0 +1,86 @@ + 'до полудня', + 'friday' => array( + 'abbv' => 'Пят', + 'full' => 'Пятница', + ) , + 'monday' => array( + 'abbv' => 'Пон', + 'full' => 'Понедельник', + ) , + 'pm' => 'после полудня', + 'saturday' => array( + 'abbv' => 'Суб', + 'full' => 'Суббота', + ) , + 'sunday' => array( + 'abbv' => 'Вск', + 'full' => 'Воскресенье', + ) , + 'thursday' => array( + 'abbv' => 'Чет', + 'full' => 'Четверг', + ) , + 'tuesday' => array( + 'abbv' => 'Втр', + 'full' => 'Вторник', + ) , + 'wednesday' => array( + 'abbv' => 'Сре', + 'full' => 'Среда', + ) , + 'january' => array( + 'abbv' => 'Янв', + 'full' => 'Январь', + ) , + 'february' => array( + 'abbv' => 'Фев', + 'full' => 'Февраль', + ) , + 'march' => array( + 'abbv' => 'Мар', + 'full' => 'Март', + ) , + 'april' => array( + 'abbv' => 'Апр', + 'full' => 'Апрель', + ) , + 'may' => array( + 'abbv' => 'Май', + 'full' => 'Май', + ) , + 'june' => array( + 'abbv' => 'Июн', + 'full' => 'Июнь', + ) , + 'july' => array( + 'abbv' => 'Июл', + 'full' => 'Июль', + ) , + 'august' => array( + 'abbv' => 'Авг', + 'full' => 'Август', + ) , + 'september' => array( + 'abbv' => 'Сен', + 'full' => 'Сентябрь', + ) , + 'october' => array( + 'abbv' => 'Окт', + 'full' => 'Октябрь', + ) , + 'november' => array( + 'abbv' => 'Ноя', + 'full' => 'Ноябрь', + ) , + 'december' => array( + 'abbv' => 'Дек', + 'full' => 'Декабрь', + ) , +); diff --git a/application/i18n/ru_RU/feeds.php b/application/i18n/ru_RU/feeds.php new file mode 100755 index 0000000000..95ffd882a2 --- /dev/null +++ b/application/i18n/ru_RU/feeds.php @@ -0,0 +1,19 @@ + 'Дата', + 'feed_name' => array( + 'length' => 'Длина названия новостной ленты не может быть менее 3 или более 70 символов.', + 'required' => 'Введите название новостной ленты.', + ) , + 'feed_url' => array( + 'required' => 'Введите URL новостной ленты.', + 'url' => 'Введите правильный адрес. Например, http://www.ushahidi.com', + ) , + 'source' => 'Источник', + 'title' => 'Название', +); diff --git a/application/i18n/ru_RU/footer.php b/application/i18n/ru_RU/footer.php new file mode 100755 index 0000000000..97c1f846df --- /dev/null +++ b/application/i18n/ru_RU/footer.php @@ -0,0 +1,9 @@ + 'php5-curl не установлен', +); diff --git a/application/i18n/ru_RU/form.php b/application/i18n/ru_RU/form.php new file mode 100755 index 0000000000..e3187439e9 --- /dev/null +++ b/application/i18n/ru_RU/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Заданное вами значение по умолчанию для поля недопустимо.', + 'length' => 'Имя поля должно быть не менее 3 и не более 200 символов.', + ) , + 'field_height' => array( + 'between' => 'Введите значение поля от 0 до 50', + ) , + 'field_isdate' => array( + 'between' => 'Вы выбрали неправильное значение поля "Дата"', + 'required' => 'Выберите Да или Нет', + ) , + 'field_name' => array( + 'length' => 'Имя поля должно быть не менее 3 и не более 100 символов.', + 'required' => 'Введите имя поля.', + 'duplicate' => 'Имя поля, которое вы ввели, уже существует в этой форме. Введите другое.', + ) , + 'field_required' => array( + 'between' => 'Вы ввели неправильное значения для обязательного поля', + 'required' => 'Выберите "Да" или "Нет" для обязательного поля', + ) , + 'field_type' => array( + 'numeric' => 'Выберите правильный тип поля.', + 'required' => 'Выберите тип поля.', + ) , + 'field_width' => array( + 'between' => 'Введите значение от 0 до 300 для ширины поля', + ) , + 'form_description' => array( + 'required' => 'Введите описание формы.', + ) , + 'form_id' => array( + 'default' => 'Форма по-умолчанию не может быть удалена.', + 'numeric' => 'Выберите, в какую форму нужно добавить данное поле.', + 'required' => 'Выберите, в какую форму нужно добавить данное поле.', + ) , + 'form_title' => array( + 'length' => 'Длина имени формы не может быть менее 3х и более 100 символов.', + 'required' => 'Введите имя формы.', + 'exists' => 'Форма с этим именем уже существует. Выберите другое имя.', + ) , +); diff --git a/application/i18n/ru_RU/imap.php b/application/i18n/ru_RU/imap.php new file mode 100755 index 0000000000..55c7f87bd2 --- /dev/null +++ b/application/i18n/ru_RU/imap.php @@ -0,0 +1,10 @@ + 'Не удалось открыть поток IMAP', + 'unsupported_service' => 'Услуга не поддерживается', +); diff --git a/application/i18n/ru_RU/installer.php b/application/i18n/ru_RU/installer.php new file mode 100755 index 0000000000..d7ad0cca4c --- /dev/null +++ b/application/i18n/ru_RU/installer.php @@ -0,0 +1,84 @@ + 'Базовый Путь', + 'database' => 'База данных', + 'database_host' => 'Хост базы данных', + 'database_host_description' => 'If you are running Ushahidi on your own computer, this will more than likely be "localhost". If you are running Ushahidi from a web server, you will get your host information from your web hosting provider', + 'database_name' => 'Имя базы данных', + 'database_name_description' => 'Имя базы данных, в которую вы хотите установить Ushahidi', + 'db_information_link' => 'For more information, please check out this article on the wiki that talks about databases in more detail', + 'default_language' => 'Язык по умолчанию (Локализация)', + 'default_language_description' => 'Each deployment of Ushahidi comes with a set of built in language translations. You can also add your own', + 'disable' => 'Отключить', + 'enable' => 'Включить', + 'error_summary' => 'Listed below is a summary of the errors we encountered', + 'files_location_text' => 'The location on your server where you placed your Ushahidi files. We have automatically detected this value, please make sure that it is correct. If the field is empty, do not worry, it means ushahidi is installed at the top level directory', + 'finished' => 'доде́ланный ', + 'general' => 'Общее', + 'google_key' => 'Google Ключ API', + 'google_key_description' => 'Любой человек может получить ключ api. Получите ваш сейчас', + 'go_back' => 'шаг наза́д', + 'index' => array( + 'advanced' => 'Продвинутая установка', + 'advanced_installation_description' => 'Get all the basic settings completed through this 5-step process. This includes server, map, site name and contact details', + 'basic_installation' => 'Простая установка', + 'basic_installation_description' => 'Simple and fast. All you need is your website\'s root directory and your database information. Choose this option if you want to get up and running quickly, and you can always configure everything else later', + 'proceed' => 'Перейти', + 'welcome' => 'Welcome to the Ushahidi server install process. Choose which type of installation you would like to use below', + ) , + 'installation_successful' => 'Установка успешно завершена', + 'mail_server' => 'Почтоый сервер', + 'mail_server_host' => 'Имя хоста почтового сервера', + 'mail_server_host_description' => 'Например, mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Пароль почтового сервера', + 'mail_server_password_description' => 'Пароль, который вы обычно используете для входа на сервер электронной почты', + 'mail_server_port' => 'Порт почтового сервера', + 'mail_server_port_description' => 'Обычные Порты: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Тип почтового сервера', + 'mail_server_type_description' => 'Протокол Доступа Сообщения Интернет (IMAP) или Почтовый Офисный Протокол (POP). Какая разница?', + 'mail_server_username' => 'Имя пользователя Почтового Сервера', + 'mail_server_username_description' => 'If you are using Gmail, Hotmail, or Yahoo Mail, enter a full email address as a username', + 'map' => 'Карта', + 'map_provider' => 'Поставщик карты', + 'map_provider_description' => 'Ushahidi works equally well with any of these four mapping providers: Google, Bing, Yahoo or Open Street Map. Choose the one that has the most detail in your area', + 'other_steps' => 'Другие шаги...', + 'password' => 'Пароль', + 'password_description' => 'Пароль вашей базы данных', + 'previous' => 'Предыдущий', + 'restart_apache' => 'Пожалуйста, перезапустите сервер Apache', + 'select_mail_server_ssl' => 'Включить или отключить SSL', + 'select_mail_server_ssl_description' => 'Some mail servers give you the option of using SSL when making a connection. Using SSL is recommended as it gives you an added level of security', + 'setup_sms' => 'Setup your SMS server', + 'site_email' => 'Адрес электронной почты сайта', + 'site_email_alerts' => 'Email адрес оповещений сайта', + 'site_email_alerts_description' => 'When your site visitors sign up for email alerts, they will recieve emails from this address. This email address does not have to be the same as the Site Email Address', + 'site_email_description' => 'Обширная переписка сайта будет направляться через этот адрес', + 'site_name' => 'Имя Сайта', + 'site_name_description' => 'Имя вашего сайта', + 'site_tagline' => 'Слоган сайта', + 'site_tagline_description' => 'Ваш слоган', + 'summary' => array( + 'text_1' => 'The files and folders listed below need to be writable by your webserver', + 'text_2' => '

Ниже приведены инструкции для изменения прав доступа к файлам:

+ ', + 'text_3' => 'Before you get started, you will need to make sure the following files and folders are writable by your webserver. This involves changing file permissions', + 'text_4' => 'For the installation process, please have the following bits of information on hand', + ) , + 'table_prefix' => 'Префикс таблицы', + 'table_prefix_description' => 'Normally you would not change the table prefix. However, If you want to run multiple Ushahidi installations from a single database you can do that by changing the prefix here', + 'title' => 'Название', + 'to_login' => 'Для входа в систему, перейдите к', + 'upload_data' => 'Загрузить данные отчета', + 'username' => 'Имя пользователя', + 'username_description' => 'Ваше имя пользователя базы данных', + 'use_credentials' => 'и использовать следующие учетные данные', + 'view_site' => 'Просмотреть свой веб-сайт', +); diff --git a/application/i18n/ru_RU/json.php b/application/i18n/ru_RU/json.php new file mode 100644 index 0000000000..15442e6da8 --- /dev/null +++ b/application/i18n/ru_RU/json.php @@ -0,0 +1,7 @@ + array( + 'length' => 'Поле "Цвет" должно состоять из 6 символов (например 00FF00).', + 'required' => 'Введите цвет слоя.', + ) , + 'layer_file' => array( + 'type' => 'Файл повреждён или неверный формат. Принимаются только .KMZ, .KML.', + 'valid' => 'Файл повреждён или неверный формат', + ) , + 'layer_name' => array( + 'length' => 'Длина имени слоя не может быть менее 3-х и более 80 символов.', + 'required' => 'Введите имя слоя.', + ) , + 'layer_url' => array( + 'atleast' => 'Требуется KML/KMZ URL или файл', + 'both' => 'Вы не можете ввести и URL, и файл одновременно', + 'url' => 'Введите действующий URL. Например http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/ru_RU/libraries.php b/application/i18n/ru_RU/libraries.php new file mode 100755 index 0000000000..6c22163c0d --- /dev/null +++ b/application/i18n/ru_RU/libraries.php @@ -0,0 +1,27 @@ + 'Не удалось подключиться к серверу Akismet', + 'akismet_cannot_retrieve' => 'Не удалось получить ответ от сервера Akismet', + 'api_library_not_found' => 'API-библиотека: %s для %s класса не найдена. Пожалуйста, проверьте таблицу маршрутизации API-задач.', + 'askimet_invalid_apikey' => 'Akismet API-ключ введен неверно', + 'clickatell_fopen_error' => 'Метод отправки не поддерживается!
Проверьте, поддерживает ли PHP OpenSSL, и является ли версия PHP выше 5.2', + 'clickatell_message_too_long' => 'Ваше сообщение слишком длинное! (Количество символов=', + 'clickatell_no_destination_address' => 'Укажите адрес (куда)!', + 'clickatell_no_sender_address' => 'Укажите адрес источника (от)!', + 'clickatell_unicode_message_too_long' => 'Ваше сообщение слишком длинное! (Количество символов=', + 'clickatell_unsupported_method' => 'Метод отправки не поддерживается!', + 'invalid_api_library' => 'The API library %s is invalid. All API libraries must be subclasses of %s', + 'upgrade_directory_not_deleted' => 'Папка %s не может быть удалена', + 'upgrade_extracting_error' => 'Ошибка извлечения: %s', + 'upgrade_failed' => 'Не удалось загрузить последнее обновление от Ushahidi. Код ошибки HTTP', + 'upgrade_file_not_copied' => 'Файл %s не удалось скопировать', + 'upgrade_file_not_deleted' => 'Файл %s не удалось удалить', + 'upgrade_title' => 'Скрипт обновления Ushahidi', + 'upgrade_zip_error' => 'Закачанный ushahidi zip файл %s, не может быть записан', + 'riverid_variable_not_available' => '%s не доступно в RiverID классе', +); diff --git a/application/i18n/ru_RU/maintenance.php b/application/i18n/ru_RU/maintenance.php new file mode 100644 index 0000000000..2cdea5c4b7 --- /dev/null +++ b/application/i18n/ru_RU/maintenance.php @@ -0,0 +1,9 @@ + 'Извините, сайт отключён для обслуживания. Пожалуйста, зайдите позже.', +); diff --git a/application/i18n/ru_RU/message.php b/application/i18n/ru_RU/message.php new file mode 100755 index 0000000000..14950ccbdf --- /dev/null +++ b/application/i18n/ru_RU/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Введите правильный защитный код', + 'required' => 'Введите защитный код', + ) , + 'email' => array( + 'email' => 'Ваш e-mail адрес введен неверно.', + 'length' => 'Длина e-mail должна быть от 4 до 64 символов.', + 'required' => 'Нужно ввести e-mail, или уберите галочку.', + ) , + 'message' => array( + 'required' => 'Введите ваш комментарий', + ) , + 'name' => array( + 'length' => 'Длина имени не может быть менее 3 символов.', + 'required' => 'Введите имя.', + ) , + 'phone' => array( + 'length' => 'Номер телефона введен неверно.', + ) , +); diff --git a/application/i18n/ru_RU/mhi.php b/application/i18n/ru_RU/mhi.php new file mode 100644 index 0000000000..2fe49f00ea --- /dev/null +++ b/application/i18n/ru_RU/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Please enter a valid security code.', + 'required' => 'Введите защитный код', + ) , + 'contact_email' => array( + 'email' => 'E-mail введен неверно', + 'required' => 'Пожалуйста, введите правильный e-mail адрес', + ) , + 'contact_message' => array( + 'required' => 'Поле "Сообщение" обязательно для заполнения', + ) , + 'contact_subject' => array( + 'length' => 'Тема письма должна быть минимум 3 знака', + 'required' => 'Тема письма не должна быть пустой', + ) , +); diff --git a/application/i18n/ru_RU/notifications.php b/application/i18n/ru_RU/notifications.php new file mode 100755 index 0000000000..2bb000746f --- /dev/null +++ b/application/i18n/ru_RU/notifications.php @@ -0,0 +1,35 @@ + 'Это сообщение было отправлено с вашего веб-сайта', + 'admin_login_url' => 'Войти как администратор', + 'admin_new_comment' => array( + 'message' => 'Новый комментарий был отправлен на ваш веб-сайт в ответ на:', + 'subject' => 'Новый комментарий', + ) , + 'admin_new_email' => array( + 'message' => 'Новый e-mail был отправлен на ваш веб-сайт.', + 'subject' => 'Новый e-mail', + ) , + 'admin_new_report' => array( + 'message' => 'Новое сообщение было отправлено на ваш веб-сайт.', + 'subject' => 'Новое сообщение', + ) , + 'admin_new_sms' => array( + 'message' => 'Новое SMS было отправлено на ваш веб-сайт.', + 'subject' => 'Новое SMS', + ) , + 'member_new_alert' => array( + 'message' => 'Вы получили новое уведомление', + 'subject' => 'Новое уведомление!', + ) , + 'member_new_message' => array( + 'message' => 'Вам пришло новое личное сообщение', + 'subject' => 'Новое личное сообщение', + 'footer' => 'Для ответа нажмите здесь: ', + ) , +); diff --git a/application/i18n/ru_RU/page.php b/application/i18n/ru_RU/page.php new file mode 100644 index 0000000000..a34700f04e --- /dev/null +++ b/application/i18n/ru_RU/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Пожалуйста введите название страницы.', + 'length' => 'Заголовок страницы должен быть длиной как минимум 3 символа, но не длиннее 150.', + ) , + 'page_tab' => array( + 'required' => 'Пожалуйста введите название закладки страницы. ', + ) , + 'page_description' => array( + 'required' => 'Пожалуйста введите описание страницы.', + ) , +); diff --git a/application/i18n/ru_RU/permissions.php b/application/i18n/ru_RU/permissions.php new file mode 100644 index 0000000000..e4d944dc90 --- /dev/null +++ b/application/i18n/ru_RU/permissions.php @@ -0,0 +1,27 @@ + 'Просмотреть отчёты', + 'reports_edit' => 'Создать/Редактировать/Удалить отчёты', + 'reports_approve' => 'Одобрить отчёты', + 'reports_verify' => 'Подтвердить отчёты', + 'reports_comments' => 'Управление комментариями', + 'reports_download' => 'Скачать отчёты', + 'reports_upload' => 'Загрузить отчёты', + 'messages' => 'Управление сообщениями', + 'messages_reporters' => 'Управление сообщениями Репортеров', + 'stats' => 'Просмотреть статистику', + 'settings' => 'Управление настройками', + 'manage' => 'Панель управления', + 'users' => 'Управление пользователями', + 'manage_roles' => 'Управление ролями', + 'checkin' => 'Можно регистрировать', + 'checkin_admin' => 'Управление регистрациями', + 'admin_ui' => 'Доступ к интефейсу администратора', + 'member_ui' => 'Доступ к интефейсу участника', + 'delete_all_reports' => 'Удалить все отчеты', +); diff --git a/application/i18n/ru_RU/private_message.php b/application/i18n/ru_RU/private_message.php new file mode 100644 index 0000000000..3b29954805 --- /dev/null +++ b/application/i18n/ru_RU/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Родительский ID должен быть числовым', + ) , + 'private_to' => array( + 'required' => 'Поле "Кому" обязательно для заполнения', + 'exists' => 'Пользователь, которому Вы пытаетесь отправить сообщение, не существует', + ) , + 'private_subject' => array( + 'required' => 'Поле "Тема" обязательно для заполения', + 'length' => 'Тема должна быть от 3 до 150 символов', + ) , + 'private_message' => array( + 'required' => 'Поле "Сообщение" обязательно для заполнения', + ) , +); diff --git a/application/i18n/ru_RU/report.php b/application/i18n/ru_RU/report.php new file mode 100755 index 0000000000..f79b9ab6be --- /dev/null +++ b/application/i18n/ru_RU/report.php @@ -0,0 +1,139 @@ + 'Ошибка!', + 'country_name' => array( + 'single_country' => 'Это диапазоны применимы только в пределах одной страны. Убедитесь, что сообщенное место в пределах страны %s.', + ) , + 'custom_field' => array( + 'values' => 'Введите допустимое значение в поле "%s".', + 'numeric' => 'Поле "%s" должно быть числовым.', + 'required' => 'Поле "%s" - обязательно.', + 'not_exist' => 'Поле "%s" не существует.', + 'permission' => 'Поле "%s" нельзя редактировать в вашей учетной записи.', + 'email' => 'Поле "%s" должно содержать правильный email адрес.', + 'phone' => 'Поле "%s" должно содержать правильный номер телефона.', + 'date_mmddyyyy' => 'Поле "%s" должно содержать правильную дату (MM/DD/YYYY).', + 'date_ddmmyyyy' => 'Поле "%s" должно содержать правильную дату (DD/MM/YYYY).', + ) , + 'data_include' => array( + 'between' => 'Выберите правильный формат для загрузки', + 'numeric' => 'Выберите правильный формат для загрузки', + ) , + 'data_active' => array( + 'between' => 'Выберите "Сообщения, Ждущие Одобрения", "Одобренные Сообщения" или оба.', + 'numeric' => 'Выберите "Сообщения, Ждущие Одобрения", "Одобренные Сообщения" или оба.', + 'required' => 'Выберите "Сообщения, Ждущие Одобрения", "Одобренные Сообщения" или оба.', + ) , + 'data_verified' => array( + 'between' => 'Выберите "Сообщения, ожидающие Проверку", "Проверенные Сообщения" или оба.', + 'numeric' => 'Выберите "Сообщения, ожидающие Проверку", "Проверенные Сообщения" или оба.', + 'required' => 'Выберите "Сообщения, ожидающие Проверку", "Проверенные Сообщения" или оба.', + ) , + 'data_point' => array( + 'between' => 'Выберите отчёт в правильном формате для загрузки', + 'numeric' => 'Выберите отчёт в правильном формате для загрузки', + 'required' => 'Выберите отчёт в правильном формате для загрузки', + ) , + 'format' => array( + 'required' => 'Вы должны выбрать формат загрузки. Выберите CSV или XML.', + 'valid' => 'Выберите допустимый формат, чтобы загрузить ваши сообщения', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Поле даты ОТ содержит неверные значения', + 'range' => ' Введите правильный формат даты для ОТ поля. Он не может быть больше сегодняшнего числа.', + ) , + 'incident_active' => array( + 'between' => 'Введите правильные значения для подтверждения этого события', + 'required' => 'Введите правильные значения для подтверждения этого события', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Неправильно указано время суток', + ) , + 'incident_category' => array( + 'numeric' => 'категория введена неверно', + 'required' => 'Введите категорию.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Дата введена в неправильном формате', + 'date_mmddyyyy' => 'Дата введена в неправильном формате', + 'required' => 'Введите дату.', + ) , + 'incident_description' => array( + 'required' => 'Введите описание.', + ) , + 'incident_hour' => array( + 'between' => 'Часы введены в неправильном формате.', + 'required' => 'Введите часы.', + ) , + 'incident_information' => array( + 'alpha' => 'Введите правильные значения для введения вероятности информации', + 'length' => 'Введите правильные значения для введения вероятности информации', + ) , + 'incident_minute' => array( + 'between' => 'Минуты введены в неправильном формате.', + 'required' => 'Введите минуты.', + ) , + 'incident_news' => array( + 'url' => 'URL ссылки новостей введен неправильно.', + ) , + 'incident_photo' => array( + 'size' => 'Загружаемый файл не может превышать 2MB.', + 'type' => 'Загружаемые файлы картинок в неверном формате, введите файлы в .JPG, .PNG и .GIF формате.', + 'valid' => 'Загружаемые файлы картинок испорчены или в неправильном формате', + ) , + 'incident_source' => array( + 'alpha' => 'Введите правильные значения для введения достоверности источника', + 'length' => 'Введите правильные значения для введения достоверности источника', + ) , + 'incident_title' => array( + 'length' => 'Длина Названия не может быть менее 3-х и более 200 символов.', + 'required' => 'Введите название.', + 'csrf' => 'Возможны CSRF атаки. Вы действительно хотите создать/редактировать сообщение?', + ) , + 'incident_verified' => array( + 'between' => 'Введите правильные значения для проверки этого события', + 'required' => 'Введите правильные значения для проверки этого события', + ) , + 'incident_video' => array( + 'url' => 'Ссылка на видео введена неверно', + ) , + 'latitude' => array( + 'between' => 'Широта местности введена неправильно', + 'required' => 'Введите широту местности, или кликните на карте, чтобы поставить точку местоположения.', + ) , + 'locale' => array( + 'alpha_dash' => 'Поле "Локаль" введено неправильно. ', + 'exists' => 'Данное сообщение уже имеет перевод на данный язык', + 'length' => 'Локаль введена неверно. ', + 'locale' => 'Сообщение о событии и перевод имеют одинаковую локаль (язык)', + 'required' => 'Введите местоположение.', + ) , + 'location_name' => array( + 'length' => 'Длина названия местоположения не может быть менее 3-х и более 200 символов.', + 'required' => 'Введите название местоположения.', + ) , + 'longitude' => array( + 'between' => 'Долгота местности введена неправильно', + 'required' => 'Введите долготу местности или кликните на карте, чтобы поставить точку местоположения.', + ) , + 'person_email' => array( + 'email' => 'Адрес Email введен в неправильном формате', + 'length' => 'Длина адреса Email не должна быть менее 4-х и более 64-х символов.', + ) , + 'person_first' => array( + 'length' => 'Длина имени не должна быть менее 3-х и более 100 символов.', + ) , + 'person_last' => array( + 'length' => 'Длина фамилии не должна быть менее 3-х и более 100 символов.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Поле даты ДО содержит неверные значения', + 'range' => 'Введите правильную дату для поля ДО. Она не может быть больше сегодняшней.', + 'range_greater' => 'Дата ОТ не может быть больше, чем дата ДО.', + ) , +); diff --git a/application/i18n/ru_RU/reporters.php b/application/i18n/ru_RU/reporters.php new file mode 100755 index 0000000000..8243dc6b6d --- /dev/null +++ b/application/i18n/ru_RU/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Введите верное значение широты', + 'required' => 'Введите широту или выберите место на карте.', + ) , + 'level_id' => array( + 'numeric' => 'Кажется, поле Уровень Репортера содержит не правильный Уровень?', + 'required' => 'Кажется, поле Уровень Репортера содержит не правильный Уровень?', + ) , + 'location_name' => array( + 'length' => 'Имя локации должно быть от 3 до 200 символов.', + 'required' => 'Заполните имя локации', + ) , + 'longitude' => array( + 'between' => 'Введите верное значение долготы', + 'required' => 'Введите долготу или выберите место на карте.', + ) , + 'reporter_id' => array( + 'numeric' => 'Неверный Репортер', + 'required' => 'Неверный Репортер', + ) , +); diff --git a/application/i18n/ru_RU/reports.php b/application/i18n/ru_RU/reports.php new file mode 100644 index 0000000000..bea761140f --- /dev/null +++ b/application/i18n/ru_RU/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Пожалуйста убедитесь, что вы выбрали значение. ', + 'numeric' => 'Пожалуйста убедитесь, что вы выбрали значение. ', + 'categories_required' => 'Сообщения должны быть отнесены к какой-то категории, прежде чем их можно будет подтвердить.', + ) , + 'action' => array( + 'permission' => 'У вас нет прав доступа для указанного действия.', + ) , + 'uploadfile' => array( + 'required' => 'Вы должны выбрать файл для загрузки', + 'type' => 'Загружаемый файл должен быть в формате .csv или .xml', + 'valid' => 'Поле для загрузки файла не содержит правильного файла', + ) , +); diff --git a/application/i18n/ru_RU/roles.php b/application/i18n/ru_RU/roles.php new file mode 100755 index 0000000000..319d556987 --- /dev/null +++ b/application/i18n/ru_RU/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Поле "Описание" должно быть от 3-х до 100 символов.', + 'required' => 'Поле "Описание" должно быть заполнено.', + ) , + 'name' => array( + 'alpha_numeric' => 'Поле "Имя" может содержать только буквы или цифры.', + 'length' => 'Поле Имя должно быть от 2-х до 30 символов.', + 'nomodify' => 'Роль Суперадминистратора не может быть изменена.', + 'required' => 'Поле "Имя" должно быть заполнено.', + ) , + 'access_level' => array( + 'numeric' => 'Поле "Уровень доступа" должно быть числом от 0 до 100.', + 'required' => 'Поле "Уровень доступа" должно быть числом от 0 до 100.', + ) , + 'permissions' => array( + 'numeric' => 'Поле разрешения должно быть числом от 0 до 100', + ) , +); diff --git a/application/i18n/ru_RU/settings.php b/application/i18n/ru_RU/settings.php new file mode 100644 index 0000000000..4dbdfeed05 --- /dev/null +++ b/application/i18n/ru_RU/settings.php @@ -0,0 +1,234 @@ + array( + 'between' => 'Поле о допустимости отправлять комментарии заполнено неверно', + 'required' => 'Заполните поле о допустимости отправлять комментарии.', + ) , + 'allow_feed' => array( + 'between' => 'Поле о ленте RSS заполнено неверно', + 'required' => 'Заполните поле о ленте RSS.', + ) , + 'allow_alerts' => array( + 'between' => 'Поле разрешить оповещения, кажется, содержит недопустимое значение.', + 'required' => 'Поле "Разрешить оповещения" - обязательно.', + ) , + 'allow_reports' => array( + 'between' => 'Поле о допустимости отправлять отчёты заполнено неверно', + 'required' => 'Заполните поле о допустимости отправлять отчёты.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Поле об отправке статистики заполнено неверно', + 'required' => 'Введите поле об отправке статистики.', + ) , + 'api' => array( + 'default_record_limit' => 'Количество записей по умолчанию, отдаваемых по API-запросу', + 'maximum_record_limit' => 'Максимальное количество записей, отдаваемых по API-запросу', + 'maximum_requests_per_ip_address' => 'Максимальное количество API-запросов с одного IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Поле Akismet заполено неверно', + 'length' => 'Поле Akismet заполено неверно', + ) , + 'banner_image' => array( + 'type' => 'Поле баннер сайта, не содержит ни одного действительного изображения. Принимаются только форматы . JPG, . PNG и . GIF .', + 'size' => 'Убедитесь , что "Картинка Баннер" размером менее 250 КБ.', + 'valid' => 'Поле "Картинка Баннер" не содержит допуститмый файл.', + ) , + 'cache_pages' => array( + 'between' => 'Поле страниц кэша - обязательно.', + 'required' => 'The cache pages field does not appear to contain a valid value?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Поле "Время жизни кеша" заполено неверно.', + 'required' => 'Укажите время жизни кеша.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Сервер не настроен для "красивой" адресной строки. Подробнее', + 'clean_url_enabled' => 'Эта опция позволит заходить на Ushahidi без "index.php" в адресной строке.', + 'enable_clean_url' => 'Включить "красивые" URL', + 'title' => '"Красивая" адресная строка', + ) , + 'clickatell_api' => array( + 'length' => 'Длина номера Clickatell API не должна превышать 20 символов', + 'required' => 'Введите Clickatell API номер', + ) , + 'clickatell_password' => array( + 'length' => 'Длина пароля Clickatell не должна превышать 50 символов', + 'required' => 'Введите пароль Clickatell', + ) , + 'clickatell_username' => array( + 'length' => 'Длина имени пользователя Clickatell не должна превышать 50 символов', + 'required' => 'Введите имя пользователя Clickatell', + ) , + 'configure_map' => 'Настроить карту', + 'default_location' => 'Местоположение по умолчанию', + 'default_map_all' => array( + 'alpha_numeric' => 'Поле цвета содержит неверные данные', + 'length' => 'Поле цвета должно состоять из 6 символов (FF00FF)', + 'required' => 'Введите цвет', + ) , + 'default_map_view' => 'Карта по умолчанию', + 'default_zoom_level' => 'Масштаб по умолчанию', + 'download_city_list' => 'Автозагрузка названий населенных пунктов выбранной страны (нажми меня!)', + 'email_host' => array( + 'length' => 'В поле "Адрес почтового сервера" слишком много символов', + 'numeric' => 'Поле порта Почтового сервера должно содержать только цифры.', + ) , + 'email_password' => array( + 'length' => 'Длина пароля сервера почты не должна превышать 50 символов', + 'required' => 'Введите пароль сервера почты', + ) , + 'email_port' => array( + 'length' => 'Поле "Порт сервера почты" содержит слишком много символов', + 'numeric' => 'Поле "Порт сервера почты" должно содержать только цифры', + ) , + 'email_servertype' => array( + 'length' => 'Поле "Тип почтового сервера" содержит слишком много символов', + 'required' => 'Введите тип почтового сервера', + ) , + 'email_username' => array( + 'length' => 'Длина имени пользователя сервера почты не должна превышать 50 символов.', + 'required' => 'Введите имя пользователя сервера почты', + ) , + 'facebook' => array( + 'title' => 'Настройки Facebook', + 'description' => 'To get the information below you will need to create a new facebook application at', + 'description_2' => 'Эти настройки позволяют пользователям входить через Facebook, это не создает приложение facebook для вашего размещения', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Секретное приложение Facebook', + ) , + 'google_analytics' => array( + 'length' => 'Поле Google Analytics должно содержать действующий Web Property ID в формате UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Включить HTTPS', + 'https_disabled' => 'Эта опция включит доступ к Ushahidi в обычном режиме без https в префиксе URL', + 'https_enabled' => 'Эта опция включит доступ к Ushahidi в зашифрованном режиме с https в префиксе URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Поле "Количество элементов на странице (Главной)" заполнено в неправильном формате', + 'required' => 'Заполните поле "Количество элементов на странице (Главной)".', + ) , + 'items_per_page_admin' => array( + 'between' => 'Поле "Количество элементов на странице (Admin)" заполнено в неправильном формате', + 'required' => 'Заполните поле "Количество элементов на страницу для (Admin)".', + ) , + 'map' => array( + 'default_location' => 'Картографический материал загружается напрямую. Выберите провайдера, получите API-ключ и введите его.', + 'zoom' => 'Масштаб', + ) , + 'map_provider' => array( + 'choose' => 'Выберите провайдера карты', + 'enter_api' => 'Введите полученный API-ключ', + 'get_api' => 'Получите API-ключ', + 'info' => 'Настройка провайдера карты — простой процесс: выберите провайдера, получите API-ключ, введите ключ на сайте', + 'name' => 'Провайдер карты', + ) , + 'map_timeline' => 'Временная карта ', + 'map_settings' => 'Настройка карты', + 'multiple_countries' => 'Данная карта будет использоваться больше чем в одном государстве?', + 'select_default_location' => 'Выберите страну', + 'set_location' => 'Кликните на карте, чтобы уточнить местоположение', + 'site' => array( + 'allow_clustering' => 'Кластеризовать Отчёты на Карте', + 'allow_comments' => 'Позволить пользователям отправлять комментарии к отчётам', + 'allow_feed' => 'Включить новостную ленту RSS на главной странице сайта', + 'allow_alerts' => 'Разрешить Пользователям Подписываться на События', + 'allow_reports' => 'Позволить пользователям отправлять отчёты о событиях', + 'api_akismet' => 'Akismet ключ', + 'banner' => 'Баннер Сайта', + 'blocks_per_row' => 'Блоков в строке', + 'cache_pages' => 'Включить кэширование?', + 'cache_pages_lifetime' => 'Время жизни кэша', + 'checkins' => 'Проверка', + 'copyright_statement' => 'Авторское право', + 'default_category_colors' => 'Цвет по умолчанию для всех категорий', + 'default_category_icons' => 'Значок по умолчанию для всех категорий', + 'delete_banner_image' => 'Удалить Картинку Баннера', + 'delete_default_map_all_icon' => 'Удалить Иконку По умолчанию', + 'display_contact_page' => 'Показывать страницу "Обратная связь"', + 'display_howtohelp_page' => 'Показывать страницу "Как помочь"', + 'email_alerts' => 'E-mail для оповещений', + 'email_notice' => ' Чтобы получить отчёты по почте, пожалуйста, настройте параметры вашего e-mail-аккаунта.', + 'email_site' => 'E-mail сайта', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Идентификатор Google Analytics - формат: UA-XXXXX-XX', + 'items_per_page' => 'Количество элементов на страницу - Главная', + 'items_per_page_admin' => 'Количество элементов на страницу - Admin', + 'kismet_notice' => 'Защититесь от спама с помощью Akismet от Automattic.
Получить бесплатный API-ключ в WordPress.com', + 'laconica_configuration' => 'Laconica аккаунт', + 'laconica_site' => 'Laconica сайт ', + 'language' => 'Язык сайта', + 'manually_approve_users' => 'Вручную утвердить пользователей', + 'message' => 'Важное сообщение', + 'name' => 'Название сайта', + 'private_deployment' => 'Закрытый доступ', + 'require_email_confirmation' => 'Требует подтверждения E-mail пользователя ', + 'submit_report_message' => 'Отправить сообщение с отчетом', + 'share_site_stats' => 'Отправлять статистику в API', + 'tagline' => 'Слоган', + 'timezone' => 'Часовой пояс', + 'title' => 'Параметры сайта', + 'twitter_configuration' => 'Твиттер-аккаунт', + 'twitter_hashtags' => 'Отделяйте хэштеги запятыми', + ) , + 'site_email' => array( + 'email' => 'E-mail веб-сайта введен неправильно', + 'length' => 'Длина e-mail веб-сайта должна быть от 4 до 100 символов', + ) , + 'site_name' => array( + 'length' => 'Длина названия сайта должен быть от 3 до 50', + 'required' => 'Введите название сайта', + ) , + 'site_tagline' => array( + 'length' => 'Длина поля заголовка должна быть от 3 до 100 символов', + 'required' => 'Введите поле заголовка', + ) , + 'sms' => array( + 'clickatell_api' => 'Введите ваш Clickatell API Номер', + 'clickatell_check_balance' => 'Проверьте ваш баланс на Clickatell', + 'clickatell_load_balance' => 'Загрузите баланс на Clickatell', + 'clickatell_password' => 'Введите ваш Clickatell пароль', + 'clickatell_text_1' => 'Подключитесь к услуге Clickatell в clicking here', + 'clickatell_text_2' => 'Введите вашу информацию Clickatell внизу', + 'clickatell_username' => 'Введите ваше Clickatell имя пользователя', + 'flsms_description' => 'FrontlineSMS - со свободным и открытым исходным кодом, что позволяет пользователям отправлять и получать текстовые сообщения с большими группами людей через мобильные телефоны. Нажмите на поле ниже, чтобы скачать последнюю версию с FrontlineSMS.com.', + 'flsms_download' => 'Скачать и установить FrontlineSMS', + 'flsms_instructions' => 'Детальные команды, как послать СМС с вашей FronlineSMS доступны здесь. Ключи URL и API ниже нужны для синхронизации с FrontlineSMS.', + 'flsms_link' => 'Скопируйте и вставьте его в поле «Адрес» FrontlineSMS', + 'flsms_key' => 'Скопируйте и вставьте это в поле FrontlineSMS «Ushahidi API ключ»', + 'flsms_synchronize' => 'Соединение FrontlineSMS с этим размещением Ushahidi', + 'flsms_text_1' => 'Введите номер телефона, подключенный к FrontlineSMS, в поле внизу', + 'flsms_text_2' => 'Введите номер без символов "+" или скобок', + 'option_1' => 'Option 1: Использовать FrontlineSMS', + 'option_2' => 'Option 2: Использовать GlobalSMS Gateway', + 'title' => 'Настройка SMS', + ) , + 'sms_no1' => array( + 'length' => 'Телефон 1 содержит неверные значения', + 'numeric' => 'Телефон 1 должен содержать только цифры.', + ) , + 'sms_no2' => array( + 'length' => 'Телефон 2 содержит неверные значения', + 'numeric' => 'Телефон 2 должен содержать только цифры', + ) , + 'sms_no3' => array( + 'length' => 'Телефон 3 содержит неверные значения', + 'numeric' => 'Телефон 3 должен содержать только цифры', + ) , + 'twitter' => array( + 'title' => 'Параметры настройки Twitter', + 'description' => 'Чтобы получить информацию ниже, установите ваше размещение как новое приложение Twitter', + 'api_key' => 'Ключ потребителя', + 'api_key_secret' => 'Секрет потребителя', + 'token' => 'Маркер доступа', + 'token_secret' => 'Секрет идентификатора доступа', + ) , + 'test_settings' => 'Настройки теста', +); diff --git a/application/i18n/ru_RU/sharing.php b/application/i18n/ru_RU/sharing.php new file mode 100755 index 0000000000..0bbbbe3d02 --- /dev/null +++ b/application/i18n/ru_RU/sharing.php @@ -0,0 +1,25 @@ + 'Дата регистрации', + 'date_added' => 'Дата добавления', + 'last_access' => 'Последнее посещение', + 'sharing_color' => array( + 'length' => 'Значение цвета должно быть 6-значным (FF00FF)', + 'required' => 'Введите цвет', + ) , + 'sharing_name' => array( + 'length' => 'The Sharing name ведено неверно', + 'required' => 'Введите Sharing name.', + ) , + 'sharing_url' => array( + 'exists' => 'URL сайта уже существует', + 'length' => 'URL сайта похоже не верный.', + 'required' => 'Введите URL сайта', + 'url' => 'Адрес сайта введен неверно', + ) , +); diff --git a/application/i18n/ru_RU/stats.php b/application/i18n/ru_RU/stats.php new file mode 100644 index 0000000000..78830faf05 --- /dev/null +++ b/application/i18n/ru_RU/stats.php @@ -0,0 +1,42 @@ + 'Подтверждено', + 'categories' => 'Категории', + 'category_impact' => 'Категории', + 'category_impact_description' => 'Данный график позволяет линейно просматривать сообщения по категориям в заданном промежутке времени. Прокрутите слева направо, чтобы увидеть сравнительный обзор между разными категориями. Подведите указатель мыши для просмотра деталей', + 'choose_date_range' => 'Выберите интервал даты', + 'countries' => 'Страны', + 'country' => 'Страна', + 'country_breakdown' => 'Разбивка по странам', + 'description' => 'Раздел статистики. Описание будет добавлено скоро, пока посмотрите по ссылкам ниже', + 'error' => 'Ошибка', + 'glossary' => 'Термины', + 'hit_summary' => 'Статистика щелчков', + 'legend' => 'История', + 'pageviews' => 'Просмотр страниц', + 'pageviews_description' => 'Количество страниц, просмотренных посетителями', + 'reports' => 'Сообщения', + 'reports_categories' => 'Категории сообщений', + 'reports_statistics' => 'Статистика сообщений', + 'reports_status' => 'Статус сообщений', + 'report_punchcard' => 'Временной анализ', + 'report_stats' => 'Статистика по сообщениям', + 'stats_not_setup' => 'Статистика не настроена', + 'time_range_1' => '1 месяц', + 'time_range_2' => '3 месяца', + 'time_range_3' => '6 месяцев', + 'time_range_all' => 'Все', + 'unapproved' => 'Неподтвержденных', + 'unique_visitors' => 'Уникальные посетители', + 'unique_visitors_description' => 'Количество посетителей сайта, которые зашли впервые. Уникальные посетители определены с помощью cookies. Если у посетителя не включены cookies, то они будут посчитаны по IP адресу, браузеру, плагинам, ОС и т. д.', + 'unverified' => 'Непроверено', + 'verified' => 'Проверено', + 'visitor_summary' => 'Посетителей всего', + 'visits' => 'Посещения', + 'visits_description' => 'Посещение — количество уникальных посетителей, которые вернулись на сайт после 30 минут после последнего визита', +); diff --git a/application/i18n/ru_RU/tooltips.php b/application/i18n/ru_RU/tooltips.php new file mode 100644 index 0000000000..e9539f62e5 --- /dev/null +++ b/application/i18n/ru_RU/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'Позволяет добавлять дополнительные категории к сообщению. Если вы отметете "Категория1" для сообщения, которое уже находится в "Категория2", то сообщение будет привязано к обеим категориям.', + 'approve' => 'Утверждает отчет или нет. Если одобрено, он будет отображаться публично.', + 'assign_badge' => 'Вы можете назначить значок на вызов пользователя. Выберите значок, который назначается здесь.', + 'between_times' => 'Это диапазон часов и/или минут в 24-часовом формате. Если вы вводите более раннее время во второе поле, оно будет зеркально отражено в первом. Эти значения времени должны быть в пределах одного дня. Кроме того, это время сверяется с настройкой времени на вашем сайте в настройках сайта и не обязательно с часовым поясом пользователя, связывающегоя с вашим развертыванием. Оставьте его с 00:00 до 00:00, чтобы игнорировать этот спецификатор.', + 'category' => 'Вы можете задать условие активации триггеров при использовании определенных категорий. Например, если вы выбрали условие "Категория1 и Категория2", а сообщение привязано к Категория2 и Категория3, то она выполнит заданное условие.', + 'days_of_the_week' => 'Если эти действия происходят в определенные дни недели, задайте это здесь. Имейте в виду, день определяется часовым поясом, настроенным в развертывании. Удерживайте shift, command, или control, для выбора нескольких дней.', + 'email_body' => 'Тело письма, которое будет отправлено.', + 'email_subject' => 'Заголовок письма, которое будет отправлено.', + 'feed_id' => 'Каналом могут быть все каналы или конкретные каналы. Если вы хотите только конкретные каналы для активации триггера, вы можете выбрать их здесь. В противном случае, оставьте «все»', + 'from' => 'Имя пользователя автора Twitter (или много имен пользователей через запятые). Если Вы хотите активизировать триггеры только для сообщений twitter от конкретного пользователя, введите его имя пользователя здесь (без @)', + 'keywords' => 'Если вы хотите запускать триггеры по ключевым словам, введите их здесь через запятую.', + 'location' => 'Вы можете выбрать "где угодно" или указать местоположение. Если вы выбрали местоположение, вы можете указать периметр, где происходит действие. Например, если вы хотите активировать триггер, когда кто-либо укажет точку в Смоленской области, вам необходимо выделить данную область одним или несколькими прямоугольниками.', + 'on_specific_count' => 'This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user.', + 'report_title' => 'Это название по умолчанию для добавления в отчет.', + 'response' => 'Если все критерии выше были пройдены, триггер запустит действие - от одобрения сообщения до электронного письма пользователю. Выберите необходимые дополнительные опции.', + 'send_to' => 'При выборе "Triggering User" электроное письмо будет отослано пользователю, выполнившему действие. При использовании радио-кнопки после поля ввода вы сможете ввести любой другой e-mail. Это полезно, когда вы устанавливаете триггеры для уведомления пользователей о произошедших изменениях.', + 'specific_days' => 'Вы можете выбрать несколько дней здесь . Даты определяется вашими настройками часового пояса развертывания. Для того, чтобы по умолчанию остались все даты , не отмечайте никаких дат .', + 'trigger' => 'Триггер является основным элементом для настройки "Действий по условию". Вы можете выбрать какое-либо действие, когда кто-нибудь отправит новое сообщение, зарегистрируется и т. д.', + 'user' => 'Пользователем может быть кто угодно или выбранный пользователь.', + 'verify' => 'Отметить сообщение как проверенное или нет.', + ) , + 'change_picture' => 'Аватары анкет данного сайта используют сервис Gravatar. Нажав на ваш аватар, вы будете переадресованы на их сайт, где сможете изменить изображение.', + 'default_value' => 'Отделите каждое значение запятой. Например: Значение1, Значение2 и т. д.', + 'radio_choices' => 'Каждое значение отделяется запятой, например, value1, value2 . Если вы хотите задать значение по умолчанию, закончите список опций :: например, если вы хотите задать value3 как умолчание, это будет value1, value2 , value3 :: value3', + 'dropdown_choices' => 'Отделите каждый элемент запятой. Например: Пункт1, Пункт2 и т. д.', + 'private_to' => 'Начните печатать, чтобы выпал список пользователей', + 'private_subject' => 'Тема личного сообщения', + 'private_message' => 'Личное сообщение', + 'profile_color' => 'Вы можете выбрать цвет, который будет отображён под вашим аватаром. Этим цветом также будут отображаться сообщения, которые вы отправили..', + 'profile_email' => 'Ваш e-mail адрес', + 'profile_name' => 'Полное имя', + 'profile_new_password' => 'Если задано, это будет ваш новый пароль. Оставьте это поле пустым, если вы хотите сохранить ваш текущий пароль.', + 'profile_new_users_password' => 'Это требуется при создании нового пользователя и будет паролем пользователя . Вы должны информировать своего нового пользователя о возможности смены пароля после первого входа в систему.', + 'profile_notify' => 'Выберите "ДА" для e-mail оповещений о новых точках или комментариях', + 'profile_password' => 'Ваш пароль. Оставьте пустым, если вы не хотите изменять пароль', + 'profile_public' => 'Ваша анкета может быть просмотрена кем угодно, если вы отметите эту опцию.', + 'profile_public_url' => 'Это - адрес, где можно найти ваш общественный профиль.', + 'profile_username' => 'Имя пользователя не может быть изменено', + 'settings_access_level' => 'Уровень доступа используется для ограничения доступа к пользовательским полям. Обладающий большим уровнем сможет увидеть поля с меньшим уровнем. Суперадмин имеет высший уровень доступа "100". Данные, предназначенные для публичного просмотра имеют низший уровень "0".', + 'settings_alert_email' => 'На этот e-mail будут отправляться уведомления', + 'settings_allow_alerts' => 'Разрешить пользователям подписаться на уведомления через сеть.', + 'settings_allow_clustering' => 'Позволяет добавлять точки на одно и то же место на карте', + 'settings_allow_comments' => 'Разрешить пользователям комментировать сообщения на главной странице', + 'settings_allow_feed' => 'Показывать новостную ленту RSS на главной странице', + 'settings_allow_feed_category' => 'Это позволяет создавать новую категорию из ленты новостей RSS.', + 'settings_allow_reports' => 'Разрешить пользователям отправлять сообщения через веб-форму.', + 'settings_api_default_record_limit' => 'Кол-во выдаваемых записей по умолчанию по API-запросу', + 'settings_api_max_record_limit' => 'Максимум выдаваемых записей по умолчанию по API-запросу', + 'settings_api_max_requests_per_ip' => 'Максимум API-запросов с одного IP адреса', + 'settings_banner' => 'Заставка показывается наверху вашего сайта, если тема её поддерживает. Оптимальный размер зависит от используемой темы. Обратите внимание, что заставка заменит собой название и слоган сайта.', + 'settings_blocks_per_row' => 'Количество блоков которое будет показываться на каждом ряду.', + 'settings_cache_pages' => 'Разрешить кешировать страницы? Ускоряет загрузку страниц, рекомендуется для сайтов с высоким трафиком. **Помните, что пользователи будут видеть обновленные данные с периодичностью времени жизни кеша.', + 'settings_cache_pages_lifetime' => 'Время жизни кеша.', + 'settings_checkins' => 'Проверка настроек сайта перед запуском платформы (This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin only themes will become enabled under your addons/themes settings page).', + 'settings_configure_map' => 'Установите карту для отображения местоположения', + 'settings_default_category_colors' => 'Единый цвет для всех категорий на сайте', + 'settings_default_category_icons' => 'Задать один значок для всех категорий на сайте.', + 'settings_default_location' => 'Страна, где будет установлена платформа', + 'settings_display_contact' => 'Показывать или нет ссылку ОБРАТНАЯ СВЯЗЬ для пользователей', + 'settings_display_howtohelp' => 'Включает и выключает панель ПОМОЩЬ на главной странице.', + 'settings_display_items_per_page' => 'Количество сообщений, которые будут показаны на одной странице (главная страница)', + 'settings_display_items_per_page_admin' => 'Количество сообщений, которые будут показаны на одной странице (Admin).', + 'settings_flsms_download' => 'Хаб для входящих SMS-сообщений', + 'settings_flsms_synchronize' => 'Синхронизирует сообщения из хаба с платформой Ушахиди', + 'settings_flsms_text_1' => 'Телефонные номера через которые были получены сообщения', + 'settings_google_analytics' => 'Отслеживает посетителей Вашего сайта. Получите детальную статистику о посетителях', + 'settings_locale' => 'Язык веб-сайта', + 'settings_manually_approve_users' => 'Если вы устанавливаете этот параметр "да", вы должны одобрить каждого отдельного пользователя, который создаст учетную запись на вашем сайте, назначая им роли (т.е. Член, Админ, СуперАдмин).', + 'settings_map_provider' => 'Определяет, какая карта будет использована на сайте', + 'settings_map_timeline' => 'Это отображает на графике времени дату и время поступления отчета', + 'settings_private_deployment' => 'Закрытый доступ к карте, только после авторизации.', + 'settings_require_email_confirmation' => 'Если установлено "да", пользователи получат email со ссылкой подтверждения перед разрешением регистрации в развертывании. Если Вы включите это после того, как ваше развертывание принимало пользователей, им будет отправлен запрос подтвердить их учетную запись, чтобы им позволили продолжить использовать ее.', + 'settings_server_host' => 'Адрес e-mail сервера', + 'settings_server_password' => 'Пароль e-mail, который получает сообщения', + 'settings_server_port' => 'Порт e-mail сервера', + 'settings_server_ssl_support' => 'Требуется для более безопасного соединения', + 'settings_server_type' => 'Требуется, чтобы получать e-mail от сервера', + 'settings_server_username' => 'Имя пользователя E-mail, на который будут приходить сообщения', + 'settings_share_site_stats' => 'Получение статистики через админку.', + 'settings_site_copyright_statement' => 'Авторское право см. http://creativecommons.org/choose/', + 'settings_site_email' => 'E-mail, на который будут отправлены уведомления и сообщения из формы контактов.', + 'settings_site_message' => 'Сообщение, которое будет показано над картой на главной странице', + 'settings_site_name' => 'Имя сайта в верхней части главной страницы', + 'settings_site_submit_report_message' => 'Сообщение, которое будет показываться пользователям на странице заполнения данных о новом сообщении. Возможно использование для информирования о юридической ответственности или других инструкциях.', + 'settings_site_tagline' => 'Несколько слов о данном веб-сайте', + 'settings_site_timezone' => 'Часовой пояс, который будет использовать данный сайт.', + 'settings_twitter_configuration' => 'Хэштэг Twitter', +); diff --git a/application/i18n/ru_RU/ui_admin.php b/application/i18n/ru_RU/ui_admin.php new file mode 100644 index 0000000000..10b999a460 --- /dev/null +++ b/application/i18n/ru_RU/ui_admin.php @@ -0,0 +1,329 @@ + 'Отказано в доступе. Неправильный логин или пароль или ваш запрос был отклонён.', + 'access_denied_others' => 'Отказано в доступе. Сервер перегружен, попробуйте еще раз позже.', + 'access_level' => 'Уровень доступа', + 'actions' => 'Действия', + 'add_to_category' => 'Добавить к категории', + 'added' => 'добавлена', + 'added_edited' => 'добавлена/отредактирована', + 'addons' => 'Дополнительно', + 'admin_role' => 'Администратор', + 'alerts' => 'Оповещения', + 'alerts_received' => 'Получены оповещения', + 'all' => 'Все', + 'am' => 'ДП', + 'anonymous' => 'Анонимно', + 'anyone_role' => 'Кто угодно', + 'anywhere' => 'Где угодно', + 'api_banned' => 'API заблокирован', + 'api_logs' => 'API журнал', + 'api_settings' => 'API настройки', + 'api_unban' => 'Разблокировать', + 'api_unban_all' => 'Разблокировать всех', + 'approved' => 'подтверждены', + 'approve_auto' => 'Подтверждать автоматически', + 'approve_manual' => 'Подтверждать вручную', + 'archived' => 'Архивный', + 'are_you_sure_you_want_to' => 'Вы уверены, что хотите', + 'are_you_sure_you_want_to_delete_this_item' => 'Вы уверены, что хотите удалить этот элемент?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Вы уверены, что хотите удалить это фото?', + 'are_you_sure_you_want_to_switch_forms' => 'Вы уверены, что хотите переключить формы?', + 'assign' => 'Назначать', + 'assignments' => 'Отчисления', + 'assign_badge' => 'Установить награду', + 'author' => 'Автор', + 'author_email' => 'E-mail автора', + 'back' => 'Назад', + 'banip_action' => 'Заблокировать IP', + 'between_times' => 'Между (times)', + 'blocks' => 'Блоки', + 'body' => 'Тело', + 'cancel' => 'Отмена', + 'categories' => 'Категории', + 'chart_display_error' => 'Ошибка в отображении графика', + 'check_message_valid' => 'Пожалуйста, убедитесь, что сообщение надлежаще оформлено', + 'check_number' => 'Пожалуйста, убедитесь, что номер правильный', + 'check_sms_settings' => 'Пожалуйста, проверьте настройки SMS!', + 'checkin_details' => 'Подробности регистрации', + 'checkins' => 'Регистрации', + 'cities_loaded' => 'Города загружены', + 'code' => 'код', + 'code_out_of_sync' => 'Версия кода не синхронизируется', + 'color' => 'Цвет', + 'comments' => 'Комментарии', + 'confirmation_code' => 'Ваш код подтверждения уведомлений: ', + 'confirm_msg' => 'Пользователь был', + 'count' => 'Итог', + 'country_not_found' => 'Страна не найдена', + 'created_edited' => 'создана/отредактирована', + 'create_report' => 'Создать сообщение', + 'critical_upgrade' => 'Критически важное обновление', + 'csv' => 'CSV', + 'currently_active' => 'Сейчас активно', + 'currently_inactive' => 'Неактивно', + 'custom_forms_insufficient_permissions' => 'У вас недостаточно прав для редактирования следующих полей.', + 'daily' => 'Ежедневно', + 'dashboard' => 'Пульт', + 'database' => 'База данных', + 'date_time' => 'Дата и время', + 'date_added' => 'Дата Добавлена', + 'date_modified' => 'Дата Изменена', + 'days_of_the_week' => 'Дни недели', + 'db_out_of_sync' => 'БД не синхронизирована', + 'deleted' => 'удалены', + 'delete_action' => 'Удалить', + 'delete_all' => 'Удалить все отчеты', + 'delete_badge' => 'Удалить награду', + 'demo' => 'Пример', + 'description' => 'Описание', + 'disabled' => 'Отключено', + 'divider_start_field' => 'Начало разделителя', + 'divider_end_field' => 'Конец разделителя', + 'divider_class' => 'класс div', + 'download_reports' => 'Скачать сообщения', + 'dropdown_choices' => 'Выпадающий пункт меню', + 'edited' => 'ОТРЕДАКТИРОВАНО', + 'edited_by' => 'Отредактировано', + 'edit_action' => 'Редактировать', + 'edit_log' => 'Журнал правок', + 'email' => 'E-mail', + 'entire_collective' => 'Всего коллектива', + 'error_geocoding' => 'Ошибка геокодирования! HTTP ошибка', + 'error_imap' => 'Не была установлена IMAP PHP библиотека', + 'error_twitter' => 'Неправильные данные', + 'error_msg' => 'Ошибка', + 'error_post_incident' => 'Ошибка, не удалось отправить событие', + 'every_six_hours' => 'Каждые шесть часов', + 'every_twelve_hours' => 'Каждые двенадцать часов', + 'experimental' => 'Экспериментальная', + 'faqs' => 'FAQ', + 'feed' => 'новостная лента', + 'feedback' => 'Отзыв', + 'feeds' => 'новостные ленты', + 'field_choices' => 'Список пунктов меню', + 'field_default' => 'Значение по умолчанию', + 'field_datatype' => 'Тип данных', + 'field_datatype_javascript' => 'JavaScript', + 'field_datatype_markup' => 'Разметка', + 'field_datatype_numeric' => 'Цифровое', + 'field_datatype_text' => 'Текст', + 'field_height' => 'Высота (в столбцах)', + 'field_hidden' => 'Скрытое поле', + 'field_maxlength' => 'Максимальное количество символов', + 'field_name' => 'Название поля', + 'field_toggle' => 'Переключатель', + 'field_toggle_no' => 'Нет', + 'field_toggle_yes_close' => 'Да, закрыто по умолчанию', + 'field_toggle_yes_open' => 'Да, открыто по умолчанию', + 'file_not_found_upload' => 'Не удалось найти загруженный файл', + 'file_open_error' => 'Не удалось открыть файл для чтения', + 'form_not_exists' => 'Эта форма не существует!', + 'forum' => 'Форум', + 'free_text_field' => 'Многострочное текстовое поле', + 'date_field' => 'Поле даты', + 'radio_field' => 'Радио-кнопка', + 'checkbox_field' => 'Чекбокс', + 'dropdown_field' => 'Выпадающий список', + 'from' => 'От', + 'from_date' => 'с', + 'geonames_timeout' => 'Geoname таймаут ошибка', + 'get_help' => 'Ресурсы', + 'get_more_themes' => 'Дополнительные темы', + 'get_more_plugins' => 'Дополнительные плагины', + 'header_actions' => 'Действия', + 'header_add_edit' => 'Добавить/редактировать', + 'header_email' => 'Электронная почта', + 'header_manage_users' => 'Управление пользователями', + 'header_role' => 'Роль', + 'header_user' => 'Пользователь', + 'help' => 'Помощь', + 'hourly' => 'Почасовое', + 'incident_feed' => 'Лента событий для', + 'installer_info' => 'Папка с дистрибутивом всё ещё присутствует на сервере. Удалите папку инсталляции, это потенциальная угроза беопасности.', + 'instance' => 'Привязка', + 'instances' => 'Привязки', + 'instance_details' => 'Подробности привязки', + 'invalid_parameter' => 'Неверный параметр', + 'ip_address' => 'IP адрес', + 'is_date' => 'Это поле даты?', + 'ispublic_visible' => 'Кто может видеть ответы', + 'ispublic_submit' => 'Кто может отвечать', + 'keyword' => 'Ключевое слово', + 'keywords' => 'Ключевые слова', + 'label_email' => 'E-mail адрес:', + 'label_full_name' => 'Полное имя:', + 'label_password' => 'Пароль:', + 'label_role' => 'Роль:', + 'label_username' => 'Имя пользователя:', + 'layers' => 'Слои', + 'login_role' => 'Модератор', + 'logout' => 'Выйти', + 'logs' => 'Журнал', + 'manage' => 'Управление', + 'manage_roles' => 'Управление ролями и разрешениями', + 'manage_users' => 'Просмотр пользователей', + 'manage_users_edit' => 'Добавить/редактировать пользователей', + 'manage_public_listing' => 'Управлять размещением в публичном каталоге', + 'mark_as' => 'Отметить как', + 'marked_as_not_spam' => 'отмечено как не спам', + 'marked_as_spam' => 'отмечено как спам', + 'match_no_documents' => 'ничего не было найдено', + 'message' => 'Сообщение', + 'messages' => 'Сообщения', + 'messages_laconica' => 'Laconica сообщения', + 'messages_twitter' => 'Твиты', + 'message_sent' => 'Ваше сообщение отправлено!', + 'mhi' => 'MHI', + 'minute' => 'Минута', + 'minutes' => 'минут', + 'missing_parameter' => 'Отсутствует параметр', + 'moderator' => 'Модератор', + 'modified' => 'Изменено', + 'modify_timezone' => 'Изменить настройки временной зоны', + 'move_down_action' => 'Сдвинуть вниз', + 'move_up_action' => 'Сдвинуть вверх', + 'multiple_hosted_instances' => 'Множественные привязки', + 'my_alerts' => 'Мои уведомления', + 'my_checkins' => 'Мои входы', + 'my_profile' => 'Моя анкета', + 'my_reports' => 'Мои сообщения', + 'my_votes' => 'Голосов', + 'my_votes_up' => 'За', + 'my_votes_down' => 'Против', + 'name' => 'Имя', + 'new_alert' => 'Создать предупреждение', + 'new_private' => 'Создать личное сообщение', + 'new_password' => 'Новый пароль', + 'no' => 'Нет', + 'none_category_explanation' => 'Это специальная категория, которая не будет показываться в форме отправки сообщения для пользователя, который его отправляет. Категория используется для хранения сообщений без категорий (некатегоризированные сообщения), которые образовались в результате удаления категории. ', + 'notification' => 'Извещения', + 'not_case_sensitive' => 'Не чувствителен к регистру.', + 'not_found' => 'Не найдено', + 'no_data' => 'Нет данных. Нечего показывать.', + 'no_error' => 'Нет Ошибка', + 'no_result_display_msg' => 'Нет результатов для отображения!', + 'of' => 'от', + 'on_specific_count' => 'Всего выбрано', + 'openids' => 'OpenID', + 'page' => 'страница', + 'pages' => 'страницы', + 'page_not_found' => 'Страница не найдена', + 'page_not_found_message_with_contact' => 'Извините, но запрашиваемая Вами страница находится не здесь.

Если Вы видите это сообщение в результате перехода по ссылке с другой части портала, пожалуйста сообщите нам, чтоб мы могли исправить ошибку.

Вы перешли сюда по ссылке с другого сайта?
Ссылки с других сайтов могут быть устаревшими или неправильными. Сообщите нам об этом, чтоб мы попытались связаться с сайтами и исправить проблему.

Вы вручную ввели URL?
Вы могли ошибиться при вводе ссылки (URL). Проверьте, не ошиблись ли Вы с раскладкой клавиатуры или включенная клавиша NumLock и пр.

', + 'page_not_found_message' => 'Извините. запрашиваемая вами страница находится не здесь', + 'parameters_used' => 'Используемые параметры', + 'password' => 'Пароль', + 'password_reset' => 'Сброс пароля', + 'password_reset_message_line_1' => 'Уважаемый/я', + 'password_reset_message_line_2' => 'Мы получили просьбу сбросить пароль для', + 'password_reset_message_line_3' => 'Чтобы поменять пароль, нажмите на ссылку ниже (или скопируйте её и вставьте в браузер).', + 'password_reset_message_line_4' => 'Как вы просили пароль был сброшен. Новый пароль', + 'password_reset_subject' => 'Пароль Ушахиди сброшен', + 'phone' => 'Телефон', + 'please_select' => 'Пожалуйста, выберите', + 'pm' => 'ПП', + 'post_method_not_used' => 'Информация не была отправлена POST методом', + 'preview' => 'Предпросмотр', + 'private_message' => 'Личное сообщение', + 'private_messages' => 'Личные сообщения', + 'private_sent' => 'Личное сообщение отправлено', + 'private_subject' => 'Тема', + 'private_to' => 'Кому', + 'public_listing' => 'Размещение в каталоге', + 'qualifiers' => 'Квалификация', + 'read' => 'читать', + 'relevance' => 'Важность', + 'report_title' => 'Заголовок отчёта', + 'report_date' => 'Дата сообщения', + 'reporters' => 'Корреспонденты', + 'reporter_levels' => 'Уровни корреспондентов', + 'reports' => 'Сообщения', + 'reputation' => 'Очки репутации', + 'required' => 'Обязательное', + 'reset' => 'Сброс', + 'response' => 'Отклик', + 'results' => 'Результаты', + 'revoke' => 'Отозвать', + 'riverid_exists_admin' => 'Этот адрес электронной почты указан в аккаунте CrowdmapID. Пользователь должен использовать существующий в Crowdmap пароль для захода. ', + 'save_settings' => 'Сохранить настройки', + 'search' => 'Поиск', + 'search_reports' => 'Искать отчёты', + 'searching_for' => 'Поиск', + 'security_info_encryption_key' => 'Ключ шифрования всё ещё установлен в значение по умолчанию. Это небезопасно, ключ должен быть изменён.', + 'security_info_https' => 'Этот сайт работает по протоколу HTTP. Стоит переключить на HTTPS для повышенной безопасности.', + 'security_info_instructions' => 'Инструкции доступны в вики:', + 'select_download_format' => 'Выберите предпочитаемый вами формат для скачивания сообщений:-', + 'select_field_type' => '--- Выберите тип поля ---', + 'select_item' => 'Выберите пункт', + 'select_trigger_before_response' => 'Выберите условие для ответа', + 'select_trigger_before_qualifiers' => 'Выберите условие для определения квалификации', + 'sender' => 'Отправитель', + 'send_to' => 'Отправить', + 'sent_from_website' => 'Это сообщение было отправлено с вашего сайта в', + 'server_time' => 'Серверное время', + 'settings' => 'Настройки', + 'showing_page' => 'Отображаемая страница', + 'showing_results' => 'Отображаемые результаты', + 'shown' => 'показанно', + 'special_category' => 'Специальная категория', + 'special_category_explanation' => 'Это специальная категория, не показываемая на странице создания нового сообщения для обычных пользователей. Она используется в сочетании с функцией "Достоверные сообщения".', + 'specific_area' => 'Определенная область', + 'state' => 'Состояние', + 'statistics' => 'Статистика', + 'stats' => 'Статистика', + 'stats_collection_error' => 'Не удалось собрать статистику! Пожалуйста, попробуйте снова через некоторое время.', + 'stats_collection_error_short' => 'Не удалось собрать статистику!', + 'specific_days' => 'Конкретные дни', + 'subject' => 'Тема', + 'superadmin_role' => 'Суперадминистратор', + 'task_performed' => 'Задание выполнено', + 'text_field' => 'Текстовое поле', + 'theme_name' => 'Имя', + 'title' => 'Управление пользователями', + 'timeout' => 'Ошибка таймаута', + 'to' => 'на', + 'total_records' => 'Всего записий', + 'to_date' => 'по', + 'translate_reports' => 'Перевести сообщения', + 'trigger' => 'Условие', + 'triggering_user' => 'Триггерный пользователь', + 'triggers' => 'Условия', + 'unapproved' => 'Не подтверждено', + 'unknown' => 'Неизвестно', + 'unknown_failure' => 'Неизвестная ошибка', + 'unread' => 'Не прочитано', + 'unsubscribe_message' => 'Вы больше не будете получать уведомлений от', + 'update_link' => 'Нажмите чтобы обновить сейчас', + 'upgrade_ushahidi' => 'Обновление платформы Ушахиди', + 'upgrade_ushahidi_status' => 'Статус обновления платформы Ушахиди', + 'upload_reports' => 'Загрузить сообщения', + 'user' => 'Пользователь', + 'users' => 'Пользователи', + 'ushahidi' => 'Ушахиди', + 'verified_unverified' => 'статус "Проверено" изменён', + 'verify_unverify' => 'Проверено/Не проверено', + 'version' => 'Версия', + 'version_available' => 'готов к обновлению.', + 'video_encoding' => 'Сжатие видео', + 'view_private' => 'Личные сообщения', + 'view_site' => 'Просмотреть сайт', + 'view_report' => 'Просмотреть сообщения', + 'welcome' => 'Добро пожаловать ', + 'wiki' => 'Вики', + 'xml' => 'XML', + 'yes' => 'Да', + 'your_search_for' => 'Ваш поиск для', + 'delete_all_instructions' => 'Нажатие на кнопку ниже, удалит все отчеты в базе данных. Делайте это осторожно, поскольку эта операция не может быть отменена.', + 'delete_all_backup' => 'Мы рекомендуем вам сделать резервную копию вашей базы данных, прежде чем продолжить', + 'delete_all_button' => 'Я уверен, что хочу удалить все %s сообщений из базы данных.', + 'delete_all_confirm' => 'Вы уверены, что хотите удалить все сообщения?', + 'delete_all_no_reports' => 'Нет отчётов для удаления.', + 'user_no_logins' => 'Количество входов', + 'user_last_login' => 'Последний вход', + 'user_confirmed_account' => 'Подтвержденный аккаунт?', +); diff --git a/application/i18n/ru_RU/ui_main.php b/application/i18n/ru_RU/ui_main.php new file mode 100644 index 0000000000..cccd426379 --- /dev/null +++ b/application/i18n/ru_RU/ui_main.php @@ -0,0 +1,621 @@ + 'О нас', + 'access' => 'Доступ', + 'access_limits' => 'Ограничение доступа', + 'account_name' => 'Имя пользователя', + 'actions' => 'Действия', + 'action_confirm' => 'Это действие нельзя будет отменить, вы уверены что хотите продолжить?', + 'activate' => 'Активировать', + 'active' => 'Активные', + 'add' => 'Добавить', + 'added_by' => 'Добавлен', + 'additional_data' => 'Дополнительные данные', + 'additional_reports' => 'Дополнительные cообщения', + 'add_edit' => 'Добавить/редактировать', + 'add_field' => 'Добавить поле', + 'add_language' => 'Добавить язык', + 'add_new' => 'Добавить новое', + 'add_new_category' => 'Добавить новую категорию', + 'add_translation' => 'Добавить перевод', + 'admin' => 'Администрация', + 'alerts' => 'Оповещения', + 'alerts_alert_me' => 'Уведомить меня, если cообщение будет оставлено здесь или поблизости:', + 'alerts_btn_send' => 'Сохранить настройки подписки', + 'alerts_email' => 'E-mail адрес:', + 'alerts_enter_email' => 'введите адрес e-mail', + 'alerts_enter_mobile' => 'введите телефонный номер с кодом страны', + 'alerts_get' => 'Подписка на оповещения', + 'alert_has_been' => 'Оповещение ', + 'alerts_mobile_phone' => 'Номер телефона:', + 'alerts_place_spot' => 'Отметьте место на карте для того, чтобы получать оповещения о новых сообщениех в выбранных пределах', + 'alerts_place_spot2' => 'Если вы не можете найти место по названию, укажите его на карте вручную', + 'alerts_rss' => 'Новостная RSS-лента (скопируйте адрес ниже)', + 'alerts_select_city' => 'Выберите город', + 'alerts_step1_select_city' => 'Шаг 1. Выберите место', + 'alerts_step2_send_alerts' => 'Шаг 2. Отправлять оповещения на:', + 'alerts_step3_select_catgories' => 'Шаг 3 (опционально). Укажите категории:', + 'alert_confirm_previous' => 'Подтвердить подписку', + 'alert_saved' => 'Ваши настройки оповещения сохранены', + 'all' => 'Все', + 'allowed' => 'Допущенный', + 'allowed_tags' => 'Разрешенные HTML теги: "%s".', + 'allowed_iframes' => 'I-кадры разрешены только от: % s.', + 'all_categories' => 'Все категории', + 'all_time' => 'За всё время', + 'and' => 'и', + 'api' => 'API', + 'approve' => 'Подтвердить', + 'approved' => 'подтверждено', + 'approved_reports' => 'Подтверждённые сообщения', + 'approve_this_report' => 'Подтвердить это сообщение', + 'approximate' => 'Приблизительно', + 'archive' => 'Архив', + 'archived' => 'Архивный', + 'ascending' => 'По возрастанию', + 'at' => 'в', + 'author' => 'Автор', + 'auto_checkin' => 'Входить автоматически', + 'avg_reports_per_day' => 'Среднее сообщений/день', + 'awaiting_approval' => 'Ожидание подтверждения', + 'awaiting_verification' => 'Ожидание проверки', + 'badge' => 'Награда', + 'badges' => 'Награды', + 'badge_image' => 'Изображение награды', + 'badge_image_upload_your_own' => 'Или вы можете загрузить собственную картинку награды', + 'badge_pack' => 'Пак наград', + 'badge_select' => 'Выберите награду', + 'blog' => 'Блог', + 'browse_profiles' => 'Просмотр анкет', + 'cancel' => 'Отменить', + 'categories' => 'Категории', + 'category' => 'Категория', + 'category_filter' => 'Фильтр категорий', + 'category_has_been' => 'Категория была', + 'category_name' => 'Название категории', + 'change_date_range' => 'Изменить диапазон дат', + 'change_password' => 'Изменить пароль', + 'change_picture' => 'Изменить аватар', + 'choose' => 'Выберите', + 'choose_data_points' => 'Выберите данные для скачивания', + 'choose_date_range' => 'Или выберите свой собственный диапазон дат', + 'choose_field_type' => 'Выберите тип поля', + 'cleanurl' => '"Чистые" URL', + 'clear' => 'Сброс', + 'clear_map' => 'Очистить карту', + 'close' => 'Закрыть', + 'clusters' => 'кластеры', + 'color' => 'Цвет', + 'comment' => 'Комментарий', + 'comments' => 'Комментарии', + 'comment_details' => 'Подробности комментария', + 'configuration_saved' => 'Настройки сохранены', + 'configure' => 'Настроить', + 'confirm_email_successful' => 'Вы успешно подтвердили свой адрес электронной почты. Можете авторизоваться.', + 'confirm_email_successful_and_approval' => 'Вы успешно подтвердили свой адрес электронной почты! Чтобы войти в систему, нужно дождаться подтверждения администратора', + 'confirm_email_failed' => 'Письмо для подтверждения электронного ящика не отправлено. Вы можете запросить новое подтверждение по ссылке ниже.', + 'contact' => 'Обратная связь', + 'contact_code' => 'Анти-спам код', + 'contact_email' => 'E-mail', + 'contact_message' => 'Сообщение', + 'contact_message_has_send' => 'Ваше сообщение отправлено', + 'contact_name' => 'Имя', + 'contact_phone' => 'Контактный телефон', + 'contact_send' => 'Отправить сообщение', + 'contact_subject' => 'Тема сообщения', + 'copyright' => '© 2012 Ushahidi.com', + 'create' => 'Создать', + 'create_edit' => 'Создать/редактировать', + 'create_new' => 'Создать новое', + 'create_new_password' => 'Создать новый пароль', + 'create_report' => 'Создать сообщение', + 'credibility' => 'Достоверность', + 'current_password' => 'Текущий пароль', + 'custom_fields' => 'Другие поля', + 'data' => 'Информация', + 'date' => 'Дата', + 'date_format' => 'ММ/ДД/ГГГГ', + 'date_time' => 'Дата и время', + 'day' => 'день', + 'deactivate' => 'Деактивировать', + 'default_location_name' => 'Москва, Россия', + 'delete' => 'Удалить', + 'deleted' => 'Удалено', + 'deletes' => 'Удаленные', + 'delete_disabled' => 'Удаление отключено', + 'delete_last' => 'Удалить последнее', + 'delete_report' => 'Удалить это сообщение', + 'delete_selected' => 'Удалить выбранное', + 'delete_spam' => 'Удалить спам', + 'demo' => 'Пример', + 'description' => 'Подробное описание', + 'descending' => 'По убыванию', + 'detailed_location_example' => 'Пример: Москва Сивцев Вражек 27', + 'details' => 'Подробности', + 'direct_report' => 'Прямое Сообщение', + 'disabled' => 'Отключено', + 'disapprove' => 'Отклонить', + 'download_reports' => 'Скачать сообщения', + 'download' => 'Скачать', + 'edit' => 'Редактировать', + 'edit_form_fields' => 'Изменить поля формы', + 'edit_report' => 'Редактировать сообщения', + 'email' => 'E-mail', + 'email_address' => 'E-mail адрес', + 'email_configuration' => 'Настройки почтового сервера', + 'email_server_host' => 'Хост почтового сервера', + 'email_server_password' => 'Пароль учетной записи e-mail', + 'email_server_port' => 'Порт почтового сервера', + 'email_server_ssl_support' => 'Поддержка SSL почтовым сервером', + 'email_server_type' => 'Тип почтового сервера', + 'email_server_username' => 'Имя пользователя учетной записи e-mail', + 'email_settings_comment_0' => 'ваши настройки будут связаны с этим e-mail', + 'email_settings_comment_00' => 'Чтобы получать сообщения на электронную почту, введите ниже свой e-mail адрес.', + 'email_settings_comment_1' => 'Некоторые серверы могут просить полный e-mail адрес', + 'email_settings_comment_2' => 'Пароль учетной записи e-mail', + 'email_settings_comment_3' => 'Общепринятые порты: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Например: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Например: pop3, imap', + 'email_settings_comment_6' => 'Включить/выключить SSL подключения', + 'empty' => '---ПУСТО---', + 'end_point' => 'в', + 'error' => 'Ошибка!', + 'example' => 'Например', + 'example_country' => 'Россия', + 'external_apps' => 'Внешние приложения', + 'external_video_link' => 'Ссылка на видео', + 'facebook' => 'Facebook', + 'feed' => 'Новостная лента', + 'feedback' => 'Ваше мнение о платформе Ушахиди', + 'feedback_reports' => 'Пожалуйста, расскажите нам о том, что вы узнали, в письме на электронную почту', + 'feeds' => 'Новостные ленты', + 'feed_has_been' => 'Новостная лента была', + 'feed_items' => 'Новость', + 'feed_name' => 'Название новостной ленты', + 'feed_url' => 'Адрес новостной RSS-ленты', + 'field_unused' => 'Неиспользованные поля', + 'file' => 'Файл', + 'file_over_max_allowed' => 'Вы файл превышает максимально допустимый размер.', + 'filters' => 'Показать', + 'filter_reports' => 'Фильтровать Сообщения', + 'filter_reports_by' => 'Фильтр сообщений', + 'filter_reports_contain' => 'Показывать сообщения, которые содержат', + 'find' => 'Найти', + 'find_location' => 'Найти место', + 'first_name' => 'Имя', + 'force_run_scheduler' => 'Принудительно запустить планировщик', + 'forgot_password' => 'Забыли пароль?', + 'form' => 'Форма', + 'forms' => 'Формы', + 'form_description' => 'Описание формы', + 'form_edit' => 'Изменить эту форму', + 'form_has_been' => 'Форма была', + 'form_title' => 'Название формы', + 'from' => 'От', + 'full_name' => 'Полное имя', + 'geolocation_available' => 'GeoLocation', + 'geometry_color' => 'Цвет', + 'geometry_comments' => 'Комментарии', + 'geometry_label' => 'Метка', + 'geometry_strokewidth' => 'Толщина черты', + 'go' => 'Поехали!', + 'hashtag' => 'Хэштег', + 'has_been' => 'Было', + 'help' => 'Как помочь?', + 'hidden' => 'Скрыто', + 'hide' => 'Скрыть', + 'hide_this_message' => 'Скрыть это сообщение', + 'home' => 'Главная', + 'how_to_report' => 'Как добавить сообщение', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Используется для идентификации вас на сайте для других пользователей.', + 'image' => 'Изображение', + 'images' => 'Изображения', + 'image_icon' => 'Изображение/иконка', + 'inactive' => 'Неактивные', + 'inbox' => 'Входящие', + 'incident' => 'Событие', + 'incidents_nearby' => 'Сообщения поблизости', + 'incident_location' => 'Местоположение сообщения', + 'include' => 'Включая', + 'include_categories' => 'Категории', + 'include_custom_fields' => 'Включить пользовательские поля', + 'include_description' => 'Описание', + 'include_detail' => 'Дайте максимум информации', + 'include_latitude' => 'Широта', + 'include_location_information' => 'Местоположение', + 'include_longitude' => 'Долгота', + 'include_personal_info' => 'Включать Личную Информацию.', + 'incoming_media' => 'Входящее MMS', + 'information_evaluation' => 'Оценка данных', + 'input_location' => 'Введите точное местоположение', + 'insufficient_role' => 'Ваша учётная запись не может быть авторизована. Пожалуйста, свяжитесь с администратором.', + 'in_response_to' => 'В ответ на', + 'ip_address' => 'IP адрес', + 'is_this_your_profile' => 'Это ваша анкета?', + 'item' => 'запись', + 'items' => 'записи', + 'item_details' => 'Запись', + 'item_title' => 'Название записи', + 'key' => 'Ключ', + 'keywords' => 'Ключевые слова', + 'kml_kmz_file' => 'KMZ/KML файл', + 'kml_kmz_upload' => 'Загрузить KMZ/KML файл', + 'kml_url' => 'KML адрес', + 'laconica' => 'Laconica', + 'language' => 'Язык', + 'last' => 'Последний', + 'last_month' => 'Последний месяц', + 'last_name' => 'Фамилия', + 'last_year' => 'Последний год', + 'latitude' => 'Широта', + 'layers' => 'Слои', + 'layers_filter' => 'Другие слои', + 'layer_has_been' => 'Слои были', + 'layer_name' => 'Название слоя', + 'layer_url' => 'Адрес слоя', + 'leave_a_comment' => 'Оставьте комментарий', + 'less_information' => 'Меньше Информации', + 'level' => 'Уровень', + 'level_has_been' => 'Этот уровень был', + 'level_name' => 'Имя уровня', + 'limited' => 'Ограничен', + 'link' => 'Ссылка', + 'list' => 'Список', + 'loading_reports' => 'Загрузка сообщений', + 'location' => 'Местоположение', + 'locations' => 'Местоположения', + 'location_example' => 'Название населённого пункта', + 'login' => 'Войти', + 'login_account_creation_successful' => 'Учётная запись успешно создана. Можете авторизоваться.', + 'login_confirmation_sent' => 'Подтверждение было выслано на ваш e-mail.', + 'login_approval_required' => 'Учетная запись создана. Ваша учетная запись должна быть одобрена администрацией прежде, чем Вы сможете войти.', + 'login_email_doesnt_exist' => 'Адрес e-mail не существует. Попробуйте другой адрес или создайте учетную запись.', + 'login_select_openid' => 'Выберите провайдера вашей учетной записи', + 'login_with' => 'Войти, используя', + 'login_userpass' => 'E-mail и пароль', + 'login_openid' => 'OpenID', + 'login_signup' => 'Регистрация', + 'login_signup_click' => 'Зарегистрироваться', + 'login_signup_confirmation_message' => 'Спасибо за подписку на %1$s. Для подтверждения вашего e-mail адреса, пожалуйста перейдите по следующей ссылке: %2$s', + 'login_signup_confirmation_subject' => 'Подтверждение регистрации', + 'login_signup_admin_approval_message' => 'Новый пользователь подписан в %1$s. Чтобы утвердить их регистрацию, перейдите к URL: %2$s', + 'login_signup_admin_approval_subject' => 'Подтверждение нового пользователя', + 'login_signup_approval_message' => 'Ваша учетная запись пользователя %1$s подтверждена. Чтобы войти, перейдите к URL: %2$s', + 'login_signup_approval_subject' => 'Учетная запись пользователя подтверждена', + 'login_signup_text' => 'Зарегистрируйтесь, чтобы использовать все возможности сайта.', + 'longitude' => 'Долгота', + 'map' => 'Карта', + 'mark_read' => 'Пометить как прочитанное', + 'mark_unread' => 'Пометить как непрочитанное', + 'maximum_filesize' => 'Максимальный размер файла', + 'media' => 'Содержание', + 'media_filter' => 'Медиа-фильтр', + 'members' => 'Пользователи', + 'manage_your_account' => 'Настройка своего аккаунта', + 'message' => 'Сообщение', + 'messages' => 'Сообщения', + 'message_details' => 'Сообщения', + 'message_non_numeric_source' => 'Сообщение от нечислового источника:', + 'mobile' => 'Мобильный', + 'modify' => 'Изменить', + 'modify_date' => 'изменить дату', + 'month' => 'месяц', + 'more' => 'Больше', + 'more_information' => 'Больше информации', + 'multi_country_instance' => 'Использует ли эта Ушахиди-карта в нескольких странах одновременно?', + 'must_confirm_email_address' => 'Вы должны подтвердить ваш e-mail адрес для доступа к ресурсу. Если вы потеряете письмо для подтверждения, то можете запросить еще одно.', + 'name' => 'Имя', + 'nearby_report' => 'Ближайшие сообщения', + 'new' => 'Новое', + 'news' => 'Новости', + 'news_feeds' => 'Новостная лента', + 'news_source' => 'Источник новостей', + 'new_category' => 'Новая категория', + 'new_password' => 'Новый пароль', + 'new_report' => 'Новое сообщение', + 'next' => 'Следующее', + 'no' => 'Нет', + 'no_checkins' => 'Нет проверок для отображения.', + 'no_data' => 'Нет данных.', + 'none' => 'Нет', + 'notices' => 'Уведомления', + 'not_approved' => 'Не подтверждён', + 'not_approved_singular' => 'Не подтверждён', + 'not_selected' => '---Не Выбрано---', + 'not_spam' => 'Не спам', + 'not_specified' => 'Не указано', + 'no_reports' => 'Нет сообщений', + 'no_results' => 'Нет результатов', + 'off' => 'Выкл.', + 'official_news' => 'Новости по теме', + 'on' => 'Вкл.', + 'option' => 'Опция', + 'optional' => 'Опционально', + 'options' => 'Опции', + 'organization' => 'Организация', + 'organizations' => 'Организации', + 'organization_description' => 'Описание организации', + 'organization_email' => 'E-mail организации', + 'organization_has_been' => 'Организация была', + 'organization_name' => 'Название организации', + 'organization_phone_1' => '1-й телефон организации', + 'organization_phone_2' => '2-й телефон организации', + 'organization_website' => 'Сайт организации', + 'original' => 'Первоисточник', + 'original_description' => 'Изначальное описание', + 'original_title' => 'Изначальное название', + 'other_ushahidi_instances' => 'Другие Ушахиди-карты', + 'outbox' => 'Исходящие', + 'outgoing' => 'Исходящий', + 'page' => 'Страница', + 'pages' => 'Страницы', + 'page_description' => 'Описание страницы', + 'page_has_been' => 'Страница была ', + 'page_tab_name' => 'Название вкладки страницы', + 'page_title' => 'Заголовок страницы', + 'parent_category' => 'Родительская категория', + 'password' => 'Пароль', + 'password_again' => 'Введите пароль еще раз', + 'password_changed_successfully' => 'Пароль успешно изменён. Авторизуйтесь.', + 'password_forgot' => 'Забыли пароль?', + 'password_reset_confirm' => 'Новый пароль был отправлен на ваш e-mail', + 'password_save' => 'Оставаться в системе', + 'past_month' => 'Прошлый месяц', + 'past_year' => 'Прошлый год', + 'pending' => 'На рассмотрении', + 'per' => 'в', + 'personal_information' => 'Личная информация (опционально)', + 'phone' => 'Телефон', + 'photos' => 'Фото', + 'pictures' => 'Изображения', + 'pictures_and_videos' => 'Изображения и видео', + 'pinpoint_location' => 'Введите название, или поставьте точку на карте', + 'play' => 'Воспроизвести', + 'please_note' => 'Имейте в виду:', + 'plugins' => 'Плагины', + 'plugin_url' => 'Сайт дополнений', + 'public_profile' => 'Открытая анкета', + 'public_profile_url' => 'URL открытого профиля', + 'preview' => 'Предпросмотр', + 'preview_item' => 'Предпросмотр записи', + 'preview_message' => 'Предпросмотр сообщения', + 'previous' => 'Предыдущее', + 'private' => 'Личное', + 'profile_color' => 'Цвет анкеты', + 'profile_saved' => 'Анкета была сохранена', + 'quick_stats' => 'Быстрая статистика', + 'rating' => 'Рейтинг', + 'read' => 'Читать', + 'receive' => 'Получить', + 'receive_from' => 'Получить от', + 'receive_notifications' => 'Получать уведомления', + 'recent_reports' => 'Последние сообщения', + 'refresh_news_feeds' => 'Обновить ленту новостей', + 'registered_email' => 'Зарегистрированный Email', + 'remove' => 'Убрать', + 'reply' => 'Ответить', + 'report' => 'Сообщение', + 'reports_listed' => 'Сообщения (с карты, перечислены в хронологическом порядке)', + 'reporter' => 'Корреспондент', + 'reporters' => 'Корреспонденты', + 'reporter_date' => 'Дата регистрации корреспондента', + 'reporter_email' => 'E-mail корреспондента', + 'reporter_first_name' => 'Имя корреспондента', + 'reporter_has_been' => 'Корреспондент был', + 'reporter_ip' => 'IP адрес корреспондента', + 'reporter_last_name' => 'Фамилия корреспондента', + 'reporter_level' => 'Уровень корреспондента', + 'reporter_levels' => 'Уровни корреспондента', + 'reporter_phone' => 'Телефон корреспондента', + 'reports' => 'Сообщения', + 'reports_btn_browse' => 'Обзор', + 'reports_btn_submit' => 'Отправить', + 'reports_by_this_user' => 'Сообщений от этого пользователя', + 'reports_categories' => 'Категории', + 'reports_count' => '%d Сообщений', + 'reports_date' => 'Дата', + 'reports_description' => 'Подробное описание', + 'reports_download_csv' => 'Сообщения будет сохранены в CSV формате', + 'reports_email' => 'E-mail', + 'reports_features' => 'Возможности', + 'reports_find_location' => 'Найти место рядом с вами', + 'reports_first' => 'Имя', + 'reports_last' => 'Фамилия', + 'reports_location_name' => 'Уточните местоположение', + 'reports_news' => 'Ссылка на новость', + 'reports_optional' => 'Отправитель (опционально)', + 'reports_photos' => 'Загрузить фото', + 'reports_return' => 'Вернуться на страницу сообщений', + 'reports_select_city' => 'Выбрать город', + 'reports_submitted' => 'Спасибо, сообщение было отправлено на рассмотрение. В случае необходимости, мы обязательно свяжемся с вами.', + 'reports_submit_new' => 'Отправить новое сообщение ', + 'reports_time' => 'Время', + 'reports_timeline' => ', график добавления', + 'reports_title' => 'Краткое название', + 'reports_video' => 'Ссылка на видео', + 'report_an_incident' => 'Сообщить о событии', + 'report_details' => 'Описание сообщения', + 'report_option_1' => 'Отправьте SMS на номер', + 'report_option_2' => 'Отправьте письмо на e-mail', + 'report_option_3' => 'Отправьте твит с хэштегом(и)', + 'report_option_4' => 'Заполните форму', + 'report_option_external_apps' => 'Через внешнее приложение', + 'report_saved' => 'Ваше сообщение было сохранено', + 'report_title' => 'Название сообщения', + 'request_information' => 'Запросить больше информации', + 'request_location' => 'Запросить местоположение', + 'required' => 'Обязательно', + 'requirements' => 'Требования', + 'resend_confirm_email' => 'Отправить повторно письмо для подтверждения', + 'reset' => 'Сброс', + 'reset_all_filters' => 'Сброс всех фильтров', + 'reset_password' => 'Сбросить пароль', + 'retrieve_city_names' => 'Получить название городов выбранной страны', + 'riverid_information' => 'Аккаунт управляется сервисом %s.', + 'riverid_exists_login' => 'Вы уже имеете учетную запись CrowdmapID! Попробуйте использовать ваш CrowdmapID адрес электронной почты и пароль для входа.', + 'role' => 'Роль', + 'rss' => 'RSS', + 'save' => 'Сохранить', + 'saved' => 'Сохранен', + 'save_add_new' => 'Сохранить и добавить новое', + 'save_close' => 'Сохранить и закрыть', + 'save_report' => 'Сохранить сообщение', + 'schedule' => 'Расписание', + 'scheduler' => 'Планировщик', + 'scheduler_day' => 'День', + 'scheduler_hour' => 'Час', + 'scheduler_log' => 'Журнал планировщика', + 'scheduler_minute' => 'Минута', + 'scheduler_weekday' => 'День недели', + 'search' => 'ПОИСК', + 'search_results' => 'Результаты поиска', + 'security_code' => 'Защитный код', + 'select_all' => 'Выбрать все', + 'select_field_type' => 'Выбрать тип поля', + 'select_form_type' => 'выберите тип', + 'select_in_map' => 'Выбрать на карте', + 'select_multiple' => 'Выберите необходимые', + 'select_one' => 'Выберите, как минимум, одну запись', + 'select_theme' => 'Выбрать тему', + 'send' => 'Отправить', + 'send_confirmation' => 'Отправить Подтверждение', + 'sending_to' => 'Отправить', + 'sent' => 'Отправлено', + 'sent_by' => 'Отправлено', + 'server_address' => 'Адрес сервера', + 'server_type' => 'Тип сервера', + 'service' => 'Служба', + 'service_username' => 'Имя пользователя службы', + 'service_user_id' => 'ID службы пользователя', + 'share' => 'Поделиться', + 'shared_data' => 'Общие данные', + 'share_has_been' => 'Совместное использование было', + 'sharing' => 'Совместные ушахиди-карты', + 'shorter_map' => 'Карта короче', + 'show' => 'Показать', + 'show_all' => 'Показать все', + 'show_messages' => 'Показать сообщения', + 'showing_reports_from' => 'Сообщения с %1$s до %2$s', + 'site' => 'Сайт', + 'site_email_address' => 'e-mail сайта', + 'site_url' => 'Адрес сайта', + 'smaller_map' => 'Карта поменьше', + 'sms' => 'SMS', + 'sorry_no_badges' => 'К сожалению, у вас нет наград.', + 'source' => 'Источник информации', + 'source_name' => 'Название источника', + 'sort' => 'Сортировать', + 'sort_by' => 'Сортировать по', + 'source_url' => 'Адрес источника', + 'spam' => 'Спам', + 'ssl_support' => 'SSL поддержка?', + 'start_point' => 'От', + 'step' => 'Шаг', + 'submit' => 'Отправить сообщение', + 'submitted_by' => 'Добавлено %1$s через %2$s', + 'submit_sms' => 'Отправить через SMS', + 'submit_sms1' => 'Отправить SMS для', + 'submit_sms2' => 'на вашем телефоне', + 'success' => 'Успешно!', + 'successfuly_imported' => 'Успешно импортирован', + 'surname' => 'Фамилия', + 'survey' => 'Исследование', + 'system' => 'Система', + 'taller_map' => 'Карта выше', + 'tcp_port' => 'TCP-порт', + 'themes' => 'Темы', + 'theme_default' => 'Стандартная тема Ушахиди', + 'theme_settings' => 'Настройки темы', + 'this' => 'Это', + 'this_day' => 'Сегодня', + 'this_month' => 'В этом месяце', + 'this_week' => 'На этой неделе', + 'this_year' => 'В этом году', + 'this_is_your_profile' => 'Это ваша анкета.', + 'time' => 'время', + 'title' => 'Название', + 'to' => 'до', + 'today' => 'Сегодня', + 'today_at' => 'сегодня в', + 'token' => 'Токен', + 'total_reports' => 'Всего сообщений', + 'translated' => 'Переведен', + 'translated_description' => 'Описание перевода', + 'translated_title' => 'Название перевода', + 'translate_to' => 'Перевести на', + 'translation' => 'Перевод', + 'translation_saved' => 'Перевод был сохранен', + 'trusted' => 'Доверенные', + 'type' => 'Источник', + 'twitter' => 'Твиттер', + 'unable_send_email' => 'Невозможно отправить сообщение.', + 'uncategorized_reports' => 'Отчёты без категорий', + 'unread' => 'Непрочитанный', + 'unverified' => 'Не проверено', + 'update_feeds' => 'Обновить новостные ленты', + 'upload' => 'Отправить', + 'upload_guide' => 'Посмотреть руководство по добавлению сообщений', + 'upload_docs_1' => 'Руководство по добавлению XML', + 'upload_docs_2' => 'Руководство по добавлению CSV', + 'upload_file' => 'Файл для экспортирования', + 'upload_reports' => 'Отправить сообщения', + 'upload_reports_custom_forms' => 'Столбцы заказного поля должны иметь свой form_id присоединенный к ним, например, заказное поле Test, в форме по умолчанию, чей id = 1, будет Test-1. При импорте поля заказной формы, проверьте это', + 'upload_reports_detail_1' => 'Ниже вы можете экспортировать сообщения в БД Ушахиди', + 'upload_reports_detail_2' => 'Сообщения должны быть загружены в формате CSV или XML. ', + 'upload_reports_detail_3' => 'Когда ID события уже существует в базе данных, запись в CSV/XML файле будет проигнорирована.', + 'upload_reports_detail_4' => 'Запись должна содержать, как минимум, название и дату', + 'upload_reports_detail_4b' => 'Если не указана долгота и широта, расположение будет гео-кодировано с использованием Google Geocoder.', + 'upload_reports_detail_4c' => 'При импорте дополнительной информации, т.е. личной информации и-или заказных полей формы', + 'upload_reports_detail_4d' => 'По крайней мере одно из полей личной информации ( имя, фамилия, email) должно быть заполнено. Пустые строки не будут импортированы', + 'upload_reports_detail_4e' => 'Ваши данные для выпадающего списка, переключателей и флажков соответствует возможностям, предоставляемым для заказного поля в вашем экземпляре', + 'upload_reports_detail_4f' => 'Опции переключателя отделяет запятая, например, если вы выбрали фрукты - яблоки, манго и виноград, вы должны ввести "яблоки,манго,виноград"', + 'upload_reports_detail_4g' => 'Поле дата следующего формата мм/дд/гггг, например 3 октября 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Пример CSV-записи', + 'upload_reports_detail_6' => '#,НАЗВАНИЕ_СООБЩЕНИЯ,ДАТА_СОБЫТИЯ,МЕСТОПОЛОЖЕНИЕ,ОПИСАНИЕ,КАТЕГОРИЯ,ПОДТВЕРЖДЕНИЕ,ПРОВЕРКА', + 'upload_reports_detail_7' => '"1","Нападение ситхов","2010-06-10 01:06:00","Набу","Без договора","Империя",ДА,НЕТ
"2","Зомби","2010-06-11 10:10:00","Ракун сити","Зомби везде","Группа зачистки",ДА,ДА', + 'upload_successful' => 'Отправка успешно завершена', + 'upload_video' => 'Загрузить видео', + 'url' => 'URL', + 'user' => 'Пользователь', + 'username' => 'Имя пользователя', + 'ushahidi_admin' => 'Ушахиди-администратор', + 'verification' => 'Достоверность', + 'verified' => 'Проверено', + 'verified_reports' => 'Проверенные сообщения', + 'verify' => 'Проверить', + 'verify_this_report' => 'Проверить это сообщение', + 'version' => 'Версия', + 'via' => 'через', + 'video' => 'Видео', + 'view' => 'Вид', + 'views' => 'Просмотров', + 'view_all' => 'Показать всё', + 'view_all_feeds' => 'Показать все новостные ленты', + 'view_all_reports' => 'Показать все сообщения', + 'view_items' => 'Показать новости', + 'view_more' => 'Ещё', + 'view_public_profile' => 'Публичный профиль', + 'view_report' => 'Показать сообщение', + 'view_reports' => 'Показать сообщения', + 'view_video' => 'Смотреть видео', + 'visible' => 'Виден', + 'waiting_approval' => 'Ожидание подтверждения', + 'waiting_verification' => 'Ожидание проверки', + 'wider_map' => 'Карта пошире', + 'web_form' => 'Веб-форма', + 'web' => 'Веб', + 'weight' => 'Вес', + 'yes' => 'Да', + 'yesterday' => 'Вчера', + 'your_dashboard' => 'Приборная панель', + 'your_file' => 'Ваш файл', + 'zoom_in' => 'Приблизить', + 'zoom_out' => 'Отдалить', +); diff --git a/application/i18n/ru_RU/upgrade.php b/application/i18n/ru_RU/upgrade.php new file mode 100755 index 0000000000..b348ee1d60 --- /dev/null +++ b/application/i18n/ru_RU/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Неверные введенные данные. Разрешено 0 для НЕТ и 1 для ДА.', + ) , + 'upgrade_automatic' => 'Автоматическое обновление', + 'upgrade_available' => 'Обновление доступно', + 'upgrade_continue_btn_text' => 'Продолжить', + 'upgrade_db_btn_text' => 'Обновление', + 'upgrade_db_text_1' => 'Будет обновлена БД версии', + 'upgrade_db_text_2' => 'на новейшую', + 'upgrade_db_text_3' => 'Нажмите "Обновить" и наблюдайте за выполнением действа', + 'upgrade_db_text_4' => 'Если вы хотите создать резервную копию базы данных, нажмите кнопку ниже', + 'upgrade_db_text_5' => 'Создать резервную копию базы данных перед обновлением? (Настоятельно рекомендуется!)', + 'upgrade_db_title' => 'Обновление базы данных Ushahidi', + 'upgrade_db_info' => 'Ushahidi был обновлен! Прежде чем продолжить, нужно обновить вашу базу данных до последней версии (% s).', + 'upgrade_db_up_to_date' => 'Ваша версия базы данных актуальна.', + 'upgrade_failed' => 'Обновление прервалось', + 'upgrade_manual' => 'Ручное обновление', + 'upgrade_status' => 'Статус обновления Ushahidi', + 'upgrade_text_1' => 'Инструкция ниже, как обновить Ushahidi вручную', + 'upgrade_text_2' => 'Шаг 1: Скачайте последнюю версию ushahidi с http://download.ushahidi.com', + 'upgrade_text_3' => 'Шаг 2: В зависимости от ОС сервера, выберите нужный канал передачи (i.e: telnet, ftp, ssh) для входа на веб сервер и полностью переместите содержимое последней версией Ushahidi. ИСКЛЮЧАЯ:', + 'upgrade_text_4' => 'Шаг 4: Нажмите кнопку "Продолжить", что бы обновить необходимые таблицы.', + 'upgrade_tables' => 'Шаг 3: Просмотрите sql папку. Вручную выполните обновление-.sql файла, с текущей установленной версии базы данных до последнего обновления sql файла.', + 'upgrade_text_5' => 'Для автоматического обновления, нажмите кнопку ниже', + 'upgrade_text_6' => 'Для автоматического обновления нажмите на кнопку ниже', + 'upgrade_title_text' => 'Вы в настоящий момент используете Ushahidi v%1$s с версией базы данных %2$d, работающей на %3$s', + 'upgrading' => 'Обновляется', + 'upgrade_ftp_text' => 'Чтобы продолжить простое обновление, серверу FTP, на котором размещен ваш вебсайт, нужна следующая информация.', + 'upgrade_ftp_hostname' => 'FTP сервер :Например: "localhost"', + 'upgrade_ftp_password' => 'FTP пароль:', + 'upgrade_ftp_username' => 'FTP логин:', + 'upgrade_status_info' => 'У вас установлена последняя версия Ushahidi/', + 'upgrade_status_info_2' => 'Вам не надо обновляться', + 'upgrade_db_version' => 'Версия базы данных: %d', + 'upgrade_warning_software_version' => 'Внимание: Версия программы в version.php и базе данных не совпадает.', + 'upgrade_warning_db_version' => 'Внимание: версия Базы данных в version.php и базе данных не совпадает.', + 'upgrade_database' => 'База данных:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Скачивание последней версии ushahidi...', + 'log_file' => 'Лог файл', + 'successfully_downloaded' => 'Скачивание завершено. Распаковка...', + 'failed_downloading' => 'Сбой скачивания', + 'successfully_unpacked' => 'Распаковка завершена. Копирование файлов...', + 'failed_unpacking' => 'Ошибка распаковки', + 'successfully_copied' => 'Копирование завершено. Обновление базы данных...', + 'failed_copying' => 'Ошибка копирования фалов', + 'backup_success' => 'Резервное копирование и обновление базы данных завершено', + 'backup_failed' => 'Ошибка резервного копирования базы данных', + 'dbupgrade_success' => 'Обновление базы данных завершено', + 'deleting_files' => 'Удаление временных файлов', + 'upgrade_success' => 'Обновление завершено. Посмотрите Лог файл', +); diff --git a/application/i18n/sa/alerts.php b/application/i18n/sa/alerts.php new file mode 100644 index 0000000000..2af43689ca --- /dev/null +++ b/application/i18n/sa/alerts.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Pole "E-mail" nezobrazuje platnú e-mailovú adresu.', + 'email_check' => 'Táto e-mailová adresa už bola pre obdržiavanie záznamov o miestach registrovaná.', + 'length' => 'Pole "E-mail" musí obsahovať aspoň 4 a nie viac ako 64 znakov.', + 'required' => 'Pole "E-mail" je povinné ak je políčko zaškrknuté.', + ) , + 'alert_country' => array( + 'single_country' => 'Toto umiestnenie spadá len pod jednu krajinu. Prosím uistite sa, že ', + ) , + 'alert_lat' => array( + 'between' => 'Na mape ste zvolili nesprávne miesto.', + 'required' => 'Na mape ste zvolili nesprávne miesto.', + ) , + 'alert_lon' => array( + 'between' => 'Na mape ste zvolili nesprávne miesto.', + 'required' => 'Na mape ste zvolili nesprávne miesto.', + ) , + 'alert_mobile' => array( + 'length' => 'Pole "Mobilný telefón" pravdepodobne neobsahuje správny počet číslic.', + 'mobile_check' => 'Tento mobilný telefón už bol pre obdržiavanie záznamov o miestach registrovaný.', + 'numeric' => 'Pole "Mobilný telefón" pravdepodobne neobsahuje platné číslo. Prosím zadajte číslo začínajúce kódom krajiny.', + 'one_required' => 'Musíte zadať buď svoje číslo mobilného telefónu alebo e-mailovú adresu.', + 'required' => 'Pole "Mobilný telefón" je povinné ak je políčko zaškrknuté.', + ) , + 'alert_radius' => array( + 'in_array' => 'Nemáte na mape nastavený platný rádius.', + 'required' => 'Na mape nemáte nastavený rádius.', + ) , + 'alert_recipient' => array( + 'required' => 'Nemáte nastaveného príjemcu pre upozornenia.', + ) , + 'alerts_subscribed' => 'Prihlásili ste sa na odber v nasledujúcich kategóriach.', + 'code_already_verified' => 'Tento kód už bol overený.', + 'code_not_found' => 'Overovací kód nebol nájdený! Prosím potvrďte, či máte správnu URL.', + 'code_verified' => 'Váš kód bol overený úspešne. Odteraz budete dostávať upozornenia o udalostiach tak, ako sa udejú.', + 'confirm_request' => 'Pre potvrdenie vášej požiadavky na upozornenia choďte prosím sem', + 'create_more_alerts' => 'Pre vytvorenie viac upozornení sa prosím vráťte na stránku upozornení.', + 'email_alert_request_created' => 'Vaša požiadavka na e-mailové upozornenia bola vytvorená a overovacia správa bola poslaná na', + 'email_code' => 'Prosím, kód potvrdzovací E-mail, ktorý ste obdržali zadajte nižšie:', + 'email_error_head' => 'Požiadavka na upozornenie e-mailom NEBOLA uložená!', + 'email_ok_head' => 'Požiadavka na upozornenie e-mailom BOLA uložená!', + 'error' => 'Systém nie je schopný dokončiť vašu potvrdzovaciu požiadavku!', + 'mobile_alert_request_created' => 'Požiadavka na upozornenie mobilom bola vytvorená a overovacia správa bola odoslaná na', + 'mobile_code' => 'Prosím vložte SMS potvrdzovací kód, ktorý ste obdržali na mobilné číslo nižšie:', + 'mobile_error_head' => 'Vaša požiadavka na upozornenie na mobil NEBOLA uložená!', + 'mobile_ok_head' => 'Vaša požiadavka na upozornenie na mobil BOLA uložená!', + 'settings_error' => 'Toto umiestnenie nie je správne nastavené pre dokončenie upozornenia', + 'unsubscribe' => 'Tento e-mail ste dostali pretože odoberáte upozornenia. Ak si do budúcna neprajete dostávať tieto upozornenia, choďte sem', + 'unsubscribed' => 'Odteraz nebudete dostávať upozornenia od', + 'unsubscribe_failed' => 'Nie sme schopní vás odhlásiť. Prosím potvrďte, či máte správnu URL.', + 'verification_email_subject' => 'upozornenia - overenie', + 'verify_code' => 'Pokiaľ nepotvrdíte svoju požiadavku, upozornenia na toto umiestnenie nebudete dostávať.', +); diff --git a/application/i18n/sk/auth.php b/application/i18n/sk/auth.php new file mode 100644 index 0000000000..2578a6eef7 --- /dev/null +++ b/application/i18n/sk/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Zadali ste neplatný e-mail.', + 'exists' => 'Prepáčte, ale táto e-mailová adresa už je zaregistrovaná.', + 'length' => 'Pole "E-mail" musí obsahovať aspoň 4 a nie viac ako 64 znakov.', + 'required' => 'Pole "E-mail" je povinné.', + ) , + 'name' => array( + 'length' => 'Pole "Meno" musí mať aspoň 3 no nie viac ako 100 znakov.', + 'required' => 'Pole "Meno" je povinné.', + 'standard_text' => 'Uživateľské meno obsahuje nepovolené znaky.', + ) , + 'current_password' => array( + 'length' => 'Heslo musí mať najmenej 8 znakov.', + 'login error' => 'Prosím skontrolujte, či ste zadali správny e-mail a heslo.', + 'matches' => 'Prosím, zadajte v obidvoch poliach rovnaké heslo.', + 'required' => 'Pole "Heslo" je povinné.', + 'alpha_dash' => 'Heslo môže obsahovať iba abecedné znaky, znaky # a @, čísla, podčiarovníky a pomlčky.', + 'incorrect' => 'Zadali ste nesprávne heslo. Prosím skúste znovu.', + ) , + 'new_password' => array( + 'length' => 'Heslo musí mať najmenej 8 znakov.', + 'login error' => 'Prosím skontrolujte, či ste zadali správny e-mail a heslo.', + 'matches' => 'Prosím, zadajte v obidvoch poliach rovnaké heslo.', + 'required' => 'Pole "Heslo" je povinné.', + 'alpha_dash' => 'Heslo môže obsahovať iba abecedné znaky, znaky # a @, čísla, podčiarovníky a pomlčky.', + ) , + 'password' => array( + 'default' => 'Počas prihlasovania sa vyskytla chyba.', + 'length' => 'Heslo musí mať najmenej 8 znakov.', + 'login error' => 'Prosím skontrolujte, či ste zadali správny e-mail a heslo.', + 'matches' => 'Prosím, zadajte v obidvoch poliach rovnaké heslo.', + 'required' => 'Pole "Heslo" je povinné.', + 'riverid server down' => 'Overovací server je nedostupný. Prosím skúste to neskôr.', + 'riverid' => '%s', + 'alpha_dash' => 'Heslo môže obsahovať iba abecedné znaky, znaky # a @, čísla, podčiarovníky a pomlčky.', + ) , + 'password_confirm' => array( + 'matches' => 'Pole "Potvrdenie hesla" sa musí zhodovať s poľom "Heslo".', + ) , + 'resetemail' => array( + 'email' => 'Zadali ste neplatný e-mail.', + 'invalid' => 'Prepáčte, nemáme vašu e-mailovú adresu', + 'required' => 'Pole "E-mail" je povinné.', + ) , + 'role' => array( + 'superadmin_modify' => 'Len superadmin môže upravovať superadmina, alebo povýšiť uživateľa na administrátora.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Neplatný formát úlohy.', + 'length' => 'Pole "Úloha" musí mať najmenej 5 no nie viac ako 30 znakov.', + 'required' => 'Musíte zadať aspoň jednu úlohu.', + 'values' => 'Musíte vybrať buď administrátorskú, alebo uživateľskú úlohu.', + ) , + 'token' => array( + 'invalid' => 'Symbol zabudnuté heslo je nesprávny.', + 'required' => 'Symbol zabudnuté heslo bol povinný', + ) , + 'username' => array( + 'admin' => 'Úloha uživateľa Admin nemôže byť upravená.', + 'alpha_numeric' => 'Pole "URL pre verejný profil" musí obsahovať len čísla, alebo písmená.', + 'exists' => 'Prepáčte, tento verejný profil sa už používa.', + 'length' => 'Pole "URL pre verejný profil" musí mať najmenej 2 no nie viac než 100 znakov.', + 'login error' => 'Prosím skontrolujte, či ste zadali správnu URL pre verejný profil.', + 'required' => 'Pole "URL pre verejný profil" je povinné.', + 'superadmin' => 'Úloha pre super administrátora nemôže byť upravená.', + 'csrf' => 'Prevdepodobnosť CSRF útoku. Naozaj ste chceli vytvoriť/upraviť uživateľa?', + ) , +); diff --git a/application/i18n/sk/bug.php b/application/i18n/sk/bug.php new file mode 100644 index 0000000000..71036a795b --- /dev/null +++ b/application/i18n/sk/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Prosím zadajte platný bezpečnostný kód.', + 'required' => 'Prosím zadajte bezpečnostný kód.', + ) , + 'email' => array( + 'email' => 'Pole "E-mail" nezobrazuje platnú e-mailovú adresu?', + 'length' => 'Pole "E-mail" musí obsahovať aspoň 4 a nie viac ako 64 znakov.', + 'required' => 'Pole "E-mail" je povinné ak je políčko zaškrknuté.', + ) , + 'error' => array( + 'required' => 'Pole "Chyba" je povinné.', + ) , + 'subject' => array( + 'length' => 'Pole "Predmet" musí mať najmenej 3 znaky.', + 'required' => 'Pole "Predmet" je povinné.', + ) , + 'yourname' => array( + 'length' => 'Pole "Meno" musí mať najmenej 3 znaky.', + 'required' => 'Pole "Meno" je povinné.', + ) , +); diff --git a/application/i18n/sk/category.php b/application/i18n/sk/category.php new file mode 100644 index 0000000000..a624323161 --- /dev/null +++ b/application/i18n/sk/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Pole s farbou musí mať 6 znakov.', + 'required' => 'Pole farba je povinná položka.', + ) , + 'category_description' => array( + 'required' => 'Pole popis je povinná položka.', + ) , + 'category_image' => array( + 'size' => 'Uistite sa, že obrázky majú menej ako 50 KB.', + 'type' => 'Nesprávny formát obrázku. Povolené formáty sú .JPG, .PNG a .GIF.', + 'valid' => 'Pole "Obrázok" nebude zobrazené, ak bude obsahovať neplatný súbor.', + ) , + 'category_title' => array( + 'length' => 'Pole "Názov" musí mať najmenej 3 no nie viac než 80 znakov.', + 'required' => 'Pole názov je povinná položka.', + ) , + 'parent_id' => array( + 'already_parent' => 'Nemôžte rozdelovať kategórie s podkategóriami.', + 'exists' => 'Základná kategória neexistuje.', + 'numeric' => 'Pole "Základná kategória" musí obsahovať iba číslice.', + 'parent_trusted' => 'Základná kategória nemôže byť špeciálna kategória.', + 'required' => 'Pole "Základná kategória" je povinné.', + 'same' => 'Kategória a základná kategória nesmie byť rovnaká.', + 'special' => 'Špeciálne kategórie nesmú mať podkategórie.', + ) , +); diff --git a/application/i18n/sk/comments.php b/application/i18n/sk/comments.php new file mode 100644 index 0000000000..3304cff12a --- /dev/null +++ b/application/i18n/sk/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Prosím zadajte platný bezpečnostný kód.', + 'required' => 'Prosím zadajte bezpečnostný kód.', + 'valid' => 'Vložili ste nesprávny bezpečnostný kód.', + ) , + 'comment_author' => array( + 'length' => 'Pole "Meno" musí mať najmenej 3 znaky.', + 'required' => 'Pole "Meno" je povinné.', + ) , + 'comment_description' => array( + 'required' => 'Pole "Komentáre" je povinné.', + ) , + 'comment_email' => array( + 'email' => 'Pole "E-mail" nezobrazuje platnú e-mailovú adresu.', + 'length' => 'Pole "E-mail" musí obsahovať aspoň 4 a nie viac ako 64 znakov.', + 'required' => 'Pole "E-mail" je povinné ak je políčko zaškrknuté.', + ) , +); diff --git a/application/i18n/sk/contact.php b/application/i18n/sk/contact.php new file mode 100644 index 0000000000..7cd1351842 --- /dev/null +++ b/application/i18n/sk/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Prosím zadajte platný bezpečnostný kód.', + 'valid' => 'Prosím zadajte platný bezpečnostný kód.', + 'required' => 'Prosím zadajte bezpečnostný kód.', + ) , + 'contact_email' => array( + 'email' => 'Pole "E-mail" nezobrazuje platnú e-mailovú adresu.', + 'length' => 'Pole "E-mail" musí obsahovať aspoň 4 a nie viac ako 64 znakov.', + 'required' => 'Pole "E-mail" je povinné ak je políčko zaškrknuté.', + ) , + 'contact_message' => array( + 'required' => 'Pole "Správa" je povinné.', + ) , + 'contact_name' => array( + 'length' => 'Pole "Meno" musí mať najmenej 3 znaky.', + 'required' => 'Pole "Meno" je povinné.', + ) , + 'contact_subject' => array( + 'length' => 'Pole "Predmet" musí mať najmenej 3 znaky.', + 'required' => 'Pole "Predmet" je povinné.', + ) , + 'email_send' => array( + 'failed' => 'Pri posielaní správy sa vyskytla chyba.', + ) , +); diff --git a/application/i18n/sk/core.php b/application/i18n/sk/core.php new file mode 100644 index 0000000000..b831a15efc --- /dev/null +++ b/application/i18n/sk/core.php @@ -0,0 +1,30 @@ + 'konfiguračný súbor', + 'controller' => 'radič', + 'driver' => 'ovládač', + 'driver_implements' => '%s ovládač pre %s knižnicu musí implementovať %s prepojenie.', + 'driver_not_found' => '%s ovládač pre %s knižnicu nenájdený.', + 'errors_disabled' => 'Môžete ísť na úvodnú stránku alebo skúste znova.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Nemožné dokončiť požiadavku', + 'helper' => 'pomocník', + 'invalid_filetype' => 'Požiadavka typ súboru, .%s, nie je povolená vo vašom konfiguračnom súbore.', + 'invalid_method' => 'Neplatná metóda %s s názvom %s', + 'invalid_property' => '%s vlastnosť neexistuje v triede %s.', + 'library' => 'knižnica', + 'log_dir_unwritable' => 'Výpis adresára nie je zapisovateľný: %s', + 'model' => 'model', + 'no_controller' => 'Ushahidi nebolo schopné určiť radič pre spracovanie tejto požiadavky: %s', + 'no_default_route' => 'Prosím nastavte predvolenú trasu v config/routes.php', + 'page_not_found' => 'Stránka, ktorú požadujete , %s, nemôže byť nájdená.', + 'report_bug' => 'Nahlásiť tento problém Ushahidi', + 'resource_not_found' => 'Požiadavka %s, %s, nemôže byť nájdená.', + 'stack_trace' => 'Sledovať zásobník', + 'view' => 'Zobraziť', +); diff --git a/application/i18n/sk/database.php b/application/i18n/sk/database.php new file mode 100644 index 0000000000..48c15a948b --- /dev/null +++ b/application/i18n/sk/database.php @@ -0,0 +1,10 @@ + 'Chyba databázy: %s', + 'table_not_found' => 'Tabuľka "%s" nebola v databáze nájdená. Uistite sa, že používate najnovšiu verziu databáze tejto verzie Ushahidi.', +); diff --git a/application/i18n/sk/datetime.php b/application/i18n/sk/datetime.php new file mode 100644 index 0000000000..7ef35c5881 --- /dev/null +++ b/application/i18n/sk/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Pia', + 'full' => 'Piatok', + ) , + 'monday' => array( + 'abbv' => 'Pon', + 'full' => 'Pondelok', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Sob', + 'full' => 'Sobota', + ) , + 'sunday' => array( + 'abbv' => 'Ned', + 'full' => 'Nedeľa', + ) , + 'thursday' => array( + 'abbv' => 'Štv', + 'full' => 'Štvrtok', + ) , + 'tuesday' => array( + 'abbv' => 'Uto', + 'full' => 'Utorok', + ) , + 'wednesday' => array( + 'abbv' => 'Str', + 'full' => 'Streda', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Január', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Február', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Marec', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'Apríl', + ) , + 'may' => array( + 'abbv' => 'Máj', + 'full' => 'Máj', + ) , + 'june' => array( + 'abbv' => 'Jún', + 'full' => 'Jún', + ) , + 'july' => array( + 'abbv' => 'Júl', + 'full' => 'Júl', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'August', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Október', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'December', + ) , +); diff --git a/application/i18n/sk/feeds.php b/application/i18n/sk/feeds.php new file mode 100644 index 0000000000..8928f84f91 --- /dev/null +++ b/application/i18n/sk/feeds.php @@ -0,0 +1,19 @@ + 'DÁTUM', + 'feed_name' => array( + 'length' => 'Názov informačného kanála musí mať aspoň 3 a nie viac ako 70 znakov.', + 'required' => 'Vložte názov informačného kanála.', + ) , + 'feed_url' => array( + 'required' => 'Vložte URL informačného kanála', + 'url' => 'Prosím, vložte platnú adresu URL, napr. http://www.ushahidi.com', + ) , + 'source' => 'ZDROJ', + 'title' => 'Názov', +); diff --git a/application/i18n/sk/footer.php b/application/i18n/sk/footer.php new file mode 100644 index 0000000000..4f6b184b3f --- /dev/null +++ b/application/i18n/sk/footer.php @@ -0,0 +1,9 @@ + 'php5-curl nie je v systéme nainštalované', +); diff --git a/application/i18n/sk/form.php b/application/i18n/sk/form.php new file mode 100644 index 0000000000..55b613d04f --- /dev/null +++ b/application/i18n/sk/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Pôvodná hodnota, ktorú ste zadali do poľa je neplatná.', + 'length' => 'Názov poľa musí mať najmenej 3 no nie viac ako 200 znakov.', + ) , + 'field_height' => array( + 'between' => 'Prosím vložte hodnotu od 0 do 50 pre nastavenie výšky poľa.', + ) , + 'field_isdate' => array( + 'between' => 'Zadali ste nesprávnu hodnotu pre dátum poľa.', + 'required' => 'Prosím zvoľte Áno alebo Nie pre dátum poľa.', + ) , + 'field_name' => array( + 'length' => 'Názov poľa musí mať najmenej 3 no nie viac ako 100 znakov.', + 'required' => 'Prosím zadajte názov poľa.', + 'duplicate' => 'Názov poľa, ktorý ste zadali už v tomto formulári existuje, zadajte prosím iný.', + ) , + 'field_required' => array( + 'between' => 'Zadali ste nesprávnu hodnotu pre povinné pole.', + 'required' => 'Prosím zvoľte Áno alebo Nie pre povinné pole.', + ) , + 'field_type' => array( + 'numeric' => 'Prosím zvošte platný typ poľa.', + 'required' => 'Prosím zvošte typ poľa.', + ) , + 'field_width' => array( + 'between' => 'Prosím zadajte hodnotu od 0 do 300 pre šírku poľa.', + ) , + 'form_description' => array( + 'required' => 'Prosím zadajte popis formulára.', + ) , + 'form_id' => array( + 'default' => 'Pôvodný formulár nemôže byť odstránený.', + 'numeric' => 'Prosím zvoľte, do ktorého formulára bude pridané toto pole.', + 'required' => 'Prosím zvoľte, do ktorého formulára bude pridané toto pole.', + ) , + 'form_title' => array( + 'length' => 'Názov formulára musí mať najmenej 3 no nie viac ako 100 znakov.', + 'required' => 'Prosím zadajte názov formulára.', + 'exists' => 'Formulár s týmto názvom už existuje, prosím zvoľte iný.', + ) , +); diff --git a/application/i18n/sk/imap.php b/application/i18n/sk/imap.php new file mode 100644 index 0000000000..8fd34d1cfb --- /dev/null +++ b/application/i18n/sk/imap.php @@ -0,0 +1,10 @@ + 'Nemôžem otvoriť IMAP stream.', + 'unsupported_service' => 'E-mail služba nie je podporovaná.', +); diff --git a/application/i18n/sk/installer.php b/application/i18n/sk/installer.php new file mode 100644 index 0000000000..5f7df826f3 --- /dev/null +++ b/application/i18n/sk/installer.php @@ -0,0 +1,7 @@ + 'Je nám ľúto, ale naše stránky sú momentálne nefunkčné z dôvodu údržby. Prosím, skúste to znovu o pár minút.', +); diff --git a/application/i18n/sk/message.php b/application/i18n/sk/message.php new file mode 100644 index 0000000000..ec90ac6b79 --- /dev/null +++ b/application/i18n/sk/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Prosím zadajte platný bezpečnostný kód.', + 'required' => 'Prosím zadajte bezpečnostný kód.', + ) , + 'email' => array( + 'email' => 'Pole "E-mail" nezobrazuje platnú e-mailovú adresu.', + 'length' => 'Pole "E-mail" musí obsahovať aspoň 4 a nie viac ako 64 znakov.', + 'required' => 'Pole "E-mail" je povinné ak je políčko zaškrknuté.', + ) , + 'message' => array( + 'required' => 'Pole "Komentáre" je povinné.', + ) , + 'name' => array( + 'length' => 'Pole "Meno" musí mať najmenej 3 znaky.', + 'required' => 'Pole "Meno" je povinné.', + ) , + 'phone' => array( + 'length' => 'Pole telefón je neplatné.', + ) , +); diff --git a/application/i18n/sk/mhi.php b/application/i18n/sk/mhi.php new file mode 100644 index 0000000000..5f7df826f3 --- /dev/null +++ b/application/i18n/sk/mhi.php @@ -0,0 +1,7 @@ + 'Správa bola odoslaná z vašej webstránky.', + 'admin_login_url' => 'Prihlásenie administrátora', + 'admin_new_comment' => array( + 'message' => 'Na vašej webstránke bol pridaný nový komentár v reakcii na:', + 'subject' => 'Nový komentár', + ) , + 'admin_new_email' => array( + 'message' => 'Nová e-mailová správa bola pridaná na vašu webstránku.', + 'subject' => 'Nová e-mail správa', + ) , + 'admin_new_report' => array( + 'message' => 'Nová udalosť bola pridaná na vašu webstránku.', + 'subject' => 'Nová udalosť', + ) , + 'admin_new_sms' => array( + 'message' => 'Nová textová správa bola pridaná na vašu webstránku.', + 'subject' => 'Nová textová správa', + ) , + 'member_new_alert' => array( + 'message' => 'Obdržali ste nové upozornenie', + 'subject' => 'Nové upozornenie!', + ) , + 'member_new_message' => array( + 'message' => 'Obdržali ste novú súkromnú správu', + 'subject' => 'Nová súkromná správa', + 'footer' => 'Pre odpoveď choďte prosím do:', + ) , +); diff --git a/application/i18n/sk/page.php b/application/i18n/sk/page.php new file mode 100644 index 0000000000..8c95d58bc6 --- /dev/null +++ b/application/i18n/sk/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Prosím zadajte názov stránky.', + 'length' => 'Názov stránky musí mať najmenej 3 no nie viac ako 150 znakov.', + ) , + 'page_tab' => array( + 'required' => 'Zadajte prosím názov záložky stránky.', + ) , + 'page_description' => array( + 'required' => 'Zadajte prosím popis stránky.', + ) , +); diff --git a/application/i18n/sk/permissions.php b/application/i18n/sk/permissions.php new file mode 100644 index 0000000000..5f7df826f3 --- /dev/null +++ b/application/i18n/sk/permissions.php @@ -0,0 +1,7 @@ + array( + 'numeric' => 'Základné ID musí byť číslica', + ) , + 'private_to' => array( + 'required' => 'Pole "Do" je povinné', + 'exists' => 'Použivateľ, ktorému sa snažíte poslať správu, neexistuje', + ) , + 'private_subject' => array( + 'required' => 'Pole "Predmet" je povinné.', + 'length' => 'Predmet musí mať medzi 3 a 150 znakov', + ) , + 'private_message' => array( + 'required' => 'Pole "Správa" je povinné.', + ) , +); diff --git a/application/i18n/sk/report.php b/application/i18n/sk/report.php new file mode 100644 index 0000000000..bad34ccddb --- /dev/null +++ b/application/i18n/sk/report.php @@ -0,0 +1,12 @@ + 'Chyba!', + 'country_name' => array( + 'single_country' => 'Toto umiestnenie spadá len pod jednu krajinu. Prosím uistite sa, že ', + ) , +); diff --git a/application/i18n/sk/reporters.php b/application/i18n/sk/reporters.php new file mode 100644 index 0000000000..5f7df826f3 --- /dev/null +++ b/application/i18n/sk/reporters.php @@ -0,0 +1,7 @@ + 'Schválené', + 'categories' => 'Kategórie', + 'category_impact' => 'Dosah kategórie', + 'category_impact_description' => 'Táto tabuľka vám dáva lineárne zobrazenie správ podľa kategórií v priebehu času. Prejdite zľava doprava aby ste mohli vidieť porovnávací prehľad o rôznych kategóriách. Prejdite myšou ponad graf pre viac informácií.', + 'choose_date_range' => 'Zvoliť interval dátumov.', + 'countries' => 'Krajiny', + 'country' => 'Krajina', + 'country_breakdown' => 'Členenie krajín', + 'description' => 'Jedná sa o časť štatistík a čoskoro budú obsahovať všeobecný opis. V túto chvíľu, prechádzajte okolo pomocou podkategórií odkazmi uvedenými vyššie.', + 'error' => 'Chyba', + 'glossary' => 'Slovník', + 'hit_summary' => 'Sumár pozretí', + 'legend' => 'Legenda', + 'pageviews' => 'Zobrazenie stránky', + 'pageviews_description' => 'Celkový počet stránok, ktoré hostia otvorili na vašej webstránke', + 'reports' => 'Udalosti', + 'reports_categories' => 'Kategórie udalostí', + 'reports_statistics' => 'Štatistiky udalostí', + 'reports_status' => 'Status udalostí', + 'report_punchcard' => 'Udalosti Punchcard', + 'report_stats' => 'Štatistiky udalostí', + 'stats_not_setup' => 'Štatistiky nie sú nastavené', + 'time_range_1' => '1 Mesiac', + 'time_range_2' => '3 Mesiace', + 'time_range_3' => '6 Mesiacov', + 'time_range_all' => 'Všetko', + 'unapproved' => 'Neoverené', + 'unique_visitors' => 'Jedineční hostia', + 'unverified' => 'Neoverené', + 'verified' => 'Overené', + 'visitor_summary' => 'Sumár hostí', + 'visits' => 'Návštevy', +); diff --git a/application/i18n/sk/tooltips.php b/application/i18n/sk/tooltips.php new file mode 100644 index 0000000000..5f7df826f3 --- /dev/null +++ b/application/i18n/sk/tooltips.php @@ -0,0 +1,7 @@ + 'Prístup bol odmietnutý. Buď nie sú platné vaše poverenia, alebo vaša žiadosť bola zamietnutá.', + 'access_level' => 'Úroveň prístupu', + 'actions' => 'Opatrenia', + 'add_to_category' => 'Pridať do kategórie', + 'added' => 'Pridané', + 'added_edited' => 'Pridané/Upravené', + 'addons' => 'Prídavky', + 'admin_role' => 'Admin', + 'alerts' => 'Upozornenia', + 'alerts_received' => 'Upozornenia prijaté', + 'am' => 'AM', + 'anonymous' => 'Anonymné', + 'anyone_role' => 'Hocikto', + 'anywhere' => 'Hocikde', + 'api_banned' => 'API zablokované', + 'api_logs' => 'API výpisy', + 'api_settings' => 'API nastavenia', + 'api_unban' => 'Odblokovať', + 'api_unban_all' => 'Odblokovať všetko', + 'approved' => 'overené', + 'approve_auto' => 'Automatické overenie', + 'approve_manual' => 'Manuálne overenie', + 'archived' => 'Archivované', + 'are_you_sure_you_want_to' => 'Ste si istý, že chcete', + 'are_you_sure_you_want_to_delete_this_item' => 'Ste si istý, že chcete odstrániť túto položku?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Ste si istý, že chcete odstrániť túto fotku?', + 'are_you_sure_you_want_to_switch_forms' => 'Ste si istý, že chcete prepnúť formulár?', + 'assign' => 'Priradiť', + 'assignments' => 'Priradenia', + 'assign_badge' => 'Priradiť znak', + 'author' => 'Autor', + 'author_email' => 'E-mail autora', + 'back' => 'Späť', + 'banip_action' => 'Zablokovanie IP', + 'between_times' => 'Medzi časmi', + 'blocks' => 'Bloky', + 'body' => 'Telo', + 'cancel' => 'Zrušiť', + 'categories' => 'Kategórie', + 'chart_display_error' => 'Chyba pri zobrazení grafu', + 'check_message_valid' => 'Prosím uistite sa, že vaša správa je platná.', + 'check_number' => 'Prosím uistite sa, že číslo je platné.', + 'check_sms_settings' => 'Prosím skontrolujte si nastavenia SMS!', + 'checkin_details' => 'Overenie detailov', + 'checkins' => 'Overenia', + 'cities_loaded' => 'Mestá načítané', + 'code' => 'kód', + 'code_out_of_sync' => 'Verzia kódu je neaktuálna', + 'color' => 'Farba', + 'comments' => 'Komentáre', + 'confirmation_code' => 'Váš potvrdzovací kód upozornení je:', + 'confirm_msg' => 'Uživateľ bol', + 'count' => 'Počítať', + 'country_not_found' => 'Krajina nenájdená', + 'created_edited' => 'vytvorené/zmenené', + 'create_report' => 'Vytvoriť udalosť', + 'critical_upgrade' => 'Kritický upgrade', + 'csv' => 'CSV', + 'currently_active' => 'Momentálne aktívny', + 'currently_inactive' => 'Momentálne neaktívny', + 'custom_forms_insufficient_permissions' => 'Nemáte dostatočné oprávnenia pre úpravu nasledujúcich polí.', + 'daily' => 'Denne', + 'dashboard' => 'Palubovka', + 'database' => 'databáza', + 'date_time' => 'Dátum a čas', + 'days_of_the_week' => 'Dni v týždni', + 'db_out_of_sync' => 'DB verzia nie je aktuálna', + 'deleted' => 'vymazané', + 'delete_action' => 'Vymazať', + 'delete_badge' => 'Vymazať znak', + 'demo' => 'Demo', + 'description' => 'Popis', + 'disabled' => 'Zablokované', + 'divider_start_field' => 'Začiatok oddelovača', + 'divider_end_field' => 'Koniec oddelovača', + 'divider_class' => 'div class', + 'download_reports' => 'Stiahnuť udalosti', + 'edited' => 'UPRAVENÉ', + 'edited_by' => 'Upravené', + 'edit_action' => 'Upraviť', + 'edit_log' => 'Upraviť výpis', + 'email' => 'E-mail', + 'entire_collective' => 'Kolektívny celok', + 'error_imap' => 'Knižnica IMAP PHP nie je nainštalovaná', + 'error_msg' => 'Chyba', + 'error_post_incident' => 'Chyba, nie je možné uverejniť incident', + 'every_six_hours' => 'Každých šesť hodín', + 'every_twelve_hours' => 'Každých dvanásť hodín', + 'experimental' => 'Experimentálny', + 'faqs' => 'FAQ', + 'feedback' => 'Spätná väzba', + 'field_choices' => 'Zoznam rozhodnutí', + 'field_default' => 'Pôvodná hodnota', + 'field_datatype' => 'Typ dát', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Značky', + 'field_datatype_numeric' => 'Číselná', + 'field_datatype_text' => 'Ľubovoľný text', + 'field_height' => 'Výška (v riadkoch)', + 'field_hidden' => 'Skryté pole', + 'field_maxlength' => 'Maximálna dĺžka znakov', +); diff --git a/application/i18n/sk/ui_main.php b/application/i18n/sk/ui_main.php new file mode 100644 index 0000000000..b7e35279ba --- /dev/null +++ b/application/i18n/sk/ui_main.php @@ -0,0 +1,596 @@ + 'O nás', + 'access' => 'Prístup', + 'access_limits' => 'Obmedzenie prístupu', + 'account_name' => 'Názov účtu', + 'actions' => 'Opatrenia', + 'action_confirm' => 'Túto akciu nie je možné vrátiť späť. Naozaj chcete pokračovať?', + 'activate' => 'Aktivovať', + 'active' => 'Aktívne', + 'add' => 'Pridať', + 'added_by' => 'Pridal', + 'additional_data' => 'Ďalšie informácie', + 'additional_reports' => 'Ďalšie udalosti', + 'add_edit' => 'Pridať/Upraviť', + 'add_field' => 'Pridať pole', + 'add_language' => 'Pridať jazyk', + 'add_new' => 'Pridať nový', + 'add_new_category' => 'Pridať novú kategóriu', + 'add_translation' => 'Pridať preklad', + 'admin' => 'Administrácia', + 'alerts' => 'Posielanie noviniek', + 'alerts_alert_me' => 'Poslať upozornenie, keď sa objaví v okolí tejto oblasti', + 'alerts_btn_send' => 'Uložiť', + 'alerts_email' => 'E-mailová adresa:', + 'alerts_enter_email' => 'vložte emailovú adresu', + 'alerts_enter_mobile' => 'vložte číslo mobilného telefónu spolu s medzinárodnou predvoľbou', + 'alerts_get' => 'Posielanie noviniek', + 'alert_has_been' => 'Upozornenie bolo', + 'alerts_mobile_phone' => 'Mobilný telefón:', + 'alerts_place_spot' => 'Alebo umiestnite bod na mape nižšie a my vás upozorníme ak bude pridaná udalosť v okruhu 20 kilometrov od vášho bodu.', + 'alerts_place_spot2' => 'Pokiaľ nemôžete nájsť vašu adresu, označte ju na mape špendlíkom.', + 'alerts_rss' => 'RSS kanály (skopíruje adresu)', + 'alerts_select_city' => 'Vyberte mesto', + 'alerts_step1_select_city' => 'Krok 1: Vyberte vaše mesto a polohu:', + 'alerts_step2_send_alerts' => 'Krok 2: Poslať upozornenia môjmu:', + 'alerts_step3_select_catgories' => 'Krok 3 (Voliteľný): Vyberte kategórie', + 'alert_confirm_previous' => 'Potvrdiť predchádzajúcu požiadavku na upozornenie', + 'alert_saved' => 'Nastavenie posielania upozornení bolo uložené!', + 'all' => 'Všetky', + 'allowed' => 'Povolené', + 'all_categories' => 'Všetky kategórie', + 'all_time' => 'Kedykoľvek', + 'and' => 'a', + 'api' => 'API', + 'approve' => 'Schváliť', + 'approved' => 'Schválené', + 'approved_reports' => 'Schválené udalosti', + 'approve_this_report' => 'Schváliť túto udalosť', + 'approximate' => 'Približný', + 'archive' => 'archív', + 'archived' => 'archivované', + 'ascending' => 'Vzostupne', + 'at' => 'pri', + 'author' => 'Autor', + 'auto_checkin' => 'Automatická kontrola', + 'avg_reports_per_day' => 'Priemer správ za deň', + 'awaiting_approval' => 'K schváleniu', + 'awaiting_verification' => 'K overeniu', + 'badge' => 'Značka', + 'badges' => 'Značky', + 'badge_image' => 'Obrázok značky', + 'badge_image_upload_your_own' => 'Alebo si môžete miesto toho nahrať vlastný obrázok značky.', + 'badge_pack' => 'Balíček značiek', + 'badge_select' => 'Vybrať značku', + 'blog' => 'Blog', + 'browse_profiles' => 'Prehliadať profily', + 'cancel' => 'Zrušiť', + 'categories' => 'Kategórie', + 'category' => 'Kategória', + 'category_filter' => 'Filter kategórie', + 'category_has_been' => 'Kategória bola', + 'category_name' => 'Názov kategórie', + 'change_date_range' => 'Zmena časového obdobia', + 'change_password' => 'Zmeniť heslo', + 'change_picture' => 'Zmeniť môj obrázok', + 'choose' => 'Vybrať', + 'choose_data_points' => 'Vybrať dáta na nahranie', + 'choose_date_range' => 'Alebo si zvoľte svoje vlastné časové obdobie', + 'choose_field_type' => 'Vyberte typ poľa', + 'cleanurl' => 'Čisté URL adresy', + 'clear' => 'Vyčistiť', + 'clear_map' => 'Vyčistiť mapu', + 'close' => 'Zavrieť', + 'clusters' => 'zhluky', + 'color' => 'Farba', + 'comment' => 'Komentár', + 'comments' => 'Komentáre', + 'comment_details' => 'Podrobnosti komentára', + 'configuration_saved' => 'Vaše nastavenia boli uložené!', + 'configure' => 'Nastaviť', + 'confirm_email_successful' => 'E-mailová adresa bola úspešne potvrdená! Prosím prihláste sa nižšie.', + 'confirm_email_failed' => 'Potvrdenie e-mailu zlyhalo! Môžete požiadať o nové potvrdenie nižšie.', + 'contact' => 'Kontaktujte nás', + 'contact_code' => 'Bezpečnostný kód', + 'contact_email' => 'Vaša e-mailová adresa', + 'contact_message' => 'Správa', + 'contact_message_has_send' => 'Vaša správa bola odoslaná!', + 'contact_name' => 'Vaše meno', + 'contact_phone' => 'Vaše telefónne číslo', + 'contact_send' => 'Poslať správu', + 'contact_subject' => 'Predmet správy', + 'copyright' => 'Vlastnícke práva ©', + 'create' => 'Vytvoriť', + 'create_edit' => 'Vytvoriť/Upraviť', + 'create_new' => 'Vytvoriť nový', + 'create_new_password' => 'Vytvoriť nové heslo', + 'create_report' => 'Vytvoriť udalosť', + 'credibility' => 'Dôveryhodnosť', + 'current_password' => 'Aktuálne heslo', + 'custom_fields' => 'Vlastné polia', + 'data' => 'Informácie', + 'date' => 'Dátum', + 'date_format' => '(mm/dd/rrrr)', + 'date_time' => 'Dátum a čas', + 'day' => 'deň', + 'deactivate' => 'Deaktivovať', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Vymazať', + 'deleted' => 'Vymazané', + 'deletes' => 'Odstráni', + 'delete_disabled' => 'Vymazať zakázané', + 'delete_last' => 'Vymazať posledný', + 'delete_report' => 'Vymazať túto udalosť', + 'delete_selected' => 'Vymazať zvolené', + 'delete_spam' => 'Vymazať spam', + 'demo' => 'Demo', + 'description' => 'Popis', + 'descending' => 'Zostupne', + 'detailed_location_example' => 'Príklad: Roh ulice Helenskej a Bajzovej, Považská Bystrica', + 'details' => 'Detaily', + 'direct_report' => 'Priama udalosť', + 'disabled' => 'Zakázané', + 'disapprove' => 'Neoverené', + 'download_reports' => 'Stiahnuť udalosti', + 'download' => 'Stiahnuť', + 'edit' => 'Upraviť', + 'edit_form_fields' => 'Upraviť formu poľa', + 'edit_report' => 'Upraviť udalosť', + 'email' => 'E-mail', + 'email_address' => 'E-mailová adresa', + 'email_configuration' => 'Nastavenia e-mailového servru', + 'email_server_host' => 'Hosting e-mailového servru', + 'email_server_password' => 'Heslo e-mailového servru', + 'email_server_port' => 'Port e-mailového servru', + 'email_server_ssl_support' => 'Podpora SSL e-mailového servru', + 'email_server_type' => 'Typ e-mailového servru', + 'email_server_username' => 'Prihlasovacie meno e-mailového servru', + 'email_settings_comment_0' => 'tak vaše nastavenia musia byť prepojené s touto e-mailovou adresou', + 'email_settings_comment_00' => 'Aby bolo možné príjmať udalosti e-mailom, prosím vložte nastavenia vašeho e-mailového účtu nižšie. Prosím vezmite na vedomie, že e-maily budú prichádzať na', + 'email_settings_comment_1' => 'Niektoré servry požadujú kompletnú e-mailovú adresu', + 'email_settings_comment_2' => 'Heslo k e-mailovému účtu', + 'email_settings_comment_3' => 'Spoločné porty: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Príklady: mail.vasastranka.sk, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Príklady: pop3, imap', + 'email_settings_comment_6' => 'Povoliť alebo zakázať SSL pripojenie', + 'empty' => '---PRÁZDNY---', + 'end_point' => 'do', + 'error' => 'Chyba!', + 'example' => 'Príklad', + 'example_country' => 'Kenya', + 'external_apps' => 'Externé aplikácie', + 'external_video_link' => 'Externý video link', + 'feed' => 'Väzba', + 'feedback' => 'Poskytnúť spätnú väzbu', + 'feeds' => 'Väzby', + 'feed_has_been' => 'Väzba bola', + 'feed_items' => 'Položky väzby', + 'feed_name' => 'Názov väzby', + 'feed_url' => 'URL väzby', + 'field_unused' => 'Nepoužitá väzba', + 'file' => 'Súbor', + 'file_over_max_allowed' => 'Váš súbor presiahol maximálnu veľkosť.', + 'filters' => 'Filtre', + 'filter_reports' => 'Filter udalostí', + 'filter_reports_by' => 'Filter udalostí podľa', + 'filter_reports_contain' => 'Filter udalostí, ktorý obsahuje', + 'find' => 'Nájsť', + 'find_location' => 'Nájsť umiestnenie', + 'first_name' => 'Krstné meno', + 'forgot_password' => 'Zabudli ste heslo?', + 'form' => 'Formulár', + 'forms' => 'Formuláre', + 'form_description' => 'Popis formulára', + 'form_edit' => 'Upraviť tento formulár', + 'form_has_been' => 'Formulár bol', + 'form_title' => 'Názov formulára', + 'from' => 'Z', + 'full_name' => 'Celé meno', + 'geolocation_available' => 'GeoPoloha dostupná', + 'geometry_color' => 'Farba', + 'geometry_comments' => 'Komentáre', + 'geometry_label' => 'Štítok', + 'geometry_strokewidth' => 'Sila úsečky', + 'go' => 'Choď', + 'has_been' => 'Bolo', + 'help' => 'Ako pomôcť', + 'hidden' => 'Skrytý', + 'hide' => 'Skryť', + 'hide_this_message' => 'skryť túto správu', + 'home' => 'Domov', + 'how_to_report' => 'Ako hlásiť udalosť', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Použité na indentifikáciu medzi ostatnými uživateľmi stránky', + 'image' => 'Obrázok', + 'images' => 'Obrázky', + 'image_icon' => 'Obrázok/Ikona', + 'inactive' => 'Neaktívny', + 'inbox' => 'Prijatá pošta', + 'incident' => 'Udalosť', + 'incidents_nearby' => 'Blízka udalosť', + 'incident_location' => 'Poloha udalosti', + 'include' => 'obsahuje', + 'include_categories' => 'Obsahuje kategórie', + 'include_custom_fields' => 'Obsahuje vlastné polia', + 'include_description' => 'Obsahuje popis', + 'include_detail' => 'Obsahuje toľko detailov, koľko je možné', + 'include_latitude' => 'Zahrňuje zemepisnú šírku', + 'include_location_information' => 'Zahrňuje informáciu o polohe', + 'include_longitude' => 'Zahrňuje zemepisnú dĺžku', + 'include_personal_info' => 'Obsahuje osobné informácie', + 'incoming_media' => 'Prichádzajúce média', + 'information_evaluation' => 'Vyhodnotenie informácií', + 'input_location' => 'Zadajte svoju presnú polohu', + 'insufficient_role' => 'Váš účet nemá dostačujúce oprávnenia na úplné prihlásenie. Prosím, kontaktujte administrátora.', + 'in_response_to' => 'V reakcií na', + 'ip_address' => 'IP Adresa', + 'is_this_your_profile' => 'Je toto váš profil?', + 'item' => 'položka', + 'items' => 'položky', + 'item_details' => 'položka_detaily', + 'item_title' => 'Názov položky', + 'key' => 'Kľúč', + 'keywords' => 'Kľúčové slová', + 'kml_kmz_file' => 'KMZ/KML súbor', + 'kml_kmz_upload' => 'Nahrať KMZ/KML súbor', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Jazyk', + 'last' => 'Posledný', + 'last_month' => 'Posledný mesiac', + 'last_name' => 'Priezvisko', + 'last_year' => 'Minulý rok', + 'latitude' => 'Zemepisná šírka', + 'layers' => 'Vrstvy', + 'layers_filter' => 'Ostatné vrstvy', + 'layer_has_been' => 'Vrstva bola', + 'layer_name' => 'Názov vrstvy', + 'layer_url' => 'URL vrstvy', + 'leave_a_comment' => 'Nechajte odkaz', + 'less_information' => 'Menej informácií', + 'level' => 'Úroveň', + 'level_has_been' => 'Táto úroveň bola', + 'level_name' => 'Názov úrovne', + 'limited' => 'Obmedzený', + 'link' => 'Odkaz', + 'list' => 'Zoznam', + 'loading_reports' => 'Načítavanie udalostí', + 'location' => 'Poloha', + 'locations' => 'Polohy', + 'location_example' => 'Mesto, Kraj a/alebo Okres', + 'login' => 'Prihlásiť', + 'login_account_creation_successful' => 'Účet bol vytvorený. Môžete sa prihlásiť.', + 'login_confirmation_sent' => 'Potvrdenie bolo odoslané na váš e-mail.', + 'login_email_doesnt_exist' => 'E-mailová adresa neexistuje. Skúste zadať inú adresu, alebo vytvorte iný účet.', + 'login_select_openid' => 'Prosím, kliknite na účet poskytovateľa', + 'login_with' => 'Prihlásiť s', + 'login_userpass' => 'E-mail a heslo', + 'login_openid' => 'OpenID', + 'login_signup' => 'Zaregistrovať', + 'login_signup_click' => 'Vytvoriť účet', + 'login_signup_confirmation_subject' => 'Potvrdenie registrácie', + 'login_signup_text' => 'Vytvorte si účet, aby ste mohli využívať viacej funkcií.', + 'longitude' => 'Zemepisná dĺžka', + 'map' => 'Mapa', + 'mark_read' => 'Označiť ako prečítané', + 'mark_unread' => 'Označiť ako neprečítané', + 'maximum_filesize' => 'Maximálna veľkosť súboru', + 'media' => 'Médiá', + 'media_filter' => 'Filter médií', + 'members' => 'Členovia', + 'manage_your_account' => 'Spravovať účet', + 'message' => 'Správa', + 'messages' => 'Správy', + 'message_details' => 'Detaily správy', + 'message_non_numeric_source' => 'Správa z nečíselného zdroja:', + 'mobile' => 'Mobil', + 'modify' => 'Upraviť', + 'modify_date' => 'Dátum úpravy', + 'month' => 'mesiac', + 'more' => 'Viac', + 'more_information' => 'Viac informácií', + 'must_confirm_email_address' => 'Pre prístup musíte potvrdiť e-mailovú adresu. Ak ste stratili potvrdzovací e-mail, môžte požiadať o zaslanie nového nižšie.', + 'name' => 'Meno', + 'nearby_report' => 'Blízka udalosť', + 'new' => 'Nový', + 'news' => 'Novinky', + 'news_feeds' => 'RSS kanály', + 'news_source' => 'Zdroj noviniek', + 'new_category' => 'Nová kategória', + 'new_password' => 'Nové heslo', + 'new_report' => 'Nová udalosť', + 'next' => 'Ďalej', + 'no' => 'Nie', + 'no_checkins' => 'Žiadne vykonané zmeny na zobrazenie.', + 'no_data' => 'Žiadne dáta', + 'none' => 'Žiadny', + 'notices' => 'Oznámenie', + 'not_approved' => 'Neschválený', + 'not_approved_singular' => 'Neschválený', + 'not_selected' => '---Nevybrané---', + 'not_spam' => 'nie spam', + 'not_specified' => 'Nešpecifikovaný', + 'no_reports' => 'Nie sú tu žiadne udalosti', + 'no_results' => 'Nie sú tu žiadne výsledky', + 'off' => 'Vypnúť', + 'official_news' => 'Oficiálne & mainstream novinky', + 'on' => 'Zapnúť', + 'option' => 'Voľba', + 'optional' => 'Voliteľný', + 'options' => 'Voľby', + 'organization' => 'Organizácia', + 'organizations' => 'Organizácie', + 'organization_description' => 'Popis organizácie', + 'organization_email' => 'E-mail organizácie', + 'organization_has_been' => 'Organizácia bola', + 'organization_name' => 'Názov organizácie', + 'organization_phone_1' => 'Telefón organizácie 1', + 'organization_phone_2' => 'Telefón organizácie 2', + 'organization_website' => 'Webstránka organizácie', + 'original' => 'Pôvodný', + 'original_description' => 'Pôvodný popis', + 'original_title' => 'Pôvodný názov', + 'other_ushahidi_instances' => 'Ďalšie rozmiestnenia', + 'outbox' => 'Odoslaná pošta', + 'outgoing' => 'Odchádzajúci', + 'page' => 'Strana', + 'pages' => 'Strany', + 'page_description' => 'Popis strany', + 'page_has_been' => 'Strana bola', + 'page_tab_name' => 'Názov záložky strany', + 'page_title' => 'Názov strany', + 'parent_category' => 'Hlavná kategória', + 'password' => 'Heslo', + 'password_again' => 'Overiť heslo', + 'password_changed_successfully' => 'Heslo bolo zmenené! Prihláste sa nižšie.', + 'password_forgot' => 'Zabudli ste heslo?', + 'password_reset_confirm' => 'E-mail s novým heslom bol odoslaný.', + 'password_save' => 'Zostať prihlásený v tomto počítači?', + 'past_month' => 'Minulý mesiac', + 'past_year' => 'Minulý rok', + 'pending' => 'Neukončený', + 'per' => 'za', + 'personal_information' => 'Osobné informácie Voliteľné.', + 'phone' => 'Telefón', + 'photos' => 'Fotky', + 'pictures' => 'Obrázky', + 'pictures_and_videos' => 'Obrázky a video', + 'play' => 'Hrať', + 'please_note' => 'Upozornenie', + 'plugins' => 'Pluginy', + 'plugin_url' => 'Webstránka pluginov', + 'public_profile' => 'Verejný profil', + 'public_profile_url' => 'URL verejného profilu', + 'preview' => 'Náhľad', + 'preview_item' => 'Náhľad položky', + 'preview_message' => 'Náhľad správy', + 'previous' => 'Predchádzajúci', + 'private' => 'Súkromný', + 'profile_color' => 'Farba profilu', + 'profile_saved' => 'Váš profil bol uložený', + 'quick_stats' => 'Rýchle štatistiky', + 'rating' => 'Hodnotenie', + 'read' => 'Čítať', + 'receive' => 'Prijať', + 'receive_from' => 'Prijať od', + 'receive_notifications' => 'Prijaté upozornenia', + 'recent_reports' => 'Nedávne upozornenia', + 'refresh_news_feeds' => 'Obnoviť RSS kanály', + 'registered_email' => 'Registrovaný e-mail', + 'remove' => 'Odstrániť', + 'reply' => 'Odpovedať', + 'report' => 'Upozornenie', + 'reports_listed' => 'Upozornenia (z mapy, uvedené v chronologickom poradí)', + 'reporter' => 'Spravodajca', + 'reporters' => 'Spravodajci', + 'reporter_date' => 'Dátum spravodajcu', + 'reporter_email' => 'E-mail spravodajcu', + 'reporter_first_name' => 'Spravodajcové krstné meno', + 'reporter_has_been' => 'Spravodajca bol', + 'reporter_ip' => 'IP adresa spravodajcu', + 'reporter_last_name' => 'Spravodajcové priezvisko', + 'reporter_level' => 'Úroveň spravodajcu', + 'reporter_levels' => 'Úrovne spravodajcu', + 'reporter_phone' => 'Spravodajcov telefón', + 'reports' => 'Upozornenia', + 'reports_btn_browse' => 'Prehľadávať', + 'reports_btn_submit' => 'Pridať', + 'reports_by_this_user' => 'Upozornenia podľa tohto uživateľa', + 'reports_categories' => 'Kategórie', + 'reports_count' => '%d upozornenia', + 'reports_date' => 'Dátum', + 'reports_description' => 'Popis', + 'reports_download_csv' => 'Upozornenia budú stiahnuté vo formáte CSV', + 'reports_email' => 'E-mail', + 'reports_features' => 'Vlastnosti', + 'reports_find_location' => 'Nájdi blízku polohu', + 'reports_first' => 'Krstné meno', + 'reports_last' => 'Priezvisko', + 'reports_location_name' => 'Názov polohy', + 'reports_news' => 'Odkaz na zdroj noviniek', + 'reports_optional' => 'Voliteľné informácie', + 'reports_photos' => 'Nahrať fotky', + 'reports_return' => 'Vrátiť na stránku udalostí', + 'reports_select_city' => 'Vyberte mesto', + 'reports_submitted' => 'Vaša správa bola predložená nášmu personálu na preskúmanie. Ak to bude nevyhnutné, budeme vás čo najskôr kontaktovať.', + 'reports_submit_new' => 'Pridať novú udalosť', + 'reports_time' => 'Čas', + 'reports_timeline' => 'Časová os udalostí', + 'reports_title' => 'Názov udalosti', + 'reports_video' => 'Odkaz na video', + 'report_an_incident' => 'Správa o incidente', + 'report_details' => 'Detaily udalosti', + 'report_option_1' => 'Odosiela správu pre', + 'report_option_2' => 'Odosiela e-mail', + 'report_option_3' => 'Odosiela tweet s hashtag/s', + 'report_option_4' => 'Vyplňuje formulár na našej webstránke', + 'report_option_external_apps' => 'Používa aplikáciu', + 'report_saved' => 'Vaša udalosť bola uložená', + 'report_title' => 'Názov udalosti', + 'request_information' => 'Vyžiadať viac informácií', + 'request_location' => 'Vyžiadať polohu', + 'required' => 'Povinné', + 'requirements' => 'Požiadavky', + 'resend_confirm_email' => 'Preposlať potvrdzovací e-mail', + 'reset' => 'Obnoviť', + 'reset_all_filters' => 'Obnoviť všetky filtre', + 'reset_password' => 'Obnoviť heslo', + 'retrieve_city_names' => 'Načítať názvy miest pre vybranú krajinu', + 'riverid_information' => 'Účty spravované servisom %s', + 'riverid_exists_login' => 'V CrowdmapID už máte spravovaný účet! Pokúste sa prihlásiť pomocou vášho CrowdmapID e-mailu a hesla.', + 'role' => 'Úloha', + 'rss' => 'RSS', + 'save' => 'Uložiť', + 'saved' => 'Uložené', + 'save_add_new' => 'Uložiť a pridať nový', + 'save_close' => 'Uložiť a zavrieť', + 'save_report' => 'Uložiť udalosť', + 'schedule' => 'Naplánovať', + 'scheduler' => 'Plánovač', + 'scheduler_day' => 'Deň', + 'scheduler_hour' => 'Hodina', + 'scheduler_log' => 'Výpis plánovača', + 'scheduler_minute' => 'Minúta', + 'scheduler_weekday' => 'Deň v týždni', + 'search' => 'Hľadať', + 'search_results' => 'Výsledky vyhľadávania', + 'security_code' => 'Bezpečnostný kód', + 'select_all' => 'Vybrať všetko', + 'select_field_type' => 'Vybrať typ poľa', + 'select_form_type' => 'Vybrať typ formulára', + 'select_in_map' => 'Vybrať na mape', + 'select_multiple' => 'Vybrať tak veľa, ako je potrebné', + 'select_one' => 'Skontrolujte prosím, či ste zaškrtli položku', + 'select_theme' => 'Vybrať vzhľad', + 'send' => 'Odoslať', + 'send_confirmation' => 'Odoslať potvrdenie', + 'sending_to' => 'Odosiela', + 'sent' => 'Odoslané', + 'sent_by' => 'Odoslané od', + 'server_address' => 'Adresa servra', + 'server_type' => 'Typ servra', + 'service' => 'Služba', + 'service_username' => 'Servisné uživateľské meno', + 'service_user_id' => 'Servisné ID uživateľa', + 'share' => 'Zdielať', + 'shared_data' => 'Zdielané dáta', + 'share_has_been' => 'Zdielanie bolo', + 'sharing' => 'Zdielaný', + 'shorter_map' => 'Kratšia mapa', + 'show' => 'Zobraziť', + 'show_all' => 'Zobraziť všetky', + 'show_messages' => 'Zobraziť správy', + 'site' => 'Webstránka', + 'site_email_address' => 'e-mailová adresa stránky', + 'site_url' => 'URL stránky', + 'smaller_map' => 'Menšia mapa', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Prepáčte, ale nemáte žiadny znaky.', + 'source' => 'Zdroj', + 'source_name' => 'Názov zdroja', + 'sort' => 'Zoradiť', + 'sort_by' => 'Zoradiť podľa', + 'source_url' => 'URL zdroja', + 'spam' => 'Spam', + 'ssl_support' => 'SSL podpora?', + 'start_point' => 'Od', + 'step' => 'Krok', + 'submit' => 'Pridať udalosť', + 'submit_sms' => 'Pridať cez SMS', + 'submit_sms1' => 'Odošlite SMS', + 'submit_sms2' => 'na váš telefón', + 'success' => 'Úspešne!', + 'successfuly_imported' => 'Úspešne vložené', + 'surname' => 'Priezvisko', + 'survey' => 'Prehľad', + 'system' => 'Systém', + 'taller_map' => 'Vyššia mapa', + 'tcp_port' => 'TCP Port', + 'themes' => 'Vzhľady', + 'theme_default' => 'Základný vzhľad Ushahidi', + 'theme_settings' => 'Nastavenie vzhľadu', + 'this' => 'Tento', + 'this_day' => 'Dnes', + 'this_month' => 'Tento mesiac', + 'this_week' => 'Tento týždeň', + 'this_year' => 'Tento rok', + 'this_is_your_profile' => 'Toto je váš profil.', + 'time' => 'Čas', + 'title' => 'Názov', + 'to' => 'do', + 'today' => 'Dnes', + 'today_at' => 'Dnes v', + 'token' => 'Znak', + 'total_reports' => 'Upozornenia spolu', + 'translated' => 'Preložené', + 'translated_description' => 'Preložený popis', + 'translated_title' => 'Preložený názov', + 'translate_to' => 'Preložiť do', + 'translation' => 'Preklad', + 'translation_saved' => 'Preklad bol uložený', + 'trusted' => 'Dôveryhodný', + 'type' => 'Typ', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Nemôžné odoslať e-mail', + 'uncategorized_reports' => 'Nekategorizované udalosti', + 'unread' => 'neprečítané', + 'unverified' => 'Neoverené', + 'update_feeds' => 'Aktualizovať kanály', + 'upload' => 'Nahrať', + 'upload_file' => 'Súbor na nahranie', + 'upload_reports' => 'Nahrať udalosti', + 'upload_reports_detail_1' => 'S formulárom nižšie, môžete vkladať incidenty do Ushahidi enginu.', + 'upload_reports_detail_4' => 'Musí obsahovať aspoň názov incidentu a dátum.', + 'upload_reports_detail_4b' => 'Ak nie sú zobrazené stĺpce pre zemepisnú šírku a dĺžku, poloha bude vygenerovaná pomocou Google Geocoder.', + 'upload_reports_detail_4c' => 'ak importuje dodatočné info t.j. osobné informácie a/alebo vlastné polia formulárov', + 'upload_reports_detail_4d' => 'Aspoň jedno pole (meno, priezvisko, e-mail) musí byť vyplnené. Prázdne záznamy nebudú vložené.', + 'upload_reports_detail_4e' => 'Vaše údaje zadané v rozbaľovacom zozname, prepínači, alebo v zaškrtávacích políčkach obsahujú zhodu s vlastnými poliami vo vašej žiadosti.', + 'upload_reports_detail_5' => 'Príklad CSV udalosti', + 'upload_reports_detail_6' => '#,NAZOV INCIDENTU,DATUM INCIDENTU,POLOHA,POPIS,KATEGORIA,SCHVALENE,OVERENE,ZEMEPISNA SIRKA,ZEMEPISNA DLZKA
"1","Podozrenie na smrť v Nairobi","2009-05-15 01:06:00","Nairobi","Tri prípady boli potvrdené v C. del Uruguay","UMRTIA, CIVILISTI, ",ANO,ANO,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Drancovanie","2009-03-18 10:10:00","Accra","Drancovanie sa deje všade","NEPOKOJE, UMRTIA, SKODY NA MAJETKU, ",ANO,NIE,"5.55","-0.2166667"', + 'upload_successful' => 'Nahranie úspešné', + 'upload_video' => 'Nahrať video', + 'url' => 'URL', + 'user' => 'Uživateľ', + 'username' => 'Meno uživateľa', + 'ushahidi_admin' => 'Ushahidi Admin', + 'verification' => 'Overenie', + 'verified' => 'Overené', + 'verified_reports' => 'Overené udalosti', + 'verify' => 'Overiť', + 'verify_this_report' => 'Overiť túto udalosť', + 'version' => 'Verzia', + 'via' => 'cez', + 'video' => 'Video', + 'view' => 'Zobraziť', + 'views' => 'Zobrazenia', + 'view_all' => 'Zobraziť všetko', + 'view_all_feeds' => 'Zobraziť všetky kanály', + 'view_all_reports' => 'Zobraziť všetky udalosti', + 'view_items' => 'Zobraziť položky', + 'view_more' => 'Zobraziť viac', + 'view_public_profile' => 'Zobraziť verejný profil', + 'view_report' => 'Zobraziť udalosť', + 'view_reports' => 'Zobraziť udalosti', + 'view_video' => 'Zobraziť Video', + 'visible' => 'Viditeľný', + 'waiting_approval' => 'Čaká na potvrdenie', + 'waiting_verification' => 'Čaká na overenie', + 'wider_map' => 'Širšia mapa', + 'web_form' => 'WEB formulár', + 'web' => 'Web', + 'weight' => 'Hmotnosť', + 'yes' => 'Áno', + 'yesterday' => 'Včera', + 'your_dashboard' => 'Vaša palubovka', + 'your_file' => 'Váš súbor', + 'zoom_in' => 'Priblížiť', + 'zoom_out' => 'Oddialiť', +); diff --git a/application/i18n/sk/upgrade.php b/application/i18n/sk/upgrade.php new file mode 100644 index 0000000000..5f7df826f3 --- /dev/null +++ b/application/i18n/sk/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Vnešen Email naslov ni veljaven', + 'email_check' => 'Ta Email naslov je že bil registriran za prejemanje opozoril iz te lokacije.', + 'length' => 'Email mora vsebovati najmanj 4 in največ 64 znakov.', + ) , + 'alert_lat' => array( + 'between' => 'Niste izbrali veljavne lokacije na zemljevidu', + 'required' => 'Niste izbrali veljavne lokacije na zemljevidu', + ) , + 'alert_lon' => array( + 'between' => 'Niste izbrali veljavne lokacije na zemljevidu', + 'required' => 'Niste izbrali veljavne lokacije na zemljevidu', + ) , + 'alert_mobile' => array( + 'length' => 'Vnešena mobilna številka ne vsebuje zadostno število znakov', + 'mobile_check' => 'Ta mobilna številka je že bila registrirana za prejemanje opozoril iz te lokacije.', + 'one_required' => 'Vnesti morate vašo mobilno številko ali Email naslov', + 'required' => 'Polje z mobilno številko je zahtevano če je označen checkbox', + ) , + 'alert_radius' => array( + 'in_array' => 'Niste označili veljavnega območja na zemljevidu.', + 'required' => 'Niste označili vašega območja na zemljevidu.', + ) , + 'alert_recipient' => array( + 'required' => 'Niste nastavili prejemnika opozoril.', + ) , + 'alerts_subscribed' => 'Naročili ste se na opozorila za naslednje kategorije', + 'code_already_verified' => 'Ta koda je že bila potrjena!', + 'code_not_found' => 'Potrditvena koda ni bila najdena! Prosim preverite ali ste vnesli pravilni URL.', +); diff --git a/application/i18n/sl_SI/auth.php b/application/i18n/sl_SI/auth.php new file mode 100644 index 0000000000..ad8f59a64f --- /dev/null +++ b/application/i18n/sl_SI/auth.php @@ -0,0 +1,7 @@ + array( + 'required' => 'Zahtevano je barvno polje.', + ) , +); diff --git a/application/i18n/sl_SI/comments.php b/application/i18n/sl_SI/comments.php new file mode 100644 index 0000000000..adbeeccf33 --- /dev/null +++ b/application/i18n/sl_SI/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Prosim vnesite veljavno varnostno geslo.', + 'required' => 'Prosim vnesite varnostno geslo.', + 'valid' => 'Vnesli ste napačno varnostno geslo.', + ) , + 'comment_author' => array( + 'length' => 'Ime mora vsebovati najmanj 3 znake.', + 'required' => 'Potrebno je izpolniti okno z imenom.', + ) , + 'comment_description' => array( + 'required' => 'Potrebno je izpolniti okno za komentar.', + ) , + 'comment_email' => array( + 'email' => 'Vnešeni Email naslov ni veljaven. ', + 'length' => 'Email naslov mora biti vsebovati najmanj 4 in največ 64 znakov.', + 'required' => 'Email naslov je zahtevan v primeru, da je označen checkbox.', + ) , +); diff --git a/application/i18n/sl_SI/libraries.php b/application/i18n/sl_SI/libraries.php new file mode 100644 index 0000000000..259a0e357d --- /dev/null +++ b/application/i18n/sl_SI/libraries.php @@ -0,0 +1,21 @@ + 'Povezava na Akismet server ni mogoča.', + 'askimet_invalid_apikey' => 'Vaš Akismet API ključ ni veljaven.', + 'clickatell_no_destination_address' => 'Prosim določite naslov prejemnika (ZA)!', + 'clickatell_no_sender_address' => 'Prosim določite naslov vira (OD)!', + 'clickatell_unsupported_method' => 'Nepodprta metoda pošiljanja!', + 'invalid_api_library' => 'API knjižnica %s ni veljavna. Vse API knjižnice morajo biti podrazredi %s.', + 'upgrade_directory_not_deleted' => 'Direktori %s ne mora biti izbrisan.', + 'upgrade_extracting_error' => 'Napaka med ekstrakcijo: %s', + 'upgrade_failed' => 'Prenos zadnje verzije Ushahidi ni uspel. HTTP status code', + 'upgrade_file_not_copied' => 'Datoteka %s ne mora biti kopirana.', + 'upgrade_file_not_deleted' => 'Datoteka %s ne mora biti izbrisana.', + 'upgrade_zip_error' => 'Prenesena Ushahidi zip datoteka %s, ne mora biti zapisana.', + 'riverid_variable_not_available' => '%s ni dostopna v RiverID class.', +); diff --git a/application/i18n/sl_SI/maintenance.php b/application/i18n/sl_SI/maintenance.php new file mode 100644 index 0000000000..c1cbda8eea --- /dev/null +++ b/application/i18n/sl_SI/maintenance.php @@ -0,0 +1,9 @@ + 'Oprostite, naša stran je trenutno nedosegljiva zaradi vzdrževanja. Prosimo, poskusite znova čez nekaj minut.', +); diff --git a/application/i18n/sl_SI/message.php b/application/i18n/sl_SI/message.php new file mode 100644 index 0000000000..719a04195a --- /dev/null +++ b/application/i18n/sl_SI/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Prosim vnesite veljavno varnostno geslo.', + 'required' => 'Prosim vnesite varnostno geslo.', + ) , + 'email' => array( + 'email' => 'Vnešeni Email naslov ni veljaven. ', + 'length' => 'Email mora vsebovati najmanj 4 in največ 64 znakov.', + 'required' => 'Email naslov je zahtevan v primeru, da je označen checkbox.', + ) , + 'message' => array( + 'required' => 'Potrebno je izpolniti okno za komentar.', + ) , + 'name' => array( + 'length' => 'Ime mora vsebovati najmanj 3 znake.', + 'required' => 'Potrebno je izpolniti okno z imenom.', + ) , + 'phone' => array( + 'length' => 'Vnešena telefonska številka ni veljavna.', + ) , +); diff --git a/application/i18n/sl_SI/mhi.php b/application/i18n/sl_SI/mhi.php new file mode 100644 index 0000000000..fa82149746 --- /dev/null +++ b/application/i18n/sl_SI/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Prosim vnesite veljavno varnostno geslo.', + 'required' => 'Prosim vnesite varnostno geslo.', + ) , + 'contact_email' => array( + 'email' => 'Vnešeni Email naslov ni veljaven. ', + 'required' => 'Prosim vpišite veljavni Email naslov.', + ) , + 'contact_message' => array( + 'required' => 'Potrebno je izpolniti okno z sporočilom.', + ) , + 'contact_subject' => array( + 'length' => 'Naslov mora vsebovati najmanj 3 znake.', + 'required' => 'Potrebno je izpolniti okno z naslovom.', + ) , +); diff --git a/application/i18n/sl_SI/page.php b/application/i18n/sl_SI/page.php new file mode 100644 index 0000000000..2ecc869097 --- /dev/null +++ b/application/i18n/sl_SI/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Prosim vnesite naslov strani.', + 'length' => 'Naslov strani mora vsebovati najmanj 3 in največ 150 znakov.', + ) , + 'page_tab' => array( + 'required' => 'Prosim vnesite ime zavihka.', + ) , + 'page_description' => array( + 'required' => 'Prosim vnesite opis strani', + ) , +); diff --git a/application/i18n/sl_SI/permissions.php b/application/i18n/sl_SI/permissions.php new file mode 100644 index 0000000000..66a7d61e89 --- /dev/null +++ b/application/i18n/sl_SI/permissions.php @@ -0,0 +1,7 @@ + array( + 'numeric' => 'Parent ID mora biti numeričen', + ) , + 'private_to' => array( + 'required' => 'Prejemnik je zahtevan', + 'exists' => 'Uporabnik, ki mu poskušate poslati sporočilo, ne obstaja', + ) , + 'private_subject' => array( + 'required' => 'Potrebno je izpolniti okno z naslovom.', + 'length' => 'Naslov mora vsebovati med 3 in 150 znakov', + ) , + 'private_message' => array( + 'required' => 'Potrebno je izpolniti okno z sporočilom.', + ) , +); diff --git a/application/i18n/sl_SI/report.php b/application/i18n/sl_SI/report.php new file mode 100644 index 0000000000..a8b531a44c --- /dev/null +++ b/application/i18n/sl_SI/report.php @@ -0,0 +1,41 @@ + 'Napaka!', + 'country_name' => array( + 'single_country' => 'Ta izvedba programa pokriva zgolj eno državo. Preverite, da je lokacija vašega poročila v državi %s.', + ) , + 'data_include' => array( + 'between' => 'Prosim izberite veljavni predmet za prenos.', + 'numeric' => 'Prosim izberite veljavni predmet za prenos.', + ) , + 'data_active' => array( + 'between' => 'Prosim izberite "Poročila za potrditev" ali "Potrjena poročila" ali oboje.', + 'numeric' => 'Prosim izberite "Poročila za potrditev" ali "Potrjena poročila" ali oboje.', + 'required' => 'Prosim izberite "Poročila za potrditev" ali "Potrjena poročila" ali oboje.', + ) , + 'data_verified' => array( + 'between' => 'Prosim izberite "Poročila za preverjanje" ali "Preverjena poročila" ali oboje.', + 'numeric' => 'Prosim izberite "Poročila za preverjanje" ali "Preverjena poročila" ali oboje.', + 'required' => 'Prosim izberite "Poročila za preverjanje" ali "Preverjena poročila" ali oboje.', + ) , + 'data_point' => array( + 'between' => 'Prosim izberite veljavno obliko poročila za prenos', + 'numeric' => 'Prosim izberite veljavno obliko poročila za prenos', + 'required' => 'Prosim izberite veljavno obliko poročila za prenos', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Polje datuma OD ne vsebuje veljavne datumske oblike.', + 'range' => 'Prosim vnesite veljavni datum začetka. Vnos ne more biti novejši od današnjega datuma.', + ) , + 'incident_category' => array( + 'required' => 'Potrebno je izpolniti okno z kategorijo.', + ) , + 'incident_hour' => array( + 'required' => 'Zahtevano je izpolniti okno z uro.', + ) , +); diff --git a/application/i18n/sl_SI/reporters.php b/application/i18n/sl_SI/reporters.php new file mode 100644 index 0000000000..eb7592d96a --- /dev/null +++ b/application/i18n/sl_SI/reporters.php @@ -0,0 +1,11 @@ + array( + 'required' => 'Potrebno je izpolniti polje z lokacijo', + ) , +); diff --git a/application/i18n/sl_SI/reports.php b/application/i18n/sl_SI/reports.php new file mode 100644 index 0000000000..9aad89e111 --- /dev/null +++ b/application/i18n/sl_SI/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Prosim potrdite da ste označili predmet', + 'numeric' => 'Prosim potrdite da ste označili predmet', + 'categories_required' => 'Poročila morajo biti kategorizirana preden so lahko odobrena', + ) , + 'action' => array( + 'permission' => 'Nimate ustreznega dovoljenja za izvajanje te funkcije.', + ) , + 'uploadfile' => array( + 'required' => 'Izbrati morate datoteko za nalaganje', + 'type' => 'Datoteka za nalaganje na strežnik mora biti .csv ali .xml formata', + 'valid' => 'Polje za nalaganje datotek ne vsebuje veljavne datoteke', + ) , +); diff --git a/application/i18n/sl_SI/settings.php b/application/i18n/sl_SI/settings.php new file mode 100644 index 0000000000..4632f47ce4 --- /dev/null +++ b/application/i18n/sl_SI/settings.php @@ -0,0 +1,7 @@ + 'Odobreno', + 'categories' => 'kategorije', + 'category_impact' => 'Vpliv kategorije', + 'choose_date_range' => 'Izberite razpon datumov.', + 'countries' => 'Države', + 'country' => 'Država', + 'error' => 'Napaka', + 'glossary' => 'Slovar', + 'legend' => 'Legenda', + 'pageviews' => 'Pogled strani', + 'pageviews_description' => 'Skupno število strani, ki so si jih ogledali obiskovalci', + 'reports' => 'Poročila', + 'reports_categories' => 'Kategorije poročil', + 'reports_statistics' => 'Statistika poročil', + 'reports_status' => 'Status poročil', + 'time_range_1' => '1 mesec', + 'time_range_2' => '3 mesece', + 'time_range_3' => '6 mesecev', + 'time_range_all' => 'Vse', + 'unapproved' => 'neodobreno', + 'unique_visitors' => 'Posebni obiskovalci', + 'unverified' => 'Nepreverjeno', + 'verified' => 'preverjeno', + 'visitor_summary' => 'Dnevnik obiskovalcev', + 'visits' => 'Obiski', +); diff --git a/application/i18n/sl_SI/tooltips.php b/application/i18n/sl_SI/tooltips.php new file mode 100644 index 0000000000..1a1e6bcd9e --- /dev/null +++ b/application/i18n/sl_SI/tooltips.php @@ -0,0 +1,19 @@ + array( + 'add_to_category' => 'To doda poročilo k dodatnim kategorijam. Če izberete kategorijo 1 in poročilo že vsebuje kategorijo 2, bo poročilo vsebovalo obe kategoriji; kategorijo 1 in kategorijo 2.', + 'approve' => 'Odobrite ali zavrnite poročilo. Če bo poročilo odobreno bo postalo javno vidno.', + 'email_body' => 'Jedro email sporočila, ki bo bilo poslano.', + 'email_subject' => 'Naslov email sporočila, ki bo poslano.', + 'report_title' => 'To je osnovni naslov, ki se doda poročilu.', + ) , + 'private_subject' => 'Naslov privatnega sporočila', + 'private_message' => 'Privatno sporočilo', + 'profile_email' => 'Vaš email naslov', + 'profile_username' => 'Vaše uporabniško ime ne mora biti spremenjeno.', +); diff --git a/application/i18n/sl_SI/ui_admin.php b/application/i18n/sl_SI/ui_admin.php new file mode 100644 index 0000000000..5752ec8170 --- /dev/null +++ b/application/i18n/sl_SI/ui_admin.php @@ -0,0 +1,180 @@ + 'stopnja dostopa', + 'actions' => 'akcije', + 'add_to_category' => 'dodaj kategorijo', + 'added' => 'dodano', + 'added_edited' => 'dodano/urejeno', + 'admin_role' => 'Upravljalec', + 'alerts' => 'opozorila', + 'alerts_received' => 'opozorila prejeta', + 'am' => 'AM', + 'anonymous' => 'anonimno', + 'anyone_role' => 'kdorkoli', + 'anywhere' => 'kjerkoli', + 'api_settings' => 'API nastavitve', + 'approved' => 'odobreno', + 'approve_auto' => 'avtomatska odobritev', + 'approve_manual' => 'ročna odobritev', + 'archived' => 'arhivirano', + 'are_you_sure_you_want_to' => 'Ali ste prepričani, da želite ', + 'are_you_sure_you_want_to_delete_this_item' => 'Ali ste prepričani, da želite izbrisati ta predmet?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Ali ste prepričani, da želite izbrisati to fotografijo?', + 'are_you_sure_you_want_to_switch_forms' => 'Ali ste prepričani, da želite zamenjati obrazce?', + 'assign' => 'Določi', + 'assignments' => 'Naloge', + 'assign_badge' => 'Določi značko', + 'author' => 'Avtor', + 'author_email' => 'Avtorjev Email naslov', + 'back' => 'nazaj', + 'body' => 'telo', + 'cancel' => 'prekliči', + 'categories' => 'kategorije', + 'chart_display_error' => 'Napaka v prikazu tabele.', + 'check_message_valid' => 'Prosim preverite veljavnost sporočila.', + 'check_number' => 'Prosim preverite veljavnost številke.', + 'check_sms_settings' => 'Prosim preverite vaše SMS nastavitve!', + 'checkin_details' => 'Podrobnosti vnosa.', + 'checkins' => 'Vnosi ', + 'cities_loaded' => 'Naložena mesta', + 'code' => 'koda', + 'color' => 'barva', + 'comments' => 'komentarji', + 'confirmation_code' => 'Vaša potrditvena koda za opozorila je:', + 'confirm_msg' => 'Uporabnik je bil:', + 'count' => 'Štetje', + 'country_not_found' => 'Država ni bila najdena', + 'created_edited' => 'Ustvarjeno/urejeno', + 'create_report' => 'Ustvari poročilo', + 'critical_upgrade' => 'Kritična nadgradnja', + 'csv' => 'CSV', + 'currently_active' => 'Trenutno aktivni', + 'currently_inactive' => 'Trenutno neaktivni', + 'custom_forms_insufficient_permissions' => 'Nimate ustreznega dovoljenja za urejanje sledečih področij.', + 'daily' => 'Dnevno', + 'database' => 'podatkovna baza', + 'date_time' => 'datum & čas', + 'days_of_the_week' => 'Dnevi v tednu', + 'deleted' => 'izbrisano', + 'delete_action' => 'izbriši', + 'delete_badge' => 'izbriši značko', + 'demo' => 'demo', + 'description' => 'Opis', + 'disabled' => 'Onemogočeno', + 'download_reports' => 'Prenesi poročila', + 'edited' => 'UREJENO', + 'edited_by' => 'Uredil', + 'edit_action' => 'Uredi', + 'email' => 'Email', + 'error_msg' => 'Napaka', + 'every_six_hours' => 'Vsakih 6 ur', + 'every_twelve_hours' => 'Vsakih 12 ur', + 'experimental' => 'Poskusno', + 'faqs' => 'FAQ\'s', + 'feedback' => 'Feedback', + 'field_choices' => 'Lista izbora', + 'field_datatype' => 'Tip podatkov', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_numeric' => 'Številčno', + 'field_datatype_text' => 'Prosto besedilo', + 'field_toggle_no' => 'Ne', + 'field_toggle_yes_close' => 'Da, vedno zaprto', + 'field_toggle_yes_open' => 'Da, vedno odprto', + 'file_not_found_upload' => 'Naložene datoteke ni bilo možno poiskati', + 'file_open_error' => 'Datoteke ni možno odpreti za branje', + 'form_not_exists' => 'Ta oblika ne obstaja!', + 'forum' => 'Forum', + 'free_text_field' => 'Okno besedila (prosto besedilo)', + 'date_field' => 'Okno datuma', + 'from' => 'Od', + 'from_date' => 'Od', + 'get_help' => 'Pomoč', + 'header_actions' => 'akcije', + 'header_add_edit' => 'Dodaj/Uredi', + 'header_email' => 'Email', + 'header_manage_users' => 'Uredi uporabnike', + 'header_role' => 'Vloga', + 'header_user' => 'Uporabnik', + 'help' => 'Pomoč', + 'hourly' => 'Vsako uro', + 'is_date' => 'Ali je to okno datuma?', + 'ispublic_visible' => 'Kdo lahko vidi odgovore', + 'ispublic_submit' => 'Kdo lahko predloži odgovore', + 'keyword' => 'Ključna beseda', + 'keywords' => 'Ključne besede', + 'label_email' => 'Email naslov:', + 'label_full_name' => 'Ime:', + 'label_password' => 'Geslo:', + 'label_role' => 'Vloga:', + 'label_username' => 'Uporabniško ime:', + 'layers' => 'Sloji', + 'login_role' => 'Moderator', + 'logout' => 'Izpis', + 'manage' => 'Urejati', + 'manage_roles' => 'Uredi vloge in dovoljenja', + 'manage_users' => 'Poglej uporabnike', + 'manage_users_edit' => 'Dodaj/Uredi uporabnike', + 'mark_as' => 'Označi kot', + 'marked_as_not_spam' => 'označeno kot ne spam', + 'marked_as_spam' => 'Označeno kot spam', + 'message' => 'sporočilo', + 'messages' => 'Sporočila', + 'messages_twitter' => 'Twitter sporočilo', + 'message_sent' => 'Vaše opozorilo je bilo poslano!', + 'minute' => 'Minuta', + 'minutes' => 'Minute', + 'missing_parameter' => 'Manjkajoč parameter', + 'moderator' => 'Moderator', + 'modified' => 'prilagojeno', + 'modify_timezone' => 'Prilagodi nastavitve časovnega pasa', + 'move_down_action' => 'premakni dol', + 'move_up_action' => 'premakni gor', + 'my_alerts' => 'Moja opozorila', + 'my_checkins' => 'Moji vnosi', + 'my_profile' => 'Moj profil', + 'my_reports' => 'Moja poročila', + 'my_votes_up' => 'Pozitivno', + 'my_votes_down' => 'Negativno', + 'name' => 'Ime', + 'new_alert' => 'Ustvari novo opozorilo', + 'new_private' => 'Ustvari novo sporočilo', + 'new_password' => 'Novo geslo', + 'no' => 'Ne', + 'notification' => 'Obvestilo', + 'not_found' => 'Ni bilo najdeno', + 'no_data' => 'Ni podatkov. Ni rezultatov za prikaz', + 'no_error' => 'Brez napake', + 'no_result_display_msg' => 'Ni podatkov za prikaz!', + 'of' => 'od', + 'page' => 'stran', + 'pages' => 'strani', + 'page_not_found' => 'Stran ni bila najdena', + 'parameters_used' => 'Uporabljeni parametri', + 'password' => 'Geslo', + 'password_reset_message_line_1' => 'Dragi', + 'phone' => 'Telefon', + 'please_select' => 'Prosim izberi', + 'pm' => 'PM', + 'preview' => 'Predogled', + 'private_message' => 'Sporočilo', + 'private_messages' => 'Privatno sporočilo', + 'private_sent' => 'Privatno sporočilo je bilo poslano', + 'private_subject' => 'Naslov', + 'private_to' => 'Za', + 'read' => 'preberi', + 'report_title' => 'Naslov poročila', + 'reporters' => 'Poročevalci', + 'reporter_levels' => 'Stopnje poročevalca', + 'reports' => 'Poročila', + 'required' => 'Zahtevano', + 'response' => 'Odziv', + 'results' => 'Rezultati', + 'save_settings' => 'Shrani nastavitve', + 'search' => 'Išči', + 'search_reports' => 'Išči poročila', +); diff --git a/application/i18n/sl_SI/ui_main.php b/application/i18n/sl_SI/ui_main.php new file mode 100644 index 0000000000..f23f426e5e --- /dev/null +++ b/application/i18n/sl_SI/ui_main.php @@ -0,0 +1,185 @@ + 'Dostop', + 'access_limits' => 'Omejitve dostopa', + 'account_name' => 'Uporabniško ime', + 'activate' => 'Aktivacija', + 'active' => 'Aktivno', + 'add' => 'Dodaj', + 'added_by' => 'Dodal', + 'additional_data' => 'Dodatni podatki', + 'additional_reports' => 'Dodatna poročila', + 'add_edit' => 'Dodaj/Uredi', + 'add_language' => 'Dodaj jezik', + 'add_new' => 'Dodaj novo', + 'add_new_category' => 'Dodaj novo kategorijo', + 'add_translation' => 'Dodaj prevod', + 'alerts' => 'Prejmi opozorila', + 'alerts_alert_me' => 'Opozori me če je izpolnjeno poročilo v ali v okolici:', + 'alerts_btn_send' => 'Shrani moje opozorilo', + 'alerts_email' => 'Email naslov:', + 'alerts_enter_email' => 'vnesi email naslov.', + 'alerts_enter_mobile' => 'vnesi številko mobilnega telefona skupaj z državno kodo.', + 'alerts_get' => 'Prejmi opozorila', + 'alerts_mobile_phone' => 'Mobilni telefon', + 'alerts_place_spot' => 'Ali pa označite mesto na mapi spodaj in mi vas bomo opozorili, ko bo vnešeno poročilo v krogu 20 kilometrov o vnešene točke.', + 'alerts_select_city' => 'izberi mesto', + 'alerts_step1_select_city' => 'Korak 1: Izberite vaše mesto ali lokacijo:', + 'alerts_step2_send_alerts' => 'Korak 2: Pošljite opozorila na moj:', + 'alerts_step3_select_catgories' => 'Korak 3 (Izbirno): Izberite kategorije', + 'alert_confirm_previous' => 'Potrdite prejšnjo izbiro opozoril', + 'alert_saved' => 'Vaše opozorilo je bilo shranjeno!', + 'all' => 'Vse', + 'allowed' => 'Dovoljeno', + 'all_categories' => 'Vse kategorije', + 'all_time' => 'Ves čas', + 'and' => 'in', + 'approve' => 'Odobritev', + 'approved' => 'Odobreno', + 'approved_reports' => 'Odobrena poročila', + 'approve_this_report' => 'Odobri to poročilo', + 'approximate' => 'Približno', + 'archive' => 'Arhiv', + 'archived' => 'arhivirano', + 'at' => 'pri', + 'author' => 'Avtor', + 'auto_checkin' => 'Avtomatski checkin', + 'avg_reports_per_day' => 'Povprečno število poročil na dan', + 'awaiting_approval' => 'čakajoča odobritev', + 'awaiting_verification' => 'čakajoča verifikacija', + 'badge' => 'značka', + 'badges' => 'značke', + 'badge_image' => 'slika značke', + 'badge_image_upload_your_own' => 'Oziroma lahko naložite namesto nje vašo sliko značke', + 'badge_pack' => 'Komplet značk', + 'badge_select' => 'izberite značko', + 'blog' => 'Blog', + 'browse_profiles' => 'Išči profile', + 'cancel' => 'prekliči', + 'categories' => 'kategorije', + 'category' => 'kategorija', + 'category_filter' => 'Filter kategorij', + 'category_has_been' => 'Kategorija je bila', + 'category_name' => 'Ime kategorije', + 'change_date_range' => 'Spremeni razpon datuma', + 'change_password' => 'spremeni geslo', + 'change_picture' => 'Spremeni mojo sliko', + 'choose' => 'izberi', + 'choose_data_points' => 'Izberi datotečne točke za prenos', + 'choose_date_range' => 'ali izberi svoj razpon datumov', + 'choose_field_type' => 'izberi tip polja', + 'cleanurl' => 'Počisti URLje', + 'clear' => 'Počisti', + 'clear_map' => 'Počisti zemljevid', + 'close' => 'zapri', + 'clusters' => 'skupine', + 'color' => 'barva', + 'comment' => 'komentar', + 'comments' => 'komentarji', + 'comment_details' => 'podrobnosti komentarja', + 'configuration_saved' => 'Vaše nastavitve so bile shranjene!', + 'configure' => 'Nastavi', + 'confirm_email_successful' => 'Uspešno ste potrdili vaš email naslov! Prosim vpišite se spodaj.', + 'contact' => 'Kontaktirajte nas', + 'contact_code' => 'Varnostno geslo', + 'contact_email' => 'Vaš Email naslov', + 'contact_message' => 'sporočilo', + 'contact_message_has_send' => 'Vaše opozorilo je bilo poslano!', + 'contact_name' => 'Vaše ime', + 'contact_phone' => 'Vaša telefonska številka', + 'contact_send' => 'Pošlji sporočilo', + 'contact_subject' => 'Naslov sporočila', + 'copyright' => 'Avtorske pravice ©', + 'create' => 'Ustvari', + 'create_edit' => 'Ustvari/uredi', + 'create_new' => 'Ustvari novo', + 'create_new_password' => 'Ustvari novo geslo', + 'create_report' => 'Ustvari poročilo', + 'credibility' => 'Kredibilnost', + 'current_password' => 'trenutno geslo', + 'data' => 'informacija', + 'date' => 'datum', + 'date_format' => '(mm/dd/yyyy) ', + 'date_time' => 'datum & čas', + 'day' => 'dan', + 'deactivate' => 'deaktiviraj', + 'default_location_name' => 'Nairobi, Kenija', + 'delete' => 'izbriši', + 'deleted' => 'izbrisano', + 'deletes' => 'izbriše', + 'delete_disabled' => 'izbriši onemogočene', + 'delete_last' => 'izbriši zadnje', + 'delete_report' => 'izbriši to poročilo', + 'delete_selected' => 'izbriši izbrano', + 'delete_spam' => 'izbriši spam', + 'demo' => 'demo', + 'description' => 'opis', + 'detailed_location_example' => 'Primer: Corner of City Market, 5th Street & 4th Avenue, Johannesburg', + 'details' => 'podrobnosti', + 'direct_report' => 'direktno poročilo', + 'disabled' => 'onemogočeno', + 'disapprove' => 'neodobreno', + 'download_reports' => 'prenesi poročila', + 'edit' => 'uredi', + 'email' => 'Email', + 'email_address' => 'Email naslov', + 'email_configuration' => 'Nastavitve Email strežnika', + 'end_point' => 'Za', + 'error' => 'Napaka!', + 'example' => 'primer', + 'example_country' => 'Kenija', + 'external_apps' => 'Zunanje aplikacije', + 'file' => 'Datoteka', + 'filters' => 'Filtri', + 'filter_reports' => 'filtriraj poročila', + 'filter_reports_by' => 'filtriraj poročila glede na', + 'filter_reports_contain' => 'filtriraj poročila, ki vsebujejo', + 'find' => 'Najdi', + 'find_location' => 'Najdi lokacijo', + 'first_name' => 'Osebno ime', + 'forgot_password' => 'Ali ste pozabili vaše geslo?', + 'form' => 'Obrazec', + 'forms' => 'Obrazci', + 'form_description' => 'Opis obrazca', + 'form_edit' => 'Uredi ta obrazec', + 'form_has_been' => 'Obrazec je bil', + 'form_title' => 'Naslov obrazca', + 'from' => 'Od', + 'full_name' => 'Celo ime', + 'geometry_color' => 'barva', + 'geometry_comments' => 'komentarji', + 'geometry_label' => 'Oznaka', + 'go' => 'Pojdi', + 'has_been' => 'Je bil', + 'help' => 'Kako pomagati', + 'hidden' => 'Skrito', + 'hide' => 'Skrij', + 'hide_this_message' => 'skrij to sporočilo', + 'home' => 'Domov', + 'how_to_report' => 'Kako poročati', + 'https' => 'HTTPS', + 'id' => 'ID', + 'image' => 'Slika', + 'images' => 'Slike', + 'image_icon' => 'Slika/Ikona', + 'inactive' => 'Neaktivni', + 'inbox' => 'Prejeta pošta', + 'incident' => 'Incident', + 'incidents_nearby' => 'Bližnji incidenti', + 'incident_location' => 'Lokacija incidenta', + 'include' => 'Vključi', + 'include_categories' => 'Vključi kategorije', + 'include_custom_fields' => 'Vključi prilagojena okna', + 'include_description' => 'Vključi opis', + 'include_detail' => 'Vključi kolikor je mogoče podrobnosti', + 'incoming_media' => 'Prehajajoč medij', + 'in_response_to' => 'V odziv na', + 'ip_address' => 'IP naslov', + 'item' => 'Predmet', + 'key' => 'Ključ', +); diff --git a/application/i18n/sl_SI/upgrade.php b/application/i18n/sl_SI/upgrade.php new file mode 100644 index 0000000000..074d0940cf --- /dev/null +++ b/application/i18n/sl_SI/upgrade.php @@ -0,0 +1,24 @@ + 'Avtomatska nadgradnja', + 'upgrade_available' => 'razpoložljive posodobitve', + 'upgrade_continue_btn_text' => 'nadaljuj', + 'upgrade_db_btn_text' => 'Posodobi', + 'upgrade_db_text_2' => 'na najnovejšo database verzijo', + 'upgrade_db_up_to_date' => 'Vaša podatkovna baza vsebuje najnovejše posodobitve.', + 'upgrade_manual' => 'ročna nadgradnja', + 'upgrade_title_text' => 'Trenutno uporabljate Ushahidi v%1$s z verzijo podatkovne baze %2$d delujočo na %3$s', + 'upgrade_ftp_password' => 'FTP geslo:', + 'upgrade_status_info_2' => 'Ne potrebujete nadgradnje.', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'successfully_downloaded' => 'Uspešno preneseno. Nalagam...', + 'failed_downloading' => 'Neuspešen prenos.', + 'failed_copying' => 'Neuspešno kopiranje podatkov', + 'dbupgrade_success' => 'Uspešna posodobitev podatkovne baze.', +); diff --git a/application/i18n/sn/alerts.php b/application/i18n/sn/alerts.php new file mode 100644 index 0000000000..6a1256d6fa --- /dev/null +++ b/application/i18n/sn/alerts.php @@ -0,0 +1,7 @@ + 'faira reconfig', + 'driver' => 'dhiraivha', +); diff --git a/application/i18n/sn/database.php b/application/i18n/sn/database.php new file mode 100644 index 0000000000..8ee574031e --- /dev/null +++ b/application/i18n/sn/database.php @@ -0,0 +1,9 @@ + 'Kanganiso muDatabase: %s', +); diff --git a/application/i18n/sn/datetime.php b/application/i18n/sn/datetime.php new file mode 100644 index 0000000000..9d5f9531e4 --- /dev/null +++ b/application/i18n/sn/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'Chishanu', + 'full' => 'Chishanu', + ) , + 'monday' => array( + 'abbv' => 'Muvhuro', + 'full' => 'Muvhuro', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'Mugovera', + 'full' => 'Mugovera', + ) , + 'sunday' => array( + 'abbv' => 'Svondo', + 'full' => 'Svondo', + ) , + 'thursday' => array( + 'abbv' => 'China', + 'full' => 'China', + ) , + 'tuesday' => array( + 'abbv' => 'Chipiri', + 'full' => 'Chipiri', + ) , + 'wednesday' => array( + 'abbv' => 'Chitatu', + 'full' => 'Chitatu', + ) , + 'january' => array( + 'abbv' => 'Ndira', + 'full' => 'Ndira', + ) , + 'february' => array( + 'abbv' => 'Kukadzi', + 'full' => 'Kukadzi', + ) , + 'march' => array( + 'abbv' => 'Kurume', + 'full' => 'Kurume', + ) , + 'april' => array( + 'abbv' => 'Kubvumbi', + 'full' => 'Kubvumbi', + ) , + 'may' => array( + 'abbv' => 'Chivabvu', + 'full' => 'Chivabvu', + ) , + 'june' => array( + 'abbv' => 'Chukumi', + 'full' => 'Chikumi', + ) , + 'july' => array( + 'abbv' => 'Chikunguru', + 'full' => 'Chikunguru', + ) , + 'august' => array( + 'abbv' => 'Nyamavhuvhu', + 'full' => 'Nyamavhuvhu', + ) , + 'september' => array( + 'abbv' => 'Gunyana', + 'full' => 'Gunyana', + ) , + 'october' => array( + 'abbv' => ' Gumiguru', + 'full' => ' Gumiguru', + ) , + 'november' => array( + 'abbv' => 'Mbudzi', + 'full' => 'Mbudzi', + ) , + 'december' => array( + 'abbv' => 'Zvita', + 'full' => 'Zvita', + ) , +); diff --git a/application/i18n/sn/feeds.php b/application/i18n/sn/feeds.php new file mode 100644 index 0000000000..b5aee48835 --- /dev/null +++ b/application/i18n/sn/feeds.php @@ -0,0 +1,13 @@ + 'Musi', + 'feed_url' => array( + 'url' => 'Shandisa URL chaiyo, muyenzaniso http://www.ushahidi.com', + ) , + 'title' => 'Musoro', +); diff --git a/application/i18n/sn/footer.php b/application/i18n/sn/footer.php new file mode 100644 index 0000000000..80ea82e920 --- /dev/null +++ b/application/i18n/sn/footer.php @@ -0,0 +1,9 @@ + 'php5-curl haina kuiswa musisitimu ', +); diff --git a/application/i18n/sn/form.php b/application/i18n/sn/form.php new file mode 100644 index 0000000000..2aab4921a5 --- /dev/null +++ b/application/i18n/sn/form.php @@ -0,0 +1,7 @@ + 'IMAP stream yatadza kuvhurika.', +); diff --git a/application/i18n/sn/installer.php b/application/i18n/sn/installer.php new file mode 100644 index 0000000000..2aab4921a5 --- /dev/null +++ b/application/i18n/sn/installer.php @@ -0,0 +1,7 @@ + array( + 'length' => 'Kala field inofanira kava nemacharecter 6.', + 'required' => 'Kala field inodiikanwa.', + ) , + 'layer_file' => array( + 'type' => 'Field refaira harina faira kwaro. Maformat anotenderwa ndeaya: .KMZ kana kuti .KML', + 'valid' => 'Field remafaira ririkuratidza kuti harina faira kwaro.', + ) , + 'layer_name' => array( + 'length' => 'Field rezimata rinofanira kuva nemacharecter pakati pe3 ne80.', + 'required' => 'Field rest rinodiikanwa.', + ) , + 'layer_url' => array( + 'atleast' => 'KNM URL kana faira rinodiikanwa.', + 'both' => 'Haukwanise kushandisa KML URL and faira panguva imwechete.', + 'url' => 'Shandisa URL kwayo, semufananidzo: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/sn/libraries.php b/application/i18n/sn/libraries.php new file mode 100644 index 0000000000..403bbcf86c --- /dev/null +++ b/application/i18n/sn/libraries.php @@ -0,0 +1,7 @@ + 'Sori, site yedu iri kumbogadziriswa. +Yedzai mbaimbai.', +); diff --git a/application/i18n/sn/message.php b/application/i18n/sn/message.php new file mode 100644 index 0000000000..403bbcf86c --- /dev/null +++ b/application/i18n/sn/message.php @@ -0,0 +1,7 @@ + array( + 'required' => 'Nyora musoro wePeji rino.', + ) , + 'page_description' => array( + 'required' => 'Nyora dudziro yePeji rino.', + ) , +); diff --git a/application/i18n/sn/permissions.php b/application/i18n/sn/permissions.php new file mode 100644 index 0000000000..67d2df6e21 --- /dev/null +++ b/application/i18n/sn/permissions.php @@ -0,0 +1,7 @@ + array( + 'required' => 'Kugova zita kunosungirwa.', + ) , + 'sharing_url' => array( + 'required' => 'URL yesite iyi inodiikanwa', + 'url' => 'URL yesite iyi haisi chaiyo.', + ) , +); diff --git a/application/i18n/sn/stats.php b/application/i18n/sn/stats.php new file mode 100644 index 0000000000..403bbcf86c --- /dev/null +++ b/application/i18n/sn/stats.php @@ -0,0 +1,7 @@ + 'Donho', + 'add' => 'Wedzera', + 'added_by' => 'Wedzera ne', + 'alerts' => 'Pihwa changamudza', + 'alerts_get' => 'Pihwa changamudza', + 'alerts_mobile_phone' => 'Foni nhumba', + 'allowed' => 'Bvumirwa', + 'and' => 'ne', + 'api' => 'API', + 'approve' => 'Bvumira ', + 'approved' => 'Abvumira ', + 'author' => 'Munyori ', + 'blog' => ' Rutarwa', +); diff --git a/application/i18n/sn/upgrade.php b/application/i18n/sn/upgrade.php new file mode 100644 index 0000000000..57746529ca --- /dev/null +++ b/application/i18n/sn/upgrade.php @@ -0,0 +1,20 @@ + 'Otomatiki apugradhi', + 'upgrade_available' => 'Maapudated Aripo', + 'upgrade_continue_btn_text' => 'Enderera', + 'upgrade_db_btn_text' => 'Apugradhi', + 'upgrade_db_text_1' => 'Ndava kuapugradha database vhezheni', + 'upgrade_db_text_2' => 'kudataase vhezheni itsva', + 'upgrade_db_title' => 'Ushahidi database apugradhi', + 'upgrade_failed' => 'Apugredhi yatadza kupfuurira mberi', + 'upgrade_database' => 'Database:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'log_file' => 'Log refaira', +); diff --git a/application/i18n/so/alerts.php b/application/i18n/so/alerts.php new file mode 100755 index 0000000000..c263c209fc --- /dev/null +++ b/application/i18n/so/alerts.php @@ -0,0 +1,53 @@ + array( + 'email' => 'Emailkaad gelisay sax ma aha', + 'email_check' => 'Emailkaad gelisay horay ayuu u diiwaangashanaa suu u helo farriimo ku saabsan goobtaas', + 'length' => 'Emailkaagu waa inuu ka kooban yahay ugu yaraan afar xaraf, ugu badnaanna 64 xaraf', + 'required' => 'Email ayaa loo baahan yahay haddii sanduuqu saxan yahay', + ) , + 'alert_lat' => array( + 'between' => 'Ma aadan ka dooran khariidadda goob jirta', + 'required' => 'Ma aadan ka dooran khariidadda goob jirta', + ) , + 'alert_lon' => array( + 'between' => 'Ma aadan ka dooran khariidadda goob jirta', + 'required' => 'Ma aadan ka dooran khariidadda goob jirta', + ) , + 'alert_mobile' => array( + 'length' => 'Tirada nambarrada telefoonka aad gelisay sax ma aha', + 'mobile_check' => 'Telefoon nambarka aad gelisay horay ayuu u diiwaangashanaa suu u helo farriimo ku saabsan goobtaas', + 'numeric' => 'Ma jiro telefoonka aad gelisay. Fadlan geli telefoon nambar sax ah, adigoo ku billaabaya furaha waddanka', + 'one_required' => 'Waa inaad gelisaa telefoon nambarkaaga ama Emailkaaga', + 'required' => 'Telefoon nambar ayaa loo baahan yahay haddii sanduuqu saxan yahay', + ) , + 'alert_radius' => array( + 'in_array' => 'Gacan (radius) sax ah uma aadan hagaajin khariidadda', + 'required' => 'Gacan (radius)uma aadan hagaajin khariidadda', + ) , + 'code_already_verified' => 'Furahan horey ayaa loo xaqiijiyay!', + 'code_not_found' => 'Furaha xaqiijinta lama helin! Fadlan hubi in URL-ku sax yahay', + 'code_verified' => 'Furahaaga waa la xaqiijiyay. Waxaad heli doontaa farriimaha isla marka ay dhacaan', + 'confirm_request' => 'Si aad u xaqiijiso dalabkaaga farriimaha, fadlan booqo', + 'create_more_alerts' => 'Dib ugu noqo bogga farriimaha si aad u samayso farriimo kaloo badan', + 'email_alert_request_created' => 'Dalabka farriimaha ee Emailkaaga waa la sameeyay, waxaana laguu soo diray farriin xaqiijin ah', + 'email_code' => 'Fadlan geli furaha xaqiijinta Emailka ee aad hoos ku heshay', + 'email_error_head' => 'Dalabka farriimaha Emailkaaga lama keydin!', + 'email_ok_head' => 'Dalabka farriimaha Emailkaaga waa la keydiyay!', + 'error' => 'Mashiinku wuu awoodi waayay inuu soo saaro dalabkaaga xajiinta!', + 'mobile_alert_request_created' => 'Dalabkaaga farriimaha mobile-ka waa la sameeyay, waxaana laguu soo diray farriin xaqiijin ah', + 'mobile_code' => 'Fadlan hoos geli furaha xaqiijinta ee laguugu soo diray mobile-kaaga.', + 'mobile_error_head' => 'Dalabka farriimaha Mobile-kaaga lama keydin!', + 'mobile_ok_head' => 'Dalabka farriimaha Mobile-kaaga waa la keydiyay!', + 'settings_error' => 'Qaabkaad wax u hagaajisay, si sax ah uma soo saari karo farriimaha.', + 'unsubscribe' => 'Waad heshay Emailkaan, maxaa yeelay adigaa codsaday inaad hesho farriimo joogta ah. Haddii aadan doonayn inaad hesho farriimaha, booqo', + 'unsubscribed' => 'Farriimo dambe ma heli doontid, laga bilaabo', + 'unsubscribe_failed' => 'Waan awoodi weynay inaan kaa xirno farriimaheena. Fadlan hubi in URL-ku saxan yahay', + 'verification_email_subject' => 'Xaqiijinta farriimaha', + 'verify_code' => 'Ma heli kartid farriimo ku saabsan goobtan adigoon xaqiijin dalabkaaga', +); diff --git a/application/i18n/so/auth.php b/application/i18n/so/auth.php new file mode 100755 index 0000000000..74341c5a16 --- /dev/null +++ b/application/i18n/so/auth.php @@ -0,0 +1,45 @@ + array( + 'email' => 'Emailkaad gelisay sax ma aha', + 'exists' => 'Waan ka xunnahay, Emailkan horay ayaa account loogu sameeyay', + 'length' => 'Emailkaagu waa inuu ka kooban yahay ugu yaraan afar xaraf, ugu badnaanna 64 xaraf', + 'required' => 'Email waa lagama maarmaan', + ) , + 'name' => array( + 'length' => 'Magaca oo dhamaystiran waa inuu ka kooban yahay ugu yaraan saddex xaraf, ugu badnaanna 100 xaraf', + 'required' => 'Magaca oo dhamaystiran ayaa loo baahan yahay', + 'standard_text' => 'Magacaaga (Username) waxaa ku jira xuruuf aan la oggolayn', + ) , + 'password' => array( + 'length' => 'Waa inuu password-ku yahay ugu yaraan 5 xaraf, ugu badnaanna 16 xaraf', + 'matches' => 'Fadlan geli Password isku mida labada god ee loogu talagalay passwordka', + 'required' => 'Password ayaa loo baahan yahay', + ) , + 'password_confirm' => array( + 'matches' => 'Waa inay password-yadu is leeyihiin', + ) , + 'resetemail' => array( + 'email' => 'Emailkaad gelisay sax ma aha', + 'invalid' => 'Waan ka xunnahay, ma hayno Emailkaaga', + 'required' => 'Email ayaa loo baahan yahay', + ) , + 'roles' => array( + 'alpha_numeric' => 'Hannaanka xuruuftu sax ma aha', + 'length' => 'Xuruuftu waa inay ka kooban tahay ugu yaraan 5 xaraf ugu badnaanna 30 xaraf', + 'required' => 'Waa inaad qeexdaa ugu yaraan hal heer', + 'values' => 'Waa inaad doorataa heerka ADMIN amaba heerka USER', + ) , + 'username' => array( + 'admin' => 'Heerka User ADMIN-ka waxba lagama beddeli karo', + 'exists' => 'waan ka xunnahay, magaca Username-kan horay ayaa loo qaatay', + 'length' => 'Magaca Username-ku waa inuu ka kooban yahay ugu yaraan 2 xaraf ugu badnaanna 16 xaraf', + 'required' => 'Username ayaa loo baahan yahay', + 'superadmin' => 'Heerka super admin role waxba lagama beddeli karo', + ) , +); diff --git a/application/i18n/so/bug.php b/application/i18n/so/bug.php new file mode 100755 index 0000000000..955c2a5be5 --- /dev/null +++ b/application/i18n/so/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Fadlan geli security code sax ah', + 'required' => 'Fadlan geli security code-ka', + ) , + 'email' => array( + 'email' => 'Emailkaad gelisay sax ma aha', + 'length' => 'Email-kaagu waa inuu ka kooban yahay ugu yaraan afar xaraf, ugu badnaanna 64 xaraf', + 'required' => 'Email ayaa loo baahan yahay haddii sanduuqu saxan yahay', + ) , + 'error' => array( + 'required' => 'Goobta khaladka ayaa loo baahan yahay', + ) , + 'subject' => array( + 'length' => 'Halka loogu talagalay in lagu qoro mawduuca (Subject)waa inaysan ka yaraan saddex xaraf', + 'required' => 'Mawduuc(Subject)ayaa loo baahan yahay', + ) , + 'yourname' => array( + 'length' => 'Magaca waa inuusan ka yaraan saddex xaraf', + 'required' => 'Magac ayaa loo baahan yahay', + ) , +); diff --git a/application/i18n/so/category.php b/application/i18n/so/category.php new file mode 100755 index 0000000000..4f32874c17 --- /dev/null +++ b/application/i18n/so/category.php @@ -0,0 +1,30 @@ + array( + 'length' => 'Goobta midabbada waa inaysan ka yaraan lix xaraf', + 'required' => 'Goobta midabbada ayaa loo baahan yahay', + ) , + 'category_description' => array( + 'required' => 'Goobta sharraxaad ka bixinta ayaa loo baahan yahay', + ) , + 'category_image' => array( + 'size' => 'Fadlan iska xaqiiji in culeyska sawirka uusan ka badneyn 50KB.', + 'type' => 'Sawirka aad gelisay sax ma aha. Hannaan sawireedyadda la ogol yahay waa .JPG, .PNG iyo .GIF.', + 'valid' => 'Fayl sax ah kuma jiro goobta sawirka', + ) , + 'category_title' => array( + 'length' => 'Cinwaanku waa inuusan ka yareyn 3 xaraf, kana badnayn 80 xaraf', + 'required' => 'Cinwaan ayaa loo baahan yahay', + ) , + 'parent_id' => array( + 'exists' => 'Khaanadda weyn ma jirto', + 'numeric' => 'Khaanadda weyn waa inay tiro ahaataa', + 'required' => 'Goobta khaanadda weyn waa loo baahan yahay', + 'same' => 'Khaanadaha faraca iyo khaanadda weyn isku mid ma noqon karaan', + ) , +); diff --git a/application/i18n/so/comments.php b/application/i18n/so/comments.php new file mode 100755 index 0000000000..657a2621f3 --- /dev/null +++ b/application/i18n/so/comments.php @@ -0,0 +1,24 @@ + array( + 'default' => 'Fadlan geli security code sax ah', + 'required' => 'Fadlan geli security code-ka', + ) , + 'comment_author' => array( + 'length' => 'Magacu waa inuusan ka yareyn saddex xaraf', + 'required' => 'Magac ayaa loo baahan yahay', + ) , + 'comment_description' => array( + 'required' => 'Farriin ayaa loo baahan yahay', + ) , + 'comment_email' => array( + 'email' => 'Emailkaad gelisay sax ma aha', + 'length' => 'Emailkaagu waa inuu ka kooban yahay ugu yaraan 4 xaraf, ugu badnaanna 64 xaraf', + 'required' => 'Email ayaa loo baahan yahay haddii sanduuqu saxan yahay', + ) , +); diff --git a/application/i18n/so/contact.php b/application/i18n/so/contact.php new file mode 100755 index 0000000000..fcf6bc51a3 --- /dev/null +++ b/application/i18n/so/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Fadlan geli security code sax ah', + 'required' => 'Fadlan geli security code-ka', + ) , + 'contact_email' => array( + 'email' => 'Email-kaad gelisay sax ma aha', + 'length' => 'Email-kaagu waa inuu ka kooban yahay ugu yaraan 4 xaraf, ugu badnaanna 64 xaraf', + 'required' => 'Email ayaa loo baahan yahay haddii sanduuqu saxan yahay', + ) , + 'contact_message' => array( + 'required' => 'Goobta farriimaha waa loo baahan yahay', + ) , + 'contact_name' => array( + 'length' => 'Magacu waa inuusan ka yareyn saddex xaraf', + 'required' => 'Magac ayaa loo baahan yahay', + ) , + 'contact_subject' => array( + 'length' => 'Cinwaanku waa inuusan ka yarayn saddex xaraf', + 'required' => 'Cinwaan ayaa loo baahan yahay', + ) , +); diff --git a/application/i18n/so/core.php b/application/i18n/so/core.php new file mode 100755 index 0000000000..0bb93042b9 --- /dev/null +++ b/application/i18n/so/core.php @@ -0,0 +1,32 @@ + 'so_SO: ', + 'controller' => 'Maamule barnaamij Software', + 'driver' => '(Driver)Barnaamij Software ah oo awood u siiya inay aaladi shaqeyso', + 'driver_implements' => 'Barnaamijka software-ka waa inuu sameeyaa isku xirka', + 'driver_not_found' => 'Barnaamijka Software-ka ee keydka faylashan waa la la\'yahay', + 'errors_disabled' => 'Waxaad booqan kartaa home page or try again.', + 'generic_error' => 'Dalabkaaga waa la dhamaystiri waayay', + 'helper' => 'Caawiye', + 'invalid_filetype' => 'Nooca faylka aad dalbatay, .%s, loogama ogola gudaha halka laga hagaajiyo faylka', + 'invalid_method' => 'Hab khaldan %s la yiraahdo %s', + 'invalid_property' => 'Habka %s lagama heli karo dabaqada %s', + 'library' => 'Keydka faylasha', + 'log_dir_unwritable' => 'Log directory-ga lama qori karo: %s', + 'model' => 'Hab', + 'no_controller' => 'Ushahidi way soo saari wayday dalabkaaga: %s', + 'no_default_route' => 'Fadlan waxba haka beddelin habka config/routes.php.', + 'page_not_found' => 'Bogga aad dalbatay lama heli karo', + 'report_bug' => 'Usheeg arintan Ushahidi', + 'resource_not_found' => 'dalabka %s, %s,waa la waayay', + 'stack_trace' => 'Tool-ka Stack Trace', + 'there_can_be_only_one' => 'Waxaad heli kartaa hal Ushahidi dalabka bog kasta', + 'uncaught_exception' => 'Lama helin %s: %s in file %s on line %s', + 'view' => 'Aragti', + 'view_set_filename' => 'Iska hagaaji magaca faylka ka hor inta aadan gudbin', +); diff --git a/application/i18n/so/database.php b/application/i18n/so/database.php new file mode 100755 index 0000000000..41ee991c80 --- /dev/null +++ b/application/i18n/so/database.php @@ -0,0 +1,10 @@ + 'Khalad dhanka keydka xogta ah ayaa jira: %s', + 'table_not_found' => 'Warbixinta aad raadinayso waa laga waayay keydka xogta. Fadlan hubi inaad isticmaalayso keyd xogeed ku shaqeyn kara version-ka Ushahidi', +); diff --git a/application/i18n/so/datetime.php b/application/i18n/so/datetime.php new file mode 100755 index 0000000000..74da146d94 --- /dev/null +++ b/application/i18n/so/datetime.php @@ -0,0 +1,38 @@ + 'a.m. (Waqtiga u dhexeeya saqda dhexe ilaa 12:00 duhurkii)', + 'friday' => array( + 'abbv' => 'Jimce', + 'full' => 'Jimce', + ) , + 'monday' => array( + 'abbv' => 'Isniin', + 'full' => 'Isniin', + ) , + 'pm' => 'p.m. (Duhur kaddib)', + 'saturday' => array( + 'abbv' => 'Sabti', + 'full' => 'Sabti', + ) , + 'sunday' => array( + 'abbv' => 'Axad', + 'full' => 'Axad', + ) , + 'thursday' => array( + 'abbv' => 'Khamiis', + 'full' => 'Khamiis', + ) , + 'tuesday' => array( + 'abbv' => 'Talaado', + 'full' => 'Talaado', + ) , + 'wednesday' => array( + 'abbv' => 'Arbaco', + 'full' => 'Arbaco', + ) , +); diff --git a/application/i18n/so/feeds.php b/application/i18n/so/feeds.php new file mode 100755 index 0000000000..ac1fd1cb19 --- /dev/null +++ b/application/i18n/so/feeds.php @@ -0,0 +1,19 @@ + 'Taariikhda', + 'feed_name' => array( + 'length' => 'Magaca xogta Feed-ku waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 70 xaraf', + 'required' => 'Fadlan geli magaca xogta Feed-ka', + ) , + 'feed_url' => array( + 'required' => 'Fadlan geli URL-ka xogta Feed-ka', + 'url' => 'Fadlan geli URL jira. Tusaale ahaan: http://www.ushahidi.com', + ) , + 'source' => 'Asalka', + 'title' => 'Cinwaan', +); diff --git a/application/i18n/so/footer.php b/application/i18n/so/footer.php new file mode 100755 index 0000000000..4612ee4df1 --- /dev/null +++ b/application/i18n/so/footer.php @@ -0,0 +1,9 @@ + 'Isku xiraha php5-curl kuma rakibna mashiin-kaaga', +); diff --git a/application/i18n/so/form.php b/application/i18n/so/form.php new file mode 100755 index 0000000000..f7b2044190 --- /dev/null +++ b/application/i18n/so/form.php @@ -0,0 +1,45 @@ + array( + 'length' => 'Magaca goobtu waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 200 oo xaraf', + ) , + 'field_height' => array( + 'between' => 'Fadlan geli qiime u dhaxeeya 0-50 si aad u hagaajiso joogga goobta', + ) , + 'field_isdate' => array( + 'between' => 'Sax maaha qiimaha aad gelisay goobta taariikhda', + 'required' => 'Fadlan u dooro Haa ama Maya goobta taariikhda', + ) , + 'field_name' => array( + 'length' => 'Magaca goobtu waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 200 oo xaraf', + 'required' => 'Fadlan geli magaca goobta', + ) , + 'field_required' => array( + 'between' => 'Waxaad goobta gelisay qiime khaldan', + 'required' => 'Fadlan u dooro Haa ama Maya goobta loo baahan yahay', + ) , + 'field_type' => array( + 'numeric' => 'Fadlan dooro nooc goob sax ah', + 'required' => 'Fadlan dooro nooca goobta', + ) , + 'field_width' => array( + 'between' => 'Fadlan geli qiime u dhaxeeya 0-300 si aad u hagaajiso ballaca goobta', + ) , + 'form_description' => array( + 'required' => 'Fadlan geli sharraxaad ku saabsan foomka', + ) , + 'form_id' => array( + 'default' => 'Foomka asalka ah (default) lama tiri karo', + 'numeric' => 'Fadlan dooro foomka aad doonayso inaad ku soo darto goobtan', + 'required' => 'Fadlan dooro foomka aad doonayso inaad ku soo darto goobtan', + ) , + 'form_title' => array( + 'length' => 'Magaca foomka ee goobta waa inuu ka kooban yahay ugu yaraan 3 xaraf, ugu badnaanna 200 oo xaraf', + 'required' => 'Fadlan geli magaca foomka', + ) , +); diff --git a/application/i18n/so/imap.php b/application/i18n/so/imap.php new file mode 100755 index 0000000000..3883cef93a --- /dev/null +++ b/application/i18n/so/imap.php @@ -0,0 +1,10 @@ + 'Wuu furi waayay IMAP Stream', + 'unsupported_service' => 'Addeega Emailkan ma shaqeynayo', +); diff --git a/application/i18n/so/installer.php b/application/i18n/so/installer.php new file mode 100755 index 0000000000..179f1053bc --- /dev/null +++ b/application/i18n/so/installer.php @@ -0,0 +1,76 @@ + 'Waddada aasaaska ah', + 'database' => 'Keydka xogta', + 'database_host' => 'Martigeliyaha keydka xogta', + 'database_host_description' => 'Haddii Ushahidi aad ka maamulayso computer-kaaga, computer-kaaga waxa uu noqonayaa "Localhost". Haddiise Ushahidi aad ka maamulayso computer-ka nooca web serverka, waxaad warbixinnada ka heleysaa shirkadda hosti gareyneysa boggaaga', + 'database_name' => 'Magaca keydka xogta', + 'database_name_description' => 'Magaca keydka xogta ee aad doonayso inaad ku maamusho Ushahidi', + 'db_information_link' => 'Wixii faahfaahin ah, fadlan ku raadi link-gaan this article website sida faahfaahsan uga hadlayo keydadka xogta.', + 'default_language' => 'Luuqadda asalka ah', + 'default_language_description' => 'Version kasta oo Ushahidi waxa uu la yimaadaa luuqado ku dhisan gudihiisa oo diyaar u ah in la turjumo. Waxaad ku dari kartaa luuqadaada hooyo ', + 'disable' => 'Awoodda ka xir', + 'enable' => 'Awood sii', + 'error_summary' => 'Waxaa hoos ku xusan warbixin kooban oo ku saabsan cilladaha aanu la kulannay', + 'files_location_text' => 'Halka aad faylasha Ushahidi ka dhigtay Computerka Serverka. Waxaa noo soo baxay qiimahan, fadlan hubi inuu sax yahay. Haddii goobtu ay maran tahay, ha welwelin, Ushahidi waxay ku rakiban tahay khaanadda kore', + 'finished' => 'Dhammaystiran', + 'general' => 'Guud ahaan', + 'google_key_description' => 'Qof kasta waa uu heli karaa furaha api. Hel kaaga hadda', + 'go_back' => 'Dib u noqo', + 'index' => array( + 'advanced' => 'Rakibaad horumarsan', + 'advanced_installation_description' => 'Waxaad qaabka loo hagaajiyo ka heli kartaa adigoo raacaya hannaanka 5-ta tallaabo. Waxaa 5-ta hannaan ka mid ah computerka Server-ka, khariidadda, magaca bogga iyo halka lagala xiriirayo', + 'basic_installation' => 'Rakibaadda aasaaska ah', + 'basic_installation_description' => 'Rakibaaddu waa ay fududdahay, waana deg-deg. Keliya waxaad u baahan tahay waddada lagu galo boggaaga iyo warbixinta keydka xogtaada', + 'proceed' => ' sii wad', + 'welcome' => 'Ku soo dhawow hannaanka rakibaadda Ushahidi ee server-ada. Hoos ka dooro nooca rakibaadda aad jeclaan lahayd inaad computer-kaaga ku rakibto', + ) , + 'installation_successful' => 'Rakibaaddu si fiican ayay u dhammaatay', + 'mail_server_host' => 'Martigeliyaha mail Server-ka', + 'mail_server_host_description' => 'Tusaaleyaal: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Password-ka Mail Server-ka', + 'mail_server_password_description' => 'Password-ka aad sida caadiga ah ugu gasho email-kaaga', + 'mail_server_port_description' => 'Ports-ka caadiga ah: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => ' Nooca mail Server-ka', + 'mail_server_type_description' => 'en_US: Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). What is the difference?', + 'mail_server_username' => 'Username-ka lagu galo Mail Server-ka', + 'mail_server_username_description' => 'Haddii aad isticmaalayso Gmail, Hotmail, ama Yahoo Mail, u isticmaal Emailkaaga oo dhamaystiran magaca aad ku galayso', + 'map' => 'Khariidad', + 'map_provider' => 'Khariidad bixiye', + 'map_provider_description' => 'Ushahidi si siman ayay ula shaqeysaa afarta khariidad bixiye: Google, Bing, Yahoo ama Open Street Map. Dooro midda ay ku jirto faahfaahin ku saabsan goobta aad ku sugan tahay', + 'other_steps' => 'Wadiiqooyin kale...', + 'password_description' => 'Password-ka keydka xogtaada', + 'previous' => 'Hore', + 'restart_apache' => 'Fadlan dib u soo kici Server-kaaga Apache', + 'select_mail_server_ssl' => 'Awood sii ama awoodda ka xir SSL', + 'select_mail_server_ssl_description' => 'Qaar ka mid ah Mail Servers-ku waxay ku siinayaan dookha ah inaad isticmaasho SSL marka aad sameyneyso xiriirin. Addeegsiga SSL waa uu fiican yahay maadaama uu ku siinayo amni dheeraad ah', + 'setup_sms' => 'Rakib Server-kaaga SMS-yada', + 'site_email' => 'Cinwaanka Emailka ee bogga', + 'site_email_alerts' => 'Ciwaanka Email-ka farriimaha ee bogga', + 'site_email_alerts_description' => 'Marka booqdaha boggaaga uu iska diiwaangeliyo farrimaha E-mailka, waxay farriimaha ka heli doonaan cinwaankan. Waa inuusan cinwaanka Emailkan la mid noqon cinwaanka Emailka bogga', + 'site_email_description' => 'Email-ka bogga waxaa lagu xiriirin doonaan cinwaankan', + 'site_name' => 'Magaca bogga.', + 'site_name_description' => 'Magaca boggaaga', + 'site_tagline' => 'Tagline-ka bogga', + 'site_tagline_description' => 'Tagline kaaga', + 'summary' => array( + 'text_1' => 'Faylasha iyo galalka hoos ku xusan waxay u baahan yihiin in lagu qoro webserver-kaaga', + 'text_2' => '

Waxaa halkan ku qoran tilmaamaha marka la beddelayo ogolaashaha faylasha:

+so_SO: ', + 'text_3' => 'Ka hor intaadan billaabin, waxaad u baahan tahay inaad xaqiijiso in faylasha iyo galalka soo socda lagu qori karo webserver-kaaga. Waxaa ku jira bedbeddellada ogolaanshaha faylka', + 'text_4' => 'Fadlan waa inaad haysataa tilmaamahan marka aad rakibayso', + ) , + 'table_prefix' => 'Horgallaha jadwalka', + 'table_prefix_description' => 'Ha beddelin horgalaha jadwal-ka. Inkastoo, aad beddeli karto marka aad doonayso inaad hal xog keydiyo kana kiciso dhowr rakabitaan', + 'title' => 'Mowduuc', + 'to_login' => 'Haddaad rabto inaad gasho, aad', + 'upload_data' => 'U dir xogta report-ka server-ka', + 'username_description' => 'Username-ka keyd xogeedkaaga', + 'use_credentials' => 'Isticmaal caddeymaha soo socda', + 'view_site' => 'Booqo boggaaga', +); diff --git a/application/i18n/so/layer.php b/application/i18n/so/layer.php new file mode 100755 index 0000000000..8dd79dfded --- /dev/null +++ b/application/i18n/so/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Goobta midabku waa inay ahaataa ugu badnaan 6 xaraf', + 'required' => 'Goobta midabka ayaa loo baahan yahay', + ) , + 'layer_file' => array( + 'type' => 'Goobta faylka kuma jiro fayl sax ah. Hannaan fayleedka la aqbali karo waa .KMZ, .KML keliya', + 'valid' => 'Faylku waa khaldan yahay', + ) , + 'layer_name' => array( + 'length' => 'Magacu waa inuu ka kooban yahay ugu yaraan saddex xaraf, ugu badnaanna 80 xaraf', + 'required' => 'magac ayaa loo baahan yahay', + ) , + 'layer_url' => array( + 'atleast' => 'URL-ka KML ama fayl ayaa loo baahan yahay', + 'both' => 'Ma wada socon karaan fayl KML ah iyo URL KML ah', + 'url' => 'Fadlan geli URL sax ah. Tusaale http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/so/libraries.php b/application/i18n/so/libraries.php new file mode 100755 index 0000000000..ac28d02470 --- /dev/null +++ b/application/i18n/so/libraries.php @@ -0,0 +1,26 @@ + 'Kuma xirmi karo Server-ka akismet', + 'akismet_cannot_retrieve' => 'jawaabta ka imaaneysa akismet lama heli karo', + 'api_library_not_found' => 'Keydka xogta ee API lama heli karo: %s, for the %s. Fadlan iska hubi API Routing Table-ka', + 'askimet_invalid_apikey' => 'Furahaaga Server-ka Akismet API ma ahan mid jira', + 'clickatell_fopen_error' => 'Cillad ayaa dhacday. Fadlan hubi in isku xiraha PHP uu leeyahay taageerka OpenSSL iyo in Version-ku ka wayn yahay 5.2', + 'clickatell_message_too_long' => 'Farriinta Unicode-kaagu aad bay u dheer tahay. (Dhererka haatan=', + 'clickatell_no_destination_address' => 'Fadlan caddee cinwaanka loo dirayo!', + 'clickatell_no_sender_address' => 'Fadlan caddee cinwaanka laga dirayo!', + 'clickatell_unicode_message_too_long' => 'Farriinta Unicode-kaagu aad bay u dheer tahay! (Dhererka haatan=', + 'clickatell_unsupported_method' => 'Khalad xagga diridda ah ayaa jira!', + 'invalid_api_library' => 'Keydka xogta ee API % waa khalad. Dhammaan keydadka xogta waa inay hoos yimaadan %', + 'upgrade_directory_not_deleted' => 'Galka %s lama tiri karo', + 'upgrade_extracting_error' => 'Cillad ayaa dhacday: %s', + 'upgrade_failed' => 'Soodejinta version-kii u dambeeyay ee Ushahidi waa uu guuldarreystay. HTTP status Code', + 'upgrade_file_not_copied' => 'Faylka %s waa la badin kari waayay', + 'upgrade_file_not_deleted' => 'Faylka %s waa la tiri waayay', + 'upgrade_title' => 'Script-ga casriyeynta Ushahidi', + 'upgrade_zip_error' => 'Faylka zip-ka ah ee la soo dejiyay ee Ushahidi %s, waa la qori waayay', +); diff --git a/application/i18n/so/maintenance.php b/application/i18n/so/maintenance.php new file mode 100644 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/so/maintenance.php @@ -0,0 +1,7 @@ + array( + 'default' => 'Fadlan geli security code sax ah', + 'required' => 'Fadlan geli security code-ka', + ) , + 'email' => array( + 'email' => 'Email-kaad gelisay sax ma aha', + 'length' => 'Emailku waa inuu ka koobnaadaa ugu yaraan 4 xaraf ugu badnaanna 64 xaraf', + 'required' => 'Email ayaa loo baahan yahay hadduu sanduuqu saxan yahay', + ) , + 'message' => array( + 'required' => 'Faallooyin ayaa loo baahan yahay', + ) , + 'name' => array( + 'length' => 'Magacu waa inuu ka koobnaadaa ugu yaraan 3 xaraf', + 'required' => 'Magac ayaa loo baahan yahay', + ) , + 'phone' => array( + 'length' => 'Telefoonku ma ahan mid sax ah', + ) , +); diff --git a/application/i18n/so/mhi.php b/application/i18n/so/mhi.php new file mode 100755 index 0000000000..5bbccfb99a --- /dev/null +++ b/application/i18n/so/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Fadlan geli security code sax ah', + 'required' => 'Fadlan geli security code-ka', + ) , + 'contact_email' => array( + 'email' => 'Email-ka aad gelisay sax ma aha?', + 'required' => 'Fadlan keen cinwaan email sax ah', + ) , + 'contact_message' => array( + 'required' => 'Farriin ayaa loo baahan yahay', + ) , + 'contact_subject' => array( + 'length' => 'Mawduucu waa inuu ka kooban yahay ugu yaraan 3 xaraf', + 'required' => 'Mawduuc ayaa loo baahan yahay', + ) , +); diff --git a/application/i18n/so/notifications.php b/application/i18n/so/notifications.php new file mode 100755 index 0000000000..516ea696ec --- /dev/null +++ b/application/i18n/so/notifications.php @@ -0,0 +1,26 @@ + 'Farriintaan waxaa laga soo diray boggaaga', + 'admin_login_url' => 'Ku-gelidda Administrator-ka', + 'admin_new_comment' => array( + 'message' => 'Farriin cusub ayaa loo gudbiyay boggaaga taasoo jawaab u ah:', + 'subject' => 'Farriin cusub', + ) , + 'admin_new_email' => array( + 'message' => 'Farriin cusub oo Email ah ayaa loo gudbiyay boggaaga', + 'subject' => 'Farriin cusub oo Email ah', + ) , + 'admin_new_report' => array( + 'message' => 'Warbixin cusub ayaa loo gudbiyay boggaaga', + 'subject' => 'Warbixin cusub', + ) , + 'admin_new_sms' => array( + 'message' => 'Farriin qoraaleed cusub ayaa loo gudbiyay boggaaga', + 'subject' => 'Farriin qoraaleed cusub', + ) , +); diff --git a/application/i18n/so/page.php b/application/i18n/so/page.php new file mode 100644 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/so/page.php @@ -0,0 +1,7 @@ + 'so_SO:', + 'data_include' => array( + 'between' => 'Fadlan dooro shay jira si aad ugu darto qeybaha aad soo roganeysid.', + 'numeric' => 'Fadlan dooro shay jira si aad ugu darto qeybaha aad soo roganeysid', + ) , + 'data_point' => array( + 'between' => 'Fadlan dooro warbixin jirta si aad ugu darto qeybaha soo rogashada', + 'numeric' => 'Fadlan dooro warbixin jirta si aad ugu darto qeybaha soo rogashada', + 'required' => 'fadlan dooro warbixin jirta si aad ugu darto qeybaha soo rogashada', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Goobta FROM date-ka sax ma ahan.', + 'range' => 'Fadlan geli taariikhda waqtiga la soo diray. Maanta wax dhaafsan yeysan noqon.', + ) , + 'incident_active' => array( + 'between' => 'Fadlan geli qiime sax ah sii loo aqbalo Warbixintan.', + 'required' => 'Fadlan geli qiimeyn sax ah si loo aqbalo warbixintan', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Goobta a.m/p.m kuma jiro qiime sax ah.', + ) , + 'incident_category' => array( + 'numeric' => 'Goobta category kuma jiro qiime sax ah.', + 'required' => 'Qeybta category ayaa loo baahan yahay.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Taariikhdu ma ahan mid sax ah?', + 'date_mmddyyyy' => 'Taariikhdu ma ahan mid sax ah?', + 'required' => 'Taariikhda ayaa loo baahan yahay', + ) , + 'incident_description' => array( + 'required' => 'Goobta sharraxaad ka bixinta ayaa loo baahan yahay.', + ) , + 'incident_hour' => array( + 'between' => 'Saacaddu ma ahan mid sax ah?', + 'required' => 'saacadda ayaa loo baahan yahay', + ) , + 'incident_information' => array( + 'alpha' => 'Fadlan geli qiime sax ah si loo sugo xogta sida wax u dhacayaan', + 'length' => 'Fadlan geli qiime sax ah.', + ) , + 'incident_minute' => array( + 'between' => 'Goobta daiiqada kuma jiro qiime sax ah?', + 'required' => 'Daqiiqaddo ayaa loo baahan yahay.', + ) , + 'incident_news' => array( + 'url' => 'URL sax ah kuma jiro?', + ) , + 'incident_photo' => array( + 'size' => 'Fadlan hubi in sawirka aad gelinayso uusan ka weyneyn 2MB.', + 'type' => 'Sawirku ma ahan mid sax ah. waxaa la ogol yahay oo kaliya JPG, .PNG, iyo .GIF.', + 'valid' => 'sawirku ma ahan mid sax ah.', + ) , + 'incident_source' => array( + 'alpha' => 'Fadlan geli qiime sax ah.', + 'length' => 'Fadlan geli qiime sax ah.', + ) , + 'incident_title' => array( + 'length' => 'Cinwaanka Qoraalka waa inuu ahaadaa ugu yaran 3 xaraf ugu badnaana 200 xaraf.', + 'required' => 'Ciwaanka Qoraalka ayaa loo baahan yahay', + ) , + 'incident_verified' => array( + 'between' => 'Fadlan geli qiime sax ah si warbixintan loo aqbalo.', + 'required' => 'Fadlan geli qiime sax ah si loo xaqiijiyo warbixintan.', + ) , + 'incident_video' => array( + 'url' => 'URL-ka Video-gan sax ma aha.', + ) , + 'latitude' => array( + 'between' => 'Xarriiqda loolku ma ahan mid sax ah.', + 'required' => 'Waxaa loo baahan yahay xariiqda loolka. Fadlan ka guji khariiradda meel si aad u tilmaantid goob. ', + ) , + 'locale' => array( + 'alpha_dash' => 'Goobtu malahan qiime sax ah.', + 'exists' => 'Warbixintan horaa loogu turjumey luuqaddan.', + 'length' => 'Goobtu ma lahan qiime sax ah.', + 'locale' => 'Warbixinta hore iyo turjumiddu waa hal luuqad.', + 'required' => 'Goobta ayaa loo bahan.', + ) , + 'location_name' => array( + 'length' => 'Magaca goobtu waa inuu ugu yaraan ahaadaa 3 xaraf ugu badnaana 200 xaraf.', + 'required' => 'Magaca goobta ayaa loo baahan yahay.', + ) , + 'longitude' => array( + 'between' => 'Qiime sax ah kuma jiro.', + 'required' => 'Goobta Longitude ayaa loo baahan yahay. Fadlan guji khariidada si aad u doorato goob ka mid ah khariidada.', + ) , + 'person_email' => array( + 'email' => 'Email-ka aad gelisay sax ma aha.', + 'length' => 'Email-ku waa inuu ahaadaa ugu yaraan 4 xaraf ugu badnaana 64 xaraf', + ) , + 'person_first' => array( + 'length' => 'Magaca hore waa inuu ahaadaa ugu yaraan 3 xaraf ugu badnaana 10 xaraf.', + ) , + 'person_last' => array( + 'length' => 'Magaca dambe waa inuu ahaadaa ugu yaraan 3 xaraf ugu badnaana 100 xaraf.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Waqtiga loo direy ma ahan sax.', + 'range' => 'Fadlan geli waqtiga loo direy oo sax ah. Yeysan noqon maanta mid dhaafsiisan', + 'range_greater' => 'Waqtiga soo diray waa inuusan ka waynayn waqtiga loo diray', + ) , +); diff --git a/application/i18n/so/reporters.php b/application/i18n/so/reporters.php new file mode 100755 index 0000000000..d01be5870a --- /dev/null +++ b/application/i18n/so/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Xarriiqda loolku (latitude)sax ma aha?', + 'required' => 'Xarriiqda loolka (latitude) ayaa loo baahan yahay. Fadlan guji khariidada si aad goob u tilmaanto.', + ) , + 'level_id' => array( + 'numeric' => 'Goobta Reporter Level-ka kuma jiro Level sax ah.', + 'required' => 'Goobta Reporter Level-ka kuma jiro Level sax ah.', + ) , + 'location_name' => array( + 'length' => 'Magaca goobtu waa inuu ahaadaa ugu yaraan 3 xaraf, ugu badnaana 200 xaraf.', + 'required' => 'Magaca goobta ayaa loo baahan yahay.', + ) , + 'longitude' => array( + 'between' => 'Goobta longitude-ku ma lahan longitude sax ah?', + 'required' => 'Goobta longitude ayaa loo baahan yahay.Fadlan guji khariidada si aad u tilmaantid goob. ', + ) , + 'reporter_id' => array( + 'numeric' => 'Soo tebiyuhu sax ma aha.', + 'required' => 'Soo tebiyuhu sax ma aha.', + ) , +); diff --git a/application/i18n/so/reports.php b/application/i18n/so/reports.php new file mode 100644 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/so/reports.php @@ -0,0 +1,7 @@ + array( + 'length' => 'Goobta sharraxaadu waa inay ka kooban tahay ugu yaraan 3 xaraf, ugu badnaana 100 xaraf.', + 'required' => 'Goobta sharraxaada waa loo baahan yahay.', + ) , + 'name' => array( + 'alpha_numeric' => 'Goobta magaca waa inay ka kooban tahay kaliya xarfo iyo tiro.', + 'length' => 'Magaca goobtu waa inuu ka kooban yahay ugu yaraan 2 xaraf, ugu badnaana 30 xaraf.', + 'nomodify' => 'Heerka SuperAdmin waxba lagama bedeli karo.', + 'required' => 'Magaca goobta waa loo baahan yahay.', + ) , +); diff --git a/application/i18n/so/settings.php b/application/i18n/so/settings.php new file mode 100755 index 0000000000..aee887b7e1 --- /dev/null +++ b/application/i18n/so/settings.php @@ -0,0 +1,183 @@ + array( + 'between' => 'Qiimaha ku jira goobta allow comments sax ma aha?', + 'required' => 'Goobta allow comments waa loo baahan yahay.', + ) , + 'allow_feed' => array( + 'between' => 'Goobta include feed kuma jiro qiime sax ah?', + 'required' => 'Goobta include feed waa loo baahan yahay.', + ) , + 'allow_reports' => array( + 'between' => 'Goobta allow reports kuma jiro qiime sax ah?', + 'required' => 'Goobta allow reports waa loo baahan yahay.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Goobta stat sharing kuma jiro qiime sax ah?', + 'required' => 'Goobta stat sharing field waa loo baahan yahay.', + ) , + 'api' => array( + 'default_record_limit' => 'Rikoodhyada lagu soo saarayo halkii dalab ee API', + 'maximum_record_limit' => 'Rikoodhyada ugu badan ee lagu soo saarayo halkii dalab ee API', + 'maximum_requests_per_ip_address' => 'Tirada ugu badan ee dalabyada API ee halkii IP address.', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Goobta Akismet field kuma jiro qiime sax?', + 'length' => 'Goobta Akismet kuma jiro qiime sax ah?', + ) , + 'cache_pages' => array( + 'between' => 'Goobta boggaga cache waa loo baahan yahay.', + 'required' => 'Goobta boggaga cache kuma jiro qiime sax ah?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Goobta boggaga cache pages lifetime field kuma jiro qiime sax ah?', + 'required' => 'Goobta boggaga cache pages lifetime waa loo baahan yahay.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Waxay u muuqataa in Server-kaagu uusan u sameysnayn inuu ku shaqeeyo URLs nadiif ah. Waxaad u baahan tahay inaad wax ka bedesho settings-ka server-kaaga kahor inta aadan awood siinin URLs-yada nadiifka ah (Clean URLs). Waxaad halkan ka akhrisaa warbixin dheeraad ah oo ku saabsan sida loo awood siiyo clean URLs post', + 'clean_url_enabled' => 'Amarkaan waxa uu awood kuu siinayaa in Ushahidi laga geli karo "clean" URLs-yada. Iya', + 'enable_clean_url' => 'Awood sii Clean URLs', + 'title' => 'URLs nadiif ah (Clean URLs)', + ) , + 'clickatell_api' => array( + 'length' => 'tirada Clickatell API waa inaysan ka badnayn 20 xaraf.', + 'required' => 'Goobta tirada Clickatell API waa loo baahan yahay.', + ) , + 'clickatell_password' => array( + 'length' => 'Password-ka Clickatell waa inuu ka kooban yahay ugu yaraan 5 xaraf, ugu badnaana 50 xaraf.', + 'required' => 'Goobta password-ka Clickatell waa loo baahan yahay.', + ) , + 'clickatell_username' => array( + 'length' => 'Goobta username-ka ee Clickatell waa inaysan ka badnayn 50 xaraf.', + 'required' => 'Username-ka Clickatell ayaa loo baahan yahay.', + ) , + 'configure_map' => 'Habbee khariidada.', + 'default_location' => 'Goobta asalka ah.', + 'default_map_all' => array( + 'alpha_numeric' => 'Goobta midabadda ee Feed-ka kuma jiro qiime sax ah?', + 'length' => 'Goobta midabadda waa inaysan ka yarayn 6 xaraf.', + 'required' => 'Goobta middabada ayaa loo baahan yahay.', + ) , + 'default_map_view' => 'Aragtida khariidada asalka ah.', + 'default_zoom_level' => 'Heerka weyneynta', + 'download_city_list' => 'Kala soo bax magaalooyinka Geonames', + 'email_host' => array( + 'length' => 'Goobta port Mail server-ka aad buu u dheer yahay.', + 'numeric' => 'Goobta port Mail server-ka waa inay ka kooban tahay tiro kaliya.', + ) , + 'email_password' => array( + 'length' => 'Goobta password-ka ee Mail Server-ka waa inuu ka kooban yahay ugu yaraan 5 xaraf, ugu badnaana 50 xaraf.', + 'required' => 'Goobta password-ka Mail Server-ka waa loo baahan yahay.', + ) , + 'email_port' => array( + 'length' => 'Goobta port Mail Server-ka aad bay u dheer tahay.', + 'numeric' => 'Goobta port Mail Server-ku waa inay ka kooban tahay tiro kaliya.', + ) , + 'email_servertype' => array( + 'length' => 'Goobta Mail Server port-ku aad bay u dheer tahay.', + 'required' => 'Goobta nooce ee Mail Server-ka waa loo baahan yahay.', + ) , + 'email_username' => array( + 'length' => 'Goobta Username-ka ee Mail Server-ku waa inaysan ka badnayn 50 xaraf.', + 'required' => 'Username-ka Mail Server-ka waa loo baahan yahay.', + ) , + 'google_analytics' => array( + 'length' => 'Goobta Google Anayltics waa inay ku jirtaa Web Property ID hannaankeedu ', + ) , + 'items_per_page' => array( + 'between' => 'Goobta Frontend kuma jiro qiime sax ah?', + 'required' => 'Goobta Frontend ayaa loo baahan yahay.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Goobta Admin kuma jiro qiime sax ah?', + 'required' => 'Goobta Admin ayaa loo baahan yahay.', + ) , + 'map' => array( + 'default_location' => 'Hagaajinta khariidad bixiyaha waa hawl fudud. Dooro bixiyaha khariidada, ka hel fure API khariidad bixiyaha boggiisa, kadib geli furaha API.', + 'zoom' => 'Heerka weyneynta', + ) , + 'map_provider' => array( + 'choose' => 'Dooro khariidad bixiye', + 'enter_api' => 'Geli fure cusub oo API ah.', + 'get_api' => 'Hel fure API', + 'info' => 'Hagaajinta khariidad bixiyaha waa hawl fudud. Dooro bixiyaha khariidada, ka hel fure API khariidad bixiyaha boggiisa, kadib geli furaha API.', + 'name' => 'Khariidad bixiye', + ) , + 'map_settings' => 'Hagaajinta khariidada', + 'multiple_countries' => 'Miyay rakibidda Ushahididan kala fogeyneysaa wadamada.', + 'select_default_location' => 'Fadlan dooro dalka loogu talagalay.', + 'set_location' => 'Guji oo jiid khariidada si aad u cayimato goobtaada saxda ah.', + 'site' => array( + 'allow_clustering' => 'Warbxinadda Clusters-ka ee khariidada.', + 'allow_comments' => 'U ogolow isticmalayaasha inay fikradahooda ku soo gudbiyaan warbixinadda.', + 'allow_feed' => 'RSS News Feed ku dar boggaaga.', + 'allow_reports' => 'u ogolow isticmaalayaasha inay soo gudbiyaan warbixinno.', + 'api_akismet' => 'Furaha Akismet', + 'cache_pages' => 'Boggaga Cache', + 'cache_pages_lifetime' => 'Boggaga Cache xiligooda', + 'copyright_statement' => 'Xuquuqda dhowrsanaanta bogga', + 'default_category_colors' => 'Middabka loogu talagalay dhamaan categories-ka.', + 'display_contact_page' => 'Soo bandhig bogga xiriirka', + 'display_howtohelp_page' => 'Soo bandhig bogga "Sida loo caawiyo"', + 'email_alerts' => 'Cinwaanka Email-ka ee farriimaha', + 'email_notice' => 'Si aad warbixinadda ugu hesho Email-kaaga, fadlan wax ka bedel setting-ka Email-kaaga.', + 'email_site' => 'Cinwaanka Email-ka ee bogga', + 'google_analytics_example' => 'ID-ga Web Property- Hannaanka: UA-XXXXX-XX', + 'items_per_page' => 'Xogta halkii boggba - wajahada hore', + 'items_per_page_admin' => ' Xogta halkii boggba- Admin', + 'kismet_notice' => ' Prevent comment spam using Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account', + 'laconica_configuration' => 'Caddeymaha Laconica', + 'laconica_site' => 'Bogga Laconica', + 'language' => 'Luuqada bogga', + 'message' => 'Farriinta bogga', + 'name' => 'Magaca bogga', + 'share_site_stats' => 'Awood sii Statistics-ka (ee ku keydsan server-ka Ushahidi)', + 'tagline' => 'Site Tagline-ka', + 'title' => 'Hagaajinta bogga', + 'twitter_configuration' => 'Shuruudaha baarista Twitter', + 'twitter_hashtags' => 'Hashtags - Ku kala sooc hakadyo', + ) , + 'site_email' => array( + 'email' => 'Goobta Email-ka bogga kuma jiro Email sax ah?', + 'length' => 'Goobta Email-ka bogga waa inay ka kooban tahay ugu yaraan afar xaraf, ugu badnaan 100 xaraf.', + ) , + 'site_name' => array( + 'length' => 'Goobta magaca bogga waa inay ka kooban tahay ugu yaraan afar xaraf, ugu badnaan 100 xaraf.', + 'required' => 'Goobta magaca bogga ayaa loo baahan yahay.', + ) , + 'site_tagline' => array( + 'length' => 'Goobta Tagline-ku waa inay ka kooban tahay ugu yaraan saddex xaraf, ugu badnaana 100 xaraf.', + 'required' => 'Goobta Tagline ayaa loo baahan yahay.', + ) , + 'sms' => array( + 'clickatell_api' => 'Nambarkaaga API Clickatell-ka', + 'clickatell_check_balance' => 'Iska hubi lacagta kuugu harsan Clickatell-kaaga', + 'clickatell_load_balance' => 'Lacag ku shub', + 'clickatell_password' => 'Password-ka Clickatell.', + 'clickatell_text_1' => 'Iska diiwaangeli addeega Clickatell clicking here', + 'clickatell_text_2' => 'Waxaad hoos gelisaa warbixinta awooda kuu siinaysa inaad gasho Clickatell.', + 'clickatell_username' => 'Username-ka aad ku leedahay Clickatell', + 'flsms_text_1' => 'Geli hoos nambar telefoon ku xiran Frontline SMS', + 'flsms_text_2' => 'Geli hoos nambar aan wadan calaamada + amaba jiitin intaba.', + 'option_1' => 'Dookha koowaad: Isticmaal farriimaha Frontline', + 'option_2' => 'Dookha labaad: Isticmaal farriimaha Global SMS Gateway.', + 'title' => 'Hababka loo rakibo SMS', + ) , + 'sms_no1' => array( + 'length' => 'Goobta telefoonka 1-aad kuma jiro qiime sax ah?', + 'numeric' => 'Goobta telefoonka 1-aad waa inay ka kooban tahay tiro kaliya.', + ) , + 'sms_no2' => array( + 'length' => 'Goobta telefoonka 2-aad aad bay u dheer tahay.', + 'numeric' => 'Goobta telefoonka 2-aad waa inay ka kooban tahay tiro kaliya.', + ) , + 'sms_no3' => array( + 'length' => 'Goobta telefoonka 3-aad aad bay u dheer tahay.', + 'numeric' => 'Goobta telefoonka 3-aad waa inay ka kooban tahay tiro kaliya.', + ) , +); diff --git a/application/i18n/so/sharing.php b/application/i18n/so/sharing.php new file mode 100755 index 0000000000..39ea68d2ae --- /dev/null +++ b/application/i18n/so/sharing.php @@ -0,0 +1,25 @@ + 'Taariikhda lagu daray.', + 'date_added' => 'Taariikhda lagu daray.', + 'last_access' => 'Daalacashadii ugu dambeysay.', + 'sharing_color' => array( + 'length' => 'Goobta midabku waa iney ahaataa ugu badnaan 6 xaraf.', + 'required' => 'Goobta midabka ayaa loo bahan yahay.', + ) , + 'sharing_name' => array( + 'length' => 'Magac-wadaaggu ma ahan mid sax ah?', + 'required' => 'Magaca-wadaagga ayaa loo baahan yahay.', + ) , + 'sharing_url' => array( + 'exists' => 'so_SO:', + 'length' => 'URL-ku maahan mid sax ah.', + 'required' => 'URL-ka bogga ayaa loo bahan yahay.', + 'url' => 'URL-ka boggu ma ahan mid sax ah.', + ) , +); diff --git a/application/i18n/so/stats.php b/application/i18n/so/stats.php new file mode 100755 index 0000000000..629b633265 --- /dev/null +++ b/application/i18n/so/stats.php @@ -0,0 +1,41 @@ + 'so_SO:', + 'categories' => 'Qeybaha.', + 'category_impact' => 'Saameynta qeybaha.', + 'category_impact_description' => 'Jadwalkan wuxuu kuu sahlayaa inaad daalacatid warbixinnada waqtiyadii gudbay adigoo ku salaynaya qeyb qeyb, hoos u daji xarriijinta adigoo ka bilaabaya dhanka bidix aadayana dhanka midig si aad u daalacatid qeybaha kale ee la midka ah, Mouse-ka dul saar si aad faahfaahin dheeri ah uga heshid.', + 'choose_date_range' => 'Dooro taariikh taxan.', + 'countries' => 'Wadamada', + 'country' => 'Wadanka', + 'country_breakdown' => 'Qeybaha wadanka.', + 'description' => 'Hoodi! halkani waa qeybta tiro koobka, Faahfaahin guud ayaa halkan kasoo socota, Haddase daalaco adigoo isticmaalaya qeybaha kore.', + 'error' => 'Khalad', + 'glossary' => 'Liiska Magacyada', + 'legend' => 'Legend.', + 'pageviews' => 'Inta jeer oo bogga la booqday.', + 'pageviews_description' => 'Tirada guud ee boggaga ay soo booqdeyaashu ka daalacdeen boggaaga.', + 'reports' => 'Warbixinnada.', + 'reports_categories' => 'Qeybaha warbixinnada.', + 'reports_statistics' => 'Tiro koobka warbixinnada.', + 'reports_status' => 'Heerka warbixinnada.', + 'report_punchcard' => 'Isku qaska warbixinnada.', + 'report_stats' => 'Tiro koobka warbixinnada.', + 'stats_not_setup' => 'Lama hagaajin tiro koobka.', + 'time_range_1' => 'Hal bil.', + 'time_range_2' => 'Saddex bilood', + 'time_range_3' => 'Lix bilood.', + 'time_range_all' => 'Dhammaan.', + 'unapproved' => 'Lama aqbalin.', + 'unique_visitors' => 'Soo booqdayaasha gaarka ah.', + 'unique_visitors_description' => 'Tirada shakhsiyaadka kusoo biiraya rakibitaankaaga: Soo booqdayaasha gaarka ah waxaa lagu go\'aansadaa iyadoo la isticmaalo Cookies, haddii isticmaalaha uusan u shaqeyneyn Cookies-ku waxaa lagu ogaanayaa iyadoo la isticaalo heuristic iyadoo lala socdo IP address-ka, resolution, browser, plugins, OS, iyo wixii la mida', + 'unverified' => 'La ansixin .', + 'verified' => 'La ansixiyey.', + 'visitor_summary' => 'Warbixin kooban oo ku saabsan soo booqdayaasha.', + 'visits' => 'Booqashada.', + 'visits_description' => 'Visit waa rikoodhka sheega booqdayaasha boggaaga, kuwaasoo in ka badan 30 daqiiqo ku waara daawashada bogga.', +); diff --git a/application/i18n/so/tooltips.php b/application/i18n/so/tooltips.php new file mode 100755 index 0000000000..66462b9637 --- /dev/null +++ b/application/i18n/so/tooltips.php @@ -0,0 +1,49 @@ + 'Cinwaanka email-kaaga.', + 'profile_name' => 'Magacaaga oo buuxa.', + 'profile_notify' => 'Haddii aad dooratid HAA waxay kuu sahleysaa inaad ku heshid farriimo emailkaaga marka faallooyin cusub loo gudbiyo boggaaga.', + 'profile_password' => 'Password-kaaga. Meshaan sideeda bannaan uga tag haddaa rabtid inaad password-kaaga aad hadda leedahay weli sii isticmaasho', + 'profile_username' => 'Username-kaaga lama badeli karo.', + 'settings_alert_email' => 'Emailkaani waa kan loo isticmaali doono in lagu diro farriimaha email-ka', + 'settings_allow_clustering' => 'Kani wuxuu ogolaadaa in hal guntin laysugu xiro warbixinnada isku midka ah.', + 'settings_allow_comments' => 'U ogolow isticmaalayaashu iney faallo ka bixiyaan warbixinnadda bogga hore.', + 'settings_allow_feed' => 'Kani wuxuu u ogolaadaa RSS news feeds-ka in lagu soo bandhigo bogga hor.', + 'settings_allow_reports' => 'U ogolow isticmaalayaashu iney xog ku gudbiyaan form-ka bogga', + 'settings_api_default_record_limit' => 'Tirada caadiga ee diiwanada lagu keenayo codsiga API kasta', + 'settings_api_max_record_limit' => 'Tirada ugu badan ee diiwaanka lagu keenayo codsiga API kasta', + 'settings_api_max_requests_per_ip' => 'Tirada ugu badan ee Codsiga API ee halkii IP address-ba', + 'settings_cache_pages' => 'Shaqa geli ama jooji boga caching-ka. tani waxay dadajisaa waqtiga uu bogga ku kaco, waxaa naga talo ah in aad u isticmaasho caching-ka bogagga sida baaxadda leh loosoo boogdo, **Xusuusnow warbixinnada waxaa lagusoo qubi doonaa dhinaca hore iyadoo lagu salaynayo jadwalka aad hoos ku hagaajisey,', + 'settings_cache_pages_lifetime' => 'hagaaji inta uu shaqeynayo cache-ku', + 'settings_configure_map' => 'U hagaaji khariiradda goob khaas ah.', + 'settings_default_category_colors' => 'U hagaaji hal color code dhammaan qeybaha bogga.', + 'settings_default_location' => 'Kani waa wadanka lagu rakibayo bogga.', + 'settings_display_contact' => 'Daar ama demi Contact Tab-ka bogga hore.', + 'settings_display_howtohelp' => 'Xir ama Fur Help Tab-ka bogga hore.', + 'settings_display_items_per_page' => 'Tani waa tirada warbixinnada boggiiba oo lagu bandhigay bogga hore. ', + 'settings_display_items_per_page_admin' => 'Tani waa tirada warbixinnada boggiiba oo lagu bandhigay amid Back End.', + 'settings_flsms_download' => 'Tani waa hub-ka farriimaha soo dhacaya.', + 'settings_flsms_synchronize' => 'Kani wuxuu isku mar dhaqaajiyaa farriimaha hub-ka Ushahidi platform', + 'settings_flsms_text_1' => 'Nambarada telefoonada lagu heliyo farriimaha.', + 'settings_google_analytics' => 'Raad raaca dadka soo booqda boggaaga, Hel statistics-ka dadka soo booqda boggaaga oo faahfaahsan.', + 'settings_locale' => 'Wuxuu hagaajiyaa luuqadda loo isticmaali doono boggaaga.', + 'settings_map_provider' => 'Kani wuxuu qeexaa khariiradda loo isticmaali doono bogga.', + 'settings_server_host' => 'Halkani waa meesha emailadu ku jiraan.', + 'settings_server_password' => 'Kani waa password-ka emailka helaya warbixinnada ', + 'settings_server_port' => 'Kan waa loo baahan yahay si loo aqbalo connections-ka ka imaanaya emailka', + 'settings_server_ssl_support' => 'Kan waa loo bahan yahy si loo kobciyo connection secure ah', + 'settings_server_type' => 'Kan waa loo baahan si dib loogu helo emailada ku jira host server-ka', + 'settings_server_username' => 'Kani waa emailka ay kusoo dhacaan warbixinnadu.', + 'settings_share_site_stats' => 'Hit Statistics-ka waxaa lagu keydiyaa Server ay xukunto Ushahidi. haddii ha hawl geliyo arrintaan, waxaa si toos ah uga daalacaneysaa admin panel-kaaga hit statistics-ka .haddii hawlgab laga dhigana. waxaa istaagaya arruurinta statistics-ka awoodna uma yeelanayo inuu dib usoo celiyo traffic stats-ka la aruuriyo marka uu dansan yahay.', + 'settings_site_copyright_statement' => 'Mar walba waxaa habboon inaad sheegatid xuquuqda dhowrsoon ee shaqadaada. Si lagaa caawiyo baahidaad aad ku helayso license sax ah, booqo http://creativecommons.org/choose/.', + 'settings_site_email' => 'Kani waa emailka ay kusoo dhacayaan farriimaha iyo warbixinnada ku imaanaya contact form-ka', + 'settings_site_message' => 'Kani waa farriin qoraaleedka ka muuqan doona khariiradda homepage-ka korkeeda. Kani wuxuu waxtar u yahay in xoggaha muhiimka ah loo gudbiyo dadka soo booqda bogga. Si aad uga saartid sanduuqa. ka tirtiri farriinta halkan.', + 'settings_site_name' => 'Kani waa magaca bogga ka muuqda qeybta kore ee bogga weyn (manin site)', + 'settings_site_tagline' => 'Sharrax wuxuu yahay boggani adigoo adeegsanaya erayo kooban.', + 'settings_twitter_configuration' => 'Hagaaji Twitter hashtag-ga loo isticmaali doono tweet.', +); diff --git a/application/i18n/so/ui_admin.php b/application/i18n/so/ui_admin.php new file mode 100755 index 0000000000..2683607ae2 --- /dev/null +++ b/application/i18n/so/ui_admin.php @@ -0,0 +1,174 @@ + 'Wuu geli waayay. Cadaymahaaga ayaanan sax ahayn ama dalabkaaga ayaa la diiday.', + 'access_denied_others' => 'Wuu geli waayay. Waa la fahmay dalabkaaga, balse waa la diiday. Fadlan dib ugu soo noqo.', + 'actions' => 'Ficiladda', + 'added' => 'Waa lagu daray', + 'added_edited' => 'Waa lagu daray/wax baa laga bedelay', + 'api_banned' => 'API waa la mamnuucay', + 'api_logs' => 'Gelitaanka API', + 'api_settings' => 'Hagaajinta API', + 'api_unban' => 'Ka qaad mamnuucidda', + 'api_unban_all' => 'Ka qaad mamnuucidda dhamaantood', + 'approved' => 'Waa la ogolaaday', + 'archived' => 'Waa la keydiyay', + 'author' => 'Qoraa', + 'author_email' => 'Emailka qoraaga', + 'back' => 'Dib', + 'banip_action' => 'Mamnuuc IP-ga', + 'categories' => 'Categoriyada', + 'chart_display_error' => 'Jadwal soo bandhiga cilladaha.', + 'check_message_valid' => 'Fadlan iska xaqiiji in farriintaadu saxan tahay.', + 'check_number' => 'Fadlan iska xaqiiji in nambarku saxan yahay.', + 'check_sms_settings' => 'Fadlan iska hubi setting-ka fariimaha!', + 'cities_loaded' => 'Magaalooyinka w', + 'code' => 'Fure', + 'code_out_of_sync' => ' Code version out of sync.', + 'comments' => 'Fikradaha', + 'confirmation_code' => 'Furahaaga xaqiijinta ee farriimaha waa:', + 'confirm_msg' => 'Isticmaalaha waa', + 'country_not_found' => 'Wadanka waa la heli waayay', + 'created_edited' => 'La sameeyay/wax laga bedelay', + 'create_report' => 'Samee warbixin', + 'critical_upgrade' => 'Casriyeen muhiim ah', + 'daily' => 'Maalinle', + 'database' => 'Keydka Xogta', + 'date_time' => 'Taariikhda & Waqtiga', + 'deleted' => 'Waa la tiray', + 'delete_action' => 'Tir', + 'description' => 'Sharraxaad', + 'download_reports' => 'Soo dejiso warbixinnada', + 'edited_by' => 'Waxaa wax ka bedelay', + 'edit_action' => 'Wax ka bedel', + 'edit_log' => 'Wax ka bedelin Log-ga', + 'error_geocoding' => 'Cillad dhanka geocoding-ka ayaa soo ifbaxday! Cillad HTTP', + 'error_imap' => 'Keydka xogta ee IMAP PHP kuma rakibna computerkaaga.', + 'error_msg' => 'Cillad', + 'error_post_incident' => 'Cillad: Ma awoodo inuu daabaco dhacdo', + 'every_six_hours' => 'Lix saac kasto', + 'every_twelve_hours' => '12 saac kasto', + 'faqs' => 'Su\'aalaha badanaaba la isweydiiyo', + 'feed' => 'Feed', + 'feedback' => 'Natiijo', + 'feeds' => 'Feeds', + 'field_default' => 'Qiimaha caadiga ah (default)', + 'field_height' => 'Dhererka (safafka)', + 'field_maxlength' => 'Dhererka ugu badan ee xarfaha', + 'field_name' => 'Goobta magaca', + 'file_not_found_upload' => 'Lama heli karo faylka la geliyay server-ka', + 'file_open_error' => 'Faylka wuu furmi waayay.', + 'form_not_exists' => 'Foomkaas ma ahan mid jira!', + 'free_text_field' => 'Goobta qoraalka (qoraalka)', + 'from' => 'Ka ', + 'from_date' => 'Ka', + 'geonames_timeout' => 'Cillad xagga Geonames-ka', + 'get_help' => 'Caawimaad dalbo', + 'header_actions' => 'Ficillada', + 'header_add_edit' => 'Wax ku dar/wax ka bedel', + 'header_manage_users' => 'Maamulidda isticmaalayaasha', + 'header_role' => 'Heer', + 'header_user' => 'Isticmaale', + 'help' => 'Caawimaad', + 'hourly' => 'Saacadle', + 'incident_feed' => 'Dhacdada', + 'instance' => 'Dhacdo', + 'instances' => 'Dhacdooyin', + 'instance_details' => 'Faahfaainta dhacdada', + 'invalid_parameter' => 'Xudduud khaldan', + 'ip_address' => 'IP address', + 'is_date' => 'Tani ma goob taariikh baa?', + 'label_email' => 'Cinwaanka Email-ka', + 'label_full_name' => 'Magaca oo dhamaystiran', + 'label_role' => 'Heer:', + 'label_username' => 'Username', + 'layers' => 'Lakabyadda', + 'login_role' => 'Dhexdhexaadiye', + 'logout' => 'Ka bax', + 'manage' => 'Maamul', + 'manage_roles' => 'Maamul heerarka iyo rukhsooyinka', + 'manage_users' => 'Arag isticmaalayaasha', + 'manage_users_edit' => 'Ku dar/bedel isticmaalayaasha', + 'marked_as_not_spam' => 'Looma calaamadayn sidii E-mail aan la rabin (spam)', + 'marked_as_spam' => 'Loo calaamadeeyay sidi E-mail aan rabin (spam)', + 'match_no_documents' => 'Ma shabbaho wax dukumintiyada ka mid ah', + 'message' => 'Farriin', + 'messages' => 'Farriimaha', + 'messages_laconica' => 'Fariimaha Laconica', + 'messages_twitter' => 'Farriimaha Twiter', + 'message_sent' => 'Farriintaada waa la diray!', + 'minutes' => 'Daqiiqado', + 'missing_parameter' => 'Xuduud maqan', + 'moderator' => 'Dhexdhexaadiye', + 'modified' => 'Wax laga bedelay', + 'move_down_action' => 'Hoos u dag', + 'move_up_action' => 'Kor u bax', + 'multiple_hosted_instances' => 'Dhacdooyin la martigeliyay', + 'my_profile' => 'Muuqaalkayga', + 'new_password' => 'Password cusub', + 'no' => 'Maya', + 'notification' => 'Ogeysiin', + 'not_case_sensitive' => 'Ma ahan case sensitive (waa isku mid xarfaha yar yar iyo kuwa waa weyn intaba)', + 'not_found' => 'Lama helin', + 'no_data' => 'Ma jirto wax natiijo ah oo la muujin karo.', + 'no_error' => 'Cillad ma jirto', + 'no_result_display_msg' => 'Ma jirto wax natiijo ah oo la soo bandhigo!', + 'page' => 'Bog', + 'pages' => 'Boggag', + 'page_not_found' => 'Bogga lama helin', + 'parameters_used' => 'Xuduudaha la addeegsaday', + 'password_reset' => 'Password bedelid', + 'password_reset_message_line_1' => 'Qaali', + 'password_reset_message_line_2' => 'Waan helnay dalabkaaga ku aadan beddelida password-ka', + 'password_reset_message_line_3' => 'Si aad u bedesho password-ka, fadlan guji link-ga hoose (ama inta koobiyeyso, dhig browserkaaga).', + 'password_reset_subject' => 'Beddelida password-ka Ushahidi', + 'phone' => 'Telefon', + 'post_method_not_used' => 'Habka daabacaadda lagu soo dirin xogta.', + 'read' => 'Akhri', + 'relevance' => 'Khuseeya', + 'reporters' => 'Weriyayaal', + 'reporter_levels' => 'Heerarka weriyayaasha', + 'reports' => 'Warbixinno', + 'required' => 'Waa loo baahan yahay', + 'reset' => 'Iska bedel', + 'results' => 'Natiijooyinka', + 'save_settings' => 'Keydi setting-ka', + 'search' => 'Raadi', + 'searching_for' => 'Waxa uu raadinayaa', + 'select_field_type' => 'Dooro nooca Goobta', + 'select_item' => 'Fadlan wax dooro', + 'sender' => 'Dire', + 'sent_from_website' => 'Waxaa farriintan laga diray boggaaga', + 'settings' => 'Hagaajinta setting-ka', + 'showing_page' => 'Bogga muuqda', + 'showing_results' => 'Natiijooyinka muuqda', + 'stats' => 'Statistics', + 'stats_collection_error' => 'Ururinta tirada waa ay fashilantay! Waxbaa ka khaldan server-keena ama qaabka aad Ushahidi u rakibtay ayaa khaldan. Mar kale isku day inaad na soo booqato si aad u ogaato in server-ka uu si fiican u shaqeynayo. Haddii aad doonayso inaad bedesho stats-ka, bedel stat-id-ga (dooro Eber)iyo stat-key (dooro Eber) adigoo ku dhex jira shaxanka keydka xogtaada. Digniin: Waxaa kaa lumayo gelitaanka statistics-kaaga haddii aad sidan sameyso!', + 'stats_collection_error_short' => 'Ururinta tirada waa ay fashilantay!', + 'task_performed' => 'Hawsho si fiican ayaa loo gutay', + 'text_field' => 'Goobta qoraalka', + 'theme_name' => 'Magaca', + 'title' => 'Maamul isticmaalayaasha', + 'to' => 'Ku', + 'total_records' => 'Dhamaan Rikoodhyada', + 'to_date' => 'Ku', + 'translate_reports' => 'Turjun warbixinnada', + 'unapproved' => 'Lama ansixin', + 'unknown' => 'Lama garanayo', + 'unread' => 'Aan la akhrin', + 'update_link' => 'Guji halkan si aad u casriyeyso', + 'upgrade_ushahidi' => 'Casriye Ushahidi', + 'upgrade_ushahidi_status' => 'Casriye darajada Ushahidi', + 'upload_reports' => 'Geli warbxinnada', + 'users' => 'Isticmaalayaasha', + 'version' => 'Version-ka', + 'version_available' => 'Waxa uu diyaar u yahay in la casriyeeyo', + 'view_site' => 'Booqo bogga', + 'welcome' => 'Soo dhowoow,', + 'yes' => 'Haa', + 'your_search_for' => 'Raadinta ku saabsan', +); diff --git a/application/i18n/so/ui_main.php b/application/i18n/so/ui_main.php new file mode 100755 index 0000000000..2d1dc53cca --- /dev/null +++ b/application/i18n/so/ui_main.php @@ -0,0 +1,460 @@ + 'Ku saabsan.', + 'access' => 'Awood kii siinaya inaad gasho.', + 'account_name' => 'Magaca account-ga.', + 'actions' => 'Ficillada.', + 'action_confirm' => 'Ficilkan lagama noqon karo, ma hubtaa inaad rabtid inaad sii wado.', + 'activate' => 'Hawl geli.', + 'active' => 'Shaqeynaya.', + 'add' => 'Ku dar.', + 'added_by' => 'Waxaa ku daray.', + 'additional_reports' => 'Warbixinno dheeraad ah.', + 'add_edit' => 'Ku dar/wax ka bedel', + 'add_field' => 'Goob ku dar.', + 'add_language' => 'Ku dar luuqad.', + 'add_new' => 'Ku dar wax cusub.', + 'add_new_category' => 'Qeyb cusub ku dar.', + 'add_translation' => 'Turjumaad ku dar.', + 'admin' => 'Maamul.', + 'alerts' => 'Hel farriimo.', + 'alerts_alert_me' => 'Isoo war geli haddii warbixin lasoo gudbiyo ama ay jirto.', + 'alerts_btn_send' => 'Kaydi farriimahayga.', + 'alerts_email' => 'Ciwaanka Email-ka.', + 'alerts_enter_email' => 'Geli ciwaan email.', + 'alerts_enter_mobile' => 'Geli nambarka mobile-ka iyo furaha dalka.', + 'alerts_get' => 'Hel farriimo.', + 'alerts_mobile_phone' => 'Nambarka mobile-ka.', + 'alerts_place_spot' => 'Ama ka calaamade goob khariiradda hoose, waan ku soo wargelin doonaa marka warbixin laga helo 20 kilometer qiyaas ah.', + 'alerts_place_spot2' => 'Haddii aadan heli karin goobtaada, fadlan guji khariiradda si aad u tilmaantid goobta saxda ah.', + 'alerts_rss' => 'RSS Feeds (ku guuri url-ka hoos).', + 'alerts_select_city' => 'Xulo magaalada.', + 'alerts_step1_select_city' => 'Xul magaalada ama goobta aad ku sugan tahay.', + 'alerts_step2_send_alerts' => 'U dir farriimaha: ', + 'alerts_step3_select_catgories' => ' Step 3 (Optional): Select Categories Xulo qeybaha.', + 'alert_confirm_previous' => 'Xaqiiji codsigii farriimaha ee hore.', + 'alert_saved' => 'Farriimahaagii waa la keydiyey.', + 'all' => 'Dhammaan.', + 'allowed' => 'Waa la ogolaaday.', + 'all_categories' => 'Dhammaan qeybaha.', + 'and' => 'Iyo.', + 'api' => 'API.', + 'approve' => 'ansixi.', + 'approved' => 'La ansixiyey.', + 'approved_reports' => 'Warbixinnada la ansixiyey.', + 'approve_this_report' => 'Ansixi warbixintan.', + 'approximate' => 'qiyaas ahaan.', + 'archive' => 'Keyd', + 'archived' => 'la keydiyay', + 'author' => 'Qoraaga.', + 'avg_reports_per_day' => 'Warbixinnada Avg ee maalinkii.', + 'awaiting_approval' => 'Wuxuu sugayaa in la ansixiyo', + 'awaiting_verification' => 'Wuxuu sugayaa in la xaqiijiyo.', + 'blog' => 'Blog.', + 'cancel' => 'Tirtir.', + 'categories' => 'Qaybaha.', + 'category' => 'Qayb.', + 'category_filter' => 'Kala soocaha qeybaha.', + 'category_has_been' => 'Qeybtaan waa', + 'category_name' => 'Magaca qeybta.', + 'choose' => 'Dooro.', + 'choose_data_points' => 'Dooro meesha aad ka soo roganeysid xogta.', + 'choose_field_type' => 'Dooro nooca goobta.', + 'cleanurl' => 'Tirtir URL-ka.', + 'close' => 'Xir.', + 'clusters' => 'Urursan.', + 'color' => 'Midabka.', + 'comment' => 'Faallo.', + 'comments' => 'Faallooyin.', + 'comment_details' => 'Faahfaahin ku saabsan faallada.', + 'configuration_saved' => 'Settings kaaga waa la keydiyey.', + 'configure' => 'Hagaaji.', + 'contact' => 'Nala soo xiriir.', + 'contact_code' => 'Security Code.', + 'contact_email' => 'Ciwaanka emailkaaga.', + 'contact_message' => 'Farriin.', + 'contact_message_has_send' => 'Farriintaadii waa la diray.', + 'contact_name' => 'Magacaaga.', + 'contact_phone' => 'Telefoon nambarkaaga.', + 'contact_send' => 'Dir Farriin.', + 'contact_subject' => 'Mawduuca (subject) Farriinta.', + 'copyright' => 'Xuquuqda Qoraalka.', + 'create' => 'Samee.', + 'create_edit' => 'Samee ama tafatir.', + 'create_new' => 'Samee mid cusub.', + 'create_report' => 'Samee warbixin.', + 'credibility' => 'Sugnaansho.', + 'data' => 'Xog.', + 'date' => 'Taariikhda.', + 'date_format' => 'Hannaanka Taariikhda (bil/malin/sanad).', + 'date_time' => 'Taariikhda iyo Waqtiga.', + 'day' => 'Maalin.', + 'deactivate' => 'Ka istaaji hawsha.', + 'default_location_name' => 'Nairobi,Kenya.', + 'delete' => 'Tir.', + 'deleted' => 'La tiray.', + 'deletes' => 'Qeybaha la tiray.', + 'delete_disabled' => 'Tir "Disabled"', + 'delete_report' => 'Tir warbixintaan', + 'delete_spam' => 'Tir Spam-ka', + 'demo' => 'Demo.', + 'description' => 'Qeexid', + 'detailed_location_example' => 'Tusaale:geeska suuqa magaalada, wadada 5aad, jid weynaha 4aad, johannesburg', + 'details' => 'Faahfaahin', + 'direct_report' => 'Warbixin toos ah', + 'disabled' => 'Disabled.', + 'disapprove' => 'Ha ansixin.', + 'download_reports' => 'Soo rogo warbixinno.', + 'edit' => 'Tafatir.', + 'edit_form_fields' => 'Tafatir form-ka.', + 'edit_report' => 'Tafatir warbixinta.', + 'email' => 'email-ka.', + 'email_address' => 'Cinwaanka email-ka.', + 'email_configuration' => 'Settings-ka Mail Server-ka .', + 'email_server_password' => 'password-ka Mail Server-ka.', + 'email_server_port' => 'Port-ka Mail Server-ka.', + 'email_server_type' => 'Nooca Mail Server-ka.', + 'email_server_username' => 'Username-ka Mail Server-ka.', + 'email_settings_comment_0' => 'Settings-kaagu waa inay ku xiriirsan yihiin ciwaanka email-kan.', + 'email_settings_comment_00' => 'Si aad email ugu heshid warbixinno, fadalan geli hoos account settings-ka eamilkaaga,Fadlan ogow email-lada waxaa lagu heli doonaa.', + 'email_settings_comment_1' => 'Servers-ka qaar waxay u bahan yihiin ciwaan email.', + 'email_settings_comment_2' => 'Password-ka emailka.', + 'email_settings_comment_3' => ' ports-ka guud 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Tusaale: mail.yourwebsite.com, imp.gmail.com, pop.gmail.com.', + 'email_settings_comment_5' => 'Tusaale:pop3,imap.', + 'email_settings_comment_6' => 'Hawl geli ama hawl jooji connections-ka SSL.', + 'end_point' => 'Ku.', + 'error' => 'Cillad.', + 'example' => 'Tusaale.', + 'example_country' => 'Kenya.', + 'feed' => 'Feed.', + 'feedback' => 'Keen Jawaab-celis.', + 'feeds' => 'Jawaab-celinta', + 'feed_has_been' => 'Jawaab-celinta waa', + 'feed_items' => 'Xogaha Jawaab-celinta.', + 'feed_name' => 'Magaca Jawaab-celinta.', + 'feed_url' => 'Jawaab-celinta URL.', + 'field_unused' => 'Goob aan la isticmaalin.', + 'file' => 'File.', + 'filters' => 'Kala Sifeeyayaasha.', + 'find' => 'Hel.', + 'find_location' => 'Hel goobta.', + 'first_name' => 'Magaca Koowaad.', + 'force_run_scheduler' => 'Force Run Scheduler.', + 'forgot_password' => 'Ma Ilowday Password-kaagii?.', + 'form' => 'Form-ka.', + 'forms' => 'Forms-ka.', + 'form_description' => 'Qiixidda Form-ka.', + 'form_edit' => 'Wax ka badal Form-kan.', + 'form_has_been' => 'Form-ka waa.', + 'form_title' => 'Ciwaanka Form-ka.', + 'from' => 'Ka.', + 'full_name' => 'Magaca oo buuxa.', + 'geolocation_available' => 'GeoLocation-ka waa la heli karaa.', + 'hashtag' => 'Hashtag.', + 'has_been' => 'Waa.', + 'help' => 'Sidee loo caawiyaa.', + 'hide' => 'Qari.', + 'hide_this_message' => 'Qari farriintan.', + 'home' => 'Bogga Hore.', + 'how_to_report' => 'Sidee loo tabiyaa', + 'id' => 'ID-ga', + 'image' => 'Muuqaalka.', + 'images' => 'Muuqaallada.', + 'image_icon' => 'Muuqaalka/Sawirka.', + 'inactive' => 'Aan shaqeynayn.', + 'inbox' => 'Inbox-ka', + 'incident' => 'Dhacdada.', + 'incidents_nearby' => 'Dhacdooyinka agagaarka ka dhaca.', + 'incident_location' => 'Goobta dhacdada.', + 'include' => 'Ku dar.', + 'include_categories' => 'Ku dar qeybaha.', + 'include_description' => 'Ku dar Qeexid.', + 'include_detail' => 'Ku dar faahfaahinta ugu badan ee macquulka ah.', + 'include_latitude' => 'Ku dar xarriiqda loolka (latitude)', + 'include_location_information' => 'Ku dar xog ku saabsan goobta.', + 'include_longitude' => 'Ku dar Longitude (masaafada meeli u jirto dhul marka laga cabbiro dhanka bari ama galbeed).', + 'information_evaluation' => 'Qiimeynta Xogta.', + 'input_location' => 'Geli goobtaada dhabta ah.', + 'in_response_to' => 'Jawaab u ah.', + 'ip_address' => 'IP Address-ka.', + 'item' => 'Xog', + 'items' => 'Xogaha.', + 'item_details' => 'Faahfaahinta Xogta.', + 'item_title' => 'Ciwaanka Xogta.', + 'key' => 'Furaha.', + 'kml_kmz_file' => 'KMZ/KML File.', + 'kml_kmz_upload' => 'Gudbi xogta KMZ/KML File.', + 'kml_url' => 'UTL-ka KML', + 'language' => 'Luqadda.', + 'last' => 'U dambeeyay.', + 'last_month' => 'Bishii lasoo dhaafay.', + 'last_name' => 'Magaca Dambe.', + 'last_year' => 'Sanadkii lasoo dhaafay.', + 'latitude' => 'Xarriiqda loolka (latitude).', + 'layers' => 'Lakabyada (layers).', + 'layers_filter' => 'lakabyada kale.', + 'layer_has_been' => 'Lakabka waa', + 'layer_name' => 'Magaca Lakabka.', + 'layer_url' => 'Lakabka URL-ka.', + 'leave_a_comment' => 'Faallo Reeb.', + 'level' => 'Heerka.', + 'level_has_been' => 'Heerkan waa.', + 'level_name' => 'Magaca Heerka.', + 'limited' => 'Kooban.', + 'link' => 'Isku xirka.', + 'location' => 'Goobta.', + 'locations' => 'Goobaha.', + 'location_example' => 'Magaalada. Gobolka iyo/ama Wadanka.', + 'login' => 'Galidda.', + 'longitude' => 'Longitude (masaafada meeli u jirto dhul marka laga cabbiro dhanka bari ama galbeed)', + 'map' => 'Khariiradda.', + 'mark_read' => 'U calaamadi sidii in la akhriyey oo kale.', + 'mark_unread' => 'U calaamadi sidii inaan la akhrin oo kale.', + 'media' => 'Saxaafadda.', + 'media_filter' => 'Sifeeyaha Saxaafadda.', + 'message' => 'Farriinta.', + 'messages' => 'Farriimaha.', + 'message_details' => 'Faahfaahin la xiriirta Farriinta.', + 'mobile' => 'Mobile-ka', + 'modify' => 'Dib u habee.', + 'modify_date' => 'Taariikhda dib u habeynta.', + 'month' => 'Bisha.', + 'more' => 'Dheeraad.', + 'name' => 'Magaca.', + 'nearby_report' => 'Warbixinnada goobaha dhow.', + 'new' => 'Cusub.', + 'news' => 'Warka.', + 'news_feeds' => 'Jawaab-celinta Warka.', + 'news_source' => 'Isha Warka.', + 'new_category' => 'Qeyb Cusub.', + 'new_password' => 'Password Cusub.', + 'new_report' => 'Warbixin Cusub.', + 'next' => 'Kan xiga.', + 'no' => 'Maya.', + 'notices' => 'Ogeysiisyada.', + 'not_approved' => 'Lama ansixin.', + 'not_approved_singular' => 'Lama ansixin.', + 'not_spam' => 'Maahan Spam (Farriimo aan loo baahnayn).', + 'not_specified' => 'Lama Cayimin.', + 'no_results' => 'Lama hayo wax natiijo ah.', + 'official_news' => 'Rasmi & Warka kiisa badan.', + 'option' => 'khiyaar.', + 'optional' => 'Khiyaar ah.', + 'options' => 'Khiyaarada.', + 'organization' => 'Ururka.', + 'organizations' => 'Ururada.', + 'organization_description' => 'Qeexidda Ururka.', + 'organization_email' => 'Emailka Ururka.', + 'organization_has_been' => 'Ururka waa.', + 'organization_name' => 'Magaca Ururka.', + 'organization_phone_1' => 'Nambarka Koowaad ee Ururka.', + 'organization_phone_2' => 'Nambarka Labaad ee Ururka.', + 'organization_website' => 'Bogga Ururka.', + 'original' => 'Rasmi.', + 'original_description' => 'Qeexidda Rasmiga ah.', + 'original_title' => 'Ciwaanka Rasmiga ah.', + 'other_ushahidi_instances' => 'Rakibitaanada kale ee Ushahidi.', + 'outbox' => 'Outbox-ka ', + 'outgoing' => 'Baxaya.', + 'page' => 'Bogga/Safxada.', + 'pages' => 'Bogagga/Safxooyinka.', + 'page_description' => 'Qeexidda Bogga/Safxada.', + 'page_has_been' => 'Bogga waa.', + 'page_title' => 'Ciwaanka Bogga.', + 'parent_category' => 'Qeybta Weyn.', + 'password' => 'Password-ka.', + 'password_again' => 'Dib u qor Password-kaaga.', + 'password_forgot' => 'Miyaa ilowday Password-kaga?', + 'password_reset_confirm' => 'Ka fiirso emailkaaga password-kaaga cusub.', + 'password_save' => 'Kusii jir Computer-kan.', + 'past_month' => 'Bishii Hore.', + 'past_year' => 'Sanadkii hore.', + 'pending' => 'Ilaa.', + 'per' => 'Midkiiba.', + 'personal_information' => 'Xogta Shaqsiyadeed Optional..', + 'phone' => 'Telefoonka.', + 'pictures' => 'Sawirrada.', + 'pictures_and_videos' => 'Sawirrada iyo Fiidyowyada (Videos).', + 'pinpoint_location' => 'Raadi goobtaada adigoo isticmaalay wada shaqaysiinta xarriijimaha Latitude iyo longitude. (Habka: 38.19,-85.61), ama guji khariiradda si aad u tilmaantid goobta saxda ah.', + 'play' => 'Daar.', + 'please_note' => 'Fadlan la soco.', + 'preview' => 'Eeg.', + 'preview_item' => 'Eeg Xogta.', + 'preview_message' => 'Eeg Farriimaha.', + 'previous' => 'Hore.', + 'profile_saved' => 'Profile-kaaga waa la keydiyey.', + 'quick_stats' => 'Statistics Sahlan.', + 'rating' => 'Qiimeyn.', + 'read' => 'Le�do', + 'receive' => 'Hel', + 'receive_from' => 'Ka Hel.', + 'receive_notifications' => 'Hel ogaysiisyo.', + 'recent_reports' => 'Warbixinnadii u dambeeyay.', + 'refresh_news_feeds' => 'Refresh ku samee jawaab-celinta warka.', + 'remove' => 'Ka saar.', + 'reply' => 'Ka jawaab.', + 'report' => 'war bixi.', + 'reporter' => 'Wariye.', + 'reporters' => 'Wariyeyaasha.', + 'reporter_date' => 'Taariikhda Wariyaha.', + 'reporter_email' => 'Emailka Wariyaha.', + 'reporter_first_name' => 'Magaca hore ee wariyaha.', + 'reporter_has_been' => 'Wariyaha waa', + 'reporter_ip' => 'IP Address-ka wariyaha.', + 'reporter_last_name' => 'Magaca dambe ee Wariyaha.', + 'reporter_level' => 'Heerka Wariyaha.', + 'reporter_levels' => 'Heerarka Wariyaha.', + 'reporter_phone' => 'Telefoonka Wariyaha.', + 'reports' => 'Wararka.', + 'reports_btn_browse' => 'Daalaco.', + 'reports_btn_submit' => 'Gudbi.', + 'reports_categories' => 'Qeybaha/Noocyada.', + 'reports_date' => 'Taariikhda.', + 'reports_description' => 'Qeexidda.', + 'reports_download_csv' => 'Warbixinnada waxaa lagu rogayaa habka CSV-ga.', + 'reports_email' => 'Emailka.', + 'reports_find_location' => 'Hel goob kuu dhow.', + 'reports_first' => 'Magaca Hore.', + 'reports_last' => 'Magaca Dambe.', + 'reports_location_name' => 'Sifee Magaca Goobta.', + 'reports_news' => 'Isha xigashada warka.', + 'reports_optional' => 'Xog khiyaar ah.', + 'reports_photos' => 'Ku shub Computer-ka Sawirada.', + 'reports_return' => 'Ku noqo bogga warbixinnada.', + 'reports_select_city' => 'Xulo Magaalo.', + 'reports_submitted' => 'Warbixintaada waxaa loo gudbiyey shaqaalahayaga si ay dib ugu eegaan, waan kula soo xiriireynaa hadday lagama maarmaan noqoto.', + 'reports_submit_new' => 'Gudbi Warbixin Cusub.', + 'reports_time' => 'Waqtiga.', + 'reports_timeline' => 'Isdaba joogga dhacdooyinka. ', + 'reports_title' => 'Cinwaanka Warbixinta.', + 'reports_video' => 'Link-ga Fiidyowga (Video Link)', + 'report_an_incident' => 'Ka warbixi dhacdo.', + 'report_details' => 'Faahfaahinta Warbixinta.', + 'report_option_1' => 'Adigoo Farriin u dira.', + 'report_option_2' => 'Adigoo email u dira.', + 'report_option_3' => 'Adigoo la dira tweet hashtag-ga.', + 'report_option_4' => 'Adigoo buuxiya Form-kan.', + 'report_saved' => 'Warbixintaadii waa la kaydiyey.', + 'report_title' => 'Ciwaanka Warbixinta.', + 'request_information' => 'Codso xog dheeri ah.', + 'request_location' => 'Codso goob.', + 'requirements' => 'Waxyaabaha loo baahan yahay.', + 'reset_password' => 'Baddal Password-ka.', + 'retrieve_city_names' => 'Ka hel magaalada Wadamada la xulay.', + 'role' => 'Doorka.', + 'saved' => 'La kaydiyey.', + 'save_close' => 'Kaydi Xirna.', + 'save_report' => 'Keydi Warbixinta.', + 'schedule' => 'Jadwalka.', + 'scheduler' => 'Jadwaleeyaha.', + 'scheduler_day' => 'Maalinta.', + 'scheduler_hour' => 'Saacadda.', + 'scheduler_log' => 'Scheduler Log-ga', + 'scheduler_minute' => 'Daqiiqadda.', + 'scheduler_weekday' => 'Maalinta Todobaadka.', + 'search' => 'Raadi', + 'search_results' => 'Natiijada kasoo baxday Raadinta.', + 'security_code' => 'Security Code-ka.', + 'select_all' => 'Xulo Dhammaan.', + 'select_field_type' => 'Xulo Nooca Goobta.', + 'select_form_type' => 'Xulo Nooca Form-ka', + 'select_in_map' => 'Ka xulo khariiradda.', + 'select_multiple' => 'Xulo intaad rabto.', + 'select_one' => 'Fadlan xaqiiji inaad baartay xog.', + 'select_theme' => 'Xulo Theme-ka', + 'send' => 'Dir.', + 'sending_to' => 'Loo dirayo.', + 'sent' => 'La diray.', + 'sent_by' => 'Waxaa diray.', + 'server_address' => 'Address-ka Server-ka', + 'server_type' => 'Server-ka Noociisa.', + 'service' => 'Adeegga.', + 'service_username' => 'Username-ka Adeegga.', + 'service_user_id' => 'User ID-ga Adeegga.', + 'share' => 'Wadaag.', + 'shared_data' => 'Xog la wadaagay.', + 'share_has_been' => 'Wadaagitaankii waa', + 'sharing' => 'Wadaagid.', + 'show' => 'Tus.', + 'show_all' => 'Tus Kulli.', + 'site' => 'Bogga.', + 'site_email_address' => 'Email-ka bogga.', + 'site_url' => 'URl-ka bogga.', + 'sms' => 'Farriimaha Gaagaaban (SMS)', + 'source' => 'Isha laga soo xigtay.', + 'source_name' => 'Magaca Isha laga soo xigtay.', + 'source_url' => 'URL-ka isha laga soo xigtay.', + 'spam' => 'Spam (Farriimo aan loo baahnayn)', + 'start_point' => 'ka.', + 'step' => 'Tilaabo.', + 'submit' => 'Gudbi Warbixin.', + 'submit_sms' => 'Waxaa lagu gudbiyey Aaladda Farriimaha gaagaaban (SMS).', + 'submit_sms1' => 'U dir farriintaada gaaban .', + 'submit_sms2' => 'Telefoonkaaga.', + 'success' => 'Guul!.', + 'successfuly_imported' => 'Soo shubidda wa lagu guuleystay.', + 'surname' => 'Magaca Awowga.', + 'themes' => 'Themes-ka.', + 'theme_default' => 'Ushahid Theme-ka caadiga ah.', + 'theme_settings' => 'Theme Settings-ka.', + 'this' => 'Kan/Tan.', + 'this_day' => 'Maanta.', + 'this_month' => 'Bishan.', + 'this_year' => 'Sanadkan.', + 'time' => 'Waqtiga.', + 'title' => 'Cinwaanka.', + 'to' => 'Ku.', + 'today' => 'Maanta.', + 'today_at' => 'Maanta markay ahayd.', + 'total_reports' => 'Warbixannada dhan.', + 'translated' => 'La turjumay.', + 'translated_description' => 'Faalla bixinta la turjumay.', + 'translated_title' => 'Ciwaan la turjumay.', + 'translate_to' => 'U turjun', + 'translation' => 'Turjumaad.', + 'translation_saved' => 'Turjumaadda waa la keydiyey.', + 'twitter' => 'Twitter.', + 'unread' => 'Aan la akhrin.', + 'unverified' => 'Aan la xaqiijin.', + 'update_feeds' => 'Cusbooneysii jawaab-gelinta.', + 'upload' => 'Gudbi xogta.', + 'upload_file' => 'File xogtiisa la gudbinayo.', + 'upload_reports' => 'Gudbi Xogta Warbixinnada.', + 'upload_reports_detail_1' => 'Form-ka hoose adigoo isticmaalay, waa ku shubi kartaa Ushahid engine dhacdooyinka.', + 'upload_reports_detail_4' => 'Waa iney lahaataa ugu yaraan Cinwaanka Dhacdada iyo Taariikhda Dhacdada.', + 'upload_reports_detail_5' => 'Tusaale yar u ah warbixinta CSV.', + 'upload_reports_detail_6' => 'CIWAANKA DHACDADA. TAARIIKHDA DHACDADA.QEEXIDDA GOOBTA.NOOCA,LA ANSIXIYEY,LA XAQIIJIYEY
"1","Dhimasho laga shaki qabo iney ka dhacdya Nairobi","2009-05-15 01:06:00","Nairobi" Saddex dhacdo ayaa laga soo xaqiijiyey C.del Uruguay"."DHIMASHO,RAYYID, ",HAA,HAA.', + 'upload_reports_detail_7' => '"2","Bililiqeysi"2009-03-18 10:10:00","Accra", Meel kasta waxaa ka soconaya bililiqeysi" RABSHADO,DIMASHOM,HANTI BURBURIN, "HAA,MAYA.', + 'upload_successful' => 'Waa lagu guuleystay Xog Gudbinta.', + 'user' => 'Isticmaalaha.', + 'username' => 'Username-ka.', + 'ushahidi_admin' => 'Admin-ka Ushahidi.', + 'verified' => 'La xaqiijiyey.', + 'verified_reports' => 'Warbixinno xaqiijiyey.', + 'verify' => 'Xaqiiji.', + 'verify_this_report' => 'Xaqiiji warbixintan.', + 'version' => 'Nooc kale.', + 'via' => 'Sii marin.', + 'video' => 'Fiidyow (Video).', + 'view' => 'Aragti.', + 'views' => 'Aragtiyada.', + 'view_all' => 'Arag dhammaan.', + 'view_all_feeds' => 'Arag dhammaan jawaab-celinta.', + 'view_all_reports' => 'Arag dhammaan warbixinnada.', + 'view_items' => 'Arag xogaha.', + 'view_more' => 'Arag kuwo dheeraad ah.', + 'view_report' => 'Arag warbixin.', + 'view_reports' => 'Arag warbixinnada.', + 'visible' => 'Muuqda.', + 'waiting_approval' => 'Wuxuu sugayaa ansixin.', + 'waiting_verification' => 'Wuxuu sugayaa xaqiijin.', + 'weight' => 'Culeyska.', + 'yes' => 'Haa.', + 'yesterday' => 'Shalay.', +); diff --git a/application/i18n/so/upgrade.php b/application/i18n/so/upgrade.php new file mode 100755 index 0000000000..2906beff77 --- /dev/null +++ b/application/i18n/so/upgrade.php @@ -0,0 +1,30 @@ + array( + 'between' => 'Gelinta xogta waa khalad. O oo u taagan Maya iyo 1 oo u taagan Haa.', + ) , + 'upgrade_automatic' => 'Casriyeyn automatic ah', + 'upgrade_available' => 'casriyayn diyaar ah', + 'upgrade_continue_btn_text' => 'Sii wad', + 'upgrade_db_btn_text' => 'Casriyee', + 'upgrade_db_text_1' => 'Hadaba, waxaan doonayaa inaan casriyeeyo keydka xogtaada.', + 'upgrade_db_text_2' => 'versionka ugu casrisan ee keydka xogta.', + 'upgrade_db_text_3' => 'Guji button-ka "Upgrade" deetana iska naso inta aan hawsho kuu wado.', + 'upgrade_db_text_4' => 'Hadaad doonayso inaan kuu backup gareeyo keydka xogtaada, calaamada saxda saar button-ka hoose, anigaana si dhakhsa leh kuugu sameynayo.', + 'upgrade_db_text_5' => 'Backup gareyso keydka xogta ka hor casriyeynta? (Highly recommended)', + 'upgrade_db_title' => 'Casriyaynta keydka xogta ee Ushahidi', + 'upgrade_failed' => 'Casriyaynta waa ay fashilantay', + 'upgrade_manual' => 'Casriyayn gacanta laga sameynayo', + 'upgrade_status' => 'Heerka casriyaynta ee Ushahidi', + 'upgrade_text_1' => 'Tilmaamaha hoos ku xusan waxay faahfaahinayan sida loo sameeyo rakibaadda Ushahidi.', + 'upgrade_text_2' => 'Step 1: Download the most recent ushahidi build from http://download.ushahidi.com', + 'upgrade_text_3' => 'Step 1: Download the most recent ushahidi build from http://download.ushahidi.com', + 'upgrade_text_4' => 'Step 1: Download the most recent ushahidi build from http://download.ushahidi.com', + 'upgrade_text_5' => 'Casriyaynta automatic-ga ah, guji button-ka hoose', + 'upgrading' => 'Casriyaynta.', +); diff --git a/application/i18n/sq_AL/alerts.php b/application/i18n/sq_AL/alerts.php new file mode 100644 index 0000000000..b672fc705e --- /dev/null +++ b/application/i18n/sq_AL/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Adresa e email-it e vendosur në hapësirën e mëposhtme nuk është e vlefshme', + 'email_check' => 'Kjo adresë email-i tashmë është rregjistruar për të marrë denoncime mbi këtë vendndodhje', + 'length' => 'Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere.', + 'required' => 'Informacioni i detyrueshëm për tu plotësuar.', + ) , + 'alert_country' => array( + 'single_country' => 'Vendodhjet i përkasin një shteti të vetëm. Ju lutem sigurohuni se vendodhja e denoncimit është brenda këtij shtetiUganda.', + ) , + 'alert_lat' => array( + 'between' => 'Vendodhja që keni zgjedhur në hartë nuk është e vlefshme.', + 'required' => 'Vendodhja që keni zgjedhur në hartë nuk është ë vlefshme.', + ) , + 'alert_lon' => array( + 'between' => 'Vendodhja që keni zgjedhur në hartë nuk është e vlefshme.', + 'required' => 'Vendodhja që keni zgjedhur në hartë nuk është ë vlefshme.', + ) , + 'alert_mobile' => array( + 'length' => 'Numri i shifrave i pamjaftueshëm.', + 'mobile_check' => ' Ky numër telefoni tashmë është rregjistruar për të marrë denoncime mbi këtë vendodhje', + 'numeric' => 'Numri i telefonit që keni vendosur nuk është i vlefshëm. Ju lutem përfshini dhe prefiksin kombëtar.', + 'one_required' => 'Ju duhet të shënoni numrin e telefonit ose adresën e email-it.', + 'required' => 'Informacioni për numrin e telefonit i detyrueshëm.', + ) , + 'alert_radius' => array( + 'in_array' => 'Rrezja e zonës së zgjedhur nuk është e vlefshme ', + 'required' => 'Ju nuk keni zgjedhur një kordinatë në hartë.', + ) , + 'alert_recipient' => array( + 'required' => 'Nuk keni vendosur nje marres per njoftimin', + ) , + 'alerts_subscribed' => 'Jeni abonuar për denoncime në kategoritë e mëposhtme ', + 'code_already_verified' => 'Ky kod është verifikuar!', + 'code_not_found' => 'Kodi i pa verifikuar! Konfirmoni se keni URL-në e duhur.', + 'code_verified' => ' Kodi juaj u verifikua. Tashmë ju do të njoftoheni kur të ndodhin denoncime.', + 'confirm_request' => 'Për të konfirmuar kërkesën për denoncim shkoni tek ', + 'create_more_alerts' => 'Kthehuni në faqen e denoncimeve për të shtuar një denoncim', + 'email_alert_request_created' => 'Kërkesa për të marrë denoncime në email është krijuar dhe një mesazh verifikimi është dërguar në ', + 'email_code' => 'Vendosni kodin e konfirmimit të email që morët më poshtë: ', + 'email_error_head' => ' Kërkesa juaj për Denoncim Mobile NUK është ruajtur!', + 'email_ok_head' => 'Kërkesa juaj për Denoncim Mobile është ruajtur!', + 'error' => 'Sistemi nuk ka mundur të përpunojë kërkesën tuaj për konfirmim!', + 'mobile_alert_request_created' => 'Kërkesa juaj për Denoncim Mobile është krijuar dhe një mesazh verifikimi është dërguar në ', + 'mobile_code' => 'Ju lutem vendosni në hapësirën që vijon kodin e konfirmimit që keni marrë me SMS në celularin tuaj: ', + 'mobile_error_head' => 'Kërkesa juaj për të marrë denoncime në celular NUK është ruajtur!', + 'mobile_ok_head' => 'Kërkesa juaj për të marrë denoncime në celular është ruajtur!', + 'settings_error' => 'Konfigurimi i këtij funksioni nuk është kryer në mënyrën e duhur për marrjen e denoncimeve', + 'unsubscribe' => 'Ju keni marrë këtë email sepse jeni abonuar për marrjen e denoncimeve. Nëse nuk doni të merrni më njoftime shkoni tek ', + 'unsubscribed' => 'Ju nuk do të merrni më njoftime mbi denoncimet ', + 'unsubscribe_failed' => 'Ne nuk mund të anullojmë abonimin tuaj. Ju lutem konfirmoni se keni një URL korrekte.', + 'verification_email_subject' => 'denoncime - verifikim', + 'verify_code' => 'Ju nuk do të merrni denoncime mbi këtë vendndodhje derisa të keni konfirmuar kërkesën tuaj.', +); diff --git a/application/i18n/sq_AL/auth.php b/application/i18n/sq_AL/auth.php new file mode 100644 index 0000000000..6352a403f6 --- /dev/null +++ b/application/i18n/sq_AL/auth.php @@ -0,0 +1,70 @@ + array( + 'email' => 'Adresa e email-it që keni vendosur nuk është e vlefshme.', + 'exists' => 'Na vjen keq por ekziston një përdorues me këtë adresë.', + 'length' => 'Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere.', + 'required' => 'Informacioni për adresën e email-it është i detyrueshëm për tu plotësuar.', + ) , + 'name' => array( + 'length' => 'Emri duhet të ketë 3 deri në 100 karaktere.', + 'required' => 'Informacioni për emrin i detyrueshëm për tu plotësuar.', + 'standard_text' => 'Emri i përdorimit përmban karaktere të pa lejueshme.', + ) , + 'current_password' => array( + 'length' => 'Fjalëkalimi duhet të përmbajë të paktën 8 karaktere.', + 'login error' => 'Ju lutem sigurohuni se fjalëkalimi që keni përdorur është korrekt.', + 'matches' => 'Shkruani të njëjtin fjalëkalim në dy hapësirat e mëposhtme.', + 'required' => 'Informacioni për fjalëkalimin është i detyrueshëm për tu plotësuar.', + 'alpha_dash' => 'Fjalëkalimi mund të përmbajë vetëm shkronja, numra dhe simbole si #, @ , _ .', + 'incorrect' => 'Fjalëkalimi nuk është korrekt. Ju lutem provoni përsëri.', + ) , + 'new_password' => array( + 'length' => 'Fjalëkalimi duhet të përmbajë të paktën 8 karaktere.', + 'login error' => ' Ju lutem sigurohuni se fjalëkalimi dhe adresa e email-it që keni shënuar janë korrekte.', + 'matches' => 'Shkruani të njëjtin fjalëkalim në dy hapësirat e mëposhtme.', + 'required' => 'Informacioni për fjalëkalimin është i detyrueshëm për tu plotësuar.', + 'alpha_dash' => ' Fjalëkalimi mund të përmbajë vetëm shkronja, numra dhe simbolet si #, @ , _ ', + ) , + 'password' => array( + 'default' => 'Problem me identifikimin e përdoruesit të llogarisë.', + 'length' => 'Fjalëkalimi duhet të përmbajë të paktën 8 karaktere.', + 'login error' => 'Ju lutem sigurohuni se fjalëkalimi që keni përdorur është korrekt.', + 'matches' => 'Shkruani të njëjtin fjalëkalim në dy hapësirat e mëposhtme.', + 'required' => 'Informacioni për fjalëkalimin është i detyrueshëm për tu plotësuar.', + 'riverid server down' => 'Ka një problem me serverin. Ju lutem provoni më vonë.', + 'alpha_dash' => ' Fjalëkalimi mund të përmbajë vetëm shkronja, numra dhe simbolet si #, @ , _ , ', + ) , + 'password_confirm' => array( + 'matches' => 'Fjalëkalimi i konfirmuar duhet të përputhet me fjalëkalimin e shënuar.', + ) , + 'resetemail' => array( + 'email' => 'Adresa e e-mail-it është e pavlefshme.', + 'invalid' => 'Na vjen keq, ne nuk e kemi këtë adresë.', + 'required' => 'Informacioni për adresën e email-it është i detyrueshëm për tu plotësuar.', + ) , + 'role' => array( + 'superadmin_modify' => 'Vetëm një krye administrator mund te modifikojë krye administratorët dhe të emërojë administratorët e tjerë.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Formati i përdorur në hapësirën e rolit nuk është i vlefshëm.', + 'length' => 'Numri i karaktereve të lejuara për rolin është 5 deri në 30.', + 'required' => 'Ju duhet të përcaktoni të paktën një rol.', + 'values' => 'Ju duhet të zgjidhni një nga rolet: Administrator ose Përdorues.', + ) , + 'username' => array( + 'admin' => 'Roli i administratorit nuk mund të ndryshohet.', + 'alpha_numeric' => 'Emri i përdoruesit duhet të përmbajë vetëm shkronja dhe numra.', + 'exists' => 'Na vjen keq, ky emër është zgjedhur nga një përdorues tjetër.', + 'length' => 'Emri i përdorimit mund të përmbaje 2 deri ne 100 karaktere.', + 'login error' => 'Ju lutem sigurohuni se po përdorni emrin e duhur të përdorimit.', + 'required' => 'Informacioni i detyrueshëm për tu plotësuar.', + 'superadmin' => 'Roli i krye administratorit nuk mund te modifikohet.', + 'csrf' => 'Ky mund të jetë një sulm CSRF. A jeni të sigurtë se doni të modifikoni/krijoni një llogari?', + ) , +); diff --git a/application/i18n/sq_AL/bug.php b/application/i18n/sq_AL/bug.php new file mode 100644 index 0000000000..ab303292d8 --- /dev/null +++ b/application/i18n/sq_AL/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Ju lutem shkruani një kod sigurie të vlefshëm.', + 'required' => 'Ju lutem vendosni kodin e sigurisë.', + ) , + 'email' => array( + 'email' => 'Adresa e email-it e vendosur në hapsirën e mëposhtme nuk është e vlefshme', + 'length' => 'Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere.', + 'required' => 'Informacioni për adresën e email i detyrueshëm për tu plotësuar.', + ) , + 'error' => array( + 'required' => 'Informacioni i detyrueshëm për tu plotësuar .', + ) , + 'subject' => array( + 'length' => 'Subjekti duhet të përmbajë të paktën 3 karaktere.', + 'required' => 'Informacioni për subjektin i detyrueshëm për tu plotësuar.', + ) , + 'yourname' => array( + 'length' => 'Emri duhet të përmbajë të paktën 3 karaktere.', + 'required' => 'Informacioni për emrin i detyrueshëm për tu plotësuar.', + ) , +); diff --git a/application/i18n/sq_AL/category.php b/application/i18n/sq_AL/category.php new file mode 100644 index 0000000000..6c39d27980 --- /dev/null +++ b/application/i18n/sq_AL/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Hapësira për ngjyrën duhet të përmbajë 6 karaktere.', + 'required' => 'Informacioni për ngjyrën i detyrueshëm për tu plotësuar.', + ) , + 'category_description' => array( + 'required' => 'Informacioni në hapësirën e përshkrimit është i detyrueshëm.', + ) , + 'category_image' => array( + 'size' => 'Sigurohuni që imazhet e ngarkuara të mos jenë më shumë se 50KB.', + 'type' => 'Hapësira për imazhin nuk përmban një imazh të vlefshëm. Formatet e vetme të pranueshme janë .JPG, .PNG and .GIF.', + 'valid' => 'Hapësira për imazhin nuk përmban një skedar të vlefshëm.', + ) , + 'category_title' => array( + 'length' => 'Titulli duhet të përmbajë 8 deri në 30 karaktere.', + 'required' => 'Informacioni për titullin është i detyrueshëm për tu plotësuar.', + ) , + 'parent_id' => array( + 'already_parent' => 'Ju nuk mund të ndani në nënkatgori një kategori që ka nënkategori.', + 'exists' => 'Kategoria prind nuk egziston.', + 'numeric' => 'Kategoria prind duhet të jetë në format numerik.', + 'parent_trusted' => 'Kategoria prind nuk mund të jetë një kategori speciale', + 'required' => 'Informacioni i detyrueshëm për tu plotësuar.', + 'same' => 'Kategoria dhe kategoria prind nuk mund të jenë të njëjta.', + 'special' => 'Kategoritë speciale nuk mund të kenë nën kategori.', + ) , +); diff --git a/application/i18n/sq_AL/comments.php b/application/i18n/sq_AL/comments.php new file mode 100644 index 0000000000..8f182c9727 --- /dev/null +++ b/application/i18n/sq_AL/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Ju lutem shkruani një kod sigurie të vlefshëm.', + 'required' => 'Ju lutem vendosni kodin e sigurisë.', + 'valid' => 'Kodi i sigurisë që keni vendosur nuk është i saktë.', + ) , + 'comment_author' => array( + 'length' => 'Emri duhet të përmbajë minimumi 3 karaktere.', + 'required' => 'Informacioni për emrin i detyrueshëm për tu plotësuar.', + ) , + 'comment_description' => array( + 'required' => 'Informacioni në hapësirën e komentit është i detyrueshëm.', + ) , + 'comment_email' => array( + 'email' => ' Adresa e email-it e vendosur në hapësirën e mëposhtme nuk është e vlefshme.', + 'length' => 'Adresa e email-it duhet të përmbajë 4 deri në 64 karaktere.', + 'required' => 'Informacioni në hapësirën e email-it është i detyrueshëm.', + ) , +); diff --git a/application/i18n/sq_AL/contact.php b/application/i18n/sq_AL/contact.php new file mode 100644 index 0000000000..25d2fdd955 --- /dev/null +++ b/application/i18n/sq_AL/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Ju lutem vendosni një kod sigurie të vlefshëm.', + 'required' => 'Ju lutem fusni kodin e sigurisë.', + ) , + 'contact_email' => array( + 'email' => 'Email-i që keni vendosur nuk është i vlefshëm.', + 'length' => 'E-mail-i duhet të përmbajë 4 deri në 64 karaktere.', + 'required' => 'Informacioni në hapësirën e email-it është i detyrueshëm për t`u plotësuar.', + ) , + 'contact_message' => array( + 'required' => 'Informacioni në hapësirën e mesazhit është i detyrueshëm për t`u plotësuar.', + ) , + 'contact_name' => array( + 'length' => 'Emri i hapësirës duhet të përmbajë të paktën 3 karaktere.', + 'required' => 'Emri i hapësirës është i detyrueshëm për t`u plotësuar.', + ) , + 'contact_subject' => array( + 'length' => 'Përmbajtja e hapësirës duhet të përmbajë të pakten 3 karaktere.', + 'required' => 'Hapësira e subjektit është e detyrueshme për t`u plotësuar.', + ) , +); diff --git a/application/i18n/sq_AL/core.php b/application/i18n/sq_AL/core.php new file mode 100644 index 0000000000..9cfa571938 --- /dev/null +++ b/application/i18n/sq_AL/core.php @@ -0,0 +1,30 @@ + 'skedar i konfiguruar', + 'controller' => 'kontrollues', + 'driver_implements' => 'Driver-i %s për librarinë %s duhet të implementojë ndërfaqen %s.', + 'driver_not_found' => 'Driveri %s për librarinë %s nuk mund të gjendet.', + 'errors_disabled' => 'Ju mund të shkoni tek kreu ose provoni përsëri.', + 'generic_error' => 'Kërkesa nuk mund të plotësohet', + 'helper' => 'ndihmës', + 'invalid_filetype' => 'Skedari i kërkuar në formatin, .%s, nuk është i lexueshem në paraqitjen e konfigurimit të skedarit tuaj.', + 'invalid_method' => 'Metoda e pavlefshme %s e shprehur në %s', + 'invalid_property' => 'Karakteristika %s nuk ekziston në klasën %s.', + 'library' => 'librari', + 'log_dir_unwritable' => 'Në direktorinë log nuk mund të shkruhet: %s', + 'no_controller' => 'Programi nuk ka mundur të vendosë një kontrollor për të përpunuar këtë kërkesë: %s', + 'no_default_route' => 'Ju lutemi vendosni route në config/routes.php', + 'page_not_found' => 'Faqja që kërkuat, %s, nuk mund të gjendet.', + 'report_bug' => 'Raportojeni këtë problem tek Ushahidi', + 'resource_not_found' => ' %s, %s të kërkuara nuk mund të gjenden.', + 'stats_footer' => 'Ngarkuar në {koha e ekzekutimit} sekonda, duke përdorur {përdorimi i memories} memorien. E gjeneruar nga Ushahidi v%s.', + 'there_can_be_only_one' => 'Mund të ketë vetëm një sekuencë Ushahidi për faqen e kërkuar.', + 'uncaught_exception' => 'E pakapshme %s: %s në skedar %s në linjë %s', + 'view' => 'pamja', + 'view_set_filename' => 'Ju duhet të vendosni emrin e skedarit përpara se të fillojë përshtatjen.', +); diff --git a/application/i18n/sq_AL/database.php b/application/i18n/sq_AL/database.php new file mode 100644 index 0000000000..33e9d8fa9f --- /dev/null +++ b/application/i18n/sq_AL/database.php @@ -0,0 +1,10 @@ + 'Gabim me databazën: %s', + 'table_not_found' => 'Tabela "%s" nuk mund të gjendet në databazë. Ju lutem sigurohuni se po përdorni versionin e fundit të databazës së Ushahidi.', +); diff --git a/application/i18n/sq_AL/datetime.php b/application/i18n/sq_AL/datetime.php new file mode 100644 index 0000000000..fc198602b4 --- /dev/null +++ b/application/i18n/sq_AL/datetime.php @@ -0,0 +1,82 @@ + array( + 'abbv' => 'Premt', + 'full' => ' E Premte', + ) , + 'monday' => array( + 'abbv' => 'Hën', + 'full' => ' E Hënë', + ) , + 'saturday' => array( + 'abbv' => 'Shtun', + 'full' => ' E Shtunë', + ) , + 'sunday' => array( + 'abbv' => 'Diel', + 'full' => ' E Diel', + ) , + 'thursday' => array( + 'abbv' => 'Enj', + 'full' => ' E Enjte', + ) , + 'tuesday' => array( + 'abbv' => 'Mar', + 'full' => ' E Martë', + ) , + 'wednesday' => array( + 'abbv' => 'Mër', + 'full' => ' E Mërkure', + ) , + 'january' => array( + 'full' => 'Janar', + ) , + 'february' => array( + 'abbv' => 'Shk', + 'full' => 'Shkurt', + ) , + 'march' => array( + 'full' => 'Mars', + ) , + 'april' => array( + 'abbv' => 'Pri', + 'full' => 'Prill', + ) , + 'may' => array( + 'abbv' => 'Maj', + 'full' => 'Maj', + ) , + 'june' => array( + 'abbv' => 'Qer', + 'full' => 'Qershor', + ) , + 'july' => array( + 'abbv' => 'Kor', + 'full' => 'Korrik', + ) , + 'august' => array( + 'abbv' => 'Gsh', + 'full' => 'Gusht', + ) , + 'september' => array( + 'abbv' => 'Sht', + 'full' => 'Shtator', + ) , + 'october' => array( + 'abbv' => 'Tet', + 'full' => 'Tetor', + ) , + 'november' => array( + 'abbv' => 'Nën', + 'full' => 'Nëntor', + ) , + 'december' => array( + 'abbv' => 'Dhj', + 'full' => 'Dhjetor', + ) , +); diff --git a/application/i18n/sq_AL/feeds.php b/application/i18n/sq_AL/feeds.php new file mode 100644 index 0000000000..cd5c2b85e2 --- /dev/null +++ b/application/i18n/sq_AL/feeds.php @@ -0,0 +1,19 @@ + 'DATA', + 'feed_name' => array( + 'length' => 'Hapësira e emrit për lajmet e fundit duhet të përmbajë 3 deri në 70 karaktere.', + 'required' => 'Ju lutem shkruani emrin e lajmit.', + ) , + 'feed_url' => array( + 'required' => 'Ju lutem vendosni URL për lajmet e ditës.', + 'url' => 'Ju lutem vendosni një URL të vlefshme, p.sh. http://www.ais.al', + ) , + 'source' => 'BURIMI', + 'title' => 'TITULLI', +); diff --git a/application/i18n/sq_AL/footer.php b/application/i18n/sq_AL/footer.php new file mode 100644 index 0000000000..ca24f65932 --- /dev/null +++ b/application/i18n/sq_AL/footer.php @@ -0,0 +1,9 @@ + 'php5-curl nuk eshte instaluar ne kete sistem.', +); diff --git a/application/i18n/sq_AL/form.php b/application/i18n/sq_AL/form.php new file mode 100644 index 0000000000..3403b4d61d --- /dev/null +++ b/application/i18n/sq_AL/form.php @@ -0,0 +1,46 @@ + array( + 'default' => 'Vlera që keni përfshirë në këtë hapësirë është e pavlefshme.', + 'length' => 'Emri i Fushës duhet të përmbajë 3 deri në 200 karaktere.', + ) , + 'field_height' => array( + 'between' => 'Ju lutem vendosni një vlerë 0 deri në 50 për gjatësinë e fushës.', + ) , + 'field_isdate' => array( + 'between' => 'Ju keni vendosur një vlerë të pa vlefshme në hapësirën e datës.', + 'required' => 'Ju lutem zgjidhni PO ose JO për hapësirën e datës', + ) , + 'field_name' => array( + 'length' => 'Emri i fushës duhet të jetë të paktën 3 karaktere por jo më shumë se 100 karaktere.', + 'required' => 'Ju lutem vendosni emrin e fushës.', + ) , + 'field_required' => array( + 'between' => 'Ju keni futur nje vlerë të pa vlefshme për Fushën e kërkuar.', + 'required' => 'Ju lutem zgjidhni PO ose JO për fushën e kërkuar.', + ) , + 'field_type' => array( + 'numeric' => 'Ju lutem zgjidhni një lloj fushe të vlefshme.', + 'required' => 'Ju lutem zgjidhni llojin e fushës.', + ) , + 'field_width' => array( + 'between' => 'Ju lutem vendosni një vlerë 0 deri në 300 për gjerësinë e fushës.', + ) , + 'form_description' => array( + 'required' => 'Ju lutem jepni përshkrimin e Formularit.', + ) , + 'form_id' => array( + 'default' => 'Nuk u bë e mundur fshirja e Formularit të parazgjedhur.', + 'numeric' => 'Ju lutem zgjidhni Formularin në të cilën doni të shtoni skedarin.', + 'required' => 'Ju lutem zgjidhni Formularin në të cilën doni të shtoni skedarin.', + ) , + 'form_title' => array( + 'length' => 'Hapësira për emrin duhet të jetë të paktën 3 karaktere dhe jo më shumë se 100 karaktere.', + 'required' => 'Ju lutem vendosni emrin e Formularit.', + ) , +); diff --git a/application/i18n/sq_AL/imap.php b/application/i18n/sq_AL/imap.php new file mode 100644 index 0000000000..61ee358d8b --- /dev/null +++ b/application/i18n/sq_AL/imap.php @@ -0,0 +1,10 @@ + 'Nuk mund të hapni degët e IMAP.', + 'unsupported_service' => 'Nuk mund tju mbështesim me shërbimin e email.', +); diff --git a/application/i18n/sq_AL/installer.php b/application/i18n/sq_AL/installer.php new file mode 100644 index 0000000000..864347fad8 --- /dev/null +++ b/application/i18n/sq_AL/installer.php @@ -0,0 +1,80 @@ + 'Shtegu bazë', + 'database' => 'Baza e të dhënave', + 'database_host' => 'Baza e të dhënave Host', + 'database_host_description' => 'Nëse jeni duke përdorur Ushahidi në kompjuterin tuaj, atëhere kjo do të konsiderohet një host lokal. Nëse jeni duke përdorur Ushahidi nga një web server, ju do të merrni informacionin e host nga ofruesi i web hosting.', + 'database_name' => 'Emri i bazës së të dhënave', + 'database_name_description' => 'Emri i bazës së të dhënave për Ushahidi-in', + 'db_information_link' => 'Për më shumë informacion ju lutem shikoni: ky artikull në Wikipedia tregon më në detaje për këtë bazë të dhënash .', + 'default_language' => 'Gjuha e parazgjedhur (Lokale)', + 'default_language_description' => 'do përdorim i Ushahidi përmban një set përkthimesh në gjuhë të tjera. Ju gjithashtu mund të shtoni alternativën tuaj.', + 'disable' => 'aktivizo', + 'enable' => 'Aktivizo', + 'error_summary' => 'Më poshtë gjeni një përmbledhje të gabimeve të hasura gjatë rrugës.', + 'files_location_text' => 'Lokaliteti në serverin tuaj ku keni vendosur skedarët Ushahidi. Kjo është nje vlerë e njohur rastësisht, ju lutem sigurohuni se është e saktë. Nëse hapësira është bosh, nuk ka asgjë për tu shqetësuar, kjo do të thotë se ushahidi është instaluar në direktorinë e nivelit më të lartë.', + 'finished' => 'E përfunduar', + 'general' => 'E përgjithshme', + 'google_key_description' => 'Gjithësecili mund të kërkojë një kod API. Merrni kodin tuaj', + 'go_back' => 'Kthehuni pas', + 'index' => array( + 'advanced' => 'INSTALIM I AVANCUAR', + 'advanced_installation_description' => 'Ju mund të përfitoni opsionet bazike nëpërmjet proesit me pesë hapa. Kjo përfshin serverin, hartën, emrin e faqes dhe detaje të kontaktit.', + 'basic_installation' => 'INSTALIM BAZë', + 'basic_installation_description' => 'I thjeshtë dhe i shpejtë. Ju duhet vetëm direktoria kryesore e web sitit tuaj dhe informacioni i bazës së të dhënave. Zgjidhni këtë opsion nëse doni të filloni me shpejtësi. Ju mund të konfiguroni gjithka tjetër më vonë.', + 'proceed' => 'Vazhdoni', + 'welcome' => 'Mirë se erdhët në procesin e instalimit të serverit Ushahidi. Zgjidhni një nga mënyrat e mëposhtme të instalimit.', + ) , + 'installation_successful' => 'Instalimi përfundoi me sukses', + 'mail_server' => 'Mail Server-i', + 'mail_server_host_description' => 'Shembuj: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Fjalëkalimi i Mail Server', + 'mail_server_password_description' => 'Fjalëkalimi që përdorni zakonisht për t`u identifikuar në email tuaj', + 'mail_server_type' => 'LLoji i Mail Server', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) ose Post Office Protocol (POP). Kush është ndryshimi?', + 'mail_server_username' => 'Emri i përdoruesit të Mail Server', + 'mail_server_username_description' => 'Nëse jeni duke përdorur Gmail, Hotmail, or Yahoo Mail, vendosni të plotë një adresë emaili në vend të username-it.', + 'map' => 'Harta', + 'map_provider' => 'Ofruesi i Hartës', + 'map_provider_description' => 'Ushahidi është njësoj funksional për një nga ofruesit e mëposhtëm: Google, Bing or Open Street Map. Zgjidhni atë qe ofron më tepër detaje për zonën tuaj.', + 'other_steps' => 'Hapa të tjerë...', + 'password' => 'Fjalëkalimi', + 'password_description' => 'Fjalëkalimi i bazës së të dhënave ', + 'previous' => 'I mëparëshëm', + 'restart_apache' => 'Ju lutem ristartoni Apache Server', + 'select_mail_server_ssl' => 'Aktivizoni ose aktivizoni SSL', + 'select_mail_server_ssl_description' => 'Disa mail servera ju japin opsionin e përdorimit SSL kur realizoni një lidhje. Rekomandohet përdorimi i SSL për qëllime të rritjes së sigurisë.', + 'setup_sms' => 'Ndërtoni SMS server-in tuaj', + 'site_email' => 'Adresa e email-it të faqes', + 'site_email_alerts' => 'Adresa e email për denoncimet', + 'site_email_alerts_description' => 'Kur vizitorët e faqes regjistrohen për tu njoftuar nëpërmjet email-it, të gjitha email-et do të dërgohen nga kjo adresë. Kjo adresë email-i mund të mos të jetë e njëjtë me adresën e email-it të faqes.', + 'site_email_description' => 'Komunikimi me email i faqes do të realizohet nëpërmjet kësaj adrese', + 'site_name' => 'Emri i faqes', + 'site_name_description' => 'Emri i faqes tuaj', + 'site_tagline' => 'Slogani i faqes', + 'site_tagline_description' => 'Slogani juaj', + 'summary' => array( + 'text_1' => 'Skedaret dhe dosjet e listuara më poshtë duhet të jenë të shkrueshme nga web server-i juaj.', + 'text_2' => '

Këtu janë disa udhëzime për të ndryshuar të drejtat e skedarëve:

+ ', + 'text_3' => 'Përpara se të filloni, ju duhet të siguroheni se skedarët dhe dosjet e mëposhtme mund të modifikohen nga web-browser juaj. Kjo përfshin ndryshimin e miratimit për lejet e skedarëve .', + 'text_4' => 'Për proesin e instalimit, ju lutem bazohuni tek informacioni i mëposhtëm.', + ) , + 'table_prefix' => 'Prefiksi i tabeles', + 'table_prefix_description' => 'Normalisht ju nuk duhet të ndryshoni prefiksin e tabelës. Megjithatë, nëse ju doni të nisni instalimin Ushahidi nga një bazë e vetme të dhënash, ju mund ta bëni këtë duke ndryshuar prefiksin këtu.', + 'title' => 'Titulli', + 'to_login' => 'Për tu identifikuar shkoni tek', + 'upload_data' => 'Ngarko raportin e të dhënave', + 'username' => 'Emri i përdoruesit', + 'username_description' => 'Emri i përdoruesit të bazës së të dhënave', + 'use_credentials' => 'Përdorni kredencialet e mëposhtme', + 'view_site' => 'Shikoni në faqen tuaj të web ', +); diff --git a/application/i18n/sq_AL/layer.php b/application/i18n/sq_AL/layer.php new file mode 100644 index 0000000000..c3c0059a3a --- /dev/null +++ b/application/i18n/sq_AL/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Hapësira për ngjyrën duhet të përmbajë 6 karaktere.', + 'required' => 'Informacioni në hapësirën për ngjyrën është i detyrueshëm.', + ) , + 'layer_file' => array( + 'type' => 'Ju nuk keni vendosur një imazh të vlefshëm. Formatet e vetme të pranueshme janë KMZ dhe KML.', + 'valid' => 'Ju nuk keni vendosur një imazh të vlefshëm', + ) , + 'layer_name' => array( + 'length' => 'Emri duhet të përmbajë 3 deri në 80 karaktere.', + 'required' => 'Informacioni për emrin është i detyrueshëm.', + ) , + 'layer_url' => array( + 'atleast' => 'Kërkohet një skedar KML ose URL.', + 'both' => 'Ju nuk mund të keni njëherësh një skedar KML dhe një skedar URL.', + 'url' => 'Ju lutem vendosni një URL të vlefshme, p.sh. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/sq_AL/libraries.php b/application/i18n/sq_AL/libraries.php new file mode 100644 index 0000000000..048788e4d8 --- /dev/null +++ b/application/i18n/sq_AL/libraries.php @@ -0,0 +1,27 @@ + 'Nuk u bë e mundur lidhja me serverin Akismet.', + 'akismet_cannot_retrieve' => 'Nuk u bë e mundur marrja e përgjigjes nga serveri Akismet.', + 'api_library_not_found' => 'Libraria API : %s për klasën %s nuk mund të gjendet. Ju lutem kontrolloni API task routing table.', + 'askimet_invalid_apikey' => 'Kodi juaj Akismet API nuk është i vlefshëm.', + 'clickatell_fopen_error' => 'Gabim gjatë realizimit të dërgimit t informacionit!
Ju lutem verifikoni që PHP suportohet nga OpenSSL dhe nëse versioni i PHP është më i madh se 5.2.', + 'clickatell_message_too_long' => 'Mesazhi juaj unicode është tepër i gjatë! (gjatësia aktuale është=', + 'clickatell_no_destination_address' => 'Ju lutem specifikoni adresën e marrësit (PëR)!', + 'clickatell_no_sender_address' => 'Ju lutem specifikoni adresën e dërguesit (NGA)!', + 'clickatell_unicode_message_too_long' => 'Mesazhi juaj unicode është tepër i gjatë! (gjatësia aktuale është =', + 'clickatell_unsupported_method' => 'Kjo metodë dërgimi nuk është e pranueshme!', + 'invalid_api_library' => 'Libraria API %s nuk është e vlefshme. Të gjitha libraritë API duhet të jenë nënklasa të %s.', + 'upgrade_directory_not_deleted' => 'Nuk u bë e mundur fshirja e direktorisë %s.', + 'upgrade_extracting_error' => 'Gabim gjatë ekstraktimit: %s', + 'upgrade_failed' => 'Shkarkimi i versionit më të fundit Ushahidi nuk u realizua me sukses. Statusi i kodit HTTP ', + 'upgrade_file_not_copied' => 'Nuk u bë e mundur të kopjohej skedari %s.', + 'upgrade_file_not_deleted' => 'Nuk u bë e mundur të fshihet skedari %s.', + 'upgrade_title' => 'Skripti u rindërtua', + 'upgrade_zip_error' => 'Skedari Ushahidi i shkarkuar në formatin zip %s, nuk mund të shkruhet.', + 'riverid_variable_not_available' => '%s nuk është i disponueshëm ne klasën RiverID.', +); diff --git a/application/i18n/sq_AL/maintenance.php b/application/i18n/sq_AL/maintenance.php new file mode 100644 index 0000000000..11944e65f0 --- /dev/null +++ b/application/i18n/sq_AL/maintenance.php @@ -0,0 +1,9 @@ + 'Na vjen keq, për momentin mbi këtë faqe po punohet. Ju lutem provoni pas disa minutash.', +); diff --git a/application/i18n/sq_AL/message.php b/application/i18n/sq_AL/message.php new file mode 100644 index 0000000000..5c926faa1d --- /dev/null +++ b/application/i18n/sq_AL/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Ju lutem vendosni një kod sigurie të vlefshëm.', + 'required' => 'Ju lutem vendosni kodin e sigurisë.', + ) , + 'email' => array( + 'email' => 'Adresa e email-it nuk është e vlefshme.', + 'length' => 'Hapësira për email-in duhet të jetë të paktën 4 karaktere dhe jo më shumë se 64 karaktere.', + 'required' => 'Kërkohet të vendoset adresa e email.', + ) , + 'message' => array( + 'required' => 'Hapësira e komentit duhet plotësuar.', + ) , + 'name' => array( + 'length' => 'Emri duhet të përmbajë të paktën 3 karaktere.', + 'required' => 'Informacioni për emrin është i detyrueshëm.', + ) , + 'phone' => array( + 'length' => 'Numri i telefonit nuk është i vlefshëm.', + ) , +); diff --git a/application/i18n/sq_AL/mhi.php b/application/i18n/sq_AL/mhi.php new file mode 100644 index 0000000000..8eeeea1e5d --- /dev/null +++ b/application/i18n/sq_AL/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Ju lutem vendosni një kod sigurie të vlefshëm.', + 'required' => 'Ju lutem vendosni kodin e sigurisë.', + ) , + 'contact_email' => array( + 'email' => 'Adresa e email-it nuk është e vlefshme.', + 'required' => 'Ju lutem vendosni një adresë email-i të vlefshme.', + ) , + 'contact_message' => array( + 'required' => 'Informacioni për mesazhin është i detyrueshëm.', + ) , + 'contact_subject' => array( + 'length' => 'Subjekti duhet të përmbajë të paktën 3 karaktere.', + 'required' => 'Hapësira e subjektit është e detyrueshme.', + ) , +); diff --git a/application/i18n/sq_AL/notifications.php b/application/i18n/sq_AL/notifications.php new file mode 100644 index 0000000000..db8a6aa93b --- /dev/null +++ b/application/i18n/sq_AL/notifications.php @@ -0,0 +1,35 @@ + 'Ky mesazh është dërguar nga faqja juaj e web.', + 'admin_login_url' => 'Identifikimi i administratorit', + 'admin_new_comment' => array( + 'message' => 'Nje koment i ri është shënuar në faqen tuaj në përgjigje të:', + 'subject' => 'Koment i ri', + ) , + 'admin_new_email' => array( + 'message' => 'Një mesazh i ri është dërguar në faqen tuaj.', + 'subject' => 'Mesazh i ri', + ) , + 'admin_new_report' => array( + 'message' => 'Një raportim i ri është shënuar në faqen tuaj.', + 'subject' => 'Raportim i ri', + ) , + 'admin_new_sms' => array( + 'message' => 'Një mesazh i ri është dërguar në faqen tuaj.', + 'subject' => 'Mesazh i ri', + ) , + 'member_new_alert' => array( + 'message' => 'Ju keni marrë një denoncim të ri', + 'subject' => 'Denoncim i ri!', + ) , + 'member_new_message' => array( + 'message' => 'Ju keni marrë një mesazh privat', + 'subject' => 'Mesazh privat i ri', + 'footer' => 'Për t`u përgjigjur shkoni tek: ', + ) , +); diff --git a/application/i18n/sq_AL/page.php b/application/i18n/sq_AL/page.php new file mode 100644 index 0000000000..1ec6e4b62f --- /dev/null +++ b/application/i18n/sq_AL/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Ju lutem vendosni Titullin e Faqes.', + 'length' => 'Titulli i faqes duhet të jetë 3 deri në 150 karaktere .', + ) , + 'page_tab' => array( + 'required' => 'Ju lutem vendosni emrin e faqes lidhëse (page tab name).', + ) , + 'page_description' => array( + 'required' => 'Ju lutem vendosni një përshkrim për faqen.', + ) , +); diff --git a/application/i18n/sq_AL/permissions.php b/application/i18n/sq_AL/permissions.php new file mode 100644 index 0000000000..d841cb75a8 --- /dev/null +++ b/application/i18n/sq_AL/permissions.php @@ -0,0 +1,7 @@ + array( + 'single_country' => 'Vendodhjet i përkasin një shteti të vetëm. Ju lutem sigurohuni se vendndodhja e denoncimit është brenda këtij shtetiUganda.', + ) , + 'data_include' => array( + 'between' => 'Ju lutem vendosni një artikull të vlefshëm për të shkarkuar.', + 'numeric' => ' Ju lutem vendosni një artikull të vlefshëm për të shkarkuar.', + ) , + 'data_active' => array( + 'between' => 'Ju lutem zgjidhni "Reporte në Pritje për t`u Miratuar ose Raporte të Miratuara" ose të dyja.', + 'numeric' => 'Ju lutem zgjidhni "Reporte në Pritje për t`u Miratuar ose Raporte të Miratuara" ose të dyja ', + 'required' => 'Ju lutem zgjidhni "Reporte në Pritje për t`u Miratuar ose Raporte të Miratuara" ose të dyja ', + ) , + 'data_verified' => array( + 'between' => 'Ju lutem zgjidhni "Reporte në Pritje për t`u Verifikuar ose Raporte të Verifikuara" ose të dyja, ', + 'numeric' => 'Ju lutem zgjidhni "Reporte në Pritje për t`u Verifikuar ose Raporte të Verifikuara" ose të dyja,', + 'required' => 'Ju lutem zgjidhni "Reporte në Pritje për t`u verifikuar ose Raporte të Verifikuara" ose të dyja,', + ) , + 'data_point' => array( + 'between' => 'Ju lutem zgjidhni një tip të vlefshëm raporti për të shkarkuar.', + 'numeric' => 'Ju lutem zgjidhni një tip të vlefshëm raporti për të shkarkuar ,', + 'required' => 'Ju lutem zgjidhni një tip të vlefshëm raporti për të shkarkuar.', + ) , + 'from_date' => array( + 'date_mmddyyyy' => ' Formati në fushën e datës nuk përmban një të dhënë të vlefshme.', + 'range' => 'Ju lutem fusni një të datë të vlefshme . Nuk mund të jetë një datë e mëvonshme se dita e sotme.', + ) , + 'incident_active' => array( + 'between' => 'Ju lutem vendosni një vlerë të vlefshme për Aprovimin e këtij Raporti,', + 'required' => 'Ju lutem vendosni një vlerë të vlefshme për Aprovimin e këtij Raporti, ', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Formati i orarit (am\\pm) nuk përmban një vlerë të vlefshme .', + ) , + 'incident_category' => array( + 'numeric' => 'Fusha emërtuar Kategori nuk përmban një kategori të vlefshme .', + 'required' => 'Informacion i kategorisë është i i detyrueshëm për tu plotësuar.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Hapësira e datës nuk përmban një vlerë të vlefshme.', + 'date_mmddyyyy' => 'Hapësira e datës nuk përmban një vlerë të vlefshme.', + 'required' => 'Informacioni në hapësirën e datës është i detyrueshëm për tu plotësuar.', + ) , + 'incident_description' => array( + 'required' => 'Informacioni në hapësirën Përshkrime është i detyrueshëm për tu plotësuar.', + ) , + 'incident_hour' => array( + 'between' => 'Hapësira e orës nuk përmban një orar të vlefshëm.', + 'required' => 'Informacioni në hapësirën e orës është i detyrueshëm për tu plotësuar.', + ) , + 'incident_information' => array( + 'alpha' => 'Ju lutem vendosni një vlerë të vlefshme për Propabilitetin e Informacionit.', + 'length' => 'Ju lutem vendosni një vlerë t`u vlefshme për Propabilitetin e Informacionit.', + ) , + 'incident_minute' => array( + 'between' => ' Hapësira e minutave nuk përmban një vlerë të vlefshëm.', + 'required' => ' Informacioni në hapësirën e minutave është i detyrueshëm për tu plotësuar .', + ) , + 'incident_news' => array( + 'url' => 'Hapësira e burimit të informacionit nuk përmban një URL të vlefshme.', + ) , + 'incident_photo' => array( + 'size' => 'Ju lutem sigurohuni që madhësia e fotos të jetë brenda limitit prej 2MB.', + 'type' => 'Hapësira për imazhin nuk përmban një imazh të vlefshëm. Formatet e vetme të pranueshme janë .JPG, .PNG and .GIF.', + 'valid' => 'Hapësira për imazhin nuk përmban një skedar të vlefshëm.', + ) , + 'incident_source' => array( + 'alpha' => 'Ju lutem vendosni një vlerë të vlefshme për Besueshmërinë e Burimit.', + 'length' => 'Ju lutem vendosni një vlerë të vlefshme për Besueshmërinë e Burimit..', + ) , + 'incident_title' => array( + 'length' => 'Hapërisa e "Titulli i Raportit " duhet të përmbajë 5 deri në 200 karaktere.', + 'required' => 'Titulli i informacionit është i detyrueshëm për tu plotësuar.', + 'csrf' => 'Ky mund të jetë një sulm CSRF. A jeni të sigurt se doni të modifikoni/krijoni një raportim?', + ) , + 'incident_verified' => array( + 'between' => '.', + 'required' => 'Ju lutem vendosni një vlerë të vlefshme për të verifikuar këtë raportim.', + ) , + 'incident_video' => array( + 'url' => 'Hapësira e linkut të vidios nuk përmban një URL të vlefshme.', + ) , + 'latitude' => array( + 'between' => ' Hapësira e gjatësisë nuk përmban një vlerë korrekte.', + 'required' => ' Informacioni në hapësirën e vendodhjes është i detyrueshëm për tu plotësuar.', + ) , + 'locale' => array( + 'alpha_dash' => 'Hapësira e vendodhjes nuk ka një vlerë korrekte. ', + 'exists' => 'Ky raport tashmë ka një përkthim në këtë gjuhë.', + 'length' => 'Hapësira e vendodhjes nuk përmban një vlerë korrekte. ', + 'locale' => 'Vendodhja e raportit origjinal dhe rapotit të përkthyer është e njëjtë.', + 'required' => 'Informacioni në hapësirën e vendndodhjes është i detyrueshëm për tu plotësuar.', + ) , + 'location_name' => array( + 'length' => ' "Hapësira e vendodhjes" duhet të përmbajë 3 deri në 200 karaktere.', + 'required' => 'Informacioni në hapësirën e vendndodhjes është i detyrueshëm për tu plotësuar.', + ) , + 'longitude' => array( + 'between' => 'Hapësira e gjërësisë nuk përmban një vlerë korrekte.', + 'required' => 'Informacioni në hapësirën e gjerësisë është i detyrueshëm për tu vendosur. Ju lutem klikoni në hartë për të shënuar vendodhjen.', + ) , + 'person_email' => array( + 'email' => 'Hapësira e email-it nuk përmban një email të vlefshëm.', + 'length' => 'Email-i duhet të përmbajë 4 deri në 64 karaktere.', + ) , + 'person_first' => array( + 'length' => 'Emri duhet të përmbajë 3 deri në 100 karaktere.', + ) , + 'person_last' => array( + 'length' => 'Mbiemri duhet të përmbajë 2 deri në 100 karaktere.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => ' Hapësira e Datës së përfundimimt nuk përmban një vlerë korrekte.', + 'range' => 'Ju lutem vendosni një vlerë në hapësirën e Data e përfundimit. Kjo datë nuk mund të jetë më e vonë se data e sotme', + 'range_greater' => 'Data e Nisjes nuk mund të jetë më e vonë se Data Afat .', + ) , +); diff --git a/application/i18n/sq_AL/reporters.php b/application/i18n/sq_AL/reporters.php new file mode 100644 index 0000000000..54a12f83c0 --- /dev/null +++ b/application/i18n/sq_AL/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Fusha latitude nuk permban nje vlere te sakte per nje gjeresi gjeografike.', + 'required' => 'Fusha e gjeresise gjeografike (latitude) duhet plotesuar. Ju lutem klikoni ne harte per te zgjedhur nje pozicion.', + ) , + 'level_id' => array( + 'numeric' => 'Fusha niveli i raportuesit nuk ka nje vlere te vlefshme', + 'required' => 'Fusha niveli i raportuesit nuk ka nje vlere te vlefshme', + ) , + 'location_name' => array( + 'length' => 'Fusha e vendndodhjes duhet te permbaje te pakten 3 dhe jo me shume se 200 karaktere.', + 'required' => 'Fusha e vendndodhjes eshte e detyrueshme te plotesohet.', + ) , + 'longitude' => array( + 'between' => 'Fusha longitude nuk permban nje vlere te sakte per nje gjatesi gjeografike.', + 'required' => 'Fusha e gjatesise gjeografike (longitude) duhet plotesuar. Ju lutem klikoni ne harte per te zgjedhur nje pozicion.', + ) , + 'reporter_id' => array( + 'numeric' => 'Raportues i gabuar', + 'required' => 'Raportues i gabuar', + ) , +); diff --git a/application/i18n/sq_AL/reports.php b/application/i18n/sq_AL/reports.php new file mode 100644 index 0000000000..301129f937 --- /dev/null +++ b/application/i18n/sq_AL/reports.php @@ -0,0 +1,16 @@ + array( + 'required' => 'Ju lutem verifikoni qe keni zgjedhur nje objekt', + 'numeric' => 'Ju lutem verifikoni qe keni zgjedhur nje objekt', + 'categories_required' => 'Raportet duhet te kategorizohen para se te aprovohen', + ) , + 'action' => array( + 'permission' => 'Nuk keni te drejta te kryeni kete veprim', + ) , +); diff --git a/application/i18n/sq_AL/roles.php b/application/i18n/sq_AL/roles.php new file mode 100644 index 0000000000..817befe4ba --- /dev/null +++ b/application/i18n/sq_AL/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Hapësira e përshkrimit duhet të përmbajë 3 deri në 100 karaktere.', + 'required' => ' Informacioni në hapësirën e përshkrimit është i detyrueshëm për tu plotësuar.', + ) , + 'name' => array( + 'alpha_numeric' => 'Emri duhet të përmbajë vetëm shkronja dhe numra .', + 'length' => 'Emri duhet të përmbajë 2 deri në 30 karaktere.', + 'nomodify' => ' Roli i Krye Administratorit nuk mund të modifikohet.', + 'required' => 'Informacioni për emrin është i detyrueshëm për tu plotësuar.', + ) , + 'access_level' => array( + 'numeric' => 'Niveli i aksesit duhet të jetë një numër nga 0 deri në 100.', + 'required' => 'Niveli i aksesit duhet të jetë një numër nga 0 deri në 100.', + ) , + 'permissions' => array( + 'numeric' => 'Niveli i të drejtave duhet të jetë një numër nga 0 deri në 100.', + ) , +); diff --git a/application/i18n/sq_AL/settings.php b/application/i18n/sq_AL/settings.php new file mode 100644 index 0000000000..a9f7f37b3b --- /dev/null +++ b/application/i18n/sq_AL/settings.php @@ -0,0 +1,114 @@ + array( + 'between' => 'Vlera në hapësirën për lejimin e komenteve nuk është korrekte.', + 'required' => 'Informacion i detyrueshëm për tu plotësuar.', + ) , + 'allow_feed' => array( + 'between' => ' Hapësira për përfshirjen e lajmeve të ditës nuk ka një përmbajtje korrekte.', + 'required' => 'Informacioni i detyrueshëm për tu plotësuar.', + ) , + 'allow_alerts' => array( + 'between' => 'Vlera në hapësirën për lejimin e denoncimeve nuk është korrekte.', + 'required' => ' Informacioni për lejimin e denoncimeve i detyrueshëm.', + ) , + 'allow_reports' => array( + 'between' => 'Hapësira për lejimin e raporteve nuk përmban një vlerë të saktë.', + 'required' => ' Informacioni për lejimin e raporteve i detyrueshëm.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Vlera në hapësirën për publikimin e statistikave nuk është e saktë', + 'required' => ' Informacioni i detyrueshëm për tu plotësuar.', + ) , + 'api' => array( + 'default_record_limit' => ' Numri fillestar i rregjistrimeve për do kërkesë API', + 'maximum_record_limit' => 'Nurmi maksimal i rregjitrimeve për do kërkesë', + 'maximum_requests_per_ip_address' => 'Numri maksimal i kërkesave API për do adresë IP ', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Hapësira për Akismet nuk ka një përmbajte korrekte.', + 'length' => ' Hapësira e Akismet nuk ka një përmbajte.', + ) , + 'cache_pages' => array( + 'between' => ' Informacioni i detyrueshëm për tu plotësuar në hapësirën e cache pages.', + 'required' => ' Vlera në hapësirën cache pages është jo korrekte.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Vlera për jetëgjatësinë e cache pages nuk është korrekte.', + 'required' => ' Informacioni i detyrueshëm për tu plotësuar.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => ' Serveri juaj nuk është konfiguruar për të bërë pastrim të URLsë. Ju duhet të ndryshoni konfigurimin e serverit tuaj përpara se të mund të pastroni URL-në. Në linkun e mëposhtëm do të gjeni udhëzimet se si mund të pastroni URL-në tuaj në këtë forum', + 'clean_url_enabled' => 'Ky opsion e bën Ushahidi-n të aksesueshëm nëpërmjet komandës Pastro URL-të (pa përdorur "index.php" në URL).', + 'enable_clean_url' => 'Aktivizo pastrimin e URL-së', + 'title' => 'Pastro URL-në', + ) , + 'clickatell_api' => array( + 'length' => 'Numri i Clickatell API nuk duhet të përmbajë më tepër se 20 karaktere .', + 'required' => 'Informacioni për Clickatell API i detyrueshëm.', + ) , + 'clickatell_password' => array( + 'length' => ' Fjalëkalimi Clickatell duhet të jetë 5 deri në 50 karaktere .', + 'required' => 'Informacioni për Fjalëkalimin Clickatell është i detyrueshëm për tu plotësuar.', + ) , + 'clickatell_username' => array( + 'length' => 'Emri i përdoruesit Clickatell nuk mund të jetë më shumë se 50 karaktere.', + 'required' => 'Informacioni për emrin e përdoruesit Clickatell i detyrueshëm.', + ) , + 'configure_map' => 'Hartë e konfiguruar', + 'default_location' => 'Vendodhje fillestare', + 'default_map_all' => array( + 'alpha_numeric' => 'Hapësira per ngjyrën nuk ka një përmbajtje korrekte.', + 'length' => 'Ngjyra nuk duhet të përmbajë më shumë se 6 karaktere.', + 'required' => 'Informacion i detyrueshëm për tu plotësuar .', + ) , + 'default_map_view' => 'Pamja e hartës fillestare', + 'default_zoom_level' => 'Niveli fillestar i zmadhimit', + 'download_city_list' => 'Rigjej emrat gjeografik të qyteteve', + 'email_host' => array( + 'length' => ' Informacioni për portën e mail server-it është shumë i gjatë.', + 'numeric' => 'Porta e mail server-it duhet të përmbajë vetëm numra.', + ) , + 'email_password' => array( + 'length' => 'Fjalëkalimi i mail server-it duhet të përmbajë nga 5 deri në 50 karaktere .', + 'required' => ' Fjalëkalimi i mail server-it i detyrueshëm për tu plotësuar.', + ) , + 'email_port' => array( + 'length' => 'Informacioni për portën e mail server-it është shumë i gjatë.', + 'numeric' => ' Porta e mail server-it duhet të përmbajë vetëm numra.', + ) , + 'email_servertype' => array( + 'length' => ' Informacioni për portën e mail server-it është shumë i gjatë.', + 'required' => 'Tipi i mail server-it është i detyrueshëm për tu plotësuar.', + ) , + 'email_username' => array( + 'length' => 'Emri i përdoruesit të mail serverit nuk duhet të përmbajë më shumë se 50 karaktere .', + 'required' => 'Emrit i përdoruesit të mail serverit është i detyrueshëm për tu plotësuar.', + ) , + 'facebook' => array( + 'title' => 'Opsionet e facebook-ut', + 'description' => 'Për të marë informacionin e mëposhtëm do ju duhet të krijoni një aplikim të ri në Facebook', + 'app_id' => 'Facebook app ID ', + ) , + 'google_analytics' => array( + 'length' => 'Hapësira e Google Analytics duhet të përmbajë një Web Property ID të vlefshëm në formatin UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Mundësi HTTPS', + 'https_disabled' => 'Ky opsion akseson Ushahid-in në një mënyrë të pasigurt. without "https://" in the URL prefix', + 'https_enabled' => 'Ky opsion akseson Ushahid-in në një mënyrë të sigurtë me https në prefiksin URL', + ) , + 'items_per_page' => array( + 'between' => 'Hapësira e Artikujve për faqe nuk përmban informacion korrekt. ', + 'required' => 'Informacioni i artikujve për faqe është i domosdoshëm për t`u plotësuar.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Hapësira e Artikujve për faqe (admin) nuk përmban informacion korrekt .', + 'required' => 'Informacioni i artikujve për faqe(admin) është i domosdoshëm për t`u plotësuar.', + ) , +); diff --git a/application/i18n/sq_AL/sharing.php b/application/i18n/sq_AL/sharing.php new file mode 100644 index 0000000000..78cb2c9ecd --- /dev/null +++ b/application/i18n/sq_AL/sharing.php @@ -0,0 +1,7 @@ + 'Aprovuar', + 'categories' => 'Kategori', + 'category_impact' => 'Impakti i kategorisë', + 'category_impact_description' => 'Ky grafik ofron një pamje lineare të raporteve sipas kategorive në kohë. Lëviz nga e majta në të djathtë për të patur një pamje krahasuese midis kategorive të ndryshme. Vendosni maus-in mbi grafik për më tepër detaje.', + 'choose_date_range' => 'Zgjidhni një periudhë kohore.', + 'countries' => 'Shtetet', + 'country' => 'Shteti', + 'country_breakdown' => 'Ndarja e Shtetit', + 'description' => ' Ky është seksioni i statistikave dhe së shpejti do të përmbajë një përshkrim të përgjithshëm. Për momentin përdorni informacionin që keni në dispozicion.', + 'error' => 'Gabim', + 'glossary' => 'Minifjalor', + 'hit_summary' => 'Përmbledhje kryesore', + 'legend' => 'Legjendë', + 'pageviews' => 'Pamje e faqeve', + 'pageviews_description' => 'Numri total i faqeve që vizitorët kanë parë në site-n tuaj', + 'reports' => 'Raportet', + 'reports_categories' => ' Kategoritë e Raporteve ', + 'reports_statistics' => ' Statistikat e Raporteve ', + 'reports_status' => ' Statuset e Raporteve', + 'report_punchcard' => 'Tabela e raporteve', + 'report_stats' => 'Të dhëna të raporteve', + 'stats_not_setup' => 'Statistika të pastrukturuara', + 'time_range_1' => '1 Mujore', + 'time_range_2' => '3 Mujore', + 'time_range_3' => '6 Mujore', + 'time_range_all' => 'Të gjitha', + 'unapproved' => 'E pa Aprovuar', + 'unique_visitors' => 'Vizitorë Unik', + 'unique_visitors_description' => ' Numri i personave që vizitojnë faqen tuaj. Vizitorët unik janë ata që përdorin cookies. Vizitorët që nuk kanë të aktivizuar cookies mund të identifikohen duke përdorur mënyra të tjera si p.sh IP address, rezolucion, browser, plugins, OS, etj.', + 'unverified' => ' E paverifikuar', + 'verified' => ' E Verifikuar', + 'visitor_summary' => 'Përmbledhje e Vizitorëve', + 'visits' => 'Vizita', + 'visits_description' => 'Një vizitë është rregjistrimi i një vizitori i cili e hap faqen e tij 30 minuta pas aksesit të tij të fundit .', +); diff --git a/application/i18n/sq_AL/tooltips.php b/application/i18n/sq_AL/tooltips.php new file mode 100644 index 0000000000..a6b46f27ca --- /dev/null +++ b/application/i18n/sq_AL/tooltips.php @@ -0,0 +1,92 @@ + array( + 'add_to_category' => 'Kjo i shton kategorive të tjera raportin. Nëse ju zgjidhni Kategorinë 1 dhe raporti ka tashmë të bashkëlidhur Kategorinë 2, më pas raporti do ti ketë të dyja kategoritë.', + 'approve' => 'Aprovoni ose jo raportin. Nëse e aprovoni kjo do të shfaqet publikisht.', + 'assign_badge' => 'Ju do të jeni në gjendje të caktoni një shenjë dalluese për përdoruesin. Zgjidhni simbolin që caktohet këtu.', + 'between_times' => 'është një varg orësh ose minutash i kufizuar me dy orare, në formatin 24 orësh. Nëse ju vendosni një kohë më të herëshme në hapësorën e dytë, kjo do të shndërrohet në hapësirë të parë. Këto orare duhet të jenë brënda një dite të vetme. Gjithashtu kjo kohë do të kontrollohet nëse përkon me kohën e konfiguruar në faqen tuaj në mundësitë e faqes dhe nuk është e nevojshme që orari i përdoruesit të përputhet me vendndodhjen e tij. Për të injoruar këtë mundësi lëreni afatin kohor 00:00 deri 00:00 .', + 'category' => 'Nëse ju do të donit të aktivizonit Kodin TRIGGER vetëm kur një kategori e caktuar është përdorur, ju mund të pozicionoheni aty. Kjo do të bëjë të mundur që Kodi Trigger të aktivizohet vetëm kur një nga kategoritë është përdorur praktikisht. Nëse ju zgjidhni Kategorinë 1 & Kategorinë 2 dhe raporti është pranuar duke përdorur Kategorin 2 & Kategorin 3, ju do të kaloni testin.', + 'days_of_the_week' => 'Nëse ky veprim ndodh në një ditë të caktuar të javës, vendoseni këtu. Mbani mend që dita është vendosur sipas hapësirës kohore të konfiguruar në vendodhjen tuaj. Klikoni komandën shift, ose kontrolloni për mbivendosjen e ditëve të zgjedhura.', + 'email_body' => 'Struktura e email-it që do të dërgohet.', + 'email_subject' => 'Përmbajtja e email-it që do të dërgohet.', + 'keywords' => 'Ju mund të zgjidhni ta lini bosh nëse nuk dëshironi të kontrolloni fjalët kye. Nëse ju vendosni fjalë, do të ju duhet ti ndani ato me presje (,). Për shembull, nëse ju doni të aktivizoni një kod trigger, kur dikush përmënd në mesazhet e tyre termat "dashuri" ose "paqe", ju do te donit të shtonit "dashuri , paqe" në kutinë e fjalëve kyce.', + 'location' => 'Ju mund të zgjidhni Kudo ose një vendndodhje specifike. Nëse ju zgjidhni një vendndodhje specifike do ju kërkohet të vizatoni një kutizë që përcakton zonën e veprimit. Për shembull, nëse ju doni që kodi Trigger të aktivizohet kur dikush shton një raport në Tiranë, ju duhet të zgjidhni një zonë specifike dhe më pas të vizatoni kutizën rreth Tiranë. Ju mund të ndryshoni madhësinë e këtyre kutizave. Gjithashtu ju mund ti shumëfishoni ato.', + 'on_specific_count' => 'Ky kriter do të aktivizojë kodin trigger në llogarinë e N-të për përdoruesit në grup ose përdoruesit individualë. Lëreni bosh nëse doni t`a injoroni atë.', + 'report_title' => 'Ky është emri fillestar për t`i shtuar Raportit.', + 'response' => 'Nëse të gjitha kualifikimet e mësipërme janë kaluar me sukses, Kodi Trigger do të nisë një përgjigje. Kjo mund të variojë nga aprovimi i raportit deri në dërgimin e email-it. Zgjidhni një përgjigje për të aktivizuar opsione shtes për përgjigjet specifike.', + 'send_to' => 'Nëse ju zgjidhni "Triggering User", email-i do t`i dërgohet përdoruesit i cili ndërmori veprimin. Nëse ju zgjidhni butonin e radios pasi keni zgjedhur kutinë e input-it, ju do të jeni në gjendje të shtoni adresën e përshtatshme të email-it. Kjo është e vlefshme kur ju jeni duke përdorur Kodet Trigger për të njoftuar njerëzit kur pjesë të caktuara të hartës po shohin raportet, kontrollo ins ose disa aktivitete të tjera.', + 'specific_days' => 'Ju mund të zgjidhni ditët këtu. Ditët janë të përcaktuara nga opsionet e zonës kohore. Nëse dëshironi të përfshini të gjithë datat, atëhere mos përzgjidhni vetëm një prej tyre.', + 'trigger' => ' Kodi trigger është komponenti kryesor i opsioneve të veprimeve Triggers. Ky është vendi ku ju përcaktoni nëse dëshironi të ndodhë dika kur dikush paraqet një raport, kryen një kontroll , etj. Ju do të jeni në gjendje të përzgjidhni përgjigjet e këtyre ndërveprimeve pasi keni zgjedhur një. ', + 'user' => ' Përdoruesi mund të jetë një person specific ose dokush tjetër. Nëse ju dëshironi përdorues specifik për të aktivizuar një kod Trigger , ju duhet ti përzgjidhni ato këtu. Përndryshe gjithësecili do të jetë përdorues derisa kodet trigger të jenë të aksesueshëm për të gjithë përdoruesit që veprojnë në sistem.', + 'verify' => 'Cilëson raportin si të verifikuar ose jo.', + ) , + 'change_picture' => ' Profilet e faqeve në siti-n Gravatar. Duke klikuar në imazhin tuaj , ju do të përfshiheni në web-in Gravatar ku ju mund të ndryshoni foton tuaj të profilit .', + 'default_value' => 'Ndani vlerat me presje nga njëra tjetra, p.sh. vlera1, vlera2.', + 'radio_choices' => 'Ndani cdo vlere me nje presje, p.sh vlera1, vlera2. Nese deshironi te paracaktoni nje vlere atehere mbylleni listen me :: p.sh nese deshironi te paracaktoni vlera3, atehere shkruani vlera1, vlera2, vlera3::vlera3', + 'dropdown_choices' => 'Ndani do artikull me presje, p.sh. Artikulli 1, Artikulli 2 etj.', + 'private_to' => 'Filloni të zgjidhni listën e anëtarve.', + 'private_subject' => 'Përmbajtja e mesazhit privat', + 'private_message' => 'Mesazh privat', + 'profile_color' => ' Ju mund të zgjidhni një ngjyrë që do të shfaqet nën foton tuaj të profilit në profilin tuaj publik. Kjo do të jetë gjithashtu ngjyra që do të shfaqet në hartë për kontrollet tuaja.', + 'profile_email' => ' Adresa juaj e email-it', + 'profile_name' => ' Kjo është një nga mënyrat se si ju identifikoheni në faqen web. Kujtoni që kjo është publike!', + 'profile_new_password' => 'Nëse vendoset, ky do të jetë fjalëkalimi juaj i ri. Lëreni bosh nëse ju dëshironi të mbani fjalëkalimin aktual. ', + 'profile_new_users_password' => ' Kjo është e detyrueshme kur përfshihet një përdorues i ri dhe ky do të jetë fjalëkalimi i përdoruesit të ri. Ju duhet të informoni përdoruesit e rinj që ata të ndryshojnë fjalëkalimin pasi janë identifikuar për herë të parë. ', + 'profile_notify' => 'Duke zgjedhur PO, ju do të merrni sinjale nëpërmjet email-it nëse raporte ose komente të reja janë postuar në web-in tuaj.', + 'profile_password' => ' Fjalëkalimi juaj aktual. Kërkohet të vendosni fjalëkalimit për të parandaluar do ndyshim të paautorizuar në llogarinë tuaj. ', + 'profile_public' => ' Profili juaj mund të shihet nga gjithësecili në internet në qoftë se ju zgjidhni këtë opsion. Kjo është mënyra më e thjeshtë për të treguar raportet që ju keni publikuar , kontrollet tuaja, dhe gjithka tjetër në faqen tuaj.', + 'profile_public_url' => ' Kjo është adresa ku mund të gjendet profili juaj publik.', + 'profile_username' => 'Emri juaj i përdorimit nuk mund të ndryshohet.', + 'settings_access_level' => ' Nivelet e aksesit janë përdorur për të kufizuar hyrjen në të dhënat e klientëve. Niveli më i lartë i aksesit mund të lejojë aksesin në fusha me nivel më të ulët. Kryeadministratori ka nivelin më të lartë të aksesit (100). Të dhënat publike kanë aksesin më të ulët (0).', + 'settings_alert_email' => ' Kjo është adresa e emailit që do të përdoret për të dërguar sinjalet e email-it.', + 'settings_allow_alerts' => ' Lejon përdoruesit që të informohen për do sinjal nga web-i.', + 'settings_allow_clustering' => ' Kjo lejon grumbullimin e raporteve të njëjta në një pikë të vetme në hartë.', + 'settings_allow_comments' => ' Lejon përdoruesit të komentojnë në raportet në faqet kryesore. ', + 'settings_allow_feed' => ' Kjo lejon lajmet RSS të shfaqen në faqen kryesore.', + 'settings_allow_reports' => ' Lejon përdoruesit të shtojnë informacion direkt nga formati i web-it.', + 'settings_api_default_record_limit' => ' Numri fillestar i rregjistrimeve për do kërkesë API.', + 'settings_api_max_record_limit' => ' Numri maksimal i rregjistrimeve për do kërkesë API ', + 'settings_api_max_requests_per_ip' => ' Numri maksimal i kërkesave API për do Adresë IP.', + 'settings_banner' => ' Sfondi do të shaqet në website-n tuaj në qoftë se formati i temës që ju keni zgjedhur është i përshtatshëm. Madhësia e rekomanduar e këtij sfondi do të varet nga tema që ju po përdorni. Kujtoni që kjo do të zëvendësojë titullin e faqes dhe sloganin në krye të faqes.', + 'settings_blocks_per_row' => ' Numri i kolonave të bllokut që do të shfaqet në do rrjesht.', + 'settings_cache_pages' => ' Aktivizo ose aktivizo faqet fshehura. Kjo e bën faqen më të shpejtë duke reduktuar kohën e përgjigjes. Ne rekomandojmë të përdoret caching kur ka ngarkesë të lartë faqesh. ** Kujtoni që raportet do të jenë të populluara bazuar në skedulin që ju keni vendosur.', + 'settings_cache_pages_lifetime' => 'Vendosni afatin kohor për cache.', + 'settings_checkins' => ' Ky opsion ju jep mundësinë të kontrolloni vendosjen tuaj. Ky është një tip raporti i thjeshtëzuar që nuk është moderuar përpara se të jetë në faqen kryesore dhe të detyrohet të konfigurohet në një mënyrë të caktuar. Kur ju të jeni në gjendje ta bëni këtë , sigurohuni që opsionet e afatit tuaj kohor janë nën UTC dhe tema juaj suporton kontrollet. Kur kjo është e mundur, kontrolli i temave do të kryhet nga opsioni i faqeve të temave\\ addons. ', + 'settings_configure_map' => ' Vendosni hartën për të mbuluar një vendodhje specifike', + 'settings_default_category_colors' => ' Vendosni një kod ngjyre për të gjitha kategoritë në faqen tuaj.', + 'settings_default_category_icons' => ' Vendosni një ikonë për të gjitha kategoritë në faqen tuaj.', + 'settings_default_location' => 'Në këtë shtet është vendosur faqia.', + 'settings_display_contact' => ' Vendosni on ose off komandën Kontakt në faqen kryesore ', + 'settings_display_howtohelp' => 'Vendosni on ose off komandën Si të ndihmoshnë faqen kryesore.', + 'settings_display_items_per_page' => ' Ky është numri i raporteve për faqe të paraqitura në faqen kryesore.', + 'settings_display_items_per_page_admin' => 'Ky është numri i raporteve të shfaqura për faqe në Back End admin.', + 'settings_flsms_download' => 'Kjo është qendra e marrjes së mesazheve.', + 'settings_flsms_synchronize' => ' Ky është një sinkronizim i nyjeve të mesazheve me platformën Ushahidi .', + 'settings_flsms_text_1' => ' Numrat e telefonit nëpërmjet të cilave janë marrë mesazhe.', + 'settings_google_analytics' => 'Vizitorët aktiv të faqes suaj. Merrni të dhëna të detajuara për vizitorët.', + 'settings_locale' => 'Vendosni gjuhën që do të përdoret në faqe.', + 'settings_manually_approve_users' => 'Nëse zgjidhni opsionin PO, ju duhet të aprovoni do përdorues që krijon një llogari në faqen tuaj duke caktuar rolin e tij. (ie. Anëtar, Administrator, Superadministrator).', + 'settings_map_provider' => ' Kjo përcakton se cila hartë duhet të përdoret në këtë faqe.', + 'settings_private_deployment' => ' Duke vendosur këtë vlerë E Vërtetë ose Po ju do të bëni vendosjen tuaj private, pra vetëm përdoruesit me llogari që ju autorizoni mund të kenë akses në vendndodhjen tuaj. ', + 'settings_require_email_confirmation' => ' Nëse kjo është plotësuar me PO, përdoruesit do të marrin një email me një link konfirmimi ku ata të klikojnë përpara se të kenë akses në vendosje. Nëse ju e aktivizoni këtë mbasi të keni pranuar përdorues, ata do duhet të konfirmojnë llogarinë e tyre përpara se të lejohen ta përdorin atë.', + 'settings_server_host' => 'Ky është vendi ku email-et qëndrojnë', + 'settings_server_password' => 'Ky është fjalëkalimi për adresën e e-mailit ku dërgohen raportet.', + 'settings_server_port' => 'Ky është informacion i detyrueshëm për të pranuar lidhjet hyrese në adresën e e-mailit.', + 'settings_server_ssl_support' => 'është e detyrueshme për të mundësuar një lidhje të sigurt.', + 'settings_server_type' => 'është e detyrueshme për të tërhequr email-e nga serveri pritës.', + 'settings_server_username' => 'Kjo është adresa e e-mailit ku dërgohen raportet.', + 'settings_share_site_stats' => 'Statistikat janë ruajtur në një server të kontrolluar nga Ushahidi. Duke mundësuar këtë opsion, ju fitoni akses të drejtëpërdrejtë tek statistikat në panelin tuaj të administrimit. Duke patur këtë opsion ju nuk do të mblidhni më statistika dhe do ta keni të pamundur të përmirësoni ngarkesën e statistikave kur kjo të fiket. Duke aktivizuar këtë opsion ju fitoni sërisht akses tek statistkat direkt nga paneli juaj.', + 'settings_site_copyright_statement' => ' A kanë të tjerët të drejtë të ripublikojnë tekste, mesazhe viedo ose tema që juve dhe përdoruesit tuaj keni krijuar? Shkoni tek: Hapësira e krijimeve Nëse jeni të interesuar për të specifikuar farë të tjerët janë në gjendje të bëjnë me punën tuaj. Kujtoni që të jeni të sakte rreth elementëve të faqes suaj për të cilët jeni të licensuar!', + 'settings_site_email' => 'Kjo është adresa e e-mailit që do të marrë raportet e email-eve dhe mesazhet nga forma e kontaktit.', + 'settings_site_message' => 'Ky është teksti që do të shfaqet në hartën e faqes kryesore. Kjo është e përdorshme për t dhënë vizitorëve të faqes, informacion të rëndësishëm. Për të fshirë kutinë thjeshtë fshini mesazhin këtu.', + 'settings_site_name' => 'Ky është emri i faqes që shfaqet në krye të faqes kryesore.', + 'settings_site_submit_report_message' => 'Ky është një mesazh që do të shfaqet në faqen e raportit të shtuar. Kjo gjë është e mirë për udhëzime për vizitorët që janë duke raportuar', + 'settings_site_tagline' => 'Shpjego me pak fjalë përmbajtjen e faqes suaj.', + 'settings_site_timezone' => 'Ky është afati kohor ku faqia juaj do të operojë. Kjo do të ndikoje në veprimet ku do ju duhet të përdorni datën si në raportet direkte ashtu edhe në ato indirekte.', + 'settings_twitter_configuration' => 'Vendosni Fjalët me simbolin # (hashtag) që do të përdoren në tweet', +); diff --git a/application/i18n/sq_AL/ui_admin.php b/application/i18n/sq_AL/ui_admin.php new file mode 100644 index 0000000000..89b2594588 --- /dev/null +++ b/application/i18n/sq_AL/ui_admin.php @@ -0,0 +1,302 @@ + 'Aksesi nuk u aprovua. Kredencialet tuaja mund të jenë të pavlefshme ose kërkesa juaj është refuzuar.', + 'access_denied_others' => 'Aksesi nuk u aprovua. Kërkesa juaj është kuptuar, por është refuzuar si pasojë e aksesit të kufizuar. Ju lutem provojeni më vonë.', + 'access_level' => 'Niveli i aksesit', + 'actions' => 'Veprimet', + 'add_to_category' => 'Shto në kategori', + 'added' => 'u shtua', + 'added_edited' => 'u shtua/ u modifikua', + 'addons' => 'Shtojca', + 'admin_role' => 'Administrator', + 'alerts' => 'Njoftime', + 'alerts_received' => 'Njoftime të marra', + 'am' => 'AM', + 'anonymous' => 'Anonim', + 'anyone_role' => 'çdokush', + 'anywhere' => 'Kudo', + 'api_banned' => 'API e ndaluar', + 'api_logs' => 'API Shënime', + 'api_settings' => 'Opsionet API', + 'api_unban' => 'Lejo', + 'api_unban_all' => 'Lejo të gjitha', + 'approved' => 'u aprovua', + 'approve_auto' => 'Aprovimi automatik', + 'approve_manual' => 'Aprovimi manual', + 'archived' => 'E arkivuar', + 'are_you_sure_you_want_to' => 'A jeni të sigurtë se', + 'are_you_sure_you_want_to_delete_this_item' => 'A jeni i sigurtë se doni të fshini këtë artikull?', + 'are_you_sure_you_want_to_delete_this_photo' => 'A jeni i sigurtë se doni të fshini këtë foto?', + 'are_you_sure_you_want_to_switch_forms' => 'A jeni i sigurtë se doni të ndërroni formularin?', + 'assign' => 'Cakto', + 'assignments' => 'Detyrat', + 'assign_badge' => 'Cakto Logon', + 'author' => 'Autori', + 'author_email' => 'Autori i email-it', + 'back' => 'Mbrapa', + 'banip_action' => 'Ndalo IP', + 'between_times' => 'Ndërmjet kohëve', + 'blocks' => 'Blloko', + 'body' => 'Përmbajtja', + 'cancel' => 'Anullo', + 'categories' => 'Kategoritë', + 'chart_display_error' => 'Gabim në shfaqjen e grafikut', + 'check_message_valid' => 'Ju lutem sigurohuni se mesazhi juaj është i vlefshëm.', + 'check_number' => 'Ju lutem sigurohuni se numri është i vlefshëm.', + 'check_sms_settings' => 'Ju lutem kontolloni opsionet e SMS!', + 'checkin_details' => 'Detajet e rregjistrimit', + 'checkins' => 'Rregjistrimet', + 'cities_loaded' => 'Qytetet e ngarkuara', + 'code' => 'kodi', + 'code_out_of_sync' => 'Versioni i kodit i pa sinkronizuar.', + 'color' => 'Ngjyra', + 'comments' => 'Komentet', + 'confirmation_code' => 'Kodi i konfirmimit të njoftimit tuaj është: ', + 'confirm_msg' => 'Përdoruesi ka qënë', + 'count' => 'ështje', + 'country_not_found' => 'Shteti nuk u gjet', + 'created_edited' => 'e krijuar/e modifikuar', + 'create_report' => 'Krijo një raportim', + 'critical_upgrade' => 'Përmirësimi me kritika, jo i plotë', + 'currently_active' => 'Aktiv për momentin', + 'currently_inactive' => 'Jo aktiv për momentin', + 'custom_forms_insufficient_permissions' => 'Ju nuk keni lejen e kërkuar për të modifikuar fushat e mëposhtme.', + 'daily' => 'Ditore', + 'dashboard' => 'Paneli', + 'database' => 'Baza e të dhënave', + 'date_time' => 'Data & Orari', + 'days_of_the_week' => 'Ditët e javës', + 'db_out_of_sync' => 'Versioni DB i sinkronizuar.', + 'deleted' => 'e fshirë', + 'delete_action' => 'Fshi', + 'delete_badge' => 'Fshi Logon', + 'demo' => 'Demostrim', + 'description' => 'Përshkrimi', + 'disabled' => 'E pa aktivizuar', + 'divider_start_field' => 'ndarja në fillim', + 'divider_end_field' => 'ndarja në përfundim', + 'divider_class' => 'klasa ndarëse', + 'download_reports' => 'Shkarko Raportet', + 'dropdown_choices' => 'Zgjedhjet në listë', + 'edited' => 'E modifikuar', + 'edited_by' => 'E modifikuar nga', + 'edit_action' => 'Modofiko', + 'edit_log' => 'Modifikim', + 'email' => 'Email', + 'entire_collective' => 'I gjithë ', + 'error_geocoding' => 'Gabim në kodin gjeografik! Gabimi HTTP', + 'error_imap' => 'IMAP PHP Library nuk është instaluar', + 'error_msg' => 'Gabim', + 'error_post_incident' => 'Gabim, nuk u bë i mundur postimi i rastit', + 'every_six_hours' => 'do gjashtë orë', + 'every_twelve_hours' => 'do dhymbëdhjetë orë', + 'experimental' => 'Ekperimentale', + 'faqs' => 'Pyetje të Bëra Shpesh', + 'feed' => 'Lajme', + 'feedback' => 'Reagim', + 'feeds' => 'Lajme', + 'field_choices' => 'Lista e zgjedhjeve', + 'field_default' => 'Vlera fillestare', + 'field_datatype' => 'Tipi të dhënave', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_numeric' => 'Numerike', + 'field_datatype_text' => 'Teksti i lirë', + 'field_height' => 'Gjatësia (në rrjeshta)', + 'field_hidden' => 'Hapësirë e fshehur', + 'field_maxlength' => 'Maksimumi i karaktereve', + 'field_name' => 'Emri i fushës', + 'field_toggle' => 'Nyje', + 'field_toggle_no' => 'Jo', + 'field_toggle_yes_close' => 'Po, mbyllur prej fillimit', + 'field_toggle_yes_open' => 'Po, hapur prej fillimit', + 'file_not_found_upload' => 'Skedari i ngarkuar nuk mund të gjendet', + 'file_open_error' => 'Skedari nuk mund të hapet', + 'form_not_exists' => 'Formulari nuk ekziston!', + 'forum' => 'Forumi', + 'free_text_field' => 'Hapësira për tekstin (Teksti i lirë)', + 'date_field' => 'Hapësira për datën', + 'radio_field' => 'Hapësira për komandat e radios', + 'checkbox_field' => 'Hapesira për kutizat', + 'dropdown_field' => 'Hapësira për listimin', + 'from' => 'Nga', + 'from_date' => 'Nga', + 'geonames_timeout' => 'Gabim në tejkalimin e kohës për emrat gjeografik', + 'get_help' => 'Merr ndihmë', + 'get_more_themes' => 'Mer Më shumë tema', + 'get_more_plugins' => 'Mer më shumë shtojca', + 'header_actions' => 'Veprimet', + 'header_add_edit' => 'Shto/Modifiko', + 'header_email' => 'Email', + 'header_manage_users' => 'Manaxho përdoruesit', + 'header_role' => 'Roli', + 'header_user' => 'Përdoruesi', + 'help' => 'ndihmë', + 'hourly' => 'do orë', + 'incident_feed' => 'Lajmi për ngjarjet', + 'installer_info' => 'Dosja e instalimit ende ekziston. Fshini dosjen e instalimit. Sepse kjo është një dobësi e mundshme të sigurisë.', + 'instance' => 'Rasti', + 'instances' => 'Rastet', + 'instance_details' => 'Detaje mbi rastet', + 'invalid_parameter' => 'Parametër i pavlefshëm', + 'ip_address' => 'Adresa IP', + 'is_date' => 'A është kjo hapësira për datën?', + 'ispublic_visible' => 'Kush mund të shikojë përgjigjet', + 'ispublic_submit' => 'Kush mund të shtojë përgjigje', + 'keyword' => 'Fjala ky', + 'keywords' => 'Fjalët ky', + 'label_email' => 'Adresa e email-it:', + 'label_full_name' => 'Emri i Plotë:', + 'label_password' => 'Fjalëkalimi:', + 'label_role' => 'Roli:', + 'label_username' => 'Emri i përdoruesit:', + 'layers' => 'Nivelet', + 'login_role' => 'Moderator', + 'logout' => 'rregjistrohu', + 'logs' => 'Hyrjet', + 'manage' => 'Manaxho', + 'manage_roles' => 'Menaxho Rolet & të drejtat', + 'manage_users' => 'Shiko përdoruesit', + 'manage_users_edit' => 'Shto/Modifiko Përdorues', + 'manage_public_listing' => 'Menaxhoni Listen Tuaj Publike', + 'mark_as' => 'Shënuar si', + 'marked_as_not_spam' => 'shënuar jo si spam', + 'marked_as_spam' => 'shënuar si spam', + 'match_no_documents' => 'nuk përputhet me asnjë dokument', + 'message' => 'Mesazhe', + 'messages' => 'Mesazhet', + 'messages_laconica' => 'Mesazhe Laconica', + 'messages_twitter' => 'Mesazhe në Twitter', + 'message_sent' => 'Mesazhi u dërgua!', + 'minute' => 'Minutë', + 'minutes' => 'Minuta', + 'missing_parameter' => 'Mungojnë parametrat', + 'moderator' => 'Moderator', + 'modified' => 'e modifikuar', + 'modify_timezone' => 'Modifiko opsionin e zonës kohore', + 'move_down_action' => 'vazhdo më poshtë', + 'move_up_action' => 'kthehu më lartë', + 'multiple_hosted_instances' => 'Raste të shumëfishta Hosted', + 'my_alerts' => 'Njoftimet', + 'my_checkins' => 'Rregjistrimet e mia', + 'my_profile' => 'Profili Im', + 'my_reports' => 'Raportet e mia', + 'my_votes' => 'Votimet', + 'my_votes_up' => 'Pozitive', + 'my_votes_down' => 'Negative', + 'name' => 'Emri', + 'new_alert' => 'Krijo një njoftim të ri', + 'new_private' => 'Krijo një mesazh të ri', + 'new_password' => 'Fjalëkalim i ri', + 'no' => 'Jo', + 'none_category_explanation' => 'Kjo është një kategori e veantë që nuk do të paraqitet në raportet për përdoruesit. Ajo përdoret për të mbajtur raportet e pa-kategorizuara, si rezultat i fshirjes së një kategorie.', + 'notification' => 'Lajmërime', + 'not_case_sensitive' => 'Janë të pranueshme edhe shkronjat kapitale.', + 'not_found' => 'Nuk u gjetën', + 'no_data' => 'Nuk ka të dhëna. Nuk u gjetën rezultate.', + 'no_error' => 'Nuk ka gabim', + 'no_result_display_msg' => 'Nuk ka rezultate!', + 'of' => 'i', + 'on_specific_count' => 'Në një llogari specifike', + 'page' => 'faqja', + 'pages' => 'faqet', + 'page_not_found' => 'Faqja nuk u gjet', + 'parameters_used' => 'Parametrat e përdorura', + 'password' => 'Fjalëkalimi', + 'password_reset' => 'Ndryshim i fjalëkalimit', + 'password_reset_message_line_1' => 'I/E dashur', + 'password_reset_message_line_2' => 'Ne morëm një kërkesë për të ndryshuar fjalëkalimin', + 'password_reset_message_line_3' => 'Për të ndryshuar fjalëkalimin,ju lutem klikloni në lidhjen e mëposhtme (ose kopjoni linkun dhe vendoseni në browser-in tuaj).', + 'password_reset_message_line_4' => 'Sipas kërkesës suaj, fjalëkalimi u ndryshua. Detajet e reja janë si më poshtë', + 'password_reset_subject' => 'Ndryshoni fjalëkalimin Ushahidi', + 'phone' => 'Telefoni', + 'please_select' => 'Ju lutem zgjidhni', + 'pm' => 'Mesazh Privat', + 'post_method_not_used' => 'Të dhënat nuk u dërguan', + 'preview' => 'Shikim paraprak', + 'private_message' => 'Mesazh', + 'private_messages' => 'Mesazh privat', + 'private_sent' => 'Mesazhi privat u dërgua', + 'private_subject' => 'Subjekti', + 'private_to' => 'Për', + 'public_listing' => 'Renditja publike', + 'qualifiers' => 'Kualifikuesit', + 'read' => 'lexo', + 'relevance' => 'Rëndësia', + 'report_title' => 'Emri i raportit', + 'reporters' => 'Raportuesit', + 'reporter_levels' => 'Niveli i raportimit', + 'reports' => 'Raporte', + 'reputation' => 'Përmbledhje e rezultateve', + 'required' => 'I domosdoshëm', + 'reset' => 'Rivendos', + 'response' => 'Përgjigje', + 'results' => 'Rezultate', + 'revoke' => 'Tërheq', + 'save_settings' => 'Ruaj opsionet', + 'search' => 'Kërkim', + 'search_reports' => 'Kërko Raporte', + 'searching_for' => 'duke kërkuar për', + 'security_info_encryption_key' => 'Kodi i enkriptuar është akoma në vlerën fillestare. Duhet të ndryshohet për qëllime të sigurisë.', + 'security_info_https' => 'Kjo faqe përdor shërbimin HTTP. Ju duhet të zgjidhni HTTPS për të rritur sigurinë e faqes.', + 'security_info_instructions' => 'Udhëzimet janë të disponueshme në wiki: ', + 'select_field_type' => '--- Zgjidhni tipin e fushës ---', + 'select_item' => 'Ju lutem zgjidhni një artikull', + 'select_trigger_before_response' => 'Ju duhet të zgjidhni një Trigger përpara se të zgjidhni një Përgjigje.', + 'select_trigger_before_qualifiers' => 'Ju duhet të zgjidhni një Trigger përpara se të përcaktoni Kualifikuesit.', + 'sender' => 'Dërguesi', + 'send_to' => 'I dërguar tek', + 'sent_from_website' => 'Ky mesazh është dërguar nga faqja juaj drejt ', + 'server_time' => 'Koha e Server-it', + 'settings' => 'Opsione', + 'showing_page' => 'Paraqitja e faqes', + 'showing_results' => 'Paraqitja e rezultateve', + 'shown' => 'e paraqitur', + 'special_category' => 'Kategori e veantë', + 'special_category_explanation' => 'është një kategori e veantë që nuk do të paraqitet në raportet që marrin përdoruesit. Ajo përdoret në rastet e dështimit të komandës "Raportet e besuara".', + 'specific_area' => 'Fusha specifike', + 'state' => 'Gjendja', + 'statistics' => 'Statistika', + 'stats' => 'Të dhëna', + 'stats_collection_error' => 'Mbledhja e të dhënave nuk u realizua me sukses! Ju lutem provoni përsëri.', + 'stats_collection_error_short' => 'Mbledhja e të dhënave nuk u realizua me sukses!', + 'specific_days' => 'Ditët specifike', + 'subject' => 'Subjekti', + 'superadmin_role' => 'Super administratori', + 'task_performed' => 'Detyra u realizua', + 'text_field' => 'Hapësira për tekstin', + 'theme_name' => 'Emri', + 'title' => 'Menaxho përdoruesit', + 'to' => 'tek', + 'total_records' => 'Regjistrimet totale', + 'to_date' => 'tek', + 'translate_reports' => 'Përkthe raportet', + 'triggering_user' => 'Përdoruesi Triggering', + 'unapproved' => 'i pa aprovuar', + 'unknown' => 'I panjohur', + 'unknown_failure' => 'Dështimi i panjohur', + 'unread' => 'I palexuar', + 'unsubscribe_message' => 'Ju nuk do të merrni më njoftime nga', + 'update_link' => ' Kliko këtu për të bërë përmirësimin e versionit', + 'upgrade_ushahidi' => 'Përmirëso Ushahidi', + 'upgrade_ushahidi_status' => 'Përmirëso statusin Ushahidi', + 'upload_reports' => 'Përditëso raportet', + 'user' => 'Përdoruesi', + 'users' => 'Përdoruesit', + 'verified_unverified' => 'I verifikuar/I pa verifikuar', + 'verify_unverify' => 'Verifiko/Mos verifiko', + 'version' => 'Versioni', + 'version_available' => ' Përmirsimi i disponueshëm.', + 'video_encoding' => 'Kodimi i videos', + 'view_private' => 'Mesazh privat', + 'view_site' => 'Shikoni faqen', + 'view_report' => 'Shikoni raportin', + 'welcome' => 'Mirë se erdhët, ', + 'wiki' => 'Wiki', + 'yes' => 'Po', + 'your_search_for' => 'Ju po kërkoni për', +); diff --git a/application/i18n/sq_AL/ui_main.php b/application/i18n/sq_AL/ui_main.php new file mode 100644 index 0000000000..5f23e465a0 --- /dev/null +++ b/application/i18n/sq_AL/ui_main.php @@ -0,0 +1,557 @@ + 'Rreth ', + 'access' => 'Akses', + 'access_limits' => 'Limitet e aksesit ', + 'account_name' => 'Emri i Llogarisë', + 'actions' => 'Veprime', + 'action_confirm' => 'Ky veprim nuk mund të `bëhet. Jeni i sigurt që doni të vazhdoni?', + 'activate' => 'Aktivizoni', + 'active' => 'Aktiv', + 'add' => 'Shto', + 'added_by' => 'Shtuar nga ', + 'additional_data' => 'Të dhëna Plotësuese', + 'additional_reports' => ' Raporte plotësuese', + 'add_edit' => 'Shto\\modifiko', + 'add_field' => 'Shto një fushë', + 'add_language' => 'Shto një gjuhë', + 'add_new' => 'Shto të re', + 'add_new_category' => 'Shto një kategori të re', + 'add_translation' => 'Përkthe', + 'admin' => 'Administrim', + 'alerts' => 'Merr sinjale', + 'alerts_alert_me' => 'Më sinjalizo nëse një raport është paraqitur ose po paraqitet:', + 'alerts_btn_send' => 'Ruaj denoncimin tim', + 'alerts_email' => 'Adresë email-i:', + 'alerts_enter_email' => 'Fusni adresën e email-it', + 'alerts_enter_mobile' => 'Fusni numrin tuaj të telefonit me prefiksin e vendit tuaj', + 'alerts_get' => 'Merr denoncime', + 'alerts_mobile_phone' => 'Numër telefoni:', + 'alerts_place_spot' => 'Ose vendosni një shenjë në hartën më poshtë dhe do të merrni të gjithë denoncimet me një distancë 20 kilometra.', + 'alerts_place_spot2' => 'Nëse ju nuk mund të gjeni vendndodhjen ju lutemi klikoni në hartë për të shënuar vendndodhjen korrekte.', + 'alerts_rss' => 'Lajmet RSS (kopjoni URL e mëposhtme)', + 'alerts_select_city' => 'Zgjidhni një Qytet', + 'alerts_step1_select_city' => 'Step 1: Zgjidhni qytetin ose vendodhjen tuaj:', + 'alerts_step2_send_alerts' => 'Step 2: Dërgoni denoncime në:', + 'alerts_step3_select_catgories' => 'Hapi 3 (Fakultativ): Zgjidh Kategoritë', + 'alert_confirm_previous' => 'Konfirmo një kërkesë të mëparshme për denoncim', + 'alert_saved' => 'Denoncimi juaj është ruajtur!', + 'all' => 'Të gjitha ', + 'allowed' => 'I lejuar', + 'all_categories' => 'Të gjitha kategoritë', + 'all_time' => 'Gjithë kohës', + 'and' => 'dhe', + 'approve' => 'Aprovoj', + 'approved' => 'Aprovuar', + 'approved_reports' => 'Reporte të aprovuara', + 'approve_this_report' => 'Aprovo këtë raport', + 'approximate' => 'I përafërt', + 'archive' => 'Arkivo', + 'archived' => 'E arkivuar', + 'at' => 'tek', + 'author' => 'Autor', + 'auto_checkin' => 'Vet kontroll', + 'avg_reports_per_day' => 'Raporte mesatare në ditë', + 'awaiting_approval' => 'Në pritje për tu aprovuar', + 'awaiting_verification' => 'Në pritje për tu verifikuar', + 'badge' => 'Logo', + 'badges' => 'Logot', + 'badge_image' => 'Imazhi i logos', + 'badge_image_upload_your_own' => 'Ju mund të ngarkoni imazhin tuaj për logon.', + 'badge_pack' => 'Seria e Logove', + 'badge_select' => 'Zgjidhni një logo', + 'blog' => 'blog', + 'browse_profiles' => 'Shfleto profilin', + 'cancel' => 'Anullo', + 'categories' => 'Kategori', + 'category' => 'Kategori', + 'category_filter' => 'Filteri i Kategorisë', + 'category_has_been' => 'Kategoria ka qënë ', + 'category_name' => 'Emri i kategorisë', + 'change_date_range' => 'Ndryshoni periudhën kohore', + 'change_password' => 'Ndryshoni fjalëkalimin', + 'change_picture' => 'Ndrysho fotografinë time', + 'choose' => 'Zgjidh një', + 'choose_data_points' => 'Zgjidhni të dhëna specifike për të shkarkuar', + 'choose_date_range' => 'Ose Zgjidhni periudhen tuaj kohore', + 'choose_field_type' => 'Zgjidhni tipin e hapësirës', + 'cleanurl' => 'Pastro URL-në', + 'clear' => 'Pastro', + 'clear_map' => 'Pastro hartën', + 'close' => 'Mbyll', + 'clusters' => 'Provëza', + 'color' => 'Ngjyra', + 'comment' => 'Koment', + 'comments' => 'Komente', + 'comment_details' => 'Detajet e Komentit', + 'configuration_saved' => 'Opsionet tuaja tashmë janë ruajtur !', + 'configure' => 'Konfiguro', + 'confirm_email_successful' => 'Ju keni konfirmuar adresën tuaj të email-it në mënyrë të suksesshme. Ju lutemi identifikohu më poshtë.', + 'contact' => 'Na kontaktoni', + 'contact_code' => 'Kodi i sigurisë', + 'contact_email' => 'Adresa juaj e e-mailit', + 'contact_message' => 'Mesazh', + 'contact_message_has_send' => 'Mesazhi juaj u dërgua me sukses!', + 'contact_name' => 'Emri juaj', + 'contact_phone' => 'Numri juaj i telefonit', + 'contact_send' => 'Dërgo mesazhin', + 'contact_subject' => 'Përmbajtja e mesazhit', + 'copyright' => 'E drejta e autorit ©', + 'create' => 'Krijo', + 'create_edit' => 'Krijo\\modifiko', + 'create_new' => 'Krijo të ri', + 'create_new_password' => 'Krijoni një fjalëkalim të ri', + 'create_report' => 'Krijoni një raport', + 'credibility' => 'Besueshmëria', + 'current_password' => 'Fjalëkalimi aktual', + 'custom_fields' => 'Fusha e klientit', + 'data' => 'Informacion', + 'date' => 'Datë', + 'date_format' => '(muaj/dita/viti)', + 'date_time' => 'Data & ora', + 'day' => 'dita', + 'deactivate' => '`aktivizo', + 'default_location_name' => 'Tiranë, Shqipëri', + 'delete' => 'Fshi', + 'deleted' => 'U fshi', + 'deletes' => 'Të fshira', + 'delete_disabled' => 'Opsioni i fshirjes është aktivizuar', + 'delete_last' => 'Fshij të fundit', + 'delete_report' => 'Fshij këtë raport', + 'delete_selected' => 'Fshij atë qe është zgjedhur', + 'delete_spam' => 'fshij spam', + 'demo' => 'Demostrative', + 'description' => 'Pershkrim', + 'detailed_location_example' => 'Shembull: Pranë karburant Fredi, rruga Mine Peza, pallati 208', + 'details' => 'Detaje', + 'direct_report' => 'Raport direkt', + 'disabled' => 'I pa aktivizuar', + 'disapprove' => 'Mosaprovim', + 'download_reports' => 'Shkarko raportet', + 'edit' => 'Modifiko', + 'edit_form_fields' => 'Modifiko hapësirën e formularit', + 'edit_report' => 'Modifiko Raportin', + 'email' => 'Email-i', + 'email_address' => 'Adresë emaili', + 'email_configuration' => 'Opsionet e Mail Server', + 'email_server_password' => 'Fjalëkalimi i Mail Server', + 'email_server_port' => 'Porta e Mail Server ', + 'email_server_ssl_support' => 'mbështetja e Mail Server SSL', + 'email_server_type' => 'Tipi Mail Server', + 'email_server_username' => 'Emri i përdorimit të Mail Server ', + 'email_settings_comment_0' => 'Pra opsionet tuaja duhet të shoqërohen me këtë adresë emaili ', + 'email_settings_comment_00' => 'Për të marë raportet nëpërmjet email-it, ju lutemi rivendosni opsionet e llogarisë suaj të email-it. Email-et do të merren nga ', + 'email_settings_comment_1' => 'Disa server-a kërkojne një adresë të plotë email-i', + 'email_settings_comment_2' => 'Fjalëkalimi i llogarise suaj të email-it', + 'email_settings_comment_3' => 'Porta të zakonshme: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Shembull: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Shembuj: pop3, imap', + 'email_settings_comment_6' => 'E aktivizuar apo e pa aktivizuar lidhja e SSL', + 'empty' => '---Bosh---', + 'end_point' => 'Tek', + 'error' => 'Gabim!', + 'example' => 'Shembull', + 'example_country' => 'Shqipëri', + 'external_apps' => 'Aplikacione të jashtme', + 'external_video_link' => 'Link i jashtëm videoje', + 'feed' => 'Lajmet e ditës', + 'feedback' => 'Merrni një reagim', + 'feeds' => 'Lajmet e ditës', + 'feed_has_been' => 'Lajmi ka qënë', + 'feed_items' => 'Artikujt', + 'feed_name' => 'Emri i lajmit', + 'feed_url' => 'URL e lajmit', + 'field_unused' => 'Hapësirë e papërdorur', + 'file' => 'Skedar', + 'file_over_max_allowed' => 'Skedari juaj kalon madhësinë e lejuar.', + 'filters' => 'Filterat', + 'filter_reports' => 'Filterat e Raporteve', + 'filter_reports_by' => 'Filteri i raporteve', + 'filter_reports_contain' => 'Filterat e raporteve që përmbajnë', + 'find' => 'Gjej', + 'find_location' => 'Gjej vendndodhjen', + 'first_name' => 'Emri', + 'force_run_scheduler' => 'Skeduluesi Nxit nisjen', + 'forgot_password' => 'Keni harruar fjalëkalimin tuaj?', + 'form' => 'Formular', + 'forms' => 'Formularë', + 'form_description' => 'Përshkrimi i formularit', + 'form_edit' => 'Modifiko këtë formular', + 'form_has_been' => 'formulari ka qënë', + 'form_title' => 'Titulli i formularit', + 'from' => 'Nga', + 'full_name' => 'Emri i plotë', + 'geolocation_available' => 'Vendndodhje qjeografike e vlefshme', + 'geometry_color' => 'Ngjyrë', + 'geometry_comments' => 'Komente', + 'geometry_label' => 'Etiketë', + 'geometry_strokewidth' => 'Trashësia e vijës', + 'go' => 'Shko', + 'hashtag' => 'fjalë shoqëruar me simbolin # (hashtag)', + 'has_been' => 'Ka qënë', + 'help' => 'Si të ndihmosh', + 'hidden' => 'I fshehur', + 'hide' => 'Fsheh', + 'hide_this_message' => 'Fshih këtë mesazh', + 'home' => 'Kreu', + 'how_to_report' => 'Si të raportosh', + 'identify_you' => 'Përdoret për t`ju identifikuar në faqen e internetit për përdoruesit e tjerë.', + 'image' => 'Imazh', + 'images' => 'Imazhe', + 'image_icon' => 'Imazhe/Ikonë', + 'inactive' => 'Jo aktiv', + 'inbox' => 'Mesazhet e marra', + 'incidents_nearby' => 'Incidente përreth', + 'incident_location' => 'Vendndodhja e incidenteve', + 'include' => 'Përfshi', + 'include_categories' => 'Përfshi kategori', + 'include_custom_fields' => 'Përfshi hapësirën për klientin', + 'include_description' => 'Përfshi një përshkrim', + 'include_detail' => 'Përfshi sa më shumë detaje të jetë e mundur', + 'include_latitude' => 'përfshi gjatësinë', + 'include_location_information' => 'Përfshi vendndodhjen ', + 'include_longitude' => 'Përfshi gjërësinë', + 'incoming_media' => 'Media hyrëse', + 'information_evaluation' => 'Vlerësimi i infomacionit', + 'input_location' => 'Vendosni vendndodhjen tuaj ekzakte', + 'insufficient_role' => 'Llogaria juaj nuk ka lejen e duhur për tu lejuar të keni akses të plotë. Ju lutemi kontaktoni administratorin', + 'in_response_to' => 'Në përgjigje të', + 'ip_address' => 'Adresa e IP', + 'is_this_your_profile' => 'A është ky profili juaj?', + 'item' => 'Artikull', + 'items' => 'Artikuj', + 'item_details' => 'Detajet e artikullit', + 'item_title' => 'Titulli i artikullit', + 'key' => 'elës', + 'kml_kmz_file' => 'Skedari KMZ/KML', + 'kml_kmz_upload' => 'Ngarko skedarin KMZ/KML ', + 'language' => 'Gjuhë', + 'last' => 'E fundit', + 'last_month' => 'Muaji i fundit', + 'last_name' => 'Mbiemri', + 'last_year' => 'Viti i fundit', + 'latitude' => 'Gjatësi', + 'layers' => 'Shtresa', + 'layers_filter' => 'Shtresa të tjera', + 'layer_has_been' => 'Shtresa ka qënë', + 'layer_name' => 'Emri i Shtresës', + 'layer_url' => 'Shtresa URL', + 'leave_a_comment' => 'Lini një koment', + 'less_information' => 'Më pak informacion', + 'level' => 'Nivel', + 'level_has_been' => 'Ky nivel ka qënë', + 'level_name' => 'Emri i nivelit', + 'limited' => 'E kufizuar', + 'list' => 'Listë', + 'loading_reports' => 'Duke ngarkuar raportet', + 'location' => 'Vendndodhje', + 'locations' => 'Vendndodhje', + 'location_example' => 'Qytet, Shtet', + 'login' => 'Hyrje', + 'login_account_creation_successful' => 'Llogaria u krijua në mënyrë të suksesshme. Ju mund të hyni tani.', + 'login_confirmation_sent' => 'Një konfirmim është dërguar në adresën tuaj të email-it.', + 'login_email_doesnt_exist' => 'Adresa e email-it nuk ekziston. Tentoni me një tjetër adresë ose krijoni një llogari të re.', + 'login_select_openid' => 'Ju lutem zgjidhni ofruesin tuaj të llogarisë', + 'login_with' => 'Hyni me', + 'login_userpass' => 'Emai-i dhe fjalëkalimi', + 'login_openid' => 'ID e hapur', + 'login_signup' => 'Rregjistrohu', + 'login_signup_click' => 'Krijoni një llogari', + 'login_signup_confirmation_subject' => 'Konfirmimi i rregjistrimit', + 'login_signup_text' => 'Krijoni tani një llogari për të përfituar më shumë karakteristika të faqes.', + 'longitude' => 'Gjerësi', + 'map' => 'Hartë', + 'mark_read' => 'Shënoje si të lexuar', + 'mark_unread' => 'Shënoje si të palexuar', + 'maximum_filesize' => 'Madhësia maksimale e skedarit', + 'media_filter' => 'Filteri i Media-s', + 'members' => 'Anëtarë', + 'manage_your_account' => 'Menaxhoni llogarinë tuaj', + 'message' => 'Mesazh', + 'messages' => 'Mesazhe', + 'message_details' => 'Detajet e mesazhit', + 'message_non_numeric_source' => 'Mesazh nga një burim jo-numerik:', + 'mobile' => 'Celular', + 'modify' => 'Modifiko', + 'modify_date' => 'Data e modifikimit', + 'month' => 'Muaj', + 'more' => 'Më shumë', + 'more_information' => 'Më shumë Informacion', + 'multi_country_instance' => 'A mund të shtrihet Ushahidi në shumë vende', + 'must_confirm_email_address' => 'Për tu lejuar në këtë vendosje ju duhet të konformoni adresën tuaj të emailit. Nëse ju humbisni email-in e konfirmimit ju mund të kërkoni një tjetër më poshtë.', + 'name' => 'Emër', + 'nearby_report' => 'Raportime të afërta', + 'new' => 'I\\E Re', + 'news' => 'Lajme', + 'news_feeds' => 'Lajmet e fundit', + 'news_source' => 'Burimi i lajmeve', + 'new_category' => 'Kategori e re', + 'new_password' => 'Fjalëkalim i ri', + 'new_report' => 'Raport i ri', + 'next' => 'Tjetri', + 'no' => 'Jo', + 'no_checkins' => 'Asnjë regjistrim për të shfaqur.', + 'no_data' => 'Ska të dhëna', + 'none' => 'Asnjë', + 'notices' => 'Shënime', + 'not_approved' => 'E pa aprovuar', + 'not_approved_singular' => 'E pa aprovuar', + 'not_selected' => '---E pa-zgjedhur---', + 'not_spam' => 'jo spam', + 'not_specified' => 'E paspecifikuar', + 'no_reports' => 'Nuk ka raporte', + 'no_results' => 'Nuk ka rezultate', + 'official_news' => 'Zyrtare ; lajmet kryesore', + 'option' => 'Opsioni', + 'optional' => 'Opsionale', + 'options' => 'Opsionet', + 'organization' => 'Organizata', + 'organizations' => 'Organizatat', + 'organization_description' => 'Përshkrimi i organizatës', + 'organization_email' => 'Email-i i organizatës', + 'organization_has_been' => 'Organizata ka qënë', + 'organization_name' => 'Emri i organizatës', + 'organization_phone_1' => 'Numri i telefonit 1', + 'organization_phone_2' => 'Numri i telefonit 2', + 'organization_website' => 'Website i organizatës', + 'original' => 'Origjinale', + 'original_description' => 'Përshkrimi origjinal', + 'original_title' => 'titulli origjinal', + 'other_ushahidi_instances' => 'Vendosje të tjera', + 'outbox' => 'Mesazhet e dërguara', + 'outgoing' => 'duke u nisur', + 'page' => 'Faqja', + 'pages' => 'Faqet', + 'page_description' => 'Përshkrimi i faqes', + 'page_has_been' => 'Faqja ka qënë', + 'page_tab_name' => 'Emri i faqes lidhëse', + 'page_title' => 'Titulli i faqes', + 'parent_category' => 'Kategoria prind', + 'password' => 'Fjalëkalimi', + 'password_again' => 'Verifikoni fjalëkalimin', + 'password_changed_successfully' => 'Fjalëkalimi u ndryshua me sukses! Identifikohuni më poshtë.', + 'password_forgot' => 'Keni harruar fjalëkalimin?', + 'password_reset_confirm' => 'Kontrolloni email për fjalëkalinin e ri.', + 'password_save' => 'Qëndro i identifikuar në këtë kompjuter?', + 'past_month' => 'Muajin e kaluar', + 'past_year' => 'Vitin e shkuar', + 'pending' => 'Në pritje', + 'per' => 'për', + 'personal_information' => 'Informacion personal Opsional.', + 'phone' => 'Telefoni', + 'photos' => 'Foto', + 'pictures' => 'Pamje', + 'pictures_and_videos' => 'Paje dhe Video', + 'pinpoint_location' => '* Kërkoni për vendndodhjen tuaj duke përdorur nje emër vendndodhjeje ose kordinata të gjerësisë dhe gjatësisë(formati: 38.19, 85.61), ose klikoni në hartë për të shënuar pozicionin e saktë.', + 'play' => 'Fillo', + 'please_note' => 'Ju lutem vini re', + 'public_profile' => 'Profil Publik', + 'public_profile_url' => 'URL e profilit publik', + 'preview' => 'Paraqit', + 'preview_item' => 'Paraqit artikujt', + 'preview_message' => 'Mesazhi i mëparshëm', + 'previous' => 'I mëparshëm', + 'private' => 'Privat', + 'profile_color' => 'Ngjyra e profilit', + 'profile_saved' => 'Profili u ruajt', + 'quick_stats' => 'Të dhëna të shpejta', + 'rating' => 'Renditja', + 'read' => 'Lexo', + 'receive' => 'Merr', + 'receive_from' => 'Marrë nga', + 'receive_notifications' => 'Prano lajmërime', + 'recent_reports' => 'Raportet më të fundit', + 'refresh_news_feeds' => 'Rifresko Lajmet e Ditës', + 'registered_email' => 'Email i regjistruar', + 'remove' => 'Fshi', + 'reply' => 'Përgjigju', + 'report' => 'Raporto', + 'reports_listed' => 'Raportet (nga harta,të listuara në rend kronologjik)', + 'reporter' => 'Raportuesi', + 'reporters' => 'Raportuesit', + 'reporter_date' => 'Data e raportimit', + 'reporter_email' => 'Email-i i raportuesit', + 'reporter_first_name' => 'Emri i raportuesit', + 'reporter_has_been' => 'Raportuesi ka qënë', + 'reporter_ip' => 'Adresa IP e raportuesit', + 'reporter_last_name' => 'Mbiemri i raportuesit', + 'reporter_level' => 'Niveli i raportuesit', + 'reporter_levels' => 'Nivelet e raportuesit', + 'reporter_phone' => 'Telefoni i raportuesit', + 'reports' => 'Raportet', + 'reports_btn_browse' => 'Shfleto', + 'reports_btn_submit' => 'Prano', + 'reports_by_this_user' => 'Raportet nga ky përdorues', + 'reports_categories' => 'Kategoritë', + 'reports_date' => 'Data', + 'reports_description' => 'Përshkrimi', + 'reports_download_csv' => 'Raportet do shkarkohen ne formatin CSV', + 'reports_features' => 'Karakteristika', + 'reports_find_location' => 'Gjeni një vend pranë jush', + 'reports_first' => 'Emri', + 'reports_last' => 'Mbiemri', + 'reports_location_name' => 'Përpuno emrin e vendodhjes', + 'reports_news' => 'Burimi i lidhjes për lajmet', + 'reports_optional' => 'Informacion fakultativ', + 'reports_photos' => 'Ngarko Foto', + 'reports_return' => 'Kthehu tek faqja e raporteve', + 'reports_select_city' => 'Zgjidh një qytet', + 'reports_submitted' => 'Raporti juaj është pranuar nga stafi dhe po shqyrtohet. Do ju kontaktojmë nëse e shikojmë të nevojshme.', + 'reports_submit_new' => 'Shto një raport të ri', + 'reports_time' => 'Koha', + 'reports_timeline' => 'Afati kohor', + 'reports_title' => 'Titulli i raportit', + 'report_an_incident' => 'Raporto një Ngjarje', + 'report_details' => 'Detaje të raportit', + 'report_option_1' => 'Duke dërguar një mesazh tek', + 'report_option_2' => 'Duke dërguar një email', + 'report_option_3' => 'Duke derguar një mesazh tweet', + 'report_option_4' => 'Duke plotësuar këtë formular ne websitin tonë.', + 'report_option_external_apps' => 'Duke përdorur një aplikim', + 'report_saved' => 'Raporti u ruajt', + 'report_title' => 'Titulli i raportit', + 'request_information' => 'Kërko më shumë informacion', + 'request_location' => 'Kërko vendndodhjen', + 'required' => 'I detyrueshëm', + 'requirements' => 'Kërkesat', + 'resend_confirm_email' => 'Ridërgo Email e konfirmimit', + 'reset' => 'Ndrysho', + 'reset_all_filters' => 'Ndrysho filtrat', + 'reset_password' => 'Ndrysho fjalëkalimin', + 'retrieve_city_names' => 'Shfaq emrat e qyteteve për shtetin e zgjedhur', + 'riverid_information' => 'Llogari të menaxhuara nga shërbimi %s.', + 'role' => 'Roli', + 'save' => 'Ruaj', + 'saved' => 'U ruajt', + 'save_add_new' => 'Ruaj & Shto tjetër', + 'save_close' => 'Ruaj & Mbyll', + 'save_report' => 'Ruaj raportin', + 'schedule' => 'Skeduli', + 'scheduler' => 'Skedulues', + 'scheduler_day' => 'Ditë', + 'scheduler_hour' => 'Orë', + 'scheduler_log' => 'Hyrja e Skeduluesit', + 'scheduler_minute' => 'Minuta', + 'scheduler_weekday' => 'Ditë e javës', + 'search' => 'Kërko', + 'search_results' => 'Rezultatet e kërkimit', + 'security_code' => 'Kodi i sigurisë', + 'select_all' => 'Zgjidh të gjitha', + 'select_field_type' => 'Zgjidh llojin e fushës', + 'select_form_type' => 'Zgjidh tipin e formularit', + 'select_in_map' => 'Zgjidh në hartë', + 'select_multiple' => 'Zgjidh aq sa duhet', + 'select_one' => 'Ju lutem verifikoni se keni zgjedhur këtë artikull', + 'select_theme' => 'Zgjidhni temën', + 'send' => 'Dërgo', + 'send_confirmation' => 'Dërgo konfirmimin', + 'sending_to' => 'Dërguar tek', + 'sent' => 'Dërguar', + 'sent_by' => 'Dërguar nëpërmjet', + 'server_address' => 'Adresa e serverit', + 'server_type' => 'Tipi i serverit', + 'service' => 'Shërbimi', + 'service_username' => 'Emri i përdoruesit të serverit', + 'service_user_id' => 'ID e përdoruesit të shërbimit', + 'share' => 'Shpërnda', + 'shared_data' => 'Të dhënat e shpërndara', + 'share_has_been' => 'Shpërndarja u krye', + 'sharing' => 'Duke shpërndare', + 'show' => 'Trego', + 'show_all' => 'Trego të gjitha', + 'show_messages' => 'Trego mesazhet', + 'site' => 'Faqja e web', + 'site_email_address' => 'adresa e email e faqes', + 'site_url' => 'URL e faqes', + 'sorry_no_badges' => 'Na vjen keq, ju nuk keni më simbole.', + 'source' => 'Burimi', + 'source_name' => 'Emri i burimit', + 'source_url' => 'URL e burimit', + 'ssl_support' => 'Shërbimi SSL?', + 'start_point' => 'Nga', + 'step' => 'Hapi', + 'submit' => 'Shto një Raport', + 'submit_sms' => 'Shto nëpërmjet SMS', + 'submit_sms1' => 'Dërgoni SMS tek', + 'submit_sms2' => 'në celularin tuaj', + 'success' => 'Sukses!', + 'successfuly_imported' => 'U mor me sukses', + 'surname' => 'Mbiemri', + 'survey' => 'Vëzhgim', + 'system' => 'Sistem', + 'themes' => 'Tema', + 'theme_default' => 'Tema fillestare Ushahidi', + 'theme_settings' => 'Opsionet e temës', + 'this' => 'Këtë', + 'this_day' => 'Sot', + 'this_month' => 'Këtë muaj', + 'this_week' => 'Këtë javë', + 'this_year' => 'Këtë vit', + 'this_is_your_profile' => 'Ky është profili juaj.', + 'time' => 'Koha', + 'title' => 'Titulli ', + 'to' => 'tek', + 'today' => 'Sot', + 'today_at' => 'Sot në', + 'token' => 'Shenjë', + 'total_reports' => 'Raportet totale', + 'translated' => 'E përkthyer', + 'translated_description' => 'Përkthimi i përshkrimit', + 'translated_title' => 'Titulli i përkthyer', + 'translate_to' => 'Përkthyer në', + 'translation' => 'Përkthimi', + 'translation_saved' => 'Përkthimi u ruajt', + 'type' => 'Tipi', + 'unable_send_email' => 'Nuk u bë e mundur dërgimi i email.', + 'uncategorized_reports' => 'Raporte të pa kategorizuara', + 'unread' => 'i palexuar', + 'unverified' => 'I pa verifikuar', + 'update_feeds' => 'lajme të përditësuara', + 'upload' => 'Të përditësuara', + 'upload_file' => 'Skedar për tu përditësuar', + 'upload_reports' => 'Ngarko Raporte', + 'upload_reports_detail_1' => 'Me formularin e mëposhtme, ju mund të importoni të dhëna nga Ushahidi.', + 'upload_reports_detail_4' => 'Duhet të përmbajë të paktën titullin dhe datën e Incidentit.', + 'upload_reports_detail_4b' => 'Nëse kolonat e gjatësisë dhe gjerësisë nuk ofrohen, lokacioni do kodohet duke përdorur Google Geocoder.', + 'upload_reports_detail_5' => 'Shembull i raportit CSV ', + 'upload_reports_detail_6' => '#,TITULLI I INCIDENTIT,DATA,LOKACIONI,PëRSHKRIMI,KATEGORIA,U APROVUA,U VERIFIKUA,GJATëSIA,GJëRëSIA
"1","Dyshohet për vdekje në Nairobi","2009-05-15 01:06:00","Nairobi","Tre raste janë konfirmuar në Tiranë","VDEKJE, QYTETARë, ",PO,PO,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Grabitje","2009-03-18 10:10:00","Vorë","Grabitje kudo","trazira, vdekje, humbje të pronës, ",PO,JO,"5.55","-0.2166667"', + 'upload_successful' => 'Ngarkimi u krye me sukses', + 'upload_video' => 'Ngarko Video', + 'user' => 'Përdoruesi', + 'username' => 'Emri i përdoruesit', + 'ushahidi_admin' => 'Admin Ushahidi', + 'verification' => 'Verifikim', + 'verified' => 'I verifikuar', + 'verified_reports' => 'Raporte të verifikuara', + 'verify' => 'Verifiko', + 'verify_this_report' => 'Verifiko këtë raport', + 'version' => 'Versioni', + 'via' => 'nëpërmjet', + 'view' => 'Paraqitja', + 'views' => 'Shimiket', + 'view_all' => 'Shiko të gjitha', + 'view_all_feeds' => 'Shiko të gjithë lajmet e fundit', + 'view_all_reports' => 'Shiko të gjithë raportet', + 'view_items' => 'Shiko artikujt', + 'view_more' => 'Shiko më shumë', + 'view_public_profile' => 'Shiko profilin publik', + 'view_report' => 'Shiko raportin', + 'view_reports' => 'Shiko raportet', + 'visible' => 'E dukshme', + 'waiting_approval' => 'Në pritje të aprovimit', + 'waiting_verification' => 'Në pritje të verifikimit', + 'web_form' => 'Forumi në rrjet', + 'weight' => 'Pesha', + 'yes' => 'Po', + 'yesterday' => 'Dje', + 'your_dashboard' => 'Paneli juaj', + 'your_file' => 'Skedari', + 'zoom_in' => 'Afro', + 'zoom_out' => 'Largo', +); diff --git a/application/i18n/sq_AL/upgrade.php b/application/i18n/sq_AL/upgrade.php new file mode 100644 index 0000000000..b4dd037532 --- /dev/null +++ b/application/i18n/sq_AL/upgrade.php @@ -0,0 +1,41 @@ + array( + 'between' => 'Të dhënat e futura janë të pa vlefshme. Vlera mund të jetë 0 për Jo ose 1 për Po.', + ) , + 'upgrade_automatic' => 'Përmirësimi automatik', + 'upgrade_available' => 'Përditësim i disponueshëm', + 'upgrade_continue_btn_text' => 'Vazhdo', + 'upgrade_db_btn_text' => 'Përmirëso versionin', + 'upgrade_db_text_1' => 'Do të bëhet përmirësimi i bazës së të dhënave tuaja nga versioni', + 'upgrade_db_text_2' => 'Në versionin më të ri të bazës së të dhënave', + 'upgrade_db_text_3' => 'Klikoni në butonin "Përmirëso" për të realizuar proesin e përmirsimit.', + 'upgrade_db_text_4' => 'Nëse doni të ruajmë një kopje të bazës suaj të të dhënave klikoni në butonin e mëposhtëm.', + 'upgrade_db_text_5' => 'Zgjidhni nëse dëshironi të ruajmë një kopje të bazës së të dhënave përpara se të kryhet përmirësimi? (Rekomandohet)', + 'upgrade_db_title' => 'Baza e të dhënave Ushahidi u përmirësua', + 'upgrade_failed' => 'Përmirësimi nuk përfundoi me sukses', + 'upgrade_manual' => 'Përmirësimi manual', + 'upgrade_status' => 'Versioni Ushahidi është në përmirësim', + 'upgrade_text_1' => 'Udhëzimet e mëposhtme tregojnë si të përmirësoni versionin e Ushahidi', + 'upgrade_text_2' => '
Shkarko
', + 'upgrade_text_3' => '
- Shkarko Ushahid-in më të fundit të ndërtuar nga', + 'upgrade_text_4' => '
Kopjo të dhënat
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Nëse dika nuk shkon si duhet, rekomandohet të bëni një kopje të plotë të të dhënave Ushahid.
Kopjo skedaret
- Ekstrakto skedarin e shkarkuar në formatin zip
- Duke u bazuar në sistemin operues që përdorni në web serverin tuaj, zgjidhni opsionin/mënyrën që preferoni (p.sh. Telnet, FTP, SSH) për tu identifikuar në webserver dhe zëvëndësoni të gjithë përmbajtjen e dosjeve me informacionin më të ri nga ndërtimi.
Përmirëso bazën e të dhënave
- Si fillim përcaktoni versionin e skemës së databazës duke shikuar vlerën db_version në tabelën e opsioneve ose shikoni tek informacioni i përmirësimit Ushahidi ne fillim të faqes.
- Nëse jeni duke përdorur versionin 25, ju duhet të përmirësoni versionin nga 25-26, 26-27, 27-28 e kështu me radhë deri në skedarin SQL më të fundit ne direktorinë tuaj /sql
- Me klinetin e databazës suaj, përmirësoni bazën e të dhënave duke zgjedhur skedarin e duhur sql.
', + 'upgrade_tables' => 'Hapi 3: Shikoni brenda dosjes sql. Nisni përmirësimin në mënyrë manuale në skedarin -.duke filluar nga versioni aktual i instalimit db drejt skedarit përfundimtar sql të përmirësimit.', + 'upgrade_text_5' => 'Step 4: Klikoni në butonin "Vazhdo" për të përmirësuar tabelat e nevojshme.', + 'upgrade_text_6' => 'Për përmirësimin automatik, klikoni në butonin e mëposhtëm.', + 'upgrading' => 'Në përmirësim', + 'upgrade_ftp_text' => 'Për të vazhduar me përmirësimin e thjeshtë, kërkohet informacioni i mëposhtëm për serverin FTP që mundësohet(hostet)nga faqja juaj.', + 'upgrade_ftp_hostname' => 'emri i Host FTP: Example: "localhost"', + 'upgrade_ftp_password' => 'Fjalëkalimi FTP:', + 'upgrade_ftp_username' => 'Emri i përdoruesit FTP:', + 'upgrade_status_info' => 'Ju keni marrë versionin më të fundit të Ushahidi.', + 'upgrade_db_version' => 'Versioni i bazës së të dhënave: ', + 'upgrade_warning_software_version' => 'Kujdes: Versioni i programit në version.php dhe në bazën e të dhënave nuk përputhen.', + 'upgrade_warning_db_version' => 'Kujdes: Versioni i programit në version.php dhe në bazën e të dhënave nuk përputhen.', + 'upgrade_database' => 'Baza e të dhënave:', +); diff --git a/application/i18n/sr/alerts.php b/application/i18n/sr/alerts.php new file mode 100644 index 0000000000..aba3e922e4 --- /dev/null +++ b/application/i18n/sr/alerts.php @@ -0,0 +1,7 @@ + 'O Nama ', + 'alerts' => 'Dobij upozorenja', + 'alerts_btn_send' => 'Spasi moje upozorenje', + 'alerts_email' => 'Email adresu:', + 'alerts_enter_email' => 'Unesi email adresu', + 'alerts_place_spot' => 'Ili, mjesto na mapi ispod, i bit ćeš obavješten/a u vidu izvještaja koji pokriva područje unutar 20 km.', + 'alerts_place_spot2' => 'Ako nisi našao/la traženu lokaciju, molimo da klikneš na mapu i obilježiš ispravnu lokaciju.', + 'alerts_rss' => 'RSS (kopiraj url ispod)', + 'alerts_step1_select_city' => 'Korak 1: Obilježi tvoj grad ili lokaciju:', + 'alerts_step2_send_alerts' => 'Korak 2: Pošalji upozorenje na moju:', + 'alerts_step3_select_catgories' => 'Korak 3 (Proizvoljno): Obilježi kategorije ', + 'alert_confirm_previous' => 'Potvrdi prethodni zahtjev za upozorenje', + 'all' => 'Sve kategorije', + 'all_categories' => 'Sve kategorije', + 'category' => 'Kategorija', + 'category_filter' => 'Kategorija filtera', + 'clear' => 'Obriši', + 'clear_map' => 'Očisti mapu', + 'contact' => 'Kontaktiraj nas', + 'contact_email' => 'Tvoja email adresa', + 'contact_name' => 'Tvoje ime', + 'contact_phone' => 'Tvoj broj telefona (nije obavezno)', + 'contact_send' => 'Pošalji poruku', + 'contact_subject' => 'Naslov poruke', + 'date' => 'Datum', + 'date_time' => 'Datum i vrijeme', + 'delete_last' => 'Izbriši zadnje', + 'delete_selected' => 'Izbriši odabrano', + 'description' => 'Opis', + 'detailed_location_example' => 'npr. Obala Maka Dizdara 32, Sarajevo', + 'feedback' => 'Povratne informacije', + 'filters' => 'Filteri', + 'find_location' => 'Pronađi lokaciju', + 'first_name' => 'Ime', + 'from' => 'Od', + 'hide' => 'Sakrij', + 'home' => 'Naslovna', + 'how_to_report' => 'Kako prijaviti', + 'last_name' => 'Prezime', + 'location' => 'Lokacija', + 'location_example' => 'Grad, Država', + 'map' => 'Mapa', + 'media' => 'Medij', + 'message' => 'Poruka', + 'modify_date' => 'Promjeni datum', + 'news' => 'Novosti', + 'next' => 'Slijedeće', + 'official_news' => 'Zvanične i ostale novosti', + 'optional' => 'Dodatne', + 'pictures' => 'Slike', + 'pinpoint_location' => '* Pretražite vašu lokaciju koristeći naziv lokacije i podatke o geografskoj dužini i širini (u formatu: 38.19,-85.61), ili idite na mapu i odaberite tačnu lokaciju.', + 'play' => 'Pusti', + 'previous' => 'Prethodno', + 'remove' => 'remove', + 'reports' => 'Izvještaji', + 'reports_btn_browse' => 'Pretraži', + 'reports_btn_submit' => 'Pošalji', + 'reports_date' => 'Datum', + 'reports_first' => 'Ime', + 'reports_last' => 'Prezime', + 'reports_location_name' => 'Dajte detaljniju lokaciju', + 'reports_news' => 'Link izvora vijesti', + 'reports_optional' => 'Dodatne Informacije', + 'reports_photos' => 'Postavi fotografije', + 'reports_submit_new' => 'Novi Izvještaj', + 'reports_time' => 'Vrijeme', + 'reports_title' => 'Naslov izvještaja', + 'report_option_2' => 'Pošalji email na ', + 'report_option_4' => 'Ispuni ovaj formular.', + 'reset_all_filters' => 'Isključi sve filtere', + 'security_code' => 'Sigurnosni kod', + 'show' => 'Prikaži', + 'source' => 'Izvor', + 'submit' => 'Izvijestite', + 'time' => 'time', + 'title' => 'TITLE ', + 'to' => 'do', + 'today' => 'Danas', + 'today_at' => 'Danas u', + 'type' => 'Tip', + 'verification' => 'Verifikacija', + 'view_more' => 'Prikaži više', +); diff --git a/application/i18n/sr/upgrade.php b/application/i18n/sr/upgrade.php new file mode 100644 index 0000000000..aba3e922e4 --- /dev/null +++ b/application/i18n/sr/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'У поље за адресу изгледа да нисте унели исправну Е-адресу?', + ) , +); diff --git a/application/i18n/sr_RS/auth.php b/application/i18n/sr_RS/auth.php new file mode 100644 index 0000000000..ad8f59a64f --- /dev/null +++ b/application/i18n/sr_RS/auth.php @@ -0,0 +1,7 @@ + array( + 'email' => 'E-postfältet innehåller inte en giltig e-postadress', + 'email_check' => 'Denna e-postadress har redan registrerats för att få händelser för platsen', + 'length' => 'E-postadressen måste innehålla mellan 4 och 64 tecken.', + 'required' => 'E-postfältet måste fyllas i om kryssrutan är markerad.', + ) , + 'alert_country' => array( + 'single_country' => 'Denna karta är begränsad till endast ett land. Var god och se till att platsen för händelsen befinner sig i landet %s.', + ) , + 'alert_lat' => array( + 'between' => 'Du har inte valt en giltig plats på kartan.', + 'required' => 'Du har inte valt en giltig plats på kartan.', + ) , + 'alert_lon' => array( + 'between' => 'Du har inte valt en giltig plats på kartan.', + 'required' => 'Du har inte valt en giltig plats på kartan.', + ) , + 'alert_mobile' => array( + 'length' => 'Mobiltelefonsfältet innehåller inte rätt antal siffror.', + 'mobile_check' => 'Mobilnumret har redan registrerats för att få händelser för platsen', + 'numeric' => 'Mobiltelefonsfältet innehåller inte ett giltigt nummer. Ange bara siffror, inklusive landskod.', + 'one_required' => 'Du måste ange antingen ditt mobilnummer eller din e-postadress.', + 'required' => 'Mobiltelefonsfältet måste fyllas i om kryssrutan är markerad.', + ) , + 'alert_radius' => array( + 'in_array' => 'Du har inte valt en giltig radie på kartan.', + 'required' => 'Du har inte valt din radie på kartan.', + ) , + 'alert_recipient' => array( + 'required' => 'Händelser saknar mottagare.', + ) , + 'alerts_subscribed' => 'Du prenumererar på händelser i följande kategorier', + 'code_already_verified' => 'Denna kod har använts tidigare!', + 'code_not_found' => 'Denna verifieringskod hittades inte! Kontrollera att du har rätt URL.', + 'code_verified' => ' Din kod verifierades som den skulle. Du kommer nu att få ett meddelande om händelser när det händer något.', + 'confirm_request' => 'För att bekräfta din utskicksbegäran, gå till ', + 'create_more_alerts' => 'Återvänd till utskickssidan och skapa fler utskick', + 'email_alert_request_created' => 'Din begäran om utskick av händelser till din e-postadress, har skapats och ett verifieringsmeddelande har skickats ut till ', + 'email_code' => 'Ange bekräftelsekoden, du fått via e-post, nedan: ', + 'email_error_head' => 'Din begäran om e-postutskick har INTE sparats!', + 'email_ok_head' => 'Din begäran om e-postutskick har sparats!', + 'error' => 'Systemet kunde inte slutföra din bekräftelse!', + 'mobile_alert_request_created' => 'Din begäran om utskick av händelser till din mobiltelefon, har skapats och ett verifieringsmeddelande har skickats ut till ', + 'mobile_code' => 'Ange bekräftelsekoden, du fått via SMS, nedan: ', + 'mobile_error_head' => 'Din begäran om mobilutskick har INTE sparats!', + 'mobile_ok_head' => 'Din begäran om mobilutskick har sparats!', + 'settings_error' => 'Denna instans är inte uppsatt rätt för att hantera utskick', + 'unsubscribe' => 'Du har fått detta e-postmeddelande då du prenumererar på utskick. Om du inte vill ha detta i framtiden, gå till ', + 'unsubscribed' => 'Du kommer inte att få fler utskick från ', + 'unsubscribe_failed' => 'Vi kunde inte ta bort din prenumeration. Kontrollera att du har rätt URL.', + 'verification_email_subject' => 'utskick - verifiering', + 'verify_code' => 'Du får inget utskick för denna plats förrän du har bekräftat din begäran.', +); diff --git a/application/i18n/sv_SE/auth.php b/application/i18n/sv_SE/auth.php new file mode 100755 index 0000000000..e3c4e72ad7 --- /dev/null +++ b/application/i18n/sv_SE/auth.php @@ -0,0 +1,50 @@ + array( + 'email' => 'E-postfältet innehåller inte en giltig e-postadress?', + 'exists' => 'Det finns redan ett användarnamn för denna e-postadress.', + 'length' => 'E-postfältet måste vara mellan 4 och 64 tecken.', + 'required' => 'E-postfältet måste fyllas i.', + ) , + 'name' => array( + 'length' => 'Det fullständiga namnet måste vara mellan 3 och 100 tecken.', + 'required' => 'Fullständigt namn måste anges.', + 'standard_text' => 'Användarnamnet innehåller ogiltiga tecken.', + ) , + 'current_password' => array( + 'length' => 'L&oring;senordet måste bestå av minst 8 tecken.', + 'matches' => 'Skriv samma l&oring;senord i de två l&oring;senordsfälten.', + 'required' => 'L&oring;senordsfältet är obiligatoriskt.', + ) , + 'password' => array( + 'length' => 'Lösenordet måste vara mellan 5 och 16 tecken.', + 'login error' => 'Kontrollera att du angav rätt lösenord.', + 'matches' => 'Ange samma lösenord i båda lösenordsfälten.', + 'required' => 'Lösenord måste anges.', + ) , + 'password_confirm' => array( + 'matches' => 'Bekräftelsefältet för lösenordet måste vara samma som lösenordsfältet.', + ) , + 'resetemail' => array( + 'email' => 'E-postfältet innehåller inte en giltig e-postadress?', + 'invalid' => 'Vi hittar inte din e-postadress', + 'required' => 'E-postfältet måste fyllas i.', + ) , + 'roles' => array( + 'required' => 'Du måste definiera minst en användarprofil.', + 'values' => 'Du måste välja antingen ADMIN eller USER profilen.', + ) , + 'username' => array( + 'admin' => 'Användarprofilen för admin kan inte ändras.', + 'exists' => 'Användarnamnet finns redan.', + 'length' => 'Användarnamnet måste vara mellan 2 och 16 tecken.', + 'login error' => 'Kontrollera att du angav rätt användarnamn.', + 'required' => 'Användarnamn måste anges.', + 'superadmin' => 'Användarprofilen för superadmin kan inte ändras.', + ) , +); diff --git a/application/i18n/sv_SE/bug.php b/application/i18n/sv_SE/bug.php new file mode 100755 index 0000000000..a23c18935d --- /dev/null +++ b/application/i18n/sv_SE/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Var god ange en giltig säkerhetskod.', + 'required' => 'Var god ange säkerhetskoden.', + ) , + 'email' => array( + 'email' => 'E-postfältet verkar inte innehålla en giltig adress?', + 'length' => 'E-postfältet måste vara mellan 4 och 64 tecken långt.', + 'required' => 'E-postfältet kräver att kryssrutan är intryckt.', + ) , + 'error' => array( + 'required' => 'Fältet för fel erfordras.', + ) , + 'subject' => array( + 'length' => 'Ämnesfältet måste minst vara 3 tecken långt.', + 'required' => 'Ämnesfältet erfordras.', + ) , + 'yourname' => array( + 'length' => 'Namnfältet måste minst vara 3 tecken långt.', + 'required' => 'Namnfältet erfordras.', + ) , +); diff --git a/application/i18n/sv_SE/category.php b/application/i18n/sv_SE/category.php new file mode 100755 index 0000000000..43fc87aaa0 --- /dev/null +++ b/application/i18n/sv_SE/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Färgfältet måste vara 6 tecken.', + 'required' => 'Färgfältet måste fyllas i.', + ) , + 'category_description' => array( + 'required' => 'Beskrivningsfältet måste fyllas i.', + ) , + 'category_image' => array( + 'size' => 'Kontrollera att den uppladdade filen inte är större än 50KB.', + 'type' => 'Bildfältet innehåller inte en giltig bild. Godkända format är .JPG, .PNG och .GIF.', + 'valid' => 'Bildfältet innehåller inte en giltig fil', + ) , + 'category_title' => array( + 'length' => 'Rubrikfältet måste vara mellan 3 och 80 tecken.', + 'required' => 'Rubrikfältet måste anges.', + ) , + 'parent_id' => array( + 'already_parent' => 'Du kan inte kategorisera en kategori med underkategorier.', + 'exists' => 'Den överliggande kategorin finns inte.', + 'numeric' => 'Fältet för överliggande kategori måste vara numeriskt.', + 'parent_trusted' => 'Moderkategorin kan inte vara en specialkategori', + 'required' => 'Fältet för överliggande kategori måste fyllas i.', + 'same' => 'Nuvarande, och överliggande, kategori kan inte vara samma.', + 'special' => 'Specialkategorier kan inte vara underkategorier.', + ) , +); diff --git a/application/i18n/sv_SE/comments.php b/application/i18n/sv_SE/comments.php new file mode 100755 index 0000000000..9861f520ac --- /dev/null +++ b/application/i18n/sv_SE/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Ange en giltig säkerhetskod', + 'required' => 'Ange säkerhetskoden', + 'valid' => 'Du angav en felaktig säkerhetskod.', + ) , + 'comment_author' => array( + 'length' => 'Namnfältet måste vara minst 3 tecken.', + 'required' => 'Namnfältet måste fyllas i.', + ) , + 'comment_description' => array( + 'required' => 'Kommentarsfältet måste fyllas i.', + ) , + 'comment_email' => array( + 'email' => 'E-postfältet verkar inte innehålla en giltig e-postadress?', + 'length' => 'E-postadressen måste vara mellan 4 och 64 tecken.', + 'required' => 'E-postfältet måste fyllas i om kryssrutan är markerad.', + ) , +); diff --git a/application/i18n/sv_SE/contact.php b/application/i18n/sv_SE/contact.php new file mode 100755 index 0000000000..cc7a1fe9bd --- /dev/null +++ b/application/i18n/sv_SE/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Ange en giltig säkerhetskod', + 'valid' => 'Var god ange en giltig säkerhetskod.', + 'required' => 'Ange säkerhetskoden', + ) , + 'contact_email' => array( + 'email' => 'E-postfältet verkar inte innehålla en giltig e-postadress?', + 'length' => 'E-postfältet måste vara mellan 4 och 64 tecken.', + 'required' => 'E-postfältet måste fyllas i om kryssrutan är markerad.', + ) , + 'contact_message' => array( + 'required' => 'Meddelandefältet måste fyllas i.', + ) , + 'contact_name' => array( + 'length' => 'Namnfältet måste vara minst 3 tecken.', + 'required' => 'Namnfältet måste fyllas i.', + ) , + 'contact_subject' => array( + 'length' => 'Rubrikfältet måste vara minst 3 tecken.', + 'required' => 'Rubrikfältet måste fyllas i.', + ) , + 'email_send' => array( + 'failed' => 'Ett fel uppstod när ditt meddelande skickades.', + ) , +); diff --git a/application/i18n/sv_SE/core.php b/application/i18n/sv_SE/core.php new file mode 100755 index 0000000000..d857d41625 --- /dev/null +++ b/application/i18n/sv_SE/core.php @@ -0,0 +1,35 @@ + 'konfigurationsfil', + 'controller' => 'kontrollant', + 'driver' => 'drivrutin', + 'driver_implements' => 'Drivrutinen %s för biblioteket %s måste läggas till i gränssnittet %s', + 'driver_not_found' => 'Drivrutinen %s för biblioteket %s kunde inte hittas', + 'errors_disabled' => 'Du kan gå till startsidan eller försöka igen.', + 'error_file_line' => '%s [%s]:
', + 'generic_error' => 'Kunde inte utföra förfrågan', + 'helper' => 'hjälpare', + 'invalid_filetype' => 'Den efterfrågade filtypen, .%s, accepteras inte i din konfigurationsfil', + 'invalid_method' => 'Ogiltig metod %s anropas i %s', + 'invalid_property' => 'Egenskapen %s finns inte i klassen %s.', + 'library' => 'bibliotek', + 'log_dir_unwritable' => 'Loggbiblioteket är inte skrivbart: %s', + 'model' => 'modell', + 'no_controller' => 'Ushahidi kunde inte bestämma en kontrollant för att köra denna förfrågan: %s', + 'no_default_route' => 'Ange standardrutten i config/routes.php', + 'page_not_found' => 'Sidan du efterfrågade, %s, kunde inte hittas.', + 'report_bug' => 'Rapportera detta problem till Ushahidi', + 'resource_not_found' => 'Den efterfrågade %s, %s, kunde inte hittas', + 'stack_trace' => 'Stackspår', + 'stats_footer' => 'Laddades på {execution_time} sekunder, använde {memory_usage} av minnet. Skapad av Ushahidi v%s.', + 'text_direction' => 'uppgiftsregister', + 'there_can_be_only_one' => 'Det kan bara vara en instans av Ushahidi per sidförfrågan', + 'uncaught_exception' => 'Fel %s: %s i fil %s på rad %s', + 'view' => 'vy', + 'view_set_filename' => 'Du måste först ange filnamet för visning', +); diff --git a/application/i18n/sv_SE/database.php b/application/i18n/sv_SE/database.php new file mode 100755 index 0000000000..e88a69cde0 --- /dev/null +++ b/application/i18n/sv_SE/database.php @@ -0,0 +1,10 @@ + 'Databasfel: %s', + 'table_not_found' => 'Tabellen "%s" kan inte hittas i databasen. Kontrollera att du använder senaste databasversionen för denna version av Ushahidi', +); diff --git a/application/i18n/sv_SE/datetime.php b/application/i18n/sv_SE/datetime.php new file mode 100755 index 0000000000..b0287d0670 --- /dev/null +++ b/application/i18n/sv_SE/datetime.php @@ -0,0 +1,86 @@ + 'f.m.', + 'friday' => array( + 'abbv' => 'Fre', + 'full' => 'Fredag', + ) , + 'monday' => array( + 'abbv' => 'Mån', + 'full' => 'Måndag', + ) , + 'pm' => 'e.m.', + 'saturday' => array( + 'abbv' => 'Lör', + 'full' => 'Lördag', + ) , + 'sunday' => array( + 'abbv' => 'Sön', + 'full' => 'Söndag', + ) , + 'thursday' => array( + 'abbv' => 'Tor', + 'full' => 'Torsdag', + ) , + 'tuesday' => array( + 'abbv' => 'Tis', + 'full' => 'Tisdag', + ) , + 'wednesday' => array( + 'abbv' => 'Ons', + 'full' => 'Onsdag', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Januari', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februari', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Mars', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'April', + ) , + 'may' => array( + 'abbv' => 'Maj', + 'full' => 'Maj', + ) , + 'june' => array( + 'abbv' => 'Jun', + 'full' => 'Juni', + ) , + 'july' => array( + 'abbv' => 'Jul', + 'full' => 'Juli', + ) , + 'august' => array( + 'abbv' => 'Aug', + 'full' => 'Augusti', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'September', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Oktober', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'November', + ) , + 'december' => array( + 'abbv' => 'Dec', + 'full' => 'December', + ) , +); diff --git a/application/i18n/sv_SE/feeds.php b/application/i18n/sv_SE/feeds.php new file mode 100755 index 0000000000..73093a9d62 --- /dev/null +++ b/application/i18n/sv_SE/feeds.php @@ -0,0 +1,19 @@ + 'DATUM', + 'feed_name' => array( + 'length' => 'Flödesnamnet måste vara mellan 3 och 70 tecken.', + 'required' => 'Ange namnet på flödet.', + ) , + 'feed_url' => array( + 'required' => 'Ange flödets URL.', + 'url' => 'Ange en giltig URL. Eg. http://www.ushahidi.com', + ) , + 'source' => 'KÄLLA', + 'title' => 'RUBRIK', +); diff --git a/application/i18n/sv_SE/footer.php b/application/i18n/sv_SE/footer.php new file mode 100755 index 0000000000..18a094c7f7 --- /dev/null +++ b/application/i18n/sv_SE/footer.php @@ -0,0 +1,9 @@ + 'php5-curl är inte installerat', +); diff --git a/application/i18n/sv_SE/form.php b/application/i18n/sv_SE/form.php new file mode 100755 index 0000000000..bc948fcfa2 --- /dev/null +++ b/application/i18n/sv_SE/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Standardvärdet du angav i fältet är ogiltigt.', + 'length' => 'Fältnamnet måste vara mellan 3 och 200 tecken.', + ) , + 'field_height' => array( + 'between' => 'Ange ett värde mellan 0 och 50 för fältets höjd', + ) , + 'field_isdate' => array( + 'between' => 'Du har angett ett ogiltigt värde för datumfältet', + 'required' => 'Välj Ja eller Nej för datumfältet', + ) , + 'field_name' => array( + 'length' => 'Fältnamnet måste vara mellan 3 och 100 tecken.', + 'required' => 'Ange fältnamn.', + 'duplicate' => 'Fältnamnet du angav existerar redan i detta formulär. Var god välj ett annat.', + ) , + 'field_required' => array( + 'between' => 'Du har angett ett felaktigt värde för fältet', + 'required' => 'Välj om fältet måste fyllas i', + ) , + 'field_type' => array( + 'numeric' => 'Välj en giltig fälttyp.', + 'required' => 'Välj en fälttyp.', + ) , + 'field_width' => array( + 'between' => 'Ange ett värde mellan 0 och 300 för fältets bredd', + ) , + 'form_description' => array( + 'required' => 'Formulärets beskrivning.', + ) , + 'form_id' => array( + 'default' => 'Standardformuläret kan inte tas bort.', + 'numeric' => 'Välj vilket i vilket formulär du vill lägga till fältet.', + 'required' => 'Välj vilket i vilket formulär du vill lägga till fältet.', + ) , + 'form_title' => array( + 'length' => 'Formulärnamnet måste vara mellan 3 och 100 tecken.', + 'required' => 'Formulärets namn.', + 'exists' => 'Ett formulär med det namnet existerar redan. Var god välj ett annat.', + ) , +); diff --git a/application/i18n/sv_SE/imap.php b/application/i18n/sv_SE/imap.php new file mode 100755 index 0000000000..e22d52c1f1 --- /dev/null +++ b/application/i18n/sv_SE/imap.php @@ -0,0 +1,10 @@ + 'Kunde inte öppna IMAP strömmen', + 'unsupported_service' => 'E-posttjänsten stöds inte', +); diff --git a/application/i18n/sv_SE/installer.php b/application/i18n/sv_SE/installer.php new file mode 100755 index 0000000000..3639ed7517 --- /dev/null +++ b/application/i18n/sv_SE/installer.php @@ -0,0 +1,84 @@ + 'Rotsökväg för installationen', + 'database' => 'Databas', + 'database_host' => 'Databasserver', + 'database_host_description' => 'Om du kör Ushahidi på din lokala maskin, så är detta troligen "localhost". Om du kör Ushahidi på en webbserver, så får du uppgifterna från din leverantör', + 'database_name' => 'Databasnamn', + 'database_name_description' => 'Namnet på databasen som Ushahidi ska använda', + 'db_information_link' => 'För mer information, kolla denna artikel på wikin som förklarar mer om databasen', + 'default_language' => 'Standardspråk (Locale)', + 'default_language_description' => 'Varje uppsättning av Ushahidi kommer med ett antal inbyggda översättningar. Du kan också lägga till ditt eget språk', + 'disable' => 'Inaktivera', + 'enable' => 'Aktivera', + 'error_summary' => 'Sammanställning av fel som hittades', + 'files_location_text' => 'Katalogen på din server där Ushahidifilerna finns. Vi har hittat katalogen automatiskt, vänligen kolla så att det är rätt. Om fältet är tomt så behöver du inte oroa dig. Det betyder att Ushahidi är installerat i roten på din server', + 'finished' => 'Klar', + 'general' => 'Allmänt', + 'google_key' => 'Google API-Nyckel', + 'google_key_description' => 'Vem som helst kan få en en API-nyckel. Skaffa din egen', + 'go_back' => 'Tillbaka', + 'index' => array( + 'advanced' => 'AVANCERAD INSTALLATION', + 'advanced_installation_description' => 'Gör alla grundläggande inställningar i dessa 5-steg. Detta inkluderar server, karta, sajtnamn och kontaktuppgifter', + 'basic_installation' => 'GRUNDINSTALLATION', + 'basic_installation_description' => 'Snabbt och enkelt. Allt du behöver är din webbplats rotkatalog och databasinformation. Välj detta val om du vill komma igång snabbt, och du kan alltid konfigurera allt senare', + 'proceed' => 'Fortsätt', + 'welcome' => 'Välkommen till Ushahidi server installationen. Välj installationsmetod nedan', + ) , + 'installation_successful' => 'Installationen lyckades', + 'mail_server' => 'Mailserver', + 'mail_server_host' => 'Mailserveradress', + 'mail_server_host_description' => 'T.ex.: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mailserver lösenord', + 'mail_server_password_description' => 'Lösenordet som används för att komma åt din e-post', + 'mail_server_port' => 'Mailserver port', + 'mail_server_port_description' => 'Vanliga portar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Mailserver typ', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) eller Post Office Protocol (POP). Vad är skillnaden?', + 'mail_server_username' => 'Mailserver användarnamn', + 'mail_server_username_description' => 'Om du använder Gmail, Hotmail, eller Yahoo Mail, skriv in din fullständiga e-postadress som användare', + 'map' => 'Karta', + 'map_provider' => 'Kartleverantör', + 'map_provider_description' => 'Ushahidi fungerar lika bra med följande leverantörer: Google, Bing, Yahoo eller Open Street Map. Välj den som fungerar bäst där ni befinner er', + 'other_steps' => 'Övriga steg...', + 'password' => 'Lösenord', + 'password_description' => 'Databaslösenord', + 'previous' => 'Föregående', + 'restart_apache' => 'Vänligen starta om din Apache Server', + 'select_mail_server_ssl' => 'Aktivera eller inaktivera SSL', + 'select_mail_server_ssl_description' => 'Vissa mailservrar har möjligheten att köra SSL vid anslutning. Att använda SSL rekommenderas, då det ger en bättre säkerhet', + 'setup_sms' => 'Konfigurera din SMS server', + 'site_email' => 'Sajtens e-postadress', + 'site_email_alerts' => 'Sajtens e-postadress för notifikationer', + 'site_email_alerts_description' => 'När dina besökare anmäler sig för e-postnotifikationer, kommer de att få e-post från denna adress. Denna adress behöver inte vara samma som sajtens övergripande adress', + 'site_email_description' => 'All övergripande e-post från sajten kommer att använda denna adress', + 'site_name' => 'Sajtnamn', + 'site_name_description' => 'Namnet på sajten', + 'site_tagline' => 'Sajtslogan', + 'site_tagline_description' => 'Sajtens slogan', + 'summary' => array( + 'text_1' => 'Filerna och katalogerna nedan måste ha skrivrättigheter för webbservern', + 'text_2' => '

Här är instruktioner för att ändra filrättigheter:

+ ', + 'text_3' => 'Innan du startar, så måste du se till så att följande filer är skrivbara för webbservern, vilket innebär att ändra filrättigheterna.', + 'text_4' => 'För installationen så behöver du följande uppgifter', + ) , + 'table_prefix' => 'Tabellprefix', + 'table_prefix_description' => 'Normalt sett behöver du inte ändra prefixet, men om du kör flera Ushahidi-installationer i en databas, så kan du behöva ändra detta värde', + 'title' => 'Rubrik', + 'to_login' => 'För att logga in, gå till', + 'upload_data' => 'Ladda upp rapportdata', + 'username' => 'Användarnamn', + 'username_description' => 'Din databasanvändare', + 'use_credentials' => 'och använd följande konto', + 'view_site' => 'Visa sajten', +); diff --git a/application/i18n/sv_SE/layer.php b/application/i18n/sv_SE/layer.php new file mode 100755 index 0000000000..217b08dad8 --- /dev/null +++ b/application/i18n/sv_SE/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Färgfältet måste vara 6 tecken långt.', + 'required' => 'Du måste ange en färg.', + ) , + 'layer_file' => array( + 'type' => 'Filfältet verkar inte innehålla ett giltigt filformat. Giltiga format är .KMZ, .KML.', + 'valid' => 'Filfältet verkar inte innehålla en giltig fil', + ) , + 'layer_name' => array( + 'length' => 'Namnet måste vara mellan 3 och 80 tecken.', + 'required' => 'Namn måste anges.', + ) , + 'layer_url' => array( + 'atleast' => 'Du måste ange antingen en KML Url eller ett filnamn', + 'both' => 'Du kan inte både ha en KML fil och en url', + 'url' => 'Ange en giltig URL. T.ex. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/sv_SE/libraries.php b/application/i18n/sv_SE/libraries.php new file mode 100755 index 0000000000..7bf803d395 --- /dev/null +++ b/application/i18n/sv_SE/libraries.php @@ -0,0 +1,28 @@ + 'Kan inte ansluta till akismet servern', + 'akismet_cannot_retrieve' => 'Får inget svar från Akismet', + 'api_library_not_found' => 'API biblioteket: %s för %s klassen kunde inte hittas. +Var god och kontrollera din API task routing table.', + 'askimet_invalid_apikey' => 'Ogiltig Akismet API nyckel', + 'clickatell_fopen_error' => 'Fel när fopen inskicksmetod kördes!
Kontrollera om PHP stödjer OpenSSL och kontrollera att PHP är minst version 5.2', + 'clickatell_message_too_long' => 'Ditt unicode-meddelande är för långt! (Nuvarande längd=', + 'clickatell_no_destination_address' => 'Ange destinationsadress (TILL)!', + 'clickatell_no_sender_address' => 'Ange uppehållsadress (FRÅN)!', + 'clickatell_unicode_message_too_long' => 'Ditt unicode-meddelande är för långt! (Nuvarande längd=', + 'clickatell_unsupported_method' => 'Inskicksmetod stöds inte!', + 'invalid_api_library' => 'API biblioteket %s är ogiltigt. Alla API bibliotek måste utgöra en subklass till %s.', + 'upgrade_directory_not_deleted' => 'Biblioteket %s kunde inte tas bort', + 'upgrade_extracting_error' => 'Fel vid öppnade: %s', + 'upgrade_failed' => 'Misslyckades vid nedladdning av senaste ushahidiversionen. HTTP status kod', + 'upgrade_file_not_copied' => 'Filen %s kunde inte kopieras', + 'upgrade_file_not_deleted' => 'Filen %s kunde inte tas bort', + 'upgrade_title' => 'Ushahidi upgraderings script', + 'upgrade_zip_error' => 'Den nedladdade ushahidi zip-filen %s, kunde inte skrivas', + 'riverid_variable_not_available' => '%s är inte tillgängligt i RiverID klassen.', +); diff --git a/application/i18n/sv_SE/maintenance.php b/application/i18n/sv_SE/maintenance.php new file mode 100644 index 0000000000..69b32e58db --- /dev/null +++ b/application/i18n/sv_SE/maintenance.php @@ -0,0 +1,9 @@ + 'Tyvärr ligger vår sida nere för underhåll. Prova igen om ett par minuter.', +); diff --git a/application/i18n/sv_SE/message.php b/application/i18n/sv_SE/message.php new file mode 100755 index 0000000000..93b483d3d2 --- /dev/null +++ b/application/i18n/sv_SE/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Skriv in en giltig säkerhetskod', + 'required' => 'Skriv in säkerhetskoden', + ) , + 'email' => array( + 'email' => 'E-postfältet verkar inte vara en giltig e-postadress?', + 'length' => 'E-postfältet måste innehålla mellan 4 och 64 tecken.', + 'required' => 'E-postadress krävs om rutan är ikryssad.', + ) , + 'message' => array( + 'required' => 'Kommentarsfältet måste fyllas i.', + ) , + 'name' => array( + 'length' => 'Namnfältet måste innehålla minst 3 tecken.', + 'required' => 'Namnfältet måste fyllas i.', + ) , + 'phone' => array( + 'length' => 'Telefonnumret är inte giltigt.', + ) , +); diff --git a/application/i18n/sv_SE/mhi.php b/application/i18n/sv_SE/mhi.php new file mode 100755 index 0000000000..c7fba2ea69 --- /dev/null +++ b/application/i18n/sv_SE/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Var god ange en giltig säkerhetskod.', + 'required' => 'Var god ange säkerhetskoden.', + ) , + 'contact_email' => array( + 'email' => 'E-postfältet verkar inte innehålla en giltig adress.', + 'required' => 'Var god ange en giltig e-postadress.', + ) , + 'contact_message' => array( + 'required' => 'Meddelandefältet erfordras.', + ) , + 'contact_subject' => array( + 'length' => 'Ämnesfältet måste minst innehålla 3 tecken.', + 'required' => 'Ämnesfältet erfordras.', + ) , +); diff --git a/application/i18n/sv_SE/notifications.php b/application/i18n/sv_SE/notifications.php new file mode 100755 index 0000000000..749fa000fd --- /dev/null +++ b/application/i18n/sv_SE/notifications.php @@ -0,0 +1,35 @@ + 'Detta meddelande skickades från din hemsida', + 'admin_login_url' => 'Administratör Login', + 'admin_new_comment' => array( + 'message' => 'En ny kommentar har skrivits in till:', + 'subject' => 'Ny kommentar', + ) , + 'admin_new_email' => array( + 'message' => 'Ett nytt e-postmeddelande har skickats in.', + 'subject' => 'Nytt meddelande', + ) , + 'admin_new_report' => array( + 'message' => 'En ny rapport har skickats till din hemsida.', + 'subject' => 'Ny rapport', + ) , + 'admin_new_sms' => array( + 'message' => 'Ett nytt SMS har skickats in.', + 'subject' => 'Nytt SMS', + ) , + 'member_new_alert' => array( + 'message' => 'Du har mottagit en ny Händelse', + 'subject' => 'Ny Händelse!', + ) , + 'member_new_message' => array( + 'message' => 'Du Har Mottagit ett Privat Meddelande', + 'subject' => 'Nytt Privat Meddelande', + 'footer' => 'För att Svara, Var God Besök:', + ) , +); diff --git a/application/i18n/sv_SE/page.php b/application/i18n/sv_SE/page.php new file mode 100644 index 0000000000..68c8bf63f1 --- /dev/null +++ b/application/i18n/sv_SE/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Ange Titel för Sidan', + 'length' => 'Titeln för sidan måste vara mellan 3 och 150 tecken lång.', + ) , + 'page_tab' => array( + 'required' => 'Ange namn för fliken.', + ) , + 'page_description' => array( + 'required' => 'Ange en Beskrivning för Sidan.', + ) , +); diff --git a/application/i18n/sv_SE/permissions.php b/application/i18n/sv_SE/permissions.php new file mode 100644 index 0000000000..ff11fc53b2 --- /dev/null +++ b/application/i18n/sv_SE/permissions.php @@ -0,0 +1,27 @@ + 'Se Rapporter', + 'reports_edit' => 'Skapa/Ändra/Ta bort Rapporter', + 'reports_approve' => 'Godkänn Rapporter', + 'reports_verify' => 'Verifiera Rapporter', + 'reports_comments' => 'Hantera Rapport Kommentarer', + 'reports_download' => 'Ladda ner Rapporter', + 'reports_upload' => 'Ladda upp Rapporter', + 'messages' => 'Hantera Meddelanden', + 'messages_reporters' => 'Hantera Meddela Reportrar', + 'stats' => 'Se Statistik', + 'settings' => 'Ändra Inställningar', + 'manage' => 'Hantera Panel', + 'users' => 'Hantera Användare', + 'manage_roles' => 'Hantera Roller', + 'checkin' => 'Får checka in', + 'checkin_admin' => 'Hantera Incheckningar', + 'admin_ui' => 'Gå till Gränssnitt för Administratör ', + 'member_ui' => 'Gå till Gränssnitt för Användare', + 'delete_all_reports' => 'Ta bort alla rapporter', +); diff --git a/application/i18n/sv_SE/private_message.php b/application/i18n/sv_SE/private_message.php new file mode 100644 index 0000000000..b91aaf0e4a --- /dev/null +++ b/application/i18n/sv_SE/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Parent ID måste vare numerisk', + ) , + 'private_to' => array( + 'required' => 'Till-fälten erfodras', + 'exists' => 'Användaren du försöker skicka meddelandet till, existerar inte', + ) , + 'private_subject' => array( + 'required' => 'Ämnes-fältet erfordras', + 'length' => 'Ämnet måste vara mellan 3 och 150 tecken långt', + ) , + 'private_message' => array( + 'required' => 'Meddelande-fältet erfordras', + ) , +); diff --git a/application/i18n/sv_SE/report.php b/application/i18n/sv_SE/report.php new file mode 100755 index 0000000000..4853ebdff6 --- /dev/null +++ b/application/i18n/sv_SE/report.php @@ -0,0 +1,109 @@ + array( + 'between' => 'Välj en giltig post at inkludera i nedladdningen', + 'numeric' => 'Välj en giltig post at inkludera i nedladdningen', + ) , + 'data_point' => array( + 'between' => 'Välj vilken typ av rapport du vill ladda ner', + 'numeric' => 'Välj vilken typ av rapport du vill ladda ner', + 'required' => 'Välj vilken typ av rapport du vill ladda ner', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Datumfältet FRÅN verkar inte innehålla en giltig datum?', + 'range' => 'Ange en giltig datum i FRÅN-fältet. Den kan inte vara en datum i framtiden.', + ) , + 'incident_active' => array( + 'between' => 'Ange ett giltigt värde för Godkänn denna rapport', + 'required' => 'Ange ett giltigt värde för Godkänn denna rapport', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Fältet för am/pm verkar inte innehålla ett giltigt värde?', + ) , + 'incident_category' => array( + 'numeric' => 'Kategorifältet verkar inte innehålla en giltig kategori?', + 'required' => 'Kategorifältet måste fyllas i.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Datumfältet verkar inte innehålla ett giltigt datum?', + 'date_mmddyyyy' => 'Datumfältet verkar inte innehålla ett giltigt datum?', + 'required' => 'Datumfältet måste fyllas i.', + ) , + 'incident_description' => array( + 'required' => 'Beskrivningsfältet måste fyllas i.', + ) , + 'incident_hour' => array( + 'between' => 'Fältet för timmar verkar inte innehålla ett giltigt värde?', + 'required' => 'Fältet för timmar måste fyllas i.', + ) , + 'incident_information' => array( + 'alpha' => 'Ange ett giltigt värde för Informationssannolikhet', + 'length' => 'Ange ett giltigt värde för Informationssannolikhet', + ) , + 'incident_minute' => array( + 'between' => 'Fältet för minuter verkar inte innehålla ett giltigt värde?', + 'required' => 'Fältet för minuter måste fyllas i.', + ) , + 'incident_news' => array( + 'url' => 'Länkfältet för nyhetskällan verkar inte innehålla en giltig URL?', + ) , + 'incident_photo' => array( + 'size' => 'Kontrollera att storleken på bilderna är max 2MB.', + 'type' => 'Fältet för att ladda upp bilder verkar inte innehålla en giltig bildtyp. De enda accepterade formaten är .JPG, .PNG och .GIF.', + 'valid' => 'Fältet för att ladda upp bilder verkar inte innehålla en giltig fil', + ) , + 'incident_source' => array( + 'alpha' => 'Ange ett giltigt värde för Källtillförlitlighet', + 'length' => 'Ange ett giltigt värde för Källtillförlitlighet', + ) , + 'incident_title' => array( + 'length' => 'Rubrikfältet måste vara mellan 3 och 200 tecken.', + 'required' => 'Rubrikfältet måste fyllas i.', + ) , + 'incident_verified' => array( + 'between' => 'Ange ett giltigt värde för Verifiera denna rapport', + 'required' => 'Ange ett giltigt värde för Verifiera denna rapport', + ) , + 'incident_video' => array( + 'url' => 'Videolänkfältet verkar inte innehålla en giltig URL?', + ) , + 'latitude' => array( + 'between' => 'Latitudfältet verkar inte innehålla ett giltigt värde?', + 'required' => 'Latitudfältet måste fyllas i. Klicka på kartan för att sätta positionen.', + ) , + 'locale' => array( + 'alpha_dash' => 'Platsfältet har ett ogiltigt värde. ', + 'exists' => 'Denna rapport är redan översatt till detta språk', + 'length' => 'Platsfältet har ett ogiltigt värde. ', + 'locale' => 'Originalrapporten och översättningen har samma värde (språk)', + 'required' => 'Platsen måste fyllas i.', + ) , + 'location_name' => array( + 'length' => 'Platsnamnet måste vara mellan 3 och 200 tecken.', + 'required' => 'Platsnamnet måste fyllas i.', + ) , + 'longitude' => array( + 'between' => 'Longitudfältet verkar inte innehålla ett giltigt värde?', + 'required' => 'Longitudfältet måste fyllas i. Klicka på kartan för att sätta positionen.', + ) , + 'person_email' => array( + 'email' => 'E-postfältet verkar inte innehålla en giltig e-postadress?', + 'length' => 'E-postfältet måste innehålla mellan 4 och 64 tecken.', + ) , + 'person_first' => array( + 'length' => 'Förnamnet måste vara mellan 3 och 100 tecken.', + ) , + 'person_last' => array( + 'length' => 'Efternamnet måste vara mellan 3 och 100 tecken.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Datumfältet TILL verkar inte innehålla en giltig datum?', + 'range' => 'Ange en giltig datum i TILL-fältet. Den kan inte vara en datum i framtiden.', + 'range_greater' => 'Datumfältet FRÅN kan inte vara större än TILL-fältet.', + ) , +); diff --git a/application/i18n/sv_SE/reporters.php b/application/i18n/sv_SE/reporters.php new file mode 100755 index 0000000000..077b03d0de --- /dev/null +++ b/application/i18n/sv_SE/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Latitudfältet verkar inte innehålla någon giltig latitud.', + 'required' => 'Latitudfälten erfordras. Var god och tryck på kartan för att lokalisera platsen.', + ) , + 'level_id' => array( + 'numeric' => 'Fältet för reporternivå verkar inte innehålla en giltig nivå.', + 'required' => 'Reporterfältet verkar inte innehålla ett giltigt värde.', + ) , + 'location_name' => array( + 'length' => 'Lokaliseringsfältet måste vara mellan 3 och 200 tecken långt.', + 'required' => 'Fältet för platsens namn erfordras.', + ) , + 'longitude' => array( + 'between' => 'Longitudfältet verkar inte innehålla en giltig longitud.', + 'required' => 'Longitudfältet erfordrar. Var god och tryck på kartan för att lokalisera platsen.', + ) , + 'reporter_id' => array( + 'numeric' => 'Felaktig Reporter', + 'required' => 'Felaktig Reporter', + ) , +); diff --git a/application/i18n/sv_SE/reports.php b/application/i18n/sv_SE/reports.php new file mode 100644 index 0000000000..d469d7671f --- /dev/null +++ b/application/i18n/sv_SE/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Verifiera att du har kryssat in ett element', + 'numeric' => 'Verifiera att du har kryssat in ett element', + 'categories_required' => 'Rapporter måste kategoriseras innan de kan godkännas', + ) , + 'action' => array( + 'permission' => 'Du saknar behörighet att utföra detta', + ) , + 'uploadfile' => array( + 'required' => 'Du måste välja en fil som ska laddas upp', + 'type' => 'Filen som laddas upp måste ha formatet .cvs eller .xml', + 'valid' => 'Filuppladdnings-fälten verkar inte innehålla en giltig fil', + ) , +); diff --git a/application/i18n/sv_SE/roles.php b/application/i18n/sv_SE/roles.php new file mode 100755 index 0000000000..70302f5450 --- /dev/null +++ b/application/i18n/sv_SE/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Beskrivningsfältet måste vare mellan 3 och 100 tecken långt.', + 'required' => 'Beskrivningsfältet måste finnas.', + ) , + 'name' => array( + 'alpha_numeric' => 'Namnfältet får endast bestå av bokstäver och siffror.', + 'length' => 'Namnfältet måste vara mellan 2 och 30 tecken långt.', + 'nomodify' => 'SuperAdmin Rollen Får Inte Modifieras.', + 'required' => 'Namnfält måste finnas.', + ) , + 'access_level' => array( + 'numeric' => 'Åtkomstfältet måste vara en siffra mellan 0 och 100.', + 'required' => 'Åtkomstfältet måste vara en siffra mellan 0 och 100.', + ) , + 'permissions' => array( + 'numeric' => 'Behörighetsfältet måste vara en siffra mellan 0 och 100.', + ) , +); diff --git a/application/i18n/sv_SE/settings.php b/application/i18n/sv_SE/settings.php new file mode 100755 index 0000000000..c948d75ed1 --- /dev/null +++ b/application/i18n/sv_SE/settings.php @@ -0,0 +1,160 @@ + array( + 'between' => 'Fältet för tillåt kommentarer, verkar inte innehålla ett giltigt värde?', + 'required' => 'Fältet "Tillåt kommentarer" måste fyllas i.', + ) , + 'allow_feed' => array( + 'between' => 'Fältet för infoga flöde, verkar inte innehålla ett giltigt värde?', + 'required' => 'Fältet för infoga flöde måste fyllas i.', + ) , + 'allow_reports' => array( + 'between' => 'Fältet för tillåt rapporter, verkar inte innehålla ett giltigt värde?', + 'required' => 'Tillåt rapporter, måste fyllas i.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Fältet för statistikdelning, verkar inte innehålla ett giltigt värde?', + 'required' => 'Fältet för statistikdelning måste fyllas i.', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Akismet fältet innehåller inte ett giltigt värde?', + 'length' => 'Akismet fältet innehåller inte ett giltigt värde?', + ) , + 'clickatell_api' => array( + 'length' => 'Clickatell API nummer får inte innehålla mer än 20 tecken.', + 'required' => 'Clickatell API nummer måste fyllas i.', + ) , + 'clickatell_password' => array( + 'length' => 'Clickatell lösenord ska vara mellan 5 och 50 tecken.', + 'required' => 'Clickatell lösenord måste fyllas i.', + ) , + 'clickatell_username' => array( + 'length' => 'Clickatell användarnamn får inte vara mer än 50 tecken.', + 'required' => 'Clickatell användarnamn måste fyllas i.', + ) , + 'configure_map' => 'Konfigurera karta', + 'default_location' => 'Standardplats', + 'default_map_all' => array( + 'alpha_numeric' => 'Färgfältet verkar inte innehålla ett giltigt värde?', + 'length' => 'Färgfältet får inte innehålla mer än 6 tecken.', + 'required' => 'Färgfältet måste fyllas i.', + ) , + 'default_map_view' => 'Standardvy karta', + 'default_zoom_level' => 'Standard zoom-nivå', + 'download_city_list' => 'Hämta städer från geonamn', + 'email_host' => array( + 'length' => 'Mailserver port-fältet är för långt', + 'numeric' => 'Mailserver port-fältet får bara innehålla siffror.', + ) , + 'email_password' => array( + 'length' => 'Mailserver lösenord ska vara mellan 5 och 50 tecken.', + 'required' => 'Mailserver lösenord, måste fyllas i.', + ) , + 'email_port' => array( + 'length' => 'Mailserver port-fältet är för långt', + 'numeric' => 'Mailserver port-fältet får bara innehålla siffror.', + ) , + 'email_servertype' => array( + 'length' => 'Mailserver typ-fältet är för långt', + 'required' => 'Mailserver typ-fältet måste fyllas i.', + ) , + 'email_username' => array( + 'length' => 'Mailserver användarnamn får inte vara mer än 50 tecken.', + 'required' => 'Mailserver användarnamn, måste fyllas i.', + ) , + 'google_analytics' => array( + 'length' => 'Google Analytics fältet måste innehålla ett giltigt Web Property ID i formatet UA-XXXXX-XX.', + ) , + 'items_per_page' => array( + 'between' => 'Antal poster per sida för läsaren verkar inte innehålla ett giltigt värde?', + 'required' => 'Antal poster per sida för läsaren måste anges.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Antal poster per sida för admin verkar inte innehålla ett giltigt värde?', + 'required' => 'Antal poster per sida för admin måste fyllas i.', + ) , + 'map' => array( + 'default_location' => 'Att sätta upp din kartleverantör är en enkel process. Välj leverantör, hämta en API-nyckel från leverantörens hemsida, och ange API-nyckeln', + 'zoom' => 'Zoom-nivå', + ) , + 'map_provider' => array( + 'choose' => 'Välj kartleverantör', + 'enter_api' => 'Ange din nya API-nyckel', + 'get_api' => 'Skaffa API-nyckel', + 'info' => 'Sätter upp din kartleverantör i några enkla steg. Välj en leverantör, skaffa API-nyckel från leverantörens sajt, och skriv in denna nyckel', + 'name' => 'Kartleverantör', + ) , + 'map_settings' => 'Kartinställningar', + 'multiple_countries' => 'Spänner denna Ushahidiinstans över flera länder', + 'select_default_location' => 'Välj land', + 'set_location' => 'Klicka och dra kartan för att sätta din exakta position', + 'site' => array( + 'allow_clustering' => 'Samla rapporter på karta', + 'allow_comments' => 'Tillåt användare att skicka in kommentarer till rapporter', + 'allow_feed' => 'Infoga RSS-flöden på sajt', + 'allow_reports' => 'Tillåt användare att skicka in rapporter', + 'api_akismet' => 'Akismet-nyckel', + 'default_category_colors' => 'Standardfärg för alla kategorier', + 'display_contact_page' => 'Visa kontaktsidan', + 'display_howtohelp_page' => 'Visa "Hur man hjälper"-sidan', + 'email_alerts' => 'E-postadress larm', + 'email_notice' => 'För att få rapporter via e-post, fyll i dina e-postinställningar.', + 'email_site' => 'Sajtens e-postadress', + 'google_analytics_example' => 'ID För webbplats - Format: UA-XXXXX-XX', + 'items_per_page' => 'Poster per sida - mot läsare', + 'items_per_page_admin' => 'Poster per sida - Admin', + 'kismet_notice' => 'Förhindra kommentarsspam genom att använda Akismet från Automattic.
Du kan få en gratis API-nyckel genom att skapa ett WordPress.com användarkonto', + 'laconica_configuration' => 'Kontouppgifter Laconica', + 'laconica_site' => 'Laconica Ssjt ', + 'language' => 'Sajtens språk', + 'name' => 'Sajtnamn', + 'share_site_stats' => 'Dela sajtens statistik i API', + 'tagline' => 'Sajtslogan', + 'title' => 'Sajtinställningar', + 'twitter_configuration' => 'Kontouppgifter Twitter', + 'twitter_hashtags' => 'Hashtags - Separera med komma ', + ) , + 'site_email' => array( + 'email' => 'Sajtens e-post verkar inte vara en giltig adress?', + 'length' => 'Sajtens e-postfält måste innehålla mellan 4 och 100 tecken.', + ) , + 'site_name' => array( + 'length' => 'Sajtens namn måste vara mellan 3 och 50 tecken.', + 'required' => 'Sajtens namn krävs.', + ) , + 'site_tagline' => array( + 'length' => 'Sloganen måste vara mellan 3 och 100 tecken.', + 'required' => 'Sajtens slogan krävs.', + ) , + 'sms' => array( + 'clickatell_api' => 'Ditt Clickatell API-nummer', + 'clickatell_check_balance' => 'Kontrollera ditt Clickatell konto', + 'clickatell_load_balance' => 'Ladda konto', + 'clickatell_password' => 'Ditt Clickatell lösenord', + 'clickatell_text_1' => 'Anmäl dig till Clickatells tjänst genom att klicka här', + 'clickatell_text_2' => 'Ange åtkomstinformationen till Clickatell nedan', + 'clickatell_username' => 'Ditt Clickatell användarnamn', + 'flsms_text_1' => 'Ange telefonnummer som är anslutna till Frontline SMS i fälten nedan', + 'flsms_text_2' => 'Ange nummer utan + eller bindestreck', + 'option_1' => 'Alternativ 1: Använd Frontline SMS', + 'option_2' => 'Option 2: Använd en global SMS Gateway', + 'title' => 'SMS inställningar', + ) , + 'sms_no1' => array( + 'length' => 'Telefonfältet 1 verkar inte innehålla ett giltigt värde?', + 'numeric' => 'Telefonfältet 1 får bara innehålla siffror.', + ) , + 'sms_no2' => array( + 'length' => 'Telefonfältet 1 är för långt', + 'numeric' => 'Telefonfältet 2 får bara innehålla siffror.', + ) , + 'sms_no3' => array( + 'length' => 'Telefonfältet 3 är för långt', + 'numeric' => 'Telefonfältet 3 får bara innehålla siffror.', + ) , +); diff --git a/application/i18n/sv_SE/sharing.php b/application/i18n/sv_SE/sharing.php new file mode 100755 index 0000000000..c93b7474e1 --- /dev/null +++ b/application/i18n/sv_SE/sharing.php @@ -0,0 +1,25 @@ + 'Datum', + 'date_added' => 'Skapat datum', + 'last_access' => 'Senast efterfrågad', + 'sharing_color' => array( + 'length' => 'Färgfältet måste innehålla 6 tecken.', + 'required' => 'Fältet för färg måste fyllas i.', + ) , + 'sharing_name' => array( + 'length' => 'Namnet för Delning verkar vara ogiltigt.', + 'required' => 'Ett namn för Delning behövs.', + ) , + 'sharing_url' => array( + 'exists' => 'Sajtens url finns redan', + 'length' => 'URL för sidan verkar vara ogiltig.', + 'required' => 'Sajtens URL krävs.', + 'url' => 'Sajtens URL är inte giltig?', + ) , +); diff --git a/application/i18n/sv_SE/stats.php b/application/i18n/sv_SE/stats.php new file mode 100755 index 0000000000..063a7cb915 --- /dev/null +++ b/application/i18n/sv_SE/stats.php @@ -0,0 +1,42 @@ + 'Godkänd', + 'categories' => 'Kategorier', + 'category_impact' => 'Kategoriaktivitet', + 'category_impact_description' => 'Denna graf visar en linjär vy över rapporter per kategori över tid. Bläddra från vänster till höger för att se en jämförande vy för de olika kategorierna. Peka på grafen för mer detaljer', + 'choose_date_range' => 'Välj datumområde', + 'countries' => 'Länder', + 'country' => 'Land', + 'country_breakdown' => 'Nedbrytning av land', + 'description' => 'Detta är statistiksektionen. Allmän information kommer framöver. För tillfället kan du bläddra genom länkarna till underkategorierna ovan', + 'error' => 'Fel', + 'glossary' => 'Ordlista', + 'hit_summary' => 'Sammanfattning träffar', + 'legend' => 'Teckenförklaring', + 'pageviews' => 'Sidvisningar', + 'pageviews_description' => 'Det totala antalet sidor som besökare har tittat på på din sajt', + 'reports' => 'Rapporter', + 'reports_categories' => 'Rapportkategorier', + 'reports_statistics' => 'Rapportstatistik', + 'reports_status' => 'Rapportstatus', + 'report_punchcard' => 'Rapportblad', + 'report_stats' => 'Rapportstatistik', + 'stats_not_setup' => 'Statistik är inte uppsatt', + 'time_range_1' => '1 månad', + 'time_range_2' => '3 månader', + 'time_range_3' => '6 månader', + 'time_range_all' => 'Alla', + 'unapproved' => 'Icke godkända', + 'unique_visitors' => 'Unika besökare', + 'unique_visitors_description' => 'Antalet besökare till din uppsättning; Unika besökare bestäms genom cookies. Om en besökare inte har aktiverat cookies, kommer de att identifieras genom en enkel metod där man tar hänsyn till IP adress, upplösning, webbläsare, plugins, operativsystem, etc', + 'unverified' => 'Ej verifierad', + 'verified' => 'Verifierad', + 'visitor_summary' => 'Sammanställning besökare', + 'visits' => 'Besök', + 'visits_description' => 'Ett besök registreras för en unik besökare som återkommer till sajten efter mer än 30 minuter sedan senaste sidvisningen', +); diff --git a/application/i18n/sv_SE/tooltips.php b/application/i18n/sv_SE/tooltips.php new file mode 100755 index 0000000000..7736752ab3 --- /dev/null +++ b/application/i18n/sv_SE/tooltips.php @@ -0,0 +1,19 @@ + 'Din e-postadress', + 'profile_name' => 'Ditt fullständiga namn', + 'profile_notify' => 'Om du väljer JA, så får du meddelande via e-post om nya händelser eller kommentarer kommer in på sajten', + 'profile_password' => 'Ditt lösenord. Lämna detta fält tomt om du vill behålla ditt nuvarande lösenord', + 'profile_username' => 'Ditt användarnamn kan inte ändras', + 'settings_alert_email' => 'Denna e-postadress används för e-postutskick av händelser.', + 'settings_display_contact' => 'Slår av och på kontakta-formuläret på sajten.', + 'settings_locale' => 'Väljer vilket språk som ska användas på sajten.', + 'settings_site_email' => 'Denna e-postadress får rapporter och meddelande från kontakta-formuläret.', + 'settings_site_name' => 'Detta är namnet på sajten som syns längst upp på sidan.', + 'settings_site_tagline' => 'Förklara med några få ord vad sajten används till.', +); diff --git a/application/i18n/sv_SE/ui_admin.php b/application/i18n/sv_SE/ui_admin.php new file mode 100755 index 0000000000..20b074fc76 --- /dev/null +++ b/application/i18n/sv_SE/ui_admin.php @@ -0,0 +1,330 @@ + 'Nekat tillträde. Antingen är dina inloggningsuppgifter fel, eller så har din begäran nekats', + 'access_denied_others' => 'Nekat tillträde. Din begäran har mottagits, men nekad på grund av tillträdesbegränsningar, t.ex. tid. Försök igen senare', + 'access_level' => 'Åtkomstnivå ', + 'actions' => 'Händelser', + 'add_to_category' => 'Lägg till i Kategori ', + 'added' => 'adderad', + 'added_edited' => 'adderad/redigerad', + 'addons' => 'Tillägg ', + 'admin_role' => 'Administratör', + 'alerts' => 'Underrättelse', + 'alerts_received' => 'Mottagna Underrättelser', + 'all' => 'Alla', + 'am' => 'fm. ', + 'anonymous' => 'Anonym', + 'anyone_role' => 'Vem som helst', + 'anywhere' => 'Var som helst', + 'api_banned' => 'API Bannlyst ', + 'api_logs' => 'API Loggar', + 'api_settings' => 'API Inställningar', + 'api_unban' => 'Ta Bort Bannlysning', + 'api_unban_all' => 'Ta Bort Samtliga Bannlysningar ', + 'approved' => 'godkänd', + 'approve_auto' => 'Gödkänn Automatiskt', + 'approve_manual' => 'Godkänn Manuellt', + 'archived' => 'Arkiverad', + 'are_you_sure_you_want_to' => 'Är du säker på att du vill', + 'are_you_sure_you_want_to_delete_this_item' => 'Är du säker på att du vill ta bort detta? ', + 'are_you_sure_you_want_to_delete_this_photo' => 'Är du säker på att du vill ta bort detta foto?', + 'are_you_sure_you_want_to_switch_forms' => 'Är du säker på att du vill byta formulär?', + 'assign' => 'Tilldela', + 'assignments' => 'Tilldelningar', + 'assign_badge' => 'Tilldela Emblem', + 'author' => 'Författare', + 'author_email' => 'Författare e-post', + 'back' => 'Tillbaka', + 'banip_action' => 'Bannlys IP ', + 'between_times' => 'Under Tiden ', + 'blocks' => 'Block', + 'body' => 'Innehållet ', + 'cancel' => 'Avbryt ', + 'categories' => 'Kategorier', + 'chart_display_error' => 'Fel när diagrammet skulle visas', + 'check_message_valid' => 'Kontrollera att meddelandet är giltigt', + 'check_number' => 'Kontrollera att antalet är giltigt', + 'check_sms_settings' => 'Kontrollera SMS-inställningarna!', + 'checkin_details' => 'Incheckningsdetaljer', + 'checkins' => 'Incheckningar', + 'cities_loaded' => 'Städerna är laddade', + 'code' => 'kod', + 'code_out_of_sync' => 'Kodversionen är inte synakad.', + 'color' => 'Färg', + 'comments' => 'Kommentarer', + 'confirmation_code' => 'Din bekräftelsekod är: ', + 'confirm_msg' => 'Användaren har varit', + 'count' => 'Antal', + 'country_not_found' => 'Landet hittades inte', + 'created_edited' => 'skapad/redigerad', + 'create_report' => 'Skapa rapport', + 'critical_upgrade' => 'Kritisk Upgradering ', + 'csv' => 'CSV', + 'currently_active' => 'För Närvarande Aktiva ', + 'currently_inactive' => 'För Närvarande Inaktiva', + 'custom_forms_insufficient_permissions' => 'Du saknar behörighet för att redigera följande skräddarsydda fält. ', + 'daily' => 'Dagligen', + 'dashboard' => 'Instrumentbräda', + 'database' => 'databas', + 'date_time' => 'Datum & Tid', + 'date_added' => 'Datum Tillagt ', + 'date_modified' => 'Datum Modifierat', + 'days_of_the_week' => 'Veckodagar', + 'db_out_of_sync' => 'DB version är inte i synk.', + 'deleted' => 'borttagen', + 'delete_action' => 'Ta bort', + 'delete_all' => 'Ta bort alla rapporter', + 'delete_badge' => 'Ta Bort Emblem ', + 'demo' => 'Demo', + 'description' => 'Beskrivning', + 'disabled' => 'Inaktiverad', + 'divider_start_field' => 'Start på Delare', + 'divider_end_field' => 'Slut på Delare', + 'divider_class' => 'div klass', + 'download_reports' => 'Ladda ner rapporter', + 'dropdown_choices' => 'Element i Rullgardin', + 'edited' => 'REDIGERAD', + 'edited_by' => 'Redigerad Av', + 'edit_action' => 'Redigera', + 'edit_log' => 'Redigeringslogg ', + 'email' => 'E-post', + 'entire_collective' => 'Hela Kollektivet ', + 'error_geocoding' => 'Fel i geokodning! HTTP fel', + 'error_imap' => 'IMAP PHP Biblioteket är ej installerat ', + 'error_twitter' => 'Ogiltig Behörighet', + 'error_msg' => 'Fel', + 'error_post_incident' => 'Fel, kan inte skicka in händelse', + 'every_six_hours' => 'Var sjätte timme', + 'every_twelve_hours' => 'Var tolfte timme', + 'experimental' => 'Experimentell ', + 'faqs' => 'Frågor och svar', + 'feed' => 'flöde', + 'feedback' => 'Återrapportering', + 'feeds' => 'flöden', + 'field_choices' => 'Lista med Val', + 'field_default' => 'Standardvärde', + 'field_datatype' => 'Datatyp ', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'kodning ', + 'field_datatype_numeric' => 'Numerisk', + 'field_datatype_text' => 'Fri Text', + 'field_height' => 'Höjd (rader)', + 'field_hidden' => 'Gömt Fält ', + 'field_maxlength' => 'Max antal tecken', + 'field_name' => 'Fältnamn', + 'field_toggle' => 'Skifta', + 'field_toggle_no' => 'Nej', + 'field_toggle_yes_close' => 'Ja, Stängd som standard ', + 'field_toggle_yes_open' => 'Ja, Öppen som standard', + 'file_not_found_upload' => 'Kan inte hitta uppladdad fil', + 'file_open_error' => 'Kan inte öppna fil', + 'form_not_exists' => 'Formuläret finns inte!', + 'forum' => 'Forum', + 'free_text_field' => 'Textareafält (Fritext)', + 'date_field' => 'Datumfält ', + 'radio_field' => 'Fält för Envalsknappar', + 'checkbox_field' => 'Fält för Kryssrutor', + 'dropdown_field' => 'Fält för Rullgardin', + 'from' => 'Från', + 'from_date' => 'Från', + 'geonames_timeout' => 'Geonamn Timeout Fel', + 'get_help' => 'Hjälp', + 'get_more_themes' => 'Få fler teman', + 'get_more_plugins' => 'Få fler plugins', + 'header_actions' => 'Aktiviteter', + 'header_add_edit' => 'Lägg till/Redigera', + 'header_email' => 'E-post', + 'header_manage_users' => 'Hantera användare', + 'header_role' => 'Roll', + 'header_user' => 'Användare', + 'help' => 'hjälp', + 'hourly' => 'Varje timme', + 'incident_feed' => 'Händelse-flöde för', + 'installer_info' => 'Installationsmappen existerar fortfarande. Ta bort installationsmappen, då detta potentiellt kan medföra en sårbarhet i säkerheten. ', + 'instance' => 'Instans', + 'instances' => 'Instanser', + 'instance_details' => 'Instansdetaljer', + 'invalid_parameter' => 'Ogiltig parameter', + 'ip_address' => 'IP Adress', + 'is_date' => 'Är detta ett datumfält?', + 'ispublic_visible' => 'Vem Får Se Svaren', + 'ispublic_submit' => 'Vem Får Skicka Svar', + 'keyword' => 'Nyckelord', + 'keywords' => 'Nyckelord', + 'label_email' => 'E-postadress:', + 'label_full_name' => 'Fullständigt namn:', + 'label_password' => 'Lösenord:', + 'label_role' => 'Roll:', + 'label_username' => 'Användarnamn:', + 'layers' => 'Lager', + 'login_role' => 'Moderator ', + 'logout' => 'Logga ut', + 'logs' => 'Loggar', + 'manage' => 'Hantera', + 'manage_roles' => 'Hantera Roller & Behörighet', + 'manage_users' => 'Hantera användare', + 'manage_users_edit' => 'Lägg till/Redigera Användare', + 'manage_public_listing' => 'Hantera Din Publika Lista', + 'mark_as' => 'Markera Som', + 'marked_as_not_spam' => 'inte märkt som spam', + 'marked_as_spam' => 'märkt som spam', + 'match_no_documents' => 'matchade inga dokument', + 'message' => 'Meddelande', + 'messages' => 'Meddelanden', + 'messages_laconica' => 'Laconica Meddelanden', + 'messages_twitter' => 'Twitter Meddelanden ', + 'message_sent' => 'Ditt meddelande har skickats!', + 'mhi' => 'MHI', + 'minute' => 'Minut', + 'minutes' => 'Minuter', + 'missing_parameter' => 'Saknad parameter', + 'moderator' => 'Moderator', + 'modified' => 'modifierad', + 'modify_timezone' => 'Modifiera Inställningar för Tidszon', + 'move_down_action' => 'flytta ner', + 'move_up_action' => 'flytta upp', + 'multiple_hosted_instances' => 'Multiple Hosted Instances (flera värdinstanser)', + 'my_alerts' => 'Mina Underrättelser', + 'my_checkins' => 'Mina Incheckningar', + 'my_profile' => 'Min profil', + 'my_reports' => 'Mina Rapporter', + 'my_votes' => 'Lagda Röster', + 'my_votes_up' => 'Positiv', + 'my_votes_down' => 'Negativ', + 'name' => 'Namn', + 'new_alert' => 'Skapa Ny Underrättelse', + 'new_private' => 'Skapa Nytt Meddelande', + 'new_password' => 'Nytt lösenord', + 'no' => 'Nej', + 'none_category_explanation' => 'Detta är en specialkategori som inte kommer visas på formuläret användare brukar för att skicka in rapporter. Denna används för rapporter som saknar kategori (icke kategoriserade rapporter) som följd av att en kategori raderats. ', + 'notification' => 'Meddelande', + 'not_case_sensitive' => 'Detta är inte skiftlägeskänsligt.', + 'not_found' => 'Hittades inte', + 'no_data' => 'Inga Uppgifter. Det finns inga resultat att visa. ', + 'no_error' => 'Inget fel', + 'no_result_display_msg' => 'Inget resultat att visa!', + 'of' => 'av', + 'on_specific_count' => 'På Särskild Räkning', + 'openids' => 'OpenIDs ', + 'page' => 'sida', + 'pages' => 'sidor', + 'page_not_found' => 'Sidan hittades inte', + 'page_not_found_message_with_contact' => 'Tyvärr hittades inte sidan du försöker nå.

Hittade du hit genom att följa en länk från vår sida?
Om du hittade hit via en länk på vår sida, var god kontakta oss så att felet kan åtgärdas.

+Hittade du hit från en annan sida?
Länkar på andra sidor kan ibland vara gamla eller felstavade Informera oss om var du kom hit ifrån, så kan vi kontakta sidan för att försöka korrigera felet.

strong>Skrev du adressen (URL) själv?
Du kanske har kanske har skrivit in adressen felaktigt? Kolla adressen för att säkerhetsställa att denna är korrekt, stavning, versaler, etc.

', + 'page_not_found_message' => 'Tyvärr, sidan du försöker se finns inte. ', + 'parameters_used' => 'Parametrar som används', + 'password' => 'Lösenord', + 'password_reset' => 'Återställ lösenord', + 'password_reset_message_line_1' => 'Hej', + 'password_reset_message_line_2' => 'Vi har fått en begäran att återställa lösenordet för', + 'password_reset_message_line_3' => 'För att ändra lösenordet, klicka på länken nedan (eller kopiera in den i en webbläsare).', + 'password_reset_message_line_4' => 'Som du begärt, så är ditt lösenord nu återställt. Ditt nya lösenord är', + 'password_reset_subject' => 'Återställning Ushahidi lösenord', + 'phone' => 'Telefon', + 'please_select' => 'Var God Välj', + 'pm' => 'em.', + 'post_method_not_used' => 'Data skickades inte med post-metoden', + 'preview' => 'Förhandsvisning', + 'private_message' => 'Meddelande', + 'private_messages' => 'Privata Meddelanden', + 'private_sent' => 'Privata Meddelandet Skickat', + 'private_subject' => 'Ämne', + 'private_to' => 'Till', + 'public_listing' => 'Publik Lista', + 'qualifiers' => 'Kvalifikationer', + 'read' => 'läs', + 'relevance' => 'Relevans', + 'report_title' => 'Rapporttitel', + 'report_date' => 'Rapporteringsdatum', + 'reporters' => 'Reportrar', + 'reporter_levels' => 'Reporternivå', + 'reports' => 'Rapporter', + 'reputation' => 'Rykte Poäng', + 'required' => 'Krävs', + 'reset' => 'Återställ', + 'response' => 'Svar', + 'results' => 'Resultat', + 'revoke' => 'Upphäv', + 'riverid_exists_admin' => 'Denna email har redan ett konto administrerat av CrowdmapID. Användaren kommer behöva använda sitt existerande Crowdmap lösenord, för att logga in. ', + 'save_settings' => 'Spara Inställningar', + 'search' => 'Sök', + 'search_reports' => 'Sök Rapporter', + 'searching_for' => 'söker efter', + 'security_info_encryption_key' => 'Krypteringsnyckeln är fortfarande satt till standardvärdet. Detta är osäkert och måste ändras. ', + 'security_info_https' => 'Denna sida körs över HTTP. Detta bör ändras till HTTPS för ökad säkerhet. ', + 'security_info_instructions' => 'Instruktioner finns tillgängliga på wikin: ', + 'select_download_format' => 'Välj önskat nedladdningsformat för rapporter:- ', + 'select_field_type' => '--- Välj en fälttyp ---', + 'select_item' => 'Välj en artikel', + 'select_trigger_before_response' => 'Du måste välja en Utlösare innan du kan välja ett Svar.', + 'select_trigger_before_qualifiers' => 'Du måste välja en Utlösare innan du kan definiera Kvalifikationer. ', + 'sender' => 'Avsändare', + 'send_to' => 'Skicka Till', + 'sent_from_website' => 'Detta meddelande skickades från din sajt ', + 'server_time' => 'Servertid', + 'settings' => 'Inställningar', + 'showing_page' => 'Visar sida', + 'showing_results' => 'Visar resultat', + 'shown' => 'Visad', + 'special_category' => 'Speciell Kategori', + 'special_category_explanation' => 'Detta är en specialkategori som användare inte kan välja i formuläret när en rapport skickas. Den används i samband med funktionen ”Anförtrodda Rapporterade”.', + 'specific_area' => 'Specifikt Område', + 'state' => 'Tillstånd', + 'statistics' => 'Statistik', + 'stats' => 'Statistik', + 'stats_collection_error' => 'Statistikinsamling misslyckades! Antingen är ditt stat_id eller stat_key i inställningarna i databasen felaktiga eller så är vår stat server nere. Försök igen senare för att se om servern är uppe. Om du verkligen behöver komma åt data, så kan du alltid ändra stat_id (sätt till null) och stat_key (sätt till 0) i inställningarna i databasen, för att få statistiken upp att köra igen. Tänk på att du då kommer att tappa tillgången till statistiken som finns på servern just nu.', + 'stats_collection_error_short' => 'Statistikinsamling misslyckades!', + 'specific_days' => 'Specifika Dagar', + 'subject' => 'Ämne', + 'superadmin_role' => 'Super Administratör ', + 'task_performed' => 'Uppgift utförd', + 'text_field' => 'Textfält', + 'theme_name' => 'Namn', + 'title' => 'Hantera användare', + 'timeout' => 'Timeout Fel', + 'to' => 'till', + 'total_records' => 'Totalt antal poster', + 'to_date' => 'till', + 'translate_reports' => 'Översätt rapporter', + 'trigger' => 'Utlösare', + 'triggering_user' => 'Användare som Utlöste', + 'triggers' => 'Utlösare', + 'unapproved' => 'icke godkänd', + 'unknown' => 'Okänd', + 'unknown_failure' => 'Okänt Fel', + 'unread' => 'ej läst', + 'unsubscribe_message' => 'Du kommer inte längre mottaga underrättelser från ', + 'update_link' => ' Klicka här för att uppgradera nu', + 'upgrade_ushahidi' => 'Uppgradera Ushahidi', + 'upgrade_ushahidi_status' => 'Status uppgradering Ushahidi', + 'upload_reports' => 'Ladda upp rapporter', + 'user' => 'Användare', + 'users' => 'Användare', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Bekräfta/Obekräfta ', + 'verify_unverify' => 'Bekräfta/Obekräfta', + 'version' => 'Version', + 'version_available' => ' är tillgänglig för uppgradering.', + 'video_encoding' => 'Videokodning', + 'view_private' => 'Privata Meddelanden', + 'view_site' => 'Visa sajten', + 'view_report' => 'Se Rapport', + 'welcome' => 'Wälkommen, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Ja', + 'your_search_for' => 'Din sökning efter', + 'delete_all_instructions' => 'Genom att trycka på knappen nedanför kommer ALLA rapporter i databasen att raderas. Du bör använda denna funktion med försiktighet då den inte kan upphävas.', + 'delete_all_backup' => 'Innan du fortsätter, rekommenderar vi att du säkerhetskopierar din databas', + 'delete_all_button' => 'Jag försäkrar att jag vill ta bort alla %s rapport(er) från databasen. ', + 'delete_all_confirm' => 'Är du säker på att du vill ta bort alla rapporter?', + 'delete_all_no_reports' => 'Det finns inga rapporter att ta bort.', + 'user_no_logins' => 'Antal inloggningar', + 'user_last_login' => 'Senaste login', + 'user_confirmed_account' => 'Bekräftat konto?', +); diff --git a/application/i18n/sv_SE/ui_main.php b/application/i18n/sv_SE/ui_main.php new file mode 100755 index 0000000000..cdcef3f6a1 --- /dev/null +++ b/application/i18n/sv_SE/ui_main.php @@ -0,0 +1,621 @@ + 'Om ', + 'access' => 'Tillgång', + 'access_limits' => 'Tillgångsbegränsningar', + 'account_name' => 'Konto', + 'actions' => 'Händelser', + 'action_confirm' => 'Detta kan inte ångras. Är du säker på att du vill fortsätta?', + 'activate' => 'Aktivera', + 'active' => 'Aktiv', + 'add' => 'Lägg till', + 'added_by' => 'Skapad av', + 'additional_data' => 'Mer information', + 'additional_reports' => 'Ytterligare rapporter', + 'add_edit' => 'Lägg till/Redigera', + 'add_field' => 'Lägg till fält', + 'add_language' => 'Lägg till språk', + 'add_new' => 'Lägg till ny', + 'add_new_category' => 'Lägg till kategori', + 'add_translation' => 'Lägg till översättning', + 'admin' => 'Administration', + 'alerts' => 'Få meddelanden', + 'alerts_alert_me' => 'Gör mig uppmärksam på om en rapport sparats:', + 'alerts_btn_send' => 'Spara mina meddelanden', + 'alerts_email' => 'e-postadress:', + 'alerts_enter_email' => 'ange e-postadress', + 'alerts_enter_mobile' => 'ange mobilnummer med landskod', + 'alerts_get' => 'Hämta meddelanden', + 'alert_has_been' => 'Underrättelse har skickats', + 'alerts_mobile_phone' => 'Mobiltelefon:', + 'alerts_place_spot' => 'Eller, markera en punkt på kartan nedan så kommer vi att meddela dig när något rapporterats inom 20 km från denna punkt.', + 'alerts_place_spot2' => 'Om du inte kan hitta platsen, klicka på kartan och markera rätt plats.', + 'alerts_rss' => 'RSS Feed (kopiera url:en nedan)', + 'alerts_select_city' => 'Välj stad', + 'alerts_step1_select_city' => 'Steg 1: Välj stad eller plats:', + 'alerts_step2_send_alerts' => 'Steg 2: Skicka meddelande till min:', + 'alerts_step3_select_catgories' => 'Steg 3 (Frivilligt): Välj Kategorier', + 'alert_confirm_previous' => 'Bekräfta tidigare begäran', + 'alert_saved' => 'Din händelse har sparats!', + 'all' => 'Att göra', + 'allowed' => 'Tillåten', + 'allowed_tags' => 'Tillåtna HTML taggar: "%s".', + 'allowed_iframes' => 'Iframes är endast tillåtna från: %s.', + 'all_categories' => 'Alla kategorier', + 'all_time' => 'Hela perioden', + 'and' => 'och', + 'api' => 'API', + 'approve' => 'Godkänn', + 'approved' => 'Godkänd', + 'approved_reports' => 'Godkända rapporter', + 'approve_this_report' => 'Godkänn denna rapport', + 'approximate' => 'Ungefär', + 'archive' => 'Arkiv', + 'archived' => 'Arkiverade', + 'ascending' => 'Stigande', + 'at' => 'vid', + 'author' => 'Skribent', + 'auto_checkin' => 'Automatisk Incheckning', + 'avg_reports_per_day' => 'Rapporter Per Dag i Genomsnitt', + 'awaiting_approval' => 'Väntar på godkännande', + 'awaiting_verification' => 'Väntar på verifiering', + 'badge' => 'Emblem', + 'badges' => 'Emblem', + 'badge_image' => 'Emblembild', + 'badge_image_upload_your_own' => 'Eller så kan du istället ladda upp din egna emblembild', + 'badge_pack' => 'Emblempack', + 'badge_select' => 'Välj Emblem', + 'blog' => 'Blogg', + 'browse_profiles' => 'Bläddra Bland Profiler', + 'cancel' => 'Avbryt', + 'categories' => 'Kategorier', + 'category' => 'Kategori', + 'category_filter' => 'Kategorifilter', + 'category_has_been' => 'Kategorin har ', + 'category_name' => 'Kategorinamn', + 'change_date_range' => 'Ändra Datumsintervall', + 'change_password' => 'Ändra Lösenord', + 'change_picture' => 'Ändra Min Bild', + 'choose' => 'Välj en', + 'choose_data_points' => 'Välj data att ladda ner', + 'choose_date_range' => 'Eller välj ett eget datumintervall', + 'choose_field_type' => 'Välj fälttyp', + 'cleanurl' => 'Rena URL:er ', + 'clear' => 'Rensa', + 'clear_map' => 'Rensa kartan', + 'close' => 'Stäng', + 'clusters' => 'samling', + 'color' => 'Färg', + 'comment' => 'Kommentar', + 'comments' => 'Kommentarer', + 'comment_details' => 'Kommentardetaljer', + 'configuration_saved' => 'Dina inställningar har sparats!', + 'configure' => 'Konfigurera', + 'confirm_email_successful' => 'Du har framgångsrikt bekräftat din e-postsadress! Logga in nedanför.', + 'confirm_email_successful_and_approval' => 'Du har framgångsrikt bekräftat din e-postadress! En administratör måste godkänna ditt konto innan du loggar in', + 'confirm_email_failed' => 'E-post bekräftelse misslyckades! Du kan begära en ny e-post bekräftelse nedanför.', + 'contact' => 'Kontakta oss', + 'contact_code' => 'Säkerhetskod', + 'contact_email' => 'Din e-postadress', + 'contact_message' => 'Meddelande', + 'contact_message_has_send' => 'Ditt Meddelande Har Skickats!', + 'contact_name' => 'Ditt namn', + 'contact_phone' => 'Ditt telefonnummer', + 'contact_send' => 'Sänd meddelande', + 'contact_subject' => 'Meddelandets Ämne', + 'copyright' => 'Copyright © 2010 Ushahidi.com. All Rights Reserved.', + 'create' => 'Skapa', + 'create_edit' => 'Skapa/Redigera', + 'create_new' => 'Skapa ny', + 'create_new_password' => 'Skapa Nytt Lösenord', + 'create_report' => 'Skapa rapport', + 'credibility' => 'Trovärdighet', + 'current_password' => 'Nuvarande Lösenord', + 'custom_fields' => 'Anpassade fält', + 'data' => 'Information', + 'date' => 'Datum', + 'date_format' => '(mm/dd/åååå)', + 'date_time' => 'Datum & Tid', + 'day' => 'Dag', + 'deactivate' => 'Inaktivera', + 'default_location_name' => 'Malmö, Sverige', + 'delete' => 'Ta bort', + 'deleted' => 'Borttagen', + 'deletes' => 'Tar bort', + 'delete_disabled' => 'Ta bort inaktiverade', + 'delete_last' => 'Radera senaste ', + 'delete_report' => 'Ta bort denna rapport', + 'delete_selected' => 'Radera vald', + 'delete_spam' => 'Ta bort spam', + 'demo' => 'Demo', + 'description' => 'Beskrivning', + 'descending' => 'Fallande', + 'detailed_location_example' => 'Exempel: Hörnan vid bokhandeln, Hamngatan & Östergatan, Malmö', + 'details' => 'Detaljer', + 'direct_report' => 'Direktrapport', + 'disabled' => 'Inaktiverad', + 'disapprove' => 'Icke godkänd', + 'download_reports' => 'Ladda ner rapporter', + 'download' => 'Ladda ned', + 'edit' => 'Redigera', + 'edit_form_fields' => 'Redigera formulärfält', + 'edit_report' => 'Redigera rapport', + 'email' => 'E-post', + 'email_address' => 'E-postadress', + 'email_configuration' => 'Mailserverinställningar', + 'email_server_host' => 'Mailservervärd', + 'email_server_password' => 'Mailserver lösenord', + 'email_server_port' => 'Mailserverport', + 'email_server_ssl_support' => 'Mailserver SSL-stöd', + 'email_server_type' => 'Mailservertyp', + 'email_server_username' => 'Mailserver användarnamn', + 'email_settings_comment_0' => 'så dina inställningar måste stämma överens med denna adress', + 'email_settings_comment_00' => 'För att få rapporter via e-post, skriv in dina kontouppgifter för e-postadressen nedan. E-post mottages av din', + 'email_settings_comment_1' => 'Några servrar kräver en fullständig e-postadress', + 'email_settings_comment_2' => 'E-postkontots lösenord', + 'email_settings_comment_3' => 'Vanliga portar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Exampel: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Exampel: pop3, imap', + 'email_settings_comment_6' => 'Aktivera eller inaktivera SSL-anslutning', + 'empty' => '---- TOM ----', + 'end_point' => 'till', + 'error' => 'Fel!', + 'example' => 'Exampel', + 'example_country' => 'Sverige', + 'external_apps' => 'Mobilappar', + 'external_video_link' => 'Länk till video (youtube, Vimeo osv)', + 'facebook' => 'Facebook', + 'feed' => 'Flöde', + 'feedback' => 'Ge feedback', + 'feeds' => 'Flöden', + 'feed_has_been' => 'Flödet har ', + 'feed_items' => 'Flödesposter', + 'feed_name' => 'Flödesnamn', + 'feed_url' => 'Flödes-URL', + 'field_unused' => 'Oanvänt fält', + 'file' => 'Fil', + 'file_over_max_allowed' => 'Din fil är för stor', + 'filters' => 'Filter', + 'filter_reports' => 'Filtrera rapporter', + 'filter_reports_by' => 'Filtrera rapporter efter', + 'filter_reports_contain' => 'Filtrera rapporter som innehåller', + 'find' => 'Hitta', + 'find_location' => 'Hitta plats', + 'first_name' => 'Förnamn', + 'force_run_scheduler' => 'Schemaläggare för Tvingade Körningar', + 'forgot_password' => 'Glömt ditt lösenord?', + 'form' => 'Formulär', + 'forms' => 'Formulär', + 'form_description' => 'Formulärbeskrivning', + 'form_edit' => 'Redigera detta formulär', + 'form_has_been' => 'Formuläret har', + 'form_title' => 'Formulärrubrik', + 'from' => 'Från', + 'full_name' => 'Fullständigt namn', + 'geolocation_available' => 'GeoLocation tillgängligt', + 'geometry_color' => 'Färg', + 'geometry_comments' => 'Kommentarer', + 'geometry_label' => 'Etikett', + 'geometry_strokewidth' => 'Penseltjocklek', + 'go' => 'Gå', + 'hashtag' => 'Hashtag', + 'has_been' => 'Har', + 'help' => 'Hur hjälper man', + 'hidden' => 'Gömd', + 'hide' => 'dölj', + 'hide_this_message' => 'dölj meddelande', + 'home' => 'Hem', + 'how_to_report' => 'Hur rapporterar man', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Används för att identifiera dig på sidan för andra användare.', + 'image' => 'Bild', + 'images' => 'Bilder', + 'image_icon' => 'Bild/Ikon', + 'inactive' => 'Inaktiv', + 'inbox' => 'Brevlåda', + 'incident' => 'Incident', + 'incidents_nearby' => 'Rapporter i närheten', + 'incident_location' => 'Plats för rapporten', + 'include' => 'Inkludera', + 'include_categories' => 'Inkludera kategorier', + 'include_custom_fields' => 'Inkludera skräddarsydda fält', + 'include_description' => 'Inkludera beskrivning', + 'include_detail' => 'Inkludera så många detaljer som möjligt', + 'include_latitude' => 'Inkludera latitud', + 'include_location_information' => 'Inkludera information om plats', + 'include_longitude' => 'Inkludera longitud', + 'include_personal_info' => 'Ange personlig information', + 'incoming_media' => 'Inkommande media', + 'information_evaluation' => 'Information utvärdering', + 'input_location' => 'Ange din exakta position', + 'insufficient_role' => 'Ditt konto har inte behörighet för att logga in. Var god kontakta administratören.', + 'in_response_to' => 'Svar till', + 'ip_address' => 'IP Adress', + 'is_this_your_profile' => 'Är detta din profil?', + 'item' => 'post', + 'items' => 'poster', + 'item_details' => 'postdetaljer', + 'item_title' => 'Postrubrik', + 'key' => 'Nyckel', + 'keywords' => 'Nyckelord', + 'kml_kmz_file' => 'KMZ/KML Fil', + 'kml_kmz_upload' => 'Ladda upp KMZ/KML Fil', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Språk', + 'last' => 'Senaste', + 'last_month' => 'Senaste månaden', + 'last_name' => 'Efternamn', + 'last_year' => 'Senaste året', + 'latitude' => 'Latitud', + 'layers' => 'Lager', + 'layers_filter' => 'Andra lager', + 'layer_has_been' => 'Lagret har', + 'layer_name' => 'Lagernamn', + 'layer_url' => 'Lager-URL', + 'leave_a_comment' => 'Skriv en kommentar', + 'less_information' => 'Mindre Information', + 'level' => 'Nivå', + 'level_has_been' => 'Denna nivå har', + 'level_name' => 'Nivånamn', + 'limited' => 'Begränsad', + 'link' => 'Länk', + 'list' => 'Lista', + 'loading_reports' => 'Laddar Rapporter', + 'location' => 'Plats', + 'locations' => 'Platser', + 'location_example' => 'Stad, Stat eller Land', + 'login' => 'Logga in', + 'login_account_creation_successful' => 'Kontot har framgångsrikt skapats. Du kan nu logga in.', + 'login_confirmation_sent' => 'En bekräftelse har skickats till din e-postadress.', + 'login_approval_required' => 'Konton skapat. Ditt konto måste godkännas av en administratör innan du kan logga in.', + 'login_email_doesnt_exist' => 'E-postadressen existerar inte. Prova en annan adress eller skapa ett konto.', + 'login_select_openid' => 'Var god tryck på din kontoleverantör', + 'login_with' => 'Logga in med', + 'login_userpass' => 'E-post och Lösenord', + 'login_openid' => 'OpenID', + 'login_signup' => 'Registrera', + 'login_signup_click' => 'Skapa ett Konto', + 'login_signup_confirmation_message' => 'Tack för att du registrerade dig på %1$s. För att bekräfta din e-postadress, var god och tryck här: %2$s', + 'login_signup_confirmation_subject' => 'Registreringsbekräftelse', + 'login_signup_admin_approval_message' => 'En ny användare registrerade på %1$s. För att godkänna registreringen, tryck här %2$s', + 'login_signup_admin_approval_subject' => 'Godkännande av nya Användare', + 'login_signup_approval_message' => 'Ditt användarkonto på %1$s har godkänts. För att logga in, tryck här %2$s', + 'login_signup_approval_subject' => 'Ditt konto har godkänts', + 'login_signup_text' => 'Skapa ett konto för att ta del utav fler funktioner på sidan.', + 'longitude' => 'Longitud', + 'map' => 'Karta', + 'mark_read' => 'Markera som läst', + 'mark_unread' => 'Markera som oläst', + 'maximum_filesize' => 'Maximal filstorlek', + 'media' => 'Media', + 'media_filter' => 'Mediafilter', + 'members' => 'Medlemmar', + 'manage_your_account' => 'Hantera Ditt Konto', + 'message' => 'Meddelande', + 'messages' => 'Meddelanden', + 'message_details' => 'Meddelandedetaljer', + 'message_non_numeric_source' => 'Meddelande från en icke-numerisk källa:', + 'mobile' => 'Mobil', + 'modify' => 'Modifiera', + 'modify_date' => 'Ändra datum', + 'month' => 'månad', + 'more' => 'Mer', + 'more_information' => 'Mer Information', + 'multi_country_instance' => 'Spänner denna Ushahidi Instans över flera länder', + 'must_confirm_email_address' => 'Du måste bekräfta din e-postadress för att få tillträde. Om ditt bekräftelsemejl har försvunnit, kan du begära ett nytt nedanför. ', + 'name' => 'Namn', + 'nearby_report' => 'Närliggande Rapport', + 'new' => 'Ny', + 'news' => 'Nyheter', + 'news_feeds' => 'Nyhetsflöden', + 'news_source' => 'Nyhetskälla', + 'new_category' => 'Ny kategori', + 'new_password' => 'Nytt lösenord', + 'new_report' => 'Ny rapport', + 'next' => 'NÄsta', + 'no' => 'Nej', + 'no_checkins' => 'Inga incheckningar att visa', + 'no_data' => 'Ingen data', + 'none' => 'Ingen', + 'notices' => 'Meddelanden', + 'not_approved' => 'Inte godkänd', + 'not_approved_singular' => 'Inte godkänd', + 'not_selected' => '---Inget Valt---', + 'not_spam' => 'inte_spam', + 'not_specified' => 'Inte Specificierat', + 'no_reports' => 'Det finns inga rapporter', + 'no_results' => 'Inga resultat', + 'off' => 'Av', + 'official_news' => 'Officiella nyheter', + 'on' => 'På', + 'option' => 'Alternativ', + 'optional' => 'Valfri', + 'options' => 'Alternativ', + 'organization' => 'Organisation', + 'organizations' => 'Organisationer', + 'organization_description' => 'Organisationsbeskrivning', + 'organization_email' => 'Organisation e-post', + 'organization_has_been' => 'Organisation har', + 'organization_name' => 'Organisationnamn', + 'organization_phone_1' => 'Organisation Telefon 1', + 'organization_phone_2' => 'Organisation Telefon 2', + 'organization_website' => 'Organisation Hemsida', + 'original' => 'Original', + 'original_description' => 'Originalbeskrivning', + 'original_title' => 'Originalrubrik', + 'other_ushahidi_instances' => 'ANDRA USHAHIDI INSTANSER', + 'outbox' => 'Utkorg', + 'outgoing' => 'Utgående', + 'page' => 'Sida', + 'pages' => 'Sidor', + 'page_description' => 'Sidbeskrivning', + 'page_has_been' => 'Sidan har', + 'page_tab_name' => 'Sidfliksnamn', + 'page_title' => 'Sidrubrik', + 'parent_category' => 'Överliggande kategori', + 'password' => 'Lösenord', + 'password_again' => 'Skriv lösenordet igen', + 'password_changed_successfully' => 'Lösenordet bytades framgångsrikt! Logga in nedanför.', + 'password_forgot' => 'Glömt ditt lösenord?', + 'password_reset_confirm' => 'Kontrollera din e-post för nytt lösenord.', + 'password_save' => 'Fortsätt vara inloggad på denna dator?', + 'past_month' => 'Senaste månaden', + 'past_year' => 'Senaste året', + 'pending' => 'Avvaktande', + 'per' => 'per', + 'personal_information' => 'Personlig information Frivilligt..', + 'phone' => 'Telefon', + 'photos' => 'Foton', + 'pictures' => 'Bilder', + 'pictures_and_videos' => 'Bilder och videor', + 'pinpoint_location' => '* Sök efter din plats, eller klicka på kartan för att sätta exakt position', + 'play' => 'Spela', + 'please_note' => 'Observera', + 'plugins' => 'Tillägg', + 'plugin_url' => 'Sida med Tillägg', + 'public_profile' => 'Publik Profil', + 'public_profile_url' => 'Publik Profil URL', + 'preview' => 'Förhandsgranska', + 'preview_item' => 'Förhandsgranska post', + 'preview_message' => 'Förhandsgranska meddelande', + 'previous' => 'FÖREGÅENDE', + 'private' => 'Visas ej', + 'profile_color' => 'Profilfärg', + 'profile_saved' => 'Din profil har sparats', + 'quick_stats' => 'Snabbstatistik', + 'rating' => 'Gradering', + 'read' => 'Läs', + 'receive' => 'Ta emot', + 'receive_from' => 'Ta emot från', + 'receive_notifications' => 'Ta emot meddelande', + 'recent_reports' => 'Senaste rapporterna', + 'refresh_news_feeds' => 'Uppdatera nyhetsflöde', + 'registered_email' => 'Registrerad E-postadress', + 'remove' => 'ta bort', + 'reply' => 'Svara', + 'report' => 'Rapportera', + 'reports_listed' => 'Rapporter (från kartan i kronologisk ordning)', + 'reporter' => 'Rapportör', + 'reporters' => 'Rapportörer', + 'reporter_date' => 'Rapportör datum', + 'reporter_email' => 'Rapportör e-post', + 'reporter_first_name' => 'Rapportör förnamn', + 'reporter_has_been' => 'Rapporten har', + 'reporter_ip' => 'Rapportör IP Adress', + 'reporter_last_name' => 'Rapportör efternamn', + 'reporter_level' => 'Reporternivå', + 'reporter_levels' => 'Reporternivåer', + 'reporter_phone' => 'Rapportör telefon', + 'reports' => 'Rapporter', + 'reports_btn_browse' => 'Bläddra', + 'reports_btn_submit' => 'Skicka', + 'reports_by_this_user' => 'Rapporter Från Denna Användare', + 'reports_categories' => 'Kategorisera', + 'reports_count' => '%d Rapporter', + 'reports_date' => 'Datum', + 'reports_description' => 'Beskrivning', + 'reports_download_csv' => 'Rapporter kommer att sparas ner i CSV format', + 'reports_email' => 'E-post', + 'reports_features' => 'Funktioner', + 'reports_find_location' => 'Hitta en plats nära dig', + 'reports_first' => 'Förnamn', + 'reports_last' => 'Efternamn', + 'reports_location_name' => 'Förfina platsnamnet', + 'reports_news' => 'Länk nyhetskälla', + 'reports_optional' => 'Valfri information', + 'reports_photos' => 'Ladda upp bilder', + 'reports_return' => 'Tillbaka till rapportsidan', + 'reports_select_city' => 'Välj stad', + 'reports_submitted' => 'Din rapport har skickats in för granskning. Vi återkommer till dig snarast om det finns behov.', + 'reports_submit_new' => 'Skicka in ny rapport', + 'reports_time' => 'Tid', + 'reports_timeline' => 'Tidslinje', + 'reports_title' => 'Rapportrubrik', + 'reports_video' => 'Videolänk', + 'report_an_incident' => 'Rapportera in en händelse', + 'report_details' => 'Rapportdetaljer', + 'report_option_1' => 'Genom att skicka ett meddelande till', + 'report_option_2' => 'Genom att skicka e-post till ', + 'report_option_3' => 'Genom att skriva in en tweet med hashtaggen/arna', + 'report_option_4' => 'Genom att fylla i detta formulär', + 'report_option_external_apps' => 'Med en app för mobilen ', + 'report_saved' => 'Din rapport har sparats', + 'report_title' => 'Rapportrubrik', + 'request_information' => 'Efterfråga mer information', + 'request_location' => 'Efterfråga plats', + 'required' => 'Nödvändig', + 'requirements' => 'Krav', + 'resend_confirm_email' => 'Skicka om E-post Bekräftelse', + 'reset' => 'Rensa', + 'reset_all_filters' => 'Återställ alla filter', + 'reset_password' => 'Nollställ lösenord', + 'retrieve_city_names' => 'Hämta städer för valt land', + 'riverid_information' => 'Hanterade konton av %s tjänsten.', + 'riverid_exists_login' => 'Du har redan ett konto som hanteras av CrowdmapID! Försök använda din CrowdmapID e-postadress och ditt lösenord för att logga in.', + 'role' => 'Roll', + 'rss' => 'RSS', + 'save' => 'Spara', + 'saved' => 'Sparad', + 'save_add_new' => 'Spara & lägg till ny', + 'save_close' => 'SPARA & STÄNG', + 'save_report' => 'Spara rapport', + 'schedule' => 'Schema', + 'scheduler' => 'Schemaläggare', + 'scheduler_day' => 'Dag', + 'scheduler_hour' => 'Timme', + 'scheduler_log' => 'Schemarläggarlogg', + 'scheduler_minute' => 'Minut', + 'scheduler_weekday' => 'Veckodag', + 'search' => 'SÖK', + 'search_results' => 'Sökresultat', + 'security_code' => 'Säkerhetskod', + 'select_all' => 'Välj alla', + 'select_field_type' => 'Välj fälttyp', + 'select_form_type' => 'Välj formulärtyp', + 'select_in_map' => 'Välj på karta', + 'select_multiple' => 'Välj så många som behövs', + 'select_one' => 'Kontrollera att du valt en post', + 'select_theme' => 'Välj tema', + 'send' => 'Skicka', + 'send_confirmation' => 'Skicka bekräftelse', + 'sending_to' => 'Skickar till', + 'sent' => 'Skickat', + 'sent_by' => 'Skickat av', + 'server_address' => 'Serveradress', + 'server_type' => 'Servertyp', + 'service' => 'Tjänst', + 'service_username' => 'Tjänstens användarnamn', + 'service_user_id' => 'Tjänstens användar-ID', + 'share' => 'Dela', + 'shared_data' => 'Delat data', + 'share_has_been' => 'Delningen har', + 'sharing' => 'Delar', + 'shorter_map' => 'Kortare karta', + 'show' => 'Visa', + 'show_all' => 'Visa alla', + 'show_messages' => 'Visa meddelanden', + 'showing_reports_from' => 'Visar rapporter från %1$s till %2$s', + 'site' => 'Websajt', + 'site_email_address' => 'sajtens e-postadress', + 'site_url' => 'Sajtens URL', + 'smaller_map' => 'Mindre karta', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Tyvärr har du inga emblem.', + 'source' => 'Källa', + 'source_name' => 'Källans namn', + 'sort' => 'Sortera', + 'sort_by' => 'Sortera efter', + 'source_url' => 'Källans URL', + 'spam' => 'Spam', + 'ssl_support' => 'SSL-stöd?', + 'start_point' => 'Från', + 'step' => 'Steg', + 'submit' => 'Skicka in en rapport', + 'submitted_by' => 'Skickat av %1$s via %2$s', + 'submit_sms' => 'Skicka in via SMS', + 'submit_sms1' => 'Skicka ditt SMS till', + 'submit_sms2' => 'på din telefon', + 'success' => 'Det lyckades!', + 'successfuly_imported' => 'Import lyckades', + 'surname' => 'Efternamn', + 'survey' => 'Undersökning', + 'system' => 'System', + 'taller_map' => 'Högre karta', + 'tcp_port' => 'TCP-port', + 'themes' => 'Teman', + 'theme_default' => 'Standard Ushahidi tema', + 'theme_settings' => 'Temainställningar', + 'this' => 'Denna/detta', + 'this_day' => 'Idag', + 'this_month' => 'Denna månad', + 'this_week' => 'Denna vecka', + 'this_year' => 'Detta år', + 'this_is_your_profile' => 'Detta är din profil.', + 'time' => 'tid', + 'title' => 'RUBRIK ', + 'to' => 'till', + 'today' => 'Idag', + 'today_at' => 'Idag klockan', + 'token' => 'Pollett', + 'total_reports' => 'Totalt antal rapporter', + 'translated' => 'Översatt', + 'translated_description' => 'Översatt beskrivning', + 'translated_title' => 'Översatt rubrik', + 'translate_to' => 'Översätt till', + 'translation' => 'Översättning', + 'translation_saved' => 'Översättning har sparats', + 'trusted' => 'Pålitlig', + 'type' => 'Typ', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Det gick inte att skicka e-post.', + 'uncategorized_reports' => 'Okategoriserade rapporter', + 'unread' => 'Oläst', + 'unverified' => 'Obekräftad', + 'update_feeds' => 'Updatera flöden', + 'upload' => 'Ladda upp', + 'upload_guide' => 'Se våra riktlinjer för rapportuppladdning:- ', + 'upload_docs_1' => 'Uppladdningsguide XML', + 'upload_docs_2' => 'Uppladdningsguide CSV', + 'upload_file' => 'Fil att ladda upp', + 'upload_reports' => 'Ladda upp rapporter', + 'upload_reports_custom_forms' => 'Skräddarsydda fältkolumner måste ha deras form_id infogade t.ex. fältet Test, på standard formuläret, vars ID är 1, kommer blir Test-1. Under importering av skräddarsydda fält, se till att', + 'upload_reports_detail_1' => 'Med formuläret nedan, kan du importera händelser till Ushahidimotorn', + 'upload_reports_detail_2' => 'Rapporten måste laddas up i antingen CSV eller XML format.', + 'upload_reports_detail_3' => 'När incident ID redan existerar i databasen kommer noteringen i CSV/XML filen att ignoreras.', + 'upload_reports_detail_4' => 'Den måste innehålla åtminstone händelserubrik och datum', + 'upload_reports_detail_4b' => 'Om ingen position har angetts kommer platsen att geokodas med Google Geocoder', + 'upload_reports_detail_4c' => 'Om ytterligare information ska importeras t.ex personlig information och/eller skräddarsydda formulärfält', + 'upload_reports_detail_4d' => 'Åtminstone ett av fälten för personlig information(namn, efternamn, e-post) MÅSTE existera. Tomma protokoll kommer inte att importeras', + 'upload_reports_detail_4e' => 'Din indata för formulärfälten stämmer överens med de konfigurationsval givna för denna instansen. ', + 'upload_reports_detail_4f' => 'Valen för kryssruta separeras med ett kommatecken t.ex. om dina val för frukter är äpplen,mongon och vindruvor, så ska du skriva "äpplen,mangon,vindruvor" ', + 'upload_reports_detail_4g' => 'Värden för datumfälten har följande format: mm/dd/åååå t.ex. 3:e Oktober 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Ett exempel på CSV Report', + 'upload_reports_detail_6' => '#,HÄNDELSERUBRIK,HÄNDELSEDATUM,PLATS,BESKRIVNING,KATEGORI,GODKÄND,VERIFIERAD
+ "1","Olycka i Lund","2010-11-15 01:06:00","Lund","Bilolycka på E22","SNÖSTORM, OLYCKA, ",YES,YES', + 'upload_reports_detail_7' => '"2","Dödsskjutning","2010-11-16 19:10:00","Malmö","Dödsskjutning i Rosengård","SKOTTLOSSNING, MORD, ",YES,NO', + 'upload_successful' => 'Uppladdning OK', + 'upload_video' => 'Ladda upp video', + 'url' => 'URL', + 'user' => 'Användare', + 'username' => 'Användarnamn', + 'ushahidi_admin' => 'Ushahidi Administratör', + 'verification' => 'Bekräftelse', + 'verified' => 'Verifierad', + 'verified_reports' => 'Verifierade rapporter', + 'verify' => 'Verifiera', + 'verify_this_report' => 'Verifiera denna rapport', + 'version' => 'Version', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Visa', + 'views' => 'visningar', + 'view_all' => 'Visa alla', + 'view_all_feeds' => 'Visa alla flöden', + 'view_all_reports' => 'Visa alla rapporter', + 'view_items' => 'Visa post', + 'view_more' => 'Visa fler', + 'view_public_profile' => 'Se Publik Profil', + 'view_report' => 'Visa rapport', + 'view_reports' => 'Visa rapporter', + 'view_video' => 'Se Video', + 'visible' => 'Synlig', + 'waiting_approval' => 'Väntar på godkännande', + 'waiting_verification' => 'Väntar på verifiering', + 'wider_map' => 'Bredare karta', + 'web_form' => 'Webb Formulär', + 'web' => 'Webb', + 'weight' => 'Vikt', + 'yes' => 'Ja', + 'yesterday' => 'Igår', + 'your_dashboard' => 'Din kontrollpanel', + 'your_file' => 'Din fil', + 'zoom_in' => 'Zooma in', + 'zoom_out' => 'Zooma ut', +); diff --git a/application/i18n/sv_SE/upgrade.php b/application/i18n/sv_SE/upgrade.php new file mode 100755 index 0000000000..e39567ae34 --- /dev/null +++ b/application/i18n/sv_SE/upgrade.php @@ -0,0 +1,15 @@ + 'Uppgraderingen misslyckades', + 'upgrade_text_1' => 'Instruktionerna nedan visar hur du uppgraderar din Ushahidiinstallation manuellt', + 'upgrade_text_2' => 'Steg 1: Ladda ner den senaste versionen av Ushahidi på http://download.ushahidi.com', + 'upgrade_text_3' => 'Steg 2: Beroende på operativsystemet på webbservern, använd det verktyg som du föredrar (t.ex.: telnet, ftp, ssh) för att logga in på webbservern och byt ut allt innehåll i samtliga kataloger med den senaste versionen. Allt UTOM:', + 'upgrade_text_4' => 'Steg 3: Använd en MySql-klient ( t.ex. phpMyAdmin ), och kör upgrade.sql. Scriptet uppdaterar respektive tabell', + 'upgrade_text_5' => 'För automatisk uppgradering, klicka på knappen nedan', + 'upgrading' => 'Uppgraderar', +); diff --git a/application/i18n/sw_KE/alerts.php b/application/i18n/sw_KE/alerts.php new file mode 100755 index 0000000000..1ab9eedc4c --- /dev/null +++ b/application/i18n/sw_KE/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'Sehemu ya anwani ya Barua pepe inaonekana kuwa na anwani isiyosahihi.', + 'email_check' => 'Anwani ya Barua pepe imeshasajilishwa kupokea arifa katika eneo hilo.', + 'length' => 'Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64.', + 'required' => 'Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama.', + ) , + 'alert_country' => array( + 'single_country' => 'Kifurushi hiki hufanya kazi katika nchi moja pekee. Tafadhali hakikisha kuwa eneo la arifa liko ndani ya nchi hii%s.', + ) , + 'alert_lat' => array( + 'between' => 'Hujachagua eneo sahihi kwenye ramani.', + 'required' => 'Hujachagua eneo sahihi kwenye ramani.', + ) , + 'alert_lon' => array( + 'between' => 'Hujachagua eneo sahihi kwenye ramani.', + 'required' => 'Hujachagua eneo sahihi kwenye ramani.', + ) , + 'alert_mobile' => array( + 'length' => 'Sehemu ya Simu ya Rununu inaonekana kuwa na idadi isiyo sahihi ya nambari.', + 'mobile_check' => 'Nambari ya simu ya rununu imeshasajilishwa kupokea arifa katika eneo lenu.', + 'numeric' => 'Sehemu ya Simu ya Rununu inaonekana kuwa na nambari isiyo sahihi. Tafadhali ingiza nambari zinazojumuisha Kificho cha Nchi pekee.', + 'one_required' => 'Ni sharti uingize Nambari yako ya Simu au Anwani ya Barua pepe.', + 'required' => 'Nambari ya Simu ya Rununu inahitajika ikiwa kisanduku cha alama kimetiwa alama.', + ) , + 'alert_radius' => array( + 'in_array' => 'Hujaweka nusukipenyo sahihi kwenye ramani.', + 'required' => 'Hujaweka nusukipenyo sahihi kwenye ramani.', + ) , + 'alert_recipient' => array( + 'required' => 'Haujaweka mpokezi wa arifa.', + ) , + 'alerts_subscribed' => 'Umejisajili kupokea arifa katika kwa vikundi vifuatavyo', + 'code_already_verified' => 'Kificho hiki kimeshathibitishwa!', + 'code_not_found' => 'Kificho hiki cha uthibitisho hakikupatikana! Tafadhali hakikisha umeandika anwani sahihi.', + 'code_verified' => ' Kificho chako kimeshathibitishwa. Sasa utapokea arifa kuhusu matukio kama yanavyotukia.', + 'confirm_request' => 'Ili kuthibitisha ombi la arifa, tafadhali nenda kwa ', + 'create_more_alerts' => 'Rudi katika ukurasa wa Arifa ili kuunda arifa zaidi', + 'email_alert_request_created' => 'Ombi lako la Arifa ya Barua pepe limeundwa na ujumbe wa kuthibitisha umetumwa kwa ', + 'email_code' => 'Tafadhali ingiza kificho cha kuthibitisha anwani yako ya Barua pepe hapa chini: ', + 'email_error_head' => 'Ombi lako la Arifa ya Barua pepe HALIJAHIFADHIWA!', + 'email_ok_head' => 'Ombi lako la Arifa ya Barua pepe Limehifadhiwa!', + 'error' => 'Mfumo haukuweza kuchakacha ombi lako la uthibitisho!', + 'mobile_alert_request_created' => 'Ombi lako la Arifa ya Barua pepe limeundwa na ujumbe wa uthibitisho kutumwa kwa ', + 'mobile_code' => 'Tafadhali ingiza kificho cha uthibitisho wa SMS ulichopokea kwenye simu yako hapa chini: ', + 'mobile_error_head' => 'Ombi lako la Arifa ya Simu HALIJAHIFADHIWA!', + 'mobile_ok_head' => 'Ombi lako la Arifa ya Simu Limehifadhiwa!', + 'settings_error' => 'Kifurushi hiki haujawekwa kuchakacha arifa vyema', + 'unsubscribe' => 'Umepokea barua pepe hii kwa sababu uliejisajili kupokea arifa. Ikiwa hungependa kupokea arifa kama hizi tena, nenda kwa ', + 'unsubscribed' => 'Hutapokea arifa nyingine kutoka kwa ', + 'unsubscribe_failed' => 'Hatukuweza kukuondoa kwenye usajili. Tafadhali hakikisha umeweka anwani sahihi.', + 'verification_email_subject' => 'arifa - uthibitisho', + 'verify_code' => 'Hutapokea arifa nyingine za eneo hili hadi uthibitishe ombi lako.', +); diff --git a/application/i18n/sw_KE/auth.php b/application/i18n/sw_KE/auth.php new file mode 100755 index 0000000000..552ed2da4b --- /dev/null +++ b/application/i18n/sw_KE/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Anwani ya barua pepe uliyoingiza si sahihi.', + 'exists' => 'Samahani, anwani ya barua pepe uliopeana inatumika na akaunti nyingine.', + 'length' => 'Ni sharti sehemu ya barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64.', + 'required' => 'Sehemu ya barua pepe inahitajika.', + ) , + 'name' => array( + 'length' => 'Ni sharti sehemu ya Jina iwe ya urefu wa angalau herufi 3 na isizidi herufi 100.', + 'required' => 'Sehemu ya majina inahitajika.', + 'standard_text' => 'Sehemu ya majina la mtumizi lina herufi zisizokubalika.', + ) , + 'current_password' => array( + 'length' => 'Ni sharti sehemu ya nenosiri iwe na urefu wa angalau herufi 3 na isizidi herufi 8.', + 'login error' => 'Tafadhali hakikisha kuwa umeingiza nenosiri na barua pepe sahihi.', + 'matches' => 'Tafadhali ingiza nenosiri hiyo hiyo kwenye sehemu mbili za nenosiri.', + 'required' => 'Nenosiri linahitajika.', + 'alpha_dash' => 'Ni sharti sehemu ya nenosiri liwe na herufi za kialfabeti, nambari, ishara za #, @, _ na – pekee. ', + 'incorrect' => 'Nenosiri ya akaunti yako uliyoweka sasa si sahihi. Tafadhali jaribu tena.', + ) , + 'new_password' => array( + 'length' => 'Ni sharti sehemu ya nenosiri iwe na urefu wa angalau herufi 3 na isizidi herufi 8.', + 'login error' => 'Tafadhali hakikisha kuwa umeingiza nenosiri na barua pepe sahihi.', + 'matches' => 'Tafadhali ingiza nenosiri hiyo hiyo kwenye sehemu mbili za nenosiri.', + 'required' => 'Sehemu ya nenosiri inahitajika.', + 'alpha_dash' => 'Ni sharti sehemu ya nenosiri iwe na herufi za kialfabeti, nambari, ishara za #, @, _ na – pekee. ', + ) , + 'password' => array( + 'default' => 'Hitilafu imetokea tukijaribu kukuingiza.', + 'length' => 'Ni sharti sehemu ya nenosiri iwe na urefu wa angalau herufi 3 na isizidi herufi 8.', + 'login error' => 'Tafadhali hakikisha kuwa umeingiza nenosiri na barua pepe sahihi.', + 'matches' => 'Tafadhali ingiza nenosiri hiyo hiyo kwenye sehemu mbili za nenosiri.', + 'required' => 'Sehemu ya nenosiri inahitajika.', + 'riverid server down' => 'Seva ya udhibitisho ina hitilafu. Tafadhali jaribu baadaye.', + 'riverid' => '%s', + 'alpha_dash' => 'Ni sharti sehemu ya nenosiri iwe na herufi za kialfabeti, nambari, ishara za #, @, _ na – pekee. ', + ) , + 'password_confirm' => array( + 'matches' => 'Ni sharti sehemu ya kuthibitisha nenosiri iwe sawia na sehemu ya nenosiri.', + ) , + 'resetemail' => array( + 'email' => 'Anwani ya barua pepe uliyoingiza si sahihi.', + 'invalid' => 'Samahani, hatuna anwani yako ya barua pepe', + 'required' => 'Sehemu ya barua pepe inahitajika.', + ) , + 'role' => array( + 'superadmin_modify' => 'Ni msimamizi mkuu pekee anayeweza kumbadilisha msimamizi mkuu au kumpandisha mtumiaji hadi kuwa msimamizi.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Muundo wa jukumu si sahihi', + 'length' => 'Ni sharti sehemu ya jukumu iwe ya urefu wa angalau herufi 5 na isizidi herufi 30.', + 'required' => 'Ni sharti ufasili angalau jukumu moja.', + 'values' => 'Ni sharti uchague jukumu la MSIMAMIZI au MTUMIAJI.', + ) , + 'token' => array( + 'invalid' => ' Kumbusho la nenosiri iliyosahaulika si sahihi', + 'required' => ' Kumbusho la nenosiri iliyosahaulika lilihitajika', + ) , + 'username' => array( + 'admin' => 'Jukumu la msimamizi haliwezi kubadilishwa.', + 'alpha_numeric' => 'Sehemu ya anwani ya wasifu kwa umma inaweza kuwa na nambari na herufi pekee.', + 'exists' => 'Samahani, anwani hii ya wasifu kwa umma tayari inatumika.', + 'length' => 'Ni sharti sehemu ya wasifu kwa umma iwe ya urefu wa angalau herufi 2 na isizidi herufi 100.', + 'login error' => 'Tafadhali hakikisha kuwa umeingiza wasifu kwa umma sahihi.', + 'required' => 'Sehemu ya anwani ya wasifu kwa umma inahitajika.', + 'superadmin' => 'Jukumu la msimamizi mkuu haliwezi kubadilishwa.', + 'csrf' => 'Kuna uwezekano wa mathara ya CSRF. Una uhakika unataka kuunda/kuhariri mtumiaji?', + ) , +); diff --git a/application/i18n/sw_KE/bug.php b/application/i18n/sw_KE/bug.php new file mode 100755 index 0000000000..7185232814 --- /dev/null +++ b/application/i18n/sw_KE/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Tafadhali ingiza kificho cha siri kilicho sahihi', + 'required' => 'Tafadhali kificho cha siri.', + ) , + 'email' => array( + 'email' => 'Sehemu ya anwani ya Barua pepe inaonekana kuwa na anwani isiyo sahihi?', + 'length' => 'Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64.', + 'required' => 'Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama.', + ) , + 'error' => array( + 'required' => 'Sehemu ya hitilafu inahitajika.', + ) , + 'subject' => array( + 'length' => 'Ni sharti sehemu ya nenosiri iwe ya urefu wa herufi 3.', + 'required' => 'Sehemu ya mada inahitajika.', + ) , + 'yourname' => array( + 'length' => 'Ni sharti sehemu ya jina iwe ya urefu wa herufi 3 au zaidi.', + 'required' => 'Sehemu ya jina inahitajika.', + ) , +); diff --git a/application/i18n/sw_KE/category.php b/application/i18n/sw_KE/category.php new file mode 100755 index 0000000000..07a0d03888 --- /dev/null +++ b/application/i18n/sw_KE/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Ni sharti sehemu ya rangi iwe ya urefu wa herufi 6.', + 'required' => 'Sehemu ya rangi inahitajika.', + ) , + 'category_description' => array( + 'required' => 'Sehemu ya maelezo inahitajika.', + ) , + 'category_image' => array( + 'size' => 'Tafadhali hakikisha kuwa ukubwa wa picha za kupakiwa haupiti KB 50.', + 'type' => 'Sehemu ya longitudi inaonekana kuwa na picha isiyo sahihi. Miundo pekee inayokubalika ni .JPG, .PNG na .GIF.', + 'valid' => 'Sehemu ya picha inaonekana kuwa na faili isiyo sahihi.', + ) , + 'category_title' => array( + 'length' => 'Ni sharti sehemu ya kichwa iwe ya urefu wa angalau herufi 3 na isizidi herufi 80.', + 'required' => 'Sehemu ya nenosiri inahitajika.', + ) , + 'parent_id' => array( + 'already_parent' => 'Huwezi kuvunja kikundi katika makundi madogo zaidi', + 'exists' => 'Kikundi kikuu hakipo.', + 'numeric' => 'Ni sharti sehemu ya kikundi kikuu iandikwe kwa nambari.', + 'parent_trusted' => 'Kikundi kikuu hakiwezi kuwa kikundi maalum', + 'required' => 'Sehemu ya kikundi kikuu inahitajika.', + 'same' => 'Kikundi na kikundi kikuu haviwezi kuwa sawia.', + 'special' => 'Vikundi maalum haviwezi kugawanywa katika vikundi vidogo zaidi.', + ) , +); diff --git a/application/i18n/sw_KE/comments.php b/application/i18n/sw_KE/comments.php new file mode 100755 index 0000000000..46615b3901 --- /dev/null +++ b/application/i18n/sw_KE/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Tafadhali ingiza kificho cha siri kilicho sahihi.', + 'required' => 'Tafadhali ingiza kificho cha siri.', + 'valid' => 'Umeingiza kificho cha siri kisicho sahihi', + ) , + 'comment_author' => array( + 'length' => 'Ni sharti sehemu ya jina iwe ya urefu wa angalau herufi 3.', + 'required' => 'Sehemu ya jina inahitajika.', + ) , + 'comment_description' => array( + 'required' => 'Sehemu ya maoni inahitajika.', + ) , + 'comment_email' => array( + 'email' => 'Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyosahihi.', + 'length' => 'Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64.', + 'required' => 'Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama.', + ) , +); diff --git a/application/i18n/sw_KE/contact.php b/application/i18n/sw_KE/contact.php new file mode 100755 index 0000000000..9b90bf7bad --- /dev/null +++ b/application/i18n/sw_KE/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Tafadhali ingiza kificho cha siri kilicho sahihi.', + 'valid' => 'Tafadhali ingiza kificho cha siri kilicho sahihi.', + 'required' => 'Tafadhali ingiza kificho cha siri.', + ) , + 'contact_email' => array( + 'email' => 'Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyosahihi.', + 'length' => 'Ni sharti sehemu ya Barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64.', + 'required' => 'Sehemu ya Barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama.', + ) , + 'contact_message' => array( + 'required' => 'Sehemu ya ujumbe inahitajika.', + ) , + 'contact_name' => array( + 'length' => 'Ni sharti sehemu ya jina iwe ya urefu wa angalau herufi 3.', + 'required' => 'Sehemu ya jina inahitajika.', + ) , + 'contact_subject' => array( + 'length' => 'Ni sharti sehemu ya kichwa iwe ya urefu wa herufi 3.', + 'required' => 'Sehemu ya mada inahitajika.', + ) , + 'email_send' => array( + 'failed' => 'Hitilafu ilitokea wakati wa kutuma ujumbe wako', + ) , +); diff --git a/application/i18n/sw_KE/core.php b/application/i18n/sw_KE/core.php new file mode 100755 index 0000000000..40a34772a6 --- /dev/null +++ b/application/i18n/sw_KE/core.php @@ -0,0 +1,35 @@ + 'faili ya usanidi', + 'controller' => 'kidhibiti', + 'driver' => 'kiendeshaji', + 'driver_implements' => 'Ni sharti %skiendeshaji cha%smaktaba kitekeleze %sguzano ', + 'driver_not_found' => '%sKiendeshaji cha%smaktaba hakikupatikana.', + 'errors_disabled' => 'Unaweza kuenda kwa home page or try again.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Ombi Haliwezi Kukamilishwa', + 'helper' => 'kisaidizi', + 'invalid_filetype' => 'Aina ya faili iliyoitishwa,. %s, haikubaliki katika faili yako ya muundo.', + 'invalid_method' => 'Mbinu isiyokubalika %simetumika%s', + 'invalid_property' => '%sSifa hii haipatikani katika %skundi hili.', + 'library' => 'maktaba', + 'log_dir_unwritable' => 'Saraka ya kuingia haiandikiki:%s', + 'model' => 'kifani', + 'no_controller' => 'Ushahidi haingeweza kutambua kidhibiti cha kuchakacha ombi hili:%s', + 'no_default_route' => 'Tafadhali weka njia difoti katika config/routes.php', + 'page_not_found' => 'Ukurasa uliotafuta,%s, haukupatikana.', + 'report_bug' => 'Tuma Ripoti kwa Ushahidi Kuhusu Hitilafu Hii', + 'resource_not_found' => 'Ukurasa uliotafutwa %s, %s, haukupatikana', + 'stack_trace' => 'Mfuatilio wa Mrundiko', + 'stats_footer' => 'Imepakiwa kwa sekunde {muda wa kutekeleza}, kwa kutumia {kumbukumbu iliyotumika} za kumbukumbu. Imetolewa na Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Ni toleo moja tu la Ushahidi linaloweza kufunguka kwa kila ukurasa uliofunguliwa.', + 'uncaught_exception' => 'Isiyopatikana%s:%s katika faili%skwenye mtandao%s', + 'view' => 'tazama', + 'view_set_filename' => 'Ni sharti utazame jina la faili kabla ya kuwasiliana na mtoaji', +); diff --git a/application/i18n/sw_KE/database.php b/application/i18n/sw_KE/database.php new file mode 100755 index 0000000000..1a8fd3e2b4 --- /dev/null +++ b/application/i18n/sw_KE/database.php @@ -0,0 +1,10 @@ + 'Hitilafu ya databesi%s', + 'table_not_found' => 'Jedwali "%s" halipatikani katika databesi. Tafadhali hakikisha akuwa unatumia toleo jipya zaidi la databesi ya Ushahidi.', +); diff --git a/application/i18n/sw_KE/datetime.php b/application/i18n/sw_KE/datetime.php new file mode 100755 index 0000000000..9a77e2ddc4 --- /dev/null +++ b/application/i18n/sw_KE/datetime.php @@ -0,0 +1,86 @@ + 'asubuhi', + 'friday' => array( + 'abbv' => 'Ijumaa', + 'full' => 'Ijumaa', + ) , + 'monday' => array( + 'abbv' => 'Jumatatu', + 'full' => 'Jumatatu', + ) , + 'pm' => 'jioni', + 'saturday' => array( + 'abbv' => 'Jumamosi', + 'full' => 'Jumamosi', + ) , + 'sunday' => array( + 'abbv' => 'Jumapili', + 'full' => 'Jumapili', + ) , + 'thursday' => array( + 'abbv' => 'Alhamisi', + 'full' => 'Alhamisi', + ) , + 'tuesday' => array( + 'abbv' => 'Jumanne', + 'full' => 'Jumanne', + ) , + 'wednesday' => array( + 'abbv' => 'Jumatano', + 'full' => 'Jumatano', + ) , + 'january' => array( + 'abbv' => 'Jan', + 'full' => 'Januari', + ) , + 'february' => array( + 'abbv' => 'Feb', + 'full' => 'Februari', + ) , + 'march' => array( + 'abbv' => 'Machi', + 'full' => 'Machi', + ) , + 'april' => array( + 'abbv' => 'Apr', + 'full' => 'Aprili', + ) , + 'may' => array( + 'abbv' => 'Mei', + 'full' => 'Mei', + ) , + 'june' => array( + 'abbv' => 'Juni', + 'full' => 'Juni', + ) , + 'july' => array( + 'abbv' => 'Julai', + 'full' => 'Julai', + ) , + 'august' => array( + 'abbv' => 'Agosti', + 'full' => 'Agosti', + ) , + 'september' => array( + 'abbv' => 'Sep', + 'full' => 'Septemba', + ) , + 'october' => array( + 'abbv' => 'Okt', + 'full' => 'Oktoba', + ) , + 'november' => array( + 'abbv' => 'Nov', + 'full' => 'Novemba', + ) , + 'december' => array( + 'abbv' => 'Des', + 'full' => 'Desemba', + ) , +); diff --git a/application/i18n/sw_KE/feeds.php b/application/i18n/sw_KE/feeds.php new file mode 100755 index 0000000000..ccccf451b6 --- /dev/null +++ b/application/i18n/sw_KE/feeds.php @@ -0,0 +1,20 @@ + 'TAREHE', + 'feed_name' => array( + 'length' => 'Ni sharti sehemu ya majina iwe ya urefu wa angalau herufi 3 na isizidi + herufi 70.', + 'required' => 'Tafadhali ingiza jina la tawanyiko.', + ) , + 'feed_url' => array( + 'required' => 'Tafadhali ingiza anwani la tawanyiko.', + 'url' => 'Tafadhali ingiza anwani sahihi. Kwa mfano: http://www.ushahidi.com', + ) , + 'source' => 'CHANZO', + 'title' => 'Kichwa', +); diff --git a/application/i18n/sw_KE/footer.php b/application/i18n/sw_KE/footer.php new file mode 100755 index 0000000000..33175ce804 --- /dev/null +++ b/application/i18n/sw_KE/footer.php @@ -0,0 +1,9 @@ + 'php5-curl haijawekwa katika mfumo huu', +); diff --git a/application/i18n/sw_KE/form.php b/application/i18n/sw_KE/form.php new file mode 100755 index 0000000000..e73dd189c0 --- /dev/null +++ b/application/i18n/sw_KE/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Kadirio la difoti uliyoweka katika sehemu hii haikubaliki.', + 'length' => 'Ni sharti Kichwa cha Ukurasa kiwe cha urefu wa angalau herufi 3 na kisizidi herufi 200.', + ) , + 'field_height' => array( + 'between' => 'Tafadhali ingiza kadirio la kati ya 0 na 50 katika sehemu ya urefu.', + ) , + 'field_isdate' => array( + 'between' => 'Umeingiza kadirio lisilo sahihi katika sehemu ya tarehe.', + 'required' => 'Tafadhali chagua Ndio au La katika Sehemu ya Tarehe.', + ) , + 'field_name' => array( + 'length' => 'Ni sharti Jina la Sehemu liwe la urefu wa angalau herufi 3 na kisizidi herufi 100.', + 'required' => 'Tafadhali ingiza Jina la Sehemu.', + 'duplicate' => 'Jina la sehemu uliloingiza linatumika tayari katika fomu hii. Tafadhali ingiza lingine.', + ) , + 'field_required' => array( + 'between' => 'Umeingiza kadirio lisilo sahihi la Sehemu Inayohitajika.', + 'required' => 'Tafadhali chagua Ndio au La kwa Sehemu Inayohitajika.', + ) , + 'field_type' => array( + 'numeric' => 'Tafadhali chagua Aina ya Sehemu iliyokubalika.', + 'required' => 'Tafadhali chagua Aina ya Sehemu.', + ) , + 'field_width' => array( + 'between' => 'Tafadhali ingiza kadirio la kati ya 0 na 300 katika Sehemu ya Upana.', + ) , + 'form_description' => array( + 'required' => 'Tafadhali ingiza Maelezo ya fomu.', + ) , + 'form_id' => array( + 'default' => 'Fomu ya difoti haiwezi kufutwa.', + 'numeric' => 'Tafadhali chagua fomu utakayoongeza sehemu hii.', + 'required' => 'Tafadhali chagua fomu utakayoongeza sehemu hii.', + ) , + 'form_title' => array( + 'length' => 'Ni sharti sehemu ya jina la fomu iwe ya urefu wa angalau herufi 3 na isizidi herufi 100.', + 'required' => 'Tafadhali ingiza jina la fomu.', + 'exists' => 'Fomu iliyo na kichwa hicho tayari ipo. Tafadhali chagua kingine.', + ) , +); diff --git a/application/i18n/sw_KE/imap.php b/application/i18n/sw_KE/imap.php new file mode 100755 index 0000000000..727ea042c1 --- /dev/null +++ b/application/i18n/sw_KE/imap.php @@ -0,0 +1,10 @@ + 'Mkondo wa IMAP haungefunguka', + 'unsupported_service' => 'Huduma ya barua pepe haijaegemezwa', +); diff --git a/application/i18n/sw_KE/installer.php b/application/i18n/sw_KE/installer.php new file mode 100755 index 0000000000..47bb3b3d53 --- /dev/null +++ b/application/i18n/sw_KE/installer.php @@ -0,0 +1,84 @@ + 'Njia ya besi', + 'database' => 'Databesi', + 'database_host' => 'Shina la Databesi', + 'database_host_description' => 'Iwapo unaendeshea Ushahidi katika tarakilishi yako, hii hasa itakuwa "shinalokali". Iwapo unaendeshea Ushahidi katika seva ya mtandao, utapata habari kuhusu shina lako kutoka kwa mtoaji wa huduma za shina la mtandao.', + 'database_name' => 'Jina la Databesi', + 'database_name_description' => 'Jina la databesi unalotaka kuendeshea Ushahidi', + 'db_information_link' => 'Kwa habari zaidi, tafadhali tazama this article katika wiki inayotoa habari zaidi kuhusu databesi.', + 'default_language' => 'Lugha Difoti (lugha maalum)', + 'default_language_description' => 'Kila kifurushi cha Ushahidi huwa na mseto wa tafsiri za lugha zilizoundiwa ndani. Pia unaweza kuongeza lugha yakoadd your own.', + 'disable' => 'Wezusha', + 'enable' => 'Wezesha', + 'error_summary' => 'Ulioorodheshwa hapa chini ni muhtasari wa hitilafu tulizokumbana nazo.', + 'files_location_text' => 'Eneo katika seva ulipoweka faili zako za Ushahidi kwenye mtandao wako. Tumefuta kadirio hili bila kiatomatiki, tafadhali hakikisha kuwa ni sahihi. Iwapo eneo hili li tupu, usiwe na shaka, inamaanisha kuwa Ushahidi imebandikwa katika ngazi kuu ya orodha ya anwani.', + 'finished' => 'Imekamilika', + 'general' => 'Jumla', + 'google_key' => 'Google Ufunguo wa API', + 'google_key_description' => 'Mtu yeyote anaweza kupata ufunguo wa api. Pokea ufunguo wako sasa', + 'go_back' => 'Rudi Nyuma', + 'index' => array( + 'advanced' => 'UBADIKAJI WA KIWANGO CHA JUU', + 'advanced_installation_description' => 'Pata vipimio vyote vya kimsingi vilivyoangaziwa kwenye utaratibu huu wa hatua 5. Hii ni pamoja na seva, ramani, jina la tovuti na habari za mawasiliano.', + 'basic_installation' => 'UBANDIKAJI WA KIMSINGI', + 'basic_installation_description' => 'Ni rahisi na haraka. Unachohitaji ni kina cha orodha ya anwani tovuti yako na habari ya databesi yako. Tumia njia hii iwapo unataka kuanza na kuendelea kwa haraka na kisha unaweza kusanidi mengine yote baadaye.', + 'proceed' => 'Endelea', + 'welcome' => 'Karibu katika utaratibu wa kubandika seva ya Ushahidi. Chagua hapa chini aina ya ubandikaji ambao ungependa kutumia.', + ) , + 'installation_successful' => 'Ubandikaji Umefaulu', + 'mail_server' => 'Seva ya Ujumbe', + 'mail_server_host' => 'Shina la Seva ya Ujumbe', + 'mail_server_host_description' => 'Mifano: barua pepe.mtandao wako.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Nenosiri ya Seva ya Ujumbe', + 'mail_server_password_description' => 'Nenosiri unayotumia kuingia katika barua pepe zako.', + 'mail_server_port' => 'Kiingilio cha Seva ya Ujumbe', + 'mail_server_port_description' => 'Vingilio vinavyotumika sana: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Aina ya Seva ya Ujumbe', + 'mail_server_type_description' => 'Protokali ya kupata ujumbe wa intaneti (IMAP) au Protokali ya Shirika la posta (POP). Ni nini tofauti?', + 'mail_server_username' => 'Jina la mtumiaji wa Seva ya Ujumbe', + 'mail_server_username_description' => 'Iwapo unatumia Gmail, Hotmail au Yahoo mail, tumia anwani yako ya barua pepe kama jina maalum la mtumiaji.', + 'map' => 'Ramani', + 'map_provider' => 'Mtoaji Ramani', + 'map_provider_description' => 'Ushahidi inafanya kazi vyema na kila mojawapo ya watoaji hawa wa ramani: Google, Bing au Open Street map. Chagua ile iliyo na habari nyingi kwa mujibu wa eneo lako.', + 'other_steps' => 'Hatua zingine...', + 'password' => 'Nenosiri', + 'password_description' => 'Nenosiri ya databesi yako', + 'previous' => 'Awali', + 'restart_apache' => 'Tafadhali anzisha tena seva yako ya Apache', + 'select_mail_server_ssl' => 'Wezesha au uwezushe SSL', + 'select_mail_server_ssl_description' => 'Baadhi ya seva za ujumbe hukupa chaguo la kutumia SSL unapofanya muunganisho. Inapendekezwa kutumia SSL, kwani ni salama zaidi.', + 'setup_sms' => 'Weka seva yako ya SMS', + 'site_email' => 'Anwani ya Barua pepe ya Tovuti', + 'site_email_alerts' => 'Anwani ya Arifa za Barua pepe za Tovuti', + 'site_email_alerts_description' => 'Wageni katika tovuti yako wanapojisajili kupata arifa za barua pepe, watapokea barua pepe kutoka kwa anwani hii. Si lazima anwani hii ya barua pepe iwe kama Anwani ya Barua pepe ya Tovuti.', + 'site_email_description' => 'Mawasiliano ya barua pepe ya tovuti nzima yatawasilishwa kupitia anwani hii.', + 'site_name' => 'Jina la Tovuti', + 'site_name_description' => 'Jina la tovuti yako', + 'site_tagline' => 'Wito wa Tovuti', + 'site_tagline_description' => 'Wito wako', + 'summary' => array( + 'text_1' => 'Faili na folda zilizoorodheshwa hapa chini zinahitaji kuweza kuandikika na seva yako.', + 'text_2' => '

Haya ndiyo maagizo ya kubadilisha ruhusa za faili:

+', + 'text_3' => 'Kabla hujaanza, utahitaji kuhakikisha kuwa faili na folda zifuatazo zinaweza kuandikika na seva yako. Hii inahusisha kubadilisha ruhusa za faili.', + 'text_4' => 'Kwa utaritibu wa kubandika, tafadhali jitayarishe na habari zifuatazo.', + ) , + 'table_prefix' => 'Utangulizi wa Jedwali', + 'table_prefix_description' => 'Kwa kawaida, hufai kubadilisha utangulizi wa jedwali. Hata hivyo, iwapo unataka kuendesha bandiko kadhaa za Ushahidi kutoka kwa databesi moja, unaweza kufanya hivyo kwa kubadilisha utangulizi hapa.', + 'title' => 'Kichwa', + 'to_login' => 'Ili kuingia, nenda', + 'upload_data' => 'Pakia data ya ripoti', + 'username' => 'Jina la mtumiaji', + 'username_description' => 'Jina la mtumiaji la databesi yako', + 'use_credentials' => 'na utumie hati zinazofuatazo', + 'view_site' => 'Tazama tovuti yako', +); diff --git a/application/i18n/sw_KE/layer.php b/application/i18n/sw_KE/layer.php new file mode 100755 index 0000000000..66138673ed --- /dev/null +++ b/application/i18n/sw_KE/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Ni sharti sehemu ya rangi iwe ya herufi 6.', + 'required' => 'Sehemu ya rangi inahitajika.', + ) , + 'layer_file' => array( + 'type' => 'Sehemu ya faili inaonekana kuwa na faili isiyo sahihi. Faili zinazokubalika ni za .KMZ na .KML.', + 'valid' => 'Sehemu ya faili inaonekana kuwa na faili isiyo sahihi. ', + ) , + 'layer_name' => array( + 'length' => 'Ni sharti sehemu ya majina iwe ya urefu wa angalau herufi 3 na isizidi herufi 80.', + 'required' => 'Sehemu ya majina inahitajika.', + ) , + 'layer_url' => array( + 'atleast' => 'Anwani au faili ya KML inahitajika.', + 'both' => 'Huwezi kuwa na faili ya KML na anwani pamoja.', + 'url' => 'Tafadhali andika anwani sahihi, kwa mfano: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/sw_KE/libraries.php b/application/i18n/sw_KE/libraries.php new file mode 100755 index 0000000000..7783b14774 --- /dev/null +++ b/application/i18n/sw_KE/libraries.php @@ -0,0 +1,27 @@ + 'Haikuweza kuunganishwa na seva ya Akismet.', + 'akismet_cannot_retrieve' => 'Mwitikio kutoka Akismet haukuweza kurejeshwa.', + 'api_library_not_found' => 'Maktaba ya API: %s kwa %s kundi hili haikuweza kupatikana. Tafadhali chunguza jedwali lako la API la kuwasilisha majukumu.', + 'askimet_invalid_apikey' => 'Anwani yako ya API ya Akismet si sahihi.', + 'clickatell_fopen_error' => 'Hitilafu wakati wa kutumia mbinu ya kutuma ya fopen!
Tafadhali chunguza ikiwa PHP inaegemezwa na OpenSSL na pia ikiwa toleo hilo la PHP ni zaidi ya 5.2.', + 'clickatell_message_too_long' => 'Ujumbe wako wa unicode ni mrefu sana! (Urefu wa hivi sasa=', + 'clickatell_no_destination_address' => 'Tafadhali onyesha bayana anwani unapotaka kutuma ujumbe huo (NENDA)!', + 'clickatell_no_sender_address' => 'Tafahali onyesha bayana anwani unapotoka ujumbe huo (KUTOKA)!', + 'clickatell_unicode_message_too_long' => 'Ujumbe wako wa unicode ni mrefu sana! (Urefu wa hivi sasa=', + 'clickatell_unsupported_method' => 'Mbinu ya kutuma isiyoegemezwa!', + 'invalid_api_library' => 'Maktaba ya API %s si sahihi. Maktaba zote za API sharti ziwe kundi ndogo za %s.', + 'upgrade_directory_not_deleted' => 'Orodha ya anwani %s haikuweza kufutwa.', + 'upgrade_extracting_error' => 'Hitilafu wakati wa kudondoa: %s', + 'upgrade_failed' => 'Upakuaji toleo la Ushahidi la hivi majuzi haukufalu. Kificho cha hali ya HTTP', + 'upgrade_file_not_copied' => 'Faili%s haikuweza kunakiliwa.', + 'upgrade_file_not_deleted' => 'Faili%s haikuweza kufutwa.', + 'upgrade_title' => 'Mswada wa kuboresha wa Ushihidi', + 'upgrade_zip_error' => 'Faili ya zip ya Ushahidi iliyopakuliwa %s, haikuweza kuandikwa.', + 'riverid_variable_not_available' => '%s haipatikani katika kundi la RiverID.', +); diff --git a/application/i18n/sw_KE/maintenance.php b/application/i18n/sw_KE/maintenance.php new file mode 100644 index 0000000000..92418e7a73 --- /dev/null +++ b/application/i18n/sw_KE/maintenance.php @@ -0,0 +1,9 @@ + 'Samahani, tovuti yetu haifanyi kazi kwa sasa kufuatia ukarabati. Tafadhali jaribu baada ya muda mfupi.', +); diff --git a/application/i18n/sw_KE/message.php b/application/i18n/sw_KE/message.php new file mode 100755 index 0000000000..d646b50fea --- /dev/null +++ b/application/i18n/sw_KE/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Tafadhali ingiza kificho cha usalama kilicho sahihi.', + 'required' => 'Tafadhali ingiza kificho cha usalama.', + ) , + 'email' => array( + 'email' => 'Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyo sahihi.', + 'length' => 'Ni sharti sehemu ya barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64.', + 'required' => 'Sehemu ya barua pepe inahitajika iwapo kisanduku cha alama kimewekwa alama.', + ) , + 'message' => array( + 'required' => 'Sehemu ya maoni inahitajika.', + ) , + 'name' => array( + 'length' => 'Ni sharti sehemu ya majina iwe ya urefu wa herufi 3.', + 'required' => 'Sehemu ya majina inahitajika.', + ) , + 'phone' => array( + 'length' => 'Sehemu ya nambari ya simu si sahihi.', + ) , +); diff --git a/application/i18n/sw_KE/mhi.php b/application/i18n/sw_KE/mhi.php new file mode 100755 index 0000000000..fba2f80385 --- /dev/null +++ b/application/i18n/sw_KE/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Tafadhali ingiza kificho cha usalama kilicho sahihi.', + 'required' => 'Tafadhali ingiza kificho cha usalama.', + ) , + 'contact_email' => array( + 'email' => 'Sehemu ya anwani ya Barua pepe inaonekana kuwa na anwani isiyo sahihi.', + 'required' => 'Tafadhali peana anwani sahihi ya barua pepe. ', + ) , + 'contact_message' => array( + 'required' => 'Sehemu ya ujumbe inahitajika.', + ) , + 'contact_subject' => array( + 'length' => 'Ni sharti sehemu ya mada iwe ya urefu wa angalau herufi 3.', + 'required' => 'Sehemu ya mada inahitajika.', + ) , +); diff --git a/application/i18n/sw_KE/notifications.php b/application/i18n/sw_KE/notifications.php new file mode 100755 index 0000000000..ec7762c7f7 --- /dev/null +++ b/application/i18n/sw_KE/notifications.php @@ -0,0 +1,35 @@ + 'Ujumbe huu ulitumwa kutoka kwa tovuti yako', + 'admin_login_url' => 'Kiingilizi cha Mzimamizi', + 'admin_new_comment' => array( + 'message' => 'Oni jipya limewasilishwa katika tovuti yako ili kujibiza:', + 'subject' => 'Oni jipya', + ) , + 'admin_new_email' => array( + 'message' => 'Ujumbe mpya wa barua pepe umewasilishwa katika tovuti yako.', + 'subject' => 'Ujumbe Mpya wa Barua pepe', + ) , + 'admin_new_report' => array( + 'message' => 'Ripoti mpya imewasilishwa katika tovuti yako.', + 'subject' => 'Ripoti Mpya', + ) , + 'admin_new_sms' => array( + 'message' => 'Ujumbe mpya wa simu umewasilishwa katika tovuti yako.', + 'subject' => 'Ujumbe Mpya wa Simu', + ) , + 'member_new_alert' => array( + 'message' => 'Umepokea Arifa Mpya', + 'subject' => 'Arifa Mpya!', + ) , + 'member_new_message' => array( + 'message' => 'Umepokea Ujumbe wa Kibinafsi', + 'subject' => 'Ujumbe Mpya wa Kibinafsi', + 'footer' => 'Ili Kujibu Tafadhali Nenda Kwa: ', + ) , +); diff --git a/application/i18n/sw_KE/page.php b/application/i18n/sw_KE/page.php new file mode 100644 index 0000000000..ca43d80b96 --- /dev/null +++ b/application/i18n/sw_KE/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Tafadhali ingiza Kichwa cha Ukurasa.', + 'length' => 'Ni sharti Kichwa cha Ukurasa kiwe cha urefu wa angalau herufi 3 na kisizidi herufi 150.', + ) , + 'page_tab' => array( + 'required' => 'Tafadhali ingiza Jina la Kichupo cha Ukurasa.', + ) , + 'page_description' => array( + 'required' => 'Tafadhali ingiza Maelezo ya Ukurasa.', + ) , +); diff --git a/application/i18n/sw_KE/permissions.php b/application/i18n/sw_KE/permissions.php new file mode 100644 index 0000000000..33a364f06b --- /dev/null +++ b/application/i18n/sw_KE/permissions.php @@ -0,0 +1,27 @@ + 'Tazama Ripoti', + 'reports_edit' => 'Unda/Hariri/Futa Ripoti', + 'reports_approve' => 'Idhinisha Ripoti', + 'reports_verify' => 'Thibitisha Ripoti', + 'reports_comments' => 'Dhibiti Maoni Kuhusu Ripoti', + 'reports_download' => 'Pakua Ripoti', + 'reports_upload' => 'Pakia Ripoti', + 'messages' => 'Dhibiti Ujumbe', + 'messages_reporters' => 'Dhibiti Ripota wa Ujumbe', + 'stats' => 'Tazama Takwimu', + 'settings' => 'Badilisha Vipimio', + 'manage' => 'Dhibiti Jopo', + 'users' => 'Dhibiti Watumiaji', + 'manage_roles' => 'Dhibiti Majukumu', + 'checkin' => 'Zuia Viingilio', + 'checkin_admin' => 'Dhibiti Viingilio', + 'admin_ui' => 'Fikia Kuzano ya Mtumiaji ya Msimamizi ', + 'member_ui' => 'Fikia Kuzano ya Mtumiaji ya Washiriki', + 'delete_all_reports' => 'Futa ripoti zote', +); diff --git a/application/i18n/sw_KE/private_message.php b/application/i18n/sw_KE/private_message.php new file mode 100644 index 0000000000..30c9fc85ad --- /dev/null +++ b/application/i18n/sw_KE/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Ni sharti Kitambulisho Kikuu kiandikwe kwa nambari', + ) , + 'private_to' => array( + 'required' => 'Sehemu ya Kwa inahitajika', + 'exists' => 'Mtumiaji unayejaribu kutumia ujumbe hayupo', + ) , + 'private_subject' => array( + 'required' => 'Sehemu ya mada inahitajika.', + 'length' => 'Ni sharti mada iwe na kati ya herufi 3 na 150.', + ) , + 'private_message' => array( + 'required' => 'Sehemu ya ujumbe inahitajika.', + ) , +); diff --git a/application/i18n/sw_KE/report.php b/application/i18n/sw_KE/report.php new file mode 100755 index 0000000000..0e660432b1 --- /dev/null +++ b/application/i18n/sw_KE/report.php @@ -0,0 +1,128 @@ + 'hitilafu!', + 'country_name' => array( + 'single_country' => 'Kifurushi hiki hufanya kazi katika nchi moja pekee. Tafadhali hakikisha kuwa eneo la arifa liko ndani ya nchi hii%s.', + ) , + 'data_include' => array( + 'between' => 'Tafadhali chagua kipengele sahihi utakachojumuisha katika kipakuzi', + 'numeric' => 'Tafadhali chagua kipengele sahihi utakachojumuisha katika kipakuzi', + ) , + 'data_active' => array( + 'between' => 'Tafadhali chagua" Ripoti Zinazosubiri Idhini" au "Ripoti zilizoidhinishwa" au zote mbili.', + 'numeric' => 'Tafadhali chagua" Ripoti Zinazosubiri Idhini" au "Ripoti zilizoidhinishwa" au zote mbili.', + 'required' => 'Tafadhali chagua" Ripoti Zinazosubiri Idhini" au "Ripoti zilizoidhinishwa" au zote mbili.', + ) , + 'data_verified' => array( + 'between' => 'Tafadhali chagua" Ripoti Zinazosibiri Kudhibitishwa" au "Ripoti zilizodhibitishwa" au zote mbili.', + 'numeric' => 'Tafadhali chagua" Ripoti Zinazosibiri Kudhibitishwa" au "Ripoti zilizodhibitishwa" au zote mbili.', + 'required' => 'Tafadhali chagua" Ripoti Zinazosibiri Kudhibitishwa" au "Ripoti zilizodhibitishwa" au zote mbili.', + ) , + 'data_point' => array( + 'between' => 'Tafadhali chagua aina sahihi ya ripoti ya kupakua', + 'numeric' => 'Tafadhali chagua aina sahihi ya ripoti ya kupakua', + 'required' => 'Tafadhali chagua aina sahihi ya ripoti ya kupakua', + ) , + 'format' => array( + 'required' => 'Ni sharti uchague muundo wa kupakua. Chagua aitha CSV au XML.', + 'valid' => 'Tafadhali chagua muundo sahihi wa kupakua ripoti zako katika', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Sehemu ya KUTOKA ya tarehe inaonekana kuwa na tarehe isiyo sahihi.', + 'range' => 'Tafadhali ingiza tarehe sahihi katika sehemu ya KUTOKA. Tarehe hii haiwezi kuzidi tarehe ya leo.', + ) , + 'incident_active' => array( + 'between' => 'Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Idhinisha Ripoti Hii', + 'required' => 'Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Idhinisha Ripoti Hii', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Sehemu ya asubuhi/jioni inaonekana kuwa isiyo sahihi.', + ) , + 'incident_category' => array( + 'numeric' => 'Sehemu ya"Vikundi" inaonekana kuwa na kikundi kisicho sahihi.', + 'required' => 'Sehemu ya "Vikundi" inahitajika.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Sehemu ya tarehe inaonekana kuwa na faili isiyo sahihi. ', + 'date_mmddyyyy' => 'Sehemu ya tarehe inaonekana kuwa na faili isiyo sahihi. ', + 'required' => 'Sehemu ya tarehe inahitajika.', + ) , + 'incident_description' => array( + 'required' => 'Sehemu ya "Maelezo" inahitajika.', + ) , + 'incident_hour' => array( + 'between' => 'Sehemu ya saa inaonekana kuwa na saa isiyo sahihi. ', + 'required' => 'Sehemu ya saa inahitajika.', + ) , + 'incident_information' => array( + 'alpha' => 'Tafadhali ingiza kadirio sahihi katika sehemu ya Uwezekano wa Taarifa.', + 'length' => 'Tafadhali ingiza kadirio sahihi katika sehemu ya Uwezekano wa Taarifa.', + ) , + 'incident_minute' => array( + 'between' => 'Sehemu ya dakika inaonekana kuwa na kadirio isiyo sahihi.', + 'required' => 'Sehemu ya dakika inahitajika.', + ) , + 'incident_news' => array( + 'url' => 'Inaonekana kuwa sehemu ya viunganishi vya chanzo cha habari ina anwani isiyo sahihi.', + ) , + 'incident_photo' => array( + 'size' => 'Tafadhali hakikisha picha zinazopakiwa hazizidi 2MB.', + 'type' => 'Sehemu ya Kupakua Picha inaonekana kuwa na picha isiyo sahihi. Picha zinazokubalika ni za .JPG, .PNG and .GIF.', + 'valid' => 'Sehemu ya Kupakua Picha inaonekana kuwa na faili isiyo sahihi.', + ) , + 'incident_source' => array( + 'alpha' => 'Tafadhali ingiza kadirio iliyo sahihi kwa Kuaminika kwa Chanzo.', + 'length' => 'Tafadhali ingiza kadirio iliyo sahihi kwa Kuaminika kwa Chanzo.', + ) , + 'incident_title' => array( + 'length' => 'Ni sharti sehemu ya "Kichwa cha Ripoti"iwe ya urefu wa angalau herufi 3 na isizidi herufi 200.', + 'required' => 'Sehemu ya "Kichwa cha Ripoti" inahitajika.', + 'csrf' => 'Kuna uwezekano wa mathara ya CSRF. Una uhakika unataka kuunda/kuhariri ripoti?', + ) , + 'incident_verified' => array( + 'between' => 'Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Dhibitisha Ripoti Hii', + 'required' => 'Tafadhali ingiza kadirio iliyo sahihi katika sehemu ya Dhibitisha Ripoti Hii', + ) , + 'incident_video' => array( + 'url' => 'Inaonekana kuwa sehemu ya viunganishi vya video ina anwani isiyo sahihi.', + ) , + 'latitude' => array( + 'between' => 'Sehemu ya latitudi inaonekana kuwa na latitudi isiyo sahihi.', + 'required' => 'Sehemu ya latitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo.', + ) , + 'locale' => array( + 'alpha_dash' => 'Sehemu ya kieneno ina kadirio isiyo sahihi. ', + 'exists' => 'Ripoti hii tayari ina tafsiri ya lugha hii.', + 'length' => 'Sehemu ya kieneo ina kadirio isiyo sahihi. ', + 'locale' => 'Ripoti ya Asilia na Tafsiri zina kieneo sawa (lugha).', + 'required' => 'Sehemu ya kieneo inahitajika.', + ) , + 'location_name' => array( + 'length' => 'Ni sharti sehemu ya "Jina la eneo" iwe ya urefu wa angalau herufi 3 na isizidi herufi 200.', + 'required' => 'Sehemu ya "Jina la Eneo" inahitajika.', + ) , + 'longitude' => array( + 'between' => 'Sehemu ya longitudi inaonekana kuwa na longitudi isiyo sahihi.', + 'required' => 'Sehemu ya longitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo.', + ) , + 'person_email' => array( + 'email' => 'Sehemu ya anwani ya barua pepe inaonekana kuwa na anwani isiyo sahihi.', + 'length' => 'Ni sharti sehemu ya barua pepe iwe ya urefu wa angalau herufi 4 na isizidi herufi 64.', + ) , + 'person_first' => array( + 'length' => 'Ni sharti sehemu ya jina la kwanza iwe ya urefu wa angalau herufi 3 na isizidi herufi 100.', + ) , + 'person_last' => array( + 'length' => 'Ni sharti sehemu ya jina la mwisho iwe ya urefu wa angalau herufi 2 na isizidi herufi 100.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Sehemu ya HADI ya tarehe inaonekana kuwa na tarehe isiyo sahihi.', + 'range' => 'Tafadhali ingiza tarehe sahihi katika sehemu ya HADI. Tarehe hii haiwezi kuzidi tarehe ya leo.', + 'range_greater' => 'Tarehe yako ya KUTOKA haiwezi kuzidi tarehe ya HADI.', + ) , +); diff --git a/application/i18n/sw_KE/reporters.php b/application/i18n/sw_KE/reporters.php new file mode 100755 index 0000000000..b3359ce442 --- /dev/null +++ b/application/i18n/sw_KE/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Sehemu ya latitudi inaonekana kuwa na latitudi isiyo sahihi.', + 'required' => 'Sehemu ya latitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo.', + ) , + 'level_id' => array( + 'numeric' => 'Ngazi ya Ripota inaonekana kuwa na Ngazi isiyo sahihi.', + 'required' => 'Ngazi ya Ripota inaonekana kuwa na Ngazi isiyo sahihi.', + ) , + 'location_name' => array( + 'length' => 'Ni sharti sehemu ya eneo la majina iwe ya urefu wa angalau herufi 3 na isizidi herufi 200.', + 'required' => 'Sehemu ya eneo la jina inahitajika.', + ) , + 'longitude' => array( + 'between' => 'Sehemu ya longitudi inaonekana kuwa na longitudi isiyo sahihi.', + 'required' => 'Sehemu ya longitudi inahitajika. Tafadhali bonyeza kwenye ramani kuashiria eneo.', + ) , + 'reporter_id' => array( + 'numeric' => 'Ripota Asiyekubalika', + 'required' => 'Ripota Asiyekubalika', + ) , +); diff --git a/application/i18n/sw_KE/reports.php b/application/i18n/sw_KE/reports.php new file mode 100644 index 0000000000..b49b41e5fb --- /dev/null +++ b/application/i18n/sw_KE/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Tafadhali thibitisha kuwa umeweka alama kwenye kipengele', + 'numeric' => 'Tafadhali thibitisha kuwa umeweka alama kwenye kipengele', + 'categories_required' => 'Ni sharti ripoti ziakifishwe kabla ya kuidhinishwa', + ) , + 'action' => array( + 'permission' => 'Hauna ruhusa ya kufanya kitendo hiki', + ) , + 'uploadfile' => array( + 'required' => 'Ni sharti uchague faili ya kupakia', + 'type' => 'Ni sharti faili ya kupakia iwe ya muundo wa .csv au .xml', + 'valid' => 'Sehemu ya kupakia faili inaonekana kuwa na faili isiyo sahihi.', + ) , +); diff --git a/application/i18n/sw_KE/roles.php b/application/i18n/sw_KE/roles.php new file mode 100755 index 0000000000..b33d0ce031 --- /dev/null +++ b/application/i18n/sw_KE/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Ni sharti sehemu ya Maelezo iwe na urefu wa angalau herufi 3 na isizidi herufi 100.', + 'required' => 'Sehemu ya Maelezo inahitajika.', + ) , + 'name' => array( + 'alpha_numeric' => 'Sehemu ya Jina ni shart iwe na herufi na nambari pekee.', + 'length' => 'Ni sharti sehemu ya Jina iwe ya urefu wa angalau herufi 2 na isizidi herufi 30.', + 'nomodify' => 'Jukumu la Msimamizi Mkuu Haliwezi Kubadilishwa.', + 'required' => 'Sehemu ya Jina inahitajika.', + ) , + 'access_level' => array( + 'numeric' => 'Sehemu ya Ngazi ya Kufikika inafaa kuwa nambari iliyo kati ya 0 - 100.', + 'required' => 'Sehemu ya Ngazi ya Kufikika inafaa kuwa nambari iliyo kati ya 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Sehemu ya Idhini inafaa kuwa nambari iliyo kati ya 0 - 100.', + ) , +); diff --git a/application/i18n/sw_KE/settings.php b/application/i18n/sw_KE/settings.php new file mode 100755 index 0000000000..f2e744813b --- /dev/null +++ b/application/i18n/sw_KE/settings.php @@ -0,0 +1,220 @@ + array( + 'between' => 'Sehemu ya ruhusu fikira inaonekana si sahihi', + 'required' => 'Sehemu ya ruhusu fikira inahitajika.', + ) , + 'allow_feed' => array( + 'between' => 'Sehemu ya ruhusu tawanyiko inaonekana si sahihi', + 'required' => 'Sehemu ya ruhusu tawanyiko inahitajika.', + ) , + 'allow_alerts' => array( + 'between' => 'The allow alerts field does not appear to contain a valid value.', + 'required' => 'The allow alerts field is required.', + ) , + 'allow_reports' => array( + 'between' => 'Sehemu ya ruhusu ripoti inaonekana si sahihi', + 'required' => 'Sehemu ya ruhusu ripoti inahitajika.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Sehemu ya gawanya takwimu inaonekana si sahihi', + 'required' => 'Sehemu ya gawanya takwimu inahitajika.', + ) , + 'api' => array( + 'default_record_limit' => 'Default number of records to be fetched per API request', + 'maximum_record_limit' => 'Maximum number of records to be fetched per API request', + 'maximum_requests_per_ip_address' => 'Maximum number of API requests per IP address', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Sehemu ya Akismet inaonekana si sahihi', + 'length' => 'Sehemu ya Akismet inaonekana si sahihi', + ) , + 'banner_image' => array( + 'size' => 'Tafadhali hakikisha kuwa ukubwa wa "Banner Image" ni mdogo kuliko 250 KB.', + ) , + 'cache_pages' => array( + 'between' => 'The cache pages field is required.', + 'required' => 'The cache pages field does not appear to contain a valid value.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'The cache pages lifetime field does not appear to contain a valid value.', + 'required' => 'The cache pages lifetime field is required.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs (without "index.php" in the URL).', + 'enable_clean_url' => 'Enable Clean URLs', + 'title' => 'Clean URLs', + ) , + 'clickatell_api' => array( + 'length' => 'Sehemu ya nambari ya Clickatell API haiezi pitisha herufi 20.', + 'required' => 'Sehemu ya nambari ya Clickatell API inahitajika.', + ) , + 'clickatell_password' => array( + 'length' => 'Sehemu ya nywila ya Clickatell lazma iwe baina ya herufi 5 na 50.', + 'required' => 'Sehemu ya nywila ya Clickatell inahitajika.', + ) , + 'clickatell_username' => array( + 'length' => 'Sehemu ya nambari ya jina la mtumizi wa Clickatell API haiezi pitisha herufi 20.', + 'required' => 'Sehemu ya nambari ya jina la mtumizi wa Clickatell API inahitajika.', + ) , + 'configure_map' => 'Sanidi Ramani', + 'default_location' => 'Default Location', + 'default_map_all' => array( + 'alpha_numeric' => 'Sehemu ya rangi inaonekana si sahihi', + 'length' => 'Sehemu ya rangi lazima iwe na herufi 6.', + 'required' => 'Sehemu ya rangi inahitajika.', + ) , + 'default_map_view' => 'Mandhari ya Ramani ya Awali', + 'default_zoom_level' => 'Zoom ya Ramani ya Awali', + 'download_city_list' => 'Pata miji kutokana na Geonames', + 'email_host' => array( + 'length' => 'Port ya Mail Server ni ndefu sana', + 'numeric' => 'Sehemu ya port ya Mail Server lazima iwe nambari.', + ) , + 'email_password' => array( + 'length' => 'Sehemu ya nywila ya Mail Server lazma iwe baina ya herufi 5 an 50.', + 'required' => 'Sehemu ya nywila ya Mail Server inahitajika.', + ) , + 'email_port' => array( + 'length' => 'Port ya Mail Server ni ndefu sana', + 'numeric' => 'Sehemu ya port ya Mail Server lazima iwe nambari.', + ) , + 'email_servertype' => array( + 'length' => 'Port ya Mail Server ni ndefu sana', + 'required' => 'Sehemu ya aina ya Mail Server inahitajika.', + ) , + 'email_username' => array( + 'length' => 'Sehemu ya jina la mtumizi wa Mail Server haiezi pitisha herufi 50.', + 'required' => 'Sehemu ya jina la mtumizi wa Mail Server inahitajika.', + ) , + 'facebook' => array( + 'title' => 'Facebook Setup Options', + 'description' => 'To get the information below you will need to create a new Facebook application at', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Sehemu ya Google Analytics lazma iwe na Web Property ID sahihi kwa fomati ya UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Enable HTTPS', + 'https_disabled' => 'This option makes Ushahidi be accessed in unsecure mode; without "https://" in the URL prefix', + 'https_enabled' => 'This option makes Ushahidi be accessed in secure mode; with https in the URL prefix', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Sehemu ya vipengele kwa kurasa (Uso wa tovuti) inaonekana si sahihi', + 'required' => 'Sehemu ya vipengele kwa kurasa (Uso wa tovuti) inahitajika.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Sehemu ya vipengele kwa kurasa (Meneja) inaonekana si sahihi', + 'required' => 'Sehemu ya vipengele kwa kurasa (Meneja) inahitajika.', + ) , + 'map' => array( + 'default_location' => 'Kueka map provider ni jambo rahisi. Chagua provider, Pata API key Kutoka kwa tovuti ya provider, ubandike API key hapa', + 'zoom' => 'Kipimo cha zoom', + ) , + 'map_provider' => array( + 'choose' => 'Chagua Map Provider', + 'enter_api' => 'Andika API Key mpya', + 'get_api' => 'Pata API Key', + 'info' => 'Kueka map provider ni jambo rahisi. Chagua provider, Pata API key Kutoka kwa tovuti ya provider, ubandike API key hapa', + 'name' => 'Map provider', + ) , + 'map_timeline' => 'Map Timeline', + 'map_settings' => 'Vipimo vya Ramani', + 'multiple_countries' => 'Je hii Ushahidi inatumika kwenye nchi nyingi', + 'select_default_location' => 'Tafadhali chagua nchi ya awali', + 'set_location' => 'Bonyeza uburute ramani kwa eneo unayoitaka', + 'site' => array( + 'allow_clustering' => 'Kushanya repoti kwa ramani', + 'allow_comments' => 'Ruhusu watumizi kutunga fikira zao kwa kila ripoti', + 'allow_feed' => 'Weka tawanyiko la habari za RSS kwa tovuti', + 'allow_alerts' => 'Allow Users To Subscribe For Alerts', + 'allow_reports' => 'Ruhusu watumizi kutunga ripoti', + 'api_akismet' => 'Key ya Akismet', + 'banner' => 'Site Banner', + 'blocks_per_row' => 'Blocks Per Row', + 'cache_pages' => 'Cache Pages', + 'cache_pages_lifetime' => 'Cache Pages Lifetime', + 'checkins' => 'Enable Checkins', + 'copyright_statement' => 'Site Copyright Statement', + 'default_category_colors' => 'Rangi ya asili kwa jamii zote', + 'default_category_icons' => 'Default Icon For All Categories', + 'delete_banner_image' => 'Delete Banner Image', + 'delete_default_map_all_icon' => 'Delete Default Icon', + 'display_contact_page' => 'Onyesha kurasa ya mawasiliano', + 'display_howtohelp_page' => 'Onyesha kurasa ya "Ushaidizi"', + 'email_alerts' => 'Anwani ya barua pepe ya kutanabahisha', + 'email_notice' => 'Ili kupata repoti na barua pepe, tafadhali sanidi vipimo vyako vya anwani yako ya barua pepe.', + 'email_site' => 'Anwani ya barua pepe ya tovuti', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'items_per_page' => 'Vipengele kwa kila kurasa - Uso wa tovuti', + 'items_per_page_admin' => 'Vipengele kwa kila kurasa - Meneja', + 'kismet_notice' => 'Zuia spam kwa fikira kutumia Akismet kutoka Automattic.
Unaeza pata API key ya bure kwa kujisajilisha kwa akaunti ya mtumizi ya WordPress.com', + 'laconica_configuration' => 'Sifa za Laconica', + 'laconica_site' => 'Tovuti ya Laconica ', + 'language' => 'Lugha ya tovuti', + 'manually_approve_users' => 'Manually Approve Users', + 'message' => 'Site Message', + 'name' => 'Jina la tovuti', + 'private_deployment' => 'Private Deployment', + 'require_email_confirmation' => 'Require User Email Confirmation', + 'submit_report_message' => 'Submit Report Message', + 'share_site_stats' => 'Shriki na takwimu za API na wengine', + 'tagline' => 'Tagline ya tovuti', + 'timezone' => 'Timezone', + 'title' => 'Vipimo vya tovuti', + 'twitter_configuration' => 'Sifa za Twitter', + 'twitter_hashtags' => 'Hashtags - Tofautisha na comma ', + ) , + 'site_email' => array( + 'email' => 'Anwani ya barua pepe ya tovuti inaonekana si sahihi', + 'length' => 'Anwani ya barua pepe ya tovuti lazma liwe baina ya herufi 4 na 100.', + ) , + 'site_name' => array( + 'length' => 'Jina la tovuti lazma liwe baina ya herufi 3 na 50.', + 'required' => 'Jina la tovuti linahitajika.', + ) , + 'site_tagline' => array( + 'length' => 'Jina la tagline lazma liwe baina ya herufi 3 na 100.', + 'required' => 'Jina la tagline linahitajika.', + ) , + 'sms' => array( + 'clickatell_api' => 'Namba yako ya Clickatell API', + 'clickatell_check_balance' => 'Pesa zilizobaki za Clickatell', + 'clickatell_load_balance' => 'Engeza Credit ya Clickatell', + 'clickatell_password' => 'Nywila yako ya Clickatell', + 'clickatell_text_1' => 'Jiunganishe na Clickatells kwa kubonya hapa', + 'clickatell_text_2' => 'Ingiza maarifa ya kuungana na Clickatell kwa sehemu inayofuata', + 'clickatell_username' => 'Jina la mtumizi wa akaunti yako ya Clickatell', + 'flsms_download' => 'Pakua na usakinishe FrontlineSMS', + 'flsms_text_1' => 'Andika namba za simu za Frontline SMS kwa sehemu inayofuata', + 'flsms_text_2' => 'Andika namba za simu + au mapengo kwa sehemu ifuatayo', + 'option_1' => 'Chaguo la 1: Tumia Frontline SMS', + 'option_2' => 'Chaguo la 2: Tumia SMS Gateway ya kimataifa', + 'title' => 'Vipimo vya SMS', + ) , + 'sms_no1' => array( + 'length' => 'Sehemu ya number ya simu ya kwanza inaonekana si sahihi', + 'numeric' => 'Sehemu ya number ya simu ya kwanza lazma iwe na nambari.', + ) , + 'sms_no2' => array( + 'length' => 'Sehemu ya number ya simu ya pili inaonekana si sahihi', + 'numeric' => 'Sehemu ya number ya simu ya pili lazma iwe na nambari.', + ) , + 'sms_no3' => array( + 'length' => 'Sehemu ya number ya simu ya tatu inaonekana si sahihi', + 'numeric' => 'Sehemu ya number ya simu ya tatu lazma iwe na nambari.', + ) , + 'twitter' => array( + 'title' => 'Chaguo za Usanidi wa Twitter', + ) , +); diff --git a/application/i18n/sw_KE/sharing.php b/application/i18n/sw_KE/sharing.php new file mode 100755 index 0000000000..ac018a0c21 --- /dev/null +++ b/application/i18n/sw_KE/sharing.php @@ -0,0 +1,25 @@ + 'Tarehe ya kuingilia', + 'date_added' => 'Tarehe ya Kuongezwa', + 'last_access' => 'Wakati wa Mwisho wa Kufikiwa', + 'sharing_color' => array( + 'length' => 'Ni sharti sehemu ya rangi iwe ya urefu wa herufi 6.', + 'required' => 'Sehemu ya rangi inahitajika.', + ) , + 'sharing_name' => array( + 'length' => 'Inaonekana kuwa jina la Kugawiza si sahihi', + 'required' => 'Jina la Kugawiza linahitajika', + ) , + 'sharing_url' => array( + 'exists' => 'Anwani hii ya tovuti tayari ipo', + 'length' => 'Inaonekana kuwa anwani hii ya tovuti si sahihi', + 'required' => 'Anwani ya tovuti inahitajika.', + 'url' => 'Inaonekana kuwa sehemu ya anwani ya tovuti ina anwani isiyo sahihi.', + ) , +); diff --git a/application/i18n/sw_KE/stats.php b/application/i18n/sw_KE/stats.php new file mode 100755 index 0000000000..185dfb3c92 --- /dev/null +++ b/application/i18n/sw_KE/stats.php @@ -0,0 +1,42 @@ + 'Imeidhinishwa', + 'categories' => 'Vikundi', + 'category_impact' => 'Matokeo ya Kikundi', + 'category_impact_description' => 'Chati hii inakuonyesha ripoti kwa njia ya mstari kwa kikundi kwa muda. Buruta kutoka kushoto hadi kulia ili kuona mtazamo linganishi wa vikundi mbali mbali. Kwa maelezo zaidi, peleka kipanya kwenye grafu.', + 'choose_date_range' => 'Chagua anuwai ya tarehe', + 'countries' => 'Nchi', + 'country' => 'Nchi', + 'country_breakdown' => 'Habari za Kina Kuhusu Nchi', + 'description' => 'Hii ni sehemu ya takwimu na itakua na maelezo ya ujumla hivi karibuni. Kwa sasa vinjari kwa kutumia viunganishi vya vijikundi vilivyo hapo juu.', + 'error' => 'Hitilafu', + 'glossary' => 'Faharasa', + 'hit_summary' => 'Muhtasari wa Idadi za Kusomwa', + 'legend' => 'Kifunguo', + 'pageviews' => 'Idadi ya Mitazamo ya Ukurasa', + 'pageviews_description' => 'Jumla ya kurasa ambazo wageni wako wametazama katika tovuti yako', + 'reports' => 'Ripoti', + 'reports_categories' => 'Vikundi vya Ripoti', + 'reports_statistics' => 'Takwimu za Ripoti', + 'reports_status' => 'Hali ya Ripoti', + 'report_punchcard' => 'Panjikadi ya Ripoti', + 'report_stats' => 'Takwimu za Ripoti', + 'stats_not_setup' => 'Takwimu Hazijawekwa', + 'time_range_1' => 'Mwezi 1', + 'time_range_2' => 'Miezi 3', + 'time_range_3' => 'Miezi 6', + 'time_range_all' => 'Zote', + 'unapproved' => 'Haijaidhinishwa', + 'unique_visitors' => 'Wageni Maalum', + 'unique_visitors_description' => 'Idadi ya watu wanaokuja katika kifurushi chako. Wageni maalum hujulikana kwa kutumia kuki. Wageni wasio na kuki zilizowezeshwa watajulikana kwa kutumia nadharia rahisi kwa kuangalia anwani ya IP, mchanganuo, kivinjari, vizibo, Mfumo Endeshaji, na kadhalika.', + 'unverified' => 'Haijathabitishwa', + 'verified' => 'Imethibitishwa', + 'visitor_summary' => 'Muhtasari kuhusu Wageni', + 'visits' => 'Idadi ya Ziara', + 'visits_description' => 'Ziara ni rekodi ya wageni maalum wanaokuja kwenye tovuti kwa muda wa dakika 30 zaidi baada ya mara yake ya mwisho kuangalia kurasa.', +); diff --git a/application/i18n/sw_KE/tooltips.php b/application/i18n/sw_KE/tooltips.php new file mode 100755 index 0000000000..025647406f --- /dev/null +++ b/application/i18n/sw_KE/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => 'Hii huongeza ripoti kwa vikundi vya ziada. Ukichagua Kikundi cha 1 hapa na ripoti tayari imeambatisha Kikundi cha 2, hivyo basi ripoti itakuwa na Kikundi cha 1 na cha Kikundi 2.', + 'approve' => 'Huidhinisha ripoti au la. Ikiwa itaidhinishwa, itaonekana na umma.', + 'assign_badge' => 'Utaweza kumpa beji mtumiaji anayechocheza. Chagua beji na itakayowekwa hapa.', + 'between_times' => 'Hii ni safu ya saa na/au dakika kati ya nyakati mbili katika mfumo wa 24 wa saa. Ukiingiza wakati wa awali katika sehemu ya sekunde, itabadilishwa na ya kwanza. Ni sharti nyakati hizi ziwe katika siku moja. Wakati huu pia hutazamwa dhidi ya muda uliosanidi kwenye tovuti kulingana na vipimio na not sharti majira ya saa ya mtumiaji yalingane na kifurushi chako. Acha sehemu hii ikiwa 00:00 hadi 00:00 ili kupuuza kipimio hiki.', + 'category' => 'Ikiwa unataka kuwezesha kichochezi pekee wakati kikundi fulani kinatumika, unaweza kuweka vipimio hapa. Kipimio hiki kitaruhusu kichochezi kuwezeshwa ikiwa mojapo ya vikundi kinatumika. Kwa mfano, ukichagua Kikundi cha 1 na Kikundi cha 2 hapa na ripoti kuwasilishwa kwa kutumia Kikundi cha 2 na Kikundi cha 3, kipimio hiki kitafaulu.', + 'days_of_the_week' => 'Ikiwa hatua hizi zitatokea katika siku fulani ya wiki, weka vipimio hivyo hapa. Kumbuka kuwa siku hutegemea majira ya saa kama ilivyosanidiwa katika kifurushi chako. Shikilia kutufe cha shift, command, au control ili kuchagua siku kadhaa.', + 'email_body' => 'Muundo wa barua pepe itakayotumwa.', + 'email_subject' => 'Mada ya barua pepe itakayotumwa.', + 'feed_id' => 'Mtawanyiko unaweza kuwa mitawanyiko yote au mtawanyiko maalum. Ikiwa ungetaka vilisho maalum pekee kuwezesha kichochezi, utahitaji kuchagua hapa. La sivyo, utahitaji kuacha hii kama "zote"', + 'from' => 'Jina la mtumiaji kwa Twitter (au majina ya watumiaji mbalimbali yaliyotenganishwa kwa kutumia koma). Iwapo ungependa kuwezesha vichochezi kwa ujumbe ya twitter pekee kutoka mtumiaji fulani, andika jina la mtumiaji huyo hapa (bila kuweka @)', + 'keywords' => 'Unaweza kuchagua kuacha sehemu hii wazi iwapo hutaki kulinganisha dhidi ya maneno makuu. Kama utaongeza maneno hapa, unahitajika kuyatenganisha kwa kutumia koma (,). Kwa mfano, iwapo unataka kuwezesha kichochezi wakati mtu ametaja "upendo" au "amani" katika ujumbe wao, utahitaji kuongeza "upendo, amani" katika jedwali la maneno makuu.', + 'location' => 'Unaweza kuchagua mahali popote au eneo maalum. ukichagua mahali maalum, utaulizwa kuchora kisanduku kuzunguka eneo lililoidhiniswa. Kwa mfano, iwapo unataka kichochezi hiki kiwezeshwe wakati mtu amewasilisha ripoti nchini Brazil, utachagua "eneo maalum" kisha uchore kisanduku kuzunguka Brazil. Unaweza kufanya visanduku hivi viwe vya ukubwa vile utakavyopenda. Unaweza pia kuchora visanduku vingi.', + 'on_specific_count' => 'Kidhibitishi hiki kitawezesha kichochezi katika idadi ya N aidha kwa msingi mzima wa watumiaji au kwa kila mtumiaji. Acha eneo hili tupu ili kupuuza.', + 'report_title' => 'Hiki ndicho kichwa difoti cha kuongeza katika ripoti.', + 'response' => 'Ikiwa vidhibitishi vyote hapo juu vitaidhiniswa , kichochezi kitaanzisha mwitikio. Hatua hii inaweza kuwa kuidhinisha ripoti au kumtumia barua pepe mtumiaji. Chagua mwitikio hapa ili kuwezesha chaguo za ziada kwa majibu maalum.', + 'send_to' => 'Ukichagua "Kuchochea Mtumiaji", barua pepe itatumwa kwa mtumiaji aliyetekeleza kitendo hiki. ukiuchagua kitufe cha redio karibu na sanduku ingizi, utaweza kuandika anwani ya barua pepe iliyofanyiwa mabadiliko. Hii ni muhimu iwapo unaunda vichochezi ili kuwaarifu watu wakati sehemu fulani za ramani zinaona ripoti, habari za eneo au shughuli nyingine.', + 'specific_days' => 'Unaweza kuchagua siku kadhaa hapa. Tarehe zinategemea majira ya wakati katika vipimio vya eneo lako. Ili kurejea katika tarehe zote za difoti, usichague tarehe zozote.', + 'trigger' => 'Kichocheo ni kipengele cha msingi unapounda Vichochezi vyako vya Utendaji. Hii itakusaidia kubaini kama ungependa jambo fulani kutendeka mtu anawasilisha ripoti, anapoleta habari za eneo, na kadhalika. Utaweza kuchuja miitikio ya hatua hizi baada ya kuchagua mojawapo.', + 'user' => 'Mtumiaji anaweza kuwa mtu yeyote au mtumiaji maalum. Ikiwa ungetaka watumiaji maalum kuwezesha kichochezi, utahitaji kuchagua hapa. La sivyo, utahitaji kuacha sehemu hii kama "yeyote" kwa sababu vichochezi vingi vimepangiwa kutumika kwa watumiaji wote wanaowasiliana katika mfumo huu.', + 'verify' => 'Huweka alama kwenye ripoti kamailiyodhibitishwa au la.', + ) , + 'change_picture' => 'Kurasa za wasifu katika tovuti hii hutumia Gravatar. Unapobonyeza kwenye picha yako, utaiingizwa kwenye tovuti ya Gravatar ambapo unaweza kubadilisha picha yako ya wasifu.', + 'default_value' => 'Tenganisha kila kadiri kwa koma, kwa mfano kadiri ya 1, kadiri ya 2.', + 'radio_choices' => 'Tenganisha kila kadiri kwa koma, kwa mfano kadiri ya 1, kadiri ya 2. Ikiwa unataka kadiri ya difoti, malizia orodha yako ya chaguo na :: Kwa mfano, iwapo unataka kufanya kadiri ya 3 iwe ya difoti, itakuwa kadiri ya 1, kadiri ya 2, kadiri ya 3:: kadiri ya 3', + 'dropdown_choices' => 'Tenganisha kila kipengele kwa kutumia koma, kwa mfano kipengele cha 1, kipengele cha 2 na kadhalika.', + 'private_to' => 'Anza kuorodhesha washiriki.', + 'private_subject' => 'Mada ya ujumbe wa kibinafsi', + 'private_message' => 'Ujumbe wa kibinafsi', + 'profile_color' => 'Unaweza kuchagua rangi ambayo itaonekana na umma katika picha yako ya wasifu . Rangi hii pia itakuwa kitone kitakachoonekana kwenye ramani kuashiria viingizi vyako.', + 'profile_email' => 'Anwani yako ya barua pepe', + 'profile_name' => 'Hii ni mojawapo ya njia ambazo unatambuliwa kwenye tovuti. Kumbuka kwamba hii inaonekena kwa umma!', + 'profile_new_password' => 'Ikiwa itaundika, hii itakuwa nenosiri yako mpya. Acha eneo hili tupu iwapo unataka nenosiri yako ya sasa isalie.', + 'profile_new_users_password' => 'Hii inahitaji unapounda jina la mtumiaji mpya na itakuwa nenosiri ya mtumiaji. Unapaswa kumwarifu mtumiaji wako mpya kubadilisha nenosiri yake baada ya kuingia katika tovuti hii kwa mara ya kwanza.', + 'profile_notify' => 'Kuchagua NDIO kutakuwezesha kupata arifa kupitia barua pepe iwapo ripoti mpya au maoni mapya yamewekwa kwenye tovuti yako.', + 'profile_password' => 'Nenosiri yako ya sasa. Unahitajika kuingiza nenosiri yako ili kuzuia mabadiliko yoyote yasiyoidhinishwa kwenye akaunti yako.', + 'profile_public' => 'Wasifu wako inaweza kuonekana na mtu yeyote katika mtandao ikiwa utaidhinisha chaguo hili. Hii pia ni njia rahisi ya kuonyesha ripoti ambayo umewasilisha, viingizi vyako, beji, na kadhalika, zote katika ukurasa mmoja.', + 'profile_public_url' => 'Hii ndiyo anwani ambapo wasifu wako kwa umma unaweza kupatikana.', + 'profile_username' => 'Jina lako la mtumizi haliwezi kubadilishwa.', + 'settings_access_level' => 'Viwango vya Kufikika hutumiwa kuzuia ufikikaji, hivi kwamba watu watafikia data ya sehemu ya fomu ya ubinafsishaji. Viwango vya juu vya ufikikaji vinaweza kufikia sehemu za ufikikaji vya viwango vya chini zaidi. Msimamizi Mkuu ana kiwango cha ufikikaji cha juu zaidi (100). Data ya umma inaonekana katika kiwango cha ufikikaji cha chini zaidi(0). Washiriki wana kiwango cha ufikaji cha 10. Msimamizi ana kiwango cha 90 cha difoti.', + 'settings_alert_email' => 'Hii ndio anwani ya barua pepe ambayo itatumiwa kutuma arifa za barua pepe.', + 'settings_allow_alerts' => 'Wakubalie watumiaji wajisajili kupokea arifa kupitia mtandao.', + 'settings_allow_clustering' => 'Hatua hii inaruhusu ripoti sawa kufungwa katika kitone kimoja kwenye ramani', + 'settings_allow_comments' => 'Wakubalie watumiaji kutoa maoni kuhusu ripoti kwenye tovuti kuu.', + 'settings_allow_feed' => 'Hatua hii itaruhusu mtawanyiko wa Habari za RSS kuonyeshwa kwenye tovuti kuu.', + 'settings_allow_reports' => 'Wakubalie watumiaji kuwasilisha habari kupitia fomu ya mtandao.', + 'settings_api_default_record_limit' => 'Idadi difoti ya rekodi zitakazochukuliwa kwa kila ombi la API', + 'settings_api_max_record_limit' => 'Idadi kuu ya rekodi zitakazochukuliwa kwa kila ombi la API', + 'settings_api_max_requests_per_ip' => 'Idadi kuu ya maombi ya API kwa kila anwani ya IP.', + 'settings_banner' => 'Kiashirio cha tovuti huonekana juu, pembeni mwa tovuti yako ikiwa inaingiliana na mandhari unayotumia. Ukubwa wa kiashirio hiki uliopendekezwa hutegemea mandhari unayotumia. Kumbuka kwamba hii itabadilisha anwani ya tovuti na wito uko juu ya ukurasa.', + 'settings_blocks_per_row' => 'Idadi ya safu wima zitakazoonyeshwa katika kila mstari.', + 'settings_cache_pages' => 'Wezesha au uwezushe ukurasa kufichika. Hatua hii inafanya kurasa kuonekana kwa kasi kwa kupunguza muda wa mwitikio. Tupendekeza matumizi ya mbinu ya kuficha ukurasa katika tovuti yenye shughuli nyingi ** Kumbuka kuwa ripoti zitarundikwa katika sehemu ya mbele ya tovuti kulingana na orodha uliyounda chini yake (Muda wa kudumu kwa kurasa fiche).', + 'settings_cache_pages_lifetime' => 'Weka muda ambao kurasa fiche zitadumu.', + 'settings_checkins' => 'Vipimio hivi huwezesha viingizi kwenye kifurushi chako. Hii aina ya ripoti iliyorahisishwa ambayo haibadilishwi kabla ya kupelekwa katika ukurasa mkuu hivyo inahitaji tovuti yako kusanidiwa kwa njia fulani. Unapowezesha vipimio hivi, hakikisha kuwa majira yako ya wakati yako kwenye mfumo wa UTC na madhari yako yanaingiliana na viingizi. Unapowezesha kipimio hiki, mandhari ya viingizi pekee yatatawezeshwa katika vipimio vyako vya mandhari au/viongezi.', + 'settings_configure_map' => 'Weka ramani ili ionyeshe eneo maalum.', + 'settings_default_category_colors' => 'Weka nenosiri moja ya rangi kwa vikundi vyote kwenye tovuti.', + 'settings_default_category_icons' => 'Weka ikoni moja kwa vikundi nyote kwenye tovuti.', + 'settings_default_location' => 'Hii ndiyo nchi ambapo tovuti inafurushwa.', + 'settings_display_contact' => 'Washa au uzime Kichupo cha Mawasiliano kwenye tovuti kuu.', + 'settings_display_howtohelp' => 'Washa au uzime Kichupo Usaidizi kwenye tovuti kuu.', + 'settings_display_items_per_page' => 'Hii ndiyo idadi ya ripoti zinazoonyeswa kwa kila ukurasa kwenye tovuti kuu.', + 'settings_display_items_per_page_admin' => 'Hii ni idadi ya ripoti zinazoonyeswa kwa kila ukurasa kwenye Pembe ya Nyuma ya msimamizi.', + 'settings_flsms_download' => 'Hiki ndicho kitovu cha arifa zinazoingia.', + 'settings_flsms_synchronize' => 'Hii huunganosha arifa zilizo kwenye kitovu na jukwaa la Ushahidi.', + 'settings_flsms_text_1' => 'Nambari za simu ambazo zitatumika kupokea arifa.', + 'settings_google_analytics' => 'Hufuatilia watu wanaozuru tovuti yako. Pata takwimu za kina za mgeni.', + 'settings_locale' => 'Huweka lugha itakayotumika kwenye tovuti.', + 'settings_manually_approve_users' => 'Ukiweka chaguo hili kuwa ndio, ni sharti kuidhinisha kila mtumiaji atakayeunda akaunti kwenye tovuti yako kwa kumpatia majukumu (yaani Mshiriki, Msimamizi, Msimamizi Mkuu).', + 'settings_map_provider' => 'Hii inabaini ramani itakayotumika kwenye tovuti.', + 'settings_map_timeline' => 'Hii inaonyesha mkondo wa wakati kulingana na tarehe na wakati ripoti iliwasilishwa.', + 'settings_private_deployment' => 'Ukiweka kadirio hili kuwa kweli au ndio, kifurushi chako kitafanywa siri hivi kwamba watumiaji wenye akaunti ulizochagua wataweza kukifikia kifurushi hiki.', + 'settings_require_email_confirmation' => 'Watumiaji watapata barua pepe yenye kiunganishi cha kuthibitisha ili kubonyeza kabla ya kuruhusiwa kuingia katika kifurushi iwapo sehemu hii itawekwa kuwa ndio. Iwapo utawezesha sehemu hii baada ya kifurushi chako kukubali watumiaji, wataongozwa kuthibitisha akaunti zao kabla ya kuruhusiwa kuendelea kuzitumia.', + 'settings_server_host' => 'Hapa ndipo barua pepe huwekwa', + 'settings_server_password' => 'Hii ndiyo neno siri ya anwani ya barua pepe inayopokea ripoti.', + 'settings_server_port' => 'Hii inahitajika ili kukubali miunganisho inayoingia kutoka mwa anwani ya barua pepe.', + 'settings_server_ssl_support' => 'Hii inahitajika ili kuhakikisha miunganisho salama.', + 'settings_server_type' => 'Hii inahitajika ili kurejesha barua pepe kutoka kwa seva kuu.', + 'settings_server_username' => 'Hii ndiyo anwani ya barua pepe inayopokea ripoti.', + 'settings_share_site_stats' => 'Takwimu za idadi ya watu waliosoma arifa huhifadhiwa katika seva inayosimamiwa na Ushahidi. Kwa kuwezesha chaguo hili, unaweza kufikia takwimu hizi moja kwa moja katika paneli yako ya msimamizi. Kwa kuiwezusha, utakoma kukusanya takwimu hivyo hautaweza kurejesha takwimu za mkondo uliokusanywa wakati chaguo hili lilikuwa limezimwa.', + 'settings_site_copyright_statement' => 'Je, wengine wana haki ya kuchapisha upya ujumbe, picha, video na /au mandhari ambayo wewe na watumiaji wako mliunda? Nenda kwa https://creativecommons.org/choose/ iwapo una nia ya kubainisha kile wengine wanaweza kufanya katika kazi yako. Kumbuka kubaini vipengele vya tovuti yako unavyoidhinisha!', + 'settings_site_email' => 'Hii ndiyo anwani ya barua pepe itakayopokea ripoti ya barua pepe na ujumbe wa simu kutoka kwa fomu ya mawasiliano.', + 'settings_site_message' => 'Haya ndiyo maandishi yatakayotokea juu ya ramani katika ukurasa mkuu. Maandishi haya ni muhimu katika kuwapa wanaotembelea tovuti hii habari muhimu. Ili kuliondoa jedwali hili, futa ujumbe huu hapa.', + 'settings_site_name' => 'Hili ndilo jina la tovuti linalotokea juu ya tovuti kuu.', + 'settings_site_submit_report_message' => 'Huu ndio ujumbe utakaotokea katika ukurasa wa kuwasilisha ripoti. Ujumbe huu ni muhimu kwa kanusho au maelezo zaidi kwa wageni wako wanaowasilisha ripoti.', + 'settings_site_tagline' => 'Kwa maneno machache, eleza malengo ya tovuti hii.', + 'settings_site_timezone' => 'Haya ndiyo majira ya wakati ambayo tovuti yako itakuwa ikitumia. Majira haya huathiri hatua zozote ulizoweka zinazotumia saa na tarehe, na pia wakati uliopo wa difoti wa ripoti katika sehemu ya mbele na ya nyuma ya tovuti.', + 'settings_twitter_configuration' => 'Weka tagi ya heshi ya Twitter itakayotumiwa katika arifa.', +); diff --git a/application/i18n/sw_KE/ui_admin.php b/application/i18n/sw_KE/ui_admin.php new file mode 100755 index 0000000000..0edf58bf28 --- /dev/null +++ b/application/i18n/sw_KE/ui_admin.php @@ -0,0 +1,327 @@ + 'Haukubaliwi Kuingia. Aidha hati zako si sahihi au ombi lako limekataliwa', + 'access_denied_others' => 'Haukubaliwi Kuingia. Ombi lako limefahamika, lakini limekataliwa kwa sababu ya masharti kama wakati. Jaribu tena baadaye.', + 'access_level' => 'Ngazi ya Kufikika', + 'actions' => 'Hatua', + 'add_to_category' => 'Ongeza katika Kikundi', + 'added' => 'imeongezwa', + 'added_edited' => 'imeongezwa/imehaririwa', + 'addons' => 'Nyongeza', + 'admin_role' => 'Msimamizi', + 'alerts' => 'Arifa ', + 'alerts_received' => 'Arifa Zimepokelewa', + 'all' => 'Zote', + 'am' => 'ASUBUHI', + 'anonymous' => 'Bila jina', + 'anyone_role' => 'Mtu Yeyote', + 'anywhere' => 'Popote', + 'api_banned' => 'API Imeharamishwa', + 'api_logs' => 'Rekodi za API', + 'api_settings' => 'Vipimio vya API', + 'api_unban' => 'TOHARAMISHA', + 'api_unban_all' => 'TOHARAMISHA ZOTE', + 'approved' => 'imeidhinishwa', + 'approve_auto' => 'Idhinisha Kiatomatiki', + 'approve_manual' => 'Idhinisha Mwenyewe', + 'archived' => 'imehifadhiwa kinyaraka', + 'are_you_sure_you_want_to' => 'Una uhakika unataka ku', + 'are_you_sure_you_want_to_delete_this_item' => 'Una uhakika unataka kufuta kipengele hiki?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Una uhakika unataka kufuta picha hii?', + 'are_you_sure_you_want_to_switch_forms' => 'Una uhakika unataka kubadili fomu?', + 'assign' => 'Peana ', + 'assignments' => 'Mazoezi', + 'assign_badge' => 'Peana Beji', + 'author' => 'Mwandishi', + 'author_email' => 'Barua ya pepe ya Mwanidishi', + 'back' => 'Nyuma', + 'banip_action' => 'Haramisha IP', + 'between_times' => 'Katikati ya Nyakati', + 'blocks' => 'Vitalu', + 'body' => 'Maudhui', + 'cancel' => 'Ghairi', + 'categories' => 'Vikundi', + 'chart_display_error' => 'Kosa katika kuonyesha chati', + 'check_message_valid' => 'Tafadhali hakikisha kuwa ujumbe wako ni sahihi', + 'check_number' => 'Tafadhali hakikisha kuwa nambari ni sahihi', + 'check_sms_settings' => 'Tafadhali angalia vipimio vya SMS!', + 'checkin_details' => 'Maelezo ya Viingilio', + 'checkins' => 'Viingilio', + 'cities_loaded' => 'Miji imepakiwa', + 'code' => 'kificho', + 'code_out_of_sync' => 'Toleo la kificho halijasanidiwa', + 'color' => 'Rangi', + 'comments' => 'Maoni', + 'confirmation_code' => 'Kificho chako cha kuthibitisha arifa ni: ', + 'confirm_msg' => ' Mtumiaji Ame', + 'count' => 'Hesabu', + 'country_not_found' => 'Nchi haikupatikana', + 'created_edited' => 'Imeunda/Imehaririwa', + 'create_report' => 'Unda Ripoti', + 'critical_upgrade' => 'Uboreshaji Muhimu', + 'csv' => 'CSV', + 'currently_active' => 'Imewezeshwa kwa sasa', + 'currently_inactive' => 'Imewezuliwa kwa sasa', + 'custom_forms_insufficient_permissions' => 'Hauna kibali cha kutosha kuhariri sehemu zifuatazo za kubinafsisha.', + 'daily' => 'Kila siku', + 'dashboard' => 'Deshibodi', + 'database' => 'databesi', + 'date_time' => 'Tarehe & Wakati', + 'date_added' => 'Tarehe ya Kuongezwa', + 'date_modified' => 'Tarehe ya Kubadilishwa', + 'days_of_the_week' => 'Siku za Wiki', + 'db_out_of_sync' => 'Toleo la DB halijasanidiwa', + 'deleted' => 'zimefutwa', + 'delete_action' => 'Futa', + 'delete_all' => 'Futa ripoti zote', + 'delete_badge' => 'Futa Beji', + 'demo' => 'Onyesho', + 'description' => 'Maelezo', + 'disabled' => 'Imewezuliwa', + 'divider_start_field' => 'Mwanzo wa Kigawanyishi', + 'divider_end_field' => 'Mwisho wa Kigawanyishi', + 'divider_class' => 'div kikundi', + 'download_reports' => 'Pakua Ripoti', + 'dropdown_choices' => 'Chaguo za Vishusho', + 'edited' => 'IMEHARIRIWA', + 'edited_by' => 'Imehaririwa Na', + 'edit_action' => 'Hariri', + 'edit_log' => 'Hariri Jedwali', + 'email' => 'Barua pepe', + 'entire_collective' => 'Mkusanyiko Mzima', + 'error_geocoding' => 'Hitilafu katika geocoding! Hitilafu la HTTP', + 'error_imap' => 'Maktaba ya IMAP PHP hayajabandikwa', + 'error_twitter' => 'Hati tambulishi sio sahihi', + 'error_msg' => 'Hitilafu', + 'error_post_incident' => 'Hitilafu, hatukuweza kuchapisha katika Tukio', + 'every_six_hours' => 'Kwa Kila Saa 6', + 'every_twelve_hours' => 'Kwa Kila Saa 12', + 'experimental' => 'Majaribio', + 'faqs' => 'Maswali yanayoulizwa Mara Nyingi', + 'feed' => 'tawanyiko', + 'feedback' => 'Majibu', + 'feeds' => 'tawanyiko', + 'field_choices' => 'Orodha ya Chaguo', + 'field_default' => 'Kikadirio Difoti', + 'field_datatype' => 'Aina ya Data', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Ashirio', + 'field_datatype_numeric' => 'ya Nambari', + 'field_datatype_text' => 'Ujumbe Usiolipiwa', + 'field_height' => 'Urefu (kwa mistari)', + 'field_hidden' => 'Sehemu Fiche', + 'field_maxlength' => 'Urefu Mkuu wa Herufi', + 'field_name' => 'Jina la Sehemu', + 'field_toggle' => 'Togoa', + 'field_toggle_no' => 'La', + 'field_toggle_yes_close' => 'Ndio, imefungwa kidifoti', + 'field_toggle_yes_open' => 'Ndio, Fungua kidifoti', + 'file_not_found_upload' => 'Haikupata faili iliyopakiwa', + 'file_open_error' => 'Haikuweza kufungua faili ili kuisoma', + 'form_not_exists' => 'Fomu Hiyo Haipatikani!', + 'forum' => 'Jukwaa', + 'free_text_field' => 'Sehemu ya Eneo la Ujumbe (Ujumbe Usiolipiwa)', + 'date_field' => 'Sehemu ya Tarehe', + 'radio_field' => 'Sehemu ya Vitufe vya Redio', + 'checkbox_field' => 'Sehemu ya Sandukutiki', + 'dropdown_field' => 'Sehemu ya Kushushia', + 'from' => 'Kutoka', + 'from_date' => 'Kutoka', + 'geonames_timeout' => 'Hitilafu ya Hatima ya Geonames', + 'get_help' => 'Pata usaidizi', + 'get_more_themes' => 'Pata mandhari zaidi', + 'get_more_plugins' => 'Pata vizibo zaidi', + 'header_actions' => 'Hatua', + 'header_add_edit' => 'Ongeza/Hariri', + 'header_email' => 'Barua pepe', + 'header_manage_users' => 'Dhibiti Watumiaji', + 'header_role' => 'Jukumu', + 'header_user' => 'Mtumiaji', + 'help' => 'usaidizi', + 'hourly' => 'Kila saa', + 'incident_feed' => 'Twanyiko la tukio kwa', + 'installer_info' => 'Folda ya kibandikizi ingalipo. Futa folda hii ya kibandikizi', + 'instance' => 'Mtajo', + 'instances' => 'Mitajo', + 'instance_details' => 'Maelezo ya Mtajo', + 'invalid_parameter' => 'Kigezo Kisicho Sahihi', + 'ip_address' => 'Anwani ya IP', + 'is_date' => 'Hii ni Sehemu ya Tarehe?', + 'ispublic_visible' => 'Ni Nani Anayeweza Kutazama Majibu', + 'ispublic_submit' => 'Ni Nani Anayeweza Kuwasilisha Majibu', + 'keyword' => 'Neno la kina', + 'keywords' => 'Maneno ya kina', + 'label_email' => 'Anwani ya barua pepe:', + 'label_full_name' => 'Majina kwa Kamili:', + 'label_password' => 'Nenosiri:', + 'label_role' => 'Jukumu:', + 'label_username' => 'Jina la mtumiaji', + 'layers' => 'Safu', + 'login_role' => 'Msimamizi', + 'logout' => 'aga', + 'logs' => 'Jedwali', + 'manage' => 'Dhibiti', + 'manage_roles' => 'Dhibiti Majukumu & Idhini', + 'manage_users' => 'Tazama Watumiaji', + 'manage_users_edit' => 'Ongeza/Hariri Watumiaji', + 'manage_public_listing' => 'Dhibiti Orodha yako ya Umma', + 'mark_as' => 'Ashiria kama', + 'marked_as_not_spam' => 'ashiria kama si spamu', + 'marked_as_spam' => 'ashiria kama spamu', + 'match_no_documents' => 'haikulingana na hati zozote', + 'message' => 'Ujumbe', + 'messages' => 'Ujumbe', + 'messages_laconica' => 'Ujumbe wa Laconica', + 'messages_twitter' => 'Ujumbe wa Twitter', + 'message_sent' => 'Ujumbe wako umetumwa!', + 'mhi' => 'MHI', + 'minute' => 'Dakika', + 'minutes' => 'Dakika', + 'missing_parameter' => 'Kigezo Kisichopatikana', + 'moderator' => 'Msimamizi', + 'modified' => 'imebadilishwa', + 'modify_timezone' => 'Badilisha Vipimio vya Majira ya Saa', + 'move_down_action' => 'songa chini', + 'move_up_action' => 'songa juu', + 'multiple_hosted_instances' => 'Mitajo Mingi Iliyoshikiliwa', + 'my_alerts' => 'Arifa Yangu', + 'my_checkins' => 'Viingilio vyangu', + 'my_profile' => 'Wasifu Wangu', + 'my_reports' => 'Ripoti Zangu', + 'my_votes' => 'Kura Zilizopigwa', + 'my_votes_up' => 'Chanya ', + 'my_votes_down' => 'Hasi', + 'name' => 'Jina', + 'new_alert' => 'Unda Arifa Mpya', + 'new_private' => 'Unda Ujumbe Mpya', + 'new_password' => 'Nenosiri Mpya', + 'no' => 'La', + 'none_category_explanation' => 'Hiki ni kikundi maalum ambacho hakitaonekana katika fomu ya kuwasilisha ripoti kwa watumiaji wanaowasilisha ripoti. Kikundi hutumika kushikilia ripoti zilizoachwa bila ripoti kufuatia kufutwa kwa kikundi.', + 'notification' => 'Arifa', + 'not_case_sensitive' => 'Hii haizingatii Ukubwa wa herufi', + 'not_found' => 'Haikupatikana', + 'no_data' => 'Hakuna data. Hakuna matokeo ya kuonyeshwa', + 'no_error' => 'Hakuna hitilafu', + 'no_result_display_msg' => 'Hakuna matokeo ya kuonyeshwa!', + 'of' => 'ya', + 'on_specific_count' => 'Kwa Idadi Maalum', + 'openids' => 'ya Kitambulisho Wazi', + 'page' => 'ukurasa', + 'pages' => 'kurasa', + 'page_not_found' => 'Ukurasa haukupatikana', + 'page_not_found_message_with_contact' => 'Samahani, ukurasa unaojaribu kutazama hauko hapa.

Je, ulifuata kiunganishi kutoka mahali pengine katika tovuti yetu?
Iwapo ulifika katika ukurasa huu kutoka mahali pengine katika tovuti yetu, tafadhali tujulishe ili tujikosoe.

Je, ulifuata kiunganishi kutoka katika tovuti nyingine?
Viunganishi kutoka tovuti nyingine vinaweza kupitwa na wakati au kuandikwa kimakosa. Tuarifu ulipotoka ili tujaribu kuwasiliana na tovuti hiyo nyingine ili turekebishe makosa.

Uliandika anwani mwenyewe?
Inawezekana uliiandika vibaya. Thibitisha kuwa umeiandika sahihi kabisa.

', + 'page_not_found_message' => 'Samahani, ukurasa unaojaribu kutazama haupo hapa.', + 'parameters_used' => 'Vigezo vilivyotumika', + 'password' => 'Nenosiri', + 'password_reset' => 'Weka Nenosiri tena', + 'password_reset_message_line_1' => 'Mpendwa ', + 'password_reset_message_line_2' => 'Tumepokea ombi la kuweka tena nenosiri ya ', + 'password_reset_message_line_3' => 'Ili kubadilisha nenosiri yako, tafadhali bonyeza kiunganishi hiki (au uinakili na kuiweka kwenye kivinjari chako)', + 'password_reset_message_line_4' => 'Kama ulivyoomba, nenosiri yako sasa imewekwa tena. Maelezo yako ni kama ifuatavyo.', + 'password_reset_subject' => 'Nenosiri ya Ushahidi imewekwa tena', + 'phone' => 'Simu', + 'please_select' => 'Tafadhali Chagua', + 'pm' => 'JIONI', + 'post_method_not_used' => 'Data haikutumwa kwa njia ya posta', + 'preview' => 'Hakikisho', + 'private_message' => 'Ujumbe', + 'private_messages' => 'Ujumbe wa kibinafsi', + 'private_sent' => 'Ujumbe wa Kibinafsi Umetumwa', + 'private_subject' => 'Mada', + 'private_to' => 'Kwa', + 'public_listing' => 'Orodha ya Umma', + 'qualifiers' => 'Vipitishaji', + 'read' => 'soma', + 'relevance' => 'Umuhimu', + 'report_title' => 'Kichwa cha ripoti', + 'report_date' => 'Tarehe ya Ripoti', + 'reporters' => 'Ripota', + 'reporter_levels' => 'Ngazi za Ripota', + 'reports' => 'Ripoti', + 'reputation' => 'Alama za Sifa', + 'required' => 'Inahitajika', + 'reset' => 'Weka tena', + 'response' => 'Mwitikio', + 'results' => 'Matokeo', + 'revoke' => 'Kataa', + 'riverid_exists_admin' => 'Barua pepe hii tayari ina akaunti inayosimamiwa na CrowdmapID. Mtumiaji atahitaji kutumia nenosiri ya Crowdmap aliyonayo ili kuingia.', + 'save_settings' => 'Hifadhi Vipimio', + 'search' => 'Tafuta', + 'search_reports' => 'Tafuta Ripoti', + 'searching_for' => 'inatafuta', + 'security_info_encryption_key' => 'Ufunguo fiche ungali umewekwa katika kikadirio difoti. Hatua hii si salama hivyo sharti ibadilishwe.', + 'security_info_https' => 'Tovuti hii inaendesha kupitia HTTP. Hii inafaa kuwekwa hadi HTTPS kwa sababu za kiusalama.', + 'security_info_instructions' => ' Maelekezo yanapatikana katika Wiki: ', + 'select_download_format' => 'Chagua miundo unayopendelea ya kupakua ripoti ', + 'select_field_type' => '--- Chagua Aina ya Sehemu ---', + 'select_item' => 'Tafadhali chagua kipengele', + 'select_trigger_before_response' => 'Ni sharti uchague Kichochezi kabla ya kuchagua Mwitikio', + 'select_trigger_before_qualifiers' => 'Ni sharti uchague Kichochezi kabla ya kubaini Vipitishaji', + 'sender' => 'Mtumaji', + 'send_to' => 'Imetumwa Kwa', + 'sent_from_website' => 'Huu ujumbe umetumwa kutoka kwa tovuti yako saa ', + 'server_time' => 'Wakati wa Seva', + 'settings' => 'Vipimio', + 'showing_page' => 'Inaonyesha ukurasa', + 'showing_results' => 'Inaonyesha matokeo', + 'shown' => 'imeonyeshwa', + 'special_category' => 'Kikundi Maalum', + 'special_category_explanation' => 'Hiki ni kikundi maalum ambacho hakitaonekana katika fomu ya kuwasilisha ripoti kwa watumiaji wanaowasilisha ripoti. Kikundi hiki hutumika pamoja na kipengele cha "Ripota Walioaminika"', + 'specific_area' => 'Eneo Maalum', + 'state' => 'Jimbo', + 'statistics' => 'Takwimu', + 'stats' => 'Takwimu', + 'stats_collection_error' => 'Takwimu Hazikufaulu Kukusanywa. Tafadhali jaribu baadaye.', + 'stats_collection_error_short' => 'Takwimu Hazikufaulu Kukusanywa.', + 'specific_days' => 'Siku Maalum', + 'subject' => 'Mada', + 'superadmin_role' => 'Msimamizi Mkuu', + 'task_performed' => 'Kazi imefanywa', + 'text_field' => 'Sehemu Ujumbe', + 'theme_name' => 'Jina', + 'title' => 'Dhibiti Watumiaji', + 'timeout' => 'Hitilafu ya Hatima', + 'to' => 'kwa', + 'total_records' => 'Jumla ya Rekodi', + 'to_date' => 'kwa', + 'translate_reports' => 'Tafsiri Ripoti', + 'trigger' => 'Chocheza', + 'triggering_user' => 'Chocheza Mtumiaji', + 'triggers' => 'Chocheza', + 'unapproved' => 'haijaidhinishwa', + 'unknown' => 'Haijulikani', + 'unknown_failure' => 'Hitilafu Isiyojulikana', + 'unread' => 'haijasomwa', + 'unsubscribe_message' => 'Hutotapokea arifa tena kutoka', + 'update_link' => ' Bonyeza hapa kuboresha Ushahidi sasa', + 'upgrade_ushahidi' => 'Boresha Ushahidi', + 'upgrade_ushahidi_status' => 'Boresha Hali ya Ushahidi', + 'upload_reports' => 'Pakia Ripoti', + 'user' => 'Mtumiaji', + 'users' => 'Watumiaji', + 'ushahidi' => 'Ushahidi ', + 'verified_unverified' => 'Imedhibitishwa/Haijathibitishwa', + 'verify_unverify' => 'Thibitisha/Tithibitisha', + 'version' => 'Toleo', + 'version_available' => ' iko tayari kuboresha.', + 'video_encoding' => 'Video ', + 'view_private' => 'Ujumbe wa kibinafsi', + 'view_site' => 'Tazama Tovuti', + 'view_report' => 'Tazama ripoti', + 'welcome' => 'Karibu, ', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Ndio', + 'your_search_for' => 'Tafuta', + 'delete_all_instructions' => 'Kubofya kitufe hapa chini kutafuta ripoti ZOTE kwa hifadhidata.Unafaa kutumia kitufe hicho kwa makini kwa maana operesheni hii haiwezi kutenguliwa.', + 'delete_all_backup' => 'Tunapendekeza uhifadhi hifadhidata yako mahala pengine kable ya kuendelea.', + 'delete_all_button' => 'Nina uhakika nataka kufuta ripoti z(y)ote %s kutoka kwa hifadhidata.', + 'delete_all_confirm' => 'Una uhakika unataka kufuta ripoti zote?', + 'delete_all_no_reports' => 'Hakuna ripoti za kufutwa.', + 'user_confirmed_account' => 'Akaunti iliyodhibitishwa?', +); diff --git a/application/i18n/sw_KE/ui_main.php b/application/i18n/sw_KE/ui_main.php new file mode 100755 index 0000000000..cd57a4e6c2 --- /dev/null +++ b/application/i18n/sw_KE/ui_main.php @@ -0,0 +1,620 @@ + 'Kuhusu ', + 'access' => 'Utumizi', + 'access_limits' => 'Kikomo cha utumizi', + 'account_name' => 'Jina la akaunti', + 'actions' => 'Viendo', + 'action_confirm' => 'Tendo hili haliezi kujitengua. Uko na hakika unataka kuendelea?', + 'activate' => 'Activate', + 'active' => 'Imewezeshwa', + 'add' => 'Engeza', + 'added_by' => 'Imeengezwa na', + 'additional_data' => 'Additional Data', + 'additional_reports' => 'Ripoti ziada', + 'add_edit' => 'Engeza/Badili', + 'add_field' => 'Engeza Uga', + 'add_language' => 'Engeza Lugha', + 'add_new' => 'Engeza Mpta', + 'add_new_category' => 'Engeza Jamii Mpya', + 'add_translation' => 'Engeza Tafsiri', + 'admin' => 'Usimamizi', + 'alerts' => 'Pata Tanabahisho', + 'alerts_alert_me' => 'Nitanabahishe kama ripoti imejazwa, au ikiwa:', + 'alerts_btn_send' => 'Hifadhi tanabahisho langu', + 'alerts_email' => 'anwani ya barua pepe:', + 'alerts_enter_email' => 'andika anwani ya barua pepe', + 'alerts_enter_mobile' => 'andika namba ya rununu, pamoja na namba ya nchi yako', + 'alerts_get' => 'Pata Tanabahisho', + 'alert_has_been' => 'Alert has been', + 'alerts_mobile_phone' => 'Simu ya rununu:', + 'alerts_place_spot' => 'Ama, eka alama kwa ramani ifuatayo, na tutakutanabahisha ripoti ikitungwa ndani ya kilomita 20.', + 'alerts_place_spot2' => 'If you can\'t find your location, please click on the map to pinpoint the correct location.', + 'alerts_rss' => 'Tawanyiko la RSS (andika anwani ifuatayo)', + 'alerts_select_city' => 'Chagua mji', + 'alerts_step1_select_city' => 'Hatua ya 1: Chagua mji au eneo:', + 'alerts_step2_send_alerts' => 'Hatua ya 2: Nitanabahishe kupitia:', + 'alerts_step3_select_catgories' => 'Step 3 (Optional): Select Categories', + 'alert_confirm_previous' => 'Thibitisha utanabahisho uliopita', + 'alert_saved' => 'Tanabahisho lako imehifadhiwa!', + 'all' => 'Zote', + 'allowed' => 'Imekubalika', + 'allowed_tags' => 'Tagi zinazokubaliwa za HTML: "%s".', + 'allowed_iframes' => 'Iframe zinakubaliwa tu kutoka: %s.', + 'all_categories' => 'Jamii zote', + 'all_time' => 'All Time', + 'and' => 'na', + 'api' => 'API', + 'approve' => 'Pitisha', + 'approved' => 'Imepitishwa', + 'approved_reports' => 'Ripoti zilizipitishwa', + 'approve_this_report' => 'Pitisha ripoti hii', + 'approximate' => 'Takriban', + 'archive' => 'Archive', + 'archived' => 'Archived', + 'ascending' => 'Ascending', + 'at' => 'kwa', + 'author' => 'Mwandishi', + 'auto_checkin' => 'Auto Checkin', + 'avg_reports_per_day' => 'Avg Reports Per Day', + 'awaiting_approval' => 'Zinasubiri kupitishwa', + 'awaiting_verification' => 'Zinasubiri kuthibitishwa', + 'badge' => 'Badge', + 'badges' => 'Badges', + 'badge_image' => 'Badge Image', + 'badge_image_upload_your_own' => 'Or you can upload your own badge image instead.', + 'badge_pack' => 'Badge Pack', + 'badge_select' => 'Select a Badge', + 'blog' => 'Blogu', + 'browse_profiles' => 'Browse Profiles', + 'cancel' => 'Ghairi', + 'categories' => 'Jamii', + 'category' => 'Jamii', + 'category_filter' => 'Kuchujio cha jamii', + 'category_has_been' => 'Hii jamii ime ', + 'category_name' => 'Jina la jamii', + 'change_date_range' => 'Change Date Range', + 'change_password' => 'Change Password', + 'change_picture' => 'Change My Picture', + 'choose' => 'Chagua', + 'choose_data_points' => 'Chagua pointi za data za kupakua', + 'choose_date_range' => 'Or choose your own date range', + 'choose_field_type' => 'Chagua aina ya uga', + 'cleanurl' => 'Clean URLs', + 'clear' => 'Ondoa', + 'clear_map' => 'Clear Map', + 'close' => 'Funga', + 'clusters' => 'mikusanyiko', + 'color' => 'Rangi', + 'comment' => 'Comment', + 'comments' => 'Fikira', + 'comment_details' => 'Maelezo ya fikira', + 'configuration_saved' => 'Vipimo vyako vimehifadhiwa!', + 'configure' => 'Sanidi', + 'confirm_email_successful' => 'You have successfully confirmed your email address! Please login below.', + 'confirm_email_successful_and_approval' => 'Umefanikiwa kudhibitsisha anwani yako ya barua pepe! Mtawala ataidhinisha akaunti yako kabla uingie', + 'confirm_email_failed' => 'Email confirmation failed! You can request a new email confirmation below.', + 'contact' => 'Wasilana na sisi', + 'contact_code' => 'Ishara ya usalama', + 'contact_email' => 'Your Email Address', + 'contact_message' => 'Ujumbe', + 'contact_message_has_send' => 'Your Message Has Been Sent!', + 'contact_name' => 'Your Name', + 'contact_phone' => 'Your Phone Number', + 'contact_send' => 'Send Message', + 'contact_subject' => 'Message Subject', + 'copyright' => 'Copyright ©', + 'create' => 'Tengeneza', + 'create_edit' => 'Tengeneza/Badili', + 'create_new' => 'Tengeneza mpya', + 'create_new_password' => 'Create New Password', + 'create_report' => 'Tengeneza ripoti', + 'credibility' => 'Uaminifu', + 'current_password' => 'Current Password', + 'custom_fields' => 'Custom Fields', + 'data' => 'Maarifa', + 'date' => 'Tarehe', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => 'Tarehe & Wakati', + 'day' => 'day', + 'deactivate' => 'Deactivate', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Futa', + 'deleted' => 'Imefutwa', + 'deletes' => 'Zimefutwa', + 'delete_disabled' => 'Kufuta haijawezeshwa', + 'delete_last' => 'Delete Last', + 'delete_report' => 'Futa ripoti hii', + 'delete_selected' => 'Delete Selected', + 'delete_spam' => 'Futa Spam', + 'demo' => 'Sampuli', + 'description' => 'Maelezo', + 'descending' => 'Descending', + 'detailed_location_example' => 'Example: Corner of City Market, 5th Street & 4th Avenue, Johannesburg', + 'details' => 'Maelezo', + 'direct_report' => 'Ripoti moja kwa moja', + 'disabled' => 'Wezua', + 'disapprove' => 'Guna', + 'download_reports' => 'Pakua ripoti', + 'download' => 'Download', + 'edit' => 'Badili', + 'edit_form_fields' => 'Badili uga za fomu', + 'edit_report' => 'Badili ripoti', + 'email' => 'Barua pepe', + 'email_address' => 'Anwani ya barua pepe', + 'email_configuration' => 'Vipimo vya Mail Server', + 'email_server_host' => 'Host ya Mail Server', + 'email_server_password' => 'Nywila ya Mail Server', + 'email_server_port' => 'Port ya Mail Server', + 'email_server_ssl_support' => 'SSL ya Mail Server', + 'email_server_type' => 'Aina ya Mail Server', + 'email_server_username' => 'Jina la mtumizi wa Mail Server', + 'email_settings_comment_0' => 'kwahivyo vipimo vyako vitahusishwa na anwani ya barua pepe hiyo', + 'email_settings_comment_00' => 'Ili uweze kupata ripoti kwa barua pepe, tafadhali weka vipimo vya akaunti yako ya barua pepe kwa nafasi ifuatayo. Tafadhali kumbuka kuwa zitatumwa kwa', + 'email_settings_comment_1' => 'Server zengine zinahitaji anwani ya barua pepe kamili', + 'email_settings_comment_2' => 'Nywila ya akaunti ya barua pepe', + 'email_settings_comment_3' => 'Port za kawaida: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Mifano: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Mifano: pop3, imap', + 'email_settings_comment_6' => 'Wezezesha au wezua SSL', + 'empty' => '---EMPTY---', + 'end_point' => 'kwa', + 'error' => 'Kosa!', + 'example' => 'Mfano', + 'example_country' => 'Kenya', + 'external_apps' => 'External Apps', + 'external_video_link' => 'External Video Link', + 'facebook' => 'Facebook', + 'feed' => 'Tawanyiko', + 'feedback' => 'Tujibishe', + 'feeds' => 'Tawanyiko', + 'feed_has_been' => 'Tawanyiko', + 'feed_items' => 'Vipengele vya tawanyiko', + 'feed_name' => 'Jina la tawanyiko', + 'feed_url' => 'Anwani ya tawanyiko', + 'field_unused' => 'Uga isiyotumika', + 'file' => 'Faili', + 'file_over_max_allowed' => 'Your file is over the maximum allowed filesize.', + 'filters' => 'Chujio', + 'filter_reports' => 'Filter Reports', + 'filter_reports_by' => 'Filter Reports By', + 'filter_reports_contain' => 'Filter reports that contain', + 'find' => 'Tafuta', + 'find_location' => 'Pata eneo', + 'first_name' => 'Jina la kwanza', + 'force_run_scheduler' => 'Force Run Scheduler', + 'forgot_password' => 'Umesahau nywila?', + 'form' => 'Fomu', + 'forms' => 'Fomu', + 'form_description' => 'Elezo la fomu', + 'form_edit' => 'Badili Fomu', + 'form_has_been' => 'Fomu', + 'form_title' => 'Jina la fomu', + 'from' => 'Kutoka', + 'full_name' => 'Majina kwa kamili', + 'geolocation_available' => 'GeoLocation Imewezeshwa', + 'geometry_color' => 'Rangi', + 'geometry_comments' => 'Fikira', + 'geometry_label' => 'Label', + 'geometry_strokewidth' => 'Stroke Width', + 'go' => 'Go', + 'hashtag' => 'Hashtag', + 'has_been' => 'Imesha', + 'help' => 'Usaidizi', + 'hidden' => 'Hidden', + 'hide' => 'Hide', + 'hide_this_message' => 'Ficha huu ujumbe', + 'home' => 'Nyumbani', + 'how_to_report' => 'Vipi kuripoti', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'Used to identify you on the site to other users.', + 'image' => 'Picha', + 'images' => 'Images', + 'image_icon' => 'Picha/Ikoni', + 'inactive' => 'Inactive', + 'inbox' => 'Inbox', + 'incident' => 'Tukio', + 'incidents_nearby' => 'Tukio zilizo karibu', + 'incident_location' => 'Eneo la tukio', + 'include' => 'Engeza', + 'include_categories' => 'Engeza Jamii', + 'include_custom_fields' => 'Include Custom Fields', + 'include_description' => 'Engeza maelezo', + 'include_detail' => 'Engeza tarifa zozote ziwezekanazo', + 'include_latitude' => 'Engeza Latitudo', + 'include_location_information' => 'Engeza maarifa ya eneo', + 'include_longitude' => 'Engeza Longitudo', + 'include_personal_info' => 'Include Personal Information', + 'incoming_media' => 'Media inayoingia', + 'information_evaluation' => 'Tathmini ya maarifa', + 'input_location' => 'Andika sehemu yako sahihi', + 'insufficient_role' => 'Your account doesn\'t have the proper permission to fully log you in. Please contact the administrator.', + 'in_response_to' => 'Kwa kujibisha', + 'ip_address' => 'Anwani ya IP', + 'is_this_your_profile' => 'Is this your profile?', + 'item' => 'kipengele', + 'items' => 'vipengele', + 'item_details' => 'Maarifa ya vipengele', + 'item_title' => 'Jina la kipengele', + 'key' => 'Key', + 'keywords' => 'Keywords', + 'kml_kmz_file' => 'Faili ya KMZ/KML', + 'kml_kmz_upload' => 'Pakia Faili ya KMZ/KML', + 'kml_url' => 'Anwani ya KML', + 'laconica' => 'Laconica', + 'language' => 'Lugha', + 'last' => 'Mwisho', + 'last_month' => 'Mwezi uliopita', + 'last_name' => 'Jina la mwisho', + 'last_year' => 'Mwaka uliopita', + 'latitude' => 'Latitudo', + 'layers' => 'Leya', + 'layers_filter' => 'Leya zenginezo', + 'layer_has_been' => 'Leya', + 'layer_name' => 'Jina la leya', + 'layer_url' => 'Anwani ya leya', + 'leave_a_comment' => 'Leave a Comment', + 'less_information' => 'Less Information', + 'level' => 'Gredi', + 'level_has_been' => 'Hii Gredi', + 'level_name' => 'Jina la gredi', + 'limited' => 'Imekadirika', + 'link' => 'Kiungo', + 'list' => 'Orodha', + 'loading_reports' => 'Loading Reports', + 'location' => 'Eneo', + 'locations' => 'Eneo', + 'location_example' => 'Mji, Daula na/au Nchi', + 'login' => 'Ingia', + 'login_account_creation_successful' => 'Account created successfully. You may log in now.', + 'login_confirmation_sent' => 'A confirmation has been sent to your email address.', + 'login_approval_required' => 'Akaunti imeundwa. Akaunti yako lazima iidhinishwe na mtawala kabla uweze kuingia.', + 'login_email_doesnt_exist' => 'Email address doesn\'t exist. Try a different address or create an account.', + 'login_select_openid' => 'Please click your account provider', + 'login_with' => 'Login with', + 'login_userpass' => 'Email and Password', + 'login_openid' => 'OpenID', + 'login_signup' => 'Sign Up', + 'login_signup_click' => 'Create an Account', + 'login_signup_confirmation_message' => '%1$s%2$s', + 'login_signup_confirmation_subject' => 'Signup Confirmation', + 'login_signup_admin_approval_message' => 'Mtumiaji mpya amejisajiri kwa %1$s. Kuidhinisha kujiandikisha kwake tafadhali enda kwa KISARA: %2$s', + 'login_signup_admin_approval_subject' => 'Idhini ya mtumiaji mpya', + 'login_signup_approval_message' => 'Akaunti yako ya mtumiaji imeidhinishwa kwa %1$s. Kuingia enda kwa KISARA kifuatacho: %2$s', + 'login_signup_approval_subject' => 'Akaunti ya mtimiaji imeidhinishwa', + 'login_signup_text' => 'Create an account now to take advantage of more features on the site.', + 'longitude' => 'Longitudo', + 'map' => 'Ramani', + 'mark_read' => 'Athirisha kuwa imesomwa', + 'mark_unread' => 'Athirisha kuwa haijasomwa', + 'maximum_filesize' => 'Maximum filesize', + 'media' => 'Media', + 'media_filter' => 'Chujio la Media', + 'members' => 'Members', + 'manage_your_account' => 'Manage Your Account', + 'message' => 'Ujumbe', + 'messages' => 'Ujumbe', + 'message_details' => 'Elezo la ujumbe', + 'message_non_numeric_source' => 'Message from a non-numeric source:', + 'mobile' => 'Mobile', + 'modify' => 'Badilisha', + 'modify_date' => 'Tarehe ya kubadilisha', + 'month' => 'month', + 'more' => 'Zaidi', + 'more_information' => 'More Information', + 'multi_country_instance' => 'Je Ushahidi hii imetumika kwa nchi nyingi?', + 'must_confirm_email_address' => 'You must confirm your email address to access this deployment. If you lost your confirmation email, you can request a new one below.', + 'name' => 'Jina', + 'nearby_report' => 'Nearby Report', + 'new' => 'Mpya', + 'news' => 'Habari', + 'news_feeds' => 'Tawanyiko la habari', + 'news_source' => 'Asili ya habari', + 'new_category' => 'Jamii mpya', + 'new_password' => 'Nywila mpya', + 'new_report' => 'Repoti mpya', + 'next' => 'Mbele', + 'no' => 'La', + 'no_checkins' => 'No checkins to display.', + 'no_data' => 'No data', + 'none' => 'None', + 'notices' => 'Notisi', + 'not_approved' => 'Haijapitishwa', + 'not_approved_singular' => 'Haijapitishwa', + 'not_selected' => '---Not Selected---', + 'not_spam' => 'Si spam', + 'not_specified' => 'Not Specified', + 'no_reports' => 'There are no reports', + 'no_results' => 'Hakuna matokeo', + 'off' => 'Off', + 'official_news' => 'Habari rasmi', + 'on' => 'On', + 'option' => 'Chaguo', + 'optional' => 'Hiari', + 'options' => 'Chaguo', + 'organization' => 'Shirika', + 'organizations' => 'Mashirika', + 'organization_description' => 'Maelezo ya shirika', + 'organization_email' => 'Barua pepe ya shirika', + 'organization_has_been' => 'Shirika', + 'organization_name' => 'Jina la shirika', + 'organization_phone_1' => 'Simu ya kwanza ya shirika', + 'organization_phone_2' => 'Simu ya pili ya shirika', + 'organization_website' => 'Tovuti ya shirika', + 'original' => 'Awali', + 'original_description' => 'Elezo la awali', + 'original_title' => 'Jina la awali', + 'other_ushahidi_instances' => 'USHAHIDI ZENGINE', + 'outbox' => 'Outbox', + 'outgoing' => 'Zinazotoka', + 'page' => 'Kurasa', + 'pages' => 'Kurasa', + 'page_description' => 'Maelezo ya kurasa', + 'page_has_been' => 'Kurasa', + 'page_tab_name' => 'Jina la sehemu ya kurasa', + 'page_title' => 'Jina la kurasa', + 'parent_category' => 'Jamii mzazi', + 'password' => 'Nywila', + 'password_again' => 'Rudia kuandika nywila', + 'password_changed_successfully' => 'Password changed successfully! Login below.', + 'password_forgot' => 'Umesahau nywila?', + 'password_reset_confirm' => 'Angalia barua pepe zako kupata nywila mpya.', + 'password_save' => 'Bakia ukiwa umeingia kwa akaunti yako?', + 'past_month' => 'Mwezi uliopota', + 'past_year' => 'Mwezi ulipita', + 'pending' => 'Inasubiri', + 'per' => 'per', + 'personal_information' => 'Maarifa ya kibinafsi Hiari.', + 'phone' => 'Simu', + 'photos' => 'Picha', + 'pictures' => 'Picha', + 'pictures_and_videos' => 'Picha na video', + 'pinpoint_location' => '* Search for your location using a location name OR latitude,longitude coordinates (format: 38.19, 85.61), OR click on the map to pinpoint the correct location.', + 'play' => 'Cheza', + 'please_note' => 'Tafadhali kumbuka', + 'plugins' => 'Plugins', + 'plugin_url' => 'Plugin Website', + 'public_profile' => 'Public Profile', + 'public_profile_url' => 'Public Profile URL', + 'preview' => 'Hakikisho', + 'preview_item' => 'Hakikisha kipengele', + 'preview_message' => 'Hakikisha ujumbe', + 'previous' => 'Iliopita', + 'private' => 'Private', + 'profile_color' => 'Profile Color', + 'profile_saved' => 'Umbo lako limehifadhiwa', + 'quick_stats' => 'Takwimu za haraka', + 'rating' => 'Uzani', + 'read' => 'Soma', + 'receive' => 'Pokea', + 'receive_from' => 'Pokea fomu', + 'receive_notifications' => 'Pokea uonyo', + 'recent_reports' => 'Ripoti za hivi karibuni', + 'refresh_news_feeds' => 'Zirudie tawanyiko', + 'registered_email' => 'Registered Email', + 'remove' => 'ondoa', + 'reply' => 'Jibu', + 'report' => 'Ripoti', + 'reports_listed' => 'Reports (from the map, listed in chronological order)', + 'reporter' => 'Alieripoti', + 'reporters' => 'Walioripoti', + 'reporter_date' => 'Tarehe ya alieripoti', + 'reporter_email' => 'Anwani ya barua pepe ya alieripoti', + 'reporter_first_name' => 'Jina la kwanza la alieripoti', + 'reporter_has_been' => 'Alieripoti', + 'reporter_ip' => 'Anwani ya IP ya alieripoti', + 'reporter_last_name' => 'Jina la mwisho la alieripoti', + 'reporter_level' => 'Gredi ya alieripoti', + 'reporter_levels' => 'Gredi ya aliyeripoti', + 'reporter_phone' => 'Namba ya simu ya alieripoti', + 'reports' => 'Ripoti', + 'reports_btn_browse' => 'Vinjari', + 'reports_btn_submit' => 'Pitisha', + 'reports_by_this_user' => 'Reports By This User', + 'reports_categories' => 'Jamii', + 'reports_count' => '%d', + 'reports_date' => 'Tarehe', + 'reports_description' => 'Maelezo', + 'reports_download_csv' => 'Ripoti itapakuliwa kwa njia ya CSV', + 'reports_email' => 'Barua pepe', + 'reports_features' => 'Features', + 'reports_find_location' => 'Tafuta eneo karibu yako', + 'reports_first' => 'Jina la kwanza', + 'reports_last' => 'Jina la mwisho', + 'reports_location_name' => 'Titta jina la eneo', + 'reports_news' => 'Kiungo cha asili ya habari', + 'reports_optional' => 'Maelezo ya hiari', + 'reports_photos' => 'Pakia picha', + 'reports_return' => 'Rudia kurasa ya ripoti', + 'reports_select_city' => 'Chagua mji', + 'reports_submitted' => 'Ripoti yako imetungwa na wafanyakazi wetu wataipitia. Tutakurudia punde si punde kama inahitajika.', + 'reports_submit_new' => 'Tunga ripoti mpya', + 'reports_time' => 'wakati', + 'reports_timeline' => 'Wakati', + 'reports_title' => 'Jina la ripoti', + 'reports_video' => 'Kiungo cha video', + 'report_an_incident' => 'Ripoti tukio', + 'report_details' => 'Maelezo ya ripoti', + 'report_option_1' => 'Kwa kutuma ujumbe kwa', + 'report_option_2' => 'Kwa kutuma barua pepe kwa', + 'report_option_3' => 'Kwa kutuma tweet na hashtag/s', + 'report_option_4' => 'Kwa kujaza fomu', + 'report_option_external_apps' => 'By using an app', + 'report_saved' => 'Ripoti yako imehifadhiwa', + 'report_title' => 'Jina la ripoti', + 'request_information' => 'Omba maelezo zaidi', + 'request_location' => 'Omba eneo', + 'required' => 'Inahitajika', + 'requirements' => 'Mahitaji', + 'resend_confirm_email' => 'Resend Confirmation Email', + 'reset' => 'Reset', + 'reset_all_filters' => 'Reset all filters', + 'reset_password' => 'Rudia nywila', + 'retrieve_city_names' => 'Pata majina ya miji ya nchi iliochaguliwa', + 'riverid_information' => '%s', + 'riverid_exists_login' => 'You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login.', + 'role' => 'Jukumu', + 'rss' => 'RSS', + 'save' => 'Hifadhi', + 'saved' => 'Imehifadhika', + 'save_add_new' => 'Save & Add New', + 'save_close' => 'Hifadhi & Funga', + 'save_report' => 'Hifadhi ripoti', + 'schedule' => 'Schedule', + 'scheduler' => 'Scheduler', + 'scheduler_day' => 'Day', + 'scheduler_hour' => 'Hour', + 'scheduler_log' => 'Scheduler Log', + 'scheduler_minute' => 'Minute', + 'scheduler_weekday' => 'Day of the Week', + 'search' => 'TAFUTA', + 'search_results' => 'Matokeo ya kutafuta', + 'security_code' => 'Ishara ya usalama', + 'select_all' => 'Chagua zote', + 'select_field_type' => 'Chagua aina ya uga', + 'select_form_type' => 'Chagua aina ya fomu', + 'select_in_map' => 'Chagua kwa ramani', + 'select_multiple' => 'Chagua nyingi iwezekanavo', + 'select_one' => 'Tafadhali thibitisha umetiki kipengele', + 'select_theme' => 'Chagua mandhari', + 'send' => 'Tuma', + 'send_confirmation' => 'Send Confirmation', + 'sending_to' => 'Tuma kwa', + 'sent' => 'Imetumwa', + 'sent_by' => 'Imetumwa na', + 'server_address' => 'Anwani ya server', + 'server_type' => 'Aina ya server', + 'service' => 'Huduma', + 'service_username' => 'Jina la mtumizi wa huduma', + 'service_user_id' => 'User ID ya huduma', + 'share' => 'Shiriki', + 'shared_data' => 'Data ilioshirikishwa', + 'share_has_been' => 'Ushirikiano', + 'sharing' => 'Kushiriki', + 'shorter_map' => 'Shorter Map', + 'show' => 'Onyesha', + 'show_all' => 'Onyesha zote', + 'show_messages' => 'Show Messages', + 'showing_reports_from' => '%1$s%2$s', + 'site' => 'Tovuti', + 'site_email_address' => 'Anwani ya barua pepe ya tovuti', + 'site_url' => 'Anwani ya tovuti', + 'smaller_map' => 'Smaller Map', + 'sms' => 'Ujumbe mfupi', + 'sorry_no_badges' => 'Sorry, you do not have any badges.', + 'source' => 'Asili', + 'source_name' => 'Jina la asili', + 'sort' => 'Sort', + 'sort_by' => 'Sort By', + 'source_url' => 'Anwani ya asili', + 'spam' => 'Spam', + 'ssl_support' => 'Inatumia SSL?', + 'start_point' => 'Kutoka', + 'step' => 'Hatua', + 'submit' => 'Tunga tukio', + 'submitted_by' => '%1$s%2$s', + 'submit_sms' => 'Tunga kupitia SMS', + 'submit_sms1' => 'Tuma SMS yako kwa', + 'submit_sms2' => 'kwenye simu yako', + 'success' => 'Success!', + 'successfuly_imported' => 'Imefanikiwa kuingiza', + 'surname' => 'Jina la mwisho', + 'survey' => 'Survey', + 'system' => 'System', + 'taller_map' => 'Taller Map', + 'tcp_port' => 'Port ya TCP', + 'themes' => 'Mandhari', + 'theme_default' => 'Mandhari ya Ushahidi ya awali', + 'theme_settings' => 'Vipimo vya mandhari', + 'this' => 'Hii', + 'this_day' => 'Leo', + 'this_month' => 'Mwezi huu', + 'this_week' => 'This Week', + 'this_year' => 'Mwaka huu', + 'this_is_your_profile' => 'This is your profile.', + 'time' => 'wakati', + 'title' => 'JINA ', + 'to' => 'kwa', + 'today' => 'Leo', + 'today_at' => 'Leo saa', + 'token' => 'Token', + 'total_reports' => 'Total Reports', + 'translated' => 'Imetafsiriwa', + 'translated_description' => 'Maelezoo yaliotafsiriwa', + 'translated_title' => 'Jina liliotafsiriwa', + 'translate_to' => 'Tafsiri kwa', + 'translation' => 'Tafsiri', + 'translation_saved' => 'Tafsiri imehifadhiwa', + 'trusted' => 'Trusted', + 'type' => 'Type', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Unable to send email.', + 'uncategorized_reports' => 'Uncategorized Reports', + 'unread' => 'haijasomwa', + 'unverified' => 'Haijathabitishwa', + 'update_feeds' => 'Sasisha tawanyiko', + 'upload' => 'Pakia', + 'upload_guide' => 'View our report upload guides:-', + 'upload_docs_1' => 'XML Upload guide', + 'upload_docs_2' => 'CSV Upload guide', + 'upload_file' => 'Faili ya kupakiwa', + 'upload_reports' => 'Pakia ripoti', + 'upload_reports_custom_forms' => 'Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that', + 'upload_reports_detail_1' => 'Na fomu inayofuata, unaeza kuingiza tukio kwenye Ushahidi', + 'upload_reports_detail_2' => 'Reports must be uploaded in either CSV or XML format.', + 'upload_reports_detail_3' => 'When incident ID already exists in the database, the entry in the CSV/XML file will be ignored.', + 'upload_reports_detail_4' => 'Inafaa kuwa na angalau Jina la Tukio na Tarehe ya Tukio', + 'upload_reports_detail_4b' => 'If no latitude and longitude columns are supplied, the location will be geocoded using the Google Geocoder.', + 'upload_reports_detail_4c' => 'If importing additional info i.e personal information and/or custom form fields', + 'upload_reports_detail_4d' => 'At least one of the personal information fields(name, surname,email) entries MUST exist. Empty records will not be imported', + 'upload_reports_detail_4e' => 'Your entries for dropdown fields, radio buttons and checkboxes match the options provided for the custom field on your instance', + 'upload_reports_detail_4f' => 'Checkbox options are separated by a comma e.g if your selected choice of fruits is apples,mangoes and grapes, your entry for this should be "apples,mangoes,grapes"', + 'upload_reports_detail_4g' => 'Date field values are in the following format: mm/dd/yyyy e.g 3rd October 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Sampuli ya repoti ya CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Imefaulu kupakia', + 'upload_video' => 'Upload Video', + 'url' => 'URL', + 'user' => 'Mtumizi', + 'username' => 'Jina la mtumizi', + 'ushahidi_admin' => 'Meneja ya Ushahidi', + 'verification' => 'Verification', + 'verified' => 'Imethibitishwa', + 'verified_reports' => 'Ripoti zilothibitishwa', + 'verify' => 'Thibitisha', + 'verify_this_report' => 'Thibithisha ripoti hii', + 'version' => 'Toleo', + 'via' => 'via', + 'video' => 'Video', + 'view' => 'Angalia', + 'views' => 'Maoni', + 'view_all' => 'Angalia zote', + 'view_all_feeds' => 'Angalia tawanyiko zote', + 'view_all_reports' => 'Angalia ripoti zote', + 'view_items' => 'Angalia vipengee', + 'view_more' => 'View More', + 'view_public_profile' => 'View Public Profile', + 'view_report' => 'Angalia ripoti', + 'view_reports' => 'Angalia ripoti', + 'view_video' => 'View Video', + 'visible' => 'Inaonekana', + 'waiting_approval' => 'Inangojea kupitishwa', + 'waiting_verification' => 'Inangojea kuthibitishwa', + 'wider_map' => 'Wider Map', + 'web_form' => 'Web Form', + 'web' => 'Web', + 'weight' => 'Uzito', + 'yes' => 'Ndio', + 'yesterday' => 'Jana', + 'your_dashboard' => 'Your Dashboard', + 'your_file' => 'Your file', + 'zoom_in' => 'Zoom In', + 'zoom_out' => 'Zoom Out', +); diff --git a/application/i18n/sw_KE/upgrade.php b/application/i18n/sw_KE/upgrade.php new file mode 100755 index 0000000000..6031ed9ed6 --- /dev/null +++ b/application/i18n/sw_KE/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Invalid input data. It can either be 0 for No or 1 for Yes.', + ) , + 'upgrade_automatic' => 'Automatic Upgrade', + 'upgrade_available' => 'Available Updates', + 'upgrade_continue_btn_text' => 'Continue', + 'upgrade_db_btn_text' => 'Upgrade', + 'upgrade_db_text_1' => 'So, I\'m going to upgrade your database from version', + 'upgrade_db_text_2' => 'to the newest database version', + 'upgrade_db_text_3' => 'Click on the "Upgrade" button and just chillax as I perform the magic.', + 'upgrade_db_text_4' => 'Oh, also if you want me to backup your database, just tick the check button below and I will do that for you in a breeze.', + 'upgrade_db_text_5' => 'Backup database before upgrade? (Highly recommended)', + 'upgrade_db_title' => 'Ushahidi database upgrade', + 'upgrade_db_info' => '%s', + 'upgrade_db_up_to_date' => 'Your database version is up to date.', + 'upgrade_failed' => 'Upgrade failed at some point', + 'upgrade_manual' => 'Manual Upgrade', + 'upgrade_status' => 'Ushahidi upgrade status', + 'upgrade_text_1' => 'The instructions below detail how to manually upgrade your Ushahidi deploymentl', + 'upgrade_text_2' => '
Download
', + 'upgrade_text_3' => '
- Download the most recent Ushahidi build from', + 'upgrade_text_4' => '
Backup
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Just in case something goes wrong, it\'s recommended you make an entire backup of your Ushahidi deployment.
Copy files
- Extract the downloaded zip file
- Depending on the operating system running the web server, use your preferred tool/mode (e.g. Telnet, FTP, SSH) to login to the webserver and replace the contents of all the folders with the newest from the recent build.
Upgrde database
- First determine your database schema version by looking at the db_version value in the settings table or look at the Ushahidi upgrade information at the top of this page.
- If you are at version 25, you need to upgrade from 25-26, 26-27, 27-28 and so on up to the latest SQL file in your /sql directory.
- With your database client, upgrade the database by executing the appropriate upgradex-x.sql file.
', + 'upgrade_tables' => 'Step 3: Look inside the sql folder. Manuall run the upgrade-.sql file starting from the current db version of your install through to the final sql upgrade file.', + 'upgrade_text_5' => 'Step 4: Click on the "Continue" button to upgrade the necessary tables.', + 'upgrade_text_6' => 'For automatic upgrade, click on the button below.', + 'upgrade_title_text' => '%1$s%2$d%3$s', + 'upgrading' => 'Upgrading', + 'upgrade_ftp_text' => 'To continue with the easy upgrade, the following information is required for the FTP server that your website is hosted on.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Example: "localhost"', + 'upgrade_ftp_password' => 'FTP Password:', + 'upgrade_ftp_username' => 'FTP User Name:', + 'upgrade_status_info' => 'You have the latest version of Ushahidi.', + 'upgrade_status_info_2' => 'You do not need to upgrade.', + 'upgrade_db_version' => '%d', + 'upgrade_warning_software_version' => 'Warning: Software version in version.php and database do not match.', + 'upgrade_warning_db_version' => 'Warning: Database version in version.php and database do not match.', + 'upgrade_database' => 'Database:', + 'ushahidi_release_version' => '%s', + 'beta' => 'BETA!', + 'download' => 'Downloading latest version of ushahidi...', + 'log_file' => 'Log File', + 'successfully_downloaded' => 'Successfully Downloaded. Unpacking...', + 'failed_downloading' => 'Failed downloading.', + 'successfully_unpacked' => 'Successfully Unpacked. Copying files...', + 'failed_unpacking' => 'Failed unpacking.', + 'successfully_copied' => 'Successfully Copied. Upgrading Database...', + 'failed_copying' => 'Failed copying files.', + 'backup_success' => 'Database backup and upgrade successful.', + 'backup_failed' => 'Failed backing up database.', + 'dbupgrade_success' => 'Database upgrade successful.', + 'deleting_files' => 'Deleting downloaded files...', + 'upgrade_success' => '%s', +); diff --git a/application/i18n/te/alerts.php b/application/i18n/te/alerts.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/alerts.php @@ -0,0 +1,7 @@ + array( + 'riverid' => '%s', + ) , +); diff --git a/application/i18n/te/bug.php b/application/i18n/te/bug.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/bug.php @@ -0,0 +1,7 @@ + 'సహాయకుడు', + 'model' => 'నమూనా', + 'page_not_found' => 'మీరు అభ్యర్థించిన పేజీ, %s, దొరకలేదు', + 'resource_not_found' => 'అభ్యర్థించిన %s, %s, దొరకలేదు', + 'view' => 'వీక్షించు', +); diff --git a/application/i18n/te/database.php b/application/i18n/te/database.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/database.php @@ -0,0 +1,7 @@ + array( + 'abbv' => 'శుక్ర', + 'full' => 'శుక్రవారం', + ) , + 'monday' => array( + 'abbv' => 'సోమ', + 'full' => 'సోమవారం', + ) , + 'saturday' => array( + 'abbv' => 'శని', + 'full' => 'శనివారం', + ) , + 'sunday' => array( + 'abbv' => 'ఆది', + 'full' => 'ఆదివారం', + ) , + 'thursday' => array( + 'abbv' => 'గురు', + 'full' => 'గురువారం', + ) , + 'tuesday' => array( + 'abbv' => 'మంగళ', + 'full' => 'మంగళవారం', + ) , + 'wednesday' => array( + 'abbv' => 'బుధ', + 'full' => 'బుధవారం', + ) , + 'january' => array( + 'abbv' => 'జన', + 'full' => 'జనవరి', + ) , + 'february' => array( + 'abbv' => 'ఫిబ్ర', + 'full' => 'ఫిబ్రవరి', + ) , + 'march' => array( + 'abbv' => 'మార్చి', + 'full' => 'మార్చి', + ) , + 'april' => array( + 'abbv' => 'ఏప్రి', + 'full' => 'ఏప్రిల్', + ) , + 'may' => array( + 'abbv' => 'మే', + 'full' => 'మే', + ) , + 'june' => array( + 'abbv' => 'జూన్', + 'full' => 'జూన్', + ) , + 'july' => array( + 'abbv' => 'జూలై', + 'full' => 'జూలై', + ) , + 'august' => array( + 'abbv' => 'ఆగ', + 'full' => 'ఆగస్ట్', + ) , + 'september' => array( + 'abbv' => 'సెప్టెం', + 'full' => 'సెప్టెంబర్', + ) , + 'october' => array( + 'abbv' => 'అక్టో', + 'full' => 'అక్టోబర్', + ) , + 'november' => array( + 'abbv' => 'నవం', + 'full' => 'నవంబర్', + ) , + 'december' => array( + 'abbv' => 'డిసెం', + 'full' => 'డిసెంబర్', + ) , +); diff --git a/application/i18n/te/feeds.php b/application/i18n/te/feeds.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/feeds.php @@ -0,0 +1,7 @@ + array( + 'required' => 'మీరు ఒక అంశం ఎంపిక చేసినట్టు ధృవీకరించండి', + 'numeric' => 'మీరు ఒక అంశం ఎంపిక చేసినట్టు ధృవీకరించండి', + ) , + 'action' => array( + 'permission' => 'ఈ పని చేయడానికి మీకు అనుమతి లేదు', + ) , + 'uploadfile' => array( + 'required' => 'మీరు ఎక్కించడానికి ఏదో ఒక దస్త్రాన్ని ఎంచుకోవాలి', + 'type' => 'ఎక్కించే దస్త్రం .csv లేదా .xml అయి ఉండాలి', + 'valid' => 'దస్త్రం ఎక్కింపు స్థానంలో సరైన దస్త్రం ఉన్నట్టు కనిపించడం లేదు', + ) , +); diff --git a/application/i18n/te/roles.php b/application/i18n/te/roles.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/roles.php @@ -0,0 +1,7 @@ + array( + 'title' => 'సరైన URLs', + ) , +); diff --git a/application/i18n/te/sharing.php b/application/i18n/te/sharing.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/sharing.php @@ -0,0 +1,7 @@ + 'వర్గాలు', + 'countries' => 'దేశాలు', + 'country' => 'దేశం', + 'reports' => 'నివేదికలు', + 'time_range_1' => '1 నెల', + 'time_range_2' => '3 నెలలు', + 'time_range_3' => '6 నెలలు', + 'time_range_all' => 'అన్ని', +); diff --git a/application/i18n/te/tooltips.php b/application/i18n/te/tooltips.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/tooltips.php @@ -0,0 +1,7 @@ + 'చర్యలు', + 'alerts' => 'హెచ్చరికలు', + 'all' => 'అన్నీ', + 'anonymous' => 'అనామక', + 'anyone_role' => 'ఎవరైనా', + 'anywhere' => 'ఎక్కడైనా', + 'author' => 'రచయిత', + 'cancel' => 'రద్దుచేయి', + 'categories' => 'వర్గాలు', + 'color' => 'రంగు', + 'comments' => 'వ్యాఖ్యలు', + 'date_time' => 'తేదీ & సమయం', + 'delete_action' => 'తొలగించండి', + 'delete_all' => 'అన్ని నివేదికలు తొలగించండి', + 'description' => 'వివరణ', + 'edit_action' => 'మార్చు', + 'error_msg' => 'లోపం', + 'header_actions' => 'చర్యలు', + 'header_user' => 'వాడుకరి', + 'help' => 'సహాయం', + 'label_full_name' => 'పూర్తి పేరు:', + 'label_password' => 'సంకేతపదం:', + 'label_username' => 'వాడుకరి పేరు:', + 'login_role' => 'మధ్యవర్తి', + 'message' => 'సందేశం', + 'messages' => 'సందేశాలు', + 'messages_twitter' => 'ట్విట్టర్ సందేశాలు', + 'message_sent' => 'మీ సందేశం పంపబడింది !', + 'minute' => 'నిమిషం', + 'minutes' => 'నిమిషాలు', + 'moderator' => 'మధ్యవర్తి', + 'name' => 'పేరు', + 'new_password' => 'కొత్త సంకేతపదం', + 'no' => 'కాదు', + 'not_found' => 'దొరకలేదు', + 'no_error' => 'తప్పు లేదు', + 'page' => 'పేజీ', + 'pages' => 'పేజీలు', + 'password' => 'సంకేతపదం', + 'password_reset_message_line_1' => 'ప్రియమైన', + 'phone' => 'ఫోన్', + 'private_message' => 'సందేశం', + 'results' => 'ఫలితాలు', + 'settings' => 'అమరికలు', + 'statistics' => 'గణాంకాలు', + 'theme_name' => 'పేరు', + 'user' => 'వాడుకరి', + 'users' => 'వాడుకరులు', + 'ushahidi' => 'ఉషహీడీ', + 'welcome' => 'స్వాగతం,', + 'wiki' => 'వికీ', + 'yes' => 'అవును', +); diff --git a/application/i18n/te/ui_main.php b/application/i18n/te/ui_main.php new file mode 100644 index 0000000000..1ab7f08336 --- /dev/null +++ b/application/i18n/te/ui_main.php @@ -0,0 +1,181 @@ + 'గురించి', + 'account_name' => 'ఖాతా పేరు', + 'actions' => 'చర్యలు', + 'add' => 'చేర్చు', + 'additional_data' => 'అదనపు భోగట్టా', + 'additional_reports' => 'అదనపు నివేదికలు', + 'add_language' => 'భాషను చేర్చండి', + 'add_new' => 'కొత్తది చేర్చు', + 'alerts_email' => 'ఈమెయిలు చిరునామా:', + 'alerts_select_city' => 'ఒక నగరాన్ని ఎంచుకోండి', + 'alerts_step1_select_city' => 'మెట్టు 1: మీ నగరాన్ని లేదా ప్రాంతాన్ని ఎంచుకోండి:', + 'alerts_step2_send_alerts' => 'మెట్టు 2: అలెర్టులను ఎక్కడకు పంపించాలి:', + 'alerts_step3_select_catgories' => 'మెట్టు 3 (ఐచ్చికం): వర్గాలను ఎంచుకోండి', + 'all' => 'అన్నీ', + 'allowed' => 'అనుమతించినవి', + 'all_categories' => 'అన్ని వర్గాలు', + 'and' => 'మరియు', + 'api' => 'API', + 'approve' => 'ఆమోదించు', + 'approved' => 'ఆమోదించినది', + 'approximate' => 'రమారమి', + 'archive' => 'భాండాగారం', + 'blog' => 'బ్లాగు', + 'cancel' => 'రద్దుచేయి', + 'categories' => 'వర్గాలు', + 'category' => 'వర్గం', + 'close' => 'మూసివేయి', + 'color' => 'రంగు', + 'comment' => 'వ్యాఖ్య', + 'comments' => 'వ్యాఖ్యలు', + 'comment_details' => 'వ్యాఖ్య వివరాలు', + 'contact' => 'మమ్మల్ని సంప్రదించండి', + 'contact_email' => 'మీ ఈమెయిలు చిరునామా', + 'contact_message' => 'సందేశం', + 'contact_message_has_send' => 'మీ సందేశాన్ని పంపించాం!', + 'contact_name' => 'మీ పేరు', + 'contact_phone' => 'మీ ఫోను నెంబరు', + 'contact_send' => 'సందేశాన్ని పంపించు', + 'contact_subject' => 'సందేశ విషయం', + 'copyright' => 'కాపీహక్కులు ©', + 'create' => 'సృష్టించు', + 'create_edit' => 'సృష్టించు/మార్చు', + 'current_password' => 'ప్రస్తుత సంకేతపదం', + 'data' => 'సమాచారం', + 'date' => 'తేదీ', + 'date_time' => 'తేదీ & సమయం', + 'day' => 'రోజు', + 'default_location_name' => 'నైరోబీ, కెన్యా', + 'delete' => 'తొలగించు', + 'deleted' => 'తొలగించబడినది', + 'delete_last' => 'చివరిదాన్ని తొలగించు', + 'delete_selected' => 'ఎంచుకొన్నదాన్ని తొలగించు', + 'demo' => 'ప్రదర్శన', + 'description' => 'వివరణ', + 'details' => 'వివరాలు', + 'disabled' => 'అచేతనం', + 'email' => 'ఈమెయిలు', + 'email_address' => 'ఈమెయిలు చిరునామా', + 'empty' => '---ఖాళీ---', + 'error' => 'దోషం!', + 'example' => 'ఉదాహరణ', + 'example_country' => 'కెన్యా', + 'facebook' => 'ఫేస్‌బుక్', + 'file' => 'దస్త్రం', + 'find' => 'కనిపెట్టు', + 'find_location' => 'ప్రాంతాన్ని కనిపెట్టు', + 'first_name' => 'మొదటిపేరు', + 'form' => 'దరఖాస్తు', + 'forms' => 'దరఖాస్తులు', + 'from' => 'నుంచి', + 'full_name' => 'పూర్తి పేరు', + 'geometry_color' => 'రంగు', + 'geometry_comments' => 'వ్యాఖ్యలు', + 'go' => 'వెళ్ళు', + 'hidden' => 'దాచిన', + 'hide' => 'దాచిపెట్టు', + 'hide_this_message' => 'ఈ సందేశాన్ని దాచిపెట్టు', + 'home' => 'ముంగిలి', + 'how_to_report' => 'ఎలా నివేదించాలి', + 'image' => 'బొమ్మ', + 'images' => 'బొమ్మలు', + 'incident' => 'సంఘటన', + 'include' => 'చేర్చు', + 'include_categories' => 'వర్గాలని చేర్చు', + 'ip_address' => 'ఐపీ చిరునామా', + 'is_this_your_profile' => 'ఇది మీ ప్రవరా?', + 'keywords' => 'కీపదాలు', + 'language' => 'భాష', + 'last' => 'చివరి', + 'last_month' => 'పోయిన నెల', + 'last_name' => 'ఇంటి పేరు', + 'last_year' => 'నిరుడు', + 'latitude' => 'అక్షాంశం', + 'layers' => 'పొరలు', + 'layer_name' => 'పొర పేరు', + 'leave_a_comment' => 'ఓ వ్యాఖ్య వదిలి వెళ్ళండి', + 'less_information' => 'తక్కువ సమాచారం', + 'level' => 'స్థాయి', + 'level_name' => 'స్థాయి పేరు', + 'link' => 'లంకె', + 'list' => 'జాబితా', + 'location' => 'ప్రాంతం', + 'locations' => 'ప్రాంతాలు', + 'location_example' => 'నగరం, రాష్ట్రం మరియు/లేదా దేశం', + 'login_account_creation_successful' => 'ఖాతా సృష్టింపు విజయవంతం. మీరిప్పుడు లోనికి ప్రవేశించవచ్చు.', + 'login_confirmation_sent' => 'మీ ఈమెయిలు చిరునామాకి ఒక నిర్ధారణను పంపించాం.', + 'login_userpass' => 'ఈమెయిలు మరియు సంకేతపదం', + 'login_signup' => 'ఖాతా సృష్టించుకో', + 'longitude' => 'రేఖాంశం', + 'map' => 'పటం', + 'members' => 'సభ్యులు', + 'message' => 'సందేశం', + 'messages' => 'సందేశాలు', + 'message_details' => 'సందేశ వివరాలు', + 'month' => 'నెల', + 'more' => 'మరింత', + 'more_information' => 'మరింత సమాచారం', + 'name' => 'పేరు', + 'news' => 'వార్తలు', + 'new_password' => 'కొత్త సంకేతపదం', + 'new_report' => 'కొత్త నివేదిక', + 'optional' => 'ఐచ్చికం', + 'options' => 'ఎంపికలు', + 'original_description' => 'అసలు వివరణ', + 'page' => 'పేజీ', + 'pages' => 'పేజీలు', + 'page_description' => 'పేజీ వివరణ', + 'password' => 'సంకేతపదం', + 'personal_information' => 'వ్యక్తిగత సమాచారం ఐచ్చికం.', + 'please_note' => 'దయచేసి గమనించండి', + 'preview' => 'మునుజూపు', + 'recent_reports' => 'ఇటీవలి నివేదికలు', + 'reports' => 'నివేదికలు', + 'reports_categories' => 'వర్గాలు', + 'reports_count' => '%d నివేదికలు', + 'reports_date' => 'తేదీ', + 'reports_description' => 'వివరణ', + 'reports_first' => 'పేరు', + 'reports_last' => 'ఇంటి పేరు', + 'reports_location_name' => 'ప్రాంతం పేరు', + 'reports_optional' => 'ఐచ్చిక సమాచారం', + 'reports_time' => 'సమయం', + 'report_details' => 'నివేదిక వివరాలు', + 'required' => 'తప్పనిసరి', + 'save' => 'భద్రపరచు', + 'scheduler_day' => 'రోజు', + 'scheduler_hour' => 'గంట', + 'scheduler_minute' => 'నిమిషం', + 'send' => 'పంపించ', + 'show' => 'చూపించు', + 'show_all' => 'అన్నీ చూపించు', + 'site_email_address' => 'సైటు ఈమెయిలు చిరునామా', + 'surname' => 'ఇంటిపేరు', + 'themes' => 'అలంకారాలు', + 'theme_settings' => 'అలంకారపు అమరికలు', + 'this_day' => 'ఈరోజు', + 'this_month' => 'ఈ నెల', + 'this_week' => 'ఈ వారం', + 'this_year' => 'ఈ సంవత్సరం', + 'time' => 'సమయం', + 'title' => 'శీర్షిక', + 'today' => 'ఈరోజు', + 'total_reports' => 'మొత్తం నివేదికలు', + 'translated_description' => 'అనువదించిన వివరణ', + 'translation' => 'అనువాదం', + 'type' => 'రకం', + 'user' => 'వాడుకరి', + 'username' => 'వాడుకరి పేరు', + 'ushahidi_admin' => 'ఉషహీడీ నిర్వాహకుడు', + 'web' => 'జాలం', + 'yes' => 'అవును', + 'yesterday' => 'నిన్న', + 'your_file' => 'మీ దస్త్రం', +); diff --git a/application/i18n/te/upgrade.php b/application/i18n/te/upgrade.php new file mode 100644 index 0000000000..61e9ac3e1a --- /dev/null +++ b/application/i18n/te/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'ช่องอีเมลมีอีเมล์ที่ไม่ถูกต้อง?', + 'email_check' => 'อีเมล์นั้นได้รับการลงทะเบียนแล้วเพื่อรับการแจ้งเตือนสำหรับตำแหน่งนั้น', + 'length' => 'อีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และไม่เกิน 64 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่อีเมล์หากช่องเครื่องหมายเช็คถูก', + ) , + 'alert_country' => array( + 'single_country' => 'การใช้งานนี้ครอบคลุมประเทศเดียวเท่านั้น โปรดตรวจสอบว่าตำแหน่งที่แจ้งเตือนอยู่ภายในประเทศนี้ %s', + ) , + 'alert_lat' => array( + 'between' => 'คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่', + 'required' => 'คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่', + ) , + 'alert_lon' => array( + 'between' => 'คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่', + 'required' => 'คุณไม่ได้เลือกตำแหน่งที่ถูกต้องบนแผนที่', + ) , + 'alert_mobile' => array( + 'length' => 'จำนวนตัวเลขในช่องใส่หมายเลขโทรศัพท์มือถือไม่ครบถ้วน', + 'mobile_check' => 'หมายเลขโทรศัพท์มือถือนั้นได้รับการลงทะเบียนแล้วและจะได้รับการแจ้งเตือนสำหรับตำแหน่งนั้น', + 'numeric' => 'ช่องใส่โทรศัพท์มือถือไม่ถูกต้อง กรุณาใส่ตัวเลขเท่านั้นพร้อมรหัสประเทศ', + 'one_required' => 'คุณต้องใส่หมายเลขโทรศัพท์มือถือหรืออีเมล์ของคุณ', + 'required' => 'จำเป็นต้องใส่หมายเลขโทรศัพท์ถ้าช่องเครื่องหมายเช็คถูก', + ) , + 'alert_radius' => array( + 'in_array' => 'คุณยังไม่ได้ตั้งรัศมีที่ถูกต้องบนแผนที่', + 'required' => 'คุณยังไม่ได้ตั้งรัศมีที่ถูกต้องบนแผนที่', + ) , + 'alert_recipient' => array( + 'required' => 'คุณยังไม่ได้ระบุผู้รับการแจ้งเตือน', + ) , + 'alerts_subscribed' => 'คุณได้สมัครการแจ้งเตือนต่อไปนี้', + 'code_already_verified' => 'รหัสนี้ได้รับการยืนยันมาก่อนแล้ว!', + 'code_not_found' => 'ไม่พบรหัสการตรวจสอบนี้! กรุณายืนยันว่าคุณมี URL ที่ถูกต้อง', + 'code_verified' => 'รหัสของคุณถูกตรวจสอบอย่างถูกต้อง ตอนนี้คุณจะได้รับการแจ้งเตือนอุบัติการณ์ต่างๆที่เกิดขึ้น', + 'confirm_request' => 'เพื่อยืนยันการขอแจ้งเตือนของคุณโปรดไปที่', + 'create_more_alerts' => 'กลับไปยังหน้าการแจ้งเตือนเพื่อเพิ่มรายการแจ้งเตือน', + 'email_alert_request_created' => 'อีเมล์แจ้งเตือนของคุณได้รับการสร้างขึ้นแล้วและข้อความยืนยันได้ถูกส่งไปที่อีเมล์ของคุณ', + 'email_code' => 'กรุณากรอกรหัสยืนยันที่คุณได้รับในอีเมล์ข้างล่าง', + 'email_error_head' => 'อีเมล์ขอแจ้งเตือนของคุณไม่ได้รับการบันทึกไว้!', + 'email_ok_head' => 'อีเมล์ขอแจ้งเตือนของคุณได้รับการบันทึกแล้ว!', + 'error' => 'ระบบไม่สามารถดำเนิน สิ่งที่คุณยืนยัน/ร้องขอมาก!', + 'mobile_alert_request_created' => 'การแจ้งเตือนผ่านระบบมือถือของคุณได้รับการสร้างขึ้นแล้วและข้อความยืนยันได้ถูกส่งไป', + 'mobile_code' => 'กรุณากรอกรหัส SMS ยืนยันที่คุณได้รับในโทรศัพท์มือถือของคุณข้างล่าง', + 'mobile_error_head' => 'การขอแจ้งเตือนในมือถือของคุณไม่ได้รับการบันทึกไว้!', + 'mobile_ok_head' => 'การขอแจ้งเตือนในมือถือของคุณได้รับการบันทึก!', + 'settings_error' => 'การใช้งานนี้ไม่ได้ตั้งขึ้นมาเพื่อดำเนินการแจ้งเตือนอย่างถูกต้อง', + 'unsubscribe' => 'คุณได้รับอีเมลนี้เนื่องจากคุณสมัครรับการแจ้งเตือน หากคุณไม่ต้องการที่จะรับการแจ้งเตือนในอนาคตกรุณาไปที่', + 'unsubscribed' => 'คุณจะไม่ได้รับการแจ้งเตือนจาก', + 'unsubscribe_failed' => 'เราไม่สามารถที่จะยกเลิกสมาชิกคุณ กรุณายืนยันว่าคุณมี URL ที่ถูกต้อง', + 'verification_email_subject' => 'แจ้งเตือน - ตรวจสอบ', + 'verify_code' => 'คุณจะไม่ได้รับการแจ้งเตือนสำหรับสถานที่นี้จนกว่าคำร้องของคุณได้ทำการยืนยัน', +); diff --git a/application/i18n/th_TH/auth.php b/application/i18n/th_TH/auth.php new file mode 100644 index 0000000000..006e25d9b2 --- /dev/null +++ b/application/i18n/th_TH/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'อีเมลที่คุณใส่ไม่ถูกต้อง', + 'exists' => 'ขออภัย มีบัญชีที่ใช้อีเมลนี้แล้ว', + 'length' => 'อีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และไม่เกิน 64 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่อีเมล์', + ) , + 'name' => array( + 'length' => 'ชื่อฟิลด์จะต้องไม่น้อยกว่า 3 ตัวอักษร และไม่มากกว่า 100 ตัวอักษร', + 'required' => 'จำเป็นต้องระบุชื่อ', + 'standard_text' => 'ชื่อผู้ใช้มีอักขระที่ไม่ถูกต้อง', + ) , + 'current_password' => array( + 'length' => 'รหัสผ่านฟิลด์ต้องมีอย่างน้อย 8 ตัวอักษร', + 'login error' => 'กรุณาตรวจสอบว่าคุณได้ใส่อีเมลและรหัสผ่านที่ถูกต้อง', + 'matches' => 'กรุณากรอกรหัสผ่านเดิมในสองช่องสำหรับใส่รหัสผ่าน', + 'required' => 'จำเป็นต้องใส่รหัสผ่าน', + 'alpha_dash' => 'ฟิลด์รหัสผ่านจะต้องมีตัวอักษร สัญลักษณ์ # หรือ @ ตัวเลข ขีดล่าง และขีดกลาง เท่านั้น', + 'incorrect' => 'รหัสผ่านที่คุณใส่ไม่ถูกต้อง โปรดลองอีกครั้ง', + ) , + 'new_password' => array( + 'length' => 'ฟิลด์รหัสผ่านต้องมีอย่างน้อย 8 ตัวอักษร', + 'login error' => 'กรุณาตรวจสอบว่าคุณได้ใส่อีเมล์และรหัสผ่านที่ถูกต้อง', + 'matches' => 'กรุณาใส่รหัสผ่านเดิมในสองช่องรหัสผ่าน', + 'required' => 'ฟิลด์รหัสผ่านจะต้อง', + 'alpha_dash' => 'ฟิลด์รหัสผ่านจะต้องมีตัวอักษร สัญลักษณ์ # หรือ @ ตัวเลข ขีดล่าง และขีดกลาง เท่านั้น', + ) , + 'password' => array( + 'default' => 'เกิดความขัดข้องในการเข้าใช้ระบบ ', + 'length' => 'ฟิลด์รหัสผ่านต้องมีอย่างน้อย 8 ตัวอักษร', + 'login error' => 'กรุณาตรวจสอบว่าคุณได้ใส่อีเมลและรหัสผ่านที่ถูกต้อง', + 'matches' => 'กรุณาใส่รหัสผ่านเดิมในสองช่องรหัสผ่าน', + 'required' => 'จำเป็นต้องใส่ฟิลด์รหัสผ่าน', + 'riverid server down' => 'เซิร์ฟเวอร์ไม่สามารถใช้งานได้ตอนนี้ โปรดค่อยลองอีกครั้ง', + 'riverid' => '%s', + 'alpha_dash' => 'ฟิลด์รหัสผ่านจะต้องมีตัวอักษร สัญลักษณ์ # หรือ @ ตัวเลข ขีดล่าง และขีดกลาง เท่านั้น', + ) , + 'password_confirm' => array( + 'matches' => 'รหัสผ่านในฟิล์ดยืนยันจะต้องตรงกับฟิล์ดระหัสผ่าน', + ) , + 'resetemail' => array( + 'email' => 'อีเมล์ที่คุณใส่ไม่ถูกต้อง', + 'invalid' => 'ขออภัย เราไม่มีที่อยู่อีเมล์ของคุณ', + 'required' => 'จำเป็นต้องใส่ข้อมูลอีเมล์', + ) , + 'role' => array( + 'superadmin_modify' => 'เพียง superadmin สามารถแก้ไข superadmin หรืออัพเกรดผู้ใช้ให้เป็นผู้ดูแลระบบ', + ) , + 'roles' => array( + 'alpha_numeric' => 'รูปแบบไม่ถูกต้อง', + 'length' => 'บทบาทต้องมีอย่างน้อย 5 อักษรและไม่เกิน 30 ตัวอักษร', + 'required' => 'คุณต้องกำหนดอย่างน้อยหนึ่งบทบาท', + 'values' => 'คุณต้องเลือกหนึ่งบทบาท ระหว่างเป็นแอดมินหรือเป็นเพียงผู้ใช้', + ) , + 'token' => array( + 'invalid' => 'รหัสผ่านไม่สามารถใช้งานได้', + 'required' => 'จำเป็นต้องใส่รัหัสผ่าน', + ) , + 'username' => array( + 'admin' => 'ผู้ใช้แบบแอดมินไม่สามารถทำการแก้ไขได้', + 'alpha_numeric' => 'ช่อง URL โปรไฟล์จะต้องมีเพียงตัวเลขและตัวอักษร', + 'exists' => 'ขออภัย URL โปรไฟล์นี้ถูกช้งานแล้ว', + 'length' => 'ช่อง URL โปรไฟล์ต้องมีอย่างน้อย 2 ตัวอักษร และไม่มากกว่า 100 ตัวอักษร', + 'login error' => 'กรุณาตรวจสอบว่าคุณได้ใส่ URL โปรไฟล์ที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ URL โปรไฟล์', + 'superadmin' => ' superแอดมินไม่สามารถทำการแก้ไขได้', + 'csrf' => 'อาจมีการโจมตี CSRF คุณตั้งใจที่จะสร้าง/แก้ไขข้อมูลผู้ใช้หรือไม่?', + ) , +); diff --git a/application/i18n/th_TH/bug.php b/application/i18n/th_TH/bug.php new file mode 100644 index 0000000000..dad641d2c8 --- /dev/null +++ b/application/i18n/th_TH/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง', + 'required' => 'กรุณาใส่รหัสรักษาความปลอดภัย', + ) , + 'email' => array( + 'email' => 'ช่องอีเมล์ไม่ปรากฏอีเมลที่ถูกต้อง?', + 'length' => 'ช่องอีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และไม่เกิน 64 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่อีเมล์ถ้าช่องทำเครื่องหมายได้เช็คถูก', + ) , + 'error' => array( + 'required' => 'ต้องใส่ข้อมูลในฟิล์ดที่ป้อนข้อมูลไม่ถูต้อง', + ) , + 'subject' => array( + 'length' => 'ฟิล์ดหัวข้อต้องมีอย่างน้อย 3 ตัวอักษร', + 'required' => 'ต้องป้อนข้อมูลในฟิล์ดหัวข้อ', + ) , + 'yourname' => array( + 'length' => 'ฟิลด์ชื่อต้องป้อนข้อมูลอย่างน้อย 3 ตัวอักษร', + 'required' => 'จำเป็นต้องป้อนข้อมูลในฟิล์ดชื่อ', + ) , +); diff --git a/application/i18n/th_TH/category.php b/application/i18n/th_TH/category.php new file mode 100644 index 0000000000..00820e1667 --- /dev/null +++ b/application/i18n/th_TH/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'ข้อมูลในฟิล์ดีสีต้องมี 6 ตัวอักษร', + 'required' => 'จำเป็นต้องป้อนข้อมูลในฟิล์ดสี', + ) , + 'category_description' => array( + 'required' => 'จำเป็นต้องใส่คำอธิบาย', + ) , + 'category_image' => array( + 'size' => 'โปรดตรวจสอบว่าภาพที่จะอัปโหลดมีขนาดภาพไม่เกิน 50KB', + 'type' => 'รูปภาพไม่ปรากฏรูปแบบภาพที่ถูกต้อง รูปแบบที่ใช้ได้คือ .JPG, .PNG และ .GIF', + 'valid' => 'ช่องภาพไม่ปรากฏไฟล์ที่ถูกต้อง', + ) , + 'category_title' => array( + 'length' => 'ช่องสำหรับชื่อเรื่องต้องมีอย่างน้อย 3 ตัวอักษร และไม่มากกว่า 80 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ชื่อเรื่อง', + ) , + 'parent_id' => array( + 'already_parent' => 'คุณไม่สามารถแยกหมวดหมู่ที่มีหมวดหมู่ย่อย', + 'exists' => 'ไม่มีหมวดหมู่หลัก', + 'numeric' => 'หมวดหมู่หลักต้องเป็นตัวเลข', + 'parent_trusted' => 'หมวดหมู่หลักไม่สามารถเป็นหมวดหมู่พิเศษ', + 'required' => 'จำเป็นต้องมีหมวดหมู่หลัก', + 'same' => 'หมวดหมู่และหมวดหมู่หลักไม่สามารถเหมือนกัน', + 'special' => 'หมวดหมู่พิเศษไม่สามารถแยกเป็นหมวดหมู่ย่อยได้', + ) , +); diff --git a/application/i18n/th_TH/comments.php b/application/i18n/th_TH/comments.php new file mode 100644 index 0000000000..3582b51e3c --- /dev/null +++ b/application/i18n/th_TH/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง', + 'required' => 'กรุณาใส่รหัสรักษาความปลอดภัย', + 'valid' => 'คุณใส่รหัสรักษาความปลอดภัยที่ไม่ถูกต้อง', + ) , + 'comment_author' => array( + 'length' => 'ช่องสำหรับชื่อต้องมีอย่างน้อย 3 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ชื่่อ', + ) , + 'comment_description' => array( + 'required' => 'จำเป็นต้องใส่ความเห็น', + ) , + 'comment_email' => array( + 'email' => 'ช่องอีเมล์ไม่ปรากฏอีเมล์ที่ถูกต้อง', + 'length' => 'ช่องอีเมล์ต้องมีอย่างน้อย 4 และไม่เกิน 64 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่อีเมล์ถ้าช่องทำเครื่องหมายได้ทำการเช็คถูก', + ) , +); diff --git a/application/i18n/th_TH/contact.php b/application/i18n/th_TH/contact.php new file mode 100644 index 0000000000..71a834a342 --- /dev/null +++ b/application/i18n/th_TH/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง', + 'valid' => 'กรุณาใส่รหัสรักษาความปลอดภัยที่ถูกต้อง', + 'required' => 'กรุณาใส่รหัสรักษาความปลอดภัย', + ) , + 'contact_email' => array( + 'email' => 'ช่องอีเมล์ไม่ปรากฏอีเมล์ที่ถูกต้อง', + 'length' => 'ช่องอีเมล์ต้องมีอย่างน้อย 4 และไม่เกิน 64 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่อีเมล์ถ้าช่องทำเครื่องหมายได้ทำการเช็คถูก', + ) , + 'contact_message' => array( + 'required' => 'จำเป็นต้องใส่ข้อความ', + ) , + 'contact_name' => array( + 'length' => 'ช่องสำหรับชื่อต้องมีอย่างน้อย 3 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ชื่อ', + ) , + 'contact_subject' => array( + 'length' => 'ช่องสำหรับหัวข้อต้องมีอย่างน้อย 3 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่หัวข้อ', + ) , + 'email_send' => array( + 'failed' => 'มีข้อผิดพลาดในการส่งข้อความของคุณ', + ) , +); diff --git a/application/i18n/th_TH/core.php b/application/i18n/th_TH/core.php new file mode 100644 index 0000000000..4095439ad7 --- /dev/null +++ b/application/i18n/th_TH/core.php @@ -0,0 +1,35 @@ + ' config ไฟล์', + 'controller' => 'ผู้ควบคุม', + 'driver' => 'ไดรเวอร์', + 'driver_implements' => 'ไดรเวอร์ %ห สำหรับห้องสมุด %s จะต้องใช้อินเตอร์เฟซ %s', + 'driver_not_found' => 'ไม่พบ ไดรเวอร์ %s สำหรับห้องสมุด %s ', + 'errors_disabled' => 'ไปที่หน้าแรก href="%s"> หรือ ลองอีกครั้ง ', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'ไม่สามารถที่จะดำเนินการตามคำขอ', + 'helper' => 'ผู้ช่วยเหลือ', + 'invalid_filetype' => 'ไฟล์ที่คุณร้องขอ .%s, ไม่ได้รับการอนุญาตให้กำหนดค่าได้', + 'invalid_method' => 'วิธีการไม่ถูกต้อง %s เรียกใช้ %s', + 'invalid_property' => 'คุณสมบัติ %s ไม่ได้อยู่ในประเภท % s', + 'library' => 'ห้องสมุด', + 'log_dir_unwritable' => 'ไม่สามารถเขียนไดเรกทอรีล็อกได้ %s', + 'model' => 'แบบอย่าง', + 'no_controller' => 'Ushahidi ไม่สามารถที่จะควบคุมตรวจสอบการดำเนินการตามคำขอนี้ %s', + 'no_default_route' => 'กรุณาตั้งค่าเริ่มต้นใน config/routes.php', + 'page_not_found' => 'ไม่พบเพจที่คุณร้องขอ %s', + 'report_bug' => ' รายงานปัญหานี้ให้กับ Ushahidi ', + 'resource_not_found' => 'คำขอ %s, %s, ไม่สามารถพบได้', + 'stack_trace' => 'ติดตาม', + 'stats_footer' => 'โหลดใน {execution_time} วินาที โดยใช้ {memory_usage} ของหน่วยความจำ สร้างโดย Ushahidi v%s', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'สามารถมีได้เพียงหนึ่งตัวอย่างของ Ushahidi ต่อหน้า', + 'uncaught_exception' => 'ไม่ได้จับ %s: %s ในไฟล์ %s ในบรรทัด %s', + 'view' => 'ดู', + 'view_set_filename' => 'คุณต้องตั้งค่ามุมมองก่อนที่จะเรียกชื่อไฟล์กับ render', +); diff --git a/application/i18n/th_TH/database.php b/application/i18n/th_TH/database.php new file mode 100644 index 0000000000..5b88ec3f51 --- /dev/null +++ b/application/i18n/th_TH/database.php @@ -0,0 +1,10 @@ + 'ผิดพลาดในฐานข้อมูล: %s', + 'table_not_found' => 'ตาราง "%s" ไม่พบในฐานข้อมูล โปรดตรวจสอบให้แน่ใจว่าคุณกำลังใช้รุ่นล่าสุดของฐานข้อมูลสำหรับรุ่นของ Ushahidi นี้', +); diff --git a/application/i18n/th_TH/datetime.php b/application/i18n/th_TH/datetime.php new file mode 100644 index 0000000000..bef9a0b463 --- /dev/null +++ b/application/i18n/th_TH/datetime.php @@ -0,0 +1,86 @@ + 'am', + 'friday' => array( + 'abbv' => 'ศุกร์', + 'full' => 'วันศุกร์', + ) , + 'monday' => array( + 'abbv' => 'จันทร์', + 'full' => 'วันจันทร์', + ) , + 'pm' => 'pm', + 'saturday' => array( + 'abbv' => 'เสาร์', + 'full' => 'วันเสาร์', + ) , + 'sunday' => array( + 'abbv' => 'อาทิตย์', + 'full' => 'วันอาทิตย์', + ) , + 'thursday' => array( + 'abbv' => 'พฤหัสบดี', + 'full' => 'วันพฤหัสบดี', + ) , + 'tuesday' => array( + 'abbv' => 'อังคาร', + 'full' => 'วันอังคาร', + ) , + 'wednesday' => array( + 'abbv' => 'พุธ', + 'full' => 'วันพุธ', + ) , + 'january' => array( + 'abbv' => 'ม.ค.', + 'full' => 'มกราคม', + ) , + 'february' => array( + 'abbv' => 'ก.พ.', + 'full' => 'กุมภาพันธ์', + ) , + 'march' => array( + 'abbv' => 'มี.ค.', + 'full' => 'มีนาคม', + ) , + 'april' => array( + 'abbv' => 'เม.ย.', + 'full' => 'เมษายน', + ) , + 'may' => array( + 'abbv' => 'พ.ค.', + 'full' => 'พฤษภาคม', + ) , + 'june' => array( + 'abbv' => 'มิ.ย.', + 'full' => 'มิถุนายน', + ) , + 'july' => array( + 'abbv' => 'ก.ค.', + 'full' => 'กรกฎาคม', + ) , + 'august' => array( + 'abbv' => 'ส.ค.', + 'full' => 'สิงหาคม', + ) , + 'september' => array( + 'abbv' => 'ก.ย.', + 'full' => 'กันยายน', + ) , + 'october' => array( + 'abbv' => 'ต.ค.', + 'full' => 'ตุลาคม', + ) , + 'november' => array( + 'abbv' => 'พ.ย.', + 'full' => 'พฤศจิกายน', + ) , + 'december' => array( + 'abbv' => 'ธ.ค.', + 'full' => 'ธันวาคม', + ) , +); diff --git a/application/i18n/th_TH/feeds.php b/application/i18n/th_TH/feeds.php new file mode 100644 index 0000000000..88517483e3 --- /dev/null +++ b/application/i18n/th_TH/feeds.php @@ -0,0 +1,19 @@ + 'วันที่', + 'feed_name' => array( + 'length' => 'ชื่อฟีดต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 70 ตัวอักษร', + 'required' => 'กรุณาใส่ชื่อของฟีด', + ) , + 'feed_url' => array( + 'required' => 'กรุณาใส่ URL ของฟีด', + 'url' => 'โปรดใส่ URL ที่ถูกต้อง เช่น http://www.ushahidi.com', + ) , + 'source' => 'ที่มา', + 'title' => 'ชื่อเรื่อง', +); diff --git a/application/i18n/th_TH/footer.php b/application/i18n/th_TH/footer.php new file mode 100644 index 0000000000..712b174491 --- /dev/null +++ b/application/i18n/th_TH/footer.php @@ -0,0 +1,9 @@ + 'php5-curl ไม่ได้ติดตั้งในระบบนี้', +); diff --git a/application/i18n/th_TH/form.php b/application/i18n/th_TH/form.php new file mode 100644 index 0000000000..be6f6f3589 --- /dev/null +++ b/application/i18n/th_TH/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'ค่าเริ่มต้นที่คุณใส่ไม่ถูกต้อง', + 'length' => 'ชื่่อฟิลด์ต้องมีอย่างน้อย 3 ตัวอักษรและไม่เกิน 200 ตัวอักษร', + ) , + 'field_height' => array( + 'between' => 'กรุณาใส่ค่าความสูงของฟิล์ด 0 ถึง 50', + ) , + 'field_isdate' => array( + 'between' => 'คุณได้ใส่ค่าไม่ถูกต้องในช่องวันที่', + 'required' => 'กรุณาเลือกว่า ใช่หรือไม่ใช่ฟิล์ดวันที่', + ) , + 'field_name' => array( + 'length' => 'ชื่อฟิลด์ต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 100 ตัวอักษร', + 'required' => 'กรุณาใส่ชื่่อฟิลด์', + 'duplicate' => 'ชื่่อฟิลค์ที่คุณใส่มีแล้วในแบบฟอร์มนี้ กรุณาใส่อีกอย่างหนึ่ง', + ) , + 'field_required' => array( + 'between' => 'คุณได้ใส่ค่าไม่ถูกต้องสำหรับฟิลด์ที่จำเป็น', + 'required' => 'กรุณาเลือกใช่หรือไม่ใช่สำหรับฟิล์ดที่จำเป็น', + ) , + 'field_type' => array( + 'numeric' => 'กรุณาเลือกประเภทฟิลด์ที่ถูกต้อง', + 'required' => 'กรุณาเลือกประเภทฟิลด์', + ) , + 'field_width' => array( + 'between' => 'กรุณาใส่ค่า 0 ถึง 300 สำหรับความกว้างฟิลด์', + ) , + 'form_description' => array( + 'required' => 'กรุณาใส่รายละเอียดแบบฟอร์ม', + ) , + 'form_id' => array( + 'default' => 'รูปแบบเริ่มต้นไม่สามารถลบได้', + 'numeric' => 'กรุณาเลือกรูปแบบที่จะเติ่มในฟิลด์', + 'required' => 'กรุณาเลือกรูปแบบที่จะเติ่มในฟิลด์', + ) , + 'form_title' => array( + 'length' => 'ชื่่อของฟิลค์ต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 100 ตัวอักษร', + 'required' => 'กรุณาใส่ชื่อของฟอร์ม', + 'exists' => 'แบบฟอร์มที่มีชื่่อนี้มีแล้ว กรุณาเลือกชื่่ออื่่น', + ) , +); diff --git a/application/i18n/th_TH/imap.php b/application/i18n/th_TH/imap.php new file mode 100644 index 0000000000..dbccc67cd8 --- /dev/null +++ b/application/i18n/th_TH/imap.php @@ -0,0 +1,10 @@ + 'ไม่สามารถเปิด IMAP stream', + 'unsupported_service' => 'บริการอีเมลนี้ไม่ได้รับการสนับสนุน', +); diff --git a/application/i18n/th_TH/installer.php b/application/i18n/th_TH/installer.php new file mode 100644 index 0000000000..87aecf0240 --- /dev/null +++ b/application/i18n/th_TH/installer.php @@ -0,0 +1,84 @@ + 'เส้นทางฐาน', + 'database' => 'ฐานข้อมูล', + 'database_host' => 'โฮสต์ฐานข้อมูล', + 'database_host_description' => 'ถ้าคุณใช้ Ushahidi บนเครื่องคอมพิวเตอร์ของคุณเองนี้จะเป็น "localhost" ถ้าคุณใช้ Ushahidi จากเว็บเซิร์ฟเวอร์คุณจะได้รับข้อมูลโฮสต์ของคุณจากผู้ให้บริการเว็บโฮสติ้งของคุณ', + 'database_name' => 'ชื่อฐานข้อมูล', + 'database_name_description' => 'ชื่อของฐานข้อมูลที่คุณต้องการที่จะทำงานใน Ushahidi', + 'db_information_link' => 'สำหรับข้อมูลเพิ่มเติมโปรดตรวจสอบ ในบทความนี้ วิกิพีเดียอธิบายรายละเอียดเกี่ยวกับฐานข้อมูลเพิ่มเติม', + 'default_language' => 'ภาษาหลัก (ท้องถิ่น)', + 'default_language_description' => 'การใช้งานของแต่ละ Ushahidi มาพร้อมกับชุดแปลภาษา นอกจากนี้คุณยังสามารถ < href="http://wiki.ushahidi.com/doku.php?id=localisation_l10n_internationlisation_i18n&s[]=language#enabling_new_languages" target = "_blank"> เพิ่มของคุณเอง ', + 'disable' => 'ปิดการใช้งาน', + 'enable' => 'เปิดการใช้งาน', + 'error_summary' => 'ข้างล่างนี้เป็นรายละเอียดของข้อผิดพลาดที่เราพบ', + 'files_location_text' => 'สถานที่ตั้งของเซิร์ฟเวอร์ของคุณที่คุณวางไฟล์ Ushahidi ของคุณ เราได้ตรวจพบโดยอัตโนมัติค่านี้ โปรดตรวจสอบให้แน่ใจว่ามันถูกต้อง. ถ้าเขตว่างเปล่าไม่ต้องกังวลเพราะหมายความว่า Ushahidi มีการติดตั้งที่ไดเรกทอรีระดับบนสุด', + 'finished' => 'เสร็จสิ้น', + 'general' => 'ทั่วไป', + 'google_key' => 'Google API คีย์', + 'google_key_description' => 'ทุกคนสามารถได้รับคีย์ API ได้รับของคุณตอนนี้ ', + 'go_back' => 'กลับไป', + 'index' => array( + 'advanced' => 'การติดตั้งขั้นสูง', + 'advanced_installation_description' => 'รับการตั้งค่าพื้นฐานทั้งหมดผ่านกระบวนการ 5 ขั้นตอนนี้ ซึ่งรวมถึงเซิร์ฟเวอร์ แผนที่ ชื่อเว็บไซต์และรายละเอียดติดต่อ', + 'basic_installation' => 'การติดตั้งขั้นพื้นฐาน', + 'basic_installation_description' => 'ง่ายและรวดเร็ว สิ่งที่คุณต้องใช้คือไดเรกทอรีของเว็บไซต์ของคุณและข้อมูลจากฐานข้อมูลของคุณ เลือกตัวเลือกนี้ถ้าคุณต้องการที่จะได้รับการทำงานที่รวดเร็ว นอกจากนี้คุณก็สามารถกำหนดค่าอื่นๆในเวลาภายหลังได้', + 'proceed' => 'ดำเนินการ', + 'welcome' => 'ยินดีต้อนรับสู่เซิร์ฟเวอร์ Ushahidi เลือกชนิดของการติดตั้งที่คุณต้องการข้างล่าง', + ) , + 'installation_successful' => 'ติดตั้งสำเร็จ', + 'mail_server' => 'เมล์เซิร์ฟเวอร์', + 'mail_server_host' => 'เมล์เซิร์ฟเวอร์โฮสต์', + 'mail_server_host_description' => 'ตัวอย่าง: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'รหัสผ่านอีเมลเซิร์ฟเวอร์', + 'mail_server_password_description' => 'รหัสผ่านที่คุณใช้เพื่อเข้าสู่ระบบในอีเมล์ของคุณ', + 'mail_server_port' => 'พอร์ตเซิร์ฟเวอร์เมล์', + 'mail_server_port_description' => 'พอร์ตสามัญ: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'ประเภทเซิร์ฟเวอร์อีเมล์', + 'mail_server_type_description' => 'ข้อความอินเทอร์เน็ตโปรโตคอล (IMAP) หรือ ไปรษณีย์โปรโตคอล (POP) ความแตกต่างคืออะไร? ', + 'mail_server_username' => 'ชื่่อเข้าใช้งานเซิร์ฟเวอร์เมล์', + 'mail_server_username_description' => 'หากคุณใช้ Gmail, Hotmail หรือ Yahoo Mail, ให้ใส่ที่อยู่อีเมลเพื่อเป็นชื่อผู้ใช้งาน', + 'map' => 'แผนที่', + 'map_provider' => 'ผู้ให้บริการแผนที่', + 'map_provider_description' => 'Ushahidi ทำงานได้ดีกับสามผู้ให้บริการการทำแผนที่ดั้งต่อไปนี้: Google, Bing หรือ Open Street Map โปรดเลือกบริการการทำแผนที่่ที่ให้รายละเอียดมากที่สุดในพื้นที่ของคุณ', + 'other_steps' => 'ขั้นตอนอื่นๆ ...', + 'password' => 'รหัสผ่าน', + 'password_description' => 'รหัสผ่านสำหรับฐานข้อมูลของคุณ', + 'previous' => 'ก่อน', + 'restart_apache' => 'โปรดรีสตาร์ท Apache เซิร์ฟเวอร์ของคุณ', + 'select_mail_server_ssl' => 'เปิดหรือปิดการใช้งาน SSL', + 'select_mail_server_ssl_description' => 'เซิร์ฟเวอร์อีเมล์บางอย่างให้คุณเลือกใช้ SSL เมื่อมีการเชื่อมต่อ แนะนำให้ใช้ SSL เพราะจะช่วยเพิ่มระดับความปลอดภัย', + 'setup_sms' => 'ตั้งค่าเซิร์ฟเวอร์ SMS ของคุณ', + 'site_email' => 'อีเมล์ไซต์', + 'site_email_alerts' => 'ไซต์แจ้งเตือนอีเมล์', + 'site_email_alerts_description' => 'เมื่อผู้เข้าชมเว็บไซต์ของคุณลงทะเบียนสำหรับการแจ้งเตือนอีเมล พวกเขาจะได้รับอีเมลจากที่อยู่นี้ ที่อยู่อีเมลนี้ไม่จำเป็นต้องเป็นชื่อเดียวกันกับที่อยู่อีเมล์เว็บไซต์', + 'site_email_description' => 'ไซต์อีเมล์สื่อสารจะผ่านทางที่อยู่นี้', + 'site_name' => 'ชื่อไซต์', + 'site_name_description' => 'ชื่อของไซต์ของคุณ', + 'site_tagline' => 'ไซต์ Tagline', + 'site_tagline_description' => 'Tagline ของคุณ', + 'summary' => array( + 'text_1' => 'ไฟล์และโฟลเดอร์ที่แสดงด้านล่างจะต้องสามารถเขียนได้โดยเว็บเซิร์ฟเวอร์ของคุณ', + 'text_2' => '

ที่่นี่่มีคำแนะนำสำหรับการเปลี่ยนสิทธิ์ไฟล์:

+', + 'text_3' => 'ก่อนที่คุณจะเริ่มต้น คุณจะต้องแน่ใจว่าไฟล์ดังต่อไปนี้และโฟลเดอร์ที่มีสามารถเขียนได้โดยเว็บเซิร์ฟเวอร์ของคุณ ซึ่งเกี่ยวข้องกับการเปลี่ยนแปลงสิทธิ์ของแฟ้ม', + 'text_4' => 'สำหรับขั้นตอนการติดตั้ง โปรดมีข้อมูลดังต่อไปนี้ติดตัว', + ) , + 'table_prefix' => 'คำนำหน้าตาราง', + 'table_prefix_description' => 'ปกติคุณจะไม่เปลี่ยนคำนำหน้าตาราง แต่ถ้าคุณต้องการที่จะเรียกใช้การติดตั้ง Ushahidi จากหลายฐานข้อมูลเดียว คุณสามารถทำได้โดยการเปลี่ยนคำนำหน้าตารางที่่นี่่', + 'title' => 'ชื่อเรื่อง', + 'to_login' => 'เพื่อเข้าสู่ระบบไปที่่', + 'upload_data' => 'อัปโหลดข้อมูลรายงาน', + 'username' => 'ชื่อผู้ใช้', + 'username_description' => 'ชื่อผู้ใช้ฐานข้อมูล', + 'use_credentials' => 'และใช้สิทธิดังต่อไปนี้', + 'view_site' => 'ดูเว็บไซต์ของคุณ', +); diff --git a/application/i18n/th_TH/layer.php b/application/i18n/th_TH/layer.php new file mode 100644 index 0000000000..f6c26d2a05 --- /dev/null +++ b/application/i18n/th_TH/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'พื้นที่สีต้องมี 6 ตัวอักษร', + 'required' => 'จำเป็นต้องป้อนข้อมูลในฟิล์ดสี', + ) , + 'layer_file' => array( + 'type' => 'ช่องไฟล์ไม่ปรากฏไฟล์ที่ถูกต้องตามรูปแบบ รูปแบบที่ใช้ได้คือ .KMZ และ .KML', + 'valid' => 'ช่องไฟล์ไม่ปรากฏไฟล์ที่ถูกต้องตามรูปแบบ', + ) , + 'layer_name' => array( + 'length' => 'ชื่อจะต้องไม่น้อยกว่า 3 ตัวอักษร และไม่มากกว่า 80 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ชื่อ', + ) , + 'layer_url' => array( + 'atleast' => 'จำเป็นต้องใส่ไฟล์ URL หรือ KML ', + 'both' => 'คุณไม่สามารถมีทั้งไฟล์ KML และ URL', + 'url' => 'โปรดใส่ URL ที่ถูกต้อง เช่น http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/th_TH/libraries.php b/application/i18n/th_TH/libraries.php new file mode 100644 index 0000000000..3e7782842d --- /dev/null +++ b/application/i18n/th_TH/libraries.php @@ -0,0 +1,27 @@ + 'ไม่สามารถเชื่อมต่อไปยังเซิร์ฟเวอร์ Akismet', + 'akismet_cannot_retrieve' => 'ไม่สามารถเรียกการตอบสนองจาก Akismet ', + 'api_library_not_found' => 'ห้องสมุด API: %sสำหรับ%s ไม่พบclass กรุณาตรวจสอบตารางงาน API ของคุณ', + 'askimet_invalid_apikey' => 'คีย์ API Akismet ของคุณไม่ถูกต้อง', + 'clickatell_fopen_error' => 'ข้อผิดพลาดเกิดขึ้นในขณะที่ระบบดำเนินการส่ง fopen
กรุณาตรวจสอบว่า PHP ใช้งานร่วมกับ OpenSSLได้ และเช็คว่า PHP เป็นเวอร์ชั่นที่สูงกว่า 5.2', + 'clickatell_message_too_long' => 'ข้อความยูนิโค้ดของคุณยาวเกินไป! (ความยาวปัจจุบัน=', + 'clickatell_no_destination_address' => 'โปรดระบุที่อยู่ปลายทาง (ถึง)!', + 'clickatell_no_sender_address' => 'กรุณาระบุแหล่งที่อยู่ (จาก)!', + 'clickatell_unicode_message_too_long' => 'ข้อความยูนิโค้ดของคุณยาวเกินไป! (ความยาวปัจจุบัน=', + 'clickatell_unsupported_method' => 'ไม่สนับสนุนวิธีการส่ง!', + 'invalid_api_library' => 'ห้องสมุด API %s ไม่ถูกต้อง ห้องสมุด API ทั้งหมดจะต้องเป็นหมวดหมู่ย่อยของ %s', + 'upgrade_directory_not_deleted' => 'ไดเรกทอรี %s ไม่สามารถลบได้', + 'upgrade_extracting_error' => 'ข้อผิดพลาดเกิดขึ้นในขณะที่ทำการสกัด: %s', + 'upgrade_failed' => 'ดาวน์โหลด Ushahidi ล่าสุดล้มเหลว รหัสสถานะ HTTP', + 'upgrade_file_not_copied' => 'ไฟล์ %s ไม่สามารถคัดลอก', + 'upgrade_file_not_deleted' => 'ไฟล์ %s ไม่สามารถลบได้', + 'upgrade_title' => 'อัพเกรดสคริปต์ Ushahidi', + 'upgrade_zip_error' => 'ซิปไฟล์ดาวน์โหลด Ushahidi %s ไม่สามารถเขียนได้', + 'riverid_variable_not_available' => '%s ไม่สามารถใช้ได้ในประเภท RiverID', +); diff --git a/application/i18n/th_TH/maintenance.php b/application/i18n/th_TH/maintenance.php new file mode 100644 index 0000000000..c5e5c6b348 --- /dev/null +++ b/application/i18n/th_TH/maintenance.php @@ -0,0 +1,9 @@ + 'ขออภัยเว็บไซต์ของเรากำลังดำเนินการปรับปรุ่งระบบ โปรดลองอีกครั้งในไม่กี่นาที', +); diff --git a/application/i18n/th_TH/message.php b/application/i18n/th_TH/message.php new file mode 100644 index 0000000000..53af9d259b --- /dev/null +++ b/application/i18n/th_TH/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'กรุณาใส่รหัสรักษาความปลอดภัย', + 'required' => 'กรุณาใส่รหัสรักษาความปลอดภัย', + ) , + 'email' => array( + 'email' => 'ช่องอีเมล์ไม่ปรากฏอีเมล์ที่ถูกต้อง', + 'length' => 'ช่องอีเมล์ต้องมีอย่างน้อย 4 ตัวอักษร และความยาวไม่เกิน 64 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่อีเมล์ในช่องทำเครื่องหมายถูกได้ทำการเช็คถูก', + ) , + 'message' => array( + 'required' => 'กรุณาใส่ความคิดเห็นในช่องแสดงความคิดเห็น', + ) , + 'name' => array( + 'length' => 'ฟิล์ดชื่อต้องมีอย่างน้อย 3 ตัวอักษร', + 'required' => 'กรุณาใส่ชื่อในฟิล์ดชื่อ', + ) , + 'phone' => array( + 'length' => 'เบอร์โทรไม่ถูกต้อง', + ) , +); diff --git a/application/i18n/th_TH/mhi.php b/application/i18n/th_TH/mhi.php new file mode 100644 index 0000000000..8e0e95a178 --- /dev/null +++ b/application/i18n/th_TH/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'กรุณากรอกรหัสรักษาความปลอดภัย', + 'required' => 'กรุณากรอกรหัสรักษาความปลอดภัย', + ) , + 'contact_email' => array( + 'email' => 'อีเมล์ไม่ถูกต้อง', + 'required' => 'โปรดใส่อีเมลที่ถูกต้อง', + ) , + 'contact_message' => array( + 'required' => 'จำเป็นต้องใส่ข้อความในช่องข้อความ', + ) , + 'contact_subject' => array( + 'length' => 'ช่องประเภทต้องมีอย่างน้อย 3 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ประเภท', + ) , +); diff --git a/application/i18n/th_TH/notifications.php b/application/i18n/th_TH/notifications.php new file mode 100644 index 0000000000..3541c0c6c7 --- /dev/null +++ b/application/i18n/th_TH/notifications.php @@ -0,0 +1,35 @@ + 'ข้อความนี้ถูกส่งมาจากเว็บไซต์ของคุณ', + 'admin_login_url' => 'เข้าสู่ระบบสำหรับผู้ดูแลระบบ', + 'admin_new_comment' => array( + 'message' => 'ความคิดเห็นใหม่ได้ถูกส่งไปยังเว็บไซต์ของคุณเพื่อตอบสนอง:', + 'subject' => 'ความเห็นใหม่', + ) , + 'admin_new_email' => array( + 'message' => 'ข้อความอีเมล์ใหม่ได้รับการส่งไปยังเว็บไซต์ของคุณ', + 'subject' => 'อีเมล์ข้อความใหม่', + ) , + 'admin_new_report' => array( + 'message' => 'รายงานฉบับใหม่ที่ได้รับการส่งไปยังเว็บไซต์ของคุณ', + 'subject' => 'รายงานใหม่', + ) , + 'admin_new_sms' => array( + 'message' => 'ข้อความใหม่ได้รับการส่งไปยังเว็บไซต์ของคุณ', + 'subject' => 'ข้อความใหม่', + ) , + 'member_new_alert' => array( + 'message' => 'คุณได้รับการแจ้งเตือนใหม่', + 'subject' => 'การแจ้งเตือนใหม่!', + ) , + 'member_new_message' => array( + 'message' => 'คุณได้รับข้อความส่วนตัว', + 'subject' => 'ข้อความส่วนตัวใหม่', + 'footer' => 'เพื่อตอบโปรดไปที่:', + ) , +); diff --git a/application/i18n/th_TH/page.php b/application/i18n/th_TH/page.php new file mode 100644 index 0000000000..365785e0d5 --- /dev/null +++ b/application/i18n/th_TH/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'กรุณาใส่ชื่อหน้า', + 'length' => 'ชื่อหน้าจะต้องมีอย่างน้อย 3 ตัวอักษร และไม่เกิน 150 ตัวอักษร', + ) , + 'page_tab' => array( + 'required' => 'กรุณาใส่ชื่อของแท็ปเพจ', + ) , + 'page_description' => array( + 'required' => 'กรุณาป้อนรายละเอียดของเพจ', + ) , +); diff --git a/application/i18n/th_TH/permissions.php b/application/i18n/th_TH/permissions.php new file mode 100644 index 0000000000..41246266f8 --- /dev/null +++ b/application/i18n/th_TH/permissions.php @@ -0,0 +1,27 @@ + 'ดูรายงาน', + 'reports_edit' => 'สร้าง/แก้ไข/ลบรายงาน', + 'reports_approve' => 'อนุมัติรายงาน', + 'reports_verify' => 'ตรวจสอบรายงาน', + 'reports_comments' => 'จัดการความเห็นรายงาน', + 'reports_download' => 'ดาวน์โหลดรายงาน', + 'reports_upload' => 'อัปโหลดรายงาน', + 'messages' => 'จัดการข้อความ', + 'messages_reporters' => 'จัดการข้อความผู้สื่อข่าว', + 'stats' => 'ดูสถิติ', + 'settings' => 'ปรับเปลี่ยนการตั้งค่า', + 'manage' => 'จัดการพาเนล', + 'users' => 'จัดการผู้ใช้', + 'manage_roles' => 'จัดการบทบาท', + 'checkin' => 'เข้าใช้ได้', + 'checkin_admin' => 'จัดการการเข้าใช้', + 'admin_ui' => 'เข้าสู่แบบแอดมิน UI', + 'member_ui' => 'เข้าสู่สมาชิก UI', + 'delete_all_reports' => 'ลบรายงานทั้งหมด', +); diff --git a/application/i18n/th_TH/private_message.php b/application/i18n/th_TH/private_message.php new file mode 100644 index 0000000000..cad16cc8c6 --- /dev/null +++ b/application/i18n/th_TH/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'ID หลักจะต้องเป็นตัวเลข', + ) , + 'private_to' => array( + 'required' => 'ต้องป้อนข้อมูลในฟิล์ด To', + 'exists' => 'ผู้ใช้ที่คุณกำลังส่งข้อความถึงไม่ปรากฏชื่อในฐานข้อมูล', + ) , + 'private_subject' => array( + 'required' => 'ต้องป้อนข้อมูลในฟิล์ดหัวข้อ', + 'length' => 'หัวข้อต้องมีความยาวระหว่าง 3 ตัวอักษร ถึง 150 ตัวอักษร', + ) , + 'private_message' => array( + 'required' => 'ต้องป้อนข้อมูลในฟิล์ดข้อความ', + ) , +); diff --git a/application/i18n/th_TH/report.php b/application/i18n/th_TH/report.php new file mode 100644 index 0000000000..d9e4108117 --- /dev/null +++ b/application/i18n/th_TH/report.php @@ -0,0 +1,139 @@ + 'ผิดพลาด!', + 'country_name' => array( + 'single_country' => 'การใช้งานนี้ครอบคลุมภายในประเทศเดียวเท่านั้น โปรดตรวจสอบให้แน่ใจว่าสถานที่รายงานอยู่ในประเทศนั้น%s', + ) , + 'custom_field' => array( + 'values' => 'กรุณาป้อนค่าที่ถูกต้องในช่อง "%s" ', + 'numeric' => 'ฟิล์ด "%s" จะต้องเป็นตัวเลข', + 'required' => 'จำเป็นต้องป้อนข้อมูลในฟิล์ด"%s"', + 'not_exist' => 'ฟิล์ด "%s" ไม่ปรากฏข้อมูล', + 'permission' => 'บัญชีของคุณไม่สามารถแก้ไข "%s"', + 'email' => 'ฟิล์ด "%s" จะต้องมีที่อยู่อีเมลที่ถูกต้อง', + 'phone' => 'ฟิล์ด "%s" จะต้องมีหมายเลขโทรศัพท์ที่ถูกต้อง', + 'date_mmddyyyy' => 'ฟิล์ด "%s" จะต้องมีวันที่ถูกต้อง (วัน/เดือน/ ปี)', + 'date_ddmmyyyy' => 'ฟิล์ด "%s" จะต้องมีวันที่ถูกต้อง (วัน/เดือน/ ปี)', + ) , + 'data_include' => array( + 'between' => 'กรุณาเลือกรายการที่ปรากฏเพื่อทำการดาวน์โหลด', + 'numeric' => 'กรุณาเลือกรายการที่ปรากฏเพื่อทำการดาวน์โหลด', + ) , + 'data_active' => array( + 'between' => 'กรุณาเลือก "รายงานรอการอนุมัติ" หรือ "รายงานได้รับการอนุมัติ" หรือทั้งสองอย่าง', + 'numeric' => 'กรุณาเลือก "รายงานรอการอนุมัติ" หรือ "รายงานได้รับการอนุมัติ" หรือทั้งสองอย่าง', + 'required' => 'กรุณาเลือก "รายงานรอการอนุมัติ" หรือ "รายงานได้รับการอนุมัติ" หรือทั้งสองอย่าง', + ) , + 'data_verified' => array( + 'between' => 'กรุณาเลือก "รายงานรอการตรวจสอบ" หรือ "รายงานได้รับการตรวจสอบ" หรือทั้งสองอย่าง', + 'numeric' => 'กรุณาเลือก "รายงานรอการตรวจสอบ" หรือ "รายงานได้รับการตรวจสอบ" หรือทั้งสองอย่าง', + 'required' => 'กรุณาเลือก "รายงานรอการตรวจสอบ" หรือ "รายงานได้รับการตรวจสอบ" หรือทั้งสองอย่าง', + ) , + 'data_point' => array( + 'between' => 'กรุณาเลือกรายงานที่ปรากฏเพื่อการดาวน์โหลด', + 'numeric' => 'กรุณาเลือกรายงานที่ปรากฏเพื่อการดาวน์โหลด', + 'required' => 'กรุณาเลือกรายงานที่ปรากฏเพื่อการดาวน์โหลด', + ) , + 'format' => array( + 'required' => 'คุณต้องเลือกรูปแบบการดาวน์โหลด เลือกอย่างใดอย่างหนึ่ง CSV หรือ XML', + 'valid' => 'กรุณาเลือกรูปแบบที่ปรากฏเพื่อดาวน์โหลดยังรายงานของคุณ', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'ฟิล์ดวันที่ "จาก" ไม่ปรากฏวันที่ที่ถูกต้อง', + 'range' => 'กรุณาป้อนวันที่ที่ถูกต้อง และไม่สามารถจะเกินวันนี้ได้', + ) , + 'incident_active' => array( + 'between' => 'กรุณาใส่ค่าที่ถูกต้องในการอนุมัติรายงานนี้', + 'required' => 'กรุณาใส่ค่าที่ถูกต้องในการอนุมัติรายงานนี้', + ) , + 'incident_ampm' => array( + 'validvalues' => 'ฟิล์ด am/pm ไม่ปรากฏค่าที่ถูกต้อง', + ) , + 'incident_category' => array( + 'numeric' => 'ช่อง "หมวดหมู่" ไม่ปรากฏหมวดหมู่ที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ "หมวดหมู่" ', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'ฟิลด์วันที่ไม่ปรากฏวันที่ถูกต้อง', + 'date_mmddyyyy' => 'ฟิลด์วันที่ไม่ปรากฏวันที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ฟิลด์วันที่', + ) , + 'incident_description' => array( + 'required' => 'จำเป็นต้องใส่ "คำอธิบาย"', + ) , + 'incident_hour' => array( + 'between' => 'ช่องชั่วโมงไม่ปรากฏชั่วโมงที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ชั่วโมง', + ) , + 'incident_information' => array( + 'alpha' => 'กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าจะเป็นของข้อมูล', + 'length' => 'กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าจะเป็นของข้อมูล', + ) , + 'incident_minute' => array( + 'between' => 'ช่องนาทีไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่นาที', + ) , + 'incident_news' => array( + 'url' => 'URL ที่เชื่อมโยงแหล่งข่าวไม่ถูกต้อง', + ) , + 'incident_photo' => array( + 'size' => 'โปรดตรวจสอบว่าภาพมีขนาดการอัปโหลดไม่เกิน 2MB', + 'type' => 'รูปแบบภาพที่จะให้อัพโหลดไม่ถูกต้อง รูปแบบภาพที่ใช้ได้คือ .JPG, .PNG และ .GIF', + 'valid' => 'ภาพที่ให้อัพโหลดไม่ถูกต้อง', + ) , + 'incident_source' => array( + 'alpha' => 'กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าเชื่อถือของแหล่งที่มา', + 'length' => 'กรุณาใส่ค่าที่ถูกต้องสำหรับความน่าเชื่อถือของแหล่งที่มา', + ) , + 'incident_title' => array( + 'length' => '"ชื่อเรื่องของรายงาน" ต้องมีอย่างน้อย 3 และไม่เกิน 200 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ "ชื่อรายงาน"', + 'csrf' => 'เป็นไปได้ว่าอาจจะมีการโจมตี CSRF คุณต้องการสร้าง/แก้ไขรายงานจริงหรือไม่', + ) , + 'incident_verified' => array( + 'between' => 'กรุณาใส่ค่าที่ถูกต้องในการตรวจสอบรายงานนี้', + 'required' => 'กรุณาใส่ค่าที่ถูกต้องในการตรวจสอบรายงานนี้', + ) , + 'incident_video' => array( + 'url' => 'ช่องวิดีโอลิงก์ไม่ปรากฏ URL ที่ถูกต้อง', + ) , + 'latitude' => array( + 'between' => 'ช่องละติจูดไม่ปรากฏละติจูดที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ละติจูด กรุณาคลิกแผนที่เพื่อระบุตำแหน่ง', + ) , + 'locale' => array( + 'alpha_dash' => 'ช่องสถานที่มีค่าที่ไม่ถูกต้อง', + 'exists' => 'รายงานนี้มีการแปลเป็นภาษานี้แล้ว', + 'length' => 'ช่องสถานที่มีค่าที่ไม่ถูกต้อง', + 'locale' => 'รายงานต้นฉบับและที่แปลมีสถานที่เกิดเหตุที่เดียวกัน (ภาษาท้องถิ่น)', + 'required' => 'จำเป็นต้องระบุสถานที่เกิดเหตุ', + ) , + 'location_name' => array( + 'length' => 'ช่อง "ตั้งชื่อ" ต้องมีอย่างน้อย 3 และไม่เกิน 200 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ "ชื่อสถานที่"', + ) , + 'longitude' => array( + 'between' => 'ช่องลองจิจูดไม่ปรากฏลองจิจูดที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ลองจิจูด กรุณาคลิกบนแผนที่เพื่อระบุตำแหน่ง', + ) , + 'person_email' => array( + 'email' => 'ช่องอีเมลไม่ปรากฏที่อยู่อีเมลที่ถูกต้อง', + 'length' => 'ช่องอีเมล์ต้องมีอย่างน้อย 4 และไม่เกิน 64 ตัวอักษร', + ) , + 'person_first' => array( + 'length' => 'ช่องสำหรับชื่อต้องมีอย่างน้อย 3 และไม่มากกว่า 100 ตัวอักษร', + ) , + 'person_last' => array( + 'length' => 'ช่องสำหรับนามสกุลต้องมีอย่างน้อย 2 และไม่มากกว่า 100 ตัวอักษร', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'ช่องวันที่ "ถึง" ไม่ปรากฏวันที่ที่ถูกต้อง', + 'range' => 'จำเป็นต้องใส่วันที่ และไม่สามารถจะเกินวันนี้ได้', + 'range_greater' => 'วันที่จากไม่สามารถมากกว่าวันที่ถึง', + ) , +); diff --git a/application/i18n/th_TH/reporters.php b/application/i18n/th_TH/reporters.php new file mode 100644 index 0000000000..d02c8134d4 --- /dev/null +++ b/application/i18n/th_TH/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'ช่องละติจูดไม่ปรากฏละติจูดที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ละติจูด กรุณาคลิกบนแผนที่เพื่อระบุตำแหน่ง', + ) , + 'level_id' => array( + 'numeric' => 'ช่องระดับผู้รายงานไม่ปรากฏระดับที่ถูกต้อง', + 'required' => 'ช่องระดับผู้รายงานข่าวไม่ปรากฏระดับที่ถูกต้อง', + ) , + 'location_name' => array( + 'length' => 'ชื่อที่ตั้งจะต้องมีอย่างน้อย 3 และไม่เกิน 200 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ชื่อที่ตั้ง', + ) , + 'longitude' => array( + 'between' => 'ช่องลองจิจูดไม่ปรากฏลองจิจูดที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ลองจิจูด กรุณาคลิกบนแผนที่เพื่อระบุตำแหน่ง', + ) , + 'reporter_id' => array( + 'numeric' => 'ผู้รายงานไม่ถูกต้อง', + 'required' => 'ผู้รายงานไม่ถูกต้อง', + ) , +); diff --git a/application/i18n/th_TH/reports.php b/application/i18n/th_TH/reports.php new file mode 100644 index 0000000000..cc33789aa8 --- /dev/null +++ b/application/i18n/th_TH/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'โปรดตรวจสอบว่าคุณได้ทำการเช็ครายการ', + 'numeric' => 'โปรดตรวจสอบว่าคุณได้ทำการเช็ครายการ', + 'categories_required' => 'รายงานต้องมีการจัดหมวดหมู่ก่อนที่จะสามารถได้รับการอนุมัติ', + ) , + 'action' => array( + 'permission' => 'คุณไม่ได้รับอนุญาตให้ดำเนินการนี้', + ) , + 'uploadfile' => array( + 'required' => 'คุณต้องเลือกไฟล์ที่จะอัปโหลด', + 'type' => 'อัพโหลดไฟล์ต้องอยู่ในรูปแบบ .csv หรือ .xml ', + 'valid' => 'ช่องอัปโหลดไฟล์มีไฟล์ที่ไม่ถูกต้อง', + ) , +); diff --git a/application/i18n/th_TH/roles.php b/application/i18n/th_TH/roles.php new file mode 100644 index 0000000000..54f23ff32d --- /dev/null +++ b/application/i18n/th_TH/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'ช่องคำอธิบายต้องมีอย่างน้อย 3 และไม่มากกว่า 100 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่คำอธิบาย', + ) , + 'name' => array( + 'alpha_numeric' => 'ช่องชื่อจะต้องมีเพียงตัวอักษรหรือตัวเลข', + 'length' => 'ฟิล์ดชื่อต้องมีอย่างน้อย 2 ตัวอักษรและไม่เกิน 30 ตัวอักษร', + 'nomodify' => 'บทบาท superadmin ไม่สามารถถูกแก้ไขได้', + 'required' => 'จำเป็นต้องใส่ชื่อ', + ) , + 'access_level' => array( + 'numeric' => 'Access Level ฟิล์ดจะต้องมีตัวเลขระหว่าง 0 - 100', + 'required' => 'Access Level ฟิล์ดจะต้องมีตัวเลขระหว่าง 0 - 100', + ) , + 'permissions' => array( + 'numeric' => 'Permission ฟิล์ดจะต้องมีตัวเลขระหว่าง 0 - 100', + ) , +); diff --git a/application/i18n/th_TH/settings.php b/application/i18n/th_TH/settings.php new file mode 100644 index 0000000000..8060afa85d --- /dev/null +++ b/application/i18n/th_TH/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'ฟิล์ดแสดงความคิดเห็นไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่แสดงความคิด', + ) , + 'allow_feed' => array( + 'between' => 'ช่องฟีดไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ฟีด', + ) , + 'allow_feed_category' => array( + 'between' => 'ช่องมวดหมู่ของฟีดไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่หมวดหมู่ฟีด', + ) , + 'allow_alerts' => array( + 'between' => 'ช่องแจ้งเตือนไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่แจ้งเตือนที่อนุญาต', + ) , + 'allow_reports' => array( + 'between' => 'ช่องรายงานข้อมูลไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่รายงานที่อนุญาต', + ) , + 'allow_stat_sharing' => array( + 'between' => 'ฟิล์ดสถิติไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องเพิ่มข้อมูลในฟิล์ดสถิติ', + ) , + 'api' => array( + 'default_record_limit' => 'หมายเลขเริ่มต้นของระเบียนที่จะเรียกตามคำขอ API', + 'maximum_record_limit' => 'จำนวนสูงสุดของบันทึกที่จะเรียกตามคำขอ API', + 'maximum_requests_per_ip_address' => 'จำนวนสูงสุดของการร้องขอ API ต่อที่อยู่ IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'ฟิล์ด Akismet ไม่ปรากฏค่าที่ถูกต้อง', + 'length' => 'ฟิล์ด Akismet ไม่ปรากฏค่าที่ถูกต้อง', + ) , + 'banner_image' => array( + 'type' => 'ช่องเว็บไซต์แบนเนอร์ไม่ปรากฏภาพที่ถูกต้องตามรูปแบบที่ได้รับการยอมรับซึ่งคือ .JPG, .PNG และ .GIF', + 'size' => 'โปรดตรวจสอบว่า "ภาพแบนเนอร์" มีขนาดน้อยกว่า 250 KB', + 'valid' => 'ช่อง "ภาพแบนเนอร์" ไม่ปรากฏไฟล์ที่ถูกต้อง', + ) , + 'cache_pages' => array( + 'between' => 'จำเป็นต้องใส่ข้อมูลหน้าแคช', + 'required' => 'แคชไม่ปรากฏค่าที่ถูกต้อง', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'ฟิล์ดอายุใช้งานในหน้าสำแคชไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ฟิล์ดอายุใช้งานในหน้าแคช', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'ดูเหมือนว่าเซิร์ฟเวอร์ของคุณไม่ได้กำหนดค่า URL ที่สะอาดได้ คุณจะต้องเปลี่ยนการตั้งค่าของเซิร์ฟเวอร์ของคุณก่อนที่คุณจะ สามารถเปิดใช้งาน URL ที่สะอาด ดูข้อมูลเพิ่มเติมเกี่ยวกับ วิธีการเปิดใช้ URL this forum post', + 'clean_url_enabled' => 'ตัวเลือกนี้จะทำให้ Ushahidi ที่จะเข้าถึงได้ผ่านทาง URL ที่ "สะอาด" (โดยไม่ต้อง "index.php" ใน URL)', + 'enable_clean_url' => 'เปิดใช้งาน คลีน URLs ', + 'title' => 'คลีน URLs', + ) , + 'clickatell_api' => array( + 'length' => 'ฟิล์ดหมายเลขของ Clickatell API จะต้องไม่เกิน 20 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ตัวเลขในฟิล์ด Clickatell API', + ) , + 'clickatell_password' => array( + 'length' => 'ฟิล์ดรหัสผ่าน Clickatell ต้องมีอย่างน้อย 5 และไม่มากกว่า 50 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่รหัสผ่านฟิล์ด Clickatell', + ) , + 'clickatell_username' => array( + 'length' => 'ฟิล์ดชื่อผู้ใช้งาน Clickatell จะต้องไม่เกิน 50 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ฟิล์ดชื่อผู้ใช้งาน Clickatell', + ) , + 'configure_map' => 'กำหนดค่าแผนที่', + 'default_location' => 'เริ่มต้นที่', + 'default_map_all' => array( + 'alpha_numeric' => 'ฟิล์ดสีไม่ปรากฏค่าที่ถูกต้อง', + 'length' => 'ฟิล์ดสีจะต้องไม่มากกว่า 6 ตัวอักษรยาว', + 'required' => 'จำเป็นต้องใส่ฟิล์ดสี', + ) , + 'default_map_view' => 'ค่าเริ่มต้นมุมมองแผนที', + 'default_zoom_level' => 'ตั้งการซูมที่ค่าเริ่มต้น', + 'download_city_list' => 'เรียกเมืองจาก Geonames', + 'email_host' => array( + 'length' => 'ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายยาวเกินไป', + 'numeric' => 'ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายควรมีตัวเลขเท่านั้น', + ) , + 'email_password' => array( + 'length' => 'รหัสผ่านเมล์เซิร์ฟเวอร์ต้องมีอย่างน้อย 5 และไม่มากกว่า 50 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ฟิล์ดรหัสผ่านเมลเซิร์ฟเวอร์', + ) , + 'email_port' => array( + 'length' => 'ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายยาวเกินไป', + 'numeric' => 'ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายควรมีตัวเลขเท่านั้น', + ) , + 'email_servertype' => array( + 'length' => 'ฟิล์ดพอร์ตของเซิร์ฟเวอร์จดหมายยาวเกินไป', + 'required' => 'จำเป็นต้องใส่ฟิล์ดเซิร์ฟเวอร์จดหมาย', + ) , + 'email_username' => array( + 'length' => 'ฟิล์ดชื่อผู้ใช้เซิร์ฟเวอร์อีเมลจะต้องไม่มากกว่า 50 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ฟิล์ดชื่อผู้ใช้เซิร์ฟเวอร์อีเมล์', + ) , + 'facebook' => array( + 'title' => 'ตัวเลือกการตั้งค่า Facebook', + 'description' => 'เพื่อจะเอาข้อมูลด้านล่างนี้ คุณจะต้องสร้าง Facebook ใหม่', + 'description_2' => 'การตั้งค่าให้ผู้ใช้ระบบสามารถเข้าสู่ระบบผ่านทาง Facebook, นี้ ไม่ สร้าง โปรแกรม Facebookสำหรับใช้งาน', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'ฟิล์ด Google Analytics จะต้องมี Web Property ID ในรูปแบบ UA-XXXXX-XX', + ) , + 'https' => array( + 'enable_https' => 'เปิดใช้งาน HTTPS', + 'https_disabled' => 'ตัวเลือกนี้จะทำให้ Ushahidi เข้าถึงได้ในโหมด unsecure; โดยไม่ต้อง "https://" ในคำนำหน้า URL ', + 'https_enabled' => 'ตัวเลือกนี้จะทำให้ Ushahidi เข้าถึงได้ในโหมด unsecure; โดยไม่ต้อง "https://" ในคำนำหน้า URL ', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'ช่องรายการต่อหน้า(ส่วนหน้า)ไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่รายการต่อหน้า(ส่วนหน้า)', + ) , + 'items_per_page_admin' => array( + 'between' => 'ช่องรายการต่อหน้า(ผู้ดูแลระบบ)ไม่ปรากฏค่าที่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ายการต่อหน้า(ผู้ดูแลระบบ)', + ) , + 'map' => array( + 'default_location' => 'การตั้งค่าผู้ให้บริการแผนที่ของคุณกำลังดำเนินการ เลือกผู้ให้บริการได้รับโดยการใส่ค่า API คีย์ที่ได้รับมาจากผู้ให้บริการ ', + 'zoom' => 'ระดับซูม', + ) , + 'map_provider' => array( + 'choose' => 'เลือกผู้ให้บริการแผนที่', + 'enter_api' => 'ใส่คีย์ API ใหม่', + 'get_api' => 'รับคีย์ API ', + 'info' => 'การตั้งค่าผู้ให้บริการแผนที่ของคุณ เป็นกระบวนการที่ ตรงไปข้างหน้า เลือกผู้ให้บริการได้รับคีย์ APIจากเว็บไซต์ของผู้ให้บริการ และ ใส่ คีย์ API', + 'name' => 'ผู้ให้บริการแผนที่', + ) , + 'map_timeline' => 'ไทม์ไลน์แผนที่', + 'map_settings' => 'ตั้งค่าแผนที่', + 'multiple_countries' => 'การใช้งาน Ushahidi นี้คลอบคลุมหลายประเทศหรือไม่?', + 'select_default_location' => 'กรุณาเลือกประเทศเริ่มต้น', + 'set_location' => 'คลิกและลากแผนที่เพื่อกำหนดตำแหน่งที่แน่นอนของคุณ', + 'site' => array( + 'allow_clustering' => 'กลุ่มรายงานบนแผนที่', + 'allow_comments' => 'อนุญาตให้ผู้ใช้ส่งความเห็นไปยังรายงาน', + 'allow_feed' => 'รวม RSS ฟีดข่าวบนเว็บไซต์', + 'allow_feed_category' => 'สร้างหมวดหมู่ใหม่จากฟีด', + 'allow_alerts' => 'ให้ผู้ใช้สามารถสมัครรับการแจ้งเตือน', + 'allow_reports' => 'ให้ผู้ใช้ส่งรายงานได้', + 'api_akismet' => 'คีย์ Akismet ', + 'banner' => 'เว็บไซต์แบนเนอร์', + 'blocks_per_row' => 'บล็อกต่อแถว', + 'cache_pages' => 'หน้าแคช', + 'cache_pages_lifetime' => 'ช่วงอายุของหน้าแคช', + 'checkins' => 'เปิดใช้งานการเช็คอิน', + 'copyright_statement' => 'แถลงเป็นเว็บไซต์ Copyright', + 'default_category_colors' => 'ตั้งสีเริ่มต้นสำหรับทุกหมวดหมู่', + 'default_category_icons' => 'ตั้งไอคอนเริ่มต้นสำหรับทุกหมวดหมู่', + 'delete_banner_image' => 'ลบภาพแบนเนอร์', + 'delete_default_map_all_icon' => 'ลบไอคอนเริ่มต้น', + 'display_contact_page' => 'แสดงหน้าติดต่อ', + 'display_howtohelp_page' => 'แสดงหน้า "วิธีการช่วยเหลือ" ', + 'email_alerts' => 'ที่อยู่อีเมล์สำหรับแจ้งเตือน', + 'email_notice' => 'เพื่อที่จะได้รับรายงานทางอีเมลกรุณาตั้งค่าบัญชีในอีเมลของคุณ', + 'email_site' => 'อีเมล์เว็บไซต์', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'รหัสคุณสมบัติเว็บ - รูปแบบ: UA-XXXXX-XX', + 'items_per_page' => 'รายการต่อหน้า - Front End', + 'items_per_page_admin' => 'รายการต่อหน้า - ผู้ดูแลระบบ', + 'kismet_notice' => 'ป้องกัน สแปมความคิดเห็น โดยใช้ Akismet from Automattic.
You can get a free API key by registering for a WordPress.com user account', + 'laconica_configuration' => 'ข้อมูลประจำตัว Laconica', + 'laconica_site' => 'เว็บไซต์ Laconica ', + 'language' => 'ไซต์ภาษา', + 'manually_approve_users' => 'อนุมัติผู้ใช้ด้วยตนเอง', + 'message' => 'ข้อความในเว็บไซต์', + 'name' => 'ชื่อเว็บไซต์', + 'private_deployment' => 'การใช้งานส่วนตัว', + 'require_email_confirmation' => 'ผู้ใช้จำเป็นต้องมีการยืนยันอีเมล์', + 'submit_report_message' => 'ส่งข้อความรายงาน', + 'share_site_stats' => 'เปิดใช้งานสถิติ (เก็บไว้บนเซิร์ฟเวอร์ของ Ushahidi)', + 'tagline' => 'Tagline เว็บไซต์', + 'timezone' => 'โซนเวลา', + 'title' => 'ตั้งค่าไซต์', + 'twitter_configuration' => 'เงื่อนไขการค้นหาของ Twitter', + 'twitter_hashtags' => '# - แยกด้วยเครื่องหมายจุลภาค', + 'feed_geolocation_user' => 'ฟีด geolocation - ชื่อผู้ใช้ Geonames', + ) , + 'site_email' => array( + 'email' => 'ช่องอีเมล์เว็บไซต์ไม่ปรากฏที่อยู่อีเมลที่ถูกต้อง', + 'length' => 'ช่องอีเมล์เว็บไซต์ต้องมีอย่างน้อย 4 และรไม่มากกว่า 100 ตัวอักษร', + ) , + 'site_name' => array( + 'length' => 'ช่องชื่อเว็บไซต์ต้องมีอย่างน้อย 3 และไม่มากกว่า 50 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ชื่อเว็บไซต์', + ) , + 'site_tagline' => array( + 'length' => 'ช่อง tagline ต้องมีอย่างน้อย 3 และไม่มากกว่า 100 ตัวอักษร', + 'required' => 'จำเป็นต้องใส่ tagline', + ) , + 'sms' => array( + 'clickatell_api' => 'ตัวเลข Clickatell API ของคุณ', + 'clickatell_check_balance' => 'ตรวจสอบ Clickatell เครดิตยอดคงเหลือของคุณ', + 'clickatell_load_balance' => 'โหลดเครดิตบาลานซ์', + 'clickatell_password' => 'รหัสผ่าน Clickatell ของคุณ ', + 'clickatell_text_1' => 'สมัครใช้บริการ Clickatells โดย href="https://www.clickatell.com/central/user/client/step1.php?prod_id=2" คลิกที่นี่ ', + 'clickatell_text_2' => 'ใส่ข้อมูล Clickatell ของคุณด้านล่าง', + 'clickatell_username' => 'ชื่อผู้ใช้งาน Clickatell ของคูณ', + 'flsms_description' => 'Frontline SMS เป็นซอฟต์แวร์ฟรีและเปิดแหล่ง ที่ช่วยให้ ผู้ใช้สามารถส่ง และรับข้อความ กับกลุ่ม ใหญ่ของผู้คน ผ่านโทรศัพท์มือถือ คลิกที่กล่องด้านล่างเพื่อ ดาวน์โหลดรุ่นล่าสุด จาก FrontlineSMS.com', + 'flsms_download' => 'ดาวน์โหลดและติดตั้ง FrontlineSMS', + 'flsms_instructions' => 'คำแนะนำโดยละเอียด เกี่ยวกับวิธีการ ส่ง SMS จากการติดตั้ง FronlineSMS ของคุณมีอยู่ here คีย์ URL และ API ด้านล่าง จะต้องตั้งค่าการซิงค์ กับ FrontlineSMS', + 'flsms_link' => 'คัดลอกและวางลงในช่อง FrontlineSMS "ที่อยู่"', + 'flsms_key' => 'คัดลอกและวางลงในช่อง FrontlineSMS "Ushahidi API คีย์"', + 'flsms_synchronize' => 'เชื่อมต่อ FrontlineSMS กับที่จะใช้งาน Ushahidi ', + 'flsms_text_1' => 'ใส่หมายเลขโทรศัพท์ที่เชื่อมต่อกับ Frontline SMS ด้านล่าง', + 'flsms_text_2' => 'ใส่จำนวนโดยไม่ใช้ + หรือขีดกลางด้านล่าง', + 'option_1' => 'ตัวเลือกที่ 1: ใช้ Frontline SMS', + 'option_2' => 'ตัวเลือกที่ 2: ใช้ทั่วโลก SMS เกตเวย์', + 'title' => 'ตัวเลือกการตั้งค่า SMS', + ) , + 'sms_no1' => array( + 'length' => 'ช่องโทรศัพท์ 1 ไม่ปรากฏค่าที่ถูกต้อง', + 'numeric' => 'ช่องโทรศัพท์ 1 ควรมีตัวเลขเท่านั้น', + ) , + 'sms_no2' => array( + 'length' => 'ช่องโทรศัพท์ 2 ยาวเกินไป', + 'numeric' => 'ช่องโทรศัพท์ 2 ควรมีตัวเลขเท่านั้น', + ) , + 'sms_no3' => array( + 'length' => 'ช่องโทรศัพท์ 3 ยาวเกินไป', + 'numeric' => 'ช่องโทรศัพท์ 3 ควรที่จะมีแต่ตัวเลข', + ) , + 'twitter' => array( + 'title' => 'ตัวเลือกการตั้งค่าของทวิตเตอร์', + 'description' => 'เพื่อที่จะได้รับข้อมูลด้านล่างโปรดตั้งค่าการใช้งานของคุณเป็นโปรแกรมทวิตเตอร์ใหม่ที่', + 'api_key' => 'คีย์ของผู้บริโภค', + 'api_key_secret' => 'ข้อมูลส่วนตัวผู้ใช้', + 'token' => 'เข้าสู่โทเค็น', + 'token_secret' => 'เข้าสู่โทเค็นลับ', + ) , + 'test_settings' => 'ตั้งค่าการทดสอบ', +); diff --git a/application/i18n/th_TH/sharing.php b/application/i18n/th_TH/sharing.php new file mode 100644 index 0000000000..43b933163b --- /dev/null +++ b/application/i18n/th_TH/sharing.php @@ -0,0 +1,25 @@ + 'วันที่เข้า', + 'date_added' => 'เพิ่มเมื่อวันที่', + 'last_access' => 'เข้ามาครั้งล่าสุด', + 'sharing_color' => array( + 'length' => 'ฟิล์ดสีต้องมี 6 ตัวอักษร', + 'required' => 'จำเป็นต้องป้อนข้อมูลในฟิล์ดสี', + ) , + 'sharing_name' => array( + 'length' => 'ชื่อที่ใช้ร่วมไม่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ชื่อที่ใช้ร่วม', + ) , + 'sharing_url' => array( + 'exists' => 'URL เว็บไซต์นี้ใช้แล้ว', + 'length' => 'URL ของเว็บไซต์ไม่ถูกต้อง', + 'required' => 'จำเป็นต้องใส่ URL เว็บไซต์', + 'url' => 'URL ของเว็บไซต์ไม่ถูกต้อง', + ) , +); diff --git a/application/i18n/th_TH/stats.php b/application/i18n/th_TH/stats.php new file mode 100644 index 0000000000..4af49c1dad --- /dev/null +++ b/application/i18n/th_TH/stats.php @@ -0,0 +1,42 @@ + 'ได้รับการอนุมัติ', + 'categories' => 'หมวดหมู่', + 'category_impact' => 'หมวดหมู่ผลกระทบ', + 'category_impact_description' => 'แผนภูมินี้จะช่วยให้คุณเห็นเชิงเส้นของรายงานตามหมวดหมู่เมื่อเวลาผ่านไป เลื่อนจากซ้ายไปขวาเพื่อดูมุมมองและเปรียบเทียบประเภทที่แตกต่างกัน เลื่อนเมาส์บนกราฟสำหรับรายละเอียดเพิ่มเติม', + 'choose_date_range' => 'เลือกช่วงวันที่', + 'countries' => 'ประเทศ', + 'country' => 'ประเทศ', + 'country_breakdown' => 'รายละเอียดประเทศ', + 'description' => 'นี้เป็นส่วนของสถิติและจะมีคำอธิบายทั่วไปในเร็วๆนี้ สำหรับตอนนี้เรียกดูรอบๆโดยการเชื่อมโยงหมวดหมู่ย่อยข้างต้น', + 'error' => 'ผิดพลาด', + 'glossary' => 'อภิธานศัพท์', + 'hit_summary' => 'ไปที่บทสรุปย่อ', + 'legend' => 'ลีเจนด์', + 'pageviews' => 'มุมมอง', + 'pageviews_description' => 'จำนวนทั้งหมดของหน้าเว็บที่ผู้เข้าชมได้ดูในเว็บไซต์ของคุณ', + 'reports' => 'รายงาน', + 'reports_categories' => 'หมวดหมู่รายงาน', + 'reports_statistics' => 'สถิติรายงาน', + 'reports_status' => 'สถานะรายงาน', + 'report_punchcard' => 'รายงาน Punchcard', + 'report_stats' => 'สถิติรายงาน', + 'stats_not_setup' => 'ไม่ได้ตั้งค่าสถิติ', + 'time_range_1' => '1 เดือน', + 'time_range_2' => '3 เดือน', + 'time_range_3' => '6 เดือน', + 'time_range_all' => 'ทั้งหมด', + 'unapproved' => 'ยังไม่อนุมัติ', + 'unique_visitors' => 'ผู้เข้าชมที่ไม่ซ้ำกัน', + 'unique_visitors_description' => 'จำนวนการเข้าชมงานของคุณรายบุคคลจะถูกให้ใช้ cookies ส่วนผู้เข้าชมที่ไม่ได้เปิดใช้งาน cookies จะถูกส่งไปแก้ไขข้อมูล ทั้งที่อยู่ IP ความละเอียด เบราว์เซอร์ ปลั๊กอิน OS ฯลฯ ', + 'unverified' => 'ไม่ได้ตรวจสอบ', + 'verified' => 'ตรวจสอบแล้ว', + 'visitor_summary' => 'สรุปข้อมูลผู้เข้าชม', + 'visits' => 'เข้าชม', + 'visits_description' => 'การเยี่ยมชมเป็นการบันทึกแบบรายบุคลที่มาเยี่ยมชมเว็บไซด์นานกส่า 30 นาทีผ่านหน้ามุมมองของผู้เยี่ยมชมเอง', +); diff --git a/application/i18n/th_TH/tooltips.php b/application/i18n/th_TH/tooltips.php new file mode 100644 index 0000000000..debd655867 --- /dev/null +++ b/application/i18n/th_TH/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'การเพิ่มรายงานในหมวดหมู่เพิ่มเติม กรณีคุณเลือกหมวดหมู่ที่ 1 แต่รายงานได้จัดประเภทไว้แล้วว่าอยู่ในรายงานประเภทที่ 2 ระบบจะจัดารให้รายงานนี้อยู่ในทั้งสองประเภท คือ ทั้งหมวด 1 และหมวด 2', + 'approve' => 'อนุมัติรายงานหรือไม่ หากอนุมัติแล้วจะแสดงต่อสาธารณะได้', + 'assign_badge' => 'คุณสามารถที่จะกำหนด badge สาารถเลือก badge ได้ที่นี่', + 'between_times' => 'นี้เป็นช่วงของเวลาและ/หรือนาทีระหว่างสองเวลาในรูปแบบ 24 ชั่วโมง หากคุณใส่เวลาก่อนหน้านี้ในฟิลด์ที่สองมันก็จะถูกพลิกกับครั้งแรก เวลาพวกนี้จะต้องอยู่ภายในวันเดียวกัน นอกจากนี้เวลานี้มีการตรวจสอบกับเวลาที่คุณได้กำหนดค่าบนเว็บไซต์ของคุณในการตั้งค่าเว็บไซต์และnot จำเป็นต้องคำนวณเวลาที่ผู้ใช้มีปฏิสัมพันธ์กับการใช้งานของคุณ ถ้าไม่สนใจรอบคัดเลือกนี้ให้ทิ้งไว้ที่ 0:00-00:00 ', + 'category' => 'ถ้าคุณต้องการที่จะเปิดใช้งานเฉพาะบางหมวดหมู่เท่านั้นคุณสามารถตั้งค่าได้ที่นี่ ซึ่งการตั้งค่าจะทำให้เฉพาะหมวดหมู่ที่เลือกทำงานเท่านั้น เวลาที่คุณเปิดใช้งาน แต่ถ้าคุณเลือกใช้งานทั้งหมวดหมู่ ที่ 1 และ หมวด 2 ที่นี่ และรายงานถูกส่งไปให้ใช้งานหมวดหมู่ที่ 2 และ 3 ด้วย', + 'days_of_the_week' => 'ถ้าการค่าให้การทำงานนี้ให้ดำเนินการในบางวันของสัปดาห์คุณสามารถตั้งค่าได้ที่นี่เลย แต่คุณควรเข้าใจว่าวันที่ระบุจะจัดการตามค่าไทม์โซนที่ใช้ และคุณสามารถที่จะกด shif+ command หรือ control ค้างไว้หากต้องการเลิกหลายๆวัน ', + 'email_body' => 'เนื้อหาของอีเมลที่จะส่ง', + 'email_subject' => 'เรื่องของอีเมลที่จะส่ง', + 'feed_id' => 'การฟีดข้อมูลของคุณสามารถเลือกแบบฟีดทั้งหมด หรือเลือกบางฟีดได้ หากคุณเลือกเฉพาะบางตัว คุณก็สามารถเลือกจากรายการต่อไปนี้ หากไม่เลือกระบบจะเลือกเป็นฟีดแบบทั้งหมด ', + 'from' => 'การทวิตเตอร์ข้อความคนอื่นนั้น (ถ้าจะทวิตที่ละหลายคนก็ให้ใส่ชื่อกั้นด้วยเครื่องหมายจุลภาค ",") ส่วนกรณีที่อยากตั้งค่าให้มีการส่งข้อความทวิตได้เฉพาะบสงคนเท่านั้น คุณก็สามารถระบบชื่อผู้นั้นได้ที่นี่ (แต่ชื่อนั้นต้องไม่มี@) ', + 'keywords' => 'ไม่จำเป็นต้องใส่ข้อมูลในช่องนี้ หากคุณไม่อยากใส่ keywords. แต่ถ้าคุณใส่ keywords คุณสามารถกั้นแต่ละตัวด้วยเครื่องหมายจุลภาค (,) ตัวอย่างเช่น ถ้าจะกล่าวถึง "ความรัก" หรือ "สันติภาพ " ก็สามารถใส่ keywords ดังนี้ " ความรัก, สันติภาพ" ', + 'location' => 'คุณสามารถเลือกตำแหน่งใดก็ได้ หรือ เลือกเฉาะบางจุด ถ้าหากเลือกเฉพาะบางจุดก็สามารถสร้างกล่อรอบตำแหน่งที่จะดำนเนินการได้เลย ตัวอย่างเช่น ถ้าคุณต้องการให้ทำงานเมือมีใครส่งรายงานมาจากประเทศไทย คุณก็เลือกตำแหน่งบนของประเทศไทย เป็นต้น นอกจากนั้นคุณยังสามารถวาดรูปกล่องให้มีขนาดเล็กหรือใหญ่ได้ตามที่ต้องการ และนอกจากนั้นยังทำสามารถวาดหลายๆจุดตามที่ต้องการได้', + 'on_specific_count' => 'เฉพาะผู้ใช้ที่อนุญาตเท่านั้นที่ปรากฏบน N- th ทั้งนี้รวมผู้ใช้ที่เป็นกลุ่มและเป็นรายๆ แต่ไม่อยากตั้งค่าก็ไม่ต้องใส่ข้อมูลในช่องนี้ได้', + 'report_title' => 'นี้เป็นหัวข้อเริ่มต้นที่จะเพิ่มการรายงาน', + 'response' => 'หากผู้ใช้ได้ผ่านการอนุญาตแล้ว ทริกเกอร์จะเริ่มต้นการตอบสนอง โดยให้สามารถส่งรายงานการยังอีเมล์ของผู้ใช้ ซึ่งคุณสามารถเลือกกิจกรรมอื่นๆ ได้จากรายการต่อไปนี้ ', + 'send_to' => 'หากคุณเลือก " ทริกเกอร์ ผู้ใช้" อีเมล์จะถูกส่งไปยังผู้ใช้ที่ดำเนินงาน หากคุณเลือก ปุ่ม ที่อยู่ถัดจาก กล่องใส่ที่คุณจะสามารถ ป้อนที่อยู่ อีเมลที่กำหนดเอง นี้จะเป็นประโยชน์ ถ้าคุณกำลังตั้งค่า ทริกเกอร์ ที่จะแจ้งให้ ผู้คนเมื่อ บางส่วนของ แผนที่ จะเห็น รายงาน เช็คอิน หรือ กิจกรรม อื่น ๆ', + 'specific_days' => 'คุณสามารถเลือกวันต่างๆได้ที่นี่ วันที่จะถูกกำหนดโดยค่าไทมโซนนั้นๆ กรณีต้อการใช้ค่าวันที่เริ่มต้นแต่แรก คุณไม่จำเป็นที่ต้องเลือกวันที่ใดๆ ', + 'trigger' => 'ทริกเกอร์เป็นองค์ประกอบหลักของการตั้งค่า ทริกเกอร์ การกระทำของคุณ ซึ่งเป็นที่ที่ คุณตรวจสอบว่า คุณต้องการ บางสิ่งบางอย่างที่จะเกิดขึ้น เมื่อมีคน ส่งรายงาน การดำเนินการตรวจสอบใน ฯลฯ คุณ จะสามารถ ในการกรอง การตอบสนองต่อ การกระทำเหล่านี้ หลังจากเลือก หนึ่ง', + 'user' => 'ผู้ใช้สามารถเป็นใครก็ได้ หรือผู้ใช้บางคนเท่านั้น หากคุณเลือกบางคน ก็เลือกได้ที่นี่ แต่หากเลือกให้เป็นใครก็ได้ ก็เลือกเป็นใครก็ได้ ', + 'verify' => 'เช็ครายงานว่าได้ผ่านการตรวจสอบแล้วหรือยัง? ', + ) , + 'change_picture' => 'หน้าโปรไฟล์ ในเว็บไซต์นี้ใช้ Gravatar เพียงคลิกที่ ภาพ คุณจะสามารถใช้ Gravatar และสามารถเปลี่ยนรูปโปรไฟล์ของคุณได้ที่นี่', + 'default_value' => 'แยกแต่ละค่าด้วยเครื่องหมายจุลภาค "," เช่น value1, value2', + 'radio_choices' => 'แยกแต่ละค่าด้วยเครื่องหมายจุลภาค เช่น value1 , value2 ในกรณีที่คุณ ต้องการตั้งค่าเริ่มต้นจบ รายการของตัวเลือก ที่มี :: เช่น ของคุณหากคุณต้องการให้ value3 เริ่มต้น ก็จะมี ค่า 1 , value2 , value3 :: value3', + 'dropdown_choices' => 'แยกแต่ละค่าด้วยเครื่องหมายจุลภาค "," เช่น Item 1, Item 2 ฯลฯ', + 'private_to' => 'เริ่มพิมพ์ข้อความไปยังสมาชิกในกลุ่มได้', + 'private_subject' => 'หัวข้อในข้อความส่วนตัว', + 'private_message' => 'ข้อความส่วนตัว', + 'profile_color' => 'คุณสามารถเลือกสีพื้นบนรูปโปรไฟล์ของคุณในโปรไฟล์สาธารณะของคุณ สีนี้จะเป็น จุด สีที่แสดงบนแผนที่สำหรับ checkins ของคุณ', + 'profile_email' => 'ที่อยู่อีเมลของคุณ', + 'profile_name' => 'นี้เป็นหนึ่งในวิธีที่คุณจะแสดงตัวตนของคุณบนเว็บไซต์ แต่โปรดพึงคำนึงว่านี่เป็นที่สาธารณะ!', + 'profile_new_password' => 'หากตั้งค่า นี่จะเป็นรหัสผ่านอันใหม่ของคุณ หากคุณต้องการใช้รหัสเดิมก็ไม่จำเป็นต้องใส่ข้อมูลใดๆในช่องนี้ ', + 'profile_new_users_password' => 'นี่คือความต้องการเมื่อมีการสร้างผู้ใช้ใหม่ และจะเป็นรหัสผ่านของผู้ใช้ คุณควรจะแจ้งให้ผู้ใช้ใหม่ของคุณเปลี่ยนรหัสผ่านของพวกเขาหลังจากเข้าสู่ระบบ เป็นครั้งแรก', + 'profile_notify' => 'เลือก YES ช่วยให้คุณได้รับการแจ้งเตือนทางอีเมล์ เมื่อมีรายงาน หรือความคิดเห็นใหม่ที่โพสต์ บนเว็บไซต์ของคุณ', + 'profile_password' => 'รหัสผ่านของคุณในปัจจุบัน เราต้องการให้คุณใส่รหัสผ่านของคุณเพื่อป้องกันการเปลี่ยนแปลงใด ๆ ที่ ไม่พึงประสงค์ในบัญชีของคุณ', + 'profile_public' => 'รายละเอียด ของคุณ สามารถดูได้โดย คนบนอินเทอร์เน็ต ถ้าคุณตรวจสอบ ตัวเลือกนี้ นี้ยังเป็น วิธีที่ง่ายที่สุด ที่จะแสดง รายงานที่คุณ ได้ ส่ง checkins ของคุณ , ป้าย ฯลฯ ทั้งหมดใน หนึ่งหน้า', + 'profile_public_url' => 'นี่คือที่อยู่ที่ที่จะปรากฏในโปรไฟล์สาธารณะของคุณ ', + 'profile_username' => 'ชื่อผู้ใชhของคุณไม่สามารถเปลี่ยนแปลงได้', + 'settings_access_level' => 'ระดับการเข้าถึงข้อมูล ที่ใช้ในการ จำกัด การเข้าถึง ข้อมูลที่กำหนดเอง ในแบบฟอร์ม ระดับการเข้าถึง ที่สูงขึ้น สามารถเข้าถึง เขตข้อมูลจาก ระดับที่ต่ำกว่า superadmin มีระดับการเข้าถึง ที่สูงที่สุด ( 100 ) ข้อมูลสาธารณะ จะปรากฏที่ ระดับการเข้าถึง ที่ต่ำที่สุด (0) สมาชิกมี ระดับการเข้าถึง 10 ระบบคือ ระดับการเข้าถึง 90 โดยค่าเริ่มต้น', + 'settings_alert_email' => 'นี่คือที่อยู่อีเมล์ที่จะใช้ในการส่งการแจ้งเตือนทางอีเมล์', + 'settings_allow_alerts' => 'อนุญาตให้ผู้ใช้สมัครเป็นสมาชิกสำหรับการแจ้งเตือนผ่านทางเว็บ', + 'settings_allow_clustering' => 'นี้จะช่วยให้ bundling ของรายงานที่คล้ายกันเป็นจุดเดียวบนแผนที่', + 'settings_allow_comments' => 'อนุญาตให้ผู้ใช้แสดงความคิดเห็นเกี่ยวกับรายงานในหน้าหลักของเว็บไซต์', + 'settings_allow_feed' => 'นี้จะช่วยให้ RSS ฟีดข่าวแสดงบนหน้าหลักของเว็บไซต์', + 'settings_allow_feed_category' => 'นี้จะช่วยให้การสร้างหมวดหมู่ใหม่จาก RSS ฟีดข่าว', + 'settings_allow_reports' => 'อนุญาตให้ผู้ใช้ส่งข้อมูลผ่านทางแบบฟอร์มบนเว็บ', + 'settings_api_default_record_limit' => 'หมายเลขเริ่มต้นของระเบียนที่จะเรียกตามคำขอ API', + 'settings_api_max_record_limit' => 'จำนวนสูงสุดของรายการที่จะเรียกตามคำขอ API', + 'settings_api_max_requests_per_ip' => 'จำนวนสูงสุดของการร้องขอ API ต่อที่อยู่ IP', + 'settings_banner' => 'แบนเนอร์ เว็บไซต์ที่ แสดงขึ้น ที่ด้านบนของ ส่วนหน้า ของเว็บไซต์ของคุณ ถ้า รูปแบบ ที่คุณใช้ สนับสนุน ขนาดที่แนะนำ สำหรับ แบนเนอร์นี้ จะขึ้นอยู่กับ รูปแบบ ที่คุณใช้ เก็บไว้ในใจ ว่านี้จะ เปลี่ยน ชื่อเว็บไซต์และ เชือก ที่ด้านบนสุด ของหน้า', + 'settings_blocks_per_row' => 'จำนวนของคอลัมน์ในแต่ละแถว', + 'settings_cache_pages' => 'เปิดหรือ ปิดการใช้งาน แคช หน้า นี้จะทำให้การ แสดง หน้าเว็บ ได้เร็วขึ้นโดย การตัด เวลาการตอบสนอง เรา ขอแนะนำให้ใช้ แคช ในเว็บไซต์ การจราจรสูง ** โปรดจำไว้ว่า รายงาน จะ มีประชากร ใน ส่วนหน้าตาม ตารางเวลา ที่คุณ กำหนดไว้ต่ำกว่า ( อายุการใช้งาน Cache)', + 'settings_cache_pages_lifetime' => 'กำหนดการใช้งานของแคช', + 'settings_checkins' => 'การตั้งค่า นี้จะช่วยให้ การใช้งาน ที่ checkins ของคุณ ประเภทรายงานง่าย ที่ไม่ได้ มีการตรวจสอบ ก่อนที่จะไปที่หน้าแรกและ ต้องมี เว็บไซต์ของคุณ จะได้รับการ กำหนดค่า ทางหนึ่ง เมื่อคุณเปิดใช้งาน นี้ให้แน่ใจว่า การตั้งค่า เขตเวลาที่ คุณอยู่ใน เวลา UTC และ ธีม ของคุณสนับสนุน checkins เมื่อคุณ เปิดใช้งานนี้ ธีม เช็ค อย่างเดียว จะ กลายเป็น ใช้งาน ภายใต้ หน้า addons / การตั้งค่า รูปแบบ ของคุณ', + 'settings_configure_map' => 'ตั้งค่าแผนที่เพื่อให้ครอบคลุมสถานที่ต่างๆ', + 'settings_default_category_colors' => 'ตั้งค่ารหัสสีหนึ่งสำหรับทุกหมวดหมู่', + 'settings_default_category_icons' => 'ตั้งค่าไอคอนหนึ่งสำหรับทุกหมวดหมู', + 'settings_default_location' => 'นี้ป็นประเทศที่เว็บไซต์จะทำการนำเข้าไปใช้งาน', + 'settings_display_contact' => 'เปิดหรือปิดแท็บที่ติดต่อในเว็บไซต์หน้าหลัก', + 'settings_display_howtohelp' => 'เปิดหรือปิดแท็บช่วยเหลือในเว็บไซต์หน้าหลัก', + 'settings_display_items_per_page' => 'นี้เป็นจำนวนรายงานแสดงต่อหนึ่งหน้าในเว็บไซต์หน้าหลัก', + 'settings_display_items_per_page_admin' => 'นี้เป็นจำนวนรายงานที่แสดงต่อหนึ่งหน้าผู้ดูแลระบบ Back End', + 'settings_flsms_download' => 'นี้เป็นศูนย์กลางสำหรับข้อความที่เข้ามา', + 'settings_flsms_synchronize' => 'synchronizes ข้อความในฮับกับแพลตฟอร์ม Ushahidi', + 'settings_flsms_text_1' => 'หมายเลขโทรศัพท์ที่จะได้รับข้อความ', + 'settings_google_analytics' => 'ติดตามผู้เข้าชมเว็บไซต์ของคุณ ดูรายละเอียดสถิติผู้เข้าชม', + 'settings_locale' => 'ตั้งค่าภาษาที่จะใช้ในเว็บไซต์', + 'settings_manually_approve_users' => 'ถ้าคุณตั้งค่าตัวเลือกนี้เพื่อ ใช่ คุณต้องอนุมัติทุกให้ผู้ใช้รายคนที่สามารถสร้าง บัญชีผู้ใช้บนเว็บไซต์ของคุณได้ โดยการกำหนด บทบาท ต่างๆ ( ie. สมาชิก Admin, superadmin )', + 'settings_map_provider' => 'กำหนดแผนที่ที่จะใช้ในเว็บไซต์ได้ที่นี่', + 'settings_map_timeline' => 'แสดงรายงานตามเวลาและวันที่ส่งรายงาน', + 'settings_private_deployment' => 'การตั้งค่านี้เป็น จริง หรือ ใช่ จะทำให้ผู้ใช้ของคุณ ใช้งานแบบเป็นส่วนตัวเท่านั้น ซึ่งเฉพาะผู้ใช้ที่คุณระบุเท่านั้นที่สามารถใช้งานได้', + 'settings_require_email_confirmation' => 'ผู้ใช้ จะถูกส่งไป มีการเชื่อมโยง การยืนยัน คลิก ก่อนที่พวกเขา ได้รับอนุญาตให้ เข้าสู่ การใช้งานที่ว่านี้ ถูกตั้งไว้ที่ ใช่ ถ้าคุณ เปิดใช้งานนี้ ผู้ใช้ หลังจากการใช้งาน ของคุณ ได้ รับการยอมรับ พวกเขา จะได้รับแจ้ง เพื่อยืนยัน บัญชีของพวกเขา ก่อนที่ พวกเขาจะ ได้รับอนุญาตให้ ดำเนินการต่อการ ใช้มัน', + 'settings_server_host' => 'นี้คือที่อยู่อีเมล์', + 'settings_server_password' => 'นี้เป็นรหัสผ่านสำหรับที่อยู่อีเมลที่ได้รับรายงาน', + 'settings_server_port' => 'นี้จำเป็นต้องได้รับการยินยอมในการเชื่อมต่อจากที่อยู่อีเมล', + 'settings_server_ssl_support' => 'นี้เป็นสิ่งจำเป็นเพื่อทำให้การชื่อมต่อที่มีความปลอดภัยมากขึ้น', + 'settings_server_type' => 'นี้เป็นสิ่งจำเป็นเพื่อดึงอีเมลจากเซิร์ฟเวอร์โฮสต์', + 'settings_server_username' => 'นี่คือที่อยู่ อีเมลที่ ได้รับรายงาน', + 'settings_share_site_stats' => 'สถิติการเข้าชมจะถูกเก็บไว้บนเซิร์ฟเวอร์ ที่ควบคุมโดย Ushahidi ด้วยการทำให้ ตัวเลือกนี้คุณ สามารถเข้าถึงสถิติ โดยตรง ในแผง admin ของคุณ โดย ปิดการใช้งาน คุณจะหยุดการเก็บรวบรวม สถิติและ จะไม่สามารถที่จะกู้คืน การเก็บรวบรวมสถิติการเข้าชมได้ในขณะที่ถูกปิด', + 'settings_site_copyright_statement' => 'ทำ คนอื่น มีสิทธิที่จะ เผยแพร่ ข้อความ , ภาพ, วิดีโอและ / หรือ รูปแบบการออกแบบ ที่คุณและ สร้าง ผู้ใช้ของคุณ หรือไม่ ไปที่ https://creativecommons.org/choose/ ถ้าคุณ มีความสนใจใน การระบุ สิ่งที่คนอื่น มีความ สามารถที่จะ ทำอย่างไรกับ การทำงานของคุณ และจำไว้ว่า จะเป็น ที่เฉพาะเจาะจง เกี่ยวกับสิ่งที่ องค์ประกอบของ เว็บไซต์ที่คุณกำลัง ใบอนุญาต !', + 'settings_site_email' => 'นี่คือที่อยู่อีเมลที่จะได้รับรายงานและข้อความจากแบบฟอร์มติดต่อ', + 'settings_site_message' => 'นี่คือข้อความ ที่จะปรากฏบนแผนที่ในหน้าแรกนี้จะเป็นประโยชน์ สำหรับการให้ข้อมูลที่สำคัญในการ เข้าชมในเว็บไซต์ เอากล่องเพียงแค่ลบข้อความที่นี่', + 'settings_site_name' => 'นี่คือชื่อของเว็บไซต์ที่จะปรากฏขึ้นที่ด้านบนของหน้าหลักเว็บไซต์', + 'settings_site_submit_report_message' => 'นี่คือข้อความที่จะแสดงขึ้นบนหน้าส่งรายงาน และเป็นข้อมูลแจ้งกับผู้มาเยี่ยมชมเว็บไวด์ หรือผู้ไม่ประสงค์ดี ', + 'settings_site_tagline' => 'รายละเีอยดคล้าวๆ เกี่ยวกับเว็บไซด์', + 'settings_site_timezone' => 'นี้เป็นไทม์โซนของเว็บไซต์คุณ จึงมีผลกระทบกับการกระทำใด ๆ ที่คุณดำเนินการ และเกี่ยวข้องกับ วัน เวลาตามค่าที่ตั้งไว้ ร่วมถึงการเริ่มต้นเวลาตอนนี้ ของรายงานที่ส่งไปมาของเว็บไซต์', + 'settings_twitter_configuration' => 'ตั้ง twitter hashtag ที่จะ นำมาใช้ใน ทวีต', +); diff --git a/application/i18n/th_TH/ui_admin.php b/application/i18n/th_TH/ui_admin.php new file mode 100644 index 0000000000..f5ca73dca9 --- /dev/null +++ b/application/i18n/th_TH/ui_admin.php @@ -0,0 +1,329 @@ + 'คุณไม่สามารถเข้าใช้งาน สิทธิของคุณอาจจะไม่ถูกต้องหรือการร้องขอของคุณได้รับการปฏิเสธ', + 'access_denied_others' => 'ไม่สามารถเข้าใช้งานได้ คำขอของคุณได้รับการพิจรณาแล้วแต่ถูกปฏิเสธเนื่องจากมีการจำกัดการเข้าใช้งาน ลองกลับมาใช้ใหม่อีกครั้ง', + 'access_level' => 'ระดับการเข้าถึงข้อมูล', + 'actions' => 'การปฏิบัติ', + 'add_to_category' => 'เพิ่มหมวดหมู่', + 'added' => 'เพิ่มแล้ว', + 'added_edited' => 'เพิ่ม/แก้ไข', + 'addons' => 'แอดออน', + 'admin_role' => 'ผู้ดูแลระบบ', + 'alerts' => 'การแจ้งเตือน', + 'alerts_received' => 'ได้รับการแจ้งเตือน', + 'all' => 'ทั้งหมด', + 'am' => 'AM', + 'anonymous' => 'ไม่ระบุชื่อ', + 'anyone_role' => 'ใครก็ได้', + 'anywhere' => 'ทุกแห่ง', + 'api_banned' => 'ห้าม API', + 'api_logs' => 'บันทึก API', + 'api_settings' => 'การตั้งค่า API', + 'api_unban' => 'ยกเลิกการห้าม', + 'api_unban_all' => 'ยกเลิกการห้ามทั้งหมด', + 'approved' => 'ได้รับการอนุมัติ', + 'approve_auto' => 'อนุมัติแบบอัตโนมัติ', + 'approve_manual' => 'อนุมัติแบบธรรมดา', + 'archived' => 'จัดเก็บ', + 'are_you_sure_you_want_to' => 'คุณแน่ใจว่าคุณต้องการที่จะ', + 'are_you_sure_you_want_to_delete_this_item' => 'คุณแน่ใจหรือว่าต้องการลบรายการนี้', + 'are_you_sure_you_want_to_delete_this_photo' => 'คุณแน่ใจว่าคุณต้องการที่จะลบภาพนี้', + 'are_you_sure_you_want_to_switch_forms' => 'คุณแน่ใจว่าคุณต้องการที่จะเปลี่ยนรูปแบบ?', + 'assign' => 'กำหนด', + 'assignments' => 'งานที่ได้มอบหมาย', + 'assign_badge' => 'กำหนดแบดจ์', + 'author' => 'ผู้เขียน', + 'author_email' => 'ผู้เขียนอีเมล์', + 'back' => 'กลับ', + 'banip_action' => 'ห้าม IP', + 'between_times' => 'ระหว่างเวลา', + 'blocks' => 'บล็อก', + 'body' => 'เนื้อหา', + 'cancel' => 'ยกเลิก', + 'categories' => 'หมวดหมู่', + 'chart_display_error' => 'แผนภูมิแสดงข้อผิดพลาด', + 'check_message_valid' => 'โปรดตรวจสอบให้แน่ใจว่าข้อความของคุณถูกต้อง', + 'check_number' => 'กรุณาตรวจสอบว่าจำนวนถูกต้อง', + 'check_sms_settings' => 'กรุณาตรวจสอบการตั้งค่า SMS ของคุณ!', + 'checkin_details' => 'ตรวจสอบรายละเอียด', + 'checkins' => 'ตรวจสอบ', + 'cities_loaded' => 'โหลดเมือง', + 'code' => 'รหัส', + 'code_out_of_sync' => 'รหัสออกจากซิงค์', + 'color' => 'สี', + 'comments' => 'ความเห็น', + 'confirmation_code' => 'รหัสยืนยันการแจ้งเตือนของคุณคือ:', + 'confirm_msg' => 'ผู้ใช้ได้รับการ', + 'count' => 'นับ', + 'country_not_found' => 'ไม่พบประเทศ', + 'created_edited' => 'สร้าง/แก้ไข', + 'create_report' => 'สร้างรายงาน', + 'critical_upgrade' => 'อัพเกรดที่สำคัญ', + 'csv' => 'CSV', + 'currently_active' => 'ใช้งานในขณะนี้', + 'currently_inactive' => 'ไม่ได้ใช้งานในขณะนี้', + 'custom_forms_insufficient_permissions' => 'คุณไม่มีสิทธิ์เพียงพอที่จะแก้ไขฟิลด์นี้ได้', + 'daily' => 'ประจำวัน', + 'dashboard' => 'แดชบอร์ด', + 'database' => 'ฐานข้อมูล', + 'date_time' => 'วันที่และเวลา', + 'date_added' => 'เพิ่มวันแล้ว', + 'date_modified' => 'วันแก้ไขแล้ว', + 'days_of_the_week' => 'วันในหนึ่งสัปดาห์', + 'db_out_of_sync' => 'รุ่น DB ออกจากซิงค์', + 'deleted' => 'ลบแล้ว', + 'delete_action' => 'ลบ', + 'delete_all' => 'ลบรายงานทั้งหมด', + 'delete_badge' => 'ลบแบดจ์', + 'demo' => 'การสาธิต', + 'description' => 'ลักษณะ', + 'disabled' => 'ปิดการใช้งานแล้ว', + 'divider_start_field' => 'เริ่มแบ่ง', + 'divider_end_field' => 'การแบ่งสิ้นสุด', + 'divider_class' => 'ประเภท div ', + 'download_reports' => 'ดาวน์โหลดรายงาน', + 'dropdown_choices' => 'ตัวเลือกจาก dropdown', + 'edited' => 'แก้ไขแล้ว', + 'edited_by' => 'แก้ไขโดย', + 'edit_action' => 'แก้ไข', + 'edit_log' => 'บันทึกการแก้ไข', + 'email' => 'อีเมล์', + 'entire_collective' => 'ทั้งกลุ่ม', + 'error_geocoding' => 'ข้อผิดพลาดใน geocoding! ข้อผิดพลาด HTTP', + 'error_imap' => 'ไม่ได้ติดตั้ง IMAP PHP Library', + 'error_twitter' => 'ข้อมูลประจำตัวไม่ถูกต้อง', + 'error_msg' => 'ผิดพลาด', + 'error_post_incident' => 'เกิดข้อผิดพลาด ไม่สามารถที่จะโพสต์ได้', + 'every_six_hours' => 'ทุกหกชั่วโมง', + 'every_twelve_hours' => 'ทุกสิบสองชั่วโมง', + 'experimental' => 'ทดลอง', + 'faqs' => 'FAQ\'s', + 'feed' => 'ฟีด', + 'feedback' => 'ข้อเสนอแนะ', + 'feeds' => 'ฟีด', + 'field_choices' => 'รายการทางเลือก', + 'field_default' => 'ค่าเริ่มต้น', + 'field_datatype' => 'ชนิดข้อมูล', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'มาร์กอัป', + 'field_datatype_numeric' => 'เป็นตัวเลข', + 'field_datatype_text' => 'ข้อความ', + 'field_height' => 'ความสูง (แถว)', + 'field_hidden' => 'ฟิลด์ที่ซ่อนอยู่', + 'field_maxlength' => 'ความยาวตัวอักษรสูงสุด', + 'field_name' => 'ชื่อฟีลค์', + 'field_toggle' => 'Toggle', + 'field_toggle_no' => 'ไม่', + 'field_toggle_yes_close' => 'ใช่่ ปิดโดยใช้ค่าเริ่มต้น', + 'field_toggle_yes_open' => 'ใช่ เปิดโดยใช้ค่าเริ่มต้น', + 'file_not_found_upload' => 'ไม่สามารถหาไฟล์ที่อัพโหลด', + 'file_open_error' => 'ไม่สามารถเปิดไฟล์ได้', + 'form_not_exists' => 'ไม่มีแบบฟอร์มนี้!', + 'forum' => 'ฟอรัม', + 'free_text_field' => 'พื้นที่ใส่ข้อความ (ข้อความ)', + 'date_field' => 'ฟีล์ดวันที่', + 'radio_field' => 'ฟิลด์ปุ่มวิทยุ', + 'checkbox_field' => 'ฟิลด์ช่องทำเครื่องหมาย', + 'dropdown_field' => 'ฟีลค์ dropdown', + 'from' => 'จาก', + 'from_date' => 'จาก', + 'geonames_timeout' => 'เกิดข้อผิดพลาดจาก Geonames เวลาหมด', + 'get_help' => 'ขอความช่วยเหลือ', + 'get_more_themes' => 'เพิ่มรูปแบบให้มากขึ้น', + 'get_more_plugins' => 'รับปลั๊กอินเพิ่มเติม', + 'header_actions' => 'การปฏิบัติ', + 'header_add_edit' => 'เพิ่ม/แก้ไข', + 'header_email' => 'อีเมล์', + 'header_manage_users' => 'จัดการผู้ใช้', + 'header_role' => 'บทบาท', + 'header_user' => 'ผู้ใช้', + 'help' => 'ช่วยเหลือ', + 'hourly' => 'ทุกๆชั่วโมง', + 'incident_feed' => 'ฟีดเหตุการณ์ที่เกิดขึ้น', + 'installer_info' => 'โฟลเดอร์การติดตั้งยังคงมีอยู่ ลบโฟลเดอร์ติดตั้งนี้เพราะมันเสื่องความปลอดภัย', + 'instance' => 'ตัวอย่าง', + 'instances' => 'ตัวอย่าง', + 'instance_details' => 'รายละเอียดตัวอย่าง', + 'invalid_parameter' => 'พารามิเตอร์ที่ไม่ถูกต้อง', + 'ip_address' => 'ที่อยู่ IP', + 'is_date' => 'นี้เป็นฟิลด์วันที่หรือไม่', + 'ispublic_visible' => 'ใครสามารถดูคำตอบ', + 'ispublic_submit' => 'ใครสามารถส่งคำตอบ', + 'keyword' => 'คำหลัก', + 'keywords' => 'คำหลัก', + 'label_email' => 'อีเมล์:', + 'label_full_name' => 'ชื่อเต็ม:', + 'label_password' => 'รหัสผ่าน:', + 'label_role' => 'บทบาท:', + 'label_username' => 'ชื่อผู้ใช้:', + 'layers' => 'ชั้น', + 'login_role' => 'ผู้ดำเนินรายการ', + 'logout' => 'ออกจากระบบ', + 'logs' => 'ที่บันทึก', + 'manage' => 'จัดการ', + 'manage_roles' => 'จัดการบทบาทและสิทธิ์', + 'manage_users' => 'ดูผู้ใช้', + 'manage_users_edit' => 'เพิ่ม/แก้ไขผู้ใช้', + 'manage_public_listing' => 'จัดการรายการสาธารณะ', + 'mark_as' => 'มาร์คเป็น', + 'marked_as_not_spam' => 'ทำเครื่องหมายว่าไม่ได้เป็นสแปม', + 'marked_as_spam' => 'ทำเครื่องหมายว่าเป็นสแปม', + 'match_no_documents' => 'ไม่ตรงกับเอกสารใดๆ', + 'message' => 'ข้อความ', + 'messages' => 'ข้อความ', + 'messages_laconica' => 'ข้อความ Laconica', + 'messages_twitter' => 'ข้อความ Twitter', + 'message_sent' => 'ข้อความของคุณได้ถูกส่ง!', + 'mhi' => 'MHI', + 'minute' => 'นาที', + 'minutes' => 'นาที', + 'missing_parameter' => 'พารามิเตอร์ที่ขาดหายไป', + 'moderator' => 'ผู้ดำเนินรายการ', + 'modified' => 'แก้ไข', + 'modify_timezone' => 'ปรับเปลี่ยนการตั้งค่าโซนเวลา', + 'move_down_action' => 'ย้ายลง', + 'move_up_action' => 'เลื่อนขึ้น', + 'multiple_hosted_instances' => 'หลายอินสแตนซ์โฮสต์', + 'my_alerts' => 'การแจ้งเตือนของฉัน', + 'my_checkins' => 'ตรวจสอบเข่้าของฉัน', + 'my_profile' => 'โปรไฟล์ของฉัน', + 'my_reports' => 'รายงานของฉัน', + 'my_votes' => 'โหวต', + 'my_votes_up' => 'บวก', + 'my_votes_down' => 'ลบ', + 'name' => 'ชื่อ', + 'new_alert' => 'สร้างการแจ้งเตือนใหม่', + 'new_private' => 'สร้างข้อความใหม่', + 'new_password' => 'รหัสผ่านใหม่', + 'no' => 'ไม่', + 'none_category_explanation' => 'นี้เป็นหมวดหมู่พิเศษที่จะไม่แสดงในแบบฟอร์มการส่งรายงานสำหรับผู้ใช้ส่งรายงาน เนื่องจากจะใช้ในการเก็บรายงานที่ทิ้งไว้โดยไม่มีหมวดหมู่ (รายงานที่ไม่ได้แยก) เป็นผลมาจากการลบหมวดหมู่', + 'notification' => 'การแจ้งเตือน', + 'not_case_sensitive' => 'นี้ไม่ใช่กรณีที่สำคัญ', + 'not_found' => 'ไม่พบ', + 'no_data' => 'ไม่มีข้อมูลให้แสดง', + 'no_error' => 'ไม่มีข้อผิดพลาด', + 'no_result_display_msg' => 'ไม่มีข้อมูลให้แสดงผลได้!', + 'of' => 'ของ', + 'on_specific_count' => 'ในจำนวนที่เจาะจง', + 'openids' => 'OpenID\'s', + 'page' => 'หน้า', + 'pages' => 'หน้า', + 'page_not_found' => 'ไม่พบหน้า', + 'page_not_found_message_with_contact' => 'ขออภัย เว็บที่คุณกำลังพยายามที่จะดูไม่มี

คุณตามลิงค์จากว็บไซต์อื่นหรือของเรา?
หากคุณมาถึงหน้านี้จากส่วนหนึ่งของเว็บไซต์ของเรา กรุณา contact us ติดต่อเรา เพื่อที่จะให้เราได้สามารถแก้ไขข้อผิดพลาดของเรา.

คุณตามลิงค์จากเว็บไซต์อื่นหรือไม่?
ลิงค์จากเว็บไซต์อื่นๆบางครั้งอาจจะล้าสมัยหรือสะกดผิด บอกเรา เว็บไซต์ที่คุณมาจากและเราจะพยายามติดต่อกับเว็บไซต์นั่นๆเพื่อที่จะแก้ไขปัญหา

คุณพิมพ์ URL หรือเปล่า?
คุณอาจจะพิมพ์ที่อยู่ (URL) ที่ไม่ถูกต้อง ตรวจสอบให้แน่ใจว่าคุณสะกดคำที่ถูกต้องแน่นอน ฯลฯ

', + 'page_not_found_message' => 'ขออภัยหน้าเว็บที่คุณกำลังพยายามที่จะดูเข้าไปดูไม่ได้อยู่ที่นี่', + 'parameters_used' => 'พารามิเตอร์ที่ใช้', + 'password' => 'รหัสผ่าน', + 'password_reset' => 'เปลี่ยนรหัสผ่าน', + 'password_reset_message_line_1' => 'เรียน', + 'password_reset_message_line_2' => 'เราได้รับคำขอที่จะเปลี่ยนรหัสผ่านสำหรับ', + 'password_reset_message_line_3' => 'ในการเปลี่ยนรหัสผ่านของคุณ กรุณาคลิกลิงค์ด้านล่าง (หรือคัดลอกและวางลงในเบราว์เซอร์ของคุณ)', + 'password_reset_message_line_4' => 'ตามที่คุณร้องขอ รหัสผ่านของคุณได้รับการถูกเปลี่ยนแล้ว รายละเอียดใหม่ของคุณมีดังนี้', + 'password_reset_subject' => 'รีเซ็ตรหัสผ่าน Ushahidi', + 'phone' => 'โทรศัพท์', + 'please_select' => 'กรุณาเลือก', + 'pm' => 'PM', + 'post_method_not_used' => 'ข้อมูลไม่ได้ถูกส่งโดยการโพสต์', + 'preview' => 'แสดงตัวอย่าง', + 'private_message' => 'ข้อความ', + 'private_messages' => 'ข้อความส่วนตัว', + 'private_sent' => 'ข้อความส่วนตัวได้ถูกส่งแล้ว', + 'private_subject' => 'เรื่อง', + 'private_to' => 'ถึง', + 'public_listing' => 'รายการสาธารณะ', + 'qualifiers' => 'คัดเลือก', + 'read' => 'อ่าน', + 'relevance' => 'ความสัมพันธ์', + 'report_title' => 'ชื่อเรื่องของรายงาน', + 'report_date' => 'วันที่รายงาน', + 'reporters' => 'ผู้รายงาน', + 'reporter_levels' => 'ระดับของผู้รายงาน', + 'reports' => 'รายงาน', + 'reputation' => 'คะแนนชื่อเสียง', + 'required' => 'จำเป็น', + 'reset' => 'ตั้งใหม่', + 'response' => 'การตอบ', + 'results' => 'ผล', + 'revoke' => 'เรียกกลับคืน', + 'riverid_exists_admin' => 'อีเมลนี้มีอยู่แล้วในบัญชีที่ของ Crowdmap ID ผู้ใช้จะต้องใช้รหัสผ่านที่มีอยู่แล้วจาก Crowdmap เพื่อเข้าสู่ระบบ', + 'save_settings' => 'บันทึกการตั้งค่า', + 'search' => 'ค้นหา', + 'search_reports' => 'รายงานการค้นหา', + 'searching_for' => 'ค้นหาเกี่ยวกับ', + 'security_info_encryption_key' => 'คีย์รหัสลับยังคงเป็นตามค่าเริ่มต้น ซึ่งไม่ปลอดภัยและต้องมีการเปลี่ยนแปลง', + 'security_info_https' => 'เว็บไซต์นี้ถูกเสิร์ฟผ่าน HTTP ควรจะตั้งค่า HTTPS เพื่อเพิ่มความปลอดภัย', + 'security_info_instructions' => 'คำแนะนำมีอยู่ในวิกิพีเดีย:', + 'select_download_format' => 'เลือกรูปแบบที่คุณต้องการดาวน์โหลดรายงาน: -', + 'select_field_type' => '--- เลือกประเภทฟิลด์ ---', + 'select_item' => 'กรุณาเลือกรายการ', + 'select_trigger_before_response' => 'คุณต้องเลือกทริกเกอร์ก่อนที่คุณจะสามารถเลือกการตอบสนอง', + 'select_trigger_before_qualifiers' => 'คุณต้องเลือกทริกเกอร์ก่อนที่คุณจะนิยาม Qualifier', + 'sender' => 'ผู้ส่ง', + 'send_to' => 'ส่งไปที่', + 'sent_from_website' => 'ข้อความนี้ถูกส่งมาจากเว็บไซต์ของคุณที่', + 'server_time' => 'เวลาเซิร์ฟเวอร์', + 'settings' => 'การตั้งค่า', + 'showing_page' => 'แสดงหน้า', + 'showing_results' => 'กำลังแสดงผล', + 'shown' => 'แสดงให้เห็นว่า', + 'special_category' => 'หมวดหมู่พิเศษ', + 'special_category_explanation' => 'อันนี้เป็นหมวดหมู่พิเศษที่จะไม่แสดงในแบบฟอร์มการส่งรายงานสำหรับผู้ใช้ส่งรายงาน ซึ่งจะถูกนำมาใช้ร่วมกับคุณสมบัติ "รายงานที่ยินยอม" ', + 'specific_area' => 'พื้นที่ที่เจาะจง', + 'state' => 'สภาพ', + 'statistics' => 'สถิติ', + 'stats' => 'สถิติ', + 'stats_collection_error' => 'การเก็บรวบรวมสถิติล้มเหลว โปรดลองอีกครั้งในภายหลัง', + 'stats_collection_error_short' => ' เก็บสถิติล้มเหลว', + 'specific_days' => 'ระบุวันที่', + 'subject' => 'เรื่อง', + 'superadmin_role' => 'Super Admin', + 'task_performed' => 'งานที่ได้ทำการดำเนินการ', + 'text_field' => 'ฟิลด์ข้อความ', + 'theme_name' => 'ชื่อ', + 'title' => 'จัดการผู้ใช้', + 'timeout' => 'เกิดข้อผิดพลาด เนื่องจากหมดเวลา', + 'to' => 'ถึง', + 'total_records' => 'บันทึกรวม', + 'to_date' => 'ถึง', + 'translate_reports' => 'แปลรายงาน', + 'trigger' => 'Trigger', + 'triggering_user' => 'ผู้ใช้ Trigger', + 'triggers' => 'Triggers', + 'unapproved' => 'ไม่อนุมัติ', + 'unknown' => 'ไม่ทราบ', + 'unknown_failure' => 'ล้มเหลว ไม่สามารถระบุสาเหตุ', + 'unread' => 'ไม่ได้อ่าน', + 'unsubscribe_message' => 'คุณจะไม่ได้รับการแจ้งเตือนจาก', + 'update_link' => 'คลิกที่นี่เพื่ออัพเกรดตอนนี้', + 'upgrade_ushahidi' => 'อัพเกรด Ushahidi', + 'upgrade_ushahidi_status' => 'อัพเกรดสถานะ Ushahidi', + 'upload_reports' => 'อัปโหลดรายงาน', + 'user' => 'ผู้ใช้', + 'users' => 'ผู้ใช้', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'ตรวจสอบ/ยืนยัน', + 'verify_unverify' => 'ตรวจสอบ/ยกเลิกการยืนยัน', + 'version' => 'เวอร์ชัน', + 'version_available' => 'สามารถอัพเกรดได้', + 'video_encoding' => 'รหัสวิดีโอ', + 'view_private' => 'ข้อความส่วนตัว', + 'view_site' => 'ดูเว็บไซต์', + 'view_report' => 'ดูรายงาน', + 'welcome' => 'ยินดีต้อนรับ', + 'wiki' => 'วิกิพีเดีย', + 'xml' => 'XML', + 'yes' => 'ใช่', + 'your_search_for' => 'ที่คุณค้นหา', + 'delete_all_instructions' => 'คลิกที่ปุ่มด้านล่างนี้จะลบรายงานทั้งหมดในฐานข้อมูล คุณควรใช้ด้วยความระมัดระวังเพราะการดำเนินการนี้ไม่สามารถยกเลิกได้', + 'delete_all_backup' => 'เราแนะนำให้คุณสำรองฐานข้อมูลของคุณก่อนที่จะดำเนินการต่อไป', + 'delete_all_button' => 'ฉันแน่ใจว่าฉันต้องการที่จะลบรายงาน(s)ทั้งหมด %s จากฐานข้อมูล', + 'delete_all_confirm' => 'คุณแน่ใจหรือว่าต้องการที่จะลบรายงานทั้งหมดหรือไม่', + 'delete_all_no_reports' => 'ไม่มีรายงานให้ลบ', + 'user_no_logins' => 'จำนวนการเข้าสู่ระบบ', + 'user_last_login' => 'เข้าระบบครั้งสุดท้าย', + 'user_confirmed_account' => 'ยืนยันบัญชีหรือไม่', +); diff --git a/application/i18n/th_TH/ui_main.php b/application/i18n/th_TH/ui_main.php new file mode 100644 index 0000000000..e21c5b807c --- /dev/null +++ b/application/i18n/th_TH/ui_main.php @@ -0,0 +1,622 @@ + 'เกี่ยวกับ', + 'access' => 'เข้าใช้', + 'access_limits' => 'จำกัดการเข้าถึง', + 'account_name' => 'ชื่อผู้ใช้', + 'actions' => 'ดำเนินการ', + 'action_confirm' => 'การกระทำนี้สามารถถูกยกเลิกได้ คุณแน่ใจว่าต้องการดำเนินการต่อ?', + 'activate' => 'ยอมรับ', + 'active' => 'ยอมรับ', + 'add' => 'เพิ่ม', + 'added_by' => 'เพิ่มโดย', + 'additional_data' => 'วันที่เพิ่มเติม', + 'additional_reports' => 'รายงานเพิ่มเติม', + 'add_edit' => 'เพิ่ม/แก้', + 'add_field' => 'เพิ่มฟิลด์', + 'add_language' => 'เพิ่มภาษา', + 'add_new' => 'เพิ่มใหม่', + 'add_new_category' => 'เพิ่มกลุ่มใหม่', + 'add_translation' => 'เพิ่มตัวแปลภาษา', + 'admin' => 'จัดการบริหาร', + 'alerts' => 'รับการแจ้งเตือน', + 'alerts_alert_me' => 'เตือนฉันด้วย ถ้ามีเหตุการณ์เกิดขึ้นในบริเวณ', + 'alerts_btn_send' => 'บันทึกการแจ้งเหตุ', + 'alerts_email' => 'อีเมล์', + 'alerts_enter_email' => 'โปรดกรอดอีเมล์', + 'alerts_enter_mobile' => 'โปรดกรอกหมายเลขโทรศัพท์ ตัวอย่าง. +66 8 xxxx xxxx', + 'alerts_get' => 'รับการแจ้งเตือน', + 'alert_has_been' => 'ได้รับการแจ้งเตือน', + 'alerts_mobile_phone' => 'โทรศัพท์เคลื่อนที่', + 'alerts_place_spot' => 'หรือเลือกพื้นที่ในแผนที่ด้านล่าง และเราจะแจ้งเตือนคุณเมื่อมีรายงานแจ้งเข้ามา ที่อยู่ในรัศมี 20 กิโลเมตร', + 'alerts_place_spot2' => 'หากคุณไม่สามารถค้นหาสถานที่ของคุณได้ กรุณาคลิกที่แผนที่เพื่อกำหนดพิกัดของคุณ', + 'alerts_rss' => 'ฟีด (คัดลอก URL) ด้านล่าง', + 'alerts_select_city' => 'เลือกเมือง', + 'alerts_step1_select_city' => 'ขั้นตอนที่ 1: เลือกเมืองหรือสถานที่ของคุณ:', + 'alerts_step2_send_alerts' => 'ขั้นตอนที่ 2: ติดต่อกลับหาฉันได้ทาง:', + 'alerts_step3_select_catgories' => 'ขั้นตอนที่ 3 (เพิ่มเติม): เลือกหมวดหมู่', + 'alert_confirm_previous' => 'ยืนยันการรับแจ้งเตือน', + 'alert_saved' => 'การแจ้งเตือนถูกบันทึกแล้ว!', + 'all' => 'ทั้งหมด', + 'allowed' => 'อนุญาต', + 'allowed_tags' => 'แท็ก HTML ที่อนุญาต: "% s"', + 'allowed_iframes' => 'Iframes จะได้รับอนุญาตจากเพียง:% s', + 'all_categories' => 'หมวดหมู่ทั้งหมด', + 'all_time' => 'ทุกเวลา', + 'and' => 'และ', + 'api' => 'API', + 'approve' => 'ยืนยัน', + 'approved' => 'ได้รับการยืนยันแล้ว', + 'approved_reports' => 'รายงานที่ยืนยันแล้ว', + 'approve_this_report' => 'ยืนยันรายงานนี้', + 'approximate' => 'ประมาณ', + 'archive' => 'ที่จัดเก็บเอกสาร', + 'archived' => 'ที่จัดเก็บเอกสาร', + 'ascending' => 'จากน้อยไปมาก', + 'at' => 'ที่', + 'author' => 'ผู้เขียน', + 'auto_checkin' => 'ตรวจสอบอัตโนมัติ', + 'avg_reports_per_day' => 'รายงานเฉลี่ยต่อวัน', + 'awaiting_approval' => 'รอการยืนยัน', + 'awaiting_verification' => 'รอตรวจสอบ', + 'badge' => 'แบดจ์', + 'badges' => 'แบดจ์', + 'badge_image' => 'ภาพแบดจ์', + 'badge_image_upload_your_own' => 'หรือคุณสามารถอัปโหลดภาพแบตจ์ของคุณเองแทน', + 'badge_pack' => 'รายการแบดจ์', + 'badge_select' => 'เลือกแบดจ์', + 'blog' => 'บล็อค', + 'browse_profiles' => 'เรียกโปรไฟล์', + 'cancel' => 'ยกเลิก', + 'categories' => 'หมวดหมู่', + 'category' => 'ประเภท', + 'category_filter' => 'กรองประเภท', + 'category_has_been' => 'ประเภทนี้ถูก', + 'category_name' => 'ชื่อประเภท', + 'change_date_range' => 'เลือกช่วงวัน', + 'change_password' => 'เปลี่ยนรหัสผ่าน', + 'change_picture' => 'เปลี่ยนรูปภาพ', + 'choose' => 'โปรดเลือก', + 'choose_data_points' => 'เลือกตำแหน่งข้อมูลที่ต้องการดาวน์โหลด', + 'choose_date_range' => 'หรือเลือกช่วงข้อมูลที่ต้องการ', + 'choose_field_type' => 'เลือกประเภทฟิลด์', + 'cleanurl' => 'จัดระเบียบ URL', + 'clear' => 'ล้างข้อมูล', + 'clear_map' => 'ล้างข้อมูลแผนที่', + 'close' => 'ปิด', + 'clusters' => 'กลุ่ม', + 'color' => 'สี', + 'comment' => 'ความคิดเห็น', + 'comments' => 'ความคิดเห็น', + 'comment_details' => 'รายละเอียดความคิดเห็น', + 'configuration_saved' => 'การตั้งค่าของคุณถูกบันทึกแล้ว', + 'configure' => 'ตั้งค่า', + 'confirm_email_successful' => 'คุณได้ทำการยืนยันอีเมล์เรียบร้อยแล้ว! เข้าระบบด้านล่าง', + 'confirm_email_successful_and_approval' => 'คุณได้ยืนยันที่อยู่อีเมล์ของคุณเรียบร้อยแล้ว! ผู้ดูแลระบบต้องอนุมัติบัญชีของคุณก่อนที่คุณจะเข้าสู่ระบบได้', + 'confirm_email_failed' => 'อีเมล์ยืนยันล้มเหลว คุณสามารถขออีเมล์ยืนยันใหม่ข้างล่าง', + 'contact' => 'ติดต่อเรา', + 'contact_code' => 'รหัสการรักษาความปลอดภัย', + 'contact_email' => 'อีเมล์ของคุณ', + 'contact_message' => 'ข้อความ', + 'contact_message_has_send' => 'ข้อความถูกส่งแล้ว', + 'contact_name' => 'ชื่อ', + 'contact_phone' => 'เบอร์โทรศัพท์', + 'contact_send' => 'ส่งข้อความ', + 'contact_subject' => 'หัวข้อ', + 'copyright' => 'ลิขสิทธิ ©', + 'create' => 'สร้าง', + 'create_edit' => 'สร้าง/แก้ไข', + 'create_new' => 'สร้างใหม่', + 'create_new_password' => 'ตั้งรหัสผ่านใหม่', + 'create_report' => 'สร้างรายงาน', + 'credibility' => 'ความน่าเชื่อถือ', + 'current_password' => 'รหัสผ่านปัจจุบัน', + 'custom_fields' => 'ตั้งค่าฟิลด์', + 'data' => 'ข้อมูล', + 'date' => 'วันที่', + 'date_format' => '(ดด/วว/ปปปป)', + 'date_time' => 'วัน & เวลา', + 'day' => 'วัน', + 'deactivate' => 'ไม่ทำงาน', + 'default_location_name' => 'ไนโรบี, เคนยา', + 'delete' => 'ลบ', + 'deleted' => 'ลบแล้ว', + 'deletes' => 'ลบ', + 'delete_disabled' => 'ลบรายการที่ใช้งานไม่ได้', + 'delete_last' => 'ลบล่าสุด', + 'delete_report' => 'ลบรายงานนี้', + 'delete_selected' => 'ลบที่เลือก', + 'delete_spam' => 'ลบแสปม', + 'demo' => 'ตัวอย่าง', + 'description' => 'รายละเอียด', + 'descending' => 'จากมากไปน้อย', + 'detailed_location_example' => 'ตัวอย่างเช่น: ซอย 14 อ.ปากเกร็ด จ.นนทบุรี', + 'details' => 'รายละเอียด', + 'direct_report' => 'รายงานโดยตรง', + 'disabled' => 'ยกเลิกการใช้งาน', + 'disapprove' => 'ไม่อนุมัติ', + 'download_reports' => 'ดาวน์โหลดรายงาน', + 'download' => 'ดาวน์โหลด', + 'edit' => 'แก้ไข', + 'edit_form_fields' => 'แก้ไขฟิลด์', + 'edit_report' => 'แก้ไขรายงาน', + 'email' => 'อีเมล์', + 'email_address' => 'อีเมล์', + 'email_configuration' => 'ตั้งค่าเมล์เซอร์เวอร์', + 'email_server_host' => 'เมลเซิร์ฟเวอร์โฮสต์', + 'email_server_password' => 'อีเมล์รหัสผ่านสำหรับเซิร์ฟเวอร์', + 'email_server_port' => 'พอร์ตเซิร์ฟเวอร์สำหรับอีเมล์', + 'email_server_ssl_support' => 'ให้บริการช่วยเหลือเซิร์ฟเวอร์อีเมล์ SSL', + 'email_server_type' => 'ประเภทเซิร์ฟเวอร์อีเมล์', + 'email_server_username' => 'อีเมล์ชื่อผู้ใช้งาน', + 'email_settings_comment_0' => 'ดังนั้นการตั้งค่าของคุณจะต้องเกี่ยวข้องกับที่อยู่อีเมล์นี้', + 'email_settings_comment_00' => 'เพื่อที่จะได้รับรายงานทางอีเมลโปรดเข้าการตั้งค่าบัญชีอีเมลของคุณด้านล่าง โปรดทราบว่าอีเมล์จะได้รับในอีเมลที่อยู่ของคุณ', + 'email_settings_comment_1' => 'เซิร์ฟเวอร์บางรายการต้องป้อนที่อยู่อีเมล์', + 'email_settings_comment_2' => 'รหัสผ่านของบัญชีอีเมล์', + 'email_settings_comment_3' => 'พอร์ตสามัญ: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'ตัวอย่าง: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'ตัวอย่าง: pop3, IMAP', + 'email_settings_comment_6' => 'เปิดหรือปิดการใช้งานการเชื่อมต่อ SSL', + 'empty' => '-----ค่าว่าง---', + 'end_point' => 'ถึง', + 'error' => 'ผิดพลาด!', + 'example' => 'ตัวอย่าง', + 'example_country' => 'ประเทศเคนย่า', + 'external_apps' => 'แอปฯ ภายนอก', + 'external_video_link' => 'วิดีโอลิงค์', + 'facebook' => 'Facebook', + 'feed' => 'ฟีด', + 'feedback' => 'ให้ข้อเสนอแนะ', + 'feedback_reports' => 'กรุณาให้ข้อเสนอแนะเกี่ยวกับประสบการณ์ของคุณโดยการส่งอีเมล์ไปยัง', + 'feeds' => 'ฟีด', + 'feed_has_been' => 'ฟีดนี้ได้', + 'feed_items' => 'รายการฟีด', + 'feed_name' => 'ชื่อฟีด', + 'feed_url' => 'ฟีด URL', + 'field_unused' => 'ฟิลด์ข้อมูลที่ไม่ได้ใช้', + 'file' => 'ไฟล์', + 'file_over_max_allowed' => 'ไฟล์ของคุณขนาดใหญ่เกิดกว่าที่อนุญาต', + 'filters' => 'ตัวกรอง', + 'filter_reports' => 'กรองรายงาน', + 'filter_reports_by' => 'กรองโดย', + 'filter_reports_contain' => 'กรองโดยมีคำว่า', + 'find' => 'ค้นหา', + 'find_location' => 'ค้นหาสถานที่', + 'first_name' => 'ชื่อ', + 'force_run_scheduler' => 'บังคับการจัดตารางเวลา', + 'forgot_password' => 'ลืมรหัสผ่าน?', + 'form' => 'ฟอร์ม', + 'forms' => 'ฟอร์ม', + 'form_description' => 'รายละเอียดฟอร์ม', + 'form_edit' => 'แก้ไขฟอร์ม', + 'form_has_been' => 'ฟอร์มนี้ได้', + 'form_title' => 'ชื่อฟอร์ม', + 'from' => 'จาก', + 'full_name' => 'ชื่อ', + 'geolocation_available' => 'มี GeoLocation', + 'geometry_color' => 'สี', + 'geometry_comments' => 'อธิบาย', + 'geometry_label' => 'ป้าย', + 'geometry_strokewidth' => 'ความกว้างของเส้น', + 'go' => 'ไป', + 'hashtag' => '#', + 'has_been' => 'เคยมี', + 'help' => 'วิธีการช่วยเหลือ', + 'hidden' => 'ซ่อนไว้', + 'hide' => 'ซ่อน', + 'hide_this_message' => 'ซ่อนข้อความนี้', + 'home' => 'หน้าหลัก', + 'how_to_report' => 'รายงานอย่างไร?', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => 'ใช้ในการระบุตัวตนของคุณบนเว็บไซต์ของผู้อื่น', + 'image' => 'รูปภาพ', + 'images' => 'รูปภาพ', + 'image_icon' => 'รูปภาพ/ไอคอน', + 'inactive' => 'ไม่ได้ทำงาน', + 'inbox' => 'กล่องจดหมาย', + 'incident' => 'เหตุการณ์', + 'incidents_nearby' => 'เหตุการณ์ที่ใกล้เคียง', + 'incident_location' => 'เหตุการณ์ในพื้นที่', + 'include' => 'ประกอบด้วย', + 'include_categories' => 'รวมหมวดหมู่', + 'include_custom_fields' => 'รวมตั้งค่าฟิลด์', + 'include_description' => 'รวมคำอธิบาย', + 'include_detail' => 'รวมถึงรายละเอียดมากที่สุดเท่าที่เป็นไปได้', + 'include_latitude' => 'รวมถึงละติจูด', + 'include_location_information' => 'รวมถึงข้อมูลที่อยู่', + 'include_longitude' => 'มีลองจิจูด', + 'include_personal_info' => 'รวมข้อมูลส่วนบุคคล', + 'incoming_media' => 'สื่อที่เข้ามา', + 'information_evaluation' => 'การประเมินผลข้อมูล', + 'input_location' => 'ป้อนสถานที่แม่นยำของคุณ', + 'insufficient_role' => 'บัญชีของคุณไม่ได้รับอนุญาตที่เหมาะสมในการรองรับการเข้าสู่ระบบ กรุณาติดต่อผู้ดูแล', + 'in_response_to' => 'เพื่อตอบสนองต่อ', + 'ip_address' => 'หมายเลขไอพี', + 'is_this_your_profile' => 'นี้เป็นรายละเอียดของคุณหรือไม่', + 'item' => 'รายการ', + 'items' => 'รายการ', + 'item_details' => 'รายการ_รายละเอียด', + 'item_title' => 'ชื่อรายการ', + 'key' => 'กุญแจ', + 'keywords' => 'คำหลัก', + 'kml_kmz_file' => 'ไฟล์ KMZ/KML', + 'kml_kmz_upload' => 'อัปโหลดไฟล์ KMZ/KML', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'ภาษา', + 'last' => 'สุดท้าย', + 'last_month' => 'เดือนที่แล้ว', + 'last_name' => 'นามสกุล', + 'last_year' => 'ปีก่อน', + 'latitude' => 'ละติจูด', + 'layers' => 'ชั้น', + 'layers_filter' => 'ชั้นอื่นๆ', + 'layer_has_been' => 'ชั้นที่ได้รับการ', + 'layer_name' => 'ชื่อชั้น', + 'layer_url' => 'ชั้น URL', + 'leave_a_comment' => 'แสดงความคิดเห็น', + 'less_information' => 'ข้อมูลน้อยลง', + 'level' => 'ระดับ', + 'level_has_been' => 'ระดับนี้ได้รับ', + 'level_name' => 'ชื่อระดับ', + 'limited' => 'จำกัด', + 'link' => 'ลิงค์', + 'list' => 'รายชื่อ', + 'loading_reports' => 'โหลดรายงาน', + 'location' => 'สถานที่', + 'locations' => 'สถานที่', + 'location_example' => 'เมือง, รัฐ และ/หรือ ประเทศ', + 'login' => 'เข้าสู่ระบบ', + 'login_account_creation_successful' => 'บัญชีผู้ใช้ถูกสร้างแล้ว คุณสามารถเข้าใช้งานได้ทันที', + 'login_confirmation_sent' => 'ข้อความยืนยันได้ถูกส่งไปยังที่อยู่อีเมล์ของคุณแล้ว', + 'login_approval_required' => 'บัญชีถูกสร้างแล้ว บัญชีของคุณจะต้องได้รับการอนุมัติโดยผู้ดูแลระบบก่อนที่คุณจะสามารถเข้าสู่ระบบได้', + 'login_email_doesnt_exist' => 'ที่อยู่อีเมล์ไม่ถูกต้อง ลองใช้ที่อยู่อีเมล์อื่น หรือสร้างบัญชีใหม่', + 'login_select_openid' => 'กรุณาลือกผู้ให้บริการบัญชีของคุณ', + 'login_with' => 'เข้าสู่ระบบด้วย', + 'login_userpass' => 'อีเมล์และรหัสผ่าน', + 'login_openid' => 'เปิด ID', + 'login_signup' => 'สมัคร', + 'login_signup_click' => 'สร้างบัญชี', + 'login_signup_confirmation_message' => 'ขอขอบคุณสำหรับการลงทะเบียนที่% 1$s เพื่อยืนยันอีเมล์ของคุณโปรดไปที่ URL ต่อไปนี้:% 2$s', + 'login_signup_confirmation_subject' => 'ยืนยันการลงทะเบียน', + 'login_signup_admin_approval_message' => 'ผู้ใช้ใหม่ได้ลงทะเบียนที่% 1$s เพื่ออนุมัติการลงทะเบียนของพวกเขาโปรดไปที่ URL ต่อไปนี้: % 2$s', + 'login_signup_admin_approval_subject' => 'อนุมัติผู้ใช้ใหม่', + 'login_signup_approval_message' => 'บัญชีของคุณได้รับการอนุมัติสำหรับ %1$s เพื่อเข้าสู่ระบบให้ไปที่ URL ต่อไปนี้: % 2$s', + 'login_signup_approval_subject' => 'บัญชีได้รับการอนุมัติ', + 'login_signup_text' => 'สร้างบัญชีตอนนี้เพื่อใช้ประโยชน์จากฟีเจอร์อื่นๆ ของเว็บไซต์', + 'longitude' => 'ลองจิจูด', + 'map' => 'แผนที่', + 'mark_read' => 'มาร์คว่าอ่าน', + 'mark_unread' => 'มาร์คว่ายังไม่ได้อ่าน', + 'maximum_filesize' => 'ขนาดไฟล์สูงสุด', + 'media' => 'สื่อ', + 'media_filter' => 'กรองสื่อ', + 'members' => 'สมาชิก', + 'manage_your_account' => 'จัดการบัญชีของคุณ', + 'message' => 'ข้อความ', + 'messages' => 'ข้อความ', + 'message_details' => 'รายละเอียดข้อความ', + 'message_non_numeric_source' => 'ข้อความจากแหล่งที่ไม่ใช่ตัวเลข', + 'mobile' => 'โทรศัพท์มือถือ', + 'modify' => 'แก้ไข', + 'modify_date' => 'แก้ไขวันที่', + 'month' => 'เดือน', + 'more' => 'เพิ่มเติม', + 'more_information' => 'ข้อมูลเพิ่มเติม', + 'multi_country_instance' => 'มีการใช้งาน Ushahidi ข้ามหลายประเทศไม่?', + 'must_confirm_email_address' => 'คุณต้องยืนยันอีเมล์ของคุณในการใช้งานนี้ ถ้าคุณทำอีเมล์ที่ยืนยันหาย คุณสามารถขอใหม่ด้านล่าง', + 'name' => 'ชื่อ', + 'nearby_report' => 'รายงานที่อยู่ใกล้ๆ', + 'new' => 'ใหม่', + 'news' => 'ข่าว', + 'news_feeds' => 'ฟีดข่าว', + 'news_source' => 'แหล่งที่มาของข่าว', + 'new_category' => 'หมวดหมู่ใหม่', + 'new_password' => 'รหัสผ่านใหม่', + 'new_report' => 'รายงานใหม่', + 'next' => 'ต่อไป', + 'no' => 'ไม่', + 'no_checkins' => 'ไม่มีเช็คอินเพื่อแสดง', + 'no_data' => 'ไม่มีข้อมูล', + 'none' => 'ไม่มี', + 'notices' => 'คำชี้แจง', + 'not_approved' => 'ไม่ได้รับการอนุมัติ', + 'not_approved_singular' => 'ไม่ได้รับการอนุมัติ', + 'not_selected' => '---ไม่ได้เลือก---', + 'not_spam' => 'ไม่ใช่สแปม', + 'not_specified' => 'ไม่ระบุ', + 'no_reports' => 'ไม่มีรายงาน', + 'no_results' => 'ไม่มีผลลัพธ์', + 'off' => 'ปิด', + 'official_news' => 'ทางการ และ ข่าวกระแสหลัก', + 'on' => 'เปิด', + 'option' => 'ตัวเลือก', + 'optional' => 'ทางเลือก', + 'options' => 'ตัวเลือก', + 'organization' => 'องค์กร', + 'organizations' => 'องค์กร', + 'organization_description' => 'รายละเอียดองค์กร', + 'organization_email' => 'อีเมล์องค์กร', + 'organization_has_been' => 'องค์กรได้รับการ', + 'organization_name' => 'ชื่อองค์กร', + 'organization_phone_1' => 'เบอร์โทรศัพท์องค์การ 1', + 'organization_phone_2' => 'เบอร์โทรศัพท์องค์การ 2', + 'organization_website' => 'เว็บไซต์องค์กร', + 'original' => 'ต้นฉบับ', + 'original_description' => 'อธิบายต้นฉบับ', + 'original_title' => 'ชื่อต้นฉบับ', + 'other_ushahidi_instances' => 'ปรับใช้อื่น ๆ', + 'outbox' => 'กล่องออก', + 'outgoing' => 'ขาออก', + 'page' => 'หน้า', + 'pages' => 'หน้า', + 'page_description' => 'รายละเอียดหน้า', + 'page_has_been' => 'หน้านี้ถูก', + 'page_tab_name' => 'ชื่อหน้าแท็บ', + 'page_title' => 'ชื่อหน้า', + 'parent_category' => 'ประเภทย่อย', + 'password' => 'รหัสผ่าน', + 'password_again' => 'ยืนยันรหัสผ่าน', + 'password_changed_successfully' => 'เปลี่ยนรหัสผ่านแล้ว! เข้าใช้งานด้านล่าง', + 'password_forgot' => 'ลืมรหัสผ่าน?', + 'password_reset_confirm' => 'ตรวจสอบรหัสผ่านใหม่ได้ที่อีเมล์ของคุณ', + 'password_save' => 'จำการเข้าใช้บนเครื่องนี้?', + 'past_month' => 'เดือนที่ผ่านมา', + 'past_year' => 'ปีที่ผ่านมา', + 'pending' => 'คงค้าง', + 'per' => 'ต่อ', + 'personal_information' => 'ข้อมูลส่วนบุคคล การดำเนินการ', + 'phone' => 'โทร', + 'photos' => 'รูปถ่าย', + 'pictures' => 'รูปภาพ', + 'pictures_and_videos' => 'รูปและวีดีโอ', + 'pinpoint_location' => '* ค้นหาสถานที่ตั้งของคุณโดยใช้ชื่อสถานที่ หรือ ละติจูดและลองจิจูด (รูปแบบ: 38.19, 85.61) หรือคลิกที่แผนที่เพื่อหาตำแหน่งที่ถูกต้อง', + 'play' => 'เล่น', + 'please_note' => 'บันทึก', + 'plugins' => 'พลั๊กอิน', + 'plugin_url' => 'ปลั๊กอินเว็บไซต์', + 'public_profile' => 'โปรไฟล์ส่วนกลาง', + 'public_profile_url' => 'URL โปรไฟล์ส่วนกลาง', + 'preview' => 'แสดงตัวอย่าง', + 'preview_item' => 'แสดงตัวอย่างรายการ', + 'preview_message' => 'แสดงตัวอย่างข้อความ', + 'previous' => 'ก่อนหน้า', + 'private' => 'ส่วนตัว', + 'profile_color' => 'สีโปรไฟล์', + 'profile_saved' => 'โปรไฟล์ได้ถูกบันทึกแล้ว', + 'quick_stats' => 'เริ่มทันที', + 'rating' => 'อันดับ', + 'read' => 'อ่าน', + 'receive' => 'รับ', + 'receive_from' => 'รับจาก', + 'receive_notifications' => 'รับการแจ้งเตือน', + 'recent_reports' => 'รายงานล่าสุด', + 'refresh_news_feeds' => 'ปรับปรุงฟีดข่าว', + 'registered_email' => 'อีเมล์ที่ลงทะเบียน', + 'remove' => 'นำออก', + 'reply' => 'ตอบกลับ', + 'report' => 'รายงาน', + 'reports_listed' => 'รายงาน (จากแผนที่ที่ระบุไว้ตามลำดับ) ', + 'reporter' => 'ผู้รายงาน', + 'reporters' => 'ผู้รายงาน', + 'reporter_date' => 'รายงานประจำวันที่', + 'reporter_email' => 'อีเมล์ผู้รายงาน', + 'reporter_first_name' => 'ชื่อผู้รายงาน', + 'reporter_has_been' => 'ผู้รายงานถูก', + 'reporter_ip' => 'หมายเลขไอพีผู้รายงาน', + 'reporter_last_name' => 'นามสกุลผู้รายงาน', + 'reporter_level' => 'ระดับผู้รายงาน', + 'reporter_levels' => 'ระดับผู้รายงาน', + 'reporter_phone' => 'เบอร์โทรผู้รายงาน', + 'reports' => 'รายงาน', + 'reports_btn_browse' => 'ค้นหา', + 'reports_btn_submit' => 'ส่ง', + 'reports_by_this_user' => 'รายงานโดยผู้ใช้นี้', + 'reports_categories' => 'หมวดหมู่', + 'reports_count' => '%d รายงาน', + 'reports_date' => 'วันที่', + 'reports_description' => 'รายละเอียด', + 'reports_download_csv' => 'รายงานจะถูกดาวน์โหลดในรูปแบบ CSV', + 'reports_email' => 'อีเมล์', + 'reports_features' => 'คุณสมบัติ', + 'reports_find_location' => 'หาที่อยู่ใกล้คุณ', + 'reports_first' => 'ชื่อจริง', + 'reports_last' => 'นามสกุล', + 'reports_location_name' => 'ชื่อสถานที่', + 'reports_news' => 'ลิงค์ข่าว', + 'reports_optional' => 'ข้อมูลเพิ่มเติม', + 'reports_photos' => 'อัพโหลกรูป', + 'reports_return' => 'กลับสู่หน้ารายงาน', + 'reports_select_city' => 'เลือกเมือง', + 'reports_submitted' => 'รายงานของคุณได้ถูกส่งไปยังเจ้าหน้าที่ของเราแล้วเพื่อรับการพิจารณา เราจะติดต่อกลับมาหาคุณในไม่ช้า', + 'reports_submit_new' => 'ส่งรายงานใหม่', + 'reports_time' => 'เวลา', + 'reports_timeline' => 'ระยะเวลารายงาน', + 'reports_title' => 'หัวเรื่องรายงาน', + 'reports_video' => 'ลิงค์วีดีโอ', + 'report_an_incident' => 'รายงานเหตุการณ์', + 'report_details' => 'รายละเอียดรายงาน', + 'report_option_1' => 'โดยการส่งข้อความไปยัง', + 'report_option_2' => 'โดยการส่งอีเมล', + 'report_option_3' => 'โดยการส่งทวีตพร้อม #', + 'report_option_4' => 'โดยการกรอกแบบฟอร์มนี้ในเว็บไซต์ของเรา', + 'report_option_external_apps' => 'โดยใช้แอพ', + 'report_saved' => 'รายงานของคุณได้รับการบันทึกแล้ว', + 'report_title' => 'ชื่อรายงาน', + 'request_information' => 'ขอข้อมูลเพิ่มเติม', + 'request_location' => 'ขอตำแหน่ง', + 'required' => 'จำเป็น', + 'requirements' => 'ต้องการ', + 'resend_confirm_email' => 'ส่งอีเมล์ยืนยันอีกครั้ง', + 'reset' => 'ยกเลิก', + 'reset_all_filters' => 'ยกเลิกตัวกรอง', + 'reset_password' => 'ตั้งรหัสใหม่', + 'retrieve_city_names' => 'เรียกชื่อเมืองของประเทศที่เลือก', + 'riverid_information' => 'บัญชีที่จัดการโดยบริการ % s', + 'riverid_exists_login' => 'คุณมีบัญชี CrowdmapID แล้ว! ลองใช้อีเมล CrowdmapID ของคุณและรหัสผ่านเพื่อเข้าสู่ระบบ', + 'role' => 'บทบาท', + 'rss' => 'RSS', + 'save' => 'บันทึก', + 'saved' => 'บันทึกแล้ว', + 'save_add_new' => 'บันทึกและเพิ่มใหม่', + 'save_close' => 'บันทึกและปิด', + 'save_report' => 'บันทึกรายงาน', + 'schedule' => 'ตารางเวลา', + 'scheduler' => 'จัดตารางเวลา', + 'scheduler_day' => 'วัน', + 'scheduler_hour' => 'ชั่วโมง', + 'scheduler_log' => 'บันทึกการจัดตารางเวลา', + 'scheduler_minute' => 'นาที', + 'scheduler_weekday' => 'วันต่อสัปดาห์', + 'search' => 'ค้นหา', + 'search_results' => 'ผลการค้นหา', + 'security_code' => 'รหัสความปลอดภัย', + 'select_all' => 'เลือกทั้งหมด', + 'select_field_type' => 'เลือกประเภทฟิลด์', + 'select_form_type' => 'เลือกประเภทแบบฟอร์ม', + 'select_in_map' => 'เลือกในแผนที่', + 'select_multiple' => 'เลือกเท่าที่ต้องการ', + 'select_one' => 'โปรดตรวจสอบว่าคุณได้เลือกรายการ', + 'select_theme' => 'เลือกชุดรูปแบบ', + 'send' => 'ส่ง', + 'send_confirmation' => 'ส่งการยืนยัน', + 'sending_to' => 'กำลังส่งไปยัง', + 'sent' => 'ส่งแล้ว', + 'sent_by' => 'ส่งโดย', + 'server_address' => 'ที่อยู่ของเซิร์ฟเวอร์', + 'server_type' => 'ชนิดของเซิร์ฟเวอร์', + 'service' => 'บริการ', + 'service_username' => 'ชื่อผู้ให้บริการ', + 'service_user_id' => 'ID ผู้ให้บริการ', + 'share' => 'แชร์', + 'shared_data' => 'ข้อมูลที่ใช้ร่วมกัน', + 'share_has_been' => 'แชร์ได้', + 'sharing' => 'แชร์', + 'shorter_map' => 'แผนที่สั้นลง', + 'show' => 'แสดง', + 'show_all' => 'แสดงทั้งหมด', + 'show_messages' => 'แสดงข้อความ', + 'showing_reports_from' => 'แสดงรายงานจาก % 1 $ s% 2 $ s ', + 'site' => 'เว็บไซต์', + 'site_email_address' => 'อีเมล์ของไซต์', + 'site_url' => 'URL เว็บไซต์', + 'smaller_map' => 'แผนที่ที่เล็กลง', + 'sms' => 'SMS', + 'sorry_no_badges' => 'ขออภัยคุณไม่ได้มีป้ายใดๆ', + 'source' => 'แหล่ง', + 'source_name' => 'ชื่อแหล่งที่มา', + 'sort' => 'จัดกลุ่ม', + 'sort_by' => 'จัดกลุ่มโดย', + 'source_url' => 'URL แหล่งที่มา', + 'spam' => 'สแปม', + 'ssl_support' => 'SSL สนับสนุน?', + 'start_point' => 'จาก', + 'step' => 'ขั้นตอน', + 'submit' => 'ส่งรายงาน', + 'submitted_by' => 'ส่งโดย % 1 $ s ผ่าน % 2 $ s ', + 'submit_sms' => 'ส่งผ่านทาง SMS', + 'submit_sms1' => 'ส่ง SMS ของคุณไปยัง', + 'submit_sms2' => 'ในโทรศัพท์ของคุณ', + 'success' => 'สำเร็จ!', + 'successfuly_imported' => 'นำเข้ามาสำเร็จ', + 'surname' => 'นามสกุล', + 'survey' => 'สำรวจ', + 'system' => 'ระบบ', + 'taller_map' => 'แผนที่ที่สูงขึ้น', + 'tcp_port' => 'พอร์ต TCP ', + 'themes' => 'รูปแบบ', + 'theme_default' => 'รูปแบบเริ่มต้นของ Ushahidi ', + 'theme_settings' => 'ตั้งค่ารูปแบบ', + 'this' => 'นี้', + 'this_day' => 'วันนี้', + 'this_month' => 'เดือนนี้', + 'this_week' => 'สัปดาห์นี้', + 'this_year' => 'ปีนี้', + 'this_is_your_profile' => 'นี้เป็นโปรไฟล์ของคุณ', + 'time' => 'เวลา', + 'title' => 'ชื่อเรื่อง', + 'to' => 'ไปยัง', + 'today' => 'วันนี้', + 'today_at' => 'วันนี้เวลา', + 'token' => 'เครื่องหมาย', + 'total_reports' => 'รายงานทั้งหมด', + 'translated' => 'แปล', + 'translated_description' => 'แปลรายละเอียด', + 'translated_title' => 'แปลชื่อเรื่อง', + 'translate_to' => 'แปลเป็น', + 'translation' => 'แปลความหมาย', + 'translation_saved' => 'ที่แปลได้รับการบันทึกแล้ว', + 'trusted' => 'ที่เชื่อถือ', + 'type' => 'ประเภท', + 'twitter' => 'Twitter', + 'unable_send_email' => 'ไม่สามารถส่งอีเมล', + 'uncategorized_reports' => 'รายงานไม่ได้จัดหมวดหมู่', + 'unread' => 'ไม่ได้อ่าน', + 'unverified' => 'ไม่ได้ตรวจสอบ', + 'update_feeds' => 'ปรับปรุงฟีด', + 'upload' => 'อัปโหลด', + 'upload_guide' => 'ดูคำแนะนำการอัปโหลดรายงานของเรา: -', + 'upload_docs_1' => 'คู่มืออัพโหลด XML', + 'upload_docs_2' => 'คู่มืออัพโหลด CVS', + 'upload_file' => 'ไฟล์ที่จะอัปโหลด', + 'upload_reports' => 'อัปโหลดรายงาน', + 'upload_reports_custom_forms' => 'คอลัมน์ฟิลด์ที่กำหนดเองจะต้องมี form_id ของพวกเขาต่อท้าย เช่นทดสอบฟิลด์ที่กำหนดเองในรูปแบบเริ่มต้นที่มี id1 จะได้รับการทดสอบ-1 ในระหว่างการนำเข้าข้อมูลฟอร์มที่กำหนดเองให้แน่ใจว่า', + 'upload_reports_detail_1' => 'คุณสามารถเล่าเรื่องราวต่างๆ ลงใน Ushahidi โดยการใช้แบบฟอร์มด้านล่าง', + 'upload_reports_detail_2' => 'รายงานต้องอัพโหลดทั้งในรูปแบบ CSV หรือ XML', + 'upload_reports_detail_3' => 'ในเหตุการณ์ที่มี ID ในฐานข้อมูลอยู่แล้ว รายการในไฟล์ CSV / XML จะถูกละเว้นละเว้น', + 'upload_reports_detail_4' => 'ต้องมีอย่างน้อยชื่อเรื่องเหตุการณ์และวันที่เหตุการณ์เกิด', + 'upload_reports_detail_4b' => 'ถ้าไม่มีคอลัมน์สำหรับละติจูดและลองจิจูด ตำแหน่งจะถูก geocoded โดยการใช้ Google Geocoder แทน', + 'upload_reports_detail_4c' => 'ถ้านำเข้าข้อมูลเพิ่มเติมเช่นข้อมูลส่วนบุคคลและ/หรือฟอร์มที่กำหนดเอง', + 'upload_reports_detail_4d' => 'อย่างน้อยต้องมีหนึ่งข้อมูลส่วนตัว (ชื่อ, นามสกุล, อีเมล) เพื่อทำการบันทึก ถ้านทึกว่างเปล่าจะไม่ถูกนำเข้า', + 'upload_reports_detail_4e' => 'ในกรณีของคุณ รายการข้อมูลแบบเลื่อนลง ปุ่มวิทยุและช่องตรงกับตัวเลือก เหมาะสำหรับฟิลด์ที่คุณกำหนดเอง', + 'upload_reports_detail_4f' => 'ช่องทำเครื่องหมายจะถูกแยกออกด้วยจุลภาค เช่นถ้าคุณเลือกผลไม้แอปเปิ้ล มะม่วง และองุ่น รายการของคุณนี้ควรจะเป็น "แอปเปิ้ล,มะม่วง,องุ่น"', + 'upload_reports_detail_4g' => 'ข้อมูลวันที่อยู่ในรูปแบบดังต่อไปนี้: mm / dd / yyyy เช่น 3 ตุลาคม 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'ตัวอย่างรายงาน CSV', + 'upload_reports_detail_6' => '#,ชื่อเรื่องเหตุการณ์,เหตุการณ์ +วันที่,ที่ตั้ง,รายละเอียด,ประเภท,ได้รับการอนุมัติ,การตรวจสอบ,ละติจูด,ลองจิจูด
"1", "สงสัยว่าการตายในไนโรบี", "2009-05-15 01:06:00", "ไนโรบี "," สามกรณีที่ได้รับการยืนยันใน C. เดลอุรุกวัย "," ตายพลเรือน "ใช่ใช่" -1.287 "," 36.821 "', + 'upload_reports_detail_7' => '"2","ขโมย","2009-03-18 10:10:00","อักกรา","ปล้นสะดมที่เกิดขึ้นทุกที่", "การจลาจล,ตาย,สูญเสียทรัพย์สิน, ",ใช่,ไม่ใช่,"5.55", "-0.2166667"', + 'upload_successful' => 'อัปโหลดสำเร็จ', + 'upload_video' => 'อัปโหลดวิดีโอ', + 'url' => 'URL', + 'user' => 'ผู้ใช้', + 'username' => 'ชื่อผู้ใช้', + 'ushahidi_admin' => 'ผู้ดูแลระบบ Ushahidi', + 'verification' => 'ตรวจสอบ', + 'verified' => 'ตรวจสอบแล้ว', + 'verified_reports' => 'รายงานที่ตรวจสอบแล้ว', + 'verify' => 'ตรวจสอบ', + 'verify_this_report' => 'ตรวจสอบรายงานนี้', + 'version' => 'เวอร์ชัน', + 'via' => 'ผ่านทาง', + 'video' => 'วีดีโอ', + 'view' => 'ดู', + 'views' => 'ดู', + 'view_all' => 'ดูทั้งหมด', + 'view_all_feeds' => 'ดูฟีดทั้งหมด', + 'view_all_reports' => 'ดูรายงานทั้งหมด', + 'view_items' => 'ดูรายการ', + 'view_more' => 'ดูเพิ่มเติม', + 'view_public_profile' => 'ดูรายละเอียด', + 'view_report' => 'ดูรายงาน', + 'view_reports' => 'ดูรายงาน', + 'view_video' => 'ดูวิดีโอ', + 'visible' => 'มองเห็นได้', + 'waiting_approval' => 'รอการอนุมัติ', + 'waiting_verification' => 'รอการตรวจสอบ', + 'wider_map' => 'แผนที่ที่กว้างขึ้น', + 'web_form' => 'เว็บฟอร์ม', + 'web' => 'เว็บ', + 'weight' => 'น้ำหนัก', + 'yes' => 'ใช่', + 'yesterday' => 'เมื่อวาน', + 'your_dashboard' => 'แดชบอร์ดของคุณ', + 'your_file' => 'ไฟล์ของคุณ', + 'zoom_in' => 'ซูมเข้า', + 'zoom_out' => 'ซูมออก', +); diff --git a/application/i18n/th_TH/upgrade.php b/application/i18n/th_TH/upgrade.php new file mode 100644 index 0000000000..9b58c90262 --- /dev/null +++ b/application/i18n/th_TH/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'ใส่ข้อมูลที่ไม่ถูกต้อง โปรดใส่ 0 แทน ใช่ หรือ ใส่ 1 แทนไม่ใช่ ', + ) , + 'upgrade_automatic' => 'อัพเกรดอัตโนมัติ', + 'upgrade_available' => 'อัพเกรดที่ทำได้', + 'upgrade_continue_btn_text' => 'ต่อไป', + 'upgrade_db_btn_text' => 'อัพเกรด', + 'upgrade_db_text_1' => 'ดังนั้นเราจะอัพเกรดฐานข้อมูลของคุณจากรุ่น', + 'upgrade_db_text_2' => 'ฐานข้อมูลรุ่นใหม่ล่าสุด', + 'upgrade_db_text_3' => 'คลิกที่ปุ่ม "อัพเกรด" และ chillax จะดำเนินการ', + 'upgrade_db_text_4' => 'หากคุณต้องการให้เราสำรองฐานของคุณ ทำได้โดยการติ๊กปุ่มตรวจสอบด้านล่างและเราจะทำให้คุณทันที', + 'upgrade_db_text_5' => 'จะสำรองฐานข้อมูลก่อนที่จะอัพเกรดหรือไม่? ( ควรจำทำ )', + 'upgrade_db_title' => 'อัพเกรดฐานข้อมูล Ushahidi', + 'upgrade_db_info' => 'Ushahidi ได้รับการปรับปรุงแล้ว! ก่อนที่คุณจะดำเนินการต่อคุณจำเป็นต้องอัพเดทฐานข้อมูลของคุณให้เป็นรุ่นใหม่ล่าสุด (% s)', + 'upgrade_db_up_to_date' => 'รุ่นฐานข้อมูลของคุณเป็นรุ่นล่าสุด', + 'upgrade_failed' => 'อัพเกรดล้มเหลว', + 'upgrade_manual' => 'อัพเกรดด้วยตนเอง', + 'upgrade_status' => 'สถานะการอัพเกรด Ushahidi', + 'upgrade_text_1' => 'คำแนะนำด้านล่างเป็นรายละเอียดวิธีการอัพเกรด Ushahidi deployment ด้วยตนเอง', + 'upgrade_text_2' => '
ดาวน์โหลด
', + 'upgrade_text_3' => '
- ดาวน์โหลด Ushahidi build รุ่นล่าสุดจาก', + 'upgrade_text_4' => '< dt > การสำรองข้อมูล < dd> - .htaccess , ./applications/config/config.php ./applications/config/database.php และ ./applications/config/auth php ไฟล์ . เพียง ในกรณีที่มีอะไรผิดพลาดจึงแนะนำให้คุณสำรองข้อมูลทั้งหมด ในการใช้งาน Ushahidi คัดลอกไฟล์ < dd> < dt > - < dd> - การอันซิปไฟล์ที่ดาวน์โหลด < dd> - ขึ้นอยู่กับระบบปฏิบัติการที่กำลังทำงานบนเว็บเซิร์ฟเวอร์ เลือกใช้เครื่องมือที่ต้องการ/โหมด (เช่น Telnet , FTP, SSH ) ที่จะเข้าสู่ระบบไปยังเว็บเซิร์ฟเวอร์และแทนที่เนื้อหาของทั้งหมด โฟลเดอร์ที่มีใหม่ล่าสุดจาก ที่สร้า เมื่อเร็วๆ นี้ < dt > ฐานข้อมูล Upgrde < dd> - ตรวจสอบรุ่นแรก คีมาฐานข้อมูลของคุณ โดยดูที่ db_version ค่าในตาราง การตั้งค่าหรือ ดูที่ Ushahidiข้อมูลการอัพเกรด ที่ด้านบนสุดของหน้านี้ < dd> - ถ้าคุณอยู่ที่รุ่น 25 คุณจะต้องอัพเกรด 25-26 , 26-27 , 27-28 และอื่น ๆ ไปยังแฟ้ม SQL ล่าสุดใน / SQL . ไดเรกทอรี < dd> - . กับ ฐานข้อมูลลูกค้า ของคุณอัพเกรดฐานข้อมูลโดยการดำเนินการ แฟ้ม upgradex - x.sql ที่เหมาะสม ', + 'upgrade_tables' => ' ขั้นที่ 3: ดูจาก SQL โฟลเดอร์ Manuall ดำเนินการอัพเกรด< xx > - < xx > .sql ไฟล์ เริ่มต้นจาก db ปัจจุบันของคุณ ที่ติดตั้งผ่านไฟล์ SQLล่าสุด', + 'upgrade_text_5' => ' ขั้นที่ 4: คลิกที่ปุ่ม"ต่อไป"เช็คเลือกเพื่อที่จะอัพเกรดตารางที่จำเป็น', + 'upgrade_text_6' => 'เพื่อการอัพเกรดอัตโนมัติให้คลิกที่ปุ่มด้านล่าง', + 'upgrade_title_text' => 'คุณกำลังใช้ Ushahidi v%1$s กับรุ่นฐานข้อมูล %2$d ที่ทำงานบน %3$s', + 'upgrading' => 'กำลังอัพเกรด', + 'upgrade_ftp_text' => 'เพื่อที่จะดำเนินการอัพเกรดแบบง่าย ข้อมูลต่อไปนี้เป็นสิ่งจำเป็นสำหรับเซิร์ฟเวอร์ที่เว็บไซต์ของคุณเป็นโฮสต์', + 'upgrade_ftp_hostname' => 'ชื่อโฮสต์ FTP: ตัวอย่าง:"โลคอลโฮสต์"', + 'upgrade_ftp_password' => 'รหัสผ่าน FTP:', + 'upgrade_ftp_username' => 'ชื่อผู้ใช้ FTP:', + 'upgrade_status_info' => 'คุณมีรุ่นล่าสุดของ Ushahidi', + 'upgrade_status_info_2' => 'คุณไม่จำเป็นต้องอัพเกรด', + 'upgrade_db_version' => 'ฐานข้อมูลรุ่น: %d', + 'upgrade_warning_software_version' => 'คำเตือน: รุ่นซอฟต์แวร์ใน version.php และฐานข้อมูลไม่ตรงกับ', + 'upgrade_warning_db_version' => 'คำเตือน: รุ่นซอฟต์แวร์ใน version.php และฐานข้อมูลไม่ตรงกับ', + 'upgrade_database' => 'ฐานข้อมูล:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'กำลังดาวน์โหลดรุ่นล่าสุดของ Ushahidi...', + 'log_file' => 'ตารางบันทึกไฟล์', + 'successfully_downloaded' => 'ดาวน์โหลดประสบความสำเร็จ เปิดใช้งาน...', + 'failed_downloading' => 'การดาวน์โหลดล้มเหลว', + 'successfully_unpacked' => 'การเปิดใช้งานสำเร็จแล้ว กำลังคัดลอกไฟล์...', + 'failed_unpacking' => 'การเปิดใช้งานล้มเหลว', + 'successfully_copied' => 'การคัดลอกประสบความสำเร็จแล้ว กำลังอัพเกรดฐานข้อมูล...', + 'failed_copying' => 'การคัดลอกไฟล์ล้มเหลว', + 'backup_success' => 'การสำรองข้อมูลและการอัพเกรดประสบความสำเร็จแล้ว', + 'backup_failed' => 'การสำรองฐานข้อมูลหล้มเหลว', + 'dbupgrade_success' => 'การอัพเกรดฐานข้อมูลประสบความสำเร็จ', + 'deleting_files' => 'กำลังลบไฟล์ที่ดาวน์โหลด...', + 'upgrade_success' => 'UPGRADE ประสบความสำเร็จ ดู Log File', +); diff --git a/application/i18n/tools/delete-blank-translations.sh b/application/i18n/tools/delete-blank-translations.sh new file mode 100755 index 0000000000..887d64a76d --- /dev/null +++ b/application/i18n/tools/delete-blank-translations.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# Quick and dirty script to delete blank translations + +FILES=`grep "array();" */*.php | cut -d: -f1` +for i in $FILES; do + temp=`echo $i | sed s/.php//g` + #temp=`echo $i | sed -e "s/\.po//g" -e "s#po/po-##g" ` + LANG=`echo $temp | cut -d\/ -f1` + FILE=`echo $temp | cut -d\/ -f2` + echo "tx delete -l $LANG -r ushahidi-localizations.$FILE --force" + tx delete -l $LANG -r "ushahidi-localizations.$FILE" --force + #echo "git checkout $i" + #git checkout $i + #echo "tx push -t -l $LANG -r ushahidi-localizations.$FILE" + #tx push -t -l $LANG -r ushahidi-localizations.$FILE +done diff --git a/application/i18n/tools/find-unused-strings.php b/application/i18n/tools/find-unused-strings.php new file mode 100644 index 0000000000..49fc9d4f84 --- /dev/null +++ b/application/i18n/tools/find-unused-strings.php @@ -0,0 +1,43 @@ + $string) + { + if (is_array($string)) + { + check_lang($string, $lang_key.'.'.$key); + } + else + { + $search_key = "$lang_key.$key"; + exec("grep \"$search_key\" ../../../ -R", $out, $ret); + if ($ret == 1) + echo $search_key . " not found\n"; + //exit(); + } + } +} + +$error_files = array( + 'alerts','report','bug','category','comments','contact','settings','auth','layer','message','reporters','page','mhi','sharing','roles','core','feedback','feeds','form', +); + +$files = scandir('../en_US'); +foreach($files as $k => $file) +{ + if ($file == '.' OR $file == '..') + continue; + if (in_array(str_replace('.php','',$file), $error_files)) + continue; + + if (strpos($file,'.php') !== FALSE) + { + $lang_key = str_replace('.php','',$file); + include ('../en_US/'.$file); + check_lang($lang, $lang_key); + } +} \ No newline at end of file diff --git a/application/i18n/tools/full-sync.sh b/application/i18n/tools/full-sync.sh new file mode 100755 index 0000000000..07f092ffd9 --- /dev/null +++ b/application/i18n/tools/full-sync.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# Run full sync +# Pulls translations from Transifex and converts to PHP +# Converts source strings to POT files and pushes to transifex +# +# This assumes there is a Ushahidi deployment on the same level +# as the Ushahidi-Localization repo, with the kohana-i18n-manager +# module enabled. (https://github.com/rjmackay/kohana-i18n-manager) + +cd `dirname $0`/.. + +# Get latest translations from transifex, run po2php conversion on translations and push to github + +echo "Pulling in latest changes from github..." +git pull + +echo "Pulling changes from transifex" +# might need --force and --skip +tx pull --force --all + +# generate the php files from transifex po files +echo "Generating php files from translations..." +cd ../../ +php index.php "i18n/po2php" +cd application/i18n/ + +# add any new file generated +git add . + +echo "Commiting changes..." +git commit -am 'Daily update from transifex' + +echo "Pushing changes to github repo..." +git push + +echo "Done!" + +# Run php2po conversion on en_US and then sync the generated po file to github for transifex to pick it up + +echo "Pulling in latest changes from github..." +git pull + +# generate the pot files for en_US so transifex can pick it up +echo "Generating po files for en_US..." +cd ../../ +php index.php "i18n/php2po?lang=en_US" +cd application/i18n + +# add any new file generated +git add po/po-en_US + +echo "Commiting changes..." +git commit -m 'Generate daily po for en_US' + +echo "Pushing changes to github repo..." +git push + +# Push changes to transifex +# Don't need to specify language here, transifex knows the source language is english +echo "Pushing changes to transifex" +tx push -s --skip + +echo "Done!" + +echo "All done!" diff --git a/application/i18n/tools/i18n.py b/application/i18n/tools/i18n.py new file mode 100644 index 0000000000..c87395b626 --- /dev/null +++ b/application/i18n/tools/i18n.py @@ -0,0 +1,180 @@ +''' +Updated on Jan 11, 2010 + +@author: Kennedy Kasina +''' + +import sys,os + +class Ushahidi18nParser: + + def __init__(self): # constructor + print "Ushahidi i18n Parser created by the Ushahidi Dev Team" + + + def Usage(self): + print 'Usage: Ushahidi i18n Parser\n\tpython uparser.py --{arguments}\n\n\tArguments' + print '\t\t--genpot:\n\t\tuse this option to generate a pot file.' + print '\n\t\te.g: python uparser.py --genpot {directory_with_php_files} {pot_filename}\n\n' + print '\t\t--getphp:\n\t\tuse this option to re-generate the php files with the translated' + print '\t\tversion of the strings' + print '\n\t\te.g: python uparser.py --genphp {pot_filename} {directory_to_regenerate}\n\n' + print '\t\t--sync:\n\t\tuse this option to synchronize an old and current pot file\n\n' + + + def StrippedLine(self, line): + array = line.split("=>") + line = array[1].strip().strip("',").strip() + + if line.endswith(":"): line = line.rstrip(":") + if line.endswith("."): line = line.rstrip(".") + if '\\' in line: line = line.replace("\\", "") + + return line + + + def ReadLines(self, path): + f = open(path, 'r') + content = f.readlines() + f.close() + + return content + + + def WriteLines(self, path, content): + # by default we delete the file before we write anything to it + if os.path.exists(path): + os.remove(path) + + # recreate the file anew and append the content to it + f = open(path, 'w') + f.writelines(content) + f.close() + + + def Unlisted(self, list = [], line = ""): + result = False + line = line.lower() + if line != "" and not line in list: + list.append(line) + result = True + + return result + + + def GeneratePot(self, dir, pfile): + temp = [ ] + list = [ ] + + for root, dirs, files in os.walk(dir): + for file in [f for f in files if f.endswith(".php")]: + lines = self.ReadLines(os.path.join(root, file)) + + for line in [l for l in lines if "=>" in l and not l.strip().endswith('array')]: + line = self.StrippedLine(line) + + if self.Unlisted(temp, line): + list.append(line) + count = 0 + list.sort() # just the default list sorting algorithm + + if os.path.exists(pfile): os.remove(pfile) + f = open(pfile, 'w') + for msgid in list: + msg = msgid.replace('"','\\"') + f.write('msgid "%s"\n'%msg) + f.write('msgstr ""\n\n') + count += 1 + f.close() + + return count + + + def GeneratePHP(self, pfile, dir): + temp = [ ] + for line in self.ReadLines(pfile): + if not line == "": + temp.append(line) + count = 0 + for root, dirs, files in os.walk(dir): + for file in [f for f in files if f.endswith(".php")]: + fn = os.path.join(root, file) # filename + list = [ ] + + for line in self.ReadLines(fn): + if "=>" in line and not line.strip().endswith('array'): + item = self.StrippedLine(line) + msgid = "" + msgstr = "" + found = False + + for i in range(0, len(temp) - 1): + if temp[i].startswith("msgid"): + msgid = temp[i].replace("msgid", "").strip().strip('"').strip() + msgstr = msgid # just incase the translation isnt available, retain original string + + if msgid.lower() == item.lower(): + found = True + msgstr = temp[i+1].replace("msgstr", "").strip().strip('"').strip() + break + + if found and msgid != "" and msgid != msgstr and msgid in line: + if msgid.lower() in line.lower(): + if msgid.isupper(): # retain the original case + msgstr = msgstr.upper() + line = line.replace(msgid, msgstr) + list.append(line) + count += 1 + else: + list.append(line) + + self.WriteLines(fn, list) + return count + + + def SyncFiles(self, oldfile, newfile): + list = [ ] + ol = self.ReadLines(oldfile) # old list + nl = self.ReadLines(newfile) # new list + + count = 0 + for i in range(len(nl) - 1): + l = nl[i] + if l.startswith("msgid"): + msgid = nl[i] + msgstr = nl[i+1] + + for j in range(len(ol) - 1): + if ol[j] == msgid: + msgstr = ol[j+1] + count += 1 + break + msgstr += '\n\n' + list.append(msgid) + list.append(msgstr) + + self.WriteLines(newfile, list) + return count + + +if __name__ == '__main__': + i18n = Ushahidi18nParser() + + x = len(sys.argv) + + if x < 3: + i18n.Usage() + + else: + if sys.argv[1] == '--genpot': # --genpot path potfile + print '\tGenerated a pot file with %s strings\n'%i18n.GeneratePot(sys.argv[2], sys.argv[3]) + + elif sys.argv[i] == '--genphp': # --genphp potfile path + print '\tRegenerated the php files with %s translated strings\n'%i18n.GeneratePHP(sys.argv[2], sys.argv[3]) + + elif sys.argv[i] == '--sync': # --sync oldfile newfile + print '\tSynced %s strings\n'%i18n.SyncFiles(sys.argv[2], sys.argv[3]) + + else: + print "Error: Unknown argument\n" + i18n.Usage() diff --git a/application/i18n/tools/tx-auto-local.sh b/application/i18n/tools/tx-auto-local.sh new file mode 100755 index 0000000000..df7121afd5 --- /dev/null +++ b/application/i18n/tools/tx-auto-local.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# Initialize .tx/config for all files +# Does not need to be done again +exit + +cd ../po +for f in po-en_US/*.pot +do + fname=$(basename $f) + fbname=${fname%.*} + tx set --auto-local -r ushahidi-v2.$fbname "po-/$fbname.po" --source-lang en_US --source-file po-en_US/$fbname.pot --execute +done + diff --git a/application/i18n/tr_TR/alerts.php b/application/i18n/tr_TR/alerts.php new file mode 100644 index 0000000000..81bdb49b7d --- /dev/null +++ b/application/i18n/tr_TR/alerts.php @@ -0,0 +1,53 @@ + array( + 'email' => 'E-posta adresinizi girdiğiniz alanda geçerli bir adres gözükmüyor?', + 'email_check' => 'Bu e-posta adresi zaten bu bölgedeki uyarıları almak için sistemimizde kayıtlı', + 'length' => 'E-posta adresiniz en az 4, en fazla 64 karakter uzunluğunda olmalı.', + 'required' => 'Kullanım koşullarını kabul ettiyseniz mutlaka sisteme bir e-posta girmeniz gerekmektedir.', + ) , + 'alert_lat' => array( + 'between' => 'Haritada geçerli bir bölge seçmediniz.', + 'required' => 'Haritada geçerli bir bölge seçmediniz.', + ) , + 'alert_lon' => array( + 'between' => 'Haritada geçerli bir bölge seçmediniz.', + 'required' => 'Haritada geçerli bir bölge seçmediniz.', + ) , + 'alert_mobile' => array( + 'length' => 'Cep telefonu numaranız eksik veya fazla girilmiş gözüküyor.', + 'mobile_check' => 'Bu cep telefonu numarası zaten bu bölgedeki uyarıları almak için sistemimizde kayıtlı', + 'numeric' => 'Cep telefonu numarası geçerli değil. Lütfen sadece ülke kodunuzu (Türkiye için +90) ve numaranızı giriniz.', + 'one_required' => 'Cep telefonu numaranızı veya e-posta adresinizi girmek zorundasınız.', + 'required' => 'Kullanım koşullarını kabul ettiyseniz mutlaka sisteme bir cep telefonu numarası girmeniz gerekmektedir.', + ) , + 'alert_radius' => array( + 'in_array' => 'Geçerli bir etki alanı ayarlamadınız.', + 'required' => 'Geçerli bir etki alanı ayarlamadınız.', + ) , + 'code_already_verified' => 'Bu kod zaten onaylanmış!', + 'code_not_found' => 'Bu onay kodu bulunamadı! Lütfen doğru URL adresine sahip olduğunuzdan emin olun.', + 'code_verified' => 'Kodunuz başarıyla onaylandı. Artık, olaylar hakkında anlık bilgi alabileceksiniz.', + 'confirm_request' => 'Uyarı isteğinizi onaylamak için lütfen şurayı ziyaret edin', + 'create_more_alerts' => 'Daha fazla uyarı oluşturmak için Uyarılar sayfasına dönün', + 'email_alert_request_created' => 'E-posta Uyarı istediğiniz oluşturuldu ve onay iletisi gönderildi', + 'email_code' => 'Lütfen E-Postanıza gelen onay kodunu girin:', + 'email_error_head' => 'E-posta ile uyarı isteğiniz KAYDEDİLEMEDİ!', + 'email_ok_head' => 'E-posta ile uyarı isteğiniz kaydedildi!', + 'error' => 'Doğrulama işleminiz TAMAMLANAMADI!', + 'mobile_alert_request_created' => 'Mobil uyarı isteğiniz kaydedildi ve doğrulama iletisi şu telefon numarasına gönderildi:', + 'mobile_code' => 'Lütfen cep telefonunuza gönderilen onay kodunuzu giriniz:', + 'mobile_error_head' => 'Mobil uyarı isteğiniz KAYDEDİLEMEDİ!', + 'mobile_ok_head' => 'Mobil uyarı isteğiniz kaydedildi!', + 'settings_error' => 'Plana göre yerleştirme düzgün bir şekilde ayarlanmadı', + 'unsubscribe' => 'Uyarı alma bölümüne abone olduğunuz için bu e-postayı almaktasınız. Bu e-postayı almak istemiyorsanız: (link here)', + 'unsubscribed' => '(e-mail address here) adlı e-posta adresinden artık uyarı almayacaksınız', + 'unsubscribe_failed' => 'Biz sizin aboneliğinizi iptal edemiyoruz. Lütfen adresin doğru olduğundan emin olun.', + 'verification_email_subject' => 'uyarılar - onaylama', + 'verify_code' => 'İsteğinizi onaylamadığınız sürece uyarı bilgisi alamayacaksınız.', +); diff --git a/application/i18n/tr_TR/auth.php b/application/i18n/tr_TR/auth.php new file mode 100644 index 0000000000..618e2e2405 --- /dev/null +++ b/application/i18n/tr_TR/auth.php @@ -0,0 +1,55 @@ + array( + 'email' => 'Bu e-posta alanı geçerli bir adres içermiyor.', + 'exists' => 'Üzgünüz, bu e-posta adresi için zaten bir hesap var.', + 'length' => 'E-posta adresi en az 4, en fazla 64 karakter uzunluğunda olmalıdır.', + 'required' => 'E-posta alanı boş bırakılamaz.', + ) , + 'name' => array( + 'length' => 'İsim en az 3, en fazla 100 karakter uzunluğuna olmalıdır.', + 'required' => 'İsim alanı boş bırakılamaz.', + 'standard_text' => 'Kullanıcı ismi geçersiz karakterler içeriyor.', + ) , + 'current_password' => array( + 'length' => 'Parola alanı en az 8 karakter uzunluğunda olmalıdır.', + 'login error' => 'Lütfen geçerli bir e-posta ve parola girdiğinizi kontrol edin.', + 'matches' => 'Lütfen iki parola alanına da aynı parolayı girin.', + 'required' => 'Parola alanı boş bırakılamaz.', + 'alpha_dash' => 'Parolanız sadece abecesel karakterler, # ve @ simgeleri, rakamlar, altçizgiler ve tirelerden oluşmalıdır', + ) , + 'new_password' => array( + 'required' => 'Parola alanı boş bırakılamaz.', + ) , + 'password' => array( + 'length' => 'Parolanız en az 8 karakterden oluşmalıdır.', + 'matches' => 'Lütfen iki parola alanına da aynı parolayı girin.', + 'required' => 'Parola alanı boş bırakılamaz.', + ) , + 'password_confirm' => array( + 'matches' => 'Parola doğrulama alanı içeriği parola ile aynı olmalıdır.', + ) , + 'resetemail' => array( + 'email' => 'Geçersiz bir e-posta adresi girdiniz.', + 'invalid' => 'Üzgünüz, e-posta adresiniz kayıtlı değil.', + 'required' => 'E-posta alanı boş bırakılamaz.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Geçersiz ünvan formatı.', + 'length' => 'Ünvan kısmı en az 5, en fazla 30 karakterden oluşmalıdır.', + 'required' => 'En az 1 adet ünvan belitmelisiniz.', + 'values' => 'Yönetici veya kullanıcı ünvanlarından birini seçmelisiniz.', + ) , + 'username' => array( + 'admin' => 'Yönetici ünvanı düzenlenemez.', + 'exists' => 'Üzgünüz, bu kullanıcı ismi zaten kullanılıyor.', + 'length' => 'Kullanıcı ismi en az 2, en fazla 16 karakterden oluşmalıdır.', + 'required' => 'Kullanıcı ismi boş bırakılamaz.', + 'superadmin' => 'Süper Yönetici ünvanı düzenlenemez.', + ) , +); diff --git a/application/i18n/tr_TR/bug.php b/application/i18n/tr_TR/bug.php new file mode 100644 index 0000000000..deab7bebcf --- /dev/null +++ b/application/i18n/tr_TR/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Lütfen geçerli bir güvenlik kodu girin.', + 'required' => 'Lütfen güvenlik kodunu girin', + ) , + 'email' => array( + 'email' => 'E-posta adresi geçerli değil gibi görünüyor.', + 'length' => 'E-posta adresi en az 4, en fazla 64 karakterden oluşmalıdır.', + 'required' => 'Onay kutucuğunu tıkladıysanız, bir e-posta adresi de girmeniz gereklidir.', + ) , + 'error' => array( + 'required' => 'Hata alanı boş bırakılamaz', + ) , + 'subject' => array( + 'length' => 'Başlık alanı en az 3 karakterden oluşmalıdır.', + 'required' => 'Başlık alanı boş bırakılamaz.', + ) , + 'yourname' => array( + 'length' => 'İsim alanı en az 3 karakterden oluşmalıdır.', + 'required' => 'İsim alanı boş bırakılamaz.', + ) , +); diff --git a/application/i18n/tr_TR/category.php b/application/i18n/tr_TR/category.php new file mode 100644 index 0000000000..81127c92e4 --- /dev/null +++ b/application/i18n/tr_TR/category.php @@ -0,0 +1,30 @@ + array( + 'length' => 'Renk kısmı en az 6 karakterden oluşmalıdır.', + 'required' => 'Renk kısmı boş bırakılamaz.', + ) , + 'category_description' => array( + 'required' => 'Açıklama kısmı boş bırakılamaz.', + ) , + 'category_image' => array( + 'size' => 'En fazla 50KB resim yükleme hakkınız olduğu aklınızda bulunsun.', + 'type' => 'Seçilen dosya türü geçerli değil. Geçerli olan dosya türleri .JPG, .PNG, .GIF olmalıdır.', + 'valid' => 'Resim yükleme kısmı geçersiz bir dosya türü içermektedir', + ) , + 'category_title' => array( + 'length' => 'Başlık kısmı en az 3, en fazla 80 karakter uzunluğunda olmalıdır.', + 'required' => 'Başlık kısmı boş bırakılamaz.', + ) , + 'parent_id' => array( + 'exists' => 'Ebeveyn kategorisi girilmedi.', + 'numeric' => 'Ebeveyn kategorisi bölümü numerik (sayı) olmalıdır.', + 'required' => 'Ebeveyn kategorisinin girilmesi gereklidir.', + 'same' => 'Kategori ve ebeveyn kategorisi aynı olamaz.', + ) , +); diff --git a/application/i18n/tr_TR/comments.php b/application/i18n/tr_TR/comments.php new file mode 100644 index 0000000000..605a3f8fb0 --- /dev/null +++ b/application/i18n/tr_TR/comments.php @@ -0,0 +1,24 @@ + array( + 'default' => 'Lütfen geçerli bir güvenlik kodu girin', + 'required' => 'Lütfen güvenlik kodunu girin', + ) , + 'comment_author' => array( + 'length' => 'İsim kısmı en az 3 karakterden oluşmalıdır.', + 'required' => 'İsim kısmı boş bırakılamaz.', + ) , + 'comment_description' => array( + 'required' => 'Yorumlar kısmı boş bırakılamaz.', + ) , + 'comment_email' => array( + 'email' => 'E-posta adresi geçerli değil.', + 'length' => 'E-posta adresi en az 4, en fazla 64 karakter uzunluğunda olmalıdır.', + 'required' => 'Kullanım koşullarını kabul ettiyseniz e-posta alanını doldurmak zorundasınız.', + ) , +); diff --git a/application/i18n/tr_TR/contact.php b/application/i18n/tr_TR/contact.php new file mode 100644 index 0000000000..a72900f271 --- /dev/null +++ b/application/i18n/tr_TR/contact.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Lütfen geçerli bir güvenlik kodu girin', + 'required' => 'Lütfen güvenlik kodunu girin', + ) , + 'contact_email' => array( + 'email' => 'Girilen e-posta adresi geçerli değil', + 'length' => 'E-posta adresi en az 4, en fazla 64 karakter uzunluğunda olmalıdır.', + 'required' => 'Kullanım koşullarını kabul ettiyseniz sisteme e-posta girmeniz gereklidir.', + ) , + 'contact_message' => array( + 'required' => 'İleti alanı boş bırakılamaz.', + ) , + 'contact_name' => array( + 'length' => 'İsim kısmı en az 3 karakterden oluşmalıdır.', + 'required' => 'İsim kısmı boş bırakılamaz.', + ) , + 'contact_subject' => array( + 'length' => 'Başlık kısmı en az 3 karakterden oluşmalıdır.', + 'required' => 'Başlık kısmı boş bırakılamaz.', + ) , +); diff --git a/application/i18n/tr_TR/core.php b/application/i18n/tr_TR/core.php new file mode 100644 index 0000000000..89ecb8b01b --- /dev/null +++ b/application/i18n/tr_TR/core.php @@ -0,0 +1,32 @@ + 'konfigürasyon dosyası', + 'controller' => 'yönetici', + 'driver' => 'sürücü', + 'driver_implements' => '%s kütüphanesi (library) için olan %s sürücüsü (driver) %s arayüzünü (interface) oluşturmalıdır.', + 'driver_not_found' => '%s kütüphanesi (library) için %s sürücüsü (driver) bulunamadı.', + 'errors_disabled' => 'Anasayfa\'ya gidebilir ya da yeniden deneyebilirsiniz.', + 'generic_error' => 'İstek Tamamlanamadı.', + 'helper' => 'yardımcı', + 'invalid_filetype' => 'İstenen dosya türünün (%s) konfigürasyon dosyasının içerisinde görüntülenmesine izin verilmiyor.', + 'invalid_method' => 'Geçerli olmayan yöntem %s, %s diye bilinir.', + 'invalid_property' => '%s sınıfında (class) %s özelliği (property) bulunmuyor.', + 'library' => 'kütüphane', + 'log_dir_unwritable' => 'Günlük dosyası yazılamıyor: %s', + 'no_controller' => 'Ushahidi kontrol eden dosyayı belirleyemiyor: %s ', + 'no_default_route' => 'Lütfen varsayılan dosya yolunu "config/routes.php" olarak ayarlayın. ', + 'page_not_found' => 'İstenen sayfa (%s) bulunamadı.', + 'report_bug' => 'Bu Sorunu Ushahidiye Bildirin', + 'resource_not_found' => 'İstenen (%s) bulunamadı', + 'stack_trace' => 'Yığın Takibi', + 'stats_footer' => '{execution_time} saniyede, {memory_usage} hafıza kullanarak yüklendi. Ushahidi Tarafından Oluşturuldu v%s.', + 'there_can_be_only_one' => 'Her sayfa isteğinde, Ushahidi size sadece bir örnek gösterebilir', + 'uncaught_exception' => 'Yakalanamayan %s: %s adlı dosya içerisinde %s. satırda %s', + 'view' => 'görüntüle', + 'view_set_filename' => 'Sunum yapmadan önce dosya ismi görüntüleme kısmını ayarlamak zorundasınız', +); diff --git a/application/i18n/tr_TR/database.php b/application/i18n/tr_TR/database.php new file mode 100644 index 0000000000..3f942895da --- /dev/null +++ b/application/i18n/tr_TR/database.php @@ -0,0 +1,10 @@ + 'Veritabanı hatası: %s', + 'table_not_found' => '"%s" tablosu veritabanı içerisinde bulunamadı. Lütfen Ushahidinin şu anki versiyonu için en güncel veritabanı sürümünü kullandığınıza emin olun.', +); diff --git a/application/i18n/tr_TR/datetime.php b/application/i18n/tr_TR/datetime.php new file mode 100755 index 0000000000..9077f8cca7 --- /dev/null +++ b/application/i18n/tr_TR/datetime.php @@ -0,0 +1,86 @@ + 'öö', + 'friday' => array( + 'abbv' => 'Cum', + 'full' => 'Cuma', + ) , + 'monday' => array( + 'abbv' => 'Pzt', + 'full' => 'Pazartesi', + ) , + 'pm' => 'ös', + 'saturday' => array( + 'abbv' => 'Cmt', + 'full' => 'Cumartesi', + ) , + 'sunday' => array( + 'abbv' => 'Paz', + 'full' => 'Pazar', + ) , + 'thursday' => array( + 'abbv' => 'Perş', + 'full' => 'Perşembe', + ) , + 'tuesday' => array( + 'abbv' => 'Sal', + 'full' => 'Salı', + ) , + 'wednesday' => array( + 'abbv' => 'Çarş', + 'full' => 'Çarşamba', + ) , + 'january' => array( + 'abbv' => 'Oca', + 'full' => 'Ocak', + ) , + 'february' => array( + 'abbv' => 'Şub', + 'full' => 'Şubat', + ) , + 'march' => array( + 'abbv' => 'Mar', + 'full' => 'Mart', + ) , + 'april' => array( + 'abbv' => 'Nis', + 'full' => 'Nisan', + ) , + 'may' => array( + 'abbv' => 'May', + 'full' => 'Mayıs', + ) , + 'june' => array( + 'abbv' => 'Haz', + 'full' => 'Haziran', + ) , + 'july' => array( + 'abbv' => 'Tem', + 'full' => 'Temmuz', + ) , + 'august' => array( + 'abbv' => 'Ağu', + 'full' => 'Ağustos', + ) , + 'september' => array( + 'abbv' => 'Eyl', + 'full' => 'Eylül', + ) , + 'october' => array( + 'abbv' => 'Eki', + 'full' => 'Ekim', + ) , + 'november' => array( + 'abbv' => 'Kas', + 'full' => 'Kasım', + ) , + 'december' => array( + 'abbv' => 'Ara', + 'full' => 'Aralık', + ) , +); diff --git a/application/i18n/tr_TR/feeds.php b/application/i18n/tr_TR/feeds.php new file mode 100644 index 0000000000..cedb13a10b --- /dev/null +++ b/application/i18n/tr_TR/feeds.php @@ -0,0 +1,19 @@ + 'TARİH', + 'feed_name' => array( + 'length' => 'Besleme ismi en az 3, en çok 70 karakter uzunluğunda olmalıdır.', + 'required' => 'Lütfen beslemenin adını girin.', + ) , + 'feed_url' => array( + 'required' => 'Lütfen beslemenin URL\'sini girin.', + 'url' => 'Lütfen geçerli bir URL girin. Örn. http://www.ushahidi.com', + ) , + 'source' => 'KAYNAK', + 'title' => 'Başlık', +); diff --git a/application/i18n/tr_TR/footer.php b/application/i18n/tr_TR/footer.php new file mode 100644 index 0000000000..606d5a4088 --- /dev/null +++ b/application/i18n/tr_TR/footer.php @@ -0,0 +1,9 @@ + 'Bu sistemde php5-curl yüklü değil.', +); diff --git a/application/i18n/tr_TR/form.php b/application/i18n/tr_TR/form.php new file mode 100644 index 0000000000..763bccd762 --- /dev/null +++ b/application/i18n/tr_TR/form.php @@ -0,0 +1,46 @@ + array( + 'default' => 'Sağladığınız varsayılan değer bu alan için geçerli değil.', + 'length' => 'Alan Adı en az 3, en fazla 200 karakter uzunluğunda olmalıdır.', + ) , + 'field_height' => array( + 'between' => 'Lütfen Alan Yüksekliği kısmına 0 ile 50 arasında bir rakam girin', + ) , + 'field_isdate' => array( + 'between' => 'Geçersiz bir tarih girdiniz', + 'required' => 'Lütfen Tarih Alanı için Evet ya da Hayırı seçin', + ) , + 'field_name' => array( + 'length' => 'Alan Adı en az 3, en fazla 100 karakter uzunluğunda olmalıdır.', + 'required' => 'Lütfen Alan Adı girin.', + ) , + 'field_required' => array( + 'between' => 'Gerekli Alan için yanlış bir değer girdiniz.', + 'required' => 'Gerekli Alan için lütfen Evet ya da Hayırı seçin', + ) , + 'field_type' => array( + 'numeric' => 'Lütfen geçerli bir Alan Türü seçin.', + 'required' => 'Lütfen bir Alan Türü seçin.', + ) , + 'field_width' => array( + 'between' => 'Lütfen Alan Genişliği kısmına 0 ile 300 arasında bir rakam girin', + ) , + 'form_description' => array( + 'required' => 'Lütfen form açıklaması girin.', + ) , + 'form_id' => array( + 'default' => 'Varsayılan form silinemez.', + 'numeric' => 'Lütfen bu alana eklemek istediğiniz formu seçin.', + 'required' => 'Lütfen bu alana eklemek istediğiniz formu seçin.', + ) , + 'form_title' => array( + 'length' => 'Form adı en az 3, en çok 100 karakter uzunluğunda olmalıdır.', + 'required' => 'Lütfen formun adını girin.', + ) , +); diff --git a/application/i18n/tr_TR/imap.php b/application/i18n/tr_TR/imap.php new file mode 100644 index 0000000000..e9f45c0730 --- /dev/null +++ b/application/i18n/tr_TR/imap.php @@ -0,0 +1,10 @@ + 'IMAP kanalı açılamadı.', + 'unsupported_service' => 'E-posta servisi desteklenmiyor.', +); diff --git a/application/i18n/tr_TR/installer.php b/application/i18n/tr_TR/installer.php new file mode 100644 index 0000000000..f0d2b94f1d --- /dev/null +++ b/application/i18n/tr_TR/installer.php @@ -0,0 +1,84 @@ + 'Ana Yol', + 'database' => 'Veritabanı', + 'database_host' => 'Veritabanı Sunucusu', + 'database_host_description' => 'Eğer Ushahidiyi kendi bilgisayarınızda çalıştırıyorsanız, muhtemelen bu bölümün ismi "localhost" olacaktır. Eğer Ushahidiyi başka bir web sunucusunda çalıştırıyorsanız, sunucu sağlayıcınızdan bu bilgiyi almanız gerekmektedir.', + 'database_name' => 'Veritabanı İsmi', + 'database_name_description' => 'Ushahidiyi çalıştıracağınız veritabanının ismi', + 'db_information_link' => 'Veritabanı hakkında daha fazla bilgi almak için lütfen bu konuyu inceleyin. (Bu konu İngilizcedir.)', + 'default_language' => 'Varsayılan Dil (Yerel)', + 'default_language_description' => 'Ushahidi bir çok dil ile birlikte gelir. İsterseniz sizde kendi dilinizi ekleyebilirsiniz', + 'disable' => 'Deaktif', + 'enable' => 'Aktif', + 'error_summary' => 'Aşağıda listelenen hatalar ile karşılaştık.', + 'files_location_text' => 'Sunucunuzdaki bu konum Ushahidi dosyalarının bulunduğu yerdir. Biz bu konumu otomatik olarak tespit ettik, lütfen bu konumun doğru olduğundan emin olun.Eğer bu alan boş ise, endişelenmeyin, Ushahidi en üst seviyedeki dizine kurulmuştur.', + 'finished' => 'Tamamlandı', + 'general' => 'Genel', + 'google_key' => 'Google API Anahtarı', + 'google_key_description' => 'Herhangi biri API anahtarı alabilir. Kendininkini al (İngilizce)', + 'go_back' => 'Geri Dön', + 'index' => array( + 'advanced' => 'GELİŞMİŞ YÜKLEME', + 'advanced_installation_description' => '5-adım yöntemiyle bütün basit yükleme işlemlerini tamamlayın. (Sunucu, harita, site ismi ve iletişim bilgileri dahil.)', + 'basic_installation' => 'BASİT YÜKLEME', + 'basic_installation_description' => 'Hızlı ve basit. Bütün ihtiyacınız olan sitenizin kök dizini ve veritabanı bilgileri! Eğer hemen sitenizin yayına girmesini istiyorsanız bu seçeneği seçin, daha sonra istediğiniz bölümleri ayarlayabilirsiniz.', + 'proceed' => 'İlerle', + 'welcome' => 'Ushahidi sunucusu yükleme merkezine hoşgeldiniz. Lütfen aşağıdaki yükleme çeşitlerinden birini seçin.', + ) , + 'installation_successful' => 'Yükleme Başarılı', + 'mail_server' => 'Posta Sunucusu', + 'mail_server_host' => 'Posta Sunucu Sağlayıcısı', + 'mail_server_host_description' => 'Örnek: posta.sizinsiteniz.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Posta Sunucu Parolası', + 'mail_server_password_description' => 'E-posta hesabınıza girerken kullandığınız parola', + 'mail_server_port' => 'Posta Sunucu Portu', + 'mail_server_port_description' => 'Sık Kullanılan Portlar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Posta Sunucu Tipi', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) veya Post Office Protocol (POP). Aralarındaki fark nedir? (İngilizce)', + 'mail_server_username' => 'Posta Sunucusu Kullanıcı Adı', + 'mail_server_username_description' => 'Gmail, Hotmail veya Yahoo Mail kullanıyorsanız, kullanıcı adı alanına tüm e-posta adresinizi girin.', + 'map' => 'Harita', + 'map_provider' => 'Harita Sağlayıcı', + 'map_provider_description' => 'Ushahidi bu haritalama sistemleriyle aşağı yukarı aynı verimlilikte çalışır: Google, Bing, Yahoo veya Open Street Map. Bulunduğunuz yeri en detaylı olarak gösteren haritalama sistemini seçmenizde fayda var.', + 'other_steps' => 'Diğer Adımlar...', + 'password' => 'Parola', + 'password_description' => 'Veritabanınızın Parolası', + 'previous' => 'Geri', + 'restart_apache' => 'Lütfen Apache sunucusunu baştan başlatın', + 'select_mail_server_ssl' => 'SSL\'i etkinleştir veya devre dışı bırak.', + 'select_mail_server_ssl_description' => 'Bazı posta sunucuları bağlantı gönderirken SSL sistemini kullanmanıza izin verir.SSL kullanmak güvenliğiniz açısından tavsiye edilir', + 'setup_sms' => 'SMS sunucusunu oluşturun', + 'site_email' => 'Sitenizin E-posta Adresi', + 'site_email_alerts' => 'Sitenizin Uyarılar için E-posta Adresi', + 'site_email_alerts_description' => 'Ziyaretçileriniz uyarı havuzuna abone olduklarında, uyarıları bu e-posta adresinden alacaklar. Bu e-posta adresi ile sitenin genel e-posta adresiyle aynı olmak zorunda değil.', + 'site_email_description' => 'Site hakkında gönderilen e-postalar bu adresten gönderilecektir.', + 'site_name' => 'Site Adı', + 'site_name_description' => 'Sitenizin adı', + 'site_tagline' => 'Site Etiketleri', + 'site_tagline_description' => 'Sizin etiketleriniz', + 'summary' => array( + 'text_1' => 'Düzgün bir kurulum için aşağıda listelenen dosya ve klasörler yazılabilir olmalı.', + 'text_2' => '

Dosya izinlerinin değiştirilmesi hakkında bilgiler (İngilizce):

, + ', + 'text_3' => 'Yükleme işlemine başlamadan önce belirtilen dosya ve klasörlerin yazılabilir olduğundan emin olun. Bu konu dosya izinleriyle alakalıdır.', + 'text_4' => 'Yükleme kısmı için lütfen belirtilen bilgileri elinizde bulundurun.', + ) , + 'table_prefix' => 'Tablo Öneki', + 'table_prefix_description' => 'Normalde tablo önekini kurulum sırasında değiştirmezsiniz. Fakat tek bir veritabanına birden fazla Ushahidi kurmak istiyorsanız gerekli değişiklikleri bu kısımdan yapabilirsiniz', + 'title' => 'Başlık', + 'to_login' => 'Giriş yapmak için,', + 'upload_data' => 'Rapor bilgisi yükle', + 'username' => 'Kullanıcı Adı', + 'username_description' => 'Veritabanı kullanıcı adınız', + 'use_credentials' => 've belirtilen kimlik bilgilerini kullanın', + 'view_site' => 'Siteyi görüntüle', +); diff --git a/application/i18n/tr_TR/layer.php b/application/i18n/tr_TR/layer.php new file mode 100644 index 0000000000..09cd6ee14d --- /dev/null +++ b/application/i18n/tr_TR/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Renk alanı en az 6 karakterden oluşmalıdır.', + 'required' => 'Renk alanı boş bırakılamaz.', + ) , + 'layer_file' => array( + 'type' => 'Dosya uzantısı geçersiz. .KMZ, .KML uzantılı dosyalar kabul edilmektedir.', + 'valid' => 'Dosya geçersiz görünüyor.', + ) , + 'layer_name' => array( + 'length' => 'İsim alanı en az 3, en fazla 80 karakterden oluşmalıdır.', + 'required' => 'İsim alanı boş bırakılamaz.', + ) , + 'layer_url' => array( + 'atleast' => 'Bir KML URL\'si ya da Dosyası gereklidir', + 'both' => 'Aynı anda hem bir KML dosyasına ve bir KML URL\'sine sahip olamazsınız', + 'url' => 'Lütfen geçerli bir adres giriniz. Örn. http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/tr_TR/libraries.php b/application/i18n/tr_TR/libraries.php new file mode 100644 index 0000000000..60471a17f9 --- /dev/null +++ b/application/i18n/tr_TR/libraries.php @@ -0,0 +1,27 @@ + 'Akismet sunucusuna bağlanılamadı', + 'akismet_cannot_retrieve' => 'Akismet\'ten gelen yanıta cevap verilemedi', + 'api_library_not_found' => 'API kütüphanesi: %s için %s sınıfı bulunamadı. Lütfen API görev yolunuzu kontrol edin.', + 'askimet_invalid_apikey' => 'Akismet API anahtarı geçerli değil', + 'clickatell_fopen_error' => 'Hata! Fopen komutu ile gönderme metodu çalışmadı!
Lütfen PHP sunucusunun OpenSSL desteği olduğuna ve PHP versiyonunun 5.2den yüksek olduğuna emin olun', + 'clickatell_message_too_long' => 'Unicode iletiniz çok uzun! (Mevcut uzunluk=', + 'clickatell_no_destination_address' => 'Lütfen gidilecek adresi belirtin (KİME)!', + 'clickatell_no_sender_address' => 'Lütfen kaynak adresi belirtin (KİMDEN)!', + 'clickatell_unicode_message_too_long' => 'Unicode iletiniz çok uzun! (Uzunluk=', + 'clickatell_unsupported_method' => 'Desteklenmeyen gönderim metodu!', + 'invalid_api_library' => 'API kütüphanesi (%s) geçerli değil. Bütün API kütüphaneleri %s arasınıfı olmalıdır', + 'upgrade_directory_not_deleted' => 'Dosya %s silinemedi', + 'upgrade_extracting_error' => 'Çıkartılırken hata: %s', + 'upgrade_failed' => 'Ushahidi\'nin en son sürümü indirilirken hata oluştu. HTTP durum kodu', + 'upgrade_file_not_copied' => 'Dosya %s kopyalanamadı', + 'upgrade_file_not_deleted' => 'Dosya %s silinemedi', + 'upgrade_title' => 'Ushahidi güncelleme yazılımı', + 'upgrade_zip_error' => 'İndirilen Ushahidi zip dosyası %s, yazılamadı', + 'riverid_variable_not_available' => 'RiverID sınıfında "%s" mevcut değil.', +); diff --git a/application/i18n/tr_TR/maintenance.php b/application/i18n/tr_TR/maintenance.php new file mode 100644 index 0000000000..602a35f47d --- /dev/null +++ b/application/i18n/tr_TR/maintenance.php @@ -0,0 +1,9 @@ + 'Üzgünüm, sitemizde şuan bakım çalışması vardır. Lütfen birkaç dakika sonra tekrar deneyin.', +); diff --git a/application/i18n/tr_TR/message.php b/application/i18n/tr_TR/message.php new file mode 100644 index 0000000000..d5b1d90d2f --- /dev/null +++ b/application/i18n/tr_TR/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Lütfen geçerli bir güvenlik kodu girin', + 'required' => 'Lütfen güvenlik kodunu girin', + ) , + 'email' => array( + 'email' => 'E-posta adresi geçersiz.', + 'length' => 'E-posta kısmı en az 4, en fazla 64 karakter uzunluğunda olmalı.', + 'required' => 'Kullanım koşullarını kabul ettiyseniz sisteme e-posta adresi girmeniz gerekir.', + ) , + 'message' => array( + 'required' => 'Yorumlar kısmı boş bırakılamaz.', + ) , + 'name' => array( + 'length' => 'İsim kısmı en az 3 karakterden oluşmalı.', + 'required' => 'İsim kısmı boş bırakılamaz.', + ) , + 'phone' => array( + 'length' => 'Telefon kısmı geçerli değil.', + ) , +); diff --git a/application/i18n/tr_TR/mhi.php b/application/i18n/tr_TR/mhi.php new file mode 100644 index 0000000000..26986204f1 --- /dev/null +++ b/application/i18n/tr_TR/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Lütfen geçerli bir güvenlik kodu giriniz.', + 'required' => 'Lütfen güvenlik kodunu giriniz.', + ) , + 'contact_email' => array( + 'email' => 'E-posta adresi geçerli değil gibi görünüyor.', + 'required' => 'Lütfen geçerli bir e-posta adresi giriniz.', + ) , + 'contact_message' => array( + 'required' => 'İleti alanı boş bırakılamaz.', + ) , + 'contact_subject' => array( + 'length' => 'Başlık en az 3 karakterden oluşmalıdır.', + 'required' => 'Başlık alanı boş bırakılamaz.', + ) , +); diff --git a/application/i18n/tr_TR/notifications.php b/application/i18n/tr_TR/notifications.php new file mode 100644 index 0000000000..00ff1435f0 --- /dev/null +++ b/application/i18n/tr_TR/notifications.php @@ -0,0 +1,35 @@ + 'Bu ileti internet sitenizden gönderildi.', + 'admin_login_url' => 'Yönetici Girişi', + 'admin_new_comment' => array( + 'message' => 'Şu habere internet sitenizde yorum yazıldı:', + 'subject' => 'Yeni Yorum', + ) , + 'admin_new_email' => array( + 'message' => 'İnternet sitenize yeni bir e-posta iletisi gönderildi.', + 'subject' => 'Yeni E-posta', + ) , + 'admin_new_report' => array( + 'message' => 'İnternet sitenize yeni bir rapor gönderildi.', + 'subject' => 'Yeni Rapor', + ) , + 'admin_new_sms' => array( + 'message' => 'İnternet sitenize yeni bir kısa mesaj gönderildi.', + 'subject' => 'Yeni Kısa Mesaj', + ) , + 'member_new_alert' => array( + 'message' => 'Yeni bir Uyarı Aldınız', + 'subject' => 'Yeni Uyarı!', + ) , + 'member_new_message' => array( + 'message' => 'Özel Bir İletiniz Var!', + 'subject' => 'Yeni Özel İleti', + 'footer' => 'Cevaplamak İçin: ', + ) , +); diff --git a/application/i18n/tr_TR/page.php b/application/i18n/tr_TR/page.php new file mode 100644 index 0000000000..cca0c2ff1b --- /dev/null +++ b/application/i18n/tr_TR/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Lütfen bir sayfa başlığı giriniz', + 'length' => 'Sayfa başlığı 3 karakterden kısa ve 150 karakterden uzun olamaz.', + ) , + 'page_tab' => array( + 'required' => 'Lütfen sayfa etiket adını giriniz.', + ) , + 'page_description' => array( + 'required' => 'Lütfen bir sayfa açıklaması giriniz.', + ) , +); diff --git a/application/i18n/tr_TR/permissions.php b/application/i18n/tr_TR/permissions.php new file mode 100644 index 0000000000..6d590e6e30 --- /dev/null +++ b/application/i18n/tr_TR/permissions.php @@ -0,0 +1,26 @@ + 'Raporları görüntüle', + 'reports_edit' => 'Rapor Yarat/Düzenle/Sil', + 'reports_approve' => 'Raporları Onayla', + 'reports_verify' => 'Raporları Doğrula', + 'reports_comments' => 'Rapor Yorumlarını Yönet', + 'reports_download' => 'Raporları İndir', + 'reports_upload' => 'Raporları Karşıya Yükle', + 'messages' => 'İletileri Yönet', + 'messages_reporters' => 'İleti Raporlarını Yönet', + 'stats' => 'İstatistikleri Görüntüle', + 'settings' => 'Ayarları Değiştir', + 'manage' => 'Panel Yönetimi', + 'users' => 'Kullanıcı Yönetimi', + 'manage_roles' => 'Rol Yönetimi', + 'checkin' => 'Kontrol edebilirsiniz', + 'checkin_admin' => 'Girişleri Yönet', + 'admin_ui' => 'Yönetici Erişimi UI', + 'member_ui' => 'Üye Erişimi', +); diff --git a/application/i18n/tr_TR/private_message.php b/application/i18n/tr_TR/private_message.php new file mode 100644 index 0000000000..a1ea7750d1 --- /dev/null +++ b/application/i18n/tr_TR/private_message.php @@ -0,0 +1,14 @@ + array( + 'required' => 'Konu alanı boş bırakılamaz.', + ) , + 'private_message' => array( + 'required' => 'İleti alanı boş bırakılamaz.', + ) , +); diff --git a/application/i18n/tr_TR/report.php b/application/i18n/tr_TR/report.php new file mode 100644 index 0000000000..24532e5400 --- /dev/null +++ b/application/i18n/tr_TR/report.php @@ -0,0 +1,127 @@ + 'hata!', + 'country_name' => array( + 'single_country' => 'Bu harita sadece bir ülkeyi kapsıyor. Lütfen rapor yerinin bu %s. ülkesi içinde olduğunu emin olun.', + ) , + 'custom_field' => array( + 'required' => '"%s" alanı boş bırakılamaz.', + ) , + 'data_include' => array( + 'between' => 'Karşıdan yüklemeye dahil etmek için lütfen geçerli bir nesne seçin', + 'numeric' => 'Karşıdan yüklemeye dahil etmek için lütfen geçerli bir nesne seçin', + ) , + 'data_active' => array( + 'between' => 'Lütfen "Onay Bekleyen Raporlar" ya da "Onaylanan Raporları" ya da her ikisini de seçin. ', + 'numeric' => 'Lütfen "Onay Bekleyen Raporlar" ya da "Onaylanan Raporları" ya da her ikisini de seçin. ', + 'required' => 'Lütfen "Onay Bekleyen Raporlar" ya da "Onaylanan Raporları" ya da her ikisini de seçin. ', + ) , + 'data_verified' => array( + 'between' => 'Lütfen "Onay Bekleyen Raporlar" ya da "Onaylanan Raporları" ya da her ikisini de seçin. ', + 'numeric' => 'Lütfen "Onay Bekleyen Raporlar" ya da "Onaylanan Raporları" ya da her ikisini de seçin. ', + 'required' => 'Lütfen "Onay Bekleyen Raporlar" ya da "Onaylanan Raporları" ya da her ikisini de seçin. ', + ) , + 'data_point' => array( + 'between' => 'Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin', + 'numeric' => 'Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin', + 'required' => 'Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'KİMDEN tarihi kısmında geçerli bir tarih görünmüyor?', + 'range' => 'Lütfen geçerli bir KİMDEN tarihi girin. Bu tarih, bugünden daha ileri bir tarih olamaz.', + ) , + 'incident_active' => array( + 'between' => 'Bu Raporu Onaylamak için lütfen geçerli bir değer girin', + 'required' => 'Karşıdan yükleme yapmak için lütfen geçerli türde bir rapor seçin', + ) , + 'incident_ampm' => array( + 'validvalues' => 'öö/ös seçeneğini girdiğiniz alanda geçerli bir değer görünmüyor?', + ) , + 'incident_category' => array( + 'numeric' => 'Kategori kısmı geçerli değil?', + 'required' => 'Kategori kısmı boş bırakılamaz.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Tarih kısmında geçerli bir tarih görünmüyor?', + 'date_mmddyyyy' => 'Tarih kısmında geçerli bir tarih görünmüyor?', + 'required' => 'Tarih kısmı boş bırakılamaz.', + ) , + 'incident_description' => array( + 'required' => 'Tanım kısmı boş bırakılamaz.', + ) , + 'incident_hour' => array( + 'between' => 'Saat kısmında geçerli bir saat değeri görünmüyor?', + 'required' => 'Saat kısmı boş bırakılamaz.', + ) , + 'incident_information' => array( + 'alpha' => 'Bilgi Olasılığı için lütfen geçerli bir değer girin', + 'length' => 'Bilgi Olasılığı için lütfen geçerli bir değer girin', + ) , + 'incident_minute' => array( + 'between' => 'Dakika kısmında geçerli bir değer görünmüyor?', + 'required' => 'Dakika kısmı boş bırakılamaz.', + ) , + 'incident_news' => array( + 'url' => 'Haber kaynağı linkleri alanında geçerli bir URL görünmüyor?', + ) , + 'incident_photo' => array( + 'size' => 'Yükleyeceğiniz fotoğraf büyüklüğünün 2MBı geçmediğinden lütfen emin olun.', + 'type' => 'Yükleme yapılacak fotoğraf alanında geçerli bir fotoğraf görünmüyor. Sadece .JPG, .PNG ve .GIF formatları geçerlidir.', + 'valid' => 'Yükleme yapılacak fotoğraf kısmı geçerli bir dosya içermiyor', + ) , + 'incident_source' => array( + 'alpha' => 'Kaynak Güvenilirliği için lütfen geçerli bir kaynak girin', + 'length' => 'Kaynak Güvenilirliği için lütfen geçerli bir kaynak girin', + ) , + 'incident_title' => array( + 'length' => 'Başlık en az 3, en fazla 200 karakter uzunluğunda olmalıdır.', + 'required' => 'Başlık kısmı boş bırakılamaz.', + 'csrf' => 'CSFR saldırısı ihtimali. Bir rapor oluşturmak/güncellemek mi istiyorsunuz?', + ) , + 'incident_verified' => array( + 'between' => 'Bu Raporu Doğrulamak için lütfen geçerli bir değer giriniz', + 'required' => 'Bu Raporu Doğrulamak için lütfen geçerli bir değer giriniz', + ) , + 'incident_video' => array( + 'url' => 'Video linkleri alanında geçerli bir URL görünmüyor?', + ) , + 'latitude' => array( + 'between' => 'Genişlik kısmında geçerli bir genişlik değeri görünmüyor?', + 'required' => 'Genişlik kısmı boş bırakılamaz. Bir konum seçmek için lütfen haritaya tıklayın.', + ) , + 'locale' => array( + 'alpha_dash' => 'Olay yeri kısmı yanlış bir değer içeriyor.', + 'exists' => 'Bu raporun, bu dil için zaten çevirisi mevcut', + 'length' => 'Olay yeri kısmı yanlış bir değer içeriyor.', + 'locale' => 'Orjinal Rapor ve Çeviri aynı olay yerine sahip olmalı (dil)', + 'required' => 'Olay yeri kısmı boş bırakılamaz.', + ) , + 'location_name' => array( + 'length' => 'Konum adı en az 3, en çok 200 karakter uzunluğunda olmalıdır.', + 'required' => 'Konum adı alanı boş bırakılamaz.', + ) , + 'longitude' => array( + 'between' => 'Boylam kısmında geçerli bir boylam değeri görünmüyor?', + 'required' => 'Boylam kısmı boş bırakılamaz. Bir konum seçmek için lütfen haritaya tıklayın.', + ) , + 'person_email' => array( + 'email' => 'E-posta adresi kısmında geçerli bir e-posta adresi görünmüyor?', + 'length' => 'E-posta adresi en az 4, en çok 64 karakter uzunluğunda olmalıdır.', + ) , + 'person_first' => array( + 'length' => 'İsminiz en az 3, en çok 100 karakter uzunluğunda olmalıdır.', + ) , + 'person_last' => array( + 'length' => 'Soyisminiz en az 3, en çok 100 karakter uzunluğunda olmalıdır.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'KİME tarih kısmında geçerli bir tarih görünmüyor?', + 'range' => 'Lütfen geçerli bir KİME tarihi girin. Bu, bugünün tarihinden daha ileri bir tarih olamaz.', + 'range_greater' => 'KİMDEN tarihi KİME tarihinden daha ileri bir tarih olamaz.', + ) , +); diff --git a/application/i18n/tr_TR/reporters.php b/application/i18n/tr_TR/reporters.php new file mode 100644 index 0000000000..523f8cc4d3 --- /dev/null +++ b/application/i18n/tr_TR/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Geçersiz bir enlem girdiniz.', + 'required' => 'Enlem alanı boş bırakılamaz. Lütfen haritada tıklayarak bir nokta belirleyiniz.', + ) , + 'level_id' => array( + 'numeric' => 'Haberci Seviyesi geçerli değil', + 'required' => 'Haberci Seviyesi geçerli değil', + ) , + 'location_name' => array( + 'length' => 'Yer ismi alanı en az 3, en fazla 200 karakterden oluşmalıdır.', + 'required' => 'Yer ismi alanı boş bırakılamaz.', + ) , + 'longitude' => array( + 'between' => 'Geçersiz bir boylam girdiniz.', + 'required' => 'Boylam kısmı boş bırakılamaz. Lütfen haritada tıklayarak bir nokta belirleyiniz.', + ) , + 'reporter_id' => array( + 'numeric' => 'Geçersiz Haberci', + 'required' => 'Geçersiz Haberci', + ) , +); diff --git a/application/i18n/tr_TR/reports.php b/application/i18n/tr_TR/reports.php new file mode 100644 index 0000000000..1e1c8a7480 --- /dev/null +++ b/application/i18n/tr_TR/reports.php @@ -0,0 +1,19 @@ + array( + 'numeric' => 'Lütfen bir ögeyi kontrol ettiğinizi doğrulayın', + 'categories_required' => 'Raporlar onaylanmadan önce sınıflandırılmalıdır.', + ) , + 'action' => array( + 'permission' => 'Bu eylemi gerçekleştirmek için izniniz yok', + ) , + 'uploadfile' => array( + 'required' => 'Yükleme yapabilmek için bir dosya seçmelisiniz', + 'type' => 'Yüklenen dosya .cvs ya da .xml biçiminde olmalıdır.', + ) , +); diff --git a/application/i18n/tr_TR/roles.php b/application/i18n/tr_TR/roles.php new file mode 100644 index 0000000000..3a4e2fc100 --- /dev/null +++ b/application/i18n/tr_TR/roles.php @@ -0,0 +1,22 @@ + array( + 'length' => 'Açıklama kısmı en az 3, en fazla 100 karakter uzunluğunda olmalıdır.', + 'required' => 'Açıklama kısmı boş bırakılamaz.', + ) , + 'name' => array( + 'alpha_numeric' => 'İsim kısmı sadece harflerden veya rakamlardan oluşmalıdır.', + 'length' => 'İsim kısmı en az 2, en fazla 30 karaterden oluşmalıdır.', + 'nomodify' => 'SüperAdmin Ünvanı Değiştirilemez.', + 'required' => 'İsim kısmı boş bırakılamaz.', + ) , + 'access_level' => array( + 'numeric' => 'Erişim seviyesi kısmı 0 ila 100 arası bir numara olmalıdır.', + 'required' => 'Erişim seviyesi kısmı 0 ila 100 arası bir numara olmalıdır.', + ) , +); diff --git a/application/i18n/tr_TR/settings.php b/application/i18n/tr_TR/settings.php new file mode 100644 index 0000000000..bb5f64b18a --- /dev/null +++ b/application/i18n/tr_TR/settings.php @@ -0,0 +1,207 @@ + array( + 'between' => 'İzin verilen yorumlar kısmında geçerli bir değer görünmüyor?', + 'required' => 'İzin verilen yorumlar kısmı boş bırakılamaz.', + ) , + 'allow_feed' => array( + 'between' => 'Besleme alanında geçerli bir değer görünmüyor?', + 'required' => 'Besleme alanı boş bırakılamaz.', + ) , + 'allow_reports' => array( + 'between' => 'İzin verilen raporlar kısmında geçerli bir değer görünmüyor?', + 'required' => 'İzin verilen raporlar kısmı boş bırakılamaz.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'İstatistik paylaşım kısmında geçerli bir değer görünmüyor?', + 'required' => 'İstatistik paylaşım kısmı boş bırakılamaz.', + ) , + 'api' => array( + 'default_record_limit' => 'API isteği doğrultusunda varsayılan kayıtların sayısı', + 'maximum_record_limit' => 'API isteği doğrultusunda kayıtların maksimum sayısı', + 'maximum_requests_per_ip_address' => 'IP adresi başına API isteği doğrultusunda kayıtların maksimum sayısı', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Akismet kısmında geçerli bir değer görünmüyor?', + 'length' => 'Akismet kısmında geçerli bir değer görünmüyor?', + ) , + 'cache_pages' => array( + 'between' => 'Önbellek sayfası boş bırakılamaz.', + 'required' => 'Önbellek sayfasında geçerli bir değer görünmüyor?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Önbellek ömrü kısmında geçerli bir değer görünmüyor?', + 'required' => 'Önbellek ömrü kısmı boş bırakılamaz.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Görünüşe göre sunucu kısa bağlantıyla görülebilecek şekilde ayarlanmamış. Kısa bağlantıları aktif etmeden önce sunucunuzu ayarlamanız gerekiyor. Daha fazla bilgi ve kısa bağlantıları aktif etmek için tıkla (İngilizce)', + 'clean_url_enabled' => 'Bu ayar Ushahidinin kısa bağlantıyla erişilmesine izin verir. (Bağlantıda "index.php" olmadan.)', + 'enable_clean_url' => 'Kısa Bağlantıları Aktif Et', + 'title' => 'Kısa Bağlantı', + ) , + 'clickatell_api' => array( + 'length' => 'Clickatell API Numara kısmı 20 karakterden uzun olmamalıdır.', + 'required' => 'The Clickatell API Numara kısmı boş bırakılamaz.', + ) , + 'clickatell_password' => array( + 'length' => 'Clickatell Parola kısmı en az 5, en fazla 50 karakter uzunluğunda olmalıdır.', + 'required' => 'Clickatell Parola kısmı boş bırakılamaz.', + ) , + 'clickatell_username' => array( + 'length' => 'Clickatell Kullanıcı Adı kısmı 50 karakterden uzun olmamalıdır.', + 'required' => 'Clickatell Kullanıcı Adı kısmı boş bırakılamaz.', + ) , + 'configure_map' => 'Haritayı Ayarla', + 'default_location' => 'Varsayılan Konum', + 'default_map_all' => array( + 'alpha_numeric' => 'Renk besleme kısmında geçerli bir değer görünmüyor?', + 'length' => 'Renk besleme kısmı en fazla 6 karakter uzunluğunda olmalıdır.', + 'required' => 'Renk besleme kısmı boş bırakılamaz.', + ) , + 'default_map_view' => 'Varsayılan Harita Görünümü', + 'default_zoom_level' => 'Varsayılan Yakınlaştırma Seviyesi', + 'download_city_list' => 'Geonamesten Şehirleri Al', + 'email_host' => array( + 'length' => 'E-posta sunucusu port kısmı çok uzun', + 'numeric' => 'E-posta sunucusu port kısmı sadece rakamlardan oluşmalıdır.', + ) , + 'email_password' => array( + 'length' => 'E-posta Sunucu Parolası en az 5, en fazla 50 karakter uzunluğunda olmalıdır.', + 'required' => 'E-posta Sunucu Parolası boş bırakılamaz.', + ) , + 'email_port' => array( + 'length' => 'E-posta sunucusunun port kısmı çok uzun', + 'numeric' => 'E-posta sunucusunun port kısmı sadece rakamlardan oluşmalıdır.', + ) , + 'email_servertype' => array( + 'length' => 'E-posta sunucusunun port kısmı çok uzun', + 'required' => 'E-posta Sunucu Tipi kısmı boş bırakılamaz.', + ) , + 'email_username' => array( + 'length' => 'E-posta Sunucu Kullanıcı Adı 50 karakterden daha uzun olamaz.', + 'required' => 'E-posta Sunucu Kullanıcı Adı kısmı boş bırakılamaz.', + ) , + 'facebook' => array( + 'title' => 'Facebook Kurulum Ayarları', + 'description' => 'Aşağıdaki bilgileri almak için (link here) adlı adresten yeni bir facebook uygulaması yaratmanız gerekir', + 'app_id' => 'Facebook Uygulama Kimliği', + 'app_secret' => 'Facebook Uygulama Gizliliği', + ) , + 'google_analytics' => array( + 'length' => 'Google Analytics kısmı geçerli bir bölge kimliği içermesi gerekir. (UA-XXXXX-XX şeklinde) ', + ) , + 'https' => array( + 'enable_https' => 'HTTPSyi Aktif Et', + 'https_disabled' => 'Bu ayar Ushahidiye güvenli olmayan bir şekilde erişilmesini sağlar; bağlantının başında "https://" olmadan.', + 'https_enabled' => 'Bu ayar Ushahidiye güvenli bir şekilde erişilmesini sağlar; bağlantının başında https olur.', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Sayfa başına haber sayısı (Görülebilir) kısmında geçerli bir değer görünmüyor?', + 'required' => 'Sayfa başına haber sayısı (Görülebilir) kısmı boş bırakılamaz.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Sayfa başına haber sayısı (Admin) kısmında geçerli bir değer görünmüyor?', + 'required' => 'Sayfa başına haber sayısı (Admin) kısmı boş bırakılamaz.', + ) , + 'map' => array( + 'default_location' => 'Harita sağlayıcı seçmek ve düzenlemek kolay bir iştir. Sağlayıcıyı seçin, sağlayıcının kendi sitesinden API anahtarını alın ve API anahtarını girin', + 'zoom' => 'Yakınlaştırma Seviyesi', + ) , + 'map_provider' => array( + 'choose' => 'Harita Sağlayıcı seç', + 'enter_api' => 'Yeni API Anahtarını Girin', + 'get_api' => 'API Anahtarı Al', + 'info' => 'Harita sağlayıcı seçmek ve düzenlemek kolay bir iştir. Sağlayıcıyı seçin, sağlayıcının kendi sitesinden API anahtarını alın ve API anahtarını girin', + 'name' => 'Harita sağlayıcı', + ) , + 'map_timeline' => 'Harita zaman tüneli', + 'map_settings' => 'Harita Ayarları', + 'multiple_countries' => 'Ushahidi birden fazla ülke seçildiğinde verimli olarak çalışır mı', + 'select_default_location' => 'Lütfen varsayılan bir ülke seçin', + 'set_location' => 'Net konumunuzu ayarlamak için harita üzerindeki yere tıklayıp, çekin', + 'site' => array( + 'allow_clustering' => 'Harita üzerindeki Kümelenmiş Uyarılar', + 'allow_comments' => 'Kullanıcıların Uyarılar hakkında Yorum yapmasına İzin verin', + 'allow_feed' => 'İnternet Sitesi üzerindeki RSS Beslemelerini dahil et', + 'allow_reports' => 'Kullanıcıların Uyarı göndermesine İzin verin', + 'api_akismet' => 'Akismet Anahtarı', + 'blocks_per_row' => 'Satır başına Sütun Sayısı', + 'cache_pages' => 'Önbellek Sayfaları', + 'cache_pages_lifetime' => 'Önbellek Sayfalarının Ömürleri', + 'checkins' => 'Girişler', + 'copyright_statement' => 'Sitenin Telif Hakkı Beyanı', + 'default_category_colors' => 'Bütün Kategoriler için Varsayılan Renk', + 'display_contact_page' => 'İletişim Sayfasını Görüntüle', + 'display_howtohelp_page' => '"Nasıl yardım edebilirim" Sayfasını Görüntüle', + 'email_alerts' => 'E-posta Adresi Uyarıları', + 'email_notice' => 'Raporları e-posta aracılığıyla almak istiyorsanız lütfen e-posta hesabı ayarlarını tamamlayın.', + 'email_site' => 'Sitenin E-posta Adresi', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Konum Kimliği - Format: UA-XXXXX-XX', + 'items_per_page' => 'Sayfa başına düşen Haberler - Görülebilir Sayfa Sonu', + 'items_per_page_admin' => 'Sayfa başına düşen Haberler - Admin', + 'kismet_notice' => 'Yorumlardaki spam olayını engellemek için Akismet adlı sistemi ziyaret edin.
WordPress.com kullanıcı hesabına kayıt olarak ücretsiz API anahtarı alabilirsiniz.', + 'laconica_configuration' => 'Laconica Referansları', + 'language' => 'Site Dili', + 'message' => 'Site İletisi', + 'name' => 'Site Adı', + 'private_deployment' => 'Özel Dağıtım', + 'submit_report_message' => 'Bildirim İletisini Gönder', + 'share_site_stats' => 'İstatistikleri Aktif Et (Bilgiler Ushahidinin Sunucusunda Depolanır)', + 'tagline' => 'Site Etiket Satırı', + 'timezone' => 'Zaman Dilimi', + 'title' => 'Site Ayarları', + 'twitter_configuration' => 'Twitter Arama Politikası', + 'twitter_hashtags' => 'Hashtags - Virgül kullanarak ayırın', + ) , + 'site_email' => array( + 'email' => 'Sitenin e-posta kısmına geçerli bir değer girilmemiş?', + 'length' => 'Sitenin e-posta kısmı en az 4, en fazla 100 karakterden oluşmalıdır.', + ) , + 'site_name' => array( + 'length' => 'Sitenin ismi en az 3, en fazla 50 karakterden oluşmalıdır.', + 'required' => 'Site ismi boş bırakılamaz.', + ) , + 'site_tagline' => array( + 'length' => 'Etiketler en az 3, en fazla 100 karakterden oluşmalıdır.', + 'required' => 'Etiket kısmı boş bırakılamaz', + ) , + 'sms' => array( + 'clickatell_api' => 'Sizin Clickatell API Numaranız', + 'clickatell_check_balance' => 'Clickatell Bakiyenizi Kontrol Edin', + 'clickatell_load_balance' => 'Hesaba Para Yükle', + 'clickatell_password' => 'Clickatell Parolanız', + 'clickatell_text_1' => 'Clickatell servisine kayıt olmak için buraya tıklayın', + 'clickatell_text_2' => 'Clickatell iletişim bilgilerini girin', + 'clickatell_username' => 'Clickatell Kullanıcı Adınız', + 'flsms_download' => 'FrotlineSMS\'i indir ve yükle.', + 'flsms_text_1' => 'Frontline SMS adlı uygulamaya bağlanmış numaraları aşağıdaki kısma girin', + 'flsms_text_2' => 'Unutmayın, numara karakter içermemelidir. (+, # gibi)', + 'option_1' => 'Seçenek 1: Frontline SMS Kullan', + 'option_2' => 'Seçenek 2: Global SMS Gateway Kullan', + 'title' => 'SMS Kurulum Ayarları', + ) , + 'sms_no1' => array( + 'length' => 'Telefon 1 kısmında geçerli bir değer gözükmüyor?', + 'numeric' => 'Telefon 1 kısmı sadece rakamlardan oluşmalıdır.', + ) , + 'sms_no2' => array( + 'length' => 'Telefon 2 kısmı çok uzun', + 'numeric' => 'Telefon 2 kısmı sadece rakamlardan oluşmalıdır.', + ) , + 'sms_no3' => array( + 'length' => 'Telefon 3 kısmı çok uzun', + 'numeric' => 'Telefon 3 kısmı sadece rakamlardan oluşmalıdır.', + ) , + 'twitter' => array( + 'title' => 'Twitter Kurulum Ayarları', + 'description' => 'Aşağıdaki bilgileri almak için yeni bir Twitter uygulaması oluşturmanız gerekir', + ) , + 'test_settings' => 'Deneme Ayarları', +); diff --git a/application/i18n/tr_TR/sharing.php b/application/i18n/tr_TR/sharing.php new file mode 100755 index 0000000000..d409fcec3b --- /dev/null +++ b/application/i18n/tr_TR/sharing.php @@ -0,0 +1,25 @@ + 'Giriş tarihi', + 'date_added' => 'Tarih Eklendi', + 'last_access' => 'Son Erişim', + 'sharing_color' => array( + 'length' => 'Renk ismi en az 6 karakter uzunluğunda olmalı.', + 'required' => 'Renk alanı boş bırakılamaz.', + ) , + 'sharing_name' => array( + 'length' => 'Paylaşım ismi geçerli değil', + 'required' => 'Paylaşım ismi boş bırakılamaz.', + ) , + 'sharing_url' => array( + 'exists' => 'Bu URL adresi zaten var.', + 'length' => 'Bu URL adresi geçerli değil', + 'required' => 'URL adresi boş bırakılamaz', + 'url' => 'Bu URL adresi geçerli değil', + ) , +); diff --git a/application/i18n/tr_TR/stats.php b/application/i18n/tr_TR/stats.php new file mode 100755 index 0000000000..15b490e4e5 --- /dev/null +++ b/application/i18n/tr_TR/stats.php @@ -0,0 +1,37 @@ + 'Onaylandı', + 'categories' => 'Kategoriler', + 'category_impact' => 'Kategori Etkisi', + 'category_impact_description' => 'Bu tablo size raporların doğrusal bir görünümünü verir. Fareyi soldan sağa doğru götürerek farklı kategorilerde görünüme sahip olabilirsiniz. Daha fazla detay için fare ile grafiğin üzerine gidiniz.', + 'choose_date_range' => 'Bir tarih aralığı seçin', + 'countries' => 'Ülkeler', + 'country' => 'Ülke', + 'description' => 'Merhaba, burası istatistiksel bölümdür. Genel açıklama yakında burada olacaktır. Şimdilik aşağıda bulunan alt kategorilere göz atabilirsiniz.', + 'error' => 'Hata', + 'glossary' => 'Sözlük', + 'hit_summary' => 'Tıklanma özeti', + 'legend' => 'Açıklama', + 'pageviews' => 'Tıklanma sayısı', + 'pageviews_description' => 'Sayfanızı ziyaret eden toplam kişi sayısı', + 'reports' => 'Raporlar', + 'reports_categories' => 'Rapor Kategorileri', + 'reports_statistics' => 'Rapor İstatistikleri', + 'reports_status' => 'Rapor Durumları', + 'report_stats' => 'Rapor İstatistikleri', + 'time_range_1' => '1 Ay', + 'time_range_2' => '3 Ay', + 'time_range_3' => '6 Ay', + 'time_range_all' => 'Hepsi', + 'unapproved' => 'Onaylanmamış', + 'unique_visitors' => 'Tekil ziyaretçiler', + 'unverified' => 'Doğrulanmamış', + 'verified' => 'Doğrulanmış', + 'visitor_summary' => 'Ziyaretçi Özeti', + 'visits' => 'Ziyaretler', +); diff --git a/application/i18n/tr_TR/tooltips.php b/application/i18n/tr_TR/tooltips.php new file mode 100755 index 0000000000..c930d23d9e --- /dev/null +++ b/application/i18n/tr_TR/tooltips.php @@ -0,0 +1,52 @@ + 'Üye listesine yazmaya başlayın.', + 'private_subject' => 'Özel ileti konusu', + 'private_message' => 'Özel İleti', + 'profile_email' => 'E-posta adresiniz', + 'profile_name' => 'Tam adınız', + 'profile_notify' => 'Web sitenize yeni rapor ya da yorum gönderildiğinden, EVET\'i seçerek e-posta yolu ile haberdar olabilirsiniz', + 'profile_password' => 'Parolanız. Eğer şuan ki parolanız tutmak istiyorsanız bu alanı boş bırakın', + 'profile_public_url' => 'Bu sizin profilinizin bulunabilir açık adresidir.', + 'profile_username' => 'Kullanıcı adınız değiştirilemez', + 'settings_alert_email' => 'Bu e-posta adresi e-posta uyarıları göndermek için kullanılacak.', + 'settings_allow_alerts' => 'Kullanıcıların İnternet yoluyla alarmları takip etmesine izin verin.', + 'settings_allow_clustering' => 'Benzer raporların harita üzerinde tek bir noktada gruplandırılmasına izin verir', + 'settings_allow_comments' => 'Kullanıcıların ana sitedeki raporlar hakkında yorum yapabilmelerine izin verir.', + 'settings_allow_feed' => 'RSS Haberleri beslemelerinin ana sitede gösterilmesine izin verir.', + 'settings_allow_reports' => 'Kullanıcıların web formu yoluyla bilgi göndermelerine izin verir.', + 'settings_api_max_requests_per_ip' => 'Her IP Adresi için maksimum API istek sayısı', + 'settings_cache_pages' => 'Sayfayı ön belleğe açıp kapatma. Bu özellik, cevap sürelerini kısaltarak sayfaları daha hızlı gösterir. Yüksek büyüklükteki sayfaları gezerken bu özelliği açmanız önerilir. **Raporlar, belirlemiş olduğunuz zamana göre sırayla hazırlanır (Cache Ömrü) (??)', + 'settings_cache_pages_lifetime' => 'Ön bellek süresini belirleyin.', + 'settings_checkins' => 'Bu ayar konuma göre yer bildirmeyi sağlar. Bu basitleştirilmiş ve kontrol edilmemiş rapor türü, kendi sitenizin ayarları yapılmadığı sürece anasayfanızda görünür.', + 'settings_configure_map' => 'Belirli bir konumu göstermek için harita oluşturun.', + 'settings_default_category_colors' => 'Sitedeki tüm kategoriler için bir renk kodu seçin', + 'settings_default_category_icons' => 'Sitedeki tüm kategoriler için bir simge seçin.', + 'settings_default_location' => 'Bu ülke sitenin yayınının yapıldığı ülkedir', + 'settings_display_contact' => 'Ana sitede İletişim Sekmesi\'ni açın ya da kapatın. ', + 'settings_display_howtohelp' => 'Ana sitede Yardım Sekmesi\'ni açın ya da kapatın.', + 'settings_display_items_per_page' => 'Ana sitedeki her sayfa için gösterilen rapor numarasıdır', + 'settings_flsms_download' => 'Gelen iletiler merkezidir', + 'settings_flsms_synchronize' => 'Ushahidi platformu ile merkezdeki iletileri senkronize eder', + 'settings_flsms_text_1' => 'Metin mesajlarının geldiği telefon numarasıdır', + 'settings_locale' => 'Sitede kullanılacak dili seçer.', + 'settings_map_provider' => 'Sitede hangi haritanın kullanılacağını belirler', + 'settings_private_deployment' => 'Bu değeri doğru ya da evet yaparak yayınınızı özel yapabilirsiniz; böylece sadece sizin belirleyeceğiniz hesaba sahip kullanıcılar yayına erişebilir.', + 'settings_server_host' => 'E-postaların saklandığı yer', + 'settings_server_password' => 'Bu parola, raporların geldiği e-posta adresi içindir.', + 'settings_server_port' => 'E-posta adreslerinden gelen bağlantıları kabul etmek için gereklidir', + 'settings_server_ssl_support' => 'Güvenli bir bağlantı oluşturmak gereklidir', + 'settings_server_type' => 'Ana makine sunucusundan gelen e-postaları düzeltebilmek için gereklidir', + 'settings_server_username' => 'Raporların geldiği e-posta adresidir', + 'settings_site_copyright_statement' => 'Çalışmanız için telif hakkı istemek her zaman iyi bir fikirdir. İhtiyaçlarınıza göre doğru lisansı belirmek için, şu adresi ziyaret edin: http://creativecommons.org/choose/.', + 'settings_site_email' => 'İletişim formundan e-posta raporları ve iletilerin geldiği e-posta adresidir.', + 'settings_site_message' => 'Anasayfadaki haritanın üstünde görünecek olan metindir. Sitedeki ziyaretçilere önemli bilgiler vermek için kullanışlıdır. Kutuyu silmek için, buradaki iletiyi silin.', + 'settings_site_name' => 'Ana sitenin en üstünde görünen sitenin adıdır.', + 'settings_site_tagline' => 'Bir kaç kelimeyle bu sitenin ne hakkında olduğunu açıklayın.', + 'settings_twitter_configuration' => 'Tweet de kullanılacak olan twitter hashtagi\'ni belirleyin', +); diff --git a/application/i18n/tr_TR/ui_admin.php b/application/i18n/tr_TR/ui_admin.php new file mode 100755 index 0000000000..44b8cbe072 --- /dev/null +++ b/application/i18n/tr_TR/ui_admin.php @@ -0,0 +1,252 @@ + 'Giriş engellendi. Referanslarınız geçerli değil ya da isteğiniz reddedildi.', + 'access_denied_others' => 'Giriş engellendi. İsteğiniz iletildi ancak zaman gibi çeşitli kısıtlamalar nedeniyle gerçekleştirilmedi. Lütfen daha sonra tekrar deneyiniz.', + 'access_level' => 'Erişim Seviyesi', + 'actions' => 'Eylemler', + 'add_to_category' => 'Kategori Ekle', + 'added' => 'eklendi', + 'added_edited' => 'eklendi/değiştirildi', + 'addons' => 'Eklentiler', + 'admin_role' => 'Yönetici', + 'alerts' => 'Uyarılar', + 'alerts_received' => 'Uyarılar Alındı', + 'am' => 'Ö.Ö', + 'anonymous' => 'Gizli', + 'anyone_role' => 'Herhangi biri', + 'anywhere' => 'Herhangi bir yer', + 'api_banned' => 'API Engellendi', + 'api_logs' => 'API Kayıtları', + 'api_settings' => 'API Ayarları', + 'api_unban' => 'Engeli kaldır', + 'api_unban_all' => 'Bütün engelleri kaldır', + 'approved' => 'onaylandı', + 'approve_auto' => 'Otomatik Onaylama', + 'approve_manual' => 'Elle Onayla', + 'archived' => 'Arşivlendi', + 'are_you_sure_you_want_to' => 'Şunu yapmak istediğinize emin misiniz', + 'are_you_sure_you_want_to_delete_this_item' => 'Bu maddeyi silmek istediğinize emin misiniz', + 'are_you_sure_you_want_to_delete_this_photo' => 'Bu resmi silmek istediğinize emin misiniz', + 'are_you_sure_you_want_to_switch_forms' => 'Formları değiştirmek istediğinize emin misiniz', + 'assign' => 'Ata', + 'assignments' => 'Atamalar', + 'assign_badge' => 'Rozet Ata', + 'author' => 'Yazar', + 'author_email' => 'Yazar e-posta adresi', + 'back' => 'Geri', + 'banip_action' => 'IP\'yi engelle', + 'between_times' => 'Vakitler Arasında', + 'blocks' => 'Sütun', + 'body' => 'Beden', + 'cancel' => 'İptal', + 'categories' => 'Kategoriler', + 'chart_display_error' => 'Tabloyu göstermede bir hata oluştu', + 'check_message_valid' => 'İletinizin geçerli olduğuna emin olun', + 'check_number' => 'Numaranın geçerli olduğuna emin olun', + 'check_sms_settings' => 'Lütfen kısa mesaj ayarlarınızı kontrol edin!', + 'checkin_details' => 'Yer Bildirim Detayları', + 'checkins' => 'Yer bildirimleri', + 'cities_loaded' => 'Yüklenen şehirlenen', + 'code' => 'kod', + 'code_out_of_sync' => 'Kod sürümü güncel değil.', + 'color' => 'Renk', + 'comments' => 'Yorumlar', + 'confirmation_code' => 'Uyarılar için onay kodunuz:', + 'confirm_msg' => 'Bu kullanıcı', + 'count' => 'Say', + 'country_not_found' => 'Ülke bulunamadı', + 'created_edited' => 'oluşturuldu/değiştirildi', + 'create_report' => 'Rapor oluştur', + 'critical_upgrade' => 'Kritik Güncelleme', + 'csv' => 'CSV', + 'currently_active' => 'Şu Anda Aktif', + 'currently_inactive' => 'Şu Anda Pasif', + 'daily' => 'Günlük', + 'dashboard' => 'Kontrol Paneli', + 'database' => 'veri tabanı', + 'date_time' => 'Gün ve Saat', + 'date_added' => 'Tarih Eklendi', + 'date_modified' => 'Tarih Değiştirildi', + 'days_of_the_week' => 'Haftanın günleri', + 'db_out_of_sync' => 'Veri tabanı güncel değil', + 'deleted' => 'silindi', + 'delete_action' => 'Sil', + 'delete_all' => 'Tüm raporları sil', + 'delete_badge' => 'Rozeti Sil', + 'demo' => 'Örnek', + 'description' => 'Açıklama', + 'disabled' => 'Hizmet Dışı', + 'download_reports' => 'Raporları İndir', + 'edited_by' => 'Şu kişi tarafından değiştirildi', + 'edit_action' => 'Düzenle', + 'edit_log' => 'Düzenleme Kayıdı', + 'email' => 'E-posta', + 'error_geocoding' => 'Coğrafi kodlama hatası! HTTP hatası', + 'error_imap' => 'IMAP PHP Kütüphanesi yüklenmemiş', + 'error_msg' => 'Hata', + 'error_post_incident' => 'Olay yayınlanırken bir hata oluştu.', + 'every_six_hours' => 'Her 6 Saatte Bir', + 'every_twelve_hours' => 'Her 12 Saatte Bir', + 'experimental' => 'Deneysel', + 'faqs' => 'SSS', + 'feed' => 'besleme', + 'feedback' => 'Geri Besleme', + 'feeds' => 'besleme', + 'field_default' => 'Varsayılan Değer', + 'field_datatype' => 'Veri Türü', + 'field_datatype_javascript' => 'Javascript', + 'field_height' => 'Yükseklik (Satır)', + 'field_maxlength' => 'En Fazla Karakter Limiti', + 'field_name' => 'Alan İsmi', + 'field_toggle_no' => 'Hayır', + 'file_not_found_upload' => 'Yüklenilen dosya bulunamadı', + 'file_open_error' => 'Dosya okunamadı', + 'form_not_exists' => 'Form Mevcut Değil!', + 'forum' => 'Forum', + 'free_text_field' => 'Yazı Alanı (Serbest Yazı)', + 'date_field' => 'Tarih Alanı', + 'from' => 'Gönderen', + 'from_date' => 'Gönderen', + 'geonames_timeout' => 'Yerisimleri Zamana Aşımı Hatası', + 'get_help' => 'Yardım İste', + 'get_more_themes' => 'Daha fazla tema al', + 'get_more_plugins' => 'Daha fazla plugin al', + 'header_actions' => 'Eylemler', + 'header_add_edit' => 'Ekle/Düzenle', + 'header_email' => 'E-posta', + 'header_manage_users' => 'Kullanıcıları Yönet', + 'header_role' => 'Rol', + 'header_user' => 'Kullanıcı', + 'help' => 'yardım', + 'hourly' => 'Saatlik', + 'incident_feed' => 'Olay beslemesi için', + 'instance' => 'Durum', + 'instances' => 'Durumlar', + 'instance_details' => 'Durum Detayı', + 'invalid_parameter' => 'Yanlış Parametre', + 'ip_address' => 'IP Adresi', + 'is_date' => 'Bu Tarih Alanı mı?', + 'label_email' => 'E-posta Adresi', + 'label_full_name' => 'Tam İsim:', + 'label_password' => 'Parola:', + 'label_role' => 'Ünvan:', + 'label_username' => 'Kullanıcı Adı:', + 'layers' => 'Kademeler', + 'login_role' => 'Yönetici', + 'logout' => 'Çıkış', + 'logs' => 'Kayıtlar', + 'manage' => 'Yönet', + 'manage_roles' => 'Rolleri ve İzinleri Yönet', + 'manage_users' => 'Kullanıcıları Gör', + 'manage_users_edit' => 'Kullanıcı Ekle/Düzenle', + 'marked_as_not_spam' => '"gereksiz değil" olarak işaretle', + 'marked_as_spam' => 'gereksiz olarak işaretle', + 'match_no_documents' => 'hiç bir sonuç bulunamadı', + 'message' => 'İleti', + 'messages' => 'İletiler', + 'messages_laconica' => 'Laconica İletileri', + 'messages_twitter' => 'Twitter İletileri', + 'message_sent' => 'İletiniz gönderildi!', + 'minutes' => 'Dakika', + 'missing_parameter' => 'Eksik Parametre', + 'moderator' => 'Yönetici', + 'modified' => 'değiştirildi', + 'move_down_action' => 'aşağı in', + 'move_up_action' => 'yukarı çık', + 'multiple_hosted_instances' => 'Çoklu Ana Makina Durumları', + 'my_profile' => 'Profilim', + 'my_reports' => 'Raporlarım', + 'new_private' => 'Yeni İleti Oluştur', + 'new_password' => 'Yeni Parola', + 'no' => 'Hayır', + 'notification' => 'Bildiri', + 'not_case_sensitive' => 'Büyük/Küçük harf duyarlı değildir', + 'not_found' => 'Bulunamadı', + 'no_data' => 'Data yok. Gösterilecek sonuç yok.', + 'no_error' => 'Hata Yok', + 'no_result_display_msg' => 'Sonuç bulunamadı!', + 'of' => '.', + 'page' => 'sayfa', + 'pages' => 'sayfalar', + 'page_not_found' => 'Sayfa Bulunamadı', + 'parameters_used' => 'Kullanılan Parametreler', + 'password' => 'Parola', + 'password_reset' => 'Parola Sıfırlama', + 'password_reset_message_line_1' => 'Sayın', + 'password_reset_message_line_2' => 'Şu kullanıcı ismi için parola sıfırlama isteği aldık:', + 'password_reset_message_line_3' => 'Parolanızı değiştirmek için lütfen aşağıdaki adrese tıklayınız (ya da kopyalayıp adres çubuğunuza yapıştırınız).', + 'password_reset_message_line_4' => 'İsteğiniz üzerine parolanız sıfırlandı. Yeni kullanıcı bilgileriniz aşağıdaki gibidir', + 'password_reset_subject' => 'Ushahidi parola sıfırlama', + 'phone' => 'Telefon', + 'please_select' => 'Lütfen Seçin', + 'pm' => 'Ö.S', + 'post_method_not_used' => 'Data postalama yoluyla gönderilmedi', + 'preview' => 'Önizle', + 'private_message' => 'İleti', + 'private_messages' => 'Özel İletiler', + 'private_sent' => 'Özel İleti Gönder', + 'public_listing' => 'Herkese Açık Listeleme', + 'read' => 'oku', + 'relevance' => 'Uygunluk', + 'reporters' => 'Raportörler', + 'reporter_levels' => 'Raportör Derecesi', + 'reports' => 'Raporlar', + 'required' => 'Gerekli', + 'reset' => 'Sıfırla', + 'results' => 'Sonuçlar', + 'save_settings' => 'Ayarları Kaydet', + 'search' => 'Ara', + 'searching_for' => 'arıyor', + 'select_field_type' => '---Alan Türü Seçin---', + 'select_item' => 'Madde seçin', + 'sender' => 'Gönderen', + 'sent_from_website' => 'Bu ileti internet sayfanızdan şu saatte gönderildi', + 'server_time' => 'Sunucu Saati', + 'settings' => 'Ayarlar', + 'showing_page' => 'Sayfa gösteriliyor', + 'showing_results' => 'Sonuçlar gösteriliyor', + 'special_category' => 'Özel Kategori', + 'special_category_explanation' => 'Bu, kullanıcıları bildirdiğiniz raporda gözükmeyecek özel bir kategoridir, "Güvenilen Raportörler" özelliği ile birlikte kullanılır.', + 'statistics' => 'İstatistikler', + 'stats' => 'İstatistikler', + 'stats_collection_error' => 'İstatistik toplaması başarısız oldu! Lütfen daha sonra tekrar deneyin.', + 'stats_collection_error_short' => 'İstatistik toplaması başarısız oldu!', + 'superadmin_role' => 'Süper Admin', + 'task_performed' => 'Gerçekleştirilen Görev', + 'text_field' => 'Yazı Alanı', + 'theme_name' => 'İsim', + 'title' => 'Kullanıcıları Yönet', + 'to' => 'e', + 'total_records' => 'Toplam Kayıtlar', + 'to_date' => 'e', + 'translate_reports' => 'Raporları Başka Bir Dile Çevir', + 'unapproved' => 'onaylanmadış', + 'unknown' => 'Bilinmiyor', + 'unread' => 'Okunmamış', + 'update_link' => 'Sürüm yükseltmek için buraya yıklayın', + 'upgrade_ushahidi' => 'Ushahidi Sürümünü Yükselt', + 'upgrade_ushahidi_status' => 'Ushahidi Durumunu Yükselt', + 'upload_reports' => 'Raporları Yükle', + 'user' => 'Kullanıcı', + 'users' => 'Kullanıcılar', + 'version' => 'Versiyon', + 'version_available' => 'yükseltmek için hazır.', + 'view_private' => 'Özel İletiler', + 'view_site' => 'Siteyi Görüntüle', + 'view_report' => 'Raporu Gör', + 'welcome' => 'Merhaba,', + 'wiki' => 'Viki', + 'xml' => 'XML', + 'yes' => 'Evet', + 'your_search_for' => 'Arama sonucunuz', + 'delete_all_backup' => 'İlerlemeden önce veritabanızı yedeklemeniz önerilir.', + 'delete_all_button' => 'Veritabanından tüm %s rapor(lar)ı silmek istediğimden eminim.', + 'delete_all_confirm' => 'Tüm raporları silmek istediğinize emin misiniz?', + 'user_no_logins' => 'Giriş sayısı', + 'user_last_login' => 'Son giriş', +); diff --git a/application/i18n/tr_TR/ui_main.php b/application/i18n/tr_TR/ui_main.php new file mode 100755 index 0000000000..0315464299 --- /dev/null +++ b/application/i18n/tr_TR/ui_main.php @@ -0,0 +1,625 @@ + 'Hakkında', + 'access' => 'Erişim', + 'access_limits' => 'Erişim Sınırları', + 'account_name' => 'Hesap Adı', + 'actions' => 'Eylemler', + 'action_confirm' => 'Bu eylem geri alınamaz. Devam etmek istediğinizden emin misiniz?', + 'activate' => 'Etkinleştir', + 'active' => 'Etkin', + 'add' => 'Ekle', + 'added_by' => 'Tarafından Eklendi', + 'additional_data' => 'Ek Veri', + 'additional_reports' => 'Ek Raporlar', + 'add_edit' => 'Ekle/Değiştir', + 'add_field' => 'Bir Alan Ekle', + 'add_language' => 'Dil Ekle', + 'add_new' => 'Yeni Ekle', + 'add_new_category' => 'Yeni Kategori Ekle', + 'add_translation' => 'Çeviri Ekle', + 'admin' => 'Yönetici', + 'alerts' => 'Uyarıları Al', + 'alerts_alert_me' => 'Bir rapor dosyalandığında beni uyar:', + 'alerts_btn_send' => 'Uyarımı Kaydet', + 'alerts_email' => 'E-posta adresi:', + 'alerts_enter_email' => 'e-posta adresi girin', + 'alerts_enter_mobile' => 'ülke kodu ile birlikte cep telefonu numaranızı girin', + 'alerts_get' => 'Uyarıları Al', + 'alert_has_been' => 'Uyarı olmuştur', + 'alerts_mobile_phone' => 'Cep telefonu:', + 'alerts_place_spot' => 'Ve ya, alt taraftaki harita üzerinde bir nokta belirleyin, ve bu noktanın 20 kilometre içerisindeki bir yerden rapor yollandığında sizi uyaralım.', + 'alerts_place_spot2' => 'Eğer yerinizi belirleyemiyorsanız lütfen aşağıdaki haritadan belirleyiniz.', + 'alerts_rss' => 'RSS Beslemesi (alt taraftaki url adresini kopyalayın)', + 'alerts_select_city' => 'Şehir seçin', + 'alerts_step1_select_city' => 'Adım 1: Şehir veya yerinizi seçiniz:', + 'alerts_step2_send_alerts' => 'Adım 2: Uyarıları şuraya gönderin:', + 'alerts_step3_select_catgories' => 'Adım 3 (Opsiyonel): Kategorileri Seçin', + 'alert_confirm_previous' => 'Önceki Bir Uyarı İsteğini Onaylayın', + 'alert_saved' => 'Uyarınız kaydedildi!', + 'all' => 'Hepsi', + 'allowed' => 'İzin Verildi', + 'allowed_tags' => 'İzin verilen HTML etiketleri: "% s".', + 'allowed_iframes' => '% S: Iframeler yanlızca izin verilir.', + 'all_categories' => 'Tüm Kategoriler', + 'all_time' => 'Tüm zamanlar', + 'and' => 've', + 'api' => 'API', + 'approve' => 'Onayla', + 'approved' => 'Onaylandı', + 'approved_reports' => 'Onaylanan Raporlar', + 'approve_this_report' => 'Bu Raporu Onayla', + 'approximate' => 'Yaklaşık Bir Tahmin Yap', + 'archive' => 'Arşivle', + 'archived' => 'Arşivlendi', + 'ascending' => 'Yükselen', + 'at' => '(There is no one-to-one translation for this word)', + 'author' => 'Yazar', + 'auto_checkin' => 'Otomatik Kontrol', + 'Auto' => 'Otomatik', + 'avg_reports_per_day' => 'Gün Başına Avg Raporları', + 'awaiting_approval' => 'Onay Bekleniyor', + 'awaiting_verification' => 'Doğrulama Bekleniyor', + 'badge' => 'Rozet', + 'badges' => 'Rozetler', + 'badge_image' => 'Rozet Resmi', + 'badge_image_upload_your_own' => 'Ya da kendi rozet resmini yükleyebilirsin.', + 'badge_pack' => 'Rozet Paketi', + 'badge_select' => 'Bir Rozet seç', + 'blog' => 'Ağ Güncesi', + 'browse_profiles' => 'Profillere Gözat', + 'cancel' => 'İptal Et', + 'categories' => 'Kategoriler', + 'category' => 'Kategori', + 'category_filter' => 'Kategori Filtresi', + 'category_has_been' => 'Kategori', + 'category_name' => 'Kategori İsmi', + 'change_date_range' => 'Tarih Aralığı Değiştir', + 'change_password' => 'Parola Değiştir', + 'change_picture' => 'Fotoğrafını Değiştir', + 'choose' => 'Bir adet', + 'choose_data_points' => 'Karşıdan yüklemek için veri noktaları seçin', + 'choose_date_range' => 'Ya da kendi tarih aralığınızı seçin', + 'choose_field_type' => 'Alan türü seçin', + 'cleanurl' => 'URL\'leri temizle', + 'clear' => 'Temizle', + 'clear_map' => 'Haritayı temizle', + 'close' => 'Kapat', + 'clusters' => 'kümeler', + 'color' => 'Renk', + 'comment' => 'Yorum', + 'comments' => 'Yorumlar', + 'comment_details' => 'Yorum Detayları', + 'configuration_saved' => 'Ayarlarınız Kaydedildi!', + 'configure' => 'Yapılandır', + 'confirm_email_successful' => 'E-posta adresiniz doğrulandı! Lütfen giriş yapın.', + 'confirm_email_successful_and_approval' => 'Başarıyla e-posta adresinizi doğruladı! Girişten önce bir yöneticinin hesabınızı onaylaması gerekecek.', + 'confirm_email_failed' => 'E-posta onayı başarısız! Aşağıda yeni bir e-posta onayı talep edebilirsiniz.', + 'contact' => 'Bizimle İletişime Geçin', + 'contact_code' => 'Güvenlik Kodu', + 'contact_email' => 'E-posta Adresiniz', + 'contact_message' => 'İleti', + 'contact_message_has_send' => 'İletiniz gönderildi!', + 'contact_name' => 'İsminiz', + 'contact_phone' => 'Telefon Numaranız', + 'contact_send' => 'İleti Gönder', + 'contact_subject' => 'İleti Konusu', + 'copyright' => 'Telif Hakkı ©', + 'create' => 'Oluştur', + 'create_edit' => 'Oluştur/Düzenle', + 'create_new' => 'Yeni Oluştur', + 'create_new_password' => 'Yeni Parola Oluştur', + 'create_report' => 'Rapor Oluştur', + 'credibility' => 'Güvenilirlik', + 'current_password' => 'Geçerli Parola', + 'custom_fields' => 'Özel Alanlar', + 'data' => 'Bilgi', + 'date' => 'Tarih', + 'date_format' => '(aa/gg/yyyy)', + 'date_time' => 'Tarih & Saat', + 'day' => 'gün', + 'Daily' => 'günlük', + 'deactivate' => 'Devre dışı bırak', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Sil', + 'deleted' => 'Silindi', + 'deletes' => 'Silinenler', + 'delete_disabled' => 'Silme Devre Dışı', + 'delete_last' => 'Son Silinen', + 'delete_report' => 'Bu Raporu Sil', + 'delete_selected' => 'Seçileni Sil', + 'delete_spam' => 'İstenmeyenleri Sil', + 'demo' => 'Deneme sürümü', + 'description' => 'Tanım', + 'descending' => 'Inme', + 'detailed_location_example' => 'Örnek: Eğitim Mah. Ömerbey Çıkmaz Sokak. No:19-B Kadıköy / İSTANBUL', + 'details' => 'Ayrıntılar', + 'direct_report' => 'Doğrudan bildir', + 'disabled' => 'Devre dışı', + 'disapprove' => 'Onaylama', + 'download_reports' => 'Raporları İndir', + 'download' => 'Download', + 'edit' => 'Düzenle', + 'edit_form_fields' => 'Form alanlarını düzenle', + 'edit_report' => 'Raporları düzenle', + 'email' => 'E-posta', + 'email_address' => 'E-posta Adresi', + 'email_configuration' => 'Posta Sunucusu Ayarları', + 'email_server_host' => 'Posta Sunucu Sağlayıcısı', + 'email_server_password' => 'Posta Sunucu Parolası', + 'email_server_port' => 'Posta Sunucu Girişi', + 'email_server_ssl_support' => 'Posta sunucusu SSL desteği', + 'email_server_type' => 'Posta Sunucu Tipi', + 'email_server_username' => 'Posta Sunucusu Kullanıcı Adı', + 'email_settings_comment_0' => 'bu nedenle ayarlarınız eposta adresinizle ilişkili olmak zorunda', + 'email_settings_comment_00' => 'Raporları e-posta olarak alabilmek için lütfen email adresini aşağıdaki hesap ayarlarına yaz. E-postaların şuraya geleceğini unutma', + 'email_settings_comment_1' => 'Bazı sunucular tam e-posta adresi gerektirir', + 'email_settings_comment_2' => 'E-posta hesabı parolası', + 'email_settings_comment_3' => 'Sık Kullanılan Portlar: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Örnek: posta.sizinsiteniz.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Örnek: pop3, imap', + 'email_settings_comment_6' => 'SSL bağlantılarını etkinleştir veya devre dışı bırak', + 'empty' => '---BOŞ---', + 'end_point' => 'e', + 'error' => 'Hata!', + 'example' => 'Örnek', + 'example_country' => 'Kenya', + 'external_apps' => 'Dış uygulamalar', + 'external_video_link' => 'Harici Video Link', + 'facebook' => 'Facebook', + 'feed' => 'Bildirim', + 'feedback' => 'Geri bildirim sağlayın', + 'feedback_reports' => 'Bize deneyim hakkında aşağıda belirtilen e-posta adresine geribildirim verin', + 'feeds' => 'Bildirimler', + 'feed_has_been' => 'Bildirim alanı ', + 'feed_items' => 'Bildirim öğeleri', + 'feed_name' => 'Bildirim ismi', + 'feed_url' => 'Bildirim url adresi ', + 'field_unused' => 'Kullanılmayan alan', + 'file' => 'Dosya', + 'file_over_max_allowed' => 'Dosyanız maximun izin dosya boyutu üzerinde', + 'filters' => 'Filtreler', + 'filter_reports' => 'Filtre raporlar', + 'filter_reports_by' => 'Filtre Raporları', + 'filter_reports_contain' => 'Ihtiva filtre raporlari', + 'find' => 'Bul', + 'find_location' => 'Yeri Bulun ', + 'first_name' => 'Isim ', + 'force_run_scheduler' => 'Kuvvet çalışma zamanlayıcı', + 'forgot_password' => 'Parolanızı mı unuttunuz?', + 'form' => 'Form', + 'forms' => 'Formlar', + 'form_description' => 'Form Açıklaması', + 'form_edit' => 'Bu formu düzenle', + 'form_has_been' => 'Form olmuştur', + 'form_title' => 'Form başlığı', + 'from' => ' ´den', + 'full_name' => 'Ad Soyad', + 'geolocation_available' => 'GeoKonumu mevcut', + 'geometry_color' => 'Renk', + 'geometry_comments' => 'Yorumlar', + 'geometry_label' => 'Etiket', + 'geometry_strokewidth' => 'Inme genişliği', + 'go' => 'Git', + 'hashtag' => 'Hashtag', + 'has_been' => 'olmuş', + 'help' => 'Nasıl yardımcı olabilirsin', + 'hidden' => 'Gizli ', + 'hide' => 'Gizle', + 'hide_this_message' => 'bu iletiyi gizle', + 'home' => 'Anasayfa', + 'Hourly' => 'saatlik ', + 'how_to_report' => 'Nasil rapor verilebilir', + 'https' => 'HTTPS', + 'id' => 'Kimlik ', + 'identify_you' => 'Diğer kullanıcılara sitede sizi tanımlamak için kullanılır', + 'image' => 'Görüntü', + 'images' => 'Görüntüler', + 'image_icon' => 'Görüntü/Ikon', + 'inactive' => 'Pasif', + 'inbox' => 'Gelen kutusu', + 'incident' => 'Olay', + 'incidents_nearby' => 'Yakın olaylar', + 'incident_location' => 'Olay yeri', + 'include' => 'Dahil et ', + 'include_categories' => 'Kategorileri dahil et ', + 'include_custom_fields' => 'Özel alanlar dahil et ', + 'include_description' => 'Tanımlama dahil et ', + 'include_detail' => 'Mümkün olduğunca çok ayrıntı dahil et ', + 'include_latitude' => 'Enlem dahil et ', + 'include_location_information' => 'Konum bilgilerini dahil et ', + 'include_longitude' => 'Boylami dahil et ', + 'include_personal_info' => 'Kişisel bilgileri dahil et', + 'incoming_media' => 'Gelen medya', + 'information_evaluation' => 'Bilgi değerlendirme', + 'input_location' => 'Tam konumunu gir', + 'insufficient_role' => 'Hesabınızın tam olarak oturumunuzu açmak için izin vermiyor. Sayfa yöneticisine başvurun.', + 'interval' => 'Aralık', + 'in_response_to' => 'cevaben', + 'ip_address' => 'IP Adresi', + 'is_this_your_profile' => 'Bu sizin profil mi?', + 'item' => 'Kalem', + 'items' => 'maddeler', + 'item_details' => 'Kalem detayları', + 'item_title' => 'Kalem Ismi ', + 'key' => 'Anahtar', + 'keywords' => 'Anahtar kelimeler', + 'kml_kmz_file' => 'KMZ/KML dosyası', + 'kml_kmz_upload' => 'KMZ/KML dosyası yükle', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Dil ', + 'last' => 'Son', + 'last_month' => 'Son bir ay', + 'last_name' => 'Soyisim', + 'last_year' => 'Son bir sene', + 'latitude' => 'Elem', + 'layers' => 'Tabakalar', + 'layers_filter' => 'Diğer tabakalar', + 'layer_has_been' => 'tabaka olmuştur', + 'layer_name' => 'Tabaka ismi', + 'layer_url' => 'Tabaka url ', + 'leave_a_comment' => 'Bir yorum gir', + 'less_information' => 'Daha az bilgi', + 'level' => 'Seviye', + 'level_has_been' => 'Bu seviye olmuştur', + 'level_name' => 'Seviye ismi', + 'limited' => 'Sınırlı', + 'link' => 'Link', + 'list' => 'Liste', + 'loading_reports' => 'Raporlar Yükleniyor', + 'location' => 'Konum', + 'locations' => 'Konumlar', + 'location_example' => 'Sehir, eyalet ve/veya Ülke', + 'login' => 'Login', + 'login_account_creation_successful' => 'Hesap başarıyla oluşturuldu. Şimdi giriş yapabilirsiniz.', + 'login_confirmation_sent' => 'Bir onay e-posta adresinize gönderildi.', + 'login_approval_required' => 'Hesabın oluşturuldu. Giriş öncesi hesabın bir yönetici tarafından onaylanmalıdır.', + 'login_email_doesnt_exist' => 'E-posta adresi bulunmadı. Farklı bir adres dene veya bir hesap oluştur.', + 'login_select_openid' => 'Hesap sağlayıcıyı tıkla.', + 'login_with' => 'Giriş', + 'login_userpass' => 'E-posta ve parola ile giriş', + 'login_openid' => 'Açık Kimlik ', + 'login_signup' => 'Kayıt ol ', + 'login_signup_click' => 'Bir hesap oluştur', + 'login_signup_confirmation_message' => '% 1 $´a kadar kayıdın için teşekkür ederiz. E-posta adresini onaylamak için, aşağıdaki URL\'ye git lütfen: % 2$s', + 'login_signup_confirmation_subject' => 'Kayıt onayı', + 'login_signup_admin_approval_message' => 'Bir yeni kullanıcı% 1 $ s kadar imzaladı. Aşağıdaki URL\'ye gidin lütfen kayıtlarını onaylamak için:% 2 $ s', + 'login_signup_admin_approval_subject' => 'Yeni kullanıcı onayı', + 'login_signup_approval_message' => 'Kullanıcı hesabın %1$ için onaylanmıştır. Aşağıdaki URL\'ye gidin giriş için:%2$s', + 'login_signup_approval_subject' => 'Kullanıcı hesabı onaylandı.', + 'login_signup_text' => 'Sitenin daha fazla özelliklerinden yararlanmak için şimdi bir hesap oluştur.', + 'longitude' => 'Boylam', + 'map' => 'Harita', + 'mark_read' => 'Okundu olarak işaretle.', + 'mark_unread' => 'Okunmadı olarak işaretle', + 'maximum_filesize' => 'Maksimum dosya boyutu', + 'media' => 'Medya', + 'media_filter' => 'Medya filtresi', + 'members' => 'Üyeler', + 'manage_your_account' => 'Hesabını yönet', + 'message' => 'İleti', + 'messages' => 'İletiler', + 'message_details' => 'İleti Detayları', + 'message_non_numeric_source' => 'Bir sayısal olmayan bir kaynaktan gelen ileti:', + 'mobile' => 'Mobil', + 'modify' => 'Değiştir', + 'modify_date' => 'Tarihi değiştir', + 'month' => 'ay', + 'Monthly' => 'Aylık', + 'more' => 'Daha fazla', + 'more_information' => 'Daha fazla bilgi ', + 'multi_country_instance' => 'Bu Ushahidi uygulaması birçok ülke dahil ediyor mu', + 'must_confirm_email_address' => 'Bu uygulamayı kullanmak için e-posta adresinizi onaylamanız gerekir. Eğer onay e-posta kaybettiysen, aşağıda yenisini talep et.', + 'name' => 'Isim ', + 'nearby_report' => 'Yakın olayların raporu', + 'new' => 'Yeni', + 'news' => 'Haberler', + 'news_feeds' => 'Haber Bildirimleri', + 'news_source' => 'Haber Kaynağı', + 'new_category' => 'Yeni Kategori', + 'new_password' => 'Yeni parola', + 'new_report' => 'Yeni Rapor', + 'next' => 'Sonraki ', + 'no' => 'Hayir', + 'no_checkins' => 'Görüntülecek Checkin yok.', + 'no_data' => 'Veri yok ', + 'none' => 'Hiçbiri', + 'notices' => 'Bildiriler', + 'not_approved' => 'Onaylanmamış', + 'not_approved_singular' => 'Onaylanmamış', + 'not_selected' => 'Seçilmemiş', + 'not_spam' => 'spam değil', + 'not_specified' => 'Belirtilmemiş', + 'no_reports' => 'Hiçbir raporlar yoktur.', + 'no_results' => 'Hiçbir sonuç yoktur.', + 'off' => 'Kapalı', + 'official_news' => 'Resmi ve amp; ana haber', + 'on' => 'Açık', + 'option' => 'Seçenek', + 'optional' => 'Seçenekli', + 'options' => 'Seçenekler', + 'organization' => 'Kurum', + 'organizations' => 'Kurumlar', + 'organization_description' => 'Kurumun tanımı', + 'organization_email' => 'Kurumun e posta adresi', + 'organization_has_been' => 'Kurum olmuştur', + 'organization_name' => 'Kurum ismi ', + 'organization_phone_1' => 'Kurum Telefonu 1 ', + 'organization_phone_2' => 'Kurum Telefonu 2 ', + 'organization_website' => 'Kurumun websayfası', + 'original' => 'Orjinal', + 'original_description' => 'Orjinal tanımlaması', + 'original_title' => 'Orijinal başlık', + 'other_ushahidi_instances' => 'Başka uygulamalar', + 'outbox' => 'Giden kutusu', + 'outgoing' => 'Giden', + 'page' => 'Sayfa', + 'pages' => 'Sayfalar', + 'page_description' => 'Sayfa tanımlaması', + 'page_has_been' => 'Sayfa yapıldı', + 'page_tab_name' => 'Sayfa sekmesi adı', + 'page_title' => 'Sayfa başlığı', + 'parent_category' => 'Ana kategori', + 'password' => 'Parola', + 'password_again' => 'Parolayı Doğrula', + 'password_changed_successfully' => 'Parola başarıyla değiştirildi! Aşağıda giriş yapabilirsin.', + 'password_forgot' => 'Parolanızı unuttunuz mu?', + 'password_reset_confirm' => 'Yeni parola için e-postanı kontrol et.', + 'password_save' => 'Bu bilgisayarda oturum açık kalsın', + 'past_month' => 'Gecen ay', + 'past_year' => 'Gecen sene', + 'pending' => 'Beklemede', + 'per' => 'başına', + 'personal_information' => 'Kişisel Bilgiler İsteğe bağlı. ', + 'phone' => 'Telefon', + 'photos' => 'Fotoğraflar', + 'pictures' => 'Görüntüler', + 'pictures_and_videos' => 'Resim ve Videolar ', + 'pinpoint_location' => '* Konumunu, ya konum adıyla ya da enlemve boylam koordinatlarını kullanarak seç (biçim: 38.19, 85,61), ya da doğru konumunu işaretlemek için harita üzerine tıkla.', + 'play' => 'Oynat', + 'please_note' => 'Lütfen unutma ', + 'plugins' => 'Plugins', + 'plugin_url' => 'Websayfa Plugin ', + 'public_profile' => 'Açık profil', + 'public_profile_url' => 'Açık Profil URL', + 'preview' => 'Önizleme', + 'preview_item' => 'Maddeyi Önizle', + 'preview_message' => 'İletiyi Önizle', + 'previous' => 'Önceki', + 'private' => 'Özel', + 'profile_color' => 'Profil Rengi', + 'profile_saved' => 'Profilin kayıt edildi', + 'quick_stats' => 'Hızlı istatistikler', + 'rating' => 'Değerlendirme', + 'read' => 'Oku', + 'receive' => 'al ', + 'receive_from' => '´den al ', + 'receive_notifications' => 'Bildirimleri al', + 'recent_reports' => 'Son raporlar', + 'refresh_news_feeds' => 'Haber Bildirimini Güncelle', + 'registered_email' => 'Kayıtlı e-posta', + 'remove' => 'Kaldır', + 'reply' => 'Cevap yaz ', + 'report' => 'Rapor yaz ', + 'reports_listed' => 'Raporlar (haritadan kronolojik sırayla listelendi) ', + 'reporter' => 'Muhabir', + 'reporters' => 'Muhabirler', + 'reporter_date' => 'Murhabirin Tarihi', + 'reporter_email' => 'Muhabir E-postası', + 'reporter_first_name' => 'Muhabir Isim ', + 'reporter_has_been' => 'Muhabir oldu', + 'reporter_ip' => 'Muhabirin IP adresi', + 'reporter_last_name' => 'Muhabirin Soyismi', + 'reporter_level' => 'Muhabirin Seviyesi', + 'reporter_levels' => 'Muhabirlerin seviyeleri', + 'reporter_phone' => 'Muhabirin Telefonu', + 'reports' => 'Raporlar', + 'reports_btn_browse' => 'Gözat', + 'reports_btn_submit' => 'Gönder', + 'reports_by_this_user' => 'Bu kullanıcının raporları', + 'reports_categories' => 'Kategoriler', + 'reports_count' => '%d Raporlar', + 'reports_date' => 'Tarih', + 'reports_description' => 'Tanımlama', + 'reports_download_csv' => 'Raporlar csv formatında indirilebilir olacak', + 'reports_email' => 'E-posta', + 'reports_features' => 'Özellikler', + 'reports_find_location' => 'Sana yakın bir yer bul', + 'reports_first' => 'Isim', + 'reports_last' => 'Soyisim', + 'reports_location_name' => 'Konumun adı', + 'reports_news' => 'Haber kaynağın bağlantısı', + 'reports_optional' => 'Isteğe bağlı bilgi', + 'reports_photos' => 'Fotoğraf yükle', + 'reports_return' => 'Raporlar sayfasına geri dön', + 'reports_select_city' => 'Bir şehir seç', + 'reports_submitted' => 'Raporunuz başarıyla ekibimize ulaştırılmıştır. Gerekirse size en kısa zamanda geri dönüş yaparız. ', + 'reports_submit_new' => 'Yeni rapor gönder ', + 'reports_time' => 'Zaman', + 'reports_timeline' => 'Raporların zaman cizelgesi', + 'reports_title' => 'Raporun ismi', + 'reports_video' => 'Video Link ', + 'report_an_incident' => 'Bir olay raporla', + 'report_details' => 'Rapor detaylari', + 'report_option_1' => 'Bir ileti sonraki adrese yazarak', + 'report_option_2' => 'E-posta yazarak', + 'report_option_3' => 'Aşağıdaki haşhtaglerle bir tweet göndererek', + 'report_option_4' => 'Web sitemizde bu formu doldurarak', + 'report_option_external_apps' => 'Bir app´i kullanarak', + 'report_saved' => 'Raporun kayıt edildi', + 'report_title' => 'Rapor başlığı', + 'request_information' => 'Daha fazla bilgi talep et', + 'request_location' => 'Konumu sorgula', + 'required' => 'Zorunlu', + 'requirements' => 'Gereksinimler', + 'resend_confirm_email' => 'Onay e-postası', + 'reset' => 'Yeniden ayarla', + 'reset_all_filters' => 'Bütün filtreleri sıfırla', + 'reset_password' => 'Parolayı Sıfırla', + 'retrieve_city_names' => 'Seçilen ülke için şehir adlarını almak', + 'riverid_information' => 'Hesaplar %s servisi tarafından yönetilmektedir.', + 'riverid_exists_login' => 'Zaten CrowdmapID tarafından yönetilen bir hesabın var! CrowdmapID e-postası ve parolanı kullanarak yeniden giriş yapmayı dene.', + 'role' => 'Rol', + 'rss' => 'RSS', + 'save' => 'Kaydet', + 'saved' => 'Kaydedildi', + 'save_add_new' => 'Kaydet ve yeni ekle', + 'save_close' => 'Kaydet ve Kapat', + 'save_report' => 'Raporu kaydet', + 'schedule' => 'Zamanlama', + 'scheduler' => 'Takvim', + 'scheduler_day' => 'Gün', + 'scheduler_hour' => 'Saat', + 'scheduler_log' => 'Zamanlayıcı günlüğü', + 'scheduler_minute' => 'Dakka', + 'scheduler_weekday' => 'Haftanin Günü', + 'search' => 'Arama', + 'search_results' => 'Arama sonuçları', + 'security_code' => 'Güvenlik Kodu', + 'select_all' => 'Hepsini Seç', + 'select_field_type' => 'Bir alan türü seçin', + 'select_form_type' => 'Bir tip seç', + 'select_in_map' => 'Haritada seç', + 'select_multiple' => 'Gerektiği kadar seçenek seçebilirsin', + 'select_one' => 'Bir maddeyi işaretlediğinizinden emin ol', + 'select_theme' => 'Tema Seç', + 'send' => 'Gönder', + 'send_confirmation' => 'Gönderilme Onayı', + 'sending_to' => 'Su kişiye gönderiliyor', + 'sent' => 'Gönderildi', + 'sent_by' => 'Şu kişi tarafından gönderildi', + 'server_address' => 'Sunucu Adı', + 'server_type' => 'Sunucu Tipi', + 'service' => 'Servis', + 'service_username' => 'Servis Kullanıcı Adı', + 'service_user_id' => 'Servis Kullanıcı ID\'si', + 'share' => 'Paylaş', + 'shared_data' => 'Paylaşılan Bilgi', + 'share_has_been' => 'Paylaşım şöyle oldu', + 'sharing' => 'Paylaşılan', + 'shorter_map' => 'Daha kısa Harita', + 'show' => 'Göster', + 'show_all' => 'Hepsini göster', + 'show_messages' => 'İletileri göster', + 'showing_reports_from' => 'Şuradan başlayarak raporları görüntüle %1$s şuraya kadar %2$s', + 'site' => 'Wb sayfası', + 'site_email_address' => 'sayfa e-posta adresi', + 'site_url' => 'Sayfa URL\'si', + 'smaller_map' => 'Daha küçük Harita', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Üzgünüz, kimlik kartınız (badge) yok.', + 'source' => 'Kaynak', + 'source_name' => 'Kaynak ismi', + 'sort' => 'Sırala', + 'sort_by' => 'Şunlara göre sırala', + 'source_url' => 'Kaynak URL\'si', + 'spam' => 'Spam', + 'ssl_support' => 'SSL Desteği?', + 'start_point' => 'Buradan', + 'step' => 'Adım', + 'submit' => 'Rapor gönder', + 'submitted_by' => '%1$s, %2$s üzerinden gönderildi. ', + 'submit_sms' => 'SMS ile gönder', + 'submit_sms1' => 'Şuraya SMS gönder', + 'submit_sms2' => 'telefonunda', + 'success' => 'Başarılı!', + 'successfuly_imported' => 'Başarıyla import edildi', + 'surname' => 'Soyad', + 'survey' => 'Araştırma', + 'system' => 'Sistem', + 'taller_map' => 'Daha uzun Harita', + 'tcp_port' => 'TCP Portu', + 'themes' => 'Temalar', + 'theme_default' => 'Varsayılan Ushahidi Teması', + 'theme_settings' => 'Tema Ayarları', + 'this' => 'Bu', + 'this_day' => 'Bugün', + 'this_month' => 'Bu Ay', + 'this_week' => 'Bu Hafta', + 'this_year' => 'Bu Yıl', + 'this_is_your_profile' => 'Bu senin profilin.', + 'time' => 'Zaman', + 'title' => 'Başlık', + 'today' => 'Bugün', + 'today_at' => 'Bugün şurada', + 'token' => 'Simge', + 'total_reports' => 'Toplam Raporlar', + 'translated' => 'Çevrilmiş', + 'translated_description' => 'Çevrilmiş Açıklama', + 'translated_title' => 'Çevrilmiş Başlık', + 'translate_to' => 'Şu dile çevir', + 'translation' => 'Çeviri', + 'translation_saved' => 'Çeviri kaydedildi', + 'trusted' => 'Güvenilir', + 'type' => 'Yaz', + 'twitter' => 'Twitter', + 'unable_send_email' => 'E-posta gönderimi başarısız.', + 'uncategorized_reports' => 'Kategorilendirilmemiş Raporlar', + 'unread' => 'okunmamış', + 'unverified' => 'Doğrulanmamış', + 'update_feeds' => 'Bildirimleri Güncelle', + 'upload' => 'Yükle', + 'upload_guide' => 'Rapor yükleme rehberimizi gözden geçir:-', + 'upload_docs_1' => 'XML Yükleme rehberi', + 'upload_docs_2' => 'CSV Yükleme rehberi', + 'upload_file' => 'Yüklenecek Dosya', + 'upload_reports' => 'Raporlar Yükle', + 'upload_reports_custom_forms' => 'Özelleştirilmiş alan sütunlarına kendi form_id leri eklenmelidir. Örneğin standard formdaki Test özelleştirilmişs alanının id numarası 1 ise Test-1 eklenmelidir. Özelleştirilmiş form import ederlen buna dikkat edilmelidir. ', + 'upload_reports_detail_1' => 'Aşağıdaki formu kullanarak Ushahidi motoruna olay kayıtları yükleyebilirsiniz.', + 'upload_reports_detail_2' => 'Raporlar CSV ya da XML formatında yüklenmelidirler.', + 'upload_reports_detail_3' => 'Eğer olay ID\'si (kayıt numarası) veri bankasında mevcutsa, CSV/XML dosyasındaki kayıt dikkate alınmayacaktır.', + 'upload_reports_detail_4' => 'En azından Olay Başlığı ve Olay Tarihi mevcut olmalı.', + 'upload_reports_detail_4b' => 'Eğer enlem ve boylam bilgileri mevcut değilse, konum Google Geocoder üzerinden belirlenecektir.', + 'upload_reports_detail_4c' => 'Eğer kişisel bilgiler ya/ya da özelleştirilmiş form alanları gibi fazladan bilgiler girilecekse', + 'upload_reports_detail_4d' => 'Kişisel bilgi alanlarından (isim, soyisim ve e-posta) en azından bir tanesi girilmiş OLMALIDIR. Boş raporlar kayda geçirilmez.', + 'upload_reports_detail_4e' => 'Açılan listeye, radio düğmelerine ve onay kutusuna girilecek olan alanlar özelleştirilmiş alandaki seçeneklerle örtüşmelidir.', + 'upload_reports_detail_4f' => 'Onay kutusu seçenekleri virgüllerle ayrılır. Örneğin eğer seçenekler meyvalardan oluşuyorsa elma,mango,üzüm şeklinde yazılırlar.', + 'upload_reports_detail_4g' => 'Tarih alanı değerleri şu formattadır: ay/gün/yıl örneğin 3 Ekim 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'CSV Raporu Örneği', + 'upload_reports_detail_7' => '"2", "Talan", "2009-03-18 10:10:00", "Akra", NO, YES, "5,55" "isyanlar, ÖLÜMLER, MÜLKİYET KAYIP", "her yerde oluyor Yağma", "-,2166667 "', + 'upload_successful' => 'Yükleme başarılı', + 'upload_video' => 'Video Yükle', + 'url' => 'URL/İnternet Linki', + 'user' => 'Kullanıcı', + 'username' => 'Kullanıcı Adı', + 'ushahidi_admin' => 'Ushahidi Admini', + 'verification' => 'Doğrulama', + 'verified' => 'Doğrulanmış', + 'verified_reports' => 'Doğrulanmış Raporlar', + 'verify' => 'Doğrula', + 'verify_this_report' => 'Bu Raporu Doğrula', + 'version' => 'Versiyon', + 'via' => 'aracılığı ile', + 'video' => 'Video', + 'view' => 'Görünüm', + 'views' => 'Görünümler', + 'view_all' => 'Hepsini Gör', + 'view_all_feeds' => 'Bütün Alanları Gör', + 'view_all_reports' => 'Bütün Raporları Gör', + 'view_items' => 'Öğeleri Gör', + 'view_more' => 'Daha Fazlasını Gör', + 'view_public_profile' => 'Genel Profili Gör', + 'view_report' => 'Raporu Gör', + 'view_reports' => 'Raporları Gör', + 'view_video' => 'Videoyu İzle', + 'visible' => 'Görünür', + 'waiting_approval' => 'Onay Bekleniyor', + 'waiting_verification' => 'Doğrulama Bekleniyor', + 'wider_map' => 'Daha Geniş Harita', + 'web_form' => 'Web Formu', + 'web' => 'Web', + 'weight' => 'Ağırlık/Genişlik', + 'Weekly' => 'Haftalık', + 'yes' => 'Evet', + 'yesterday' => 'Dün', + 'your_dashboard' => 'Kontrol Paneli', + 'your_file' => 'Dosyaların', + 'zoom_in' => 'Küçült', + 'zoom_out' => 'Büyüt', +); diff --git a/application/i18n/tr_TR/upgrade.php b/application/i18n/tr_TR/upgrade.php new file mode 100755 index 0000000000..9c28ab615e --- /dev/null +++ b/application/i18n/tr_TR/upgrade.php @@ -0,0 +1,55 @@ + array( + 'between' => 'Geçersiz girdi verisi. Hayır için 0, Evet için 1 olabilir.', + ) , + 'upgrade_automatic' => 'Otomatik Yükseltme', + 'upgrade_available' => 'Mevcut Güncellemeler', + 'upgrade_continue_btn_text' => 'Devam Et', + 'upgrade_db_btn_text' => 'Yükselt', + 'upgrade_db_text_1' => 'Böylelikle, veritabanınızı mevcut sürümden yükselteceğim', + 'upgrade_db_text_2' => 'en yeni veritabanı sürümüne', + 'upgrade_db_text_3' => '"Yükselt" butonuna tıkla ve ben büyüyü gerçekleştirirken sadece arkana yaslan.', + 'upgrade_db_text_4' => 'Ek olarak, eğer veritabanınızın bir yedeğini almamı istiyorsanız, yapmanız gereken sadece aşağıdaki kutucuğu işaretlemek, bunu sizin için zahmetsizce yapacağım.', + 'upgrade_db_text_5' => 'Yükseltmeden önce veritabanının yedeği alınsın mı? (Şiddetle tavsiye edilir)', + 'upgrade_db_title' => 'Ushahidi veritabanı yükseltmesi', + 'upgrade_db_info' => 'Ushahidi yükseltildi! Devam etmeden önce, veritabanınızı en yeni versiyonuna yükseltmeniz gerekmekte (%s).', + 'upgrade_db_up_to_date' => 'Veritabanınızın sürümü şuan güncel.', + 'upgrade_failed' => 'Yükseltme işlemi bir yerde başarısız oldu', + 'upgrade_manual' => 'El ile Yükseltme', + 'upgrade_status' => 'Ushahidi yükseltme durumu', + 'upgrade_text_1' => 'Aşağıdaki açıklamalar Ushahidi yayınınızı nasıl el ile yükseltebileceğinizi detaylı bir şekilde açıklıyor', + 'upgrade_text_2' => '
İndir
', + 'upgrade_text_3' => '
- En güncel Ushahidi sürümünü karşıdan indir', + 'upgrade_text_4' => ' Step 4: Gerekli tabloları yükseltmek için "Devam et" butonuna tıklayın.', + 'upgrade_text_5' => 'Adım 4: Gerekli tabloları yükseltmek için "Devam Et" tuşuna basınız.', + 'upgrade_text_6' => 'Otomatik yükseltme için aşağıdaki butona basınız.', + 'upgrading' => 'Yükseltiliyor', + 'upgrade_ftp_password' => 'FTP Parolanız:', + 'upgrade_ftp_username' => 'FTP Kullanıcı Adı:', + 'upgrade_status_info' => 'En son sürüm Ushahidi kullanmaktasınız.', + 'upgrade_status_info_2' => 'Yükseltmeniz gerekmiyor.', + 'upgrade_db_version' => 'Veritabanı sürümü: %d', + 'upgrade_warning_software_version' => 'Dikkat: version.php ile veritabanındaki yazılım sürümü uyuşmamakta.', + 'upgrade_warning_db_version' => 'Dikkat: version.php ve veritabanında ki veritabanı sürümü uyuşmamakta.', + 'upgrade_database' => 'Veritabanı:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'BETA!', + 'download' => 'Ushahidi\'nin son sürümü indiriliyor...', + 'log_file' => 'Kayıt Dosyası', + 'successfully_downloaded' => 'İndirme başarılı. Açılıyor...', + 'failed_downloading' => 'İndirme başarısız.', + 'failed_unpacking' => 'Açma işlemi başarısız.', + 'successfully_copied' => 'Kopyalama başarılı! Veritabanı güncelleniyor...', + 'failed_copying' => 'Dosya kopyalama başarısız.', + 'backup_success' => 'Veritabanı yedekleme ve yükseltme işlemi başarılı.', + 'backup_failed' => 'Veritabanı yedekleme işlemi başarısız.', + 'dbupgrade_success' => 'Veritabanı yükseltme işlemi başarılı.', + 'deleting_files' => 'İndirilen dosyalar siliniyor...', + 'upgrade_success' => 'YÜKSELTME BAŞARILI. Kayıt dosyası\'nı göster.', +); diff --git a/application/i18n/uk/alerts.php b/application/i18n/uk/alerts.php new file mode 100644 index 0000000000..6513152999 --- /dev/null +++ b/application/i18n/uk/alerts.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Вашу Email адресу введено не правильно. Будь ласка, перевірте та введіть адресу правильно.', + 'email_check' => 'Цей Email вже зареєстрований для цієї зони, введіть інший Email', + 'length' => 'Довжина Вашої Email адреси не може бути менше 4 символів і не може перевищувати 64 символи.', + 'required' => 'Потрібно ввести Email адресу (або зніміть прапорець).', + ) , + 'alert_country' => array( + 'single_country' => 'Це розгортання охоплює лише одну країну. Будь ласка, переконайтеся, що розташування знаходиться в країні %s.', + ) , + 'alert_lat' => array( + 'between' => 'Ви не правильно вибрали місцерозміщення на карті.', + 'required' => 'Ви не правильно вибрали місцерозміщення на карті.', + ) , + 'alert_lon' => array( + 'between' => 'Ви не правильно вибрали місцерозміщення на карті.', + 'required' => 'Ви не правильно вибрали місцерозміщення на карті.', + ) , + 'alert_mobile' => array( + 'length' => 'Поле номеру мобільного телефона містить неправильну кількість цифр.', + 'mobile_check' => 'Цей номер вже зареєстрований для цієї зони, введіть інший номер', + 'numeric' => 'Номер телефону введений не правильно. Введіть тільки цифри з кодом країни.', + 'one_required' => 'Ви повинні ввести або телефонний номер або адресу електронної пошти.', + 'required' => 'Потрібно ввести номер телефону, або зніміть прапорець.', + ) , + 'alert_radius' => array( + 'in_array' => 'Ви не встановили дійсний радіус на карті.', + 'required' => 'Ви не встановили радіус на карті.', + ) , + 'alert_recipient' => array( + 'required' => 'Ви не задали одержувача тривоги.', + ) , + 'alerts_subscribed' => 'Ви маєте підписку на тривогу з наступних категорій', + 'code_already_verified' => 'Цей код вже використаний!', + 'code_not_found' => 'Цей код підтвердження не було знайдено! Будь ласка, підтвердіть, що Ви маєте правильний URL.', + 'code_verified' => 'Ваш код підтверджений правильно. Тепер ви будете отримувати оповіщення про події.', + 'confirm_request' => 'Для того щоб підтвердити заявку на отримання оповіщення, перейдіть:', + 'create_more_alerts' => 'Поверніться на сторінку Сповіщень для створення нових.', + 'email_alert_request_created' => 'Ви включили систему сповіщення по електронній пошті, код підтвердження було відіслано на', + 'email_code' => 'Введіть код підтвердження, який Ви отримали електронною поштою: ', + 'email_error_head' => 'Ваші налаштування системи сповіщень по Email НЕ було збережено!', + 'email_ok_head' => 'Ваші налаштування системи сповіщень по Email збережено!', + 'error' => 'Системі не вдалося опрацювати Вашу заявку!', + 'mobile_alert_request_created' => 'Мобільна система сповіщення була створена, повідомлення з кодом підтвердження було відіслано на ', + 'mobile_code' => 'Введіть код підтвердження який ви отримали на наш мобільний телефон: ', + 'mobile_error_head' => 'Ваші налаштування мобільної системи сповіщеня НЕ було збережено!', + 'mobile_ok_head' => 'Налаштування мобільної системи сповіщень збережені!', + 'settings_error' => 'Не правильно налаштована система сповіщень', + 'unsubscribe' => 'Ви отримали цей лист через те що ви підписані на отримання сповіщень. Якщо ви не хочете отримувати майбутні сповіщення перейдіть:', + 'unsubscribed' => 'Ви більше не будете отримувати сповіщення від ', + 'unsubscribe_failed' => 'Ми не змогли скасувати підписку. Будь ласка, перевірте правильність URL.', + 'verification_email_subject' => 'Підтвердження сповіщень', + 'verify_code' => 'Ви не зможете отримувати сповіщення поки не введете код підтвердження', +); diff --git a/application/i18n/uk_UA/auth.php b/application/i18n/uk_UA/auth.php new file mode 100755 index 0000000000..3bdfd38ca6 --- /dev/null +++ b/application/i18n/uk_UA/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Електронну адресу введено неправильно, введіть прввильно.', + 'exists' => 'Вибачте, вже існує користувач із такою електронною адресою.', + 'length' => 'Довжина адреси електронної пошти повинна містити від 4 до 64 символів.', + 'required' => 'Введіть електронну адресу.', + ) , + 'name' => array( + 'length' => 'Довжина поля повного імені повинна бути не менша 3 і не більша 100 символів. ', + 'required' => 'Введіть повне ім\'я.', + 'standard_text' => 'Ім\'я користувача містить недозволені символи.', + ) , + 'current_password' => array( + 'length' => 'Довжина паролю повинна бути не менша 8 символів.', + 'login error' => 'Перевірте, чи ви ввели вірну електронну адресу та пароль.', + 'matches' => 'Будь ласка, введіть той самий пароль в обидва поля.', + 'required' => 'Поле пароль є обов\'язковим.', + 'alpha_dash' => 'У полі паролю можуть бути тільки літери, символи # і @ , цифри, символи підкреслення і тире', + 'incorrect' => 'Щойно введений вами пароль для вашого профілю невірний. Будь ласка, введіть знову.', + ) , + 'new_password' => array( + 'length' => 'Довжина паролю повинна бути не менша 8 символів.', + 'login error' => 'Перевірте, чи ви ввели вірну електронну адресу та пароль.', + 'matches' => 'Будь ласка, введіть той самий пароль в обидва поля.', + 'required' => 'Поле пароль є обов\'язковим.', + 'alpha_dash' => 'У полі паролю можуть бути тільки літери, символи # і @ , цифри, символи підкреслення і тире', + ) , + 'password' => array( + 'default' => 'Трапилася помилка під час вашої спроби ввійти.', + 'length' => 'Довжина паролю повинна бути не менша 5 і не більша 16 символів.', + 'login error' => 'Перевірте, чи ви ввели вірну електронну адресу та пароль.', + 'matches' => 'Будь ласка, введіть той самий пароль в обидва поля.', + 'required' => 'Введіть пароль.', + 'riverid server down' => 'Сервер аутентифікації не працює. Будь ласка, спробуйте ще раз пізніше.', + 'riverid' => '%s', + 'alpha_dash' => 'У полі паролю можуть бути тільки літери, символи # і @ , цифри, символи підкреслення і тире', + ) , + 'password_confirm' => array( + 'matches' => 'Підтвердження паролю повинно бути ідентичне з паролем.', + ) , + 'resetemail' => array( + 'email' => 'Введіть правильну електронну адресу.', + 'invalid' => 'Вибачте, ми не маємо вашої електронної адреси', + 'required' => 'Введіть електронну адресу. ', + ) , + 'role' => array( + 'superadmin_modify' => 'Лише суперадміністратор може змінити суперадміністратора або надати користувачу прав адміністратора.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Неправильний формат ролі.', + 'length' => 'Довжина ролі повинна бути не менша 5 і не більша 30 символів.', + 'required' => 'Ви повинні визначити хоча б одну роль.', + 'values' => 'Виберіть роль або ADMIN або USER.', + ) , + 'token' => array( + 'invalid' => 'Неприпустимий маркер при відновленні пароля.', + 'required' => 'Неприпустимий маркер при відновленні пароля.', + ) , + 'username' => array( + 'admin' => 'Роль користувача admin не може бути змінено.', + 'alpha_numeric' => 'Поле публічної URL-адреси профілю може містити лише цифри та букви.', + 'exists' => 'Вибачте, таке ім\'я користувача вже використовується.', + 'length' => 'Довжина імені користувача повинна містити не менше 2 і не більше 16 символів.', + 'login error' => 'Перевірте, чи ви ввели вірну публічну URL-адресу профілю.', + 'required' => 'Введіть ім\'я користувача. ', + 'superadmin' => 'Роль користувача super admin не може бути змінено.', + 'csrf' => 'Можлива атака CSRF. Ви дійсно хочете створювати / редагувати користувача?', + ) , +); diff --git a/application/i18n/uk_UA/bug.php b/application/i18n/uk_UA/bug.php new file mode 100755 index 0000000000..5abf2776df --- /dev/null +++ b/application/i18n/uk_UA/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Будь ласка, введіть правильний код безпеки', + 'required' => 'Будь ласка, введіть код безпеки', + ) , + 'email' => array( + 'email' => 'Електронну адресу введено неправильно.', + 'length' => 'Довжина електронної адреси повинна бути не менше 4 і не більше 64 символів.', + 'required' => 'Потрібно ввести електронну адресу, або зніміть прапорець.', + ) , + 'error' => array( + 'required' => 'Введіть опис помилки.', + ) , + 'subject' => array( + 'length' => 'Довжина теми повинна бути не менше 3 символів.', + 'required' => 'Введіть поле Тема.', + ) , + 'yourname' => array( + 'length' => 'Довжина імені повинна бути не менше 3 символів.', + 'required' => 'Введіть поле Ім\'я.', + ) , +); diff --git a/application/i18n/uk_UA/category.php b/application/i18n/uk_UA/category.php new file mode 100755 index 0000000000..e210f20886 --- /dev/null +++ b/application/i18n/uk_UA/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Поле кольору має містити 6 символів.', + 'required' => 'Введіть колір.', + ) , + 'category_description' => array( + 'required' => 'Потрібно ввести опис.', + ) , + 'category_image' => array( + 'size' => 'Будь ласка, переконайтеся, що розмір файлів зображень не перевищує 50 Кб.', + 'type' => 'Бракує правильного зображення. Приймаються лише формати .JPG, .PNG та .GIF.', + 'valid' => 'Поле зображення не містить правильного файлу.', + ) , + 'category_title' => array( + 'length' => 'Назва має містити від 3-х до 80-ти символів. ', + 'required' => 'Будь ласка, введіть назву.', + ) , + 'parent_id' => array( + 'already_parent' => 'Ви не можете робити підкатегоризацію категорії з підкатегоріями.', + 'exists' => 'Дана батьківська папка не існує.', + 'numeric' => 'Назва батьківської папки має складатися виключно з цифр.', + 'parent_trusted' => 'Батьківська категорія не може бути спеціальною категорією', + 'required' => 'Введіть назву батьківської папки.', + 'same' => 'Папка та батьківська папка не можуть мати однакові назви.', + 'special' => 'Спеціальні категорії не можуть бути підкатегоризовані.', + ) , +); diff --git a/application/i18n/uk_UA/comments.php b/application/i18n/uk_UA/comments.php new file mode 100755 index 0000000000..f9505ae2a0 --- /dev/null +++ b/application/i18n/uk_UA/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Будь ласка, введіть правильний код безпеки.', + 'required' => 'Будь ласка, введіть код безпеки.', + 'valid' => 'Ви ввели невірний код безпеки.', + ) , + 'comment_author' => array( + 'length' => 'Поле імені має містити принаймні три символи.', + 'required' => 'Введіть ім\'я.', + ) , + 'comment_description' => array( + 'required' => 'Введіть текст коментаря.', + ) , + 'comment_email' => array( + 'email' => 'Поле email містить неправильну електронну адресу.', + 'length' => 'Електронна адреса має містити від 4-х до 64-х символів.', + 'required' => 'Якщо поле email адреси відмічено прапорцем, треба ввести електронну адресу. ', + ) , +); diff --git a/application/i18n/uk_UA/contact.php b/application/i18n/uk_UA/contact.php new file mode 100755 index 0000000000..4475f32be5 --- /dev/null +++ b/application/i18n/uk_UA/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Будь ласка, введіть правильний код безпеки', + 'valid' => 'Будь ласка, введіть правильний код безпеки.', + 'required' => 'Будь ласка, введіть код безпеки', + ) , + 'contact_email' => array( + 'email' => 'Поле email містить неправильну електронну адресу.', + 'length' => 'Поле електронної пошти повинно бути довжиною не менше 4 і не більше 64 символів.', + 'required' => 'Потрібно ввести Email адресу або зніміть прапорець.', + ) , + 'contact_message' => array( + 'required' => 'Поле повідомлення є обов\'язковим.', + ) , + 'contact_name' => array( + 'length' => 'У полі "Ім\'я" має бути не менше 3-х символів.', + 'required' => 'Поле "Ім\'я" є обов\'язковим.', + ) , + 'contact_subject' => array( + 'length' => 'У полі теми має бути не менше 3-х символів.', + 'required' => 'Поле теми є обов\'язковим.', + ) , + 'email_send' => array( + 'failed' => 'Трапилася помилка при надсиланні вашого повідомлення.', + ) , +); diff --git a/application/i18n/uk_UA/core.php b/application/i18n/uk_UA/core.php new file mode 100755 index 0000000000..7c5b7d6961 --- /dev/null +++ b/application/i18n/uk_UA/core.php @@ -0,0 +1,35 @@ + 'конфігураційний файл', + 'controller' => 'контролер', + 'driver' => 'драйвер', + 'driver_implements' => '%s драйвер для бібліотеки %s мусить надавати інтерфейс %s', + 'driver_not_found' => '%s драйвер для %s бібліотеки не може бути знайдено', + 'errors_disabled' => 'Ви можете перейти на сторінку головна або спробувати ще раз.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Неможливо виконати запит', + 'helper' => 'помічник', + 'invalid_filetype' => 'Шуканий тип файлу, .%s, не допускається у конфігураційному файлі', + 'invalid_method' => 'Невірний метод %s викликається у %s', + 'invalid_property' => 'Властивість %s не існує у класі %s', + 'library' => 'бібліотека', + 'log_dir_unwritable' => 'Каталог для лог-файлів не доступний для запису: %s', + 'model' => 'модель', + 'no_controller' => 'Ushahidi була не в змозі визначити контролер для обробки цього запиту: %s', + 'no_default_route' => 'Будь ласка, встановіть маршрут за замовчанням у config/routes.php', + 'page_not_found' => 'Сторінка, яку ви просили, %s, не може бути знайдена.', + 'report_bug' => ' Розказати про проблему Ushahidi', + 'resource_not_found' => 'Повідомте Ushahidi про цю проблему', + 'stack_trace' => 'Трасування стеку', + 'stats_footer' => 'Завантажено протягом {execution_time} секунд, використовуючи {memory_usage} памяті. Згенеровано Ushahidi v%s.', + 'text_direction' => 'лнп', + 'there_can_be_only_one' => 'Можлива лише один екземпляр Ushahidi на сторінку запиту', + 'uncaught_exception' => 'Неперехоплене %s: %s у файлі %s рядок %s', + 'view' => 'вид', + 'view_set_filename' => 'Ви повинні встановити вид файлу перед викликом рендера', +); diff --git a/application/i18n/uk_UA/database.php b/application/i18n/uk_UA/database.php new file mode 100755 index 0000000000..5060e7753b --- /dev/null +++ b/application/i18n/uk_UA/database.php @@ -0,0 +1,10 @@ + 'Помилка бази даних: %s', + 'table_not_found' => 'Таблиця "%s" не може бути знайдений в базі даних. Будь ласка, переконайтеся, що ви використовуєте останню версію бази даних для даної версії Ushahidi', +); diff --git a/application/i18n/uk_UA/datetime.php b/application/i18n/uk_UA/datetime.php new file mode 100755 index 0000000000..3e0ddd5106 --- /dev/null +++ b/application/i18n/uk_UA/datetime.php @@ -0,0 +1,86 @@ + 'ранку', + 'friday' => array( + 'abbv' => 'Пт', + 'full' => 'П\'ятниця', + ) , + 'monday' => array( + 'abbv' => 'Пн', + 'full' => 'Понеділок', + ) , + 'pm' => 'вечора', + 'saturday' => array( + 'abbv' => 'Сб', + 'full' => 'Субота', + ) , + 'sunday' => array( + 'abbv' => 'Нд', + 'full' => 'Неділя', + ) , + 'thursday' => array( + 'abbv' => 'Чт', + 'full' => 'Четвер', + ) , + 'tuesday' => array( + 'abbv' => 'Вт', + 'full' => 'Вівторок', + ) , + 'wednesday' => array( + 'abbv' => 'Ср', + 'full' => 'Середа', + ) , + 'january' => array( + 'abbv' => 'січ', + 'full' => 'січень', + ) , + 'february' => array( + 'abbv' => 'лют', + 'full' => 'лютий', + ) , + 'march' => array( + 'abbv' => 'бер', + 'full' => 'березень', + ) , + 'april' => array( + 'abbv' => 'кві', + 'full' => 'квітень', + ) , + 'may' => array( + 'abbv' => 'тра', + 'full' => 'травень', + ) , + 'june' => array( + 'abbv' => 'чер', + 'full' => 'червень', + ) , + 'july' => array( + 'abbv' => 'лип', + 'full' => 'липень', + ) , + 'august' => array( + 'abbv' => 'сер', + 'full' => 'серпень', + ) , + 'september' => array( + 'abbv' => 'вер', + 'full' => 'вересень', + ) , + 'october' => array( + 'abbv' => 'жов', + 'full' => 'жовтень', + ) , + 'november' => array( + 'abbv' => 'лис', + 'full' => 'листопад', + ) , + 'december' => array( + 'abbv' => 'гру', + 'full' => 'грудень', + ) , +); diff --git a/application/i18n/uk_UA/feeds.php b/application/i18n/uk_UA/feeds.php new file mode 100755 index 0000000000..d3ab8c911d --- /dev/null +++ b/application/i18n/uk_UA/feeds.php @@ -0,0 +1,19 @@ + 'ДАТА', + 'feed_name' => array( + 'length' => 'Назва каналу повинна мати довжину не менше 3 і не більше 70 символів', + 'required' => 'Введіть назву каналу', + ) , + 'feed_url' => array( + 'required' => 'Введіть URL каналу', + 'url' => 'Будь ласка, введіть коректну URL-адресу. Наприклад, http://www.ushahidi.com', + ) , + 'source' => 'Джерело', + 'title' => 'Назва', +); diff --git a/application/i18n/uk_UA/footer.php b/application/i18n/uk_UA/footer.php new file mode 100755 index 0000000000..e2d2a65c79 --- /dev/null +++ b/application/i18n/uk_UA/footer.php @@ -0,0 +1,9 @@ + 'php5-curl не встановлено на цій системі', +); diff --git a/application/i18n/uk_UA/form.php b/application/i18n/uk_UA/form.php new file mode 100755 index 0000000000..d768c56392 --- /dev/null +++ b/application/i18n/uk_UA/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Типове значення, яке ви надали для поля, є недійсним.', + 'length' => 'Ім\'я поля має бути довжиною не менше 3 і не більше 200 символів.', + ) , + 'field_height' => array( + 'between' => 'Будь ласка, введіть значення від 0 до 50 для висоти поля', + ) , + 'field_isdate' => array( + 'between' => 'Ви ввели невірне значення для поля дати', + 'required' => 'Будь ласка, виберіть Так або Ні для поля дати', + ) , + 'field_name' => array( + 'length' => 'Ім\'я поля має бути довжиною не менше 3 і не більше 200 символів.', + 'required' => 'Будь ласка, введіть ім\'я поля.', + 'duplicate' => 'Ім\'я поля, введене вами, вже існує в цій формі. Будь ласка, введіть інше.', + ) , + 'field_required' => array( + 'between' => 'Ви ввели невірне значення для поля', + 'required' => 'Будь ласка, виберіть Так або Ні для потрібного поля.', + ) , + 'field_type' => array( + 'numeric' => 'Будь ласка, виберіть правильний тип поля.', + 'required' => 'Будь ласка, виберіть тип поля.', + ) , + 'field_width' => array( + 'between' => 'Будь ласка, введіть значення від 0 до 300 як ширину поля', + ) , + 'form_description' => array( + 'required' => 'Будь ласка, введіть опис форми.', + ) , + 'form_id' => array( + 'default' => 'Форма за замовчанням не може бути видалена.', + 'numeric' => 'Будь ласка, виберіть, до якої форми це поле має бути додане.', + 'required' => 'Будь ласка, виберіть, до якої форми це поле має бути додане.', + ) , + 'form_title' => array( + 'length' => 'Поле назви форми має бути довжиною не менше 3 і не більше 200 символів.', + 'required' => 'Будь ласка, введіть назву форми.', + 'exists' => 'Форма з такою назвою вже існує. Будь ласка, виберіть іншу.', + ) , +); diff --git a/application/i18n/uk_UA/imap.php b/application/i18n/uk_UA/imap.php new file mode 100755 index 0000000000..7fd416e4be --- /dev/null +++ b/application/i18n/uk_UA/imap.php @@ -0,0 +1,10 @@ + 'Не вдалося відкрити потік IMAP', + 'unsupported_service' => 'Служба електронної пошти не підтримується', +); diff --git a/application/i18n/uk_UA/installer.php b/application/i18n/uk_UA/installer.php new file mode 100755 index 0000000000..e86628611f --- /dev/null +++ b/application/i18n/uk_UA/installer.php @@ -0,0 +1,84 @@ + 'Шлях до бази даних', + 'database' => 'База даних', + 'database_host' => 'Хост бази даних', + 'database_host_description' => 'Якщо ви працюєте в Ushahidi на вашому власному комп\'ютері, швидше за все, це буде "localhost". Якщо ви працюєте в Ushahidi з веб-сервера, ви отримаєте інформацію про ваш хост у веб-хостинг провайдера', + 'database_name' => 'Назва бази даних', + 'database_name_description' => 'Назва бази даних, на якій ви хочете запустити Ushahidi', + 'db_information_link' => 'Для отримання додаткової інформації, будь ласка, ознайомтеся з цією статтею на вікі, яка освітлює бази даних більш докладно', + 'default_language' => 'Мова за замовчанням (Локаль)', + 'default_language_description' => 'Кожна копія Ushahidi поставляється з набором вбудованих мов перекладу. Ви можете також додати свої власні', + 'disable' => 'Відключити', + 'enable' => 'Увімкнути', + 'error_summary' => 'Нижче наводиться резюме помилки, з якою ми зіткнулися', + 'files_location_text' => 'Місце на Вашому сервері, де ви розмістили свої файли Ushahidi. Ми автоматично виявляємо це значення, будь ласка, переконайтеся, що це правильно. Якщо поле пусте, не хвилюйтеся, це означає, ushahidi встановлений в каталог верхнього рівня.', + 'finished' => 'Завершено', + 'general' => 'Загальні', + 'google_key' => 'Google ключ API', + 'google_key_description' => 'Кожен може отримати ключ API. Отримайте свій', + 'go_back' => 'Назад', + 'index' => array( + 'advanced' => 'Розширена установка', + 'advanced_installation_description' => 'Виберіть усі основні параметри через цей 5-ступінчастий процес. Це включає в себе сервер, карти, назву сайту і контактні дані', + 'basic_installation' => 'Звичайна установка', + 'basic_installation_description' => 'Просто і швидко. Все що вам потрібно - це кореневий каталог вашого сайту і інформація про базу даних. Виберіть цю опцію, якщо ви хочете швидко отримати систему, що працює, і ви завжди можете налаштувати все інше потім', + 'proceed' => 'Продовжити', + 'welcome' => 'Ласкаво просимо до процесу установки сервера Ushahidi. Виберіть, який тип встановлення ви хотіли б використовувати, нижче', + ) , + 'installation_successful' => 'Установка успішно завершена', + 'mail_server' => 'Поштовий сервер', + 'mail_server_host' => 'Хост поштового сервера', + 'mail_server_host_description' => 'Наприклад: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Пароль поштового сервера', + 'mail_server_password_description' => 'Пароль, який ви зазвичай використовуєте щоб увійти на свою адресу електронної пошти', + 'mail_server_port' => 'Порт поштового сервера', + 'mail_server_port_description' => 'Часто використовувані порти: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Тип поштового сервера', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) or Post Office Protocol (POP). У чому різниця?', + 'mail_server_username' => 'Користувач', + 'mail_server_username_description' => 'кщо ви використовуєте Gmail, Hotmail або Yahoo Mail, введіть повну адресу електронної пошти як ім\'я користувача', + 'map' => 'Карта', + 'map_provider' => 'Постачальник карти', + 'map_provider_description' => 'Ushahidi працює однаково добре з будь-якою з цих чотирьох провайдерів карт: Google, Bing, Yahoo або Open Street Map. Виберіть ту, яка найбільш детальна у вашому районі', + 'other_steps' => 'Інші кроки...', + 'password' => 'Пароль', + 'password_description' => 'Ваш пароль бази даних', + 'previous' => 'Назад', + 'restart_apache' => 'Будь ласка, перезавантажте сервер Apache', + 'select_mail_server_ssl' => 'Дозволити або відключити SSL', + 'select_mail_server_ssl_description' => 'Деякі поштові сервери дають Вам можливість використовувати SSL для установки зв\'язку. Використання SSL рекомендується, оскільки це дає вам додатковий рівень безпеки', + 'setup_sms' => 'Встановлення вашого SMS-сервера', + 'site_email' => 'Адреса електронної пошти сайту', + 'site_email_alerts' => 'Адреса електронної пошти повідомлень сайту', + 'site_email_alerts_description' => 'Коли відвідувачі вашого сайту підпишуться на оповіщення по електронній пошті, вони будуть отримувати листи з цієї адреси. Ця адреса не повинна бути такою ж, як адреса електронної пошти сайту', + 'site_email_description' => 'Електронна пошта всередині вашого сайту буде направлятися через цю адресу', + 'site_name' => 'Назва сайту', + 'site_name_description' => 'Назва вашого сайту', + 'site_tagline' => 'Підзаголовок сайту', + 'site_tagline_description' => 'Ваш слоган', + 'summary' => array( + 'text_1' => 'Файли і папки, перераховані нижче повинні бути доступні для запису веб-сервером', + 'text_2' => '

Нижче наведено інструкції для зміни прав доступу до файлів:

+ ', + 'text_3' => 'Перш ніж почати, ви повинні переконатися, що файли і папки доступні для запису з веб-сервера. Це передбачає зміну права доступу до файлів', + 'text_4' => 'Для установки, будь ласка, тримайте наступну інформацію під рукою', + ) , + 'table_prefix' => 'Префікс таблиці', + 'table_prefix_description' => 'Як правило, ви не повинні змінювати префікс таблиць. Однак, якщо ви хочете запустити декілька установок Ushahidi з однієї бази даних ви можете зробити це, змінивши префікс тут', + 'title' => 'Назва', + 'to_login' => 'Щоб увійти, перейдіть на', + 'upload_data' => 'Завантажити дані звіту', + 'username' => 'Користувач', + 'username_description' => 'Користувач бази даних', + 'use_credentials' => 'і використовуйте такі дані', + 'view_site' => 'Перегляд веб-сайту', +); diff --git a/application/i18n/uk_UA/layer.php b/application/i18n/uk_UA/layer.php new file mode 100755 index 0000000000..dfc3a70fbc --- /dev/null +++ b/application/i18n/uk_UA/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Поле кольору повинно бути довжиною 6 символів.', + 'required' => 'Поле кольору є обов\'язковим.', + ) , + 'layer_file' => array( + 'type' => 'Поле файла, здається, не містить правильний файл. Приймаються тільки формати. KMZ. KML.', + 'valid' => 'Поле файла, здається, не містить правильний файл', + ) , + 'layer_name' => array( + 'length' => 'Поле назви має бути довжиною не менше 3 і не більше 80 символів.', + 'required' => 'Назва є обов\'язковою.', + ) , + 'layer_url' => array( + 'atleast' => 'KML Url або файл є необхідним', + 'both' => 'Ви не можете мати одночасно файл KML і url', + 'url' => 'Будь ласка, введіть URL-адресу. Наприклад, http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/uk_UA/libraries.php b/application/i18n/uk_UA/libraries.php new file mode 100755 index 0000000000..d0cf0a0e43 --- /dev/null +++ b/application/i18n/uk_UA/libraries.php @@ -0,0 +1,27 @@ + 'Не вдається підключитися до сервера Akismet', + 'akismet_cannot_retrieve' => 'Відповідь від Akismet не може бути відновлена', + 'api_library_not_found' => 'Бібліотека API: %s, для класу %s не може бути знайдене. Будь ласка, перевірте таблиці маршрутизації завдань API.', + 'askimet_invalid_apikey' => 'Ваш Akismet API ключ недійсний', + 'clickatell_fopen_error' => 'Помилка при виконанні FOPEN!
Будь ласка, перевірте чи працює у PHP підтримка OpenSSL і чи версія PHP більша, ніж 5.2', + 'clickatell_message_too_long' => 'Ваше повідомлення unicode занадто довге! (Поточна довжина =', + 'clickatell_no_destination_address' => 'Будь ласка, вкажіть адресу призначення (TO)!', + 'clickatell_no_sender_address' => 'Будь ласка, вкажіть адресу джерела (FROM)!', + 'clickatell_unicode_message_too_long' => 'Ваше повідомлення unicode занадто довге! (Поточна довжина =', + 'clickatell_unsupported_method' => 'Не підтримується спосіб передачі!', + 'invalid_api_library' => 'API-бібліотека %s є недійсною. Всі API-бібліотеки повинні бути підкласами %s', + 'upgrade_directory_not_deleted' => 'Каталог %s не може бути видалений', + 'upgrade_extracting_error' => 'Помилка при розпакуванні: %s', + 'upgrade_failed' => 'Завантаження останньої ushahidi не вдалося. Код статусу HTTP', + 'upgrade_file_not_copied' => 'Файл %s не може бути скопійований', + 'upgrade_file_not_deleted' => 'Файл %s не може бути видалений', + 'upgrade_title' => 'Сценарій оновлення Ushahidi', + 'upgrade_zip_error' => 'Завантажений zip-файл ushahidi %s, не може бути записаний', + 'riverid_variable_not_available' => '%s недоступний у класі RiverID.', +); diff --git a/application/i18n/uk_UA/maintenance.php b/application/i18n/uk_UA/maintenance.php new file mode 100644 index 0000000000..6b87da77ff --- /dev/null +++ b/application/i18n/uk_UA/maintenance.php @@ -0,0 +1,9 @@ + 'На жаль, наш сайт в даний час закритий на технічне обслуговування. Повторіть спробу через кілька хвилин.', +); diff --git a/application/i18n/uk_UA/message.php b/application/i18n/uk_UA/message.php new file mode 100755 index 0000000000..9d14dfece7 --- /dev/null +++ b/application/i18n/uk_UA/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Будь ласка, введіть правильний код безпеки', + 'required' => 'Будь ласка, введіть код безпеки', + ) , + 'email' => array( + 'email' => 'Поле email містить неправильну електронну адресу.', + 'length' => 'Поле електронної пошти повинно бути довжиною не менше 4 і не більше 64 символів.', + 'required' => 'Поле електронної пошти є обов\'язковим, якщо встановлений прапорець.', + ) , + 'message' => array( + 'required' => 'Поле коментарів є обов\'язковим.', + ) , + 'name' => array( + 'length' => 'Поле назви має бути довжиною не менше 3 символів.', + 'required' => 'Назва є обов\'язковою.', + ) , + 'phone' => array( + 'length' => 'Номер телефона неправильний', + ) , +); diff --git a/application/i18n/uk_UA/mhi.php b/application/i18n/uk_UA/mhi.php new file mode 100755 index 0000000000..197d0278bd --- /dev/null +++ b/application/i18n/uk_UA/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Будь ласка, введіть правильний код безпеки.', + 'required' => 'Будь ласка, введіть код безпеки.', + ) , + 'contact_email' => array( + 'email' => 'Email-адресу введено невірно', + 'required' => 'Введіть правильну адресу', + ) , + 'contact_message' => array( + 'required' => 'Поле повідомлення є обов\'язковим.', + ) , + 'contact_subject' => array( + 'length' => 'Тема має бути довжиною не менше 3 символів.', + 'required' => 'Тема є обов\'язковою.', + ) , +); diff --git a/application/i18n/uk_UA/notifications.php b/application/i18n/uk_UA/notifications.php new file mode 100755 index 0000000000..4a9b23e4de --- /dev/null +++ b/application/i18n/uk_UA/notifications.php @@ -0,0 +1,35 @@ + 'Це повідомлення було відправлено з вашого сайту', + 'admin_login_url' => 'Логін адміністратора', + 'admin_new_comment' => array( + 'message' => 'Новий коментар був надісланий на ваш сайт у відповідь на:', + 'subject' => 'Новий коментар', + ) , + 'admin_new_email' => array( + 'message' => 'Нове повідомлення електронної пошти було надіслане на ваш сайт.', + 'subject' => 'Нове повідомлення електронної пошти', + ) , + 'admin_new_report' => array( + 'message' => 'Нова доповідь була надіслана на ваш сайт.', + 'subject' => 'Нова доповідь', + ) , + 'admin_new_sms' => array( + 'message' => 'Нове текстове повідомлення було надіслано на ваш сайт.', + 'subject' => 'Нове текстове повідомлення', + ) , + 'member_new_alert' => array( + 'message' => 'Ви отримали нове попередження', + 'subject' => 'Нове попередження!', + ) , + 'member_new_message' => array( + 'message' => 'Ви отримали приватне повідомлення', + 'subject' => 'Нове приватне повідомлення', + 'footer' => 'Для відповіді перейдіть:', + ) , +); diff --git a/application/i18n/uk_UA/page.php b/application/i18n/uk_UA/page.php new file mode 100644 index 0000000000..1bba1d16af --- /dev/null +++ b/application/i18n/uk_UA/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Будь ласка, введіть заголовок сторінки.', + 'length' => 'Заголовок сторінки повинен бути менше 3 і не більше 150 символів.', + ) , + 'page_tab' => array( + 'required' => 'Будь ласка, введіть ім\'я вкладки сторінки.', + ) , + 'page_description' => array( + 'required' => 'Будь ласка, введіть опис сторінки.', + ) , +); diff --git a/application/i18n/uk_UA/permissions.php b/application/i18n/uk_UA/permissions.php new file mode 100644 index 0000000000..45b063609a --- /dev/null +++ b/application/i18n/uk_UA/permissions.php @@ -0,0 +1,27 @@ + 'Переглянути звіти', + 'reports_edit' => 'Створити/Редагувати/Видалити Звіти', + 'reports_approve' => 'Схвалити Звіти', + 'reports_verify' => 'Перевірити Звіти', + 'reports_comments' => 'Управляти коментарями звітів', + 'reports_download' => 'Завантажити звіти', + 'reports_upload' => 'Вивантажити звіти', + 'messages' => 'Управляти повідомленнями', + 'messages_reporters' => 'Управляти репортерами повідомлень', + 'stats' => 'Переглянути статитистику', + 'settings' => 'Змінити параметри', + 'manage' => 'Панель управління', + 'users' => 'Управляти користувачами', + 'manage_roles' => 'Управляти ролями', + 'checkin' => 'Можна реєструвати', + 'checkin_admin' => 'Управління реєстраціями', + 'admin_ui' => 'Доступ до інтерфейсу адмінстратора', + 'member_ui' => 'Доступ до інтерфейсу членів', + 'delete_all_reports' => 'Видалити усі звіти', +); diff --git a/application/i18n/uk_UA/private_message.php b/application/i18n/uk_UA/private_message.php new file mode 100644 index 0000000000..0f3b22a5c9 --- /dev/null +++ b/application/i18n/uk_UA/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Батьківський ID мусить бути числовим', + ) , + 'private_to' => array( + 'required' => 'Поле Кому є обов\'язковим', + 'exists' => 'Користувача, якому ви намагаєтеся відправити повідомлення, не існує', + ) , + 'private_subject' => array( + 'required' => 'Поле теми є обов\'язковим', + 'length' => 'Тема мусить бути між 3 та 150 символами', + ) , + 'private_message' => array( + 'required' => 'Поле повідомлення є обов\'язковим', + ) , +); diff --git a/application/i18n/uk_UA/report.php b/application/i18n/uk_UA/report.php new file mode 100755 index 0000000000..9c894afe0d --- /dev/null +++ b/application/i18n/uk_UA/report.php @@ -0,0 +1,139 @@ + 'помилка!', + 'country_name' => array( + 'single_country' => 'Це розгортання охоплює лише одну країну. Будь ласка, переконайтеся, що розташування звіту знаходиться в країні %s.', + ) , + 'custom_field' => array( + 'values' => 'Будь ласка, введіть вірне значення для поля "%s".', + 'numeric' => 'Поле "%s" мусить бути числовим.', + 'required' => 'Поле "%s" є обов\'язковим', + 'not_exist' => 'Поле "%s" не існує.', + 'permission' => 'Поле "%s" не може редагуватися вашим профілем.', + 'email' => 'Поле "%s" мусить містити вірну електронну адресу.', + 'phone' => 'Поле "%s" мусить містити вірний телефонний номер.', + 'date_mmddyyyy' => 'Поле "%s" мусить містити вірну дату (ММ/ДД/РРРР).', + 'date_ddmmyyyy' => 'Поле "%s" мусить містити вірну дату (ДД/ММ/РРРР).', + ) , + 'data_include' => array( + 'between' => 'Виберіть правильний формат для завантаження', + 'numeric' => 'Виберіть правильний формат для завантаження', + ) , + 'data_active' => array( + 'between' => 'Виберіть "Звіти, які очікують схвалення" або "Схвалені звіти" чи обидва.', + 'numeric' => 'Виберіть "Звіти, які очікують схвалення" або "Схвалені звіти" чи обидва.', + 'required' => 'Виберіть "Звіти, які очікують схвалення" або "Схвалені звіти" чи обидва.', + ) , + 'data_verified' => array( + 'between' => 'Виберіть "Звіти, які очікують перевірки" або "Перевірені звіти" чи обидва.', + 'numeric' => 'Виберіть "Звіти, які очікують перевірки" або "Перевірені звіти" чи обидва.', + 'required' => 'Виберіть "Звіти, які очікують перевірки" або "Перевірені звіти" чи обидва.', + ) , + 'data_point' => array( + 'between' => 'Будь ласка, виберіть правильний тип звіту для завантаження', + 'numeric' => 'Будь ласка, виберіть правильний тип звіту для завантаження', + 'required' => 'Будь ласка, виберіть правильний тип звіту для завантаження', + ) , + 'format' => array( + 'required' => 'Ви повинні вибрати формат завантаження. Виберіть CSV або XML.', + 'valid' => 'Будь ласка, виберіть вірний формат для завантаження вашого звіту', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Поле дати ВІД містить неправильні значення', + 'range' => 'Введіть правильну дату для поля ВІД. Вона не може бути більше сьогодняшнього числа.', + ) , + 'incident_active' => array( + 'between' => 'Будь ласка, введіть припустиме значення щоб підтвердити цей звіт', + 'required' => 'Будь ласка, введіть припустиме значення щоб підтвердити цей звіт', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Неправильно вказано час (АМ/РМ)', + ) , + 'incident_category' => array( + 'numeric' => 'Категорія введена невірно', + 'required' => 'Введіть категорію.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Дата введена у неправильному форматі', + 'date_mmddyyyy' => 'Дата введена у неправильному форматі', + 'required' => 'Введіть дату.', + ) , + 'incident_description' => array( + 'required' => 'Введіть опис.', + ) , + 'incident_hour' => array( + 'between' => 'Час введений у неправильному форматі.', + 'required' => 'Введіть значення години.', + ) , + 'incident_information' => array( + 'alpha' => 'Будь ласка, введіть припустиме значення для імовірності інформації', + 'length' => 'Будь ласка, введіть припустиме значення для імовірності інформації', + ) , + 'incident_minute' => array( + 'between' => 'Хвилини введені у неправильному форматі.', + 'required' => 'Введіть хвилини.', + ) , + 'incident_news' => array( + 'url' => 'URL посилання на джерело новин введений неправильно.', + ) , + 'incident_photo' => array( + 'size' => 'Будь ласка, переконайтеся, що розмір фото, що додається, не більше 2 Мб.', + 'type' => 'Файли фотографій мають неправильний формат, додайте файли в .JPG, .PNG або .GIF форматах.', + 'valid' => 'Файли фотографій пошкоджені або мають неправильний формат', + ) , + 'incident_source' => array( + 'alpha' => 'Будь ласка, введіть припустиме значення для надійності джерела', + 'length' => 'Будь ласка, введіть припустиме значення для надійності джерела', + ) , + 'incident_title' => array( + 'length' => 'Довжина назви не може бути менше 3х и більша за 200 символів.', + 'required' => 'Введіть назву.', + 'csrf' => 'Можлива атака CSRF. Ви дійсно хочете створювати / редагувати звіт?', + ) , + 'incident_verified' => array( + 'between' => 'Будь ласка, введіть припустиме значення для перевіреності цієї події', + 'required' => 'Будь ласка, введіть припустиме значення для перевіреності цієї події', + ) , + 'incident_video' => array( + 'url' => 'Посилання на відео введене невірно', + ) , + 'latitude' => array( + 'between' => 'Координати широти місцевості введені неправильно', + 'required' => 'Введіть координати широти місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування.', + ) , + 'locale' => array( + 'alpha_dash' => 'Поле локалі введене неправильно.', + 'exists' => 'Дане повідомлення вже переведено на дану мову', + 'length' => 'Поле локалі введене неправильно.', + 'locale' => 'Оригінальний звіт і переклад мають однакову локаль (мову)', + 'required' => 'Введіть локаль.', + ) , + 'location_name' => array( + 'length' => 'Довжина назви місця не може бути менше 3х і більше 200 символів.', + 'required' => 'Введіть назву місця.', + ) , + 'longitude' => array( + 'between' => 'Координати довготи місцевості введені неправильно', + 'required' => 'Введіть координати довготи місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування.', + ) , + 'person_email' => array( + 'email' => '\'Email введений в неправильному форматі', + 'length' => 'Довжина Email не може бути менше 4х і більше 64 символів.', + ) , + 'person_first' => array( + 'length' => 'Довжина імені не може бути менше 3х і більше 100 символів.', + ) , + 'person_last' => array( + 'length' => 'Довжина прізвища не може бути менше 3х і більше 100 символів.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Поле дати ДО містить неправильні значення', + 'range' => 'Введіть правильный формат дати для поля ДО. Воно не може бути більше сьогодняшнього числа.', + 'range_greater' => 'Дата ВІД не може бути більше, ніж дата ДО.', + ) , +); diff --git a/application/i18n/uk_UA/reporters.php b/application/i18n/uk_UA/reporters.php new file mode 100755 index 0000000000..20efbb13c1 --- /dev/null +++ b/application/i18n/uk_UA/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Координати широти місцевості введені неправильно', + 'required' => 'Введіть координати широти місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування.', + ) , + 'level_id' => array( + 'numeric' => 'Рівень повідомника неправильний', + 'required' => 'Рівень повідомника неправильний', + ) , + 'location_name' => array( + 'length' => 'Довжина назви місця не може бути менше 3х і більше 200 символів.', + 'required' => 'Введіть назву місця.', + ) , + 'longitude' => array( + 'between' => 'Координати довготи місцевості введені неправильно', + 'required' => 'Введіть координати довготи місцевості. Будь ласка, натисніть на карту, щоб визначити місце розташування.', + ) , + 'reporter_id' => array( + 'numeric' => 'Неправильна особа', + 'required' => 'Неправильна особа', + ) , +); diff --git a/application/i18n/uk_UA/reports.php b/application/i18n/uk_UA/reports.php new file mode 100644 index 0000000000..3ddda66563 --- /dev/null +++ b/application/i18n/uk_UA/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Переконайтеся, що ви вже відмітили один елемент', + 'numeric' => 'Переконайтеся, що ви вже відмітили один елемент', + 'categories_required' => 'Звіти повинні бути класифіковані, перш ніж вони можуть бути схвалені', + ) , + 'action' => array( + 'permission' => 'У вас немає дозволу на виконання цієї дії', + ) , + 'uploadfile' => array( + 'required' => 'Ви повинні вибрати файл для вивантаження', + 'type' => 'Файл для вивантаження мусить бути у форматі .csv або .xml', + 'valid' => 'Поле файлу вивантаження, здається, не містить правильний файл', + ) , +); diff --git a/application/i18n/uk_UA/roles.php b/application/i18n/uk_UA/roles.php new file mode 100755 index 0000000000..f9885d6d43 --- /dev/null +++ b/application/i18n/uk_UA/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Поле опису має мати довжину не менше 3х и не більше 100 символів.', + 'required' => 'Поле опису має бути заповнене.', + ) , + 'name' => array( + 'alpha_numeric' => 'Поле імені може містити лише літери та цифри.', + 'length' => 'Поле імені має мати довжину не менше 2х и не більше 30 символів.', + 'nomodify' => 'Роль SuperAdmin не може бути змінена.', + 'required' => 'Поле імені має бути заповнене.', + ) , + 'access_level' => array( + 'numeric' => 'Поле рівня доступу має бути число між 0-100.', + 'required' => 'Поле рівня доступу має бути число між 0-100.', + ) , + 'permissions' => array( + 'numeric' => 'Поле дозволів має бути число між 0-100.', + ) , +); diff --git a/application/i18n/uk_UA/settings.php b/application/i18n/uk_UA/settings.php new file mode 100755 index 0000000000..fea3625c16 --- /dev/null +++ b/application/i18n/uk_UA/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'Поле про дозвіл коментувати заповнене невірно', + 'required' => 'Поле про дозвіл коментувати має бути заповнене.', + ) , + 'allow_feed' => array( + 'between' => 'Поле про RSS-стрічку заповнене невірно', + 'required' => 'Поле про RSS-стрічку має бути заповнене.', + ) , + 'allow_feed_category' => array( + 'between' => 'Поле категорії RSS-стрічки заповнене невірно', + 'required' => 'Поле категорії стрічки є обов\'язковим.', + ) , + 'allow_alerts' => array( + 'between' => 'Це поле дозволу сповіщень не містить правильне значення.', + 'required' => 'Поле дозволу сповіщень обов\'язкове.', + ) , + 'allow_reports' => array( + 'between' => 'Поле про можливість відправляти звіти заповнене невірно', + 'required' => 'Поле про можливість відправляти звіти має бути заповнене.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Поле про відправку статистики заповнене невірно', + 'required' => 'Поле про відправку статистики має бути заповнене.', + ) , + 'api' => array( + 'default_record_limit' => 'Кількість записів, за замовчуванням отримуваних за запитом API', + 'maximum_record_limit' => 'Максимальна кількість записів, отримуваних за запитом API', + 'maximum_requests_per_ip_address' => 'Максимальна кількість запитів API на одну IP-адресу', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Поле Akismet заповнене невірно', + 'length' => 'Поле Akismet заповнене невірно', + ) , + 'banner_image' => array( + 'type' => 'Поле банера сайту повинно містити вірне зображення. Прийнятні лише формати .JPG, .PNG та .GIF.', + 'size' => 'Переконайтеся, що розмір зображення банера не менший за 250 КБ.', + 'valid' => 'Поле зображення банера не містить правильного файлу.', + ) , + 'cache_pages' => array( + 'between' => 'Поле кешування сторінок повинно бути заповнене', + 'required' => 'Заповніть поле кешування сторінок', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Час кешування сторінок заповнений невірно', + 'required' => 'Введіть час кешування сторінок', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Ваш сервер не налаштований для чистих URL. Налаштуйте Ваш сервер до увімкнення даної послуги. Для більш детальної інформації зайдите post', + 'clean_url_enabled' => 'Це дозволить Ushahidi заходити на "чисті" сайти без входу на "index.php".', + 'enable_clean_url' => 'Дозволити чисті URL', + 'title' => 'Чисті URL', + ) , + 'clickatell_api' => array( + 'length' => 'Довжина номера Clickatell API не повинна перевищувати 20 символів.', + 'required' => 'Введіть Clickatell API номер.', + ) , + 'clickatell_password' => array( + 'length' => 'Довжина паролю Clickatell не повинна перевищувати 50 символів.', + 'required' => 'Введіть пароль Clickatell.', + ) , + 'clickatell_username' => array( + 'length' => 'Довжина імені користувача Clickatell не повинна перевищувати 50 символів.', + 'required' => 'Введіть ім\'я користувача Clickatell.', + ) , + 'configure_map' => 'Налаштувати карту', + 'default_location' => 'Місцезнаходження за замовчуванням', + 'default_map_all' => array( + 'alpha_numeric' => 'Поле кольору містить неправильні дані', + 'length' => 'Поле кольору повинно бути 6-значним', + 'required' => 'Введіть колір.', + ) , + 'default_map_view' => 'Бачити карту за замовчуванням', + 'default_zoom_level' => 'Рівень масштабу за замовчуванням', + 'download_city_list' => 'Отримати назви з ГЕОназв', + 'email_host' => array( + 'length' => 'Поле хоста Сервера пошти надто довге', + 'numeric' => 'Хост сервера пошти повинен містити лише цифри.', + ) , + 'email_password' => array( + 'length' => 'Довжина паролю сервера пошти не повинна перевищувати 50 символів.', + 'required' => 'Введіть пароль сервера пошти.', + ) , + 'email_port' => array( + 'length' => 'Поле порта Сервера пошти надто довге', + 'numeric' => 'Порт сервера пошти повинен містити лише цифри.', + ) , + 'email_servertype' => array( + 'length' => 'Поле типу сервера пошти надто довге', + 'required' => 'Введіть тип сервера пошти.', + ) , + 'email_username' => array( + 'length' => 'Довжина імені користувача сервера пошти не повинна перевищувати 50 символів.', + 'required' => 'Введіть ім\'я користувача сервера пошти.', + ) , + 'facebook' => array( + 'title' => 'Параметри установки Facebook', + 'description' => 'Щоб отримати інформацію нижче вам потрібно створити новий додаток Facebook на', + 'description_2' => 'Ці параметри дозволяють користувачам увійти через Facebook, не створюючи програм під facebook для вашого використання', + 'app_id' => 'ID програми на Facebook', + 'app_secret' => 'Секрет програми Facebook', + ) , + 'google_analytics' => array( + 'length' => 'Поле Google Analytics повинне містити діючий Web Property ID у форматі UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Увімкнути HTTPS', + 'https_disabled' => 'Цей параметр надає Ushahidi доступ у небезпечному режимі; без "https://" у префіксі URL', + 'https_enabled' => 'Цей параметр надає Ushahidi доступ у безпечному режимі; з https у префіксі URL', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Поле кількості звітів на сторінці (Головній) заповнене неправильно', + 'required' => 'Введіть кількість звітів на сторінці для (Головна).', + ) , + 'items_per_page_admin' => array( + 'between' => 'Поле кількості звітів на сторінці (Admin) заповнене неправильно', + 'required' => 'Введіть кількість звітів на сторінці для (Admin).', + ) , + 'map' => array( + 'default_location' => 'Вибір провайдера карти відбувається напряму з провайдером. Виберіть провайдера, отримайте API ключ, Введіть ключ на сайті', + 'zoom' => 'Масштаб', + ) , + 'map_provider' => array( + 'choose' => 'Виберіть провайдера карти', + 'enter_api' => 'Виберіть новий API ключ', + 'get_api' => 'Отримати ключ API ', + 'info' => 'Вибір провайдера карти відбувається напряму з провайдером. Виберіть провайдера, отримайте API ключ, Введіть ключ на сайті', + 'name' => 'Провайдер карти', + ) , + 'map_timeline' => 'Карта часової шкали', + 'map_settings' => 'Властивості карти', + 'multiple_countries' => 'Чи об\'єднує Ushahidi декілька країн', + 'select_default_location' => 'Виберіть країну за замовчанням', + 'set_location' => 'Клікніть на карту щоб вказати точне місцезнаходження', + 'site' => array( + 'allow_clustering' => 'Кластеризувати звіти по Карті', + 'allow_comments' => 'Дозволити користувачам відправляти коментарі до звітів', + 'allow_feed' => 'Включити стрічку новин RSS на головній сторінці сайта', + 'allow_feed_category' => 'Створити Нову категорію з каналів', + 'allow_alerts' => 'Дозволити користувачам підписатися на оповіщення', + 'allow_reports' => 'Дозволити користувачам відправляти звіти про події', + 'api_akismet' => 'Akismet ключ', + 'banner' => 'Банер сайту', + 'blocks_per_row' => 'блоків на рядок', + 'cache_pages' => 'Кешування сторінок', + 'cache_pages_lifetime' => 'Час кешування сторінок', + 'checkins' => 'Увімкнути реєстрації', + 'copyright_statement' => 'Заява авторського права сайту', + 'default_category_colors' => 'Колір за замовчуванням для всіх категорій', + 'default_category_icons' => 'Типова піктограма для всіх категорій', + 'delete_banner_image' => 'Видалити зображення банера', + 'delete_default_map_all_icon' => 'Видалити типову піктограму', + 'display_contact_page' => 'Відображати страницу контактів', + 'display_howtohelp_page' => 'Відображати сторінку "Як допомогти"', + 'email_alerts' => 'Email для сповіщення', + 'email_notice' => ' Щоб отримати звіти по пошті, будь ласка, налаштуйте параметри Вашого email.', + 'email_site' => 'Email Веб сайта', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Ідентифікатор Google Analytics - формат: UA-XXXXX-XX', + 'items_per_page' => 'Кількість елементів на сторінці - Головна', + 'items_per_page_admin' => 'Кількість елементів на сторінці - Admin', + 'kismet_notice' => 'Захистіться від спаму, використовуючи Akismet от Automattic.
Ви можете отримати безкоштовний API ключ в WordPress.com user account', + 'laconica_configuration' => 'Laconica акаунт', + 'laconica_site' => 'Laconica Сайт', + 'language' => 'Мова сайта', + 'manually_approve_users' => 'Ручне схвалення користувачів', + 'message' => 'Повідомлення сайту', + 'name' => 'Назва сайту', + 'private_deployment' => 'Окреме розгортання', + 'require_email_confirmation' => 'Вимагати підтвердження електронної адреси користувача', + 'submit_report_message' => 'Надіслати повідомлення звіту', + 'share_site_stats' => 'Відправляти статистику в API', + 'tagline' => 'Заголовок сайту', + 'timezone' => 'Часовий пояс', + 'title' => 'Параметри сайта', + 'twitter_configuration' => 'Twitter аккаунт', + 'twitter_hashtags' => 'Хэштеги - відокремте комами', + 'feed_geolocation_user' => 'Геолокація стрічок - ім\'я користувача Geonames', + ) , + 'site_email' => array( + 'email' => 'Email веб сайта введений неправильно', + 'length' => 'Довжина Email веб сайта не повинна містити менше 4х і більше 100 символів.', + ) , + 'site_name' => array( + 'length' => 'Довжина назви сайта не повинна містити менше 3х символів і більше 50 символів.', + 'required' => 'Введіть назву сайта.', + ) , + 'site_tagline' => array( + 'length' => 'Довжина поля заголовку має бути не менше 3х і більше 100 символів.', + 'required' => 'Введіть поле заголовку.', + ) , + 'sms' => array( + 'clickatell_api' => 'Введіть ваш Clickatell API Номер', + 'clickatell_check_balance' => 'Перевірте Ваш баланс на Clickatell', + 'clickatell_load_balance' => 'Завантажте баланс на Clickatell', + 'clickatell_password' => 'Введіть Ваш Clickatell Пароль', + 'clickatell_text_1' => 'Підключіться до послуги Clickatell в clicking here', + 'clickatell_text_2' => 'Введіть Вашу інформацію Clickatell внизу', + 'clickatell_username' => 'Введіть ваш Clickatell логін', + 'flsms_description' => 'FrontlineSMS - вільна програма з відкритим вихідним кодом, яка дозволяє користувачам відправляти і отримувати текстові повідомлення з великими групами людей за допомогою мобільних телефонів. Клацніть на кнопку, щоб завантажити останню версію FrontlineSMS.com', + 'flsms_download' => 'Завантажити та встановити FrontlineSMS', + 'flsms_instructions' => 'Детальні вказівки, як надіслати СМС з вашої програми FronlineSMS, доступна тут. URL та API ключ нижче потрібні, щоб налаштувати синхронізацію з FrontlineSMS.', + 'flsms_link' => 'Копіювати та вставити це у поле від FrontlineSMS "Адреса"', + 'flsms_key' => 'Копіювати та вставити це у поле від FrontlineSMS "Ushahidi API Ключ"', + 'flsms_synchronize' => 'Підключення FrontlineSMS до цього розгортання Ushahidi', + 'flsms_text_1' => 'Введіть номер телефона, підключений до Frontline SMS в поле внизу', + 'flsms_text_2' => 'Введіть номер без символів + чи скобок', + 'option_1' => 'Option 1: Використовуйте Frontline SMS', + 'option_2' => 'Option 2: Використовуйте Global SMS Gateway', + 'title' => 'Налаштування SMS', + ) , + 'sms_no1' => array( + 'length' => 'Телефон 1 занадто довгий', + 'numeric' => 'Телефон 1 має включати лише цифри.', + ) , + 'sms_no2' => array( + 'length' => 'Телефон 2 занадто довгий', + 'numeric' => 'Телефон 2 має включати лише цифри.', + ) , + 'sms_no3' => array( + 'length' => 'Телефон 3 занадто довгий', + 'numeric' => 'Телефон 3 має включати лише цифри.', + ) , + 'twitter' => array( + 'title' => 'Параметри установки Твіттера', + 'description' => 'Щоб отримати інформацію нижче вам потрібно створити новий додаток Твіттера на', + 'api_key' => 'Ключ покупця', + 'api_key_secret' => 'Таємниця покупця', + 'token' => 'Маркер доступу', + 'token_secret' => 'Секрет маркера доступу', + ) , + 'test_settings' => 'Тестові параметри', +); diff --git a/application/i18n/uk_UA/sharing.php b/application/i18n/uk_UA/sharing.php new file mode 100755 index 0000000000..88f3bbe072 --- /dev/null +++ b/application/i18n/uk_UA/sharing.php @@ -0,0 +1,25 @@ + 'Дата реєстрації', + 'date_added' => 'Дата додана', + 'last_access' => 'Останній доступ', + 'sharing_color' => array( + 'length' => 'Довжина кольору має бути 6-значною', + 'required' => 'Введіть колір.', + ) , + 'sharing_name' => array( + 'length' => 'Ім\'я обміну введено невірно.', + 'required' => 'Потрібно ім\'я обміну.', + ) , + 'sharing_url' => array( + 'exists' => 'URL сайта вже існує', + 'length' => 'Адреса сайта введена невірно', + 'required' => 'Введіть url сайта', + 'url' => 'Адреса сайта введена невірно', + ) , +); diff --git a/application/i18n/uk_UA/stats.php b/application/i18n/uk_UA/stats.php new file mode 100755 index 0000000000..28afaa964d --- /dev/null +++ b/application/i18n/uk_UA/stats.php @@ -0,0 +1,42 @@ + 'Підтверджено', + 'categories' => 'Категорії', + 'category_impact' => 'Категорія впливу', + 'category_impact_description' => 'Ця діаграма дає вам лінійне представлення повідомлень за категоріями протягом довгого часу. Прокрутіть зліва направо, щоб побачити порівняльний огляд різних категорій. Наведіть курсор миші на графік для детальнішої інформації', + 'choose_date_range' => 'Виберіть інтервал дат', + 'countries' => 'Країни', + 'country' => 'Країна', + 'country_breakdown' => 'Розподіл країн', + 'description' => 'Це відділ статистики. Опис скоро буде доданий, поки перегляньте посилання нижче', + 'error' => 'Помилка', + 'glossary' => 'Глосарій', + 'hit_summary' => 'Статистика кліків', + 'legend' => 'Історія', + 'pageviews' => 'Сторінки', + 'pageviews_description' => 'Кількість сторінок, які переглянули відвідувачі на Вашому сайті', + 'reports' => 'Звіти', + 'reports_categories' => 'Категорії звітів', + 'reports_statistics' => 'Статистика звітів', + 'reports_status' => 'Статус звіта', + 'report_punchcard' => 'Повідомити перфокарти', + 'report_stats' => 'Статистика повідомлень', + 'stats_not_setup' => 'Статистика не включена', + 'time_range_1' => '1 Місяць', + 'time_range_2' => '3 Місяці', + 'time_range_3' => '6 Місяців', + 'time_range_all' => 'Все', + 'unapproved' => 'Не підтверджено', + 'unique_visitors' => 'Унікальні відвідувачі', + 'unique_visitors_description' => 'Кількість людей, що приходять на ваш сайт; унікальні відвідувачі визначаються за допомогою cookies. У випадку, якщо у відвідувача не включені cookies, то вони будуть визначені з використанням простої евристики з урахуванням IP-адреси, браузера, плагінам, ОС і т.д.', + 'unverified' => 'Не перевірено', + 'verified' => 'Перевірено', + 'visitor_summary' => 'Зведення по відвідувачам', + 'visits' => 'Відвідування', + 'visits_description' => 'Відвідування — кількість унікальних відвідувачів, що повернулись на сайт більш ніж на 30 хвилин після останнього перегляду сторінки', +); diff --git a/application/i18n/uk_UA/tooltips.php b/application/i18n/uk_UA/tooltips.php new file mode 100755 index 0000000000..33e271ab93 --- /dev/null +++ b/application/i18n/uk_UA/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'Дозволяє додавати додаткові категорії до звіту. Якщо ви виберете "Категорія1" для повідомлення, яке вже знаходиться в "Категорія2", то повідомлення буде прив\'язано до обох категорій.', + 'approve' => 'Затверджує звіт чи ні. У разі схвалення він буде відображатися публічно.', + 'assign_badge' => 'Ви зможете призначити значок для тригерного користувача. Виберіть тут значок для призначення.', + 'between_times' => 'Це діапазон годин і / або хвилин в 24-годинному форматі. Якщо ви вводите більш ранній час у друге поле, воно буде дзеркально відображено в першому. Ці значення часу повинні бути в межах одного дня. Крім того, цей час звіряється з налаштуванням часу на вашому сайті в налаштуваннях сайту і НЕ обов\'язково з часовим поясом користувача, який зв\'язується з вашим розгортанням. Залиште його з 00:00 до 00:00, щоб ігнорувати цей специфікатор.', + 'category' => 'Ви можете задати умову активації тригерів при використанні певних категорій. Наприклад, якщо ви вибрали умову "Категорія1 і Категорія2", а повідомлення прив\'язане до Категорія2 і Категорія3, то вона виконає задану умову.', + 'days_of_the_week' => 'Якщо ці дії відбуваються в певні дні тижня, задайте це тут. Майте на увазі, день визначається часовим поясом, налаштованим в розгортанні. Утримуйте shift, command, або control, для вибору декількох днів.', + 'email_body' => 'Тіло листа, який буде надіслано.', + 'email_subject' => 'Тема листа, який буде надіслано.', + 'feed_id' => 'Каналом можуть бути всі канали або конкретні канали. Якщо ви хочете тільки конкретні канали для активації тригера, ви можете вибрати їх тут. В іншому випадку, залиште «все»', + 'from' => 'Ім\'я користувача Twitter (або багато імен користувачів через коми). Якщо Ви хочете активізувати тригери тільки для повідомлень twitter від конкретного користувача, введіть його ім\'я користувача тут (без @)', + 'keywords' => 'Ви можете залишити це поле порожнім, якщо ви не хочете перевірити за ключовими словами. Якщо ви додаєте слова тут, ви повинні розділити їх комами (,). Наприклад, якщо ви хочете, щоб активувати тригер, коли хтось згадує „любов" або „мир" у своєму посланні, вам потрібно буде додати „любов, мир" у ​​вікні ключових слів.', + 'location' => 'Ви можете вибрати "де завгодно" або вказати місце розташування. Якщо ви вибрали місце розташування, ви можете вказати периметр, де відбувається дія. Наприклад, якщо ви хочете активувати тригер, коли будь-хто вкаже крапку в Івано-Франківській області, вам необхідно виділити дану область одним або декількома прямокутниками.', + 'on_specific_count' => 'Цей визначник активує тригер на N-ому числі або для бази всього колективу користувачів або для кожного окремого користувача. Залиште це поле порожнім, щоб його ігнорувати.', + 'report_title' => 'Ця типова назва для додавання в звіт.', + 'response' => 'Якщо всі критерії вище були пройдені, то тригер запустить дію - від схвалення повідомлення до електронного листа користувачу. Виберіть необхідні додаткові опції.', + 'send_to' => 'При виборі "Тригерний користувач" електронного листа буде відіслано користувачеві, який виконав дію. При використанні радіо-кнопки після поля введення ви зможете ввести будь-який інший e-mail. Це корисно, коли ви встановлюєте тригери для повідомлення користувачів про зміни, що відбулися.', + 'specific_days' => 'Ви можете вибрати кілька днів тут. Дати визначається вашими налаштуваннями часового поясу розгортання. Для того, щоб за замовчуванням залишилися всі дати, що не відзначайте жодних дат.', + 'trigger' => 'Тригер є основним елементом для налаштування "Дій за умовою". Ви можете вибрати будь-яку дію, коли хто-небудь відправить нове повідомлення, зареєструється і т. д.', + 'user' => 'Користувачем може бути будь-хто або конкретний користувач. Якщо ви хочете, щоб лише певні користувачі активували тригер, то ви будете хотіти вибрати їх тут. В іншому випадку, ви захочете залишити це як "кожному", бо більшість тригерів створені для всіх користувачів, що взаємодіють з системою', + 'verify' => 'Позначає звіт як перевірений або ні.', + ) , + 'change_picture' => 'Аватари анкет даного сайту використовують сервіс Gravatar. Натиснувши на ваш аватар, ви будете переадресовані на їхній сайт, де зможете змінити зображення.', + 'default_value' => 'Відокремте кожне значення комою. Наприклад: Значення1, Значення2 і т. д.', + 'radio_choices' => 'Кожне значення відокремлюється комою, наприклад, value1, value2. Якщо ви хочете задати значення за замовчуванням, закінчите список опцій :: наприклад, якщо ви хочете задати value3 як замовчування, це буде value1, value2, value3 :: value3', + 'dropdown_choices' => 'Відокремте кожний елемент комою. Наприклад: пункт 1, пункт 2 і т. д.', + 'private_to' => 'Почніть набирати, щоб випав список користувачів.', + 'private_subject' => 'Тема приватного повідомлення', + 'private_message' => 'Приватне повідомлення', + 'profile_color' => 'Ви можете вибрати колір, який буде відображений під вашим аватаром. Цим кольором також будуть відображатися повідомлення, які ви відправили.', + 'profile_email' => 'Ваша Email адреса', + 'profile_name' => 'Повне ім\'я', + 'profile_new_password' => 'Якщо задано, це буде ваш новий пароль. Залиште це поле порожнім, якщо ви хочете зберегти ваш поточний пароль.', + 'profile_new_users_password' => 'Це потрібно при створенні нового користувача і буде паролем користувача. Ви повинні інформувати свого нового користувача про можливість зміни пароля після першого входу в систему.', + 'profile_notify' => 'Виберіть Так для отримання сповіщень через Email для нових повідомлень або коментарів, які були виставлені на веб сайті', + 'profile_password' => 'Ваш пароль. Залиште поле пустим якщо ви хочете залишити старий пароль', + 'profile_public' => 'Ваша анкета може бути переглянута ким завгодно, якщо ви відзначите цю опцію. Це також найпростіший спосіб показати звіти, які ви відправили, ваші повернення, значки, і т.д. все на одній сторінці.', + 'profile_public_url' => 'Це - адреса, де можна знайти ваш громадський профіль.', + 'profile_username' => 'Ім\'я користувача не может бути змінене', + 'settings_access_level' => 'Рівень доступу використовується для обмеження доступу до користувацьких полів. Володар великого рівня зможе побачити поля з меншим рівнем. Суперадміністратор має вищий рівень доступу (100). Дані, призначені для публічного перегляду мають нижчий рівень (0). Члени мають рівень доступу 10. Адміністратор має типовий рівень доступу 90.', + 'settings_alert_email' => 'Цей email буде використаний для відправки сповіщень', + 'settings_allow_alerts' => 'Дозволити користувачам підписатися на повідомлення через мережу.', + 'settings_allow_clustering' => 'Дозволяє додавати повідомлення на одну і ту же точку на карті', + 'settings_allow_comments' => 'Дозволити користувачам коментувати повідомлення на головній сторінці.', + 'settings_allow_feed' => 'Дозволяє додавання стрічки новий RSS на головній сторінці.', + 'settings_allow_feed_category' => 'Це дозволяє створити нову категорію із каналів новин RSS.', + 'settings_allow_reports' => 'Дозволити користувачам відправляти повідомлення через веб форму.', + 'settings_api_default_record_limit' => 'Кількість записів за замовчанням, отримуваних API-запитом', + 'settings_api_max_record_limit' => 'Максимальна кількість записів, отримуваних API-запитом', + 'settings_api_max_requests_per_ip' => 'Максимальна кількість API-запитів на IP-адресу', + 'settings_banner' => 'Заставка показується нагорі вашого сайту, якщо тема її підтримує. Оптимальний розмір залежить від використовуваної теми. Зверніть увагу, що заставка замінить собою назву і слоган сайту.', + 'settings_blocks_per_row' => 'Число блоків, які будуть показані у кожному ряду.', + 'settings_cache_pages' => 'Дозволити або відключити кешування сторінок. Кешування дозволяє прискорити показ сторінок. Ми рекомендуємо використовувати кешування на завантажених сайтах. Пам\'ятайте, що доповіді будуть розміщені на сторінках сайту на основі розкладу, встановленого нижче (час життя кешу).', + 'settings_cache_pages_lifetime' => 'Установити час життя кешу', + 'settings_checkins' => 'Цей параметр дозволяє checkins на розгортанні. Це спрощений тип звіту, який не модерується, перш ніж він йде на головну сторінку, що вимагає певного налаштування вашого сайту. При включенні цього, переконайтеся, що ваш часовий пояс, настройка за Гринвічем і ваша тема підтримує checkins. При включенні цього, тільки теми для checkins стануть доступними на сторінці налаштувань надбудов/тем.', + 'settings_configure_map' => 'Встановити карту для відображення окремого місцезнаходження', + 'settings_default_category_colors' => 'Вибрати один колір для всіх категорій на сайті', + 'settings_default_category_icons' => 'Вибрати одну піктограму для всіх категорій на сайті.', + 'settings_default_location' => 'Країна, де буде встановлена платформа', + 'settings_display_contact' => 'Вмикає і вимикає панель контактів на головній сторінці.', + 'settings_display_howtohelp' => 'Вмикає і вимикає панель допомоги на головній сторінці.', + 'settings_display_items_per_page' => 'Кількість повідомлень які будуть показані на одній сторінці (Головна).', + 'settings_display_items_per_page_admin' => 'Кількість повідомлень які будут показані на одній сторінці (Admin).', + 'settings_flsms_download' => 'Хаб для вхідних повідомлень', + 'settings_flsms_synchronize' => 'Синхронізує повідомлення з платформою Ushahidi', + 'settings_flsms_text_1' => 'Телефонні номери, через які були отримані повідомлення', + 'settings_google_analytics' => 'Відслідковує відвідувачів Вашого сайта. Отримайте детальну статистику про відвідувачів', + 'settings_locale' => 'Вибрати мову веб-сайта', + 'settings_manually_approve_users' => 'Якщо ви встановлюєте цей параметр "так", ви повинні схвалити кожного окремого користувача, який створить обліковий запис на вашому сайті, призначаючи їм ролі (тобто Член, Адмін, СуперАдмін).', + 'settings_map_provider' => 'Визначає, яка карта буде використана на сайті', + 'settings_map_timeline' => 'Це відображає на часовій шкалі дату і час надходження звіту', + 'settings_private_deployment' => 'Встановлення цього значення в істину або так зробить вашу Ushahidi приватною, тільки користувачі, які мають облікові записи, які ви вкажете, будуть мати доступ до системи.', + 'settings_require_email_confirmation' => 'Якщо встановлено "так", користувачі отримають email з посиланням підтвердження перед дозволом реєстрації в розгортанні. Якщо Ви дозволите це після того, як ваше розгортання брало користувачів, їм буде відправлений запит підтвердити їх обліковий запис, щоб їм дозволили продовжити використовувати її.', + 'settings_server_host' => 'Місцезнаходження повідомлень', + 'settings_server_password' => 'Пароль для Email адреси, що отримує повідомлення', + 'settings_server_port' => 'Порт для отримання доступа до вхідних повідомлень через Email', + 'settings_server_ssl_support' => 'Потрібно для більш безпечного обміну повідомленнями', + 'settings_server_type' => 'Технологія отримання доступа до вхідних повідомлень через Email', + 'settings_server_username' => 'Email адреса, на яку будуть приходити повідомлення', + 'settings_share_site_stats' => 'Дозволяє отримати статистику повідомлень через API.', + 'settings_site_copyright_statement' => 'Завжди добре додавати авторські права до роботи. Для допомоги у виборі правильної ліцензії для ваших потреб, відвідайте http://creativecommons.org/choose/.', + 'settings_site_email' => 'Це email на який будуть відправлені всі email сповіщення и повідомлення з форми контактів.', + 'settings_site_message' => 'Це назва сайта, що буде відображена в верхній частині головної сторінки. Вона корисна, якщо ви хочете повідомити щось користувачам. Щоб видалити це поле, видаліть текст.', + 'settings_site_name' => 'Це назва сайту, що показується нагорі', + 'settings_site_submit_report_message' => 'Повідомлення, яке буде показуватися користувачам на сторінці заповнення даних про новий повідомленні. Можливе використання для інформування про юридичну відповідальність або інших інструкцій.', + 'settings_site_tagline' => 'Опис веб сайта в декількох словах.', + 'settings_site_timezone' => 'Це часовий пояс, в якому ваш сайт буде працювати. Це впливає на будь-які дії, які ви задали, що використовують час і дату, а також поточний час за замовчуванням для звітів на передній і задній частині сайту.', + 'settings_twitter_configuration' => 'Вибрати хештег, який буде використаний у твіттері', +); diff --git a/application/i18n/uk_UA/ui_admin.php b/application/i18n/uk_UA/ui_admin.php new file mode 100755 index 0000000000..85de4af6fc --- /dev/null +++ b/application/i18n/uk_UA/ui_admin.php @@ -0,0 +1,329 @@ + 'Немає доступу. Ваші облікові дані не є дійсними чи вашому запиту було відмовлено вручну', + 'access_denied_others' => 'Немає доступу. Ваш запит був оброблений, але сервер зараз перевантажений. Спробуйте пізніше', + 'access_level' => 'Рівень доступу', + 'actions' => 'Дії', + 'add_to_category' => 'Додати до категорії', + 'added' => 'додано', + 'added_edited' => 'додано/відредаговано', + 'addons' => 'Доповнення', + 'admin_role' => 'Адміністратор', + 'alerts' => 'Сповіщення', + 'alerts_received' => 'Сповіщення отримані', + 'all' => 'Все', + 'am' => 'AM', + 'anonymous' => 'Анонім', + 'anyone_role' => 'Будь-хто', + 'anywhere' => 'Скрізь', + 'api_banned' => 'API заблоковане', + 'api_logs' => 'Журнали API', + 'api_settings' => 'API Логи', + 'api_unban' => 'Розблокувати', + 'api_unban_all' => 'Розблокувати всіх', + 'approved' => 'підтверджено', + 'approve_auto' => 'Підтвердити автоматично', + 'approve_manual' => 'Підтвердити вручну', + 'archived' => 'Заархівовано', + 'are_you_sure_you_want_to' => 'Ви впевнені, що хочете', + 'are_you_sure_you_want_to_delete_this_item' => 'Ви впевнені, що хочете видалити це', + 'are_you_sure_you_want_to_delete_this_photo' => 'Ви впевнені, що хочете видалити це фото', + 'are_you_sure_you_want_to_switch_forms' => 'Ви впевнені, що хочете поміняти форми місцями', + 'assign' => 'Призначити', + 'assignments' => 'Призначення', + 'assign_badge' => 'Призначити значок', + 'author' => 'Автор', + 'author_email' => 'Email Автора', + 'back' => 'Назад', + 'banip_action' => 'Заблокувати ІР', + 'between_times' => 'У проміжках', + 'blocks' => 'Блоки', + 'body' => 'Тіло', + 'cancel' => 'Сказувати', + 'categories' => 'Категорії', + 'chart_display_error' => 'График невірно відображений', + 'check_message_valid' => 'Перевірте повідомлення', + 'check_number' => 'Перевірте номер', + 'check_sms_settings' => 'Перевірте налаштування СМС!', + 'checkin_details' => 'Подробиці реєстрації', + 'checkins' => 'Реєстрації', + 'cities_loaded' => 'Завантажені міста', + 'code' => 'код', + 'code_out_of_sync' => 'Версія кода не синхронна', + 'color' => 'Колір', + 'comments' => 'Коментарі', + 'confirmation_code' => 'Ваш код підтвердження сповіщень:', + 'confirm_msg' => 'Користувач був', + 'count' => 'Число', + 'country_not_found' => 'Країна не знайдена', + 'created_edited' => 'створено/редаговано', + 'create_report' => 'Створити повідомлення', + 'critical_upgrade' => 'Критичне оновлення', + 'csv' => 'CSV', + 'currently_active' => 'Поточно активні', + 'currently_inactive' => 'Поточно неактивні', + 'custom_forms_insufficient_permissions' => 'У вас немає достатніх прав для редагування наступних власних полів.', + 'daily' => 'Щоденно', + 'dashboard' => 'Дошка', + 'database' => 'база даних', + 'date_time' => 'Дата і час', + 'date_added' => 'Дату додано', + 'date_modified' => 'Дату змінено', + 'days_of_the_week' => 'Дні тижня', + 'db_out_of_sync' => 'Версія БД не синхронна.', + 'deleted' => 'видалено', + 'delete_action' => 'Видалити', + 'delete_all' => 'Видалити ці повідомлення', + 'delete_badge' => 'Видалити значок', + 'demo' => 'Демо', + 'description' => 'Опис', + 'disabled' => 'Відключено', + 'divider_start_field' => 'Початок', + 'divider_end_field' => 'Кінець', + 'divider_class' => 'клас div', + 'download_reports' => 'Завантажити звіти', + 'dropdown_choices' => 'Випадаючий вибори', + 'edited' => 'ВІДРЕДАГОВАНО', + 'edited_by' => 'Відредаговано', + 'edit_action' => 'Редагувати', + 'edit_log' => 'Редагувати журнал', + 'email' => 'Ел. пошта', + 'entire_collective' => 'Весь колектив', + 'error_geocoding' => 'Помилка geocoding! HTTP Помилка', + 'error_imap' => 'Не була встановлена IMAP PHP бібліотека', + 'error_twitter' => 'Невірні повноваження', + 'error_msg' => 'Помилка', + 'error_post_incident' => 'Помилка, не вдалося відправити подію', + 'every_six_hours' => 'Кожні шість годин', + 'every_twelve_hours' => 'Кожні дванадцать годин', + 'experimental' => 'Експериментальний', + 'faqs' => 'ЧАПи', + 'feed' => 'стрічка', + 'feedback' => 'Відгук', + 'feeds' => 'стрічки', + 'field_choices' => 'Список виборів', + 'field_default' => 'Значення за замовчанням', + 'field_datatype' => 'Тип даних', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Розмітка', + 'field_datatype_numeric' => 'Числовий', + 'field_datatype_text' => 'Звичайний текст', + 'field_height' => 'Висота (в рядках)', + 'field_hidden' => 'Приховане поле', + 'field_maxlength' => 'Максимальна кількість символів', + 'field_name' => 'Назва поля', + 'field_toggle' => 'Перемикати', + 'field_toggle_no' => 'Ні', + 'field_toggle_yes_close' => 'Так, закрито типово.', + 'field_toggle_yes_open' => 'Так, відкрито типово', + 'file_not_found_upload' => 'Не вдалося знайти завантажений файл', + 'file_open_error' => 'Не вдалося відкрити файл для читання', + 'form_not_exists' => 'Ця форма не існує!', + 'forum' => 'Форум', + 'free_text_field' => 'Поле для текста (Вільний текст)', + 'date_field' => 'Поле дати', + 'radio_field' => 'Поле радіокнопок', + 'checkbox_field' => 'Поле прапорців', + 'dropdown_field' => 'Спадне поле', + 'from' => 'Від', + 'from_date' => 'Від', + 'geonames_timeout' => 'Geoname помилка (таймаут)', + 'get_help' => 'Отримати допомогу', + 'get_more_themes' => 'Отримати більше тем', + 'get_more_plugins' => 'Отримати більше модулів', + 'header_actions' => 'Дії', + 'header_add_edit' => 'Додати/Редагувати', + 'header_email' => 'Ел. пошта', + 'header_manage_users' => 'Керування користувачами', + 'header_role' => 'Роль', + 'header_user' => 'Користувач', + 'help' => 'допомога', + 'hourly' => 'Щогодинно', + 'incident_feed' => 'Стрічка новин для', + 'installer_info' => 'Тека інсталятора все ще існує. Вилучіть теку установки. Це потенційна вразливість.', + 'instance' => 'Прив\'язка', + 'instances' => 'Прив\'язки', + 'instance_details' => 'Деталі прив\'язки', + 'invalid_parameter' => 'Неправильний параметр', + 'ip_address' => 'IP адреса', + 'is_date' => 'Це поле дати?', + 'ispublic_visible' => 'Хто може переглядати відповіді', + 'ispublic_submit' => 'Хто може підтверджувати відповіді', + 'keyword' => 'Ключове слово', + 'keywords' => 'Ключові слова', + 'label_email' => 'Email адреса:', + 'label_full_name' => 'Повне ім\'я:', + 'label_password' => 'Пароль:', + 'label_role' => 'Роль:', + 'label_username' => 'Ім\'я користувача:', + 'layers' => 'Шари', + 'login_role' => 'Модератор', + 'logout' => 'Вийти', + 'logs' => 'Логи', + 'manage' => 'Керувати', + 'manage_roles' => 'Керувати ролями і дозволами', + 'manage_users' => 'Керувати користувачами', + 'manage_users_edit' => 'Додати/редагувати', + 'manage_public_listing' => 'Управляти вашим публічним списком', + 'mark_as' => 'Відмітити як', + 'marked_as_not_spam' => 'Відмічено как не СПАМ', + 'marked_as_spam' => 'Відмічено как СПАМ', + 'match_no_documents' => 'Схожих документів не знайдено', + 'message' => 'Пошта', + 'messages' => 'Пошта', + 'messages_laconica' => 'Laconica повідомлення', + 'messages_twitter' => 'Повідомлення Twitter', + 'message_sent' => 'Ваше повідомлення було відправлено!', + 'mhi' => 'MHI', + 'minute' => 'Хвилина', + 'minutes' => 'Хвилини', + 'missing_parameter' => 'Відсутній параметр', + 'moderator' => 'Модератор', + 'modified' => 'змінено', + 'modify_timezone' => 'Змінити установку часового поясу', + 'move_down_action' => 'рухатися вниз', + 'move_up_action' => 'рухатися вгору', + 'multiple_hosted_instances' => 'Множинні прив\'язки', + 'my_alerts' => 'Мої сповіщення', + 'my_checkins' => 'Мої реєстрації', + 'my_profile' => 'Мій профіль', + 'my_reports' => 'Мої звіти', + 'my_votes' => 'Проголосували', + 'my_votes_up' => 'Додатний', + 'my_votes_down' => 'Від\'ємний', + 'name' => 'Ім\'я', + 'new_alert' => 'Створити нове сповіщення', + 'new_private' => 'Створити нове повідомлення', + 'new_password' => 'Новий пароль', + 'no' => 'Ні', + 'none_category_explanation' => 'Це особлива категорія, яка не буде відображатися на формі подачі звітів для користувачів, які подають звіти. Це використовується для зберігання звітів, які залишились без категорії (некатегоризовані звіти) в результаті видалення категорії.', + 'notification' => 'Сповіщення', + 'not_case_sensitive' => 'Не чутливий до регістру.', + 'not_found' => 'Не знайдено', + 'no_data' => 'Нема даних для відображення', + 'no_error' => 'Нема помилки', + 'no_result_display_msg' => 'Нема результатів до відображення!', + 'of' => 'з', + 'on_specific_count' => 'На вказане число', + 'openids' => 'OpenID', + 'page' => 'сторінка', + 'pages' => 'сторінки', + 'page_not_found' => 'Сторінка не знайдена', + 'page_not_found_message_with_contact' => 'Вибачте, сторінка, яку ви намагаєтеся переглянути, переміщена.

Спробуйте пошукати її на інших сторінках сайту?
Якщо ви потрапили на цю сторінку з іншої частини нашого сайту, зв\'яжіться з нами , щоб ми могли виправити наші помилки.

Ви по посиланню з іншого сайту?
Посилання з інших сайтів може іноді бути застарілими або неправильними. Розкажіть нам , звідки ви прийшли, і ми можемо спробувати зв\'язатися з тим сайтом, щоб вирішити цю проблему.

Ви ввели URL?
Ви могли набрати адресу (URL) неправильно. Спробуйте ввести знову.

', + 'page_not_found_message' => 'На жаль, сторінка, яку ви намагаєтеся переглянути, не тут.', + 'parameters_used' => 'Використані параметри', + 'password' => 'Пароль', + 'password_reset' => 'Скидання пароля', + 'password_reset_message_line_1' => 'Шановний(а)', + 'password_reset_message_line_2' => 'Ми отримали запит на скидання пароля', + 'password_reset_message_line_3' => 'Щоб змінити пароль, натисніть на посилання нижче (або скопіюйте та вставте його в адресний рядок браузера).', + 'password_reset_message_line_4' => 'Як ви просили, ваш пароль в даний час змінений. Ваш новий пароль наступний', + 'password_reset_subject' => 'Ushahidi пароль змінено', + 'phone' => 'Телефон', + 'please_select' => 'Будь ласка, виберіть', + 'pm' => 'PM', + 'post_method_not_used' => 'Дані не було відправлено', + 'preview' => 'Перегляд', + 'private_message' => 'Повідомлення', + 'private_messages' => 'Приватні повідомлення', + 'private_sent' => 'Приватне повідомлення надіслано', + 'private_subject' => 'Тема', + 'private_to' => 'До', + 'public_listing' => 'Публічне розміщення', + 'qualifiers' => 'Визначники', + 'read' => 'читати', + 'relevance' => 'Значимість', + 'report_title' => 'Заголовок звіту', + 'report_date' => 'Дата звіту', + 'reporters' => 'Оглядачі', + 'reporter_levels' => 'Рівні оглядача', + 'reports' => 'Звіти', + 'reputation' => 'Репутація', + 'required' => 'Обов\'язковий', + 'reset' => 'Скасувати', + 'response' => 'Відгук', + 'results' => 'Результати', + 'revoke' => 'Відміна', + 'riverid_exists_admin' => 'Ця електронна адреса вже має обліковий запис, керований CrowdmapID. Користувачеві потрібно буде використовувати свій існуючий пароль Crowdmap для входу.', + 'save_settings' => 'Розблокувати всіх', + 'search' => 'Пошук', + 'search_reports' => 'Шукати звіти', + 'searching_for' => 'шукаємо', + 'security_info_encryption_key' => 'Ключ шифрування як і раніше заданий типовим значенням. Це небезпечно і потрібно змінити.', + 'security_info_https' => 'Цей сайт подається через HTTP. Потрібно встановити на HTTPS для підвищення безпеки.', + 'security_info_instructions' => 'Вказівки доступні на вікі:', + 'select_download_format' => 'Виберіть потрібний формат завантаження звітів:-', + 'select_field_type' => '--- Виберіть Тип поля ---', + 'select_item' => 'Виберіть пункт', + 'select_trigger_before_response' => 'Ви повинні вибрати тригер, перш ніж вибрати відповідь.', + 'select_trigger_before_qualifiers' => 'Ви повинні вибрати тригер, перш ніж визначити кваліфікацію.', + 'sender' => 'Відправник', + 'send_to' => 'Надіслати до', + 'sent_from_website' => 'Це повідомлення було відправлено з вашого веб сайта о', + 'server_time' => 'Час сервера', + 'settings' => 'Налаштування', + 'showing_page' => 'Показана сторінка', + 'showing_results' => 'Показувана сторінка', + 'shown' => 'показано', + 'special_category' => 'Спеціальна категорія', + 'special_category_explanation' => 'Це особлива категорія, яка не буде відображатися на формі подачі звітів для користувачів, які подають звіти. Це використовується в поєднанні з функцією "Довірені Репортери".', + 'specific_area' => 'Вказана область', + 'state' => 'Стан', + 'statistics' => 'Статистика', + 'stats' => 'Статистика', + 'stats_collection_error' => 'Не вдалося! Наш сервер статистики не працює чи щось було неправильно налаштовано при встановленні Ushahidi.Будь ласка, повторіть спробу пізніше. Щоб обнулити статистику, змініть stat_id (поставте null) і stat_key (поставте 0) в параметрах таблиці в БД. УВАГА: Ви не зможете повернути дані!', + 'stats_collection_error_short' => 'Не вдалося зібрати дані статистики!', + 'specific_days' => 'Вказані дні', + 'subject' => 'Тема', + 'superadmin_role' => 'Суперадміністратор', + 'task_performed' => 'Завдання виконано', + 'text_field' => 'Поле для текста', + 'theme_name' => 'Ім\'я', + 'title' => 'Керування користувачами', + 'timeout' => 'Помилка таймауту', + 'to' => 'до', + 'total_records' => 'Всього записів', + 'to_date' => 'до', + 'translate_reports' => 'Перекласти повідомлення', + 'trigger' => 'Тригер', + 'triggering_user' => 'Тригерний користувач ', + 'triggers' => 'Тригери', + 'unapproved' => 'не підтверджено', + 'unknown' => 'Невідомо', + 'unknown_failure' => 'Невідомий збій', + 'unread' => 'не прочитано', + 'unsubscribe_message' => 'Ви більше не будете отримувати сповіщення від ', + 'update_link' => 'Натисніть щоб оновити', + 'upgrade_ushahidi' => 'Оновленя Ushahidi', + 'upgrade_ushahidi_status' => 'Статус оновлення Ushahidi', + 'upload_reports' => 'Завантажити повідомлення', + 'user' => 'Користувач', + 'users' => 'Користувачі', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Перевірено/неперевірено', + 'verify_unverify' => 'Перевіряти/Не перевіряти', + 'version' => 'Версія', + 'version_available' => 'готовий до оновлення.', + 'video_encoding' => 'Кодування відео', + 'view_private' => 'Приватні повідомлення', + 'view_site' => 'Переглянути сайт', + 'view_report' => 'Переглянути звіт', + 'welcome' => 'Ласкаво просимо,', + 'wiki' => 'Вікі', + 'xml' => 'XML', + 'yes' => 'Так', + 'your_search_for' => 'Ваш пошук для', + 'delete_all_instructions' => 'Натиснувши нижче кнопку, ви вилучите УСІ звіти у базі даних. Цим вам потрібно з обережністю користуватися, бо ця операція не зворотна.', + 'delete_all_backup' => 'Ми рекомендуємо вам зарезервувати базу даних перед продовження', + 'delete_all_button' => 'Я справді хочу вилучити %s звіт(ів) з бази даних.', + 'delete_all_confirm' => 'Ви справді хочете вилучити усі звіти?', + 'delete_all_no_reports' => 'Немає звітів для вилучення.', + 'user_no_logins' => 'Число входжень', + 'user_last_login' => 'Останній вхід', + 'user_confirmed_account' => 'Підтверджений профіль?', +); diff --git a/application/i18n/uk_UA/ui_main.php b/application/i18n/uk_UA/ui_main.php new file mode 100755 index 0000000000..5263aa8862 --- /dev/null +++ b/application/i18n/uk_UA/ui_main.php @@ -0,0 +1,622 @@ + 'Про нас', + 'access' => 'Доступ', + 'access_limits' => 'Обмеження доступа', + 'account_name' => 'Логін', + 'actions' => 'Дії', + 'action_confirm' => 'Ця операція не може бути скасована. Ви впевнені, що хочете продовжити?', + 'activate' => 'Активувати', + 'active' => 'Активний', + 'add' => 'Додати', + 'added_by' => 'Додано', + 'additional_data' => 'Додаткові дані', + 'additional_reports' => 'Додаткові звіти', + 'add_edit' => 'Додати/редагувати', + 'add_field' => 'Додати поле', + 'add_language' => 'Додати мову', + 'add_new' => 'Додати нове', + 'add_new_category' => 'Додати нову категорію', + 'add_translation' => 'Додати переклад', + 'admin' => 'Адміністрація', + 'alerts' => 'Отримувати сповіщення', + 'alerts_alert_me' => 'Повідомити, якщо повідомлення про подію виставлено біля позначеної точки:', + 'alerts_btn_send' => 'Надіслати', + 'alerts_email' => 'Email адреса:', + 'alerts_enter_email' => 'введіть email', + 'alerts_enter_mobile' => 'введіть телефонний номер з кодом країни', + 'alerts_get' => 'Отримувати сповіщення', + 'alert_has_been' => 'Оповіщення вже було', + 'alerts_mobile_phone' => 'Номер телефона:', + 'alerts_place_spot' => 'Або позначте точку на карті для того щоб отримувати сповіщення про події в межах 20 км', + 'alerts_place_spot2' => 'Якщо ви не можете знайти де ви знаходитесь, клацніть на потрібне місце на карті.', + 'alerts_rss' => 'RSS стрічка (скопіюйте url внизу)', + 'alerts_select_city' => 'Виберіть місто', + 'alerts_step1_select_city' => 'Step 1: Виберіть місто чи місце розташування:', + 'alerts_step2_send_alerts' => 'Step 2: Відправте сповіщення на:', + 'alerts_step3_select_catgories' => 'Крок 3 (необов’язковий): Виберіть категорії', + 'alert_confirm_previous' => 'Підтвердьте останній запит на сповіщення', + 'alert_saved' => 'Ваше сповіщення надіслане!', + 'all' => 'Всі', + 'allowed' => 'Дозволені', + 'allowed_tags' => 'Дозволені теги HTML: "%s".', + 'allowed_iframes' => 'Фрейми дозволені лише від: %s.', + 'all_categories' => 'Всі категорії', + 'all_time' => 'За весь час', + 'and' => 'та', + 'api' => 'API', + 'approve' => 'Підтвердити', + 'approved' => 'Підтверджено', + 'approved_reports' => 'Підтверджені повідомлення', + 'approve_this_report' => 'Підтвердити це повідомлення', + 'approximate' => 'Округлити', + 'archive' => 'Архів', + 'archived' => 'Архівовано', + 'ascending' => 'За збільшенням', + 'at' => 'в', + 'author' => 'Автор', + 'auto_checkin' => 'Автореєстрація', + 'avg_reports_per_day' => 'Сер. число звітів за день', + 'awaiting_approval' => 'Очікування підтвердження', + 'awaiting_verification' => 'Очікування перевірки', + 'badge' => 'Значок', + 'badges' => 'Значки', + 'badge_image' => 'Зображення значка', + 'badge_image_upload_your_own' => 'Або ви можете завантажити своє власне зображення знака замість цього.', + 'badge_pack' => 'Пакунок значків', + 'badge_select' => 'Вибрати значок', + 'blog' => 'Блог', + 'browse_profiles' => 'Перегляд профілів', + 'cancel' => 'Скасувати', + 'categories' => 'Категорії', + 'category' => 'Категорія', + 'category_filter' => 'Фільтр категорій', + 'category_has_been' => 'Категорія була ', + 'category_name' => 'Назва категорії', + 'change_date_range' => 'Змінити інтервал дат', + 'change_password' => 'Змінити пароль', + 'change_picture' => 'Змінити моє зображення', + 'choose' => 'Вибрати', + 'choose_data_points' => 'Вибрати точку даних для завантаження', + 'choose_date_range' => 'Або виберіть свій власний діапазон дат', + 'choose_field_type' => 'Вибрати тип поля', + 'cleanurl' => 'Чисті URL', + 'clear' => 'Очистити', + 'clear_map' => 'Очистити карту', + 'close' => 'Закрити', + 'clusters' => 'кластери', + 'color' => 'Колір', + 'comment' => 'Коментар', + 'comments' => 'Коментарі', + 'comment_details' => 'Деталі коментаря', + 'configuration_saved' => 'Налаштування збережені!', + 'configure' => 'Налаштувати', + 'confirm_email_successful' => 'Ви успішно підтвердили свою електронну адресу. Будь ласка, увійдіть нижче.', + 'confirm_email_successful_and_approval' => 'Ви успішно підтвердили свою електронну адресу! Адміністратор повинен схвалити ваш обліковий запис перед вашим входом', + 'confirm_email_failed' => 'Підтвердження електронною поштою не вдалося! Ви можете запитати нове підтвердження по електронній пошті нижче.', + 'contact' => 'Контакти', + 'contact_code' => 'Код безпеки', + 'contact_email' => 'Ваша електронна пошта', + 'contact_message' => 'Повідомлення', + 'contact_message_has_send' => 'Ваше повідомлення вже надіслано!', + 'contact_name' => 'Ваше Ім\'я', + 'contact_phone' => 'Ваш Номер Телефону', + 'contact_send' => 'Надіслати Повідомлення', + 'contact_subject' => 'Тема повідомлення', + 'copyright' => 'Авторські права ©', + 'create' => 'Створити', + 'create_edit' => 'Створити/редагувати', + 'create_new' => 'Створити', + 'create_new_password' => 'Створити Новий Пароль', + 'create_report' => 'Створити звіт', + 'credibility' => 'Достовірність', + 'current_password' => 'Поточний пароль', + 'custom_fields' => 'Власні поля', + 'data' => 'Інформація', + 'date' => 'Дата', + 'date_format' => '(мм/дд/рррр)', + 'date_time' => 'Дата і час', + 'day' => 'день', + 'deactivate' => 'Деактивувати', + 'default_location_name' => 'Київ, Україна', + 'delete' => 'Видалити', + 'deleted' => 'Видалено', + 'deletes' => 'Видаляє', + 'delete_disabled' => 'Видалення відключено', + 'delete_last' => 'Видалити останнє', + 'delete_report' => 'Видалити це повідомлення', + 'delete_selected' => 'Видалити виділене', + 'delete_spam' => 'Видалити СПАМ', + 'demo' => 'Демо', + 'description' => 'Опис', + 'descending' => 'За зменшенням', + 'detailed_location_example' => 'Приклад: Україна, Київ, Майдан Незалежності', + 'details' => 'Деталі', + 'direct_report' => 'Пряме повідомлення', + 'disabled' => 'Відключено', + 'disapprove' => 'Відхилити', + 'download_reports' => 'Стягти повідомлення', + 'download' => 'Завантажити', + 'edit' => 'Редагувати', + 'edit_form_fields' => 'Змінити поля форми', + 'edit_report' => 'Редагувати звіт', + 'email' => 'Ел. пошта', + 'email_address' => 'Адреса еmail', + 'email_configuration' => 'Налаштування сервера пошти', + 'email_server_host' => 'Хост сервера пошти', + 'email_server_password' => 'Пароль поштового сервера', + 'email_server_port' => 'Порт поштового сервера', + 'email_server_ssl_support' => 'Підтримка SSL поштовим сервером', + 'email_server_type' => 'Тип поштового сервера', + 'email_server_username' => 'Ім\'я користувача поштового сервера', + 'email_settings_comment_0' => 'Ваши налаштування будуть зв\'язані з цим Email', + 'email_settings_comment_00' => 'ля того щоб отримати повідомлення про події по Email, введіть нижче свій Email. Примітка, Email буде отримано', + 'email_settings_comment_1' => 'Сервери можуть попросити повну адресу Email', + 'email_settings_comment_2' => 'Пароль Email', + 'email_settings_comment_3' => 'Найчастіші порти: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Приклади: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Приклади: pop3, imap', + 'email_settings_comment_6' => 'Увімкнути або вимкнути SSL підключення', + 'empty' => '---ПОРОЖНЬО---', + 'end_point' => 'до', + 'error' => 'Помилка!', + 'example' => 'Приклад', + 'example_country' => 'Україна', + 'external_apps' => 'Зовнішні програми', + 'external_video_link' => 'Посилання на зовнішнє відео', + 'facebook' => 'Фейсбук', + 'feed' => 'Стрічка', + 'feedback' => 'Залиште вашу думку', + 'feedback_reports' => 'Будь ласка, дайте нам відгук з своїми враженнями, відправивши електронного листа на ', + 'feeds' => 'Стрічки', + 'feed_has_been' => 'Стрічка вже була', + 'feed_items' => 'Елементи стрічки', + 'feed_name' => 'Назва стрічки', + 'feed_url' => 'URL стрічки', + 'field_unused' => 'Невикористане поле', + 'file' => 'Файл', + 'file_over_max_allowed' => 'Ваш файл перевищує максимальний дозволений розмір.', + 'filters' => 'Фільтри', + 'filter_reports' => 'Фільтрувати звіти', + 'filter_reports_by' => 'Фільтрувати звіти за', + 'filter_reports_contain' => 'Фільтрувати звіти, що містять', + 'find' => 'Знайти', + 'find_location' => 'Знайти місце', + 'first_name' => 'Ім\'я', + 'force_run_scheduler' => 'Примусовий запуск планувальника', + 'forgot_password' => 'Забули пароль?', + 'form' => 'Форма', + 'forms' => 'Форми', + 'form_description' => 'Опис форми', + 'form_edit' => 'Змінити цю форму', + 'form_has_been' => 'Форму було', + 'form_title' => 'Заголовок форми', + 'from' => 'Від', + 'full_name' => 'Повне ім\'я', + 'geolocation_available' => 'GeoLocation доступне', + 'geometry_color' => 'Колір', + 'geometry_comments' => 'Коментарі', + 'geometry_label' => 'Мітка', + 'geometry_strokewidth' => 'Товщина риски', + 'go' => 'Перейти', + 'hashtag' => 'Хэштег', + 'has_been' => 'було', + 'help' => 'Як допомогти', + 'hidden' => 'Приховане', + 'hide' => 'Сховати', + 'hide_this_message' => 'сховати це повідомлення', + 'home' => 'Головна', + 'how_to_report' => 'Як повідомити', + 'https' => 'HTTPS', + 'id' => 'ІД', + 'identify_you' => 'Використане, щоб ідентифікувати вас на сайті відносно інших користувачів.', + 'image' => 'Картинка', + 'images' => 'Картинки', + 'image_icon' => 'Картинка/Ярлик', + 'inactive' => 'Неактивне', + 'inbox' => 'Вхідні', + 'incident' => 'Подія', + 'incidents_nearby' => 'Події поблизу', + 'incident_location' => 'Місцезнаходження події', + 'include' => 'Включити', + 'include_categories' => 'Включити категорії', + 'include_custom_fields' => 'Включити власні поля', + 'include_description' => 'Включити опис', + 'include_detail' => 'Включити максимальну кількість деталей', + 'include_latitude' => 'Включити широту', + 'include_location_information' => 'Включити інформацію про місцезнаходження', + 'include_longitude' => 'Включити довготу', + 'include_personal_info' => 'Включити особисту інформацію', + 'incoming_media' => 'Вхідне медіа', + 'information_evaluation' => 'Оцінка інформації', + 'input_location' => 'Введіть точне місцезнаходження', + 'insufficient_role' => 'Ваш обліковий запис не має права, щоб повністю увійти сюди. Зв\'яжіться з адміністратором.', + 'in_response_to' => 'У відповідь на', + 'ip_address' => 'IP адреса', + 'is_this_your_profile' => 'Це ваш профіль?', + 'item' => 'елемент', + 'items' => 'елементи', + 'item_details' => 'деталі елемента', + 'item_title' => 'Заголовок елемента', + 'key' => 'Ключ', + 'keywords' => 'Ключові слова', + 'kml_kmz_file' => 'KMZ/KML файл', + 'kml_kmz_upload' => 'Відправити KMZ/KML файл', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'мова', + 'last' => 'Останній', + 'last_month' => 'Останній місяць', + 'last_name' => 'Прізвище', + 'last_year' => 'Останній рік', + 'latitude' => 'Широта', + 'layers' => 'Шари', + 'layers_filter' => 'Інші шари', + 'layer_has_been' => 'Шар було', + 'layer_name' => 'Назва шара', + 'layer_url' => 'URL шара', + 'leave_a_comment' => 'Лишити коментар', + 'less_information' => 'Менше інформації', + 'level' => 'Рівень', + 'level_has_been' => 'Цей рівень був', + 'level_name' => 'Назва рівня', + 'limited' => 'Обмежений', + 'link' => 'Посилання', + 'list' => 'Список', + 'loading_reports' => 'Завантаження звітів', + 'location' => 'Положення', + 'locations' => 'Положення', + 'location_example' => 'Місто, Штат та/або країна', + 'login' => 'Логін', + 'login_account_creation_successful' => 'Обліковий запис успішно створено. Ви можете увійти зараз.', + 'login_confirmation_sent' => 'Підтвердження вже надіслано на вашу електронну адресу.', + 'login_approval_required' => 'Обліковий запис створено. Він має бути схвалений адміністратором, аби ви могли увійти.', + 'login_email_doesnt_exist' => 'Електронна адреса не існує. Спробуйте іншу або створіть нову.', + 'login_select_openid' => 'Клацніть постачальника вашого облікового запису', + 'login_with' => 'Увійти з', + 'login_userpass' => 'Електронна пошта та пароль', + 'login_openid' => 'OpenID', + 'login_signup' => 'Реєстрація', + 'login_signup_click' => 'Створити обліковий запис', + 'login_signup_confirmation_message' => 'Дякуємо вам за реєстрацію о %1$s. Щоб підтвердити вашу електронну пошту, перейдіть на наступну URL: %2$s', + 'login_signup_confirmation_subject' => 'Підтвердження реєстрації', + 'login_signup_admin_approval_message' => 'Новий користувач вже зареєструвався о %1$s. Для схвалення вашої реєстрації, будь ласка, перейдіть на наступну URL: %2$s', + 'login_signup_admin_approval_subject' => 'Схвалення нового користувача', + 'login_signup_approval_message' => 'Ваш обліковий запис вже схвалено для %1$s. Для входу перейдіть за наступним посиланням: %2$s', + 'login_signup_approval_subject' => 'Схвалений обліковий запис', + 'login_signup_text' => 'Створити обліковий запис зараз, щоб скористатися більшими можливостями на сайті.', + 'longitude' => 'Довгота', + 'map' => 'Карта ', + 'mark_read' => 'Виділити як прочитане', + 'mark_unread' => 'Виділити як непрочитане', + 'maximum_filesize' => 'Найбільший розмір файлу', + 'media' => 'Медіа', + 'media_filter' => 'Meдia фільтр', + 'members' => 'Учасники', + 'manage_your_account' => 'Управління вашим профілем', + 'message' => 'Повідомлення', + 'messages' => 'Повідомлення', + 'message_details' => 'Інформація про лист', + 'message_non_numeric_source' => 'Повідомлення від нечислового джерела:', + 'mobile' => 'Мобільний', + 'modify' => 'Оновити', + 'modify_date' => 'Оновити дату', + 'month' => 'місяць', + 'more' => 'Більше', + 'more_information' => 'Більше інформації', + 'multi_country_instance' => 'Чи містить Ushahidi декілька країн одночасно', + 'must_confirm_email_address' => 'Ви повинні підтвердити вашу електронну пошту для доступу до цього використання. Якщо ви втратили ваш лист підтвердження, то ви можете запросити новий нижче.', + 'name' => 'Назва', + 'nearby_report' => 'Сусідній звіт', + 'new' => 'Нове', + 'news' => 'Новини', + 'news_feeds' => 'Стрічки новин', + 'news_source' => 'Джерело новин', + 'new_category' => 'Нова категорія', + 'new_password' => 'Новий пароль', + 'new_report' => 'Новий звіт', + 'next' => 'Наступне', + 'no' => 'Ні', + 'no_checkins' => 'Нема реєстрацій для відображення.', + 'no_data' => 'Немає даних', + 'none' => 'Жодне', + 'notices' => 'Зауваження', + 'not_approved' => 'Не підтверджені', + 'not_approved_singular' => 'Не підтверджений', + 'not_selected' => '---Не обрано---', + 'not_spam' => 'не спам', + 'not_specified' => 'Не визначений', + 'no_reports' => 'Нема звітів', + 'no_results' => 'Нема результатів', + 'off' => 'Вимк.', + 'official_news' => 'Офіційні та основні новини', + 'on' => 'Увімк.', + 'option' => 'Опція', + 'optional' => 'Опціонально', + 'options' => 'Опції', + 'organization' => 'Організація', + 'organizations' => 'Організації', + 'organization_description' => 'Опис організації', + 'organization_email' => 'Email організації', + 'organization_has_been' => 'Організацію було', + 'organization_name' => 'Назва організації', + 'organization_phone_1' => 'Телефон організації 1', + 'organization_phone_2' => 'Телефон організації 1', + 'organization_website' => 'Сайт організації', + 'original' => 'Початковий', + 'original_description' => 'Початковий опис', + 'original_title' => 'Початковий заголовок', + 'other_ushahidi_instances' => 'Інші USHAHIDI приклади', + 'outbox' => 'Вихідні', + 'outgoing' => 'Вихідний', + 'page' => 'Сторінка', + 'pages' => 'Сторінки', + 'page_description' => 'Опис сторінки', + 'page_has_been' => 'Сторінку було', + 'page_tab_name' => 'Назва панелі сторінки', + 'page_title' => 'Заголовок сторінки', + 'parent_category' => 'Батьківська категорія', + 'password' => 'Пароль', + 'password_again' => 'Введіть пароль знову', + 'password_changed_successfully' => 'Пароль успішно змінено. Увійдіть нижче.', + 'password_forgot' => 'Забули пароль?', + 'password_reset_confirm' => 'Новий пароль був відправлений на ваш Email.', + 'password_save' => 'Запам\'ятати комп\'ютер?', + 'past_month' => 'Минулий місяць', + 'past_year' => 'Минулий рік', + 'pending' => 'Очікування', + 'per' => 'за', + 'personal_information' => 'Особиста інформація Опціонально.', + 'phone' => 'Телефон', + 'photos' => 'Фотографії', + 'pictures' => 'Зображення', + 'pictures_and_videos' => 'Зображення та відео', + 'pinpoint_location' => '* Пошук по назві місця розташування, або залиште точку на карті для визначення точного місцеположення', + 'play' => 'Програти', + 'please_note' => 'Замітка', + 'plugins' => 'Додатки', + 'plugin_url' => 'Вебсайт додатку', + 'public_profile' => 'Публічний профіль', + 'public_profile_url' => 'URL публічного профілю', + 'preview' => 'Показати', + 'preview_item' => 'Показати елемент', + 'preview_message' => 'Показати повідомлення', + 'previous' => 'Попереднє', + 'private' => 'Приватний', + 'profile_color' => 'Колір профілю', + 'profile_saved' => 'Профіль був збережений', + 'quick_stats' => 'Швидка статистика', + 'rating' => 'Рейтинг', + 'read' => 'Читати', + 'receive' => 'Отримати', + 'receive_from' => 'Отримати від', + 'receive_notifications' => 'Отримувати сповіщення', + 'recent_reports' => 'Останні звіти', + 'refresh_news_feeds' => 'Оновити стрічки новин', + 'registered_email' => 'Зареєстрована адреса', + 'remove' => 'видалити', + 'reply' => 'Відповісти', + 'report' => 'Звіт', + 'reports_listed' => 'Звіти (на карті, перераховані у хронологічному порядку) ', + 'reporter' => 'Оглядач', + 'reporters' => 'Оглядачі', + 'reporter_date' => 'Дата реєстрації оглядача', + 'reporter_email' => 'Email оглядача', + 'reporter_first_name' => 'Ім\'я оглядача', + 'reporter_has_been' => 'Оглядач був', + 'reporter_ip' => 'IP адреса оглядача', + 'reporter_last_name' => 'Прізвище оглядача', + 'reporter_level' => 'Рівень оглядача', + 'reporter_levels' => 'Рівні оглядача', + 'reporter_phone' => 'Телефон оглядача', + 'reports' => 'Звіти', + 'reports_btn_browse' => 'Переглянути', + 'reports_btn_submit' => 'Відправити', + 'reports_by_this_user' => 'Звіти від цього користувача', + 'reports_categories' => 'Категорії', + 'reports_count' => '%d Звіти', + 'reports_date' => 'Дата', + 'reports_description' => 'Опис', + 'reports_download_csv' => 'Звіт буде збережений в CSV форматі', + 'reports_email' => 'Електронна пошта', + 'reports_features' => 'Можливості', + 'reports_find_location' => 'Знайти місцеположення біля вас', + 'reports_first' => 'Ім\'я', + 'reports_last' => 'Прізвище', + 'reports_location_name' => 'Уточніть назву місцеположення', + 'reports_news' => 'Посилання на новини', + 'reports_optional' => 'Додаткова інформація', + 'reports_photos' => 'Завантажити фото', + 'reports_return' => 'Повернутися на сторінку звітів', + 'reports_select_city' => 'Вибрати місто', + 'reports_submitted' => 'Ваш звіт відправлено нашим співробітникам. При потребі ми обов\'язково зв\'яжемося з Вами', + 'reports_submit_new' => 'Відправити новий звіт', + 'reports_time' => 'Час', + 'reports_timeline' => 'Часова шкала', + 'reports_title' => 'Заголовок звіту', + 'reports_video' => 'Посилання на відео', + 'report_an_incident' => 'Повідомити про подію', + 'report_details' => 'Деталі звіту', + 'report_option_1' => 'Відправивши СМС на', + 'report_option_2' => 'Відправивши email на', + 'report_option_3' => 'Відправивши в твіттер повідомлення з хештеґом', + 'report_option_4' => 'Заповнивши цю форму', + 'report_option_external_apps' => 'За використанням програми', + 'report_saved' => 'Ваш звіт було збережено', + 'report_title' => 'Заголовок звіту', + 'request_information' => 'Потрібно більше інформації', + 'request_location' => 'Дізнатися про положення', + 'required' => 'Обов’язково', + 'requirements' => 'Вимоги', + 'resend_confirm_email' => 'Повторне підтвердження електронною поштою', + 'reset' => 'Переустановка', + 'reset_all_filters' => 'Очистити усі фільтри', + 'reset_password' => 'Оновити пароль', + 'retrieve_city_names' => 'Отримати назви міст для вибраних країн', + 'riverid_information' => 'Облікові записи управляються службою %s.', + 'riverid_exists_login' => 'У вас вже є обліковий запис, керований CrowdmapID! Спробуйте використати вашу пошту CrowdmapID та пароль для входу.', + 'role' => 'Роль', + 'rss' => 'RSS', + 'save' => 'Зберегти', + 'saved' => 'Збережений', + 'save_add_new' => 'Зберегти і додати нове', + 'save_close' => 'Зберегти і закрити', + 'save_report' => 'Зберегти звіт', + 'schedule' => 'Розклад', + 'scheduler' => 'Планувальник', + 'scheduler_day' => 'День', + 'scheduler_hour' => 'Година', + 'scheduler_log' => 'Логи планувальника', + 'scheduler_minute' => 'Хвилина', + 'scheduler_weekday' => 'День тижня', + 'search' => 'Пошук', + 'search_results' => 'Результати пошуку', + 'security_code' => 'Захисний код', + 'select_all' => 'Вибрати все', + 'select_field_type' => 'Вибрати тип поля', + 'select_form_type' => 'Вибрати тип форми', + 'select_in_map' => 'Вибрати на карті', + 'select_multiple' => 'Вибрати декілька', + 'select_one' => 'Виберіть мінімум один елемент', + 'select_theme' => 'Вибрати тему', + 'send' => 'Відправити', + 'send_confirmation' => 'Надіслати підтвердження', + 'sending_to' => 'Відправлення до', + 'sent' => 'Відправлено', + 'sent_by' => 'Відправлено', + 'server_address' => 'Адреса сервера', + 'server_type' => 'Тип сервера', + 'service' => 'Служба', + 'service_username' => 'Логін користувача служби', + 'service_user_id' => 'ID користувача служби', + 'share' => 'Розділити', + 'shared_data' => 'Спільна інформація', + 'share_has_been' => 'Обмін вже був', + 'sharing' => 'Сумісно', + 'shorter_map' => 'Коротша карта', + 'show' => 'Показати', + 'show_all' => 'Показати всі', + 'show_messages' => 'Показати повідомлення', + 'showing_reports_from' => 'Показані звіти від %1$s до %2$s', + 'site' => 'Сайт', + 'site_email_address' => 'email сайта', + 'site_url' => 'URL Сайта', + 'smaller_map' => 'Менша карта', + 'sms' => 'СМС', + 'sorry_no_badges' => 'На жаль, ви не маєте жодних значків.', + 'source' => 'Джерело', + 'source_name' => 'Назва джерела', + 'sort' => 'Сортувати', + 'sort_by' => 'Сортувати за', + 'source_url' => 'URL джерела', + 'spam' => 'СПАМ', + 'ssl_support' => 'SSL підтримка?', + 'start_point' => 'Від', + 'step' => 'Крок', + 'submit' => 'Відправити звіт', + 'submitted_by' => 'Поданий від %1$s через %2$s', + 'submit_sms' => 'Відправити через SMS', + 'submit_sms1' => 'Відправити SMS для', + 'submit_sms2' => 'на Вашому телефоні', + 'success' => 'Успішно!', + 'successfuly_imported' => 'Успішно імпортировано', + 'surname' => 'Прізвище', + 'survey' => 'Огляд', + 'system' => 'Система', + 'taller_map' => 'Вища карта', + 'tcp_port' => 'TCP порт', + 'themes' => 'Теми', + 'theme_default' => 'Тема Ushahidi за замовчанням', + 'theme_settings' => 'Налаштування теми', + 'this' => 'Цей', + 'this_day' => 'Сьогодні', + 'this_month' => 'В цьому місяці', + 'this_week' => 'Цього тижня', + 'this_year' => 'В цьому році', + 'this_is_your_profile' => 'Це ваш профіль.', + 'time' => 'час', + 'title' => 'Заголовок', + 'to' => 'до', + 'today' => 'Сьогодні', + 'today_at' => 'Сьогодні в', + 'token' => 'Знак', + 'total_reports' => 'Всього звітів', + 'translated' => 'Перекладено', + 'translated_description' => 'Перекладений опис', + 'translated_title' => 'Перекладений заголовок', + 'translate_to' => 'Перекласти на', + 'translation' => 'Переклад', + 'translation_saved' => 'Переклад було збережено', + 'trusted' => 'Перевірено', + 'type' => 'Тип', + 'twitter' => 'Твіттер', + 'unable_send_email' => 'Неможливо надіслати пошту.', + 'uncategorized_reports' => 'Звіти без категорій', + 'unread' => 'не прочитано', + 'unverified' => 'Не підтверджено', + 'update_feeds' => 'Оновити стрічки', + 'upload' => 'Завантажити', + 'upload_guide' => 'Переглянути наш звіт вивантаживши посібники: -', + 'upload_docs_1' => 'Вивантажити інструкцію XML', + 'upload_docs_2' => 'Вивантажити інструкцію CSV', + 'upload_file' => 'Файли для завантаження', + 'upload_reports' => 'Передати звіти на сайт', + 'upload_reports_custom_forms' => 'Власне поле стовпців повинно мати свій form_id докладений до них, наприклад, власне поле Тест, на типовій формі, ідентифікатор якої є 1, буде Тест-1. Під час імпорту власних полів форми, переконайтеся, що', + 'upload_reports_detail_1' => 'У даній формі, ви можете імпортувати події до движка Ushahidi', + 'upload_reports_detail_2' => 'Звіти мають бути вивантажені у форматі CSV або XML.', + 'upload_reports_detail_3' => 'Якщо ID події вже існує в БД, то запис у CSV/XML файлі не буде принятий.', + 'upload_reports_detail_4' => 'Повинні міститися як мінімум заголовок і дата події', + 'upload_reports_detail_4b' => 'Якщо стовпці широти і довготи не надані, то місце розташування буде прив\'язана до місцевості за допомогою Google Geocoder.', + 'upload_reports_detail_4c' => 'Якщо імпорт додаткової інформації, тобто особистої інформації та / або власних полів форми', + 'upload_reports_detail_4d' => 'Принаймні одне з полів особистої інформації (ім\'я, прізвище, адресу електронної пошти) повинне існувати. Порожні рядки не будуть імпортовані', + 'upload_reports_detail_4e' => 'Ваші дані для випадаючого списку полів, перемикачів і прапорців збігаються з параметрами, наданими для власного поля на вашому екземплярі', + 'upload_reports_detail_4f' => 'Декілька параметрів мають бути відокремлені комами, наприклад, якщо ваш вибір фруктів - яблука, манго і виноград, то ваші записи для цього повинні бути "яблука, манго, виноград"', + 'upload_reports_detail_4g' => 'Значення полів дати є у наступному форматі: мм/дд/рррр, тобто 3 жовтня 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Приклад CSV звіту', + 'upload_reports_detail_6' => '#,ЗАГОЛОВОК ПОДІЇ, ДАТА ПОДІЇ,МІСЦЕПОЛОЖЕННЯ,ОПИС,КАТЕГОРІЯ,ПІДТВЕРДЖЕНИЙ,ПЕРЕВІРЕНИЙ
+"1","ПОЖЕЖА В ОШЕ","2010-06-10 01:06:00","ОШ","ТРИ ВИПАДКИ БУЛИ ПІДТВЕРДЖЕНІ УРЯДОМ","СМЕРТІ, ГРОМАДЯНСЬКІ, ",ТАК,НІ', + 'upload_reports_detail_7' => '"2","БІЖЕНЦІ","2010-06-11 10:10:00","ЖАЛАЛАБАД","БІЖЕНЦІ ПОВСЮДУ","ДОПОМОГА, СМЕРТІ",ТАК,ТАК', + 'upload_successful' => 'Завантаження успішно завершене', + 'upload_video' => 'Вивантажити Відео', + 'url' => 'URL', + 'user' => 'Користувач', + 'username' => 'Логін', + 'ushahidi_admin' => 'Адміністратор Ushahidi', + 'verification' => 'Підтвердження', + 'verified' => 'Перевірено', + 'verified_reports' => 'Перевірені звіти', + 'verify' => 'Перевірити', + 'verify_this_report' => 'Перевірити цей звіт', + 'version' => 'Версія', + 'via' => 'через', + 'video' => 'Відео', + 'view' => 'Показати', + 'views' => 'Покази', + 'view_all' => 'Показати ВСЕ', + 'view_all_feeds' => 'Показати всі стрічки', + 'view_all_reports' => 'Показати всі звіти', + 'view_items' => 'Показати елементи', + 'view_more' => 'Дивитися більше', + 'view_public_profile' => 'Переглянути публічний профіль', + 'view_report' => 'Показати звіти', + 'view_reports' => 'Показати звіт', + 'view_video' => 'Переглянути відео', + 'visible' => 'Видимий', + 'waiting_approval' => 'Очікування підтвердження', + 'waiting_verification' => 'Очікування перевірки', + 'wider_map' => 'Ширша карта', + 'web_form' => 'Веб-форма', + 'web' => 'Веб', + 'weight' => 'Вага', + 'yes' => 'Так', + 'yesterday' => 'Вчора', + 'your_dashboard' => 'Ваша дошка', + 'your_file' => 'Ваш файл', + 'zoom_in' => 'Збільшити', + 'zoom_out' => 'Зменшити', +); diff --git a/application/i18n/uk_UA/upgrade.php b/application/i18n/uk_UA/upgrade.php new file mode 100755 index 0000000000..c7da30d6c6 --- /dev/null +++ b/application/i18n/uk_UA/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Неправильні дані. Введіть 0 як Ні або 1 як Так', + ) , + 'upgrade_automatic' => 'Автоматичне оновлення', + 'upgrade_available' => 'Доступні оновлення', + 'upgrade_continue_btn_text' => 'Продовжити', + 'upgrade_db_btn_text' => 'Оновити', + 'upgrade_db_text_1' => 'Зараз відбудеться оновлення бази даних з версії', + 'upgrade_db_text_2' => 'до найновішої версії бази даних', + 'upgrade_db_text_3' => 'Натисніть на кнопку "Оновити" і зачекайте', + 'upgrade_db_text_4' => 'Якщо ви хочете зробити резервну копію бази даних перед оновленням, відзначте галочкою прапорець нижче', + 'upgrade_db_text_5' => 'Зробити резервну копію бази даних перед оновленням (Рекомендується)', + 'upgrade_db_title' => 'Оновлення бази даних Ushahidi ', + 'upgrade_db_info' => 'Ushahidi вже оновлено! Перед продовження вам потрібно оновити вашу базу даних до найновішої версії (%s).', + 'upgrade_db_up_to_date' => 'Версія вашої бази даних найновіша.', + 'upgrade_failed' => 'Оновлення перервалося', + 'upgrade_manual' => 'Ручне оновлення', + 'upgrade_status' => 'Стан оновлення Ushahidi', + 'upgrade_text_1' => 'Як оновити Ushahidi вручну', + 'upgrade_text_2' => 'Крок 1:: Завантажте останню версію ushahidi з http://download.ushahidi.com', + 'upgrade_text_3' => 'Крок 2:: В залежності від ОС вебсервера, виберіть потрібний канал передачі (i.e: telnet, ftp, ssh) для входа на веб сервер и повністю замініть вміст останньою версією Ushahidi. Крім:', + 'upgrade_text_4' => 'Крок 4:: Натисніть на кнопку ""Продовжити": щоб оновити таблиці', + 'upgrade_tables' => ' Крок 3: Перегляньте sql теку. Вручну виконайте оновлення - . Sql файлу, з поточною встановленою версією бази даних до останнього оновлення sql файлу.', + 'upgrade_text_5' => 'Для автоматичного оновлення натисніть нижче', + 'upgrade_text_6' => 'Для автоматичного оновлення натисніть кнопку нижче.', + 'upgrade_title_text' => 'В даний час ви використовуєте Ushahidi v%1$s з версією бази даних %2$d, що працює на %3$s', + 'upgrading' => 'Оновлюється', + 'upgrade_ftp_text' => 'Щоб продовжити просте оновлення серверу FTP, на якому розміщений ваш веб-сайт, потрібна наступна інформація.', + 'upgrade_ftp_hostname' => 'FTP сервер :Наприклад: "localhost"', + 'upgrade_ftp_password' => 'FTP пароль:', + 'upgrade_ftp_username' => 'FTP ім\'я користувача:', + 'upgrade_status_info' => 'У вас остання версія Ushahidi.', + 'upgrade_status_info_2' => 'Вам не потрібно оновлювати.', + 'upgrade_db_version' => 'Версія бази даних: %d', + 'upgrade_warning_software_version' => 'Увага: Версія програми в version.php і базі даних не збігається.', + 'upgrade_warning_db_version' => 'Увага: Версія програми в version.php і базі даних не збігається.', + 'upgrade_database' => 'База даних:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'БЕТА!', + 'download' => 'Завантажується остання версія ushahidi...', + 'log_file' => 'Файл журналу', + 'successfully_downloaded' => 'Успішно завантажено. Розпаковуються…', + 'failed_downloading' => 'Завантаження провалилося.', + 'successfully_unpacked' => 'Успішно розпаковано. Копіюються файли…', + 'failed_unpacking' => 'Розпакування провалилося.', + 'successfully_copied' => 'Успішно скопійовано. Оновлюється база даних…', + 'failed_copying' => 'Копіювання файлів провалилося.', + 'backup_success' => 'Успішне резервування та оновлення бази даних.', + 'backup_failed' => 'Резервування бази даних провалилося.', + 'dbupgrade_success' => 'Успішне оновлення бази даних.', + 'deleting_files' => 'Видаляються завантажені файли…', + 'upgrade_success' => 'УСПІШНЕ ОНОВЛЕННЯ. Перегляньте журнал', +); diff --git a/application/i18n/ur_PK/alerts.php b/application/i18n/ur_PK/alerts.php new file mode 100644 index 0000000000..b0b781358f --- /dev/null +++ b/application/i18n/ur_PK/alerts.php @@ -0,0 +1,7 @@ + 'rtl', +); diff --git a/application/i18n/ur_PK/database.php b/application/i18n/ur_PK/database.php new file mode 100644 index 0000000000..b0b781358f --- /dev/null +++ b/application/i18n/ur_PK/database.php @@ -0,0 +1,7 @@ + 'متعلق ', + 'alerts' => 'الرٹ حاصل کریں', + 'all' => 'فلٹرز', + 'contact' => 'ہم سے رابطہ', + 'feedback' => 'ائے دیں', + 'filters' => 'سب کچھ', + 'home' => 'صفحۂ اوّل', + 'news' => 'تصاویر', + 'pictures' => 'خبریں', + 'remove' => 'remove', + 'reports' => ' رپورٹس', + 'submit' => 'رپورٹ بھیجیں ', + 'video' => ' رپورٹس', +); diff --git a/application/i18n/ur_PK/upgrade.php b/application/i18n/ur_PK/upgrade.php new file mode 100644 index 0000000000..b0b781358f --- /dev/null +++ b/application/i18n/ur_PK/upgrade.php @@ -0,0 +1,7 @@ + array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ?', + 'email_check' => 'Phần địa chỉ email đã được đăng ký và nhận cảnh báo từ địa điểm đó.', + 'length' => 'Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , + 'alert_country' => array( + 'single_country' => 'Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm cảnh báo nằm trong quốc gia %s.', + ) , + 'alert_lat' => array( + 'between' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + 'required' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + ) , + 'alert_lon' => array( + 'between' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + 'required' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + ) , + 'alert_mobile' => array( + 'length' => 'Phần khung thông tin di động dường như không chứa các chữ số hợp với yêu cầu.', + 'mobile_check' => 'Số di động này đã được đăng ký và nhận thông tin từ địa điểm đó.', + 'numeric' => 'Phần khung thông tin về điện thoại di động chứa dữ liệu không hợp lệ. Xin vui lòng nhập vào số liệu kèm theo mã quốc gia.', + 'one_required' => 'Bạn phải điền vào hoặc phần số di động của bạn hoặc địa chỉ email', + 'required' => 'Khung thông tin điện thoại di động cần được đánh dấu chọn.', + ) , + 'alert_radius' => array( + 'in_array' => 'Bạn vẫn chưa thiết lập bán kính hợp lệ trên bản đồ.', + 'required' => 'Bạn vẫn chưa chọn bán kính trên bản đồ.', + ) , + 'alert_recipient' => array( + 'required' => 'Bạn vẫn chưa chỉnh cảnh báo về người gửi.', + ) , + 'alerts_subscribed' => 'Bạn đã đăng ký phần cảnh báo cho các phần mục sau', + 'code_already_verified' => 'Mã đã được xác nhận trước đó!', + 'code_not_found' => 'Không tìm thấy mã xác nhận! Xin vui lòng xác nhận rằng bạn đã điền vào đúng đường dẫn liên kết.', + 'code_verified' => 'Mã của bạn không được xác nhận chính xác. Bạn sẽ nhận được cảnh báo về vấn đề này ngay lập tức.', + 'confirm_request' => 'Để xác nhận yêu cầu về cảnh báo của bạn, vui lòng truy cập', + 'create_more_alerts' => 'Quay trở về trang cảnh báo để tạo các cảnh báo khác', + 'email_alert_request_created' => 'Yêu cầu nhận cảnh báo bằng email của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến', + 'email_code' => 'Xin điền vào mã xác nhận từ email mà bạn nhận được ở phần bên dưới:', + 'email_error_head' => 'Yêu cầu gửi email cảnh báo của bạn VẪN CHƯA được lưu!', + 'email_ok_head' => 'Yêu cầu nhận email cảnh báo của bạn đã được lưu!', + 'error' => 'Hiện hệ thống không thể xử lý yêu cầu xác nhận của bạn!', + 'mobile_alert_request_created' => 'Yêu cầu nhận cảnh báo bằng điện thoại của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến', + 'mobile_code' => 'Xin điền vào mã xác nhận từ SMS mà bạn nhận được trên điện thoại ở phần bên dưới:', + 'mobile_error_head' => 'Yêu cầu gửi tin nhắn cảnh báo đến điện thoại của bạn VẪN CHƯA được lưu!', + 'mobile_ok_head' => 'Yêu cầu nhận tin nhắn cảnh báo trên điện thoại của bạn đã được lưu!', + 'settings_error' => 'Việc triển khai này vẫn chưa được thiết lập chính xác trong việc xử lý các cảnh báo', + 'unsubscribe' => 'Bạn nhận được email này vì bạn đã đăng ký theo dõi việc nhận các cảnh báo. Nếu bạn không muốn nhận các cảnh báo trong thời gian tới hãy truy cập', + 'unsubscribed' => 'Bạn sẽ không còn nhận các cảnh báo từ', + 'unsubscribe_failed' => 'Hiện chúng tôi không thể gỡ bỏ chế độ đăng ký từ bạn. Xin vui lòng xác nhận là bạn đã truy cập vào liên kết đúng cú pháp.', + 'verification_email_subject' => 'cảnh báo - xác nhận', + 'verify_code' => 'Bạn sẽ không còn nhận được các cảnh báo về địa điểm này cho tới khi bạn xác nhận yêu cầu của mình.', +); diff --git a/application/i18n/vi/auth.php b/application/i18n/vi/auth.php new file mode 100644 index 0000000000..ba3021ae24 --- /dev/null +++ b/application/i18n/vi/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'Email mà bạn cung cấp không phải là một địa chỉ email hợp lệ.', + 'exists' => 'Rất tiếc, một người dùng khác đã đăng ký tài khoản với tên của địa chỉ email này.', + 'length' => 'Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài.', + 'required' => 'Phần khung thông tin email không được để trống.', + ) , + 'name' => array( + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + 'standard_text' => 'Phần khung thông tin tên người dùng không được chứa các ký tự vốn không được cho phép.', + ) , + 'current_password' => array( + 'length' => 'Phần khung thông tin mật khẩu phải có ít nhất 8 ký tự về độ dài.', + 'login error' => 'Xin vui lòng kiểm tra lại phần thông tin về email và mật khẩu bạn đã điền vào có hợp lệ hay không.', + 'matches' => 'Vui lòng điền vào phần mật khẩu mà bạn đã cung cấp ở hai phần phía trước.', + 'required' => 'Phần khung thông tin mật khẩu không được để trống.', + 'alpha_dash' => 'Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang.', + 'incorrect' => 'Phần mật khẩu hiện tại bạn đã điền vào cho tài khoản của mình không đúng. Vui lòng thử lại lần nữa.', + ) , + 'new_password' => array( + 'length' => 'Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài.', + 'login error' => 'Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ.', + 'matches' => 'Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước.', + 'required' => 'Phần mật khẩu không được để trống.', + 'alpha_dash' => 'Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang.', + ) , + 'password' => array( + 'default' => 'Xảy ra lỗi khi bạn đăng nhập.', + 'length' => 'Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài.', + 'login error' => 'Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ.', + 'matches' => 'Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước.', + 'required' => 'Phần mật khẩu không được để trống.', + 'riverid server down' => 'Hệ thống máy chủ cho việc xác nhận hiện đang ngừng phục vụ. Xin vui lòng thử lại sau.', + 'riverid' => '%s', + 'alpha_dash' => 'Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang.', + ) , + 'password_confirm' => array( + 'matches' => 'Phần xác nhận mật khẩu phải có mật khẩu trùng với phần mật khẩu mà bạn đã cung cấp.', + ) , + 'resetemail' => array( + 'email' => 'Email mà bạn cung cấp không phải là một địa chỉ email hợp lệ.', + 'invalid' => 'Rất tiếc, chúng tôi hiện không có địa chỉ email của bạn', + 'required' => 'Phần khung thông tin email không được để trống.', + ) , + 'role' => array( + 'superadmin_modify' => 'Chỉ có người mới có thể hiệu chỉnh các Quản Trị Viên Đứng Đầu khác hoặc nâng cấp độ người dùng thông thường thành Quản Trị Viên.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Định dạng về quyền phân phối dạng người dùng không hợp lệ.', + 'length' => 'Phần khung thông tin vai trò phải có ít nhất 5 ký tự hoặc tối đa 30 ký tự về độ dài.', + 'required' => 'Bạn phải xác định ít nhất một vai trò của người dùng.', + 'values' => 'Bạn phải chọn hoặc vai trò Quản Trị Viên hoặc Người Dùng thông thường.', + ) , + 'token' => array( + 'invalid' => 'Phần dữ liệu về quên mật khẩu không hợp lệ', + 'required' => 'Đã yêu cầu về việc quên mật khẩu', + ) , + 'username' => array( + 'admin' => 'Vai trò người dùng quản trị không thể được hiệu chỉnh.', + 'alpha_numeric' => 'Phần thông tin về đường dẫn liên kết đến hồ sơ công cộng chỉ được chứa các ký tự số và chữ.', + 'exists' => 'Rất tiếc, đường dẫn liên kết đến hồ sơ cá nhân này hiện đã được đăng ký cho người khác.', + 'length' => 'Phần khung thông tin liên kết đến hồ sơ cá nhân phải có ít nhất 2 ký tự hoặc tối đa 100 ký tự về độ dài.', + 'login error' => 'Xin vui lòng kiểm tra phần thông tin đường dẫn liên kết đến hồ sơ công cộng là hợp lệ.', + 'required' => 'Phần khung thông tin đường dẫn liên kết đến hồ sơ công cộng không được để trống.', + 'superadmin' => 'Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh', + 'csrf' => 'Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa người dùng này không?', + ) , +); diff --git a/application/i18n/vi/bug.php b/application/i18n/vi/bug.php new file mode 100644 index 0000000000..08b3dc5402 --- /dev/null +++ b/application/i18n/vi/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'required' => 'Vui lòng điền vào mã an ninh.', + ) , + 'email' => array( + 'email' => 'Phần thông tin về địa chỉ email không chứa địa chỉ email hợp lệ?', + 'length' => 'Phần khung thông tin email phải chứa ít nhất 4 ký tự và tối đa 64 ký tự về độ dài.', + 'required' => 'Phần khung thông tin email yêu cầu phần lựa chọn phải được đánh dấu chọn.', + ) , + 'error' => array( + 'required' => 'Phần khung thông tin về lỗi không được để trống.', + ) , + 'subject' => array( + 'length' => 'Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về chủ đề không được để trống.', + ) , + 'yourname' => array( + 'length' => 'Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về tên không được để trống.', + ) , +); diff --git a/application/i18n/vi/category.php b/application/i18n/vi/category.php new file mode 100644 index 0000000000..37f734b499 --- /dev/null +++ b/application/i18n/vi/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'Phần khung thông tin màu sắc phải chứa chính xác 6 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về màu sắc không được để trống.', + ) , + 'category_description' => array( + 'required' => 'Phần khung thông tin về mô tả không được để trống.', + ) , + 'category_image' => array( + 'size' => 'Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 50KB.', + 'type' => 'Phần khung thông tin về hỉnh ảnh chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF.', + 'valid' => 'Phần khung thông tin về hỉnh ảnh không chứa định dạng tập tin hợp lệ', + ) , + 'category_title' => array( + 'length' => 'Phần khung thông tin tiêu đề phải chứa ít nhất 3 ký tự và tối đa 80 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về tiêu đề không được để trống.', + ) , + 'parent_id' => array( + 'already_parent' => 'Bạn không thể giảm cấp phân loại của phần phân loại khi phần đó đã được giảm cấp.', + 'exists' => 'Phân loại gốc không tồn tại.', + 'numeric' => 'Phần khung thông tin về phân loại gốc phải ở dạng số.', + 'parent_trusted' => 'Phần khung thông tin về phân loại gốc phải không thể mang thuộc tính là phân loại đặc biệt', + 'required' => 'Phần khung thông tin về thư mục gốc không được để trống.', + 'same' => 'Phần phân loại và phân loại gốc không được phép ở cùng dạng.', + 'special' => 'Phân loại đặc biệt không được phép mang thuộc tính là phân loại giảm cấp.', + ) , +); diff --git a/application/i18n/vi/comments.php b/application/i18n/vi/comments.php new file mode 100644 index 0000000000..47e073b619 --- /dev/null +++ b/application/i18n/vi/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'required' => 'Vui lòng điền vào mã an ninh.', + 'valid' => 'Bạn đã điền vào sai mã an ninh.', + ) , + 'comment_author' => array( + 'length' => 'Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + ) , + 'comment_description' => array( + 'required' => 'Phần khung thông tin về bình luận không được để trống.', + ) , + 'comment_email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , +); diff --git a/application/i18n/vi/contact.php b/application/i18n/vi/contact.php new file mode 100644 index 0000000000..4fc999927f --- /dev/null +++ b/application/i18n/vi/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'valid' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'required' => 'Vui lòng điền vào mã an ninh.', + ) , + 'contact_email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , + 'contact_message' => array( + 'required' => 'Phần nội dung tin nhắn không được để trống.', + ) , + 'contact_name' => array( + 'length' => 'Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + ) , + 'contact_subject' => array( + 'length' => 'Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về chủ đề không được để trống.', + ) , + 'email_send' => array( + 'failed' => 'Xảy ra lỗi khi gửi đi tin nhắn của bạn.', + ) , +); diff --git a/application/i18n/vi/core.php b/application/i18n/vi/core.php new file mode 100644 index 0000000000..1558cbffc6 --- /dev/null +++ b/application/i18n/vi/core.php @@ -0,0 +1,35 @@ + 'tập tin cấu hình', + 'controller' => 'trình điều khiển', + 'driver' => 'driver', + 'driver_implements' => 'The %s driver cho phần thư viện %s phải mang tính hoàn thiện cho phần giao diện %s.', + 'driver_not_found' => 'Không tìm thấy driver %s sử dụng cho thư viện %s.', + 'errors_disabled' => 'Bạn có thể truy cập vào trang chủ hoặc try again.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Không thể hoàn tất việc thực thi yêu cầu', + 'helper' => 'trình giúp đỡ', + 'invalid_filetype' => 'Loại tập tin được yêu cầu, .%s, không được phép xuất hiện trong phần xem tập tin cấu hình của bạn.', + 'invalid_method' => 'Phương thức %s không hợp lệ được gọi trong %s', + 'invalid_property' => 'Thuộc tính %s không tồn tại trong class %s.', + 'library' => 'thư viện', + 'log_dir_unwritable' => 'Thư mục chứa tập tin nhật trình không thể ghi được dữ liệu: %s', + 'model' => 'mô hình', + 'no_controller' => 'Ushahidi không thể xác định được trình điều khiển để xử lý yêu cầu này: %s', + 'no_default_route' => 'Xin vui lòng thiết đặt route mặc định trong phần config/routes.php', + 'page_not_found' => 'Trang mà bạn yêu cầu, %s, không được tìm thấy.', + 'report_bug' => 'Gửi báo cáo về vấn đề này đến Ushahidi', + 'resource_not_found' => 'Phần yêu cầu %s, %s, không được tìm thấy.', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Đã tải trong vòng {execution_time} giây, sử dụng {memory_usage} bộ nhớ. Được tạo bởi Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Chỉ có duy nhất một yêu cầu được thực hiện cho mỗi tiến trình trong mỗi trang.', + 'uncaught_exception' => 'Uncaught %s: %s trong tập tin %s trên dòng %s', + 'view' => 'xem', + 'view_set_filename' => 'Bạn phải thiết đặc chức năng xem tên tập tin trước khi gọi phần render.', +); diff --git a/application/i18n/vi/database.php b/application/i18n/vi/database.php new file mode 100644 index 0000000000..328a7d7a90 --- /dev/null +++ b/application/i18n/vi/database.php @@ -0,0 +1,10 @@ + 'Lỗi cơ sở dữ liệu: %s', + 'table_not_found' => 'Không tìm thấy bảng "%s" trong cơ sở dữ liệu. Hãy chắc chắn rằng bạn đang sử dụng phiên bản mới nhất của cơ sở dữ liệu dành cho phiên bản Ushahidi này.', +); diff --git a/application/i18n/vi/datetime.php b/application/i18n/vi/datetime.php new file mode 100644 index 0000000000..37c1e8a68b --- /dev/null +++ b/application/i18n/vi/datetime.php @@ -0,0 +1,86 @@ + 'sáng', + 'friday' => array( + 'abbv' => 'T6', + 'full' => 'Thứ sáu', + ) , + 'monday' => array( + 'abbv' => 'T2', + 'full' => 'Thứ hai', + ) , + 'pm' => 'tối', + 'saturday' => array( + 'abbv' => 'T7', + 'full' => 'Thứ bảy', + ) , + 'sunday' => array( + 'abbv' => 'CN', + 'full' => 'Chủ nhật', + ) , + 'thursday' => array( + 'abbv' => 'T5', + 'full' => 'Thứ năm', + ) , + 'tuesday' => array( + 'abbv' => 'T3', + 'full' => 'Thứ ba', + ) , + 'wednesday' => array( + 'abbv' => 'T4', + 'full' => 'Thứ tư', + ) , + 'january' => array( + 'abbv' => 'Th1', + 'full' => 'Tháng một', + ) , + 'february' => array( + 'abbv' => 'Th2', + 'full' => 'Tháng hai', + ) , + 'march' => array( + 'abbv' => 'Th3', + 'full' => 'Tháng ba', + ) , + 'april' => array( + 'abbv' => 'Th4', + 'full' => 'Tháng tư', + ) , + 'may' => array( + 'abbv' => 'Th5', + 'full' => 'Tháng năm', + ) , + 'june' => array( + 'abbv' => 'Th6', + 'full' => 'Tháng sáu', + ) , + 'july' => array( + 'abbv' => 'Th7', + 'full' => 'Tháng bảy', + ) , + 'august' => array( + 'abbv' => 'Th8', + 'full' => 'Tháng tám', + ) , + 'september' => array( + 'abbv' => 'Th9', + 'full' => 'Tháng chín', + ) , + 'october' => array( + 'abbv' => 'Th10', + 'full' => 'Tháng mười', + ) , + 'november' => array( + 'abbv' => 'Th11', + 'full' => 'Tháng mười một', + ) , + 'december' => array( + 'abbv' => 'Th12', + 'full' => 'Tháng mười hai', + ) , +); diff --git a/application/i18n/vi/feeds.php b/application/i18n/vi/feeds.php new file mode 100644 index 0000000000..8f9bf21087 --- /dev/null +++ b/application/i18n/vi/feeds.php @@ -0,0 +1,20 @@ + 'NGÀY THÁNG', + 'feed_name' => array( + 'length' => 'Phần khung thông tin tên feed phải có ít nhất 3 ký tự + tối đa 70 ký tự về độ dài.', + 'required' => 'Vui lòng điền vào tên của feed.', + ) , + 'feed_url' => array( + 'required' => 'Vui lòng điền vào đường dẫn liên kết của feed.', + 'url' => 'Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com', + ) , + 'source' => 'NGUỒN', + 'title' => 'Tiêu đề', +); diff --git a/application/i18n/vi/footer.php b/application/i18n/vi/footer.php new file mode 100644 index 0000000000..d64f5913e5 --- /dev/null +++ b/application/i18n/vi/footer.php @@ -0,0 +1,9 @@ + 'php5-curl hiện chưa được cài đặt trên hệ thống này.', +); diff --git a/application/i18n/vi/form.php b/application/i18n/vi/form.php new file mode 100644 index 0000000000..412bad8a9a --- /dev/null +++ b/application/i18n/vi/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Giá trị mặc định bạn cung cấp cho phần khung thông tin này là không hợp lệ.', + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự hoặc tối đa 200 ký tự về độ dài.', + ) , + 'field_height' => array( + 'between' => 'Xin điền vào giá trị của không thông tin về chiều cao trong khoảng 0 đến 50.', + ) , + 'field_isdate' => array( + 'between' => 'Bạn vừa điền vào một giá trị không hợp lệ cho khung thông tin ngày tháng.', + 'required' => 'Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin ngày tháng.', + ) , + 'field_name' => array( + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự hoặc tối đa 100 ký tự về độ dài.', + 'required' => 'Vui lòng điền vào khung thông tin tên.', + 'duplicate' => 'Phần khung thông tin về tên mà bạn vừa điền vào đã có trong mẫu đơn này. Vui lòng điền vào một phần khác.', + ) , + 'field_required' => array( + 'between' => 'Bạn vừa điền vào một giá trị không hợp lệ cho khung thông tin được yêu cầu.', + 'required' => 'Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin được yêu cầu.', + ) , + 'field_type' => array( + 'numeric' => 'Chọn một loại khung thông tin hợp lệ.', + 'required' => 'Xin vui lòng chọn một loại khung thông tin.', + ) , + 'field_width' => array( + 'between' => 'Xin điền vào giá trị của khung thông tin về độ rộng trong khoảng 0 đến 300.', + ) , + 'form_description' => array( + 'required' => 'Xin điền vào mô tả về mẫu đơn.', + ) , + 'form_id' => array( + 'default' => 'Không thể xóa mẫu đơn mặc định.', + 'numeric' => 'Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào.', + 'required' => 'Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào.', + ) , + 'form_title' => array( + 'length' => 'Phần khung thông tin tên của mẫu đơn phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'Vui lòng điền vào tên của mẫu đơn.', + 'exists' => 'Một mẫu đơn với tiêu đề như thế đã tồn tại. Vui lòng chọn một phần khác.', + ) , +); diff --git a/application/i18n/vi/imap.php b/application/i18n/vi/imap.php new file mode 100644 index 0000000000..89e9555c7d --- /dev/null +++ b/application/i18n/vi/imap.php @@ -0,0 +1,10 @@ + 'Không thể mở luồng dữ liệu dạng IMAP.', + 'unsupported_service' => 'Dịch vụ email này không được hỗ trợ.', +); diff --git a/application/i18n/vi/installer.php b/application/i18n/vi/installer.php new file mode 100644 index 0000000000..ccd5820763 --- /dev/null +++ b/application/i18n/vi/installer.php @@ -0,0 +1,84 @@ + 'Đường dẫn gốc', + 'database' => 'Cơ sở dữ liệu', + 'database_host' => 'Host của cơ sở dữ liệu', + 'database_host_description' => 'Nếu bạn thực thi Ushahidi từ chính máy tính của bạn, điều này có nghĩa rằng đây là một "localhost". Nếu bạn thực thi Ushahidi từ web server, bạn sẽ nhận được thông tin về host của bạn từ nhà cung cấp dịch vụ web hosting.', + 'database_name' => 'Tên cơ sở dữ liệu', + 'database_name_description' => 'Tên của cơ sở dữ liệu mà bạn muốn Ushahidi được thực thi trong đó', + 'db_information_link' => 'Để biết thêm thông tin, vui lòng truy cập phần đề mục này trên hệ thống wiki có bàn về cơ sở dữ liệu với đầy đủ thông tin chi tiết.', + 'default_language' => 'Ngôn ngữ mặc định (địa phương)', + 'default_language_description' => 'Mỗi phần phát triển của Ushahidi đi kèm theo đó là các gói ngôn ngữ ứng với từng quốc gia sở tại. Bạn cũng có thể thêm vào phần dịch của riêng bạn.', + 'disable' => 'Vô hiệu hóa', + 'enable' => 'Bật', + 'error_summary' => 'Được hiển thị dưới đây là thông tin tóm tắt về các lỗi mà hệ thống gặp phải', + 'files_location_text' => 'Địa điểm trên máy chủ của bạn nơi đặt các tập tin từ Ushahidi. Hệ thống sẽ tự động xác định giá trị này, hãy kiểm tra xem giá trị này có đúng và hợp lệ hay không. Nếu phần thông tin này bị để trống, thì cũng đừng quá lo lắng, điều này có nghĩa rằng Ushahidi đã được cài đặt ở thư mục gốc.', + 'finished' => 'Đã hoàn tất', + 'general' => 'Tổng quan', + 'google_key' => 'Google API Key', + 'google_key_description' => 'Bất kỳ ai cũng có thể nhận được khóa api này. Bạn cũng có thể làm điều đó ngay bây giờ', + 'go_back' => 'Quay trở lại', + 'index' => array( + 'advanced' => 'CÀI ĐẶT NÂNG CAO', + 'advanced_installation_description' => 'Nhận tất cả các thiết lập cơ bản thông qua quá trình bao gồm 5 bước này. Bao gồm máy chủ, bản đồ, tên trang và chi tiết về các liên hệ cơ bản.', + 'basic_installation' => 'CÀI ĐẶT CƠ BẢN', + 'basic_installation_description' => 'Đơn giản và nhanh chóng. Mọi điều bạn cần là một thư mục gốc của website do bạn lập cùng thông tin về cơ sở dữ liệu mà bạn thiết lập. Chọn tùy chọn này nếu bạn muốn trình cài đặt nhanh chóng hơn theo kiểu tự động, dĩ nhiên là bạn hoàn toàn có đầy đủ quyền thiết lập và chỉnh sửa bất cứ khi nào sau khi quá trình cài đặt đã hoàn tất.', + 'proceed' => 'Tiếp tục', + 'welcome' => 'Chào mừng bạn đến phần cài đặt dành cho máy chủ Ushahidi. Chọn loại cài đặt mà bạn mong muốn ở phía bên dưới.', + ) , + 'installation_successful' => 'Quá trình cài đặt thành công', + 'mail_server' => 'Máy chủ mail', + 'mail_server_host' => 'Máy chủ host dành cho mail', + 'mail_server_host_description' => 'Thí dụ: mail.websitecủabạn.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mật khẩu máy chủ mail', + 'mail_server_password_description' => 'Mật khẩu bạn dùng để đăng nhập vào tài khoản email của mình', + 'mail_server_port' => 'Cổng kết nối máy chủ Mail', + 'mail_server_port_description' => 'Các cổng thông thường: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Loại máy chủ mail', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) hoặc Post Office Protocol (POP). Điều gì là khác nhau giữa hai phần này?', + 'mail_server_username' => 'Tên người dùng máy chủ mail', + 'mail_server_username_description' => 'Nếu bạn sử dụng Gmail, Hotmail hoặc Yahoo Mail, điền vào đầy đủ địa chỉ email dưới dạng tên người dùng.', + 'map' => 'Bản đồ', + 'map_provider' => 'Nhà cung cấp bản đồ', + 'map_provider_description' => 'Ushahidi có thể thao tác trơn tru với bất kỳ nhà cung cấp dịch vụ bản đồ nào: Google, Bing hoặc Open Street Map. Chọn loại nhà cung cấp có thông tin hữu dụng nhất ở khu vực của bạn.', + 'other_steps' => 'Các bước khác...', + 'password' => 'Mật khẩu', + 'password_description' => 'Mật khẩu đối với cơ sở dữ liệu', + 'previous' => 'Trước đó', + 'restart_apache' => 'Xin vui lòng khởi động lại máy chủ Apache của bạn', + 'select_mail_server_ssl' => 'Bật hoặc vô hiệu hóa kết nối dạng SSL', + 'select_mail_server_ssl_description' => 'Một vài máy chủ mail cung cấp cho bạn tùy chọn sử dụng kết nối dạng SSL khi thực hiện việc kết nối truyền tải dữ liệu. Bạn nên dùng loại kết nối này để tăng tính bảo mật cho trang của bạn.', + 'setup_sms' => 'Cài đặt hệ thống máy chủ SMS', + 'site_email' => 'Địa chỉ email của trang', + 'site_email_alerts' => 'Địa chỉ email nhận cảnh báo', + 'site_email_alerts_description' => 'Khi trang của bạn nhận đăng ký từ các người dùng khác, những người đăng ký sẽ nhận các email từ địa chỉ email này. Địa chỉ email này không cần thiết phải giống hệ địa chỉ email của trang.', + 'site_email_description' => 'Việc mở rộng thao tác giao tiếp thông qua email sẽ được chọn lựa thông qua địa chỉ này', + 'site_name' => 'Tên trang', + 'site_name_description' => 'Tên của trang mà bạn muốn lập', + 'site_tagline' => 'Các thẻ đánh dấu liên quan đến trang', + 'site_tagline_description' => 'Thẻ đánh dấu của bạn', + 'summary' => array( + 'text_1' => 'Các tập tin và thư mục được liêkt bên dưới cần được thiết lập quyền có thể ghi dữ liệu trên hệ thống web của bạn.', + 'text_2' => '

Sau đây là hướng dẫn về các quyền hạn liên quan đến việc thay đổi nội dung tập tin:

+ ', + 'text_3' => 'Trước khi bắt đầu, bạn cần phải chắc chắn rằng các tập tin và thư mục sau đây có được quyền ghi dữ liệu trên hệ thống máy chủ web của bạn. Bao gồm cả các quyền truy cập và thay đổi nội dung tập tin.', + 'text_4' => 'Đối với quá trình cài đặt, xin vui lòng đọc các thông tin sau đây.', + ) , + 'table_prefix' => 'Table Prefix', + 'table_prefix_description' => 'Thông thường bạn sẽ không cần thay đổi table prefix. Tuy nhiên, nếu bạn chạy nhiều tiến trình cài đặt liên quan đến Ushahidi từ một cơ sở dữ liệu duy nhất, bạn có thể thực hiện việc thay đổi các tiền tố đứng trước tên bảng dữ liệu tại đây.', + 'title' => 'Tiêu đề', + 'to_login' => 'Để đăng nhập, hãy truy cập', + 'upload_data' => 'Tải lên dữ liệu báo cáo', + 'username' => 'Tên người dùng', + 'username_description' => 'Tên cơ sở dữ liệu của bạn', + 'use_credentials' => 'và sử dụng các phần ủy nhiệm tiếp sau đây', + 'view_site' => 'Xem trang web của bạn', +); diff --git a/application/i18n/vi/layer.php b/application/i18n/vi/layer.php new file mode 100644 index 0000000000..7ebb460999 --- /dev/null +++ b/application/i18n/vi/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Phần khung thông tin màu sắc phải chứa chính xác 6 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về màu sắc không được để trống.', + ) , + 'layer_file' => array( + 'type' => 'Phần khung thông tin về tập tin chứa dạng tập tin không hợp lệ. Chỉ chấp nhận các định dạng .KMZ và .KML.', + 'valid' => 'Phần khung thông tin về tập tin chứa dạng tập tin không hợp lệ.', + ) , + 'layer_name' => array( + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 80 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + ) , + 'layer_url' => array( + 'atleast' => 'Cả hai phần đường dẫn liên kết KML hoặc tập tin đều phải có.', + 'both' => 'Bạn không thể vừa chọn tập tin KML và đường dẫn liên kết kèm theo.', + 'url' => 'Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/vi/libraries.php b/application/i18n/vi/libraries.php new file mode 100644 index 0000000000..42f0ec3ffd --- /dev/null +++ b/application/i18n/vi/libraries.php @@ -0,0 +1,27 @@ + 'Không thể kết nối đến máy chủ Akismet.', + 'akismet_cannot_retrieve' => 'Không nhận được tín hiệu phản hồi từ Akismet', + 'api_library_not_found' => 'Thư viện API: %s dành cho %s class không được tìm thấy. Vui lòng kiểm tra lại bảng routing cho tác vụ API.', + 'askimet_invalid_apikey' => 'Khóa Akismet API của bạn không hợp lệ.', + 'clickatell_fopen_error' => 'Lỗi khi thực thi phương pháp gửi!
Vui lòng kiểm tra liệu PHP có hỗ trợ OpenSSL hay không và liệu phiên bản PHP mới hơn bản 5.2.', + 'clickatell_message_too_long' => 'Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=', + 'clickatell_no_destination_address' => 'Xin vui lfong xác nhận địa chỉ gửi (ĐẾN)!', + 'clickatell_no_sender_address' => 'Xin vui lòng xác định địa chỉ nguồn (TỪ)!', + 'clickatell_unicode_message_too_long' => 'Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=', + 'clickatell_unsupported_method' => 'Phương pháp gửi không được hỗ trợ!', + 'invalid_api_library' => 'Thư viện API %s không hợp lệ. Tất cả các thư viện API phải là lớp con của %s.', + 'upgrade_directory_not_deleted' => 'Không thể xóa thư mục %s.', + 'upgrade_extracting_error' => 'Lỗi xảy ra khi giải nén: %s', + 'upgrade_failed' => 'Thất bại khi tải về phiên bản mới nhất của Ushahidi. Trạng thái mã HTTP', + 'upgrade_file_not_copied' => 'Không thể sao chép tập tin %s.', + 'upgrade_file_not_deleted' => 'Không thể xóa tập tin %s.', + 'upgrade_title' => 'Đoạn mã lệnh để nâng cấp Ushahidi', + 'upgrade_zip_error' => 'Không thể ghi dữ liệu lên tập tin nén Ushahidi %s được tải về.', + 'riverid_variable_not_available' => '%s hiện không phải là lớp RiverID hiện có.', +); diff --git a/application/i18n/vi/maintenance.php b/application/i18n/vi/maintenance.php new file mode 100644 index 0000000000..883a979172 --- /dev/null +++ b/application/i18n/vi/maintenance.php @@ -0,0 +1,9 @@ + 'Rất tiếc, trang này của chúng tôi hiện đang ở trạng thái bảo trì. Xin vui lòng quay lại sau ít phút nữa.', +); diff --git a/application/i18n/vi/message.php b/application/i18n/vi/message.php new file mode 100644 index 0000000000..9a9fc35eaf --- /dev/null +++ b/application/i18n/vi/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'required' => 'Vui lòng điền vào mã an ninh.', + ) , + 'email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , + 'message' => array( + 'required' => 'Phần khung thông tin về bình luận không được để trống.', + ) , + 'name' => array( + 'length' => 'Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + ) , + 'phone' => array( + 'length' => 'Phần khung thông tin về số điện thoại không hợp lệ.', + ) , +); diff --git a/application/i18n/vi/mhi.php b/application/i18n/vi/mhi.php new file mode 100644 index 0000000000..566efb3fa9 --- /dev/null +++ b/application/i18n/vi/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'required' => 'Vui lòng điền vào mã an ninh.', + ) , + 'contact_email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'required' => 'Xin vui lòng cung cấp một địa chỉ email hợp lệ.', + ) , + 'contact_message' => array( + 'required' => 'Phần nội dung tin nhắn không được để trống.', + ) , + 'contact_subject' => array( + 'length' => 'Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về chủ đề không được để trống.', + ) , +); diff --git a/application/i18n/vi/notifications.php b/application/i18n/vi/notifications.php new file mode 100644 index 0000000000..2d410cbc46 --- /dev/null +++ b/application/i18n/vi/notifications.php @@ -0,0 +1,35 @@ + 'Tin nhắn này đã được gửi từ website của bạn.', + 'admin_login_url' => 'Đăng nhập dạng Quản Trị Viên', + 'admin_new_comment' => array( + 'message' => 'Một bình luận mới đã được đệ trình trên website của bạn trả lời về vấn đề:', + 'subject' => 'Bình luận mới', + ) , + 'admin_new_email' => array( + 'message' => 'Một tin nhắn mới dạng email đã được gửi đến website của bạn.', + 'subject' => 'Tin nhắn mới', + ) , + 'admin_new_report' => array( + 'message' => 'Một báo cáo mới đã được gửi đến website của bạn.', + 'subject' => 'Báo cáo mới', + ) , + 'admin_new_sms' => array( + 'message' => 'Một tin nhắn mới đã được gửi đến website của bạn.', + 'subject' => 'Tạo tin nhắn mới', + ) , + 'member_new_alert' => array( + 'message' => 'Bạn đã nhận được một cảnh báo mới', + 'subject' => 'Cảnh báo mới!', + ) , + 'member_new_message' => array( + 'message' => 'Bạn đã nhận được một tin nhắn riêng mới', + 'subject' => 'Tạo mới tin nhắn riêng', + 'footer' => 'Để trả lời vui lòng truy cập:', + ) , +); diff --git a/application/i18n/vi/page.php b/application/i18n/vi/page.php new file mode 100644 index 0000000000..94bb4dacd5 --- /dev/null +++ b/application/i18n/vi/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'Vui lòng điền vào tiêu đề trang.', + 'length' => 'Phần tiêu đề trang phải có ít nhất 3 ký tự hoặc tối đa 150 ký tự về độ dài.', + ) , + 'page_tab' => array( + 'required' => 'Vui lòng điền vào tên hiển thị trên tab của trang.', + ) , + 'page_description' => array( + 'required' => 'Xin điền vào mô tả về trang.', + ) , +); diff --git a/application/i18n/vi/permissions.php b/application/i18n/vi/permissions.php new file mode 100644 index 0000000000..6eeb8676e7 --- /dev/null +++ b/application/i18n/vi/permissions.php @@ -0,0 +1,27 @@ + 'Xem báo cáo', + 'reports_edit' => 'Tạo/Chỉnh Sửa/Xóa báo cáo', + 'reports_approve' => 'Chấp thuận báo cáo', + 'reports_verify' => 'Xác nhận báo cáo', + 'reports_comments' => 'Quản lý bình luận về báo cáo', + 'reports_download' => 'Tải về báo cáo', + 'reports_upload' => 'Tải lên báo cáo', + 'messages' => 'Quản lý tin nhắn', + 'messages_reporters' => 'Quản lý tin nhắn từ người thực hiện báo cáo', + 'stats' => 'Xem trạng thái', + 'settings' => 'Chỉnh sửa Thiết Lập', + 'manage' => 'Quản lý Khung Điều Khiển', + 'users' => 'Quản lý người dùng', + 'manage_roles' => 'Quản lý Vai Trò', + 'checkin' => 'Có thể đi đến', + 'checkin_admin' => 'Quản lý điểm đến', + 'admin_ui' => 'Truy cập giao diện Quản Trị Viên', + 'member_ui' => 'Truy cập giao diện Thành Viên', + 'delete_all_reports' => 'Xóa tất cả các báo cáo', +); diff --git a/application/i18n/vi/private_message.php b/application/i18n/vi/private_message.php new file mode 100644 index 0000000000..8ac01e76cf --- /dev/null +++ b/application/i18n/vi/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Chỉ số gốc phải ở dạng số', + ) , + 'private_to' => array( + 'required' => 'Phần khung thông tin về đối tượng nhận không được để trống.', + 'exists' => 'Người dùng mà bạn đang muốn gửi tin nhắn không tồn tại', + ) , + 'private_subject' => array( + 'required' => 'Phần khung thông tin về chủ đề không được để trống.', + 'length' => 'Chủ đề tin nhắn phải có ít nhất 3 ký tự và tối đa 150 ký tự về độ dài', + ) , + 'private_message' => array( + 'required' => 'Phần nội dung tin nhắn không được để trống.', + ) , +); diff --git a/application/i18n/vi/report.php b/application/i18n/vi/report.php new file mode 100644 index 0000000000..4cf31a3427 --- /dev/null +++ b/application/i18n/vi/report.php @@ -0,0 +1,139 @@ + 'lỗi!', + 'country_name' => array( + 'single_country' => 'Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm báo cáo nằm trong quốc gia %s.', + ) , + 'custom_field' => array( + 'values' => 'Vui lòng điền vào một giá trị hợp lệ cho phần khung thông tin của "%s".', + 'numeric' => 'Phần khung thông tin "%s" phải ở dạng số.', + 'required' => 'Phần khung thông tin "%s" không được để trống.', + 'not_exist' => 'Phần khung thông tin "%s" không tồn tại.', + 'permission' => 'Tài khoản của bạn không thể chỉnh sửa phần khung thông tin "%s".', + 'email' => 'Phần khung thông tin "%s" phải chứa một địa chỉ email hợp lệ.', + 'phone' => 'Phần khung thông tin "%s" phải chứa một số điện thoại hợp lệ.', + 'date_mmddyyyy' => 'Phần khung thông tin "%s" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN).', + 'date_ddmmyyyy' => 'Phần khung thông tin "%s" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN).', + ) , + 'data_include' => array( + 'between' => 'Xin chọn một đối tượng hợp lệ trong phần tải về.', + 'numeric' => 'Xin vui lòng lựa chọn một đối tượng hợp lệ trong phần tải về.', + ) , + 'data_active' => array( + 'between' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + 'numeric' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + 'required' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + ) , + 'data_verified' => array( + 'between' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Xác Nhận" hoặc "Báo Cáo Đã Được Xác Nhận" hoặc cả hai.', + 'numeric' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Xác Nhận" hoặc "Báo Cáo Đã Được Xác Nhận" hoặc cả hai.', + 'required' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + ) , + 'data_point' => array( + 'between' => 'Xin vui lòng chọn một loại báo cáo hợp lệ để tải về.', + 'numeric' => 'Xin vui lòng chọn một loại báo cáo hợp lệ để tải về.', + 'required' => 'Xin vui lòng chọn một loại báo cáo hợp lệ để tải về.', + ) , + 'format' => array( + 'required' => 'Bạn phải chọn một định dạng để tải về. Chọn hoặc CSV hoặc XML.', + 'valid' => 'Xin vui lòng chọn một loại báo cáo hợp lệ để tải về ở', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'Phần khung thông tin về ngày gửi TỪ không chứa định dạng tập tin hợp lệ.', + 'range' => 'Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi Từ. Ngày này không thể lớn hơn ngày hiện tại.', + ) , + 'incident_active' => array( + 'between' => 'Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này', + 'required' => 'Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Phần khung thông tin về sáng/tối không chứa giá trị hợp lệ.', + ) , + 'incident_category' => array( + 'numeric' => 'Phần khung thông tin về "Phân Loại" không chứa định dạng phân loại hợp lệ.', + 'required' => 'Phần khung thông tin về "Phân Loại" không được để trống.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ.', + 'date_mmddyyyy' => 'Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ.', + 'required' => 'Phần khung thông tin ngày tháng không được để trống.', + ) , + 'incident_description' => array( + 'required' => 'Phần khung thông tin về "Mô Tả" không được để trống.', + ) , + 'incident_hour' => array( + 'between' => 'Phần khung thông tin về giờ chứa định dạng giờ không hợp lệ.', + 'required' => 'Phần khung thông tin về giờ không được để trống.', + ) , + 'incident_information' => array( + 'alpha' => 'Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin.', + 'length' => 'Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin.', + ) , + 'incident_minute' => array( + 'between' => 'Phần khung thông tin về phút chứa dạng phút không hợp lệ.', + 'required' => 'Phần khung thông tin về phút không được để trống.', + ) , + 'incident_news' => array( + 'url' => 'Phần liên kết đường dẫn đến nguồn tin không chứa đường dẫn hợp lệ.', + ) , + 'incident_photo' => array( + 'size' => 'Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 2MB.', + 'type' => 'Phần khung thông tin về hỉnh ảnh tải lên chứa định dạng hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF.', + 'valid' => 'Phần khung thông tin về hình ảnh được tải lên chứa định dạng tập tin không hợp lệ.', + ) , + 'incident_source' => array( + 'alpha' => 'Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin.', + 'length' => 'Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin.', + ) , + 'incident_title' => array( + 'length' => 'Phần khung thông tin "Tiêu Đề Báo Cáo" phải chứa ít nhất 3 ký tự và tối đa 200 ký tự về độ dài.', + 'required' => 'Phần khung thông tin "Tiêu Đề Báo Cáo" không được để trống.', + 'csrf' => 'Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa báo cáo về việc này không?', + ) , + 'incident_verified' => array( + 'between' => 'Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này', + 'required' => 'Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này', + ) , + 'incident_video' => array( + 'url' => 'Phần liên kết đường dẫn video không chứa đường dẫn hợp lệ.', + ) , + 'latitude' => array( + 'between' => 'Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ.', + 'required' => 'Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'locale' => array( + 'alpha_dash' => 'Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ.', + 'exists' => 'Báo cáo này đã có phần chuyển ngữ dành cho dạng ngôn ngữ này.', + 'length' => 'Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ.', + 'locale' => 'Báo Cáo Gốc và phần Dịch có cùng ngôn ngữ với nhau (ngôn ngữ bản địa).', + 'required' => 'Phần khung thông tin ngôn ngữ không được để trống.', + ) , + 'location_name' => array( + 'length' => 'Phần khung thông tin "Tên Địa Điểm" phải có ít nhất 3 ký tự và tối đa 200 ký tự về độ dài.', + 'required' => 'Phần khung thông tin "Tên Địa Điểm" không được để trống.', + ) , + 'longitude' => array( + 'between' => 'Phần khung thông tin về kinh độ không chứa định dạng kinh độ hợp lệ.', + 'required' => 'Phần khung thông tin về kinh độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'person_email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài.', + ) , + 'person_first' => array( + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + ) , + 'person_last' => array( + 'length' => 'Phần khung thông tin họ phải có ít nhất 2 ký tự và tối đa 100 ký tự về độ dài.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Phần khung thông tin về ngày gửi ĐẾN không chứa định dạng tập tin hợp lệ.', + 'range' => 'Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi ĐẾN. Ngày này không thể lớn hơn ngày hiện tại.', + 'range_greater' => 'Ngày GỬI TỪ không được lớn hơn ngày GỬI ĐẾN.', + ) , +); diff --git a/application/i18n/vi/reporters.php b/application/i18n/vi/reporters.php new file mode 100644 index 0000000000..954b14c01a --- /dev/null +++ b/application/i18n/vi/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ.', + 'required' => 'Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'level_id' => array( + 'numeric' => 'Phần khung thông tin về Người Báo Cáo không chứa định dạng tập tin hợp lệ.', + 'required' => 'Phần khung thông tin về Cấp Độ Người Báo Cáo không chứa định dạng tập tin hợp lệ.', + ) , + 'location_name' => array( + 'length' => 'Phần khung thông tin tên địa điểm phải có ít nhất 3 ký tự và tối đa 200 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên địa điểm không được để trống.', + ) , + 'longitude' => array( + 'between' => 'Phần khung thông tin về kinh độ không chứa định dạng kinh độ hợp lệ.', + 'required' => 'Phần khung thông tin về kinh độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'reporter_id' => array( + 'numeric' => 'Người Báo Cáo không hợp lệ', + 'required' => 'Người Báo Cáo không hợp lệ', + ) , +); diff --git a/application/i18n/vi/reports.php b/application/i18n/vi/reports.php new file mode 100644 index 0000000000..4368545930 --- /dev/null +++ b/application/i18n/vi/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Xin xác nhận bạn đã chọn đối tượng', + 'numeric' => 'Xin xác nhận bạn đã chọn đối tượng', + 'categories_required' => 'Báo cáo phải được phân loại trước khi được chấp thuận', + ) , + 'action' => array( + 'permission' => 'Bạn không có quyền thực hiện thao tác này', + ) , + 'uploadfile' => array( + 'required' => 'Bạn phải chọn một tập tin để tải lên', + 'type' => 'Tập tin tải lên phải có định dạng .csv hoặc .xml', + 'valid' => 'Phần khung thông tin về tập tin được tải lên không chứa định dạng tập tin hợp lệ', + ) , +); diff --git a/application/i18n/vi/roles.php b/application/i18n/vi/roles.php new file mode 100644 index 0000000000..d4d2a5e4b3 --- /dev/null +++ b/application/i18n/vi/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Phần khung thông tin Mô Tả phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về Mô Tả không được để trống.', + ) , + 'name' => array( + 'alpha_numeric' => 'Phần khung thông tin Tên chỉ được chứa các ký tự hoặc số.', + 'length' => 'Phần khung thông tin Tên phải có ít nhất 2 ký tự hoặc tối đa 30 ký tự về độ dài.', + 'nomodify' => 'Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh', + 'required' => 'Phần khung thông tin Tên không được để trống.', + ) , + 'access_level' => array( + 'numeric' => 'Phần khung thông tin Cấp Độ Truy Cập phải có giá trị từ 0 - 100.', + 'required' => 'Phần khung thông tin Cấp Độ Truy Cập phải có giá trị từ 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'Phần khung thông tin Quyền Hạn phải có giá trị từ 0 - 100.', + ) , +); diff --git a/application/i18n/vi/settings.php b/application/i18n/vi/settings.php new file mode 100644 index 0000000000..42689712d8 --- /dev/null +++ b/application/i18n/vi/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => 'Phần khung thông tin cho phép bình luận không chứa giá trị hợp lệ.', + 'required' => 'Phần khung thông tin cho phép bình luận không được để trống.', + ) , + 'allow_feed' => array( + 'between' => 'Phần khung thông tin bao gồm feed chứa định dạng không hợp lệ.', + 'required' => 'Phần khung thông tin bao gồm feed không được để trống.', + ) , + 'allow_feed_category' => array( + 'between' => 'Lĩnh vực danh mục nguồn cấp dữ liệu bao gồm không chứa một giá trị hợp lệ.', + 'required' => 'Lĩnh vực danh mục nguồn cấp dữ liệu bao gồm là bắt buộc.', + ) , + 'allow_alerts' => array( + 'between' => 'Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ.', + 'required' => 'Phần khung thông tin cho phép cảnh báo không được để trống.', + ) , + 'allow_reports' => array( + 'between' => 'Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ.', + 'required' => 'Phần khung thông tin cho phép báo cáo không được để trống.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Phần khung thông tin về trạng thái chia sẻ chứa giá trị không hợp lệ.', + 'required' => 'Phần khung thông tin trạng thái chia sẻ không được để trống.', + ) , + 'api' => array( + 'default_record_limit' => 'Số lượng mặc định các bản tin được tải về với từng yêu cầu API', + 'maximum_record_limit' => 'Số lượng tối đa các bản tin được tải về với từng yêu cầu API', + 'maximum_requests_per_ip_address' => 'Số lượng tối đa các API được yêu cầu với từng địa chỉ IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Phần khung thông tin về Akismet không chứa giá trị hợp lệ.', + 'length' => 'Phần khung thông tin về Akismet không chứa giá trị hợp lệ.', + ) , + 'banner_image' => array( + 'type' => 'Phần khung thông tin về hỉnh ảnh băng rôn chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF.', + 'size' => 'Xin chắc rằng "Hình ảnh băng rôn" có dung lượng nhỏ hơn 250 KB.', + 'valid' => 'Phần khung thông tin về "Hình Ảnh Băng Rôn" không chứa định dạng tập tin hợp lệ.', + ) , + 'cache_pages' => array( + 'between' => 'Phần khung thông tin số trang trong bộ nhớ đệm không được để trống.', + 'required' => 'Phần khung thông tin về số trang trong bộ nhớ đệm không chứa giá trị hợp lệ.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không chứa giá trị hợp lệ.', + 'required' => 'Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Có vẻ như phía máy chủ của bạn vẫn chưa được cấu hình để dọn dẹp các đường dẫn liên kết. Bạn cần thay đổi cấu hình của phía máy chủ do bạn đảm nhiệm trước khi bạn muốn dọn dẹp các đường dẫn liên kết. Tìm hiểu thêm tại phần bài mục này trong diễn đàn', + 'clean_url_enabled' => 'Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết sạch (không có phần "index.php" trong đường dẫn).', + 'enable_clean_url' => 'Bật tính năng dọn dẹp đường dẫn liên kết', + 'title' => 'Dọn dẹp đường dẫn liên kết', + ) , + 'clickatell_api' => array( + 'length' => 'Phần khung thông tin về số lượng Clickatel API không được quá 200 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống.', + ) , + 'clickatell_password' => array( + 'length' => 'Phần khung thông tin về Mật Khẩu Clickatel phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài.', + 'required' => 'Phần khung thông tin mật Khẩu Clickatel không được để trống.', + ) , + 'clickatell_username' => array( + 'length' => 'Phần khung thông tin Tên Người Dùng Clickatel không được quá 50 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về Tên Người Dùng Clickatel không được để trống.', + ) , + 'configure_map' => 'Chỉnh cấu hình bản đồ', + 'default_location' => 'Địa điểm mặc định', + 'default_map_all' => array( + 'alpha_numeric' => 'Phần khung thông tin về màu sắc của feed chứa định dạng không hợp lệ.', + 'length' => 'Phần khung thông tin màu sắc không được vượt quá 6 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về màu sắc không được để trống.', + ) , + 'default_map_view' => 'Chế độ xem bản đồ mặc định', + 'default_zoom_level' => 'Mức độ phóng to mặc định', + 'download_city_list' => 'Nhận danh sách các thành phố từ Geonames', + 'email_host' => array( + 'length' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài.', + 'numeric' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số.', + ) , + 'email_password' => array( + 'length' => 'Phần khung thông tin về Mật Khẩu của máy chủ mail phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài.', + 'required' => 'Phần mật khẩu mail phía máy chủ không được để trống.', + ) , + 'email_port' => array( + 'length' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài.', + 'numeric' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số.', + ) , + 'email_servertype' => array( + 'length' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài.', + 'required' => 'Phần loại mail phía máy chủ không được để trống.', + ) , + 'email_username' => array( + 'length' => 'Phần khung thông tin Tên Người Dùng Máy Chủ Mail không được quá 50 ký tự về độ dài.', + 'required' => 'Phần tên người dùng mail phía máy chủ không được để trống.', + ) , + 'facebook' => array( + 'title' => 'Tùy chọn cài đặt Facebook', + 'description' => 'Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Facebook mới tại', + 'description_2' => 'Các thiết lập sao cho phép người dùng đăng nhập thông qua Facebook, thao tác này does not tạo một ứng dụng facebook cho dự án của bạn', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Phần khung thông tin Google Analytics phải chứa một Web Property ID hợp lệ theo định dạng UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Bật HTTPS', + 'https_disabled' => 'Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết không an toàn; không có phần "https://" ở phía trước đường dẫn liên kết', + 'https_enabled' => 'Tùy chọn này cho phép truy cập Ushahidi thông qua các chế độ truy cập an toàn; có phần "https://" ở phía trước đường dẫn liên kết', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Phần khung thông tin về số lượng đối tượng mỗi trang (Frontend) chứa giá trị không hợp lệ.', + 'required' => 'Phần khung thông tin số lượng đối tượng mỗi trang (Frontend) không được để trống.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) chứa giá trị không hợp lệ.', + 'required' => 'Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) không được để trống.', + ) , + 'map' => array( + 'default_location' => 'Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API.', + 'zoom' => 'Mức độ phóng to', + ) , + 'map_provider' => array( + 'choose' => 'Chọn một nhà cung cấp bản đồ', + 'enter_api' => 'Điền vào khóa API mới', + 'get_api' => 'Nhận một khóa API', + 'info' => 'Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API.', + 'name' => 'Nhà cung cấp bản đồ', + ) , + 'map_timeline' => 'Thời gian bản đồ', + 'map_settings' => 'Thiết lập bản đồ', + 'multiple_countries' => 'Viện triển khai Ushahidi có được tiến hành ở nhiều quốc gia hay không?', + 'select_default_location' => 'Xin vui lòng chọn một quốc gia mặc định.', + 'set_location' => 'Click và rê bản đồ để chọn địa điểm chính xác', + 'site' => array( + 'allow_clustering' => 'Gom lại các báo cáo trên bản đồ', + 'allow_comments' => 'Cho phép người dùng đệ trình bình luận đến các báo cáo', + 'allow_feed' => 'Bao gồm thông tin RSS dạng Feed trên Website', + 'allow_feed_category' => 'Tạo hạng mục mới từ những nguồn cấp dữ liệu', + 'allow_alerts' => 'Cho phép người dùng đăng ký theo dõi các cảnh báo', + 'allow_reports' => 'Cho phép người dùng đệ trình các báo cáo', + 'api_akismet' => 'Khóa Akismet', + 'banner' => 'Băng rông đặt trên trang', + 'blocks_per_row' => 'Khóa theo dòng', + 'cache_pages' => 'Bộ nhớ đệm dành cho trang', + 'cache_pages_lifetime' => 'Thời gian thực thi bộ nhớ đệm cho trang', + 'checkins' => 'Bật tính năng điểm đến', + 'copyright_statement' => 'Thông báo về bản quyền trên trang', + 'default_category_colors' => 'Màu mặc định cho tất cả phân loại', + 'default_category_icons' => 'Biểu tượng mặc định cho tất cả phân loại', + 'delete_banner_image' => 'Xóa hình ảnh băng rôn', + 'delete_default_map_all_icon' => 'Xóa biểu tượng mặc định', + 'display_contact_page' => 'Hiển thị trang liên lạc', + 'display_howtohelp_page' => 'Hiển thị trang "Làm cách nào để nhận trợ giúp"', + 'email_alerts' => 'Địa chỉ email cảnh báo', + 'email_notice' => 'Để có thể nhận các báo cáo bằng email, vui lòng cấu hình lại thiết lập dành cho tài khoản email của bạn.', + 'email_site' => 'Địa chỉ email nhận cảnh báo', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Định dạng: UA-XXXXX-XX', + 'items_per_page' => 'Số đối tượng mỗi trang - Front End', + 'items_per_page_admin' => 'Số đối tượng mỗi trang - Admin', + 'kismet_notice' => 'Chặn các bình luận dạng spam bằngAkismet theo kiểu tự động.
Bạn có thể đăng ký nhận một khóa API miễn phí từ tài khoản người dùng ở WordPress.com', + 'laconica_configuration' => 'Laconica Credentials', + 'laconica_site' => 'Trang Laconica', + 'language' => 'Ngôn ngữ trang', + 'manually_approve_users' => 'Chấp thuận bởi người sử dụng', + 'message' => 'Trang tin nhắn', + 'name' => 'Tên trang', + 'private_deployment' => 'Tiến trình riêng tư', + 'require_email_confirmation' => 'Yêu cầu cần có email xác nhận', + 'submit_report_message' => 'Đệ trình tin nhắn báo cáo', + 'share_site_stats' => 'Bật tính năng thống kê (được lưu trữ ở phía máy chủ của Ushahidi)', + 'tagline' => 'Các thẻ đánh dấu liên quan đến trang', + 'timezone' => 'Múi giờ', + 'title' => 'Thiết lập trang', + 'twitter_configuration' => 'Tìm các cụm từ trong Twitter', + 'twitter_hashtags' => 'Hashtags - Tách biệt bởi dấu phẩy', + 'feed_geolocation_user' => 'Cấp dữ liệu vị trí địa lý - cơ sở dữ liệu địa lý tên người dùng', + ) , + 'site_email' => array( + 'email' => 'Phần khung thông tin trang email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần khung thông tin trang email phải có ít nhất 4 ký tự và tối đa 100 ký tự về độ dài.', + ) , + 'site_name' => array( + 'length' => 'Phần khung thông tin tên trang phải có ít nhất 3 ký tự và tối đa 50 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên trang không được để trống.', + ) , + 'site_tagline' => array( + 'length' => 'Phần khung thông tin tagline phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về tagline không được để trống.', + ) , + 'sms' => array( + 'clickatell_api' => 'Số Clickatell API của bạn', + 'clickatell_check_balance' => 'Kiểm tra trạng thái cân bằng tín dụng trên Clickatell của bạn', + 'clickatell_load_balance' => 'Tải trạng thái cân bằng tín dụng', + 'clickatell_password' => 'Mật khẩu tài khoản Clickatell của bạn', + 'clickatell_text_1' => 'Đăng ký sử dụng dịch vụ Clickatells bằng cách click vào đây', + 'clickatell_text_2' => 'Điền vào thông tin truy cập tài khoản Clickatell của bạn bên dưới', + 'clickatell_username' => 'Điền vào tên tài khoản Clickatell của bạn', + 'flsms_description' => 'FrontlineSMS là phần mềm miễn phí mã nguồn mở cho phép người dùng gửi và nhận tin nhắn văn bản đến số một số lượng lớn người dùng có liên kết với nhau theo nhóm thông qua điện thoại. Click vào ô bên dưới để tải về phiên bản mới nhất từ FrontlineSMS.com.', + 'flsms_download' => 'Tải và cài đặt FrontlineSMS', + 'flsms_instructions' => 'Thông tin chi tiết về hướng dẫn cách gửi SMS từ FronlineSMS hiện có ở here. Đường dẫn liên kết và khóa API bên dưới cần được thêm vào để cài đặt phần đồng bộ hóa với FronlineSMS.', + 'flsms_link' => 'Sao chép và dán phần này vào trong phần thông tin "Địa Chỉ" của FrontlineSMS', + 'flsms_key' => 'Sao chép và dán phần này vào trong khung thông tin "Ushahidi API Key" của FrontlineSMS', + 'flsms_synchronize' => 'Đang kết nối FrontlineSMS đến phần giao tiếp với Ushahidi', + 'flsms_text_1' => 'Điền vào (những) số điện thoại được kết nối đến SMS Frontline ở (những) khung thông tin bên dưới', + 'flsms_text_2' => 'Điền vào số và nên nhớ không đặt vào dấu + hay dấu gạch ngang', + 'option_1' => 'Tùy chọn 1: Sử dụng Frontline SMS', + 'option_2' => 'Tùy chọn 2: Sử dụng Global SMS Gateway', + 'title' => 'Tùy chọn cài đặt SMS', + ) , + 'sms_no1' => array( + 'length' => 'Số điện thoại 1 ở khung thông tin không chứa giá trị hợp lệ.', + 'numeric' => 'Phần khung thông tin số điện thoại 1 chỉ nên chứa số.', + ) , + 'sms_no2' => array( + 'length' => 'Phần số điện thoại 2 quá dài.', + 'numeric' => 'Phần khung thông tin số điện thoại 2 chỉ nên chứa số.', + ) , + 'sms_no3' => array( + 'length' => 'Phần số điện thoại 3 quá dài.', + 'numeric' => 'Phần khung thông tin số điện thoại 3 chỉ nên chứa số.', + ) , + 'twitter' => array( + 'title' => 'Tùy chọn cài đặt Twitter', + 'description' => 'Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Twitter mới tại', + 'api_key' => 'Khóa người tiêu dùng', + 'api_key_secret' => 'Bí mật người tiêu dùng', + 'token' => 'Token truy cập', + 'token_secret' => 'Token bí mật truy cập', + ) , + 'test_settings' => 'Thử các thiết lập', +); diff --git a/application/i18n/vi/sharing.php b/application/i18n/vi/sharing.php new file mode 100644 index 0000000000..1253f25992 --- /dev/null +++ b/application/i18n/vi/sharing.php @@ -0,0 +1,25 @@ + 'Ngày chuyển vào', + 'date_added' => 'Đã thêm ngày tháng', + 'last_access' => 'Lần truy cập gần đây nhất', + 'sharing_color' => array( + 'length' => 'Phần khung thông tin màu sắc phải chứa chính xác 6 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về màu sắc không được để trống.', + ) , + 'sharing_name' => array( + 'length' => 'Phần tên Chia Sẻ không hợp lệ.', + 'required' => 'Phần tên Chia Sẻ không được để trống.', + ) , + 'sharing_url' => array( + 'exists' => 'Liên kết đường dẫn của trang đã tồn tại.', + 'length' => 'Liên kết đường dẫn của trang không hợp lệ.', + 'required' => 'Phần liên kết đường dẫn của trang không được để trống.', + 'url' => 'Phần liên kết đường dẫn của trang không chứa đường dẫn hợp lệ.', + ) , +); diff --git a/application/i18n/vi/stats.php b/application/i18n/vi/stats.php new file mode 100644 index 0000000000..e5e251593f --- /dev/null +++ b/application/i18n/vi/stats.php @@ -0,0 +1,42 @@ + 'Đã chấp thuận', + 'categories' => 'Phân Loại', + 'category_impact' => 'Tác động phân loại', + 'category_impact_description' => 'Biểu đồ này cho bạn cách nhìn theo dạng tuyến tính của các báo cáo theo từng dạng phân loại theo từng thời điểm thời gian. Kéo chuột từ trái sang phải để xem phần so sánh giữa các loại. Di chuyển chuột đến vùng biểu đồ để biết thêm chi tiết.', + 'choose_date_range' => 'Chọn một khoảng ngày tháng.', + 'countries' => 'Quốc gia', + 'country' => 'Quốc gia', + 'country_breakdown' => 'Hệ thống quốc gia bị lỗi', + 'description' => 'Đây là phần dành cho thống kê và sẽ chứa các mô tả tổng quan trong thời gian sắp tới. Cho tới hiện tại, duyệt tìm các phần phân loại khác ở đường dẫn bên dưới.', + 'error' => 'Lỗi', + 'glossary' => 'Bảng từ vựng', + 'hit_summary' => 'Chọn Tóm tắt', + 'legend' => 'Huyền thoại', + 'pageviews' => 'Số lượng truy cập', + 'pageviews_description' => 'Tổng số lượng lượng truy cập đến từ phía người dùng', + 'reports' => 'Báo cáo', + 'reports_categories' => 'Phân loại báo cáo', + 'reports_statistics' => 'Thống kê báo cáo', + 'reports_status' => 'Trạng thái báo cáo', + 'report_punchcard' => 'Punchcard của báo cáo', + 'report_stats' => 'Trạng thái báo cáo', + 'stats_not_setup' => 'Chưa cài đặt trạng thái', + 'time_range_1' => '1 tháng', + 'time_range_2' => '3 tháng', + 'time_range_3' => '6 tháng', + 'time_range_all' => 'Tất cả', + 'unapproved' => 'Chưa được chấp thuận', + 'unique_visitors' => 'Các người xem độc lập', + 'unique_visitors_description' => 'Số lượng của mỗi cá nhân trong dự án của bạn. Các người xem độc lập được xác định bởi việc sử dụng các cookies. Các người xem thường không bật tính năng cookies nên sẽ được xác định dựa vào thuật toán heuristic trong việc phân loại theo địa chỉ IP, độ phân giải, trình duyệt, tiện ích, hệ điều hành v.v...', + 'unverified' => 'Chưa xác nhận', + 'verified' => 'Đã xác nhận', + 'visitor_summary' => 'Tóm tắt khách truy cập', + 'visits' => 'Truy cập', + 'visits_description' => 'Một lượt được tính là truy cập trong bảng ghi dữ liệu với mỗi khách viếng thăm độc lập trang web dựa trên lượt xem qua mỗi quãng thời gian kéo dài 30 phút.', +); diff --git a/application/i18n/vi/tooltips.php b/application/i18n/vi/tooltips.php new file mode 100644 index 0000000000..273c8a6c3c --- /dev/null +++ b/application/i18n/vi/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => 'This adds the report to additional categories. If you select Category 1 here and the report already has Category 2 attached to it, the report will then have both Category 1 and Category 2.', + 'approve' => 'Approves a report or not. If approved, it will show up publicly.', + 'assign_badge' => 'You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here.', + 'between_times' => 'This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier.', + 'category' => 'If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test.', + 'days_of_the_week' => 'If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection.', + 'email_body' => 'Body of the email that will be sent.', + 'email_subject' => 'Subject of email that will be sent.', + 'feed_id' => 'The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "all"', + 'from' => 'Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for twitter messages from a particular user, enter their username here (not including @)', + 'keywords' => 'You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions "love" or "peace" in their message, you will want to add "love, peace" in the keywords box.', + 'location' => 'You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select "specific area" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes.', + 'on_specific_count' => 'This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it.', + 'report_title' => 'This is the default title to add to the report.', + 'response' => 'If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses.', + 'send_to' => 'If you select "Triggering User", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity.', + 'specific_days' => 'You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates.', + 'trigger' => 'The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one.', + 'user' => 'The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "anyone" since most triggers are set up for all users interacting with the system', + 'verify' => 'Marks a report as verified or not.', + ) , + 'change_picture' => 'Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture.', + 'default_value' => 'Separate each value with a comma, e.g. value1, value2.', + 'radio_choices' => 'Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3', + 'dropdown_choices' => 'Separate each choice item with a comma, e.g. Item 1, Item 2 etc.', + 'private_to' => 'Start typing to list members.', + 'private_subject' => 'Private message subject', + 'private_message' => 'Private message', + 'profile_color' => 'You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins.', + 'profile_email' => 'Your email address', + 'profile_name' => 'This is one of the ways that you are identified on the website. Keep in mind that this is public!', + 'profile_new_password' => 'If set, this will be your new password. Leave this field blank if you wish to keep your current password.', + 'profile_new_users_password' => 'This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time.', + 'profile_notify' => 'Selecting YES lets you get alerts via email when new reports or comments are posted on your website.', + 'profile_password' => 'Your current password. We require you enter your password to prevent any unauthorized changes to your account.', + 'profile_public' => 'Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you\'ve submitted, your checkins, badges, etc all on one page.', + 'profile_public_url' => 'This is the address where your public profile can be found.', + 'profile_username' => 'Your username cannot be changed.', + 'settings_access_level' => 'Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default.', + 'settings_alert_email' => 'This is the email address that will be used to send email alerts.', + 'settings_allow_alerts' => 'Allow users to subscribe for alerts via the web.', + 'settings_allow_clustering' => 'This allows bundling of similar reports into a single dot on the map', + 'settings_allow_comments' => 'Allow users to comment on reports on the main site.', + 'settings_allow_feed' => 'This allows RSS News feeds to be displayed on the main site.', + 'settings_allow_feed_category' => 'Điều này cho phép tạo hạng mục mới từ những nguồn cung cấp tin tức cập nhật kiểu RSS', + 'settings_allow_reports' => 'Allow users to submit information via the web form.', + 'settings_api_default_record_limit' => 'Default number of records to be fetched per API request', + 'settings_api_max_record_limit' => 'Maximum number of records to be fetched per API request', + 'settings_api_max_requests_per_ip' => 'Maximum number of API requests per IP address', + 'settings_banner' => 'The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page.', + 'settings_blocks_per_row' => 'Number of Block columns that will be displayed on each row.', + 'settings_cache_pages' => 'Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime).', + 'settings_cache_pages_lifetime' => 'Set the lifetime of the cache.', + 'settings_checkins' => 'This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page.', + 'settings_configure_map' => 'Set the map to cover a specific location.', + 'settings_default_category_colors' => 'Set one color code for all the categories on the site.', + 'settings_default_category_icons' => 'Set one icon for all the categories on the site.', + 'settings_default_location' => 'This is the country the site is being deployed.', + 'settings_display_contact' => 'Turn the Contact Tab on or off on the main site.', + 'settings_display_howtohelp' => 'Turn the How to Help Tab on or off on the main site.', + 'settings_display_items_per_page' => 'This is the number of reports displayed per page on the main site.', + 'settings_display_items_per_page_admin' => 'This is the number of reports displayed per page on the admin Back End.', + 'settings_flsms_download' => 'This is the hub for incoming messages.', + 'settings_flsms_synchronize' => 'This synchronizes the messages in the hub with the Ushahidi platform.', + 'settings_flsms_text_1' => 'Phone numbers through which the text messages are received.', + 'settings_google_analytics' => 'Tracks visitors of your site. Get detailed visitor statistics.', + 'settings_locale' => 'Sets the language that will be used in the site.', + 'settings_manually_approve_users' => 'If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin).', + 'settings_map_provider' => 'This defines which map is to be used on the site.', + 'settings_map_timeline' => 'This shows the timeline based on the date and time reports were submitted', + 'settings_private_deployment' => 'Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment.', + 'settings_require_email_confirmation' => 'Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it.', + 'settings_server_host' => 'This is where the emails reside', + 'settings_server_password' => 'This is the password for the email address that receives reports.', + 'settings_server_port' => 'This is required to accept incoming connections from the email address.', + 'settings_server_ssl_support' => 'This is required to enhance a secure connection.', + 'settings_server_type' => 'This is required to retrieve e-mails from the host server.', + 'settings_server_username' => 'This is the email address that receives reports.', + 'settings_share_site_stats' => 'Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off.', + 'settings_site_copyright_statement' => 'Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!', + 'settings_site_email' => 'This is the email address that will receive email reports and messages from the contact form.', + 'settings_site_message' => 'This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here.', + 'settings_site_name' => 'This is the name of the site that appears at the top of the main site.', + 'settings_site_submit_report_message' => 'This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting.', + 'settings_site_tagline' => 'In a few words, explain what this site is about.', + 'settings_site_timezone' => 'This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site.', + 'settings_twitter_configuration' => 'Set the twitter hashtag that will be used on a tweet', +); diff --git a/application/i18n/vi/ui_admin.php b/application/i18n/vi/ui_admin.php new file mode 100644 index 0000000000..b1a526a3bb --- /dev/null +++ b/application/i18n/vi/ui_admin.php @@ -0,0 +1,329 @@ + 'Truy cập bị từ chối. Có thể quyền ủy nhiệm của bạn không hợp lệ hoặc yêu cầu của bạn bị từ chối.', + 'access_denied_others' => 'Truy cập bị từ chối. Yêu cầu của bạn có đã được nhận, nhưng bị từ chối vì bị hạn chế số lần truy cập. Hãy thử lại khi khác.', + 'access_level' => 'Cấp độ truy cập', + 'actions' => 'Thao tác', + 'add_to_category' => 'Thêm vào phân loại', + 'added' => 'đã thêm vào', + 'added_edited' => 'đã thêm vào/đã chỉnh sửa', + 'addons' => 'Tiện ích', + 'admin_role' => 'Quản trị viên', + 'alerts' => 'Cảnh báo', + 'alerts_received' => 'Cảnh báo đã nhận được', + 'all' => 'Tất cả', + 'am' => 'Sáng', + 'anonymous' => 'Vô danh', + 'anyone_role' => 'Bất kỳ ai', + 'anywhere' => 'Bất kỳ vị trí nào', + 'api_banned' => 'API bị cấm', + 'api_logs' => 'Nhật trình API', + 'api_settings' => 'Thiết lập API', + 'api_unban' => 'GỠ LỆNH CẤM', + 'api_unban_all' => 'GỠ LỆNH CẤM CHO TẤT CẢ', + 'approved' => 'đã chấp thuận', + 'approve_auto' => 'Tự động chấp thuận', + 'approve_manual' => 'Chấp thuận bởi người sử dụng', + 'archived' => 'Đã sao lưu', + 'are_you_sure_you_want_to' => 'Bạn có chắc muốn', + 'are_you_sure_you_want_to_delete_this_item' => 'Bạn có chắc muốn xóa đối tượng này?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Bạn có chắc muốn xóa hình chụp này?', + 'are_you_sure_you_want_to_switch_forms' => 'Bạn có chắc muốn chuyển đổi các lá đơn?', + 'assign' => 'Gán', + 'assignments' => 'Việc gán', + 'assign_badge' => 'Gán phù hiệu', + 'author' => 'Tác giả', + 'author_email' => 'Email tác giả', + 'back' => 'Quay lại', + 'banip_action' => 'CẤM IP', + 'between_times' => 'Giữa các lần', + 'blocks' => 'Khối', + 'body' => 'Cơ thể', + 'cancel' => 'Hủy bỏ', + 'categories' => 'Phân loại', + 'chart_display_error' => 'Xảy ra lỗi khi hiển thị biểu đồ', + 'check_message_valid' => 'Xin chắc chắc rằng tin nhắn của bạn là hợp lệ.', + 'check_number' => 'Xin chắc chắn rằng con số này là hợp lệ.', + 'check_sms_settings' => 'Xin vui lòng kiểm tra thiết lập SMS của bạn!', + 'checkin_details' => 'Chi tiết về điểm đến', + 'checkins' => 'Điểm đến', + 'cities_loaded' => 'Đã tải các thành phố', + 'code' => 'mã', + 'code_out_of_sync' => 'Phiên bản mã cho việc đồng bộ hóa.', + 'color' => 'Màu sắc', + 'comments' => 'Bình luận', + 'confirmation_code' => 'Xác nhận mã cảnh báo của bạn là:', + 'confirm_msg' => 'Người dùng này đã được', + 'count' => 'Số lần', + 'country_not_found' => 'Không tìm thấy quốc gia', + 'created_edited' => 'đã tạo/đã sửa', + 'create_report' => 'Tạo một báo cáo', + 'critical_upgrade' => 'Cập nhật khẩn cấp', + 'csv' => 'CSV', + 'currently_active' => 'Hiện đang hoạt động', + 'currently_inactive' => 'Hiện đang không hoạt động', + 'custom_forms_insufficient_permissions' => 'Bạn không có quyền tác động để thay đổi các khung thông tin dưới đây.', + 'daily' => 'Hằng ngày', + 'dashboard' => 'Bảng điều khiển', + 'database' => 'cơ sở dữ liệu', + 'date_time' => 'Ngày tháng & Thời gian', + 'date_added' => 'Đã thêm vào ngày tháng', + 'date_modified' => 'Đã chỉnh sửa ngày tháng', + 'days_of_the_week' => 'Ngày trong tuần', + 'db_out_of_sync' => 'Phiên bản DB đã quá hạn để đồng bộ hóa.', + 'deleted' => 'đã xóa', + 'delete_action' => 'Xóa', + 'delete_all' => 'Xóa tất cả các báo cáo', + 'delete_badge' => 'Xóa phù hiệu', + 'demo' => 'Bản thử nghiệm', + 'description' => 'Mô tả', + 'disabled' => 'Vô hiệu hóa', + 'divider_start_field' => 'Bắt đầu phân phát', + 'divider_end_field' => 'Kết thúc phân phát', + 'divider_class' => 'div class', + 'download_reports' => 'Tải về báo cáo', + 'dropdown_choices' => 'Lựa chọn xổ xuống', + 'edited' => 'ĐÃ SỬA', + 'edited_by' => 'Đã sửa bởi', + 'edit_action' => 'Chỉnh sửa', + 'edit_log' => 'Nhật trình chỉnh sửa', + 'email' => 'Email', + 'entire_collective' => 'Toàn bộ việc thu thập', + 'error_geocoding' => 'Lỗi khi đang xác định mã địa lý! Lỗi về HTTP', + 'error_imap' => 'Thư viện PHP IMAP chưa được cài đặt', + 'error_twitter' => 'Giấy ủy nhiệm không hợp lệ', + 'error_msg' => 'Lỗi', + 'error_post_incident' => 'Lỗi, không thể đăng tiến trình này', + 'every_six_hours' => 'Mỗi sáu giờ', + 'every_twelve_hours' => 'Mỗi mười hai giờ', + 'experimental' => 'Thực nghiệm ', + 'faqs' => 'Câu hỏi thường gặp', + 'feed' => 'feed', + 'feedback' => 'Phản hồi', + 'feeds' => 'feed', + 'field_choices' => 'Danh sách lựa chọn', + 'field_default' => 'Giá trị mặc định', + 'field_datatype' => 'Loại dữ liệu', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numeric', + 'field_datatype_text' => 'Free Text', + 'field_height' => 'Chiều cao (tính bằng dòng)', + 'field_hidden' => 'Khung thông tin bị ẩn', + 'field_maxlength' => 'Độ dài ký tự tối đa', + 'field_name' => 'Tên khung thông tin', + 'field_toggle' => 'Chuyển đổi', + 'field_toggle_no' => 'Không đồng ý', + 'field_toggle_yes_close' => 'Đồng ý, đã đóng lại theo mặc định', + 'field_toggle_yes_open' => 'Đồng ý, mở theo mặc định', + 'file_not_found_upload' => 'Không thể tìm thấy tập tin được tải lên', + 'file_open_error' => 'Không thể mở tập tin để đọc dữ liệu', + 'form_not_exists' => 'Phần đơn này không hề tồn tại!', + 'forum' => 'Diễn đàn', + 'free_text_field' => 'Khu vực khung thông tin văn bản (văn bản tự do)', + 'date_field' => 'Khung thông tin ngày tháng', + 'radio_field' => 'Khung thông tin nút lựa chọn', + 'checkbox_field' => 'Khung thông tin phần đánh dấu', + 'dropdown_field' => 'Khung thông tin menu xổ xuống', + 'from' => 'Từ', + 'from_date' => 'Từ', + 'geonames_timeout' => 'Lỗi vì thời gian kết nối đến Geonames quá hạn', + 'get_help' => 'Nhận sự giúp đỡ', + 'get_more_themes' => 'Tải thêm nhiều giao diện hơn', + 'get_more_plugins' => 'Tải thêm nhiều tiện ích hơn', + 'header_actions' => 'Thao tác', + 'header_add_edit' => 'Thêm/sửa', + 'header_email' => 'Email', + 'header_manage_users' => 'Quản lý người dùng', + 'header_role' => 'Vai trò', + 'header_user' => 'Người dùng', + 'help' => 'trợ giúp', + 'hourly' => 'Hằng giờ', + 'incident_feed' => 'Feed tiến trình cho', + 'installer_info' => 'Thư mục cài đặt vẫn không tồn tại. Xóa thư mục cài đặt. Đây là tiềm ẩn an ninh quan trọng.', + 'instance' => 'Tiến trình', + 'instances' => 'Tiến trình', + 'instance_details' => 'Thông tin tiến trình', + 'invalid_parameter' => 'Thông số không hợp lệ', + 'ip_address' => 'Địa chỉ IP', + 'is_date' => 'Đây có phải là khung thông tin ngày tháng?', + 'ispublic_visible' => 'Ai có thể xem các câu trả lời', + 'ispublic_submit' => 'Ai có thể đệ trinh cầu trả lời', + 'keyword' => 'Từ khóa', + 'keywords' => 'Từ khóa', + 'label_email' => 'Địa chỉ email:', + 'label_full_name' => 'Tên đầy đủ:', + 'label_password' => 'Mật khẩu:', + 'label_role' => 'Vai trò:', + 'label_username' => 'Tên người dùng:', + 'layers' => 'Lớp', + 'login_role' => 'Người điều hành', + 'logout' => 'Đăng xuất', + 'logs' => 'Nhật trình', + 'manage' => 'Quản lý', + 'manage_roles' => 'Quản lý Vai trò & Quyền hạn', + 'manage_users' => 'Xem người dùng', + 'manage_users_edit' => 'Thêm/sửa người dùng', + 'manage_public_listing' => 'Quản lý việc liệt kê công cộng của bạn', + 'mark_as' => 'Đánh dấu dưới dạng', + 'marked_as_not_spam' => 'đã đánh dấu không phải spam', + 'marked_as_spam' => 'đã đánh dấu dưới dạng spam', + 'match_no_documents' => 'Không khớp với bất kỳ tài liệu nào', + 'message' => 'Tin nhắn', + 'messages' => 'Tin nhắn', + 'messages_laconica' => 'Tin nhắn Laconica', + 'messages_twitter' => 'Tin nhắn Twitter', + 'message_sent' => 'Tin nhắn của bạn đã được gửi!', + 'mhi' => 'MHI', + 'minute' => 'Phút', + 'minutes' => 'Phút', + 'missing_parameter' => 'Thiếu các thông số', + 'moderator' => 'Người điều hành', + 'modified' => 'đã chỉnh sửa', + 'modify_timezone' => 'Chỉnh sửa thiết lập thời gian vùng miền', + 'move_down_action' => 'di chuyển xuống', + 'move_up_action' => 'di chuyển lên', + 'multiple_hosted_instances' => 'Tiến trình Multiple hosted', + 'my_alerts' => 'Cản báo của tôi', + 'my_checkins' => 'Điểm đến của tôi', + 'my_profile' => 'Hồ sơ của tôi', + 'my_reports' => 'Báo cáo của tôi', + 'my_votes' => 'Bình chọn diễn viên', + 'my_votes_up' => 'Dương tính', + 'my_votes_down' => 'Âm tính', + 'name' => 'Tên', + 'new_alert' => 'Tạo cảnh báo mới', + 'new_private' => 'Tạo tin nhắn mới', + 'new_password' => 'Mật khẩu mới', + 'no' => 'Không đồng ý', + 'none_category_explanation' => 'Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần đệ trình báo cáo từ những người dùng gửi các báo khác. Phần này được sử dụng để giữ các báo cáo còn lại vốn chưa được phân loại (các báo cáo chưa được phân loại) dưới dạng phân loại bị xóa.', + 'notification' => 'Thông báo', + 'not_case_sensitive' => 'Không phân biệt chữ in hoa.', + 'not_found' => 'Không tìm thấy', + 'no_data' => 'Không có dữ liệu. Không có kết quả nào được hiển thị.', + 'no_error' => 'Không có lỗi', + 'no_result_display_msg' => 'Không có kết quả để hiển thị!', + 'of' => 'của', + 'on_specific_count' => 'Dựa trên số lượng', + 'openids' => 'OpenID\'s', + 'page' => 'trang', + 'pages' => 'trang', + 'page_not_found' => 'Không tìm thấy trang', + 'page_not_found_message_with_contact' => 'Rất tiếc, trang bạn muốn truy cập hiện không có.

Bạn đã đi đến đường liên kết này từ một nơi khác trên trang của chúng tôi?
Nếu bạn truy cập đến trang này từ trang thuộc hệ thống hiện tại, xin vui lòng liên hệ với chúng tôi để chúng tôi có thể khắc phục vấn đề này.

Có phải bạn đã truy cập đến trang này từ đường dẫn ở các trang khác không thuộc hệ thống của chúng tôi?
Liên kết ở các trang khác không thuộc hệ thống của chúng tôi thường sai về mặt cú pháp hoặc các liên kết đó đã quá hạn truy cập. Hãy thông báo cho chúng tôi biết trang mà bạn đã truy cập trước khi click vào đường liên kết để đến trang này nhằm khắc phục vấn đề lỗi trang trên.

Có phải bạn đã gõ vào đường dẫn?
Có thể bạn đã gõ vào đường dẫn (địa chỉ) sai cú pháp. Hãy xem lại đường dẫn hay địa chỉ mà bạn đã truy cập.

', + 'page_not_found_message' => 'Rất tiếc, trang bạn đang muốn truy cập hiện không tồn tại', + 'parameters_used' => 'Thông số được sử dụng', + 'password' => 'Mật khẩu', + 'password_reset' => 'Đặt lại mật khẩu', + 'password_reset_message_line_1' => 'Thân mến', + 'password_reset_message_line_2' => 'Chúng tôi đã nhận được yêu cầu đặt lại mật khẩu cho', + 'password_reset_message_line_3' => 'Để có thể thay đổi mật khẩu của bạn, vui lòng click vào liên kết phía dưới (hoặc sao chép và dán vào trình duyệt của bạn).', + 'password_reset_message_line_4' => 'Theo như yêu cầu của bạn, mật khẩu đã được thay đôi. Thông tin chi tiết sẽ có dạng', + 'password_reset_subject' => 'Đặt lại mật khẩu Ushahidi', + 'phone' => 'Điện thoại', + 'please_select' => 'Xin vui lòng chọn', + 'pm' => 'PM', + 'post_method_not_used' => 'Dữ liệu không được gửi bởi phương thức đăng bài', + 'preview' => 'Xem trước', + 'private_message' => 'Tin nhắn', + 'private_messages' => 'Tin nhắn riêng tư', + 'private_sent' => 'Tin nhắn riêng đã được gửi', + 'private_subject' => 'Chủ đề', + 'private_to' => 'Đến', + 'public_listing' => 'Liệt kê công cộng', + 'qualifiers' => 'Người thẩm định', + 'read' => 'đọc', + 'relevance' => 'Thích hợp', + 'report_title' => 'Báo cáo tiêu đề', + 'report_date' => 'Ngày ghi báo cáo', + 'reporters' => 'Người báo cáo', + 'reporter_levels' => 'Nhãn người báo cáo', + 'reports' => 'Báo cáo', + 'reputation' => 'Điểm danh vọng', + 'required' => 'Yêu cầu', + 'reset' => 'Đặt lại', + 'response' => 'Trả lời', + 'results' => 'Kết quả', + 'revoke' => 'Hủy bỏ', + 'riverid_exists_admin' => 'Email này có một tài khoản gắn kết với CrowdmapID. Người sử dụng sẽ cần sử dụng mật khẩu bên phía Crowdmap để đăng nhập.', + 'save_settings' => 'Lưu thiết lập', + 'search' => 'Tìm kiếm', + 'search_reports' => 'Tìm kiếm báo cáo', + 'searching_for' => 'tìm kiếm về', + 'security_info_encryption_key' => 'Khóa mã hóa được chỉnh về giá trị mặc định. Điều này không an toàn và cần phải được thay đổi.', + 'security_info_https' => 'Trang này đang sử dụng phương thức HTTP. Vì lí do an ninh nên chuyển về dạng HTTPS', + 'security_info_instructions' => 'Các hướng dẫn hiện đang được phổ biến trên wiki:', + 'select_download_format' => 'Chọn định dạng báo cáo tải về mà bạn muốn:-', + 'select_field_type' => '--- Chọn một loại khung thông tin ---', + 'select_item' => 'Xin chọn một đối tượng', + 'select_trigger_before_response' => 'Bạn phải chọn một Trigger trước khi chọn Trả Lời', + 'select_trigger_before_qualifiers' => 'Bạn phải chọn một Trigger trước khi bạn xác định Người Thẩm Định.', + 'sender' => 'Người gửi', + 'send_to' => 'Gửi đến', + 'sent_from_website' => 'Tin nhắn này đã được gửi đến website của bạn tại', + 'server_time' => 'Thời gian server', + 'settings' => 'Thiết lập', + 'showing_page' => 'Hiển thị trang', + 'showing_results' => 'Hiển thị kết quả', + 'shown' => 'đã hiển thị', + 'special_category' => 'Phân loại đặc biệt', + 'special_category_explanation' => 'Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần mẫu đơn đệ trình báo cáo từ phía người dùng khi họ đệ trình các báo cáo. Tính năng này có liên kết với tính năng "Người Gửi Báo Cáo Được Tin Tưởng".', + 'specific_area' => 'Khu vực xác địn', + 'state' => 'Trạng thái', + 'statistics' => 'Thống kê', + 'stats' => 'Trạng thái', + 'stats_collection_error' => 'Tổng hợp trạng thái thất bại! Xin vui lòng thử lại lần nữa.', + 'stats_collection_error_short' => 'Tổng hợp trạng thái thất bại!', + 'specific_days' => 'Xác định ngày', + 'subject' => 'Chủ đề', + 'superadmin_role' => 'Quản trị viên chính yếu', + 'task_performed' => 'Tác vụ đã thực hiện', + 'text_field' => 'Khung thông tin văn bản', + 'theme_name' => 'Tên', + 'title' => 'Quản lý người dùng', + 'timeout' => 'Lỗi về quá hạn thời gian', + 'to' => 'đến', + 'total_records' => 'Tổng cộng các bản ghi', + 'to_date' => 'đến', + 'translate_reports' => 'Dịch các báo cáo', + 'trigger' => 'Trigger', + 'triggering_user' => 'Người dùng Trigger', + 'triggers' => 'Trigger', + 'unapproved' => 'chưa được chấp thuận', + 'unknown' => 'Chưa Rõ', + 'unknown_failure' => 'Lỗi chưa rõ', + 'unread' => 'chưa đọc', + 'unsubscribe_message' => 'Bạn sẽ không còn nhận cảnh báo từ', + 'update_link' => 'Click vào đây để nâng cấp ngay bây giờ', + 'upgrade_ushahidi' => 'Nâng cấp Ushahidi', + 'upgrade_ushahidi_status' => 'Trạng thái nâng cấp Ushahidi', + 'upload_reports' => 'Tải lên báo cáo', + 'user' => 'Người dùng', + 'users' => 'Người dùng', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Đã xác nhận/Vẫn chưa xác nhận', + 'verify_unverify' => 'Xác nhận/Chưa xác nhận', + 'version' => 'Phiên bản', + 'version_available' => 'hiện đã có thể nâng cấp.', + 'video_encoding' => 'Mã hóa video', + 'view_private' => 'Tin nhắn riêng', + 'view_site' => 'Xem trang', + 'view_report' => 'Xem báo cáo', + 'welcome' => 'Chào mừng,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Đồng ý', + 'your_search_for' => 'Tìm kiếm của bạn về', + 'delete_all_instructions' => 'Click vào nút bên dưới sẽ xóa TOÀN BỘ các báo cáo trong cơ sở dữ liệu. Bạn nên sử dụng nút này với sự cẩn trọng tối đa vì tiến trình này không thể được hủy bỏ.', + 'delete_all_backup' => 'Chúng tôi khuyến nghị bạn nên sao lưu lại cơ sở dữ liệu của mình trước khi tiếp tục', + 'delete_all_button' => 'Tôi chắc chắc rằng tôi muốn xóa toàn bộ %s (các) báo cáo trong cơ sở dữ liệu.', + 'delete_all_confirm' => 'Bạn có chắc chắc rằng bạn muốn xóa toàn bộ các báo cáo?', + 'delete_all_no_reports' => 'Hiện không có báo cáo nào để xóa.', + 'user_no_logins' => 'Số lần đăng nhập', + 'user_last_login' => 'Lần đăng nhập cuối cùng', + 'user_confirmed_account' => 'Đã xác nhận tài khoản?', +); diff --git a/application/i18n/vi/ui_main.php b/application/i18n/vi/ui_main.php new file mode 100644 index 0000000000..f8df8df6e1 --- /dev/null +++ b/application/i18n/vi/ui_main.php @@ -0,0 +1,627 @@ + 'Dịch bởi Phan Anh', + 'access' => 'Truy cập', + 'access_limits' => 'Giới hạn truy cập', + 'account_name' => 'Tên tài khoản', + 'actions' => 'Thao tác', + 'action_confirm' => 'Thao tác hiện vẫn chưa hoàn tất. Bạn có chắc muốn tiếp tục?', + 'activate' => 'Kích hoạt', + 'active' => 'Đang hoạt động', + 'add' => 'Thêm', + 'added_by' => 'Thêm vào bởi', + 'additional_data' => 'Dữ liệu bổ sung', + 'additional_reports' => 'Báo cáo bổ sung', + 'add_edit' => 'Thêm/Sửa', + 'add_field' => 'Thêm một trường', + 'add_language' => 'Thêm ngôn ngữ', + 'add_new' => 'Thêm mới', + 'add_new_category' => 'Thêm Phân Loại Mới', + 'add_translation' => 'Thêm Chuyển Ngữ', + 'admin' => 'Quản Trị', + 'alerts' => 'Nhận thông báo', + 'alerts_alert_me' => 'Thông báo tôi khi một báo cáo đã được thực thi, hoặc xung quanh:', + 'alerts_btn_send' => 'Lưu Thông Báo Của Tôi', + 'alerts_email' => 'Địa chỉ email:', + 'alerts_enter_email' => 'điền vào địa chỉ email', + 'alerts_enter_mobile' => 'điền vào số điện thoại đi kèm theo là mã vùng điện thoại đứng đầu', + 'alerts_get' => 'Nhận Thông Báo', + 'alert_has_been' => 'Cảnh báo đã được', + 'alerts_mobile_phone' => 'Số di động:', + 'alerts_place_spot' => 'Hoặc click vào một điểm nào đó ở bản đồ bên dưới, và chúng tối sẽ thông báo cho bạn khi báo cáo đã được hoàn tất trong vòng chu vi 20 ki lô mét.', + 'alerts_place_spot2' => 'Nếu bạn không thể tìm thấy vị trí của bạn, bạn có thể click vào bản đồ để chỉ ra vị trí hiện tại của bạn.', + 'alerts_rss' => 'Tin RSS (sao chép đường dẫn bên dưới)', + 'alerts_select_city' => 'Chọn một thành phố', + 'alerts_step1_select_city' => 'Bước 1:Chọn thành phố hoặc địa điểm của bạn:', + 'alerts_step2_send_alerts' => 'Bước 2: Gửi thông báo tới:', + 'alerts_step3_select_catgories' => 'Bước 3 (không có cũng được): Chọn Phân Loại', + 'alert_confirm_previous' => 'Xác nhận Yêu Cầu Thông Báo Trước Đó', + 'alert_saved' => 'Phần thông báo của bạn đã được lưu!', + 'all' => 'Tất cả', + 'allowed' => 'Cho phép', + 'allowed_tags' => 'Cho phép các thẻ đánh dấu HTLM: "%s".', + 'allowed_iframes' => 'Iframes chỉ được cho phép từ: %s.', + 'all_categories' => 'Tất cả Phân Loại', + 'all_time' => 'Tất cả thời gian', + 'and' => 'và', + 'api' => 'API', + 'approve' => 'Chấp thuận', + 'approved' => 'Đã chấp thuận', + 'approved_reports' => 'Báo cáo đã chấp thuận', + 'approve_this_report' => 'Chấp thuận báo cáo này', + 'approximate' => 'Xấp xỉ', + 'archive' => 'Sao lưu', + 'archived' => 'Đã sao lưu', + 'ascending' => 'Tăng dần', + 'at' => 'tại', + 'author' => 'Tác giả', + 'auto_checkin' => 'Tự động đăng nhập', + 'Auto' => 'Tự động', + 'avg_reports_per_day' => 'Trung bình báo cáo mỗi ngày', + 'awaiting_approval' => 'Đang đợi việc chấp thuận', + 'awaiting_verification' => 'Đang đợi việc xác nhận', + 'badge' => 'Huy hiệu', + 'badges' => 'Huy hiệu', + 'badge_image' => 'Hình ảnh huy hiệu', + 'badge_image_upload_your_own' => 'Hoặc bạn có thể tự tải hình ảnh về huy hiệu của chính bạn.', + 'badge_pack' => 'Gói huy hiệu', + 'badge_select' => 'Chọn một huy hiệu', + 'blog' => 'Blog', + 'browse_profiles' => 'Duyệt tìm Hồ Sơ', + 'cancel' => 'Hủy bỏ', + 'categories' => 'Phân Loại', + 'category' => 'Phân Loại', + 'category_filter' => 'Bộ lọc phân loại', + 'category_has_been' => 'Phân loại đã được', + 'category_name' => 'Tên phân loại', + 'change_date_range' => 'Thay đổi khoảng thời gian', + 'change_password' => 'Thay đổi mật khẩu', + 'change_picture' => 'Thay đổi hình ảnh của bạn', + 'choose' => 'Chọn một', + 'choose_data_points' => 'Chọn điểm dữ liệu để tải xuống', + 'choose_date_range' => 'Hoặc chọn khoảng thời gian của riêng bạn', + 'choose_field_type' => 'Chọn loại trường', + 'cleanurl' => 'Làm rỗng URL', + 'clear' => 'Làm rỗng', + 'clear_map' => 'Làm rỗng bản đồ', + 'close' => 'Đóng lại', + 'clusters' => 'bó', + 'color' => 'Màu sắc', + 'comment' => 'Bình luận', + 'comments' => 'Bình luận', + 'comment_details' => 'Chi tiết Bình luận', + 'configuration_saved' => 'Thiết lập của bạn đã được lưu!', + 'configure' => 'Chỉnh sửa', + 'confirm_email_successful' => 'Bạn đã xác nhận thành công địa chỉ email của bạn! Hãy đăng nhập bên dưới, biên dịch bởi Phan Anh.', + 'confirm_email_successful_and_approval' => 'Bạn đã xác nhận thành công địa chỉ email của bạn! Quản trị viên phải chấp thuận tài khoản của bạn trước khi đăng nhập vào', + 'confirm_email_failed' => 'Việc xác nhận email không thành công! Bạn có thể được quyền yêu cầu thêm một email xác nhận nữa bên dưới.', + 'contact' => 'Liên hệ chúng tôi', + 'contact_code' => 'Mã an ninh', + 'contact_email' => 'Thay đổi địa chỉ email của bạn', + 'contact_message' => 'Tin nhắn', + 'contact_message_has_send' => 'Tin nhắn của bạn đã được gửi!', + 'contact_name' => 'Tên của bạn', + 'contact_phone' => 'Số điện thoại của bạn', + 'contact_send' => 'Gửi tin nhắn', + 'contact_subject' => 'Tựa đề tin nhắn', + 'copyright' => 'Biên dịch bởi phan Anh ©', + 'create' => 'Tạo', + 'create_edit' => 'Tạo/sửa', + 'create_new' => 'Tạo mới', + 'create_new_password' => 'Tạo mật khẩu mới', + 'create_report' => 'Tạo báo cáo', + 'credibility' => 'Độ tin cậy', + 'current_password' => 'Mật khẩu hiện tại', + 'custom_fields' => 'Trường tự chọn', + 'data' => 'Thông tin', + 'date' => 'Ngày tháng', + 'date_format' => '(tt/nn/nnnn)', + 'date_time' => 'Thời gian & Ngày tháng', + 'day' => 'ngày', + 'Daily' => 'Hàng ngày', + 'deactivate' => 'Tắt kích hoạt', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Xóa', + 'deleted' => 'Đã xóa', + 'deletes' => 'Xóa', + 'delete_disabled' => 'Tắt tính năng xóa', + 'delete_last' => 'Xóa tận cùng', + 'delete_report' => 'Xóa báo cáo này', + 'delete_selected' => 'Xóa những vùng được chọn', + 'delete_spam' => 'Xóa Spam', + 'demo' => 'Thử nghiệm', + 'description' => 'Mô tả', + 'descending' => 'Giảm dần', + 'detailed_location_example' => 'Thí dụ: Góc phố Thần Kinh, số 5 đường Tưng Tửng & số 4 bệnh viện Nhiệt Đới, thành phố Phồng Tôm', + 'details' => 'Chi tiết', + 'direct_report' => 'Báo cáo trực tiếp', + 'disabled' => 'Vô hiệu hóa', + 'disapprove' => 'Không chấp thuận', + 'download_reports' => 'Tải về báo cáo', + 'download' => 'Tải xuống', + 'edit' => 'Sửa', + 'edit_form_fields' => 'Sửa các trường trong mẫu đơn', + 'edit_report' => 'Sửa báo cáo', + 'email' => 'Email', + 'email_address' => 'Địa chỉ email', + 'email_configuration' => 'Thiết lập server mail', + 'email_server_host' => 'Server Host Mail', + 'email_server_password' => 'Mật khẩu Mail Server', + 'email_server_port' => 'Cổng kết nối Mail Server', + 'email_server_ssl_support' => 'Hỗ trợ kết nối SSL Mail Server', + 'email_server_type' => 'Loại Mail Server', + 'email_server_username' => 'Tên người dùng Mail Server', + 'email_settings_comment_0' => 'nên các thiết lập cần được gắn với địa chỉ email này', + 'email_settings_comment_00' => 'Để có thể nhận báo cáo bằng email, hãy điền vào địa chỉ tài khoản email của bạn trong phần thiết lập bên dưới. Chú ý rằng email sẽ nhận được tại email của bạn', + 'email_settings_comment_1' => 'Một vài server yêu cầu việc hoàn tất địa chỉ email', + 'email_settings_comment_2' => 'Mật khẩu tài khoản email', + 'email_settings_comment_3' => 'Cổng kết nối thường gặp: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Thí dụ: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Thí du: pop3, imap', + 'email_settings_comment_6' => 'Bật hoặc tắt kết nối dạng SSL', + 'empty' => '---RỖNG---', + 'end_point' => 'đến', + 'error' => 'Lỗi!', + 'example' => 'Thí dụ', + 'example_country' => 'Kenya', + 'external_apps' => 'Ứng dụng bổ sung', + 'external_video_link' => 'Liên kết video bổ sung', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Cung cấp phản hồi', + 'feedback_reports' => 'Mong gửi cho chúng tôi phản hồi về kinh nghiệm của bạn bằng cách gửi thư điện tử tới', + 'feeds' => 'Feeds', + 'feed_has_been' => 'Feed đã được', + 'feed_items' => 'Đối tượng feed', + 'feed_name' => 'Tên feed', + 'feed_url' => 'URL của Feed', + 'field_unused' => 'Các trường không sử dụng', + 'file' => 'Tập ti', + 'file_over_max_allowed' => 'Tập tin của bạn có kích thước quá giới hạn cho phép.', + 'filters' => 'Bộ lọc', + 'filter_reports' => 'Lọc báo cáo', + 'filter_reports_by' => 'Lọc báo cáo bởi', + 'filter_reports_contain' => 'Lọc các báo cáo chứa', + 'find' => 'Tìm kiếm', + 'find_location' => 'Địa điểm tìm kiếm', + 'first_name' => 'Tên', + 'force_run_scheduler' => 'Thời gian bắt buộc chạy', + 'forgot_password' => 'Quên mật khẩu ư?', + 'form' => 'Mẫu đơn', + 'forms' => 'Mẫu đơn', + 'form_description' => 'Miêu tả mẫu đơn', + 'form_edit' => 'Sửa mẫu đơn này', + 'form_has_been' => 'Mẫu đơn đã được', + 'form_title' => 'Tiêu đề mẫu đơn', + 'from' => 'Từ', + 'full_name' => 'Họ tên đầy đủ', + 'geolocation_available' => 'Địa chỉ địa lý hiện có', + 'geometry_color' => 'Màu sắc', + 'geometry_comments' => 'Bình luận', + 'geometry_label' => 'Nhãn', + 'geometry_strokewidth' => 'Độ rộng nét', + 'go' => 'Đi đến', + 'hashtag' => 'Hashtag', + 'has_been' => 'đã được', + 'help' => 'Giúp đỡ bằng cách nào', + 'hidden' => 'Bị ẩn', + 'hide' => 'Ẩn', + 'hide_this_message' => 'ẩn tin nhắn này', + 'home' => 'Trang chủ', + 'Hourly' => 'Hàng giờ', + 'how_to_report' => 'Làm cách nào để báo cáo', + 'https' => 'HTTPS', + 'id' => 'Chỉ số', + 'identify_you' => 'Sử dụng để nhận dạng bạn trên các trang với những người sử dụng khác.', + 'image' => 'Hình ảnh', + 'images' => 'Hình ảnh', + 'image_icon' => 'Hình ảnh/Biểu tượng', + 'inactive' => 'Tắt kích hoạt', + 'inbox' => 'Hộp thư', + 'incident' => 'Ngẫu nhiên', + 'incidents_nearby' => 'Ngẫu nhiên gần đây', + 'incident_location' => 'Địa điểm ngẫu nhiên', + 'include' => 'Bao gồm', + 'include_categories' => 'Bao gồm phân loại', + 'include_custom_fields' => 'Bao gồm trường tự chọn', + 'include_description' => 'Bao gồm mô tả', + 'include_detail' => 'Bao gồm càng nhiều thông tin càng tốt', + 'include_latitude' => 'Bao gồm vĩ độ', + 'include_location_information' => 'Bao gồm thông tin địa điểm', + 'include_longitude' => 'Bao gồm kinh độ', + 'include_personal_info' => 'Bao gồm thông tin cá nhân', + 'incoming_media' => 'Media được gửi tới', + 'information_evaluation' => 'Thử nghiệm thông tin', + 'input_location' => 'Điền vào vị trí chính xác của bạn', + 'insufficient_role' => 'Tài khoản của bạn không có quyền truy cập cao hơn để có thể ghi nhận mọi tác động. Hãy liên hệ người quản trị.', + 'interval' => 'Khoảng thời gian', + 'in_response_to' => 'Để trả lời về', + 'ip_address' => 'Địa chỉ IP', + 'is_this_your_profile' => 'Đây là hồ sơ của bạn?', + 'item' => 'đối tượng', + 'items' => 'đối tượng', + 'item_details' => 'item_details', + 'item_title' => 'Tiêu đề đối tượng', + 'key' => 'Khóa', + 'keywords' => 'Từ khóa', + 'kml_kmz_file' => 'Tập tin KMZ/KML', + 'kml_kmz_upload' => 'Tải lên tập tin KMZ/KML', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Ngôn ngữ', + 'last' => 'Trước đó', + 'last_month' => 'Tháng trước', + 'last_name' => 'Họ', + 'last_year' => 'Năm trước', + 'latitude' => 'Vĩ độ', + 'layers' => 'Lớp', + 'layers_filter' => 'Lớp khác', + 'layer_has_been' => 'Lớp đã bị', + 'layer_name' => 'Tên lớp', + 'layer_url' => 'Đường dẫn đến lớp', + 'leave_a_comment' => 'Để lại bình luận', + 'less_information' => 'Ít thông ti', + 'level' => 'Cấp độ', + 'level_has_been' => 'Cấp độ này được', + 'level_name' => 'Tên cấp độ', + 'limited' => 'Hạn chế', + 'link' => 'Đường liên kết', + 'list' => 'Danh sách', + 'loading_reports' => 'Đang tải báo cáo', + 'location' => 'Địa điểm', + 'locations' => 'Địa điểm', + 'location_example' => 'Thành phố, Bang và/hoặc quốc gia', + 'login' => 'Đăng nhập', + 'login_account_creation_successful' => 'Tài khoản đã được tạo thành công. Bạn có thể đăng nhập ngay bây giờ.', + 'login_confirmation_sent' => 'Xác nhận đã được gửi đến địa chỉ email của bạn.', + 'login_approval_required' => 'Đã tạo xong tài khoản. Tài khoản của bạn phải được chấp thuận bởi quản trị viên trước khi bạn có thể đăng nhập vào.', + 'login_email_doesnt_exist' => 'Địa chỉ email không tồn tại. Xin vui lòng thử một địa chỉ khác hoặc tạo một tài khoản.', + 'login_select_openid' => 'Xin vui lòng click vào nhà cung cấp tài khoản của bạn', + 'login_with' => 'Đăng nhập với', + 'login_userpass' => 'Email và mật khẩu', + 'login_openid' => 'OpenID', + 'login_signup' => 'Đăng ký', + 'login_signup_click' => 'Tạo một tài khoản', + 'login_signup_confirmation_message' => 'Cảm ơn bạn đã đăng ký tại %1$s. Để có thể xác nhận email của mình, vui lòng truy cập đường dẫn sau: %2$s', + 'login_signup_confirmation_subject' => 'Xác nhận đăng ký', + 'login_signup_admin_approval_message' => 'Một người dùng mới đã đăng ký tại %1$s. Để chấp thuận việc đăng ký này vui lòng truy cập vào đường dẫn sau: %2$s', + 'login_signup_admin_approval_subject' => 'Chấp thuận yêu cầu đăng ký', + 'login_signup_approval_message' => 'Tài khoản của bạn đã được chấp thuận về %1$s. Để có thể đăng nhập hãy truy cập vào đường dẫn sau: %2$s', + 'login_signup_approval_subject' => 'Đã chấp thuận tài khoản mới', + 'login_signup_text' => 'Tạo một tài khoản mới sẽ tận dụng được nhiều tính năng trên trang này', + 'longitude' => 'Kinh độ', + 'map' => 'Bản đồ', + 'mark_read' => 'Đánh dấu đã đọc', + 'mark_unread' => 'Đánh dấu chưa đọc', + 'maximum_filesize' => 'Kích thước tối đa của tập tin', + 'media' => 'Media', + 'media_filter' => 'Bộ lọc media', + 'members' => 'Thành viên', + 'manage_your_account' => 'Quản lý tài khoản', + 'message' => 'Tin nhắn', + 'messages' => 'Tin nhắn', + 'message_details' => 'Chi tiết tin nhắn', + 'message_non_numeric_source' => 'Tin nhắn được gửi từ một nguồn không rõ số liệu:', + 'mobile' => 'Di động', + 'modify' => 'Chỉnh sửa', + 'modify_date' => 'Chỉnh sửa ngày tháng', + 'month' => 'tháng', + 'Monthly' => 'Hàng tháng', + 'more' => 'Các phần khác', + 'more_information' => 'Thông tin bổ sung', + 'multi_country_instance' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'must_confirm_email_address' => 'Bạn phải xác nhận email để có thể truy cập đến phần này. Nếu bạn mất thư xác nhận, bạn có thể yêu cầu gửi lại mã xác nhận một lần nữa bên dưới.', + 'name' => 'Tên', + 'nearby_report' => 'Báo cáo gần đây', + 'new' => 'Mới', + 'news' => 'Tin tức', + 'news_feeds' => 'Tin tức feed', + 'news_source' => 'Nguồn tin tức', + 'new_category' => 'Tạo phân loại mới', + 'new_password' => 'Mật khẩu mới', + 'new_report' => 'Báo cáo mới', + 'next' => 'Tiếp theo', + 'no' => 'Không đồng ý', + 'no_checkins' => 'Không có thông tin về đăng nhập để hiển thị.', + 'no_data' => 'Không có dữ liệu', + 'none' => 'Không', + 'notices' => 'Chú ý', + 'not_approved' => 'Chưa được cho phép', + 'not_approved_singular' => 'Chưa được cho phép', + 'not_selected' => '---Chưa được chọn---', + 'not_spam' => 'không phải spam', + 'not_specified' => 'Chưa được xác định', + 'no_reports' => 'Không có báo cáo nào', + 'no_results' => 'Không có kết quả nào', + 'off' => 'Tắt', + 'official_news' => 'Dòng & tin tức chính thức', + 'on' => 'Mở', + 'option' => 'Tùy chọn', + 'optional' => 'Tùy chọn', + 'options' => 'Tùy chọn', + 'organization' => 'Tổ chức', + 'organizations' => 'Tổ chức', + 'organization_description' => 'Mô tả về tổ chức', + 'organization_email' => 'Email tổ chức', + 'organization_has_been' => 'Tổ chức đã được', + 'organization_name' => 'Tên tổ chức', + 'organization_phone_1' => 'Điện thoại tổ chức 1', + 'organization_phone_2' => 'Điện thoại tổ chức 2', + 'organization_website' => 'Website của tổ chức', + 'original' => 'Nguyên bản', + 'original_description' => 'Mô tả nguyên bản', + 'original_title' => 'Tiêu đề gốc', + 'other_ushahidi_instances' => 'Các tiến trình khác', + 'outbox' => 'Hộp thư gửi đi', + 'outgoing' => 'Đang gửi đi', + 'page' => 'Trang', + 'pages' => 'TRang', + 'page_description' => 'Mô tả về trang', + 'page_has_been' => 'Trang đã bị', + 'page_tab_name' => 'Tên tab của trang', + 'page_title' => 'Tiêu đề trang', + 'parent_category' => 'Phân loại gốc', + 'password' => 'Mật khẩu', + 'password_again' => 'Xác nhận mật khẩu', + 'password_changed_successfully' => 'Mật khẩu đã được thay đổi thành công! Vui lòng đăng nhập trở lại bên dứoi', + 'password_forgot' => 'Quên mật khẩu?', + 'password_reset_confirm' => 'Kiểm tra email của bạn về mật khẩu mới.', + 'password_save' => 'Giữ trạng thái đăng nhập trên máy tính này?', + 'past_month' => 'Tháng trước đó', + 'past_year' => 'Năm trước đó', + 'pending' => 'Đang đợi', + 'per' => 'mỗi', + 'personal_information' => 'Tùy chọnthông tin cá nhân.', + 'phone' => 'Điện thoại', + 'photos' => 'Hình chụp', + 'pictures' => 'Hình ảnh', + 'pictures_and_videos' => 'Hình ảnh và video', + 'pinpoint_location' => '* Tìm kiếm địa chỉ của bạn dựa vào tên địa điểm hoặc vị trí vĩ độ, kinh độ (theo định dạng: 38.19, 85.61), HOẶC click vào bản đồ và chọn phần địa điểm chính xác hiện tại của bạn.', + 'play' => 'Phát', + 'please_note' => 'Để lại ghi chú', + 'plugins' => 'Tiện ích', + 'plugin_url' => 'Tiện ích Website', + 'public_profile' => 'Hồ sơ công cộng', + 'public_profile_url' => 'Đường dẫn đến hồ sơ công cộng', + 'preview' => 'Xem thử', + 'preview_item' => 'Xem thử đối tượng', + 'preview_message' => 'Xem thử tin nhắn', + 'previous' => 'Trước đó', + 'private' => 'Riêng tư', + 'profile_color' => 'Màu sắc hồ sơ', + 'profile_saved' => 'Hồ sơ của bạn đã được lưu', + 'quick_stats' => 'Trạng thái nhanh', + 'rating' => 'Xếp hạng', + 'read' => 'Đọc', + 'receive' => 'Nhận', + 'receive_from' => 'Nhận từ', + 'receive_notifications' => 'Thông báo nhận được', + 'recent_reports' => 'Báo cáo gần đây', + 'refresh_news_feeds' => 'Cập nhật lại tin tức feed', + 'registered_email' => 'Email đã đăng ký', + 'remove' => 'Loại bỏ', + 'reply' => 'Trả lời', + 'report' => 'Báo cáo', + 'reports_listed' => 'Báo cáo (từ bản đồ, được liệt kê theo thứ tự niên đại)', + 'reporter' => 'Người báo cáo', + 'reporters' => 'Người báo cáo', + 'reporter_date' => 'Ngày người gửi báo cáo', + 'reporter_email' => 'Email của người gửi báo cáo', + 'reporter_first_name' => 'Tên của người gửi báo cáo', + 'reporter_has_been' => 'Người báo cáo đã được', + 'reporter_ip' => 'Địa chỉ IP của người báo cáo', + 'reporter_last_name' => 'Họ của người báo cáo', + 'reporter_level' => 'Cấp độ người báo cáo', + 'reporter_levels' => 'Cấp độ người báo cáo', + 'reporter_phone' => 'Điện thoại người báo cáo', + 'reports' => 'Báo cáo', + 'reports_btn_browse' => 'Duyệt tìm', + 'reports_btn_submit' => 'Đệ trình', + 'reports_by_this_user' => 'Báo cáo thực hiện bởi người dùng này', + 'reports_categories' => 'Phân loại', + 'reports_count' => '%d Báo cáo', + 'reports_date' => 'Ngày tháng', + 'reports_description' => 'Mô tả', + 'reports_download_csv' => 'Báo cáo sẽ được tải về dưới định dạng CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Tính năng', + 'reports_find_location' => 'Tìm một địa điểm gần bạn', + 'reports_first' => 'Tên', + 'reports_last' => 'Họ', + 'reports_location_name' => 'Tên địa điểm', + 'reports_news' => 'Đường dẫn đến nguồn tin', + 'reports_optional' => 'Thông tin tùy chọn', + 'reports_photos' => 'Tải lên hình chụp', + 'reports_return' => 'Quay trở lại trang báo cáo', + 'reports_select_city' => 'Chọn một thành phố', + 'reports_submitted' => 'Báo cáo của bạn đã được đệ trình đến đội ngũ để xem xét. Chúng tôi sẽ trả lời bạn trong thời gian ngắn nhất có thể.', + 'reports_submit_new' => 'Đệ trình một báo cáo mới', + 'reports_time' => 'Thời gian', + 'reports_timeline' => 'Thời gian báo cáo', + 'reports_title' => 'Tiêu đề báo cáo', + 'reports_video' => 'Đường liên kết video', + 'report_an_incident' => 'Báo cáo sự việc nào đó', + 'report_details' => 'Chi tiết báo cáo', + 'report_option_1' => 'Bằng cách gửi tin nhắn tới', + 'report_option_2' => 'Bằng cách gửi email', + 'report_option_3' => 'Bằng cách gửi tweet với mã hashtag/s', + 'report_option_4' => 'Bằng việc điền vào lá đơn này trên website của chúng tôi.', + 'report_option_external_apps' => 'Bằng việc sử dụng ứng dụng này', + 'report_saved' => 'Báo cáo của bạn đã được lưu', + 'report_title' => 'Tiêu đề báo cáo', + 'request_information' => 'Yêu cầu gửi thêm thông tin', + 'request_location' => 'Yêu cầu về địa điểm', + 'required' => 'Đã yêu cầu', + 'requirements' => 'Các yêu cầu cần có', + 'resend_confirm_email' => 'Gửi lại email xác nhận', + 'reset' => 'Thiết đặt lại', + 'reset_all_filters' => 'Thiết đặt lại tất cả bộ lọc', + 'reset_password' => 'Thiết đặt lại mật khẩu', + 'retrieve_city_names' => 'Nhận thông tin về tên thành phố của quốc gia được chọn', + 'riverid_information' => 'Tài khoản được quản lý bởi %s dịch vụ.', + 'riverid_exists_login' => 'Bạn đã có tài khoản được quản lý bởi CrowdmapID! Hãy thử sử dụng email của CrowdmapID mà bạn có cùng mật khẩu để đăng nhập.', + 'role' => 'Vai trò', + 'rss' => 'RSS', + 'save' => 'Lưu', + 'saved' => 'Đã lưu', + 'save_add_new' => 'Lưu &Thêm mới', + 'save_close' => 'Lưu & Đóng lại', + 'save_report' => 'Lưu lại báo cáo', + 'schedule' => 'Thời khóa biểu', + 'scheduler' => 'Người lập thời khóa biểu', + 'scheduler_day' => 'Ngày', + 'scheduler_hour' => 'Giờ', + 'scheduler_log' => 'Nhật trình người lập thời khóa biểu', + 'scheduler_minute' => 'Phút', + 'scheduler_weekday' => 'Ngày trong tuần', + 'search' => 'Tìm kiếm', + 'search_results' => 'Tìm kết quả', + 'security_code' => 'Mã an ninh', + 'select_all' => 'Chọn tất cả', + 'select_field_type' => 'Chọn một loại khung thông tin', + 'select_form_type' => 'Chọn một loại đơn', + 'select_in_map' => 'Chọn trong bản đồ', + 'select_multiple' => 'Chọn theo nhu cầu', + 'select_one' => 'Xin xác nhận bạn đã chọn đối tượng', + 'select_theme' => 'Chọn giao diện', + 'send' => 'Gửi', + 'send_confirmation' => 'Xác nhận gửi', + 'sending_to' => 'Đang gửi đến', + 'sent' => 'Đã gửi', + 'sent_by' => 'Được gửi bởi', + 'server_address' => 'Địa chỉ server', + 'server_type' => 'Loại server', + 'service' => 'Dịch vụ', + 'service_username' => 'Dịch vụ tên người dùng', + 'service_user_id' => 'Chỉ số dịch vụ người dùng', + 'share' => 'Chia sẻ', + 'shared_data' => 'Dữ liệu được chia sẻ', + 'share_has_been' => 'Việc chia sẻ đã được', + 'sharing' => 'Đang chia sẻ', + 'shorter_map' => 'Bản đồ ngắn hơn', + 'show' => 'Hiển thị', + 'show_all' => 'Hiển thị tất cả', + 'show_messages' => 'Hiển thị tin nhắn', + 'showing_reports_from' => 'Đang hiển thị báo cáo từ %1$s đến %2$s', + 'site' => 'Website', + 'site_email_address' => 'địa chỉ email của trang', + 'site_url' => 'Đường dẫn', + 'smaller_map' => 'Bản đồ nhỏ hơn', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Rất tiếc, bạn chưa có huy hiệu nào.', + 'source' => 'Nguồn', + 'source_name' => 'Tên nguồn', + 'sort' => 'Sắp xếp', + 'sort_by' => 'Sắp xếp theo', + 'source_url' => 'Đường dẫn đến nguồn', + 'spam' => 'Spam', + 'ssl_support' => 'Hỗ trợ SSL?', + 'start_point' => 'Từ', + 'step' => 'Bước', + 'submit' => 'Đệ trình một báo cáo', + 'submitted_by' => 'Được đệ trình bởi %1$s thông qua %2$s', + 'submit_sms' => 'Đệ trình thông qua SMS', + 'submit_sms1' => 'Gửi SMS của bạn đến', + 'submit_sms2' => 'trên điện thoại', + 'success' => 'Thành công!', + 'successfuly_imported' => 'Đã nhập dữ liệu thành công', + 'surname' => 'Tên', + 'survey' => 'Khảo sát', + 'system' => 'Hệ thống', + 'taller_map' => 'Bản đồ cao hơn', + 'tcp_port' => 'Cổng kết nối TCP', + 'themes' => 'Giao diện', + 'theme_default' => 'Sử dụng giao diện mặc định', + 'theme_settings' => 'Thiết lập giao diện', + 'this' => 'Đây', + 'this_day' => 'Hôm nay', + 'this_month' => 'Tháng này', + 'this_week' => 'Tuần này', + 'this_year' => 'Năm này', + 'this_is_your_profile' => 'Đây là hồ sơ của bạn.', + 'time' => 'Thời gian', + 'title' => 'Tiêu đề', + 'to' => 'đến', + 'today' => 'Hôm nay', + 'today_at' => 'Hôm nay tại', + 'token' => 'Token', + 'total_reports' => 'Tổng số báo cáo', + 'translated' => 'Đã được dịch', + 'translated_description' => 'Mô tả đã được dịch', + 'translated_title' => 'Tiêu đề đã được dịch', + 'translate_to' => 'Dịch sang', + 'translation' => 'Dịch thuật', + 'translation_saved' => 'Dịch thuật đã được lưu', + 'trusted' => 'Được tin tưởng', + 'type' => 'Loại', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Không thể gửi email.', + 'uncategorized_reports' => 'Báo cáo chưa được phân loại', + 'unread' => 'chưa đọc', + 'unverified' => 'Chưa xác nhận', + 'update_feeds' => 'Cập nhật feed', + 'upload' => 'Tải lên', + 'upload_guide' => 'Xem hướng dẫn tải lên báo cáo của chúng tôi:-', + 'upload_docs_1' => 'Hướng dẫn tải lên XML', + 'upload_docs_2' => 'Hướng dẫn tải lên CSV', + 'upload_file' => 'Tải lên tập tin', + 'upload_reports' => 'Tải lên báo cáo', + 'upload_reports_custom_forms' => 'Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that', + 'upload_reports_detail_1' => 'Với đơn bên dưới, bạn có thể nhập vào các dữ kiện của mình đến trung tâm xử lý của Ushahidi.', + 'upload_reports_detail_2' => 'Báo cáo phải được tải lên ở định dạng CSV hoặc XML.', + 'upload_reports_detail_3' => 'Khi có một ID nào đó đã tồn tại trước đó trong cơ sở dữ liệu, phần khung thông tin trong tập tin CSV/XML sẽ được bỏ qua.', + 'upload_reports_detail_4' => 'Phải chứa tiêu đề và ngày tháng xảy ra sự kiện.', + 'upload_reports_detail_4b' => 'Nếu không có vĩ độ và kinh độ cho cột số liệu, phần địa điểm sẽ được thiết lập bởi Google Geocoder.', + 'upload_reports_detail_4c' => 'Nếu nhập các dữ liệu bổ sung ví dụ như thông tin cá nhân và/hoặc khung thông tin mẫu đơn', + 'upload_reports_detail_4d' => 'Có ít nhất một khung thông tin cá nhân (tên, họ, email) PHẢI được liệt kê. Các khung thông tin rỗng sẽ không được nhập dữ liệu vào', + 'upload_reports_detail_4e' => 'Các khung thông tin của bạn cho menu xổ xuống, lựa chọn khoanh tròn và đánh dấu chọn vào các tùy chọn được cung cấp tùy theo trường hợp của bạn', + 'upload_reports_detail_4f' => 'Đánh dấu tùy chọn được ngăn cách nhau bởi dấu phẩy, thí dụ nếu lựa chọn của bạn là trái cây và liên quan đến táo, xoài và nho, thì dòng thông tin bạn nên điền vào là "táo,xoài,nho"', + 'upload_reports_detail_4g' => 'Khung giá trị ngày tháng nên ở định dạng: tt/nn/nnnn ví dụ ngày 3 tháng mười năm 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Mẫu báo cáo CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Tải lên thành công', + 'upload_video' => 'Tải lên video', + 'url' => 'Đường dẫn', + 'user' => 'Người dùng', + 'username' => 'Tên người dùng', + 'ushahidi_admin' => 'Quản trị viên', + 'verification' => 'Xác nhận', + 'verified' => 'Đã xác nhận', + 'verified_reports' => 'Báo cáo đã được xác nhận', + 'verify' => 'Xác nhận', + 'verify_this_report' => 'Xác nhận báo cáo này', + 'version' => 'Phiên bản', + 'via' => 'thông qua', + 'video' => 'Video', + 'view' => 'Xem', + 'views' => 'Xem', + 'view_all' => 'Xem tất cả', + 'view_all_feeds' => 'Xem tất cả feed', + 'view_all_reports' => 'Xem tất cả báo cáo', + 'view_items' => 'Xem các đối tượng', + 'view_more' => 'Xem thêm nữa', + 'view_public_profile' => 'Xem Hồ Sơ Công Cộng', + 'view_report' => 'Xem báo cáo', + 'view_reports' => 'Xem báo cáo', + 'view_video' => 'Xem video', + 'visible' => 'Cho phép hiển thị', + 'waiting_approval' => 'Đang đợi chấp thuận', + 'waiting_verification' => 'Đang đợi xác nhận', + 'wider_map' => 'Bản đồ rộng hơn', + 'web_form' => 'Mẫu đơn web', + 'web' => 'Web', + 'weight' => 'Cân nặng', + 'Weekly' => 'Hàng tuần', + 'yes' => 'Đồng ý', + 'yesterday' => 'Ngày hôm qua', + 'your_dashboard' => 'Bảng điều khiển của bạn', + 'your_file' => 'Tập tin của bạn', + 'zoom_in' => 'Phóng to', + 'zoom_out' => 'Thu nhỏ', +); diff --git a/application/i18n/vi/upgrade.php b/application/i18n/vi/upgrade.php new file mode 100644 index 0000000000..27440ced40 --- /dev/null +++ b/application/i18n/vi/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Dữ liệu nhập vào không hợp lệ. Phần này chỉ được có giá trị 0 nếu không đồng ý và 1 nếu đồng ý.', + ) , + 'upgrade_automatic' => 'Tự động nâng cấp', + 'upgrade_available' => 'Các nâng cấp hiện có', + 'upgrade_continue_btn_text' => 'Tiếp tục', + 'upgrade_db_btn_text' => 'Nâng cấp', + 'upgrade_db_text_1' => 'Hệ thống sắp sửa nâng cấp cơ sở dữ liệu của bạn từ phiên bản hiện tại', + 'upgrade_db_text_2' => 'đến phiên bản cơ sở dữ liệu mới nhất', + 'upgrade_db_text_3' => 'Click vào "Nâng Cấp" và đợi trong giây lát.', + 'upgrade_db_text_4' => 'Và nếu bạn muốn hệ thống sao lưu cơ sở dữ liệu của bạn, chỉ cần đánh dấu chọn vào nút bên dưới, hệ thống sẽ tự động thực hiện việc sao lưu.', + 'upgrade_db_text_5' => 'Sao lưu cơ sở dữ liệu trước khi nâng cấp? (Khuyến nghị nên chọn)', + 'upgrade_db_title' => 'Cập nhật cơ sở dữ liệu Ushahidi', + 'upgrade_db_info' => 'Ushahidi đã được cập nhật! Trước khi tiếp tục, bạn cần cập nhật phiên bản mới nhất (%s) của cơ sở dữ liệu bạn hiện có.', + 'upgrade_db_up_to_date' => 'Phiên bản cơ sở dữ liệu của bạn là phiên bản mới nhất.', + 'upgrade_failed' => 'Việc nâng cấp gặp phải lỗi', + 'upgrade_manual' => 'Tự người dùng nâng cấp', + 'upgrade_status' => 'Trạng thái cập nhật của Ushahidi', + 'upgrade_text_1' => 'Các hướng dẫn bên dưới sẽ hướng dẫn chi tiết người dùng về việc nâng cấp các tiến trình của Ushahidi', + 'upgrade_text_2' => '
Tải về
', + 'upgrade_text_3' => '
- Tải về các phiên bản gần đây nhất từ Ushahidi', + 'upgrade_text_4' => '
Sao lưu
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Để đề phòng trục trặc có thể xảy ra, chúng tôi khuyên bạn nên chọn việc sao lưu toàn bộ dự án của mình.
Sao chép các tập tin
- Giải nén các tập tin dạng zip
- Tùy thuộc vào hệ điều hành đang chạy trên nền web server nào, thì hãy sử dụng công cụ/chế độ tương thích kèm theo (ví dụ: Telnet, FTP, SSH) để đăng nhập vào webserver và thay đổi nội dung của tất cả các thư mục với phần nội dung mới nhất vừa tạo.
Nâng cấp cơ sở dữ liệu
- Trước tiên hãy xác định phiên bản cơ sở dữ liệu dựa vào giá trị db_version trong phần bảng thiết lập hoặc dựa vào thông tin cập nhật từ Ushahidi hiển thị ở phía trên cùng của trang này.
- Nếu phiên bản của bạn hiện ở mốc 25, bạn cần nâng cấp theo hướng 25-26, 26-27, 27-28 và cứ tiếp tục như thế đối với các tập tin SQL mới nhất /sql trong thư mục.
- Với phần cơ sở dữ liệu phía client, nâng cấp cơ sở dữ liệu bởi việc thi hành lệnh trên tập tin thích hợp upgradex-x.sql.
', + 'upgrade_tables' => 'Bước 3: Quan sát phía bên trong sql thư mục. Thiết lập lệnh nâng cấp-.sql file bắt đầu từ cơ sở dữ liệu hiện tại của phần mà bạn cài đặt cho đến tập tin nâng cấp sql cuối cùng.', + 'upgrade_text_5' => 'Bước 4: Click vào phần "Tiếp tục"để nâng cấp các bảng dữ liệu cần thiết.', + 'upgrade_text_6' => 'Để thực hiện chế độ nâng cấp tự động, click vào nút bên dưới.', + 'upgrade_title_text' => 'Bạn hiện đang sử dụng phiên bản Ushahidi v%1$s kèm theo cơ sở dữ liệu có phiên bản %2$d được chạy trên nền %3$s', + 'upgrading' => 'Đang nâng cấp', + 'upgrade_ftp_text' => 'Để tiếp tục phần nâng cấp theo hướng dễ dàng, các thông tin này cần có máy chủ dạng FTP và website mà bạn đặt trên host đó.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Ví dụ: "localhost"', + 'upgrade_ftp_password' => 'Mật khẩu FTP:', + 'upgrade_ftp_username' => 'Tên người dùng FTP:', + 'upgrade_status_info' => 'Bạn hiện đang sử dụng phiên bản mới nhất từ Ushahidi.', + 'upgrade_status_info_2' => 'Bạn không cần thiết phải thực hiện thao tác cập nhật.', + 'upgrade_db_version' => 'Phiên bản cơ sở dữ liệu: %d', + 'upgrade_warning_software_version' => 'Cảnh báo: Phiên bản phần mềm trong version.php và cơ sở dữ liệu không khớp lẫn nhau.', + 'upgrade_warning_db_version' => 'Cảnh báo: phiên bản cơ sở dữ liệu trong version.php và cơ sở dữ liệu không khớp lẫn nhau.', + 'upgrade_database' => 'Cơ sở dữ liệu:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'THỬ NGHIỆM!', + 'download' => 'Đang tải về phiên bản mới nhất từ Ushahidi...', + 'log_file' => 'Tập tin nhật trình', + 'successfully_downloaded' => 'Đã tải về thành công. Đang mở các gói dữ liệu...', + 'failed_downloading' => 'Xảy ra lỗi khi đang tải về.', + 'successfully_unpacked' => 'Đã mở các gói thành công. Đang sao chép các tập tin...', + 'failed_unpacking' => 'Xảy ra lỗi khi mở các gói dữ liệu.', + 'successfully_copied' => 'Đã sao chép thành công. Đang cập nhật cơ sở dữ liệu...', + 'failed_copying' => 'Xảy ra lỗi khi sao chép các tập tin', + 'backup_success' => 'Đã sao lưu và cập nhật cơ sở dữ liệu thành công.', + 'backup_failed' => 'Thất bại khi thực hiện thao tác sao lưu cơ sở dữ liệu.', + 'dbupgrade_success' => 'Đã cập nhật cơ sở dữ liệu thành công.', + 'deleting_files' => 'Đang xóa các tập tin đã được tải về...', + 'upgrade_success' => 'CẬP NHẬT THÀNH CÔNG. Xem Tập tin nhật trình', +); diff --git a/application/i18n/vi_VN/alerts.php b/application/i18n/vi_VN/alerts.php new file mode 100644 index 0000000000..933541b125 --- /dev/null +++ b/application/i18n/vi_VN/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => 'lĩnh vực thư không xuất hiện phần chứa địa chỉ thư hợp lệ?', + 'email_check' => 'địa chỉ thư đã được đăng kí và nhận được cảnh báo cho địa điểm đó.', + 'length' => 'Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , + 'alert_country' => array( + 'single_country' => 'Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm cảnh báo nằm trong quốc gia %s.', + ) , + 'alert_lat' => array( + 'between' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + 'required' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + ) , + 'alert_lon' => array( + 'between' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + 'required' => 'Bạn vẫn chưa chọn một địa điểm hợp lệ trên bản đồ', + ) , + 'alert_mobile' => array( + 'length' => 'Phần khung thông tin di động dường như không chứa các chữ số hợp với yêu cầu.', + 'mobile_check' => 'Số di động này đã được đăng ký và nhận thông tin từ địa điểm đó.', + 'numeric' => 'Phần khung thông tin về điện thoại di động chứa dữ liệu không hợp lệ. Xin vui lòng nhập vào số liệu kèm theo mã quốc gia.', + 'one_required' => 'Bạn phải điền vào hoặc phần số di động của bạn hoặc địa chỉ email', + 'required' => 'Khung thông tin điện thoại di động cần được đánh dấu chọn.', + ) , + 'alert_radius' => array( + 'in_array' => 'Bạn vẫn chưa thiết lập bán kính hợp lệ trên bản đồ.', + 'required' => 'Bạn vẫn chưa chọn bán kính trên bản đồ.', + ) , + 'alert_recipient' => array( + 'required' => 'Bạn vẫn chưa chỉnh cảnh báo về người gửi.', + ) , + 'alerts_subscribed' => 'Bạn đã đăng ký phần cảnh báo cho các phần mục sau', + 'code_already_verified' => 'Mã đã được xác nhận trước đó!', + 'code_not_found' => 'Không tìm thấy mã xác nhận! Xin vui lòng xác nhận rằng bạn đã điền vào đúng đường dẫn liên kết.', + 'code_verified' => 'Mã của bạn không được xác nhận chính xác. Bạn sẽ nhận được cảnh báo về vấn đề này ngay lập tức.', + 'confirm_request' => 'Để xác nhận yêu cầu về cảnh báo của bạn, vui lòng truy cập', + 'create_more_alerts' => 'Quay trở về trang cảnh báo để tạo các cảnh báo khác', + 'email_alert_request_created' => 'Yêu cầu nhận cảnh báo bằng email của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến', + 'email_code' => 'Xin điền vào mã xác nhận từ email mà bạn nhận được ở phần bên dưới:', + 'email_error_head' => 'Yêu cầu gửi email cảnh báo của bạn VẪN CHƯA được lưu!', + 'email_ok_head' => 'Yêu cầu nhận email cảnh báo của bạn đã được lưu!', + 'error' => 'Hiện hệ thống không thể xử lý yêu cầu xác nhận của bạn!', + 'mobile_alert_request_created' => 'Yêu cầu nhận cảnh báo bằng điện thoại của bạn đã được tạo và tin nhắn xác nhận đã được gửi đến', + 'mobile_code' => 'Xin điền vào mã xác nhận từ SMS mà bạn nhận được trên điện thoại ở phần bên dưới:', + 'mobile_error_head' => 'Yêu cầu gửi tin nhắn cảnh báo đến điện thoại của bạn VẪN CHƯA được lưu!', + 'mobile_ok_head' => 'Yêu cầu nhận tin nhắn cảnh báo trên điện thoại của bạn đã được lưu!', + 'settings_error' => 'Việc triển khai này vẫn chưa được thiết lập chính xác trong việc xử lý các cảnh báo', + 'unsubscribe' => 'Bạn nhận được email này vì bạn đã đăng ký theo dõi việc nhận các cảnh báo. Nếu bạn không muốn nhận các cảnh báo trong thời gian tới hãy truy cập', + 'unsubscribed' => 'Bạn sẽ không còn nhận các cảnh báo từ', + 'unsubscribe_failed' => 'Hiện chúng tôi không thể gỡ bỏ chế độ đăng ký từ bạn. Xin vui lòng xác nhận là bạn đã truy cập vào liên kết đúng cú pháp.', + 'verification_email_subject' => 'cảnh báo - xác nhận', + 'verify_code' => 'Bạn sẽ không còn nhận được các cảnh báo về địa điểm này cho tới khi bạn xác nhận yêu cầu của mình.', +); diff --git a/application/i18n/vi_VN/auth.php b/application/i18n/vi_VN/auth.php new file mode 100644 index 0000000000..b777f2d5b4 --- /dev/null +++ b/application/i18n/vi_VN/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => 'email bạn đã nhập là một địa chỉ thư không hợp lệ.', + 'exists' => 'xin lỗi, tài khoản người dùng đã tồn tại cho địa chỉ thư này.', + 'length' => 'Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài.', + 'required' => 'lĩnh vực thư nhất thiết phải có.', + ) , + 'name' => array( + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'lĩnh vực tên nhất thiết phải có.', + 'standard_text' => 'Phần khung thông tin tên người dùng không được chứa các ký tự vốn không được cho phép.', + ) , + 'current_password' => array( + 'length' => 'lĩnh vực mật khẩu phải có độ dài ít nhất 8 kí tự.', + 'login error' => 'xin vui lòng kiểm tra rằng bạn đã nhập chính xác thư và mật khẩu.', + 'matches' => 'xin vui lòng nhập mật khẩu tương tự trong lĩnh vực mật khẩu thứ hai.', + 'required' => 'Phần khung thông tin mật khẩu không được để trống.', + 'alpha_dash' => 'Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang.', + 'incorrect' => 'Phần mật khẩu hiện tại bạn đã điền vào cho tài khoản của mình không đúng. Vui lòng thử lại lần nữa.', + ) , + 'new_password' => array( + 'length' => 'Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài.', + 'login error' => 'Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ.', + 'matches' => 'Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước.', + 'required' => 'Phần mật khẩu không được để trống.', + 'alpha_dash' => 'Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang.', + ) , + 'password' => array( + 'default' => 'Xảy ra lỗi khi bạn đăng nhập.', + 'length' => 'Phần khung thông tin về mật khẩu phải chứa ít nhất 8 ký tự về độ dài.', + 'login error' => 'Xin vui lòng kiểm tra phần thông tin email và mật khẩu là hợp lệ.', + 'matches' => 'Xin điền lại phần mật khẩu mà bạn đã cung cấp ở hai khung thông tin trước.', + 'required' => 'Phần mật khẩu không được để trống.', + 'riverid server down' => 'Hệ thống máy chủ cho việc xác nhận hiện đang ngừng phục vụ. Xin vui lòng thử lại sau.', + 'riverid' => '%s', + 'alpha_dash' => 'Phần khung thông tin mật khẩu chỉ được chứa ký tự chữ la tinh, các ký tự biểu tượng # @, số, dấu gạch dưới và gạch ngang.', + ) , + 'password_confirm' => array( + 'matches' => 'Phần xác nhận mật khẩu phải có mật khẩu trùng với phần mật khẩu mà bạn đã cung cấp.', + ) , + 'resetemail' => array( + 'email' => 'Email mà bạn cung cấp không phải là một địa chỉ email hợp lệ.', + 'invalid' => 'Rất tiếc, chúng tôi hiện không có địa chỉ email của bạn', + 'required' => 'Phần khung thông tin email không được để trống.', + ) , + 'role' => array( + 'superadmin_modify' => 'Chỉ có người mới có thể hiệu chỉnh các Quản Trị Viên Đứng Đầu khác hoặc nâng cấp độ người dùng thông thường thành Quản Trị Viên.', + ) , + 'roles' => array( + 'alpha_numeric' => 'Định dạng về quyền phân phối dạng người dùng không hợp lệ.', + 'length' => 'Phần khung thông tin vai trò phải có ít nhất 5 ký tự hoặc tối đa 30 ký tự về độ dài.', + 'required' => 'Bạn phải xác định ít nhất một vai trò của người dùng.', + 'values' => 'Bạn phải chọn hoặc vai trò Quản Trị Viên hoặc Người Dùng thông thường.', + ) , + 'token' => array( + 'invalid' => 'Phần dữ liệu về quên mật khẩu không hợp lệ', + 'required' => 'Đã yêu cầu về việc quên mật khẩu', + ) , + 'username' => array( + 'admin' => 'Vai trò người dùng quản trị không thể được hiệu chỉnh.', + 'alpha_numeric' => 'Phần thông tin về đường dẫn liên kết đến hồ sơ công cộng chỉ được chứa các ký tự số và chữ.', + 'exists' => 'Rất tiếc, đường dẫn liên kết đến hồ sơ cá nhân này hiện đã được đăng ký cho người khác.', + 'length' => 'Phần khung thông tin liên kết đến hồ sơ cá nhân phải có ít nhất 2 ký tự hoặc tối đa 100 ký tự về độ dài.', + 'login error' => 'Xin vui lòng kiểm tra phần thông tin đường dẫn liên kết đến hồ sơ công cộng là hợp lệ.', + 'required' => 'Phần khung thông tin đường dẫn liên kết đến hồ sơ công cộng không được để trống.', + 'superadmin' => 'Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh', + 'csrf' => 'Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa người dùng này không?', + ) , +); diff --git a/application/i18n/vi_VN/bug.php b/application/i18n/vi_VN/bug.php new file mode 100644 index 0000000000..5a7f71527a --- /dev/null +++ b/application/i18n/vi_VN/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'required' => 'Vui lòng điền vào mã an ninh.', + ) , + 'email' => array( + 'email' => 'Phần thông tin về địa chỉ email không chứa địa chỉ email hợp lệ?', + 'length' => 'Phần khung thông tin email phải chứa ít nhất 4 ký tự và tối đa 64 ký tự về độ dài.', + 'required' => 'lĩnh vực email được yêu cầu nếu phần lựa chọn được đánh dấu.', + ) , + 'error' => array( + 'required' => 'lĩnh vực lỗi nhất thiết phải có.', + ) , + 'subject' => array( + 'length' => 'lĩnh vực chủ đề phải có ít nhất 3 kí tự độ dài.', + 'required' => 'lĩnh vực chủ đề nhất thiết phải có.', + ) , + 'yourname' => array( + 'length' => 'lĩnh vực tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'lĩnh vực tên nhất thiết phải có.', + ) , +); diff --git a/application/i18n/vi_VN/category.php b/application/i18n/vi_VN/category.php new file mode 100644 index 0000000000..caf66be41f --- /dev/null +++ b/application/i18n/vi_VN/category.php @@ -0,0 +1,33 @@ + array( + 'length' => 'lĩnh vực màu sắc phải có độ dài 6 kí tự.', + 'required' => 'lĩnh vực màu sắc nhất thiết phải có.', + ) , + 'category_description' => array( + 'required' => 'lĩnh vực mô tả nhất thiết phải có.', + ) , + 'category_image' => array( + 'size' => 'Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 50KB.', + 'type' => 'Phần khung thông tin về hỉnh ảnh chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF.', + 'valid' => 'lĩnh vực hình ảnh không xuất hiện để chứa tập tin hợp lệ.', + ) , + 'category_title' => array( + 'length' => 'Phần khung thông tin tiêu đề phải chứa ít nhất 3 ký tự và tối đa 80 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về tiêu đề không được để trống.', + ) , + 'parent_id' => array( + 'already_parent' => 'Bạn không thể giảm cấp phân loại của phần phân loại khi phần đó đã được giảm cấp.', + 'exists' => 'Phân loại gốc không tồn tại.', + 'numeric' => 'Phần khung thông tin về phân loại gốc phải ở dạng số.', + 'parent_trusted' => 'Phần khung thông tin về phân loại gốc phải không thể mang thuộc tính là phân loại đặc biệt', + 'required' => 'Phần khung thông tin về thư mục gốc không được để trống.', + 'same' => 'Phần phân loại và phân loại gốc không được phép ở cùng dạng.', + 'special' => 'Phân loại đặc biệt không được phép mang thuộc tính là phân loại giảm cấp.', + ) , +); diff --git a/application/i18n/vi_VN/comments.php b/application/i18n/vi_VN/comments.php new file mode 100644 index 0000000000..312efec346 --- /dev/null +++ b/application/i18n/vi_VN/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => 'xin vui lòng nhập một mã an ninh hợp lệ.', + 'required' => 'xin vui lòng nhập mã an ninh.', + 'valid' => 'bạn đã nhập sai mã an ninh.', + ) , + 'comment_author' => array( + 'length' => 'Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + ) , + 'comment_description' => array( + 'required' => 'Phần khung thông tin về bình luận không được để trống.', + ) , + 'comment_email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần khung thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần khung thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , +); diff --git a/application/i18n/vi_VN/contact.php b/application/i18n/vi_VN/contact.php new file mode 100644 index 0000000000..fb05703ce0 --- /dev/null +++ b/application/i18n/vi_VN/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'valid' => 'Vui lòng điền vào mã an ninh hợp lệ.', + 'required' => 'Vui lòng điền vào mã an ninh.', + ) , + 'contact_email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , + 'contact_message' => array( + 'required' => 'Phần nội dung tin nhắn không được để trống.', + ) , + 'contact_name' => array( + 'length' => 'Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + ) , + 'contact_subject' => array( + 'length' => 'Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về chủ đề không được để trống.', + ) , + 'email_send' => array( + 'failed' => 'Xảy ra lỗi khi gửi đi tin nhắn của bạn.', + ) , +); diff --git a/application/i18n/vi_VN/core.php b/application/i18n/vi_VN/core.php new file mode 100644 index 0000000000..50b8b56557 --- /dev/null +++ b/application/i18n/vi_VN/core.php @@ -0,0 +1,35 @@ + 'tập tin cấu hình', + 'controller' => 'trình điều khiển', + 'driver' => 'chương trình điều khiển', + 'driver_implements' => 'chương trình điều khiển %s cho phần thư viện %s phải mang tính hoàn thiện cho phần giao diện %s.', + 'driver_not_found' => 'Không tìm thấy chương trình điều khiển %s sử dụng cho thư viện %s.', + 'errors_disabled' => 'Bạn có thể truy cập vào trang chủ hoặc thử lại.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => 'Không thể hoàn thành yêu cầu', + 'helper' => 'trình giúp đỡ', + 'invalid_filetype' => 'Loại tập tin được yêu cầu, .%s, không được phép xuất hiện trong phần xem tập tin cấu hình của bạn.', + 'invalid_method' => 'Phương thức %s không hợp lệ được gọi trong %s', + 'invalid_property' => 'Thuộc tính %s không tồn tại trong class %s.', + 'library' => 'thư viện', + 'log_dir_unwritable' => 'Thư mục chứa tập tin nhật trình không thể ghi được dữ liệu: %s', + 'model' => 'mô hình', + 'no_controller' => 'Ushahidi không thể xác định được trình điều khiển để xử lý yêu cầu này: %s', + 'no_default_route' => 'Xin vui lòng thiết đặt route mặc định trong phần config/routes.php', + 'page_not_found' => 'Trang mà bạn yêu cầu, %s, không được tìm thấy.', + 'report_bug' => 'Gửi báo cáo về vấn đề này đến Ushahidi', + 'resource_not_found' => 'Phần yêu cầu %s, %s, không được tìm thấy.', + 'stack_trace' => 'Stack Trace', + 'stats_footer' => 'Đã tải trong vòng {execution_time} giây, sử dụng {memory_usage} bộ nhớ. Được tạo bởi Ushahidi v%s.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Chỉ có duy nhất một yêu cầu được thực hiện cho mỗi tiến trình trong mỗi trang.', + 'uncaught_exception' => 'Uncaught %s: %s trong tập tin %s trên dòng %s', + 'view' => 'xem', + 'view_set_filename' => 'Bạn phải thiết lập xem tên tập tin trước khi gọi phần render.', +); diff --git a/application/i18n/vi_VN/database.php b/application/i18n/vi_VN/database.php new file mode 100644 index 0000000000..7d97158f40 --- /dev/null +++ b/application/i18n/vi_VN/database.php @@ -0,0 +1,10 @@ + 'Lỗi cơ sở dữ liệu: %s', + 'table_not_found' => 'Không tìm thấy bảng "%s" trong cơ sở dữ liệu. Hãy chắc chắn rằng bạn đang sử dụng phiên bản mới nhất của cơ sở dữ liệu dành cho phiên bản Ushahidi này.', +); diff --git a/application/i18n/vi_VN/datetime.php b/application/i18n/vi_VN/datetime.php new file mode 100644 index 0000000000..6fcc42d31a --- /dev/null +++ b/application/i18n/vi_VN/datetime.php @@ -0,0 +1,86 @@ + 'sáng', + 'friday' => array( + 'abbv' => 'T6', + 'full' => 'Thứ sáu', + ) , + 'monday' => array( + 'abbv' => 'T2', + 'full' => 'Thứ hai', + ) , + 'pm' => 'tối', + 'saturday' => array( + 'abbv' => 'T7', + 'full' => 'Thứ bảy', + ) , + 'sunday' => array( + 'abbv' => 'CN', + 'full' => 'Chủ nhật', + ) , + 'thursday' => array( + 'abbv' => 'T5', + 'full' => 'Thứ năm', + ) , + 'tuesday' => array( + 'abbv' => 'T3', + 'full' => 'Thứ ba', + ) , + 'wednesday' => array( + 'abbv' => 'T4', + 'full' => 'thứ 4', + ) , + 'january' => array( + 'abbv' => 'Th1', + 'full' => 'tháng 1', + ) , + 'february' => array( + 'abbv' => 'Th2', + 'full' => 'tháng 2', + ) , + 'march' => array( + 'abbv' => 'Th3', + 'full' => 'tháng 3', + ) , + 'april' => array( + 'abbv' => 'Th4', + 'full' => 'tháng 4', + ) , + 'may' => array( + 'abbv' => 'Th5', + 'full' => 'tháng 5', + ) , + 'june' => array( + 'abbv' => 'Th6', + 'full' => 'tháng 6', + ) , + 'july' => array( + 'abbv' => 'Th7', + 'full' => 'tháng 7', + ) , + 'august' => array( + 'abbv' => 'Th8', + 'full' => 'Tháng 8', + ) , + 'september' => array( + 'abbv' => 'Th9', + 'full' => 'tháng 9', + ) , + 'october' => array( + 'abbv' => 'Th10', + 'full' => 'tháng 10', + ) , + 'november' => array( + 'abbv' => 'Th11', + 'full' => 'tháng 11', + ) , + 'december' => array( + 'abbv' => 'Th12', + 'full' => 'tháng 12', + ) , +); diff --git a/application/i18n/vi_VN/feeds.php b/application/i18n/vi_VN/feeds.php new file mode 100644 index 0000000000..79c21c00aa --- /dev/null +++ b/application/i18n/vi_VN/feeds.php @@ -0,0 +1,20 @@ + 'NGÀY THÁNG', + 'feed_name' => array( + 'length' => 'Phần khung thông tin tên feed phải có ít nhất 3 ký tự + tối đa 70 ký tự về độ dài.', + 'required' => 'hãy nhập tên của nguồn cung cấp dữ liệu.', + ) , + 'feed_url' => array( + 'required' => 'hãy nhập đường dẫn liên kết của nguồn cung cấp dữ liệu.', + 'url' => 'Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com', + ) , + 'source' => 'NGUỒN', + 'title' => 'Tiêu đề', +); diff --git a/application/i18n/vi_VN/footer.php b/application/i18n/vi_VN/footer.php new file mode 100644 index 0000000000..8f45a06188 --- /dev/null +++ b/application/i18n/vi_VN/footer.php @@ -0,0 +1,9 @@ + 'php5-curl hiện chưa được cài đặt trong hệ thống này.', +); diff --git a/application/i18n/vi_VN/form.php b/application/i18n/vi_VN/form.php new file mode 100644 index 0000000000..c604f7a429 --- /dev/null +++ b/application/i18n/vi_VN/form.php @@ -0,0 +1,48 @@ + array( + 'default' => 'Giá trị mặc định bạn đã cung cấp cho lĩnh vực này là không hợp lệ.', + 'length' => 'lĩnh vực tên phải có ít nhất 3 ký tự hoặc tối đa 200 ký tự về độ dài.', + ) , + 'field_height' => array( + 'between' => 'xin hãy nhập giá trị 0 đến 50 cho lĩnh vực chiều cao.', + ) , + 'field_isdate' => array( + 'between' => 'bạn đã nhập một giá trị không hợp lệ cho lĩnh vực ngày.', + 'required' => 'Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin ngày tháng.', + ) , + 'field_name' => array( + 'length' => 'lĩnh vực tên phải có ít nhất 3 ký tự hoặc tối đa 100 ký tự về độ dài.', + 'required' => 'xin vui lòng nhập lĩnh vực tên.', + 'duplicate' => 'Phần khung thông tin về tên mà bạn vừa điền vào đã có trong mẫu đơn này. Vui lòng điền vào một phần khác.', + ) , + 'field_required' => array( + 'between' => 'bạn đã nhập một giá trị không hợp lệ cho lĩnh vực được yêu cầu.', + 'required' => 'Xin vui lòng chọn Đồng Ý hoặc Không Đồng Ý cho phần khung thông tin được yêu cầu.', + ) , + 'field_type' => array( + 'numeric' => 'xin vui lòng chọn một loại lĩnh vực hợp lệ.', + 'required' => 'Xin vui lòng chọn một loại lĩnh vực.', + ) , + 'field_width' => array( + 'between' => 'Xin điền vào giá trị của khung thông tin về độ rộng trong khoảng 0 đến 300.', + ) , + 'form_description' => array( + 'required' => 'Xin điền vào mô tả về mẫu đơn.', + ) , + 'form_id' => array( + 'default' => 'Không thể xóa mẫu đơn mặc định.', + 'numeric' => 'Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào.', + 'required' => 'Xin vui lòng chọn mẫu đơn để thêm vào khung thông tin này vào.', + ) , + 'form_title' => array( + 'length' => 'Phần khung thông tin tên của mẫu đơn phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'Vui lòng điền vào tên của mẫu đơn.', + 'exists' => 'Một mẫu đơn với tiêu đề như thế đã tồn tại. Vui lòng chọn một phần khác.', + ) , +); diff --git a/application/i18n/vi_VN/imap.php b/application/i18n/vi_VN/imap.php new file mode 100644 index 0000000000..5c16f30c07 --- /dev/null +++ b/application/i18n/vi_VN/imap.php @@ -0,0 +1,10 @@ + 'Không thể mở luồng dữ liệu dạng IMAP.', + 'unsupported_service' => 'Dịch vụ thư này hiện không được hỗ trợ.', +); diff --git a/application/i18n/vi_VN/installer.php b/application/i18n/vi_VN/installer.php new file mode 100644 index 0000000000..1c45aed2c3 --- /dev/null +++ b/application/i18n/vi_VN/installer.php @@ -0,0 +1,84 @@ + 'Đường dẫn gốc', + 'database' => 'Cơ sở dữ liệu', + 'database_host' => 'Host của cơ sở dữ liệu', + 'database_host_description' => 'Nếu bạn thực thi Ushahidi từ chính máy tính của bạn, điều này có nghĩa rằng đây là một "localhost". Nếu bạn thực thi Ushahidi từ web server, bạn sẽ nhận được thông tin về host của bạn từ nhà cung cấp dịch vụ web hosting.', + 'database_name' => 'Tên cơ sở dữ liệu', + 'database_name_description' => 'Tên của cơ sở dữ liệu mà bạn muốn chạy Ushahidi trong đó', + 'db_information_link' => 'Để biết thêm thông tin, vui lòng truy cập phần đề mục này trên hệ thống wiki có bàn về cơ sở dữ liệu với đầy đủ thông tin chi tiết.', + 'default_language' => 'Ngôn ngữ mặc định (địa phương)', + 'default_language_description' => 'Mỗi phần phát triển của Ushahidi đi kèm theo đó là các gói ngôn ngữ ứng với từng quốc gia sở tại. Bạn cũng có thể thêm vào phần dịch của riêng bạn.', + 'disable' => 'Vô hiệu hóa', + 'enable' => 'kích hoạt', + 'error_summary' => 'danh sách dưới đây là tóm tắt về các lỗi mà hệ thống gặp phải', + 'files_location_text' => 'Địa điểm trên máy chủ của bạn nơi đặt các tập tin từ Ushahidi. Hệ thống sẽ tự động xác định giá trị này, hãy kiểm tra xem giá trị này có đúng và hợp lệ hay không. Nếu phần thông tin này bị để trống, thì cũng đừng quá lo lắng, điều này có nghĩa rằng Ushahidi đã được cài đặt ở thư mục gốc.', + 'finished' => 'Đã hoàn tất', + 'general' => 'Tổng quan', + 'google_key' => 'Google chìa khóa API', + 'google_key_description' => 'Bất kỳ ai cũng có thể nhận được khóa api này. Bạn cũng có thể làm điều đó ngay bây giờ', + 'go_back' => 'Quay trở lại', + 'index' => array( + 'advanced' => 'CÀI ĐẶT NÂNG CAO', + 'advanced_installation_description' => 'Nhận tất cả các thiết lập cơ bản thông qua quá trình bao gồm 5 bước này. Bao gồm máy chủ, bản đồ, tên trang và chi tiết về các liên hệ cơ bản.', + 'basic_installation' => 'CÀI ĐẶT CƠ BẢN', + 'basic_installation_description' => 'Đơn giản và nhanh chóng. Mọi điều bạn cần là một thư mục gốc của website do bạn lập cùng thông tin về cơ sở dữ liệu mà bạn thiết lập. Chọn tùy chọn này nếu bạn muốn trình cài đặt nhanh chóng hơn theo kiểu tự động, dĩ nhiên là bạn hoàn toàn có đầy đủ quyền thiết lập và chỉnh sửa bất cứ khi nào sau khi quá trình cài đặt đã hoàn tất.', + 'proceed' => 'Tiếp tục', + 'welcome' => 'Chào mừng bạn đến phần cài đặt dành cho máy chủ Ushahidi. Chọn loại cài đặt mà bạn mong muốn sử dụng ở phía dưới.', + ) , + 'installation_successful' => 'cài đặt thành công', + 'mail_server' => 'thư máy chủ', + 'mail_server_host' => 'Máy chủ host dành cho thư', + 'mail_server_host_description' => 'Thí dụ: mail.websitecủabạn.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => 'Mật khẩu thư máy chủ', + 'mail_server_password_description' => 'Mật khẩu bạn dùng để đăng nhập vào tài khoản email của mình', + 'mail_server_port' => 'Cổng kết nối hòm thư máy chủ', + 'mail_server_port_description' => 'Các cổng thông thường: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => 'Loại máy chủ mail', + 'mail_server_type_description' => 'Internet Message Access Protocol (IMAP) hoặc Post Office Protocol (POP). Điều gì là khác nhau giữa hai phần này?', + 'mail_server_username' => 'Tên người dùng máy chủ mail', + 'mail_server_username_description' => 'Nếu bạn sử dụng Gmail, Hotmail hoặc Yahoo Mail, điền vào đầy đủ địa chỉ email dưới dạng tên người dùng.', + 'map' => 'Bản đồ', + 'map_provider' => 'Nhà cung cấp bản đồ', + 'map_provider_description' => 'Ushahidi có thể thao tác trơn tru với bất kỳ nhà cung cấp dịch vụ bản đồ nào: Google, Bing hoặc Open Street Map. Chọn loại nhà cung cấp có thông tin hữu dụng nhất ở khu vực của bạn.', + 'other_steps' => 'Các bước khác...', + 'password' => 'Mật khẩu', + 'password_description' => 'Mật khẩu đối với cơ sở dữ liệu', + 'previous' => 'Trước đó', + 'restart_apache' => 'Xin vui lòng khởi động lại máy chủ Apache của bạn', + 'select_mail_server_ssl' => 'Bật hoặc vô hiệu hóa kết nối dạng SSL', + 'select_mail_server_ssl_description' => 'Một vài máy chủ mail cung cấp cho bạn tùy chọn sử dụng kết nối dạng SSL khi thực hiện việc kết nối truyền tải dữ liệu. Bạn nên dùng loại kết nối này để tăng tính bảo mật cho trang của bạn.', + 'setup_sms' => 'Cài đặt hệ thống máy chủ SMS', + 'site_email' => 'Địa chỉ email của trang', + 'site_email_alerts' => 'Địa chỉ email nhận cảnh báo', + 'site_email_alerts_description' => 'Khi trang của bạn nhận đăng ký từ các người dùng khác, những người đăng ký sẽ nhận các email từ địa chỉ email này. Địa chỉ email này không cần thiết phải giống hệ địa chỉ email của trang.', + 'site_email_description' => 'Việc mở rộng thao tác giao tiếp thông qua email sẽ được chọn lựa thông qua địa chỉ này', + 'site_name' => 'Tên trang', + 'site_name_description' => 'Tên của trang mà bạn muốn lập', + 'site_tagline' => 'Các thẻ đánh dấu liên quan đến trang', + 'site_tagline_description' => 'Thẻ đánh dấu của bạn', + 'summary' => array( + 'text_1' => 'Các tập tin và thư mục được liêkt bên dưới cần được thiết lập quyền có thể ghi dữ liệu trên hệ thống web của bạn.', + 'text_2' => '

Sau đây là hướng dẫn về các quyền hạn liên quan đến việc thay đổi nội dung tập tin:

+ ', + 'text_3' => 'Trước khi bắt đầu, bạn cần phải chắc chắn rằng các tập tin và thư mục sau đây có được quyền ghi dữ liệu trên hệ thống máy chủ web của bạn. Bao gồm cả các quyền truy cập và thay đổi nội dung tập tin.', + 'text_4' => 'Đối với quá trình cài đặt, xin vui lòng đọc các thông tin sau đây.', + ) , + 'table_prefix' => 'Table Prefix', + 'table_prefix_description' => 'Thông thường bạn sẽ không cần thay đổi table prefix. Tuy nhiên, nếu bạn chạy nhiều tiến trình cài đặt liên quan đến Ushahidi từ một cơ sở dữ liệu duy nhất, bạn có thể thực hiện việc thay đổi các tiền tố đứng trước tên bảng dữ liệu tại đây.', + 'title' => 'Tiêu đề', + 'to_login' => 'Để đăng nhập, hãy truy cập', + 'upload_data' => 'Tải lên dữ liệu báo cáo', + 'username' => 'Tên người dùng', + 'username_description' => 'Tên cơ sở dữ liệu của bạn', + 'use_credentials' => 'và sử dụng các phần ủy nhiệm tiếp sau đây', + 'view_site' => 'Xem trang web của bạn', +); diff --git a/application/i18n/vi_VN/layer.php b/application/i18n/vi_VN/layer.php new file mode 100644 index 0000000000..8f87e09bc5 --- /dev/null +++ b/application/i18n/vi_VN/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => 'lĩnh vực màu sắc phải chứa độ dài 6 ký tự.', + 'required' => 'lĩnh vực màu sắc nhất thiết phải có.', + ) , + 'layer_file' => array( + 'type' => 'lĩnh vực tập tin chứa dạng tập tin không hợp lệ. Chỉ chấp nhận các định dạng .KMZ và .KML.', + 'valid' => 'Phần khung thông tin về tập tin chứa dạng tập tin không hợp lệ.', + ) , + 'layer_name' => array( + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 80 ký tự về độ dài.', + 'required' => 'lĩnh vực tên nhất thiết phải có.', + ) , + 'layer_url' => array( + 'atleast' => 'Cả hai phần đường dẫn liên kết KML hoặc tập tin đều phải có.', + 'both' => 'Bạn không thể vừa chọn tập tin KML và đường dẫn liên kết kèm theo.', + 'url' => 'Vui lòng điền vào đường dẫn hợp lệ, ví dụ: http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/vi_VN/libraries.php b/application/i18n/vi_VN/libraries.php new file mode 100644 index 0000000000..3d29473925 --- /dev/null +++ b/application/i18n/vi_VN/libraries.php @@ -0,0 +1,27 @@ + 'Không thể kết nối đến máy chủ Akismet.', + 'akismet_cannot_retrieve' => 'Không nhận được tín hiệu phản hồi từ Akismet', + 'api_library_not_found' => 'Thư viện API: %s dành cho %s class không được tìm thấy. Vui lòng kiểm tra lại bảng routing cho tác vụ API.', + 'askimet_invalid_apikey' => 'Khóa Akismet API của bạn không hợp lệ.', + 'clickatell_fopen_error' => 'Lỗi khi thực thi phương pháp gửi!
Vui lòng kiểm tra liệu PHP có hỗ trợ OpenSSL hay không và liệu phiên bản PHP mới hơn bản 5.2.', + 'clickatell_message_too_long' => 'Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=', + 'clickatell_no_destination_address' => 'Xin vui lòng xác nhận địa chỉ gửi (ĐẾN)!', + 'clickatell_no_sender_address' => 'Xin vui lòng xác định địa chỉ nguồn (TỪ)!', + 'clickatell_unicode_message_too_long' => 'Tin nhắn dưới định dạng unicode của bạn quá dài! (Độ dài hiện tại=', + 'clickatell_unsupported_method' => 'Phương pháp gửi không được hỗ trợ!', + 'invalid_api_library' => 'Thư viện API %s không hợp lệ. Tất cả các thư viện API phải là lớp con của %s.', + 'upgrade_directory_not_deleted' => 'thư mục %s không thể xóa được.', + 'upgrade_extracting_error' => 'Lỗi xảy ra khi giải nén: %s', + 'upgrade_failed' => 'Thất bại khi tải về phiên bản mới nhất của Ushahidi. Trạng thái mã HTTP', + 'upgrade_file_not_copied' => 'tập tin %s không thể sao chép được.', + 'upgrade_file_not_deleted' => 'tập tin %s không thể xóa được.', + 'upgrade_title' => 'Đoạn mã lệnh để nâng cấp Ushahidi', + 'upgrade_zip_error' => 'tập tin nén Ushahidi được tải về %s không thể ghi dữ liệu lên.', + 'riverid_variable_not_available' => '%s hiện không phải là lớp RiverID hiện có.', +); diff --git a/application/i18n/vi_VN/maintenance.php b/application/i18n/vi_VN/maintenance.php new file mode 100644 index 0000000000..2673289155 --- /dev/null +++ b/application/i18n/vi_VN/maintenance.php @@ -0,0 +1,9 @@ + 'Rất tiếc, trang của chúng tôi hiện đang ở trạng thái bảo trì. hãy thử lại sau ít phút nữa.', +); diff --git a/application/i18n/vi_VN/message.php b/application/i18n/vi_VN/message.php new file mode 100644 index 0000000000..9f2b95939c --- /dev/null +++ b/application/i18n/vi_VN/message.php @@ -0,0 +1,27 @@ + array( + 'default' => 'xin vui lòng nhập mã an ninh hợp lệ.', + 'required' => 'xin vui lòng nhập mã an ninh.', + ) , + 'email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần thông tin email phải chứa ít nhất 4 và không được nhiều hơn 64 ký tự.', + 'required' => 'Phần thông tin email được yêu cầu nếu phần lựa chọn được chọn.', + ) , + 'message' => array( + 'required' => 'Phần khung thông tin về bình luận không được để trống.', + ) , + 'name' => array( + 'length' => 'Phần khung thông tin tên phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên không được để trống.', + ) , + 'phone' => array( + 'length' => 'Phần khung thông tin về số điện thoại không hợp lệ.', + ) , +); diff --git a/application/i18n/vi_VN/mhi.php b/application/i18n/vi_VN/mhi.php new file mode 100644 index 0000000000..16aa4d5c4a --- /dev/null +++ b/application/i18n/vi_VN/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => 'xin nhập một mã an ninh hợp lệ.', + 'required' => 'hãy nhập mã an ninh.', + ) , + 'contact_email' => array( + 'email' => 'linh vực thư không xuất hiện để chứa địa chỉ thư hợp lệ.', + 'required' => 'xin cung cấp một địa chỉ thư hợp lệ.', + ) , + 'contact_message' => array( + 'required' => 'lĩnh vực tin nhắn nhất thiết phải có.', + ) , + 'contact_subject' => array( + 'length' => 'Phần khung thông tin chủ đề phải chứa ít nhất 3 ký tự về độ dài.', + 'required' => 'lĩnh vực chủ đề nhất thiết phải có.', + ) , +); diff --git a/application/i18n/vi_VN/notifications.php b/application/i18n/vi_VN/notifications.php new file mode 100644 index 0000000000..707faf44bd --- /dev/null +++ b/application/i18n/vi_VN/notifications.php @@ -0,0 +1,35 @@ + 'Tin nhắn này đã được gửi từ website của bạn.', + 'admin_login_url' => 'Đăng nhập dạng Quản Trị Viên', + 'admin_new_comment' => array( + 'message' => 'một bình luận mới đã được gửi tới website của bạn trả lời về:', + 'subject' => 'Bình luận mới', + ) , + 'admin_new_email' => array( + 'message' => 'Một tin nhắn mới dạng email đã được gửi đến website của bạn.', + 'subject' => 'Tin nhắn email mới', + ) , + 'admin_new_report' => array( + 'message' => 'Một báo cáo mới đã được gửi đến website của bạn.', + 'subject' => 'Báo cáo mới', + ) , + 'admin_new_sms' => array( + 'message' => 'Một tin nhắn mới đã được gửi đến website của bạn.', + 'subject' => 'văn bản tin nhắn mới', + ) , + 'member_new_alert' => array( + 'message' => 'Bạn đã nhận được một cảnh báo mới', + 'subject' => 'Cảnh báo mới!', + ) , + 'member_new_message' => array( + 'message' => 'Bạn đã nhận được một tin nhắn riêng mới', + 'subject' => 'Tạo mới tin nhắn riêng', + 'footer' => 'Để trả lời vui lòng truy cập:', + ) , +); diff --git a/application/i18n/vi_VN/page.php b/application/i18n/vi_VN/page.php new file mode 100644 index 0000000000..12d1c62fc0 --- /dev/null +++ b/application/i18n/vi_VN/page.php @@ -0,0 +1,18 @@ + array( + 'required' => 'hãy nhập vào tiêu đề trang.', + 'length' => 'Phần tiêu đề trang phải có ít nhất 3 ký tự và tối đa 150 ký tự về độ dài.', + ) , + 'page_tab' => array( + 'required' => 'hãy nhập vào tên hiển thị tab của trang.', + ) , + 'page_description' => array( + 'required' => 'hãy nhập vào mô tả trang.', + ) , +); diff --git a/application/i18n/vi_VN/permissions.php b/application/i18n/vi_VN/permissions.php new file mode 100644 index 0000000000..5dbe173b80 --- /dev/null +++ b/application/i18n/vi_VN/permissions.php @@ -0,0 +1,26 @@ + 'Xem báo cáo', + 'reports_edit' => 'Tạo/Chỉnh Sửa/Xóa báo cáo', + 'reports_approve' => 'chấp thuận báo cáo', + 'reports_verify' => 'Xác nhận báo cáo', + 'reports_comments' => 'Quản lý các bình luận báo cáo', + 'reports_download' => 'Tải về báo cáo', + 'reports_upload' => 'Tải lên báo cáo', + 'messages' => 'Quản lý tin nhắn', + 'messages_reporters' => 'Quản lý tin nhắn từ người báo cáo', + 'stats' => 'Xem trạng thái', + 'settings' => 'Chỉnh sửa Thiết Lập', + 'manage' => 'Quản lý Khung Điều Khiển', + 'users' => 'Quản lý người dùng', + 'manage_roles' => 'Quản lý Vai Trò', + 'checkin' => 'Có thể đi đến', + 'checkin_admin' => 'Quản lý điểm đến', + 'admin_ui' => 'Truy cập giao diện Quản Trị Viên', + 'member_ui' => 'Truy cập giao diện Thành Viên', +); diff --git a/application/i18n/vi_VN/private_message.php b/application/i18n/vi_VN/private_message.php new file mode 100644 index 0000000000..5df934fd9b --- /dev/null +++ b/application/i18n/vi_VN/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => 'Chỉ số gốc phải ở dạng số', + ) , + 'private_to' => array( + 'required' => 'lĩnh vực về đối tượng nhận được yêu cầu.', + 'exists' => 'Người dùng mà bạn đang muốn gửi tin nhắn không tồn tại', + ) , + 'private_subject' => array( + 'required' => 'lĩnh vực chủ đề được yêu cầu.', + 'length' => 'Chủ đề phải có trong khoảng3 ký tự và 150 ký tự', + ) , + 'private_message' => array( + 'required' => 'lĩnh vực tin nhắn được yêu cầu.', + ) , +); diff --git a/application/i18n/vi_VN/report.php b/application/i18n/vi_VN/report.php new file mode 100644 index 0000000000..00ac493fda --- /dev/null +++ b/application/i18n/vi_VN/report.php @@ -0,0 +1,139 @@ + 'lỗi!', + 'country_name' => array( + 'single_country' => 'Việc thi hành này chỉ gói gọn trong một quốc gia. Hãy chắc rằng địa điểm báo cáo nằm trong quốc gia %s.', + ) , + 'custom_field' => array( + 'values' => 'Vui lòng điền vào một giá trị hợp lệ cho phần khung thông tin của "%s".', + 'numeric' => 'Phần khung thông tin "%s" phải ở dạng số.', + 'required' => 'Phần khung thông tin "%s" không được để trống.', + 'not_exist' => 'Phần khung thông tin "%s" không tồn tại.', + 'permission' => 'Tài khoản của bạn không thể chỉnh sửa phần khung thông tin "%s".', + 'email' => 'Phần khung thông tin "%s" phải chứa một địa chỉ email hợp lệ.', + 'phone' => 'Phần khung thông tin "%s" phải chứa một số điện thoại hợp lệ.', + 'date_mmddyyyy' => 'Phần khung thông tin "%s" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN).', + 'date_ddmmyyyy' => 'Phần khung thông tin "%s" phải chứa một dạng ngày tháng hợp lệ (TT/NgNg/NNNN).', + ) , + 'data_include' => array( + 'between' => 'Xin vui lòng lựa chọn một mục hợp lệ đã bao gồm trong phần tải về.', + 'numeric' => 'Xin vui lòng lựa chọn một mục hợp lệ đã bao gồm trong phần tải về.', + ) , + 'data_active' => array( + 'between' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + 'numeric' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + 'required' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + ) , + 'data_verified' => array( + 'between' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Xác Nhận" hoặc "Báo Cáo Đã Được Xác Nhận" hoặc cả hai.', + 'numeric' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Xác Nhận" hoặc "Báo Cáo Đã Được Xác Nhận" hoặc cả hai.', + 'required' => 'Xin vui lòng chọn "Các Báo Cáo Đang Đợi Chấp Nhận" hoặc "Chấp Nhận Báo Cáo" hoặc cả hai.', + ) , + 'data_point' => array( + 'between' => 'Xin vui lòng lựa chọn một loại báo cáo hợp lệ để tải về.', + 'numeric' => 'Xin vui lòng chọn một loại báo cáo hợp lệ để tải về.', + 'required' => 'Xin vui lòng chọn một loại báo cáo hợp lệ để tải về.', + ) , + 'format' => array( + 'required' => 'Bạn phải chọn một định dạng để tải về. Chọn hoặc CSV hoặc XML.', + 'valid' => 'Xin vui lòng chọn một loại báo cáo hợp lệ để tải về ở', + ) , + 'from_date' => array( + 'date_mmddyyyy' => 'lĩnh vực thông tin về ngày gửi TỪ không xuất hiện phần chứa định dạng tập tin hợp lệ.', + 'range' => 'Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi Từ. Ngày này không thể lớn hơn ngày hiện tại.', + ) , + 'incident_active' => array( + 'between' => 'Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này', + 'required' => 'Xin điền vào giá trị hợp lệ để Chấp Nhận Báo Cáo Này', + ) , + 'incident_ampm' => array( + 'validvalues' => 'Phần khung thông tin về sáng/tối không chứa giá trị hợp lệ.', + ) , + 'incident_category' => array( + 'numeric' => 'Phần khung thông tin về "Phân Loại" không chứa định dạng phân loại hợp lệ.', + 'required' => 'Phần khung thông tin về "Phân Loại" không được để trống.', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => 'Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ.', + 'date_mmddyyyy' => 'Phần khung thông tin về ngày tháng không chứa định dạng tập tin hợp lệ.', + 'required' => 'Phần khung thông tin ngày tháng không được để trống.', + ) , + 'incident_description' => array( + 'required' => 'Phần khung thông tin về "Mô Tả" không được để trống.', + ) , + 'incident_hour' => array( + 'between' => 'Phần khung thông tin về giờ chứa định dạng giờ không hợp lệ.', + 'required' => 'Phần khung thông tin về giờ không được để trống.', + ) , + 'incident_information' => array( + 'alpha' => 'Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin.', + 'length' => 'Xin vui lòng điền vào một giá trị hợp lệ cho phần Xác Suất Thông Tin.', + ) , + 'incident_minute' => array( + 'between' => 'Phần khung thông tin về phút chứa dạng phút không hợp lệ.', + 'required' => 'Phần khung thông tin về phút không được để trống.', + ) , + 'incident_news' => array( + 'url' => 'Phần liên kết đường dẫn đến nguồn tin không chứa đường dẫn hợp lệ.', + ) , + 'incident_photo' => array( + 'size' => 'Hãy chắc rằng hình ảnh được tải lên có kích thước tối đa là 2MB.', + 'type' => 'Phần khung thông tin về hỉnh ảnh tải lên chứa định dạng hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF.', + 'valid' => 'Phần khung thông tin về hình ảnh được tải lên chứa định dạng tập tin không hợp lệ.', + ) , + 'incident_source' => array( + 'alpha' => 'Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin.', + 'length' => 'Xin vui lòng điền vào một giá trị hợp lệ cho Độ Tin Cậy Về Nguồn Tin.', + ) , + 'incident_title' => array( + 'length' => 'Phần khung thông tin "Tiêu Đề Báo Cáo" phải chứa ít nhất 3 ký tự và tối đa 200 ký tự về độ dài.', + 'required' => 'Phần khung thông tin "Tiêu Đề Báo Cáo" không được để trống.', + 'csrf' => 'Đây có thể là tấn công dạng CSRF. Bạn có muốn tạo/chỉnh sửa báo cáo về việc này không?', + ) , + 'incident_verified' => array( + 'between' => 'Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này', + 'required' => 'Xin điền vào giá trị hợp lệ để Xác Nhận Báo Cáo Này', + ) , + 'incident_video' => array( + 'url' => 'Phần liên kết đường dẫn video không chứa đường dẫn hợp lệ.', + ) , + 'latitude' => array( + 'between' => 'Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ.', + 'required' => 'Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'locale' => array( + 'alpha_dash' => 'Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ.', + 'exists' => 'Báo cáo này đã có phần chuyển ngữ dành cho dạng ngôn ngữ này.', + 'length' => 'Phần khung thông tin ngôn ngữ chứa giá trị không hợp lệ.', + 'locale' => 'Báo Cáo Gốc và phần Dịch có cùng ngôn ngữ với nhau (ngôn ngữ bản địa).', + 'required' => 'Phần khung thông tin ngôn ngữ không được để trống.', + ) , + 'location_name' => array( + 'length' => 'Phần khung thông tin "Tên Địa Điểm" phải có ít nhất 3 ký tự và tối đa 200 ký tự về độ dài.', + 'required' => 'Phần khung thông tin "Tên Địa Điểm" không được để trống.', + ) , + 'longitude' => array( + 'between' => 'Phần khung thông tin về kinh độ không chứa định dạng kinh độ hợp lệ.', + 'required' => 'Phần khung thông tin về kinh độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'person_email' => array( + 'email' => 'Phần khung thông tin email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần khung thông tin email phải có ít nhất 4 ký tự và tối đa 64 ký tự về độ dài.', + ) , + 'person_first' => array( + 'length' => 'Phần khung thông tin tên phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + ) , + 'person_last' => array( + 'length' => 'Phần khung thông tin họ phải có ít nhất 2 ký tự và tối đa 100 ký tự về độ dài.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => 'Phần khung thông tin về ngày gửi ĐẾN không chứa định dạng tập tin hợp lệ.', + 'range' => 'Xin vui lòng điền vào giá trị ngày hợp lệ của Gửi ĐẾN. Ngày này không thể lớn hơn ngày hiện tại.', + 'range_greater' => 'Ngày GỬI TỪ không được lớn hơn ngày GỬI ĐẾN.', + ) , +); diff --git a/application/i18n/vi_VN/reporters.php b/application/i18n/vi_VN/reporters.php new file mode 100644 index 0000000000..1084c1de0c --- /dev/null +++ b/application/i18n/vi_VN/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => 'Phần khung thông tin về vĩ độ không chứa định dạng vĩ độ hợp lệ.', + 'required' => 'Phần khung thông tin về vĩ độ không được để trống. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'level_id' => array( + 'numeric' => 'Phần khung thông tin về Người Báo Cáo không chứa định dạng tập tin hợp lệ.', + 'required' => 'lĩnh vực về Cấp Độ Người Báo Cáo không chứa định dạng tập tin hợp lệ.', + ) , + 'location_name' => array( + 'length' => 'lĩnh vực tên địa điểm phải có ít nhất 3 ký tự và không hơn 200 ký tự về độ dài.', + 'required' => 'lĩnh vực tên địa điểm được yêu cầu.', + ) , + 'longitude' => array( + 'between' => 'lĩnh vực kinh độ không chứa định dạng kinh độ hợp lệ.', + 'required' => 'lĩnh vực kinh độ được yêu cầu. Xin vui lòng click vào bản đồ để chọn địa điểm.', + ) , + 'reporter_id' => array( + 'numeric' => 'Người Báo Cáo không hợp lệ', + 'required' => 'Người Báo Cáo không hợp lệ', + ) , +); diff --git a/application/i18n/vi_VN/reports.php b/application/i18n/vi_VN/reports.php new file mode 100644 index 0000000000..14524e1337 --- /dev/null +++ b/application/i18n/vi_VN/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => 'Xin xác nhận bạn đã chọn đối tượng', + 'numeric' => 'Xin xác nhận bạn đã chọn đối tượng', + 'categories_required' => 'Báo cáo phải được phân loại trước khi được chấp thuận', + ) , + 'action' => array( + 'permission' => 'Bạn không có quyền thực hiện thao tác này', + ) , + 'uploadfile' => array( + 'required' => 'Bạn phải chọn một tập tin để tải lên', + 'type' => 'Tập tin tải lên phải có định dạng .csv hoặc .xml', + 'valid' => 'lĩnh vực thông tin tập tin tải lên dường như không chứa tập tin hợp lệ', + ) , +); diff --git a/application/i18n/vi_VN/roles.php b/application/i18n/vi_VN/roles.php new file mode 100644 index 0000000000..91e7f1397e --- /dev/null +++ b/application/i18n/vi_VN/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => 'Phần khung thông tin Mô Tả phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về Mô Tả nhất thiết phải có.', + ) , + 'name' => array( + 'alpha_numeric' => 'Phần khung thông tin Tên chỉ được chứa các ký tự hoặc số.', + 'length' => 'Phần khung thông tin Tên phải có ít nhất 2 ký tự hoặc tối đa 30 ký tự về độ dài.', + 'nomodify' => 'Quyền Quản Trị Viên Đứng Đầu không thể được hiệu chỉnh', + 'required' => 'lĩnh vực tên nhất thiết phải có.', + ) , + 'access_level' => array( + 'numeric' => 'lĩnh vực Cấp Độ Truy Cập phải có giá trị từ 0 - 100.', + 'required' => 'Phần khung thông tin Cấp Độ Truy Cập phải có giá trị từ 0 - 100.', + ) , + 'permissions' => array( + 'numeric' => 'lĩnh vực Quyền Hạn phải có giá trị giữa 0 - 100.', + ) , +); diff --git a/application/i18n/vi_VN/settings.php b/application/i18n/vi_VN/settings.php new file mode 100644 index 0000000000..076614d092 --- /dev/null +++ b/application/i18n/vi_VN/settings.php @@ -0,0 +1,234 @@ + array( + 'between' => 'lĩnh vực cho phép bình luận dường như không chứa giá trị hợp lệ.', + 'required' => 'lĩnh vực cho phép bình luận nhất thiết phải có.', + ) , + 'allow_feed' => array( + 'between' => 'lĩnh vực thông tin bao gồm nguồn cung cấp dữ liệu dường như không chứa giá trị hợp lệ.', + 'required' => 'lĩnh vực bao gồm nguồn cung cấp dữ liệu nhất thiết phải có.', + ) , + 'allow_alerts' => array( + 'between' => 'Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ.', + 'required' => 'Phần khung thông tin cho phép cảnh báo không được để trống.', + ) , + 'allow_reports' => array( + 'between' => 'Phần khung thông tin cho phép cảnh báo không chứa giá trị hợp lệ.', + 'required' => 'Phần khung thông tin cho phép báo cáo không được để trống.', + ) , + 'allow_stat_sharing' => array( + 'between' => 'Phần khung thông tin về trạng thái chia sẻ chứa giá trị không hợp lệ.', + 'required' => 'Phần khung thông tin trạng thái chia sẻ không được để trống.', + ) , + 'api' => array( + 'default_record_limit' => 'Số lượng mặc định các bản tin được tải về với từng yêu cầu API', + 'maximum_record_limit' => 'Số lượng tối đa các bản tin được tải về với từng yêu cầu API', + 'maximum_requests_per_ip_address' => 'Số lượng tối đa các API được yêu cầu với từng địa chỉ IP', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Phần khung thông tin về Akismet không chứa giá trị hợp lệ.', + 'length' => 'Phần khung thông tin về Akismet không chứa giá trị hợp lệ.', + ) , + 'banner_image' => array( + 'type' => 'Phần khung thông tin về hỉnh ảnh băng rôn chứa hình ảnh không hợp lệ. Chỉ chấp nhận các định dạng .JPG, .PNG và .GIF.', + 'size' => 'Xin chắc rằng "Hình ảnh băng rôn" có dung lượng nhỏ hơn 250 KB.', + 'valid' => 'Phần khung thông tin về "Hình Ảnh Băng Rôn" không chứa định dạng tập tin hợp lệ.', + ) , + 'cache_pages' => array( + 'between' => 'Phần khung thông tin số trang trong bộ nhớ đệm không được để trống.', + 'required' => 'Phần khung thông tin về số trang trong bộ nhớ đệm không chứa giá trị hợp lệ.', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không chứa giá trị hợp lệ.', + 'required' => 'Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống.', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'Có vẻ như phía máy chủ của bạn vẫn chưa được cấu hình để dọn dẹp các đường dẫn liên kết. Bạn cần thay đổi cấu hình của phía máy chủ do bạn đảm nhiệm trước khi bạn muốn dọn dẹp các đường dẫn liên kết. Tìm hiểu thêm tại phần bài mục này trong diễn đàn', + 'clean_url_enabled' => 'Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết sạch (không có phần "index.php" trong đường dẫn).', + 'enable_clean_url' => 'Bật tính năng dọn dẹp đường dẫn liên kết', + 'title' => 'Dọn dẹp đường dẫn liên kết', + ) , + 'clickatell_api' => array( + 'length' => 'Phần khung thông tin về số lượng Clickatel API không được quá 200 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về thời gian thực thi của số trang trong bộ nhớ đệm không được để trống.', + ) , + 'clickatell_password' => array( + 'length' => 'Phần khung thông tin về Mật Khẩu Clickatel phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài.', + 'required' => 'Phần khung thông tin mật Khẩu Clickatel không được để trống.', + ) , + 'clickatell_username' => array( + 'length' => 'Phần khung thông tin Tên Người Dùng Clickatel không được quá 50 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về Tên Người Dùng Clickatel không được để trống.', + ) , + 'configure_map' => 'Chỉnh cấu hình bản đồ', + 'default_location' => 'Địa điểm mặc định', + 'default_map_all' => array( + 'alpha_numeric' => 'Phần khung thông tin về màu sắc của feed chứa định dạng không hợp lệ.', + 'length' => 'Phần khung thông tin màu sắc không được vượt quá 6 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về màu sắc không được để trống.', + ) , + 'default_map_view' => 'Chế độ xem bản đồ mặc định', + 'default_zoom_level' => 'Mức độ phóng to mặc định', + 'download_city_list' => 'Nhận danh sách các thành phố từ Geonames', + 'email_host' => array( + 'length' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài.', + 'numeric' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số.', + ) , + 'email_password' => array( + 'length' => 'Phần khung thông tin về Mật Khẩu của máy chủ mail phải chứa ít nhất 5 ký tự và tối đa 50 ký tự về độ dài.', + 'required' => 'Phần mật khẩu mail phía máy chủ không được để trống.', + ) , + 'email_port' => array( + 'length' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài.', + 'numeric' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail chỉ nên chứa các ký tự số.', + ) , + 'email_servertype' => array( + 'length' => 'Phần khung thông tin về cổng kết nối đến máy chủ mail quá dài.', + 'required' => 'Phần loại mail phía máy chủ không được để trống.', + ) , + 'email_username' => array( + 'length' => 'Phần khung thông tin Tên Người Dùng Máy Chủ Mail không được quá 50 ký tự về độ dài.', + 'required' => 'Phần tên người dùng mail phía máy chủ không được để trống.', + ) , + 'facebook' => array( + 'title' => 'Tùy chọn cài đặt Facebook', + 'description' => 'Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Facebook mới tại', + 'description_2' => 'Các thiết lập sao cho phép người dùng đăng nhập thông qua Facebook, thao tác này does not tạo một ứng dụng facebook cho dự án của bạn', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook App Secret', + ) , + 'google_analytics' => array( + 'length' => 'Phần khung thông tin Google Analytics phải chứa một Web Property ID hợp lệ theo định dạng UA-XXXXX-XX.', + ) , + 'https' => array( + 'enable_https' => 'Bật HTTPS', + 'https_disabled' => 'Tùy chọn này cho phép truy cập Ushahidi thông qua các đường dẫn liên kết không an toàn; không có phần "https://" ở phía trước đường dẫn liên kết', + 'https_enabled' => 'Tùy chọn này cho phép truy cập Ushahidi thông qua các chế độ truy cập an toàn; có phần "https://" ở phía trước đường dẫn liên kết', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => 'Phần khung thông tin về số lượng đối tượng mỗi trang (Frontend) chứa giá trị không hợp lệ.', + 'required' => 'Phần khung thông tin số lượng đối tượng mỗi trang (Frontend) không được để trống.', + ) , + 'items_per_page_admin' => array( + 'between' => 'Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) chứa giá trị không hợp lệ.', + 'required' => 'Phần khung thông tin về số lượng đối tượng mỗi trang (Admin) không được để trống.', + ) , + 'map' => array( + 'default_location' => 'Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API.', + 'zoom' => 'Mức độ phóng to', + ) , + 'map_provider' => array( + 'choose' => 'Chọn một nhà cung cấp bản đồ', + 'enter_api' => 'Điền vào khóa API mới', + 'get_api' => 'Nhận một khóa API', + 'info' => 'Cài đặt tiến trình lựa chọn nhà cung cấp bản đồ theo xu hướng thẳng tiến. Chọn một nhà lựa chọn, nhận một khóa API từ nhà cung cấp bản đồ, điền vào khóa API.', + 'name' => 'Nhà cung cấp bản đồ', + ) , + 'map_timeline' => 'Thời gian bản đồ', + 'map_settings' => 'Thiết lập bản đồ', + 'multiple_countries' => 'Viện triển khai Ushahidi có được tiến hành ở nhiều quốc gia hay không?', + 'select_default_location' => 'Xin vui lòng chọn một quốc gia mặc định.', + 'set_location' => 'Click và rê bản đồ để chọn địa điểm chính xác', + 'site' => array( + 'allow_clustering' => 'Gom lại các báo cáo trên bản đồ', + 'allow_comments' => 'Cho phép người dùng đệ trình bình luận đến các báo cáo', + 'allow_feed' => 'Bao gồm thông tin RSS dạng Feed trên Website', + 'allow_alerts' => 'Cho phép người dùng đăng ký theo dõi các cảnh báo', + 'allow_reports' => 'Cho phép người dùng đệ trình các báo cáo', + 'api_akismet' => 'Khóa Akismet', + 'banner' => 'Băng rông đặt trên trang', + 'blocks_per_row' => 'Khóa theo dòng', + 'cache_pages' => 'Bộ nhớ đệm dành cho trang', + 'cache_pages_lifetime' => 'Thời gian thực thi bộ nhớ đệm cho trang', + 'checkins' => 'Bật tính năng điểm đến', + 'copyright_statement' => 'Thông báo về bản quyền trên trang', + 'default_category_colors' => 'Màu mặc định cho tất cả phân loại', + 'default_category_icons' => 'Biểu tượng mặc định cho tất cả phân loại', + 'delete_banner_image' => 'Xóa hình ảnh băng rôn', + 'delete_default_map_all_icon' => 'Xóa biểu tượng mặc định', + 'display_contact_page' => 'Hiển thị trang liên lạc', + 'display_howtohelp_page' => 'Hiển thị trang "Làm cách nào để nhận trợ giúp"', + 'email_alerts' => 'Địa chỉ email cảnh báo', + 'email_notice' => 'Để có thể nhận các báo cáo bằng email, vui lòng cấu hình lại thiết lập dành cho tài khoản email của bạn.', + 'email_site' => 'Địa chỉ email nhận cảnh báo', + 'google_analytics' => 'Google Analytics', + 'google_analytics_example' => 'Web Property ID - Định dạng: UA-XXXXX-XX', + 'items_per_page' => 'Số đối tượng mỗi trang - Front End', + 'items_per_page_admin' => 'Số đối tượng mỗi trang - Admin', + 'kismet_notice' => 'Chặn các bình luận dạng spam bằngAkismet theo kiểu tự động.
Bạn có thể đăng ký nhận một khóa API miễn phí từ tài khoản người dùng ở WordPress.com', + 'laconica_configuration' => 'Laconica Credentials', + 'laconica_site' => 'Trang Laconica', + 'language' => 'Ngôn ngữ trang', + 'manually_approve_users' => 'Chấp thuận bởi người sử dụng', + 'message' => 'Trang tin nhắn', + 'name' => 'Tên trang', + 'private_deployment' => 'Tiến trình riêng tư', + 'require_email_confirmation' => 'Yêu cầu cần có email xác nhận', + 'submit_report_message' => 'Đệ trình tin nhắn báo cáo', + 'share_site_stats' => 'Bật tính năng thống kê (được lưu trữ ở phía máy chủ của Ushahidi)', + 'tagline' => 'Các thẻ đánh dấu liên quan đến trang', + 'timezone' => 'Múi giờ', + 'title' => 'Thiết lập trang', + 'twitter_configuration' => 'Tìm các cụm từ trong Twitter', + 'twitter_hashtags' => 'Hashtags - Tách biệt bởi dấu phẩy', + ) , + 'site_email' => array( + 'email' => 'Phần khung thông tin trang email dường như chứa địa chỉ email không hợp lệ.', + 'length' => 'Phần khung thông tin trang email phải có ít nhất 4 ký tự và tối đa 100 ký tự về độ dài.', + ) , + 'site_name' => array( + 'length' => 'Phần khung thông tin tên trang phải có ít nhất 3 ký tự và tối đa 50 ký tự về độ dài.', + 'required' => 'Phần khung thông tin tên trang không được để trống.', + ) , + 'site_tagline' => array( + 'length' => 'Phần khung thông tin tagline phải có ít nhất 3 ký tự và tối đa 100 ký tự về độ dài.', + 'required' => 'Phần khung thông tin về tagline không được để trống.', + ) , + 'sms' => array( + 'clickatell_api' => 'Số Clickatell API của bạn', + 'clickatell_check_balance' => 'Kiểm tra trạng thái cân bằng tín dụng trên Clickatell của bạn', + 'clickatell_load_balance' => 'Tải trạng thái cân bằng tín dụng', + 'clickatell_password' => 'Mật khẩu tài khoản Clickatell của bạn', + 'clickatell_text_1' => 'Đăng ký sử dụng dịch vụ Clickatells bằng cách click vào đây', + 'clickatell_text_2' => 'Điền vào thông tin truy cập tài khoản Clickatell của bạn bên dưới', + 'clickatell_username' => 'Điền vào tên tài khoản Clickatell của bạn', + 'flsms_description' => 'FrontlineSMS là phần mềm miễn phí mã nguồn mở cho phép người dùng gửi và nhận tin nhắn văn bản đến số một số lượng lớn người dùng có liên kết với nhau theo nhóm thông qua điện thoại. Click vào ô bên dưới để tải về phiên bản mới nhất từ FrontlineSMS.com.', + 'flsms_download' => 'Tải và cài đặt FrontlineSMS', + 'flsms_instructions' => 'Thông tin chi tiết về hướng dẫn cách gửi SMS từ FronlineSMS hiện có ở here. Đường dẫn liên kết và khóa API bên dưới cần được thêm vào để cài đặt phần đồng bộ hóa với FronlineSMS.', + 'flsms_link' => 'Sao chép và dán phần này vào trong phần thông tin "Địa Chỉ" của FrontlineSMS', + 'flsms_key' => 'Sao chép và dán phần này vào trong khung thông tin "Ushahidi API Key" của FrontlineSMS', + 'flsms_synchronize' => 'Đang kết nối FrontlineSMS đến phần giao tiếp với Ushahidi', + 'flsms_text_1' => 'Điền vào (những) số điện thoại được kết nối đến SMS Frontline ở (những) khung thông tin bên dưới', + 'flsms_text_2' => 'Điền vào số và nên nhớ không đặt vào dấu + hay dấu gạch ngang', + 'option_1' => 'Tùy chọn 1: Sử dụng Frontline SMS', + 'option_2' => 'Tùy chọn 2: Sử dụng Global SMS Gateway', + 'title' => 'Tùy chọn cài đặt SMS', + ) , + 'sms_no1' => array( + 'length' => 'Số điện thoại 1 ở khung thông tin không chứa giá trị hợp lệ.', + 'numeric' => 'Phần khung thông tin số điện thoại 1 chỉ nên chứa số.', + ) , + 'sms_no2' => array( + 'length' => 'Phần số điện thoại 2 quá dài.', + 'numeric' => 'Phần khung thông tin số điện thoại 2 chỉ nên chứa số.', + ) , + 'sms_no3' => array( + 'length' => 'Phần số điện thoại 3 quá dài.', + 'numeric' => 'Phần khung thông tin số điện thoại 3 chỉ nên chứa số.', + ) , + 'twitter' => array( + 'title' => 'Tùy chọn cài đặt Twitter', + 'description' => 'Để nhận thêm thông tin bên dưới bạn sẽ cần phải tạo một ứng dụng Twitter mới tại', + 'api_key' => 'Khóa người tiêu dùng', + 'api_key_secret' => 'Bí mật người tiêu dùng', + 'token' => 'Token truy cập', + 'token_secret' => 'Token bí mật truy cập', + ) , + 'test_settings' => 'Thử các thiết lập', +); diff --git a/application/i18n/vi_VN/sharing.php b/application/i18n/vi_VN/sharing.php new file mode 100644 index 0000000000..4257397de9 --- /dev/null +++ b/application/i18n/vi_VN/sharing.php @@ -0,0 +1,25 @@ + 'Ngày chuyển vào', + 'date_added' => 'Đã thêm ngày tháng', + 'last_access' => 'Lần truy cập gần đây nhất', + 'sharing_color' => array( + 'length' => 'lĩnh vực màu sắc phải chứa 6 ký tự về độ dài.', + 'required' => 'lĩnh vực màu sắc phải có.', + ) , + 'sharing_name' => array( + 'length' => 'Phần tên Chia Sẻ hình như không hợp lệ.', + 'required' => 'Phần tên Chia Sẻ phải có.', + ) , + 'sharing_url' => array( + 'exists' => 'Liên kết đường dẫn của trang đã tồn tại.', + 'length' => 'Liên kết đường dẫn của trang không hợp lệ.', + 'required' => 'Phần liên kết đường dẫn của trang phải có.', + 'url' => 'Phần liên kết đường dẫn của trang không chứa đường dẫn hợp lệ.', + ) , +); diff --git a/application/i18n/vi_VN/stats.php b/application/i18n/vi_VN/stats.php new file mode 100644 index 0000000000..57bd0b105b --- /dev/null +++ b/application/i18n/vi_VN/stats.php @@ -0,0 +1,42 @@ + 'Đã chấp thuận', + 'categories' => 'Phân Loại', + 'category_impact' => 'Tác động phân loại', + 'category_impact_description' => 'Biểu đồ này cho bạn cách nhìn theo dạng tuyến tính của các báo cáo theo từng dạng phân loại theo từng thời điểm thời gian. Kéo chuột từ trái sang phải để xem phần so sánh giữa các loại. Di chuyển chuột đến vùng biểu đồ để biết thêm chi tiết.', + 'choose_date_range' => 'Chọn một khoảng ngày tháng.', + 'countries' => 'Quốc gia', + 'country' => 'Quốc gia', + 'country_breakdown' => 'Hệ thống quốc gia bị lỗi', + 'description' => 'Đây là phần dành cho thống kê và sẽ chứa các mô tả tổng quan trong thời gian sắp tới. Cho tới hiện tại, duyệt tìm các phần phân loại khác ở đường dẫn bên dưới.', + 'error' => 'Lỗi', + 'glossary' => 'Bảng từ vựng', + 'hit_summary' => 'Chọn Tóm tắt', + 'legend' => 'Huyền thoại', + 'pageviews' => 'Số lượng truy cập', + 'pageviews_description' => 'Tổng số lượng của trang với lượng truy cập đến từ phía người dùng trong trang mạng của bạn', + 'reports' => 'Báo cáo', + 'reports_categories' => 'Phân loại báo cáo', + 'reports_statistics' => 'Thống kê báo cáo', + 'reports_status' => 'Trạng thái báo cáo', + 'report_punchcard' => 'Punchcard của báo cáo', + 'report_stats' => 'Trạng thái báo cáo', + 'stats_not_setup' => 'trạng thái chưa thiết lập', + 'time_range_1' => '1 tháng', + 'time_range_2' => '3 tháng', + 'time_range_3' => '6 tháng', + 'time_range_all' => 'Tất cả', + 'unapproved' => 'Chưa được chấp thuận', + 'unique_visitors' => 'những người xem độc lập', + 'unique_visitors_description' => 'Số lượng của mỗi cá nhân trong dự án của bạn. Các người xem độc lập được xác định bởi việc sử dụng các cookies. Các người xem thường không bật tính năng cookies nên sẽ được xác định dựa vào thuật toán heuristic trong việc phân loại theo địa chỉ IP, độ phân giải, trình duyệt, tiện ích, hệ điều hành v.v...', + 'unverified' => 'Chưa xác nhận', + 'verified' => 'Đã xác nhận', + 'visitor_summary' => 'Tóm tắt khách truy cập', + 'visits' => 'Truy cập', + 'visits_description' => 'Một lượt được tính là truy cập trong bảng ghi dữ liệu với mỗi khách viếng thăm độc lập trang web dựa trên lượt xem qua mỗi quãng thời gian kéo dài 30 phút.', +); diff --git a/application/i18n/vi_VN/tooltips.php b/application/i18n/vi_VN/tooltips.php new file mode 100644 index 0000000000..1927a3b93b --- /dev/null +++ b/application/i18n/vi_VN/tooltips.php @@ -0,0 +1,95 @@ + array( + 'add_to_category' => 'báo cáo thêm này để thêm các hạng mục. Nếu bạn chọn loại 1 ở đây và báo cáo đã có Loại 2 gắn liền với nó, báo cáo sau đó sẽ có cả hai loại 1 và loại 2.', + 'approve' => 'chấp thuận báo cáo hay không. Nếu được chấp thuận, nó sẽ hiển thị công khai.', + 'assign_badge' => 'You will be able to assign a badge to the triggering user. Pick the badge that gets assigned here.', + 'between_times' => 'This is a range of hours and/or minutes between two times in 24 hour format. If you input an earlier time in the second field, it will be flipped with the first. These times must be within a single day. Also, this time is checked against the time you have configured on your site in site settings and not necessarily the timezone of the user interacting with your deployment. Leave this at 00:00 to 00:00 to ignore this qualifier.', + 'category' => 'If you would like to activate triggers only when a certain category is being used, you can set that here. This will allow a trigger to be activated if only one of the categories is used. For instace, if you select Category 1 and Category 2 here and a report is submitted using Category 2 and Category 3, it will pass the test.', + 'days_of_the_week' => 'If these actions happen on certain days of the week, set that here. Keep in mind the day is determined by the timezone configured on your deployment. Hold shift, command, or control for multiple day selection.', + 'email_body' => 'Body of the email that will be sent.', + 'email_subject' => 'Subject of email that will be sent.', + 'feed_id' => 'The feed can be all feeds or a specific feeds. If you would only like specific feeds to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "all"', + 'from' => 'Twitter author username (or multiple usernames separated by commas). If you would like to activate triggers only for twitter messages from a particular user, enter their username here (not including @)', + 'keywords' => 'You can choose to leave this blank if you do not want to check against keywords. If you add words here, you will need to separate them with a comma (,). For example, if you want to activate a trigger when someone mentions "love" or "peace" in their message, you will want to add "love, peace" in the keywords box.', + 'location' => 'You can either select anywhere or a specific location. If you select a specific location, you will be asked to draw a box around the area that qualifies an action. For example, if you want this trigger to be activated when someone submits a report in Brazil, you will select "specific area" and then draw the box around Brazil. You can make these boxes as small or as large as you would like. You can also draw multiple boxes.', + 'on_specific_count' => 'This qualifier will activate the trigger on the N-th count either for the entire collective user base or for each individual user. Leave this blank to ignore it.', + 'report_title' => 'This is the default title to add to the report.', + 'response' => 'If all of the qualifiers above are passed, the trigger will initiate a response. This can range from approving a report to emailing a user. Select the response here to activate additional options for the specific responses.', + 'send_to' => 'If you select "Triggering User", the email will be sent to the user who performed the action. If you select the radio button next to the input box, you will be able to enter a custom email address. This is useful if you are setting up triggers to notify people when certain parts of the map are seeing reports, check ins or some other activity.', + 'specific_days' => 'You can select multiple days here. Dates are determined by your deployment timezone setting. In order to default to all dates, do not select any dates.', + 'trigger' => 'The trigger is the core component of setting up your Action Triggers. This is where you determine if you would like something to happen when someone submits a report, performs a check in, etc. You will be able to filter responses to these actions after selecting one.', + 'user' => 'The user can be anyone or a specific user. If you would only like specific users to activate a trigger, you will want to select them here. Otherwise, you will want to leave this as "anyone" since most triggers are set up for all users interacting with the system', + 'verify' => 'Marks a report as verified or not.', + ) , + 'change_picture' => 'Profile pages on this site use Gravatar. By clicking on your image, you will be taken to the Gravatar website where you can change your profile picture.', + 'default_value' => 'Separate each value with a comma, e.g. value1, value2.', + 'radio_choices' => 'Separate each value with a comma, e.g. value1, value2. In case you want to set a default value, end your list of options with :: e.g If you want to make value3 the default, it will be value1, value2, value3::value3', + 'dropdown_choices' => 'Separate each choice item with a comma, e.g. Item 1, Item 2 etc.', + 'private_to' => 'Start typing to list members.', + 'private_subject' => 'Private message subject', + 'private_message' => 'Private message', + 'profile_color' => 'You can select a color that will show up under your profile picture on your public profile. This color will also be the color dot that shows up on the map for your checkins.', + 'profile_email' => 'Your email address', + 'profile_name' => 'This is one of the ways that you are identified on the website. Keep in mind that this is public!', + 'profile_new_password' => 'If set, this will be your new password. Leave this field blank if you wish to keep your current password.', + 'profile_new_users_password' => 'This is a requirement when creating a new user and will be the users password. You should inform your new user to change their password after logging in for the first time.', + 'profile_notify' => 'Selecting YES lets you get alerts via email when new reports or comments are posted on your website.', + 'profile_password' => 'Your current password. We require you enter your password to prevent any unauthorized changes to your account.', + 'profile_public' => 'Your profile can be viewed by anyone on the Internet if you check this option. This is also the easiest way to show off the reports you\'ve submitted, your checkins, badges, etc all on one page.', + 'profile_public_url' => 'This is the address where your public profile can be found.', + 'profile_username' => 'Your username cannot be changed.', + 'settings_access_level' => 'Access Levels are used to restrict access to custom form field data. Higher access levels can access fields from lower levels. Superadmin has the highest access level (100). Public data is displayed at the lowest access level (0). Members have access level 10. Admin is access level 90 by default.', + 'settings_alert_email' => 'This is the email address that will be used to send email alerts.', + 'settings_allow_alerts' => 'Allow users to subscribe for alerts via the web.', + 'settings_allow_clustering' => 'This allows bundling of similar reports into a single dot on the map', + 'settings_allow_comments' => 'Allow users to comment on reports on the main site.', + 'settings_allow_feed' => 'This allows RSS News feeds to be displayed on the main site.', + 'settings_allow_reports' => 'Allow users to submit information via the web form.', + 'settings_api_default_record_limit' => 'Default number of records to be fetched per API request', + 'settings_api_max_record_limit' => 'Maximum number of records to be fetched per API request', + 'settings_api_max_requests_per_ip' => 'Maximum number of API requests per IP address', + 'settings_banner' => 'The site banner shows up at the top of the front end of your website if the theme you are using supports it. The recommended size for this banner will depend on the theme you are using. Keep in mind that this will replace the site title and tagline at the top of the page.', + 'settings_blocks_per_row' => 'Number of Block columns that will be displayed on each row.', + 'settings_cache_pages' => 'Enable or disable page caching. This makes pages display faster by cutting response times. We recommend using caching on high traffic sites. **Remember that reports will be populated on the front end based on the schedule you set below (Cache Lifetime).', + 'settings_cache_pages_lifetime' => 'Set the lifetime of the cache.', + 'settings_checkins' => 'This setting enables checkins on your deployment. This is a simplified report type that is not moderated before it goes on the homepage and requires your site to be configured a certain way. When you enable this, make sure your timezone setting is on UTC and your theme supports checkins. When you enable this, checkin-only themes will become enabled under your addons/themes settings page.', + 'settings_configure_map' => 'Set the map to cover a specific location.', + 'settings_default_category_colors' => 'Set one color code for all the categories on the site.', + 'settings_default_category_icons' => 'Set one icon for all the categories on the site.', + 'settings_default_location' => 'This is the country the site is being deployed.', + 'settings_display_contact' => 'Turn the Contact Tab on or off on the main site.', + 'settings_display_howtohelp' => 'Turn the How to Help Tab on or off on the main site.', + 'settings_display_items_per_page' => 'This is the number of reports displayed per page on the main site.', + 'settings_display_items_per_page_admin' => 'This is the number of reports displayed per page on the admin Back End.', + 'settings_flsms_download' => 'This is the hub for incoming messages.', + 'settings_flsms_synchronize' => 'This synchronizes the messages in the hub with the Ushahidi platform.', + 'settings_flsms_text_1' => 'Phone numbers through which the text messages are received.', + 'settings_google_analytics' => 'Tracks visitors of your site. Get detailed visitor statistics.', + 'settings_locale' => 'Sets the language that will be used in the site.', + 'settings_manually_approve_users' => 'If you set this option to yes, you must approve every individual user who creates an account on your site by assigning them roles (ie. Member, Admin, Superadmin).', + 'settings_map_provider' => 'This defines which map is to be used on the site.', + 'settings_map_timeline' => 'This shows the timeline based on the date and time reports were submitted', + 'settings_private_deployment' => 'Setting this value to true or yes will make your deployment private so only users with accounts that you specify will be able to access the deployment.', + 'settings_require_email_confirmation' => 'Users will be emailed with a confirmation link to click before they are allowed to log into the deployment if this is set to yes. If you enable this after your deployment has accepted users, they will be prompted to confirm their account before they will be allowed to continue using it.', + 'settings_server_host' => 'This is where the emails reside', + 'settings_server_password' => 'This is the password for the email address that receives reports.', + 'settings_server_port' => 'This is required to accept incoming connections from the email address.', + 'settings_server_ssl_support' => 'This is required to enhance a secure connection.', + 'settings_server_type' => 'This is required to retrieve e-mails from the host server.', + 'settings_server_username' => 'This is the email address that receives reports.', + 'settings_share_site_stats' => 'Hit statistics are stored on a server controlled by Ushahidi. By enabling this option, you gain access to hit statistics directly in your admin panel. By disabling it, you will stop collecting statistics and will be unable to recover traffic stats collected while this is turned off.', + 'settings_site_copyright_statement' => 'Do others have the right to republish text, images, video and/or design themes that you and your users create? Go to https://creativecommons.org/choose/ if you are interested in specifying what others are able to do with your work. And remember to be specific about what elements of the site you are licensing!', + 'settings_site_email' => 'This is the email address that will receive email reports and messages from the contact form.', + 'settings_site_message' => 'This is text that will appear above the map on the homepage. This is useful for giving important information to visitors on the site. To remove the box, simply delete the message here.', + 'settings_site_name' => 'This is the name of the site that appears at the top of the main site.', + 'settings_site_submit_report_message' => 'This is a message that will show up on the submit report page. This is good for disclaimers or further instructions for your visitors who are reporting.', + 'settings_site_tagline' => 'In a few words, explain what this site is about.', + 'settings_site_timezone' => 'This is the timezone that your site will operate on. This has an impact on any actions you have set up that utilize time and date, as well as the default current time for reports on the front and back end of the site.', + 'settings_twitter_configuration' => 'Set the twitter hashtag that will be used on a tweet', +); diff --git a/application/i18n/vi_VN/ui_admin.php b/application/i18n/vi_VN/ui_admin.php new file mode 100644 index 0000000000..a6cd832289 --- /dev/null +++ b/application/i18n/vi_VN/ui_admin.php @@ -0,0 +1,320 @@ + 'Truy cập bị từ chối. Có thể quyền ủy nhiệm của bạn không hợp lệ hoặc yêu cầu của bạn bị từ chối.', + 'access_denied_others' => 'Truy cập bị từ chối. Yêu cầu của bạn có đã được nhận, nhưng bị từ chối vì bị hạn chế số lần truy cập. hãy quay lại sau.', + 'access_level' => 'Cấp độ truy cập', + 'actions' => 'Thao tác', + 'add_to_category' => 'Thêm vào phân loại', + 'added' => 'đã thêm vào', + 'added_edited' => 'đã thêm vào/đã chỉnh sửa', + 'addons' => 'Tiện ích', + 'admin_role' => 'Quản trị viên', + 'alerts' => 'Cảnh báo', + 'alerts_received' => 'Cảnh báo đã nhận được', + 'all' => 'Tất cả', + 'am' => 'Sáng', + 'anonymous' => 'Vô danh', + 'anyone_role' => 'Bất kỳ ai', + 'anywhere' => 'Bất kỳ vị trí nào', + 'api_banned' => 'API bị cấm', + 'api_logs' => 'Nhật trình API', + 'api_settings' => 'Thiết lập API', + 'api_unban' => 'GỠ LỆNH CẤM', + 'api_unban_all' => 'GỠ LỆNH CẤM CHO TẤT CẢ', + 'approved' => 'đã chấp thuận', + 'approve_auto' => 'Tự động chấp thuận', + 'approve_manual' => 'Chấp thuận bởi người sử dụng', + 'archived' => 'Đã sao lưu', + 'are_you_sure_you_want_to' => 'Bạn có chắc muốn', + 'are_you_sure_you_want_to_delete_this_item' => 'Bạn có chắc muốn xóa đối tượng này?', + 'are_you_sure_you_want_to_delete_this_photo' => 'Bạn có chắc muốn xóa hình chụp này?', + 'are_you_sure_you_want_to_switch_forms' => 'Bạn có chắc muốn chuyển đổi các lá đơn?', + 'assign' => 'Gán', + 'assignments' => 'Việc gán', + 'assign_badge' => 'Gán phù hiệu', + 'author' => 'Tác giả', + 'author_email' => 'Email tác giả', + 'back' => 'Quay lại', + 'banip_action' => 'CẤM IP', + 'between_times' => 'Giữa các lần', + 'blocks' => 'Khối', + 'body' => 'Cơ thể', + 'cancel' => 'Hủy bỏ', + 'categories' => 'Phân loại', + 'chart_display_error' => 'Xảy ra lỗi khi hiển thị biểu đồ', + 'check_message_valid' => 'Xin chắc chắc rằng tin nhắn của bạn là hợp lệ.', + 'check_number' => 'Xin chắc chắn rằng con số này là hợp lệ.', + 'check_sms_settings' => 'Xin vui lòng kiểm tra thiết lập SMS của bạn!', + 'checkin_details' => 'Chi tiết về điểm đến', + 'checkins' => 'Điểm đến', + 'cities_loaded' => 'Đã tải các thành phố', + 'code' => 'mã', + 'code_out_of_sync' => 'Phiên bản mã cho việc đồng bộ hóa.', + 'color' => 'Màu sắc', + 'comments' => 'Bình luận', + 'confirmation_code' => 'Xác nhận mã cảnh báo của bạn là:', + 'confirm_msg' => 'Người dùng này đã được', + 'count' => 'Số lần', + 'country_not_found' => 'Không tìm thấy quốc gia', + 'created_edited' => 'đã tạo/đã sửa', + 'create_report' => 'Tạo một báo cáo', + 'critical_upgrade' => 'Cập nhật khẩn cấp', + 'csv' => 'CSV', + 'currently_active' => 'Hiện đang hoạt động', + 'currently_inactive' => 'Hiện đang không hoạt động', + 'custom_forms_insufficient_permissions' => 'Bạn không có quyền tác động để thay đổi các khung thông tin dưới đây.', + 'daily' => 'Hằng ngày', + 'dashboard' => 'Bảng điều khiển', + 'database' => 'cơ sở dữ liệu', + 'date_time' => 'Ngày tháng & Thời gian', + 'date_added' => 'Đã thêm vào ngày tháng', + 'date_modified' => 'Đã chỉnh sửa ngày tháng', + 'days_of_the_week' => 'Ngày trong tuần', + 'db_out_of_sync' => 'Phiên bản DB đã quá hạn để đồng bộ hóa.', + 'deleted' => 'đã xóa', + 'delete_action' => 'Xóa', + 'delete_badge' => 'Xóa phù hiệu', + 'demo' => 'Bản thử nghiệm', + 'description' => 'Mô tả', + 'disabled' => 'Vô hiệu hóa', + 'divider_start_field' => 'Bắt đầu phân phát', + 'divider_end_field' => 'Kết thúc phân phát', + 'divider_class' => 'div class', + 'download_reports' => 'Tải về báo cáo', + 'dropdown_choices' => 'Lựa chọn xổ xuống', + 'edited' => 'ĐÃ SỬA', + 'edited_by' => 'Đã sửa bởi', + 'edit_action' => 'Chỉnh sửa', + 'edit_log' => 'Nhật trình chỉnh sửa', + 'email' => 'Email', + 'entire_collective' => 'Toàn bộ việc thu thập', + 'error_geocoding' => 'Lỗi khi đang xác định mã địa lý! Lỗi về HTTP', + 'error_imap' => 'Thư viện PHP IMAP chưa được cài đặt', + 'error_twitter' => 'Giấy ủy nhiệm không hợp lệ', + 'error_msg' => 'Lỗi', + 'error_post_incident' => 'Lỗi, không thể đăng tiến trình này', + 'every_six_hours' => 'Mỗi sáu giờ', + 'every_twelve_hours' => 'Mỗi mười hai giờ', + 'experimental' => 'Thực nghiệm ', + 'faqs' => 'Câu hỏi thường gặp', + 'feed' => 'feed', + 'feedback' => 'Phản hồi', + 'feeds' => 'feed', + 'field_choices' => 'Danh sách lựa chọn', + 'field_default' => 'Giá trị mặc định', + 'field_datatype' => 'Loại dữ liệu', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => 'Markup', + 'field_datatype_numeric' => 'Numeric', + 'field_datatype_text' => 'Free Text', + 'field_height' => 'Chiều cao (tính bằng dòng)', + 'field_hidden' => 'Khung thông tin bị ẩn', + 'field_maxlength' => 'Độ dài ký tự tối đa', + 'field_name' => 'Tên khung thông tin', + 'field_toggle' => 'Chuyển đổi', + 'field_toggle_no' => 'Không đồng ý', + 'field_toggle_yes_close' => 'Đồng ý, đã đóng lại theo mặc định', + 'field_toggle_yes_open' => 'Đồng ý, mở theo mặc định', + 'file_not_found_upload' => 'Không thể tìm thấy tập tin được tải lên', + 'file_open_error' => 'Không thể mở tập tin để đọc dữ liệu', + 'form_not_exists' => 'Phần đơn này không hề tồn tại!', + 'forum' => 'Diễn đàn', + 'free_text_field' => 'Khu vực khung thông tin văn bản (văn bản tự do)', + 'date_field' => 'Khung thông tin ngày tháng', + 'radio_field' => 'Khung thông tin nút lựa chọn', + 'checkbox_field' => 'Khung thông tin phần đánh dấu', + 'dropdown_field' => 'Khung thông tin menu xổ xuống', + 'from' => 'Từ', + 'from_date' => 'Từ', + 'geonames_timeout' => 'Lỗi vì thời gian kết nối đến Geonames quá hạn', + 'get_help' => 'Nhận sự giúp đỡ', + 'get_more_themes' => 'Tải thêm nhiều giao diện hơn', + 'get_more_plugins' => 'Tải thêm nhiều tiện ích hơn', + 'header_actions' => 'Thao tác', + 'header_add_edit' => 'Thêm/sửa', + 'header_email' => 'Email', + 'header_manage_users' => 'Quản lý người dùng', + 'header_role' => 'Vai trò', + 'header_user' => 'Người dùng', + 'help' => 'trợ giúp', + 'hourly' => 'Hằng giờ', + 'incident_feed' => 'Feed tiến trình cho', + 'installer_info' => 'Thư mục cài đặt vẫn không tồn tại. Xóa thư mục cài đặt. Đây là tiềm ẩn an ninh quan trọng.', + 'instance' => 'Tiến trình', + 'instances' => 'Tiến trình', + 'instance_details' => 'Thông tin tiến trình', + 'invalid_parameter' => 'Thông số không hợp lệ', + 'ip_address' => 'Địa chỉ IP', + 'is_date' => 'Đây có phải là khung thông tin ngày tháng?', + 'ispublic_visible' => 'Ai có thể xem các câu trả lời', + 'ispublic_submit' => 'Ai có thể đệ trinh cầu trả lời', + 'keyword' => 'Từ khóa', + 'keywords' => 'Từ khóa', + 'label_email' => 'Địa chỉ email:', + 'label_full_name' => 'Tên đầy đủ:', + 'label_password' => 'Mật khẩu:', + 'label_role' => 'Vai trò:', + 'label_username' => 'Tên người dùng:', + 'layers' => 'Lớp', + 'login_role' => 'Người điều hành', + 'logout' => 'Đăng xuất', + 'logs' => 'Nhật trình', + 'manage' => 'Quản lý', + 'manage_roles' => 'Quản lý Vai trò & Quyền hạn', + 'manage_users' => 'Xem người dùng', + 'manage_users_edit' => 'Thêm/sửa người dùng', + 'manage_public_listing' => 'Quản lý việc liệt kê công cộng của bạn', + 'mark_as' => 'Đánh dấu dưới dạng', + 'marked_as_not_spam' => 'đã đánh dấu không phải spam', + 'marked_as_spam' => 'đã đánh dấu dưới dạng spam', + 'match_no_documents' => 'Không khớp với bất kỳ tài liệu nào', + 'message' => 'Tin nhắn', + 'messages' => 'Tin nhắn', + 'messages_laconica' => 'Tin nhắn Laconica', + 'messages_twitter' => 'Tin nhắn Twitter', + 'message_sent' => 'Tin nhắn của bạn đã được gửi!', + 'mhi' => 'MHI', + 'minute' => 'Phút', + 'minutes' => 'Phút', + 'missing_parameter' => 'Thiếu các thông số', + 'moderator' => 'Người điều hành', + 'modified' => 'đã chỉnh sửa', + 'modify_timezone' => 'Chỉnh sửa thiết lập thời gian vùng miền', + 'move_down_action' => 'di chuyển xuống', + 'move_up_action' => 'di chuyển lên', + 'multiple_hosted_instances' => 'Tiến trình Multiple hosted', + 'my_alerts' => 'Cản báo của tôi', + 'my_checkins' => 'Điểm đến của tôi', + 'my_profile' => 'Hồ sơ của tôi', + 'my_reports' => 'Báo cáo của tôi', + 'my_votes' => 'Bình chọn diễn viên', + 'my_votes_up' => 'Dương tính', + 'my_votes_down' => 'Âm tính', + 'name' => 'Tên', + 'new_alert' => 'Tạo cảnh báo mới', + 'new_private' => 'Tạo tin nhắn mới', + 'new_password' => 'Mật khẩu mới', + 'no' => 'Không đồng ý', + 'none_category_explanation' => 'Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần đệ trình báo cáo từ những người dùng gửi các báo khác. Phần này được sử dụng để giữ các báo cáo còn lại vốn chưa được phân loại (các báo cáo chưa được phân loại) dưới dạng phân loại bị xóa.', + 'notification' => 'Thông báo', + 'not_case_sensitive' => 'Không phân biệt chữ in hoa.', + 'not_found' => 'Không tìm thấy', + 'no_data' => 'Không có dữ liệu. Không có kết quả nào được hiển thị.', + 'no_error' => 'Không có lỗi', + 'no_result_display_msg' => 'Không có kết quả để hiển thị!', + 'of' => 'của', + 'on_specific_count' => 'Dựa trên số lượng', + 'openids' => 'OpenID\'s', + 'page' => 'trang', + 'pages' => 'trang', + 'page_not_found' => 'Không tìm thấy trang', + 'page_not_found_message_with_contact' => 'Rất tiếc, trang bạn muốn truy cập hiện không có.

Bạn đã đi đến đường liên kết này từ một nơi khác trên trang của chúng tôi?
Nếu bạn truy cập đến trang này từ trang thuộc hệ thống hiện tại, xin vui lòng liên hệ với chúng tôi để chúng tôi có thể khắc phục vấn đề này.

Có phải bạn đã truy cập đến trang này từ đường dẫn ở các trang khác không thuộc hệ thống của chúng tôi?
Liên kết ở các trang khác không thuộc hệ thống của chúng tôi thường sai về mặt cú pháp hoặc các liên kết đó đã quá hạn truy cập. Hãy thông báo cho chúng tôi biết trang mà bạn đã truy cập trước khi click vào đường liên kết để đến trang này nhằm khắc phục vấn đề lỗi trang trên.

Có phải bạn đã gõ vào đường dẫn?
Có thể bạn đã gõ vào đường dẫn (địa chỉ) sai cú pháp. Hãy xem lại đường dẫn hay địa chỉ mà bạn đã truy cập.

', + 'page_not_found_message' => 'Rất tiếc, trang bạn đang muốn truy cập hiện không tồn tại', + 'parameters_used' => 'Thông số được sử dụng', + 'password' => 'Mật khẩu', + 'password_reset' => 'Đặt lại mật khẩu', + 'password_reset_message_line_1' => 'Thân mến', + 'password_reset_message_line_2' => 'Chúng tôi đã nhận được yêu cầu đặt lại mật khẩu cho', + 'password_reset_message_line_3' => 'Để có thể thay đổi mật khẩu của bạn, vui lòng click vào liên kết phía dưới (hoặc sao chép và dán vào trình duyệt của bạn).', + 'password_reset_message_line_4' => 'Theo như yêu cầu của bạn, mật khẩu đã được thay đôi. Thông tin chi tiết sẽ có dạng', + 'password_reset_subject' => 'Đặt lại mật khẩu Ushahidi', + 'phone' => 'Điện thoại', + 'please_select' => 'Xin vui lòng chọn', + 'pm' => 'PM', + 'post_method_not_used' => 'Dữ liệu không được gửi bởi phương thức đăng bài', + 'preview' => 'Xem trước', + 'private_message' => 'Tin nhắn', + 'private_messages' => 'Tin nhắn riêng tư', + 'private_sent' => 'Tin nhắn riêng đã được gửi', + 'private_subject' => 'Chủ đề', + 'private_to' => 'Đến', + 'public_listing' => 'Liệt kê công cộng', + 'qualifiers' => 'Người thẩm định', + 'read' => 'đọc', + 'relevance' => 'Thích hợp', + 'report_title' => 'Báo cáo tiêu đề', + 'report_date' => 'Ngày ghi báo cáo', + 'reporters' => 'Người báo cáo', + 'reporter_levels' => 'Nhãn người báo cáo', + 'reports' => 'Báo cáo', + 'reputation' => 'Điểm danh vọng', + 'required' => 'Yêu cầu', + 'reset' => 'Đặt lại', + 'response' => 'Trả lời', + 'results' => 'Kết quả', + 'revoke' => 'Hủy bỏ', + 'riverid_exists_admin' => 'Email này có một tài khoản gắn kết với CrowdmapID. Người sử dụng sẽ cần sử dụng mật khẩu bên phía Crowdmap để đăng nhập.', + 'save_settings' => 'Lưu thiết lập', + 'search' => 'Tìm kiếm', + 'search_reports' => 'Tìm kiếm báo cáo', + 'searching_for' => 'tìm kiếm về', + 'security_info_encryption_key' => 'Khóa mã hóa được chỉnh về giá trị mặc định. Điều này không an toàn và cần phải được thay đổi.', + 'security_info_https' => 'Trang này đang sử dụng phương thức HTTP. Vì lí do an ninh nên chuyển về dạng HTTPS', + 'security_info_instructions' => 'Các hướng dẫn hiện đang được phổ biến trên wiki:', + 'select_download_format' => 'Chọn định dạng báo cáo tải về mà bạn muốn:-', + 'select_field_type' => '--- Chọn một loại khung thông tin ---', + 'select_item' => 'Xin chọn một đối tượng', + 'select_trigger_before_response' => 'Bạn phải chọn một Trigger trước khi chọn Trả Lời', + 'select_trigger_before_qualifiers' => 'Bạn phải chọn một Trigger trước khi bạn xác định Người Thẩm Định.', + 'sender' => 'Người gửi', + 'send_to' => 'Gửi đến', + 'sent_from_website' => 'Tin nhắn này đã được gửi đến website của bạn tại', + 'server_time' => 'Thời gian server', + 'settings' => 'Thiết lập', + 'showing_page' => 'Hiển thị trang', + 'showing_results' => 'Hiển thị kết quả', + 'shown' => 'đã hiển thị', + 'special_category' => 'Phân loại đặc biệt', + 'special_category_explanation' => 'Đây là phần phân loại đặc biệt sẽ không xuất hiện trong phần mẫu đơn đệ trình báo cáo từ phía người dùng khi họ đệ trình các báo cáo. Tính năng này có liên kết với tính năng "Người Gửi Báo Cáo Được Tin Tưởng".', + 'specific_area' => 'Khu vực xác địn', + 'state' => 'Trạng thái', + 'statistics' => 'Thống kê', + 'stats' => 'Trạng thái', + 'stats_collection_error' => 'Tổng hợp trạng thái thất bại! Xin vui lòng thử lại lần nữa.', + 'stats_collection_error_short' => 'Tổng hợp trạng thái thất bại!', + 'specific_days' => 'Xác định ngày', + 'subject' => 'Chủ đề', + 'superadmin_role' => 'Quản trị viên chính yếu', + 'task_performed' => 'Tác vụ đã thực hiện', + 'text_field' => 'Khung thông tin văn bản', + 'theme_name' => 'Tên', + 'title' => 'Quản lý người dùng', + 'timeout' => 'Lỗi về quá hạn thời gian', + 'to' => 'đến', + 'total_records' => 'Tổng cộng các bản ghi', + 'to_date' => 'đến', + 'translate_reports' => 'Dịch các báo cáo', + 'trigger' => 'Trigger', + 'triggering_user' => 'Người dùng Trigger', + 'triggers' => 'Trigger', + 'unapproved' => 'chưa được chấp thuận', + 'unknown' => 'Chưa Rõ', + 'unknown_failure' => 'Lỗi chưa rõ', + 'unread' => 'chưa đọc', + 'unsubscribe_message' => 'Bạn sẽ không còn nhận cảnh báo từ', + 'update_link' => 'Click vào đây để nâng cấp ngay bây giờ', + 'upgrade_ushahidi' => 'Nâng cấp Ushahidi', + 'upgrade_ushahidi_status' => 'Trạng thái nâng cấp Ushahidi', + 'upload_reports' => 'Tải lên báo cáo', + 'user' => 'Người dùng', + 'users' => 'Người dùng', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => 'Đã xác nhận/Vẫn chưa xác nhận', + 'verify_unverify' => 'Xác nhận/Chưa xác nhận', + 'version' => 'Phiên bản', + 'version_available' => 'hiện đã có thể nâng cấp.', + 'video_encoding' => 'Mã hóa video', + 'view_private' => 'Tin nhắn riêng', + 'view_site' => 'Xem trang', + 'view_report' => 'Xem báo cáo', + 'welcome' => 'Chào mừng,', + 'wiki' => 'Wiki', + 'xml' => 'XML', + 'yes' => 'Đồng ý', + 'your_search_for' => 'Tìm kiếm của bạn về', +); diff --git a/application/i18n/vi_VN/ui_main.php b/application/i18n/vi_VN/ui_main.php new file mode 100644 index 0000000000..1f4f3adfa3 --- /dev/null +++ b/application/i18n/vi_VN/ui_main.php @@ -0,0 +1,620 @@ + 'về', + 'access' => 'Truy cập', + 'access_limits' => 'Giới hạn truy cập', + 'account_name' => 'Tên tài khoản', + 'actions' => 'Thao tác', + 'action_confirm' => 'Thao tác hiện vẫn chưa hoàn tất. Bạn có chắc muốn tiếp tục?', + 'activate' => 'Kích hoạt', + 'active' => 'Đang hoạt động', + 'add' => 'Thêm', + 'added_by' => 'Thêm vào bởi', + 'additional_data' => 'Dữ liệu bổ sung', + 'additional_reports' => 'Báo cáo bổ sung', + 'add_edit' => 'Thêm/Sửa', + 'add_field' => 'Thêm một lĩnh vực', + 'add_language' => 'Thêm ngôn ngữ', + 'add_new' => 'Thêm mới', + 'add_new_category' => 'Thêm Phân Loại Mới', + 'add_translation' => 'Thêm Chuyển Ngữ', + 'admin' => 'Quản Trị viên', + 'alerts' => 'Nhận cảnh báo', + 'alerts_alert_me' => 'cảnh báo tôi khi một báo cáo đã được thực thi, hoặc xung quanh:', + 'alerts_btn_send' => 'Lưu Thông Báo Của Tôi', + 'alerts_email' => 'Địa chỉ email:', + 'alerts_enter_email' => 'điền vào địa chỉ email', + 'alerts_enter_mobile' => 'điền vào số điện thoại đi kèm theo là mã vùng điện thoại đứng đầu', + 'alerts_get' => 'Nhận Thông Báo', + 'alert_has_been' => 'Cảnh báo đã được', + 'alerts_mobile_phone' => 'Số di động:', + 'alerts_place_spot' => 'Hoặc click vào một điểm nào đó ở bản đồ bên dưới, và chúng tối sẽ thông báo cho bạn khi báo cáo đã được hoàn tất trong vòng chu vi 20 ki lô mét.', + 'alerts_place_spot2' => 'Nếu bạn không thể tìm thấy vị trí của bạn, bạn có thể click vào bản đồ để chỉ ra vị trí hiện tại của bạn.', + 'alerts_rss' => 'Tin RSS (sao chép đường dẫn bên dưới)', + 'alerts_select_city' => 'Chọn một thành phố', + 'alerts_step1_select_city' => 'Bước 1:Chọn thành phố hoặc địa điểm của bạn:', + 'alerts_step2_send_alerts' => 'Bước 2: Gửi thông báo tới:', + 'alerts_step3_select_catgories' => 'Bước 3 (không có cũng được): Chọn Phân Loại', + 'alert_confirm_previous' => 'Xác nhận Yêu Cầu Thông Báo Trước Đó', + 'alert_saved' => 'Phần thông báo của bạn đã được lưu!', + 'all' => 'Tất cả', + 'allowed' => 'Cho phép', + 'allowed_tags' => 'Cho phép các thẻ đánh dấu HTLM: "%s".', + 'allowed_iframes' => 'Iframes chỉ được cho phép từ: %s.', + 'all_categories' => 'Tất cả Phân Loại', + 'all_time' => 'Tất cả thời gian', + 'and' => 'và', + 'api' => 'API', + 'approve' => 'Chấp thuận', + 'approved' => 'Đã chấp thuận', + 'approved_reports' => 'Báo cáo đã chấp thuận', + 'approve_this_report' => 'Chấp thuận báo cáo này', + 'approximate' => 'Xấp xỉ', + 'archive' => 'Sao lưu', + 'archived' => 'Đã sao lưu', + 'ascending' => 'Tăng dần', + 'at' => 'tại', + 'author' => 'Tác giả', + 'auto_checkin' => 'Tự động đăng nhập', + 'avg_reports_per_day' => 'Trung bình báo cáo mỗi ngày', + 'awaiting_approval' => 'Đang đợi việc chấp thuận', + 'awaiting_verification' => 'Đang đợi việc xác nhận', + 'badge' => 'Huy hiệu', + 'badges' => 'Huy hiệu', + 'badge_image' => 'Hình ảnh huy hiệu', + 'badge_image_upload_your_own' => 'Hoặc bạn có thể tự tải hình ảnh về huy hiệu của chính bạn.', + 'badge_pack' => 'Gói huy hiệu', + 'badge_select' => 'Chọn một huy hiệu', + 'blog' => 'Blog', + 'browse_profiles' => 'Duyệt tìm Hồ Sơ', + 'cancel' => 'Hủy bỏ', + 'categories' => 'Phân Loại', + 'category' => 'Phân Loại', + 'category_filter' => 'Bộ lọc phân loại', + 'category_has_been' => 'Phân loại đã được', + 'category_name' => 'Tên phân loại', + 'change_date_range' => 'Thay đổi khoảng thời gian', + 'change_password' => 'Thay đổi mật khẩu', + 'change_picture' => 'Thay đổi hình ảnh của bạn', + 'choose' => 'Chọn một', + 'choose_data_points' => 'Chọn điểm dữ liệu để tải xuống', + 'choose_date_range' => 'Hoặc chọn khoảng thời gian của riêng bạn', + 'choose_field_type' => 'Chọn loại trường', + 'cleanurl' => 'Làm rỗng URL', + 'clear' => 'Làm rỗng', + 'clear_map' => 'Làm rỗng bản đồ', + 'close' => 'Đóng lại', + 'clusters' => 'bó', + 'color' => 'Màu sắc', + 'comment' => 'Bình luận', + 'comments' => 'Bình luận', + 'comment_details' => 'Chi tiết Bình luận', + 'configuration_saved' => 'Thiết lập của bạn đã được lưu!', + 'configure' => 'Chỉnh sửa', + 'confirm_email_successful' => 'Bạn đã xác nhận thành công địa chỉ email của bạn! Hãy đăng nhập bên dưới, biên dịch bởi Phan Anh.', + 'confirm_email_successful_and_approval' => 'Bạn đã xác nhận thành công địa chỉ email của bạn! Quản trị viên phải chấp thuận tài khoản của bạn trước khi đăng nhập vào', + 'confirm_email_failed' => 'Việc xác nhận email không thành công! Bạn có thể được quyền yêu cầu thêm một email xác nhận nữa bên dưới.', + 'contact' => 'Liên hệ chúng tôi', + 'contact_code' => 'Mã an ninh', + 'contact_email' => 'Thay đổi địa chỉ email của bạn', + 'contact_message' => 'Tin nhắn', + 'contact_message_has_send' => 'Tin nhắn của bạn đã được gửi!', + 'contact_name' => 'Tên của bạn', + 'contact_phone' => 'Số điện thoại của bạn', + 'contact_send' => 'Gửi tin nhắn', + 'contact_subject' => 'Tựa đề tin nhắn', + 'copyright' => 'Biên dịch bởi phan Anh ©', + 'create' => 'Tạo', + 'create_edit' => 'Tạo/sửa', + 'create_new' => 'Tạo mới', + 'create_new_password' => 'Tạo mật khẩu mới', + 'create_report' => 'Tạo báo cáo', + 'credibility' => 'Độ tin cậy', + 'current_password' => 'Mật khẩu hiện tại', + 'custom_fields' => 'Trường tự chọn', + 'data' => 'Thông tin', + 'date' => 'Ngày tháng', + 'date_format' => '(tt/nn/nnnn)', + 'date_time' => 'Thời gian & Ngày tháng', + 'day' => 'ngày', + 'deactivate' => 'Tắt kích hoạt', + 'default_location_name' => 'Nairobi, Kenya', + 'delete' => 'Xóa', + 'deleted' => 'Đã xóa', + 'deletes' => 'Xóa', + 'delete_disabled' => 'Tắt tính năng xóa', + 'delete_last' => 'Xóa tận cùng', + 'delete_report' => 'Xóa báo cáo này', + 'delete_selected' => 'Xóa những vùng được chọn', + 'delete_spam' => 'Xóa Spam', + 'demo' => 'Thử nghiệm', + 'description' => 'Mô tả', + 'descending' => 'Giảm dần', + 'detailed_location_example' => 'Thí dụ: Góc phố Thần Kinh, số 5 đường Tưng Tửng & số 4 bệnh viện Nhiệt Đới, thành phố Phồng Tôm', + 'details' => 'Chi tiết', + 'direct_report' => 'Báo cáo trực tiếp', + 'disabled' => 'Vô hiệu hóa', + 'disapprove' => 'Không chấp thuận', + 'download_reports' => 'Tải về báo cáo', + 'download' => 'Tải xuống', + 'edit' => 'Sửa', + 'edit_form_fields' => 'Sửa các trường trong mẫu đơn', + 'edit_report' => 'Sửa báo cáo', + 'email' => 'Email', + 'email_address' => 'Địa chỉ email', + 'email_configuration' => 'Thiết lập server mail', + 'email_server_host' => 'Server Host Mail', + 'email_server_password' => 'Mật khẩu Mail Server', + 'email_server_port' => 'Cổng kết nối Mail Server', + 'email_server_ssl_support' => 'Hỗ trợ kết nối SSL Mail Server', + 'email_server_type' => 'Loại Mail Server', + 'email_server_username' => 'Tên người dùng Mail Server', + 'email_settings_comment_0' => 'nên các thiết lập cần được gắn với địa chỉ email này', + 'email_settings_comment_00' => 'Để có thể nhận báo cáo bằng email, hãy điền vào địa chỉ tài khoản email của bạn trong phần thiết lập bên dưới. Chú ý rằng email sẽ nhận được tại email của bạn', + 'email_settings_comment_1' => 'Một vài server yêu cầu việc hoàn tất địa chỉ email', + 'email_settings_comment_2' => 'Mật khẩu tài khoản email', + 'email_settings_comment_3' => 'Cổng kết nối thường gặp: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => 'Thí dụ: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => 'Thí du: pop3, imap', + 'email_settings_comment_6' => 'Bật hoặc tắt kết nối dạng SSL', + 'empty' => '---RỖNG---', + 'end_point' => 'đến', + 'error' => 'Lỗi!', + 'example' => 'Thí dụ', + 'example_country' => 'Kenya', + 'external_apps' => 'Ứng dụng bổ sung', + 'external_video_link' => 'Liên kết video bổ sung', + 'facebook' => 'Facebook', + 'feed' => 'Feed', + 'feedback' => 'Cung cấp phản hồi', + 'feeds' => 'Feeds', + 'feed_has_been' => 'Feed đã được', + 'feed_items' => 'Đối tượng feed', + 'feed_name' => 'Tên feed', + 'feed_url' => 'URL của Feed', + 'field_unused' => 'Các trường không sử dụng', + 'file' => 'Tập ti', + 'file_over_max_allowed' => 'Tập tin của bạn có kích thước quá giới hạn cho phép.', + 'filters' => 'Bộ lọc', + 'filter_reports' => 'Lọc báo cáo', + 'filter_reports_by' => 'Lọc báo cáo bởi', + 'filter_reports_contain' => 'Lọc các báo cáo chứa', + 'find' => 'Tìm kiếm', + 'find_location' => 'Địa điểm tìm kiếm', + 'first_name' => 'Tên', + 'force_run_scheduler' => 'Thời gian bắt buộc chạy', + 'forgot_password' => 'Quên mật khẩu ư?', + 'form' => 'Mẫu đơn', + 'forms' => 'Mẫu đơn', + 'form_description' => 'Miêu tả mẫu đơn', + 'form_edit' => 'Sửa mẫu đơn này', + 'form_has_been' => 'Mẫu đơn đã được', + 'form_title' => 'Tiêu đề mẫu đơn', + 'from' => 'Từ', + 'full_name' => 'Họ tên đầy đủ', + 'geolocation_available' => 'Địa chỉ địa lý hiện có', + 'geometry_color' => 'Màu sắc', + 'geometry_comments' => 'Bình luận', + 'geometry_label' => 'Nhãn', + 'geometry_strokewidth' => 'Độ rộng nét', + 'go' => 'Đi đến', + 'hashtag' => 'Hashtag', + 'has_been' => 'đã được', + 'help' => 'Giúp đỡ bằng cách nào', + 'hidden' => 'Bị ẩn', + 'hide' => 'Ẩn', + 'hide_this_message' => 'ẩn tin nhắn này', + 'home' => 'Trang chủ', + 'how_to_report' => 'Làm cách nào để báo cáo', + 'https' => 'HTTPS', + 'id' => 'Chỉ số', + 'identify_you' => 'Sử dụng để nhận dạng bạn trên các trang với những người sử dụng khác.', + 'image' => 'Hình ảnh', + 'images' => 'Hình ảnh', + 'image_icon' => 'Hình ảnh/Biểu tượng', + 'inactive' => 'Tắt kích hoạt', + 'inbox' => 'Hộp thư', + 'incident' => 'Ngẫu nhiên', + 'incidents_nearby' => 'Ngẫu nhiên gần đây', + 'incident_location' => 'Địa điểm ngẫu nhiên', + 'include' => 'Bao gồm', + 'include_categories' => 'Bao gồm phân loại', + 'include_custom_fields' => 'Bao gồm trường tự chọn', + 'include_description' => 'Bao gồm mô tả', + 'include_detail' => 'Bao gồm càng nhiều thông tin càng tốt', + 'include_latitude' => 'Bao gồm vĩ độ', + 'include_location_information' => 'Bao gồm thông tin địa điểm', + 'include_longitude' => 'Bao gồm kinh độ', + 'include_personal_info' => 'Bao gồm thông tin cá nhân', + 'incoming_media' => 'Media được gửi tới', + 'information_evaluation' => 'Thử nghiệm thông tin', + 'input_location' => 'Điền vào vị trí chính xác của bạn', + 'insufficient_role' => 'Tài khoản của bạn không có quyền truy cập cao hơn để có thể ghi nhận mọi tác động. Hãy liên hệ người quản trị.', + 'in_response_to' => 'Để trả lời về', + 'ip_address' => 'Địa chỉ IP', + 'is_this_your_profile' => 'Đây là hồ sơ của bạn?', + 'item' => 'đối tượng', + 'items' => 'đối tượng', + 'item_details' => 'item_details', + 'item_title' => 'Tiêu đề đối tượng', + 'key' => 'Khóa', + 'keywords' => 'Từ khóa', + 'kml_kmz_file' => 'Tập tin KMZ/KML', + 'kml_kmz_upload' => 'Tải lên tập tin KMZ/KML', + 'kml_url' => 'KML URL', + 'laconica' => 'Laconica', + 'language' => 'Ngôn ngữ', + 'last' => 'Trước đó', + 'last_month' => 'Tháng trước', + 'last_name' => 'Họ', + 'last_year' => 'Năm trước', + 'latitude' => 'Vĩ độ', + 'layers' => 'Lớp', + 'layers_filter' => 'Lớp khác', + 'layer_has_been' => 'Lớp đã bị', + 'layer_name' => 'Tên lớp', + 'layer_url' => 'Đường dẫn đến lớp', + 'leave_a_comment' => 'Để lại bình luận', + 'less_information' => 'Ít thông ti', + 'level' => 'Cấp độ', + 'level_has_been' => 'Cấp độ này được', + 'level_name' => 'Tên cấp độ', + 'limited' => 'Hạn chế', + 'link' => 'Đường liên kết', + 'list' => 'Danh sách', + 'loading_reports' => 'Đang tải báo cáo', + 'location' => 'Địa điểm', + 'locations' => 'Địa điểm', + 'location_example' => 'Thành phố, Bang và/hoặc quốc gia', + 'login' => 'Đăng nhập', + 'login_account_creation_successful' => 'Tài khoản đã được tạo thành công. Bạn có thể đăng nhập ngay bây giờ.', + 'login_confirmation_sent' => 'Xác nhận đã được gửi đến địa chỉ email của bạn.', + 'login_approval_required' => 'Đã tạo xong tài khoản. Tài khoản của bạn phải được chấp thuận bởi quản trị viên trước khi bạn có thể đăng nhập vào.', + 'login_email_doesnt_exist' => 'Địa chỉ email không tồn tại. Xin vui lòng thử một địa chỉ khác hoặc tạo một tài khoản.', + 'login_select_openid' => 'Xin vui lòng click vào nhà cung cấp tài khoản của bạn', + 'login_with' => 'Đăng nhập với', + 'login_userpass' => 'Email và mật khẩu', + 'login_openid' => 'OpenID', + 'login_signup' => 'Đăng ký', + 'login_signup_click' => 'Tạo một tài khoản', + 'login_signup_confirmation_message' => 'Cảm ơn bạn đã đăng ký tại %1$s. Để có thể xác nhận email của mình, vui lòng truy cập đường dẫn sau: %2$s', + 'login_signup_confirmation_subject' => 'Xác nhận đăng ký', + 'login_signup_admin_approval_message' => 'Một người dùng mới đã đăng ký tại %1$s. Để chấp thuận việc đăng ký này vui lòng truy cập vào đường dẫn sau: %2$s', + 'login_signup_admin_approval_subject' => 'Chấp thuận yêu cầu đăng ký', + 'login_signup_approval_message' => 'Tài khoản của bạn đã được chấp thuận về %1$s. Để có thể đăng nhập hãy truy cập vào đường dẫn sau: %2$s', + 'login_signup_approval_subject' => 'Đã chấp thuận tài khoản mới', + 'login_signup_text' => 'Tạo một tài khoản mới sẽ tận dụng được nhiều tính năng trên trang này', + 'longitude' => 'Kinh độ', + 'map' => 'Bản đồ', + 'mark_read' => 'Đánh dấu đã đọc', + 'mark_unread' => 'Đánh dấu chưa đọc', + 'maximum_filesize' => 'Kích thước tối đa của tập tin', + 'media' => 'Media', + 'media_filter' => 'Bộ lọc media', + 'members' => 'Thành viên', + 'manage_your_account' => 'Quản lý tài khoản', + 'message' => 'Tin nhắn', + 'messages' => 'Tin nhắn', + 'message_details' => 'Chi tiết tin nhắn', + 'message_non_numeric_source' => 'Tin nhắn được gửi từ một nguồn không rõ số liệu:', + 'mobile' => 'Di động', + 'modify' => 'Chỉnh sửa', + 'modify_date' => 'Chỉnh sửa ngày tháng', + 'month' => 'tháng', + 'more' => 'Các phần khác', + 'more_information' => 'Thông tin bổ sung', + 'multi_country_instance' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'must_confirm_email_address' => 'Bạn phải xác nhận email để có thể truy cập đến phần này. Nếu bạn mất thư xác nhận, bạn có thể yêu cầu gửi lại mã xác nhận một lần nữa bên dưới.', + 'name' => 'Tên', + 'nearby_report' => 'Báo cáo gần đây', + 'new' => 'Mới', + 'news' => 'Tin tức', + 'news_feeds' => 'Tin tức feed', + 'news_source' => 'Nguồn tin tức', + 'new_category' => 'Tạo phân loại mới', + 'new_password' => 'Mật khẩu mới', + 'new_report' => 'Báo cáo mới', + 'next' => 'Tiếp theo', + 'no' => 'Không đồng ý', + 'no_checkins' => 'Không có thông tin về đăng nhập để hiển thị.', + 'no_data' => 'Không có dữ liệu', + 'none' => 'Không', + 'notices' => 'Chú ý', + 'not_approved' => 'Chưa được cho phép', + 'not_approved_singular' => 'Chưa được cho phép', + 'not_selected' => '---Chưa được chọn---', + 'not_spam' => 'không phải spam', + 'not_specified' => 'Chưa được xác định', + 'no_reports' => 'Không có báo cáo nào', + 'no_results' => 'Không có kết quả nào', + 'off' => 'Tắt', + 'official_news' => 'Dòng & tin tức chính thức', + 'on' => 'Mở', + 'option' => 'Tùy chọn', + 'optional' => 'Tùy chọn', + 'options' => 'Tùy chọn', + 'organization' => 'Tổ chức', + 'organizations' => 'Tổ chức', + 'organization_description' => 'Mô tả về tổ chức', + 'organization_email' => 'Email tổ chức', + 'organization_has_been' => 'Tổ chức đã được', + 'organization_name' => 'Tên tổ chức', + 'organization_phone_1' => 'Điện thoại tổ chức 1', + 'organization_phone_2' => 'Điện thoại tổ chức 2', + 'organization_website' => 'Website của tổ chức', + 'original' => 'Nguyên bản', + 'original_description' => 'Mô tả nguyên bản', + 'original_title' => 'Tiêu đề gốc', + 'other_ushahidi_instances' => 'Các tiến trình khác', + 'outbox' => 'Hộp thư gửi đi', + 'outgoing' => 'Đang gửi đi', + 'page' => 'Trang', + 'pages' => 'TRang', + 'page_description' => 'Mô tả về trang', + 'page_has_been' => 'Trang đã bị', + 'page_tab_name' => 'Tên tab của trang', + 'page_title' => 'Tiêu đề trang', + 'parent_category' => 'Phân loại gốc', + 'password' => 'Mật khẩu', + 'password_again' => 'Xác nhận mật khẩu', + 'password_changed_successfully' => 'Mật khẩu đã được thay đổi thành công! Vui lòng đăng nhập trở lại bên dứoi', + 'password_forgot' => 'Quên mật khẩu?', + 'password_reset_confirm' => 'Kiểm tra email của bạn về mật khẩu mới.', + 'password_save' => 'Giữ trạng thái đăng nhập trên máy tính này?', + 'past_month' => 'Tháng trước đó', + 'past_year' => 'Năm trước đó', + 'pending' => 'Đang đợi', + 'per' => 'mỗi', + 'personal_information' => 'Tùy chọnthông tin cá nhân.', + 'phone' => 'Điện thoại', + 'photos' => 'Hình chụp', + 'pictures' => 'Hình ảnh', + 'pictures_and_videos' => 'Hình ảnh và video', + 'pinpoint_location' => '* Tìm kiếm địa chỉ của bạn dựa vào tên địa điểm hoặc vị trí vĩ độ, kinh độ (theo định dạng: 38.19, 85.61), HOẶC click vào bản đồ và chọn phần địa điểm chính xác hiện tại của bạn.', + 'play' => 'Phát', + 'please_note' => 'Để lại ghi chú', + 'plugins' => 'Tiện ích', + 'plugin_url' => 'Tiện ích Website', + 'public_profile' => 'Hồ sơ công cộng', + 'public_profile_url' => 'Đường dẫn đến hồ sơ công cộng', + 'preview' => 'Xem thử', + 'preview_item' => 'Xem thử đối tượng', + 'preview_message' => 'Xem thử tin nhắn', + 'previous' => 'Trước đó', + 'private' => 'Riêng tư', + 'profile_color' => 'Màu sắc hồ sơ', + 'profile_saved' => 'Hồ sơ của bạn đã được lưu', + 'quick_stats' => 'Trạng thái nhanh', + 'rating' => 'Xếp hạng', + 'read' => 'Đọc', + 'receive' => 'Nhận', + 'receive_from' => 'Nhận từ', + 'receive_notifications' => 'Thông báo nhận được', + 'recent_reports' => 'Báo cáo gần đây', + 'refresh_news_feeds' => 'Cập nhật lại tin tức feed', + 'registered_email' => 'Email đã đăng ký', + 'remove' => 'Loại bỏ', + 'reply' => 'Trả lời', + 'report' => 'Báo cáo', + 'reports_listed' => 'Báo cáo (từ bản đồ, được liệt kê theo thứ tự niên đại)', + 'reporter' => 'Người báo cáo', + 'reporters' => 'Người báo cáo', + 'reporter_date' => 'Ngày người gửi báo cáo', + 'reporter_email' => 'Email của người gửi báo cáo', + 'reporter_first_name' => 'Tên của người gửi báo cáo', + 'reporter_has_been' => 'Người báo cáo đã được', + 'reporter_ip' => 'Địa chỉ IP của người báo cáo', + 'reporter_last_name' => 'Họ của người báo cáo', + 'reporter_level' => 'Cấp độ người báo cáo', + 'reporter_levels' => 'Cấp độ người báo cáo', + 'reporter_phone' => 'Điện thoại người báo cáo', + 'reports' => 'Báo cáo', + 'reports_btn_browse' => 'Duyệt tìm', + 'reports_btn_submit' => 'Đệ trình', + 'reports_by_this_user' => 'Báo cáo thực hiện bởi người dùng này', + 'reports_categories' => 'Phân loại', + 'reports_count' => '%d Báo cáo', + 'reports_date' => 'Ngày tháng', + 'reports_description' => 'Mô tả', + 'reports_download_csv' => 'Báo cáo sẽ được tải về dưới định dạng CSV', + 'reports_email' => 'Email', + 'reports_features' => 'Tính năng', + 'reports_find_location' => 'Tìm một địa điểm gần bạn', + 'reports_first' => 'Tên', + 'reports_last' => 'Họ', + 'reports_location_name' => 'Tên địa điểm', + 'reports_news' => 'Đường dẫn đến nguồn tin', + 'reports_optional' => 'Thông tin tùy chọn', + 'reports_photos' => 'Tải lên hình chụp', + 'reports_return' => 'Quay trở lại trang báo cáo', + 'reports_select_city' => 'Chọn một thành phố', + 'reports_submitted' => 'Báo cáo của bạn đã được đệ trình đến đội ngũ để xem xét. Chúng tôi sẽ trả lời bạn trong thời gian ngắn nhất có thể.', + 'reports_submit_new' => 'Đệ trình một báo cáo mới', + 'reports_time' => 'Thời gian', + 'reports_timeline' => 'Thời gian báo cáo', + 'reports_title' => 'Tiêu đề báo cáo', + 'reports_video' => 'Đường liên kết video', + 'report_an_incident' => 'Báo cáo sự việc nào đó', + 'report_details' => 'Chi tiết báo cáo', + 'report_option_1' => 'Bằng cách gửi tin nhắn tới', + 'report_option_2' => 'Bằng cách gửi email', + 'report_option_3' => 'Bằng cách gửi tweet với mã hashtag/s', + 'report_option_4' => 'Bằng việc điền vào lá đơn này trên website của chúng tôi.', + 'report_option_external_apps' => 'Bằng việc sử dụng ứng dụng này', + 'report_saved' => 'Báo cáo của bạn đã được lưu', + 'report_title' => 'Tiêu đề báo cáo', + 'request_information' => 'Yêu cầu gửi thêm thông tin', + 'request_location' => 'Yêu cầu về địa điểm', + 'required' => 'Đã yêu cầu', + 'requirements' => 'Các yêu cầu cần có', + 'resend_confirm_email' => 'Gửi lại email xác nhận', + 'reset' => 'Thiết đặt lại', + 'reset_all_filters' => 'Thiết đặt lại tất cả bộ lọc', + 'reset_password' => 'Thiết đặt lại mật khẩu', + 'retrieve_city_names' => 'Nhận thông tin về tên thành phố của quốc gia được chọn', + 'riverid_information' => 'Tài khoản được quản lý bởi %s dịch vụ.', + 'riverid_exists_login' => 'Bạn đã có tài khoản được quản lý bởi CrowdmapID! Hãy thử sử dụng email của CrowdmapID mà bạn có cùng mật khẩu để đăng nhập.', + 'role' => 'Vai trò', + 'rss' => 'RSS', + 'save' => 'Lưu', + 'saved' => 'Đã lưu', + 'save_add_new' => 'Lưu &Thêm mới', + 'save_close' => 'Lưu & Đóng lại', + 'save_report' => 'Lưu lại báo cáo', + 'schedule' => 'Thời khóa biểu', + 'scheduler' => 'Người lập thời khóa biểu', + 'scheduler_day' => 'Ngày', + 'scheduler_hour' => 'Giờ', + 'scheduler_log' => 'Nhật trình người lập thời khóa biểu', + 'scheduler_minute' => 'Phút', + 'scheduler_weekday' => 'Ngày trong tuần', + 'search' => 'Tìm kiếm', + 'search_results' => 'Tìm kết quả', + 'security_code' => 'Mã an ninh', + 'select_all' => 'Chọn tất cả', + 'select_field_type' => 'Chọn một loại khung thông tin', + 'select_form_type' => 'Chọn một loại đơn', + 'select_in_map' => 'Chọn trong bản đồ', + 'select_multiple' => 'Chọn theo nhu cầu', + 'select_one' => 'Xin xác nhận bạn đã chọn đối tượng', + 'select_theme' => 'Chọn giao diện', + 'send' => 'Gửi', + 'send_confirmation' => 'Xác nhận gửi', + 'sending_to' => 'Đang gửi đến', + 'sent' => 'Đã gửi', + 'sent_by' => 'Được gửi bởi', + 'server_address' => 'Địa chỉ server', + 'server_type' => 'Loại server', + 'service' => 'Dịch vụ', + 'service_username' => 'Dịch vụ tên người dùng', + 'service_user_id' => 'Chỉ số dịch vụ người dùng', + 'share' => 'Chia sẻ', + 'shared_data' => 'Dữ liệu được chia sẻ', + 'share_has_been' => 'Việc chia sẻ đã được', + 'sharing' => 'Đang chia sẻ', + 'shorter_map' => 'Bản đồ ngắn hơn', + 'show' => 'Hiển thị', + 'show_all' => 'Hiển thị tất cả', + 'show_messages' => 'Hiển thị tin nhắn', + 'showing_reports_from' => 'Đang hiển thị báo cáo từ %1$s đến %2$s', + 'site' => 'Website', + 'site_email_address' => 'địa chỉ email của trang', + 'site_url' => 'Đường dẫn', + 'smaller_map' => 'Bản đồ nhỏ hơn', + 'sms' => 'SMS', + 'sorry_no_badges' => 'Rất tiếc, bạn chưa có huy hiệu nào.', + 'source' => 'Nguồn', + 'source_name' => 'Tên nguồn', + 'sort' => 'Sắp xếp', + 'sort_by' => 'Sắp xếp theo', + 'source_url' => 'Đường dẫn đến nguồn', + 'spam' => 'Spam', + 'ssl_support' => 'Hỗ trợ SSL?', + 'start_point' => 'Từ', + 'step' => 'Bước', + 'submit' => 'Đệ trình một báo cáo', + 'submitted_by' => 'Được đệ trình bởi %1$s thông qua %2$s', + 'submit_sms' => 'Đệ trình thông qua SMS', + 'submit_sms1' => 'Gửi SMS của bạn đến', + 'submit_sms2' => 'trên điện thoại', + 'success' => 'Thành công!', + 'successfuly_imported' => 'Đã nhập dữ liệu thành công', + 'surname' => 'Tên', + 'survey' => 'Khảo sát', + 'system' => 'Hệ thống', + 'taller_map' => 'Bản đồ cao hơn', + 'tcp_port' => 'Cổng kết nối TCP', + 'themes' => 'Giao diện', + 'theme_default' => 'Sử dụng giao diện mặc định', + 'theme_settings' => 'Thiết lập giao diện', + 'this' => 'Đây', + 'this_day' => 'Hôm nay', + 'this_month' => 'Tháng này', + 'this_week' => 'Tuần này', + 'this_year' => 'Năm này', + 'this_is_your_profile' => 'Đây là hồ sơ của bạn.', + 'time' => 'Thời gian', + 'title' => 'Tiêu đề', + 'to' => 'đến', + 'today' => 'Hôm nay', + 'today_at' => 'Hôm nay tại', + 'token' => 'Token', + 'total_reports' => 'Tổng số báo cáo', + 'translated' => 'Đã được dịch', + 'translated_description' => 'Mô tả đã được dịch', + 'translated_title' => 'Tiêu đề đã được dịch', + 'translate_to' => 'Dịch sang', + 'translation' => 'Dịch thuật', + 'translation_saved' => 'Dịch thuật đã được lưu', + 'trusted' => 'Được tin tưởng', + 'type' => 'Loại', + 'twitter' => 'Twitter', + 'unable_send_email' => 'Không thể gửi email.', + 'uncategorized_reports' => 'Báo cáo chưa được phân loại', + 'unread' => 'chưa đọc', + 'unverified' => 'Chưa xác nhận', + 'update_feeds' => 'Cập nhật feed', + 'upload' => 'Tải lên', + 'upload_guide' => 'Xem hướng dẫn tải lên báo cáo của chúng tôi:-', + 'upload_docs_1' => 'Hướng dẫn tải lên XML', + 'upload_docs_2' => 'Hướng dẫn tải lên CSV', + 'upload_file' => 'Tải lên tập tin', + 'upload_reports' => 'Tải lên báo cáo', + 'upload_reports_custom_forms' => 'Custom field columns must have their form_id appended to them e.g custom field Test, on the default form, whose id is 1, will be Test-1. During custom form field import, ensure that', + 'upload_reports_detail_1' => 'Với đơn bên dưới, bạn có thể nhập vào các dữ kiện của mình đến trung tâm xử lý của Ushahidi.', + 'upload_reports_detail_2' => 'Báo cáo phải được tải lên ở định dạng CSV hoặc XML.', + 'upload_reports_detail_3' => 'Khi có một ID nào đó đã tồn tại trước đó trong cơ sở dữ liệu, phần khung thông tin trong tập tin CSV/XML sẽ được bỏ qua.', + 'upload_reports_detail_4' => 'Phải chứa tiêu đề và ngày tháng xảy ra sự kiện.', + 'upload_reports_detail_4b' => 'Nếu không có vĩ độ và kinh độ cho cột số liệu, phần địa điểm sẽ được thiết lập bởi Google Geocoder.', + 'upload_reports_detail_4c' => 'Nếu nhập các dữ liệu bổ sung ví dụ như thông tin cá nhân và/hoặc khung thông tin mẫu đơn', + 'upload_reports_detail_4d' => 'Có ít nhất một khung thông tin cá nhân (tên, họ, email) PHẢI được liệt kê. Các khung thông tin rỗng sẽ không được nhập dữ liệu vào', + 'upload_reports_detail_4e' => 'Các khung thông tin của bạn cho menu xổ xuống, lựa chọn khoanh tròn và đánh dấu chọn vào các tùy chọn được cung cấp tùy theo trường hợp của bạn', + 'upload_reports_detail_4f' => 'Đánh dấu tùy chọn được ngăn cách nhau bởi dấu phẩy, thí dụ nếu lựa chọn của bạn là trái cây và liên quan đến táo, xoài và nho, thì dòng thông tin bạn nên điền vào là "táo,xoài,nho"', + 'upload_reports_detail_4g' => 'Khung giá trị ngày tháng nên ở định dạng: tt/nn/nnnn ví dụ ngày 3 tháng mười năm 2012 = 10/03/2012', + 'upload_reports_detail_5' => 'Mẫu báo cáo CSV', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED,LATITUDE,LONGITUDE
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES,"-1.287","36.821"', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO,"5.55","-0.2166667"', + 'upload_successful' => 'Tải lên thành công', + 'upload_video' => 'Tải lên video', + 'url' => 'Đường dẫn', + 'user' => 'Người dùng', + 'username' => 'Tên người dùng', + 'ushahidi_admin' => 'Quản trị viên', + 'verification' => 'Xác nhận', + 'verified' => 'Đã xác nhận', + 'verified_reports' => 'Báo cáo đã được xác nhận', + 'verify' => 'Xác nhận', + 'verify_this_report' => 'Xác nhận báo cáo này', + 'version' => 'Phiên bản', + 'via' => 'thông qua', + 'video' => 'Video', + 'view' => 'Xem', + 'views' => 'Xem', + 'view_all' => 'Xem tất cả', + 'view_all_feeds' => 'Xem tất cả feed', + 'view_all_reports' => 'Xem tất cả báo cáo', + 'view_items' => 'Xem các đối tượng', + 'view_more' => 'Xem thêm nữa', + 'view_public_profile' => 'Xem Hồ Sơ Công Cộng', + 'view_report' => 'Xem báo cáo', + 'view_reports' => 'Xem báo cáo', + 'view_video' => 'Xem video', + 'visible' => 'Cho phép hiển thị', + 'waiting_approval' => 'Đang đợi chấp thuận', + 'waiting_verification' => 'Đang đợi xác nhận', + 'wider_map' => 'Bản đồ rộng hơn', + 'web_form' => 'Mẫu đơn web', + 'web' => 'Web', + 'weight' => 'Cân nặng', + 'yes' => 'Đồng ý', + 'yesterday' => 'Ngày hôm qua', + 'your_dashboard' => 'Bảng điều khiển của bạn', + 'your_file' => 'Tập tin của bạn', + 'zoom_in' => 'Phóng to', + 'zoom_out' => 'Thu nhỏ', +); diff --git a/application/i18n/vi_VN/upgrade.php b/application/i18n/vi_VN/upgrade.php new file mode 100644 index 0000000000..cf39b5a637 --- /dev/null +++ b/application/i18n/vi_VN/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => 'Dữ liệu nhập vào không hợp lệ. Phần này chỉ được có giá trị 0 nếu không đồng ý và 1 nếu đồng ý.', + ) , + 'upgrade_automatic' => 'Tự động nâng cấp', + 'upgrade_available' => 'Các nâng cấp hiện có', + 'upgrade_continue_btn_text' => 'Tiếp tục', + 'upgrade_db_btn_text' => 'Nâng cấp', + 'upgrade_db_text_1' => 'vì vậy, tôi sẽ nâng cấp hệ thống cơ sở dữ liệu của bạn từ phiên bản', + 'upgrade_db_text_2' => 'đến phiên bản cơ sở dữ liệu mới nhất', + 'upgrade_db_text_3' => 'Click vào nút "Nâng Cấp" và đợi trong giây lát.', + 'upgrade_db_text_4' => 'Và nếu bạn muốn hệ thống sao lưu cơ sở dữ liệu của bạn, chỉ cần đánh dấu chọn vào nút bên dưới, hệ thống sẽ tự động thực hiện việc sao lưu.', + 'upgrade_db_text_5' => 'Sao lưu cơ sở dữ liệu trước khi nâng cấp? (Khuyến nghị nên chọn)', + 'upgrade_db_title' => 'nâng cấp cơ sở dữ liệu Ushahidi', + 'upgrade_db_info' => 'Ushahidi đã được cập nhật! Trước khi tiếp tục, bạn cần cập nhật phiên bản mới nhất (%s) của cơ sở dữ liệu bạn hiện có.', + 'upgrade_db_up_to_date' => 'Phiên bản cơ sở dữ liệu của bạn là phiên bản mới nhất.', + 'upgrade_failed' => 'Việc nâng cấp gặp phải lỗi', + 'upgrade_manual' => 'Tự người dùng nâng cấp', + 'upgrade_status' => 'Trạng thái cập nhật của Ushahidi', + 'upgrade_text_1' => 'Các hướng dẫn bên dưới sẽ hướng dẫn chi tiết người dùng về việc nâng cấp các tiến trình của Ushahidi', + 'upgrade_text_2' => '
Tải về
', + 'upgrade_text_3' => '
- Tải về các phiên bản gần đây nhất từ Ushahidi', + 'upgrade_text_4' => '
Sao lưu
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- Để đề phòng trục trặc có thể xảy ra, chúng tôi khuyên bạn nên chọn việc sao lưu toàn bộ dự án của mình.
Sao chép các tập tin
- Giải nén các tập tin dạng zip
- Tùy thuộc vào hệ điều hành đang chạy trên nền web server nào, thì hãy sử dụng công cụ/chế độ tương thích kèm theo (ví dụ: Telnet, FTP, SSH) để đăng nhập vào webserver và thay đổi nội dung của tất cả các thư mục với phần nội dung mới nhất vừa tạo.
Nâng cấp cơ sở dữ liệu
- Trước tiên hãy xác định phiên bản cơ sở dữ liệu dựa vào giá trị db_version trong phần bảng thiết lập hoặc dựa vào thông tin cập nhật từ Ushahidi hiển thị ở phía trên cùng của trang này.
- Nếu phiên bản của bạn hiện ở mốc 25, bạn cần nâng cấp theo hướng 25-26, 26-27, 27-28 và cứ tiếp tục như thế đối với các tập tin SQL mới nhất /sql trong thư mục.
- Với phần cơ sở dữ liệu phía client, nâng cấp cơ sở dữ liệu bởi việc thi hành lệnh trên tập tin thích hợp upgradex-x.sql.
', + 'upgrade_tables' => 'Bước 3: Quan sát phía bên trong sql thư mục. Thiết lập lệnh nâng cấp-.sql file bắt đầu từ cơ sở dữ liệu hiện tại của phần mà bạn cài đặt cho đến tập tin nâng cấp sql cuối cùng.', + 'upgrade_text_5' => 'Bước 4: Click vào phần "Tiếp tục"để nâng cấp các bảng dữ liệu cần thiết.', + 'upgrade_text_6' => 'Để thực hiện chế độ nâng cấp tự động, click vào nút bên dưới.', + 'upgrade_title_text' => 'Bạn hiện đang sử dụng phiên bản Ushahidi v%1$s kèm theo cơ sở dữ liệu có phiên bản %2$d được chạy trên nền %3$s', + 'upgrading' => 'Đang nâng cấp', + 'upgrade_ftp_text' => 'Để tiếp tục phần nâng cấp theo hướng dễ dàng, các thông tin này cần có máy chủ dạng FTP và website mà bạn đặt trên host đó.', + 'upgrade_ftp_hostname' => 'FTP Hostname: Ví dụ: "localhost"', + 'upgrade_ftp_password' => 'Mật khẩu FTP:', + 'upgrade_ftp_username' => 'Tên người dùng FTP:', + 'upgrade_status_info' => 'Bạn hiện đang sử dụng phiên bản mới nhất từ Ushahidi.', + 'upgrade_status_info_2' => 'Bạn không cần thiết phải thực hiện thao tác cập nhật.', + 'upgrade_db_version' => 'Phiên bản cơ sở dữ liệu: %d', + 'upgrade_warning_software_version' => 'Cảnh báo: Phiên bản phần mềm trong version.php và cơ sở dữ liệu không khớp lẫn nhau.', + 'upgrade_warning_db_version' => 'Cảnh báo: phiên bản cơ sở dữ liệu trong version.php và cơ sở dữ liệu không khớp lẫn nhau.', + 'upgrade_database' => 'Cơ sở dữ liệu:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => 'THỬ NGHIỆM!', + 'download' => 'Đang tải về phiên bản mới nhất từ Ushahidi...', + 'log_file' => 'Tập tin nhật trình', + 'successfully_downloaded' => 'Đã tải về thành công. Đang mở các gói dữ liệu...', + 'failed_downloading' => 'Xảy ra lỗi khi đang tải về.', + 'successfully_unpacked' => 'Đã mở các gói thành công. Đang sao chép các tập tin...', + 'failed_unpacking' => 'Xảy ra lỗi khi mở các gói dữ liệu.', + 'successfully_copied' => 'Đã sao chép thành công. Đang cập nhật cơ sở dữ liệu...', + 'failed_copying' => 'Xảy ra lỗi khi sao chép các tập tin', + 'backup_success' => 'Đã sao lưu và cập nhật cơ sở dữ liệu thành công.', + 'backup_failed' => 'Thất bại khi thực hiện thao tác sao lưu cơ sở dữ liệu.', + 'dbupgrade_success' => 'Đã cập nhật cơ sở dữ liệu thành công.', + 'deleting_files' => 'Đang xóa các tập tin đã được tải về...', + 'upgrade_success' => 'CẬP NHẬT THÀNH CÔNG. Xem Tập tin nhật trình', +); diff --git a/application/i18n/zh/alerts.php b/application/i18n/zh/alerts.php new file mode 100644 index 0000000000..4a98198a97 --- /dev/null +++ b/application/i18n/zh/alerts.php @@ -0,0 +1,7 @@ + array( + 'email' => '电子邮箱地址格式不正确。', + 'email_check' => '此电子邮箱地址已被注册接收本站警示信息。', + 'length' => '电子邮箱地址长度须在4至64个字符之间。', + 'required' => '打钩则电子邮箱地址为必填项。', + ) , + 'alert_country' => array( + 'single_country' => '您报告的事件地点跨越了本网站部署的国家范围。请确保事件地点是在%s', + ) , + 'alert_lat' => array( + 'between' => '请您在地图上标记一个范围正确的地点。', + 'required' => '请您在地图上标记事件发生的地点。', + ) , + 'alert_lon' => array( + 'between' => '请您在地图上标记范围正确的地点。', + 'required' => '请您在地图上标记事件发生的地点。', + ) , + 'alert_mobile' => array( + 'length' => '手机号码的位数不正确。', + 'mobile_check' => '此手机号码已被注册接收本站警示信息。', + 'numeric' => '手机号码格式不正确,请输入数字,需包含国家代码。', + 'one_required' => '您必须输入手机号码或电子邮箱地址。', + 'required' => '打钩则手机号码为必填项。', + ) , + 'alert_radius' => array( + 'in_array' => '请您在地图上设定正确的半径范围。', + 'required' => '请您在地图上设定半径范围。', + ) , + 'alert_recipient' => array( + 'required' => '您还没有设置一个收件人,用来接收本站的警示信息。', + ) , + 'alerts_subscribed' => '您已订阅了本站以下类别的事件报道的警示信息。', + 'code_already_verified' => '验证码已过期。', + 'code_not_found' => '验证码没找到!请检查您输入的 URL 是否正确。', + 'code_verified' => '验证通过,当有事件发生时您会收到警示消息。', + 'confirm_request' => '要确认您的请求,请点击', + 'create_more_alerts' => '返回警示页面,创建更多警示', + 'email_alert_request_created' => '您的电子邮箱接收警示的请求已创建,验证信息将发送到', + 'email_code' => '请您在下面输入邮件验证信息中提到的验证码', + 'email_error_head' => '您的电子邮箱接收警示的请求没有被保存。', + 'email_ok_head' => '您的电子邮箱接收警示的请求已被保存。', + 'error' => '系统不能处理您的验证请求!', + 'mobile_alert_request_created' => '您的手机号码接收警示的请求已创建,验证信息将发送到', + 'mobile_code' => '请您在下面输入手机验证信息中提到的验证码', + 'mobile_error_head' => '您的手机号码接收警示的请求没有被保存。', + 'mobile_ok_head' => '您的手机号码接收警示的请求已被保存。', + 'settings_error' => '系统配置不正确,导致不能处理警示信息。', + 'unsubscribe' => '收到这封邮件是因为您订阅了事件警示信息。如果您不想再收到此类信息请点击', + 'unsubscribed' => '您将不会再收到本站的事件警示信息', + 'unsubscribe_failed' => '我们不能取消你的警报订阅,请检查您输入了正确的URL地址。', + 'verification_email_subject' => '事件警示 - 验证邮件', + 'verify_code' => '在确认这个请求之前,您不会收到事件警示信息。', +); diff --git a/application/i18n/zh_CN/auth.php b/application/i18n/zh_CN/auth.php new file mode 100755 index 0000000000..db9deb2906 --- /dev/null +++ b/application/i18n/zh_CN/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => '电子邮箱地址格式不正确。', + 'exists' => '对不起,这个电子邮箱地址已被其他用户使用。', + 'length' => '电子邮箱地址长度须在4至64个字符之间。', + 'required' => '电子邮箱地址是必填项。', + ) , + 'name' => array( + 'length' => '用户名的长度须在3至100个字符之间。', + 'required' => '用户名是必填项。', + 'standard_text' => '用户名包含不合法字符。', + ) , + 'current_password' => array( + 'length' => '密码必须有至少8个字符的长度。', + 'login error' => '请您输入正确的电子邮箱地址和密码。', + 'matches' => '两次输入的密码不一致。', + 'required' => '请输入密码。', + 'alpha_dash' => '密码只能由字母,数字和符号#、@、_以及-组成。', + 'incorrect' => '您输入的账户密码是不正确的,请再试一次。', + ) , + 'new_password' => array( + 'length' => '密码必须有至少8个字符的长度。', + 'login error' => '请您输入正确的电子邮箱地址和密码。', + 'matches' => '两次输入的密码不一致。', + 'required' => '请输入密码。', + 'alpha_dash' => '密码只能由字母,数字和符号#、@、_以及-组成。', + ) , + 'password' => array( + 'default' => '登录时发生了一个错误。', + 'length' => '密码必须有至少8个字符的长度。', + 'login error' => '请您输入正确的电子邮箱地址和密码。', + 'matches' => '两次输入的密码不一致。', + 'required' => '请输入密码。', + 'riverid server down' => '访问认证服务器失败,请稍后再试。', + 'riverid' => '%s', + 'alpha_dash' => '密码只能由字母,数字和符号#、@、_以及-组成。', + ) , + 'password_confirm' => array( + 'matches' => '两次输入的密码不一致。', + ) , + 'resetemail' => array( + 'email' => '电子邮箱地址格式不正确。', + 'invalid' => '对不起,电子邮箱地址不存在。', + 'required' => '电子邮箱地址是必填项。', + ) , + 'role' => array( + 'superadmin_modify' => '只有超级管理员可以修改超级管理员或升级用户到管理员。', + ) , + 'roles' => array( + 'alpha_numeric' => '无效的角色。', + 'length' => '角色不得少于5个字符,不得多于30个字符', + 'required' => '至少要定义一个角色', + 'values' => '必须选择 ADMIN 或 USER 中的一个角色.', + ) , + 'token' => array( + 'invalid' => '忘记密码令牌无效', + 'required' => '忘记密码令牌需要', + ) , + 'username' => array( + 'admin' => '管理员角色不能被修改。', + 'alpha_numeric' => '公开资料页面的 URL 地址只能包含数字和字母。', + 'exists' => '对不起,这个资料页面的 URL 地址已被使用。', + 'length' => '公开资料的相对 URL 地址长度须在2至16个字符之间。', + 'login error' => '请检查您输入的公开资料页面的 URL 地址。', + 'required' => '公开资料的相对 URL 地址是必填项。', + 'superadmin' => '超级管理员角色不能被修改。', + 'csrf' => '可能的 CSRF(跨站请求伪造)攻击。你真的要创建/编辑用户?', + ) , +); diff --git a/application/i18n/zh_CN/bug.php b/application/i18n/zh_CN/bug.php new file mode 100755 index 0000000000..5389475440 --- /dev/null +++ b/application/i18n/zh_CN/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => '请输入有效的验证码', + 'required' => '请输入验证码', + ) , + 'email' => array( + 'email' => '电子邮箱地址格式不正确', + 'length' => '电子邮箱地址长度须在4至64个字符之间', + 'required' => '打钩则电子邮箱地址为必填项', + ) , + 'error' => array( + 'required' => '错误信息是必填项', + ) , + 'subject' => array( + 'length' => '标题长度须不少于3个字符', + 'required' => '标题是必填项', + ) , + 'yourname' => array( + 'length' => '用户名长度须不少于3个字符', + 'required' => '用户名是必填项', + ) , +); diff --git a/application/i18n/zh_CN/category.php b/application/i18n/zh_CN/category.php new file mode 100755 index 0000000000..420e03ea22 --- /dev/null +++ b/application/i18n/zh_CN/category.php @@ -0,0 +1,33 @@ + array( + 'length' => '颜色值长度应是6个字符', + 'required' => '颜色是必填项', + ) , + 'category_description' => array( + 'required' => '类别的描述是必填项', + ) , + 'category_image' => array( + 'size' => '图片文件大小不能超过50K', + 'type' => '图片文件格式不正确,只能上传 .JPG, .PNG 和 .GIF', + 'valid' => '图片文件格式不正确', + ) , + 'category_title' => array( + 'length' => '标题必须在3至80个字符之间', + 'required' => '标题是必填项', + ) , + 'parent_id' => array( + 'already_parent' => '要创建的子类别已在父类别中存在', + 'exists' => '父类别不存在', + 'numeric' => '父类别必须是数字', + 'parent_trusted' => '父类别不能是一个有特殊性的类别', + 'required' => '父类别是必填项', + 'same' => '要创建的子类别不能与父类别相同', + 'special' => '有特殊性的类别不能创建子类别', + ) , +); diff --git a/application/i18n/zh_CN/comments.php b/application/i18n/zh_CN/comments.php new file mode 100755 index 0000000000..16230b7e8b --- /dev/null +++ b/application/i18n/zh_CN/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => '验证码输入不正确', + 'required' => '请输入验证码', + 'valid' => '输入了错误的验证码', + ) , + 'comment_author' => array( + 'length' => '用户名长度须不少于3个字母', + 'required' => '用户名是必填项', + ) , + 'comment_description' => array( + 'required' => '评论内容是必填项', + ) , + 'comment_email' => array( + 'email' => '电子邮箱地址格式不正确', + 'length' => '电子邮箱地址长度应在4至64个字符之间', + 'required' => '打钩则电子邮箱地址为必填项', + ) , +); diff --git a/application/i18n/zh_CN/contact.php b/application/i18n/zh_CN/contact.php new file mode 100755 index 0000000000..31b6215bec --- /dev/null +++ b/application/i18n/zh_CN/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => '验证码输入不正确', + 'valid' => '请输入一个有效地安全地代码。', + 'required' => '请输入验证码', + ) , + 'contact_email' => array( + 'email' => '电子邮箱地址格式不正确', + 'length' => '电子邮箱地址长度应为4至64个字符', + 'required' => '打钩则电子邮箱地址为必填项', + ) , + 'contact_message' => array( + 'required' => '消息内容是必填项', + ) , + 'contact_name' => array( + 'length' => '用户名长度须不少于3个字母', + 'required' => '用户名是必填项', + ) , + 'contact_subject' => array( + 'length' => '主题长度必须超过3个字符', + 'required' => '主题是必填项', + ) , + 'email_send' => array( + 'failed' => '有个错误正发到你的消息里。', + ) , +); diff --git a/application/i18n/zh_CN/core.php b/application/i18n/zh_CN/core.php new file mode 100755 index 0000000000..93f227faa2 --- /dev/null +++ b/application/i18n/zh_CN/core.php @@ -0,0 +1,35 @@ + '设置文件', + 'controller' => '控制器', + 'driver' => '驱动', + 'driver_implements' => '%s库的%s驱动必须采用%s界面', + 'driver_not_found' => '无法找到%s库的%s驱动', + 'errors_disabled' => '您可以连接到 主页再试一遍.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => '无法完成请求', + 'helper' => '帮助', + 'invalid_filetype' => '您请求的文件类型.%s,不被允许访问。', + 'invalid_method' => '无效的调用方法%s,在类%s中。', + 'invalid_property' => '属性%s并不存在于类%s中。', + 'library' => '库', + 'log_dir_unwritable' => '日志目录不可写:%s', + 'model' => '模型', + 'no_controller' => 'Ushahidi 无法确定执行此请求的控制器: %s', + 'no_default_route' => '请在 config/routes.php 中设置默认路由', + 'page_not_found' => '您所要求的页面%s,没有找到。', + 'report_bug' => '报告给 Ushahidi', + 'resource_not_found' => '您请求的资源%s, %s,没有找到。', + 'stack_trace' => '堆栈跟踪', + 'stats_footer' => '载入用时{execution_time}秒,使用内存{memory_usage}. 由 Ushahidi v%s生成。', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Ushahidi 的每一个请求只能有一个实例。', + 'uncaught_exception' => '未捕获 %s:%s 位于文件%s的第%s行', + 'view' => '查看', + 'view_set_filename' => '您必须在调用前设置查看的文件名。', +); diff --git a/application/i18n/zh_CN/database.php b/application/i18n/zh_CN/database.php new file mode 100755 index 0000000000..5c4a52414e --- /dev/null +++ b/application/i18n/zh_CN/database.php @@ -0,0 +1,10 @@ + '数据库错误:%s', + 'table_not_found' => '无法在数据库中找到表"%s"。请确认您正在使用 Ushahidi 最新版本中的数据库。', +); diff --git a/application/i18n/zh_CN/datetime.php b/application/i18n/zh_CN/datetime.php new file mode 100755 index 0000000000..479f76e18d --- /dev/null +++ b/application/i18n/zh_CN/datetime.php @@ -0,0 +1,86 @@ + '上午', + 'friday' => array( + 'abbv' => '五', + 'full' => '星期五', + ) , + 'monday' => array( + 'abbv' => '一', + 'full' => '星期一', + ) , + 'pm' => '下午', + 'saturday' => array( + 'abbv' => '六', + 'full' => '星期六', + ) , + 'sunday' => array( + 'abbv' => '日', + 'full' => '星期日', + ) , + 'thursday' => array( + 'abbv' => '四', + 'full' => '星期四', + ) , + 'tuesday' => array( + 'abbv' => '二', + 'full' => '星期二', + ) , + 'wednesday' => array( + 'abbv' => '三', + 'full' => '星期三', + ) , + 'january' => array( + 'abbv' => '一月', + 'full' => '一月', + ) , + 'february' => array( + 'abbv' => '二月', + 'full' => '二月', + ) , + 'march' => array( + 'abbv' => '三月', + 'full' => '三月', + ) , + 'april' => array( + 'abbv' => '四月', + 'full' => '四月', + ) , + 'may' => array( + 'abbv' => '五月', + 'full' => '五月', + ) , + 'june' => array( + 'abbv' => '六月', + 'full' => '六月', + ) , + 'july' => array( + 'abbv' => '七月', + 'full' => '七月', + ) , + 'august' => array( + 'abbv' => '八月', + 'full' => '八月', + ) , + 'september' => array( + 'abbv' => '九月', + 'full' => '九月', + ) , + 'october' => array( + 'abbv' => '十月', + 'full' => '十月', + ) , + 'november' => array( + 'abbv' => '十一月', + 'full' => '十一月', + ) , + 'december' => array( + 'abbv' => '十二月', + 'full' => '十二月', + ) , +); diff --git a/application/i18n/zh_CN/feeds.php b/application/i18n/zh_CN/feeds.php new file mode 100755 index 0000000000..64516e471e --- /dev/null +++ b/application/i18n/zh_CN/feeds.php @@ -0,0 +1,19 @@ + '日期', + 'feed_name' => array( + 'length' => 'RSS 名称的长度应在3至70个字符之间', + 'required' => '请输入RSS的名称', + ) , + 'feed_url' => array( + 'required' => '请输入 RSS 的源地址', + 'url' => '请输入一个正确的URL。比如:http://www.ushahidi.com', + ) , + 'source' => '来源', + 'title' => '标题', +); diff --git a/application/i18n/zh_CN/footer.php b/application/i18n/zh_CN/footer.php new file mode 100755 index 0000000000..50abe3c1ea --- /dev/null +++ b/application/i18n/zh_CN/footer.php @@ -0,0 +1,9 @@ + 'php5-curl 还没有安装到系统中。', +); diff --git a/application/i18n/zh_CN/form.php b/application/i18n/zh_CN/form.php new file mode 100755 index 0000000000..7fd4f968fb --- /dev/null +++ b/application/i18n/zh_CN/form.php @@ -0,0 +1,48 @@ + array( + 'default' => '您提供的该字段的默认值是无效的。', + 'length' => '字段长度为3至200个字符。', + ) , + 'field_height' => array( + 'between' => '请设置字段控件的高度为0到50之间的值。', + ) , + 'field_isdate' => array( + 'between' => '请在日期字段输入正确的日期。', + 'required' => '选择是为必填项,否为非必填', + ) , + 'field_name' => array( + 'length' => '字段名称的长度应为3至100个字符', + 'required' => '请输入字段名称', + 'duplicate' => '你输入的字段名已经存在于这个表格中。请输入另一个。', + ) , + 'field_required' => array( + 'between' => '您输入了不符合字段格式要求的内容。', + 'required' => '选择是为必填项,否为非必填', + ) , + 'field_type' => array( + 'numeric' => '请选择一个有效的字段类型', + 'required' => '请选择字段类型', + ) , + 'field_width' => array( + 'between' => '请设置字段控件的长度为0到50之间的值。', + ) , + 'form_description' => array( + 'required' => '请输入表单描述', + ) , + 'form_id' => array( + 'default' => '默认表单不能删除', + 'numeric' => '请选择要添加字段的表单', + 'required' => '请选择要添加字段的表单', + ) , + 'form_title' => array( + 'length' => '表单名字的长度必须在3至100个字符之间', + 'required' => '请输入表单的名字', + 'exists' => '表格标题已存在,请另选一个。', + ) , +); diff --git a/application/i18n/zh_CN/imap.php b/application/i18n/zh_CN/imap.php new file mode 100755 index 0000000000..db8d2d439b --- /dev/null +++ b/application/i18n/zh_CN/imap.php @@ -0,0 +1,10 @@ + '无法打开 IMAP 流。', + 'unsupported_service' => '不支持的电子邮件服务器。', +); diff --git a/application/i18n/zh_CN/installer.php b/application/i18n/zh_CN/installer.php new file mode 100755 index 0000000000..daa08f4589 --- /dev/null +++ b/application/i18n/zh_CN/installer.php @@ -0,0 +1,84 @@ + '基本路径', + 'database' => '数据库', + 'database_host' => '数据库主机', + 'database_host_description' => '如果您运行 Ushahidi 在自己的计算机上,该值可能是“localhost”;如果您从 Web 服务器运行 Ushahidi,你需要从您的网站托管服务提供商得到你的主机信息。', + 'database_name' => '数据库名', + 'database_name_description' => '您要运行 Ushahidi 的数据库名称', + 'db_information_link' => '有关详细信息,请查看这篇文章 wiki 上关于数据库的会谈更多细节。', + 'default_language' => '默认语言 (Locale)', + 'default_language_description' => '每个Ushahidi部署带有语言翻译建立了一套。你也可以添加自己的。', + 'disable' => '禁用', + 'enable' => '启用', + 'error_summary' => '下面列出的是我们遇到的错误的汇总。', + 'files_location_text' => '服务器上的位置放置的 Ushahidi 文件。我们已自动检测到这个值,请确保它是正确的。如果该字段是空的,不用担心,它是指安装在 Ushahidi 是顶层目录。', + 'finished' => '完了', + 'general' => '总', + 'google_key' => 'GoogleAPI密钥', + 'google_key_description' => '任何人可以得到一个 API 钥匙. 获取一个', + 'go_back' => '返回', + 'index' => array( + 'advanced' => '高级安装', + 'advanced_installation_description' => '通过5个步骤完成所有基本设置。这包括服务器,地图,网站的名称和联系方式。', + 'basic_installation' => '基本安装', + 'basic_installation_description' => '如果你想要得到快速启动和运行,选择此选项,简单、快捷。你只需要设置网站的根目录和数据库的信息,稍后可以配置一切。', + 'proceed' => '完成', + 'welcome' => '欢迎来到 Ushahidi 服务器安装界面。选择您想用下面的哪种类型的安装', + ) , + 'installation_successful' => '安装成功!', + 'mail_server' => '邮件服务器', + 'mail_server_host' => '邮件服务器主机', + 'mail_server_host_description' => '例如: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => '邮件服务器密码', + 'mail_server_password_description' => '您登陆电子邮箱的密码', + 'mail_server_port' => '邮件服务器端口', + 'mail_server_port_description' => '常用的端口: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => '邮件服务器类型', + 'mail_server_type_description' => 'Internet 邮件访问协议 (IMAP) or 邮局协议 (POP). 有什么区别?', + 'mail_server_username' => '邮件服务器名称', + 'mail_server_username_description' => '如果您使用 Gmail,Hotmail,雅虎邮箱,输入一个完整的电子邮箱地址作为用户名。', + 'map' => '地图', + 'map_provider' => '地图提供程序', + 'map_provider_description' => 'Ushahidi 与三个地图提供程序能很好的工作:谷歌,必应(Bing)或 Open Street Map。选择您所在地区的最详细的一个。', + 'other_steps' => '其他步骤...', + 'password' => '密码', + 'password_description' => '数据库密码', + 'previous' => '上一步', + 'restart_apache' => '请重启 Apache 服务器', + 'select_mail_server_ssl' => '开启 or 禁用 SSL', + 'select_mail_server_ssl_description' => '有些邮件服务器使用SSL建立连接,因为SSL能提高安全水平。', + 'setup_sms' => '安装 SMS 服务', + 'site_email' => '网站电子邮箱地址', + 'site_email_alerts' => '网站警示电子邮箱地址', + 'site_email_alerts_description' => '当你的网站访客注册电子邮箱接收警示信息,他们将收到来自该地址的邮件。此邮件地址不必是同一网站的电子邮件地址。', + 'site_email_description' => '网站将通过这个电子邮箱地址过滤通信。', + 'site_name' => '站点名称', + 'site_name_description' => '您的网站名称', + 'site_tagline' => '网站口号', + 'site_tagline_description' => '你网站的标语、口号', + 'summary' => array( + 'text_1' => '下面列出的文件和文件夹,需要在您的网络服务器上设置为可写。', + 'text_2' => '

下面是改变文件权限的说明:

+ ', + 'text_3' => '在您开始之前,您需要确保以下文件和文件夹在您的网络服务器上可写,这涉及到改变文件权限。', + 'text_4' => '安装过程中,请记下一下信息', + ) , + 'table_prefix' => '数据表前缀', + 'table_prefix_description' => '通常你不会更改表前缀。不过,如果你想从一个单一的数据库中运行多个 Ushahidi 实例,你可以通过改变这里的前缀', + 'title' => '标题', + 'to_login' => '登录, Go to', + 'upload_data' => '上传 Report 数据', + 'username' => '用户名', + 'username_description' => '数据库用户名', + 'use_credentials' => '并使用下列认证', + 'view_site' => '查看您的网站', +); diff --git a/application/i18n/zh_CN/layer.php b/application/i18n/zh_CN/layer.php new file mode 100644 index 0000000000..9e01648027 --- /dev/null +++ b/application/i18n/zh_CN/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => '颜色值长度应是6个字符', + 'required' => '颜色值是必填项', + ) , + 'layer_file' => array( + 'type' => '文件地址不包含有效的文件。只接受.KMZ,.KML 类型的文件', + 'valid' => '文件地址不包含有效的文件', + ) , + 'layer_name' => array( + 'length' => '姓名的长度应在3到80个字符之间', + 'required' => '姓名是必填项', + ) , + 'layer_url' => array( + 'atleast' => '需要填入 KML,链接或文件', + 'both' => '你无法同时使用一个 KML 文件和 URL 链接', + 'url' => '请输入一个正确的 URL。比如:http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/zh_CN/libraries.php b/application/i18n/zh_CN/libraries.php new file mode 100755 index 0000000000..bd4e1247b8 --- /dev/null +++ b/application/i18n/zh_CN/libraries.php @@ -0,0 +1,27 @@ + '无法连接 Akismet 服务器', + 'akismet_cannot_retrieve' => '无法从 Akismet 获得回复', + 'api_library_not_found' => 'API库 %s中无法找到%s类。请检查您的 API 任务中的路径表', + 'askimet_invalid_apikey' => '您的 Akismet API 密匙无效', + 'clickatell_fopen_error' => '执行打开文件发送方式中发生错误!
请检查 PHP 是否支持 OpenSSL,或 PHP 是否是5.2之后的版本', + 'clickatell_message_too_long' => '您的验证信息过长!(目前长度:', + 'clickatell_no_destination_address' => '请写明收件地址(TO)!', + 'clickatell_no_sender_address' => '请写明发件地址(FROM)!', + 'clickatell_unicode_message_too_long' => '您的验证信息过长!(目前长度:', + 'clickatell_unsupported_method' => '不支持的方送方式!', + 'invalid_api_library' => 'API库%s无效。所有 API 库都必须是%s的子类型', + 'upgrade_directory_not_deleted' => '目录%s无法被删除', + 'upgrade_extracting_error' => '解压时发生错误:%s', + 'upgrade_failed' => '下载最新的 Ushahidi 中发生错误。服务器状态代码:', + 'upgrade_file_not_copied' => '无法拷贝文件%s', + 'upgrade_file_not_deleted' => '无法删除文件%s', + 'upgrade_title' => 'Ushahidi 升级脚本', + 'upgrade_zip_error' => '下载的 Ushahidi 压缩文件%s无法写入', + 'riverid_variable_not_available' => '%s 不提供在RiverID类可。', +); diff --git a/application/i18n/zh_CN/maintenance.php b/application/i18n/zh_CN/maintenance.php new file mode 100755 index 0000000000..1213260b3c --- /dev/null +++ b/application/i18n/zh_CN/maintenance.php @@ -0,0 +1,9 @@ + '很抱歉,我们的网站目前停机维护。请在稍后再试。', +); diff --git a/application/i18n/zh_CN/message.php b/application/i18n/zh_CN/message.php new file mode 100755 index 0000000000..34d5ac437b --- /dev/null +++ b/application/i18n/zh_CN/message.php @@ -0,0 +1,27 @@ + array( + 'default' => '请输入一个有效的验证码', + 'required' => '请输入安全码', + ) , + 'email' => array( + 'email' => '电子邮箱地址格式不正确', + 'length' => '电子邮箱地址长度须在4至64个字符之间', + 'required' => '打钩则电子邮箱地址为必填项', + ) , + 'message' => array( + 'required' => '评论栏为必填项', + ) , + 'name' => array( + 'length' => '用户名长度须不少于3个字母', + 'required' => '用户名为必填项', + ) , + 'phone' => array( + 'length' => '手机号码不正确', + ) , +); diff --git a/application/i18n/zh_CN/mhi.php b/application/i18n/zh_CN/mhi.php new file mode 100755 index 0000000000..6a1449acdb --- /dev/null +++ b/application/i18n/zh_CN/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => '请输入有效的验证码', + 'required' => '请输入验证码', + ) , + 'contact_email' => array( + 'email' => '电子邮箱地址格式不正确', + 'required' => '请提供有效的电子邮箱地址', + ) , + 'contact_message' => array( + 'required' => '信息栏为必填项', + ) , + 'contact_subject' => array( + 'length' => '标题栏须不少于3个字母', + 'required' => '标题栏为必填项', + ) , +); diff --git a/application/i18n/zh_CN/notifications.php b/application/i18n/zh_CN/notifications.php new file mode 100755 index 0000000000..c67470f6df --- /dev/null +++ b/application/i18n/zh_CN/notifications.php @@ -0,0 +1,35 @@ + '这些信息是从您的网站发出的。', + 'admin_login_url' => '管理员登录', + 'admin_new_comment' => array( + 'message' => '有新的评论,回应:', + 'subject' => '新的评论', + ) , + 'admin_new_email' => array( + 'message' => '有新的邮件', + 'subject' => '新的邮件', + ) , + 'admin_new_report' => array( + 'message' => '有新的事件报告', + 'subject' => '新的事件', + ) , + 'admin_new_sms' => array( + 'message' => '有新的文本消息', + 'subject' => '新的文本消息', + ) , + 'member_new_alert' => array( + 'message' => '您收到了一个事件警示。', + 'subject' => '新的警示!', + ) , + 'member_new_message' => array( + 'message' => '您收到了一个私信。', + 'subject' => '新的私信!', + 'footer' => '回复请转到:', + ) , +); diff --git a/application/i18n/zh_CN/page.php b/application/i18n/zh_CN/page.php new file mode 100755 index 0000000000..076f7dca43 --- /dev/null +++ b/application/i18n/zh_CN/page.php @@ -0,0 +1,18 @@ + array( + 'required' => '请输入自定义页面的标题。', + 'length' => '页面标题需要不小于3个,但不超过150个的字符。', + ) , + 'page_tab' => array( + 'required' => '请输入页面的链接标签的名称。', + ) , + 'page_description' => array( + 'required' => '请输入自定义页面的内容。', + ) , +); diff --git a/application/i18n/zh_CN/permissions.php b/application/i18n/zh_CN/permissions.php new file mode 100644 index 0000000000..53a29e759a --- /dev/null +++ b/application/i18n/zh_CN/permissions.php @@ -0,0 +1,27 @@ + '查看报告', + 'reports_edit' => '建立/编辑/删除 报告', + 'reports_approve' => '批准报告', + 'reports_verify' => '核实报告', + 'reports_comments' => '管理报告的评论', + 'reports_download' => '下载报告', + 'reports_upload' => '上传报告。', + 'messages' => '管理消息', + 'messages_reporters' => '管理消息报告', + 'stats' => '查看统计', + 'settings' => '修改设置', + 'manage' => '管理面板', + 'users' => '管理用户', + 'manage_roles' => '管理角色', + 'checkin' => '允许签入', + 'checkin_admin' => '管理签入', + 'admin_ui' => '进入管理员界面', + 'member_ui' => '进入成员界面', + 'delete_all_reports' => '删除所有报告', +); diff --git a/application/i18n/zh_CN/private_message.php b/application/i18n/zh_CN/private_message.php new file mode 100644 index 0000000000..42c7de94f3 --- /dev/null +++ b/application/i18n/zh_CN/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => '父身份必须是数字', + ) , + 'private_to' => array( + 'required' => '收件人是必填项', + 'exists' => '信件接受的人不存在', + ) , + 'private_subject' => array( + 'required' => '标题是必填项', + 'length' => '标题长度须不少于3个字符,不大于150字符', + ) , + 'private_message' => array( + 'required' => '信息内容是必填项', + ) , +); diff --git a/application/i18n/zh_CN/report.php b/application/i18n/zh_CN/report.php new file mode 100755 index 0000000000..009fc5923b --- /dev/null +++ b/application/i18n/zh_CN/report.php @@ -0,0 +1,139 @@ + '错误!', + 'country_name' => array( + 'single_country' => '您报告的事件地点跨越了本网站部署的国家范围。请确保事件地点是在Uganda国家或地区范围内.', + ) , + 'custom_field' => array( + 'values' => '请输入为“%s”字段的有效值。', + 'numeric' => '“% s”字段必须为数字。', + 'required' => '“% s”字段是必需的。', + 'not_exist' => '“%s”字段不存在。', + 'permission' => '通过你的账号不能编辑“%s”。', + 'email' => '“%s”字段必须包含一个有效的email地址。', + 'phone' => '“%s”必须包含一个有效的电话号码', + 'date_mmddyyyy' => '“%s”格式必须包含有效地的日期(月/日/年)。', + 'date_ddmmyyyy' => '“%s”格式必须包含有效地的日期(日/月/年)。', + ) , + 'data_include' => array( + 'between' => '请选择一个有效的项目', + 'numeric' => '请选择一个有效的项目', + ) , + 'data_active' => array( + 'between' => '请选择"等待核准"或"已核准"这两种状态的报告。', + 'numeric' => '请至少选择一个"等待核准"或"已核准"这两种状态的报告。', + 'required' => '请选择一个"等待核准"或"已核准"这两种状态的报告。', + ) , + 'data_verified' => array( + 'between' => '请选择"等待验证"或"已验证”这两种状态的报告。', + 'numeric' => '请至少选择一个"等待验证"或"已验证”这两种状态的报告。', + 'required' => '请选择一个"等待验证"或"已验证”这两种状态的报告。', + ) , + 'data_point' => array( + 'between' => '一个选择有效的事件报告类型进行下载', + 'numeric' => '一个选择有效的事件报告类型进行下载', + 'required' => '一个选择有效的事件报告类型进行下载', + ) , + 'format' => array( + 'required' => '选择一个下载格式,是CSV或者XML格式。', + 'valid' => '请选择一个有效的格式去下载报告', + ) , + 'from_date' => array( + 'date_mmddyyyy' => '发件日期无效', + 'range' => '请选择有效的发件日期。不能晚于今天。', + ) , + 'incident_active' => array( + 'between' => '请为“核准该事件报告”选择一个有效的值', + 'required' => '请为“核准该事件报告”选择一个有效的值', + ) , + 'incident_ampm' => array( + 'validvalues' => '上午/下午格式不正确', + ) , + 'incident_category' => array( + 'numeric' => '类别栏格式不正确', + 'required' => '类别为必填项', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => '日期格式不正确', + 'date_mmddyyyy' => '日期格式不正确', + 'required' => '日期为必填项', + ) , + 'incident_description' => array( + 'required' => '描述为必填项', + ) , + 'incident_hour' => array( + 'between' => '小时格式不正确', + 'required' => '小时为必填项', + ) , + 'incident_information' => array( + 'alpha' => '请为“信息准确度”输入一个有效值', + 'length' => '请为“信息准确度”输入一个有效值', + ) , + 'incident_minute' => array( + 'between' => '分钟格式不正确', + 'required' => '分钟为必填项', + ) , + 'incident_news' => array( + 'url' => '新闻来源链接格式不正确', + ) , + 'incident_photo' => array( + 'size' => '请确认您上传的照片大小不大于2MB', + 'type' => '上传照片格式无效。仅接受.JPG、.PNG和.GIF格式的图片', + 'valid' => '上传照片文件无效', + ) , + 'incident_source' => array( + 'alpha' => '请为“来源可靠度”输入一个有效值', + 'length' => '请为“来源可靠度”输入一个有效值', + ) , + 'incident_title' => array( + 'length' => '标题的长度须在3到200个字符之间', + 'required' => '标题栏为必填项', + 'csrf' => '可能的CSRF(跨站请求伪造)攻击。你真的要创建/编辑一份报告?', + ) , + 'incident_verified' => array( + 'between' => '请为“验证此报告”输入一个有效值', + 'required' => '请为“验证此报告”输入一个有效值', + ) , + 'incident_video' => array( + 'url' => '视频链接中包含无效的URL地址', + ) , + 'latitude' => array( + 'between' => '纬度值格式错误', + 'required' => '纬度值为必填项。您可以点击地图确定地点', + ) , + 'locale' => array( + 'alpha_dash' => '地点栏无效', + 'exists' => '此报告已有该语言的翻译版本', + 'length' => '地点格式错误', + 'locale' => '原始报告与翻译报告的语言相同', + 'required' => '语言为必填项', + ) , + 'location_name' => array( + 'length' => '地点名称长度必须在3到200个字符之间', + 'required' => '地点名为必填项', + ) , + 'longitude' => array( + 'between' => '经度值格式错误', + 'required' => '经度值为必填项。您可以点击地图确定地点', + ) , + 'person_email' => array( + 'email' => '邮件地址格式不正确', + 'length' => '邮件地址长度须在4至64个字符之间', + ) , + 'person_first' => array( + 'length' => '名字长度须在3到100个字符之间', + ) , + 'person_last' => array( + 'length' => '姓长度须在3到100个字符之间', + ) , + 'to_date' => array( + 'date_mmddyyyy' => '收件日期格式错误', + 'range' => '请输入有效的收件日期,不得晚于今日', + 'range_greater' => '发送日期不得晚于收件日期', + ) , +); diff --git a/application/i18n/zh_CN/reporters.php b/application/i18n/zh_CN/reporters.php new file mode 100644 index 0000000000..f9bd2f8a31 --- /dev/null +++ b/application/i18n/zh_CN/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => '纬度值无效', + 'required' => '纬度值为必填项。您可以点击地图确定地点', + ) , + 'level_id' => array( + 'numeric' => '报告者等级无效', + 'required' => '报告者等级无效', + ) , + 'location_name' => array( + 'length' => '地点名称长度必须在3到200个字符之间', + 'required' => '地点名为必填项', + ) , + 'longitude' => array( + 'between' => '经度值无效', + 'required' => '经度值为必填项。您可以点击地图确定地点', + ) , + 'reporter_id' => array( + 'numeric' => '无效的报告者', + 'required' => '无效的报告者', + ) , +); diff --git a/application/i18n/zh_CN/reports.php b/application/i18n/zh_CN/reports.php new file mode 100644 index 0000000000..75440565fe --- /dev/null +++ b/application/i18n/zh_CN/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => '请核实你检查过的条目', + 'numeric' => '请核实你检查过的条目', + 'categories_required' => '须在批准前把报道分类好', + ) , + 'action' => array( + 'permission' => '你无权限来执行此操作。', + ) , + 'uploadfile' => array( + 'required' => '你必须选择一个文件去上传。', + 'type' => '此上传文件必须是.csv或.xml格式。', + 'valid' => '文件上传字段似乎并不包含一个有效的文件。', + ) , +); diff --git a/application/i18n/zh_CN/roles.php b/application/i18n/zh_CN/roles.php new file mode 100755 index 0000000000..dbbdadab21 --- /dev/null +++ b/application/i18n/zh_CN/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => '描述的长度须在3到100个字符之间', + 'required' => '描述为必填项', + ) , + 'name' => array( + 'alpha_numeric' => '用户名中只能包含字母和数字', + 'length' => '用户名的长度应在3到80个字符之间', + 'nomodify' => '超级管理员角色不能被更改', + 'required' => '姓名为必填项', + ) , + 'access_level' => array( + 'numeric' => '访问级别必须是0到100之间的数字.', + 'required' => '访问级别必须输入0到100之间的数字.', + ) , + 'permissions' => array( + 'numeric' => '权限字段必须是0-100之间的数字。', + ) , +); diff --git a/application/i18n/zh_CN/settings.php b/application/i18n/zh_CN/settings.php new file mode 100755 index 0000000000..a890277dbe --- /dev/null +++ b/application/i18n/zh_CN/settings.php @@ -0,0 +1,240 @@ + array( + 'between' => '允许评论栏格式错误', + 'required' => '允许评论为必选项', + ) , + 'allow_feed' => array( + 'between' => '包括反馈栏格式错误', + 'required' => '包括反馈为必选项', + ) , + 'allow_feed_category' => array( + 'between' => '饲料类别字段似乎不包含有效的值。', + 'required' => '饲料类别字段是必须的。', + ) , + 'allow_alerts' => array( + 'between' => '允许警示字段似乎并不包含一个有效的值', + 'required' => '允许警示字段为必填项。', + ) , + 'allow_reports' => array( + 'between' => '允许报告栏格式错误', + 'required' => '允许报告为必填项', + ) , + 'allow_stat_sharing' => array( + 'between' => '数据分享栏格式错误', + 'required' => '数据分享为必选项', + ) , + 'api' => array( + 'default_record_limit' => '默认记录数量为每个API请求所获得的数量', + 'maximum_record_limit' => '最大记录数量为每个API请求所获得的数量', + 'maximum_requests_per_ip_address' => '每个IP地址最大的API请求数量', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'Akismet 栏格式错误', + 'length' => 'Akismet 栏格式错误', + ) , + 'banner_image' => array( + 'type' => '该网站横幅似乎并不包含一个有效的图像。只接受 .JPG, .PNG and .GIF格式。', + 'size' => '请确认“横幅图像”的大小不超过250 KB。', + 'valid' => '“横幅图像”似乎并不包含有效文件。', + ) , + 'cache_pages' => array( + 'between' => '缓存网页为必选项', + 'required' => '缓存网页格式错误', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => '缓存网页时间格式错误', + 'required' => '缓存网页时间为必填项', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => '您的服务器看起来配置为非简洁链接。您将需要更改您的服务器的配置,才可以启用简洁链接。更多信息请参阅如何启用简洁链接的 这个论坛的帖子', + 'clean_url_enabled' => '此选项使 Ushahidi 通过简洁链接的网址(不包括“index.php”的 URL 中)访问。', + 'enable_clean_url' => '允许清除链接', + 'title' => '清除链接', + ) , + 'clickatell_api' => array( + 'length' => 'Clickatell API 号码不得长于20个字符', + 'required' => 'Clickatell API 号码为必填项', + ) , + 'clickatell_password' => array( + 'length' => 'Clickatell 密码长度须在5到50个字符之间', + 'required' => 'Clickatell 密码为必填项', + ) , + 'clickatell_username' => array( + 'length' => 'Clickatell 用户名不得长于50个字符', + 'required' => 'Clickatell 用户名为必填项', + ) , + 'configure_map' => '地图设置', + 'default_location' => '默认地址', + 'default_map_all' => array( + 'alpha_numeric' => '颜色值格式错误', + 'length' => '颜色值长度应是6个字符', + 'required' => '颜色值为必填项', + ) , + 'default_map_view' => '查看默认地图', + 'default_zoom_level' => '默认缩放度', + 'download_city_list' => '从城市地名检索', + 'email_host' => array( + 'length' => '邮件服务器端口过长', + 'numeric' => '邮件服务器端口只能包含数字', + ) , + 'email_password' => array( + 'length' => '邮件服务器密码必须在5到50个字符之间', + 'required' => '邮件服务器密码为必填项', + ) , + 'email_port' => array( + 'length' => '邮件服务器端口过长', + 'numeric' => '邮件服务器端口只能包含数字', + ) , + 'email_servertype' => array( + 'length' => '邮件服务器端口过长', + 'required' => '邮件服务器类型为必填项', + ) , + 'email_username' => array( + 'length' => '邮件服务器用户名不得长于50个字符', + 'required' => '邮件服务器用户名为必填项', + ) , + 'facebook' => array( + 'title' => 'Facebook 安装选项', + 'description' => '要获取信息,您将需要创建一个新的 Facebook 的应用', + 'description_2' => '这些设置允许用户通过 Facebook登录,这个不是在你的部属上建立一个facebook应用', + 'app_id' => 'Facebook App ID', + 'app_secret' => 'Facebook应用程序的秘密', + ) , + 'google_analytics' => array( + 'length' => 'Google Analytics 中必须包含有效的网站内容 ID,格式为UA-XXXXX-XX', + ) , + 'https' => array( + 'enable_https' => '启用 HTTPS', + 'https_disabled' => '该选项使 Ushahidi 以不安全的模式访问;不包括 "https://" URL 前缀', + 'https_enabled' => '该选项使 Ushahidi 以安全的模式访问;包括 "https://" URL 前缀', + 'title' => 'HTTPS', + ) , + 'items_per_page' => array( + 'between' => '每页项目数(前端)格式错误', + 'required' => '每页项目数(前端)为必填项', + ) , + 'items_per_page_admin' => array( + 'between' => '每页项目数(管理员)格式错误', + 'required' => '每页项目数(管理员)格式错误', + ) , + 'map' => array( + 'default_location' => '设置地图提供商的过程非常简单。选择提供商,从提供商的网站获得 API 密匙,然后输入该密匙即可。', + 'zoom' => '缩放', + ) , + 'map_provider' => array( + 'choose' => '选择地图提供商', + 'enter_api' => '输入新的 API 密匙', + 'get_api' => '获得 API 密匙', + 'info' => '设置地图提供商的过程非常简单。选择提供商,从提供商的网站获得 API 密匙,然后输入该密匙即可。', + 'name' => '地图提供商', + ) , + 'map_timeline' => '地图时间表', + 'map_settings' => '地图设置', + 'multiple_countries' => '该 Ushahidi 布署是否跨越多个国家', + 'select_default_location' => '请选择默认的国家', + 'set_location' => '点击并拖动地图选择确切的位置', + 'site' => array( + 'allow_clustering' => '在地图上生成群报告', + 'allow_comments' => '允许所有用户对报告进行评论', + 'allow_feed' => '包括网站上的 RSS 新闻源', + 'allow_feed_category' => '您创建从饲料新类别', + 'allow_alerts' => '允许用户订阅事件报告警示', + 'allow_reports' => '允许用户提交报告', + 'api_akismet' => 'Akismet 密匙', + 'banner' => '网站横幅', + 'blocks_per_row' => '块数每行', + 'cache_pages' => '缓存页', + 'cache_pages_lifetime' => '缓存页保存时间', + 'checkins' => '启用签入', + 'copyright_statement' => '网站版权描述', + 'default_category_colors' => '为所有分类采用默认颜色', + 'default_category_icons' => '类别的默认图标', + 'delete_banner_image' => '删除横幅图片', + 'delete_default_map_all_icon' => '删除默认图标', + 'display_contact_page' => '显示联系页面', + 'display_howtohelp_page' => '显示 "帮助" 页', + 'email_alerts' => '事件报告警示邮件地址', + 'email_notice' => '如果想通过电子邮件接收报告,请在此设置您的电子邮件账号。', + 'email_site' => '网站电子邮件地址', + 'google_analytics' => '谷歌分析', + 'google_analytics_example' => '网页内容ID - 格式:UA-XXXXX-XX', + 'items_per_page' => '每页项目数量(前端)', + 'items_per_page_admin' => '每页项目数量(管理员)', + 'kismet_notice' => '防止垃圾评论使用 Akismet 自动处理.
你可以得到免费的密钥注册一个 WordPress.com 用户账户', + 'laconica_configuration' => 'Laconica 证书', + 'laconica_site' => 'Laconica 网站', + 'language' => '网站语言', + 'manually_approve_users' => '手动批准用户', + 'message' => '网站信息', + 'name' => '网站名称', + 'private_deployment' => '隐私设置', + 'require_email_confirmation' => '需要用户的电子邮件确认', + 'submit_report_message' => '提交事件报告的信息', + 'share_site_stats' => '允许数据存储在 Ushahidi 的服务器', + 'tagline' => '网站标签', + 'timezone' => '时区', + 'title' => '网站设置', + 'twitter_configuration' => '推特(Twitter)搜索关键词', + 'twitter_hashtags' => '标签,以英文逗号分隔', + 'feed_geolocation_user' => '饲料地理位置 - 地理名称用户名', + ) , + 'site_email' => array( + 'email' => '网站电子邮箱格式无效', + 'length' => '网站电子邮箱地址长度须在4到100个字符之间', + ) , + 'site_name' => array( + 'length' => '网站名称长度须在3到50个字符之间', + 'required' => '网站名称为必填项', + ) , + 'site_tagline' => array( + 'length' => '标签栏长度须在3到100个字符之间', + 'required' => '标签栏为必选项', + ) , + 'sms' => array( + 'clickatell_api' => '您的 Clickatell API 号码', + 'clickatell_check_balance' => '查看您的 Clickatell 帐户余额', + 'clickatell_load_balance' => '读取帐户余额', + 'clickatell_password' => '您的 Clickatell 密码', + 'clickatell_text_1' => '点击这里注册 Clickatell 服务', + 'clickatell_text_2' => '在此输入您的 Clickatell 登录信息', + 'clickatell_username' => '您的 Clickatell 用户名', + 'flsms_description' => 'FrontlineSMS是免费和开源的软件,这使用户通过手机发送和接受短信和一大群人。点击下面的框从FrontlineSMS.com下载最新版。', + 'flsms_download' => '下载和安装FrontlineSMS', + 'flsms_instructions' => '详细地说明了可用的安装就是如何从你的FronlineSMS发送短信here. 下面的URL和API键需要和FrontlineSMS设置成同步。', + 'flsms_link' => '复制并粘贴到 FrontlineSMS地址字段。', + 'flsms_key' => '复制并粘贴到FrontlineSMS "Ushahidi API键" 字段', + 'flsms_synchronize' => ' 把FrontlineSMS连接到Ushahidi部署。', + 'flsms_text_1' => '在下方输入连入 Frontline SMS 的电话号码', + 'flsms_text_2' => '请输入电话号码,不包含“+”和“-”', + 'option_1' => '选项1:使用 Frontline SMS', + 'option_2' => '选项2:使用 Global SMS 接口', + 'title' => 'SMS 设置选项', + ) , + 'sms_no1' => array( + 'length' => '电话号码1格式错误', + 'numeric' => '电话号码1只能包括数字', + ) , + 'sms_no2' => array( + 'length' => '电话号码2过长', + 'numeric' => '电话号码2只能包括数字', + ) , + 'sms_no3' => array( + 'length' => '电话号码3过长', + 'numeric' => '电话号码3只能包括数字', + ) , + 'twitter' => array( + 'title' => 'Twitter设置选项', + 'description' => '得到信息如下,在一个新的Twitter应用程序上设置你的部署', + 'api_key' => '消费者关键', + 'api_key_secret' => '消费者秘密', + 'token' => '访问令牌', + 'token_secret' => '访问令牌秘密', + ) , + 'test_settings' => '测试设置', +); diff --git a/application/i18n/zh_CN/sharing.php b/application/i18n/zh_CN/sharing.php new file mode 100755 index 0000000000..ddf3c7e878 --- /dev/null +++ b/application/i18n/zh_CN/sharing.php @@ -0,0 +1,25 @@ + '进入时间', + 'date_added' => '增加日期', + 'last_access' => '最后接入', + 'sharing_color' => array( + 'length' => '颜色值长度应是6个字符', + 'required' => '颜色值为必填项', + ) , + 'sharing_name' => array( + 'length' => '共享名称格式错误', + 'required' => '共享名称为必填项', + ) , + 'sharing_url' => array( + 'exists' => '该网站链接已存在', + 'length' => '该网站链接无效', + 'required' => '网站链接为必填项', + 'url' => '网站链接中包含无效的 URL 地址', + ) , +); diff --git a/application/i18n/zh_CN/stats.php b/application/i18n/zh_CN/stats.php new file mode 100755 index 0000000000..0794ef38a7 --- /dev/null +++ b/application/i18n/zh_CN/stats.php @@ -0,0 +1,42 @@ + '已核准', + 'categories' => '类别', + 'category_impact' => '分类影响', + 'category_impact_description' => '您可以在该表格中看到各类别的报告量随时间变化的情况。从左到右拖动滚动条可以看到不同分类的情况。将鼠标移到图片上可以查看详情。', + 'choose_date_range' => '选择日期范围', + 'countries' => '国家', + 'country' => '国家', + 'country_breakdown' => '国家分布', + 'description' => '您好,这是数据部分。总体描述将随后放出。现在,您可以在上面的分类链接中访问其他页面。', + 'error' => '错误', + 'glossary' => '术语表', + 'hit_summary' => '点击统计', + 'legend' => '图例', + 'pageviews' => '页面访问', + 'pageviews_description' => '访问者在您的网站上访问页面的总数量', + 'reports' => '事件报告', + 'reports_categories' => '事件类型', + 'reports_statistics' => '报告数据', + 'reports_status' => '报告状态', + 'report_punchcard' => '事件报告穿孔卡', + 'report_stats' => '报告数据', + 'stats_not_setup' => '数据未确定', + 'time_range_1' => '1个月', + 'time_range_2' => '3个月', + 'time_range_3' => '6个月', + 'time_range_all' => '全部', + 'unapproved' => '未核准', + 'unique_visitors' => '独立访问者', + 'unique_visitors_description' => '访问您的页面的人数;独立访问者的身份标识为其浏览器 cookie。如果来访者没有使用 cookie,将通过IP地址、协议、浏览器、插件、操作系统等方式来验证其身份。', + 'unverified' => '未验证', + 'verified' => '已验证', + 'visitor_summary' => '访客总数', + 'visits' => '访问', + 'visits_description' => '在最后一次页面访问以后30分钟后重新登录的独立访问者将被视为一次新的访问。', +); diff --git a/application/i18n/zh_CN/tooltips.php b/application/i18n/zh_CN/tooltips.php new file mode 100755 index 0000000000..bcbad28c17 --- /dev/null +++ b/application/i18n/zh_CN/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => '这增加了报告的额外类别。如果你选择1类和2类报告已连接到它,该报告将有1类和2类。', + 'approve' => '批准报告或否。如果获得批准,它将被公开。', + 'assign_badge' => '你可以分配一个徽章给用户。选中一个徽章,然后在这里分配。', + 'between_times' => '这是二十四小时制的时分范围,第一区域要比第二区域早,否则需要反转,并且将检查系统配置时间。', + 'category' => '如果你想激活触发器当在指定类别被使用时,您可以在这里设置。如果一篇事件报告有多个分类类别,且每个类别都有触发器,那么只激活一个。', + 'days_of_the_week' => '如果这些动作发生在每周的特定日子,请在此设置。按住 Shift、Commond(Mac)、或者 Control(Windows)健选择几个日期。', + 'email_body' => '邮件内容将被发送', + 'email_subject' => '邮件标题将被发送', + 'feed_id' => '源可以是所有饲料所有的饲料或特定饲料。如果你只想特定饲料激活触发器,你会想在这里选择它们。否则,你将要离开这个“皆”', + 'from' => '官方中文译名推特作者的用户名 (或多个用户名用逗号分隔)。如果你想激活触发器仅对于官方中文译名推特消息从一个特定的用户, 在这里输入自己的用户名(不包括@)', + 'keywords' => '如果你不想要关键字,那么让此处空白;否则,多个关键字用英文逗号分隔。', + 'location' => '你可以设定在任何地方或一个特定的位置。如果你选择了一个特定的位置,你将被要求画一个框周围的地区是一个行动。例如,如果你想要这个触发器被激活时,有人提出一个报告在巴西,你会选择“特别区域”,然后在巴西画一个区域。你可以把这些区域画小或大,也可以画多个。', + 'on_specific_count' => '该限定符将激活特定数的集群用户或独立用户。留空白可以忽略。', + 'report_title' => '这是默认添加到报告的标题。', + 'response' => '如果所有的限定都通过,触发器将启动响应。这将产生从核准事件报告到发邮件到用户的变化。选择回应激活额外选项。', + 'send_to' => '如果你选择“触发的用户”,电子邮件将被发送到执行行动的用户。如果你选择单选按钮旁边的输入框,你将能够进入一个定制的电子邮件地址。当你设置触发的用户在某些地区的地图看到报告,签入或其他一些活动时是有用的。', + 'specific_days' => '你可以选择多个日期。由时区配置决定。如果不选择日期,默认为所有日期。', + 'trigger' => '触发器是调定你的行为操作的核心部件。当有人提交一个事件报告,签入等行为时,你可以通过它过滤回应或使某事发生。', + 'user' => '用户可以是任何人,或一个特定的用户。如果你只喜欢特定用户激活触发器,你可以选择他们;否则,你将要排除这个“anyone”当最触发器设置为所有用户与系统的相互作用', + 'verify' => '标记一个事件报告已验证或未验证。', + ) , + 'change_picture' => '资料页面本网站使用 Gravatar。通过点击你的头像,你将被带到 Gravatar 网站。在那里,您可以更改您的个人资料头像。', + 'default_value' => '用英文逗号分隔每一个值,例如1,2。', + 'radio_choices' => '用英文逗号分隔每一个值,例如1,2。如果你想设置默认值,在选项列表结束位置加::符号。例如,如果你想让 Value 3为默认值,这将是 Value 1,Value 2,Value 3::Value 3', + 'dropdown_choices' => '用英文逗号分隔每一个值,例如 Item 1, Item 2 etc.', + 'private_to' => '开始输入成员名单', + 'private_subject' => '私信标题', + 'private_message' => '私信', + 'profile_color' => '您可以选择一种颜色,将显示在您的个人资料图片在您的公众形象。这也将是彩色点阵显示的地图为您的签入。', + 'profile_email' => '您的电子邮箱地址', + 'profile_name' => '这是确定在网站上标识的一种方法。请记住这是公开信息!', + 'profile_new_password' => '如果设置,这将是您的新密码。将此字段留空如果您想保留您的当前密码。', + 'profile_new_users_password' => '这是在创建一个新用户时的一个要求,将作为用户密码。你应该通知你的新用户,在第一次登陆后修改他们的密码。', + 'profile_notify' => '选择"是"让你通过电子邮件在新的事件报告或评论发布时获取事件警示信息。', + 'profile_password' => '您当前的密码。我们要求您输入您的密码,防止任何未经授权的更改您的帐户。', + 'profile_public' => '选中此项后,任何人都可以查看你的资料。这是最简单的来展示您提交的报告,您的登入,徽章,等等信息。', + 'profile_public_url' => '您的公众资料的地址。', + 'profile_username' => '你的用户名不能更改。', + 'settings_access_level' => '访问级别是用来限制访问自定义表单域数据。较高的访问级别可以访问域从较低水平。superadmin 具有最高的访问级别(100)。公共数据显示在最低访问级别(0)。成员的访问级别10。管理员访问90级默认。', + 'settings_alert_email' => '这是用来发送事件警示的电子邮箱地址。', + 'settings_allow_alerts' => '允许用户通过网络订阅事件警示。', + 'settings_allow_clustering' => '允许捆绑类似的报告,到一个单一的点在地图上', + 'settings_allow_comments' => '允许用户在主站上评论。', + 'settings_allow_feed' => '允许RSS源显示在主站上。', + 'settings_allow_feed_category' => '这允许创建新的分类,从RSS新闻源。', + 'settings_allow_reports' => '允许用户通过网络形式提交信息。', + 'settings_api_default_record_limit' => '默认记录号码被每个 API request 获取', + 'settings_api_max_record_limit' => '最大记录号码被每个 API request 获取', + 'settings_api_max_requests_per_ip' => '每个IP地址请求的最大记录数', + 'settings_banner' => '网站横幅显示了在顶部的前端的网站如果您使用的是支持它的主题。建议的大小,这面旗帜将取决于你使用的主题。记住,这将取代网站标题和标语在页面顶部。', + 'settings_blocks_per_row' => '多块列将被显示在每一行。', + 'settings_cache_pages' => '启用或禁用页面缓存。这使得网页的显示速度更快的响应时间。我们建议使用缓存高流量的网站。* *记住,报告将被填充在前端的基础上设置的计划下(缓存生命周期)。', + 'settings_cache_pages_lifetime' => '设置缓存生命周期。', + 'settings_checkins' => '这个设置允许你登入。这是一个简化的报告类型,不是在它的主页,需要您的站点配置一定的方式。当你激活这个,确定你的时区设置在协调世界时和你的主题支持登记表。当你使这一主题,checkin-only 将启用在你的插件/主题设置页面。', + 'settings_configure_map' => '设置地图的覆盖一个特定的位置。', + 'settings_default_category_colors' => '为网站上所有类别设置一个颜色代码。', + 'settings_default_category_icons' => '为网站上所有类别设置一个图标', + 'settings_default_location' => '这是网站将被部署的国家。', + 'settings_display_contact' => '关闭或打开联系方式页面', + 'settings_display_howtohelp' => '关闭或打开帮助页面', + 'settings_display_items_per_page' => '这是在主站上显示的事件报告的数量。', + 'settings_display_items_per_page_admin' => '这是在管理后台上显示的事件报告的数量。', + 'settings_flsms_download' => '这是该中心收到的消息。', + 'settings_flsms_synchronize' => '这将同步信息枢纽 Ushahidi。', + 'settings_flsms_text_1' => '短信息接收的手机号码。', + 'settings_google_analytics' => '跟踪您的访客。获得详细的访客统计。', + 'settings_locale' => '设置网站使用的语言。', + 'settings_manually_approve_users' => '如果你设置这个选项,你必须通过每个个人用户创建一个帐户,在您的网站他们的角色分配(即 Member,Admin,superadmin)。', + 'settings_map_provider' => '定义网站使用的地图。', + 'settings_map_timeline' => '这显示了在时间线根据提交的日期和时间的报告', + 'settings_private_deployment' => '设置此值为真或是使得只有拥有帐户的用户能够访问网站的部署。', + 'settings_require_email_confirmation' => '用户将通过电子邮件发送一个确认链接点击才可以登录到部署,如果这是设置为“是”。如果你使这一部署后接受了用户,他们将被提示确认他们的帐户之前,他们将被允许继续使用它。', + 'settings_server_host' => '这是邮件服务器主机', + 'settings_server_password' => '这是电子邮箱的密码', + 'settings_server_port' => '这是邮件服务器的端口', + 'settings_server_ssl_support' => '安全链接 SSL 支持', + 'settings_server_type' => '为从主服务器上接收Email,此选项是必须的。', + 'settings_server_username' => '事件报告邮件接收电子邮箱用户名', + 'settings_share_site_stats' => '命中数据存储在服务器控制 Ushahidi。通过启用此选项,您可以存取击中统计直接在您的控制面板。通过禁用它,你将停止收集数据和将无法收回的交通统计资料收集,这是关闭的。', + 'settings_site_copyright_statement' => '其他人有权发布文本,图像,视频和/或设计主题,您和您的用户创建?如果你有兴趣去 https://creativecommons.org/choose/ 指定其他人能够做你的工作。记得具体是什么内容的网站,你的认证!', + 'settings_site_email' => '这是从联系我们页面接收邮件或事件报告的电子邮件地址。', + 'settings_site_message' => '这个文本是出现在地图上的主页。这是非常有用的重要信息网站上的访客。不要它,只需在这里把消息删除。', + 'settings_site_name' => '这是出现在顶部的本网站的名称。', + 'settings_site_submit_report_message' => '这是显示在表单提交页面的一个信息。可以是一个好的免责声明或进一步指示你的访客编写表单。', + 'settings_site_tagline' => '一句话描述这个网站', + 'settings_site_timezone' => '这是您的网站上运行的时区。这影响任何行动,建立了利用时间和日期,以及默认的当前时间报告的前端和后端的网站。', + 'settings_twitter_configuration' => '设置推特(twitter)#标签用于鸣叫', +); diff --git a/application/i18n/zh_CN/ui_admin.php b/application/i18n/zh_CN/ui_admin.php new file mode 100755 index 0000000000..2b0325270a --- /dev/null +++ b/application/i18n/zh_CN/ui_admin.php @@ -0,0 +1,329 @@ + '拒绝登入。您的证书无效,或您的请求被拒绝。', + 'access_denied_others' => '拒绝登入。您的请求已收到,但由于登入限制(如时间)原因,该请求已被拒绝。请稍后再试。', + 'access_level' => '访问级别', + 'actions' => '操作', + 'add_to_category' => '创建到栏目', + 'added' => '已创建', + 'added_edited' => '已创建/编辑', + 'addons' => '插件', + 'admin_role' => '管理员', + 'alerts' => '提醒', + 'alerts_received' => '收到提醒', + 'all' => '全部', + 'am' => '上午', + 'anonymous' => '匿名', + 'anyone_role' => '访问者', + 'anywhere' => '未知地', + 'api_banned' => 'API 禁止', + 'api_logs' => 'API 日志', + 'api_settings' => 'API设置', + 'api_unban' => '取消禁止', + 'api_unban_all' => '全部取消禁止', + 'approved' => '已批准', + 'approve_auto' => '自动批准', + 'approve_manual' => '手动批准', + 'archived' => '已归档', + 'are_you_sure_you_want_to' => '您确定您要', + 'are_you_sure_you_want_to_delete_this_item' => '您确定您要删除该项吗', + 'are_you_sure_you_want_to_delete_this_photo' => '您确定您要删除该照片吗', + 'are_you_sure_you_want_to_switch_forms' => '您确定希望更换表单吗', + 'assign' => '分配', + 'assignments' => '任务', + 'assign_badge' => '分配徽章', + 'author' => '作者', + 'author_email' => '作者邮件', + 'back' => '返回', + 'banip_action' => '禁止IP', + 'between_times' => '起止时间', + 'blocks' => '文件块', + 'body' => '文件体', + 'cancel' => '取消', + 'categories' => '栏目', + 'chart_display_error' => '表格显示错误', + 'check_message_valid' => '请确认您的消息有效', + 'check_number' => '请确认该号码有效', + 'check_sms_settings' => '请查看您的SMS设置!', + 'checkin_details' => '签入详情', + 'checkins' => '签入', + 'cities_loaded' => '已载入城市', + 'code' => '代码', + 'code_out_of_sync' => '代码版本未能同步', + 'color' => '颜色', + 'comments' => '评论', + 'confirmation_code' => '您的警告验证码是:', + 'confirm_msg' => '该用户已被', + 'count' => '计数', + 'country_not_found' => '无法找到国家', + 'created_edited' => '创建/编辑', + 'create_report' => '创建报告', + 'critical_upgrade' => '关键更新', + 'csv' => 'CSV文件格式', + 'currently_active' => '当前处于活动状态', + 'currently_inactive' => '当前处于非活动状态', + 'custom_forms_insufficient_permissions' => '您没有有足够的权限编辑以下的自定义字段。', + 'daily' => '每天', + 'dashboard' => '控制面板', + 'database' => '数据库', + 'date_time' => '日期与时间', + 'date_added' => '添加日期', + 'date_modified' => '修改日期', + 'days_of_the_week' => '这个礼拜。', + 'db_out_of_sync' => '数据库版本未能同步', + 'deleted' => '删除', + 'delete_action' => '删除 ', + 'delete_all' => '删除所有的报告?', + 'delete_badge' => '删除徽章', + 'demo' => '演示', + 'description' => '描述', + 'disabled' => '禁用', + 'divider_start_field' => 'Divider 开始', + 'divider_end_field' => 'Divider 结束', + 'divider_class' => 'div类目', + 'download_reports' => '下载报告', + 'dropdown_choices' => '下拉选择', + 'edited' => '编辑', + 'edited_by' => '由%s编辑', + 'edit_action' => '编辑', + 'edit_log' => '编辑记录', + 'email' => '电子邮件', + 'entire_collective' => '集体', + 'error_geocoding' => '地域符合中发生错误!HTTP 错误', + 'error_imap' => 'IMAP PHP库未安装', + 'error_twitter' => '错误的证书', + 'error_msg' => '错误', + 'error_post_incident' => '错误,无法发布事件', + 'every_six_hours' => '每六个小时', + 'every_twelve_hours' => '每12个小时', + 'experimental' => '试验性的', + 'faqs' => 'FAQ', + 'feed' => '反馈', + 'feedback' => '反馈', + 'feeds' => '反馈', + 'field_choices' => '选择列表', + 'field_default' => '默认值', + 'field_datatype' => '数据类型', + 'field_datatype_javascript' => 'Javascript', + 'field_datatype_markup' => '审定', + 'field_datatype_numeric' => '数字', + 'field_datatype_text' => '自由文本', + 'field_height' => '高度(行)', + 'field_hidden' => '隐藏字段', + 'field_maxlength' => '最大字母数', + 'field_name' => '域名称', + 'field_toggle' => '切换', + 'field_toggle_no' => '否', + 'field_toggle_yes_close' => '是的,默认情况下关闭。', + 'field_toggle_yes_open' => '是的,默认情况下打开。', + 'file_not_found_upload' => '无法找到上传的文件', + 'file_open_error' => '无法打开文件', + 'form_not_exists' => '该类型不存在', + 'forum' => '论坛', + 'free_text_field' => '文本区域(自由文本)', + 'date_field' => '日期框', + 'radio_field' => '单选按钮', + 'checkbox_field' => '多选框', + 'dropdown_field' => '下拉框', + 'from' => '从', + 'from_date' => '从', + 'geonames_timeout' => '地名资讯超时错误', + 'get_help' => '需要帮助', + 'get_more_themes' => '得到更多的主题', + 'get_more_plugins' => '得到更多地插件', + 'header_actions' => '操作', + 'header_add_edit' => '增加/编辑', + 'header_email' => '电子邮件', + 'header_manage_users' => '管理用户', + 'header_role' => '角色', + 'header_user' => '用户', + 'help' => '帮助', + 'hourly' => '每小时', + 'incident_feed' => '对事件的反馈', + 'installer_info' => '安装文件夹依然存在,删除安装文件夹,这是一个潜在地安全漏洞。', + 'instance' => '事件', + 'instances' => '事件', + 'instance_details' => '事件详情', + 'invalid_parameter' => '无效的参数', + 'ip_address' => 'IP地址', + 'is_date' => '这是一个数据域吗?', + 'ispublic_visible' => '谁可以查看答案?', + 'ispublic_submit' => '谁可以提交答案?', + 'keyword' => '关键字', + 'keywords' => '关键字', + 'label_email' => '电子邮件地址:', + 'label_full_name' => '全名:', + 'label_password' => '密码:', + 'label_role' => '角色:', + 'label_username' => '用户名:', + 'layers' => '层:', + 'login_role' => '管理员:', + 'logout' => '登出', + 'logs' => '日志', + 'manage' => '管理', + 'manage_roles' => '管理角色与权限', + 'manage_users' => '查看用户', + 'manage_users_edit' => '添加/编辑用户', + 'manage_public_listing' => '管理你的公共列表', + 'mark_as' => '标记为', + 'marked_as_not_spam' => '标记为非垃圾邮件', + 'marked_as_spam' => '标记为垃圾邮件', + 'match_no_documents' => '不符合任何文档', + 'message' => '短信', + 'messages' => '短信', + 'messages_laconica' => '位置信息', + 'messages_twitter' => 'Twitter 信息', + 'message_sent' => '您的信息已发送!', + 'mhi' => 'MHI', + 'minute' => '分钟', + 'minutes' => '分', + 'missing_parameter' => '缺少参数', + 'moderator' => '管理员', + 'modified' => '修改', + 'modify_timezone' => '编辑时区', + 'move_down_action' => '下移', + 'move_up_action' => '上移', + 'multiple_hosted_instances' => '多主机实例', + 'my_alerts' => '我的提醒', + 'my_checkins' => '签入记录', + 'my_profile' => '我的信息', + 'my_reports' => '我的报告', + 'my_votes' => '投票数', + 'my_votes_up' => '肯定', + 'my_votes_down' => '否定', + 'name' => '名称', + 'new_alert' => '创建新的提醒', + 'new_private' => '创建新的消息', + 'new_password' => '新密码', + 'no' => '否', + 'none_category_explanation' => '这是一个特殊的类别,将不会显示在用户提交报告的页面。这是用来存放作为删除的没有分类(未归类报告)的报告。', + 'notification' => '通告', + 'not_case_sensitive' => '不区分大小写', + 'not_found' => '无法找到', + 'no_data' => '没有数据。没有可显示的结果', + 'no_error' => '没有错误', + 'no_result_display_msg' => '没有可以显示的结果!', + 'of' => '自', + 'on_specific_count' => '关于具体计算', + 'openids' => 'OpenID\'s', + 'page' => '页', + 'pages' => '页', + 'page_not_found' => '页面无法找到', + 'page_not_found_message_with_contact' => '抱歉,你正在访问的页面不在这里。

你是从我们的网站上打开链接的?
如果你是从我们的网站的另一个链接到了这个页面,请 联系我们以便我们能纠正错误。

你是从另一个网站打开下面的链接吗?
从其他网站链接有时可能超时或拼写有误。告诉我们你是从哪个网站访问的,我们可以试着联系其他的网站来解决这个问题。

你输入网址了吗?
你可能输入的是错误地地址(网站)。检查以确保你的拼写是正确的,以及大小写等等。

', + 'page_not_found_message' => '抱歉,你访问的页面不在这里。', + 'parameters_used' => '使用的参数', + 'password' => '密码', + 'password_reset' => '重置密码', + 'password_reset_message_line_1' => '亲爱的', + 'password_reset_message_line_2' => '我们收到了重置密码的请求,发送自', + 'password_reset_message_line_3' => '如果要修改您的密码,请点击下面的链接(或将其复制粘贴到您的浏览器地址栏)', + 'password_reset_message_line_4' => '根据您的请求,您的密码将被重置。可以在下面的地址查看详细信息:', + 'password_reset_subject' => 'Ushahidi 密码重置', + 'phone' => '电话', + 'please_select' => '请选择', + 'pm' => '短信', + 'post_method_not_used' => '数据未能以发布方式送出', + 'preview' => '预览', + 'private_message' => '消息', + 'private_messages' => '私人信息', + 'private_sent' => '发送私人信息', + 'private_subject' => '标题', + 'private_to' => '接收人', + 'public_listing' => '公共列表', + 'qualifiers' => '限定条件', + 'read' => '读取', + 'relevance' => '相关', + 'report_title' => '报告标题', + 'report_date' => '报告日期', + 'reporters' => '报告人', + 'reporter_levels' => '报告人等级', + 'reports' => '灾情报道', + 'reputation' => '信誉分数', + 'required' => '必需项', + 'reset' => '重置', + 'response' => '回应', + 'results' => '结果', + 'revoke' => '撤销', + 'riverid_exists_admin' => 'CrowdmapID管理已有的Email账号,用户登录时需有Crowdmap 密码。', + 'save_settings' => '保存设置', + 'search' => '搜索', + 'search_reports' => '搜索报告', + 'searching_for' => '搜索:', + 'security_info_encryption_key' => '加密密钥仍设置为默认值。这是不安全的,必须改变。', + 'security_info_https' => '本网站通过 HTTP 提供服务。应设置为 HTTP 以提高安全性。', + 'security_info_instructions' => '维基(Wiki)说明:', + 'select_download_format' => '选择你想要的报告下载格式', + 'select_field_type' => '--- 选择一个类型 ---', + 'select_item' => '选择一项', + 'select_trigger_before_response' => '你必须在选择一个回应前选择一个触发事件。', + 'select_trigger_before_qualifiers' => '你必须在定义限定条件前选择一个触发事件。', + 'sender' => '发送者', + 'send_to' => '接受者', + 'sent_from_website' => '来自您的网站的信息发送时间为', + 'server_time' => '服务器时间', + 'settings' => '设置', + 'showing_page' => '显示页', + 'showing_results' => '显示结果', + 'shown' => '显示', + 'special_category' => '特殊分类', + 'special_category_explanation' => '这是一个特殊分类,将不会在用户提交的报告表单中显示。该分类需与“可信的报告者”一起使用', + 'specific_area' => '特定区域', + 'state' => '状态', + 'statistics' => '数据', + 'stats' => '浏览数据', + 'stats_collection_error' => '数据收集失败!请稍后重试', + 'stats_collection_error_short' => '数据收集失败', + 'specific_days' => '特殊的日子', + 'subject' => '标题', + 'superadmin_role' => '超级管理员', + 'task_performed' => '任务已完成', + 'text_field' => '文字栏', + 'theme_name' => '姓名', + 'title' => '管理用户', + 'timeout' => '超时错误', + 'to' => '至', + 'total_records' => '合计结果', + 'to_date' => '至', + 'translate_reports' => '翻译结果', + 'trigger' => '触发器', + 'triggering_user' => '触发的用户', + 'triggers' => '触发程序', + 'unapproved' => '未验证的', + 'unknown' => '未知', + 'unknown_failure' => '未知的错误', + 'unread' => '未读', + 'unsubscribe_message' => '您还没有收到过任何提醒。', + 'update_link' => '点击立即升级', + 'upgrade_ushahidi' => '升级 Ushahidi', + 'upgrade_ushahidi_status' => 'Ushahidi 升级状态', + 'upload_reports' => '上传报告', + 'user' => '用户', + 'users' => '用户', + 'ushahidi' => 'Ushahidi', + 'verified_unverified' => '已验证/未验证', + 'verify_unverify' => '确认/取消 验证', + 'version' => '版本', + 'version_available' => '可用于升级', + 'video_encoding' => '视频编码', + 'view_private' => '私人消息', + 'view_site' => '查看页面', + 'view_report' => '查看报告', + 'welcome' => '欢迎,', + 'wiki' => '维基', + 'xml' => 'XML', + 'yes' => '是', + 'your_search_for' => '您的搜索', + 'delete_all_instructions' => '点击下面的按钮如果你想删除对数据库中的所有报告。你应该知道,此操作不可撤消。', + 'delete_all_backup' => '在继续之前,我们建议您备份您的资料库', + 'delete_all_button' => '我敢肯定,我想从数据库中删除所有的%s的报告。', + 'delete_all_confirm' => '您确定要删除所有的报告?', + 'delete_all_no_reports' => '不存在要删除的报告。', + 'user_no_logins' => '登录数', + 'user_last_login' => '最后登录', + 'user_confirmed_account' => '确认帐户?', +); diff --git a/application/i18n/zh_CN/ui_main.php b/application/i18n/zh_CN/ui_main.php new file mode 100755 index 0000000000..7e6440c6b7 --- /dev/null +++ b/application/i18n/zh_CN/ui_main.php @@ -0,0 +1,622 @@ + '关于 ', + 'access' => '接入', + 'access_limits' => '接入限制', + 'account_name' => '用户名', + 'actions' => '操作', + 'action_confirm' => '这个操作不能撤销. 你确定要继续吗?', + 'activate' => '激活', + 'active' => '激活', + 'add' => '增加', + 'added_by' => '增加', + 'additional_data' => '附加数据', + 'additional_reports' => '更多的报道', + 'add_edit' => '增加/编辑', + 'add_field' => '增加一个域', + 'add_language' => '增加新语言', + 'add_new' => '增加新的', + 'add_new_category' => '增加新分类', + 'add_translation' => '增加翻译', + 'admin' => '管理员', + 'alerts' => '接收你附近的报道', + 'alerts_alert_me' => '如果有新的报道加入,或在附近有新的报告,警告我', + 'alerts_btn_send' => '保存我的设置', + 'alerts_email' => '邮箱地址:', + 'alerts_enter_email' => '输入邮箱地址', + 'alerts_enter_mobile' => '输入手机号码 ,包含国家区号(+86 是中国) [暂时没有开通]', + 'alerts_get' => '接收你附近的报道', + 'alert_has_been' => '提醒已经被', + 'alerts_mobile_phone' => '手机:', + 'alerts_place_spot' => '在下面地图上选择一个中心点, 系统将把一定范围内的最新报道发送给你.', + 'alerts_place_spot2' => '如果您无法找到您的地址,请在地图上标注正确的地址', + 'alerts_rss' => 'RSS 订阅(复制下面的地址)', + 'alerts_select_city' => '选择城市', + 'alerts_step1_select_city' => '第一步: 选择你关注的城市或位置', + 'alerts_step2_send_alerts' => '第二步: 发送最新案例至我的邮箱', + 'alerts_step3_select_catgories' => '第三步: 选择分类', + 'alert_confirm_previous' => '验证我之前的申请', + 'alert_saved' => '您的提醒已经保存!', + 'all' => '其他', + 'allowed' => '允许', + 'allowed_tags' => '允许的HTML标签: "%s".', + 'allowed_iframes' => '%s的:内部框架只能在允许的。', + 'all_categories' => '全部分类', + 'all_time' => '所有时间', + 'and' => '和', + 'api' => 'API', + 'approve' => '激活', + 'approved' => '已激活', + 'approved_reports' => '己激活的报道', + 'approve_this_report' => '激活这篇报道', + 'approximate' => '类似的', + 'archive' => '档案', + 'archived' => '已归档', + 'ascending' => '升序', + 'at' => '在', + 'author' => '作者', + 'auto_checkin' => '自动签入', + 'avg_reports_per_day' => '平均每日报道数', + 'awaiting_approval' => '等待激活', + 'awaiting_verification' => '未解决', + 'badge' => '徽章', + 'badges' => '获得的徽章', + 'badge_image' => '徽章图像', + 'badge_image_upload_your_own' => '或者你可以上传你自己的徽章图像。', + 'badge_pack' => '徽章包', + 'badge_select' => '选择一个徽章', + 'blog' => '博客', + 'browse_profiles' => '浏览个人资料', + 'cancel' => '取消', + 'categories' => '分类', + 'category' => '分类', + 'category_filter' => '分类过滤', + 'category_has_been' => '这个分类已经存在 ', + 'category_name' => '分类名称', + 'change_date_range' => '更改日期范围', + 'change_password' => '更改密码', + 'change_picture' => '修改图像', + 'choose' => '选择一个', + 'choose_data_points' => '选择下载的数据点', + 'choose_date_range' => '自定义时间范围', + 'choose_field_type' => '选择域类型', + 'cleanurl' => '简洁链接', + 'clear' => '清除', + 'clear_map' => '清除地图', + 'close' => '关闭', + 'clusters' => '群', + 'color' => '颜色', + 'comment' => '评论', + 'comments' => '评论', + 'comment_details' => '评论正文', + 'configuration_saved' => '你的设置保存了!', + 'configure' => '设置', + 'confirm_email_successful' => '您已经成功地确认您的电子邮件地址!请在下面登录。', + 'confirm_email_successful_and_approval' => '您已成功确认您的电子邮件地址!你登录之前,管理员必须批准您的帐户', + 'confirm_email_failed' => '电子邮件认证失败!您可以在下面申请重新认证。', + 'contact' => '联系我们', + 'contact_code' => '安全码', + 'contact_email' => '您的电子邮箱地址', + 'contact_message' => '信息', + 'contact_message_has_send' => '您的信息已发送至', + 'contact_name' => '您的姓名', + 'contact_phone' => '您的电话号码', + 'contact_send' => '发送信息', + 'contact_subject' => '信息标题', + 'copyright' => 'Copyright ©', + 'create' => '创建', + 'create_edit' => '创建/编辑', + 'create_new' => '新建', + 'create_new_password' => '创建新密码', + 'create_report' => '创建报道', + 'credibility' => '信誉', + 'current_password' => '密码', + 'custom_fields' => '其它', + 'data' => '信息', + 'date' => '日期', + 'date_format' => '(mm/dd/yyyy)', + 'date_time' => '时间日期', + 'day' => '日', + 'deactivate' => '解除', + 'default_location_name' => '肯尼亚内罗毕', + 'delete' => '删除', + 'deleted' => '已删除', + 'deletes' => '删除', + 'delete_disabled' => '删除无效项', + 'delete_last' => '删除最新的', + 'delete_report' => '删除此报道', + 'delete_selected' => '删除选中的', + 'delete_spam' => '删除垃圾邮件', + 'demo' => '演示', + 'description' => '描述', + 'descending' => '降下', + 'detailed_location_example' => '越精确越好', + 'details' => '详细', + 'direct_report' => '直接报道', + 'disabled' => '无效的', + 'disapprove' => '关闭', + 'download_reports' => '下载报道', + 'download' => '下载', + 'edit' => '编辑', + 'edit_form_fields' => '编辑类型', + 'edit_report' => '编辑报道', + 'email' => '邮箱', + 'email_address' => '邮箱地址', + 'email_configuration' => '邮件服务器设置', + 'email_server_host' => '邮件服务器主机', + 'email_server_password' => '邮件服务器密码', + 'email_server_port' => '邮件服务器端口', + 'email_server_ssl_support' => '邮件服务器SSL支持', + 'email_server_type' => '邮件服务器类型', + 'email_server_username' => '邮件服务器用户名', + 'email_settings_comment_0' => '根据您的设置,必须填入电子邮件地址', + 'email_settings_comment_00' => '如果要通过电子邮件接受报道,请在下面填入您的电子邮件设置。请注意,电子邮件将发送至您的', + 'email_settings_comment_1' => '某些服务器需要完整的电子邮件地址', + 'email_settings_comment_2' => '电子邮件帐号密码', + 'email_settings_comment_3' => '通用端口:25,110,995(Gmail的POP3 SSL),993(Gmail的IMAP SSL)', + 'email_settings_comment_4' => '例如:mail.您的网站.com,imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => '例如:pop3, imap', + 'email_settings_comment_6' => '可用的或不可用的SSL连接', + 'empty' => '---空---', + 'end_point' => '至', + 'error' => '错误!', + 'example' => '示例', + 'example_country' => '肯尼亚', + 'external_apps' => '外部应用程序', + 'external_video_link' => '外部视频链接', + 'facebook' => '脸书', + 'feed' => '反馈', + 'feedback' => '快速反馈', + 'feedback_reports' => '通过发送电子邮件到请给我们介绍一下您的经验反馈', + 'feeds' => '反馈', + 'feed_has_been' => '该反馈已', + 'feed_items' => '反馈项目', + 'feed_name' => '反馈姓名', + 'feed_url' => '反馈链接', + 'field_unused' => '未使用的域', + 'file' => '文件', + 'file_over_max_allowed' => '您的文件超过允许的最大大小。', + 'filters' => '过滤器', + 'filter_reports' => '过滤后的报告', + 'filter_reports_by' => '案例筛选', + 'filter_reports_contain' => '根据包含内容筛选', + 'find' => '找到', + 'find_location' => '寻找位置', + 'first_name' => '名字', + 'force_run_scheduler' => '强制执行时间表', + 'forgot_password' => '忘记密码?', + 'form' => '表单', + 'forms' => '表单', + 'form_description' => '表彰描述', + 'form_edit' => '编辑此表单', + 'form_has_been' => '该表单已', + 'form_title' => '表单标题', + 'from' => '从', + 'full_name' => '全名', + 'geolocation_available' => '地理位置可用', + 'geometry_color' => '颜色', + 'geometry_comments' => '评论', + 'geometry_label' => '表', + 'geometry_strokewidth' => '线条宽度', + 'go' => '前往', + 'hashtag' => 'tag', + 'has_been' => '已被', + 'help' => '救援组织/团队', + 'hidden' => '隐藏', + 'hide' => '隐藏', + 'hide_this_message' => '隐藏这个消息', + 'home' => '主页', + 'how_to_report' => '可以通过那些方式报道案例?', + 'https' => 'HTTPS', + 'id' => 'ID', + 'identify_you' => '用于识别您和网站上的其他用户。', + 'image' => '图像', + 'images' => '图像', + 'image_icon' => '图像/图标', + 'inactive' => '不活动的', + 'inbox' => '收件箱', + 'incident' => '案例', + 'incidents_nearby' => '附近事件', + 'incident_location' => '发生地', + 'include' => '含有', + 'include_categories' => '含有分类', + 'include_custom_fields' => '包括自定义字段', + 'include_description' => '含有描述', + 'include_detail' => '含有尽可能详细的信息', + 'include_latitude' => '含有纬度(Latitude)', + 'include_location_information' => '含有地址信息', + 'include_longitude' => '含有经度(Longitude)', + 'include_personal_info' => '包含个人信息', + 'incoming_media' => '含有媒体', + 'information_evaluation' => '信息评分', + 'input_location' => '输入您的详细地址', + 'insufficient_role' => '您的帐户没有适当的权限登陆,请联系管理员。', + 'in_response_to' => '作为响应', + 'ip_address' => 'IP地址', + 'is_this_your_profile' => '这是您的个人资料吗?', + 'item' => '项目', + 'items' => '项目', + 'item_details' => '项目详情', + 'item_title' => '项目标题', + 'key' => '密匙', + 'keywords' => '关键词', + 'kml_kmz_file' => 'KMZ/KML 文件', + 'kml_kmz_upload' => '上传 KMZ/KML 文件', + 'kml_url' => 'KML链接', + 'laconica' => '浴室', + 'language' => '语言', + 'last' => '最新的', + 'last_month' => '上个月', + 'last_name' => '昵称(网上 ID)', + 'last_year' => '去年', + 'latitude' => '纬度', + 'layers' => '图层', + 'layers_filter' => '更多图层', + 'layer_has_been' => '该图层已', + 'layer_name' => '图层名称', + 'layer_url' => '图层地址', + 'leave_a_comment' => '评论', + 'less_information' => '信息较少', + 'level' => '等级', + 'level_has_been' => '该等级已', + 'level_name' => '等级名', + 'limited' => '受限的', + 'link' => '链接', + 'list' => '清单', + 'loading_reports' => '加载报道', + 'location' => '位置', + 'locations' => '位置', + 'location_example' => '城市, 省 或者 国家', + 'login' => '登录', + 'login_account_creation_successful' => '用户创建成功,您现在可以登录。', + 'login_confirmation_sent' => '一封确认邮件已发送到您注册的电子邮件地址。', + 'login_approval_required' => '帐号创建。您的帐户必须由管理员批准后才能登录。', + 'login_email_doesnt_exist' => '电子邮件地址不存在,请尝试不同的 Email,或创建一个帐户。', + 'login_select_openid' => '请点击您的帐户提供者。', + 'login_with' => '登录', + 'login_userpass' => '电子邮件和密码', + 'login_openid' => '用户号', + 'login_signup' => '登录', + 'login_signup_click' => '创建账户', + 'login_signup_confirmation_message' => '感谢您注册时%1$s。确认您的电子邮件地址,请访问以下网址:%2$s', + 'login_signup_confirmation_subject' => '登录确认', + 'login_signup_admin_approval_message' => '一个新的用户已签署了位于%1$s。批准其注册请至以下网址:%2$s', + 'login_signup_admin_approval_subject' => '新用户 审批', + 'login_signup_approval_message' => '您的用户帐户已被批准对于%1$s。登录到以下网址:%2$s', + 'login_signup_approval_subject' => '用户帐户批准', + 'login_signup_text' => '现在创建一个帐户,享有网站上的更多的功能。', + 'longitude' => '经度', + 'map' => '地图', + 'mark_read' => '标记为已读', + 'mark_unread' => '标记为未读', + 'maximum_filesize' => '最大文件大小', + 'media' => '媒体', + 'media_filter' => '媒体过滤', + 'members' => '会员', + 'manage_your_account' => '管理您的账户', + 'message' => '短信/邮件/微博', + 'messages' => '短信/邮件/微博', + 'message_details' => '短信内容', + 'message_non_numeric_source' => '消息自一个非数字的来源:', + 'mobile' => '移动的', + 'modify' => '修改', + 'modify_date' => '修改时间', + 'month' => '月', + 'more' => '更多', + 'more_information' => '更多信息', + 'multi_country_instance' => '该 Ushahidi 布署是否跨越多个国家', + 'must_confirm_email_address' => '您必须通过确认您的电子邮件地址来访问此部署。如果你失去了你的确认电子邮件,您可以重新发一次。', + 'name' => '名称', + 'nearby_report' => '最近报道', + 'new' => '新的', + 'news' => '新闻', + 'news_feeds' => '新闻订阅', + 'news_source' => '新闻来源', + 'new_category' => '新分类', + 'new_password' => '新密码', + 'new_report' => '新报道', + 'next' => '下一个', + 'no' => '否', + 'no_checkins' => '没有签入记录显示。', + 'no_data' => '没有数据', + 'none' => '无', + 'notices' => '注释', + 'not_approved' => '未激活', + 'not_approved_singular' => '未激活', + 'not_selected' => '---未选中---', + 'not_spam' => '不是垃圾邮件', + 'not_specified' => '未归类', + 'no_reports' => '没有报道', + 'no_results' => '没有结果', + 'off' => '关', + 'official_news' => '官方&媒体消息', + 'on' => '开', + 'option' => '选项', + 'optional' => '可选的', + 'options' => '选项', + 'organization' => '救援组织&团队', + 'organizations' => '组织', + 'organization_description' => '组织描述', + 'organization_email' => '组织电子邮件', + 'organization_has_been' => '该组织已', + 'organization_name' => '组织名', + 'organization_phone_1' => '组织电话 1', + 'organization_phone_2' => '组织电话 2', + 'organization_website' => '组织网站', + 'original' => '原始的', + 'original_description' => '原始描述', + 'original_title' => '原始题目', + 'other_ushahidi_instances' => 'OTHER USHAHIDI INSTANCES', + 'outbox' => '发件箱', + 'outgoing' => '正在发送', + 'page' => '页面', + 'pages' => '页', + 'page_description' => '页面描述', + 'page_has_been' => '该页面已被', + 'page_tab_name' => '页面表名', + 'page_title' => '页面标题', + 'parent_category' => '父类别', + 'password' => '密码', + 'password_again' => '重新输入您的密码', + 'password_changed_successfully' => '密码修改成功!请重新登录。', + 'password_forgot' => '忘记密码了吗?', + 'password_reset_confirm' => '您可以登录邮箱取回新的密码', + 'password_save' => '在这台计算机上保存记录?', + 'past_month' => '一个月内', + 'past_year' => '一年内', + 'pending' => '待定的', + 'per' => '每', + 'personal_information' => '个人信息 选填.', + 'phone' => '电话', + 'photos' => '图片', + 'pictures' => '图片', + 'pictures_and_videos' => '图片 于 视频', + 'pinpoint_location' => '* 使用地点名称或纬度,经度坐标(格式:38.19,85.61),或点击地图找准正确的位置来搜索您的位置。', + 'play' => '播放', + 'please_note' => '请注意', + 'plugins' => '插件', + 'plugin_url' => '插入网站', + 'public_profile' => '公开的个人资料', + 'public_profile_url' => '公开的个人资料地址(URL)', + 'preview' => '预览', + 'preview_item' => '预览项', + 'preview_message' => '预览消息', + 'previous' => '上一个', + 'private' => '私人的', + 'profile_color' => '配置文件的颜色', + 'profile_saved' => '您的设置已保存', + 'quick_stats' => '快速入口', + 'rating' => '评分', + 'read' => 'Leído', + 'receive' => '接收', + 'receive_from' => '接收自', + 'receive_notifications' => '接收提醒', + 'recent_reports' => '最新报道', + 'refresh_news_feeds' => '刷新报道', + 'registered_email' => '注册的电子邮件', + 'remove' => '删除', + 'reply' => '回复', + 'report' => '查看新案例', + 'reports_listed' => '最新案例 (来自当前地图, 按照时间顺序排列)', + 'reporter' => '报道人', + 'reporters' => '报道人', + 'reporter_date' => '报道人日期', + 'reporter_email' => '报道人邮箱', + 'reporter_first_name' => '报道人', + 'reporter_has_been' => '报道人已经', + 'reporter_ip' => '报道人 IP 地址', + 'reporter_last_name' => '昵称(网络 ID)', + 'reporter_level' => '报道人等级', + 'reporter_levels' => '报道人等级', + 'reporter_phone' => '报道人电话', + 'reports' => '最新报道', + 'reports_btn_browse' => '浏览', + 'reports_btn_submit' => '提交', + 'reports_by_this_user' => '这些用户发布的报告', + 'reports_categories' => '分类(至少选择一项)', + 'reports_count' => '%d 报道', + 'reports_date' => '日期', + 'reports_description' => '案例描述', + 'reports_download_csv' => '报告将以 CSV 形式下载', + 'reports_email' => '电子邮件', + 'reports_features' => '特征', + 'reports_find_location' => '选择你附近地址', + 'reports_first' => '姓名', + 'reports_last' => '昵称(网络 ID)', + 'reports_location_name' => '精确位置信息', + 'reports_news' => '新闻来源链接', + 'reports_optional' => '联系方式(可选)', + 'reports_photos' => '上传照片', + 'reports_return' => '回到案例报道页面', + 'reports_select_city' => '选择城市', + 'reports_submitted' => '你的报道已经提交给我们的工作人员. 如有必要我们会尽快联系你.', + 'reports_submit_new' => '提交新的案例报道', + 'reports_time' => '时间', + 'reports_timeline' => '时间线', + 'reports_title' => '标题', + 'reports_video' => '视频链接', + 'report_an_incident' => '报道新案例', + 'report_details' => '报告详情', + 'report_option_1' => '通过发送短信至', + 'report_option_2' => '通过发送电子邮件至', + 'report_option_3' => '通过用热门标签发送推特', + 'report_option_4' => '在网站上报道新案例', + 'report_option_external_apps' => '通过使用一个应用程序', + 'report_saved' => '你的报道已经保存', + 'report_title' => '标题', + 'request_information' => '需求更多的信息', + 'request_location' => '需求地址', + 'required' => '必须项', + 'requirements' => '需求', + 'resend_confirm_email' => '重发确认邮件', + 'reset' => '重置', + 'reset_all_filters' => '清除所有筛选条件', + 'reset_password' => '重置密码', + 'retrieve_city_names' => '从选择的国家获取城市名', + 'riverid_information' => '账户管理由%s提供服务。', + 'riverid_exists_login' => '你已经有一个帐户用CrowdmapID管理! 请尝试使用CrowdmapID 电子邮件地址和密码。', + 'role' => '角色', + 'rss' => '订阅RSS', + 'save' => '保存', + 'saved' => '已保存', + 'save_add_new' => '保存 & 添加一个', + 'save_close' => '关闭并保存', + 'save_report' => '保存', + 'schedule' => '日程', + 'scheduler' => '日程设定', + 'scheduler_day' => '日', + 'scheduler_hour' => '时', + 'scheduler_log' => '日程设定记录', + 'scheduler_minute' => '分', + 'scheduler_weekday' => '星期', + 'search' => '搜索', + 'search_results' => '搜索结果', + 'security_code' => '验证码', + 'select_all' => '选择所有', + 'select_field_type' => '选择域类型', + 'select_form_type' => '选择种类类型', + 'select_in_map' => '在地图上选择', + 'select_multiple' => '选择全部需要的', + 'select_one' => '请确认您已经勾选了其中一项', + 'select_theme' => '选择主题', + 'send' => '发送', + 'send_confirmation' => '发送确认邮件', + 'sending_to' => '发送到', + 'sent' => '发送', + 'sent_by' => '发送人', + 'server_address' => '服务器地址', + 'server_type' => '服务器类型', + 'service' => '服务器', + 'service_username' => '服务器用户名', + 'service_user_id' => '服务器用户ID', + 'share' => '分享', + 'shared_data' => '分享数据', + 'share_has_been' => '分享成功', + 'sharing' => '分享', + 'shorter_map' => '段地图', + 'show' => '显示', + 'show_all' => '显示所有', + 'show_messages' => '显示消息', + 'showing_reports_from' => '显示报道从%1$s 到 %2$s', + 'site' => '网站', + 'site_email_address' => '网站邮箱地址', + 'site_url' => '网站地址', + 'smaller_map' => '小地图', + 'sms' => '短信', + 'sorry_no_badges' => '对不起,您还没有任何徽章。', + 'source' => '来源', + 'source_name' => '来源名称', + 'sort' => '排序', + 'sort_by' => '排序方式', + 'source_url' => '来源地址 URL', + 'spam' => '垃圾邮件', + 'ssl_support' => 'SSL 支持?', + 'start_point' => '来自', + 'step' => '步骤', + 'submit' => '报道新案例', + 'submitted_by' => '提交经 %1$s 通过 %2$s', + 'submit_sms' => '用短信提交', + 'submit_sms1' => '发送短信至', + 'submit_sms2' => '用你的手机', + 'success' => '成功!', + 'successfuly_imported' => '导入成功', + 'surname' => '名字', + 'survey' => '新开线路', + 'system' => '系统', + 'taller_map' => '高地图', + 'tcp_port' => 'TCP 端口', + 'themes' => '主题', + 'theme_default' => 'Ushahidi 默认主题', + 'theme_settings' => '主题', + 'this' => '此', + 'this_day' => '今天', + 'this_month' => '本月', + 'this_week' => '本周', + 'this_year' => '今年', + 'this_is_your_profile' => '这是您的资料。', + 'time' => '时间', + 'title' => '标题 ', + 'to' => '去', + 'today' => '今天', + 'today_at' => '今天', + 'token' => '令牌', + 'total_reports' => '全部报告', + 'translated' => '已翻译', + 'translated_description' => '翻译描述', + 'translated_title' => '翻译标题', + 'translate_to' => '翻译成', + 'translation' => '译文', + 'translation_saved' => '译文已保存', + 'trusted' => '受信任的', + 'type' => '来源', + 'twitter' => '推特', + 'unable_send_email' => '无法发送电子邮件。', + 'uncategorized_reports' => '未分类的报告', + 'unread' => '未读', + 'unverified' => '未验证', + 'update_feeds' => '升级需求', + 'upload' => '上传', + 'upload_guide' => '报道上载说明:-', + 'upload_docs_1' => 'XML 上载说明', + 'upload_docs_2' => 'CSV上载说明', + 'upload_file' => '上传文件', + 'upload_reports' => '上传报道', + 'upload_reports_custom_forms' => '自定义字段列必须有与其form_id 附加到它们例如自定义字段测试,默认的形式,其ID为1时,这将是Test-1。 如果您将导入自定义表单字段, 你保证', + 'upload_reports_detail_1' => '您可以用以下表格将事件导入 Ushahidi 的引擎', + 'upload_reports_detail_2' => '上载的视频要用CSV或XML格式', + 'upload_reports_detail_3' => '当事件ID已经存在于数据库中, 该CSV/ XML文件中的条目将被忽略。', + 'upload_reports_detail_4' => '必须至少包括“事件名称”和“事件日期”', + 'upload_reports_detail_4b' => '如果没有提供经度和纬度列将使用 Google Geocoder 的地理编码,位置。', + 'upload_reports_detail_4c' => '要是进口多信息: 个人信息或者自己定义的表格字段', + 'upload_reports_detail_4d' => '至少要包含一项个人信息(例如名,姓,电子邮件等)。空记录不会被导入。', + 'upload_reports_detail_4e' => '你的项下拉框,单选按钮和复选框符合规定的自定义字段选项在你的榜样', + 'upload_reports_detail_4f' => '复选框选项之间用逗号分隔 例如,如果果您选择的选择是苹果,芒果和葡萄您的输入应“苹果,芒果,葡萄”', + 'upload_reports_detail_4g' => '日期字段的值是按以下格式: m月d日yyyy 年例如2012年10月3日 = 10/03/2012', + 'upload_reports_detail_5' => 'CSV报告示例', + 'upload_reports_detail_6' => '#,案例标题,案例日期,位置,描述,分类,认可,验证
+ "1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"二","抢劫","2009-03-18 10:10:00"."阿克拉","抢劫发生无处不在","骚乱, 死亡, 财产损失, ",是,否,"5.55","-0.2166667"', + 'upload_successful' => '上传成功', + 'upload_video' => '上传视频', + 'url' => '链接', + 'user' => '用户', + 'username' => '用户名', + 'ushahidi_admin' => 'Ushahidi 管理员', + 'verification' => '验证状态', + 'verified' => '已解决', + 'verified_reports' => '问题已经解决', + 'verify' => '解决', + 'verify_this_report' => '问题已经解决', + 'version' => '版本', + 'via' => '来自', + 'video' => '视频', + 'view' => '显示', + 'views' => '显示', + 'view_all' => '更多', + 'view_all_feeds' => '显示所有源', + 'view_all_reports' => '显示所有报告', + 'view_items' => '查看新闻条目', + 'view_more' => '显示更多', + 'view_public_profile' => '查看公开的资料', + 'view_report' => '查看报道', + 'view_reports' => '查看报道', + 'view_video' => '看视频', + 'visible' => '可见', + 'waiting_approval' => '等待批准', + 'waiting_verification' => '等待验证', + 'wider_map' => '宽地图', + 'web_form' => 'Web表格', + 'web' => '网络', + 'weight' => '重量', + 'yes' => '是', + 'yesterday' => '昨天', + 'your_dashboard' => '您的控制面板', + 'your_file' => '您的文件', + 'zoom_in' => '放大', + 'zoom_out' => '缩小', +); diff --git a/application/i18n/zh_CN/upgrade.php b/application/i18n/zh_CN/upgrade.php new file mode 100755 index 0000000000..45f24e3a7d --- /dev/null +++ b/application/i18n/zh_CN/upgrade.php @@ -0,0 +1,60 @@ + array( + 'between' => '无效的输入数据。0表示否,1表示是。', + ) , + 'upgrade_automatic' => '自动升级', + 'upgrade_available' => '可用的更新', + 'upgrade_continue_btn_text' => '继续', + 'upgrade_db_btn_text' => '升级', + 'upgrade_db_text_1' => '我们将把您的数据库自', + 'upgrade_db_text_2' => '版本升级至新的版本', + 'upgrade_db_text_3' => '点击“升级”按钮,在我们升级的过程中您可以放松一下。', + 'upgrade_db_text_4' => '如果您希望我们为您备份数据库,只需要点击下面的按钮,就可以轻松备份了', + 'upgrade_db_text_5' => '在升级时是否备份数据库?(强烈推荐您如此做)', + 'upgrade_db_title' => 'Ushahidi 数据库升级', + 'upgrade_db_info' => 'Ushahidi 软件已更新!在继续操作之前,你需要把你的数据库更新至最新版本 (%s)。', + 'upgrade_db_up_to_date' => '你的数据库版本是最新的。', + 'upgrade_failed' => '升级失败', + 'upgrade_manual' => '手动升级', + 'upgrade_status' => 'Ushahidi 升级情况', + 'upgrade_text_1' => '下面的说明细节如何手动升级你 Ushahidi', + 'upgrade_text_2' => '
下载
', + 'upgrade_text_3' => '
- 下载最新的 Ushahidi', + 'upgrade_text_4' => '
备份
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- 只是以防万一, 建议,整个备份 Ushahidi 当前的配置。
复制文件
- 解压缩下载的文件
- 依赖于不同的服务器系统,使用您的首选工具/模式 (e.g. Telnet, FTP, SSH) 登录到服务器和更换内容的所有文件夹与最新的新构建。
升级数据库
- 首先确定你的数据库架构版本 db_version 在配置表中的值或在本页面最上面查看Ushahidi升级信息。
- 如果你的版本是 version 25, 你需要从 25-26, 26-27, 27-28 依次更新到最新的 SQL /sql 目录.
- 同时,数据库客户端也要通过执行 upgradex-x.sql 文件更新.
', + 'upgrade_tables' => 'Step 3: 查看 sql 文件夹. 手动运行 upgrade-.sql 文件开始从当前数据库版本更新', + 'upgrade_text_5' => 'Step 4: 点击 "Continue" 按钮更新所需要的数据表', + 'upgrade_text_6' => '要自动更新,请点击下面的按钮', + 'upgrade_title_text' => '你当前使用在 %3$s上运行Ushahidi v%1$s 和数据库版本 %2$d ', + 'upgrading' => '正在升级', + 'upgrade_ftp_text' => '继续简易升级,要求提供下列信息的服务器,您的网站上托管。', + 'upgrade_ftp_hostname' => 'FTP 主机名: Example: "localhost"', + 'upgrade_ftp_password' => 'FTP 密码:', + 'upgrade_ftp_username' => 'FTP 账户:', + 'upgrade_status_info' => '您已经更新到最新版本 Ushahidi.', + 'upgrade_status_info_2' => '不需要再更新。', + 'upgrade_db_version' => '数据库版本: ', + 'upgrade_warning_software_version' => '警告:version.php 和数据库软件版本不匹配。', + 'upgrade_warning_db_version' => '警告:在version.php 数据库版本与数据库不匹配。', + 'upgrade_database' => '数据库:', + 'ushahidi_release_version' => 'Ushahidi %s', + 'beta' => '测试版', + 'download' => '下载最新的ushahidi版本', + 'log_file' => '日志文件', + 'successfully_downloaded' => '下载成功。解压中...', + 'failed_downloading' => '下载失败', + 'successfully_unpacked' => '升级成功。正在复制文件...', + 'failed_unpacking' => '解压失败', + 'successfully_copied' => '复制成功。正在升级数据库……', + 'failed_copying' => '复制文件失败。', + 'backup_success' => '数据库备份并升级成功。', + 'backup_failed' => '数据库备份失败。', + 'dbupgrade_success' => '数据库升级成功。', + 'deleting_files' => '正在删除下载文件...', + 'upgrade_success' => '升级成功。查看日志文件', +); diff --git a/application/i18n/zh_TW/alerts.php b/application/i18n/zh_TW/alerts.php new file mode 100755 index 0000000000..7c359cb2ac --- /dev/null +++ b/application/i18n/zh_TW/alerts.php @@ -0,0 +1,60 @@ + array( + 'email' => '請輸入有效的電子郵件信箱', + 'email_check' => '針對您所選擇區域的通知電子郵件信箱已經登錄', + 'length' => '電子郵件信箱必須在4~64字元之間', + 'required' => '如果勾選了電子信箱,則電子信箱為必填', + ) , + 'alert_country' => array( + 'single_country' => '您報告的事件地點跨越了本網站部署的國家範圍。請確保事件地點是在 %s 國家或地區範圍內.', + ) , + 'alert_lat' => array( + 'between' => '請在地圖上選擇正確的地點', + 'required' => '請在地圖上選擇正確的地點', + ) , + 'alert_lon' => array( + 'between' => '請在地圖上選擇正確的地點', + 'required' => '請在地圖上選擇正確的地點', + ) , + 'alert_mobile' => array( + 'length' => '手機號碼長度不符', + 'mobile_check' => '針對您所選擇區域的通知簡訊號碼已經登錄', + 'numeric' => '目前所填入的手機號碼無效,請填入國碼', + 'one_required' => '手機號碼或電子郵件信箱之一為必填', + 'required' => '如果勾選了手機,則手機號碼為必填', + ) , + 'alert_radius' => array( + 'in_array' => '請在地圖上設定你欲選擇的半徑範圍', + 'required' => '請在地圖上設定你欲選擇的半徑範圍', + ) , + 'alert_recipient' => array( + 'required' => '您還沒有設置一個收件人,用來接收本站發布的警示信息。', + ) , + 'alerts_subscribed' => '您已訂閱了本站以下類別的事件報導的警示信息', + 'code_already_verified' => '這組認證碼已經被使用過', + 'code_not_found' => '請確認已輸入正確的認證碼', + 'code_verified' => '認證已經完成,當所選擇的地點有通報事件時,您將會收到通知', + 'confirm_request' => '確認你的事件通知申請,請到', + 'create_more_alerts' => '返回事件通知頁,以設定更多通知', + 'email_alert_request_created' => '認證申請已完成,認證碼訊息已經送至', + 'email_code' => '請輸入以下電子信箱所收到的認證碼', + 'email_error_head' => '您的電子信箱事件通知申請並未被儲存!', + 'email_ok_head' => '您的電子信箱事件通知申請已經被儲存!', + 'error' => '系統不能處理您的驗證請求!', + 'mobile_alert_request_created' => '認證申請已完成,認證碼訊息已經送至 ', + 'mobile_code' => '請輸入以下手機號碼所收到的簡訊認證碼', + 'mobile_error_head' => '您的手機簡訊事件通知申請並未被儲存', + 'mobile_ok_head' => '您的手機簡訊事件通知申請已經被儲存', + 'settings_error' => '系統配置不正確,導致不能處理警示信息', + 'unsubscribe' => '收到這個訊息是由於您曾經設定事件通知。如果你不想收到事件通知,請到 ', + 'unsubscribed' => '您將不會再收到事件通知 ', + 'unsubscribe_failed' => '系統無法處理取消事件通知。請確認已輸入正確的網址', + 'verification_email_subject' => '事件通知- 認證訊息', + 'verify_code' => '在完成申請程序之前,您將不會收到關於這個點的任何訊息.', +); diff --git a/application/i18n/zh_TW/auth.php b/application/i18n/zh_TW/auth.php new file mode 100755 index 0000000000..5e67e999a5 --- /dev/null +++ b/application/i18n/zh_TW/auth.php @@ -0,0 +1,75 @@ + array( + 'email' => '請確認email為正確資料', + 'exists' => '抱歉,這個email帳號已經註冊了', + 'length' => 'email資料需為4~64個字元', + 'required' => 'email為必填', + ) , + 'name' => array( + 'length' => '姓名欄位必須填入3~100個字元', + 'required' => '姓名為必填', + 'standard_text' => '使用者名稱出現不能使用的字元', + ) , + 'current_password' => array( + 'length' => '密碼至少8個字元', + 'login error' => '請確認您是否輸入正確的電子郵件和密碼', + 'matches' => '請輸入一樣的密碼在兩個密碼欄位裡', + 'required' => '密碼欄位是必要的', + 'alpha_dash' => '密碼欄位必須有英文字元, 另外, 其餘符號只能是#、@、數字、底線或破折號', + 'incorrect' => '該帳號您輸入的密碼不正確, 請再試一次', + ) , + 'new_password' => array( + 'length' => '密碼必須為5~16個字元', + 'login error' => '請確認你已輸入正確的密碼.', + 'matches' => '請在兩個密碼欄位中輸入一樣的密碼.', + 'required' => '密碼為必填欄位.', + 'alpha_dash' => '密碼只能由字母,數字和符號#,@,_以及-組成', + ) , + 'password' => array( + 'default' => '之前曾有試圖登入的錯誤', + 'length' => '密碼必須為5~16個字元', + 'login error' => '請確認你已輸入正確的密碼', + 'matches' => '請在兩個密碼欄位中輸入一樣的密碼', + 'required' => '密碼為必填欄位', + 'riverid server down' => '認證伺服器當機, 請稍後再試', + 'riverid' => '%s', + 'alpha_dash' => '密碼只能由字母,數字和符號#,@,_以及-組成', + ) , + 'password_confirm' => array( + 'matches' => '密碼確認欄位資料需與密碼欄位資料一致', + ) , + 'resetemail' => array( + 'email' => '請確認輸入的email是正確的', + 'invalid' => '抱歉,系統內沒有你的email資料', + 'required' => 'email欄位為必填', + ) , + 'role' => array( + 'superadmin_modify' => '只有超級管理員可以修改超級管理員或升級用戶到管理員.', + ) , + 'roles' => array( + 'alpha_numeric' => '無效的角色.', + 'length' => '角色地欄位字元長度需於5~30之間.', + 'required' => '請至少選擇一種角色', + 'values' => '必須選擇是管理者或使用者', + ) , + 'token' => array( + 'invalid' => '忘記密碼憑證無效', + 'required' => '需要忘記密碼的憑證', + ) , + 'username' => array( + 'admin' => '管理者權限無法被修改', + 'alpha_numeric' => '公告頁面的URL網址地址只能包含數字和字母.', + 'exists' => '抱歉,這個使用者名稱已經被註冊', + 'length' => '使用者帳號必須為2~16個字元', + 'login error' => '請確認你已輸入正確的使用者名稱', + 'required' => '使用者帳號為必填', + 'superadmin' => '超級管理者權限無法被修改', + 'csrf' => '可能的的CSRF(跨站請求偽造)攻擊。你真的要建立/編輯用戶?', + ) , +); diff --git a/application/i18n/zh_TW/bug.php b/application/i18n/zh_TW/bug.php new file mode 100755 index 0000000000..deb4b0f0a4 --- /dev/null +++ b/application/i18n/zh_TW/bug.php @@ -0,0 +1,28 @@ + array( + 'default' => '請輸入有效的安全碼', + 'required' => '請輸入安全碼', + ) , + 'email' => array( + 'email' => '電子信箱欄位顯示未填入有效的資料', + 'length' => '電子信箱欄位需填入4~46個字元', + 'required' => '如果已勾選,則電子信箱為必填', + ) , + 'error' => array( + 'required' => '錯誤欄位為必填', + ) , + 'subject' => array( + 'length' => '主題欄位需至少三個字元', + 'required' => '主題欄位為必填', + ) , + 'yourname' => array( + 'length' => '姓名欄位至少需三個字元', + 'required' => '姓名欄位為必填.', + ) , +); diff --git a/application/i18n/zh_TW/category.php b/application/i18n/zh_TW/category.php new file mode 100755 index 0000000000..7b641849b8 --- /dev/null +++ b/application/i18n/zh_TW/category.php @@ -0,0 +1,33 @@ + array( + 'length' => '顏色欄位字元至少需六碼.', + 'required' => '顏色欄位為必填.', + ) , + 'category_description' => array( + 'required' => '描述欄位為必填.', + ) , + 'category_image' => array( + 'size' => '請確認上傳地圖檔未超過50KB.', + 'type' => '請確認上傳圖檔格式,需為JPG,PNG或GIF.', + 'valid' => '請確認上傳圖檔為正確檔案格式', + ) , + 'category_title' => array( + 'length' => '標題欄位字元長度為3~80之間.', + 'required' => '標題欄位為必填.', + ) , + 'parent_id' => array( + 'already_parent' => '要創建的子類別已在父類別中存在.', + 'exists' => '上一層分類並不存在.', + 'numeric' => '上一層分類代码需為數字.', + 'parent_trusted' => '上一層分類不能是一個有特殊性的類別', + 'required' => '上一層分類為必填.', + 'same' => '分類與上一層分類名稱不得相同.', + 'special' => '有特殊性的類別不能創建子類別', + ) , +); diff --git a/application/i18n/zh_TW/comments.php b/application/i18n/zh_TW/comments.php new file mode 100755 index 0000000000..5b70ff29fb --- /dev/null +++ b/application/i18n/zh_TW/comments.php @@ -0,0 +1,25 @@ + array( + 'default' => '請輸入有效的安全碼', + 'required' => '請輸入安全碼', + 'valid' => '輸入了錯誤的驗證碼', + ) , + 'comment_author' => array( + 'length' => '名字至少為3個字元', + 'required' => '姓名欄位為必填', + ) , + 'comment_description' => array( + 'required' => '訊息欄位為必填', + ) , + 'comment_email' => array( + 'email' => '請確認已輸入正確的Email', + 'length' => 'Email資料需為4~64位元', + 'required' => '當選擇Email時,則Email欄位為必填', + ) , +); diff --git a/application/i18n/zh_TW/contact.php b/application/i18n/zh_TW/contact.php new file mode 100755 index 0000000000..5179f6e354 --- /dev/null +++ b/application/i18n/zh_TW/contact.php @@ -0,0 +1,32 @@ + array( + 'default' => '請輸入正確的安全碼', + 'valid' => '請輸入有效的安全碼', + 'required' => '請輸入安全碼', + ) , + 'contact_email' => array( + 'email' => '請確認已輸入有效的Email', + 'length' => 'Email資料需為4~64字元', + 'required' => '如果已經選擇Email,則Email欄位為必填', + ) , + 'contact_message' => array( + 'required' => '訊息欄位為必填', + ) , + 'contact_name' => array( + 'length' => '姓名欄位至少為1個字元', + 'required' => '姓名欄位為必填', + ) , + 'contact_subject' => array( + 'length' => '主題欄位置少為3個字元', + 'required' => '主題欄位為必填', + ) , + 'email_send' => array( + 'failed' => '傳送您的訊息中發生了錯誤', + ) , +); diff --git a/application/i18n/zh_TW/core.php b/application/i18n/zh_TW/core.php new file mode 100755 index 0000000000..a7ab9d0db9 --- /dev/null +++ b/application/i18n/zh_TW/core.php @@ -0,0 +1,35 @@ + '配置文件', + 'controller' => '控制器', + 'driver' => '驅動', + 'driver_implements' => '%s驱动的%s库必须采用%s界面', + 'driver_not_found' => '%s驅動的%s庫不存在', + 'errors_disabled' => '您可以連接到主頁再試一遍.', + 'error_file_line' => '%s [%s]:', + 'generic_error' => '無法完成請求', + 'helper' => '幫助', + 'invalid_filetype' => '您請求的文件類型.%s,不被允許訪問', + 'invalid_method' => '无效的调用方法%s,在%s的調用中', + 'invalid_property' => '屬性%s並不存在於類%s中.', + 'library' => '库', + 'log_dir_unwritable' => '日誌目錄不可寫:%s', + 'model' => '模型', + 'no_controller' => 'Ushahidi無法確定執行此請求的控制器: %s', + 'no_default_route' => '請在config/routes.php中設置默認路由', + 'page_not_found' => '您所要求的頁面%s,沒有找到', + 'report_bug' => '報告給Ushahidi', + 'resource_not_found' => '您請求的資源%s, %s,沒有找到', + 'stack_trace' => '堆棧跟踪', + 'stats_footer' => '載入用時{execution_time}秒,使用內存{memory_usage}. 由Ushahidi v%s生成.', + 'text_direction' => 'ltr', + 'there_can_be_only_one' => 'Ushahidi的每一個請求只能有一個實例', + 'uncaught_exception' => '未捕獲 ​​%s:%s 位於文件%s的第%s行', + 'view' => '查看', + 'view_set_filename' => '調用Render之前,您必須設置視圖文件名', +); diff --git a/application/i18n/zh_TW/database.php b/application/i18n/zh_TW/database.php new file mode 100755 index 0000000000..64da3d8afb --- /dev/null +++ b/application/i18n/zh_TW/database.php @@ -0,0 +1,10 @@ + '數據庫錯誤: %s', + 'table_not_found' => '無法在數據庫中找到表"%s"。請確認您正在使用Ushahidi最新版本中的數據庫.', +); diff --git a/application/i18n/zh_TW/datetime.php b/application/i18n/zh_TW/datetime.php new file mode 100755 index 0000000000..d75678faaa --- /dev/null +++ b/application/i18n/zh_TW/datetime.php @@ -0,0 +1,86 @@ + '上午', + 'friday' => array( + 'abbv' => '週五', + 'full' => '週五', + ) , + 'monday' => array( + 'abbv' => '週一', + 'full' => '週一', + ) , + 'pm' => '下午', + 'saturday' => array( + 'abbv' => '週六', + 'full' => '週六', + ) , + 'sunday' => array( + 'abbv' => '週日', + 'full' => '週日', + ) , + 'thursday' => array( + 'abbv' => '週四', + 'full' => '週四', + ) , + 'tuesday' => array( + 'abbv' => '週二', + 'full' => '週二', + ) , + 'wednesday' => array( + 'abbv' => '週三', + 'full' => '週三', + ) , + 'january' => array( + 'abbv' => '1月', + 'full' => '一月', + ) , + 'february' => array( + 'abbv' => '2月', + 'full' => '二月', + ) , + 'march' => array( + 'abbv' => '3月', + 'full' => '三月', + ) , + 'april' => array( + 'abbv' => '4月', + 'full' => '四月', + ) , + 'may' => array( + 'abbv' => '5月', + 'full' => '五月', + ) , + 'june' => array( + 'abbv' => '6月', + 'full' => '六月', + ) , + 'july' => array( + 'abbv' => '7月', + 'full' => '七月', + ) , + 'august' => array( + 'abbv' => '8月', + 'full' => '八月', + ) , + 'september' => array( + 'abbv' => '9月', + 'full' => '九月', + ) , + 'october' => array( + 'abbv' => '10月', + 'full' => '十月', + ) , + 'november' => array( + 'abbv' => '11月', + 'full' => '十一月', + ) , + 'december' => array( + 'abbv' => '12月', + 'full' => '十二月', + ) , +); diff --git a/application/i18n/zh_TW/feeds.php b/application/i18n/zh_TW/feeds.php new file mode 100755 index 0000000000..6fae95c0ed --- /dev/null +++ b/application/i18n/zh_TW/feeds.php @@ -0,0 +1,19 @@ + '日期', + 'feed_name' => array( + 'length' => 'RSS名稱的長度應在3至70個字元之間', + 'required' => '請輸入RSS的名稱.', + ) , + 'feed_url' => array( + 'required' => '請輸入RSS的源地址(URL).', + 'url' => '請輸入一個正確的URL。比如. http://www.ushahidi.com', + ) , + 'source' => '來源', + 'title' => '標題', +); diff --git a/application/i18n/zh_TW/footer.php b/application/i18n/zh_TW/footer.php new file mode 100755 index 0000000000..b40ffb6f61 --- /dev/null +++ b/application/i18n/zh_TW/footer.php @@ -0,0 +1,9 @@ + 'php5-curl 還沒有安裝到系統中', +); diff --git a/application/i18n/zh_TW/form.php b/application/i18n/zh_TW/form.php new file mode 100755 index 0000000000..84020b95c0 --- /dev/null +++ b/application/i18n/zh_TW/form.php @@ -0,0 +1,48 @@ + array( + 'default' => '之前所提供的欄位預設值為無效資料.', + 'length' => '欄位名稱不得超過200個字元', + ) , + 'field_height' => array( + 'between' => '請輸入欄位高度值,需介於0~50', + ) , + 'field_isdate' => array( + 'between' => '你輸入的資料不正確', + 'required' => '請確認是否新增日期欄位', + ) , + 'field_name' => array( + 'length' => '欄位名稱需為3~100個字元', + 'required' => '請輸入欄位名稱', + 'duplicate' => '您所輸入的欄位名稱在此表格已存在, 請輸入其它的名稱', + ) , + 'field_required' => array( + 'between' => '你輸入的資料不正確', + 'required' => '請確認是否新增欄位', + ) , + 'field_type' => array( + 'numeric' => '請選擇一個正確的欄位類型', + 'required' => '請選擇一個欄位類型', + ) , + 'field_width' => array( + 'between' => '請輸入欄位寬度值,需介於0~300', + ) , + 'form_description' => array( + 'required' => '請輸入表格描述', + ) , + 'form_id' => array( + 'default' => '預設的表格無法被刪除', + 'numeric' => '請選擇欲增加欄位的表格', + 'required' => '請選擇欲增加欄位的表格', + ) , + 'form_title' => array( + 'length' => '表格名稱需為3~100個字元', + 'required' => '請輸入表格名稱', + 'exists' => '有此標題的表格已存在, 請選擇其它的', + ) , +); diff --git a/application/i18n/zh_TW/imap.php b/application/i18n/zh_TW/imap.php new file mode 100755 index 0000000000..1dfe0beba1 --- /dev/null +++ b/application/i18n/zh_TW/imap.php @@ -0,0 +1,10 @@ + '無法開啟 IMAP stream', + 'unsupported_service' => '不支持的電子郵件服務器', +); diff --git a/application/i18n/zh_TW/installer.php b/application/i18n/zh_TW/installer.php new file mode 100755 index 0000000000..1bd74b3664 --- /dev/null +++ b/application/i18n/zh_TW/installer.php @@ -0,0 +1,84 @@ + '根路徑', + 'database' => '資料庫', + 'database_host' => '資料庫主機', + 'database_host_description' => '如果您運行Ushahidi在自己的電腦上,該值可能是“localhost”;如果您從Web服務器運行Ushahidi,你需要從您的網站託管服務提供商得到你的主機信息。', + 'database_name' => '數據庫名', + 'database_name_description' => '您要运行Ushahidi的数据库名称', + 'db_information_link' => '有關詳細信息,請查看這篇文章 wiki上關於數據庫的會談更多細節。', + 'default_language' => '默認語言(區域)', + 'default_language_description' => '每個Ushahidi部署帶有語言翻譯建立了一套。你也可以添加自己的', + 'disable' => '禁用', + 'enable' => '啟用', + 'error_summary' => '下面列出的是我們遇到的錯誤的匯總', + 'files_location_text' => '服務器上的位置放置的Ushahidi文件。我們已自動檢測到這個值,請確保它是正確的。 如果該字段是空的,不用擔心,它是指安裝在ushahidi是頂層目錄。', + 'finished' => '已完成', + 'general' => '一般的', + 'google_key' => 'Google API Key', + 'google_key_description' => '任何人可以得到一個API 鑰匙. 獲取一個', + 'go_back' => '返回', + 'index' => array( + 'advanced' => '高級安裝', + 'advanced_installation_description' => '通過5個步驟完成所有基本設置。這包括服務器,地圖,網站的名稱和聯繫方式。', + 'basic_installation' => '基本安裝', + 'basic_installation_description' => '如果你想要得到快速啟動和運行,選擇此選項,簡單、快捷。你只需要設置網站的根目錄和數據庫的信息​​,稍後可以配置一切。', + 'proceed' => '完成', + 'welcome' => '歡迎來到Ushahidi服務器安裝界面。選擇您想用下面的哪種類型的安裝', + ) , + 'installation_successful' => '安裝成功', + 'mail_server' => '郵件服務器', + 'mail_server_host' => '郵件服務器主機', + 'mail_server_host_description' => '舉例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'mail_server_password' => '郵件服務密碼', + 'mail_server_password_description' => '您登陸Email電子郵箱的密碼', + 'mail_server_port' => '郵件服務器端口', + 'mail_server_port_description' => '常用的端口:25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'mail_server_type' => '郵件服務器類型', + 'mail_server_type_description' => 'Internet邮件访问协议 (IMAP) or 邮局协议 (POP). 有什么区别?', + 'mail_server_username' => '郵件服務賬戶', + 'mail_server_username_description' => '如果您使用Gmail,Hotmail,雅虎郵箱,輸入一個完整的電子郵箱地址作為用戶名。', + 'map' => '地圖', + 'map_provider' => '地圖提供程式', + 'map_provider_description' => 'Ushahidi與三個地圖提供程式能很好的工作:谷歌,必應(Bing)或Open Street Map。選擇您所在地區的最詳細的一個。', + 'other_steps' => '其他步驟...', + 'password' => '密碼', + 'password_description' => '數據庫密碼', + 'previous' => '上一步', + 'restart_apache' => '請重啟Apache服務器', + 'select_mail_server_ssl' => '開啟 or 禁用 SSL', + 'select_mail_server_ssl_description' => '有些郵件服務器使用SSL建立連接,因為SSL能提高安全水平。', + 'setup_sms' => '安裝 SMS 服務', + 'site_email' => '網站電子郵箱地址', + 'site_email_alerts' => '網站警示電子郵箱地址', + 'site_email_alerts_description' => '當你的網站訪客註冊電子郵箱接收警示信息,他們將收到來自該地址的郵件。此郵件地址不必是同一網站的電子郵件地址。', + 'site_email_description' => '網站將通過這個電子郵箱地址過濾通信。', + 'site_name' => '站點名稱', + 'site_name_description' => '您的網站名稱', + 'site_tagline' => '網站口號', + 'site_tagline_description' => '你網站的標語、口號', + 'summary' => array( + 'text_1' => '下面列出的文件和文件夾,需要在您的網絡服務器上設置為可寫', + 'text_2' => '

下面是改變文件權限的說明

+ ', + 'text_3' => '在您開始之前,您需要確保以下文件和文件夾在您的網絡服務器上可寫,這涉及到改變文件權限', + 'text_4' => '安裝過程中,請記下一下信息', + ) , + 'table_prefix' => '數據表前綴', + 'table_prefix_description' => '通常你不會更改表前綴。不過,如果你想從一個單一的數據庫中運行多個Ushahidi實例,你可以通過改變這裡的前綴', + 'title' => '標題', + 'to_login' => '登錄, go to', + 'upload_data' => '上傳Report數據', + 'username' => '用戶名', + 'username_description' => '數據庫用戶名', + 'use_credentials' => '並使用下列認證', + 'view_site' => '查看您的網站', +); diff --git a/application/i18n/zh_TW/layer.php b/application/i18n/zh_TW/layer.php new file mode 100755 index 0000000000..60a611dd36 --- /dev/null +++ b/application/i18n/zh_TW/layer.php @@ -0,0 +1,25 @@ + array( + 'length' => '顏色欄位資料必須至少為6個字元', + 'required' => '顏色欄位為必填', + ) , + 'layer_file' => array( + 'type' => '文件地址不包含有效的文件。只接受.KMZ,.KML類型的文件', + 'valid' => '文件地址不包含有效的文件', + ) , + 'layer_name' => array( + 'length' => '姓名欄位需為3~80個字元', + 'required' => '姓名欄位為必填', + ) , + 'layer_url' => array( + 'atleast' => '請至少輸入KML Url 或File', + 'both' => '你無法同時使用一個KML文件和URL鏈接', + 'url' => '請輸入有效的網址,例如:http://www.ushahidi.com/layerl.kml', + ) , +); diff --git a/application/i18n/zh_TW/libraries.php b/application/i18n/zh_TW/libraries.php new file mode 100755 index 0000000000..dcfbef5d9f --- /dev/null +++ b/application/i18n/zh_TW/libraries.php @@ -0,0 +1,27 @@ + '無法連接akismet服務器', + 'akismet_cannot_retrieve' => '无法从Akismet获得回复', + 'api_library_not_found' => 'API庫%s中無法找到%s類。請檢查您的API任務中的路徑表.', + 'askimet_invalid_apikey' => '您的Akismet API密匙無效', + 'clickatell_fopen_error' => '執行打開文件發送方式中發生錯誤!
請檢查PHP是否支持OpenSSL,或PHP是否是5.2之後的版本', + 'clickatell_message_too_long' => '您的驗證信息過長! (目前長度:', + 'clickatell_no_destination_address' => '請寫明收件地址(TO)!', + 'clickatell_no_sender_address' => '請寫明發件地址(FROM)', + 'clickatell_unicode_message_too_long' => '您的Unicode的驗證信息過長! (目前長度:=', + 'clickatell_unsupported_method' => '不支持的方送方式!', + 'invalid_api_library' => 'API庫%s無效。所有API庫都必須是%s的子類型', + 'upgrade_directory_not_deleted' => '目錄%s無法被刪除', + 'upgrade_extracting_error' => '解壓時發生錯誤:%s', + 'upgrade_failed' => '下載最新的Ushahidi中發生錯誤。服務器狀態代碼:', + 'upgrade_file_not_copied' => '無法拷貝文件%s', + 'upgrade_file_not_deleted' => '無法刪除文件%s', + 'upgrade_title' => 'Ushahidi升級腳本', + 'upgrade_zip_error' => '下載的Ushahidi壓縮文件%s無法寫入', + 'riverid_variable_not_available' => '%s 在RiverID類別中無法使用', +); diff --git a/application/i18n/zh_TW/maintenance.php b/application/i18n/zh_TW/maintenance.php new file mode 100755 index 0000000000..cf8d139ca7 --- /dev/null +++ b/application/i18n/zh_TW/maintenance.php @@ -0,0 +1,9 @@ + '很抱歉,我們的網站目前停機維護。請在稍後再試。', +); diff --git a/application/i18n/zh_TW/message.php b/application/i18n/zh_TW/message.php new file mode 100755 index 0000000000..e652f5660b --- /dev/null +++ b/application/i18n/zh_TW/message.php @@ -0,0 +1,27 @@ + array( + 'default' => '請輸入正確的安全碼', + 'required' => '請輸入安全碼', + ) , + 'email' => array( + 'email' => '請確認已輸入有效的Email', + 'length' => 'Email資料需為4~64字元', + 'required' => '如果已經選擇Email,則Email欄位為必填', + ) , + 'message' => array( + 'required' => '回應欄位為必填.', + ) , + 'name' => array( + 'length' => '姓名欄位必須至少3個字元', + 'required' => '姓名欄位是必填', + ) , + 'phone' => array( + 'length' => '電話欄位資料為無效資料.', + ) , +); diff --git a/application/i18n/zh_TW/mhi.php b/application/i18n/zh_TW/mhi.php new file mode 100755 index 0000000000..9e4010157a --- /dev/null +++ b/application/i18n/zh_TW/mhi.php @@ -0,0 +1,23 @@ + array( + 'default' => '請輸入正確的安全碼.', + 'required' => '請輸入正確的安全碼.', + ) , + 'contact_email' => array( + 'email' => '請於信箱欄位內填入正確資料.', + 'required' => '請填入正確的信箱資料.', + ) , + 'contact_message' => array( + 'required' => '訊息欄位為必填.', + ) , + 'contact_subject' => array( + 'length' => '標題欄位置少需3個字元.', + 'required' => '標題欄位為必填.', + ) , +); diff --git a/application/i18n/zh_TW/notifications.php b/application/i18n/zh_TW/notifications.php new file mode 100755 index 0000000000..9413104f3d --- /dev/null +++ b/application/i18n/zh_TW/notifications.php @@ -0,0 +1,35 @@ + '这些信息是从您的网站发出的', + 'admin_login_url' => '管理員登錄', + 'admin_new_comment' => array( + 'message' => '有新的評論,回應:', + 'subject' => '新的評論', + ) , + 'admin_new_email' => array( + 'message' => '有新的郵件', + 'subject' => '新的郵件', + ) , + 'admin_new_report' => array( + 'message' => '有新的事件報告', + 'subject' => '新的報告', + ) , + 'admin_new_sms' => array( + 'message' => '有新的文本消息', + 'subject' => '新的消息', + ) , + 'member_new_alert' => array( + 'message' => '您收到了一個事件警示', + 'subject' => '新的警示', + ) , + 'member_new_message' => array( + 'message' => '您收到了一個私信', + 'subject' => '私信', + 'footer' => '回復請轉到 ', + ) , +); diff --git a/application/i18n/zh_TW/page.php b/application/i18n/zh_TW/page.php new file mode 100755 index 0000000000..9b3db21280 --- /dev/null +++ b/application/i18n/zh_TW/page.php @@ -0,0 +1,18 @@ + array( + 'required' => '請輸入自定義頁面的標題', + 'length' => '頁面標題需要不小於3個,但不超過150個的字符', + ) , + 'page_tab' => array( + 'required' => '请输入页面的链接标签的名称.', + ) , + 'page_description' => array( + 'required' => '请输入自定义页面的内容.', + ) , +); diff --git a/application/i18n/zh_TW/permissions.php b/application/i18n/zh_TW/permissions.php new file mode 100644 index 0000000000..14c7a3f5d7 --- /dev/null +++ b/application/i18n/zh_TW/permissions.php @@ -0,0 +1,9 @@ + '建立/編輯/', +); diff --git a/application/i18n/zh_TW/private_message.php b/application/i18n/zh_TW/private_message.php new file mode 100644 index 0000000000..9890ae05da --- /dev/null +++ b/application/i18n/zh_TW/private_message.php @@ -0,0 +1,22 @@ + array( + 'numeric' => '上一層代號必須是數字', + ) , + 'private_to' => array( + 'required' => '收件人欄位是必填的', + 'exists' => '您試著要發送訊息的對象不存在', + ) , + 'private_subject' => array( + 'required' => '主旨欄位是必填的', + 'length' => '主旨文字數必須介於 3 到 150 字元', + ) , + 'private_message' => array( + 'required' => '訊息欄位是必填的', + ) , +); diff --git a/application/i18n/zh_TW/report.php b/application/i18n/zh_TW/report.php new file mode 100755 index 0000000000..d3840c6cb2 --- /dev/null +++ b/application/i18n/zh_TW/report.php @@ -0,0 +1,139 @@ + '錯誤!', + 'country_name' => array( + 'single_country' => '您報告的事件地點跨越了本網站部署的國家範圍。請確保事件地點是在 %s 國家或地區範圍內.', + ) , + 'custom_field' => array( + 'values' => '請輸入一個有效的值於"%s" 欄位', + 'numeric' => '"%s" 欄位必須是數字', + 'required' => '"%s" 欄位是必須的', + 'not_exist' => '"%s" 欄位不存在', + 'permission' => '您的帳號無法編輯"%s" 欄位', + 'email' => '"%s" 欄位必須包含有效的電子郵件地址', + 'phone' => '"%s" 欄位必須包含一個有效的電話號碼', + 'date_mmddyyyy' => '"%s" 欄位必須包含有效的日期 (MM/DD/YYYY)', + 'date_ddmmyyyy' => '"%s" 欄位必須包含有效的日期 (DD/MM/YYYY)', + ) , + 'data_include' => array( + 'between' => '請選擇一個有效的項目', + 'numeric' => '請選擇一個有效的項目', + ) , + 'data_active' => array( + 'between' => '請選擇"等待核准"或"已核准"這兩種狀態的報告。', + 'numeric' => '請至少選擇一個"等待核准"或"已核准"這兩種狀態的報告。', + 'required' => '請選擇一個"等待核准"或"已核准"這兩種狀態的報告。', + ) , + 'data_verified' => array( + 'between' => '請選擇"等待驗證"或"已驗證”這兩種狀態的報告。', + 'numeric' => '請至少選擇一個"等待驗證"或"已驗證”這兩種狀態的報告。', + 'required' => '請選擇一個"等待驗證"或"已驗證”這兩種狀態的報告。', + ) , + 'data_point' => array( + 'between' => '一個選擇有效的事件報告類型進行下載', + 'numeric' => '一個選擇有效的事件報告類型進行下載', + 'required' => '一個選擇有效的事件報告類型進行下載', + ) , + 'format' => array( + 'required' => '您必須選擇下載的格式, CSV或XML', + 'valid' => '請選擇有效的格式來下載您的回報', + ) , + 'from_date' => array( + 'date_mmddyyyy' => '開始日期無效', + 'range' => '請選擇有效的開始日期,不能晚於今天', + ) , + 'incident_active' => array( + 'between' => '請為“核准該事件報告”選擇一個有效的值', + 'required' => '請為“核准該事件報告”選擇一個有效的值', + ) , + 'incident_ampm' => array( + 'validvalues' => '包含AM/PM的格式不正確?', + ) , + 'incident_category' => array( + 'numeric' => '類別格式不正確', + 'required' => '類別為必填項', + ) , + 'incident_date' => array( + 'date_ddmmyyyy' => '日期格式不正確', + 'date_mmddyyyy' => '日期格式不正確', + 'required' => '日期為必填項', + ) , + 'incident_description' => array( + 'required' => '描述為必填項', + ) , + 'incident_hour' => array( + 'between' => '小時格式不正確', + 'required' => '小時為必填項', + ) , + 'incident_information' => array( + 'alpha' => '請為“信息準確度”輸入一個有效值', + 'length' => '請為“信息準確度”輸入一個有效值', + ) , + 'incident_minute' => array( + 'between' => '分鐘格式不正確', + 'required' => '分鐘為必​​填項', + ) , + 'incident_news' => array( + 'url' => '新聞來源鏈接格式不正確', + ) , + 'incident_photo' => array( + 'size' => '請確認您上傳的照片大小不大於2MB', + 'type' => '上傳照片格式無效。僅接受.JPG、.PNG和.GIF格式的圖片', + 'valid' => '上傳照片文件無效', + ) , + 'incident_source' => array( + 'alpha' => '請為“來源可靠度”輸入一個有效值', + 'length' => '請為“來源可靠度”輸入一個有效值', + ) , + 'incident_title' => array( + 'length' => '標題的長度須在3到200個字符之間', + 'required' => '標題欄為必填項', + 'csrf' => '可能的CSRF(跨站請求偽造)攻擊。你真的要創建/編輯一份報告', + ) , + 'incident_verified' => array( + 'between' => '請為“驗證此報告”輸入一個有效值', + 'required' => '請為“驗證此報告”輸入一個有效值', + ) , + 'incident_video' => array( + 'url' => '視頻鏈接中包含無效的URL地址', + ) , + 'latitude' => array( + 'between' => '緯度值格式錯誤', + 'required' => '緯度值為必填項。您可以點擊地圖確定地點', + ) , + 'locale' => array( + 'alpha_dash' => '地點無效', + 'exists' => '此報告已有該語言的翻譯版本', + 'length' => '地點格式錯誤 ', + 'locale' => '原始報告與翻譯報告的語言相同', + 'required' => '語言為必填項.', + ) , + 'location_name' => array( + 'length' => '地點名稱長度必須在3到200個字符之間', + 'required' => '地點名為必填項', + ) , + 'longitude' => array( + 'between' => '經度值格式錯誤', + 'required' => '經度值為必填項。您可以點擊地圖確定地點', + ) , + 'person_email' => array( + 'email' => '郵件地址格式不正確', + 'length' => '郵件地址長度須在4至64個字符之間', + ) , + 'person_first' => array( + 'length' => '名字長度須在3到100個字符之間', + ) , + 'person_last' => array( + 'length' => '姓長度須在3到100個字符之間.', + ) , + 'to_date' => array( + 'date_mmddyyyy' => '結束日期格式錯誤', + 'range' => '開始日期不得晚於結束日期', + 'range_greater' => '開始日期不得晚於結束日期', + ) , +); diff --git a/application/i18n/zh_TW/reporters.php b/application/i18n/zh_TW/reporters.php new file mode 100755 index 0000000000..a79c6fc360 --- /dev/null +++ b/application/i18n/zh_TW/reporters.php @@ -0,0 +1,28 @@ + array( + 'between' => '緯度欄位資料顯示為無效', + 'required' => '緯度欄位為必填,請在地圖上點選一個位置.', + ) , + 'level_id' => array( + 'numeric' => '報告者等級無效', + 'required' => '報告者等級無效', + ) , + 'location_name' => array( + 'length' => '地點名稱長度為2~200個字元.', + 'required' => '地點名稱欄位為必填.', + ) , + 'longitude' => array( + 'between' => '經度欄位資料顯示為無效', + 'required' => '經度欄位為必填,請在地圖上點選一個位置.', + ) , + 'reporter_id' => array( + 'numeric' => '無效的報告者', + 'required' => '無效的報告者', + ) , +); diff --git a/application/i18n/zh_TW/reports.php b/application/i18n/zh_TW/reports.php new file mode 100644 index 0000000000..6607f33c6f --- /dev/null +++ b/application/i18n/zh_TW/reports.php @@ -0,0 +1,21 @@ + array( + 'required' => '請確認已選擇一個項目', + 'numeric' => '請確認已選擇一個項目', + 'categories_required' => '通報必須設定分類才能夠送審', + ) , + 'action' => array( + 'permission' => '您沒有權限執行這個操作', + ) , + 'uploadfile' => array( + 'required' => '您必須選擇一個檔案上傳', + 'type' => '上傳的檔案必須是 .csv 或 .xml 格式', + 'valid' => '檔案上傳欄位沒有收到正確的檔案', + ) , +); diff --git a/application/i18n/zh_TW/roles.php b/application/i18n/zh_TW/roles.php new file mode 100755 index 0000000000..d1da2bd23e --- /dev/null +++ b/application/i18n/zh_TW/roles.php @@ -0,0 +1,25 @@ + array( + 'length' => '描述欄位長度需為3~100之間.', + 'required' => '描述欄位為必填.', + ) , + 'name' => array( + 'alpha_numeric' => '使用者名稱欄位需包含英文字母與數字.', + 'length' => '使用者名稱欄位長度需為2~30之間.', + 'nomodify' => '最高管理者角色不得更動.', + 'required' => '使用者名稱欄位為必填.', + ) , + 'access_level' => array( + 'numeric' => '權限層級欄位必須是介於 0 - 100 的數字', + 'required' => '權限層級欄位必須是介於 0 - 100 的數字', + ) , + 'permissions' => array( + 'numeric' => '權限欄位必須是介於 0 - 100 的數字', + ) , +); diff --git a/application/i18n/zh_TW/settings.php b/application/i18n/zh_TW/settings.php new file mode 100755 index 0000000000..984500d0ff --- /dev/null +++ b/application/i18n/zh_TW/settings.php @@ -0,0 +1,95 @@ + array( + 'between' => 'The allow comments field does not appear to contain a valid value?', + 'required' => '允許評論欄位是必填的', + ) , + 'allow_feed' => array( + 'between' => 'The include feed field does not appear to contain a valid value?', + 'required' => '包含的來源欄位是必填的', + ) , + 'allow_alerts' => array( + 'between' => '允許警示欄位沒有輸入正確的資料', + 'required' => '允許警示欄位是必填的', + ) , + 'allow_reports' => array( + 'between' => 'The allow reports field does not appear to contain a valid value?', + ) , + 'allow_stat_sharing' => array( + 'between' => 'The stat sharing field does not appear to contain a valid value?', + 'required' => '統計資訊分享欄位是必填的', + ) , + 'api' => array( + 'default_record_limit' => 'Default no. of records to be fetched per API request', + 'maximum_record_limit' => 'Maximum no. of records to be fetched per API request', + 'maximum_requests_per_ip_address' => 'Maximum no. of API requests per IP address', + ) , + 'api_akismet' => array( + 'alpha_numeric' => 'The Akismet field does not appear to contain a valid value?', + 'length' => 'The Akismet field does not appear to contain a valid value?', + ) , + 'cache_pages' => array( + 'required' => 'The cache pages field does not appear to contain a valid value?', + ) , + 'cache_pages_lifetime' => array( + 'in_array' => 'The cache pages lifetime field does not appear to contain a valid value?', + ) , + 'cleanurl' => array( + 'clean_url_disabled' => 'It looks like your server is not configured to handle clean URLs. You will need to change the configuration of your server before you can enable clean URLs. See more info on how to enable clean URLs at this forum post', + 'clean_url_enabled' => 'This option makes Ushahidi to be accessed via "clean" URLs. Without "index.php" in the URL.', + 'enable_clean_url' => '啟用簡潔網址', + ) , + 'configure_map' => '設定地圖', + 'default_location' => '預設地點', + 'default_map_all' => array( + 'alpha_numeric' => 'The color feed field does not appear to contain a valid value?', + 'length' => '顏色欄位不能夠超過 6 個字元', + 'required' => '顏色欄位是必填的', + ) , + 'default_map_view' => '預設地圖畫面', + 'default_zoom_level' => '預設放大層級', + 'download_city_list' => '從 Geonames 取得城市資料', + 'email_host' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'email_port' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'email_servertype' => array( + 'length' => 'The Mail server port field is too long', + ) , + 'items_per_page' => array( + 'between' => 'The items per page (Frontend) field does not appear to contain a valid value?', + ) , + 'items_per_page_admin' => array( + 'between' => 'The items per page (Admin) field does not appear to contain a valid value?', + ) , + 'map' => array( + 'default_location' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + ) , + 'map_provider' => array( + 'info' => 'Setting up your map provider is a straight- forward process. Select a provider, obtain an API key from the provider\'s site, and enter the API key', + ) , + 'multiple_countries' => 'Does this Ushahidi Deployment Span Multiple Countries', + 'site' => array( + 'google_analytics_example' => 'Web Property ID - Formato: UA-XXXXX-XX', + 'private_deployment' => '私人網站', + ) , + 'site_email' => array( + 'email' => 'The site email field does not appear to contain a valid email address?', + ) , + 'sms_no1' => array( + 'length' => 'The phone 1 field does not appear to contain a valid value?', + ) , + 'sms_no2' => array( + 'length' => 'The phone 2 field is too long', + ) , + 'sms_no3' => array( + 'length' => 'The phone 3 field is too long', + ) , +); diff --git a/application/i18n/zh_TW/sharing.php b/application/i18n/zh_TW/sharing.php new file mode 100755 index 0000000000..76e379fbb1 --- /dev/null +++ b/application/i18n/zh_TW/sharing.php @@ -0,0 +1,25 @@ + 'Ingress 日期', + 'date_added' => '日期已新增', + 'last_access' => '上一次連線', + 'sharing_color' => array( + 'length' => '顏色欄位至少需六瑪.', + 'required' => '顏色欄位為必填.', + ) , + 'sharing_name' => array( + 'length' => '分享名稱顯示為無效', + 'required' => '分享名稱為必填.', + ) , + 'sharing_url' => array( + 'exists' => '這個網址已經存在', + 'length' => '這個網址顯示為無效?', + 'required' => '網址欄位為必填.', + 'url' => '網址欄位顯示包含無效資料?', + ) , +); diff --git a/application/i18n/zh_TW/stats.php b/application/i18n/zh_TW/stats.php new file mode 100755 index 0000000000..15b792b185 --- /dev/null +++ b/application/i18n/zh_TW/stats.php @@ -0,0 +1,42 @@ + '已核准', + 'categories' => '分類', + 'category_impact' => '分類影響', + 'category_impact_description' => '您可以在該表格中看到各類別的報告量隨時間變化的情況。從左到右拖動滾動條可以看到不同分類的情況。將鼠標移到圖片上可以查看詳情。', + 'choose_date_range' => '選擇日期範圍', + 'countries' => '國別', + 'country' => '國家', + 'country_breakdown' => '國家分佈', + 'description' => '您好,這是數據部分。總體描述將隨後放出。現在,您可以在上面的分類鏈接中訪問其他頁面', + 'error' => '錯誤', + 'glossary' => '術語表', + 'hit_summary' => '點擊統計', + 'legend' => '圖例', + 'pageviews' => '頁面訪問', + 'pageviews_description' => '訪問者在您的網站上訪問頁面的總數量', + 'reports' => '事件報告', + 'reports_categories' => '事件分類', + 'reports_statistics' => '報告數據', + 'reports_status' => '報告狀態', + 'report_punchcard' => '事件報告穿孔卡', + 'report_stats' => '報告數據', + 'stats_not_setup' => '數據未確定', + 'time_range_1' => '1個月', + 'time_range_2' => '3個月', + 'time_range_3' => '6個月', + 'time_range_all' => '全部', + 'unapproved' => '未核准', + 'unique_visitors' => '獨立訪問者', + 'unique_visitors_description' => '訪問您的頁面的人數;獨立訪問者的身份標識為其瀏覽器cookie。如果來訪者沒有使用cookie,將通過IP地址、協議、瀏覽器、插件、操作系統等方式來驗證其身份。', + 'unverified' => '未驗證', + 'verified' => '已驗證', + 'visitor_summary' => '訪客總數', + 'visits' => '訪問數', + 'visits_description' => '在最後一次頁面訪問以後30分鐘後重新登錄的獨立訪問者將被視為一次新的訪問', +); diff --git a/application/i18n/zh_TW/tooltips.php b/application/i18n/zh_TW/tooltips.php new file mode 100755 index 0000000000..2b8e95c274 --- /dev/null +++ b/application/i18n/zh_TW/tooltips.php @@ -0,0 +1,96 @@ + array( + 'add_to_category' => '這增加了報告的額外類別。如果你選擇1類和2類報告已連接到它,該報告將有1類和2類。', + 'approve' => '是否核准通报。如果获得批准,它将被公开。', + 'assign_badge' => '可以分配一個徽章給用戶。選中一個徽章,然後在這里分配。', + 'between_times' => '這是二十四小時制的時分範圍,第一區域要比第二區域早,否則需要反轉,同時將比如係統配置時間且無關時區。', + 'category' => '如果你想激活觸發器當在指定類別被使用時,您可以在這裡設置。如果一篇事件報告有多個分類類別,且每個類別都有觸發器,那麼只激活一個。', + 'days_of_the_week' => '如果這些動作發生在每週的特定日子,請在此設置。按住Shift、Commond(Mac)、或者Control(Windows)健選擇幾個日期。', + 'email_body' => '郵件內容將被發送', + 'email_subject' => '郵件標題將被發送', + 'feed_id' => '這個資料來源可以是所有資料來源或是一個特定的資料來源,如果想要指定一個資料來源觸發動作,可以在這邊選擇。或是維持 "全部" 的選項即可。', + 'from' => 'Twitter 作者帳號(或是透過逗點分隔多個帳號),如果只想要特定使用者 twitter 訊息觸發動作,可以在這裡輸入他們的帳號(不要包含 @)', + 'keywords' => '如果您不想要關鍵字,那麼讓此處空白;否則,多個關鍵字用英文逗號分隔。', + 'location' => '你可以設定在任何地方或一個特定的位置。如果你選擇了一個特定的位置,你將被要求畫一個框周圍的地區是一個行動。例如,如果你想要這個觸發器被激活時,有人提出一個報告在巴西,你會選擇“特別區域”,然後在巴西畫一個區域。你可以把這些區域畫小或大,也可以畫多個。', + 'on_specific_count' => '該限定符將激活特定數的集群用戶或獨立用戶。留空白可以忽略。', + 'report_title' => '這是默認添加到報告的標題。', + 'response' => '如果所有的限定都通過,觸發器將啟動響應。這將產生從核准事件報告到發郵件到用戶的變化。選擇回應激活額外選項。', + 'send_to' => '如果你選擇“觸發的用戶”,電子郵件將被發送到執行行動的用戶。如果你選擇單選按鈕旁邊的輸入框,你將能夠進入一個定制的電子郵件地址。當你設置觸發的用戶在某些地區的地圖看到報告,簽入或其他一些活動時是有用的。', + 'specific_days' => '你可以選擇多個日期。由時區配置決定。如果不選擇日期,默認為所有日期。', + 'trigger' => '觸發器是調定你的行為操作的核心部件。當有人提交一個事件報告,簽入等行為時,你可以通過它過濾回應或使某事發生。', + 'user' => '用戶可以是任何人,或一個特定的用戶。如果你只喜歡特定用戶激活觸發器,你可以選擇他們;否則,你將要排除這個“anyone”當最觸發器設置為所有用戶與系統的相互作用', + 'verify' => '標註一個通報為已驗證或未驗證', + ) , + 'change_picture' => '資料頁面本網站使用 Gravatar。通過點擊你的頭像,你將被帶到 Gravatar 網站。在那裡,您可以更改您的個人資料頭像。', + 'default_value' => '用英文逗號分隔每一個值,例如1,2。', + 'radio_choices' => '用英文逗號分隔每一個值,例如1,2。如果你想設置默認值,在選項列表結束位置加::符號。例如,如果你想讓Value 3為默認值,這將是Value 1,Value 2,Value 3::Value 3', + 'dropdown_choices' => '用英文逗號分隔每一個值,範例, Item 1, Item 2', + 'private_to' => '開始鍵入列表成員', + 'private_subject' => '私人訊息的主題', + 'private_message' => '私人訊息', + 'profile_color' => '您可以選擇一種顏色,將顯示在您的個人資料圖片在您的公眾形象。這也將是彩色點陣顯示的地圖為您的簽入。', + 'profile_email' => '您的電子郵箱地址', + 'profile_name' => '這是你在網站上識別的方式之一。請記住,這是公開的!', + 'profile_new_password' => '如果設定,這將是您的新密碼。如果你想保留當前的密碼,留下該字段空白。', + 'profile_new_users_password' => '這是一個要求,創建一個新用戶時,將創建用戶的密碼。你應該通知您的新用戶,首次登錄後改變自己的密碼。', + 'profile_notify' => '選擇 YES,新的報告或意見在您的網站上發表時,讓你通過電子郵件得到通知。', + 'profile_password' => '您的當前密碼。我們要求您輸入密碼,以防止任何未經授權的更改您的帳戶。', + 'profile_public' => '如果你勾選這個選項,互聯網上的任何人都可以查看您的個人資料。這也是最簡單的方式來顯示您已提交通報,您的簽入,徽章等所有在這個頁面上的報告。', + 'profile_public_url' => '這是您的公共檔案的 URL 地址。', + 'profile_username' => '您的用戶名不能更改。', + 'settings_access_level' => '訪問級別是用來限制訪問自定義表單字段數據。更高的訪問級別,可訪問下級的領域。超級管理員擁有最高的訪問級別(100)。公開資料顯示的最低訪問級別(0)。成員有訪問級別10。 admin是默認訪問級別90。', + 'settings_alert_email' => '這個電子郵件地址用來發送電子郵件警報。', + 'settings_allow_alerts' => '允許用戶通 Web 網絡訂閱警報。', + 'settings_allow_clustering' => '這使得類似的通報捆綁成在地圖上顯示的一個點', + 'settings_allow_comments' => '允許用戶對主站點的通報發表評論。', + 'settings_allow_feed' => '這使得主站點上顯示RSS新聞訂閱。', + 'settings_allow_feed_category' => '這可以從 RSS 新聞資料來源建立新分類', + 'settings_allow_reports' => '允許用戶通過 Web 網絡形式提交信息。', + 'settings_api_default_record_limit' => '每個API請求獲取的默認記錄數', + 'settings_api_max_record_limit' => '每個API請求要提取的最大記錄數', + 'settings_api_max_requests_per_ip' => '每個IP地址的API請求的最大數量', + 'settings_banner' => '該網站橫幅顯示在您網站的前端,如果您正在使用的主題支持它的頂部。這個橫幅的建議的大小將取決於您所使用的主題。記住,這將取代網站的標題和標語,在頁面頂部。', + 'settings_blocks_per_row' => '每行顯示的列數', + 'settings_cache_pages' => '啟用或禁用頁面緩存。這使得頁面顯示,減少響應時間快。我們建議使用高流量的網站緩存。 **記住,報告將基於下面您設定的日程(緩存終身)前端填充。', + 'settings_cache_pages_lifetime' => '設置緩存的生命週期。', + 'settings_checkins' => '此設置使得您的部署的簽入。這是一個簡化的報告未緩和之前,它在主頁上,需要您的網站進行配置,以某種方式。當您啟用此功能,確保您的時區設置為UTC與你的主題支持簽入。當您啟用此簽,唯一的主題,將成為下你的插件/主題設置頁面啟用。', + 'settings_configure_map' => '設置覆蓋一個特定的位置的地圖。', + 'settings_default_category_colors' => '設置一個網站上的所有類別的顏色代碼。', + 'settings_default_category_icons' => '設置一個圖標在網站上的所有類別。', + 'settings_default_location' => '這是該網站將部署的國家。', + 'settings_display_contact' => '在主點上打開或關閉“聯繫我們”標籤頁', + 'settings_display_howtohelp' => '在主點上打開或關閉“幫助”標籤頁', + 'settings_display_items_per_page' => '主站上每頁顯示的通報數', + 'settings_display_items_per_page_admin' => '網站後台每頁顯示的通報數', + 'settings_flsms_download' => '這是傳入消息的樞紐', + 'settings_flsms_synchronize' => '這與 Ushahidi 平台的樞紐同步的消息。', + 'settings_flsms_text_1' => '接收短信的電話號碼', + 'settings_google_analytics' => '跟踪您的網站的訪問者。獲取詳細的訪客統計。', + 'settings_locale' => '設定將在網站上使用的語言。', + 'settings_manually_approve_users' => '如果將此選項設置為 yes,你必須批准您的網站上創建一個帳戶,由他們分配角色(即會員 Member,管理員 Admin,超級管理員 Superadmin)的每一個人用戶。', + 'settings_map_provider' => '定義是要在網站上使用哪種地圖', + 'settings_private_deployment' => '將此值設置為true或yes,將讓您的部署私營所以只與你指定的帳戶的用戶將能夠訪問部署。', + 'settings_require_email_confirmation' => '用戶將通過電子郵件發送一個確認鏈接,點擊後,他們被允許登錄到部署,如果此設置為yes。如果啟用此部署後已接受用戶,他們會提示,以確認他們的帳戶之前,他們將被允許繼續使用它。', + 'settings_server_host' => '電子郵件位於', + 'settings_server_password' => '這是接收報告的電子郵件地址的密碼。', + 'settings_server_port' => '這是必需的,以從電子郵件地址接受入站連接', + 'settings_server_ssl_support' => '這是必需的,以提高安全連接', + 'settings_server_type' => '這是必需的,從主機服務器檢索電子郵件', + 'settings_server_username' => '這是接收報告的電子郵件地址。', + 'settings_share_site_stats' => '命中統計數據存儲在服務器 Ushahidi 控制。啟用此選項,您將獲得直接打在你的管理面板的統計。通過禁用它,你將停止收集統計信息,將無法恢復,而這是關閉收集的流量統計。', + 'settings_site_copyright_statement' => '其他人有没有權利重新发布您和你的用户创建的文本,圖像,視頻或設計的主題?如果您想知道其他人使用您的著作有哪些指定的許可,去https://creativecommons.org/choose/', + 'settings_site_email' => '這個電子郵件地址用來接收電子郵件報告和“聯繫我們”標籤頁的信息。', + 'settings_site_message' => '出現在主頁地圖上方的文字。對網站的訪問者,這是有用的重要信息。要刪除,只需刪除的這個文字。', + 'settings_site_name' => '這是出現在主點頂端的網站的名稱。', + 'settings_site_submit_report_message' => '這是提交報告的頁面上,將顯示一條消息。這報告的免責聲明或進一步說明,這對您的訪問者來說非常友好。', + 'settings_site_tagline' => '於三言兩語,說明這個網站是什麼。', + 'settings_site_timezone' => '這是您的網站運作上的時區。這對您已經設置了,使用時間和日期,以及前端和後端的網站上的報告的默認當前時間的任何行動的影響。', + 'settings_twitter_configuration' => '設置推特(twitter)#标签', + 'feed_geolocation_user' => '如果想要將資料來源轉為地理座標,可以在 http://geonames.org 註冊一個帳號然後將網路服務資訊輸入這裡,空白表示停用這個功能。

需要注意使用次數限制。', +); diff --git a/application/i18n/zh_TW/ui_admin.php b/application/i18n/zh_TW/ui_admin.php new file mode 100755 index 0000000000..4d0aca998c --- /dev/null +++ b/application/i18n/zh_TW/ui_admin.php @@ -0,0 +1,258 @@ + '讀取被拒絕,有可能是你的帳號資料已經無效,或是您的請求曾經被拒絕', + 'access_denied_others' => '讀取被拒絕,有可能是因為頻寬限制,請稍後再試', + 'access_level' => '訪問級別', + 'actions' => '動作', + 'add_to_category' => '新增到類別', + 'added' => '已新增', + 'added_edited' => '已新增/已編輯', + 'addons' => '插件', + 'admin_role' => '管理', + 'alerts' => '提醒', + 'alerts_received' => '收到的提醒', + 'anonymous' => '匿名者', + 'anyone_role' => '訪問者', + 'anywhere' => '未知地', + 'api_banned' => 'API 禁止', + 'api_logs' => 'API 日誌', + 'api_settings' => 'API 設定', + 'api_unban' => '取消禁止', + 'api_unban_all' => '全部取消禁止', + 'approved' => '已核准', + 'approve_auto' => '自動核准', + 'approve_manual' => '手動核准', + 'archived' => '已存檔', + 'are_you_sure_you_want_to' => '您確定要', + 'are_you_sure_you_want_to_delete_this_item' => '您確定要刪除該項嗎?', + 'are_you_sure_you_want_to_delete_this_photo' => '您確定要刪除該照片嗎?', + 'are_you_sure_you_want_to_switch_forms' => '您確定更換表格嗎?', + 'assign' => '分配', + 'assignments' => '任務', + 'assign_badge' => '分配徽章', + 'author' => '作者', + 'author_email' => '作者 Email', + 'back' => '回去', + 'banip_action' => '禁止 IP', + 'between_times' => '起止時間', + 'blocks' => '區塊', + 'body' => '文件體', + 'cancel' => '取消', + 'categories' => '分類', + 'chart_display_error' => '圖表顯示錯誤', + 'check_message_valid' => '請確認你的留言訊息正確', + 'check_number' => '請確認你已輸入正確的號碼', + 'check_sms_settings' => '請確認簡訊設定!', + 'checkin_details' => '簽入詳情', + 'checkins' => '簽入', + 'cities_loaded' => '已載入的城市', + 'code' => '程式', + 'code_out_of_sync' => '程式本版不一致', + 'color' => '顏色', + 'comments' => '留言', + 'confirmation_code' => '你的通知確認碼為 ', + 'confirm_msg' => '該使用者已經', + 'count' => '計數', + 'country_not_found' => '找不到這個國家', + 'created_edited' => '已新增/已編輯', + 'create_report' => '新增一個通報', + 'critical_upgrade' => '重要的升級', + 'currently_active' => '當前處於活動狀態', + 'currently_inactive' => '當前處於非活動狀態', + 'custom_forms_insufficient_permissions' => '您沒有有足夠的權限編輯以下的自定義字段。', + 'daily' => '每天', + 'dashboard' => '總覽', + 'database' => '資料庫', + 'date_time' => '日期& 時間', + 'db_out_of_sync' => '資料庫版本不一致', + 'deleted' => '已刪除', + 'delete_action' => '刪除', + 'delete_badge' => '刪除徽章', + 'demo' => '範例', + 'description' => '描述', + 'disabled' => '禁用', + 'divider_start_field' => '分頻開始', + 'divider_end_field' => '分頻結束', + 'download_reports' => '下載通報資料', + 'dropdown_choices' => '下拉選項', + 'edit_action' => '編輯', + 'error_geocoding' => '地理相關程式有錯誤! HTTP發生錯誤', + 'error_imap' => 'IMAP PHP 庫未安裝', + 'error_msg' => '錯誤', + 'error_post_incident' => '錯誤,無法通報事件', + 'every_six_hours' => '每六個小時', + 'every_twelve_hours' => '每十二個小時', + 'experimental' => '實驗性的', + 'faqs' => '問與答', + 'feedback' => '意見回饋', + 'field_choices' => '選擇列表', + 'field_default' => '預設值', + 'field_datatype' => '數據類型', + 'field_datatype_numeric' => '數字框', + 'field_datatype_text' => '文本框', + 'field_height' => '欄高', + 'field_hidden' => '隱藏字段', + 'field_maxlength' => '字元最大限制', + 'field_name' => '欄位名稱', + 'field_toggle_no' => '否', + 'field_toggle_yes_close' => '是的,默認情況下關閉', + 'field_toggle_yes_open' => '是的,默認情況下打開', + 'file_not_found_upload' => '找不到上傳的檔案', + 'file_open_error' => '無法打開檔案', + 'form_not_exists' => '這個格式不存在!', + 'forum' => '論壇', + 'free_text_field' => '純文字欄位 (Free Text)', + 'date_field' => '日期框', + 'radio_field' => '單選按鈕', + 'checkbox_field' => '多選框', + 'dropdown_field' => '下拉框', + 'from' => '來自', + 'from_date' => '來自', + 'geonames_timeout' => '地名超時錯誤', + 'get_help' => '取得協助', + 'header_actions' => '動作', + 'header_add_edit' => '新增/編輯', + 'header_manage_users' => '管理使用者', + 'header_role' => '角色', + 'header_user' => '使用者', + 'help' => '協助', + 'hourly' => '每小時', + 'ip_address' => 'IP 位置', + 'is_date' => '請確認為正確日期格式', + 'ispublic_visible' => '誰可以查看解答?', + 'ispublic_submit' => '誰可以提交解答', + 'keyword' => '關鍵字', + 'keywords' => '關鍵字', + 'label_email' => 'Email 信箱:', + 'label_full_name' => '全名:', + 'label_password' => '密碼:', + 'label_role' => '角色:', + 'label_username' => '使用者名稱:', + 'layers' => '圖層', + 'login_role' => '審核者', + 'logout' => '登出', + 'manage' => '管理', + 'manage_roles' => '管理角色與權限', + 'manage_users' => '查看使用者', + 'manage_users_edit' => '新增/編輯 使用者', + 'mark_as' => '標註為', + 'marked_as_not_spam' => '標註為非垃圾訊息', + 'marked_as_spam' => '標註為垃圾訊息', + 'match_no_documents' => '未符合任何文件', + 'message' => '訊息', + 'messages' => '訊息', + 'messages_twitter' => 'Twitter 訊息', + 'message_sent' => '你的訊息已經送出!', + 'modify_timezone' => '修改時區設置', + 'move_down_action' => '往下移', + 'move_up_action' => '往上移', + 'multiple_hosted_instances' => '多個託管實例', + 'my_alerts' => '我的快訊', + 'my_checkins' => '我的簽入', + 'my_profile' => '我的個人資料', + 'my_reports' => '我的通報', + 'my_votes' => '投票數', + 'my_votes_up' => '肯定', + 'my_votes_down' => '否定', + 'new_alert' => '新增通知', + 'new_private' => '新增訊息', + 'new_password' => '新密碼', + 'none_category_explanation' => '這是一個特殊的類別,將不會顯示在用戶提交報告的頁面。這是用來存放作為刪除的沒有分類(未歸類報告)的報告。', + 'notification' => '通告', + 'not_case_sensitive' => '不區分大小寫', + 'not_found' => '找不到相關資訊', + 'no_data' => '沒有數據,沒有可顯示的結果。', + 'no_error' => '沒有錯誤', + 'no_result_display_msg' => '沒有結果!', + 'page' => '頁', + 'pages' => '頁', + 'page_not_found' => '找不到網頁', + 'password' => '密碼', + 'password_reset' => '重設密碼', + 'password_reset_message_line_2' => '我們收到一個重設密碼的需求for', + 'password_reset_message_line_3' => '欲修改密碼,請點選以下連結 (或複製以下連結至瀏覽器).', + 'password_reset_message_line_4' => '你的密碼已經重設。詳細資訊如下:', + 'password_reset_subject' => '重設 Ushahidi 密碼', + 'phone' => '電話', + 'please_select' => '請選擇', + 'post_method_not_used' => '數據未能以POST方式送出', + 'preview' => '預覽', + 'private_message' => '訊息', + 'private_messages' => '私人訊息', + 'private_sent' => '發送私人訊息', + 'private_subject' => '標題', + 'private_to' => '接收人', + 'qualifiers' => '限定條件', + 'read' => '讀取', + 'relevance' => '符合程度', + 'report_title' => '通報標題', + 'reporters' => '通報者', + 'reporter_levels' => '通報者層級', + 'reports' => '通報事件', + 'reputation' => '信譽分數', + 'required' => '必填', + 'reset' => '重設', + 'response' => '回應', + 'results' => '結果', + 'revoke' => '撤銷', + 'save_settings' => '保存設定', + 'search' => '查詢', + 'searching_for' => '查詢for', + 'security_info_encryption_key' => '加密密鑰仍設置為默認值,這是不安全的,必須改變。', + 'security_info_https' => '本網站通過HTTP提供服務。應設置為HTTPS以提高安全性。', + 'security_info_instructions' => '維基(Wiki)說明: ', + 'select_field_type' => '--- 選擇欄位形式 ---', + 'select_item' => '請選擇一個品項', + 'sender' => '寄送者', + 'send_to' => '接受者', + 'sent_from_website' => '這則訊息被送出,由你的網站 ', + 'server_time' => '服務器時間', + 'settings' => '設定', + 'showing_page' => '顯示頁面', + 'showing_results' => '顯示結果', + 'special_category' => '特殊分類', + 'special_category_explanation' => '這是一個特殊分類,將不會在用戶提交的報告表單中顯示。該分類需與“可信的報告者”一起使用。', + 'specific_area' => '特別區域', + 'statistics' => '統計', + 'stats' => '統計', + 'stats_collection_error' => 'Stat Collection Failed! Either our stats server is down or something is misconfigured in your deployment of Ushahidi. Try back in a bit to see if the server is up and running. To manually reset your stats, modify stat_id (set to null) and stat_key (set to 0) in the settings table of your database. WARNING: You will lose access to your statistics if you do this!', + 'specific_days' => '特殊的日子', + 'subject' => '主題', + 'superadmin_role' => '超級管理者', + 'task_performed' => '任務已執行', + 'text_field' => '純文字欄位', + 'theme_name' => '姓名', + 'title' => '管理使用者', + 'total_records' => '全部紀錄', + 'translate_reports' => '翻譯報告', + 'trigger' => '觸發器', + 'triggering_user' => '觸發用戶', + 'triggers' => '觸發器', + 'unapproved' => '未核准', + 'unknown' => '未知', + 'unknown_failure' => '未知的錯誤', + 'unread' => '未讀取', + 'unsubscribe_message' => '您將不再接收警示,從', + 'update_link' => ' 點選這裡以升級', + 'upgrade_ushahidi' => '升級 Ushahidi', + 'upgrade_ushahidi_status' => '升級 Ushahidi 狀態', + 'upload_reports' => '上傳報告', + 'users' => '使用者', + 'verified_unverified' => '已驗證/未驗證', + 'verify_unverify' => '確認/取消 驗證', + 'version' => '版本', + 'version_available' => ' 已可升級.', + 'video_encoding' => '視頻編碼', + 'view_private' => '私人訊息', + 'view_site' => '瀏覽網站', + 'view_report' => '查看通報', + 'welcome' => '歡迎, ', + 'wiki' => '維基 Wiki', + 'yes' => '是', + 'your_search_for' => '您的搜索', +); diff --git a/application/i18n/zh_TW/ui_main.php b/application/i18n/zh_TW/ui_main.php new file mode 100755 index 0000000000..35b47904b8 --- /dev/null +++ b/application/i18n/zh_TW/ui_main.php @@ -0,0 +1,549 @@ + '關於', + 'access' => '連線', + 'access_limits' => '連線限制', + 'account_name' => '帳戶名稱', + 'actions' => '動作', + 'action_confirm' => '這個動作無法恢復,請確認是否繼續?', + 'activate' => '啟動', + 'active' => '開啟中', + 'add' => '新增', + 'added_by' => '新增人員為', + 'additional_data' => '附加數據', + 'additional_reports' => '其他說明內容', + 'add_edit' => '新增/編輯', + 'add_field' => '新增一個編輯域', + 'add_language' => '新增語言', + 'add_new' => '新增', + 'add_new_category' => '新增類別', + 'add_translation' => '新增翻譯', + 'admin' => '管理者', + 'alerts' => '設定事件通知', + 'alerts_alert_me' => '當有通報事件發生在我所選擇的地點時,請通知我:', + 'alerts_btn_send' => '儲存我的事件通知設定', + 'alerts_email' => '電子信箱:', + 'alerts_enter_email' => '輸入電子信箱', + 'alerts_enter_mobile' => '請輸入含有國碼的手機號碼', + 'alerts_get' => '設定事件通知', + 'alerts_mobile_phone' => '行動電話:', + 'alerts_place_spot' => '或是在地圖中選擇一個中心點,當通報事件在半徑20公里內時,你就會收到通知', + 'alerts_place_spot2' => '如果你無法確認地點名稱,請直接在地圖上點選正確位置。', + 'alerts_rss' => 'RSS Feeds (複製下列 url)', + 'alerts_select_city' => '選擇城市', + 'alerts_step1_select_city' => '1. 選擇通報事件城市或地點:', + 'alerts_step2_send_alerts' => '2. 將通報事件訊息送到我的:', + 'alerts_step3_select_catgories' => '步驟 3 (Optional): 選擇分類', + 'alert_confirm_previous' => '確認之前的事件通知設定', + 'alert_saved' => '你的事件通知設定已經被儲存!', + 'all' => '全部', + 'allowed' => '允許', + 'allowed_tags' => '容許使用 HTML 標籤 "%s"。', + 'allowed_iframes' => '只容許來自 %s 的 Iframe 標籤。', + 'all_categories' => '全部分類', + 'all_time' => '所有時間', + 'and' => '與', + 'api' => 'API', + 'approve' => '核准', + 'approved' => '已核准', + 'approved_reports' => '已核准的通報', + 'approve_this_report' => '核准此通報', + 'approximate' => '大約', + 'archive' => '檔案', + 'archived' => '已歸檔', + 'at' => '在', + 'author' => '作者', + 'auto_checkin' => '自動簽入', + 'avg_reports_per_day' => '每日平均事件數量', + 'awaiting_approval' => '等候核准中', + 'awaiting_verification' => '等候驗證中', + 'badge' => '徽章', + 'badges' => '獲得的徽章', + 'badge_image' => '徽章圖像', + 'badge_image_upload_your_own' => '或者上傳你自己的徽章圖像。', + 'badge_pack' => '徽章打包', + 'badge_select' => '選擇一個徽章', + 'blog' => 'Ushahidi 部落格', + 'browse_profiles' => '瀏覽個人資料', + 'cancel' => '取消', + 'categories' => '分類', + 'category' => '分類', + 'category_filter' => '類別過濾', + 'category_has_been' => '這個類別 ', + 'category_name' => '類別名稱', + 'change_date_range' => '更改日期範圍', + 'change_password' => '更改密碼', + 'change_picture' => '修改圖像', + 'choose' => '選擇一個', + 'choose_data_points' => '選擇欲下載的資料', + 'choose_date_range' => '或者自定義時間範圍', + 'choose_field_type' => '選擇編輯域格式', + 'cleanurl' => '簡易URL', + 'clear' => '清除', + 'clear_map' => '清理地圖', + 'close' => '關閉', + 'clusters' => '群', + 'color' => '顏色', + 'comment' => '留言', + 'comments' => '留言', + 'comment_details' => '留言詳細內容', + 'configuration_saved' => '您的設定已經被儲存!', + 'configure' => '設定', + 'confirm_email_successful' => '您已經成功地提交了您的電子郵件地址!請在下面登錄。', + 'contact' => '聯繫我們', + 'contact_code' => '驗證碼', + 'contact_email' => '您的電子郵件', + 'contact_message' => '訊息', + 'contact_message_has_send' => '你的訊息已經送出!', + 'contact_name' => '你的姓名', + 'contact_phone' => '你的電話', + 'contact_send' => '送出訊息', + 'contact_subject' => '訊息主旨', + 'copyright' => 'Copyright © 2009 Ushahidi.com. 版權所有.', + 'create' => '新增', + 'create_edit' => '新增/編輯', + 'create_new' => '新增通報', + 'create_new_password' => '創建新密碼', + 'create_report' => '新增通報', + 'credibility' => '可信度', + 'current_password' => '當前密碼', + 'custom_fields' => '其它', + 'data' => '資料', + 'date' => '日期', + 'date_format' => '(月月/日日/年年年年)', + 'date_time' => '日期與時間', + 'day' => '日', + 'deactivate' => '解除', + 'default_location_name' => '台灣', + 'delete' => '刪除', + 'deleted' => '已刪除', + 'deletes' => '刪除', + 'delete_disabled' => '刪除(不可用)', + 'delete_last' => '刪除上一個', + 'delete_report' => '刪除此通報', + 'delete_selected' => '刪除所選項目 ', + 'delete_spam' => '刪除垃圾', + 'demo' => '示範', + 'description' => '描述', + 'detailed_location_example' => '範例:中正市場的街角,在中山路與民族路交叉口,大海市', + 'details' => '細節', + 'direct_report' => '直接通報', + 'disapprove' => '尚未核准', + 'download_reports' => '下載通報', + 'edit' => '編輯', + 'edit_form_fields' => '編輯域', + 'edit_report' => '編輯通報', + 'email_address' => '電子郵件信箱', + 'email_configuration' => '郵件主機設定', + 'email_server_host' => '郵件服務器主機', + 'email_server_password' => '郵件主機密碼', + 'email_server_port' => '郵件服務端口', + 'email_server_ssl_support' => '郵件服務器支持SSL', + 'email_server_type' => '郵件主機型態', + 'email_server_username' => '郵件使用者帳號', + 'email_settings_comment_0' => '您的電子信箱設定已經完成', + 'email_settings_comment_00' => '由於您將已電子郵件信箱收取通報,因此請在下方輸入您的電子郵件信箱', + 'email_settings_comment_1' => '部份服務要求完整的電子郵件信箱資料', + 'email_settings_comment_2' => '電子郵件信箱密碼', + 'email_settings_comment_3' => '通用端口: 25, 110, 995 (Gmail POP3 SSL), 993 (Gmail IMAP SSL)', + 'email_settings_comment_4' => '範例: mail.yourwebsite.com, imap.gmail.com, pop.gmail.com', + 'email_settings_comment_5' => '範例: pop3, imap', + 'email_settings_comment_6' => '啟用或禁用SSL連接', + 'empty' => '---空---', + 'end_point' => '至', + 'error' => '錯誤!', + 'example' => '範例', + 'example_country' => '肯尼亞', + 'external_apps' => '外部應用程式', + 'external_video_link' => '其他影片連結', + 'feed' => '反饋', + 'feedback' => '反饋意見', + 'feeds' => '訂閱', + 'feed_has_been' => '這個訂閱', + 'feed_items' => '訂閱數', + 'feed_name' => '訂閱名稱', + 'feed_url' => '訂閱 URL', + 'field_unused' => '未使用的編輯域', + 'file' => '文件', + 'file_over_max_allowed' => '您的文件超過允許的最大文件大小。', + 'filters' => '篩選', + 'filter_reports' => '篩選通報', + 'filter_reports_by' => '篩選以下條件通報', + 'filter_reports_contain' => '篩選條件包括', + 'find' => '尋找', + 'find_location' => '尋找地點', + 'first_name' => '名', + 'force_run_scheduler' => '強制執行日程安排', + 'forgot_password' => '忘記密碼?', + 'form' => '格式', + 'forms' => '格式', + 'form_description' => '格式描述', + 'form_edit' => '編輯這個格式', + 'form_has_been' => '此格式', + 'form_title' => '格式標題', + 'from' => '來自', + 'full_name' => '完整姓名', + 'geolocation_available' => '可取得地理位置', + 'geometry_color' => '顏色', + 'geometry_comments' => '回應', + 'geometry_label' => '標籤', + 'geometry_strokewidth' => '線條寬度', + 'has_been' => '曾經', + 'help' => '如何協助', + 'hidden' => '隱藏', + 'hide' => '隱藏', + 'hide_this_message' => '隱藏此訊息', + 'home' => '首頁', + 'how_to_report' => '如何通報', + 'identify_you' => '用於識別您和網站上的其他用戶', + 'image' => '影像', + 'images' => '影像', + 'image_icon' => '圖像', + 'inactive' => '未開啟', + 'inbox' => '收件箱', + 'incident' => '事件', + 'incidents_nearby' => '附近的事件', + 'incident_location' => '事件地點', + 'include' => '包括', + 'include_categories' => '目錄', + 'include_custom_fields' => '包括自定義字段', + 'include_description' => '描述', + 'include_detail' => '盡可能填寫詳細的資料', + 'include_latitude' => '緯度', + 'include_location_information' => '地點資訊', + 'include_longitude' => '經度', + 'incoming_media' => '新進媒體', + 'information_evaluation' => '訊息評估', + 'input_location' => '輸入你的詳細地點', + 'insufficient_role' => '您的帳戶沒有許可的權限登陸,請聯繫管理員。', + 'in_response_to' => '回應給', + 'ip_address' => 'IP地址', + 'is_this_your_profile' => '是您的個人資料嗎?', + 'item' => '項目', + 'items' => '項目', + 'item_details' => '項目細節', + 'item_title' => '項目標題', + 'kml_kmz_file' => 'KMZ/KML 文件', + 'kml_kmz_upload' => '上傳 KMZ/KML 文件', + 'language' => '語言', + 'last' => '上一個', + 'last_month' => '上個月', + 'last_name' => '姓', + 'last_year' => '去年', + 'latitude' => '緯度', + 'layers' => '圖層', + 'layers_filter' => '其他圖層', + 'layer_has_been' => '這個圖層', + 'layer_name' => '圖層名稱', + 'layer_url' => '圖層URL', + 'leave_a_comment' => '撰寫回應', + 'level' => '層級', + 'level_has_been' => '這個層級已經', + 'level_name' => '層級名稱', + 'limited' => '有限的', + 'link' => '連結', + 'list' => '列表', + 'loading_reports' => '加載通報', + 'location' => '地點', + 'locations' => '地點', + 'location_example' => ' 縣市、鄉鎮、或區的名稱', + 'login' => '登入', + 'login_account_creation_successful' => '賬戶創建成功,您現在可以登錄。', + 'login_confirmation_sent' => '一封確認郵件已發送到您註冊的電子郵箱。', + 'login_email_doesnt_exist' => '電子郵箱不存在,請嘗試不同的電子郵箱,或創建一個帳戶。', + 'login_select_openid' => '請點擊選擇您的帳戶提供者', + 'login_with' => '登錄', + 'login_userpass' => '以電子郵箱和密碼', + 'login_openid' => '用戶號', + 'login_signup' => '註冊', + 'login_signup_click' => '註冊新帳戶', + 'login_signup_confirmation_subject' => '註冊確認', + 'login_signup_text' => '現在創建一個帳戶,獲得更多的網站功能。', + 'longitude' => '經度', + 'map' => '地圖', + 'mark_read' => '標示為已讀取', + 'mark_unread' => '標示為未讀取', + 'maximum_filesize' => '最大文件大小', + 'media' => '媒體', + 'media_filter' => '媒體過濾', + 'members' => '成員', + 'manage_your_account' => '管理您的賬戶', + 'message' => '訊息', + 'messages' => '訊息', + 'message_details' => '訊息詳細內容', + 'mobile' => '手機', + 'modify' => '調整', + 'modify_date' => '調整日期', + 'month' => '月', + 'more' => '更多', + 'more_information' => '更多訊息', + 'multi_country_instance' => '網站的 Ushahidi 部署是否可跨越多個國家', + 'must_confirm_email_address' => '您必須通過確認電子郵件來訪問此網站。如果您沒有找到確認郵件,您可以重新發一次。', + 'name' => '名稱', + 'nearby_report' => '附近的通報', + 'new' => '新', + 'news' => '新聞', + 'news_feeds' => '新聞 Feeds', + 'news_source' => '新聞來源', + 'new_category' => '新分類', + 'new_password' => '新密碼', + 'new_report' => '新通報', + 'next' => '下一個', + 'no' => '否', + 'no_checkins' => '沒有簽入記錄顯示', + 'no_data' => '沒有數據', + 'notices' => '注意', + 'not_approved' => '尚未核准', + 'not_approved_singular' => '尚未核准', + 'not_selected' => '---未選中---', + 'not_spam' => '不是垃圾', + 'not_specified' => '未指定', + 'no_reports' => '目前無任何通報資料', + 'no_results' => '沒有符合的結果', + 'official_news' => '相關新聞', + 'option' => '選項', + 'optional' => '非必要性的', + 'options' => '選項', + 'organization' => '組織', + 'organizations' => '組織', + 'organization_description' => '組織描述', + 'organization_email' => '組織Email', + 'organization_has_been' => '這個組織曾經', + 'organization_name' => '組織名稱', + 'organization_phone_1' => '組織電話1', + 'organization_phone_2' => '組織電話2', + 'organization_website' => '組織網站', + 'original' => '原始的', + 'original_description' => '原始描述', + 'original_title' => '原始標題', + 'other_ushahidi_instances' => 'OTHER USHAHIDI DEPLOYMENTS', + 'outbox' => '發件箱', + 'outgoing' => '正在發送', + 'page' => '頁', + 'pages' => '頁', + 'page_description' => '頁面描述', + 'page_has_been' => '本頁曾經', + 'page_tab_name' => '頁面標籤', + 'page_title' => '頁面標題', + 'parent_category' => '上一層類別', + 'password' => '密碼', + 'password_again' => '再次輸入你的密碼', + 'password_changed_successfully' => '密碼修改成功!請重新登錄。', + 'password_forgot' => '忘記你的密碼?', + 'password_reset_confirm' => '新的密碼已經寄到你的信箱,請收信確認', + 'password_save' => '要在這台電腦保持登入狀態嗎?', + 'past_month' => '上個月', + 'past_year' => '去年', + 'pending' => '暫緩', + 'personal_information' => '個人資訊 選填', + 'phone' => '電話', + 'pictures' => '照片', + 'pictures_and_videos' => '照片與影片', + 'pinpoint_location' => '* 用地名或經緯度座標(格式: 121.5, 23.4)搜尋地點,或是在地圖上標示正確的位置', + 'play' => '播放', + 'plugins' => '插件', + 'plugin_url' => '插件', + 'public_profile' => '公開的個人檔案', + 'public_profile_url' => '公開的個人檔案 URL', + 'preview' => '預覽', + 'preview_item' => '預覽項目', + 'preview_message' => '預覽訊息', + 'previous' => '前一個', + 'private' => '隱私的', + 'profile_color' => 'Profile 顏色', + 'profile_saved' => '你的個人檔案已經被儲存', + 'quick_stats' => '統計摘要', + 'rating' => '評分', + 'read' => '閱讀', + 'receive' => '接收', + 'receive_from' => '接受自', + 'receive_notifications' => '接收通知', + 'recent_reports' => '最新的通報', + 'refresh_news_feeds' => '更新新聞 Feeds', + 'registered_email' => '註冊的電子郵箱', + 'remove' => '移除', + 'reply' => '回覆', + 'report' => '通報', + 'reports_listed' => '最新通報 (來自當前地圖, 按照時間順序排列)', + 'reporter' => '通報者', + 'reporters' => '報告者', + 'reporter_date' => '報告日期', + 'reporter_email' => '通報者 Email', + 'reporter_first_name' => '通報者名字', + 'reporter_has_been' => '這個事件', + 'reporter_ip' => '通報者 IP 地址', + 'reporter_last_name' => '通報者姓氏', + 'reporter_level' => '通報者層級', + 'reporter_levels' => '通報者層級', + 'reporter_phone' => '通報者電話', + 'reports' => '事件列表', + 'reports_btn_browse' => '瀏覽', + 'reports_btn_submit' => '送出', + 'reports_by_this_user' => '這些用戶的通報', + 'reports_categories' => '分類', + 'reports_date' => '日期', + 'reports_description' => '描述', + 'reports_download_csv' => '通報資料將會以 CSV 格式下載', + 'reports_features' => '重點', + 'reports_find_location' => '事件地點', + 'reports_first' => '名', + 'reports_last' => '姓', + 'reports_location_name' => '確認地點名稱', + 'reports_news' => '相關新聞報導', + 'reports_optional' => '其他資訊', + 'reports_photos' => '上傳照片', + 'reports_return' => '返回事件列表頁', + 'reports_select_city' => '選擇縣市', + 'reports_submitted' => '通報資料已經送交審核小組,如有需要將會與你聯繫確認內容', + 'reports_submit_new' => '通報事件', + 'reports_time' => '時間', + 'reports_timeline' => '時間線', + 'reports_title' => '標題', + 'reports_video' => '影片連結', + 'report_an_incident' => '通報事件', + 'report_details' => '通報詳情', + 'report_option_1' => '透過送一則訊息至', + 'report_option_2' => '發一封 Email 至', + 'report_option_3' => '發送一個推文,含有以下 hashtags', + 'report_option_4' => '點選這裡,填寫通報表格', + 'report_option_external_apps' => '通過使用一個應用程式', + 'report_saved' => '這則通報已經被儲存', + 'report_title' => '事件標題', + 'request_information' => '請求更多的信息', + 'request_location' => '確認地點', + 'required' => '請求', + 'requirements' => '請求', + 'resend_confirm_email' => '重發確認郵件', + 'reset' => '重設', + 'reset_all_filters' => '清除所有篩選條件', + 'reset_password' => '重設密碼', + 'retrieve_city_names' => '從選擇的國家獲取城市名', + 'riverid_information' => '賬戶管理由%s提供服務。', + 'role' => '角色', + 'save' => '儲存', + 'saved' => '儲存', + 'save_add_new' => '保存 & 新增', + 'save_close' => '儲存 & 關閉', + 'save_report' => '儲存報告', + 'schedule' => '計畫', + 'scheduler' => '排程', + 'scheduler_day' => '日', + 'scheduler_hour' => '時', + 'scheduler_log' => '日程設定日誌', + 'scheduler_minute' => '分', + 'scheduler_weekday' => '星期', + 'search' => '搜尋', + 'search_results' => '搜尋結果', + 'security_code' => '驗證碼', + 'select_all' => '全選', + 'select_field_type' => '選擇一個欄位類型', + 'select_form_type' => '選擇一個格式類型', + 'select_in_map' => '在地圖中選擇', + 'select_multiple' => '選擇所有需要的', + 'select_one' => '請確認以選擇一個項目', + 'select_theme' => '選擇主題', + 'send' => '發送', + 'send_confirmation' => '發送確認', + 'sending_to' => '寄送至', + 'sent' => '已送出', + 'sent_by' => '寄件者', + 'server_address' => '服務器地址', + 'server_type' => '服務器類型', + 'service' => '服務', + 'service_username' => '賬戶名', + 'service_user_id' => '賬戶號', + 'share' => '分享', + 'shared_data' => '分享數據', + 'share_has_been' => '分享已經', + 'sharing' => '分享', + 'show' => '顯示', + 'show_all' => '顯示所有', + 'show_messages' => '顯示消息', + 'site' => '網站', + 'site_email_address' => '網站電子郵箱', + 'site_url' => '網站地址', + 'sorry_no_badges' => '對不起,您還沒有獲得任何徽章。', + 'source' => '來源', + 'source_name' => '來源名稱', + 'source_url' => '來源URL', + 'ssl_support' => 'SSL支持?', + 'start_point' => '來自', + 'step' => '步驟', + 'submit' => '通報事件', + 'submit_sms' => '以簡訊通報', + 'submit_sms1' => '把你的簡訊送到', + 'submit_sms2' => '你的手機', + 'success' => '成功!', + 'successfuly_imported' => '已成功匯入', + 'surname' => '別名', + 'survey' => '新开线路', + 'tcp_port' => 'TCP 端口', + 'themes' => '主題', + 'theme_default' => 'Ushahidi 預設主題', + 'theme_settings' => '設定主題', + 'this' => '此', + 'this_day' => '今天', + 'this_month' => '本月', + 'this_week' => '本週', + 'this_year' => '今年', + 'this_is_your_profile' => '这是您的资料.', + 'time' => '時間', + 'title' => '標題 ', + 'today' => '今天', + 'total_reports' => '總數', + 'translated' => '已翻譯', + 'translated_description' => '翻譯過的描述', + 'translated_title' => '翻譯過的標題', + 'translate_to' => '翻譯成', + 'translation' => '翻譯', + 'translation_saved' => '翻譯已經被儲存', + 'unread' => '未讀', + 'unverified' => '未驗證', + 'upload' => '上傳', + 'upload_file' => '上傳文件', + 'upload_reports' => '上傳通報', + 'upload_reports_detail_1' => '透過以下的格式,你可以將事件通報匯入至 Ushahidi', + 'upload_reports_detail_4' => '事件標題與日期為必填資料', + 'upload_reports_detail_4b' => '如果沒有提供經度和緯度列將使用Google Geocoder的地理編碼', + 'upload_reports_detail_5' => '事件通報 CSV 格式範例', + 'upload_reports_detail_6' => '#,INCIDENT TITLE,INCIDENT DATE,LOCATION,DESCRIPTION,CATEGORY,APPROVED,VERIFIED
"1","Suspected death in Nairobi","2009-05-15 01:06:00","Nairobi","Three cases have been confirmed in C. del Uruguay","DEATHS, CIVILIANS, ",YES,YES', + 'upload_reports_detail_7' => '"2","Looting","2009-03-18 10:10:00","Accra","Looting happening everywhere","RIOTS, DEATHS, PROPERTY LOSS, ",YES,NO', + 'upload_successful' => '成功上傳', + 'upload_video' => '上傳視頻', + 'user' => '使用者', + 'username' => '使用者名稱', + 'ushahidi_admin' => 'Ushahidi 管理者', + 'verification' => '驗證狀態', + 'verified' => '已確認', + 'verified_reports' => '已確認的通報', + 'verify' => '確認', + 'verify_this_report' => '確認這個通報', + 'version' => '版本', + 'via' => '來自', + 'video' => '影片', + 'view' => '觀看', + 'views' => '瀏覽', + 'view_all' => '觀看全部', + 'view_all_feeds' => '瀏覽全部feeds', + 'view_all_reports' => '瀏覽全部通報事件', + 'view_items' => '瀏覽項目', + 'view_more' => '瀏覽更多', + 'view_public_profile' => '查看公開的資料', + 'view_report' => '瀏覽通報', + 'view_reports' => '瀏覽全部通報', + 'visible' => '可見', + 'waiting_approval' => '等候核准', + 'waiting_verification' => '等候確認', + 'web_form' => 'Web 表格', + 'yes' => '是', + 'yesterday' => '昨日', + 'your_dashboard' => '控制面板', + 'your_file' => '您的文件', + 'zoom_in' => '放大', + 'zoom_out' => '縮小', +); diff --git a/application/i18n/zh_TW/upgrade.php b/application/i18n/zh_TW/upgrade.php new file mode 100755 index 0000000000..37925bdc28 --- /dev/null +++ b/application/i18n/zh_TW/upgrade.php @@ -0,0 +1,42 @@ + array( + 'between' => '無效的輸入資料。0代表否,1代表是', + ) , + 'upgrade_automatic' => '自動更新', + 'upgrade_available' => '可用的更新', + 'upgrade_continue_btn_text' => '繼續', + 'upgrade_db_btn_text' => '升級', + 'upgrade_db_text_1' => '我們將把您的數據庫從版本', + 'upgrade_db_text_2' => '升級至新的版本', + 'upgrade_db_text_3' => '點擊“升級”按鈕,在我們升級的過程中您可以放鬆一下。', + 'upgrade_db_text_4' => '如果您希望我們為您備份數據庫,只需要選中下面的可選框,就可以輕鬆備份了', + 'upgrade_db_text_5' => '更新前要備份資料庫嗎? (強烈推薦)', + 'upgrade_db_title' => 'Ushahidi 資料庫更新', + 'upgrade_db_info' => 'Ushahidi 已經更新,在繼續之前請先將資料庫更新到最新版本 (%s)', + 'upgrade_failed' => '升級失敗', + 'upgrade_manual' => '手動升級', + 'upgrade_status' => 'Ushahidi 升級狀態', + 'upgrade_text_1' => '下面的說明細節如何手動升級你的 Ushahidi 部署程序', + 'upgrade_text_2' => '
下載
', + 'upgrade_text_3' => '
- 下載最新的 Ushahidi,', + 'upgrade_text_4' => '
備份
- .htaccess, ./applications/config/config.php, ./applications/config/database.php and ./applications/config/auth.php files.
- 只是以防萬一, 建議,整個備份 Ushahidi 當前的配置。
複製文件
- 解壓縮下載的文件
- 根据不同的服务器系统,使用您的首选工具/模式(例如 Telnet, FTP, SSH) 登錄到服務器和更換內容的所有文件夾與最新的構建。
升級數據庫
- 首先確定你的數據庫架構版本, 在配置表中的 db_version 值或在本頁面最上面查看Ushahidi升級信息。
- 如果你的版本是version 25, 你需要從25-26, 26-27, 27-28 依次更新到最新的SQL /sql 目錄。
- 同時,數據庫客戶端也要通過執行upgradex-x.sql 文件更新。
', + 'upgrade_tables' => '步驟 3: 查看 sql 文件夾,手動運行 upgrade-.sql 文件開始從當前數據庫版本更新。', + 'upgrade_text_5' => '步驟 4: 點擊 "繼續" 按鈕更新所需要的數據表。', + 'upgrade_text_6' => '要自動更新,請點擊下面的按鈕。', + 'upgrading' => '正在升級', + 'upgrade_ftp_text' => '繼續簡易升級,要求提供登陸網站託管主機FTP服務器的下列信息,', + 'upgrade_ftp_hostname' => 'FTP 主機名: Example: "localhost"', + 'upgrade_ftp_password' => 'FTP 密碼:', + 'upgrade_ftp_username' => 'FTP 賬戶:', + 'upgrade_status_info' => '您已經更新到最新版本 Ushahidi。', + 'upgrade_db_version' => '數據庫版本: ', + 'upgrade_warning_software_version' => '警告:version.php中的軟件版本和數據庫版本不匹配。', + 'upgrade_warning_db_version' => '警告:version.php中的數據庫版本與數據庫不匹配', + 'upgrade_database' => '數據庫:', +); diff --git a/application/views/admin/manage/categories/categories_js.php b/application/views/admin/manage/categories/categories_js.php old mode 100644 new mode 100755 index 4316041b50..ea7d8609c0 --- a/application/views/admin/manage/categories/categories_js.php +++ b/application/views/admin/manage/categories/categories_js.php @@ -1,17 +1,17 @@ /** * Categories js file. - * + * * Handles javascript stuff related to category function. * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module API Controller * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ $(document).ready(function() { @@ -36,7 +36,7 @@ function(data){ }); } }); - + $("#categorySort tr").hover(function() { $(this.cells[0]).addClass('col-show-handle'); }, function() { @@ -47,7 +47,7 @@ function(data){ $('.category_translations_form_fields').toggle(400); return false; }); - + $('#category_color').ColorPicker({ onSubmit: function(hsb, hex, rgb) { $('#category_color').val(hex); @@ -69,11 +69,11 @@ function fillFields(event) { params = event.data; show_addedit(); - $("#category_id").attr("value", params.category_id); - $("#parent_id").attr("value", params.parent_id); - $("#category_title").attr("value", params.category_title); - $("#category_description").attr("value", params.category_description); - $("#category_color").attr("value", params.category_color); + $("#category_id").val(params.category_id); + $("#parent_id").val(params.parent_id); + $("#category_title").val(params.category_title); + $("#category_description").val(params.category_description); + $("#category_color").val(params.category_color); $(".category_lang").show(); $(".category_lang_"+params.locale).hide(); $.each(params.category_langs, function (lang_key, value) { @@ -93,10 +93,10 @@ function catAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Category ID - $("#category_id_action").attr("value", id); + $("#category_id_action").val(id); // Set Submit Type - $("#category_action").attr("value", action); + $("#category_action").val(action); // Submit Form $("#catListing").submit(); } -} \ No newline at end of file +} diff --git a/application/views/admin/manage/feeds/feeds_js.php b/application/views/admin/manage/feeds/feeds_js.php old mode 100644 new mode 100755 index a71860b8fd..c6a5d78ad9 --- a/application/views/admin/manage/feeds/feeds_js.php +++ b/application/views/admin/manage/feeds/feeds_js.php @@ -4,24 +4,24 @@ * Handles javascript stuff related to feeds function. * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module API Controller * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ // Categories JS function fillFields(id, feed_name, feed_url, feed_visible ) { - $("#feed_id").attr("value", decodeURIComponent(id)); - $("#feed_name").attr("value", decodeURIComponent(feed_name)); - $("#feed_url").attr("value", decodeURIComponent(feed_url)); - $("#feed_visible").attr("value", decodeURIComponent(feed_visible)); - + $("#feed_id").val(decodeURIComponent(id)); + $("#feed_name").val(decodeURIComponent(feed_name)); + $("#feed_url").val(decodeURIComponent(feed_url)); + $("#feed_visible").val(decodeURIComponent(feed_visible)); + } // Form Submission @@ -31,13 +31,13 @@ function feedAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Category ID - $("#feed_id_action").attr("value", id); + $("#feed_id_action").val(id); // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form - $("#feedListing").submit(); - - } + $("#feedListing").submit(); + + } // else{ // return false; // } @@ -47,7 +47,7 @@ function feedAction ( action, confirmAction, id ) function refreshFeeds() { $('#feeds_loading').html('">'); - $("#action").attr("value", 'r'); + $("#action").val('r'); // Submit Form $("#feedListing").submit(); } diff --git a/application/views/admin/manage/feeds/items_js.php b/application/views/admin/manage/feeds/items_js.php old mode 100644 new mode 100755 index 21a56da404..5751d293fb --- a/application/views/admin/manage/feeds/items_js.php +++ b/application/views/admin/manage/feeds/items_js.php @@ -11,20 +11,20 @@ function preview ( id ){ * Handles javascript stuff related to feeds_delete function. * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module API Controller * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ // Categories JS function fillFields(id ) { - $("#feed_id").attr("value", decodeURIComponent(id)); - + $("#feed_id").val(decodeURIComponent(id)); + } // Form Submission @@ -34,24 +34,24 @@ function feedAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Category ID - $("#feed_id_action").attr("value", id); - if (id != '') + $("#feed_id_action").val(id); + if (id != '') { $("input[name=\"item_id[]\"]").attr('checked',false); // Submit Form For Single Item - $("#item_id_action").attr("value", id); + $("#item_id_action").val(id); } else { // Set Item ID to 0 - $("#item_id_action").attr("value", 0); + $("#item_id_action").val(0); } // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form - $("#feedListing").submit(); - - } + $("#feedListing").submit(); + + } // else{ // return false; // } @@ -61,7 +61,7 @@ function feedAction ( action, confirmAction, id ) function refreshFeeds() { $('#feeds_loading').html('">'); - $("#action").attr("value", 'r'); + $("#action").val('r'); // Submit Form $("#feedListing").submit(); } diff --git a/application/views/admin/manage/forms/forms_js.php b/application/views/admin/manage/forms/forms_js.php old mode 100644 new mode 100755 index fa16137b41..d8d3a0d28d --- a/application/views/admin/manage/forms/forms_js.php +++ b/application/views/admin/manage/forms/forms_js.php @@ -4,14 +4,14 @@ * Handles javascript stuff related to forms function. * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module API Controller * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ @@ -27,11 +27,11 @@ function fillFields(id, form_title, form_description, form_visible ) { show_addedit(); - $("#form_id").attr("value", decodeURIComponent(id)); - $("#form_title").attr("value", decodeURIComponent(form_title)); - $("#form_description").attr("value", decodeURIComponent(form_description)); - $("#form_active").attr("value", decodeURIComponent(form_active)); - + $("#form_id").val(decodeURIComponent(id)); + $("#form_title").val(decodeURIComponent(form_title)); + $("#form_description").val(decodeURIComponent(form_description)); + $("#form_active").val(decodeURIComponent(form_active)); + } // Form Submission @@ -39,15 +39,15 @@ function formAction ( action, confirmAction, id ) { var statusMessage; var answer = confirm(' ' + confirmAction + '?'); - + if (answer){ // Set Submit Type - $("#action_" + id).attr("value", action); - + $("#action_" + id).val(action); + // Submit Form - $("#form_action_" + id).submit(); - - } + $("#form_action_" + id).submit(); + + } } // Show Function @@ -84,7 +84,7 @@ function(data){ $('#form_field_' + form_id +' [name=field_name]').focus(); } }, "json"); - }; + }; } // Modify Individual Form Fields @@ -95,7 +95,7 @@ function fieldAction( action, confirmAction, field_id, form_id, field_type ) "background-position" : "center center", "background-repeat" : "no-repeat" }); - + switch(action) { case 'e': diff --git a/application/views/admin/manage/layers/layers_js.php b/application/views/admin/manage/layers/layers_js.php old mode 100644 new mode 100755 index 27d0566ad4..880e223b06 --- a/application/views/admin/manage/layers/layers_js.php +++ b/application/views/admin/manage/layers/layers_js.php @@ -1,28 +1,28 @@ + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module Layers JS View * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ ?> // Layers JS function fillFields(id, layer_name, layer_url, layer_color, layer_file_old) { - $("#layer_id").attr("value", decodeURIComponent(id)); - $("#layer_name").attr("value", decodeURIComponent(layer_name)); - $("#layer_url").attr("value", decodeURIComponent(layer_url)); - $("#layer_color").attr("value", decodeURIComponent(layer_color)); - $("#layer_file_old").attr("value", decodeURIComponent(layer_file_old)); + $("#layer_id").val(decodeURIComponent(id)); + $("#layer_name").val(decodeURIComponent(layer_name)); + $("#layer_url").val(decodeURIComponent(layer_url)); + $("#layer_color").val(decodeURIComponent(layer_color)); + $("#layer_file_old").val(decodeURIComponent(layer_file_old)); } function layerAction ( action, confirmAction, id ) @@ -31,10 +31,10 @@ function layerAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Category ID - $("#layer_id_action").attr("value", id); + $("#layer_id_action").val(id); // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form $("#layerListing").submit(); } -} \ No newline at end of file +} diff --git a/application/views/admin/manage/pages/pages_js.php b/application/views/admin/manage/pages/pages_js.php old mode 100644 new mode 100755 index 5197d83ba9..ca2cda4c16 --- a/application/views/admin/manage/pages/pages_js.php +++ b/application/views/admin/manage/pages/pages_js.php @@ -5,14 +5,14 @@ * Handles javascript stuff related to pages function. * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module Pages Javascript * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ ?> // Pages JS @@ -21,13 +21,13 @@ function fillFields(id, page_title, page_tab, page_description ) { - $("#page_id").attr("value", decodeURIComponent(id)); + $("#page_id").val(decodeURIComponent(id)); page_title = decodeURIComponent(escape($.base64.decode(page_title))); - $("#page_title").attr("value", decodeURIComponent(page_title)); + $("#page_title").val(decodeURIComponent(page_title)); page_tab = decodeURIComponent(escape($.base64.decode(page_tab))); - $("#page_tab").attr("value", decodeURIComponent(page_tab)); + $("#page_tab").val(decodeURIComponent(page_tab)); page_description = decodeURIComponent(escape($.base64.decode(page_description))); - $("#page_description").attr("value", decodeURIComponent(page_description)); + $("#page_description").val(decodeURIComponent(page_description)); $("#page_description").wysiwyg("setContent",decodeURIComponent(page_description)); } @@ -38,9 +38,9 @@ function pageAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Category ID - $("#page_id_action").attr("value", id); + $("#page_id_action").val(id); // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form $("#pageListing").submit(); } @@ -51,28 +51,28 @@ function pageAction ( action, confirmAction, id ) $(document).ready(function(){ hb_full = $("#page_description").wysiwyg({ resizeOptions: {}, - + controls: { bold: { visible : true, groupIndex: 0 }, italic: { visible : true, groupIndex: 0 }, underline: { visible: false }, strikeThrough: { visible: false }, - + justifyLeft:{ visible: true }, justifyCenter: { visible: true }, justifyRight: { visible: true }, justifyFull: { visible: false }, - + subscript: { visible: false }, superscript: { visible: false }, - + undo: { visible: false }, redo: { visible: false }, - + insertOrderedList : { visible : true }, insertUnorderedList : { visible : true }, insertHorizontalRule : { visible : false }, - + h1: { visible: true, className: 'h1', @@ -119,8 +119,8 @@ className: 'h5', groupIndex: 7 }, paragraph: { visible: true }, - - fileManager: { + + fileManager: { visible: false, groupIndex: 12, tooltip: "File Manager", @@ -130,11 +130,11 @@ className: 'h5', }); } }, - + cut : { visible : false }, copy : { visible : false }, paste : { visible : false }, - + html: { visible: true }, code: { visible: false }, fullscreen: { @@ -151,4 +151,3 @@ className: 'h5', }); $.wysiwyg.fileManager.setAjaxHandler(""); }); - diff --git a/application/views/admin/manage/scheduler/scheduler_js.php b/application/views/admin/manage/scheduler/scheduler_js.php old mode 100644 new mode 100755 index a90fdc55e4..5269e5fa14 --- a/application/views/admin/manage/scheduler/scheduler_js.php +++ b/application/views/admin/manage/scheduler/scheduler_js.php @@ -2,12 +2,12 @@ function fillFields(id, scheduler_name, scheduler_weekday, scheduler_day, scheduler_hour, scheduler_minute) { $('#add_edit_form').show(); - $("#scheduler_id").attr("value", decodeURIComponent(id)); - $("#scheduler_name").attr("value", decodeURIComponent(scheduler_name)); - $("#scheduler_weekday").attr("value", decodeURIComponent(scheduler_weekday)); - $("#scheduler_day").attr("value", decodeURIComponent(scheduler_day)); - $("#scheduler_hour").attr("value", decodeURIComponent(scheduler_hour)); - $("#scheduler_minute").attr("value", decodeURIComponent(scheduler_minute)); + $("#scheduler_id").val(decodeURIComponent(id)); + $("#scheduler_name").val(decodeURIComponent(scheduler_name)); + $("#scheduler_weekday").val(decodeURIComponent(scheduler_weekday)); + $("#scheduler_day").val(decodeURIComponent(scheduler_day)); + $("#scheduler_hour").val(decodeURIComponent(scheduler_hour)); + $("#scheduler_minute").val(decodeURIComponent(scheduler_minute)); } @@ -18,10 +18,10 @@ function schedulerAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Category ID - $("#scheduler_id_action").attr("value", id); + $("#scheduler_id_action").val(id); // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form $("#schedulerListing").submit(); } -} \ No newline at end of file +} diff --git a/application/views/admin/reporters/reporters_js.php b/application/views/admin/reporters/reporters_js.php old mode 100644 new mode 100755 index 7f0c39c236..4d8e65c7d1 --- a/application/views/admin/reporters/reporters_js.php +++ b/application/views/admin/reporters/reporters_js.php @@ -5,14 +5,14 @@ * Handles javascript stuff related to reporter function. * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module Reporters Javascript * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ ?> // Reporter JS @@ -32,16 +32,16 @@ function fillFields(id, level_id, service_name, service_account, location_id, lo { show_addedit(); $('#add_edit_form').show(); - $("#reporter_id").attr("value", decodeURIComponent(id)); - $("#level_id").attr("value", decodeURIComponent(level_id)); - $("#service_name").attr("value", decodeURIComponent(service_name)); + $("#reporter_id").val(decodeURIComponent(id)); + $("#level_id").val(decodeURIComponent(level_id)); + $("#service_name").val(decodeURIComponent(service_name)); $("#reporter_service").text(decodeURIComponent(service_name)); - $("#service_account").attr("value", decodeURIComponent(service_account)); + $("#service_account").val(decodeURIComponent(service_account)); $("#reporter_account").text(decodeURIComponent(service_account)); - $("#location_id").attr("value", decodeURIComponent(location_id)); - $("#location_name").attr("value", decodeURIComponent(location_name)); - $("#latitude").attr("value", decodeURIComponent(latitude)); - $("#longitude").attr("value", decodeURIComponent(longitude)); + $("#location_id").val(decodeURIComponent(location_id)); + $("#location_name").val(decodeURIComponent(location_name)); + $("#latitude").val(decodeURIComponent(latitude)); + $("#longitude").val(decodeURIComponent(longitude)); showMap(); } @@ -52,9 +52,9 @@ function reporterAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Reporter ID - $("#rptr_id_action").attr("value", id); + $("#rptr_id_action").val(id); // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form $("#rptrListing").submit(); } @@ -69,33 +69,33 @@ function reportersAction ( action, confirmAction, reporter_id, level_id ) { var statusMessage; if( !isChecked( "reporter" ) && reporter_id=='' ) - { + { alert('Please select at least one reporter.'); } else { var answer = confirm(' ' + confirmAction + '?') if (answer){ - + // Set Submit Type - $("#reporter_action").attr("value", action); - + $("#reporter_action").val(action); + // Set Level ID - $("#level_id_main").attr("value", level_id); - - if (reporter_id != '') + $("#level_id_main").val(level_id); + + if (reporter_id != '') { // Submit Form For Single Item - $("#reporter_single").attr("value", reporter_id); + $("#reporter_single").val(reporter_id); $("#reporterMain").submit(); } else { // Set Hidden form item to 000 so that it doesn't return server side error for blank value - $("#reporter_single").attr("value", "000"); - + $("#reporter_single").val("000"); + // Submit Form For Multiple Items $("#reporterMain").submit(); } - + } else { return false; } @@ -111,12 +111,12 @@ function reportersAction ( action, confirmAction, reporter_id, level_id ) function showMap() { $("#ReporterMap").html(''); - + if (markers) { markers.destroy(); markers = null; } - + // Now initialise the map var options = { units: "dd" @@ -127,23 +127,23 @@ function showMap() maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, 20037508.34, 20037508.34), maxResolution: 156543.0339 }; - + map = new OpenLayers.Map('ReporterMap', options); - + map.addLayers(); - + map.addControl(new OpenLayers.Control.Navigation()); map.addControl(new OpenLayers.Control.Zoom()); map.addControl(new OpenLayers.Control.MousePosition({ - formatOutput: Ushahidi.convertLongLat + formatOutput: Ushahidi.convertLongLat })); map.addControl(new OpenLayers.Control.LayerSwitcher()); - + // Create the markers layer markers = new OpenLayers.Layer.Markers("Markers"); map.addLayer(markers); - + // create a lat/lon object var latitude, longitude; if ($("#latitude").val() != "" && $("#longitude").val() != "") { @@ -155,14 +155,14 @@ function showMap() } var myPoint = new OpenLayers.LonLat(longitude, latitude); myPoint.transform(proj_4326, map.getProjectionObject()); - + // create a marker positioned at a lon/lat var marker = new OpenLayers.Marker(myPoint); markers.addMarker(marker); - + // display the map centered on a latitude and longitude (Google zoom levels) map.setCenter(myPoint, ); - + // Detect Map Clicks map.events.register("click", map, function(e){ var lonlat = map.getLonLatFromViewPortPx(e.xy); @@ -170,13 +170,13 @@ function showMap() m = new OpenLayers.Marker(lonlat); markers.clearMarkers(); markers.addMarker(m); - - lonlat2.transform(proj_900913,proj_4326); + + lonlat2.transform(proj_900913,proj_4326); // Update form values (jQuery) - $("#latitude").attr("value", lonlat2.lat); - $("#longitude").attr("value", lonlat2.lon); + $("#latitude").val(lonlat2.lat); + $("#longitude").val(lonlat2.lon); }); - + // Event on Latitude/Longitude Typing Change $('#latitude, #longitude').bind("change keyup", function() { var newlat = $("#latitude").val(); @@ -208,4 +208,4 @@ function showMap() return false; } }); -} \ No newline at end of file +} diff --git a/application/views/admin/users/roles_js.php b/application/views/admin/users/roles_js.php index b203e49633..ec4179dba2 100755 --- a/application/views/admin/users/roles_js.php +++ b/application/views/admin/users/roles_js.php @@ -2,10 +2,10 @@ function fillFields(id, name, description, access_level, permissions) { show_addedit(); - $("#role_id").attr("value", decodeURIComponent(id)); - $("#name").attr("value", decodeURIComponent(name)); - $("#description").attr("value", decodeURIComponent(description)); - $("#access_level").attr("value", decodeURIComponent(access_level)); + $("#role_id").val(decodeURIComponent(id)); + $("#name").val(decodeURIComponent(name)); + $("#description").val(decodeURIComponent(description)); + $("#access_level").val(decodeURIComponent(access_level)); for (i = 0; i < permissions.length; i++) { @@ -20,9 +20,9 @@ function rolesAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction) if (answer){ // Set Role ID - $("#role_id_main").attr("value", id); + $("#role_id_main").val(id); // Set Submit Type - $("#role_action_main").attr("value", action); + $("#role_action_main").val(action); // Submit Form $("#roleListing").submit(); } diff --git a/application/views/admin/users/users_js.php b/application/views/admin/users/users_js.php old mode 100644 new mode 100755 index 20aceb70f7..5363faf258 --- a/application/views/admin/users/users_js.php +++ b/application/views/admin/users/users_js.php @@ -4,39 +4,39 @@ * Handles javascript stuff related to users function * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module API Controller * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ // Users JS function fillFields(id, username, name, role, email) { - $("#user_id").attr("value", decodeURIComponent(id)); - $("#username").attr("value", decodeURIComponent(username)); - $("#name").attr("value", decodeURIComponent(name)); - $('#role').attr("value", decodeURIComponent( role ) ); - $('#email').attr("value", decodeURIComponent( email ) ); - + $("#user_id").val(decodeURIComponent(id)); + $("#username").val(decodeURIComponent(username)); + $("#name").val(decodeURIComponent(name)); + $('#role').val(decodeURIComponent( role ) ); + $('#email').val(decodeURIComponent( email ) ); + } - + // Form Submission function userAction ( action, confirmAction, id ) { var statusMessage; - var answer = confirm(' ' + var answer = confirm(' ' + confirmAction + ' user with ID: ' + id + '?') if (answer){ // Set User ID - $("#user_id_action").attr("value", id); + $("#user_id_action").val(id); // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form - $("#userMain").submit(); + $("#userMain").submit(); } - } \ No newline at end of file + } diff --git a/application/views/map_common_js.php b/application/views/map_common_js.php index b775097604..898cfb0445 100644 --- a/application/views/map_common_js.php +++ b/application/views/map_common_js.php @@ -85,7 +85,7 @@ function addRadiusLayer(map, lat, lon, radius) return; } - if (typeof radius == 'undefined' || radius > 0) + if (typeof radius == 'undefined' || radius <= 0) { // Set the radius to a default value radius = 20000; @@ -110,7 +110,7 @@ function addRadiusLayer(map, lat, lon, radius) } /** - * Draw circle around point + * Draw circle around point and return the layer */ function drawCircle(map, lat, lon, radius) { @@ -145,6 +145,8 @@ function drawCircle(map, lat, lon, radius) ); radiusLayer.addFeatures( [circleFeature] ); + + return radiusLayer; } /** diff --git a/application/views/reset_password_js.php b/application/views/reset_password_js.php old mode 100644 new mode 100755 index d3cface9d5..cc8f6faf6d --- a/application/views/reset_password_js.php +++ b/application/views/reset_password_js.php @@ -2,21 +2,20 @@ * Reset password js file. * * Handles javascript stuff related to reset password function. - * + * * PHP version 5 - * LICENSE: This source file is subject to LGPL license + * LICENSE: This source file is subject to LGPL license * that is available through the world-wide-web at the following URI: * http://www.gnu.org/copyleft/lesser.html - * @author Ushahidi Team + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com - * @module Alerts Controller + * @module Alerts Controller * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ function fillFields(email) { - $('#email').attr("value", decodeURIComponent( email ) ); - - } + $('#email').val(decodeURIComponent( email ) ); + } diff --git a/config/deploy.rb b/config/deploy.rb new file mode 100644 index 0000000000..e51d83580c --- /dev/null +++ b/config/deploy.rb @@ -0,0 +1,57 @@ +# config valid only for current version of Capistrano +lock '3.4.1' + +set :application, 'mapa_desastre_ec' +set :repo_url, 'git@github.com:desastre-ecuador/mapa.desastre.ec.git' +set :scm, :git +set :format, :pretty +set :log_level, :debug +set :pty, true +set :keep_releases, 5 + +server 'mapa.desastre.ec', user: 'deployer', roles: %{app} +role :app, %w{deployer@mapa.desastre.ec} + +set :ssh_options, { + keys: %w(config/deploy/id_rsa_deploy ~/.ssh/id_rsa), + forward_agent: false, + auth_methods: %w(publickey), + user: 'deployer', + port: 2231, +} +set :linked_files, %w{ + .htaccess + application/config/auth.php + application/config/config.php + application/config/database.php + application/config/encryption.php +} +set :linked_dirs, %w{application/logs application/cache media/uploads} + +namespace :deploy do + desc "Clean installer and cache" + task :clean_install do + on roles(:app) do + within release_path do + execute :sudo, ' rm -rf installer/ application/cache/*' + execute :sudo, ' service apache2 reload' + end + end + end +end + +namespace :db do + desc "Make a database dump" + task :dump do + on roles(:app) do |host| + db_name = fetch(:db_name) + ask(:db_password, db_name, echo: false) + file_name = "/tmp/#{Time.now.to_i}.#{db_name}.sql.gz" + execute "set -o pipefail && mysqldump --force --opt -u #{db_name} -p --databases #{db_name} | gzip -9 > #{file_name}", + interaction_handler: { /Enter password/ => "#{fetch(:db_password)}\n" } + puts "Database dumped in #{file_name} in the remote host" + end + end +end + +after 'deploy:finished', 'deploy:clean_install' diff --git a/config/deploy/id_rsa_deploy.enc b/config/deploy/id_rsa_deploy.enc new file mode 100644 index 0000000000..a0f4ccf3d3 Binary files /dev/null and b/config/deploy/id_rsa_deploy.enc differ diff --git a/config/deploy/id_rsa_deploy.pub b/config/deploy/id_rsa_deploy.pub new file mode 100644 index 0000000000..4c726798de --- /dev/null +++ b/config/deploy/id_rsa_deploy.pub @@ -0,0 +1 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmHpz+y/9WIJ7wh9CW1jJ/TisD6FjMYLEPv2bMYmWmQPzEGGH4l5xr6q+RJljkxedge605mfEHmwQdPXtlVUpjYdmKcj8/VBZizLD/b9OWozkiZ3ODatFMXqW28mwHil9cRdntSsGyQ70mopePq8yhv6bkMkI/JcNOief1qYAK2evmVewDv9EHko2xLVS6ZtzQSXq1EUF6wl73TW3PpblK7JqSgT51r6vMXTuOen8Q04YnBaOJ0P5UtIurJAXKu77ngWEPESmltvwflg+2HuAwejZebN5UVs3NwubuBgvPyjzKyyQX6GPPLoOgiRz4pWeacHagsqOOg+3zBheegy8/ travis-deploy diff --git a/config/deploy/production.rb b/config/deploy/production.rb new file mode 100644 index 0000000000..b8ffc6570f --- /dev/null +++ b/config/deploy/production.rb @@ -0,0 +1,3 @@ +set :branch , 'master' +set :deploy_to, '/var/www/deploys/www/mapa.desastre.ec' +set :db_name, 'mapades_prod' diff --git a/config/deploy/staging.rb b/config/deploy/staging.rb new file mode 100644 index 0000000000..d5f5e5a65a --- /dev/null +++ b/config/deploy/staging.rb @@ -0,0 +1,3 @@ +set :branch , 'develop' +set :deploy_to, '/var/www/deploys/www/beta.mapa.desastre.ec' +set :db_name, 'mapades_beta' diff --git a/config/deploy/travis.sh b/config/deploy/travis.sh new file mode 100755 index 0000000000..8af028a7cb --- /dev/null +++ b/config/deploy/travis.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +set -exuo pipefail + +case "$TRAVIS_BRANCH" in + develop) + deploy_environment=staging + ;; + master) + deploy_environment=production + ;; + *) + echo Branch not recognized for deployment + exit 0 +esac + +bundle exec cap "$deploy_environment" deploy diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000000..cc0d3ff2f5 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +apache2-php5: + build: . + ports: + - "8080:80" + volumes: + - ./:/var/www/html + links: + - mysql + +mysql: + image: mysql:5.6 + environment: + - MYSQL_ROOT_PASSWORD=root \ No newline at end of file diff --git a/installer/mod_rewrite/.htaccess b/installer/mod_rewrite/.htaccess deleted file mode 100644 index 30b3886124..0000000000 --- a/installer/mod_rewrite/.htaccess +++ /dev/null @@ -1,2 +0,0 @@ -RewriteEngine On -RewriteRule ^.*$ test.php \ No newline at end of file diff --git a/media/img/banner.jpg b/media/img/banner.jpg new file mode 100644 index 0000000000..2fb6f91219 Binary files /dev/null and b/media/img/banner.jpg differ diff --git a/media/img/hug.jpg b/media/img/hug.jpg new file mode 100644 index 0000000000..4f148bcb59 Binary files /dev/null and b/media/img/hug.jpg differ diff --git a/media/js/jquery.js b/media/js/jquery.js index 93adea19fd..da4170647d 100644 --- a/media/js/jquery.js +++ b/media/js/jquery.js @@ -1,4 +1,6 @@ -/*! jQuery v1.7.2 jquery.com | jquery.org/license */ -(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"":"")+""),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;e=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?+d:j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
a",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="
"+""+"
",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="
t
",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="
",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function( -a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler,g=p.selector),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));o.match.globalPOS=p;var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f -.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(;d1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]===""&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file +/*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license +//@ sourceMappingURL=jquery-1.10.2.min.map +*/ +(function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="
",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="
a",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="
t
",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="
",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t +}({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/\s*$/g,At={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X
","
"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?""!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); +u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("':""),a._keyEvent=!1,K},_generateMonthYearHeader:function(a,b,c,d,e,f,g,h){var i=this._get(a,"changeMonth"),j=this._get(a,"changeYear"),k=this._get(a,"showMonthAfterYear"),l='
',m="";if(f||!i)m+=''+g[b]+"";else{var n=d&&d.getFullYear()==c,o=e&&e.getFullYear()==c;m+='"}k||(l+=m+(f||!i||!j?" ":""));if(!a.yearshtml){a.yearshtml="";if(f||!j)l+=''+c+"";else{var q=this._get(a,"yearRange").split(":"),r=(new Date).getFullYear(),s=function(a){var b=a.match(/c[+-].*/)?c+parseInt(a.substring(1),10):a.match(/[+-].*/)?r+parseInt(a,10):parseInt(a,10);return isNaN(b)?r:b},t=s(q[0]),u=Math.max(t,s(q[1]||""));t=d?Math.max(t,d.getFullYear()):t,u=e?Math.min(u,e.getFullYear()):u,a.yearshtml+='",l+=a.yearshtml,a.yearshtml=null}}return l+=this._get(a,"yearSuffix"),k&&(l+=(f||!i||!j?" ":"")+m),l+="
",l},_adjustInstDate:function(a,b,c){var d=a.drawYear+(c=="Y"?b:0),e=a.drawMonth+(c=="M"?b:0),f=Math.min(a.selectedDay,this._getDaysInMonth(d,e))+(c=="D"?b:0),g=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(d,e,f)));a.selectedDay=g.getDate(),a.drawMonth=a.selectedMonth=g.getMonth(),a.drawYear=a.selectedYear=g.getFullYear(),(c=="M"||c=="Y")&&this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max"),e=c&&bd?d:e,e},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");b&&b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){var b=this._get(a,"numberOfMonths");return b==null?[1,1]:typeof b=="number"?[1,b]:b},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,d){var e=this._getNumberOfMonths(a),f=this._daylightSavingAdjust(new Date(c,d+(b<0?b:e[0]*e[1]),1));return b<0&&f.setDate(this._getDaysInMonth(f.getFullYear(),f.getMonth())),this._isInRange(a,f)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!d||b.getTime()<=d.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");return b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10),{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,d){b||(a.currentDay=a.selectedDay,a.currentMonth=a.selectedMonth,a.currentYear=a.selectedYear);var e=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(d,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),e,this._getFormatConfig(a))}}),$.fn.datepicker=function(a){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv),$.datepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);return typeof a!="string"||a!="isDisabled"&&a!="getDate"&&a!="widget"?a=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b)):this.each(function(){typeof a=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this].concat(b)):$.datepicker._attachDatepicker(this,a)}):$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.8.21",window["DP_jQuery_"+dpuuid]=$})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 -* https://github.com/jquery/jquery-ui -* Includes: jquery.ui.progressbar.js -* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){a.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()}),this.valueDiv=a("
").appendTo(this.element),this.oldValue=this._value(),this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove(),a.Widget.prototype.destroy.apply(this,arguments)},value:function(a){return a===b?this._value():(this._setOption("value",a),this)},_setOption:function(b,c){b==="value"&&(this.options.value=c,this._refreshValue(),this._value()===this.options.max&&this._trigger("complete")),a.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;return typeof a!="number"&&(a=0),Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*this._value()/this.options.max},_refreshValue:function(){var a=this.value(),b=this._percentage();this.oldValue!==a&&(this.oldValue=a,this._trigger("change")),this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(b.toFixed(0)+"%"),this.element.attr("aria-valuenow",a)}}),a.extend(a.ui.progressbar,{version:"1.8.21"})})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 -* https://github.com/jquery/jquery-ui -* Includes: jquery.effects.core.js -* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -jQuery.effects||function(a,b){function c(b){var c;return b&&b.constructor==Array&&b.length==3?b:(c=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(b))?[parseInt(c[1],10),parseInt(c[2],10),parseInt(c[3],10)]:(c=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(b))?[parseFloat(c[1])*2.55,parseFloat(c[2])*2.55,parseFloat(c[3])*2.55]:(c=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(b))?[parseInt(c[1],16),parseInt(c[2],16),parseInt(c[3],16)]:(c=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(b))?[parseInt(c[1]+c[1],16),parseInt(c[2]+c[2],16),parseInt(c[3]+c[3],16)]:(c=/rgba\(0, 0, 0, 0\)/.exec(b))?e.transparent:e[a.trim(b).toLowerCase()]}function d(b,d){var e;do{e=a.curCSS(b,d);if(e!=""&&e!="transparent"||a.nodeName(b,"body"))break;d="backgroundColor"}while(b=b.parentNode);return c(e)}function h(){var a=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,b={},c,d;if(a&&a.length&&a[0]&&a[a[0]]){var e=a.length;while(e--)c=a[e],typeof a[c]=="string"&&(d=c.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),b[d]=a[c])}else for(c in a)typeof a[c]=="string"&&(b[c]=a[c]);return b}function i(b){var c,d;for(c in b)d=b[c],(d==null||a.isFunction(d)||c in g||/scrollbar/.test(c)||!/color/i.test(c)&&isNaN(parseFloat(d)))&&delete b[c];return b}function j(a,b){var c={_:0},d;for(d in b)a[d]!=b[d]&&(c[d]=b[d]);return c}function k(b,c,d,e){typeof b=="object"&&(e=c,d=null,c=b,b=c.effect),a.isFunction(c)&&(e=c,d=null,c={});if(typeof c=="number"||a.fx.speeds[c])e=d,d=c,c={};return a.isFunction(d)&&(e=d,d=null),c=c||{},d=d||c.duration,d=a.fx.off?0:typeof d=="number"?d:d in a.fx.speeds?a.fx.speeds[d]:a.fx.speeds._default,e=e||c.complete,[b,c,d,e]}function l(b){return!b||typeof b=="number"||a.fx.speeds[b]?!0:typeof b=="string"&&!a.effects[b]?!0:!1}a.effects={},a.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","borderColor","color","outlineColor"],function(b,e){a.fx.step[e]=function(a){a.colorInit||(a.start=d(a.elem,e),a.end=c(a.end),a.colorInit=!0),a.elem.style[e]="rgb("+Math.max(Math.min(parseInt(a.pos*(a.end[0]-a.start[0])+a.start[0],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[1]-a.start[1])+a.start[1],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[2]-a.start[2])+a.start[2],10),255),0)+")"}});var e={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},f=["add","remove","toggle"],g={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};a.effects.animateClass=function(b,c,d,e){return a.isFunction(d)&&(e=d,d=null),this.queue(function(){var g=a(this),k=g.attr("style")||" ",l=i(h.call(this)),m,n=g.attr("class")||"";a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),m=i(h.call(this)),g.attr("class",n),g.animate(j(l,m),{queue:!1,duration:c,easing:d,complete:function(){a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),typeof g.attr("style")=="object"?(g.attr("style").cssText="",g.attr("style").cssText=k):g.attr("style",k),e&&e.apply(this,arguments),a.dequeue(this)}})})},a.fn.extend({_addClass:a.fn.addClass,addClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{add:b},c,d,e]):this._addClass(b)},_removeClass:a.fn.removeClass,removeClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{remove:b},c,d,e]):this._removeClass(b)},_toggleClass:a.fn.toggleClass,toggleClass:function(c,d,e,f,g){return typeof d=="boolean"||d===b?e?a.effects.animateClass.apply(this,[d?{add:c}:{remove:c},e,f,g]):this._toggleClass(c,d):a.effects.animateClass.apply(this,[{toggle:c},d,e,f])},switchClass:function(b,c,d,e,f){return a.effects.animateClass.apply(this,[{add:c,remove:b},d,e,f])}}),a.extend(a.effects,{version:"1.8.21",save:function(a,b){for(var c=0;c").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e=document.activeElement;try{e.id}catch(f){e=document.body}return b.wrap(d),(b[0]===e||a.contains(b[0],e))&&a(e).focus(),d=b.parent(),b.css("position")=="static"?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),d.css(c).show()},removeWrapper:function(b){var c,d=document.activeElement;return b.parent().is(".ui-effects-wrapper")?(c=b.parent().replaceWith(b),(b[0]===d||a.contains(b[0],d))&&a(d).focus(),c):b},setTransition:function(b,c,d,e){return e=e||{},a.each(c,function(a,c){var f=b.cssUnit(c);f[0]>0&&(e[c]=f[0]*d+f[1])}),e}}),a.fn.extend({effect:function(b,c,d,e){var f=k.apply(this,arguments),g={options:f[1],duration:f[2],callback:f[3]},h=g.options.mode,i=a.effects[b];return a.fx.off||!i?h?this[h](g.duration,g.callback):this.each(function(){g.callback&&g.callback.call(this)}):i.call(this,g)},_show:a.fn.show,show:function(a){if(l(a))return this._show.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="show",this.effect.apply(this,b)},_hide:a.fn.hide,hide:function(a){if(l(a))return this._hide.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="hide",this.effect.apply(this,b)},__toggle:a.fn.toggle,toggle:function(b){if(l(b)||typeof b=="boolean"||a.isFunction(b))return this.__toggle.apply(this,arguments);var c=k.apply(this,arguments);return c[1].mode="toggle",this.effect.apply(this,c)},cssUnit:function(b){var c=this.css(b),d=[];return a.each(["em","px","%","pt"],function(a,b){c.indexOf(b)>0&&(d=[parseFloat(c),b])}),d}}),a.easing.jswing=a.easing.swing,a.extend(a.easing,{def:"easeOutQuad",swing:function(b,c,d,e,f){return a.easing[a.easing.def](b,c,d,e,f)},easeInQuad:function(a,b,c,d,e){return d*(b/=e)*b+c},easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c},easeInOutQuad:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b+c:-d/2*(--b*(b-2)-1)+c},easeInCubic:function(a,b,c,d,e){return d*(b/=e)*b*b+c},easeOutCubic:function(a,b,c,d,e){return d*((b=b/e-1)*b*b+1)+c},easeInOutCubic:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b+c:d/2*((b-=2)*b*b+2)+c},easeInQuart:function(a,b,c,d,e){return d*(b/=e)*b*b*b+c},easeOutQuart:function(a,b,c,d,e){return-d*((b=b/e-1)*b*b*b-1)+c},easeInOutQuart:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b+c:-d/2*((b-=2)*b*b*b-2)+c},easeInQuint:function(a,b,c,d,e){return d*(b/=e)*b*b*b*b+c},easeOutQuint:function(a,b,c,d,e){return d*((b=b/e-1)*b*b*b*b+1)+c},easeInOutQuint:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b*b+c:d/2*((b-=2)*b*b*b*b+2)+c},easeInSine:function(a,b,c,d,e){return-d*Math.cos(b/e*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,e){return d*Math.sin(b/e*(Math.PI/2))+c},easeInOutSine:function(a,b,c,d,e){return-d/2*(Math.cos(Math.PI*b/e)-1)+c},easeInExpo:function(a,b,c,d,e){return b==0?c:d*Math.pow(2,10*(b/e-1))+c},easeOutExpo:function(a,b,c,d,e){return b==e?c+d:d*(-Math.pow(2,-10*b/e)+1)+c},easeInOutExpo:function(a,b,c,d,e){return b==0?c:b==e?c+d:(b/=e/2)<1?d/2*Math.pow(2,10*(b-1))+c:d/2*(-Math.pow(2,-10*--b)+2)+c},easeInCirc:function(a,b,c,d,e){return-d*(Math.sqrt(1-(b/=e)*b)-1)+c},easeOutCirc:function(a,b,c,d,e){return d*Math.sqrt(1-(b=b/e-1)*b)+c},easeInOutCirc:function(a,b,c,d,e){return(b/=e/2)<1?-d/2*(Math.sqrt(1-b*b)-1)+c:d/2*(Math.sqrt(1-(b-=2)*b)+1)+c},easeInElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e)==1)return c+d;g||(g=e*.3);if(h=0)&&i(e,!n)}}),t("").outerWidth(1).jquery||t.each(["Width","Height"],function(i,s){function n(e,i,s,n){return t.each(o,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),n&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var o="Width"===s?["Left","Right"]:["Top","Bottom"],a=s.toLowerCase(),r={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+s]=function(i){return i===e?r["inner"+s].call(this):this.each(function(){t(this).css(a,n(this,i)+"px")})},t.fn["outer"+s]=function(e,i){return"number"!=typeof e?r["outer"+s].call(this,e):this.each(function(){t(this).css(a,n(this,e,!0,i)+"px")})}}),t.fn.addBack||(t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t("").data("a-b","a").removeData("a-b").data("a-b")&&(t.fn.removeData=function(e){return function(i){return arguments.length?e.call(this,t.camelCase(i)):e.call(this)}}(t.fn.removeData)),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase()),t.support.selectstart="onselectstart"in document.createElement("div"),t.fn.extend({disableSelection:function(){return this.bind((t.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(t){t.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),t.extend(t.ui,{plugin:{add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i){var s,n=t.plugins[e];if(n&&t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType)for(s=0;n.length>s;s++)t.options[n[s][0]]&&n[s][1].apply(t.element,i)}},hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)}})})(jQuery),function(t,e){var i=0,s=Array.prototype.slice,n=t.cleanData;t.cleanData=function(e){for(var i,s=0;null!=(i=e[s]);s++)try{t(i).triggerHandler("remove")}catch(o){}n(e)},t.widget=function(i,s,n){var o,a,r,h,l={},c=i.split(".")[0];i=i.split(".")[1],o=c+"-"+i,n||(n=s,s=t.Widget),t.expr[":"][o.toLowerCase()]=function(e){return!!t.data(e,o)},t[c]=t[c]||{},a=t[c][i],r=t[c][i]=function(t,i){return this._createWidget?(arguments.length&&this._createWidget(t,i),e):new r(t,i)},t.extend(r,a,{version:n.version,_proto:t.extend({},n),_childConstructors:[]}),h=new s,h.options=t.widget.extend({},h.options),t.each(n,function(i,n){return t.isFunction(n)?(l[i]=function(){var t=function(){return s.prototype[i].apply(this,arguments)},e=function(t){return s.prototype[i].apply(this,t)};return function(){var i,s=this._super,o=this._superApply;return this._super=t,this._superApply=e,i=n.apply(this,arguments),this._super=s,this._superApply=o,i}}(),e):(l[i]=n,e)}),r.prototype=t.widget.extend(h,{widgetEventPrefix:a?h.widgetEventPrefix:i},l,{constructor:r,namespace:c,widgetName:i,widgetFullName:o}),a?(t.each(a._childConstructors,function(e,i){var s=i.prototype;t.widget(s.namespace+"."+s.widgetName,r,i._proto)}),delete a._childConstructors):s._childConstructors.push(r),t.widget.bridge(i,r)},t.widget.extend=function(i){for(var n,o,a=s.call(arguments,1),r=0,h=a.length;h>r;r++)for(n in a[r])o=a[r][n],a[r].hasOwnProperty(n)&&o!==e&&(i[n]=t.isPlainObject(o)?t.isPlainObject(i[n])?t.widget.extend({},i[n],o):t.widget.extend({},o):o);return i},t.widget.bridge=function(i,n){var o=n.prototype.widgetFullName||i;t.fn[i]=function(a){var r="string"==typeof a,h=s.call(arguments,1),l=this;return a=!r&&h.length?t.widget.extend.apply(null,[a].concat(h)):a,r?this.each(function(){var s,n=t.data(this,o);return n?t.isFunction(n[a])&&"_"!==a.charAt(0)?(s=n[a].apply(n,h),s!==n&&s!==e?(l=s&&s.jquery?l.pushStack(s.get()):s,!1):e):t.error("no such method '"+a+"' for "+i+" widget instance"):t.error("cannot call methods on "+i+" prior to initialization; "+"attempted to call method '"+a+"'")}):this.each(function(){var e=t.data(this,o);e?e.option(a||{})._init():t.data(this,o,new n(a,this))}),l}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this.bindings=t(),this.hoverable=t(),this.focusable=t(),s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this._create(),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:t.noop,_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){this._destroy(),this.element.unbind(this.eventNamespace).removeData(this.widgetName).removeData(this.widgetFullName).removeData(t.camelCase(this.widgetFullName)),this.widget().unbind(this.eventNamespace).removeAttr("aria-disabled").removeClass(this.widgetFullName+"-disabled "+"ui-state-disabled"),this.bindings.unbind(this.eventNamespace),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")},_destroy:t.noop,widget:function(){return this.element},option:function(i,s){var n,o,a,r=i;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof i)if(r={},n=i.split("."),i=n.shift(),n.length){for(o=r[i]=t.widget.extend({},this.options[i]),a=0;n.length-1>a;a++)o[n[a]]=o[n[a]]||{},o=o[n[a]];if(i=n.pop(),s===e)return o[i]===e?null:o[i];o[i]=s}else{if(s===e)return this.options[i]===e?null:this.options[i];r[i]=s}return this._setOptions(r),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return this.options[t]=e,"disabled"===t&&(this.widget().toggleClass(this.widgetFullName+"-disabled ui-state-disabled",!!e).attr("aria-disabled",e),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")),this},enable:function(){return this._setOption("disabled",!1)},disable:function(){return this._setOption("disabled",!0)},_on:function(i,s,n){var o,a=this;"boolean"!=typeof i&&(n=s,s=i,i=!1),n?(s=o=t(s),this.bindings=this.bindings.add(s)):(n=s,s=this.element,o=this.widget()),t.each(n,function(n,r){function h(){return i||a.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof r?a[r]:r).apply(a,arguments):e}"string"!=typeof r&&(h.guid=r.guid=r.guid||h.guid||t.guid++);var l=n.match(/^(\w+)\s*(.*)$/),c=l[1]+a.eventNamespace,u=l[2];u?o.delegate(u,c,h):s.bind(c,h)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.unbind(e).undelegate(e)},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){t(e.currentTarget).addClass("ui-state-hover")},mouseleave:function(e){t(e.currentTarget).removeClass("ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){t(e.currentTarget).addClass("ui-state-focus")},focusout:function(e){t(e.currentTarget).removeClass("ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}})}(jQuery),function(t){var e=!1;t(document).mouseup(function(){e=!1}),t.widget("ui.mouse",{version:"1.10.3",options:{cancel:"input,textarea,button,select,option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.bind("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).bind("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):undefined}),this.started=!1},_mouseDestroy:function(){this.element.unbind("."+this.widgetName),this._mouseMoveDelegate&&t(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(i){if(!e){this._mouseStarted&&this._mouseUp(i),this._mouseDownEvent=i;var s=this,n=1===i.which,o="string"==typeof this.options.cancel&&i.target.nodeName?t(i.target).closest(this.options.cancel).length:!1;return n&&!o&&this._mouseCapture(i)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){s.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(i)&&this._mouseDelayMet(i)&&(this._mouseStarted=this._mouseStart(i)!==!1,!this._mouseStarted)?(i.preventDefault(),!0):(!0===t.data(i.target,this.widgetName+".preventClickEvent")&&t.removeData(i.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return s._mouseMove(t)},this._mouseUpDelegate=function(t){return s._mouseUp(t)},t(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate),i.preventDefault(),e=!0,!0)):!0}},_mouseMove:function(e){return t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button?this._mouseUp(e):this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){return t(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),!1},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}})}(jQuery),function(t){t.widget("ui.draggable",t.ui.mouse,{version:"1.10.3",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"!==this.options.helper||/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},_destroy:function(){this.element.removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy()},_mouseCapture:function(e){var i=this.options;return this.helper||i.disabled||t(e.target).closest(".ui-resizable-handle").length>0?!1:(this.handle=this._getHandle(e),this.handle?(t(i.iframeFix===!0?"iframe":i.iframeFix).each(function(){t("
").css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(t(this).offset()).appendTo("body")}),!0):!1)},_mouseStart:function(e){var i=this.options;return this.helper=this._createHelper(e),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),t.ui.ddmanager&&(t.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offsetParent=this.helper.offsetParent(),this.offsetParentCssPosition=this.offsetParent.css("position"),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},this.offset.scroll=!1,t.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(e),this.originalPageX=e.pageX,this.originalPageY=e.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this._setContainment(),this._trigger("start",e)===!1?(this._clear(),!1):(this._cacheHelperProportions(),t.ui.ddmanager&&!i.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this._mouseDrag(e,!0),t.ui.ddmanager&&t.ui.ddmanager.dragStart(this,e),!0)},_mouseDrag:function(e,i){if("fixed"===this.offsetParentCssPosition&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(e),this.positionAbs=this._convertPositionTo("absolute"),!i){var s=this._uiHash();if(this._trigger("drag",e,s)===!1)return this._mouseUp({}),!1;this.position=s.position}return this.options.axis&&"y"===this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"===this.options.axis||(this.helper[0].style.top=this.position.top+"px"),t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),!1},_mouseStop:function(e){var i=this,s=!1;return t.ui.ddmanager&&!this.options.dropBehaviour&&(s=t.ui.ddmanager.drop(this,e)),this.dropped&&(s=this.dropped,this.dropped=!1),"original"!==this.options.helper||t.contains(this.element[0].ownerDocument,this.element[0])?("invalid"===this.options.revert&&!s||"valid"===this.options.revert&&s||this.options.revert===!0||t.isFunction(this.options.revert)&&this.options.revert.call(this.element,s)?t(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){i._trigger("stop",e)!==!1&&i._clear()}):this._trigger("stop",e)!==!1&&this._clear(),!1):!1},_mouseUp:function(e){return t("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),t.ui.ddmanager&&t.ui.ddmanager.dragStop(this,e),t.ui.mouse.prototype._mouseUp.call(this,e)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(e){return this.options.handle?!!t(e.target).closest(this.element.find(this.options.handle)).length:!0},_createHelper:function(e){var i=this.options,s=t.isFunction(i.helper)?t(i.helper.apply(this.element[0],[e])):"clone"===i.helper?this.element.clone().removeAttr("id"):this.element;return s.parents("body").length||s.appendTo("parent"===i.appendTo?this.element[0].parentNode:i.appendTo),s[0]===this.element[0]||/(fixed|absolute)/.test(s.css("position"))||s.css("position","absolute"),s},_adjustOffsetFromHelper:function(e){"string"==typeof e&&(e=e.split(" ")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),"left"in e&&(this.offset.click.left=e.left+this.margins.left),"right"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),"top"in e&&(this.offset.click.top=e.top+this.margins.top),"bottom"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_getParentOffset:function(){var e=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==document&&t.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),(this.offsetParent[0]===document.body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&t.ui.ie)&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:e.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"===this.cssPosition){var t=this.element.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,i,s,n=this.options;return n.containment?"window"===n.containment?(this.containment=[t(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,t(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,t(window).scrollLeft()+t(window).width()-this.helperProportions.width-this.margins.left,t(window).scrollTop()+(t(window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],undefined):"document"===n.containment?(this.containment=[0,0,t(document).width()-this.helperProportions.width-this.margins.left,(t(document).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],undefined):n.containment.constructor===Array?(this.containment=n.containment,undefined):("parent"===n.containment&&(n.containment=this.helper[0].parentNode),i=t(n.containment),s=i[0],s&&(e="hidden"!==i.css("overflow"),this.containment=[(parseInt(i.css("borderLeftWidth"),10)||0)+(parseInt(i.css("paddingLeft"),10)||0),(parseInt(i.css("borderTopWidth"),10)||0)+(parseInt(i.css("paddingTop"),10)||0),(e?Math.max(s.scrollWidth,s.offsetWidth):s.offsetWidth)-(parseInt(i.css("borderRightWidth"),10)||0)-(parseInt(i.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(e?Math.max(s.scrollHeight,s.offsetHeight):s.offsetHeight)-(parseInt(i.css("borderBottomWidth"),10)||0)-(parseInt(i.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=i),undefined):(this.containment=null,undefined)},_convertPositionTo:function(e,i){i||(i=this.position);var s="absolute"===e?1:-1,n="absolute"!==this.cssPosition||this.scrollParent[0]!==document&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent;return this.offset.scroll||(this.offset.scroll={top:n.scrollTop(),left:n.scrollLeft()}),{top:i.top+this.offset.relative.top*s+this.offset.parent.top*s-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():this.offset.scroll.top)*s,left:i.left+this.offset.relative.left*s+this.offset.parent.left*s-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():this.offset.scroll.left)*s}},_generatePosition:function(e){var i,s,n,o,a=this.options,r="absolute"!==this.cssPosition||this.scrollParent[0]!==document&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,h=e.pageX,l=e.pageY;return this.offset.scroll||(this.offset.scroll={top:r.scrollTop(),left:r.scrollLeft()}),this.originalPosition&&(this.containment&&(this.relative_container?(s=this.relative_container.offset(),i=[this.containment[0]+s.left,this.containment[1]+s.top,this.containment[2]+s.left,this.containment[3]+s.top]):i=this.containment,e.pageX-this.offset.click.lefti[2]&&(h=i[2]+this.offset.click.left),e.pageY-this.offset.click.top>i[3]&&(l=i[3]+this.offset.click.top)),a.grid&&(n=a.grid[1]?this.originalPageY+Math.round((l-this.originalPageY)/a.grid[1])*a.grid[1]:this.originalPageY,l=i?n-this.offset.click.top>=i[1]||n-this.offset.click.top>i[3]?n:n-this.offset.click.top>=i[1]?n-a.grid[1]:n+a.grid[1]:n,o=a.grid[0]?this.originalPageX+Math.round((h-this.originalPageX)/a.grid[0])*a.grid[0]:this.originalPageX,h=i?o-this.offset.click.left>=i[0]||o-this.offset.click.left>i[2]?o:o-this.offset.click.left>=i[0]?o-a.grid[0]:o+a.grid[0]:o)),{top:l-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():this.offset.scroll.top),left:h-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():this.offset.scroll.left)}},_clear:function(){this.helper.removeClass("ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1},_trigger:function(e,i,s){return s=s||this._uiHash(),t.ui.plugin.call(this,e,[i,s]),"drag"===e&&(this.positionAbs=this._convertPositionTo("absolute")),t.Widget.prototype._trigger.call(this,e,i,s)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),t.ui.plugin.add("draggable","connectToSortable",{start:function(e,i){var s=t(this).data("ui-draggable"),n=s.options,o=t.extend({},i,{item:s.element});s.sortables=[],t(n.connectToSortable).each(function(){var i=t.data(this,"ui-sortable");i&&!i.options.disabled&&(s.sortables.push({instance:i,shouldRevert:i.options.revert}),i.refreshPositions(),i._trigger("activate",e,o))})},stop:function(e,i){var s=t(this).data("ui-draggable"),n=t.extend({},i,{item:s.element});t.each(s.sortables,function(){this.instance.isOver?(this.instance.isOver=0,s.cancelHelperRemoval=!0,this.instance.cancelHelperRemoval=!1,this.shouldRevert&&(this.instance.options.revert=this.shouldRevert),this.instance._mouseStop(e),this.instance.options.helper=this.instance.options._helper,"original"===s.options.helper&&this.instance.currentItem.css({top:"auto",left:"auto"})):(this.instance.cancelHelperRemoval=!1,this.instance._trigger("deactivate",e,n))})},drag:function(e,i){var s=t(this).data("ui-draggable"),n=this;t.each(s.sortables,function(){var o=!1,a=this;this.instance.positionAbs=s.positionAbs,this.instance.helperProportions=s.helperProportions,this.instance.offset.click=s.offset.click,this.instance._intersectsWith(this.instance.containerCache)&&(o=!0,t.each(s.sortables,function(){return this.instance.positionAbs=s.positionAbs,this.instance.helperProportions=s.helperProportions,this.instance.offset.click=s.offset.click,this!==a&&this.instance._intersectsWith(this.instance.containerCache)&&t.contains(a.instance.element[0],this.instance.element[0])&&(o=!1),o})),o?(this.instance.isOver||(this.instance.isOver=1,this.instance.currentItem=t(n).clone().removeAttr("id").appendTo(this.instance.element).data("ui-sortable-item",!0),this.instance.options._helper=this.instance.options.helper,this.instance.options.helper=function(){return i.helper[0]},e.target=this.instance.currentItem[0],this.instance._mouseCapture(e,!0),this.instance._mouseStart(e,!0,!0),this.instance.offset.click.top=s.offset.click.top,this.instance.offset.click.left=s.offset.click.left,this.instance.offset.parent.left-=s.offset.parent.left-this.instance.offset.parent.left,this.instance.offset.parent.top-=s.offset.parent.top-this.instance.offset.parent.top,s._trigger("toSortable",e),s.dropped=this.instance.element,s.currentItem=s.element,this.instance.fromOutside=s),this.instance.currentItem&&this.instance._mouseDrag(e)):this.instance.isOver&&(this.instance.isOver=0,this.instance.cancelHelperRemoval=!0,this.instance.options.revert=!1,this.instance._trigger("out",e,this.instance._uiHash(this.instance)),this.instance._mouseStop(e,!0),this.instance.options.helper=this.instance.options._helper,this.instance.currentItem.remove(),this.instance.placeholder&&this.instance.placeholder.remove(),s._trigger("fromSortable",e),s.dropped=!1)})}}),t.ui.plugin.add("draggable","cursor",{start:function(){var e=t("body"),i=t(this).data("ui-draggable").options;e.css("cursor")&&(i._cursor=e.css("cursor")),e.css("cursor",i.cursor)},stop:function(){var e=t(this).data("ui-draggable").options;e._cursor&&t("body").css("cursor",e._cursor)}}),t.ui.plugin.add("draggable","opacity",{start:function(e,i){var s=t(i.helper),n=t(this).data("ui-draggable").options;s.css("opacity")&&(n._opacity=s.css("opacity")),s.css("opacity",n.opacity)},stop:function(e,i){var s=t(this).data("ui-draggable").options;s._opacity&&t(i.helper).css("opacity",s._opacity)}}),t.ui.plugin.add("draggable","scroll",{start:function(){var e=t(this).data("ui-draggable");e.scrollParent[0]!==document&&"HTML"!==e.scrollParent[0].tagName&&(e.overflowOffset=e.scrollParent.offset())},drag:function(e){var i=t(this).data("ui-draggable"),s=i.options,n=!1;i.scrollParent[0]!==document&&"HTML"!==i.scrollParent[0].tagName?(s.axis&&"x"===s.axis||(i.overflowOffset.top+i.scrollParent[0].offsetHeight-e.pageY=0;u--)r=p.snapElements[u].left,h=r+p.snapElements[u].width,l=p.snapElements[u].top,c=l+p.snapElements[u].height,r-g>v||m>h+g||l-g>b||_>c+g||!t.contains(p.snapElements[u].item.ownerDocument,p.snapElements[u].item)?(p.snapElements[u].snapping&&p.options.snap.release&&p.options.snap.release.call(p.element,e,t.extend(p._uiHash(),{snapItem:p.snapElements[u].item})),p.snapElements[u].snapping=!1):("inner"!==f.snapMode&&(s=g>=Math.abs(l-b),n=g>=Math.abs(c-_),o=g>=Math.abs(r-v),a=g>=Math.abs(h-m),s&&(i.position.top=p._convertPositionTo("relative",{top:l-p.helperProportions.height,left:0}).top-p.margins.top),n&&(i.position.top=p._convertPositionTo("relative",{top:c,left:0}).top-p.margins.top),o&&(i.position.left=p._convertPositionTo("relative",{top:0,left:r-p.helperProportions.width}).left-p.margins.left),a&&(i.position.left=p._convertPositionTo("relative",{top:0,left:h}).left-p.margins.left)),d=s||n||o||a,"outer"!==f.snapMode&&(s=g>=Math.abs(l-_),n=g>=Math.abs(c-b),o=g>=Math.abs(r-m),a=g>=Math.abs(h-v),s&&(i.position.top=p._convertPositionTo("relative",{top:l,left:0}).top-p.margins.top),n&&(i.position.top=p._convertPositionTo("relative",{top:c-p.helperProportions.height,left:0}).top-p.margins.top),o&&(i.position.left=p._convertPositionTo("relative",{top:0,left:r}).left-p.margins.left),a&&(i.position.left=p._convertPositionTo("relative",{top:0,left:h-p.helperProportions.width}).left-p.margins.left)),!p.snapElements[u].snapping&&(s||n||o||a||d)&&p.options.snap.snap&&p.options.snap.snap.call(p.element,e,t.extend(p._uiHash(),{snapItem:p.snapElements[u].item})),p.snapElements[u].snapping=s||n||o||a||d)}}),t.ui.plugin.add("draggable","stack",{start:function(){var e,i=this.data("ui-draggable").options,s=t.makeArray(t(i.stack)).sort(function(e,i){return(parseInt(t(e).css("zIndex"),10)||0)-(parseInt(t(i).css("zIndex"),10)||0)});s.length&&(e=parseInt(t(s[0]).css("zIndex"),10)||0,t(s).each(function(i){t(this).css("zIndex",e+i)}),this.css("zIndex",e+s.length))}}),t.ui.plugin.add("draggable","zIndex",{start:function(e,i){var s=t(i.helper),n=t(this).data("ui-draggable").options;s.css("zIndex")&&(n._zIndex=s.css("zIndex")),s.css("zIndex",n.zIndex)},stop:function(e,i){var s=t(this).data("ui-draggable").options;s._zIndex&&t(i.helper).css("zIndex",s._zIndex)}})}(jQuery),function(t){function e(t,e,i){return t>e&&e+i>t}t.widget("ui.droppable",{version:"1.10.3",widgetEventPrefix:"drop",options:{accept:"*",activeClass:!1,addClasses:!0,greedy:!1,hoverClass:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var e=this.options,i=e.accept;this.isover=!1,this.isout=!0,this.accept=t.isFunction(i)?i:function(t){return t.is(i) +},this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight},t.ui.ddmanager.droppables[e.scope]=t.ui.ddmanager.droppables[e.scope]||[],t.ui.ddmanager.droppables[e.scope].push(this),e.addClasses&&this.element.addClass("ui-droppable")},_destroy:function(){for(var e=0,i=t.ui.ddmanager.droppables[this.options.scope];i.length>e;e++)i[e]===this&&i.splice(e,1);this.element.removeClass("ui-droppable ui-droppable-disabled")},_setOption:function(e,i){"accept"===e&&(this.accept=t.isFunction(i)?i:function(t){return t.is(i)}),t.Widget.prototype._setOption.apply(this,arguments)},_activate:function(e){var i=t.ui.ddmanager.current;this.options.activeClass&&this.element.addClass(this.options.activeClass),i&&this._trigger("activate",e,this.ui(i))},_deactivate:function(e){var i=t.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass),i&&this._trigger("deactivate",e,this.ui(i))},_over:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this.options.hoverClass&&this.element.addClass(this.options.hoverClass),this._trigger("over",e,this.ui(i)))},_out:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("out",e,this.ui(i)))},_drop:function(e,i){var s=i||t.ui.ddmanager.current,n=!1;return s&&(s.currentItem||s.element)[0]!==this.element[0]?(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var e=t.data(this,"ui-droppable");return e.options.greedy&&!e.options.disabled&&e.options.scope===s.options.scope&&e.accept.call(e.element[0],s.currentItem||s.element)&&t.ui.intersect(s,t.extend(e,{offset:e.element.offset()}),e.options.tolerance)?(n=!0,!1):undefined}),n?!1:this.accept.call(this.element[0],s.currentItem||s.element)?(this.options.activeClass&&this.element.removeClass(this.options.activeClass),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("drop",e,this.ui(s)),this.element):!1):!1},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}}}),t.ui.intersect=function(t,i,s){if(!i.offset)return!1;var n,o,a=(t.positionAbs||t.position.absolute).left,r=a+t.helperProportions.width,h=(t.positionAbs||t.position.absolute).top,l=h+t.helperProportions.height,c=i.offset.left,u=c+i.proportions.width,d=i.offset.top,p=d+i.proportions.height;switch(s){case"fit":return a>=c&&u>=r&&h>=d&&p>=l;case"intersect":return a+t.helperProportions.width/2>c&&u>r-t.helperProportions.width/2&&h+t.helperProportions.height/2>d&&p>l-t.helperProportions.height/2;case"pointer":return n=(t.positionAbs||t.position.absolute).left+(t.clickOffset||t.offset.click).left,o=(t.positionAbs||t.position.absolute).top+(t.clickOffset||t.offset.click).top,e(o,d,i.proportions.height)&&e(n,c,i.proportions.width);case"touch":return(h>=d&&p>=h||l>=d&&p>=l||d>h&&l>p)&&(a>=c&&u>=a||r>=c&&u>=r||c>a&&r>u);default:return!1}},t.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,i){var s,n,o=t.ui.ddmanager.droppables[e.options.scope]||[],a=i?i.type:null,r=(e.currentItem||e.element).find(":data(ui-droppable)").addBack();t:for(s=0;o.length>s;s++)if(!(o[s].options.disabled||e&&!o[s].accept.call(o[s].element[0],e.currentItem||e.element))){for(n=0;r.length>n;n++)if(r[n]===o[s].element[0]){o[s].proportions.height=0;continue t}o[s].visible="none"!==o[s].element.css("display"),o[s].visible&&("mousedown"===a&&o[s]._activate.call(o[s],i),o[s].offset=o[s].element.offset(),o[s].proportions={width:o[s].element[0].offsetWidth,height:o[s].element[0].offsetHeight})}},drop:function(e,i){var s=!1;return t.each((t.ui.ddmanager.droppables[e.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&t.ui.intersect(e,this,this.options.tolerance)&&(s=this._drop.call(this,i)||s),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,i)))}),s},dragStart:function(e,i){e.element.parentsUntil("body").bind("scroll.droppable",function(){e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)})},drag:function(e,i){e.options.refreshPositions&&t.ui.ddmanager.prepareOffsets(e,i),t.each(t.ui.ddmanager.droppables[e.options.scope]||[],function(){if(!this.options.disabled&&!this.greedyChild&&this.visible){var s,n,o,a=t.ui.intersect(e,this,this.options.tolerance),r=!a&&this.isover?"isout":a&&!this.isover?"isover":null;r&&(this.options.greedy&&(n=this.options.scope,o=this.element.parents(":data(ui-droppable)").filter(function(){return t.data(this,"ui-droppable").options.scope===n}),o.length&&(s=t.data(o[0],"ui-droppable"),s.greedyChild="isover"===r)),s&&"isover"===r&&(s.isover=!1,s.isout=!0,s._out.call(s,i)),this[r]=!0,this["isout"===r?"isover":"isout"]=!1,this["isover"===r?"_over":"_out"].call(this,i),s&&"isout"===r&&(s.isout=!1,s.isover=!0,s._over.call(s,i)))}})},dragStop:function(e,i){e.element.parentsUntil("body").unbind("scroll.droppable"),e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)}}}(jQuery),function(t){function e(t){return parseInt(t,10)||0}function i(t){return!isNaN(parseInt(t,10))}t.widget("ui.resizable",t.ui.mouse,{version:"1.10.3",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_create:function(){var e,i,s,n,o,a=this,r=this.options;if(this.element.addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!r.aspectRatio,aspectRatio:r.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:r.helper||r.ghost||r.animate?r.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(t("
").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.data("ui-resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=r.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),e=this.handles.split(","),this.handles={},i=0;e.length>i;i++)s=t.trim(e[i]),o="ui-resizable-"+s,n=t("
"),n.css({zIndex:r.zIndex}),"se"===s&&n.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[s]=".ui-resizable-"+s,this.element.append(n);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String&&(this.handles[i]=t(this.handles[i],this.element).show()),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),t(this.handles[i]).length},this._renderAxis(this.element),this._handles=t(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){a.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),a.axis=n&&n[1]?n[1]:"se")}),r.autoHide&&(this._handles.hide(),t(this.element).addClass("ui-resizable-autohide").mouseenter(function(){r.disabled||(t(this).removeClass("ui-resizable-autohide"),a._handles.show())}).mouseleave(function(){r.disabled||a.resizing||(t(this).addClass("ui-resizable-autohide"),a._handles.hide())})),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").removeData("ui-resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(i){var s,n,o,a=this.options,r=this.element.position(),h=this.element;return this.resizing=!0,/absolute/.test(h.css("position"))?h.css({position:"absolute",top:h.css("top"),left:h.css("left")}):h.is(".ui-draggable")&&h.css({position:"absolute",top:r.top,left:r.left}),this._renderProxy(),s=e(this.helper.css("left")),n=e(this.helper.css("top")),a.containment&&(s+=t(a.containment).scrollLeft()||0,n+=t(a.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:s,top:n},this.size=this._helper?{width:h.outerWidth(),height:h.outerHeight()}:{width:h.width(),height:h.height()},this.originalSize=this._helper?{width:h.outerWidth(),height:h.outerHeight()}:{width:h.width(),height:h.height()},this.originalPosition={left:s,top:n},this.sizeDiff={width:h.outerWidth()-h.width(),height:h.outerHeight()-h.height()},this.originalMousePosition={left:i.pageX,top:i.pageY},this.aspectRatio="number"==typeof a.aspectRatio?a.aspectRatio:this.originalSize.width/this.originalSize.height||1,o=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===o?this.axis+"-resize":o),h.addClass("ui-resizable-resizing"),this._propagate("start",i),!0},_mouseDrag:function(e){var i,s=this.helper,n={},o=this.originalMousePosition,a=this.axis,r=this.position.top,h=this.position.left,l=this.size.width,c=this.size.height,u=e.pageX-o.left||0,d=e.pageY-o.top||0,p=this._change[a];return p?(i=p.apply(this,[e,u,d]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),this.position.top!==r&&(n.top=this.position.top+"px"),this.position.left!==h&&(n.left=this.position.left+"px"),this.size.width!==l&&(n.width=this.size.width+"px"),this.size.height!==c&&(n.height=this.size.height+"px"),s.css(n),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(n)||this._trigger("resize",e,this.ui()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&t.ui.hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null,h=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(t){var e,s,n,o,a,r=this.options;a={minWidth:i(r.minWidth)?r.minWidth:0,maxWidth:i(r.maxWidth)?r.maxWidth:1/0,minHeight:i(r.minHeight)?r.minHeight:0,maxHeight:i(r.maxHeight)?r.maxHeight:1/0},(this._aspectRatio||t)&&(e=a.minHeight*this.aspectRatio,n=a.minWidth/this.aspectRatio,s=a.maxHeight*this.aspectRatio,o=a.maxWidth/this.aspectRatio,e>a.minWidth&&(a.minWidth=e),n>a.minHeight&&(a.minHeight=n),a.maxWidth>s&&(a.maxWidth=s),a.maxHeight>o&&(a.maxHeight=o)),this._vBoundaries=a},_updateCache:function(t){this.offset=this.helper.offset(),i(t.left)&&(this.position.left=t.left),i(t.top)&&(this.position.top=t.top),i(t.height)&&(this.size.height=t.height),i(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,s=this.size,n=this.axis;return i(t.height)?t.width=t.height*this.aspectRatio:i(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===n&&(t.left=e.left+(s.width-t.width),t.top=null),"nw"===n&&(t.top=e.top+(s.height-t.height),t.left=e.left+(s.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,s=this.axis,n=i(t.width)&&e.maxWidth&&e.maxWidtht.width,r=i(t.height)&&e.minHeight&&e.minHeight>t.height,h=this.originalPosition.left+this.originalSize.width,l=this.position.top+this.size.height,c=/sw|nw|w/.test(s),u=/nw|ne|n/.test(s);return a&&(t.width=e.minWidth),r&&(t.height=e.minHeight),n&&(t.width=e.maxWidth),o&&(t.height=e.maxHeight),a&&c&&(t.left=h-e.minWidth),n&&c&&(t.left=h-e.maxWidth),r&&u&&(t.top=l-e.minHeight),o&&u&&(t.top=l-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_proportionallyResize:function(){if(this._proportionallyResizeElements.length){var t,e,i,s,n,o=this.helper||this.element;for(t=0;this._proportionallyResizeElements.length>t;t++){if(n=this._proportionallyResizeElements[t],!this.borderDif)for(this.borderDif=[],i=[n.css("borderTopWidth"),n.css("borderRightWidth"),n.css("borderBottomWidth"),n.css("borderLeftWidth")],s=[n.css("paddingTop"),n.css("paddingRight"),n.css("paddingBottom"),n.css("paddingLeft")],e=0;i.length>e;e++)this.borderDif[e]=(parseInt(i[e],10)||0)+(parseInt(s[e],10)||0);n.css({height:o.height()-this.borderDif[0]-this.borderDif[2]||0,width:o.width()-this.borderDif[1]-this.borderDif[3]||0})}}},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
"),this.helper.addClass(this._helper).css({width:this.element.outerWidth()-1,height:this.element.outerHeight()-1,position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).data("ui-resizable"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&t.ui.hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseInt(i.element.css("left"),10)+(i.position.left-i.originalPosition.left)||null,c=parseInt(i.element.css("top"),10)+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseInt(i.element.css("width"),10),height:parseInt(i.element.css("height"),10),top:parseInt(i.element.css("top"),10),left:parseInt(i.element.css("left"),10)};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var i,s,n,o,a,r,h,l=t(this).data("ui-resizable"),c=l.options,u=l.element,d=c.containment,p=d instanceof t?d.get(0):/parent/.test(d)?u.parent().get(0):d;p&&(l.containerElement=t(p),/document/.test(d)||d===document?(l.containerOffset={left:0,top:0},l.containerPosition={left:0,top:0},l.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(i=t(p),s=[],t(["Top","Right","Left","Bottom"]).each(function(t,n){s[t]=e(i.css("padding"+n))}),l.containerOffset=i.offset(),l.containerPosition=i.position(),l.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},n=l.containerOffset,o=l.containerSize.height,a=l.containerSize.width,r=t.ui.hasScroll(p,"left")?p.scrollWidth:a,h=t.ui.hasScroll(p)?p.scrollHeight:o,l.parentData={element:p,left:n.left,top:n.top,width:r,height:h}))},resize:function(e){var i,s,n,o,a=t(this).data("ui-resizable"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio),a.position.top=a._helper?h.top:0),a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top,i=Math.abs((a._helper?a.offset.left-u.left:a.offset.left-u.left)+a.sizeDiff.width),s=Math.abs((a._helper?a.offset.top-u.top:a.offset.top-h.top)+a.sizeDiff.height),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o&&(i-=a.parentData.left),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio))},stop:function(){var e=t(this).data("ui-resizable"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).data("ui-resizable"),i=e.options,s=function(e){t(e).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseInt(e.width(),10),height:parseInt(e.height(),10),left:parseInt(e.css("left"),10),top:parseInt(e.css("top"),10)})})};"object"!=typeof i.alsoResize||i.alsoResize.parentNode?s(i.alsoResize):i.alsoResize.length?(i.alsoResize=i.alsoResize[0],s(i.alsoResize)):t.each(i.alsoResize,function(t){s(t)})},resize:function(e,i){var s=t(this).data("ui-resizable"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0},h=function(e,s){t(e).each(function(){var e=t(this),n=t(this).data("ui-resizable-alsoresize"),o={},a=s&&s.length?s:e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(a,function(t,e){var i=(n[e]||0)+(r[e]||0);i&&i>=0&&(o[e]=i||null)}),e.css(o)})};"object"!=typeof n.alsoResize||n.alsoResize.nodeType?h(n.alsoResize):t.each(n.alsoResize,function(t,e){h(t,e)})},stop:function(){t(this).removeData("resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).data("ui-resizable"),i=e.options,s=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:s.height,width:s.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass("string"==typeof i.ghost?i.ghost:""),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).data("ui-resizable");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).data("ui-resizable");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e=t(this).data("ui-resizable"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,a=e.axis,r="number"==typeof i.grid?[i.grid,i.grid]:i.grid,h=r[0]||1,l=r[1]||1,c=Math.round((s.width-n.width)/h)*h,u=Math.round((s.height-n.height)/l)*l,d=n.width+c,p=n.height+u,f=i.maxWidth&&d>i.maxWidth,g=i.maxHeight&&p>i.maxHeight,m=i.minWidth&&i.minWidth>d,v=i.minHeight&&i.minHeight>p;i.grid=r,m&&(d+=h),v&&(p+=l),f&&(d-=h),g&&(p-=l),/^(se|s|e)$/.test(a)?(e.size.width=d,e.size.height=p):/^(ne)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.top=o.top-u):/^(sw)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.left=o.left-c):(e.size.width=d,e.size.height=p,e.position.top=o.top-u,e.position.left=o.left-c)}})}(jQuery),function(t){t.widget("ui.selectable",t.ui.mouse,{version:"1.10.3",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var e,i=this;this.element.addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){e=t(i.options.filter,i.element[0]),e.addClass("ui-selectee"),e.each(function(){var e=t(this),i=e.offset();t.data(this,"selectable-item",{element:this,$element:e,left:i.left,top:i.top,right:i.left+e.outerWidth(),bottom:i.top+e.outerHeight(),startselected:!1,selected:e.hasClass("ui-selected"),selecting:e.hasClass("ui-selecting"),unselecting:e.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=e.addClass("ui-selectee"),this._mouseInit(),this.helper=t("
")},_destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled"),this._mouseDestroy()},_mouseStart:function(e){var i=this,s=this.options;this.opos=[e.pageX,e.pageY],this.options.disabled||(this.selectees=t(s.filter,this.element[0]),this._trigger("start",e),t(s.appendTo).append(this.helper),this.helper.css({left:e.pageX,top:e.pageY,width:0,height:0}),s.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var s=t.data(this,"selectable-item");s.startselected=!0,e.metaKey||e.ctrlKey||(s.$element.removeClass("ui-selected"),s.selected=!1,s.$element.addClass("ui-unselecting"),s.unselecting=!0,i._trigger("unselecting",e,{unselecting:s.element}))}),t(e.target).parents().addBack().each(function(){var s,n=t.data(this,"selectable-item");return n?(s=!e.metaKey&&!e.ctrlKey||!n.$element.hasClass("ui-selected"),n.$element.removeClass(s?"ui-unselecting":"ui-selected").addClass(s?"ui-selecting":"ui-unselecting"),n.unselecting=!s,n.selecting=s,n.selected=s,s?i._trigger("selecting",e,{selecting:n.element}):i._trigger("unselecting",e,{unselecting:n.element}),!1):undefined}))},_mouseDrag:function(e){if(this.dragged=!0,!this.options.disabled){var i,s=this,n=this.options,o=this.opos[0],a=this.opos[1],r=e.pageX,h=e.pageY;return o>r&&(i=r,r=o,o=i),a>h&&(i=h,h=a,a=i),this.helper.css({left:o,top:a,width:r-o,height:h-a}),this.selectees.each(function(){var i=t.data(this,"selectable-item"),l=!1;i&&i.element!==s.element[0]&&("touch"===n.tolerance?l=!(i.left>r||o>i.right||i.top>h||a>i.bottom):"fit"===n.tolerance&&(l=i.left>o&&r>i.right&&i.top>a&&h>i.bottom),l?(i.selected&&(i.$element.removeClass("ui-selected"),i.selected=!1),i.unselecting&&(i.$element.removeClass("ui-unselecting"),i.unselecting=!1),i.selecting||(i.$element.addClass("ui-selecting"),i.selecting=!0,s._trigger("selecting",e,{selecting:i.element}))):(i.selecting&&((e.metaKey||e.ctrlKey)&&i.startselected?(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.$element.addClass("ui-selected"),i.selected=!0):(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.startselected&&(i.$element.addClass("ui-unselecting"),i.unselecting=!0),s._trigger("unselecting",e,{unselecting:i.element}))),i.selected&&(e.metaKey||e.ctrlKey||i.startselected||(i.$element.removeClass("ui-selected"),i.selected=!1,i.$element.addClass("ui-unselecting"),i.unselecting=!0,s._trigger("unselecting",e,{unselecting:i.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,t(".ui-unselecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");s.$element.removeClass("ui-unselecting"),s.unselecting=!1,s.startselected=!1,i._trigger("unselected",e,{unselected:s.element})}),t(".ui-selecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");s.$element.removeClass("ui-selecting").addClass("ui-selected"),s.selecting=!1,s.selected=!0,s.startselected=!0,i._trigger("selected",e,{selected:s.element})}),this._trigger("stop",e),this.helper.remove(),!1}})}(jQuery),function(t){function e(t,e,i){return t>e&&e+i>t}function i(t){return/left|right/.test(t.css("float"))||/inline|table-cell/.test(t.css("display"))}t.widget("ui.sortable",t.ui.mouse,{version:"1.10.3",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_create:function(){var t=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?"x"===t.axis||i(this.items[0].item):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},_destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var t=this.items.length-1;t>=0;t--)this.items[t].item.removeData(this.widgetName+"-item");return this},_setOption:function(e,i){"disabled"===e?(this.options[e]=i,this.widget().toggleClass("ui-sortable-disabled",!!i)):t.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(e,i){var s=null,n=!1,o=this;return this.reverting?!1:this.options.disabled||"static"===this.options.type?!1:(this._refreshItems(e),t(e.target).parents().each(function(){return t.data(this,o.widgetName+"-item")===o?(s=t(this),!1):undefined}),t.data(e.target,o.widgetName+"-item")===o&&(s=t(e.target)),s?!this.options.handle||i||(t(this.options.handle,s).find("*").addBack().each(function(){this===e.target&&(n=!0)}),n)?(this.currentItem=s,this._removeCurrentsFromItems(),!0):!1:!1)},_mouseStart:function(e,i,s){var n,o,a=this.options;if(this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(e),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},t.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(e),this.originalPageX=e.pageX,this.originalPageY=e.pageY,a.cursorAt&&this._adjustOffsetFromHelper(a.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),a.containment&&this._setContainment(),a.cursor&&"auto"!==a.cursor&&(o=this.document.find("body"),this.storedCursor=o.css("cursor"),o.css("cursor",a.cursor),this.storedStylesheet=t("").appendTo(o)),a.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",a.opacity)),a.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",a.zIndex)),this.scrollParent[0]!==document&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",e,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!s)for(n=this.containers.length-1;n>=0;n--)this.containers[n]._trigger("activate",e,this._uiHash(this));return t.ui.ddmanager&&(t.ui.ddmanager.current=this),t.ui.ddmanager&&!a.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(e),!0},_mouseDrag:function(e){var i,s,n,o,a=this.options,r=!1;for(this.position=this._generatePosition(e),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs),this.options.scroll&&(this.scrollParent[0]!==document&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-e.pageY=0;i--)if(s=this.items[i],n=s.item[0],o=this._intersectsWithPointer(s),o&&s.instance===this.currentContainer&&n!==this.currentItem[0]&&this.placeholder[1===o?"next":"prev"]()[0]!==n&&!t.contains(this.placeholder[0],n)&&("semi-dynamic"===this.options.type?!t.contains(this.element[0],n):!0)){if(this.direction=1===o?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(s))break; +this._rearrange(e,s),this._trigger("change",e,this._uiHash());break}return this._contactContainers(e),t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),this._trigger("sort",e,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(e,i){if(e){if(t.ui.ddmanager&&!this.options.dropBehaviour&&t.ui.ddmanager.drop(this,e),this.options.revert){var s=this,n=this.placeholder.offset(),o=this.options.axis,a={};o&&"x"!==o||(a.left=n.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===document.body?0:this.offsetParent[0].scrollLeft)),o&&"y"!==o||(a.top=n.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===document.body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,t(this.helper).animate(a,parseInt(this.options.revert,10)||500,function(){s._clear(e)})}else this._clear(e,i);return!1}},cancel:function(){if(this.dragging){this._mouseUp({target:null}),"original"===this.options.helper?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var e=this.containers.length-1;e>=0;e--)this.containers[e]._trigger("deactivate",null,this._uiHash(this)),this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",null,this._uiHash(this)),this.containers[e].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),t.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?t(this.domPosition.prev).after(this.currentItem):t(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var i=this._getItemsAsjQuery(e&&e.connected),s=[];return e=e||{},t(i).each(function(){var i=(t(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[\-=_](.+)/);i&&s.push((e.key||i[1]+"[]")+"="+(e.key&&e.expression?i[1]:i[2]))}),!s.length&&e.key&&s.push(e.key+"="),s.join("&")},toArray:function(e){var i=this._getItemsAsjQuery(e&&e.connected),s=[];return e=e||{},i.each(function(){s.push(t(e.item||this).attr(e.attribute||"id")||"")}),s},_intersectsWith:function(t){var e=this.positionAbs.left,i=e+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,o=t.left,a=o+t.width,r=t.top,h=r+t.height,l=this.offset.click.top,c=this.offset.click.left,u="x"===this.options.axis||s+l>r&&h>s+l,d="y"===this.options.axis||e+c>o&&a>e+c,p=u&&d;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>t[this.floating?"width":"height"]?p:e+this.helperProportions.width/2>o&&a>i-this.helperProportions.width/2&&s+this.helperProportions.height/2>r&&h>n-this.helperProportions.height/2},_intersectsWithPointer:function(t){var i="x"===this.options.axis||e(this.positionAbs.top+this.offset.click.top,t.top,t.height),s="y"===this.options.axis||e(this.positionAbs.left+this.offset.click.left,t.left,t.width),n=i&&s,o=this._getDragVerticalDirection(),a=this._getDragHorizontalDirection();return n?this.floating?a&&"right"===a||"down"===o?2:1:o&&("down"===o?2:1):!1},_intersectsWithSides:function(t){var i=e(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),s=e(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),n=this._getDragVerticalDirection(),o=this._getDragHorizontalDirection();return this.floating&&o?"right"===o&&s||"left"===o&&!s:n&&("down"===n&&i||"up"===n&&!i)},_getDragVerticalDirection:function(){var t=this.positionAbs.top-this.lastPositionAbs.top;return 0!==t&&(t>0?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!==t&&(t>0?"right":"left")},refresh:function(t){return this._refreshItems(t),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor===String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(e){var i,s,n,o,a=[],r=[],h=this._connectWith();if(h&&e)for(i=h.length-1;i>=0;i--)for(n=t(h[i]),s=n.length-1;s>=0;s--)o=t.data(n[s],this.widgetFullName),o&&o!==this&&!o.options.disabled&&r.push([t.isFunction(o.options.items)?o.options.items.call(o.element):t(o.options.items,o.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),o]);for(r.push([t.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):t(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),i=r.length-1;i>=0;i--)r[i][0].each(function(){a.push(this)});return t(a)},_removeCurrentsFromItems:function(){var e=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=t.grep(this.items,function(t){for(var i=0;e.length>i;i++)if(e[i]===t.item[0])return!1;return!0})},_refreshItems:function(e){this.items=[],this.containers=[this];var i,s,n,o,a,r,h,l,c=this.items,u=[[t.isFunction(this.options.items)?this.options.items.call(this.element[0],e,{item:this.currentItem}):t(this.options.items,this.element),this]],d=this._connectWith();if(d&&this.ready)for(i=d.length-1;i>=0;i--)for(n=t(d[i]),s=n.length-1;s>=0;s--)o=t.data(n[s],this.widgetFullName),o&&o!==this&&!o.options.disabled&&(u.push([t.isFunction(o.options.items)?o.options.items.call(o.element[0],e,{item:this.currentItem}):t(o.options.items,o.element),o]),this.containers.push(o));for(i=u.length-1;i>=0;i--)for(a=u[i][1],r=u[i][0],s=0,l=r.length;l>s;s++)h=t(r[s]),h.data(this.widgetName+"-item",a),c.push({item:h,instance:a,width:0,height:0,left:0,top:0})},refreshPositions:function(e){this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());var i,s,n,o;for(i=this.items.length-1;i>=0;i--)s=this.items[i],s.instance!==this.currentContainer&&this.currentContainer&&s.item[0]!==this.currentItem[0]||(n=this.options.toleranceElement?t(this.options.toleranceElement,s.item):s.item,e||(s.width=n.outerWidth(),s.height=n.outerHeight()),o=n.offset(),s.left=o.left,s.top=o.top);if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(i=this.containers.length-1;i>=0;i--)o=this.containers[i].element.offset(),this.containers[i].containerCache.left=o.left,this.containers[i].containerCache.top=o.top,this.containers[i].containerCache.width=this.containers[i].element.outerWidth(),this.containers[i].containerCache.height=this.containers[i].element.outerHeight();return this},_createPlaceholder:function(e){e=e||this;var i,s=e.options;s.placeholder&&s.placeholder.constructor!==String||(i=s.placeholder,s.placeholder={element:function(){var s=e.currentItem[0].nodeName.toLowerCase(),n=t("<"+s+">",e.document[0]).addClass(i||e.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper");return"tr"===s?e.currentItem.children().each(function(){t("
",e.document[0]).attr("colspan",t(this).attr("colspan")||1).appendTo(n)}):"img"===s&&n.attr("src",e.currentItem.attr("src")),i||n.css("visibility","hidden"),n},update:function(t,n){(!i||s.forcePlaceholderSize)&&(n.height()||n.height(e.currentItem.innerHeight()-parseInt(e.currentItem.css("paddingTop")||0,10)-parseInt(e.currentItem.css("paddingBottom")||0,10)),n.width()||n.width(e.currentItem.innerWidth()-parseInt(e.currentItem.css("paddingLeft")||0,10)-parseInt(e.currentItem.css("paddingRight")||0,10)))}}),e.placeholder=t(s.placeholder.element.call(e.element,e.currentItem)),e.currentItem.after(e.placeholder),s.placeholder.update(e,e.placeholder)},_contactContainers:function(s){var n,o,a,r,h,l,c,u,d,p,f=null,g=null;for(n=this.containers.length-1;n>=0;n--)if(!t.contains(this.currentItem[0],this.containers[n].element[0]))if(this._intersectsWith(this.containers[n].containerCache)){if(f&&t.contains(this.containers[n].element[0],f.element[0]))continue;f=this.containers[n],g=n}else this.containers[n].containerCache.over&&(this.containers[n]._trigger("out",s,this._uiHash(this)),this.containers[n].containerCache.over=0);if(f)if(1===this.containers.length)this.containers[g].containerCache.over||(this.containers[g]._trigger("over",s,this._uiHash(this)),this.containers[g].containerCache.over=1);else{for(a=1e4,r=null,p=f.floating||i(this.currentItem),h=p?"left":"top",l=p?"width":"height",c=this.positionAbs[h]+this.offset.click[h],o=this.items.length-1;o>=0;o--)t.contains(this.containers[g].element[0],this.items[o].item[0])&&this.items[o].item[0]!==this.currentItem[0]&&(!p||e(this.positionAbs.top+this.offset.click.top,this.items[o].top,this.items[o].height))&&(u=this.items[o].item.offset()[h],d=!1,Math.abs(u-c)>Math.abs(u+this.items[o][l]-c)&&(d=!0,u+=this.items[o][l]),a>Math.abs(u-c)&&(a=Math.abs(u-c),r=this.items[o],this.direction=d?"up":"down"));if(!r&&!this.options.dropOnEmpty)return;if(this.currentContainer===this.containers[g])return;r?this._rearrange(s,r,null,!0):this._rearrange(s,null,this.containers[g].element,!0),this._trigger("change",s,this._uiHash()),this.containers[g]._trigger("change",s,this._uiHash(this)),this.currentContainer=this.containers[g],this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[g]._trigger("over",s,this._uiHash(this)),this.containers[g].containerCache.over=1}},_createHelper:function(e){var i=this.options,s=t.isFunction(i.helper)?t(i.helper.apply(this.element[0],[e,this.currentItem])):"clone"===i.helper?this.currentItem.clone():this.currentItem;return s.parents("body").length||t("parent"!==i.appendTo?i.appendTo:this.currentItem[0].parentNode)[0].appendChild(s[0]),s[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(!s[0].style.width||i.forceHelperSize)&&s.width(this.currentItem.width()),(!s[0].style.height||i.forceHelperSize)&&s.height(this.currentItem.height()),s},_adjustOffsetFromHelper:function(e){"string"==typeof e&&(e=e.split(" ")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),"left"in e&&(this.offset.click.left=e.left+this.margins.left),"right"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),"top"in e&&(this.offset.click.top=e.top+this.margins.top),"bottom"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var e=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==document&&t.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),(this.offsetParent[0]===document.body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&t.ui.ie)&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:e.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"===this.cssPosition){var t=this.currentItem.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,i,s,n=this.options;"parent"===n.containment&&(n.containment=this.helper[0].parentNode),("document"===n.containment||"window"===n.containment)&&(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,t("document"===n.containment?document:window).width()-this.helperProportions.width-this.margins.left,(t("document"===n.containment?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(n.containment)||(e=t(n.containment)[0],i=t(n.containment).offset(),s="hidden"!==t(e).css("overflow"),this.containment=[i.left+(parseInt(t(e).css("borderLeftWidth"),10)||0)+(parseInt(t(e).css("paddingLeft"),10)||0)-this.margins.left,i.top+(parseInt(t(e).css("borderTopWidth"),10)||0)+(parseInt(t(e).css("paddingTop"),10)||0)-this.margins.top,i.left+(s?Math.max(e.scrollWidth,e.offsetWidth):e.offsetWidth)-(parseInt(t(e).css("borderLeftWidth"),10)||0)-(parseInt(t(e).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,i.top+(s?Math.max(e.scrollHeight,e.offsetHeight):e.offsetHeight)-(parseInt(t(e).css("borderTopWidth"),10)||0)-(parseInt(t(e).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(e,i){i||(i=this.position);var s="absolute"===e?1:-1,n="absolute"!==this.cssPosition||this.scrollParent[0]!==document&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(n[0].tagName);return{top:i.top+this.offset.relative.top*s+this.offset.parent.top*s-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():o?0:n.scrollTop())*s,left:i.left+this.offset.relative.left*s+this.offset.parent.left*s-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():o?0:n.scrollLeft())*s}},_generatePosition:function(e){var i,s,n=this.options,o=e.pageX,a=e.pageY,r="absolute"!==this.cssPosition||this.scrollParent[0]!==document&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,h=/(html|body)/i.test(r[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==document&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(e.pageX-this.offset.click.leftthis.containment[2]&&(o=this.containment[2]+this.offset.click.left),e.pageY-this.offset.click.top>this.containment[3]&&(a=this.containment[3]+this.offset.click.top)),n.grid&&(i=this.originalPageY+Math.round((a-this.originalPageY)/n.grid[1])*n.grid[1],a=this.containment?i-this.offset.click.top>=this.containment[1]&&i-this.offset.click.top<=this.containment[3]?i:i-this.offset.click.top>=this.containment[1]?i-n.grid[1]:i+n.grid[1]:i,s=this.originalPageX+Math.round((o-this.originalPageX)/n.grid[0])*n.grid[0],o=this.containment?s-this.offset.click.left>=this.containment[0]&&s-this.offset.click.left<=this.containment[2]?s:s-this.offset.click.left>=this.containment[0]?s-n.grid[0]:s+n.grid[0]:s)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():h?0:r.scrollTop()),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():h?0:r.scrollLeft())}},_rearrange:function(t,e,i,s){i?i[0].appendChild(this.placeholder[0]):e.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?e.item[0]:e.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){this.reverting=!1;var i,s=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(i in this._storedCSS)("auto"===this._storedCSS[i]||"static"===this._storedCSS[i])&&(this._storedCSS[i]="");this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();for(this.fromOutside&&!e&&s.push(function(t){this._trigger("receive",t,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||e||s.push(function(t){this._trigger("update",t,this._uiHash())}),this!==this.currentContainer&&(e||(s.push(function(t){this._trigger("remove",t,this._uiHash())}),s.push(function(t){return function(e){t._trigger("receive",e,this._uiHash(this))}}.call(this,this.currentContainer)),s.push(function(t){return function(e){t._trigger("update",e,this._uiHash(this))}}.call(this,this.currentContainer)))),i=this.containers.length-1;i>=0;i--)e||s.push(function(t){return function(e){t._trigger("deactivate",e,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over&&(s.push(function(t){return function(e){t._trigger("out",e,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,this.cancelHelperRemoval){if(!e){for(this._trigger("beforeStop",t,this._uiHash()),i=0;s.length>i;i++)s[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!1}if(e||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null,!e){for(i=0;s.length>i;i++)s[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!0},_trigger:function(){t.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(e){var i=e||this;return{helper:i.helper,placeholder:i.placeholder||t([]),position:i.position,originalPosition:i.originalPosition,offset:i.positionAbs,item:i.currentItem,sender:e?e.element:null}}})}(jQuery),function(t,e){var i="ui-effects-";t.effects={effect:{}},function(t,e){function i(t,e,i){var s=u[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:0>t?0:t>s.max?s.max:t)}function s(i){var s=l(),n=s._rgba=[];return i=i.toLowerCase(),f(h,function(t,o){var a,r=o.re.exec(i),h=r&&o.parse(r),l=o.space||"rgba";return h?(a=s[l](h),s[c[l].cache]=a[c[l].cache],n=s._rgba=a._rgba,!1):e}),n.length?("0,0,0,0"===n.join()&&t.extend(n,o.transparent),s):o[i]}function n(t,e,i){return i=(i+1)%1,1>6*i?t+6*(e-t)*i:1>2*i?e:2>3*i?t+6*(e-t)*(2/3-i):t}var o,a="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",r=/^([\-+])=\s*(\d+\.?\d*)/,h=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],l=t.Color=function(e,i,s,n){return new t.Color.fn.parse(e,i,s,n)},c={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},u={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},d=l.support={},p=t("

")[0],f=t.each;p.style.cssText="background-color:rgba(1,1,1,.5)",d.rgba=p.style.backgroundColor.indexOf("rgba")>-1,f(c,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),l.fn=t.extend(l.prototype,{parse:function(n,a,r,h){if(n===e)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=t(n).css(a),a=e);var u=this,d=t.type(n),p=this._rgba=[];return a!==e&&(n=[n,a,r,h],d="array"),"string"===d?this.parse(s(n)||o._default):"array"===d?(f(c.rgba.props,function(t,e){p[e.idx]=i(n[e.idx],e)}),this):"object"===d?(n instanceof l?f(c,function(t,e){n[e.cache]&&(u[e.cache]=n[e.cache].slice())}):f(c,function(e,s){var o=s.cache;f(s.props,function(t,e){if(!u[o]&&s.to){if("alpha"===t||null==n[t])return;u[o]=s.to(u._rgba)}u[o][e.idx]=i(n[t],e,!0)}),u[o]&&0>t.inArray(null,u[o].slice(0,3))&&(u[o][3]=1,s.from&&(u._rgba=s.from(u[o])))}),this):e},is:function(t){var i=l(t),s=!0,n=this;return f(c,function(t,o){var a,r=i[o.cache];return r&&(a=n[o.cache]||o.to&&o.to(n._rgba)||[],f(o.props,function(t,i){return null!=r[i.idx]?s=r[i.idx]===a[i.idx]:e})),s}),s},_space:function(){var t=[],e=this;return f(c,function(i,s){e[s.cache]&&t.push(i)}),t.pop()},transition:function(t,e){var s=l(t),n=s._space(),o=c[n],a=0===this.alpha()?l("transparent"):this,r=a[o.cache]||o.to(a._rgba),h=r.slice();return s=s[o.cache],f(o.props,function(t,n){var o=n.idx,a=r[o],l=s[o],c=u[n.type]||{};null!==l&&(null===a?h[o]=l:(c.mod&&(l-a>c.mod/2?a+=c.mod:a-l>c.mod/2&&(a-=c.mod)),h[o]=i((l-a)*e+a,n)))}),this[n](h)},blend:function(e){if(1===this._rgba[3])return this;var i=this._rgba.slice(),s=i.pop(),n=l(e)._rgba;return l(t.map(i,function(t,e){return(1-s)*n[e]+s*t}))},toRgbaString:function(){var e="rgba(",i=t.map(this._rgba,function(t,e){return null==t?e>2?1:0:t});return 1===i[3]&&(i.pop(),e="rgb("),e+i.join()+")"},toHslaString:function(){var e="hsla(",i=t.map(this.hsla(),function(t,e){return null==t&&(t=e>2?1:0),e&&3>e&&(t=Math.round(100*t)+"%"),t});return 1===i[3]&&(i.pop(),e="hsl("),e+i.join()+")"},toHexString:function(e){var i=this._rgba.slice(),s=i.pop();return e&&i.push(~~(255*s)),"#"+t.map(i,function(t){return t=(t||0).toString(16),1===t.length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}}),l.fn.parse.prototype=l.fn,c.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e,i,s=t[0]/255,n=t[1]/255,o=t[2]/255,a=t[3],r=Math.max(s,n,o),h=Math.min(s,n,o),l=r-h,c=r+h,u=.5*c;return e=h===r?0:s===r?60*(n-o)/l+360:n===r?60*(o-s)/l+120:60*(s-n)/l+240,i=0===l?0:.5>=u?l/c:l/(2-c),[Math.round(e)%360,i,u,null==a?1:a]},c.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],o=t[3],a=.5>=s?s*(1+i):s+i-s*i,r=2*s-a;return[Math.round(255*n(r,a,e+1/3)),Math.round(255*n(r,a,e)),Math.round(255*n(r,a,e-1/3)),o]},f(c,function(s,n){var o=n.props,a=n.cache,h=n.to,c=n.from;l.fn[s]=function(s){if(h&&!this[a]&&(this[a]=h(this._rgba)),s===e)return this[a].slice();var n,r=t.type(s),u="array"===r||"object"===r?s:arguments,d=this[a].slice();return f(o,function(t,e){var s=u["object"===r?t:e.idx];null==s&&(s=d[e.idx]),d[e.idx]=i(s,e)}),c?(n=l(c(d)),n[a]=d,n):l(d)},f(o,function(e,i){l.fn[e]||(l.fn[e]=function(n){var o,a=t.type(n),h="alpha"===e?this._hsla?"hsla":"rgba":s,l=this[h](),c=l[i.idx];return"undefined"===a?c:("function"===a&&(n=n.call(this,c),a=t.type(n)),null==n&&i.empty?this:("string"===a&&(o=r.exec(n),o&&(n=c+parseFloat(o[2])*("+"===o[1]?1:-1))),l[i.idx]=n,this[h](l)))})})}),l.hook=function(e){var i=e.split(" ");f(i,function(e,i){t.cssHooks[i]={set:function(e,n){var o,a,r="";if("transparent"!==n&&("string"!==t.type(n)||(o=s(n)))){if(n=l(o||n),!d.rgba&&1!==n._rgba[3]){for(a="backgroundColor"===i?e.parentNode:e;(""===r||"transparent"===r)&&a&&a.style;)try{r=t.css(a,"backgroundColor"),a=a.parentNode}catch(h){}n=n.blend(r&&"transparent"!==r?r:"_default")}n=n.toRgbaString()}try{e.style[i]=n}catch(h){}}},t.fx.step[i]=function(e){e.colorInit||(e.start=l(e.elem,i),e.end=l(e.end),e.colorInit=!0),t.cssHooks[i].set(e.elem,e.start.transition(e.end,e.pos))}})},l.hook(a),t.cssHooks.borderColor={expand:function(t){var e={};return f(["Top","Right","Bottom","Left"],function(i,s){e["border"+s+"Color"]=t}),e}},o=t.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(jQuery),function(){function i(e){var i,s,n=e.ownerDocument.defaultView?e.ownerDocument.defaultView.getComputedStyle(e,null):e.currentStyle,o={};if(n&&n.length&&n[0]&&n[n[0]])for(s=n.length;s--;)i=n[s],"string"==typeof n[i]&&(o[t.camelCase(i)]=n[i]);else for(i in n)"string"==typeof n[i]&&(o[i]=n[i]);return o}function s(e,i){var s,n,a={};for(s in i)n=i[s],e[s]!==n&&(o[s]||(t.fx.step[s]||!isNaN(parseFloat(n)))&&(a[s]=n));return a}var n=["add","remove","toggle"],o={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};t.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(e,i){t.fx.step[i]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(jQuery.style(t.elem,i,t.end),t.setAttr=!0)}}),t.fn.addBack||(t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.effects.animateClass=function(e,o,a,r){var h=t.speed(o,a,r);return this.queue(function(){var o,a=t(this),r=a.attr("class")||"",l=h.children?a.find("*").addBack():a;l=l.map(function(){var e=t(this);return{el:e,start:i(this)}}),o=function(){t.each(n,function(t,i){e[i]&&a[i+"Class"](e[i])})},o(),l=l.map(function(){return this.end=i(this.el[0]),this.diff=s(this.start,this.end),this}),a.attr("class",r),l=l.map(function(){var e=this,i=t.Deferred(),s=t.extend({},h,{queue:!1,complete:function(){i.resolve(e)}});return this.el.animate(this.diff,s),i.promise()}),t.when.apply(t,l.get()).done(function(){o(),t.each(arguments,function(){var e=this.el;t.each(this.diff,function(t){e.css(t,"")})}),h.complete.call(a[0])})})},t.fn.extend({addClass:function(e){return function(i,s,n,o){return s?t.effects.animateClass.call(this,{add:i},s,n,o):e.apply(this,arguments)}}(t.fn.addClass),removeClass:function(e){return function(i,s,n,o){return arguments.length>1?t.effects.animateClass.call(this,{remove:i},s,n,o):e.apply(this,arguments)}}(t.fn.removeClass),toggleClass:function(i){return function(s,n,o,a,r){return"boolean"==typeof n||n===e?o?t.effects.animateClass.call(this,n?{add:s}:{remove:s},o,a,r):i.apply(this,arguments):t.effects.animateClass.call(this,{toggle:s},n,o,a)}}(t.fn.toggleClass),switchClass:function(e,i,s,n,o){return t.effects.animateClass.call(this,{add:i,remove:e},s,n,o)}})}(),function(){function s(e,i,s,n){return t.isPlainObject(e)&&(i=e,e=e.effect),e={effect:e},null==i&&(i={}),t.isFunction(i)&&(n=i,s=null,i={}),("number"==typeof i||t.fx.speeds[i])&&(n=s,s=i,i={}),t.isFunction(s)&&(n=s,s=null),i&&t.extend(e,i),s=s||i.duration,e.duration=t.fx.off?0:"number"==typeof s?s:s in t.fx.speeds?t.fx.speeds[s]:t.fx.speeds._default,e.complete=n||i.complete,e}function n(e){return!e||"number"==typeof e||t.fx.speeds[e]?!0:"string"!=typeof e||t.effects.effect[e]?t.isFunction(e)?!0:"object"!=typeof e||e.effect?!1:!0:!0}t.extend(t.effects,{version:"1.10.3",save:function(t,e){for(var s=0;e.length>s;s++)null!==e[s]&&t.data(i+e[s],t[0].style[e[s]])},restore:function(t,s){var n,o;for(o=0;s.length>o;o++)null!==s[o]&&(n=t.data(i+s[o]),n===e&&(n=""),t.css(s[o],n))},setMode:function(t,e){return"toggle"===e&&(e=t.is(":hidden")?"show":"hide"),e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createWrapper:function(e){if(e.parent().is(".ui-effects-wrapper"))return e.parent();var i={width:e.outerWidth(!0),height:e.outerHeight(!0),"float":e.css("float")},s=t("

").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),n={width:e.width(),height:e.height()},o=document.activeElement;try{o.id}catch(a){o=document.body}return e.wrap(s),(e[0]===o||t.contains(e[0],o))&&t(o).focus(),s=e.parent(),"static"===e.css("position")?(s.css({position:"relative"}),e.css({position:"relative"})):(t.extend(i,{position:e.css("position"),zIndex:e.css("z-index")}),t.each(["top","left","bottom","right"],function(t,s){i[s]=e.css(s),isNaN(parseInt(i[s],10))&&(i[s]="auto")}),e.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),e.css(n),s.css(i).show()},removeWrapper:function(e){var i=document.activeElement;return e.parent().is(".ui-effects-wrapper")&&(e.parent().replaceWith(e),(e[0]===i||t.contains(e[0],i))&&t(i).focus()),e},setTransition:function(e,i,s,n){return n=n||{},t.each(i,function(t,i){var o=e.cssUnit(i);o[0]>0&&(n[i]=o[0]*s+o[1])}),n}}),t.fn.extend({effect:function(){function e(e){function s(){t.isFunction(o)&&o.call(n[0]),t.isFunction(e)&&e()}var n=t(this),o=i.complete,r=i.mode;(n.is(":hidden")?"hide"===r:"show"===r)?(n[r](),s()):a.call(n[0],i,s)}var i=s.apply(this,arguments),n=i.mode,o=i.queue,a=t.effects.effect[i.effect];return t.fx.off||!a?n?this[n](i.duration,i.complete):this.each(function(){i.complete&&i.complete.call(this)}):o===!1?this.each(e):this.queue(o||"fx",e)},show:function(t){return function(e){if(n(e))return t.apply(this,arguments);var i=s.apply(this,arguments);return i.mode="show",this.effect.call(this,i)}}(t.fn.show),hide:function(t){return function(e){if(n(e))return t.apply(this,arguments);var i=s.apply(this,arguments);return i.mode="hide",this.effect.call(this,i)}}(t.fn.hide),toggle:function(t){return function(e){if(n(e)||"boolean"==typeof e)return t.apply(this,arguments);var i=s.apply(this,arguments);return i.mode="toggle",this.effect.call(this,i)}}(t.fn.toggle),cssUnit:function(e){var i=this.css(e),s=[];return t.each(["em","px","%","pt"],function(t,e){i.indexOf(e)>0&&(s=[parseFloat(i),e])}),s}})}(),function(){var e={};t.each(["Quad","Cubic","Quart","Quint","Expo"],function(t,i){e[i]=function(e){return Math.pow(e,t+2)}}),t.extend(e,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;((e=Math.pow(2,--i))-1)/11>t;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),t.each(e,function(e,i){t.easing["easeIn"+e]=i,t.easing["easeOut"+e]=function(t){return 1-i(1-t)},t.easing["easeInOut"+e]=function(t){return.5>t?i(2*t)/2:1-i(-2*t+2)/2}})}()}(jQuery),function(t){var e=0,i={},s={};i.height=i.paddingTop=i.paddingBottom=i.borderTopWidth=i.borderBottomWidth="hide",s.height=s.paddingTop=s.paddingBottom=s.borderTopWidth=s.borderBottomWidth="show",t.widget("ui.accordion",{version:"1.10.3",options:{active:0,animate:{},collapsible:!1,event:"click",header:"> li > :first-child,> :not(li):even",heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},_create:function(){var e=this.options;this.prevShow=this.prevHide=t(),this.element.addClass("ui-accordion ui-widget ui-helper-reset").attr("role","tablist"),e.collapsible||e.active!==!1&&null!=e.active||(e.active=0),this._processPanels(),0>e.active&&(e.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():t(),content:this.active.length?this.active.next():t()}},_createIcons:function(){var e=this.options.icons;e&&(t("").addClass("ui-accordion-header-icon ui-icon "+e.header).prependTo(this.headers),this.active.children(".ui-accordion-header-icon").removeClass(e.header).addClass(e.activeHeader),this.headers.addClass("ui-accordion-icons")) +},_destroyIcons:function(){this.headers.removeClass("ui-accordion-icons").children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.removeClass("ui-accordion-header ui-accordion-header-active ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-selected").removeAttr("aria-controls").removeAttr("tabIndex").each(function(){/^ui-accordion/.test(this.id)&&this.removeAttribute("id")}),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-state-disabled").each(function(){/^ui-accordion/.test(this.id)&&this.removeAttribute("id")}),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){return"active"===t?(this._activate(e),undefined):("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||this.options.active!==!1||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons()),"disabled"===t&&this.headers.add(this.headers.next()).toggleClass("ui-state-disabled",!!e),undefined)},_keydown:function(e){if(!e.altKey&&!e.ctrlKey){var i=t.ui.keyCode,s=this.headers.length,n=this.headers.index(e.target),o=!1;switch(e.keyCode){case i.RIGHT:case i.DOWN:o=this.headers[(n+1)%s];break;case i.LEFT:case i.UP:o=this.headers[(n-1+s)%s];break;case i.SPACE:case i.ENTER:this._eventHandler(e);break;case i.HOME:o=this.headers[0];break;case i.END:o=this.headers[s-1]}o&&(t(e.target).attr("tabIndex",-1),t(o).attr("tabIndex",0),o.focus(),e.preventDefault())}},_panelKeyDown:function(e){e.keyCode===t.ui.keyCode.UP&&e.ctrlKey&&t(e.currentTarget).prev().focus()},refresh:function(){var e=this.options;this._processPanels(),e.active===!1&&e.collapsible===!0||!this.headers.length?(e.active=!1,this.active=t()):e.active===!1?this._activate(0):this.active.length&&!t.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(e.active=!1,this.active=t()):this._activate(Math.max(0,e.active-1)):e.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){this.headers=this.element.find(this.options.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all"),this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom").filter(":not(.ui-accordion-content-active)").hide()},_refresh:function(){var i,s=this.options,n=s.heightStyle,o=this.element.parent(),a=this.accordionId="ui-accordion-"+(this.element.attr("id")||++e);this.active=this._findActive(s.active).addClass("ui-accordion-header-active ui-state-active ui-corner-top").removeClass("ui-corner-all"),this.active.next().addClass("ui-accordion-content-active").show(),this.headers.attr("role","tab").each(function(e){var i=t(this),s=i.attr("id"),n=i.next(),o=n.attr("id");s||(s=a+"-header-"+e,i.attr("id",s)),o||(o=a+"-panel-"+e,n.attr("id",o)),i.attr("aria-controls",o),n.attr("aria-labelledby",s)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false",tabIndex:-1}).next().attr({"aria-expanded":"false","aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true",tabIndex:0}).next().attr({"aria-expanded":"true","aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(s.event),"fill"===n?(i=o.height(),this.element.siblings(":visible").each(function(){var e=t(this),s=e.css("position");"absolute"!==s&&"fixed"!==s&&(i-=e.outerHeight(!0))}),this.headers.each(function(){i-=t(this).outerHeight(!0)}),this.headers.next().each(function(){t(this).height(Math.max(0,i-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===n&&(i=0,this.headers.next().each(function(){i=Math.max(i,t(this).css("height","").height())}).height(i))},_activate:function(e){var i=this._findActive(e)[0];i!==this.active[0]&&(i=i||this.active[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return"number"==typeof e?this.headers.eq(e):t()},_setupEvents:function(e){var i={keydown:"_keydown"};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(e){var i=this.options,s=this.active,n=t(e.currentTarget),o=n[0]===s[0],a=o&&i.collapsible,r=a?t():n.next(),h=s.next(),l={oldHeader:s,oldPanel:h,newHeader:a?t():n,newPanel:r};e.preventDefault(),o&&!i.collapsible||this._trigger("beforeActivate",e,l)===!1||(i.active=a?!1:this.headers.index(n),this.active=o?t():n,this._toggle(l),s.removeClass("ui-accordion-header-active ui-state-active"),i.icons&&s.children(".ui-accordion-header-icon").removeClass(i.icons.activeHeader).addClass(i.icons.header),o||(n.removeClass("ui-corner-all").addClass("ui-accordion-header-active ui-state-active ui-corner-top"),i.icons&&n.children(".ui-accordion-header-icon").removeClass(i.icons.header).addClass(i.icons.activeHeader),n.next().addClass("ui-accordion-content-active")))},_toggle:function(e){var i=e.newPanel,s=this.prevShow.length?this.prevShow:e.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=i,this.prevHide=s,this.options.animate?this._animate(i,s,e):(s.hide(),i.show(),this._toggleComplete(e)),s.attr({"aria-expanded":"false","aria-hidden":"true"}),s.prev().attr("aria-selected","false"),i.length&&s.length?s.prev().attr("tabIndex",-1):i.length&&this.headers.filter(function(){return 0===t(this).attr("tabIndex")}).attr("tabIndex",-1),i.attr({"aria-expanded":"true","aria-hidden":"false"}).prev().attr({"aria-selected":"true",tabIndex:0})},_animate:function(t,e,n){var o,a,r,h=this,l=0,c=t.length&&(!e.length||t.index()",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},pending:0,_create:function(){var e,i,s,n=this.element[0].nodeName.toLowerCase(),o="textarea"===n,a="input"===n;this.isMultiLine=o?!0:a?!1:this.element.prop("isContentEditable"),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this.element.addClass("ui-autocomplete-input").attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return e=!0,s=!0,i=!0,undefined;e=!1,s=!1,i=!1;var o=t.ui.keyCode;switch(n.keyCode){case o.PAGE_UP:e=!0,this._move("previousPage",n);break;case o.PAGE_DOWN:e=!0,this._move("nextPage",n);break;case o.UP:e=!0,this._keyEvent("previous",n);break;case o.DOWN:e=!0,this._keyEvent("next",n);break;case o.ENTER:case o.NUMPAD_ENTER:this.menu.active&&(e=!0,n.preventDefault(),this.menu.select(n));break;case o.TAB:this.menu.active&&this.menu.select(n);break;case o.ESCAPE:this.menu.element.is(":visible")&&(this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(e)return e=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),undefined;if(!i){var n=t.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(t){return s?(s=!1,t.preventDefault(),undefined):(this._searchTimeout(t),undefined)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,undefined):(clearTimeout(this.searching),this.close(t),this._change(t),undefined)}}),this._initSource(),this.menu=t("
 
"+"",T=u?"":"",w=0;7>w;w++)M=(w+c)%7,T+="=5?" class='ui-datepicker-week-end'":"")+">"+""+p[M]+"";for(P+=T+"",S=this._getDaysInMonth(te,Z),te===t.selectedYear&&Z===t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,S)),z=(this._getFirstDayOfMonth(te,Z)-c+7)%7,A=Math.ceil((z+S)/7),H=X?this.maxRows>A?this.maxRows:A:A,this.maxRows=H,E=this._daylightSavingAdjust(new Date(te,Z,1-z)),N=0;H>N;N++){for(P+="",W=u?"":"",w=0;7>w;w++)O=m?m.apply(t.input?t.input[0]:null,[E]):[!0,""],F=E.getMonth()!==Z,R=F&&!_||!O[0]||G&&G>E||J&&E>J,W+="",E.setDate(E.getDate()+1),E=this._daylightSavingAdjust(E);P+=W+""}Z++,Z>11&&(Z=0,te++),P+="
"+this._get(t,"weekHeader")+"
"+this._get(t,"calculateWeek")(E)+""+(F&&!v?" ":R?""+E.getDate()+"":""+E.getDate()+"")+"
"+(X?""+(U[0]>0&&D===U[1]-1?"
":""):""),x+=P}y+=x}return y+=l,t._keyEvent=!1,y},_generateMonthYearHeader:function(t,e,i,s,n,o,a,r){var h,l,c,u,d,p,f,g,m=this._get(t,"changeMonth"),v=this._get(t,"changeYear"),_=this._get(t,"showMonthAfterYear"),b="
",y="";if(o||!m)y+=""+a[e]+"";else{for(h=s&&s.getFullYear()===i,l=n&&n.getFullYear()===i,y+=""}if(_||(b+=y+(!o&&m&&v?"":" ")),!t.yearshtml)if(t.yearshtml="",o||!v)b+=""+i+"";else{for(u=this._get(t,"yearRange").split(":"),d=(new Date).getFullYear(),p=function(t){var e=t.match(/c[+\-].*/)?i+parseInt(t.substring(1),10):t.match(/[+\-].*/)?d+parseInt(t,10):parseInt(t,10);return isNaN(e)?d:e},f=p(u[0]),g=Math.max(f,p(u[1]||"")),f=s?Math.max(f,s.getFullYear()):f,g=n?Math.min(g,n.getFullYear()):g,t.yearshtml+="",b+=t.yearshtml,t.yearshtml=null}return b+=this._get(t,"yearSuffix"),_&&(b+=(!o&&m&&v?"":" ")+y),b+="
"},_adjustInstDate:function(t,e,i){var s=t.drawYear+("Y"===i?e:0),n=t.drawMonth+("M"===i?e:0),o=Math.min(t.selectedDay,this._getDaysInMonth(s,n))+("D"===i?e:0),a=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(s,n,o)));t.selectedDay=a.getDate(),t.drawMonth=t.selectedMonth=a.getMonth(),t.drawYear=t.selectedYear=a.getFullYear(),("M"===i||"Y"===i)&&this._notifyChange(t)},_restrictMinMax:function(t,e){var i=this._getMinMaxDate(t,"min"),s=this._getMinMaxDate(t,"max"),n=i&&i>e?i:e;return s&&n>s?s:n},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){var e=this._get(t,"numberOfMonths");return null==e?[1,1]:"number"==typeof e?[1,e]:e},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,i,s){var n=this._getNumberOfMonths(t),o=this._daylightSavingAdjust(new Date(i,s+(0>e?e:n[0]*n[1]),1));return 0>e&&o.setDate(this._getDaysInMonth(o.getFullYear(),o.getMonth())),this._isInRange(t,o)},_isInRange:function(t,e){var i,s,n=this._getMinMaxDate(t,"min"),o=this._getMinMaxDate(t,"max"),a=null,r=null,h=this._get(t,"yearRange");return h&&(i=h.split(":"),s=(new Date).getFullYear(),a=parseInt(i[0],10),r=parseInt(i[1],10),i[0].match(/[+\-].*/)&&(a+=s),i[1].match(/[+\-].*/)&&(r+=s)),(!n||e.getTime()>=n.getTime())&&(!o||e.getTime()<=o.getTime())&&(!a||e.getFullYear()>=a)&&(!r||r>=e.getFullYear())},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),{shortYearCutoff:e,dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,i,s){e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear);var n=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(s,i,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return this.formatDate(this._get(t,"dateFormat"),n,this._getFormatConfig(t))}}),t.fn.datepicker=function(e){if(!this.length)return this;t.datepicker.initialized||(t(document).mousedown(t.datepicker._checkExternalClick),t.datepicker.initialized=!0),0===t("#"+t.datepicker._mainDivId).length&&t("body").append(t.datepicker.dpDiv);var i=Array.prototype.slice.call(arguments,1);return"string"!=typeof e||"isDisabled"!==e&&"getDate"!==e&&"widget"!==e?"option"===e&&2===arguments.length&&"string"==typeof arguments[1]?t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this[0]].concat(i)):this.each(function(){"string"==typeof e?t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this].concat(i)):t.datepicker._attachDatepicker(this,e)}):t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this[0]].concat(i))},t.datepicker=new i,t.datepicker.initialized=!1,t.datepicker.uuid=(new Date).getTime(),t.datepicker.version="1.10.3"}(jQuery),function(t){var e={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},i={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0};t.widget("ui.dialog",{version:"1.10.3",options:{appendTo:"body",autoOpen:!0,buttons:[],closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(e){var i=t(this).css(e).offset().top;0>i&&t(this).css("top",e.top-i)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),this.options.title=this.options.title||this.originalTitle,this._createWrapper(),this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(this.uiDialog),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&t.fn.draggable&&this._makeDraggable(),this.options.resizable&&t.fn.resizable&&this._makeResizable(),this._isOpen=!1},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var e=this.options.appendTo;return e&&(e.jquery||e.nodeType)?t(e):this.document.find(e||"body").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._destroyOverlay(),this.element.removeUniqueId().removeClass("ui-dialog-content ui-widget-content").css(this.originalCss).detach(),this.uiDialog.stop(!0,!0).remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),t=e.parent.children().eq(e.index),t.length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog},disable:t.noop,enable:t.noop,close:function(e){var i=this;this._isOpen&&this._trigger("beforeClose",e)!==!1&&(this._isOpen=!1,this._destroyOverlay(),this.opener.filter(":focusable").focus().length||t(this.document[0].activeElement).blur(),this._hide(this.uiDialog,this.options.hide,function(){i._trigger("close",e)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(t,e){var i=!!this.uiDialog.nextAll(":visible").insertBefore(this.uiDialog).length;return i&&!e&&this._trigger("focus",t),i},open:function(){var e=this;return this._isOpen?(this._moveToTop()&&this._focusTabbable(),undefined):(this._isOpen=!0,this.opener=t(this.document[0].activeElement),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this._show(this.uiDialog,this.options.show,function(){e._focusTabbable(),e._trigger("focus")}),this._trigger("open"),undefined)},_focusTabbable:function(){var t=this.element.find("[autofocus]");t.length||(t=this.element.find(":tabbable")),t.length||(t=this.uiDialogButtonPane.find(":tabbable")),t.length||(t=this.uiDialogTitlebarClose.filter(":tabbable")),t.length||(t=this.uiDialog),t.eq(0).focus()},_keepFocus:function(e){function i(){var e=this.document[0].activeElement,i=this.uiDialog[0]===e||t.contains(this.uiDialog[0],e);i||this._focusTabbable()}e.preventDefault(),i.call(this),this._delay(i)},_createWrapper:function(){this.uiDialog=t("
").addClass("ui-dialog ui-widget ui-widget-content ui-corner-all ui-front "+this.options.dialogClass).hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._on(this.uiDialog,{keydown:function(e){if(this.options.closeOnEscape&&!e.isDefaultPrevented()&&e.keyCode&&e.keyCode===t.ui.keyCode.ESCAPE)return e.preventDefault(),this.close(e),undefined;if(e.keyCode===t.ui.keyCode.TAB){var i=this.uiDialog.find(":tabbable"),s=i.filter(":first"),n=i.filter(":last");e.target!==n[0]&&e.target!==this.uiDialog[0]||e.shiftKey?e.target!==s[0]&&e.target!==this.uiDialog[0]||!e.shiftKey||(n.focus(1),e.preventDefault()):(s.focus(1),e.preventDefault())}},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var e;this.uiDialogTitlebar=t("
").addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(this.uiDialog),this._on(this.uiDialogTitlebar,{mousedown:function(e){t(e.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.focus()}}),this.uiDialogTitlebarClose=t("").button({label:this.options.closeText,icons:{primary:"ui-icon-closethick"},text:!1}).addClass("ui-dialog-titlebar-close").appendTo(this.uiDialogTitlebar),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),e=t("").uniqueId().addClass("ui-dialog-title").prependTo(this.uiDialogTitlebar),this._title(e),this.uiDialog.attr({"aria-labelledby":e.attr("id")})},_title:function(t){this.options.title||t.html(" "),t.text(this.options.title)},_createButtonPane:function(){this.uiDialogButtonPane=t("
").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),this.uiButtonSet=t("
").addClass("ui-dialog-buttonset").appendTo(this.uiDialogButtonPane),this._createButtons()},_createButtons:function(){var e=this,i=this.options.buttons;return this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),t.isEmptyObject(i)||t.isArray(i)&&!i.length?(this.uiDialog.removeClass("ui-dialog-buttons"),undefined):(t.each(i,function(i,s){var n,o;s=t.isFunction(s)?{click:s,text:i}:s,s=t.extend({type:"button"},s),n=s.click,s.click=function(){n.apply(e.element[0],arguments)},o={icons:s.icons,text:s.showText},delete s.icons,delete s.showText,t("",s).button(o).appendTo(e.uiButtonSet)}),this.uiDialog.addClass("ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog),undefined)},_makeDraggable:function(){function e(t){return{position:t.position,offset:t.offset}}var i=this,s=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(s,n){t(this).addClass("ui-dialog-dragging"),i._blockFrames(),i._trigger("dragStart",s,e(n))},drag:function(t,s){i._trigger("drag",t,e(s))},stop:function(n,o){s.position=[o.position.left-i.document.scrollLeft(),o.position.top-i.document.scrollTop()],t(this).removeClass("ui-dialog-dragging"),i._unblockFrames(),i._trigger("dragStop",n,e(o))}})},_makeResizable:function(){function e(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size} +}var i=this,s=this.options,n=s.resizable,o=this.uiDialog.css("position"),a="string"==typeof n?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:s.maxWidth,maxHeight:s.maxHeight,minWidth:s.minWidth,minHeight:this._minHeight(),handles:a,start:function(s,n){t(this).addClass("ui-dialog-resizing"),i._blockFrames(),i._trigger("resizeStart",s,e(n))},resize:function(t,s){i._trigger("resize",t,e(s))},stop:function(n,o){s.height=t(this).height(),s.width=t(this).width(),t(this).removeClass("ui-dialog-resizing"),i._unblockFrames(),i._trigger("resizeStop",n,e(o))}}).css("position",o)},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(s){var n=this,o=!1,a={};t.each(s,function(t,s){n._setOption(t,s),t in e&&(o=!0),t in i&&(a[t]=s)}),o&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",a)},_setOption:function(t,e){var i,s,n=this.uiDialog;"dialogClass"===t&&n.removeClass(this.options.dialogClass).addClass(e),"disabled"!==t&&(this._super(t,e),"appendTo"===t&&this.uiDialog.appendTo(this._appendTo()),"buttons"===t&&this._createButtons(),"closeText"===t&&this.uiDialogTitlebarClose.button({label:""+e}),"draggable"===t&&(i=n.is(":data(ui-draggable)"),i&&!e&&n.draggable("destroy"),!i&&e&&this._makeDraggable()),"position"===t&&this._position(),"resizable"===t&&(s=n.is(":data(ui-resizable)"),s&&!e&&n.resizable("destroy"),s&&"string"==typeof e&&n.resizable("option","handles",e),s||e===!1||this._makeResizable()),"title"===t&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var e=t(this);return t("
").css({position:"absolute",width:e.outerWidth(),height:e.outerHeight()}).appendTo(e.parent()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(e){return t(e.target).closest(".ui-dialog").length?!0:!!t(e.target).closest(".ui-datepicker").length},_createOverlay:function(){if(this.options.modal){var e=this,i=this.widgetFullName;t.ui.dialog.overlayInstances||this._delay(function(){t.ui.dialog.overlayInstances&&this.document.bind("focusin.dialog",function(s){e._allowInteraction(s)||(s.preventDefault(),t(".ui-dialog:visible:last .ui-dialog-content").data(i)._focusTabbable())})}),this.overlay=t("
").addClass("ui-widget-overlay ui-front").appendTo(this._appendTo()),this._on(this.overlay,{mousedown:"_keepFocus"}),t.ui.dialog.overlayInstances++}},_destroyOverlay:function(){this.options.modal&&this.overlay&&(t.ui.dialog.overlayInstances--,t.ui.dialog.overlayInstances||this.document.unbind("focusin.dialog"),this.overlay.remove(),this.overlay=null)}}),t.ui.dialog.overlayInstances=0,t.uiBackCompat!==!1&&t.widget("ui.dialog",t.ui.dialog,{_position:function(){var e,i=this.options.position,s=[],n=[0,0];i?(("string"==typeof i||"object"==typeof i&&"0"in i)&&(s=i.split?i.split(" "):[i[0],i[1]],1===s.length&&(s[1]=s[0]),t.each(["left","top"],function(t,e){+s[t]===s[t]&&(n[t]=s[t],s[t]=e)}),i={my:s[0]+(0>n[0]?n[0]:"+"+n[0])+" "+s[1]+(0>n[1]?n[1]:"+"+n[1]),at:s.join(" ")}),i=t.extend({},t.ui.dialog.prototype.options.position,i)):i=t.ui.dialog.prototype.options.position,e=this.uiDialog.is(":visible"),e||this.uiDialog.show(),this.uiDialog.position(i),e||this.uiDialog.hide()}})}(jQuery),function(t){var e=/up|down|vertical/,i=/up|left|vertical|horizontal/;t.effects.effect.blind=function(s,n){var o,a,r,h=t(this),l=["position","top","bottom","left","right","height","width"],c=t.effects.setMode(h,s.mode||"hide"),u=s.direction||"up",d=e.test(u),p=d?"height":"width",f=d?"top":"left",g=i.test(u),m={},v="show"===c;h.parent().is(".ui-effects-wrapper")?t.effects.save(h.parent(),l):t.effects.save(h,l),h.show(),o=t.effects.createWrapper(h).css({overflow:"hidden"}),a=o[p](),r=parseFloat(o.css(f))||0,m[p]=v?a:0,g||(h.css(d?"bottom":"right",0).css(d?"top":"left","auto").css({position:"absolute"}),m[f]=v?r:a+r),v&&(o.css(p,0),g||o.css(f,r+a)),o.animate(m,{duration:s.duration,easing:s.easing,queue:!1,complete:function(){"hide"===c&&h.hide(),t.effects.restore(h,l),t.effects.removeWrapper(h),n()}})}}(jQuery),function(t){t.effects.effect.bounce=function(e,i){var s,n,o,a=t(this),r=["position","top","bottom","left","right","height","width"],h=t.effects.setMode(a,e.mode||"effect"),l="hide"===h,c="show"===h,u=e.direction||"up",d=e.distance,p=e.times||5,f=2*p+(c||l?1:0),g=e.duration/f,m=e.easing,v="up"===u||"down"===u?"top":"left",_="up"===u||"left"===u,b=a.queue(),y=b.length;for((c||l)&&r.push("opacity"),t.effects.save(a,r),a.show(),t.effects.createWrapper(a),d||(d=a["top"===v?"outerHeight":"outerWidth"]()/3),c&&(o={opacity:1},o[v]=0,a.css("opacity",0).css(v,_?2*-d:2*d).animate(o,g,m)),l&&(d/=Math.pow(2,p-1)),o={},o[v]=0,s=0;p>s;s++)n={},n[v]=(_?"-=":"+=")+d,a.animate(n,g,m).animate(o,g,m),d=l?2*d:d/2;l&&(n={opacity:0},n[v]=(_?"-=":"+=")+d,a.animate(n,g,m)),a.queue(function(){l&&a.hide(),t.effects.restore(a,r),t.effects.removeWrapper(a),i()}),y>1&&b.splice.apply(b,[1,0].concat(b.splice(y,f+1))),a.dequeue()}}(jQuery),function(t){t.effects.effect.clip=function(e,i){var s,n,o,a=t(this),r=["position","top","bottom","left","right","height","width"],h=t.effects.setMode(a,e.mode||"hide"),l="show"===h,c=e.direction||"vertical",u="vertical"===c,d=u?"height":"width",p=u?"top":"left",f={};t.effects.save(a,r),a.show(),s=t.effects.createWrapper(a).css({overflow:"hidden"}),n="IMG"===a[0].tagName?s:a,o=n[d](),l&&(n.css(d,0),n.css(p,o/2)),f[d]=l?o:0,f[p]=l?0:o/2,n.animate(f,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){l||a.hide(),t.effects.restore(a,r),t.effects.removeWrapper(a),i()}})}}(jQuery),function(t){t.effects.effect.drop=function(e,i){var s,n=t(this),o=["position","top","bottom","left","right","opacity","height","width"],a=t.effects.setMode(n,e.mode||"hide"),r="show"===a,h=e.direction||"left",l="up"===h||"down"===h?"top":"left",c="up"===h||"left"===h?"pos":"neg",u={opacity:r?1:0};t.effects.save(n,o),n.show(),t.effects.createWrapper(n),s=e.distance||n["top"===l?"outerHeight":"outerWidth"](!0)/2,r&&n.css("opacity",0).css(l,"pos"===c?-s:s),u[l]=(r?"pos"===c?"+=":"-=":"pos"===c?"-=":"+=")+s,n.animate(u,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){"hide"===a&&n.hide(),t.effects.restore(n,o),t.effects.removeWrapper(n),i()}})}}(jQuery),function(t){t.effects.effect.explode=function(e,i){function s(){b.push(this),b.length===u*d&&n()}function n(){p.css({visibility:"visible"}),t(b).remove(),g||p.hide(),i()}var o,a,r,h,l,c,u=e.pieces?Math.round(Math.sqrt(e.pieces)):3,d=u,p=t(this),f=t.effects.setMode(p,e.mode||"hide"),g="show"===f,m=p.show().css("visibility","hidden").offset(),v=Math.ceil(p.outerWidth()/d),_=Math.ceil(p.outerHeight()/u),b=[];for(o=0;u>o;o++)for(h=m.top+o*_,c=o-(u-1)/2,a=0;d>a;a++)r=m.left+a*v,l=a-(d-1)/2,p.clone().appendTo("body").wrap("
").css({position:"absolute",visibility:"visible",left:-a*v,top:-o*_}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:v,height:_,left:r+(g?l*v:0),top:h+(g?c*_:0),opacity:g?0:1}).animate({left:r+(g?0:l*v),top:h+(g?0:c*_),opacity:g?1:0},e.duration||500,e.easing,s)}}(jQuery),function(t){t.effects.effect.fade=function(e,i){var s=t(this),n=t.effects.setMode(s,e.mode||"toggle");s.animate({opacity:n},{queue:!1,duration:e.duration,easing:e.easing,complete:i})}}(jQuery),function(t){t.effects.effect.fold=function(e,i){var s,n,o=t(this),a=["position","top","bottom","left","right","height","width"],r=t.effects.setMode(o,e.mode||"hide"),h="show"===r,l="hide"===r,c=e.size||15,u=/([0-9]+)%/.exec(c),d=!!e.horizFirst,p=h!==d,f=p?["width","height"]:["height","width"],g=e.duration/2,m={},v={};t.effects.save(o,a),o.show(),s=t.effects.createWrapper(o).css({overflow:"hidden"}),n=p?[s.width(),s.height()]:[s.height(),s.width()],u&&(c=parseInt(u[1],10)/100*n[l?0:1]),h&&s.css(d?{height:0,width:c}:{height:c,width:0}),m[f[0]]=h?n[0]:c,v[f[1]]=h?n[1]:0,s.animate(m,g,e.easing).animate(v,g,e.easing,function(){l&&o.hide(),t.effects.restore(o,a),t.effects.removeWrapper(o),i()})}}(jQuery),function(t){t.effects.effect.highlight=function(e,i){var s=t(this),n=["backgroundImage","backgroundColor","opacity"],o=t.effects.setMode(s,e.mode||"show"),a={backgroundColor:s.css("backgroundColor")};"hide"===o&&(a.opacity=0),t.effects.save(s,n),s.show().css({backgroundImage:"none",backgroundColor:e.color||"#ffff99"}).animate(a,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){"hide"===o&&s.hide(),t.effects.restore(s,n),i()}})}}(jQuery),function(t){t.effects.effect.pulsate=function(e,i){var s,n=t(this),o=t.effects.setMode(n,e.mode||"show"),a="show"===o,r="hide"===o,h=a||"hide"===o,l=2*(e.times||5)+(h?1:0),c=e.duration/l,u=0,d=n.queue(),p=d.length;for((a||!n.is(":visible"))&&(n.css("opacity",0).show(),u=1),s=1;l>s;s++)n.animate({opacity:u},c,e.easing),u=1-u;n.animate({opacity:u},c,e.easing),n.queue(function(){r&&n.hide(),i()}),p>1&&d.splice.apply(d,[1,0].concat(d.splice(p,l+1))),n.dequeue()}}(jQuery),function(t){t.effects.effect.puff=function(e,i){var s=t(this),n=t.effects.setMode(s,e.mode||"hide"),o="hide"===n,a=parseInt(e.percent,10)||150,r=a/100,h={height:s.height(),width:s.width(),outerHeight:s.outerHeight(),outerWidth:s.outerWidth()};t.extend(e,{effect:"scale",queue:!1,fade:!0,mode:n,complete:i,percent:o?a:100,from:o?h:{height:h.height*r,width:h.width*r,outerHeight:h.outerHeight*r,outerWidth:h.outerWidth*r}}),s.effect(e)},t.effects.effect.scale=function(e,i){var s=t(this),n=t.extend(!0,{},e),o=t.effects.setMode(s,e.mode||"effect"),a=parseInt(e.percent,10)||(0===parseInt(e.percent,10)?0:"hide"===o?0:100),r=e.direction||"both",h=e.origin,l={height:s.height(),width:s.width(),outerHeight:s.outerHeight(),outerWidth:s.outerWidth()},c={y:"horizontal"!==r?a/100:1,x:"vertical"!==r?a/100:1};n.effect="size",n.queue=!1,n.complete=i,"effect"!==o&&(n.origin=h||["middle","center"],n.restore=!0),n.from=e.from||("show"===o?{height:0,width:0,outerHeight:0,outerWidth:0}:l),n.to={height:l.height*c.y,width:l.width*c.x,outerHeight:l.outerHeight*c.y,outerWidth:l.outerWidth*c.x},n.fade&&("show"===o&&(n.from.opacity=0,n.to.opacity=1),"hide"===o&&(n.from.opacity=1,n.to.opacity=0)),s.effect(n)},t.effects.effect.size=function(e,i){var s,n,o,a=t(this),r=["position","top","bottom","left","right","width","height","overflow","opacity"],h=["position","top","bottom","left","right","overflow","opacity"],l=["width","height","overflow"],c=["fontSize"],u=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],d=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],p=t.effects.setMode(a,e.mode||"effect"),f=e.restore||"effect"!==p,g=e.scale||"both",m=e.origin||["middle","center"],v=a.css("position"),_=f?r:h,b={height:0,width:0,outerHeight:0,outerWidth:0};"show"===p&&a.show(),s={height:a.height(),width:a.width(),outerHeight:a.outerHeight(),outerWidth:a.outerWidth()},"toggle"===e.mode&&"show"===p?(a.from=e.to||b,a.to=e.from||s):(a.from=e.from||("show"===p?b:s),a.to=e.to||("hide"===p?b:s)),o={from:{y:a.from.height/s.height,x:a.from.width/s.width},to:{y:a.to.height/s.height,x:a.to.width/s.width}},("box"===g||"both"===g)&&(o.from.y!==o.to.y&&(_=_.concat(u),a.from=t.effects.setTransition(a,u,o.from.y,a.from),a.to=t.effects.setTransition(a,u,o.to.y,a.to)),o.from.x!==o.to.x&&(_=_.concat(d),a.from=t.effects.setTransition(a,d,o.from.x,a.from),a.to=t.effects.setTransition(a,d,o.to.x,a.to))),("content"===g||"both"===g)&&o.from.y!==o.to.y&&(_=_.concat(c).concat(l),a.from=t.effects.setTransition(a,c,o.from.y,a.from),a.to=t.effects.setTransition(a,c,o.to.y,a.to)),t.effects.save(a,_),a.show(),t.effects.createWrapper(a),a.css("overflow","hidden").css(a.from),m&&(n=t.effects.getBaseline(m,s),a.from.top=(s.outerHeight-a.outerHeight())*n.y,a.from.left=(s.outerWidth-a.outerWidth())*n.x,a.to.top=(s.outerHeight-a.to.outerHeight)*n.y,a.to.left=(s.outerWidth-a.to.outerWidth)*n.x),a.css(a.from),("content"===g||"both"===g)&&(u=u.concat(["marginTop","marginBottom"]).concat(c),d=d.concat(["marginLeft","marginRight"]),l=r.concat(u).concat(d),a.find("*[width]").each(function(){var i=t(this),s={height:i.height(),width:i.width(),outerHeight:i.outerHeight(),outerWidth:i.outerWidth()};f&&t.effects.save(i,l),i.from={height:s.height*o.from.y,width:s.width*o.from.x,outerHeight:s.outerHeight*o.from.y,outerWidth:s.outerWidth*o.from.x},i.to={height:s.height*o.to.y,width:s.width*o.to.x,outerHeight:s.height*o.to.y,outerWidth:s.width*o.to.x},o.from.y!==o.to.y&&(i.from=t.effects.setTransition(i,u,o.from.y,i.from),i.to=t.effects.setTransition(i,u,o.to.y,i.to)),o.from.x!==o.to.x&&(i.from=t.effects.setTransition(i,d,o.from.x,i.from),i.to=t.effects.setTransition(i,d,o.to.x,i.to)),i.css(i.from),i.animate(i.to,e.duration,e.easing,function(){f&&t.effects.restore(i,l)})})),a.animate(a.to,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){0===a.to.opacity&&a.css("opacity",a.from.opacity),"hide"===p&&a.hide(),t.effects.restore(a,_),f||("static"===v?a.css({position:"relative",top:a.to.top,left:a.to.left}):t.each(["top","left"],function(t,e){a.css(e,function(e,i){var s=parseInt(i,10),n=t?a.to.left:a.to.top;return"auto"===i?n+"px":s+n+"px"})})),t.effects.removeWrapper(a),i()}})}}(jQuery),function(t){t.effects.effect.shake=function(e,i){var s,n=t(this),o=["position","top","bottom","left","right","height","width"],a=t.effects.setMode(n,e.mode||"effect"),r=e.direction||"left",h=e.distance||20,l=e.times||3,c=2*l+1,u=Math.round(e.duration/c),d="up"===r||"down"===r?"top":"left",p="up"===r||"left"===r,f={},g={},m={},v=n.queue(),_=v.length;for(t.effects.save(n,o),n.show(),t.effects.createWrapper(n),f[d]=(p?"-=":"+=")+h,g[d]=(p?"+=":"-=")+2*h,m[d]=(p?"-=":"+=")+2*h,n.animate(f,u,e.easing),s=1;l>s;s++)n.animate(g,u,e.easing).animate(m,u,e.easing);n.animate(g,u,e.easing).animate(f,u/2,e.easing).queue(function(){"hide"===a&&n.hide(),t.effects.restore(n,o),t.effects.removeWrapper(n),i()}),_>1&&v.splice.apply(v,[1,0].concat(v.splice(_,c+1))),n.dequeue()}}(jQuery),function(t){t.effects.effect.slide=function(e,i){var s,n=t(this),o=["position","top","bottom","left","right","width","height"],a=t.effects.setMode(n,e.mode||"show"),r="show"===a,h=e.direction||"left",l="up"===h||"down"===h?"top":"left",c="up"===h||"left"===h,u={};t.effects.save(n,o),n.show(),s=e.distance||n["top"===l?"outerHeight":"outerWidth"](!0),t.effects.createWrapper(n).css({overflow:"hidden"}),r&&n.css(l,c?isNaN(s)?"-"+s:-s:s),u[l]=(r?c?"+=":"-=":c?"-=":"+=")+s,n.animate(u,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){"hide"===a&&n.hide(),t.effects.restore(n,o),t.effects.removeWrapper(n),i()}})}}(jQuery),function(t){t.effects.effect.transfer=function(e,i){var s=t(this),n=t(e.to),o="fixed"===n.css("position"),a=t("body"),r=o?a.scrollTop():0,h=o?a.scrollLeft():0,l=n.offset(),c={top:l.top-r,left:l.left-h,height:n.innerHeight(),width:n.innerWidth()},u=s.offset(),d=t("
").appendTo(document.body).addClass(e.className).css({top:u.top-r,left:u.left-h,height:s.innerHeight(),width:s.innerWidth(),position:o?"fixed":"absolute"}).animate(c,e.duration,e.easing,function(){d.remove(),i()})}}(jQuery),function(t){t.widget("ui.menu",{version:"1.10.3",defaultElement:"
    ",delay:300,options:{icons:{submenu:"ui-icon-carat-1-e"},menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().addClass("ui-menu ui-widget ui-widget-content ui-corner-all").toggleClass("ui-menu-icons",!!this.element.find(".ui-icon").length).attr({role:this.options.role,tabIndex:0}).bind("click"+this.eventNamespace,t.proxy(function(t){this.options.disabled&&t.preventDefault()},this)),this.options.disabled&&this.element.addClass("ui-state-disabled").attr("aria-disabled","true"),this._on({"mousedown .ui-menu-item > a":function(t){t.preventDefault()},"click .ui-state-disabled > a":function(t){t.preventDefault()},"click .ui-menu-item:has(a)":function(e){var i=t(e.target).closest(".ui-menu-item");!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.mouseHandled=!0,this.select(e),i.has(".ui-menu").length?this.expand(e):this.element.is(":focus")||(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(e){var i=t(e.currentTarget);i.siblings().children(".ui-state-active").removeClass("ui-state-active"),this.focus(e,i)},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this.element.children(".ui-menu-item").eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){t.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(e)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(e){t(e.target).closest(".ui-menu").length||this.collapseAll(e),this.mouseHandled=!1}})},_destroy:function(){this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeClass("ui-menu ui-widget ui-widget-content ui-corner-all ui-menu-icons").removeAttr("role").removeAttr("tabIndex").removeAttr("aria-labelledby").removeAttr("aria-expanded").removeAttr("aria-hidden").removeAttr("aria-disabled").removeUniqueId().show(),this.element.find(".ui-menu-item").removeClass("ui-menu-item").removeAttr("role").removeAttr("aria-disabled").children("a").removeUniqueId().removeClass("ui-corner-all ui-state-hover").removeAttr("tabIndex").removeAttr("role").removeAttr("aria-haspopup").children().each(function(){var e=t(this);e.data("ui-menu-submenu-carat")&&e.remove()}),this.element.find(".ui-menu-divider").removeClass("ui-menu-divider ui-widget-content")},_keydown:function(e){function i(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")}var s,n,o,a,r,h=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move("first","first",e);break;case t.ui.keyCode.END:this._move("last","last",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:h=!1,n=this.previousFilter||"",o=String.fromCharCode(e.keyCode),a=!1,clearTimeout(this.filterTimer),o===n?a=!0:o=n+o,r=RegExp("^"+i(o),"i"),s=this.activeMenu.children(".ui-menu-item").filter(function(){return r.test(t(this).children("a").text())}),s=a&&-1!==s.index(this.active.next())?this.active.nextAll(".ui-menu-item"):s,s.length||(o=String.fromCharCode(e.keyCode),r=RegExp("^"+i(o),"i"),s=this.activeMenu.children(".ui-menu-item").filter(function(){return r.test(t(this).children("a").text())})),s.length?(this.focus(e,s),s.length>1?(this.previousFilter=o,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter):delete this.previousFilter}h&&e.preventDefault()},_activate:function(t){this.active.is(".ui-state-disabled")||(this.active.children("a[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var e,i=this.options.icons.submenu,s=this.element.find(this.options.menus);s.filter(":not(.ui-menu)").addClass("ui-menu ui-widget ui-widget-content ui-corner-all").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var e=t(this),s=e.prev("a"),n=t("").addClass("ui-menu-icon ui-icon "+i).data("ui-menu-submenu-carat",!0);s.attr("aria-haspopup","true").prepend(n),e.attr("aria-labelledby",s.attr("id"))}),e=s.add(this.element),e.children(":not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","presentation").children("a").uniqueId().addClass("ui-corner-all").attr({tabIndex:-1,role:this._itemRole()}),e.children(":not(.ui-menu-item)").each(function(){var e=t(this);/[^\-\u2014\u2013\s]/.test(e.text())||e.addClass("ui-widget-content ui-menu-divider")}),e.children(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){"icons"===t&&this.element.find(".ui-menu-icon").removeClass(this.options.icons.submenu).addClass(e.submenu),this._super(t,e)},focus:function(t,e){var i,s;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children("a").addClass("ui-state-focus"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),this.active.parent().closest(".ui-menu-item").children("a:first").addClass("ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(".ui-menu"),i.length&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(t.css(this.activeMenu[0],"paddingTop"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.height(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this.active.children("a").removeClass("ui-state-focus"),this.active=null,this._trigger("blur",t,{item:this.active}))},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(e.parents(".ui-menu")).hide().attr("aria-hidden","true"),e.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(e),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false").end().find("a.ui-state-active").removeClass("ui-state-active")},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(".ui-menu ").children(".ui-menu-item").first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(t,e,i){var s;this.active&&(s="first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[t+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.children(".ui-menu-item")[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.children(".ui-menu-item")[this.active?"last":"first"]())),undefined):(this.next(e),undefined)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.children(".ui-menu-item").first())),undefined):(this.next(e),undefined)},_hasScroll:function(){return this.element.outerHeight()
"),a=n.children()[0];return t("body").append(n),i=a.offsetWidth,n.css("overflow","scroll"),s=a.offsetWidth,i===s&&(s=n[0].clientWidth),n.remove(),o=i-s},getScrollInfo:function(e){var i=e.isWindow?"":e.element.css("overflow-x"),s=e.isWindow?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widths?"left":i>0?"right":"center",vertical:0>o?"top":n>0?"bottom":"middle"};u>p&&p>r(i+s)&&(h.horizontal="center"),d>g&&g>r(n+o)&&(h.vertical="middle"),h.important=a(r(i),r(s))>a(r(n),r(o))?"horizontal":"vertical",e.using.call(this,t,h)}),c.offset(t.extend(I,{using:l}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,o=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-o-n;e.collisionWidth>o?h>0&&0>=l?(i=t.left+h+e.collisionWidth-o-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+o-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=a(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,o=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-o-n;e.collisionHeight>o?h>0&&0>=l?(i=t.top+h+e.collisionHeight-o-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+o-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=a(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,a=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-a-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-a-o,(0>i||r(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>r(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,a=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-a-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-a-o,t.top+p+f+g>c&&(0>s||r(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-h,t.top+p+f+g>u&&(i>0||u>r(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}},function(){var e,i,s,n,o,a=document.getElementsByTagName("body")[0],r=document.createElement("div");e=document.createElement(a?"div":"body"),s={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},a&&t.extend(s,{position:"absolute",left:"-1000px",top:"-1000px"});for(o in s)e.style[o]=s[o];e.appendChild(r),i=a||document.documentElement,i.insertBefore(e,i.firstChild),r.style.cssText="position: absolute; left: 10.7432222px;",n=t(r).offset().left,t.support.offsetFractions=n>10&&11>n,e.innerHTML="",i.removeChild(e)}()}(jQuery),function(t,e){t.widget("ui.progressbar",{version:"1.10.3",options:{max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min}),this.valueDiv=t("
").appendTo(this.element),this._refreshValue()},_destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove() +},value:function(t){return t===e?this.options.value:(this.options.value=this._constrainedValue(t),this._refreshValue(),e)},_constrainedValue:function(t){return t===e&&(t=this.options.value),this.indeterminate=t===!1,"number"!=typeof t&&(t=0),this.indeterminate?!1:Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var e=this.options.value,i=this._percentage();this.valueDiv.toggle(this.indeterminate||e>this.min).toggleClass("ui-corner-right",e===this.options.max).width(i.toFixed(0)+"%"),this.element.toggleClass("ui-progressbar-indeterminate",this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=t("
").appendTo(this.valueDiv))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":e}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==e&&(this.oldValue=e,this._trigger("change")),e===this.options.max&&this._trigger("complete")}})}(jQuery),function(t){var e=5;t.widget("ui.slider",t.ui.mouse,{version:"1.10.3",widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"),this._refresh(),this._setOption("disabled",this.options.disabled),this._animateOff=!1},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var e,i,s=this.options,n=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),o="",a=[];for(i=s.values&&s.values.length||1,n.length>i&&(n.slice(i).remove(),n=n.slice(0,i)),e=n.length;i>e;e++)a.push(o);this.handles=n.add(t(a.join("")).appendTo(this.element)),this.handle=this.handles.eq(0),this.handles.each(function(e){t(this).data("ui-slider-handle-index",e)})},_createRange:function(){var e=this.options,i="";e.range?(e.range===!0&&(e.values?e.values.length&&2!==e.values.length?e.values=[e.values[0],e.values[0]]:t.isArray(e.values)&&(e.values=e.values.slice(0)):e.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?this.range.removeClass("ui-slider-range-min ui-slider-range-max").css({left:"",bottom:""}):(this.range=t("
").appendTo(this.element),i="ui-slider-range ui-widget-header ui-corner-all"),this.range.addClass(i+("min"===e.range||"max"===e.range?" ui-slider-range-"+e.range:""))):this.range=t([])},_setupEvents:function(){var t=this.handles.add(this.range).filter("a");this._off(t),this._on(t,this._handleEvents),this._hoverable(t),this._focusable(t)},_destroy:function(){this.handles.remove(),this.range.remove(),this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-widget ui-widget-content ui-corner-all"),this._mouseDestroy()},_mouseCapture:function(e){var i,s,n,o,a,r,h,l,c=this,u=this.options;return u.disabled?!1:(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),i={x:e.pageX,y:e.pageY},s=this._normValueFromMouse(i),n=this._valueMax()-this._valueMin()+1,this.handles.each(function(e){var i=Math.abs(s-c.values(e));(n>i||n===i&&(e===c._lastChangedValue||c.values(e)===u.min))&&(n=i,o=t(this),a=e)}),r=this._start(e,a),r===!1?!1:(this._mouseSliding=!0,this._handleIndex=a,o.addClass("ui-state-active").focus(),h=o.offset(),l=!t(e.target).parents().addBack().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:e.pageX-h.left-o.width()/2,top:e.pageY-h.top-o.height()/2-(parseInt(o.css("borderTopWidth"),10)||0)-(parseInt(o.css("borderBottomWidth"),10)||0)+(parseInt(o.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(e,a,s),this._animateOff=!0,!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e={x:t.pageX,y:t.pageY},i=this._normValueFromMouse(e);return this._slide(t,this._handleIndex,i),!1},_mouseStop:function(t){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e,i,s,n,o;return"horizontal"===this.orientation?(e=this.elementSize.width,i=t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,i=t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),s=i/e,s>1&&(s=1),0>s&&(s=0),"vertical"===this.orientation&&(s=1-s),n=this._valueMax()-this._valueMin(),o=this._valueMin()+s*n,this._trimAlignValue(o)},_start:function(t,e){var i={handle:this.handles[e],value:this.value()};return this.options.values&&this.options.values.length&&(i.value=this.values(e),i.values=this.values()),this._trigger("start",t,i)},_slide:function(t,e,i){var s,n,o;this.options.values&&this.options.values.length?(s=this.values(e?0:1),2===this.options.values.length&&this.options.range===!0&&(0===e&&i>s||1===e&&s>i)&&(i=s),i!==this.values(e)&&(n=this.values(),n[e]=i,o=this._trigger("slide",t,{handle:this.handles[e],value:i,values:n}),s=this.values(e?0:1),o!==!1&&this.values(e,i,!0))):i!==this.value()&&(o=this._trigger("slide",t,{handle:this.handles[e],value:i}),o!==!1&&this.value(i))},_stop:function(t,e){var i={handle:this.handles[e],value:this.value()};this.options.values&&this.options.values.length&&(i.value=this.values(e),i.values=this.values()),this._trigger("stop",t,i)},_change:function(t,e){if(!this._keySliding&&!this._mouseSliding){var i={handle:this.handles[e],value:this.value()};this.options.values&&this.options.values.length&&(i.value=this.values(e),i.values=this.values()),this._lastChangedValue=e,this._trigger("change",t,i)}},value:function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),this._change(null,0),undefined):this._value()},values:function(e,i){var s,n,o;if(arguments.length>1)return this.options.values[e]=this._trimAlignValue(i),this._refreshValue(),this._change(null,e),undefined;if(!arguments.length)return this._values();if(!t.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(e):this.value();for(s=this.options.values,n=arguments[0],o=0;s.length>o;o+=1)s[o]=this._trimAlignValue(n[o]),this._change(null,o);this._refreshValue()},_setOption:function(e,i){var s,n=0;switch("range"===e&&this.options.range===!0&&("min"===i?(this.options.value=this._values(0),this.options.values=null):"max"===i&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),t.isArray(this.options.values)&&(n=this.options.values.length),t.Widget.prototype._setOption.apply(this,arguments),e){case"orientation":this._detectOrientation(),this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation),this._refreshValue();break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":for(this._animateOff=!0,this._refreshValue(),s=0;n>s;s+=1)this._change(null,s);this._animateOff=!1;break;case"min":case"max":this._animateOff=!0,this._refreshValue(),this._animateOff=!1;break;case"range":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_value:function(){var t=this.options.value;return t=this._trimAlignValue(t)},_values:function(t){var e,i,s;if(arguments.length)return e=this.options.values[t],e=this._trimAlignValue(e);if(this.options.values&&this.options.values.length){for(i=this.options.values.slice(),s=0;i.length>s;s+=1)i[s]=this._trimAlignValue(i[s]);return i}return[]},_trimAlignValue:function(t){if(this._valueMin()>=t)return this._valueMin();if(t>=this._valueMax())return this._valueMax();var e=this.options.step>0?this.options.step:1,i=(t-this._valueMin())%e,s=t-i;return 2*Math.abs(i)>=e&&(s+=i>0?e:-e),parseFloat(s.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var e,i,s,n,o,a=this.options.range,r=this.options,h=this,l=this._animateOff?!1:r.animate,c={};this.options.values&&this.options.values.length?this.handles.each(function(s){i=100*((h.values(s)-h._valueMin())/(h._valueMax()-h._valueMin())),c["horizontal"===h.orientation?"left":"bottom"]=i+"%",t(this).stop(1,1)[l?"animate":"css"](c,r.animate),h.options.range===!0&&("horizontal"===h.orientation?(0===s&&h.range.stop(1,1)[l?"animate":"css"]({left:i+"%"},r.animate),1===s&&h.range[l?"animate":"css"]({width:i-e+"%"},{queue:!1,duration:r.animate})):(0===s&&h.range.stop(1,1)[l?"animate":"css"]({bottom:i+"%"},r.animate),1===s&&h.range[l?"animate":"css"]({height:i-e+"%"},{queue:!1,duration:r.animate}))),e=i}):(s=this.value(),n=this._valueMin(),o=this._valueMax(),i=o!==n?100*((s-n)/(o-n)):0,c["horizontal"===this.orientation?"left":"bottom"]=i+"%",this.handle.stop(1,1)[l?"animate":"css"](c,r.animate),"min"===a&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:i+"%"},r.animate),"max"===a&&"horizontal"===this.orientation&&this.range[l?"animate":"css"]({width:100-i+"%"},{queue:!1,duration:r.animate}),"min"===a&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:i+"%"},r.animate),"max"===a&&"vertical"===this.orientation&&this.range[l?"animate":"css"]({height:100-i+"%"},{queue:!1,duration:r.animate}))},_handleEvents:{keydown:function(i){var s,n,o,a,r=t(i.target).data("ui-slider-handle-index");switch(i.keyCode){case t.ui.keyCode.HOME:case t.ui.keyCode.END:case t.ui.keyCode.PAGE_UP:case t.ui.keyCode.PAGE_DOWN:case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(i.preventDefault(),!this._keySliding&&(this._keySliding=!0,t(i.target).addClass("ui-state-active"),s=this._start(i,r),s===!1))return}switch(a=this.options.step,n=o=this.options.values&&this.options.values.length?this.values(r):this.value(),i.keyCode){case t.ui.keyCode.HOME:o=this._valueMin();break;case t.ui.keyCode.END:o=this._valueMax();break;case t.ui.keyCode.PAGE_UP:o=this._trimAlignValue(n+(this._valueMax()-this._valueMin())/e);break;case t.ui.keyCode.PAGE_DOWN:o=this._trimAlignValue(n-(this._valueMax()-this._valueMin())/e);break;case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:if(n===this._valueMax())return;o=this._trimAlignValue(n+a);break;case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(n===this._valueMin())return;o=this._trimAlignValue(n-a)}this._slide(i,r,o)},click:function(t){t.preventDefault()},keyup:function(e){var i=t(e.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(e,i),this._change(e,i),t(e.target).removeClass("ui-state-active"))}}})}(jQuery),function(t){function e(t){return function(){var e=this.element.val();t.apply(this,arguments),this._refresh(),e!==this.element.val()&&this._trigger("change")}}t.widget("ui.spinner",{version:"1.10.3",defaultElement:"",widgetEventPrefix:"spin",options:{culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var e={},i=this.element;return t.each(["min","max","step"],function(t,s){var n=i.attr(s);void 0!==n&&n.length&&(e[s]=n)}),e},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t),void 0)},mousewheel:function(t,e){if(e){if(!this.spinning&&!this._start(t))return!1;this._spin((e>0?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(e){function i(){var t=this.element[0]===this.document[0].activeElement;t||(this.element.focus(),this.previous=s,this._delay(function(){this.previous=s}))}var s;s=this.element[0]===this.document[0].activeElement?this.previous:this.element.val(),e.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),this._start(e)!==!1&&this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(e){return t(e.currentTarget).hasClass("ui-state-active")?this._start(e)===!1?!1:(this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e),void 0):void 0},"mouseleave .ui-spinner-button":"_stop"},_draw:function(){var t=this.uiSpinner=this.element.addClass("ui-spinner-input").attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml());this.element.attr("role","spinbutton"),this.buttons=t.find(".ui-spinner-button").attr("tabIndex",-1).button().removeClass("ui-corner-all"),this.buttons.height()>Math.ceil(.5*t.height())&&t.height()>0&&t.height(t.height()),this.options.disabled&&this.disable()},_keydown:function(e){var i=this.options,s=t.ui.keyCode;switch(e.keyCode){case s.UP:return this._repeat(null,1,e),!0;case s.DOWN:return this._repeat(null,-1,e),!0;case s.PAGE_UP:return this._repeat(null,i.page,e),!0;case s.PAGE_DOWN:return this._repeat(null,-i.page,e),!0}return!1},_uiSpinnerHtml:function(){return""},_buttonHtml:function(){return""+""+""+""+""},_start:function(t){return this.spinning||this._trigger("start",t)!==!1?(this.counter||(this.counter=1),this.spinning=!0,!0):!1},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&this._trigger("spin",e,{value:i})===!1||(this._value(i),this.counter++)},_increment:function(e){var i=this.options.incremental;return i?t.isFunction(i)?i(e):Math.floor(e*e*e/5e4-e*e/500+17*e/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return null!==this.options.min&&(t=Math.max(t,this._precisionOf(this.options.min))),t},_precisionOf:function(t){var e=""+t,i=e.indexOf(".");return-1===i?0:e.length-i-1},_adjustValue:function(t){var e,i,s=this.options;return e=null!==s.min?s.min:0,i=t-e,i=Math.round(i/s.step)*s.step,t=e+i,t=parseFloat(t.toFixed(this._precision())),null!==s.max&&t>s.max?s.max:null!==s.min&&s.min>t?s.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){if("culture"===t||"numberFormat"===t){var i=this._parse(this.element.val());return this.options[t]=e,this.element.val(this._format(i)),void 0}("max"===t||"min"===t||"step"===t)&&"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(this.buttons.first().find(".ui-icon").removeClass(this.options.icons.up).addClass(e.up),this.buttons.last().find(".ui-icon").removeClass(this.options.icons.down).addClass(e.down)),this._super(t,e),"disabled"===t&&(e?(this.element.prop("disabled",!0),this.buttons.button("disable")):(this.element.prop("disabled",!1),this.buttons.button("enable")))},_setOptions:e(function(t){this._super(t),this._value(this.element.val())}),_parse:function(t){return"string"==typeof t&&""!==t&&(t=window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t),""===t||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},_value:function(t,e){var i;""!==t&&(i=this._parse(t),null!==i&&(e||(i=this._adjustValue(i)),t=this._format(i))),this.element.val(t),this._refresh()},_destroy:function(){this.element.removeClass("ui-spinner-input").prop("disabled",!1).removeAttr("autocomplete").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:e(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:e(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:e(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:e(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){return arguments.length?(e(this._value).call(this,t),void 0):this._parse(this.element.val())},widget:function(){return this.uiSpinner}})}(jQuery),function(t,e){function i(){return++n}function s(t){return t.hash.length>1&&decodeURIComponent(t.href.replace(o,""))===decodeURIComponent(location.href.replace(o,""))}var n=0,o=/#.*$/;t.widget("ui.tabs",{version:"1.10.3",delay:300,options:{active:null,collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_create:function(){var e=this,i=this.options;this.running=!1,this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all").toggleClass("ui-tabs-collapsible",i.collapsible).delegate(".ui-tabs-nav > li","mousedown"+this.eventNamespace,function(e){t(this).is(".ui-state-disabled")&&e.preventDefault()}).delegate(".ui-tabs-anchor","focus"+this.eventNamespace,function(){t(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this._processTabs(),i.active=this._initialActive(),t.isArray(i.disabled)&&(i.disabled=t.unique(i.disabled.concat(t.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),this.active=this.options.active!==!1&&this.anchors.length?this._findActive(i.active):t(),this._refresh(),this.active.length&&this.load(i.active)},_initialActive:function(){var i=this.options.active,s=this.options.collapsible,n=location.hash.substring(1);return null===i&&(n&&this.tabs.each(function(s,o){return t(o).attr("aria-controls")===n?(i=s,!1):e}),null===i&&(i=this.tabs.index(this.tabs.filter(".ui-tabs-active"))),(null===i||-1===i)&&(i=this.tabs.length?0:!1)),i!==!1&&(i=this.tabs.index(this.tabs.eq(i)),-1===i&&(i=s?!1:0)),!s&&i===!1&&this.anchors.length&&(i=0),i},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):t()}},_tabKeydown:function(i){var s=t(this.document[0].activeElement).closest("li"),n=this.tabs.index(s),o=!0;if(!this._handlePageNav(i)){switch(i.keyCode){case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:n++;break;case t.ui.keyCode.UP:case t.ui.keyCode.LEFT:o=!1,n--;break;case t.ui.keyCode.END:n=this.anchors.length-1;break;case t.ui.keyCode.HOME:n=0;break;case t.ui.keyCode.SPACE:return i.preventDefault(),clearTimeout(this.activating),this._activate(n),e;case t.ui.keyCode.ENTER:return i.preventDefault(),clearTimeout(this.activating),this._activate(n===this.options.active?!1:n),e;default:return}i.preventDefault(),clearTimeout(this.activating),n=this._focusNextTab(n,o),i.ctrlKey||(s.attr("aria-selected","false"),this.tabs.eq(n).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",n)},this.delay))}},_panelKeydown:function(e){this._handlePageNav(e)||e.ctrlKey&&e.keyCode===t.ui.keyCode.UP&&(e.preventDefault(),this.active.focus())},_handlePageNav:function(i){return i.altKey&&i.keyCode===t.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):i.altKey&&i.keyCode===t.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):e},_findNextTab:function(e,i){function s(){return e>n&&(e=0),0>e&&(e=n),e}for(var n=this.tabs.length-1;-1!==t.inArray(s(),this.options.disabled);)e=i?e+1:e-1;return e},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).focus(),t},_setOption:function(t,i){return"active"===t?(this._activate(i),e):"disabled"===t?(this._setupDisabled(i),e):(this._super(t,i),"collapsible"===t&&(this.element.toggleClass("ui-tabs-collapsible",i),i||this.options.active!==!1||this._activate(0)),"event"===t&&this._setupEvents(i),"heightStyle"===t&&this._setupHeightStyle(i),e)},_tabId:function(t){return t.attr("aria-controls")||"ui-tabs-"+i()},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var e=this.options,i=this.tablist.children(":has(a[href])");e.disabled=t.map(i.filter(".ui-state-disabled"),function(t){return i.index(t)}),this._processTabs(),e.active!==!1&&this.anchors.length?this.active.length&&!t.contains(this.tablist[0],this.active[0])?this.tabs.length===e.disabled.length?(e.active=!1,this.active=t()):this._activate(this._findNextTab(Math.max(0,e.active-1),!1)):e.active=this.tabs.index(this.active):(e.active=!1,this.active=t()),this._refresh()},_refresh:function(){this._setupDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-expanded":"false","aria-hidden":"true"}),this.active.length?(this.active.addClass("ui-tabs-active ui-state-active").attr({"aria-selected":"true",tabIndex:0}),this._getPanelForTab(this.active).show().attr({"aria-expanded":"true","aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var e=this;this.tablist=this._getList().addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").attr("role","tablist"),this.tabs=this.tablist.find("> li:has(a[href])").addClass("ui-state-default ui-corner-top").attr({role:"tab",tabIndex:-1}),this.anchors=this.tabs.map(function(){return t("a",this)[0]}).addClass("ui-tabs-anchor").attr({role:"presentation",tabIndex:-1}),this.panels=t(),this.anchors.each(function(i,n){var o,a,r,h=t(n).uniqueId().attr("id"),l=t(n).closest("li"),c=l.attr("aria-controls");s(n)?(o=n.hash,a=e.element.find(e._sanitizeSelector(o))):(r=e._tabId(l),o="#"+r,a=e.element.find(o),a.length||(a=e._createPanel(r),a.insertAfter(e.panels[i-1]||e.tablist)),a.attr("aria-live","polite")),a.length&&(e.panels=e.panels.add(a)),c&&l.data("ui-tabs-aria-controls",c),l.attr({"aria-controls":o.substring(1),"aria-labelledby":h}),a.attr("aria-labelledby",h)}),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").attr("role","tabpanel")},_getList:function(){return this.element.find("ol,ul").eq(0)},_createPanel:function(e){return t("
").attr("id",e).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").data("ui-tabs-destroy",!0)},_setupDisabled:function(e){t.isArray(e)&&(e.length?e.length===this.anchors.length&&(e=!0):e=!1);for(var i,s=0;i=this.tabs[s];s++)e===!0||-1!==t.inArray(s,e)?t(i).addClass("ui-state-disabled").attr("aria-disabled","true"):t(i).removeClass("ui-state-disabled").removeAttr("aria-disabled");this.options.disabled=e},_setupEvents:function(e){var i={click:function(t){t.preventDefault()}};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(e){var i,s=this.element.parent();"fill"===e?(i=s.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var e=t(this),s=e.css("position");"absolute"!==s&&"fixed"!==s&&(i-=e.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=t(this).outerHeight(!0)}),this.panels.each(function(){t(this).height(Math.max(0,i-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.panels.each(function(){i=Math.max(i,t(this).height("").height())}).height(i))},_eventHandler:function(e){var i=this.options,s=this.active,n=t(e.currentTarget),o=n.closest("li"),a=o[0]===s[0],r=a&&i.collapsible,h=r?t():this._getPanelForTab(o),l=s.length?this._getPanelForTab(s):t(),c={oldTab:s,oldPanel:l,newTab:r?t():o,newPanel:h};e.preventDefault(),o.hasClass("ui-state-disabled")||o.hasClass("ui-tabs-loading")||this.running||a&&!i.collapsible||this._trigger("beforeActivate",e,c)===!1||(i.active=r?!1:this.tabs.index(o),this.active=a?t():o,this.xhr&&this.xhr.abort(),l.length||h.length||t.error("jQuery UI Tabs: Mismatching fragment identifier."),h.length&&this.load(this.tabs.index(o),e),this._toggle(e,c))},_toggle:function(e,i){function s(){o.running=!1,o._trigger("activate",e,i)}function n(){i.newTab.closest("li").addClass("ui-tabs-active ui-state-active"),a.length&&o.options.show?o._show(a,o.options.show,s):(a.show(),s())}var o=this,a=i.newPanel,r=i.oldPanel;this.running=!0,r.length&&this.options.hide?this._hide(r,this.options.hide,function(){i.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),n()}):(i.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),r.hide(),n()),r.attr({"aria-expanded":"false","aria-hidden":"true"}),i.oldTab.attr("aria-selected","false"),a.length&&r.length?i.oldTab.attr("tabIndex",-1):a.length&&this.tabs.filter(function(){return 0===t(this).attr("tabIndex")}).attr("tabIndex",-1),a.attr({"aria-expanded":"true","aria-hidden":"false"}),i.newTab.attr({"aria-selected":"true",tabIndex:0})},_activate:function(e){var i,s=this._findActive(e);s[0]!==this.active[0]&&(s.length||(s=this.active),i=s.find(".ui-tabs-anchor")[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return e===!1?t():this.tabs.eq(e)},_getIndex:function(t){return"string"==typeof t&&(t=this.anchors.index(this.anchors.filter("[href$='"+t+"']"))),t},_destroy:function(){this.xhr&&this.xhr.abort(),this.element.removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible"),this.tablist.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").removeAttr("role"),this.anchors.removeClass("ui-tabs-anchor").removeAttr("role").removeAttr("tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){t.data(this,"ui-tabs-destroy")?t(this).remove():t(this).removeClass("ui-state-default ui-state-active ui-state-disabled ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel").removeAttr("tabIndex").removeAttr("aria-live").removeAttr("aria-busy").removeAttr("aria-selected").removeAttr("aria-labelledby").removeAttr("aria-hidden").removeAttr("aria-expanded").removeAttr("role")}),this.tabs.each(function(){var e=t(this),i=e.data("ui-tabs-aria-controls");i?e.attr("aria-controls",i).removeData("ui-tabs-aria-controls"):e.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(i){var s=this.options.disabled;s!==!1&&(i===e?s=!1:(i=this._getIndex(i),s=t.isArray(s)?t.map(s,function(t){return t!==i?t:null}):t.map(this.tabs,function(t,e){return e!==i?e:null})),this._setupDisabled(s))},disable:function(i){var s=this.options.disabled;if(s!==!0){if(i===e)s=!0;else{if(i=this._getIndex(i),-1!==t.inArray(i,s))return;s=t.isArray(s)?t.merge([i],s).sort():[i]}this._setupDisabled(s)}},load:function(e,i){e=this._getIndex(e);var n=this,o=this.tabs.eq(e),a=o.find(".ui-tabs-anchor"),r=this._getPanelForTab(o),h={tab:o,panel:r};s(a[0])||(this.xhr=t.ajax(this._ajaxSettings(a,i,h)),this.xhr&&"canceled"!==this.xhr.statusText&&(o.addClass("ui-tabs-loading"),r.attr("aria-busy","true"),this.xhr.success(function(t){setTimeout(function(){r.html(t),n._trigger("load",i,h)},1)}).complete(function(t,e){setTimeout(function(){"abort"===e&&n.panels.stop(!1,!0),o.removeClass("ui-tabs-loading"),r.removeAttr("aria-busy"),t===n.xhr&&delete n.xhr},1)})))},_ajaxSettings:function(e,i,s){var n=this;return{url:e.attr("href"),beforeSend:function(e,o){return n._trigger("beforeLoad",i,t.extend({jqXHR:e,ajaxSettings:o},s))}}},_getPanelForTab:function(e){var i=t(e).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+i))}})}(jQuery),function(t){function e(e,i){var s=(e.attr("aria-describedby")||"").split(/\s+/);s.push(i),e.data("ui-tooltip-id",i).attr("aria-describedby",t.trim(s.join(" ")))}function i(e){var i=e.data("ui-tooltip-id"),s=(e.attr("aria-describedby")||"").split(/\s+/),n=t.inArray(i,s);-1!==n&&s.splice(n,1),e.removeData("ui-tooltip-id"),s=t.trim(s.join(" ")),s?e.attr("aria-describedby",s):e.removeAttr("aria-describedby")}var s=0;t.widget("ui.tooltip",{version:"1.10.3",options:{content:function(){var e=t(this).attr("title")||"";return t("").text(e).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,tooltipClass:null,track:!1,close:null,open:null},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.options.disabled&&this._disable()},_setOption:function(e,i){var s=this;return"disabled"===e?(this[i?"_disable":"_enable"](),this.options[e]=i,void 0):(this._super(e,i),"content"===e&&t.each(this.tooltips,function(t,e){s._updateContent(e)}),void 0)},_disable:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur");n.target=n.currentTarget=s[0],e.close(n,!0)}),this.element.find(this.options.items).addBack().each(function(){var e=t(this);e.is("[title]")&&e.data("ui-tooltip-title",e.attr("title")).attr("title","")})},_enable:function(){this.element.find(this.options.items).addBack().each(function(){var e=t(this);e.data("ui-tooltip-title")&&e.attr("title",e.data("ui-tooltip-title"))})},open:function(e){var i=this,s=t(e?e.target:this.element).closest(this.options.items);s.length&&!s.data("ui-tooltip-id")&&(s.attr("title")&&s.data("ui-tooltip-title",s.attr("title")),s.data("ui-tooltip-open",!0),e&&"mouseover"===e.type&&s.parents().each(function(){var e,s=t(this);s.data("ui-tooltip-open")&&(e=t.Event("blur"),e.target=e.currentTarget=this,i.close(e,!0)),s.attr("title")&&(s.uniqueId(),i.parents[this.id]={element:this,title:s.attr("title")},s.attr("title",""))}),this._updateContent(s,e))},_updateContent:function(t,e){var i,s=this.options.content,n=this,o=e?e.type:null;return"string"==typeof s?this._open(e,t,s):(i=s.call(t[0],function(i){t.data("ui-tooltip-open")&&n._delay(function(){e&&(e.type=o),this._open(e,t,i)})}),i&&this._open(e,t,i),void 0)},_open:function(i,s,n){function o(t){l.of=t,a.is(":hidden")||a.position(l)}var a,r,h,l=t.extend({},this.options.position); +if(n){if(a=this._find(s),a.length)return a.find(".ui-tooltip-content").html(n),void 0;s.is("[title]")&&(i&&"mouseover"===i.type?s.attr("title",""):s.removeAttr("title")),a=this._tooltip(s),e(s,a.attr("id")),a.find(".ui-tooltip-content").html(n),this.options.track&&i&&/^mouse/.test(i.type)?(this._on(this.document,{mousemove:o}),o(i)):a.position(t.extend({of:s},this.options.position)),a.hide(),this._show(a,this.options.show),this.options.show&&this.options.show.delay&&(h=this.delayedShow=setInterval(function(){a.is(":visible")&&(o(l.of),clearInterval(h))},t.fx.interval)),this._trigger("open",i,{tooltip:a}),r={keyup:function(e){if(e.keyCode===t.ui.keyCode.ESCAPE){var i=t.Event(e);i.currentTarget=s[0],this.close(i,!0)}},remove:function(){this._removeTooltip(a)}},i&&"mouseover"!==i.type||(r.mouseleave="close"),i&&"focusin"!==i.type||(r.focusout="close"),this._on(!0,s,r)}},close:function(e){var s=this,n=t(e?e.currentTarget:this.element),o=this._find(n);this.closing||(clearInterval(this.delayedShow),n.data("ui-tooltip-title")&&n.attr("title",n.data("ui-tooltip-title")),i(n),o.stop(!0),this._hide(o,this.options.hide,function(){s._removeTooltip(t(this))}),n.removeData("ui-tooltip-open"),this._off(n,"mouseleave focusout keyup"),n[0]!==this.element[0]&&this._off(n,"remove"),this._off(this.document,"mousemove"),e&&"mouseleave"===e.type&&t.each(this.parents,function(e,i){t(i.element).attr("title",i.title),delete s.parents[e]}),this.closing=!0,this._trigger("close",e,{tooltip:o}),this.closing=!1)},_tooltip:function(e){var i="ui-tooltip-"+s++,n=t("
").attr({id:i,role:"tooltip"}).addClass("ui-tooltip ui-widget ui-corner-all ui-widget-content "+(this.options.tooltipClass||""));return t("
").addClass("ui-tooltip-content").appendTo(n),n.appendTo(this.document[0].body),this.tooltips[i]=e,n},_find:function(e){var i=e.data("ui-tooltip-id");return i?t("#"+i):t()},_removeTooltip:function(t){t.remove(),delete this.tooltips[t.attr("id")]},_destroy:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur");n.target=n.currentTarget=s[0],e.close(n,!0),t("#"+i).remove(),s.data("ui-tooltip-title")&&(s.attr("title",s.data("ui-tooltip-title")),s.removeData("ui-tooltip-title"))})}})}(jQuery); \ No newline at end of file diff --git a/media/js/ushahidi.js b/media/js/ushahidi.js old mode 100644 new mode 100755 index 2be969fd93..9ca03e9140 --- a/media/js/ushahidi.js +++ b/media/js/ushahidi.js @@ -6,7 +6,7 @@ * @requires media/js/OpenLayers.js */ (function(){ - + /** * Namespace: Ushahidi * The Ushahidi object provides a namespace for all things Ushahidi @@ -62,6 +62,12 @@ */ baseURL: '', + /** + * APIProperty: lang + * Language strings + */ + lang: {}, + /** * APIProperty: geoJSONStyle * Default styling for GeoJSON data @@ -81,7 +87,7 @@ fontWeight: "${fontweight}", fontColor: "#ffffff", fontSize: "${fontsize}", - title: "${title}" + title: "${title}" }, { context: { @@ -134,7 +140,7 @@ } }, radius: function(feature) { - if (typeof(feature.attributes.radius) != 'undefined' && + if (typeof(feature.attributes.radius) != 'undefined' && feature.attributes.radius != '') { return feature.attributes.radius; } else { @@ -174,7 +180,7 @@ } }, strokeWidth: function(feature) { - if ( typeof(feature.attributes.strokewidth) != 'undefined' && + if ( typeof(feature.attributes.strokewidth) != 'undefined' && feature.attributes.strokewidth != '') { return feature.attributes.strokewidth; @@ -216,7 +222,7 @@ return "#" + feature.attributes.color; }, strokeColor: function(feature) { - if ( typeof(feature.attributes.strokecolor) != 'undefined' && + if ( typeof(feature.attributes.strokecolor) != 'undefined' && feature.attributes.strokecolor != '') { return "#"+feature.attributes.strokecolor; @@ -228,7 +234,7 @@ }, icon: function(feature) { feature_icon = feature.attributes.icon; - + return (feature_icon !== "") ? feature_icon : ""; }, clusterCount: function(feature) { @@ -248,7 +254,7 @@ }, opacity: function(feature) { feature_icon = feature.attributes.icon; - if (typeof(feature.attributes.opacity) != 'undefined' && + if (typeof(feature.attributes.opacity) != 'undefined' && feature.attributes.opacity != '') { return feature.attributes.opacity @@ -263,7 +269,7 @@ } }, strokeOpacity: function(feature) { - if(typeof(feature.attributes.strokeopacity) != 'undefined' && + if(typeof(feature.attributes.strokeopacity) != 'undefined' && feature.attributes.strokeopacity != '') { return feature.attributes.strokeopacity; @@ -307,7 +313,7 @@ Ushahidi.Map = function(div, config) { // Internal registry for the marker layers this._registry = []; - + // Internal list of layers to keep at the top this._onTop = []; @@ -382,12 +388,12 @@ controls: [], projection: Ushahidi.proj_900913, 'displayProjection': Ushahidi.proj_4326, - maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, + maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, 20037508.34, 20037508.34), maxResolution: 156543.0339, // Shrink the popup padding so popups don't land under zoom control paddingForPopups: new OpenLayers.Bounds(40,15,15,15), - eventListeners: { + eventListeners: { // Trigger keepOnTop fn whenever new layers are added addlayer: this.keepOnTop, scope: this @@ -449,8 +455,8 @@ this.register("deletelayer", this.deleteLayer, this); this.register("baselayerchanged", this.updateBaseLayer, this); this.register("mapcenterchanged", this.updateMapCenter, this); - - // Pre-load the background image for the popup so that it is + + // Pre-load the background image for the popup so that it is // fetched from the cache when when popup is displayed var popupBgImage = new Image(); popupBgImage.src = OpenLayers.Util.getImagesLocation() + 'cloud-popup-relative.png'; @@ -462,7 +468,7 @@ * APIMethod addLayers * * Parameters: - * layerType - {String} Type of marker to be added and could be one of the following + * layerType - {String} Type of marker to be added and could be one of the following * (Ushahidi.REPORTS, Ushahidi.KML, Ushahidi.SHARES. Ushahidi.DEFAULT) * options - {Object} Optional object key/value pairs of the markers to be added to the map * @@ -475,26 +481,26 @@ * layer (Ushahidi.DEFAULT). The default value is true * transform - {Boolean} When true, transforms the featur geometry to spherical mercator * The default value is false - * features - {Array(OpenLayers.Feature.Vector)} Features to add to the layer + * features - {Array(OpenLayers.Feature.Vector)} Features to add to the layer * When the features ar specified, the protocol property is omitted from the * options passed to the layer constructor. The features property is used instead * * save - {bool} Whether to save the layer in the internal registry of Ushahidi.Map This * parameter should be set to true, if the layer being added is new so as to ensure - * that it is redrawn when the map is zoomed in/out or the report filters are updated + * that it is redrawn when the map is zoomed in/out or the report filters are updated * keepOnTop - {bool} Whether to keep this layer above others. */ Ushahidi.Map.prototype.addLayer = function(layerType, options, save, keepOnTop) { // Default markers layer if (layerType == Ushahidi.DEFAULT) { this.deleteLayer("default"); - + var markers = null; - + if (options == undefined) { options = {}; } - + // Check for the style map if (options.styleMap != undefined) { @@ -523,7 +529,7 @@ markers.addMarker(new OpenLayers.Marker(point)); point.transform(Ushahidi.proj_900913, Ushahidi.proj_4326); - + var coords = {latitude: point.lat, longitude: point.lon}; context.trigger("markerpositionchanged", coords); @@ -538,7 +544,7 @@ return this; } - + // Setup default protocol format var protocolFormat = new OpenLayers.Format.GeoJSON(); // Switch protocol format if layer is KML @@ -643,10 +649,10 @@ // Create the layer var layer = new OpenLayers.Layer.Vector(options.name, layerOptions); - + // Store context for callbacks var context = this; - + // Hide the layer until its loaded // only delete the old layer on loadend layer.display(false); @@ -677,7 +683,7 @@ this._olMap.addControl(this._selectControl); this._selectControl.activate(); } - + // Bind popup events for select/unselect layer.events.on({ "featureselected": this.onFeatureSelect, @@ -687,7 +693,7 @@ } // Register display layer fn to run on load end layer.events.register('loadend', this, displayLayer); - + // If features were passed in layer options // Add features to layer and register display layer on layer added if (options.features !== undefined && options.features.length > 0) { @@ -815,37 +821,41 @@ image += "
"; } + var stringLink = event.feature.attributes.name; + var objLink = $(stringLink); + objLink.attr('target','_blank') + var content = "
"; + content += Ushahidi.lang.zoom_out+"
"; + content += "
"; if (content.search("" + content.replace(/ + * @package Ushahidi - http://source.ushahididev.com + * @module Actionable Controller + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) +* +*/ +// Manually require the admin reports controller - so we don't get the frontend controller instead +require_once(Kohana::find_file('controllers', 'admin/reports')); + +class Actionable_Controller extends Reports_Controller { + + //public $auto_render = FALSE; + + public function __construct() + { + parent::__construct(); + + $this->template->this_page = 'actionable'; + } + + public function index($page = 1) + { + // If user doesn't have access, redirect to dashboard + if ( ! admin::permissions($this->user, "reports_view")) + { + url::redirect(url::site().'admin/dashboard'); + } + + // Set status + //$this->template->content->status = $status; + $status = "0"; + if ( !empty($_GET['status'])) + { + $status = $_GET['status']; + + if (strtolower($status) == 'action') + { + //$actionable_filter = 'actionable = 1 AND action_taken = 0'; + //$this->params['actionable'] = 'i.id IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable` WHERE actionable = 1 AND action_taken = 0)'; + $actionable_filter = 'actionable = 1'; + $this->params['actionable'] = 'i.id IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable` WHERE actionable = 1)'; + } + elseif (strtolower($status) == 'urgent') + { + //$actionable_filter = 'action_urgent = 1 AND action_taken = 0'; + //$this->params['actionable'] = 'i.id IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable` WHERE action_urgent = 1 AND action_taken = 0)'; + $actionable_filter = 'action_urgent = 1'; + $this->params['actionable'] = 'i.id IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable` WHERE action_urgent = 1)'; + } + elseif (strtolower($status) == 'taken') + { + $actionable_filter = 'action_taken = 1'; + $this->params['actionable'] = 'i.id IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable` WHERE action_taken = 1)'; + } + elseif (strtolower($status) == 'closed') + { + $actionable_filter = 'action_closed = 1'; + $this->params['actionable'] = 'i.id IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable` WHERE action_closed = 1)'; + } + elseif (strtolower($status) == 'na') + { + $actionable_filter = 'actionable = 0 AND action_taken = 0'; + $this->params['actionable'] = '( + i.id IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable` WHERE actionable = 0 AND action_taken = 0) OR + i.id NOT IN (SELECT DISTINCT incident_id FROM `'.Kohana::config('database.default.table_prefix').'actionable`) + )'; + } + else + { + $status = "0"; + } + } + + parent::index($page); + + $this->template->content->status = $status; + + // Grab all actionable entries at once + $factory = ORM::factory('actionable'); + if (isset($actionable_filter)) $factory->where($actionable_filter); + + $actionables = array(); + foreach ($factory->find_all() as $actionable) { + $actionables[$actionable->incident_id] = $actionable; + } + + $incidents = array(); + foreach ($this->template->content->incidents as $k => $incident) + { + if (isset($actionables[$incident->incident_id])) + { + $incident->actionable = $actionables[$incident->incident_id]->status(); + } + $incidents[] = $incident; + } + $this->template->content->incidents = $incidents; + + // Set the filename + $this->template->content->set_filename('admin/actionable'); + //$this->template->render(); + } +} diff --git a/plugins/actionable/css/actionable.css b/plugins/actionable/css/actionable.css new file mode 100755 index 0000000000..2b8063ff47 --- /dev/null +++ b/plugins/actionable/css/actionable.css @@ -0,0 +1,6 @@ +div.action-taken { clear: both; margin: 1em 0; padding: 1em; background: #fffbe0; border: solid 2px #FFF19F; line-height: 1.3em; } +#action-taken-badge { font-size: 1.2em; background: #009200; font-weight: bold; color: #fff; padding: 0.25em 0.5em; margin: 0 1em 0 0; float: left; } +#actionable-badge { font-size: 1.2em; background: #ee6600; font-weight: bold; color: #fff; padding: 0.25em 0.5em; margin: 0 1em 0 0; float: left; } +#action-urgent-badge { font-size: 1.2em; background: #ee0000; font-weight: bold; color: #fff; padding: 0.25em 0.5em; margin: 0 1em 0 0; float: left; } +#action-summary { float:left; padding: 0.25em 0.5em; clear: both;} +#action-closed-badge { font-size: 1.2em; background: /*#00ee00*/#5C5C5C; font-weight: bold; color: #fff; padding: 0.25em 0.5em; margin: 0 1em 0 0; float: left; } diff --git a/plugins/actionable/hooks/actionable.php b/plugins/actionable/hooks/actionable.php new file mode 100755 index 0000000000..e7c766f228 --- /dev/null +++ b/plugins/actionable/hooks/actionable.php @@ -0,0 +1,600 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ + +class actionable { + + private $media_filter; + private $media_values; + + /** + * Registers the main event add method + */ + public function __construct() + { + $this->actionable = ""; + $this->action_urgent = ""; + $this->action_taken = ""; + $this->action_summary = ""; + $this->action_closed = ""; + $this->media_values = array( + 101 => Kohana::lang('ui_main.all'), + 102 => Kohana::lang('actionable.actionable'), + 103 => Kohana::lang('actionable.urgent'), + 104 => Kohana::lang('actionable.action_taken'), + 105 => Kohana::lang('actionable.action_closed') + ); + // Hook into routing + Event::add('system.pre_controller', array($this, 'add')); + } + + /** + * Adds all the events to the main Ushahidi application + */ + public function add() + { + // Add a Sub-Nav Link + Event::add('ushahidi_action.nav_admin_reports', array($this, '_report_link')); + // Only add the events if we are on that controller + if (Router::$controller == 'reports') + { + switch (Router::$method) + { + // Hook into the Report Add/Edit Form in Admin + case 'edit': + // Hook into the form itself + Event::add('ushahidi_action.report_form_admin', array($this, '_report_form')); + // Hook into the report_submit_admin (post_POST) event right before saving + // Event::add('ushahidi_action.report_submit_admin', array($this, '_report_validate')); + // Hook into the report_edit (post_SAVE) event + Event::add('ushahidi_action.report_edit', array($this, '_report_form_submit')); + break; + + // Hook into the Report view (front end) + case 'view': + plugin::add_stylesheet('actionable/css/actionable'); + Event::add('ushahidi_action.report_meta', array($this, '_report_view')); + break; + + case 'index': + plugin::add_stylesheet('actionable/css/actionable'); + Event::add('ushahidi_action.report_filters_ui', array($this, '_report_filters_ui')); + Event::add('ushahidi_action.report_js_filterReportsAction', array($this, '_report_js_filterReportsAction')); + Event::add('ushahidi_action.report_js_filterReportsActionRemove', array($this, '_report_js_filterReportsActionRemove')); + Event::add('ushahidi_action.report_js_keyToFilter', array($this, '_report_js_keyToFilter')); + break; + + case 'fetch_reports': + Event::add('ushahidi_filter.fetch_incidents_set_params', array($this, '_fetch_incidents_set_params')); + break; + } + } + elseif (Router::$controller == 'feed') + { + // Add Actionable Tag to RSS Feed + Event::add('ushahidi_action.feed_rss_item', array($this, '_feed_rss')); + } + elseif (Router::$controller == 'reports') + { + Event::add('ushahidi_action.map_main_filters', array($this, '_map_main_filters')); + } + elseif (Router::$controller == 'main') + { + Event::add('ushahidi_action.map_main_filters', array($this, '_map_main_filters')); + } + elseif (Router::$controller == 'json' OR Router::$controller == 'bigmap_json') + { + Event::add('ushahidi_filter.fetch_incidents_set_params', array($this, '_fetch_incidents_set_params')); + Event::add('ushahidi_filter.json_index_features', array($this, '_json_index_features')); + + // Never cluster actionable json + if (Router::$method == 'cluster' AND $this->_check_media_type()) + { + Router::$method = 'index'; + } + } elseif(Router::$controller == 'export_reports' && Router::$method == 'index') { + Event::add('ushahidi_filter.fetch_incidents_set_params', array($this, '_fetch_incidents_set_params_export')); + } + } + + /** + * Add Actionable Form input to the Report Submit Form + */ + public function _report_form() + { + // Load the View + $form = View::factory('actionable_form'); + // Get the ID of the Incident (Report) + $id = Event::$data; + + if ($id) + { + // Do We have an Existing Actionable Item for this Report? + $action_item = ORM::factory('actionable') + ->where('incident_id', $id) + ->find(); + if ($action_item->loaded) + { + $this->actionable = $action_item->actionable; + $this->action_urgent = $action_item->action_urgent; + $this->action_taken = $action_item->action_taken; + $this->action_summary = $action_item->action_summary; + $this->action_closed = $action_item->action_closed; + } + } + + $form->actionable = $this->actionable; + $form->action_urgent = $this->action_urgent; + $form->action_taken = $this->action_taken; + $form->action_summary = $this->action_summary; + $form->action_closed = $this->action_closed; + $form->render(TRUE); + } + + /** + * Handle Form Submission and Save Data + */ + public function _report_form_submit() + { + $incident = Event::$data; + + if ($_POST) + { + $action_item = ORM::factory('actionable') + ->where('incident_id', $incident->id) + ->find(); + $action_item->incident_id = $incident->id; + $action_item->actionable = isset($_POST['actionable']) ? + $_POST['actionable'] : ""; + $action_item->action_urgent = isset($_POST['action_urgent']) ? + $_POST['action_urgent'] : ""; + $action_item->action_taken = isset($_POST['action_taken']) ? + $_POST['action_taken'] : ""; + $action_item->action_summary = $_POST['action_summary']; + $action_item->action_closed = isset($_POST['action_closed']) ? + $_POST['action_closed'] : ""; + $action_item->save(); + + } + } + + /** + * Render the Action Taken Information to the Report + * on the front end + */ + public function _report_view() + { + $incident_id = Event::$data; + if ($incident_id) + { + $actionable = ORM::factory('actionable') + ->where('incident_id', $incident_id) + ->find(); + if ($actionable->loaded) + { + if ($actionable->actionable) + { + $report = View::factory('actionable_report'); + $report->actionable = $actionable->actionable; + $report->action_urgent = $actionable->action_urgent; + $report->action_taken = $actionable->action_taken; + $report->action_summary = $actionable->action_summary; + $report->action_closed = $actionable->action_closed; + $report->render(TRUE); + } + } + } + } + + /* + * Add actionable link to reports admin tabs + **/ + public function _report_link() + { + $this_sub_page = Event::$data; + echo ($this_sub_page == "actionable") ? Kohana::lang('actionable.actionable') : "".Kohana::lang('actionable.actionable').""; + } + + /** + * Add the tag to the RSS feed + */ + public function _feed_rss() + { + $incident_id = Event::$data; + if ($incident_id) + { + $action_item = ORM::factory('actionable') + ->where('incident_id', $incident_id) + ->find(); + if ($action_item->loaded) + { + if ($action_item->actionable == 1) { + echo "YES\n"; + } else { + echo "NO\n"; + + } + if ($action_item->action_urgent == 1) { + echo "YES\n"; + } else { + echo "NO\n"; + } + + if ($action_item->action_taken) { + echo "YES\n"; + } else { + echo "NO\n"; + } + + if ($action_item->action_closed == 1) { + echo "YES\n"; + } else { + echo "NO\n"; + } + + } + else + { + echo "NO\n"; + echo "NO\n"; + echo "NO\n"; + echo "NO\n"; + } + } + } + + /* + * Add actionable filters on main map + */ + public function _map_main_filters() + { + echo '

'.Kohana::lang('actionable.actionable').'

    '; + foreach ($this->media_values as $k => $val) { + echo "
  • $val
  • "; + } + echo '
'; + } + + /* + * Add appropriate UI for reports page filter + */ + public function _report_filters_ui() + { + $filter = View::factory('actionable_filter'); + $filter->render(TRUE); + } + + /* + * Add appropriate filter logic for reports page + */ + public function _report_js_filterReportsAction() + { + $filter_js = View::factory('actionable_filter_js'); + $filter_js->render(TRUE); + } + + /* + * Remove appropriate filter logic for reports page + */ + public function _report_js_filterReportsActionRemove() + { + $filter_js = View::factory('actionable_filter_remove_js'); + $filter_js->render(TRUE); + } + + /* + * Remove appropriate filter logic for reports page + */ + public function _report_js_keyToFilter() + { + $filter_js = View::factory('actionable_filter_key_to_filter_js'); + $filter_js->render(TRUE); + } + + /* + * Perform the filtering of reports + *//* + public function _fetch_incidents_set_params($params) + { + echo '
';
+		var_dump($params);
+		die();
+	}*/
+
+		/*
+	 * Filter incidents for main map based on actionable status
+	 */
+	public function _fetch_incidents_set_params_export()
+	{
+		$params = Event::$data;
+
+		// ---------- BEGIN HACKY IMPLEMENTATION (used on homepage map)
+		if(!isset($_GET['plugin_actionable_filter']) OR !is_array($_GET['plugin_actionable_filter'])) {
+			if(isset($_GET['plugin_actionable_filter']) && !is_array($_GET['plugin_actionable_filter'])) {
+				// Fetch the URL data into a local variable
+				$url_data = $_GET;
+			
+				// Split selected parameters on ","
+				// For simplicity, always turn them into arrays even theres just one value
+				$exclude_params = array('plugin_actionable_filter');
+				foreach ($url_data as $key => $value)
+				{
+					if (in_array($key, $exclude_params) AND ! is_array($value))
+					{
+						$url_data[$key] = explode(",", $value);
+					}
+				}
+				
+			} else {
+				// If we're doing the hacky fake media trick, run this.
+				// Look for fake media type
+				if ($filters = $this->_check_media_type())
+				{
+					// Remove media type filter based on fake actionable media type
+					// @todo make this work with normal media filters too
+					$sql = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'media WHERE media_type IN ('.implode(',',$this->_check_media_type()).'))';
+					$key = array_search($sql, $params);
+	
+					if ($key !== FALSE)
+					{
+						unset($params[$key]);
+					}
+	
+					$actionable_sql = array();
+					foreach ($filters as $filter)
+					{
+						// Cast the $filter to int just in case
+						$filter = intval($filter);
+	
+						// Add filter based on actionable status.
+						switch ($filter)
+						{
+							case '102':
+								$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+									WHERE actionable = 1 AND action_closed = 0)';
+								break;
+							case '103':
+								$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+									WHERE action_urgent = 1 AND action_closed = 0)';
+								break;
+							case '104':
+								$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+									WHERE action_taken = 1 AND action_closed = 0)';
+								break;
+							case '105':
+								$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+									WHERE action_closed = 1)';
+								break;
+						}
+					}
+	
+					if (count($actionable_sql) > 0)
+					{
+						$actionable_sql = '('.implode(' OR ',$actionable_sql).')';
+						$params[] = $actionable_sql;
+					}
+				}
+			Event::$data = $params;
+			return;
+			}
+		
+		}
+		// ---------- END HACKY IMPLEMENTATION (used on homepage map)
+
+		// This is the Non-hacky way of filtering reports
+
+		$actionable_ids = isset($url_data['plugin_actionable_filter']) ? $url_data['plugin_actionable_filter'] : $_GET['plugin_actionable_filter']; 
+		//$actionable_ids = $_GET['plugin_actionable_filter'];
+		$actionable_sql = array();
+		foreach($actionable_ids AS $id) {
+			switch ($id) {
+				case '5': //NotActionable
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE actionable = 0 AND action_closed = 0)';
+					break;
+				case '1': //Actionable
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE actionable = 1 AND action_closed = 0)';
+					break;
+				case '2': //Urgent
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE action_urgent = 1 AND action_closed = 0)';
+					break;
+				case '3': //Closed
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE action_closed = 1)';
+					break;
+				case '4': //ActionTaken
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE action_taken = 1 AND action_closed = 0)';
+					break;
+			}
+		}
+		
+		if (count($actionable_sql) > 0)
+		{
+			$actionable_sql = '('.implode(' OR ',$actionable_sql).')';	
+			$params[] = $actionable_sql;			
+		}
+
+		Event::$data = $params;
+	}
+
+	/*
+	 * Filter incidents for main map based on actionable status
+	 */
+	public function _fetch_incidents_set_params()
+	{
+		$params = Event::$data;
+		// ---------- BEGIN HACKY IMPLEMENTATION (used on homepage map)
+		if(!isset($_GET['plugin_actionable_filter']) OR !is_array($_GET['plugin_actionable_filter'])) {
+			// If we're doing the hacky fake media trick, run this.
+			// Look for fake media type
+			if ($filters = $this->_check_media_type())
+			{
+				// Remove media type filter based on fake actionable media type
+				// @todo make this work with normal media filters too
+				$sql = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'media WHERE media_type IN ('.implode(',',$this->_check_media_type()).'))';
+				$key = array_search($sql, $params);
+
+				if ($key !== FALSE)
+				{
+					unset($params[$key]);
+				}
+
+				$actionable_sql = array();
+				foreach ($filters as $filter)
+				{
+					// Cast the $filter to int just in case
+					$filter = intval($filter);
+
+					// Add filter based on actionable status.
+					switch ($filter)
+					{
+						case '102':
+							$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+								WHERE actionable = 1 AND action_closed = 0)';
+							break;
+						case '103':
+							$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+								WHERE action_urgent = 1 AND action_closed = 0)';
+							break;
+						case '104':
+							$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+								WHERE action_taken = 1 AND action_closed = 0)';
+							break;
+						case '105':
+							$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+								WHERE action_closed = 1)';
+							break;
+					}
+				}
+
+				if (count($actionable_sql) > 0)
+				{
+					$actionable_sql = '('.implode(' OR ',$actionable_sql).')';
+					$params[] = $actionable_sql;
+				}
+			}
+			Event::$data = $params;
+			return;
+		}
+		// ---------- END HACKY IMPLEMENTATION (used on homepage map)
+
+		// This is the Non-hacky way of filtering reports
+
+		$actionable_ids = $_GET['plugin_actionable_filter'];
+		$actionable_sql = array();
+		
+		foreach($actionable_ids AS $id) {
+			
+			switch ($id) {
+				case '5': //NotActionable
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE actionable = 0 AND action_closed = 0)';
+					break;
+				case '1': //Actionable
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE actionable = 1 AND action_closed = 0)';
+					break;
+				case '2': //Urgent
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE action_urgent = 1 AND action_closed = 0)';
+					break;
+				case '3': //Closed
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE action_closed = 1)';
+					break;
+				case '4': //ActionTaken
+					$actionable_sql[] = 'i.id IN (SELECT DISTINCT incident_id FROM '.Kohana::config('database.default.table_prefix').'actionable
+						WHERE action_taken = 1 AND action_closed = 0)';
+					break;
+			}
+		}
+
+		if (count($actionable_sql) > 0)
+		{
+			$actionable_sql = '('.implode(' OR ',$actionable_sql).')';
+			$params[] = $actionable_sql;
+		}
+
+		Event::$data = $params;
+	}
+
+	/*
+	 * Customise feature display based on actionable status
+	 */
+	public function _json_index_features()
+	{
+		if ($this->_check_media_type())
+		{
+			$features = Event::$data;
+			$results = ORM::Factory('actionable')->find_all()->as_array();
+
+			$actionables = array();
+			foreach($results as $actionable)
+			{
+				$actionables[$actionable->incident_id] = $actionable;
+			}
+
+			foreach($features as $key => $feature)
+			{
+				$incident_id = $feature['properties']['id'];
+				if ($actionables[$incident_id])
+				{
+					$feature['properties']['actionable'] = $actionables[$incident_id]->status();
+					$feature['properties']['strokecolor'] = $actionables[$incident_id]->color();
+					$feature['properties']['strokeopacity'] = 0.5;
+					$feature['properties']['strokewidth'] = 5;
+					$feature['properties']['radius'] = Kohana::config('map.marker_radius')*2.5;
+					$feature['properties']['icon'] = '';
+					$features[$key] = $feature;
+				}
+			}
+
+			Event::$data = $features;
+		}
+	}
+
+	/*
+	 * Look for fake media types in GET param
+	 */
+	private function _check_media_type()
+	{
+		// Parse the GET param if we haven't yet.
+		if (! isset($this->media_filter)) {
+			$this->media_filter = array();
+			if (isset($_GET['m']))
+			{
+				$this->media_filter = $_GET['m'];
+				if (! is_array($this->media_filter))
+				{
+					$this->media_filter = explode(',',$this->media_filter);
+				}
+				// Keep only the
+				$this->media_filter = array_intersect(array_keys($this->media_values), $this->media_filter);
+			}
+		}
+
+		// Return filters, if any
+		if (count($this->media_filter) > 0)
+		{
+			return $this->media_filter;
+		}
+
+		return FALSE;
+	}
+
+}
+
+new actionable;
diff --git a/plugins/actionable/i18n/en_US/actionable.php b/plugins/actionable/i18n/en_US/actionable.php
new file mode 100755
index 0000000000..b96ff7651f
--- /dev/null
+++ b/plugins/actionable/i18n/en_US/actionable.php
@@ -0,0 +1,14 @@
+ 'Actionable',
+		'not_actionable' => 'Not actionable',
+		'urgent' => 'Urgent',
+		'action_taken' => 'Action taken',
+		'action_status_description' => 'Does this report need action?',
+		'action_summary_description' => 'Has action been taken? Summarise action taken or required on this report',
+		'summary' => 'Summary',
+		'action_needed' => 'Action needed',
+		'action_urgent' => 'Urgent action needed',
+		'action_closed' => 'Closed'
+	);
+?>
diff --git a/plugins/actionable/i18n/es_AR/actionable.php b/plugins/actionable/i18n/es_AR/actionable.php
new file mode 100755
index 0000000000..103b6ca766
--- /dev/null
+++ b/plugins/actionable/i18n/es_AR/actionable.php
@@ -0,0 +1,14 @@
+ 'Procesable',
+		'not_actionable' => 'No procesable',
+		'urgent' => 'Urgente',
+		'action_taken' => 'Acción tomada',
+		'action_status_description' => 'Este reporte necesita alguna acción?',
+		'action_summary_description' => 'Ha sido tomada alguna acción? Resumir la acción tomada o requerida',
+		'summary' => 'Resumen',
+		'action_needed' => 'Acción necesaria',
+		'action_urgent' => 'Es necesario actuar urgentemente',
+		'action_closed' => 'Cerrado'
+	);
+?>
diff --git a/plugins/actionable/i18n/fr_FR/actionable.php b/plugins/actionable/i18n/fr_FR/actionable.php
new file mode 100755
index 0000000000..0727ce4362
--- /dev/null
+++ b/plugins/actionable/i18n/fr_FR/actionable.php
@@ -0,0 +1,14 @@
+ 'Intervention nécessaire',
+		'not_actionable' => 'Ne requiert pas d’intervention',
+		'urgent' => 'Urgent',
+		'action_taken' => 'Action entreprise',
+		'action_status_description' => 'Vérifier si les répondants peuvent intervenir sur la base de ces informations',
+		'action_summary_description' => 'Vérifier si l\'action aété entreprise et résumer les mesures retenues',
+		//'summary' => 'Summary',
+		'action_needed' => 'Requiert une intervention',
+		'action_urgent' => 'Requiert une urgent intervention',
+		'action_closed' => 'Fermee'
+	);
+?>
diff --git a/plugins/actionable/libraries/actionable_install.php b/plugins/actionable/libraries/actionable_install.php
new file mode 100755
index 0000000000..e39c8fc27e
--- /dev/null
+++ b/plugins/actionable/libraries/actionable_install.php
@@ -0,0 +1,54 @@
+ 
+ * @package    Ushahidi - http://source.ushahididev.com
+ * @module	   Actionable Installer
+ * @copyright  Ushahidi - http://www.ushahidi.com
+ * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
+ */
+
+class Actionable_Install {
+
+	/**
+	 * Constructor to load the shared database library
+	 */
+	public function __construct()
+	{
+		$this->db = Database::instance();
+	}
+
+	/**
+	 * Creates the required database tables for the actionable plugin
+	 */
+	public function run_install()
+	{
+		// Create the database tables.
+		// Also include table_prefix in name
+		$this->db->query('
+			CREATE TABLE IF NOT EXISTS `'.Kohana::config('database.default.table_prefix').'actionable` (
+				  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+				  `incident_id` int(11) NOT NULL COMMENT \'incident_id of the new report that is created\',
+				  `actionable` tinyint(4) NOT NULL DEFAULT \'0\' COMMENT \'Is a report actionable? 0=Unactionable 1=Actionable 2=Actionable+Urgent\',
+				  `action_urgent` tinyint(4) NOT NULL DEFAULT \'0\' COMMENT \'Is this report urgent? 0=No 1=Yes\',
+				  `action_taken` tinyint(4) NOT NULL DEFAULT \'0\' COMMENT \'Has an action been taken yet?\',
+				  `action_closed` tinyint(4) NOT NULL DEFAULT \'0\' COMMENT \'Has this action been closed?\',
+				  `action_summary` varchar(255) DEFAULT NULL COMMENT \'What action was taken\',
+				  PRIMARY KEY (`id`)
+				) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1');
+	}
+
+	/**
+	 * Deletes the database tables for the actionable module
+	 */
+	public function uninstall()
+	{
+		$this->db->query('DROP TABLE `'.Kohana::config('database.default.table_prefix').'actionable`;');
+	}
+  
+}
\ No newline at end of file
diff --git a/plugins/actionable/models/actionable.php b/plugins/actionable/models/actionable.php
new file mode 100755
index 0000000000..b804ff5f03
--- /dev/null
+++ b/plugins/actionable/models/actionable.php
@@ -0,0 +1,66 @@
+ 
+ * @package    Ushahidi - http://source.ushahididev.com
+ * @module     Actionable Model  
+ * @copyright  Ushahidi - http://www.ushahidi.com
+ * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
+ */
+
+class Actionable_Model extends ORM
+{
+	protected $belongs_to = array('incident');
+	
+	// Database table name
+	protected $table_name = 'actionable';
+	
+	public function status() {
+		if ($this->actionable)
+		{
+			if ($this->action_taken)
+			{
+				return Kohana::lang('actionable.action_taken');
+			}
+			elseif ($this->action_urgent)
+			{
+				return Kohana::lang('actionable.action_urgent');
+			}
+			else
+			{
+				return Kohana::lang('actionable.actionable');
+			}
+		}
+		else
+		{
+			return Kohana::lang('actionable.not_actionable');
+		}
+	}
+	
+	public function color() {
+		if ($this->actionable)
+		{
+			if ($this->action_taken)
+			{
+				return '33ff33';
+			}
+			elseif ($this->action_urgent)
+			{
+				return 'ff0000';
+			}
+			else
+			{
+				return 'ffaa00';
+			}
+		}
+		else
+		{
+			return 'aaaaaa';
+		}
+	}
+}
diff --git a/plugins/actionable/readme.txt b/plugins/actionable/readme.txt
new file mode 100755
index 0000000000..d994d45f64
--- /dev/null
+++ b/plugins/actionable/readme.txt
@@ -0,0 +1,38 @@
+=== About ===
+name: Actionable
+website: http://www.ushahidi.com
+description: Mark a report as Actionable. If the report is actionable, include more details about who acted on it.
+version: 0.7
+requires: 2.0
+tested up to: 2.2
+author: David Kobia
+author website: http://www.dkfactor.com
+
+== Description ==
+Actionable Report Example:
+* Report that someone somewhere needs water
+
+== Installation ==
+1. Copy the entire /actionable/ directory into your /plugins/ directory.
+2. Activate the plugin.
+
+== Changelog ==
+
+0.7
+* Allow marking reports as 'urgent' 
+* Fix badges always showing 'action taken'
+* Fix css issue with categories overlapping badges
+* Add actionable admin view
+* Fix RSS extra fields
+
+0.6
+* Finished plugin
+* Fixed issue with installation
+* Fixed css issues
+* TODO form validation
+
+== Feature TODO ==
+
+* Actionable API feeds
+* Allow customising statuses
+* Change map item colour based on status
diff --git a/plugins/actionable/views/actionable_filter.php b/plugins/actionable/views/actionable_filter.php
new file mode 100755
index 0000000000..80d9a9b925
--- /dev/null
+++ b/plugins/actionable/views/actionable_filter.php
@@ -0,0 +1,40 @@
+

+ + + + +

+
+ +
diff --git a/plugins/actionable/views/actionable_filter_js.php b/plugins/actionable/views/actionable_filter_js.php new file mode 100755 index 0000000000..96afb09eee --- /dev/null +++ b/plugins/actionable/views/actionable_filter_js.php @@ -0,0 +1,9 @@ +var actionableStatus = []; +$.each($(".fl-actionable li a.selected"), function(i, item){ + statusVal = item.id.substring("filter_actionable_".length); + actionableStatus.push(statusVal); +}); +if (actionableStatus.length > 0) +{ + urlParameters["plugin_actionable_filter"] = actionableStatus; +} \ No newline at end of file diff --git a/plugins/actionable/views/actionable_filter_key_to_filter_js.php b/plugins/actionable/views/actionable_filter_key_to_filter_js.php new file mode 100755 index 0000000000..56a093f916 --- /dev/null +++ b/plugins/actionable/views/actionable_filter_key_to_filter_js.php @@ -0,0 +1 @@ +keyToFilter['plugin_actionable_filter'] = 'filter_actionable_'; \ No newline at end of file diff --git a/plugins/actionable/views/actionable_filter_remove_js.php b/plugins/actionable/views/actionable_filter_remove_js.php new file mode 100755 index 0000000000..e06f6f8a8a --- /dev/null +++ b/plugins/actionable/views/actionable_filter_remove_js.php @@ -0,0 +1,5 @@ +if (elementId.indexOf('filter_actionable_') != -1) +{ + verification = elementId.substring('filter_actionable_'.length); + removeParameterItem("plugin_actionable_filter", verification); +} \ No newline at end of file diff --git a/plugins/actionable/views/actionable_form.php b/plugins/actionable/views/actionable_form.php new file mode 100755 index 0000000000..3d6d5ab9d9 --- /dev/null +++ b/plugins/actionable/views/actionable_form.php @@ -0,0 +1,31 @@ +
+ +
+

+ : + +

+ + +
+ +
+ + + +
+

+ : + +

+ +
+ + + +
+ : +
+ + +
\ No newline at end of file diff --git a/plugins/actionable/views/actionable_report.php b/plugins/actionable/views/actionable_report.php new file mode 100755 index 0000000000..c45c5d7a0a --- /dev/null +++ b/plugins/actionable/views/actionable_report.php @@ -0,0 +1,28 @@ +
+ +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ : +
+ + +
\ No newline at end of file diff --git a/plugins/actionable/views/admin/actionable.php b/plugins/actionable/views/admin/actionable.php new file mode 100755 index 0000000000..83fd5ecf81 --- /dev/null +++ b/plugins/actionable/views/admin/actionable.php @@ -0,0 +1,274 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @module API Controller + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ +?> +
+

+ +

+ +
+ +
    +
  • + > +
  • +
  • >
  • +
  • >
  • +
  • >
  • +
  • >
  • +
  • >
  • +
+ +
+ +
+
+ + +
+

+
+
+ + + + + + + + + 'reportMain', 'name' => 'reportMain')); ?> + + +
+ + + + + + + + + + + + + + + + + + + + + incident_id; + $incident_title = strip_tags($incident->incident_title); + $incident_description = text::limit_chars(strip_tags($incident->incident_description), 150, "...", true); + $incident_date = $incident->incident_date; + $incident_date = date('Y-m-d', strtotime($incident->incident_date)); + + // Mode of submission... WEB/SMS/EMAIL? + $incident_mode = $incident->incident_mode; + + // Get the incident ORM + $incident_orm = ORM::factory('incident', $incident_id); + + // Get the person submitting the report + $incident_person = $incident_orm->incident_person; + + //XXX incident_Mode will be discontinued in favour of $service_id + if ($incident_mode == 1) // Submitted via WEB + { + $submit_mode = "WEB"; + // Who submitted the report? + if ($incident_person->loaded) + { + // Report was submitted by a visitor + $submit_by = $incident_person->person_first . " " . $incident_person->person_last; + } + else + { + if ($incident_orm->user_id) // Report Was Submitted By Administrator + { + $submit_by = $incident_orm->user->name; + } + else + { + $submit_by = Kohana::lang('ui_admin.unknown'); + } + } + } + elseif ($incident_mode == 2) // Submitted via SMS + { + $submit_mode = "SMS"; + $submit_by = $incident_orm->message->message_from; + } + elseif ($incident_mode == 3) // Submitted via Email + { + $submit_mode = "EMAIL"; + $submit_by = $incident_orm->message->message_from; + } + elseif ($incident_mode == 4) // Submitted via Twitter + { + $submit_mode = "TWITTER"; + $submit_by = $incident_orm->message->message_from; + } + + // Get the country name + $country_name = ($incident->country_id != 0) + ? $countries[$incident->country_id] + : $countries[Kohana::config('settings.default_country')]; + + + // Retrieve Incident Categories + $incident_category = ""; + foreach($incident_orm->incident_category as $category) + { + $incident_category .= $category->category->category_title ."  "; + } + + // Incident Status + $incident_approved = $incident->incident_active; + $incident_verified = $incident->incident_verified; + + // Get Edit Log + $edit_count = $incident_orm->verify->count(); + $edit_css = ($edit_count == 0) ? "post-edit-log-gray" : "post-edit-log-blue"; + + $edit_log = "" + . "
    "; + + foreach ($incident_orm->verify as $verify) + { + $edit_log .= "
  • ".Kohana::lang('ui_admin.edited_by')." ".$verify->user->name." : ".$verify->verified_date."
  • "; + } + $edit_log .= "
"; + + // Get Any Translations + $i = 1; + $incident_translation = "
" + . "
"; + + foreach ($incident_orm->incident_lang as $translation) + { + $incident_translation .= ""; + } + ?> + + + + + + + + +
+ +
+

+
+ + +
+

+ + + +

+

... + + + +

+
+
    +
  • : + location_name; ?>, +
  • +
  • +
+ + +
+
  • actionable) ? $incident->actionable : 'Not actionable'; ?>
+ +
+
+ +
+
+ +
+
+
diff --git a/plugins/analysis/controllers/admin/analysis.php b/plugins/analysis/controllers/admin/analysis.php new file mode 100755 index 0000000000..d370b76536 --- /dev/null +++ b/plugins/analysis/controllers/admin/analysis.php @@ -0,0 +1,260 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @module Analysis Controller + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) +* +*/ + +class Analysis_Controller extends Admin_Controller { + + public function __construct() + { + parent::__construct(); + $this->template->this_page = 'reports'; + } + + public function index($id = NULL) + { + $this->template->content = new View('analysis/main'); + + // Get all active top level categories + $parent_categories = array(); + foreach (ORM::factory('category') + ->where('category_visible', '1') + ->where('parent_id', '0') + ->orderby('category_title', 'ASC') + ->find_all() as $category) + { + // Get The Children + $children = array(); + foreach ($category->children as $child) + { + $children[$child->id] = array($child->category_title); + } + + sort($children); + + // Put it all together + $parent_categories[$category->id] = array( + $category->category_title, + $children + ); + } + $this->template->content->categories = $parent_categories; + + $this->template->content->date_picker_js = $this->_date_picker_js(); + $this->template->content->latitude = Kohana::config('settings.default_lat'); + $this->template->content->longitude = Kohana::config('settings.default_lon'); + + // Javascript + $this->template->map_enabled = TRUE; + $this->template->js = new View('analysis/main_js'); + $this->template->js->default_map = Kohana::config('settings.default_map'); + $this->template->js->default_zoom = Kohana::config('settings.default_zoom'); + $this->template->js->latitude = Kohana::config('settings.default_lat'); + $this->template->js->longitude = Kohana::config('settings.default_lon'); + } + + public function find_reports() + { + //$profiler = new Profiler; + + $this->template = ""; + $this->auto_render = FALSE; + + // check, has the form been submitted, if so, setup validation + if ($_POST) + { + // Instantiate Validation, use $post, so we don't overwrite $_POST + // fields with our own things + $post = new Validation($_POST); + + // Add some filters + $post->pre_filter('trim', TRUE); + + // Add some rules, the input field, followed by a list of checks, carried out in order + $post->add_rules('latitude', 'required', 'between[-90,90]'); + $post->add_rules('longitude', 'required', 'between[-180,180]'); + $post->add_rules('analysis_radius', 'required', 'numeric'); + $post->add_rules('start_date','date_mmddyyyy'); + $post->add_rules('end_date','date_mmddyyyy'); + $post->add_rules('analysis_category', 'numeric'); + + // Test to see if things passed the rule checks + if ($post->validate()) + { + // Database + $db = new Database(); + + $filter = ""; + + // Radius Filter + $radius = $post->analysis_radius / 1.609344; // Conversion KM -> Miles + + // Time Filter + $start_date = strtotime($post->start_date); + $end_date = strtotime($post->end_date); + if ($start_date) + { + $filter .= " AND UNIX_TIMESTAMP(i.incident_date) >= $start_date "; + } + if ($end_date) + { + $filter .= " AND UNIX_TIMESTAMP(i.incident_date) <= $end_date "; + } + + // Category Filter + if ($post->analysis_category AND $post->analysis_category != 0) + { + $filter .= " AND ( c.id = '".$post->analysis_category."' OR c.parent_id = '".$post->analysis_category."' ) "; + } + + // update here for seperate table + // Note: * 1.1515 is for conversion from nautical miles to statute miles + // (One nautical mile is the length of one minute of latitude at the equator) + $query = $db->query("SELECT DISTINCT i.id, i.incident_title, i.incident_date, iq.incident_source, iq.incident_information, l.`latitude`, l.`longitude`, + ((ACOS(SIN($post->latitude * PI() / 180) * SIN(l.`latitude` * PI() / 180) + COS($post->latitude * PI() / 180) * COS(l.`latitude` * PI() / 180) * COS(($post->longitude - l.`longitude`) * PI() / 180)) * 180 / PI()) * 60 * 1.1515) AS distance + FROM `".$this->table_prefix."incident` AS i INNER JOIN `".$this->table_prefix."location` AS l ON (l.`id` = i.`location_id`) INNER JOIN `".$this->table_prefix."incident_category` AS ic ON (i.`id` = ic.`incident_id`) INNER JOIN `".$this->table_prefix."category` AS c ON (ic.`category_id` = c.`id`) LEFT JOIN `".$this->table_prefix."incident_quality` AS iq ON (i.`id` = iq.`incident_id`) + WHERE 1=1 $filter HAVING distance<='$radius' ORDER BY i.`incident_date` ASC "); + + $markers = array(); + if ($query->count()) + { + $html = "

Found ".$query->count()." Results

"; + $html .= "
    "; + foreach ($query as $row) + { + // Is this report an Assessment? + $analysis = ORM::factory('analysis') + ->where('incident_id', $row->id) + ->find(); + + if ( ! $analysis->loaded) + { + // Source/Information Qualification Information + $source_qual = ($row->incident_source) ? $row->incident_source : "-"; + $info_qual = ($row->incident_information) ? $row->incident_information : "-"; + $qualification = $this->_qualification($source_qual, $info_qual); + + $html .= "
  • id."\"> id.");\">".$row->incident_title." ".$qualification."
    ".date('M j Y', strtotime($row->incident_date)).", ".date('H:i', strtotime($row->incident_date))."
  • "; + $markers[] = array($row->longitude,$row->latitude); + } + } + $html .= "
"; + } + else + { + $html = "

NO REPORTS FOUND

"; + $markers = array(); + } + + echo json_encode(array("status"=>"success", "message"=>$html, "markers"=>$markers)); + } + else + { + echo json_encode(array("status"=>"error", "message"=>"THERE IS AN ERROR WITH YOUR SUBMISSION")); + //print_r($post->errors()); + //print_r($post); + } + } + else + { + echo json_encode(array("status"=>"error", "message"=>"THERE IS AN ERROR WITH YOUR SUBMISSION")); + } + } + + public function get_report($id = NULL) + { + $this->template = ""; + $this->auto_render = FALSE; + + if ($id) + { + $incident = ORM::factory('incident', $id); + if ($incident->loaded) + { + $incident_quality = ORM::factory('incident_quality')->where('incident_id', $id)->find(); + $source_qual = ($incident_quality->incident_source) ? $incident_quality->incident_source : "-"; + $info_qual = ($incident_quality->incident_information) ? $incident_quality->incident_information : "-"; + $qualification = $this->_qualification($source_qual, $info_qual); + + $html = ""; + $html .= "

".$incident->incident_title."

"; + $html .= "
DATE: ".date('M j Y', strtotime($incident->incident_date))." TIME: ".date('H:i', strtotime($incident->incident_date))."
"; + $html .= "
".nl2br($incident->incident_description)."
"; + $html .= "
LISTED IN:
    "; + foreach($incident->incident_category as $category) + { + $html .= "
  • ".$category->category->category_title."
  • "; + } + $html .= "
"; + $html .= "
QUALIFICATION: ".$qualification."
"; + $grid = new View('analysis/grid'); + $grid->source_qual = $incident_quality->incident_source; + $grid->info_qual = $incident_quality->incident_information; + $html .= $grid; + echo $html; + } + else + { + echo "REPORT NOT FOUND"; + } + } + else + { + echo "REPORT NOT FOUND"; + } + } + + private function _date_picker_js() + { + return ""; + } + + private function _qualification($source_qual = 0, $info_qual = 0) + { + $sourcequal_array = array(); + $sourcequal_array[1] = "A"; + $sourcequal_array[2] = "B"; + $sourcequal_array[3] = "C"; + $sourcequal_array[4] = "D"; + $sourcequal_array[5] = "E"; + $sourcequal_array[6] = "F"; + + if ($source_qual >= 1 AND $source_qual <= 6 + AND $info_qual >= 1 AND $info_qual <= 6) { + return utf8::strtoupper($sourcequal_array[$source_qual].$info_qual); + } + else + { + return "--"; + } + } +} \ No newline at end of file diff --git a/plugins/analysis/hooks/analysis.php b/plugins/analysis/hooks/analysis.php new file mode 100755 index 0000000000..187d2ced5b --- /dev/null +++ b/plugins/analysis/hooks/analysis.php @@ -0,0 +1,265 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ + +class analysis { + + /** + * Registers the main event add method + */ + public function __construct() + { + // Hook into routing + Event::add('system.pre_controller', array($this, 'add')); + // Initialize this for later + $this->post_data = null; + } + + /** + * Adds all the events to the main Ushahidi application + */ + public function add() + { + // Add a Sub-Nav Link + Event::add('ushahidi_action.nav_admin_reports', array($this, '_report_link')); + + // Only add the events if we are on that controller + switch (Router::$current_uri) { + case "admin/reports": + plugin::add_stylesheet('analysis/views/css/buttons'); + + // Add Buttons to the report List + Event::add('ushahidi_action.report_extra_admin', array($this, '_reports_list_buttons_admin')); + break; + case "reports": + plugin::add_stylesheet('analysis/views/css/buttons'); + + // Add Buttons to the report List + Event::add('ushahidi_action.report_extra_media', array($this, '_reports_list_buttons')); + break; + } + + if (Router::$controller == 'analysis') + { + plugin::add_javascript('analysis/views/js/ui.dialog'); + plugin::add_javascript('analysis/views/js/ui.draggable'); + plugin::add_javascript('analysis/views/js/ui.resizable'); + plugin::add_stylesheet('analysis/views/css/main'); + } + // CLEAN UP THIS CODE + elseif (strripos(Router::$current_uri, "admin/reports/edit") !== false) + { + plugin::add_stylesheet('analysis/views/css/report'); + Event::add('ushahidi_action.report_pre_form_admin', array($this, '_reports_list_analysis')); + Event::add('ushahidi_action.header_scripts_admin', array($this, '_save_analysis_js')); + Event::add('ushahidi_action.report_edit', array($this, '_save_analysis')); + } + elseif (strripos(Router::$current_uri, "reports/submit") !== false) + { + //Add dropdown fields to the submit form + Event::add('ushahidi_action.report_form', array($this, '_submit_form')); + + //Save the contents of the dropdown + Event::add('ushahidi_action.report_submit', array($this, '_handle_post_data')); + Event::add('ushahidi_action.report_add', array($this, '_save_submit_form')); + } + elseif (strripos(Router::$current_uri, "reports/view") !== false) + { + plugin::add_stylesheet('analysis/views/css/buttons'); + + Event::add('ushahidi_action.report_meta_after_time', array($this, '_reports_view_buttons')); + } + } + + public function _submit_form() + { + //Load the view + $form = View::factory('analysis/reports_submit_form'); + + $form->render(TRUE); + } + + public function _handle_post_data() { + $this->post_data = Event::$data; + // We should probably add validation here too. + } + + public function _save_submit_form() + { + $incident = Event::$data; + $post = $this->post_data; + + if ($post) { + // Save Quality Information + $quality = new Incident_Quality_Model(); + $quality->incident_id = $incident->id; + $quality->incident_source = $post->incident_source; + $quality->incident_information = $post->incident_information; + $quality->save(); + } + //print_r($post);exit; + } + + + public function _report_link() + { + $this_sub_page = Event::$data; + echo ($this_sub_page == "analysis") ? Kohana::lang('analysis.analysis') : "".Kohana::lang('analysis.analysis').""; + } + + public function _reports_buttons() + { + $incident = Event::$data; + if (is_object($incident)) + { + $incident_id = $incident->incident_id; + } else { + $incident_id = (int)$incident; + } + + // Is this report an Assessment? + $analysis = ORM::factory('analysis') + ->where('incident_id', $incident_id) + ->find(); + if ($analysis->loaded) + { + $button = View::factory('analysis/buttons'); + $button->incident_id = $incident_id; + $button->link = ''; + return $button; + } + } + + public function _reports_list_buttons_admin() + { + if ($button = $this->_reports_buttons() ) + { + $button->link = url::base().'admin/reports/view/'.$button->incident_id; + $button->render(TRUE); + } + } + + public function _reports_list_buttons() + { + if ($button = $this->_reports_buttons() ) + { + $button->link = url::base().'reports/view/'.$button->incident_id; + $button->render(TRUE); + } + } + + public function _reports_view_buttons() + { + if ($button = $this->_reports_buttons() ) + { + $button->link = '#'; + $button->render(TRUE); + } + } + + public function _reports_list_analysis() + { + $incident_id = Event::$data; + + // Load Saved Analysis + $analysis = ORM::factory('analysis') + ->where('incident_id', $incident_id) + ->find(); + if ($analysis->loaded) + { + // Find Attached Incidents + $related = ORM::factory('analysis_incident') + ->where('analysis_id', $analysis->id) + ->find_all(); + + $a_ids = array(); + foreach ($related as $a_id) + { + $a_ids[] = $a_id->incident_id; + } + $report_list = View::factory('analysis/report_list'); + $report_list->a_ids = $a_ids; + $report_list->render(TRUE); + } + else + { + if (isset($_GET['a_id'])) + { + $report_list = View::factory('analysis/report_list'); + $report_list->a_ids = $_GET['a_id']; + $report_list->render(TRUE); + } + } + } + + public function _save_analysis() + { + $incident = Event::$data; + if (isset($_POST['a_id']) AND !empty($_POST['a_id'])) + { + $a_ids = $_POST['a_id']; + $analysis = ORM::factory('analysis') + ->where('incident_id', $incident->id) + ->find(); + + // Save Analysis + $analysis->incident_id = $incident->id; + $analysis->user_id = $_SESSION['auth_user']->id; + $analysis->analysis_date = date("Y-m-d H:i:s",time()); + $analysis->save(); + + // Delete Reports associated with this Analysis (if any) + ORM::factory('analysis_incident') + ->where('analysis_id', $analysis->id) + ->delete_all(); + + // Save Associated Reports + foreach ($a_ids as $a_id) + { + $analysis_incident = ORM::factory('analysis_incident'); + $analysis_incident->analysis_id = $analysis->id; + $analysis_incident->incident_id = $a_id; + $analysis_incident->save(); + + // Deactivate reports associated with this analysis + $deactivated = ORM::factory('incident')->find($a_id); + if ($deactivated->loaded) + { + $deactivated->incident_active = 0; + $deactivated->save(); + } + } + + // Add to 'Analysis' category + $incident_category = ORM::factory('incident_category') + ->where(array('incident_id' => $incident->id, 'category_id' => 1999)) + ->find(); + if (!$incident_category->loaded) + { + $incident_category = new Incident_Category_Model(); + $incident_category->incident_id = $incident->id; + $incident_category->category_id = 1999; + $incident_category->save(); + } + } + } + + public function _save_analysis_js() + { + $this->template->js = View::factory('analysis/report_list_js'); + $this->template->js->default_zoom = Kohana::config('settings.default_zoom'); + $this->template->js->render(TRUE); + } +} + +new analysis; diff --git a/plugins/analysis/i18n/en_US/analysis.php b/plugins/analysis/i18n/en_US/analysis.php new file mode 100755 index 0000000000..a1af7974e3 --- /dev/null +++ b/plugins/analysis/i18n/en_US/analysis.php @@ -0,0 +1,35 @@ + 'Analysis', + 'category_filter' => 'Category Filter', + 'distance_filter' => 'Distance Filter', + 'drag_map_to_resize' => 'Drag bottom right corner of map to resize', + 'end_date' => 'End Date', + 'information_evaluation' => 'Information Evaluation', + 'how_analysis_works' => 'How Analysis Works', + 'how_analysis_works_1' => 'This tool helps you find related reports in the system based on specified parameters.', + 'how_analysis_works_2' => 'To the right, select the filters you\'d like to apply to the reports you\'re looking for.', + 'how_analysis_works_3' => 'Select the reports you\'d like to analyse and click \'Perform Assessment\'', + 'report_edit_dropdown_1_default' => '--- Select One ---', + 'report_edit_dropdown_1_item_1' => 'Yes, the source has direct access to information (witness or actor).', + 'report_edit_dropdown_1_item_2' => 'Yes, the source has access to information, but can be wrong.', + 'report_edit_dropdown_1_item_3' => 'Yes, the source has no direct access to information, but is often right.', + 'report_edit_dropdown_1_item_4' => 'Not always, but is often right.', + 'report_edit_dropdown_1_item_5' => 'No, the source has (had) no access to information.', + 'report_edit_dropdown_1_item_6' => 'I do not know.', + 'report_edit_dropdown_1_title' => 'Source Reliability', + 'report_edit_dropdown_2_default' => '--- Select One ---', + 'report_edit_dropdown_2_item_1' => 'Yes, the information is confirmed by several independent sources.', + 'report_edit_dropdown_2_item_2' => 'Yes, the information is not confirmed (yet), but is likely.', + 'report_edit_dropdown_2_item_3' => 'Yes, the information makes sense.', + 'report_edit_dropdown_2_item_4' => 'No, the information is surprising.', + 'report_edit_dropdown_2_item_5' => 'No, the information is unlikely and may be disinformation.', + 'report_edit_dropdown_2_item_6' => 'I do not know.', + 'report_edit_dropdown_2_title' => 'Information Probability', + 'search_to_find_related' => 'Click "search" on right to find related reports', + 'select_all' => 'Select ALL', + 'select_none' => 'Select NONE', + 'search_for_related' => 'Search for related items', + 'start_date' => 'Start Date', + 'time_filter' => 'Time Filter', +); diff --git a/plugins/analysis/i18n/fr_FR/analysis.php b/plugins/analysis/i18n/fr_FR/analysis.php new file mode 100755 index 0000000000..ae69999e57 --- /dev/null +++ b/plugins/analysis/i18n/fr_FR/analysis.php @@ -0,0 +1,18 @@ + 'Analyse', + 'category_filter' => 'Catégorie De Filtre', + 'distance_filter' => 'Filtre des Distances', + 'drag_map_to_resize' => 'Faites glisser le coin inférieur droit de la carte pour redimensionner', + 'end_date' => 'Date de fin', + 'how_analysis_works' => 'Comment l\'analyse fonctionne', + 'how_analysis_works_1' => 'Cet outil vous aide à trouver les rapports connectés au système et fondés sur des paramètres spécifiés.', + 'how_analysis_works_2' => 'A droite, sélectionnez les filtres que vous souhaitez appliquer aux rapports que vous recherchez.', + 'how_analysis_works_3' => 'Sélectionnez les rapports que vous souhaitez analyser et cliquez sur "Effectuer l\'évaluation"', + 'search_to_find_related' => 'Cliquez sur «Rechercher» a droite pour trouver des rapports connectés', + 'select_all' => 'Tout sélectionner', + 'select_none' => 'Désélectionner', + 'search_for_related' => 'Rechercher les articles de même nature', + 'start_date' => 'Date de début', + 'time_filter' => 'Filtre de Temps', +); diff --git a/plugins/analysis/libraries/analysis_install.php b/plugins/analysis/libraries/analysis_install.php new file mode 100755 index 0000000000..7d99968944 --- /dev/null +++ b/plugins/analysis/libraries/analysis_install.php @@ -0,0 +1,72 @@ +db = new Database(); + } + + /** + * Creates the required database tables for the analysis module + */ + public function run_install() + { + // Create the database tables + // Include the table_prefix + $this->db->query(" + CREATE TABLE IF NOT EXISTS `".Kohana::config('database.default.table_prefix')."analysis` + ( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `incident_id` INT NOT NULL COMMENT 'incident_id of the new report that is created', + `user_id` INT NOT NULL COMMENT 'user_id of the user that performed this assessment', + `analysis_date` DATETIME NOT NULL, + PRIMARY KEY (id) + );"); + + $this->db->query(" + CREATE TABLE IF NOT EXISTS `".Kohana::config('database.default.table_prefix')."analysis_incident` + ( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `analysis_id` INT NOT NULL, + `incident_id` INT NOT NULL COMMENT 'incident_id\'s of the child reports that belong to this analysis', + PRIMARY KEY (id) + );"); + + $this->db->query(" + CREATE TABLE IF NOT EXISTS `".Kohana::config('database.default.table_prefix')."incident_quality` + ( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `incident_id` INT NOT NULL COMMENT 'incident_id of the new report that is created', + `incident_source` INT NOT NULL COMMENT 'incident_source of the new report that is created', + `incident_information` INT NOT NULL COMMENT 'incident_information of the new report that is created', + PRIMARY KEY (id) + );"); + $this->db->query(" + INSERT IGNORE INTO `".Kohana::config('database.default.table_prefix')."category` (id, locale, category_position, category_title, category_description, category_color, category_visible, category_trusted) + VALUES (1999, 'en_US', 6, 'Analysis', 'Reports created from analysis of multiple reports', '92c400', 1, 0); + "); + } + + /** + * Deletes the database tables for the analysis module + */ + public function uninstall() + { + $this->db->query(" + DROP TABLE ".Kohana::config('database.default.table_prefix')."analysis; + DROP TABLE ".Kohana::config('database.default.table_prefix')."analysis_incident; + DROP TABLE ".Kohana::config('database.default.table_prefix')."incident_quality; + "); + } +} diff --git a/plugins/analysis/models/analysis.php b/plugins/analysis/models/analysis.php new file mode 100755 index 0000000000..a06a0479ef --- /dev/null +++ b/plugins/analysis/models/analysis.php @@ -0,0 +1,23 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @module Analysis Model + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ + +class Analysis_Model extends ORM +{ + protected $has_many = array('analysis_incident'); + protected $has_one = array('incident'); + + // Database table name + protected $table_name = 'analysis'; +} diff --git a/plugins/analysis/models/analysis_incident.php b/plugins/analysis/models/analysis_incident.php new file mode 100755 index 0000000000..a4fd9ca6f1 --- /dev/null +++ b/plugins/analysis/models/analysis_incident.php @@ -0,0 +1,22 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @module Analysis_Incident Model + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ + +class Analysis_Incident_Model extends ORM +{ + protected $belongs_to = array('analysis'); + + // Database table name + protected $table_name = 'analysis_incident'; +} diff --git a/plugins/analysis/models/incident_quality.php b/plugins/analysis/models/incident_quality.php new file mode 100755 index 0000000000..6d23fa5721 --- /dev/null +++ b/plugins/analysis/models/incident_quality.php @@ -0,0 +1,22 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @module Incident Quality Model + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ + +class Incident_Quality_Model extends ORM +{ + protected $has_one = array('incident'); + + // Database table name + protected $table_name = 'incident_quality'; +} diff --git a/plugins/analysis/readme.txt b/plugins/analysis/readme.txt new file mode 100755 index 0000000000..c71af81c40 --- /dev/null +++ b/plugins/analysis/readme.txt @@ -0,0 +1,30 @@ +=== About === +name: Analysis Matrix +website: http://www.ushahidi.com +description: Analyse incoming reports to find related items by proximity, time, category etc. Developed with the help of ICT4Peace. +version: 0.5 +requires: 2.2 +tested up to: 2.2 +author: David Kobia +author website: http://www.dkfactor.com + +== Description == +Analyse incoming reports to find related items by proximity, time, category etc. Developed with the help of ICT4Peace. + +== Installation == +1. Copy the entire /analysis/ directory into your /plugins/ directory. + (Note: the directory MUST be named analysis, not Ushahidi-plugin-analysis) +2. Activate the plugin. +3. Go to Admin, Click on Reports Tab - you should see Analysis Menu Option at Top Right + +== Changelog == +0.5 +* Added 'Analysis' buttons to the frontend and linked to edit/view pages +* Added special 'Analysis' category +* Move source and information fields to a seperate table, out of core + +0.3 +* Added Information Evaluation Grid to Report Analysis +* Updated Mapping to Include New Map Helper + +@todo Add API hooks for incident source and information fields (removed from core) diff --git a/plugins/analysis/views/analysis/buttons.php b/plugins/analysis/views/analysis/buttons.php new file mode 100755 index 0000000000..6c216173f6 --- /dev/null +++ b/plugins/analysis/views/analysis/buttons.php @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/plugins/analysis/views/analysis/grid.php b/plugins/analysis/views/analysis/grid.php new file mode 100755 index 0000000000..5c71f3ab4e --- /dev/null +++ b/plugins/analysis/views/analysis/grid.php @@ -0,0 +1,115 @@ +
+= 1 AND $source_qual <= 6 + AND $info_qual >= 1 AND $info_qual <= 6) { + $incident_qual = utf8::strtoupper($sourcequal_array[$source_qual].$info_qual); + } + else + { + $incident_qual = "--"; + } + ?> +
+
+
>
+
+
+
>
+
+
+
>
+
+
+
>
+
+
+
>
+
+
+
>
+
+
+
+ +
+
+
+

KEY:

+
+
+ Accept +
+
+
+ Tend To Accept +
+
+
+ Tend To Reject +
+
+
+ Reject +
+
\ No newline at end of file diff --git a/plugins/analysis/views/analysis/main.php b/plugins/analysis/views/analysis/main.php new file mode 100755 index 0000000000..bef09ccfe7 --- /dev/null +++ b/plugins/analysis/views/analysis/main.php @@ -0,0 +1,114 @@ +
+

+ +

+ +
+
+

+
+ + + +
+ + 'analysis-form', 'method'=>'get')); ?> +
+
+
+

+
    +
  • +
  • +
  • +
+ +
+ + +
      | 
+
+

+
+
+
+ +
+
+ + + 'analysis-filter')); ?> + + +
+
+
    +
  • +
  • +
  • +
+
+
+ +

+
+
+
+ +
+
+ +

+
+
+ :
+ +
+
+ :
+ +
+
+ +
+ +

+
+ +
+
+
+
    +
  • +
  • +
  • +
+
+
+ + +
+ +
+
+ +
diff --git a/plugins/analysis/views/analysis/main_js.php b/plugins/analysis/views/analysis/main_js.php new file mode 100755 index 0000000000..fcab1d1afb --- /dev/null +++ b/plugins/analysis/views/analysis/main_js.php @@ -0,0 +1,208 @@ +var map; +var new_markers; +var radius = 20000; +var proj_4326 = new OpenLayers.Projection('EPSG:4326'); +var proj_900913 = new OpenLayers.Projection('EPSG:900913'); + +$(document).ready(function() { + /* + - Initialize Map + - Uses Spherical Mercator Projection + - Units in Metres instead of Degrees + */ + var options = { + units: "m", + numZoomLevels: 16, + controls:[], + projection: proj_900913, + 'displayProjection': proj_4326 + }; + + map = new OpenLayers.Map('analysis-map', options); + + /* + - Select A Mapping API + - Live/Yahoo/OSM/Google + - Set Bounds + */ + + map.addLayers(); + + map.addControl(new OpenLayers.Control.Navigation()); + map.addControl(new OpenLayers.Control.PanZoom()); + map.addControl(new OpenLayers.Control.Attribution()); + map.addControl(new OpenLayers.Control.MousePosition()); + map.addControl(new OpenLayers.Control.LayerSwitcher()); + + // Create the Circle/Radius layer + var radiusLayer = new OpenLayers.Layer.Vector("Radius Layer"); + + + // Create the markers layer + var markers = new OpenLayers.Layer.Markers("Markers"); + new_markers = new OpenLayers.Layer.Markers("New Markers"); + map.addLayers([radiusLayer, markers, new_markers]); + + // create a lat/lon object + var myPoint = new OpenLayers.LonLat(, ); + myPoint.transform(proj_4326, proj_900913); + + // create a marker positioned at a lon/lat + var marker = new OpenLayers.Marker(myPoint); + markers.addMarker(marker); + + // draw circle around point + drawCircle(,,radius); + + // display the map centered on a latitude and longitude (Google zoom levels) + map.setCenter(myPoint, 9); + + + // Draw circle around point + function drawCircle(lon,lat,radius) + { + radiusLayer.destroyFeatures(); + var circOrigin = new OpenLayers.Geometry.Point(lon,lat); + circOrigin.transform(proj_4326, proj_900913); + + var circStyle = OpenLayers.Util.extend( {},OpenLayers.Feature.Vector.style["default"] ); + var circleFeature = new OpenLayers.Feature.Vector( + OpenLayers.Geometry.Polygon.createRegularPolygon( circOrigin, radius, 40, 0 ), + null, + circStyle + ); + radiusLayer.addFeatures( [circleFeature] ); + } + + // Detect Map Clicks + map.events.register("click", map, function(e){ + var lonlat = map.getLonLatFromViewPortPx(e.xy); + var lonlat2 = map.getLonLatFromViewPortPx(e.xy); + m = new OpenLayers.Marker(lonlat); + markers.clearMarkers(); + markers.addMarker(m); + + reset(); + + currRadius = $("#analysis_radius").val(); + radius = currRadius * 1000 + + lonlat2.transform(proj_900913,proj_4326); + drawCircle(lonlat2.lon, lonlat2.lat, radius); + + // Update form values (jQuery) + $("#latitude").attr("value", lonlat2.lat); + $("#longitude").attr("value", lonlat2.lon); + }); + + // Radius Slider + $("select#analysis_radius").selectToUISlider({ + labels: 6, + tooltip: false, + labelSrc: 'text', + sliderOptions: { + change: function(e, ui) { + var newRadius = $("#analysis_radius").val(); + + // Convert to Meters + radius = newRadius * 1000; + + currLon = $("#longitude").val(); + currLat = $("#latitude").val(); + drawCircle(currLon,currLat,radius); + } + } + }).hide(); + + // Resizable Map + $("#analysis-map").resizable({maxWidth: 418, minWidth: 418}); + + // View Report Dialog + $("#analysis-report").dialog({ + autoOpen: false, + height: 550, + width: 500, + modal: true, + resizable: true, + draggable: true, + zIndex: 3999 + }); +}); + + +function generateReports(){ + $('#analysis-generated').html('
">
'); + $.post("", + { + latitude: $("#latitude").attr("value"), + longitude: $("#longitude").attr("value"), + analysis_radius: $("#analysis_radius").attr("value"), + start_date: $("#start_date").attr("value"), + end_date: $("#end_date").attr("value"), + analysis_category: $("#analysis_category").attr("value") + }, + function(data){ + if (data.status == 'success'){ + $('#analysis-generated').html(data.message); + $('#analysis-generated').effect("highlight", {}, 2000); + $('#analysis-assess').html(''); + var markers_array = data.markers; + // Create a new markers layer + + new_markers.clearMarkers(); + + for ( var i in markers_array){ + // create a lat/lon object + var newPoint = new OpenLayers.LonLat(markers_array[i][0], markers_array[i][1]); + newPoint.transform(proj_4326, proj_900913); + + // create a marker positioned at a lon/lat + var newMarker = new OpenLayers.Marker(newPoint); + new_markers.addMarker(newMarker); + }; + } else { + alert(data.message); + $('#analysis-generated').html("

CLICK \"SEARCH\" ON RIGHT TO FIND RELATED REPORTS

"); + } + }, "json"); +} + +function showReport(id) { + $('#analysis-report').html('
">
'); + $.get(''+id, function(data) { + // Generate Content + $("#analysis-report").html(data); + }); + + // Open Dialog + $("#analysis-report").dialog('open'); +} + +function assessForm() +{ + var a_id_checked = $('#analysis-generated').find('input:checkbox:checked').length; + if(a_id_checked == 0){ + alert('Please Make A Selection'); + } + else + { + $("#analysis-form").submit(); + } +} + +function reset() { + new_markers.clearMarkers(); + $('#analysis-generated').html("

CLICK \"SEARCH\" ON RIGHT TO FIND RELATED REPORTS

"); +} + +function hideAbout(){ + $(".analysis-about").hide(); +} + +function checkAll(name){ + $("input[name="+name+"]").attr('checked', true); +} + +function checkNone(name){ + $("input[name="+name+"]").attr('checked', false); +} diff --git a/plugins/analysis/views/analysis/report_list.php b/plugins/analysis/views/analysis/report_list.php new file mode 100755 index 0000000000..25b5bac434 --- /dev/null +++ b/plugins/analysis/views/analysis/report_list.php @@ -0,0 +1,27 @@ +
+

Assessment For the Following Reports:

+ +
+

View Assessment Report Details

+
+ +
\ No newline at end of file diff --git a/plugins/analysis/views/analysis/report_list_js.php b/plugins/analysis/views/analysis/report_list_js.php new file mode 100755 index 0000000000..8a9b21b53b --- /dev/null +++ b/plugins/analysis/views/analysis/report_list_js.php @@ -0,0 +1,33 @@ + \ No newline at end of file diff --git a/plugins/analysis/views/analysis/reports_submit_form.php b/plugins/analysis/views/analysis/reports_submit_form.php new file mode 100755 index 0000000000..bd06652d3e --- /dev/null +++ b/plugins/analysis/views/analysis/reports_submit_form.php @@ -0,0 +1,47 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @module Analysis Hook + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ +?> +
+
+

+
+

:

+ Kohana::lang('analysis.report_edit_dropdown_1_default'), + "1"=> Kohana::lang('analysis.report_edit_dropdown_1_item_1'), + "2"=> Kohana::lang('analysis.report_edit_dropdown_1_item_2'), + "3"=> Kohana::lang('analysis.report_edit_dropdown_1_item_3'), + "4"=> Kohana::lang('analysis.report_edit_dropdown_1_item_4'), + "5"=> Kohana::lang('analysis.report_edit_dropdown_1_item_5'), + "6"=> Kohana::lang('analysis.report_edit_dropdown_1_item_6') + ) + , 'incident_source') ?> +
+
+

:

+ Kohana::lang('analysis.report_edit_dropdown_1_default'), + "1"=> Kohana::lang('analysis.report_edit_dropdown_2_item_1'), + "2"=> Kohana::lang('analysis.report_edit_dropdown_2_item_2'), + "3"=> Kohana::lang('analysis.report_edit_dropdown_2_item_3'), + "4"=> Kohana::lang('analysis.report_edit_dropdown_2_item_4'), + "5"=> Kohana::lang('analysis.report_edit_dropdown_2_item_5'), + "6"=> Kohana::lang('analysis.report_edit_dropdown_2_item_6') + ) + , 'incident_information') ?> +
+
+
diff --git a/plugins/analysis/views/css/buttons.css b/plugins/analysis/views/css/buttons.css new file mode 100755 index 0000000000..e90a75ff36 --- /dev/null +++ b/plugins/analysis/views/css/buttons.css @@ -0,0 +1,124 @@ +/** + * Halmat Ferello + * Licensed under GPL and MIT. + */ + +.analyse-button{ + margin-top:10px; +} + +.pcb, .pcb span { + background: url('../images/secondary.png') no-repeat; + height: 23px; + line-height: 23px; + padding: 3px 0 7px 0; +} + +.pcb, a.pcb:link, a.pcb:visited { + color: #333; + font-size: 11px; + padding-left: 14px; + text-decoration: none !important; +} +/* ie 6 hack */ +* html div#frame .pcb { + color: #333; + padding-top: 0px; + padding-bottom: 0px; + text-decoration: none; +} +/* ie 7 hack */ +*:first-child+html .pcb { + color: #333; + padding-top: 0px; + padding-bottom: 0px; + text-decoration: none; +} + +.pcb span { + background-position: right -326px; + padding-right: 14px; +} + +a.green-button, a.green-button:link, a.green-button:visited, .green-active-button, .green-disabled-button { + color: #fff !important; + font-size: 12px; + font-weight: bold; +} +a.green-button:hover { + background-position: left -27px; +} +a.green-button:hover span { + background-position: right -353px; +} +a.green-button:active, .green-active-button { + background-position: left -54px; +} +a.green-button:active span, .green-active-button span { + background-position: right -380px; +} +body .green-disabled-button { + color: #A8BE69 !important; + background-position: left -81px !important; +} +body .green-disabled-button span { + background-position: right -407px; +} + +a.grey-button { + background-position: left -219px; + padding-top: 3px; +} +a.grey-button span { + background-position: right -545px; + padding-top: 3px; +} +a.grey-button:hover { + background-position: left -246px; +} +a.grey-button:hover span { + background-position: right -572px; +} +a.grey-button:active, .grey-active-button { + background-position: left -273px; +} +a.grey-button:active span, .grey-active-button span { + background-position: right -599px; +} +body .grey-disabled-button { + background-position: left -300px; + color: #bbb !important; +} +body .grey-disabled-button span { + background-position: right -626px; +} + +a.red-button, .red-active-button, .red-disabled-button { + background-position: left -109px; + color: #fff !important; + padding-top: 3px; + font-weight: bold; +} +a.red-button span { + background-position: right -435px; + padding-top: 3px; +} +a.red-button:hover { + background-position: left -137px; +} +a.red-button:hover span { + background-position: right -463px; +} +a.red-button:active, .red-active-button { + background-position: left -165px; +} +a.red-button:active span, .red-active-button span { + background-position: right -491px; +} +body .red-disabled-button { + background-position: left -192px; + color: #DC4143 !important; +} +body .red-disabled-button span { + background-position: right -518px; +} \ No newline at end of file diff --git a/plugins/analysis/views/css/main.css b/plugins/analysis/views/css/main.css new file mode 100755 index 0000000000..3225942555 --- /dev/null +++ b/plugins/analysis/views/css/main.css @@ -0,0 +1,243 @@ +.analysis-about{ + padding:10px; + background-color:#F2F8FA; + border:1px solid #f0f0f0; + margin-bottom:15px; +} + .analysis-about h4{ + margin:0; + padding:0; + color:#9b0000; + } + +.analysis-filter{ + float:left; + width:450px; + border: 3px solid #f0f0f0; + +} + .analysis-filter .analysis-btn-search, + .analysis-filter .analysis-btn-reset, + #analysis-assess .analysis-btn-assess { + font-weight:bold; + color:#fff; + } + .analysis-filter .analysis-btn-search, + #analysis-assess .analysis-btn-assess{ + background-color:#368c00; + } + .analysis-filter .analysis-btn-reset{ + background-color:#666; + } + .analysis-filter-title{ + padding:3px; + background-color:#f0f0f0; + font-weight:bold; + } + .analysis-filter-items{ + padding:15px 15px 0 15px; + } + .analysis-filter-items h4{ + margin:0 0 10px 0; + padding:0 0 3px 0; + font-size:18px; + font-weight:bold; + border-bottom:2px dotted #ccc; + } + .analysis-filter-block{ + padding-bottom:5px; + margin-bottom:25px; + border-bottom:2px dotted #ccc; + } + .analysis-map{ + width:416px; + height:250px; + border:2px solid #f0f0f0; + } + .analysis-slider{ + padding:15px 15px 20px 15px; + background-color:#fff; + } + .analysis-slider .ui-slider span.ui-slider-label{ + font-size:10px; + text-align:center; + } + .analysis-date{ + float:left; + margin-right:15px; + } + +.analysis-report{ + float:left; + width:380px; + margin-right:23px; +} + .analysis-original{ + margin-bottom:15px; + } + .analysis-original h4{ + margin:0; + padding:0; + } + .analysis-results{ + background-color:#333; + padding:4px 4px 4px 10px; + color:#fff; + } + .analysis-results a{ + font-size:0.8em; + color:#eee; + } + .analysis-generated{ + border-bottom:2px solid #333; + border-top:2px solid #333; + padding:15px 0 15px 0; + height:450px; + overflow:auto; + } + .analysis-generated h4{ + margin:0 0 10px 0; + padding:0 0 0 10px; + } + .analysis-generated ul{ + list-style-type:none; + padding:0; + margin:0; + } + .analysis-generated ul li{ + margin-bottom:5px; + padding:5px 0 5px 0; + } + .analysis-generated ul li a{ + font-size:14px; + font-weight:bold; + } + .analysis-generated ul li span.date{ + margin-left:22px; + font-size:0.9em; + font-style:italic; + color:#666; + } + span.qual{ + font-size:0.9em; + padding:2px 4px 2px 4px; + margin-left:5px; + background-color:#ccc; + color:#000; + } + .analysis-highlight{ + background-color:#ffffcc; + } + .analysis-window-title{ + font-size:16px; + font-weight:bold; + margin:10px 0 15px 0; + } + .analysis-window-date{ + font-size:10px; + font-style:italic; + } + .analysis-window-desc{ + margin:10px 0 15px 0; + border:1px dotted #ccc; + padding:15px; + } + .analysis-window-cats{ + font-size:10px; + } + +#assessment-form{ + +} + +.grid-wrapper{ + width:260px; + margin:auto; + margin-top:15px; +} + .grid-row{ + clear:both; + margin-bottom:10px; + } + .grid-row .selected{ + width:16px; + margin:auto; + height:16px; + margin-top:8px; + background-color:#000; + } + .grid-row .left1, + .grid-row .left2, + .grid-row .left3, + .grid-row .left4, + .grid-row .left5, + .grid-row .right{ + border:2px solid #000; + } + .grid-row .left1{ + position: relative; + float: left; + left: 0px; + width: 31px; + height: 31px; + background-color: #828282; + } + .grid-row .left2{ + position: relative; + float: left; + left: 10px; + width: 31px; + height: 31px; + background-color: #828282; + } + .grid-row .left3{ + position: relative; + float: left; + left: 20px; + width: 31px; + height: 31px; + background-color: #828282; + } + .grid-row .left4{ + position: relative; + float: left; + left: 30px; + width: 31px; + height: 31px; + background-color: #828282; + } + .grid-row .left5{ + position: relative; + float: left; + left: 40px; + width: 31px; + height: 31px; + background-color: #828282; + } + .grid-row .right{ + position: relative; + float: right; + right: 0px; + width: 31px; + height: 31px; + background-color: #828282; + } +.grid-key{ + clear:both; + margin-top:15px; +} + .grid-key h4{ + margin-bottom:10px; + } + .grid-key-row{ + clear:both; + margin-bottom:10px; + } + .grid-key-swatch{ + float:left; + height:16px; + width:16px; + margin-right:15px; + border:1px solid #000; + } + \ No newline at end of file diff --git a/plugins/analysis/views/css/report.css b/plugins/analysis/views/css/report.css new file mode 100755 index 0000000000..f1ccfe2dc0 --- /dev/null +++ b/plugins/analysis/views/css/report.css @@ -0,0 +1,40 @@ +.analysis-assessment-list{ + padding:10px; + background-color:#F2F8FA; + border:1px solid #f0f0f0; + height:100px; + overflow:auto; +} + .analysis-assessment-list h4{ + margin:0; + padding:0; + color:#9b0000; + } + .analysis-assessment-list .analysis-mapme{ + font-size:10px; + color:#999; + } + .analysis-assessment-list .analysis-mapme a{ + color:#999; + } + +#analysis_report_details{ + clear:both; + display:none; + padding:10px; + background-color:#FDFEE7; + border:1px solid #f0f0f0; +} + #analysis_report_details .detail{ + margin-bottom:10px; + } + #analysis_report_details h4{ + font-size:12px; + margin:0 0 5px 0; + padding:0; + } + #analysis_report_details .desc{ + padding:5px; + background-color:#fff; + font-style:italic; + } \ No newline at end of file diff --git a/plugins/analysis/views/images/download-icon.png b/plugins/analysis/views/images/download-icon.png new file mode 100755 index 0000000000..4760c73586 Binary files /dev/null and b/plugins/analysis/views/images/download-icon.png differ diff --git a/plugins/analysis/views/images/loading_g.gif b/plugins/analysis/views/images/loading_g.gif new file mode 100755 index 0000000000..e58b950560 Binary files /dev/null and b/plugins/analysis/views/images/loading_g.gif differ diff --git a/plugins/analysis/views/images/loading_g2.gif b/plugins/analysis/views/images/loading_g2.gif new file mode 100755 index 0000000000..ee7984c3f4 Binary files /dev/null and b/plugins/analysis/views/images/loading_g2.gif differ diff --git a/plugins/analysis/views/images/secondary-newer.png b/plugins/analysis/views/images/secondary-newer.png new file mode 100755 index 0000000000..b88178ea95 Binary files /dev/null and b/plugins/analysis/views/images/secondary-newer.png differ diff --git a/plugins/analysis/views/images/secondary.png b/plugins/analysis/views/images/secondary.png new file mode 100755 index 0000000000..bdab20c705 Binary files /dev/null and b/plugins/analysis/views/images/secondary.png differ diff --git a/plugins/analysis/views/js/ui.dialog.js b/plugins/analysis/views/js/ui.dialog.js new file mode 100755 index 0000000000..77204247eb --- /dev/null +++ b/plugins/analysis/views/js/ui.dialog.js @@ -0,0 +1,671 @@ +/* + * jQuery UI Dialog 1.7.3 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * ui.core.js + * ui.draggable.js + * ui.resizable.js + */ +(function($) { + +var setDataSwitch = { + dragStart: "start.draggable", + drag: "drag.draggable", + dragStop: "stop.draggable", + maxHeight: "maxHeight.resizable", + minHeight: "minHeight.resizable", + maxWidth: "maxWidth.resizable", + minWidth: "minWidth.resizable", + resizeStart: "start.resizable", + resize: "drag.resizable", + resizeStop: "stop.resizable" + }, + + uiDialogClasses = + 'ui-dialog ' + + 'ui-widget ' + + 'ui-widget-content ' + + 'ui-corner-all '; + +$.widget("ui.dialog", { + + _init: function() { + this.originalTitle = this.element.attr('title'); + + var self = this, + options = this.options, + + title = options.title || this.originalTitle || ' ', + titleId = $.ui.dialog.getTitleId(this.element), + + uiDialog = (this.uiDialog = $('
')) + .appendTo(document.body) + .hide() + .addClass(uiDialogClasses + options.dialogClass) + .css({ + position: 'absolute', + overflow: 'hidden', + zIndex: options.zIndex + }) + // setting tabIndex makes the div focusable + // setting outline to 0 prevents a border on focus in Mozilla + .attr('tabIndex', -1).css('outline', 0).keydown(function(event) { + (options.closeOnEscape && event.keyCode + && event.keyCode == $.ui.keyCode.ESCAPE && self.close(event)); + }) + .attr({ + role: 'dialog', + 'aria-labelledby': titleId + }) + .mousedown(function(event) { + self.moveToTop(false, event); + }), + + uiDialogContent = this.element + .show() + .removeAttr('title') + .addClass( + 'ui-dialog-content ' + + 'ui-widget-content') + .appendTo(uiDialog), + + uiDialogTitlebar = (this.uiDialogTitlebar = $('
')) + .addClass( + 'ui-dialog-titlebar ' + + 'ui-widget-header ' + + 'ui-corner-all ' + + 'ui-helper-clearfix' + ) + .prependTo(uiDialog), + + uiDialogTitlebarClose = $('') + .addClass( + 'ui-dialog-titlebar-close ' + + 'ui-corner-all' + ) + .attr('role', 'button') + .hover( + function() { + uiDialogTitlebarClose.addClass('ui-state-hover'); + }, + function() { + uiDialogTitlebarClose.removeClass('ui-state-hover'); + } + ) + .focus(function() { + uiDialogTitlebarClose.addClass('ui-state-focus'); + }) + .blur(function() { + uiDialogTitlebarClose.removeClass('ui-state-focus'); + }) + .mousedown(function(ev) { + ev.stopPropagation(); + }) + .click(function(event) { + self.close(event); + return false; + }) + .appendTo(uiDialogTitlebar), + + uiDialogTitlebarCloseText = (this.uiDialogTitlebarCloseText = $('')) + .addClass( + 'ui-icon ' + + 'ui-icon-closethick' + ) + .text(options.closeText) + .appendTo(uiDialogTitlebarClose), + + uiDialogTitle = $('') + .addClass('ui-dialog-title') + .attr('id', titleId) + .html(title) + .prependTo(uiDialogTitlebar); + + uiDialogTitlebar.find("*").add(uiDialogTitlebar).disableSelection(); + + (options.draggable && $.fn.draggable && this._makeDraggable()); + (options.resizable && $.fn.resizable && this._makeResizable()); + + this._createButtons(options.buttons); + this._isOpen = false; + + (options.bgiframe && $.fn.bgiframe && uiDialog.bgiframe()); + (options.autoOpen && this.open()); + + }, + + destroy: function() { + (this.overlay && this.overlay.destroy()); + this.uiDialog.hide(); + this.element + .unbind('.dialog') + .removeData('dialog') + .removeClass('ui-dialog-content ui-widget-content') + .hide().appendTo('body'); + this.uiDialog.remove(); + + (this.originalTitle && this.element.attr('title', this.originalTitle)); + }, + + close: function(event) { + var self = this; + + if (false === self._trigger('beforeclose', event)) { + return; + } + + (self.overlay && self.overlay.destroy()); + self.uiDialog.unbind('keypress.ui-dialog'); + + (self.options.hide + ? self.uiDialog.hide(self.options.hide, function() { + self._trigger('close', event); + }) + : self.uiDialog.hide() && self._trigger('close', event)); + + $.ui.dialog.overlay.resize(); + + self._isOpen = false; + + // adjust the maxZ to allow other modal dialogs to continue to work (see #4309) + if (self.options.modal) { + var maxZ = 0; + $('.ui-dialog').each(function() { + if (this != self.uiDialog[0]) { + maxZ = Math.max(maxZ, $(this).css('z-index')); + } + }); + $.ui.dialog.maxZ = maxZ; + } + }, + + isOpen: function() { + return this._isOpen; + }, + + // the force parameter allows us to move modal dialogs to their correct + // position on open + moveToTop: function(force, event) { + + if ((this.options.modal && !force) + || (!this.options.stack && !this.options.modal)) { + return this._trigger('focus', event); + } + + if (this.options.zIndex > $.ui.dialog.maxZ) { + $.ui.dialog.maxZ = this.options.zIndex; + } + (this.overlay && this.overlay.$el.css('z-index', $.ui.dialog.overlay.maxZ = ++$.ui.dialog.maxZ)); + + //Save and then restore scroll since Opera 9.5+ resets when parent z-Index is changed. + // http://ui.jquery.com/bugs/ticket/3193 + var saveScroll = { scrollTop: this.element.attr('scrollTop'), scrollLeft: this.element.attr('scrollLeft') }; + this.uiDialog.css('z-index', ++$.ui.dialog.maxZ); + this.element.attr(saveScroll); + this._trigger('focus', event); + }, + + open: function() { + if (this._isOpen) { return; } + + var options = this.options, + uiDialog = this.uiDialog; + + this.overlay = options.modal ? new $.ui.dialog.overlay(this) : null; + (uiDialog.next().length && uiDialog.appendTo('body')); + this._size(); + this._position(options.position); + uiDialog.show(options.show); + this.moveToTop(true); + + // prevent tabbing out of modal dialogs + (options.modal && uiDialog.bind('keypress.ui-dialog', function(event) { + if (event.keyCode != $.ui.keyCode.TAB) { + return; + } + + var tabbables = $(':tabbable', this), + first = tabbables.filter(':first')[0], + last = tabbables.filter(':last')[0]; + + if (event.target == last && !event.shiftKey) { + setTimeout(function() { + first.focus(); + }, 1); + } else if (event.target == first && event.shiftKey) { + setTimeout(function() { + last.focus(); + }, 1); + } + })); + + // set focus to the first tabbable element in the content area or the first button + // if there are no tabbable elements, set focus on the dialog itself + $([]) + .add(uiDialog.find('.ui-dialog-content :tabbable:first')) + .add(uiDialog.find('.ui-dialog-buttonpane :tabbable:first')) + .add(uiDialog) + .filter(':first') + .focus(); + + this._trigger('open'); + this._isOpen = true; + }, + + _createButtons: function(buttons) { + var self = this, + hasButtons = false, + uiDialogButtonPane = $('
') + .addClass( + 'ui-dialog-buttonpane ' + + 'ui-widget-content ' + + 'ui-helper-clearfix' + ); + + // if we already have a button pane, remove it + this.uiDialog.find('.ui-dialog-buttonpane').remove(); + + (typeof buttons == 'object' && buttons !== null && + $.each(buttons, function() { return !(hasButtons = true); })); + if (hasButtons) { + $.each(buttons, function(name, fn) { + $('') + .addClass( + 'ui-state-default ' + + 'ui-corner-all' + ) + .text(name) + .click(function() { fn.apply(self.element[0], arguments); }) + .hover( + function() { + $(this).addClass('ui-state-hover'); + }, + function() { + $(this).removeClass('ui-state-hover'); + } + ) + .focus(function() { + $(this).addClass('ui-state-focus'); + }) + .blur(function() { + $(this).removeClass('ui-state-focus'); + }) + .appendTo(uiDialogButtonPane); + }); + uiDialogButtonPane.appendTo(this.uiDialog); + } + }, + + _makeDraggable: function() { + var self = this, + options = this.options, + heightBeforeDrag; + + this.uiDialog.draggable({ + cancel: '.ui-dialog-content', + handle: '.ui-dialog-titlebar', + containment: 'document', + start: function() { + heightBeforeDrag = options.height; + $(this).height($(this).height()).addClass("ui-dialog-dragging"); + (options.dragStart && options.dragStart.apply(self.element[0], arguments)); + }, + drag: function() { + (options.drag && options.drag.apply(self.element[0], arguments)); + }, + stop: function() { + $(this).removeClass("ui-dialog-dragging").height(heightBeforeDrag); + (options.dragStop && options.dragStop.apply(self.element[0], arguments)); + $.ui.dialog.overlay.resize(); + } + }); + }, + + _makeResizable: function(handles) { + handles = (handles === undefined ? this.options.resizable : handles); + var self = this, + options = this.options, + resizeHandles = typeof handles == 'string' + ? handles + : 'n,e,s,w,se,sw,ne,nw'; + + this.uiDialog.resizable({ + cancel: '.ui-dialog-content', + alsoResize: this.element, + maxWidth: options.maxWidth, + maxHeight: options.maxHeight, + minWidth: options.minWidth, + minHeight: options.minHeight, + start: function() { + $(this).addClass("ui-dialog-resizing"); + (options.resizeStart && options.resizeStart.apply(self.element[0], arguments)); + }, + resize: function() { + (options.resize && options.resize.apply(self.element[0], arguments)); + }, + handles: resizeHandles, + stop: function() { + $(this).removeClass("ui-dialog-resizing"); + options.height = $(this).height(); + options.width = $(this).width(); + (options.resizeStop && options.resizeStop.apply(self.element[0], arguments)); + $.ui.dialog.overlay.resize(); + } + }) + .find('.ui-resizable-se').addClass('ui-icon ui-icon-grip-diagonal-se'); + }, + + _position: function(pos) { + var wnd = $(window), doc = $(document), + pTop = doc.scrollTop(), pLeft = doc.scrollLeft(), + minTop = pTop; + + if ($.inArray(pos, ['center','top','right','bottom','left']) >= 0) { + pos = [ + pos == 'right' || pos == 'left' ? pos : 'center', + pos == 'top' || pos == 'bottom' ? pos : 'middle' + ]; + } + if (pos.constructor != Array) { + pos = ['center', 'middle']; + } + if (pos[0].constructor == Number) { + pLeft += pos[0]; + } else { + switch (pos[0]) { + case 'left': + pLeft += 0; + break; + case 'right': + pLeft += wnd.width() - this.uiDialog.outerWidth(); + break; + default: + case 'center': + pLeft += (wnd.width() - this.uiDialog.outerWidth()) / 2; + } + } + if (pos[1].constructor == Number) { + pTop += pos[1]; + } else { + switch (pos[1]) { + case 'top': + pTop += 0; + break; + case 'bottom': + pTop += wnd.height() - this.uiDialog.outerHeight(); + break; + default: + case 'middle': + pTop += (wnd.height() - this.uiDialog.outerHeight()) / 2; + } + } + + // prevent the dialog from being too high (make sure the titlebar + // is accessible) + pTop = Math.max(pTop, minTop); + this.uiDialog.css({top: pTop, left: pLeft}); + }, + + _setData: function(key, value){ + (setDataSwitch[key] && this.uiDialog.data(setDataSwitch[key], value)); + switch (key) { + case "buttons": + this._createButtons(value); + break; + case "closeText": + this.uiDialogTitlebarCloseText.text(value); + break; + case "dialogClass": + this.uiDialog + .removeClass(this.options.dialogClass) + .addClass(uiDialogClasses + value); + break; + case "draggable": + (value + ? this._makeDraggable() + : this.uiDialog.draggable('destroy')); + break; + case "height": + this.uiDialog.height(value); + break; + case "position": + this._position(value); + break; + case "resizable": + var uiDialog = this.uiDialog, + isResizable = this.uiDialog.is(':data(resizable)'); + + // currently resizable, becoming non-resizable + (isResizable && !value && uiDialog.resizable('destroy')); + + // currently resizable, changing handles + (isResizable && typeof value == 'string' && + uiDialog.resizable('option', 'handles', value)); + + // currently non-resizable, becoming resizable + (isResizable || this._makeResizable(value)); + break; + case "title": + $(".ui-dialog-title", this.uiDialogTitlebar).html(value || ' '); + break; + case "width": + this.uiDialog.width(value); + break; + } + + $.widget.prototype._setData.apply(this, arguments); + }, + + _size: function() { + /* If the user has resized the dialog, the .ui-dialog and .ui-dialog-content + * divs will both have width and height set, so we need to reset them + */ + var options = this.options; + + // reset content sizing + this.element.css({ + height: 0, + minHeight: 0, + width: 'auto' + }); + + // reset wrapper sizing + // determine the height of all the non-content elements + var nonContentHeight = this.uiDialog.css({ + height: 'auto', + width: options.width + }) + .height(); + + this.element + .css({ + minHeight: Math.max(options.minHeight - nonContentHeight, 0), + height: options.height == 'auto' + ? 'auto' + : Math.max(options.height - nonContentHeight, 0) + }); + } +}); + +$.extend($.ui.dialog, { + version: "1.7.3", + defaults: { + autoOpen: true, + bgiframe: false, + buttons: {}, + closeOnEscape: true, + closeText: 'close', + dialogClass: '', + draggable: true, + hide: null, + height: 'auto', + maxHeight: false, + maxWidth: false, + minHeight: 150, + minWidth: 150, + modal: false, + position: 'center', + resizable: true, + show: null, + stack: true, + title: '', + width: 300, + zIndex: 1000 + }, + + getter: 'isOpen', + + uuid: 0, + maxZ: 0, + + getTitleId: function($el) { + return 'ui-dialog-title-' + ($el.attr('id') || ++this.uuid); + }, + + overlay: function(dialog) { + this.$el = $.ui.dialog.overlay.create(dialog); + } +}); + +$.extend($.ui.dialog.overlay, { + instances: [], + maxZ: 0, + events: $.map('focus,mousedown,mouseup,keydown,keypress,click'.split(','), + function(event) { return event + '.dialog-overlay'; }).join(' '), + create: function(dialog) { + if (this.instances.length === 0) { + // prevent use of anchors and inputs + // we use a setTimeout in case the overlay is created from an + // event that we're going to be cancelling (see #2804) + setTimeout(function() { + // handle $(el).dialog().dialog('close') (see #4065) + if ($.ui.dialog.overlay.instances.length) { + $(document).bind($.ui.dialog.overlay.events, function(event) { + var dialogZ = $(event.target).parents('.ui-dialog').css('zIndex') || 0; + return (dialogZ > $.ui.dialog.overlay.maxZ); + }); + } + }, 1); + + // allow closing by pressing the escape key + $(document).bind('keydown.dialog-overlay', function(event) { + (dialog.options.closeOnEscape && event.keyCode + && event.keyCode == $.ui.keyCode.ESCAPE && dialog.close(event)); + }); + + // handle window resize + $(window).bind('resize.dialog-overlay', $.ui.dialog.overlay.resize); + } + + var $el = $('
').appendTo(document.body) + .addClass('ui-widget-overlay').css({ + width: this.width(), + height: this.height() + }); + + (dialog.options.bgiframe && $.fn.bgiframe && $el.bgiframe()); + + this.instances.push($el); + return $el; + }, + + destroy: function($el) { + this.instances.splice($.inArray(this.instances, $el), 1); + + if (this.instances.length === 0) { + $([document, window]).unbind('.dialog-overlay'); + } + + $el.remove(); + + // adjust the maxZ to allow other modal dialogs to continue to work (see #4309) + var maxZ = 0; + $.each(this.instances, function() { + maxZ = Math.max(maxZ, this.css('z-index')); + }); + this.maxZ = maxZ; + }, + + height: function() { + // handle IE 6 + if ($.browser.msie && $.browser.version < 7) { + var scrollHeight = Math.max( + document.documentElement.scrollHeight, + document.body.scrollHeight + ); + var offsetHeight = Math.max( + document.documentElement.offsetHeight, + document.body.offsetHeight + ); + + if (scrollHeight < offsetHeight) { + return $(window).height() + 'px'; + } else { + return scrollHeight + 'px'; + } + // handle "good" browsers + } else { + return $(document).height() + 'px'; + } + }, + + width: function() { + // handle IE 6 + if ($.browser.msie && $.browser.version < 7) { + var scrollWidth = Math.max( + document.documentElement.scrollWidth, + document.body.scrollWidth + ); + var offsetWidth = Math.max( + document.documentElement.offsetWidth, + document.body.offsetWidth + ); + + if (scrollWidth < offsetWidth) { + return $(window).width() + 'px'; + } else { + return scrollWidth + 'px'; + } + // handle "good" browsers + } else { + return $(document).width() + 'px'; + } + }, + + resize: function() { + /* If the dialog is draggable and the user drags it past the + * right edge of the window, the document becomes wider so we + * need to stretch the overlay. If the user then drags the + * dialog back to the left, the document will become narrower, + * so we need to shrink the overlay to the appropriate size. + * This is handled by shrinking the overlay before setting it + * to the full document size. + */ + var $overlays = $([]); + $.each($.ui.dialog.overlay.instances, function() { + $overlays = $overlays.add(this); + }); + + $overlays.css({ + width: 0, + height: 0 + }).css({ + width: $.ui.dialog.overlay.width(), + height: $.ui.dialog.overlay.height() + }); + } +}); + +$.extend($.ui.dialog.overlay.prototype, { + destroy: function() { + $.ui.dialog.overlay.destroy(this.$el); + } +}); + +})(jQuery); diff --git a/plugins/analysis/views/js/ui.draggable.js b/plugins/analysis/views/js/ui.draggable.js new file mode 100755 index 0000000000..2750b0b114 --- /dev/null +++ b/plugins/analysis/views/js/ui.draggable.js @@ -0,0 +1,766 @@ +/* + * jQuery UI Draggable 1.7.3 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Draggables + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.draggable", $.extend({}, $.ui.mouse, { + + _init: function() { + + if (this.options.helper == 'original' && !(/^(?:r|a|f)/).test(this.element.css("position"))) + this.element[0].style.position = 'relative'; + + (this.options.addClasses && this.element.addClass("ui-draggable")); + (this.options.disabled && this.element.addClass("ui-draggable-disabled")); + + this._mouseInit(); + + }, + + destroy: function() { + if(!this.element.data('draggable')) return; + this.element + .removeData("draggable") + .unbind(".draggable") + .removeClass("ui-draggable" + + " ui-draggable-dragging" + + " ui-draggable-disabled"); + this._mouseDestroy(); + }, + + _mouseCapture: function(event) { + + var o = this.options; + + if (this.helper || o.disabled || $(event.target).is('.ui-resizable-handle')) + return false; + + //Quit if we're not on a valid handle + this.handle = this._getHandle(event); + if (!this.handle) + return false; + + return true; + + }, + + _mouseStart: function(event) { + + var o = this.options; + + //Create and append the visible helper + this.helper = this._createHelper(event); + + //Cache the helper size + this._cacheHelperProportions(); + + //If ddmanager is used for droppables, set the global draggable + if($.ui.ddmanager) + $.ui.ddmanager.current = this; + + /* + * - Position generation - + * This block generates everything position related - it's the core of draggables. + */ + + //Cache the margins of the original element + this._cacheMargins(); + + //Store the helper's css position + this.cssPosition = this.helper.css("position"); + this.scrollParent = this.helper.scrollParent(); + + //The element's absolute position on the page minus margins + this.offset = this.element.offset(); + this.offset = { + top: this.offset.top - this.margins.top, + left: this.offset.left - this.margins.left + }; + + $.extend(this.offset, { + click: { //Where the click happened, relative to the element + left: event.pageX - this.offset.left, + top: event.pageY - this.offset.top + }, + parent: this._getParentOffset(), + relative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper + }); + + //Generate the original position + this.originalPosition = this._generatePosition(event); + this.originalPageX = event.pageX; + this.originalPageY = event.pageY; + + //Adjust the mouse offset relative to the helper if 'cursorAt' is supplied + if(o.cursorAt) + this._adjustOffsetFromHelper(o.cursorAt); + + //Set a containment if given in the options + if(o.containment) + this._setContainment(); + + //Call plugins and callbacks + this._trigger("start", event); + + //Recache the helper size + this._cacheHelperProportions(); + + //Prepare the droppable offsets + if ($.ui.ddmanager && !o.dropBehaviour) + $.ui.ddmanager.prepareOffsets(this, event); + + this.helper.addClass("ui-draggable-dragging"); + this._mouseDrag(event, true); //Execute the drag once - this causes the helper not to be visible before getting its correct position + return true; + }, + + _mouseDrag: function(event, noPropagation) { + + //Compute the helpers position + this.position = this._generatePosition(event); + this.positionAbs = this._convertPositionTo("absolute"); + + //Call plugins and callbacks and use the resulting position if something is returned + if (!noPropagation) { + var ui = this._uiHash(); + this._trigger('drag', event, ui); + this.position = ui.position; + } + + if(!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left+'px'; + if(!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top+'px'; + if($.ui.ddmanager) $.ui.ddmanager.drag(this, event); + + return false; + }, + + _mouseStop: function(event) { + + //If we are using droppables, inform the manager about the drop + var dropped = false; + if ($.ui.ddmanager && !this.options.dropBehaviour) + dropped = $.ui.ddmanager.drop(this, event); + + //if a drop comes from outside (a sortable) + if(this.dropped) { + dropped = this.dropped; + this.dropped = false; + } + + if((this.options.revert == "invalid" && !dropped) || (this.options.revert == "valid" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) { + var self = this; + $(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function() { + self._trigger("stop", event); + self._clear(); + }); + } else { + this._trigger("stop", event); + this._clear(); + } + + return false; + }, + + _getHandle: function(event) { + + var handle = !this.options.handle || !$(this.options.handle, this.element).length ? true : false; + $(this.options.handle, this.element) + .find("*") + .andSelf() + .each(function() { + if(this == event.target) handle = true; + }); + + return handle; + + }, + + _createHelper: function(event) { + + var o = this.options; + var helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event])) : (o.helper == 'clone' ? this.element.clone() : this.element); + + if(!helper.parents('body').length) + helper.appendTo((o.appendTo == 'parent' ? this.element[0].parentNode : o.appendTo)); + + if(helper[0] != this.element[0] && !(/(fixed|absolute)/).test(helper.css("position"))) + helper.css("position", "absolute"); + + return helper; + + }, + + _adjustOffsetFromHelper: function(obj) { + if(obj.left != undefined) this.offset.click.left = obj.left + this.margins.left; + if(obj.right != undefined) this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left; + if(obj.top != undefined) this.offset.click.top = obj.top + this.margins.top; + if(obj.bottom != undefined) this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top; + }, + + _getParentOffset: function() { + + //Get the offsetParent and cache its position + this.offsetParent = this.helper.offsetParent(); + var po = this.offsetParent.offset(); + + // This is a special case where we need to modify a offset calculated on start, since the following happened: + // 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent + // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that + // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag + if(this.cssPosition == 'absolute' && this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) { + po.left += this.scrollParent.scrollLeft(); + po.top += this.scrollParent.scrollTop(); + } + + if((this.offsetParent[0] == document.body) //This needs to be actually done for all browsers, since pageX/pageY includes this information + || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == 'html' && $.browser.msie)) //Ugly IE fix + po = { top: 0, left: 0 }; + + return { + top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"),10) || 0), + left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"),10) || 0) + }; + + }, + + _getRelativeOffset: function() { + + if(this.cssPosition == "relative") { + var p = this.element.position(); + return { + top: p.top - (parseInt(this.helper.css("top"),10) || 0) + this.scrollParent.scrollTop(), + left: p.left - (parseInt(this.helper.css("left"),10) || 0) + this.scrollParent.scrollLeft() + }; + } else { + return { top: 0, left: 0 }; + } + + }, + + _cacheMargins: function() { + this.margins = { + left: (parseInt(this.element.css("marginLeft"),10) || 0), + top: (parseInt(this.element.css("marginTop"),10) || 0) + }; + }, + + _cacheHelperProportions: function() { + this.helperProportions = { + width: this.helper.outerWidth(), + height: this.helper.outerHeight() + }; + }, + + _setContainment: function() { + + var o = this.options; + if(o.containment == 'parent') o.containment = this.helper[0].parentNode; + if(o.containment == 'document' || o.containment == 'window') this.containment = [ + 0 - this.offset.relative.left - this.offset.parent.left, + 0 - this.offset.relative.top - this.offset.parent.top, + $(o.containment == 'document' ? document : window).width() - this.helperProportions.width - this.margins.left, + ($(o.containment == 'document' ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top + ]; + + if(!(/^(document|window|parent)$/).test(o.containment) && o.containment.constructor != Array) { + var ce = $(o.containment)[0]; if(!ce) return; + var co = $(o.containment).offset(); + var over = ($(ce).css("overflow") != 'hidden'); + + this.containment = [ + co.left + (parseInt($(ce).css("borderLeftWidth"),10) || 0) + (parseInt($(ce).css("paddingLeft"),10) || 0) - this.margins.left, + co.top + (parseInt($(ce).css("borderTopWidth"),10) || 0) + (parseInt($(ce).css("paddingTop"),10) || 0) - this.margins.top, + co.left+(over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"),10) || 0) - (parseInt($(ce).css("paddingRight"),10) || 0) - this.helperProportions.width - this.margins.left, + co.top+(over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"),10) || 0) - (parseInt($(ce).css("paddingBottom"),10) || 0) - this.helperProportions.height - this.margins.top + ]; + } else if(o.containment.constructor == Array) { + this.containment = o.containment; + } + + }, + + _convertPositionTo: function(d, pos) { + + if(!pos) pos = this.position; + var mod = d == "absolute" ? 1 : -1; + var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); + + return { + top: ( + pos.top // The absolute mouse position + + this.offset.relative.top * mod // Only for relative positioned nodes: Relative offset from element to offset parent + + this.offset.parent.top * mod // The offsetParent's offset without borders (offset + border) + - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod) + ), + left: ( + pos.left // The absolute mouse position + + this.offset.relative.left * mod // Only for relative positioned nodes: Relative offset from element to offset parent + + this.offset.parent.left * mod // The offsetParent's offset without borders (offset + border) + - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod) + ) + }; + + }, + + _generatePosition: function(event) { + + var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); + + // This is another very weird special case that only happens for relative elements: + // 1. If the css position is relative + // 2. and the scroll parent is the document or similar to the offset parent + // we have to refresh the relative offset during the scroll so there are no jumps + if(this.cssPosition == 'relative' && !(this.scrollParent[0] != document && this.scrollParent[0] != this.offsetParent[0])) { + this.offset.relative = this._getRelativeOffset(); + } + + var pageX = event.pageX; + var pageY = event.pageY; + + /* + * - Position constraining - + * Constrain the position to a mix of grid, containment. + */ + + if(this.originalPosition) { //If we are not dragging yet, we won't check for options + + if(this.containment) { + if(event.pageX - this.offset.click.left < this.containment[0]) pageX = this.containment[0] + this.offset.click.left; + if(event.pageY - this.offset.click.top < this.containment[1]) pageY = this.containment[1] + this.offset.click.top; + if(event.pageX - this.offset.click.left > this.containment[2]) pageX = this.containment[2] + this.offset.click.left; + if(event.pageY - this.offset.click.top > this.containment[3]) pageY = this.containment[3] + this.offset.click.top; + } + + if(o.grid) { + var top = this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1]; + pageY = this.containment ? (!(top - this.offset.click.top < this.containment[1] || top - this.offset.click.top > this.containment[3]) ? top : (!(top - this.offset.click.top < this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top; + + var left = this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0]; + pageX = this.containment ? (!(left - this.offset.click.left < this.containment[0] || left - this.offset.click.left > this.containment[2]) ? left : (!(left - this.offset.click.left < this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left; + } + + } + + return { + top: ( + pageY // The absolute mouse position + - this.offset.click.top // Click offset (relative to the element) + - this.offset.relative.top // Only for relative positioned nodes: Relative offset from element to offset parent + - this.offset.parent.top // The offsetParent's offset without borders (offset + border) + + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) )) + ), + left: ( + pageX // The absolute mouse position + - this.offset.click.left // Click offset (relative to the element) + - this.offset.relative.left // Only for relative positioned nodes: Relative offset from element to offset parent + - this.offset.parent.left // The offsetParent's offset without borders (offset + border) + + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() )) + ) + }; + + }, + + _clear: function() { + this.helper.removeClass("ui-draggable-dragging"); + if(this.helper[0] != this.element[0] && !this.cancelHelperRemoval) this.helper.remove(); + //if($.ui.ddmanager) $.ui.ddmanager.current = null; + this.helper = null; + this.cancelHelperRemoval = false; + }, + + // From now on bulk stuff - mainly helpers + + _trigger: function(type, event, ui) { + ui = ui || this._uiHash(); + $.ui.plugin.call(this, type, [event, ui]); + if(type == "drag") this.positionAbs = this._convertPositionTo("absolute"); //The absolute position has to be recalculated after plugins + return $.widget.prototype._trigger.call(this, type, event, ui); + }, + + plugins: {}, + + _uiHash: function(event) { + return { + helper: this.helper, + position: this.position, + absolutePosition: this.positionAbs, //deprecated + offset: this.positionAbs + }; + } + +})); + +$.extend($.ui.draggable, { + version: "1.7.3", + eventPrefix: "drag", + defaults: { + addClasses: true, + appendTo: "parent", + axis: false, + cancel: ":input,option", + connectToSortable: false, + containment: false, + cursor: "auto", + cursorAt: false, + delay: 0, + distance: 1, + grid: false, + handle: false, + helper: "original", + iframeFix: false, + opacity: false, + refreshPositions: false, + revert: false, + revertDuration: 500, + scope: "default", + scroll: true, + scrollSensitivity: 20, + scrollSpeed: 20, + snap: false, + snapMode: "both", + snapTolerance: 20, + stack: false, + zIndex: false + } +}); + +$.ui.plugin.add("draggable", "connectToSortable", { + start: function(event, ui) { + + var inst = $(this).data("draggable"), o = inst.options, + uiSortable = $.extend({}, ui, { item: inst.element }); + inst.sortables = []; + $(o.connectToSortable).each(function() { + var sortable = $.data(this, 'sortable'); + if (sortable && !sortable.options.disabled) { + inst.sortables.push({ + instance: sortable, + shouldRevert: sortable.options.revert + }); + sortable._refreshItems(); //Do a one-time refresh at start to refresh the containerCache + sortable._trigger("activate", event, uiSortable); + } + }); + + }, + stop: function(event, ui) { + + //If we are still over the sortable, we fake the stop event of the sortable, but also remove helper + var inst = $(this).data("draggable"), + uiSortable = $.extend({}, ui, { item: inst.element }); + + $.each(inst.sortables, function() { + if(this.instance.isOver) { + + this.instance.isOver = 0; + + inst.cancelHelperRemoval = true; //Don't remove the helper in the draggable instance + this.instance.cancelHelperRemoval = false; //Remove it in the sortable instance (so sortable plugins like revert still work) + + //The sortable revert is supported, and we have to set a temporary dropped variable on the draggable to support revert: 'valid/invalid' + if(this.shouldRevert) this.instance.options.revert = true; + + //Trigger the stop of the sortable + this.instance._mouseStop(event); + + this.instance.options.helper = this.instance.options._helper; + + //If the helper has been the original item, restore properties in the sortable + if(inst.options.helper == 'original') + this.instance.currentItem.css({ top: 'auto', left: 'auto' }); + + } else { + this.instance.cancelHelperRemoval = false; //Remove the helper in the sortable instance + this.instance._trigger("deactivate", event, uiSortable); + } + + }); + + }, + drag: function(event, ui) { + + var inst = $(this).data("draggable"), self = this; + + var checkPos = function(o) { + var dyClick = this.offset.click.top, dxClick = this.offset.click.left; + var helperTop = this.positionAbs.top, helperLeft = this.positionAbs.left; + var itemHeight = o.height, itemWidth = o.width; + var itemTop = o.top, itemLeft = o.left; + + return $.ui.isOver(helperTop + dyClick, helperLeft + dxClick, itemTop, itemLeft, itemHeight, itemWidth); + }; + + $.each(inst.sortables, function(i) { + + //Copy over some variables to allow calling the sortable's native _intersectsWith + this.instance.positionAbs = inst.positionAbs; + this.instance.helperProportions = inst.helperProportions; + this.instance.offset.click = inst.offset.click; + + if(this.instance._intersectsWith(this.instance.containerCache)) { + + //If it intersects, we use a little isOver variable and set it once, so our move-in stuff gets fired only once + if(!this.instance.isOver) { + + this.instance.isOver = 1; + //Now we fake the start of dragging for the sortable instance, + //by cloning the list group item, appending it to the sortable and using it as inst.currentItem + //We can then fire the start event of the sortable with our passed browser event, and our own helper (so it doesn't create a new one) + this.instance.currentItem = $(self).clone().appendTo(this.instance.element).data("sortable-item", true); + this.instance.options._helper = this.instance.options.helper; //Store helper option to later restore it + this.instance.options.helper = function() { return ui.helper[0]; }; + + event.target = this.instance.currentItem[0]; + this.instance._mouseCapture(event, true); + this.instance._mouseStart(event, true, true); + + //Because the browser event is way off the new appended portlet, we modify a couple of variables to reflect the changes + this.instance.offset.click.top = inst.offset.click.top; + this.instance.offset.click.left = inst.offset.click.left; + this.instance.offset.parent.left -= inst.offset.parent.left - this.instance.offset.parent.left; + this.instance.offset.parent.top -= inst.offset.parent.top - this.instance.offset.parent.top; + + inst._trigger("toSortable", event); + inst.dropped = this.instance.element; //draggable revert needs that + //hack so receive/update callbacks work (mostly) + inst.currentItem = inst.element; + this.instance.fromOutside = inst; + + } + + //Provided we did all the previous steps, we can fire the drag event of the sortable on every draggable drag, when it intersects with the sortable + if(this.instance.currentItem) this.instance._mouseDrag(event); + + } else { + + //If it doesn't intersect with the sortable, and it intersected before, + //we fake the drag stop of the sortable, but make sure it doesn't remove the helper by using cancelHelperRemoval + if(this.instance.isOver) { + + this.instance.isOver = 0; + this.instance.cancelHelperRemoval = true; + + //Prevent reverting on this forced stop + this.instance.options.revert = false; + + // The out event needs to be triggered independently + this.instance._trigger('out', event, this.instance._uiHash(this.instance)); + + this.instance._mouseStop(event, true); + this.instance.options.helper = this.instance.options._helper; + + //Now we remove our currentItem, the list group clone again, and the placeholder, and animate the helper back to it's original size + this.instance.currentItem.remove(); + if(this.instance.placeholder) this.instance.placeholder.remove(); + + inst._trigger("fromSortable", event); + inst.dropped = false; //draggable revert needs that + } + + }; + + }); + + } +}); + +$.ui.plugin.add("draggable", "cursor", { + start: function(event, ui) { + var t = $('body'), o = $(this).data('draggable').options; + if (t.css("cursor")) o._cursor = t.css("cursor"); + t.css("cursor", o.cursor); + }, + stop: function(event, ui) { + var o = $(this).data('draggable').options; + if (o._cursor) $('body').css("cursor", o._cursor); + } +}); + +$.ui.plugin.add("draggable", "iframeFix", { + start: function(event, ui) { + var o = $(this).data('draggable').options; + $(o.iframeFix === true ? "iframe" : o.iframeFix).each(function() { + $('
') + .css({ + width: this.offsetWidth+"px", height: this.offsetHeight+"px", + position: "absolute", opacity: "0.001", zIndex: 1000 + }) + .css($(this).offset()) + .appendTo("body"); + }); + }, + stop: function(event, ui) { + $("div.ui-draggable-iframeFix").each(function() { this.parentNode.removeChild(this); }); //Remove frame helpers + } +}); + +$.ui.plugin.add("draggable", "opacity", { + start: function(event, ui) { + var t = $(ui.helper), o = $(this).data('draggable').options; + if(t.css("opacity")) o._opacity = t.css("opacity"); + t.css('opacity', o.opacity); + }, + stop: function(event, ui) { + var o = $(this).data('draggable').options; + if(o._opacity) $(ui.helper).css('opacity', o._opacity); + } +}); + +$.ui.plugin.add("draggable", "scroll", { + start: function(event, ui) { + var i = $(this).data("draggable"); + if(i.scrollParent[0] != document && i.scrollParent[0].tagName != 'HTML') i.overflowOffset = i.scrollParent.offset(); + }, + drag: function(event, ui) { + + var i = $(this).data("draggable"), o = i.options, scrolled = false; + + if(i.scrollParent[0] != document && i.scrollParent[0].tagName != 'HTML') { + + if(!o.axis || o.axis != 'x') { + if((i.overflowOffset.top + i.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) + i.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop + o.scrollSpeed; + else if(event.pageY - i.overflowOffset.top < o.scrollSensitivity) + i.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop - o.scrollSpeed; + } + + if(!o.axis || o.axis != 'y') { + if((i.overflowOffset.left + i.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) + i.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft + o.scrollSpeed; + else if(event.pageX - i.overflowOffset.left < o.scrollSensitivity) + i.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft - o.scrollSpeed; + } + + } else { + + if(!o.axis || o.axis != 'x') { + if(event.pageY - $(document).scrollTop() < o.scrollSensitivity) + scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed); + else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) + scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed); + } + + if(!o.axis || o.axis != 'y') { + if(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) + scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed); + else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) + scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed); + } + + } + + if(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) + $.ui.ddmanager.prepareOffsets(i, event); + + } +}); + +$.ui.plugin.add("draggable", "snap", { + start: function(event, ui) { + + var i = $(this).data("draggable"), o = i.options; + i.snapElements = []; + + $(o.snap.constructor != String ? ( o.snap.items || ':data(draggable)' ) : o.snap).each(function() { + var $t = $(this); var $o = $t.offset(); + if(this != i.element[0]) i.snapElements.push({ + item: this, + width: $t.outerWidth(), height: $t.outerHeight(), + top: $o.top, left: $o.left + }); + }); + + }, + drag: function(event, ui) { + + var inst = $(this).data("draggable"), o = inst.options; + var d = o.snapTolerance; + + var x1 = ui.offset.left, x2 = x1 + inst.helperProportions.width, + y1 = ui.offset.top, y2 = y1 + inst.helperProportions.height; + + for (var i = inst.snapElements.length - 1; i >= 0; i--){ + + var l = inst.snapElements[i].left, r = l + inst.snapElements[i].width, + t = inst.snapElements[i].top, b = t + inst.snapElements[i].height; + + //Yes, I know, this is insane ;) + if(!((l-d < x1 && x1 < r+d && t-d < y1 && y1 < b+d) || (l-d < x1 && x1 < r+d && t-d < y2 && y2 < b+d) || (l-d < x2 && x2 < r+d && t-d < y1 && y1 < b+d) || (l-d < x2 && x2 < r+d && t-d < y2 && y2 < b+d))) { + if(inst.snapElements[i].snapping) (inst.options.snap.release && inst.options.snap.release.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item }))); + inst.snapElements[i].snapping = false; + continue; + } + + if(o.snapMode != 'inner') { + var ts = Math.abs(t - y2) <= d; + var bs = Math.abs(b - y1) <= d; + var ls = Math.abs(l - x2) <= d; + var rs = Math.abs(r - x1) <= d; + if(ts) ui.position.top = inst._convertPositionTo("relative", { top: t - inst.helperProportions.height, left: 0 }).top - inst.margins.top; + if(bs) ui.position.top = inst._convertPositionTo("relative", { top: b, left: 0 }).top - inst.margins.top; + if(ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l - inst.helperProportions.width }).left - inst.margins.left; + if(rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r }).left - inst.margins.left; + } + + var first = (ts || bs || ls || rs); + + if(o.snapMode != 'outer') { + var ts = Math.abs(t - y1) <= d; + var bs = Math.abs(b - y2) <= d; + var ls = Math.abs(l - x1) <= d; + var rs = Math.abs(r - x2) <= d; + if(ts) ui.position.top = inst._convertPositionTo("relative", { top: t, left: 0 }).top - inst.margins.top; + if(bs) ui.position.top = inst._convertPositionTo("relative", { top: b - inst.helperProportions.height, left: 0 }).top - inst.margins.top; + if(ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l }).left - inst.margins.left; + if(rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r - inst.helperProportions.width }).left - inst.margins.left; + } + + if(!inst.snapElements[i].snapping && (ts || bs || ls || rs || first)) + (inst.options.snap.snap && inst.options.snap.snap.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item }))); + inst.snapElements[i].snapping = (ts || bs || ls || rs || first); + + }; + + } +}); + +$.ui.plugin.add("draggable", "stack", { + start: function(event, ui) { + + var o = $(this).data("draggable").options; + + var group = $.makeArray($(o.stack.group)).sort(function(a,b) { + return (parseInt($(a).css("zIndex"),10) || o.stack.min) - (parseInt($(b).css("zIndex"),10) || o.stack.min); + }); + + $(group).each(function(i) { + this.style.zIndex = o.stack.min + i; + }); + + this[0].style.zIndex = o.stack.min + group.length; + + } +}); + +$.ui.plugin.add("draggable", "zIndex", { + start: function(event, ui) { + var t = $(ui.helper), o = $(this).data("draggable").options; + if(t.css("zIndex")) o._zIndex = t.css("zIndex"); + t.css('zIndex', o.zIndex); + }, + stop: function(event, ui) { + var o = $(this).data("draggable").options; + if(o._zIndex) $(ui.helper).css('zIndex', o._zIndex); + } +}); + +})(jQuery); diff --git a/plugins/analysis/views/js/ui.resizable.js b/plugins/analysis/views/js/ui.resizable.js new file mode 100755 index 0000000000..85d582bdd4 --- /dev/null +++ b/plugins/analysis/views/js/ui.resizable.js @@ -0,0 +1,800 @@ +/* + * jQuery UI Resizable 1.7.3 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Resizables + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.resizable", $.extend({}, $.ui.mouse, { + + _init: function() { + + var self = this, o = this.options; + this.element.addClass("ui-resizable"); + + $.extend(this, { + _aspectRatio: !!(o.aspectRatio), + aspectRatio: o.aspectRatio, + originalElement: this.element, + _proportionallyResizeElements: [], + _helper: o.helper || o.ghost || o.animate ? o.helper || 'ui-resizable-helper' : null + }); + + //Wrap the element if it cannot hold child nodes + if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)) { + + //Opera fix for relative positioning + if (/relative/.test(this.element.css('position')) && $.browser.opera) + this.element.css({ position: 'relative', top: 'auto', left: 'auto' }); + + //Create a wrapper element and set the wrapper to the new current internal element + this.element.wrap( + $('
').css({ + position: this.element.css('position'), + width: this.element.outerWidth(), + height: this.element.outerHeight(), + top: this.element.css('top'), + left: this.element.css('left') + }) + ); + + //Overwrite the original this.element + this.element = this.element.parent().data( + "resizable", this.element.data('resizable') + ); + + this.elementIsWrapper = true; + + //Move margins to the wrapper + this.element.css({ marginLeft: this.originalElement.css("marginLeft"), marginTop: this.originalElement.css("marginTop"), marginRight: this.originalElement.css("marginRight"), marginBottom: this.originalElement.css("marginBottom") }); + this.originalElement.css({ marginLeft: 0, marginTop: 0, marginRight: 0, marginBottom: 0}); + + //Prevent Safari textarea resize + this.originalResizeStyle = this.originalElement.css('resize'); + this.originalElement.css('resize', 'none'); + + //Push the actual element to our proportionallyResize internal array + this._proportionallyResizeElements.push(this.originalElement.css({ position: 'static', zoom: 1, display: 'block' })); + + // avoid IE jump (hard set the margin) + this.originalElement.css({ margin: this.originalElement.css('margin') }); + + // fix handlers offset + this._proportionallyResize(); + + } + + this.handles = o.handles || (!$('.ui-resizable-handle', this.element).length ? "e,s,se" : { n: '.ui-resizable-n', e: '.ui-resizable-e', s: '.ui-resizable-s', w: '.ui-resizable-w', se: '.ui-resizable-se', sw: '.ui-resizable-sw', ne: '.ui-resizable-ne', nw: '.ui-resizable-nw' }); + if(this.handles.constructor == String) { + + if(this.handles == 'all') this.handles = 'n,e,s,w,se,sw,ne,nw'; + var n = this.handles.split(","); this.handles = {}; + + for(var i = 0; i < n.length; i++) { + + var handle = $.trim(n[i]), hname = 'ui-resizable-'+handle; + var axis = $('
'); + + // increase zIndex of sw, se, ne, nw axis + //TODO : this modifies original option + if(/sw|se|ne|nw/.test(handle)) axis.css({ zIndex: ++o.zIndex }); + + //TODO : What's going on here? + if ('se' == handle) { + axis.addClass('ui-icon ui-icon-gripsmall-diagonal-se'); + }; + + //Insert into internal handles object and append to element + this.handles[handle] = '.ui-resizable-'+handle; + this.element.append(axis); + } + + } + + this._renderAxis = function(target) { + + target = target || this.element; + + for(var i in this.handles) { + + if(this.handles[i].constructor == String) + this.handles[i] = $(this.handles[i], this.element).show(); + + //Apply pad to wrapper element, needed to fix axis position (textarea, inputs, scrolls) + if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/textarea|input|select|button/i)) { + + var axis = $(this.handles[i], this.element), padWrapper = 0; + + //Checking the correct pad and border + padWrapper = /sw|ne|nw|se|n|s/.test(i) ? axis.outerHeight() : axis.outerWidth(); + + //The padding type i have to apply... + var padPos = [ 'padding', + /ne|nw|n/.test(i) ? 'Top' : + /se|sw|s/.test(i) ? 'Bottom' : + /^e$/.test(i) ? 'Right' : 'Left' ].join(""); + + target.css(padPos, padWrapper); + + this._proportionallyResize(); + + } + + //TODO: What's that good for? There's not anything to be executed left + if(!$(this.handles[i]).length) + continue; + + } + }; + + //TODO: make renderAxis a prototype function + this._renderAxis(this.element); + + this._handles = $('.ui-resizable-handle', this.element) + .disableSelection(); + + //Matching axis name + this._handles.mouseover(function() { + if (!self.resizing) { + if (this.className) + var axis = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i); + //Axis, default = se + self.axis = axis && axis[1] ? axis[1] : 'se'; + } + }); + + //If we want to auto hide the elements + if (o.autoHide) { + this._handles.hide(); + $(this.element) + .addClass("ui-resizable-autohide") + .hover(function() { + $(this).removeClass("ui-resizable-autohide"); + self._handles.show(); + }, + function(){ + if (!self.resizing) { + $(this).addClass("ui-resizable-autohide"); + self._handles.hide(); + } + }); + } + + //Initialize the mouse interaction + this._mouseInit(); + + }, + + destroy: function() { + + this._mouseDestroy(); + + var _destroy = function(exp) { + $(exp).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing") + .removeData("resizable").unbind(".resizable").find('.ui-resizable-handle').remove(); + }; + + //TODO: Unwrap at same DOM position + if (this.elementIsWrapper) { + _destroy(this.element); + var wrapper = this.element; + wrapper.parent().append( + this.originalElement.css({ + position: wrapper.css('position'), + width: wrapper.outerWidth(), + height: wrapper.outerHeight(), + top: wrapper.css('top'), + left: wrapper.css('left') + }) + ).end().remove(); + } + + this.originalElement.css('resize', this.originalResizeStyle); + _destroy(this.originalElement); + + }, + + _mouseCapture: function(event) { + + var handle = false; + for(var i in this.handles) { + if($(this.handles[i])[0] == event.target) handle = true; + } + + return this.options.disabled || !!handle; + + }, + + _mouseStart: function(event) { + + var o = this.options, iniPos = this.element.position(), el = this.element; + + this.resizing = true; + this.documentScroll = { top: $(document).scrollTop(), left: $(document).scrollLeft() }; + + // bugfix for http://dev.jquery.com/ticket/1749 + if (el.is('.ui-draggable') || (/absolute/).test(el.css('position'))) { + el.css({ position: 'absolute', top: iniPos.top, left: iniPos.left }); + } + + //Opera fixing relative position + if ($.browser.opera && (/relative/).test(el.css('position'))) + el.css({ position: 'relative', top: 'auto', left: 'auto' }); + + this._renderProxy(); + + var curleft = num(this.helper.css('left')), curtop = num(this.helper.css('top')); + + if (o.containment) { + curleft += $(o.containment).scrollLeft() || 0; + curtop += $(o.containment).scrollTop() || 0; + } + + //Store needed variables + this.offset = this.helper.offset(); + this.position = { left: curleft, top: curtop }; + this.size = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() }; + this.originalSize = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() }; + this.originalPosition = { left: curleft, top: curtop }; + this.sizeDiff = { width: el.outerWidth() - el.width(), height: el.outerHeight() - el.height() }; + this.originalMousePosition = { left: event.pageX, top: event.pageY }; + + //Aspect Ratio + this.aspectRatio = (typeof o.aspectRatio == 'number') ? o.aspectRatio : ((this.originalSize.width / this.originalSize.height) || 1); + + var cursor = $('.ui-resizable-' + this.axis).css('cursor'); + $('body').css('cursor', cursor == 'auto' ? this.axis + '-resize' : cursor); + + el.addClass("ui-resizable-resizing"); + this._propagate("start", event); + return true; + }, + + _mouseDrag: function(event) { + + //Increase performance, avoid regex + var el = this.helper, o = this.options, props = {}, + self = this, smp = this.originalMousePosition, a = this.axis; + + var dx = (event.pageX-smp.left)||0, dy = (event.pageY-smp.top)||0; + var trigger = this._change[a]; + if (!trigger) return false; + + // Calculate the attrs that will be change + var data = trigger.apply(this, [event, dx, dy]), ie6 = $.browser.msie && $.browser.version < 7, csdif = this.sizeDiff; + + if (this._aspectRatio || event.shiftKey) + data = this._updateRatio(data, event); + + data = this._respectSize(data, event); + + // plugins callbacks need to be called first + this._propagate("resize", event); + + el.css({ + top: this.position.top + "px", left: this.position.left + "px", + width: this.size.width + "px", height: this.size.height + "px" + }); + + if (!this._helper && this._proportionallyResizeElements.length) + this._proportionallyResize(); + + this._updateCache(data); + + // calling the user callback at the end + this._trigger('resize', event, this.ui()); + + return false; + }, + + _mouseStop: function(event) { + + this.resizing = false; + var o = this.options, self = this; + + if(this._helper) { + var pr = this._proportionallyResizeElements, ista = pr.length && (/textarea/i).test(pr[0].nodeName), + soffseth = ista && $.ui.hasScroll(pr[0], 'left') /* TODO - jump height */ ? 0 : self.sizeDiff.height, + soffsetw = ista ? 0 : self.sizeDiff.width; + + var s = { width: (self.size.width - soffsetw), height: (self.size.height - soffseth) }, + left = (parseInt(self.element.css('left'), 10) + (self.position.left - self.originalPosition.left)) || null, + top = (parseInt(self.element.css('top'), 10) + (self.position.top - self.originalPosition.top)) || null; + + if (!o.animate) + this.element.css($.extend(s, { top: top, left: left })); + + self.helper.height(self.size.height); + self.helper.width(self.size.width); + + if (this._helper && !o.animate) this._proportionallyResize(); + } + + $('body').css('cursor', 'auto'); + + this.element.removeClass("ui-resizable-resizing"); + + this._propagate("stop", event); + + if (this._helper) this.helper.remove(); + return false; + + }, + + _updateCache: function(data) { + var o = this.options; + this.offset = this.helper.offset(); + if (isNumber(data.left)) this.position.left = data.left; + if (isNumber(data.top)) this.position.top = data.top; + if (isNumber(data.height)) this.size.height = data.height; + if (isNumber(data.width)) this.size.width = data.width; + }, + + _updateRatio: function(data, event) { + + var o = this.options, cpos = this.position, csize = this.size, a = this.axis; + + if (data.height) data.width = (csize.height * this.aspectRatio); + else if (data.width) data.height = (csize.width / this.aspectRatio); + + if (a == 'sw') { + data.left = cpos.left + (csize.width - data.width); + data.top = null; + } + if (a == 'nw') { + data.top = cpos.top + (csize.height - data.height); + data.left = cpos.left + (csize.width - data.width); + } + + return data; + }, + + _respectSize: function(data, event) { + + var el = this.helper, o = this.options, pRatio = this._aspectRatio || event.shiftKey, a = this.axis, + ismaxw = isNumber(data.width) && o.maxWidth && (o.maxWidth < data.width), ismaxh = isNumber(data.height) && o.maxHeight && (o.maxHeight < data.height), + isminw = isNumber(data.width) && o.minWidth && (o.minWidth > data.width), isminh = isNumber(data.height) && o.minHeight && (o.minHeight > data.height); + + if (isminw) data.width = o.minWidth; + if (isminh) data.height = o.minHeight; + if (ismaxw) data.width = o.maxWidth; + if (ismaxh) data.height = o.maxHeight; + + var dw = this.originalPosition.left + this.originalSize.width, dh = this.position.top + this.size.height; + var cw = /sw|nw|w/.test(a), ch = /nw|ne|n/.test(a); + + if (isminw && cw) data.left = dw - o.minWidth; + if (ismaxw && cw) data.left = dw - o.maxWidth; + if (isminh && ch) data.top = dh - o.minHeight; + if (ismaxh && ch) data.top = dh - o.maxHeight; + + // fixing jump error on top/left - bug #2330 + var isNotwh = !data.width && !data.height; + if (isNotwh && !data.left && data.top) data.top = null; + else if (isNotwh && !data.top && data.left) data.left = null; + + return data; + }, + + _proportionallyResize: function() { + + var o = this.options; + if (!this._proportionallyResizeElements.length) return; + var element = this.helper || this.element; + + for (var i=0; i < this._proportionallyResizeElements.length; i++) { + + var prel = this._proportionallyResizeElements[i]; + + if (!this.borderDif) { + var b = [prel.css('borderTopWidth'), prel.css('borderRightWidth'), prel.css('borderBottomWidth'), prel.css('borderLeftWidth')], + p = [prel.css('paddingTop'), prel.css('paddingRight'), prel.css('paddingBottom'), prel.css('paddingLeft')]; + + this.borderDif = $.map(b, function(v, i) { + var border = parseInt(v,10)||0, padding = parseInt(p[i],10)||0; + return border + padding; + }); + } + + if ($.browser.msie && !(!($(element).is(':hidden') || $(element).parents(':hidden').length))) + continue; + + prel.css({ + height: (element.height() - this.borderDif[0] - this.borderDif[2]) || 0, + width: (element.width() - this.borderDif[1] - this.borderDif[3]) || 0 + }); + + }; + + }, + + _renderProxy: function() { + + var el = this.element, o = this.options; + this.elementOffset = el.offset(); + + if(this._helper) { + + this.helper = this.helper || $('
'); + + // fix ie6 offset TODO: This seems broken + var ie6 = $.browser.msie && $.browser.version < 7, ie6offset = (ie6 ? 1 : 0), + pxyoffset = ( ie6 ? 2 : -1 ); + + this.helper.addClass(this._helper).css({ + width: this.element.outerWidth() + pxyoffset, + height: this.element.outerHeight() + pxyoffset, + position: 'absolute', + left: this.elementOffset.left - ie6offset +'px', + top: this.elementOffset.top - ie6offset +'px', + zIndex: ++o.zIndex //TODO: Don't modify option + }); + + this.helper + .appendTo("body") + .disableSelection(); + + } else { + this.helper = this.element; + } + + }, + + _change: { + e: function(event, dx, dy) { + return { width: this.originalSize.width + dx }; + }, + w: function(event, dx, dy) { + var o = this.options, cs = this.originalSize, sp = this.originalPosition; + return { left: sp.left + dx, width: cs.width - dx }; + }, + n: function(event, dx, dy) { + var o = this.options, cs = this.originalSize, sp = this.originalPosition; + return { top: sp.top + dy, height: cs.height - dy }; + }, + s: function(event, dx, dy) { + return { height: this.originalSize.height + dy }; + }, + se: function(event, dx, dy) { + return $.extend(this._change.s.apply(this, arguments), this._change.e.apply(this, [event, dx, dy])); + }, + sw: function(event, dx, dy) { + return $.extend(this._change.s.apply(this, arguments), this._change.w.apply(this, [event, dx, dy])); + }, + ne: function(event, dx, dy) { + return $.extend(this._change.n.apply(this, arguments), this._change.e.apply(this, [event, dx, dy])); + }, + nw: function(event, dx, dy) { + return $.extend(this._change.n.apply(this, arguments), this._change.w.apply(this, [event, dx, dy])); + } + }, + + _propagate: function(n, event) { + $.ui.plugin.call(this, n, [event, this.ui()]); + (n != "resize" && this._trigger(n, event, this.ui())); + }, + + plugins: {}, + + ui: function() { + return { + originalElement: this.originalElement, + element: this.element, + helper: this.helper, + position: this.position, + size: this.size, + originalSize: this.originalSize, + originalPosition: this.originalPosition + }; + } + +})); + +$.extend($.ui.resizable, { + version: "1.7.3", + eventPrefix: "resize", + defaults: { + alsoResize: false, + animate: false, + animateDuration: "slow", + animateEasing: "swing", + aspectRatio: false, + autoHide: false, + cancel: ":input,option", + containment: false, + delay: 0, + distance: 1, + ghost: false, + grid: false, + handles: "e,s,se", + helper: false, + maxHeight: null, + maxWidth: null, + minHeight: 10, + minWidth: 10, + zIndex: 1000 + } +}); + +/* + * Resizable Extensions + */ + +$.ui.plugin.add("resizable", "alsoResize", { + + start: function(event, ui) { + + var self = $(this).data("resizable"), o = self.options; + + _store = function(exp) { + $(exp).each(function() { + $(this).data("resizable-alsoresize", { + width: parseInt($(this).width(), 10), height: parseInt($(this).height(), 10), + left: parseInt($(this).css('left'), 10), top: parseInt($(this).css('top'), 10) + }); + }); + }; + + if (typeof(o.alsoResize) == 'object' && !o.alsoResize.parentNode) { + if (o.alsoResize.length) { o.alsoResize = o.alsoResize[0]; _store(o.alsoResize); } + else { $.each(o.alsoResize, function(exp, c) { _store(exp); }); } + }else{ + _store(o.alsoResize); + } + }, + + resize: function(event, ui){ + var self = $(this).data("resizable"), o = self.options, os = self.originalSize, op = self.originalPosition; + + var delta = { + height: (self.size.height - os.height) || 0, width: (self.size.width - os.width) || 0, + top: (self.position.top - op.top) || 0, left: (self.position.left - op.left) || 0 + }, + + _alsoResize = function(exp, c) { + $(exp).each(function() { + var el = $(this), start = $(this).data("resizable-alsoresize"), style = {}, css = c && c.length ? c : ['width', 'height', 'top', 'left']; + + $.each(css || ['width', 'height', 'top', 'left'], function(i, prop) { + var sum = (start[prop]||0) + (delta[prop]||0); + if (sum && sum >= 0) + style[prop] = sum || null; + }); + + //Opera fixing relative position + if (/relative/.test(el.css('position')) && $.browser.opera) { + self._revertToRelativePosition = true; + el.css({ position: 'absolute', top: 'auto', left: 'auto' }); + } + + el.css(style); + }); + }; + + if (typeof(o.alsoResize) == 'object' && !o.alsoResize.nodeType) { + $.each(o.alsoResize, function(exp, c) { _alsoResize(exp, c); }); + }else{ + _alsoResize(o.alsoResize); + } + }, + + stop: function(event, ui){ + var self = $(this).data("resizable"); + + //Opera fixing relative position + if (self._revertToRelativePosition && $.browser.opera) { + self._revertToRelativePosition = false; + el.css({ position: 'relative' }); + } + + $(this).removeData("resizable-alsoresize-start"); + } +}); + +$.ui.plugin.add("resizable", "animate", { + + stop: function(event, ui) { + var self = $(this).data("resizable"), o = self.options; + + var pr = self._proportionallyResizeElements, ista = pr.length && (/textarea/i).test(pr[0].nodeName), + soffseth = ista && $.ui.hasScroll(pr[0], 'left') /* TODO - jump height */ ? 0 : self.sizeDiff.height, + soffsetw = ista ? 0 : self.sizeDiff.width; + + var style = { width: (self.size.width - soffsetw), height: (self.size.height - soffseth) }, + left = (parseInt(self.element.css('left'), 10) + (self.position.left - self.originalPosition.left)) || null, + top = (parseInt(self.element.css('top'), 10) + (self.position.top - self.originalPosition.top)) || null; + + self.element.animate( + $.extend(style, top && left ? { top: top, left: left } : {}), { + duration: o.animateDuration, + easing: o.animateEasing, + step: function() { + + var data = { + width: parseInt(self.element.css('width'), 10), + height: parseInt(self.element.css('height'), 10), + top: parseInt(self.element.css('top'), 10), + left: parseInt(self.element.css('left'), 10) + }; + + if (pr && pr.length) $(pr[0]).css({ width: data.width, height: data.height }); + + // propagating resize, and updating values for each animation step + self._updateCache(data); + self._propagate("resize", event); + + } + } + ); + } + +}); + +$.ui.plugin.add("resizable", "containment", { + + start: function(event, ui) { + var self = $(this).data("resizable"), o = self.options, el = self.element; + var oc = o.containment, ce = (oc instanceof $) ? oc.get(0) : (/parent/.test(oc)) ? el.parent().get(0) : oc; + if (!ce) return; + + self.containerElement = $(ce); + + if (/document/.test(oc) || oc == document) { + self.containerOffset = { left: 0, top: 0 }; + self.containerPosition = { left: 0, top: 0 }; + + self.parentData = { + element: $(document), left: 0, top: 0, + width: $(document).width(), height: $(document).height() || document.body.parentNode.scrollHeight + }; + } + + // i'm a node, so compute top, left, right, bottom + else { + var element = $(ce), p = []; + $([ "Top", "Right", "Left", "Bottom" ]).each(function(i, name) { p[i] = num(element.css("padding" + name)); }); + + self.containerOffset = element.offset(); + self.containerPosition = element.position(); + self.containerSize = { height: (element.innerHeight() - p[3]), width: (element.innerWidth() - p[1]) }; + + var co = self.containerOffset, ch = self.containerSize.height, cw = self.containerSize.width, + width = ($.ui.hasScroll(ce, "left") ? ce.scrollWidth : cw ), height = ($.ui.hasScroll(ce) ? ce.scrollHeight : ch); + + self.parentData = { + element: ce, left: co.left, top: co.top, width: width, height: height + }; + } + }, + + resize: function(event, ui) { + var self = $(this).data("resizable"), o = self.options, + ps = self.containerSize, co = self.containerOffset, cs = self.size, cp = self.position, + pRatio = self._aspectRatio || event.shiftKey, cop = { top:0, left:0 }, ce = self.containerElement; + + if (ce[0] != document && (/static/).test(ce.css('position'))) cop = co; + + if (cp.left < (self._helper ? co.left : 0)) { + self.size.width = self.size.width + (self._helper ? (self.position.left - co.left) : (self.position.left - cop.left)); + if (pRatio) self.size.height = self.size.width / o.aspectRatio; + self.position.left = o.helper ? co.left : 0; + } + + if (cp.top < (self._helper ? co.top : 0)) { + self.size.height = self.size.height + (self._helper ? (self.position.top - co.top) : self.position.top); + if (pRatio) self.size.width = self.size.height * o.aspectRatio; + self.position.top = self._helper ? co.top : 0; + } + + self.offset.left = self.parentData.left+self.position.left; + self.offset.top = self.parentData.top+self.position.top; + + var woset = Math.abs( (self._helper ? self.offset.left - cop.left : (self.offset.left - cop.left)) + self.sizeDiff.width ), + hoset = Math.abs( (self._helper ? self.offset.top - cop.top : (self.offset.top - co.top)) + self.sizeDiff.height ); + + var isParent = self.containerElement.get(0) == self.element.parent().get(0), + isOffsetRelative = /relative|absolute/.test(self.containerElement.css('position')); + + if(isParent && isOffsetRelative) woset -= self.parentData.left; + + if (woset + self.size.width >= self.parentData.width) { + self.size.width = self.parentData.width - woset; + if (pRatio) self.size.height = self.size.width / self.aspectRatio; + } + + if (hoset + self.size.height >= self.parentData.height) { + self.size.height = self.parentData.height - hoset; + if (pRatio) self.size.width = self.size.height * self.aspectRatio; + } + }, + + stop: function(event, ui){ + var self = $(this).data("resizable"), o = self.options, cp = self.position, + co = self.containerOffset, cop = self.containerPosition, ce = self.containerElement; + + var helper = $(self.helper), ho = helper.offset(), w = helper.outerWidth() - self.sizeDiff.width, h = helper.outerHeight() - self.sizeDiff.height; + + if (self._helper && !o.animate && (/relative/).test(ce.css('position'))) + $(this).css({ left: ho.left - cop.left - co.left, width: w, height: h }); + + if (self._helper && !o.animate && (/static/).test(ce.css('position'))) + $(this).css({ left: ho.left - cop.left - co.left, width: w, height: h }); + + } +}); + +$.ui.plugin.add("resizable", "ghost", { + + start: function(event, ui) { + + var self = $(this).data("resizable"), o = self.options, cs = self.size; + + self.ghost = self.originalElement.clone(); + self.ghost + .css({ opacity: .25, display: 'block', position: 'relative', height: cs.height, width: cs.width, margin: 0, left: 0, top: 0 }) + .addClass('ui-resizable-ghost') + .addClass(typeof o.ghost == 'string' ? o.ghost : ''); + + self.ghost.appendTo(self.helper); + + }, + + resize: function(event, ui){ + var self = $(this).data("resizable"), o = self.options; + if (self.ghost) self.ghost.css({ position: 'relative', height: self.size.height, width: self.size.width }); + }, + + stop: function(event, ui){ + var self = $(this).data("resizable"), o = self.options; + if (self.ghost && self.helper) self.helper.get(0).removeChild(self.ghost.get(0)); + } + +}); + +$.ui.plugin.add("resizable", "grid", { + + resize: function(event, ui) { + var self = $(this).data("resizable"), o = self.options, cs = self.size, os = self.originalSize, op = self.originalPosition, a = self.axis, ratio = o._aspectRatio || event.shiftKey; + o.grid = typeof o.grid == "number" ? [o.grid, o.grid] : o.grid; + var ox = Math.round((cs.width - os.width) / (o.grid[0]||1)) * (o.grid[0]||1), oy = Math.round((cs.height - os.height) / (o.grid[1]||1)) * (o.grid[1]||1); + + if (/^(se|s|e)$/.test(a)) { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + } + else if (/^(ne)$/.test(a)) { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + self.position.top = op.top - oy; + } + else if (/^(sw)$/.test(a)) { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + self.position.left = op.left - ox; + } + else { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + self.position.top = op.top - oy; + self.position.left = op.left - ox; + } + } + +}); + +var num = function(v) { + return parseInt(v, 10) || 0; +}; + +var isNumber = function(value) { + return !isNaN(parseInt(value, 10)); +}; + +})(jQuery); diff --git a/plugins/custom-block/hooks/register_category_block.php b/plugins/custom-block/hooks/register_category_block.php new file mode 100644 index 0000000000..5f4d525b85 --- /dev/null +++ b/plugins/custom-block/hooks/register_category_block.php @@ -0,0 +1,50 @@ + "category_block", // Must match class name aboce + "name" => "Custom Category Reports", + "description" => "List the 10 latest reports in a custom category (defined on code)" + ); + // register block with core, this makes it available to users + blocks::register($block); + } + + public function block() + { + // Load the reports block view + $content = new View('category_block'); // CHANGE THIS IF YOU WANT A DIFFERENT VIEW + + // ID of the category we're looking for + $category_id = 1; // CHANGE THIS + $ids = array(); + $ids[] = $category_id; + + $categories = ORM::factory('category') + ->where('parent_id', $category_id) + ->find_all(); + + foreach ($categories as $category) { + $ids[] = $category->id; + } + + $content->category = $category_id; + + // Get Reports + $content->incidents = ORM::factory('incident') + ->with('location') + ->join('incident_category', 'incident.id', 'incident_category.incident_id') + ->where('incident_active', '1') + ->in('category_id', $ids) + ->limit('10') + ->orderby('incident_date', 'desc') + ->find_all(); + echo $content; + } +} +new category_block; diff --git a/plugins/custom-block/readme.txt b/plugins/custom-block/readme.txt new file mode 100644 index 0000000000..d6caf2650c --- /dev/null +++ b/plugins/custom-block/readme.txt @@ -0,0 +1,9 @@ +=== About === +name: Custom Category Block +website: http:// +description: Adds custom category blocks +version: 0.1 +requires: 2.7.4 +tested up to: 2.7.4 +author:Byron Herrera +author website: http://silencesoft.pw diff --git a/plugins/custom-block/views/category_block.php b/plugins/custom-block/views/category_block.php new file mode 100644 index 0000000000..85650ca0c8 --- /dev/null +++ b/plugins/custom-block/views/category_block.php @@ -0,0 +1,40 @@ + + +
Infraestructura
+ + + + + + + + + + count() == 0) + { + ?> + + id; + $incident_title = text::limit_chars(strip_tags($incident->incident_title), 40, '...', True); + $incident_date = $incident->incident_date; + $incident_date = date('M j Y', strtotime($incident->incident_date)); + $incident_location = $incident->location->location_name; + ?> + + + + + + + +
+
+
+ diff --git a/plugins/sharing/views/admin/manage/sharing/sharing_js.php b/plugins/sharing/views/admin/manage/sharing/sharing_js.php old mode 100644 new mode 100755 index 93ef3ad79d..aff6e6625d --- a/plugins/sharing/views/admin/manage/sharing/sharing_js.php +++ b/plugins/sharing/views/admin/manage/sharing/sharing_js.php @@ -1,27 +1,27 @@ + * @author Ushahidi Team * @package Ushahidi - http://source.ushahididev.com * @module Sharing JS View * @copyright Ushahidi - http://www.ushahidi.com - * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) */ ?> // Sharing JS function fillFields(id, sharing_url, sharing_name, sharing_color) { - $("#sharing_id").attr("value", decodeURIComponent(id)); - $("#sharing_name").attr("value", decodeURIComponent(sharing_name)); - $("#sharing_url").attr("value", decodeURIComponent(sharing_url)); - $("#sharing_color").attr("value", decodeURIComponent(sharing_color)); + $("#sharing_id").val(decodeURIComponent(id)); + $("#sharing_name").val(decodeURIComponent(sharing_name)); + $("#sharing_url").val(decodeURIComponent(sharing_url)); + $("#sharing_color").val(decodeURIComponent(sharing_color)); } // Ajax Submission @@ -31,10 +31,10 @@ function sharingAction ( action, confirmAction, id ) var answer = confirm(' ' + confirmAction + '?') if (answer){ // Set Category ID - $("#sharing_id_action").attr("value", id); + $("#sharing_id_action").val(id); // Set Submit Type - $("#action").attr("value", action); + $("#action").val(action); // Submit Form $("#sharingListing").submit(); } -} \ No newline at end of file +} diff --git a/plugins/timemap/controllers/timemap.php b/plugins/timemap/controllers/timemap.php new file mode 100644 index 0000000000..c7ade3edd7 --- /dev/null +++ b/plugins/timemap/controllers/timemap.php @@ -0,0 +1,94 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @module Timemap Controller + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ + +class Timemap_Controller extends Template_Controller { + + /** + * Automatically render the views loaded in this controller + * @var bool + */ + public $auto_render = TRUE; + + /** + * Name of the template view + * @var string + */ + public $template = 'timemap/timemap'; + + + public function __construct() + { + parent::__construct(); + } + + /** + * Create The Timemap + */ + public function index() + { + $this->template->site_name = Kohana::config('settings.site_name'); + $this->template->site_tagline = Kohana::config('settings.site_tagline'); + $this->template->css_url = url::file_loc('css'); + $this->template->js_url = url::file_loc('js'); + + $start_date = date('Y-m-d'); + $last_date = ""; + + $incident = ORM::factory('incident') + ->where('incident.incident_active = 1 ') + ->orderby("incident_date", "asc") + ->find(); + + if ($incident->loaded) + { + $start_date = date('Y-m-d',strtotime($incident->incident_date)); + } + + $this->template->start_date= $start_date; + } + + /** + * Timemap JSON + */ + public function json() + { + $this->auto_render = FALSE; + $this->template = ''; + + // get timestamps + $_GET['s'] = strtotime($_GET['start']); + $_GET['e'] = strtotime($_GET['end']); + $cb = $_GET['callback']; + + $json = array(); + $markers = reports::fetch_incidents(); + foreach ($markers as $marker) + { + $json[] = array( + 'title' => $marker->incident_title, + 'start' => date('Y-m-d\TH:i:sO', strtotime($marker->incident_date)), + 'point' => array( + 'lat' => $marker->latitude, + 'lon' => $marker->longitude + ), + 'options' => array( + 'description' => $marker->incident_description + ) + ); + } + + echo $cb.'('.json_encode($json).')'; + } +} \ No newline at end of file diff --git a/plugins/timemap/hooks/timemap.php b/plugins/timemap/hooks/timemap.php new file mode 100644 index 0000000000..c24451dc92 --- /dev/null +++ b/plugins/timemap/hooks/timemap.php @@ -0,0 +1,51 @@ + + * @package Ushahidi - http://source.ushahididev.com + * @copyright Ushahidi - http://www.ushahidi.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) + */ + +class timemap { + + /** + * Registers the main event add method + */ + public function __construct() + { + // Hook into routing + Event::add('system.pre_controller', array($this, 'add')); + } + + /** + * Adds all the events to the main Ushahidi application + */ + public function add() + { + // Hook only into the main router + if (Router::$controller == 'main') + { + // Add Sidebar Content + Event::add('ushahidi_action.main_sidebar', array($this, 'sidebar')); + } + } + + /** + * Add Sidebar Content + * + * @return void + */ + public function sidebar() + { + $sidebar = View::factory('timemap/sidebar'); + $sidebar->render(TRUE); + } +} + +new timemap; \ No newline at end of file diff --git a/plugins/timemap/i18n/en_US/timemap.php b/plugins/timemap/i18n/en_US/timemap.php new file mode 100644 index 0000000000..12918a844c --- /dev/null +++ b/plugins/timemap/i18n/en_US/timemap.php @@ -0,0 +1,6 @@ + 'Home', + 'timemap' => 'Time Map', + ); +?> diff --git a/plugins/timemap/media/timemap/css/nav.css b/plugins/timemap/media/timemap/css/nav.css new file mode 100644 index 0000000000..6e883a7d99 --- /dev/null +++ b/plugins/timemap/media/timemap/css/nav.css @@ -0,0 +1,31 @@ +/*Credits: Dynamic Drive CSS Library */ +/*URL: http://www.dynamicdrive.com/style/ */ + +.underlinemenu{ +font-weight: bold; +width: auto; +font-size:1.3em; +} + +.underlinemenu ul{ +padding: 6px 0 7px 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/ +margin: 0; +text-align: right; //set value to "left", "center", or "right"*/ +} + +.underlinemenu ul li{ +display: inline; +} + +.underlinemenu ul li a{ +color: #ccc; +padding: 6px 3px 4px 3px; /*top padding is 6px, bottom padding is 4px*/ +margin-right: 20px; /*spacing between each menu link*/ +text-decoration: none; +border-bottom: 3px solid gray; /*bottom border is 3px*/ +} + +.underlinemenu ul li a:hover, .underlinemenu ul li a.selected{ +border-bottom-color:#FF0000; +color:#fff; +} \ No newline at end of file diff --git a/plugins/timemap/media/timemap/css/styles.css b/plugins/timemap/media/timemap/css/styles.css new file mode 100644 index 0000000000..cecefb911b --- /dev/null +++ b/plugins/timemap/media/timemap/css/styles.css @@ -0,0 +1,84 @@ +/* commented backslash hack \*/ +html, body, table{height:100%;width:100%;} +html * {outline:0;border:0;margin:0;padding:0;border-collapse:collapse;border-spacing:0;} +/* end hack */ +html, +body { + font:12px/14px "Trebuchet MS",sans-serif; + margin:0; + padding:0; +} +h1, h2, h3, p { + margin: 0 0 5px 0; + padding: 0; +} +a{ + color: #3764aa; + text-decoration: none; +} +a:hover{ + color: #008cff; + text-decoration: underline; +} + +/* Header */ +.header{ + padding:10px; + background-color:#666; + border-bottom:1px dotted #000; + border-top:2px solid #000; + margin-bottom:5px; + color:#fff; + height:40px; + position:relative; +} + .header .title{ + float:left; + } + .header .title h1 { + font-size:20px; + } + .header .title span { + font-size:11px; + } + .header .return{ + float:right; + margin:0 0 0 20px; + padding:10px; + background-color:#CC3333; + border:1px solid #000; + font-size:16px; + font-weight:bold; + } + .header .return:hover{ + background-color:#fff; + } + .header .return a:hover{ + color:#000; + } + .header .return a{ + color:#fff; + } + +#container{ + position:relative; /* needed for footer positioning*/ + margin:0 auto; /* center, not in IE5 */ + width:100%; + height:auto !important; /* real browsers */ + height:100%; /* IE6: treaded as min-height*/ + min-height:100%; /* real browsers */ +} +#content{ + height:100%; +} +#timeplot_container{ + padding:15px; + top:0; +} + #timeplot{ + height:400px; + } + #timeplot_container .caption{ + font-style: italic; + text-align: center; + } \ No newline at end of file diff --git a/plugins/timemap/media/timemap/css/timemap.css b/plugins/timemap/media/timemap/css/timemap.css new file mode 100644 index 0000000000..dbab046156 --- /dev/null +++ b/plugins/timemap/media/timemap/css/timemap.css @@ -0,0 +1,64 @@ +p.content { +font-size: 12px; +width: 30em; +} + +div#help { +font-size: 12px; +width: 45em; +padding: 1em; +} + +div#timemap { +height:100%; +position:relative; +} + +div#timelineloader{ + position:absolute; + width:100%; + height:100%; + z-index:3001; + display:none; + font-size:26px; + font-weight:bold; +} + +div#timelinecontainer{ +width: 100%; +height: 30%; +} + +div#timeline{ + width: 100%; + height: 100%; + font-size: 12px; + background: #CCCCCC; +} + +div#mapcontainer { + width: 100%; + height: 70%; +} + +div#map { + width: 100%; + height: 100%; + background: #EEEEEE; +} + +div.infotitle { + font-size: 14px; + font-weight: bold; +} +div.infodescription { + font-size: 14px; + font-style: italic; +} + +div.custominfostyle { + font-family: Georgia, Garamond, serif; + font-size: 1.5em; + font-style: italic; + width: 20em; +} \ No newline at end of file diff --git a/plugins/timemap/media/timemap/images/blue-circle.png b/plugins/timemap/media/timemap/images/blue-circle.png new file mode 100644 index 0000000000..60e4feea04 Binary files /dev/null and b/plugins/timemap/media/timemap/images/blue-circle.png differ diff --git a/plugins/timemap/media/timemap/images/circle-0.png b/plugins/timemap/media/timemap/images/circle-0.png new file mode 100644 index 0000000000..d156e1af1e Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-0.png differ diff --git a/plugins/timemap/media/timemap/images/circle-1.png b/plugins/timemap/media/timemap/images/circle-1.png new file mode 100644 index 0000000000..7a150c9aa7 Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-1.png differ diff --git a/plugins/timemap/media/timemap/images/circle-2.png b/plugins/timemap/media/timemap/images/circle-2.png new file mode 100644 index 0000000000..85e93e62d2 Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-2.png differ diff --git a/plugins/timemap/media/timemap/images/circle-3.png b/plugins/timemap/media/timemap/images/circle-3.png new file mode 100644 index 0000000000..7f9778b7e7 Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-3.png differ diff --git a/plugins/timemap/media/timemap/images/circle-4.png b/plugins/timemap/media/timemap/images/circle-4.png new file mode 100644 index 0000000000..029b7ec7de Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-4.png differ diff --git a/plugins/timemap/media/timemap/images/circle-5.png b/plugins/timemap/media/timemap/images/circle-5.png new file mode 100644 index 0000000000..8a94c1c01e Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-5.png differ diff --git a/plugins/timemap/media/timemap/images/circle-6.png b/plugins/timemap/media/timemap/images/circle-6.png new file mode 100644 index 0000000000..d9a3ce6130 Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-6.png differ diff --git a/plugins/timemap/media/timemap/images/circle-7.png b/plugins/timemap/media/timemap/images/circle-7.png new file mode 100644 index 0000000000..42e3d9bf93 Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-7.png differ diff --git a/plugins/timemap/media/timemap/images/circle-8.png b/plugins/timemap/media/timemap/images/circle-8.png new file mode 100644 index 0000000000..9bdda483f5 Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-8.png differ diff --git a/plugins/timemap/media/timemap/images/circle-9.png b/plugins/timemap/media/timemap/images/circle-9.png new file mode 100644 index 0000000000..0495cc627d Binary files /dev/null and b/plugins/timemap/media/timemap/images/circle-9.png differ diff --git a/plugins/timemap/media/timemap/images/clock.png b/plugins/timemap/media/timemap/images/clock.png new file mode 100755 index 0000000000..24837067e4 Binary files /dev/null and b/plugins/timemap/media/timemap/images/clock.png differ diff --git a/plugins/timemap/media/timemap/images/green-circle.png b/plugins/timemap/media/timemap/images/green-circle.png new file mode 100644 index 0000000000..2a67a6dcf6 Binary files /dev/null and b/plugins/timemap/media/timemap/images/green-circle.png differ diff --git a/plugins/timemap/media/timemap/images/ltblue-circle.png b/plugins/timemap/media/timemap/images/ltblue-circle.png new file mode 100644 index 0000000000..d2c4eb0baa Binary files /dev/null and b/plugins/timemap/media/timemap/images/ltblue-circle.png differ diff --git a/plugins/timemap/media/timemap/images/orange-circle.png b/plugins/timemap/media/timemap/images/orange-circle.png new file mode 100644 index 0000000000..4218d5584d Binary files /dev/null and b/plugins/timemap/media/timemap/images/orange-circle.png differ diff --git a/plugins/timemap/media/timemap/images/progress-running.gif b/plugins/timemap/media/timemap/images/progress-running.gif new file mode 100644 index 0000000000..f7429ebc3b Binary files /dev/null and b/plugins/timemap/media/timemap/images/progress-running.gif differ diff --git a/plugins/timemap/media/timemap/images/purple-circle.png b/plugins/timemap/media/timemap/images/purple-circle.png new file mode 100644 index 0000000000..4cf2c5f612 Binary files /dev/null and b/plugins/timemap/media/timemap/images/purple-circle.png differ diff --git a/plugins/timemap/media/timemap/images/red-circle.png b/plugins/timemap/media/timemap/images/red-circle.png new file mode 100644 index 0000000000..365e2f05ac Binary files /dev/null and b/plugins/timemap/media/timemap/images/red-circle.png differ diff --git a/plugins/timemap/media/timemap/images/scale-0.png b/plugins/timemap/media/timemap/images/scale-0.png new file mode 100644 index 0000000000..27a37e1fbf Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-0.png differ diff --git a/plugins/timemap/media/timemap/images/scale-1.png b/plugins/timemap/media/timemap/images/scale-1.png new file mode 100644 index 0000000000..b24f7e0acb Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-1.png differ diff --git a/plugins/timemap/media/timemap/images/scale-2.png b/plugins/timemap/media/timemap/images/scale-2.png new file mode 100644 index 0000000000..36b8116719 Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-2.png differ diff --git a/plugins/timemap/media/timemap/images/scale-3.png b/plugins/timemap/media/timemap/images/scale-3.png new file mode 100644 index 0000000000..7bb95cd222 Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-3.png differ diff --git a/plugins/timemap/media/timemap/images/scale-4.png b/plugins/timemap/media/timemap/images/scale-4.png new file mode 100644 index 0000000000..a3f1392560 Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-4.png differ diff --git a/plugins/timemap/media/timemap/images/scale-5.png b/plugins/timemap/media/timemap/images/scale-5.png new file mode 100644 index 0000000000..629355f477 Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-5.png differ diff --git a/plugins/timemap/media/timemap/images/scale-6.png b/plugins/timemap/media/timemap/images/scale-6.png new file mode 100644 index 0000000000..93f51861fa Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-6.png differ diff --git a/plugins/timemap/media/timemap/images/scale-7.png b/plugins/timemap/media/timemap/images/scale-7.png new file mode 100644 index 0000000000..89c102065a Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-7.png differ diff --git a/plugins/timemap/media/timemap/images/scale-8.png b/plugins/timemap/media/timemap/images/scale-8.png new file mode 100644 index 0000000000..92605bd706 Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-8.png differ diff --git a/plugins/timemap/media/timemap/images/scale-9.png b/plugins/timemap/media/timemap/images/scale-9.png new file mode 100644 index 0000000000..322b3e2660 Binary files /dev/null and b/plugins/timemap/media/timemap/images/scale-9.png differ diff --git a/plugins/timemap/media/timemap/images/yellow-circle.png b/plugins/timemap/media/timemap/images/yellow-circle.png new file mode 100644 index 0000000000..e64b641c80 Binary files /dev/null and b/plugins/timemap/media/timemap/images/yellow-circle.png differ diff --git a/plugins/timemap/media/timemap/js/jquery-1.6.2.min.js b/plugins/timemap/media/timemap/js/jquery-1.6.2.min.js new file mode 100644 index 0000000000..48590ecb96 --- /dev/null +++ b/plugins/timemap/media/timemap/js/jquery-1.6.2.min.js @@ -0,0 +1,18 @@ +/*! + * jQuery JavaScript Library v1.6.2 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Thu Jun 30 14:16:56 2011 -0400 + */ +(function(a,b){function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cs(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cr(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cq(){cn=b}function cp(){setTimeout(cq,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bx(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bm(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(be,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bl(a){f.nodeName(a,"input")?bk(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bk)}function bk(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bj(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bi(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bh(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(a,b){return(a&&a!=="*"?a+".":"")+b.replace(z,"`").replace(A,"&")}function M(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;ic)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function K(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function E(){return!0}function D(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"$1-$2").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z])/ig,x=function(a,b){return b.toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!A){A=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a);return c===b||D.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(b,c,d){a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),d=c.documentElement,(!d||!d.nodeName||d.nodeName==="parsererror")&&e.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0},m&&f.extend(p,{position:"absolute",left:-1e3,top:-1e3});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
t
",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g=f.expando,h=typeof c=="string",i,j=a.nodeType,k=j?f.cache:a,l=j?a[f.expando]:a[f.expando]&&f.expando;if((!l||e&&l&&!k[l][g])&&h&&d===b)return;l||(j?a[f.expando]=l=++f.uuid:l=f.expando),k[l]||(k[l]={},j||(k[l].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?k[l][g]=f.extend(k[l][g],c):k[l]=f.extend(k[l],c);i=k[l],e&&(i[g]||(i[g]={}),i=i[g]),d!==b&&(i[f.camelCase(c)]=d);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[f.camelCase(c)]||i[c]:i}},removeData:function(b,c,d){if(!!f.acceptData(b)){var e=f.expando,g=b.nodeType,h=g?f.cache:b,i=g?b[f.expando]:f.expando;if(!h[i])return;if(c){var j=d?h[i][e]:h[i];if(j){delete j[c];if(!l(j))return}}if(d){delete h[i][e];if(!l(h[i]))return}var k=h[i][e];f.support.deleteExpando||h!=a?delete h[i]:h[i]=null,k?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=k):g&&(f.support.deleteExpando?delete b[f.expando]:b.removeAttribute?b.removeAttribute(f.expando):b[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=w:v&&c!=="className"&&(f.nodeName(a,"form")||u.test(c))&&(i=v)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.support.getSetAttribute?a.removeAttribute(b):(f.attr(a,b,""),a.removeAttributeNode(a.getAttributeNode(b))),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},tabIndex:{get:function(a){var c=a.getAttributeNode("tabIndex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}},value:{get:function(a,b){if(v&&f.nodeName(a,"button"))return v.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(v&&f.nodeName(a,"button"))return v.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==b?g:a[c]},propHooks:{}}),w={get:function(a,c){return f.prop(a,c)?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(f.attrFix=f.propFix,v=f.attrHooks.name=f.attrHooks.title=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,c){var d=a.getAttributeNode(c);if(d){d.nodeValue=b;return b}}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var x=/\.(.*)$/,y=/^(?:textarea|input|select)$/i,z=/\./g,A=/ /g,B=/[^\w\s.|`]/g,C=function(a){return a.replace(B,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=D;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=D);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),C).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i. +shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},J=function(c){var d=c.target,e,g;if(!!y.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=I(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:J,beforedeactivate:J,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&J.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&J.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",I(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in H)f.event.add(this,c+".specialChange",H[c]);return y.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return y.test(this.nodeName)}},H=f.event.special.change.filters,H.focus=H.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=T.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a=="string")return f.inArray(this[0],a?f(a):this.parent().children());return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var X=/ jQuery\d+="(?:\d+|null)"/g,Y=/^\s+/,Z=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,$=/<([\w:]+)/,_=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};bf.optgroup=bf.option,bf.tbody=bf.tfoot=bf.colgroup=bf.caption=bf.thead,bf.th=bf.td,f.support.htmlSerialize||(bf._default=[1,"div
","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(X,""):null;if(typeof a=="string"&&!bb.test(a)&&(f.support.leadingWhitespace||!Y.test(a))&&!bf[($.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Z,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j +)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bi(a,d),e=bj(a),g=bj(d);for(h=0;e[h];++h)bi(e[h],g[h])}if(b){bh(a,d);if(c){e=bj(a),g=bj(d);for(h=0;e[h];++h)bh(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!ba.test(k))k=b.createTextNode(k);else{k=k.replace(Z,"<$1>");var l=($.exec(k)||["",""])[1].toLowerCase(),m=bf[l]||bf._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=_.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&Y.test(k)&&o.insertBefore(b.createTextNode(Y.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bo.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle;c.zoom=1;var e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.filter=bn.test(g)?g.replace(bn,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bx(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(by=function(a,c){var d,e,g;c=c.replace(bp,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bz=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bq.test(d)&&br.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bx=by||bz,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bB=/%20/g,bC=/\[\]$/,bD=/\r?\n/g,bE=/#.*$/,bF=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bG=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bH=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,bI=/^(?:GET|HEAD)$/,bJ=/^\/\//,bK=/\?/,bL=/)<[^<]*)*<\/script>/gi,bM=/^(?:select|textarea)/i,bN=/\s+/,bO=/([?&])_=[^&]*/,bP=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bQ=f.fn.load,bR={},bS={},bT,bU;try{bT=e.href}catch(bV){bT=c.createElement("a"),bT.href="",bT=bT.href}bU=bP.exec(bT.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bQ)return bQ.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bL,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bM.test(this.nodeName)||bG.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bD,"\r\n")}}):{name:b.name,value:c.replace(bD,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?f.extend(!0,a,f.ajaxSettings,b):(b=a,a=f.extend(!0,f.ajaxSettings,b));for(var c in{context:1,url:1})c in b?a[c]=b[c]:c in f.ajaxSettings&&(a[c]=f.ajaxSettings[c]);return a},ajaxSettings:{url:bT,isLocal:bH.test(bU[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML}},ajaxPrefilter:bW(bR),ajaxTransport:bW(bS),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a?4:0;var o,r,u,w=l?bZ(d,v,l):b,x,y;if(a>=200&&a<300||a===304){if(d.ifModified){if(x=v.getResponseHeader("Last-Modified"))f.lastModified[k]=x;if(y=v.getResponseHeader("Etag"))f.etag[k]=y}if(a===304)c="notmodified",o=!0;else try{r=b$(d,w),c="success",o=!0}catch(z){c="parsererror",u=z}}else{u=c;if(!c||a)c="error",a<0&&(a=0)}v.status=a,v.statusText=c,o?h.resolveWith(e,[r,c,v]):h.rejectWith(e,[v,c,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,c]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bF.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bE,"").replace(bJ,bU[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bN),d.crossDomain==null&&(r=bP.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bU[1]&&r[2]==bU[2]&&(r[3]||(r[1]==="http:"?80:443))==(bU[3]||(bU[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bX(bR,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bI.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bK.test(d.url)?"&":"?")+d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bO,"$1_="+x);d.url=y+(y===d.url?(bK.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", */*; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bX(bS,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){status<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bB,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn,co=a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cr("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cu.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cu.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cv(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cv(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c];return e.document.compatMode==="CSS1Compat"&&g||e.document.body["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var h=f.css(e,d),i=parseFloat(h);return f.isNaN(i)?h:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); \ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/json.js b/plugins/timemap/media/timemap/js/json.js new file mode 100644 index 0000000000..0876333900 --- /dev/null +++ b/plugins/timemap/media/timemap/js/json.js @@ -0,0 +1,101 @@ +/* + * Timemap.js Copyright 2010 Nick Rabinowitz. + * Licensed under the MIT License (see LICENSE.txt) + */ + +/** + * @fileOverview + * JSON Loaders (JSONP, JSON String) + * + * @author Nick Rabinowitz (www.nickrabinowitz.com) + */ + +// for JSLint +/*global TimeMap */ + +(function() { + var loaders = TimeMap.loaders; + +/** + * @class + * JSONP loader - expects a service that takes a callback function name as + * the last URL parameter. + * + *

The jsonp loader assumes that the JSON can be loaded from a url with a "?" instead of + * the callback function name, e.g. "http://www.test.com/getsomejson.php?callback=?". See + * the jQuery.ajax documentation for more + * details on how to format the url, especially if the parameter is not called "callback". + * This works for services like Google Spreadsheets, etc., and accepts remote URLs.

+ * @name TimeMap.loaders.jsonp + * @augments TimeMap.loaders.remote + * + * @example +TimeMap.init({ + datasets: [ + { + title: "JSONP Dataset", + type: "jsonp", + options: { + url: "http://www.example.com/getsomejson.php?callback=?" + } + } + ], + // etc... +}); + * + * @constructor + * @param {Object} options All options for the loader: + * @param {String} options.url URL of JSON service to load, callback name replaced with "?" + * @param {mixed} [options[...]] Other options (see {@link loaders.remote}) + */ +loaders.jsonp = function(options) { + var loader = new loaders.remote(options); + + // set ajax settings for loader + loader.opts.dataType = 'jsonp'; + + return loader; +}; + +/** + * @class + * JSON string loader - expects a plain JSON array. + * + *

The json_string loader assumes an array of items in plain JSON, with no + * callback function - this will require a local URL.

+ * @name TimeMap.loaders.json + * @class + * + * @augments TimeMap.loaders.remote + * + * @example +TimeMap.init({ + datasets: [ + { + title: "JSON String Dataset", + type: "json_string", + options: { + url: "mydata.json" // Must be a local URL + } + } + ], + // etc... +}); + * + * @param {Object} options All options for the loader + * @param {String} options.url URL of JSON file to load + * @param {mixed} [options[...]] Other options (see {@link loaders.remote}) + */ +loaders.json = function(options) { + var loader = new loaders.remote(options); + + // set ajax settings for loader + loader.opts.dataType = 'json'; + + return loader; +}; + +// For backwards compatibility +loaders.json_string = loaders.json; + +})(); diff --git a/plugins/timemap/media/timemap/js/mxn/docs/files.html b/plugins/timemap/media/timemap/js/mxn/docs/files.html new file mode 100644 index 0000000000..7b7820bcdd --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/files.html @@ -0,0 +1,264 @@ + + + + + + JsDoc Reference - File Index + + + + + + + + + + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + \ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/docs/index.html b/plugins/timemap/media/timemap/js/mxn/docs/index.html new file mode 100644 index 0000000000..120feecbdb --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/index.html @@ -0,0 +1,306 @@ + + + + + + JsDoc Reference - Index + + + + + + + + + + +
+

Class Index

+ + +
+

_global_

+ +
+
+ +
+

mxn

+ +
+
+ + +
+ +
+

mxn.Event

+ +
+
+ +
+

mxn.Geocoder

+ +
+
+ +
+

mxn.Invoker

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

mxn.Marker

+ +
+
+ +
+

mxn.Polyline

+ +
+
+ +
+

mxn.Radius

+ +
+
+ +
+

mxn.util

+ +
+
+ + +
+ + +
+
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + \ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/_global_.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/_global_.html new file mode 100644 index 0000000000..a4b336c79a --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/_global_.html @@ -0,0 +1,272 @@ + + + + + + + JsDoc Reference - _global_ + + + + + + + + + + + + + +
+ +

+ + Built-In Namespace _global_ +

+ + +

+ + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:41 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.BoundingBox.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.BoundingBox.html new file mode 100644 index 0000000000..16997632c3 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.BoundingBox.html @@ -0,0 +1,676 @@ + + + + + + + JsDoc Reference - mxn.BoundingBox + + + + + + + + + + + + + +
+ +

+ + Class mxn.BoundingBox +

+ + +

+ + + + + +
Defined in: mxn.core.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.BoundingBox(swlat, swlon, nelat, nelon) +
+
BoundingBox creates a new bounding box object
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
contains(point) +
+
contains finds whether a given point is within a bounding box
+
  +
extend(point) +
+
extend extends the bounding box to include the new point
+
  + +
getCenter calculates the center of a bounding box.
+
  + +
getNorthEast returns a LatLonPoint of the north-east point of the bounding box
+
  + +
getSouthWest returns a LatLonPoint of the south-west point of the bounding box
+
  +
isEmpty() +
+
isEmpty finds if this bounding box has zero area
+
  +
toSpan() +
+
toSpan returns a LatLonPoint with the lat and lon as the height and width of the bounding box
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.BoundingBox(swlat, swlon, nelat, nelon) +
+ +
+ BoundingBox creates a new bounding box object + +
+ + + + + +
+
Parameters:
+ +
+ {double} swlat + +
+
the latitude of the south-west point
+ +
+ {double} swlon + +
+
the longitude of the south-west point
+ +
+ {double} nelat + +
+
the latitude of the north-east point
+ +
+ {double} nelon + +
+
the longitude of the north-east point
+ +
+ + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + {boolean} + contains(point) + +
+
+ contains finds whether a given point is within a bounding box + + +
+ + + + +
+
Parameters:
+ +
+ {LatLonPoint} point + +
+
the point to test with
+ +
+ + + + + +
+
Returns:
+ +
whether point is within this bounding box
+ +
+ + + + +
+ + +
+ + + extend(point) + +
+
+ extend extends the bounding box to include the new point + + +
+ + + + +
+
Parameters:
+ +
+ point + +
+
+ +
+ + + + + + + + +
+ + +
+ + + getCenter() + +
+
+ getCenter calculates the center of a bounding box. + + +
+ + + + + + + + +
+
Returns:
+ +
a LatLonPoint at the center of this bounding box.
+ +
+ + + + +
+ + +
+ + {LatLonPoint} + getNorthEast() + +
+
+ getNorthEast returns a LatLonPoint of the north-east point of the bounding box + + +
+ + + + + + + + +
+
Returns:
+ +
the north-east point of the bounding box
+ +
+ + + + +
+ + +
+ + {LatLonPoint} + getSouthWest() + +
+
+ getSouthWest returns a LatLonPoint of the south-west point of the bounding box + + +
+ + + + + + + + +
+
Returns:
+ +
the south-west point of the bounding box
+ +
+ + + + +
+ + +
+ + {boolean} + isEmpty() + +
+
+ isEmpty finds if this bounding box has zero area + + +
+ + + + + + + + +
+
Returns:
+ +
whether the north-east and south-west points of the bounding box are the same point
+ +
+ + + + +
+ + +
+ + {LatLonPoint} + toSpan() + +
+
+ toSpan returns a LatLonPoint with the lat and lon as the height and width of the bounding box + + +
+ + + + + + + + +
+
Returns:
+ +
a LatLonPoint containing the height and width of this bounding box
+ +
+ + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:41 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Event.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Event.html new file mode 100644 index 0000000000..8bc1e49137 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Event.html @@ -0,0 +1,543 @@ + + + + + + + JsDoc Reference - mxn.Event + + + + + + + + + + + + + +
+ +

+ + Class mxn.Event +

+ + +

+ + + + + +
Defined in: mxn.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.Event(sEvtName, oEvtSource) +
+
Instantiates a new Event
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
addHandler(fn, ctx) +
+
Add a handler to the Event.
+
  +
fire(oEvtArgs) +
+
Fires the Event.
+
  + +
Remove all handlers from the Event.
+
  +
removeHandler(fn, ctx) +
+
Remove a handler from the Event.
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.Event(sEvtName, oEvtSource) +
+ +
+ Instantiates a new Event + +
+ + + + + +
+
Parameters:
+ +
+ {String} sEvtName + +
+
The name of the event.
+ +
+ {Object} oEvtSource + +
+
The source object of the event.
+ +
+ + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + + addHandler(fn, ctx) + +
+
+ Add a handler to the Event. + + +
+ + + + +
+
Parameters:
+ +
+ {Function} fn + +
+
The handler function.
+ +
+ {Object} ctx + +
+
The context of the handler function.
+ +
+ + + + + + + + +
+ + +
+ + + fire(oEvtArgs) + +
+
+ Fires the Event. + + +
+ + + + +
+
Parameters:
+ +
+ {Object} oEvtArgs + +
+
Event arguments object to be passed to the handlers.
+ +
+ + + + + + + + +
+ + +
+ + + removeAllHandlers() + +
+
+ Remove all handlers from the Event. + + +
+ + + + + + + + + + + +
+ + +
+ + + removeHandler(fn, ctx) + +
+
+ Remove a handler from the Event. + + +
+ + + + +
+
Parameters:
+ +
+ {Function} fn + +
+
The handler function.
+ +
+ {Object} ctx + +
+
The context of the handler function.
+ +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:41 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Geocoder.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Geocoder.html new file mode 100644 index 0000000000..ff033b02e6 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Geocoder.html @@ -0,0 +1,468 @@ + + + + + + + JsDoc Reference - mxn.Geocoder + + + + + + + + + + + + + +
+ +

+ + Class mxn.Geocoder +

+ + +

+ + + + + +
Defined in: mxn.geocoder.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.Geocoder(api, callback, error_callback) +
+
Geocoder instantiates a geocoder with some API choice
+
+ + + + + + + + + + + + + + + + + + + + + + +
Field Summary
Field AttributesField Name and Description
  +
+ swap +
+
Change the geocoding API in use
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
geocode(address) +
+
Geocodes the provided address.
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.Geocoder(api, callback, error_callback) +
+ +
+ Geocoder instantiates a geocoder with some API choice + +
+ + + + + +
+
Parameters:
+ +
+ {String} api + +
+
The API to use, currently only 'mapquest' is supported
+ +
+ {Function} callback + +
+
The function to call when a geocode request returns (function(waypoint))
+ +
+ {Function} error_callback + +
+
The optional function to call when a geocode request fails
+ +
+ + + + + + + + +
+ + + + +
+ Field Detail +
+ + +
+ + + swap + +
+
+ Change the geocoding API in use + + +
+ + + + + + + + + + + + + + +
+ Method Detail +
+ + +
+ + + geocode(address) + +
+
+ Geocodes the provided address. + + +
+ + + + +
+
Parameters:
+ +
+ {Object} address + +
+
Address hash, keys are: street, locality, region, country.
+ +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:41 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Invoker.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Invoker.html new file mode 100644 index 0000000000..b204e2fe35 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Invoker.html @@ -0,0 +1,443 @@ + + + + + + + JsDoc Reference - mxn.Invoker + + + + + + + + + + + + + +
+ +

+ + Class mxn.Invoker +

+ + +

+ + + + + +
Defined in: mxn.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.Invoker(aobj, asClassName, afnApiIdGetter) +
+
Creates a new Invoker, a class which helps with on-the-fly invocation of the correct API methods.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
go(sMethodName, args, oOptions) +
+
Invoke the API implementation of a specific method.
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.Invoker(aobj, asClassName, afnApiIdGetter) +
+ +
+ Creates a new Invoker, a class which helps with on-the-fly invocation of the correct API methods. + +
+ + + + + +
+
Parameters:
+ +
+ {Object} aobj + +
+
The core object whose methods will make cals to go()
+ +
+ {String} asClassName + +
+
The name of the Mapstraction class to be invoked, normally the same name as aobj's constructor function
+ +
+ {Function} afnApiIdGetter + +
+
The function on object aobj which will return the active API ID
+ +
+ + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + + go(sMethodName, args, oOptions) + +
+
+ Invoke the API implementation of a specific method. + + +
+ + + + +
+
Parameters:
+ +
+ {String} sMethodName + +
+
The method name to invoke
+ +
+ {Array} args + +
+
Arguments to pass on
+ +
+ {Object} oOptions + +
+
Optional. Extra options for invocation
+ +
+ {Boolean} oOptions.overrideApi + +
+
When true the first argument is used as the API ID.
+ +
+ {Object} oOptions.context + +
+
A context object for passing extra information on to the provider implementation.
+ +
+ {Function} oOptions.fallback + +
+
A fallback function to run if the provider implementation is missing.
+ +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.LatLonPoint.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.LatLonPoint.html new file mode 100644 index 0000000000..400b05624e --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.LatLonPoint.html @@ -0,0 +1,692 @@ + + + + + + + JsDoc Reference - mxn.LatLonPoint + + + + + + + + + + + + + +
+ +

+ + Class mxn.LatLonPoint +

+ + +

+ + + + + +
Defined in: mxn.core.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.LatLonPoint(lat, lon) +
+
LatLonPoint is a point containing a latitude and longitude with helper methods
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
distance(otherPoint) +
+
distance returns the distance in kilometers between two points
+
  +
equals(otherPoint) +
+
equals tests if this point is the same as some other one
+
  +
fromProprietary(apiId, point) +
+
Retrieve the lat and lon values from a proprietary point.
+
  +
latConv() +
+
Returns latitude conversion based on current projection
+
  +
lonConv() +
+
Returns longitude conversion based on current projection
+
  +
toProprietary(apiId) +
+
Converts the current LatLonPoint to a proprietary one for the API specified by apiId.
+
  + +
toString returns a string represntation of a point
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.LatLonPoint(lat, lon) +
+ +
+ LatLonPoint is a point containing a latitude and longitude with helper methods + +
+ + + + + +
+
Parameters:
+ +
+ {double} lat + +
+
is the latitude
+ +
+ {double} lon + +
+
is the longitude
+ +
+ + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + {double} + distance(otherPoint) + +
+
+ distance returns the distance in kilometers between two points + + +
+ + + + +
+
Parameters:
+ +
+ {LatLonPoint} otherPoint + +
+
The other point to measure the distance from to this one
+ +
+ + + + + +
+
Returns:
+ +
the distance between the points in kilometers
+ +
+ + + + +
+ + +
+ + {boolean} + equals(otherPoint) + +
+
+ equals tests if this point is the same as some other one + + +
+ + + + +
+
Parameters:
+ +
+ {LatLonPoint} otherPoint + +
+
The other point to test with
+ +
+ + + + + +
+
Returns:
+ +
true or false
+ +
+ + + + +
+ + +
+ + + fromProprietary(apiId, point) + +
+
+ Retrieve the lat and lon values from a proprietary point. + + +
+ + + + +
+
Parameters:
+ +
+ {String} apiId + +
+
The API ID of the proprietary point.
+ +
+ {Object} point + +
+
The proprietary point.
+ +
+ + + + + + + + +
+ + +
+ + {Float} + latConv() + +
+
+ Returns latitude conversion based on current projection + + +
+ + + + + + + + +
+
Returns:
+ +
{Float} conversion
+ +
+ + + + +
+ + +
+ + {Float} + lonConv() + +
+
+ Returns longitude conversion based on current projection + + +
+ + + + + + + + +
+
Returns:
+ +
{Float} conversion
+ +
+ + + + +
+ + +
+ + + toProprietary(apiId) + +
+
+ Converts the current LatLonPoint to a proprietary one for the API specified by apiId. + + +
+ + + + +
+
Parameters:
+ +
+ {String} apiId + +
+
The API ID of the proprietary point.
+ +
+ + + + + +
+
Returns:
+ +
A proprietary point.
+ +
+ + + + +
+ + +
+ + {String} + toString() + +
+
+ toString returns a string represntation of a point + + +
+ + + + + + + + +
+
Returns:
+ +
a string like '51.23, -0.123'
+ +
+ + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Mapstraction.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Mapstraction.html new file mode 100644 index 0000000000..73d9134743 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Mapstraction.html @@ -0,0 +1,3724 @@ + + + + + + + JsDoc Reference - mxn.Mapstraction + + + + + + + + + + + + + +
+ +

+ + Class mxn.Mapstraction +

+ + +

+ + + + + +
Defined in: mxn.core.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.Mapstraction(element, api, debug) +
+
Mapstraction instantiates a map with some API choice into the HTML element given
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Field Summary
Field AttributesField Name and Description
  +
+ api +
+
The name of the active API.
+
  + +
The DOM element containing the map.
+
  +
+ element +
+
The original element value passed to the constructor.
+
  +
+ markers +
+
The markers currently loaded.
+
  +
+ options +
+
Options defaults.
+
  +
+ polylines +
+
The polylines currently loaded.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
addControls(args) +
+
addControls adds controls to the map.
+
  +
addEventListener(type, func, caller) +
+
Add a listener for an event.
+
  +
addFilter(name, presently, the) +
+
addFilter adds a marker filter
+
  +
addImageOverlay(unique, url, opacity, west, south, east, north) +
+
addImageOverlay layers an georeferenced image over the map
+
  +
addJSON(json) +
+
+
  + +
Adds a large map panning control and zoom buttons to the map
+
  + +
Adds a map type control to the map (streets, aerial imagery etc)
+
  +
addMarker(marker, old) +
+
Adds a marker pin to the map
+
  +
addMarkerWithData(marker, data) +
+
addMarkerWithData will addData to the marker, then add it to the map
+
  +
addOverlay(url, autoCenterAndZoom) +
+
Adds a GeoRSS or KML overlay to the map some flavors of GeoRSS and KML are not supported by some of the Map providers
+
  +
addPolyline(polyline, old) +
+
Add a polyline to the map
+
  +
addPolylineWithData(polyline, data) +
+
addPolylineWithData will addData to the polyline, then add it to the map
+
  + +
Adds a small map panning control and zoom buttons to the map
+
  +
addTileLayer(template, opacity, copyright, Minimum, Maximum, Should) +
+
Adds a Tile Layer to the map Requires providing a parameterized tile url.
+
  +
applyFilter(o, f) +
+
+
  + +
Applies the current option settings
+
  + +
autoCenterAndZoom sets the center and zoom of the map to the smallest bounding box containing all markers
+
  +
callEventListeners(sEventType, oEventArgs) +
+
Call listeners for a particular event.
+
  + +
centerAndZoomOnPoints sets the center and zoom of the map from an array of points This is useful if you don't want to have to add markers to the map
+
  +
clickHandler(lat, lon, me) +
+
+
  + +
Closes the map-based info bubble, if open
+
  + +
Declutter the markers on the map, group together overlapping markers.
+
  +
doFilter(showCallback, hideCallback) +
+
doFilter executes all filters added since last call Now supports a callback function for when a marker is shown or hidden
+
  +
dragging(on) +
+
Enable/disable dragging of the map
+
  + +
Enable scroll wheel zooming
+
  + +
getAttributeExtremes returns the minimum/maximum of "field" from all markers
+
  + +
Gets the BoundingBox of the map
+
  + +
Gets the central point of the map
+
  +
getMap() +
+
getMap returns the native map object that mapstraction is talking to
+
  + +
Gets the imagery type for the map.
+
  + +
Returns a ratio to turn distance into pixels based on current projection
+
  +
getZoom() +
+
Returns the zoom level of the map
+
  + +
Returns the best zoom level for bounds given
+
  +
isLoaded(api) +
+
Returns the loaded state of a Map Provider
+
  +
mousePosition(element) +
+
Displays the coordinates of the cursor in the HTML element
+
  + +
+
  +
openBubble(LatLonPoint, Content) +
+
Opens an info bubble at a given point, with given content
+
  + +
Automatically sets center and zoom level to show all polylines Takes into account radious of polyline
+
  + +
removeAllFilters
+
  + +
removeAllMarkers removes all the Markers on a map
+
  + +
Removes all polylines from the map
+
  +
removeFilter(field, operator, value) +
+
Remove the specified filter
+
  +
removeMarker(marker) +
+
removeMarker removes a Marker from the map
+
  +
removePolyline(polyline) +
+
Remove the polyline from the map
+
  +
resizeTo(width, height) +
+
Resize the current map to the specified width and height (since it is actually on a child div of the mapElement passed as argument to the Mapstraction constructor, the resizing of this mapElement may have no effect on the size of the actual map)
+
  + +
Run any queued provider API calls for the methods defined in the provider's implementation.
+
  +
setBounds(bounds) +
+
Sets the map to the appropriate location and zoom for a given BoundingBox
+
  +
setCenter(point, options) +
+
setCenter sets the central point of the map
+
  +
setCenterAndZoom(point, zoom) +
+
Centers the map to some place and zoom level
+
  +
setDebug(debug) +
+
Set the debugging on or off - shows alert panels for functions that don't exist in Mapstraction
+
  +
setDefer(set) +
+
Set the api call deferment on or off - When it's on, mxn.invoke will queue up provider API calls until runDeferred is called, at which time everything in the queue will be run in the order it was added.
+
  +
setImageOpacity(id, opacity) +
+
+
  + +
+
  +
setMapType(type) +
+
Sets the imagery type for the map The type can be one of: mxn.Mapstraction.ROAD mxn.Mapstraction.SATELLITE mxn.Mapstraction.HYBRID mxn.Mapstraction.PHYSICAL
+
  +
setOption(sOptName, vVal) +
+
Sets an option and applies it.
+
  +
setOptions(oOpts) +
+
Sets the current options to those specified in oOpts and applies them
+
  +
setZoom(zoom) +
+
Sets the zoom level for the map MS doesn't seem to do zoom=0, and Gg's sat goes closer than it's maps, and MS's sat goes closer than Y!'s TODO: Mapstraction.prototype.getZoomLevels or something.
+
  +
swap(api, element) +
+
Change the current api on the fly
+
  +
toggleFilter(field, operator, value) +
+
Delete the current filter if present; otherwise add it
+
  + +
Turns a Tile Layer on or off
+
  + +
Sets the center and zoom of the map to the smallest bounding box containing all visible markers and polylines will only include markers and polylines with an attribute of "visible"
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Event Summary
Event AttributesEvent Name and Description
  + +
Zoom is changed
+
  +
click() +
+
Map is clicked {location: LatLonPoint}
+
  +
endPan() +
+
Map is panned
+
  +
load() +
+
Map has loaded
+
  + +
Marker is removed {marker: Marker}
+
  + +
Marker is removed {marker: Marker}
+
  + +
Polyline is added {polyline: Polyline}
+
  + +
Polyline is removed {polyline: Polyline}
+
+ + + + + + + +
+
+ Class Detail +
+ +
+ mxn.Mapstraction(element, api, debug) +
+ +
+ Mapstraction instantiates a map with some API choice into the HTML element given + +
+ + + + + +
+
Parameters:
+ +
+ {String} element + +
+
The HTML element to replace with a map
+ +
+ {String} api + +
+
The API to use, one of 'google', 'googlev3', 'yahoo', 'microsoft', 'openstreetmap', 'multimap', 'map24', 'openlayers', 'mapquest'. If omitted, first loaded provider implementation is used.
+ +
+ {Bool} debug + +
+
optional parameter to turn on debug support - this uses alert panels for unsupported actions
+ +
+ + + + + + + + +
+ + + + +
+ Field Detail +
+ + +
+ + + api + +
+
+ The name of the active API. + + +
+ + + + + + + + +
+ + +
+ + + currentElement + +
+
+ The DOM element containing the map. + + +
+ + + + + + + + +
+ + +
+ + + element + +
+
+ The original element value passed to the constructor. + + +
+ + + + + + + + +
+ + +
+ + + markers + +
+
+ The markers currently loaded. + + +
+ + + + + + + + +
+ + +
+ + + options + +
+
+ Options defaults. + + +
+ + + + + + + + +
+ + +
+ + + polylines + +
+
+ The polylines currently loaded. + + +
+ + + + + + + + + + + + + + +
+ Method Detail +
+ + +
+ + + addControls(args) + +
+
+ addControls adds controls to the map. You specify which controls to add in the associative array that is the only argument. addControls can be called multiple time, with different args, to dynamically change controls. args = { pan: true, zoom: 'large' || 'small', overview: true, scale: true, map_type: true, } + + +
+ + + + +
+
Parameters:
+ +
+ {array} args + +
+
Which controls to switch on
+ +
+ + + + + + + + +
+ + +
+ + + addEventListener(type, func, caller) + +
+
+ Add a listener for an event. + + +
+ + + + +
+
Parameters:
+ +
+ {String} type + +
+
Event type to attach listener to
+ +
+ {Function} func + +
+
Callback function
+ +
+ {Object} caller + +
+
Callback object
+ +
+ + + + + + + + +
+ + +
+ + + addFilter(name, presently, the) + +
+
+ addFilter adds a marker filter + + +
+ + + + +
+
Parameters:
+ +
+ {field} name + +
+
of attribute to filter on
+ +
+ {operator} presently + +
+
only "ge" or "le"
+ +
+ {value} the + +
+
value to compare against
+ +
+ + + + + + + + +
+ + +
+ + + addImageOverlay(unique, url, opacity, west, south, east, north) + +
+
+ addImageOverlay layers an georeferenced image over the map + + +
+ + + + +
+
Parameters:
+ +
+ {id} unique + +
+
DOM identifier
+ +
+ {src} url + +
+
of image
+ +
+ {opacity} opacity + +
+
0-100
+ +
+ {west} west + +
+
boundary
+ +
+ {south} south + +
+
boundary
+ +
+ {east} east + +
+
boundary
+ +
+ {north} north + +
+
boundary
+ +
+ + + + + + + + +
+ + +
+ + + addJSON(json) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ json + +
+
+ +
+ + + + + + + + +
+ + +
+ + + addLargeControls() + +
+
+ Adds a large map panning control and zoom buttons to the map + + +
+ + + + + + + + + + + +
+ + +
+ + + addMapTypeControls() + +
+
+ Adds a map type control to the map (streets, aerial imagery etc) + + +
+ + + + + + + + + + + +
+ + +
+ + + addMarker(marker, old) + +
+
+ Adds a marker pin to the map + + +
+ + + + +
+
Parameters:
+ +
+ {Marker} marker + +
+
The marker to add
+ +
+ {Boolean} old + +
+
If true, doesn't add this marker to the markers array. Used by the "swap" method
+ +
+ + + + + + + + +
+ + +
+ + + addMarkerWithData(marker, data) + +
+
+ addMarkerWithData will addData to the marker, then add it to the map + + +
+ + + + +
+
Parameters:
+ +
+ {Marker} marker + +
+
The marker to add
+ +
+ {Object} data + +
+
A data has to add
+ +
+ + + + + + + + +
+ + +
+ + + addOverlay(url, autoCenterAndZoom) + +
+
+ Adds a GeoRSS or KML overlay to the map some flavors of GeoRSS and KML are not supported by some of the Map providers + + +
+ + + + +
+
Parameters:
+ +
+ {String} url + +
+
GeoRSS or KML feed URL
+ +
+ {Boolean} autoCenterAndZoom + +
+
Set true to auto center and zoom after the feed is loaded
+ +
+ + + + + + + + +
+ + +
+ + + addPolyline(polyline, old) + +
+
+ Add a polyline to the map + + +
+ + + + +
+
Parameters:
+ +
+ {Polyline} polyline + +
+
The Polyline to add to the map
+ +
+ {Boolean} old + +
+
If true replaces an existing Polyline
+ +
+ + + + + + + + +
+ + +
+ + + addPolylineWithData(polyline, data) + +
+
+ addPolylineWithData will addData to the polyline, then add it to the map + + +
+ + + + +
+
Parameters:
+ +
+ {Polyline} polyline + +
+
The polyline to add
+ +
+ {Object} data + +
+
A data has to add
+ +
+ + + + + + + + +
+ + +
+ + + addSmallControls() + +
+
+ Adds a small map panning control and zoom buttons to the map + + +
+ + + + + + + + + + + +
+ + +
+ + + addTileLayer(template, opacity, copyright, Minimum, Maximum, Should) + +
+
+ Adds a Tile Layer to the map Requires providing a parameterized tile url. Use {Z}, {X}, and {Y} to specify where the parameters should go in the URL. For example, the OpenStreetMap tiles are: m.addTileLayer("http://tile.openstreetmap.org/{Z}/{X}/{Y}.png", 1.0, "OSM", 1, 19, true); + + +
+ + + + +
+
Parameters:
+ +
+ {tile_url} template + +
+
url of the tiles.
+ +
+ {opacity} opacity + +
+
of the tile layer - 0 is transparent, 1 is opaque. (default=0.6)
+ +
+ {copyright_text} copyright + +
+
text to use for the tile layer. (default=Mapstraction)
+ +
+ {min_zoom} Minimum + +
+
(furtherest out) zoom level that tiles are available (default=1)
+ +
+ {max_zoom} Maximum + +
+
(closest) zoom level that the tiles are available (default=18)
+ +
+ {map_type} Should + +
+
the tile layer be a selectable map type in the layers palette (default=false)
+ +
+ + + + + + + + +
+ + +
+ + + applyFilter(o, f) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ o + +
+
+ +
+ f + +
+
+ +
+ + + + + + + + +
+ + +
+ + + applyOptions() + +
+
+ Applies the current option settings + + +
+ + + + + + + + + + + +
+ + +
+ + + autoCenterAndZoom() + +
+
+ autoCenterAndZoom sets the center and zoom of the map to the smallest bounding box containing all markers + + +
+ + + + + + + + + + + +
+ + +
+ + + callEventListeners(sEventType, oEventArgs) + +
+
+ Call listeners for a particular event. + + +
+ + + + +
+
Parameters:
+ +
+ {String} sEventType + +
+
Call listeners of this event type
+ +
+ {Object} oEventArgs + +
+
Event args object to pass back to the callback
+ +
+ + + + + + + + +
+ + +
+ + + centerAndZoomOnPoints(points) + +
+
+ centerAndZoomOnPoints sets the center and zoom of the map from an array of points This is useful if you don't want to have to add markers to the map + + +
+ + + + +
+
Parameters:
+ +
+ points + +
+
+ +
+ + + + + + + + +
+ + +
+ + + clickHandler(lat, lon, me) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ lat + +
+
+ +
+ lon + +
+
+ +
+ me + +
+
+ +
+ + + + + + + + +
+ + +
+ + + closeBubble() + +
+
+ Closes the map-based info bubble, if open + + +
+ + + + + + + + + + + +
+ + +
+ + + declutterMarkers(opts) + +
+
+ Declutter the markers on the map, group together overlapping markers. + + +
+ + + + +
+
Parameters:
+ +
+ {Object} opts + +
+
Declutter options
+ +
+ + + + + + + + +
+ + +
+ + {Int} + doFilter(showCallback, hideCallback) + +
+
+ doFilter executes all filters added since last call Now supports a callback function for when a marker is shown or hidden + + +
+ + + + +
+
Parameters:
+ +
+ {Function} showCallback + +
+
+ +
+ {Function} hideCallback + +
+
+ +
+ + + + + +
+
Returns:
+ +
{Int} count of visible markers
+ +
+ + + + +
+ + +
+ + + dragging(on) + +
+
+ Enable/disable dragging of the map + + +
+ + + + +
+
Parameters:
+ +
+ {Boolean} on + +
+
+ +
+ + +
+
Deprecated:
+
+ Use setOption instead. +
+
+ + + + + + + +
+ + +
+ + + enableScrollWheelZoom() + +
+
+ Enable scroll wheel zooming + + +
+ + + + + +
+
Deprecated:
+
+ Use setOption instead. +
+
+ + + + + + + +
+ + +
+ + {array} + getAttributeExtremes(name) + +
+
+ getAttributeExtremes returns the minimum/maximum of "field" from all markers + + +
+ + + + +
+
Parameters:
+ +
+ {field} name + +
+
of "field" to query
+ +
+ + + + + +
+
Returns:
+ +
{array} of minimum/maximum
+ +
+ + + + +
+ + +
+ + {BoundingBox} + getBounds() + +
+
+ Gets the BoundingBox of the map + + +
+ + + + + + + + +
+
Returns:
+ +
{BoundingBox} The bounding box for the current map state
+ +
+ + + + +
+ + +
+ + {LatLonPoint} + getCenter() + +
+
+ Gets the central point of the map + + +
+ + + + + + + + +
+
Returns:
+ +
{LatLonPoint} The center point of the map
+ +
+ + + + +
+ + +
+ + + getMap() + +
+
+ getMap returns the native map object that mapstraction is talking to + + +
+ + + + + + + + +
+
Returns:
+ +
the native map object mapstraction is using
+ +
+ + + + +
+ + +
+ + {Number} + getMapType() + +
+
+ Gets the imagery type for the map. The type can be one of: mxn.Mapstraction.ROAD mxn.Mapstraction.SATELLITE mxn.Mapstraction.HYBRID mxn.Mapstraction.PHYSICAL + + +
+ + + + + + + + +
+
Returns:
+ +
{Number}
+ +
+ + + + +
+ + +
+ + {Float} + getPixelRatio() + +
+
+ Returns a ratio to turn distance into pixels based on current projection + + +
+ + + + + + + + +
+
Returns:
+ +
{Float} ratio
+ +
+ + + + +
+ + +
+ + {Integer} + getZoom() + +
+
+ Returns the zoom level of the map + + +
+ + + + + + + + +
+
Returns:
+ +
{Integer} The zoom level of the map
+ +
+ + + + +
+ + +
+ + {Integer} + getZoomLevelForBoundingBox(bbox) + +
+
+ Returns the best zoom level for bounds given + + +
+ + + + +
+
Parameters:
+ +
+ {BoundingBox} bbox + +
+
The bounds to fit
+ +
+ + + + + +
+
Returns:
+ +
{Integer} The closest zoom level that contains the bounding box
+ +
+ + + + +
+ + +
+ + + isLoaded(api) + +
+
+ Returns the loaded state of a Map Provider + + +
+ + + + +
+
Parameters:
+ +
+ {String} api + +
+
Optional API to query for. If not specified, returns state of the originally created API
+ +
+ + + + + + + + +
+ + +
+ + + mousePosition(element) + +
+
+ Displays the coordinates of the cursor in the HTML element + + +
+ + + + +
+
Parameters:
+ +
+ {String} element + +
+
ID of the HTML element to display the coordinates in
+ +
+ + + + + + + + +
+ + +
+ + + moveendHandler(me) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ me + +
+
+ +
+ + + + + + + + +
+ + +
+ + + openBubble(LatLonPoint, Content) + +
+
+ Opens an info bubble at a given point, with given content + + +
+ + + + +
+
Parameters:
+ +
+ {point} LatLonPoint + +
+
where the window should open
+ +
+ {content} Content + +
+
string for the window
+ +
+ + + + + + + + +
+ + +
+ + + polylineCenterAndZoom(radius) + +
+
+ Automatically sets center and zoom level to show all polylines Takes into account radious of polyline + + +
+ + + + +
+
Parameters:
+ +
+ {Int} radius + +
+
+ +
+ + + + + + + + +
+ + +
+ + + removeAllFilters() + +
+
+ removeAllFilters + + +
+ + + + + + + + + + + +
+ + +
+ + + removeAllMarkers() + +
+
+ removeAllMarkers removes all the Markers on a map + + +
+ + + + + + + + + + + +
+ + +
+ + + removeAllPolylines() + +
+
+ Removes all polylines from the map + + +
+ + + + + + + + + + + +
+ + +
+ + + removeFilter(field, operator, value) + +
+
+ Remove the specified filter + + +
+ + + + +
+
Parameters:
+ +
+ {Object} field + +
+
+ +
+ {Object} operator + +
+
+ +
+ {Object} value + +
+
+ +
+ + + + + + + + +
+ + +
+ + + removeMarker(marker) + +
+
+ removeMarker removes a Marker from the map + + +
+ + + + +
+
Parameters:
+ +
+ {Marker} marker + +
+
The marker to remove
+ +
+ + + + + + + + +
+ + +
+ + + removePolyline(polyline) + +
+
+ Remove the polyline from the map + + +
+ + + + +
+
Parameters:
+ +
+ {Polyline} polyline + +
+
The Polyline to remove from the map
+ +
+ + + + + + + + +
+ + +
+ + + resizeTo(width, height) + +
+
+ Resize the current map to the specified width and height (since it is actually on a child div of the mapElement passed as argument to the Mapstraction constructor, the resizing of this mapElement may have no effect on the size of the actual map) + + +
+ + + + +
+
Parameters:
+ +
+ {Integer} width + +
+
The width the map should be.
+ +
+ {Integer} height + +
+
The width the map should be.
+ +
+ + + + + + + + +
+ + +
+ + + runDeferred() + +
+
+ Run any queued provider API calls for the methods defined in the provider's implementation. For example, if defferable in mxn.[provider].core.js is set to {getCenter: true, setCenter: true} then any calls to map.setCenter or map.getCenter will be queued up in this.onload. When the provider's implementation loads the map, it calls this.runDeferred and any queued calls will be run. + + +
+ + + + + + + + + + + +
+ + +
+ + + setBounds(bounds) + +
+
+ Sets the map to the appropriate location and zoom for a given BoundingBox + + +
+ + + + +
+
Parameters:
+ +
+ {BoundingBox} bounds + +
+
The bounding box you want the map to show
+ +
+ + + + + + + + +
+ + +
+ + + setCenter(point, options) + +
+
+ setCenter sets the central point of the map + + +
+ + + + +
+
Parameters:
+ +
+ {LatLonPoint} point + +
+
The point at which to center the map
+ +
+ {Object} options + +
+
Optional parameters
+ +
+ {Boolean} options.pan + +
+
Whether the map should move to the locations using a pan or just jump straight there
+ +
+ + + + + + + + +
+ + +
+ + + setCenterAndZoom(point, zoom) + +
+
+ Centers the map to some place and zoom level + + +
+ + + + +
+
Parameters:
+ +
+ {LatLonPoint} point + +
+
Where the center of the map should be
+ +
+ {Integer} zoom + +
+
The zoom level where 0 is all the way out.
+ +
+ + + + + + + + +
+ + +
+ + + setDebug(debug) + +
+
+ Set the debugging on or off - shows alert panels for functions that don't exist in Mapstraction + + +
+ + + + +
+
Parameters:
+ +
+ {Boolean} debug + +
+
true to turn on debugging, false to turn it off
+ +
+ + + + + + + + +
+ + +
+ + + setDefer(set) + +
+
+ Set the api call deferment on or off - When it's on, mxn.invoke will queue up provider API calls until runDeferred is called, at which time everything in the queue will be run in the order it was added. + + +
+ + + + +
+
Parameters:
+ +
+ {Boolean} set + +
+
deferred to true to turn on deferment
+ +
+ + + + + + + + +
+ + +
+ + + setImageOpacity(id, opacity) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ id + +
+
+ +
+ opacity + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setImagePosition(id) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ id + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setMapType(type) + +
+
+ Sets the imagery type for the map The type can be one of: mxn.Mapstraction.ROAD mxn.Mapstraction.SATELLITE mxn.Mapstraction.HYBRID mxn.Mapstraction.PHYSICAL + + +
+ + + + +
+
Parameters:
+ +
+ {Number} type + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setOption(sOptName, vVal) + +
+
+ Sets an option and applies it. + + +
+ + + + +
+
Parameters:
+ +
+ {String} sOptName + +
+
Option name
+ +
+ vVal + +
+
Option value
+ +
+ + + + + + + + +
+ + +
+ + + setOptions(oOpts) + +
+
+ Sets the current options to those specified in oOpts and applies them + + +
+ + + + +
+
Parameters:
+ +
+ {Object} oOpts + +
+
Hash of options to set
+ +
+ + + + + + + + +
+ + +
+ + + setZoom(zoom) + +
+
+ Sets the zoom level for the map MS doesn't seem to do zoom=0, and Gg's sat goes closer than it's maps, and MS's sat goes closer than Y!'s TODO: Mapstraction.prototype.getZoomLevels or something. + + +
+ + + + +
+
Parameters:
+ +
+ {Number} zoom + +
+
The (native to the map) level zoom the map to.
+ +
+ + + + + + + + +
+ + +
+ + + swap(api, element) + +
+
+ Change the current api on the fly + + +
+ + + + +
+
Parameters:
+ +
+ {String} api + +
+
The API to swap to
+ +
+ element + +
+
+ +
+ + + + + + + + +
+ + +
+ + + toggleFilter(field, operator, value) + +
+
+ Delete the current filter if present; otherwise add it + + +
+ + + + +
+
Parameters:
+ +
+ {Object} field + +
+
+ +
+ {Object} operator + +
+
+ +
+ {Object} value + +
+
+ +
+ + + + + + + + +
+ + +
+ + + toggleTileLayer(url) + +
+
+ Turns a Tile Layer on or off + + +
+ + + + +
+
Parameters:
+ +
+ {tile_url} url + +
+
of the tile layer that was created.
+ +
+ + + + + + + + +
+ + +
+ + + visibleCenterAndZoom() + +
+
+ Sets the center and zoom of the map to the smallest bounding box containing all visible markers and polylines will only include markers and polylines with an attribute of "visible" + + +
+ + + + + + + + + + + + + + + + + +
+ Event Detail +
+ + +
+ + + changeZoom() + +
+
+ Zoom is changed + + +
+ + + + + + + + + + + +
+ + +
+ + + click() + +
+
+ Map is clicked {location: LatLonPoint} + + +
+ + + + + + + + + + + +
+ + +
+ + + endPan() + +
+
+ Map is panned + + +
+ + + + + + + + + + + +
+ + +
+ + + load() + +
+
+ Map has loaded + + +
+ + + + + + + + + + + +
+ + +
+ + + markerAdded() + +
+
+ Marker is removed {marker: Marker} + + +
+ + + + + + + + + + + +
+ + +
+ + + markerRemoved() + +
+
+ Marker is removed {marker: Marker} + + +
+ + + + + + + + + + + +
+ + +
+ + + polylineAdded() + +
+
+ Polyline is added {polyline: Polyline} + + +
+ + + + + + + + + + + +
+ + +
+ + + polylineRemoved() + +
+
+ Polyline is removed {polyline: Polyline} + + +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Marker.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Marker.html new file mode 100644 index 0000000000..c5a89dceaf --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Marker.html @@ -0,0 +1,1375 @@ + + + + + + + JsDoc Reference - mxn.Marker + + + + + + + + + + + + + +
+ +

+ + Class mxn.Marker +

+ + +

+ + + + + +
Defined in: mxn.core.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.Marker(point) +
+
Marker create's a new marker pin
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
addData(options) +
+
addData conviniently set a hash of options on a marker
+
  + +
Closes the marker's info bubble.
+
  +
fromProprietary(apiId, marker) +
+
Retrieve the settings from a proprietary marker.
+
  +
getAttribute(key) +
+
getAttribute: gets the value of "key"
+
  +
hide() +
+
Hide the marker.
+
  + +
Whether the marker is hidden.
+
  + +
Open the marker's info bubble.
+
  +
setAttribute(key, value) +
+
Set an arbitrary key/value pair on a marker
+
  +
setChild(some_proprietary_marker) +
+
+
  +
setDraggable(draggable) +
+
Sets the draggable state of the marker
+
  +
setGroupName(sGrpName) +
+
Markers are grouped up by this name.
+
  +
setHover(hover) +
+
Sets that the marker info is displayed on hover
+
  +
setHoverIcon(hoverIconUrl) +
+
+
  +
setIcon(iconUrl, iconSize, iconAnchor) +
+
Sets the icon for a marker
+
  +
setIconAnchor(iconAnchor) +
+
Sets the anchor point for a marker
+
  +
setIconSize(iconSize) +
+
Sets the size of the icon for a marker
+
  +
setInfoBubble(infoBubble) +
+
Sets the html/text content for a bubble popup for a marker
+
  +
setInfoDiv(infoDiv, div) +
+
Sets the text and the id of the div element where to the information useful for putting information in a div outside of the map
+
  +
setLabel(labelText) +
+
+
  +
setShadowIcon(iconUrl, iconShadowSize) +
+
Sets the icon for a marker
+
  +
show() +
+
Show the marker.
+
  +
toProprietary(apiId) +
+
Converts the current Marker to a proprietary one for the API specified by apiId.
+
  +
update() +
+
Updates the Marker with the location of the attached proprietary marker on the map.
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.Marker(point) +
+ +
+ Marker create's a new marker pin + +
+ + + + + +
+
Parameters:
+ +
+ {LatLonPoint} point + +
+
the point on the map where the marker should go
+ +
+ + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + + addData(options) + +
+
+ addData conviniently set a hash of options on a marker + + +
+ + + + +
+
Parameters:
+ +
+ {Object} options + +
+
An object literal hash of key value pairs. Keys are: label, infoBubble, icon, iconShadow, infoDiv, draggable, hover, hoverIcon, openBubble, groupName.
+ +
+ + + + + + + + +
+ + +
+ + + closeBubble() + +
+
+ Closes the marker's info bubble. + + +
+ + + + + + + + + + + +
+ + +
+ + + fromProprietary(apiId, marker) + +
+
+ Retrieve the settings from a proprietary marker. + + +
+ + + + +
+
Parameters:
+ +
+ {String} apiId + +
+
The API ID of the proprietary point.
+ +
+ {Object} marker + +
+
The proprietary marker.
+ +
+ + + + + + + + +
+ + +
+ + + getAttribute(key) + +
+
+ getAttribute: gets the value of "key" + + +
+ + + + +
+
Parameters:
+ +
+ {String} key + +
+
+ +
+ + + + + +
+
Returns:
+ +
value
+ +
+ + + + +
+ + +
+ + + hide() + +
+
+ Hide the marker. + + +
+ + + + + + + + + + + +
+ + +
+ + + isHidden() + +
+
+ Whether the marker is hidden. + + +
+ + + + + + + + + + + +
+ + +
+ + + openBubble() + +
+
+ Open the marker's info bubble. + + +
+ + + + + + + + + + + +
+ + +
+ + + setAttribute(key, value) + +
+
+ Set an arbitrary key/value pair on a marker + + +
+ + + + +
+
Parameters:
+ +
+ {String} key + +
+
+ +
+ value + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setChild(some_proprietary_marker) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ some_proprietary_marker + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setDraggable(draggable) + +
+
+ Sets the draggable state of the marker + + +
+ + + + +
+
Parameters:
+ +
+ {Bool} draggable + +
+
set to true if marker should be draggable by the user
+ +
+ + + + + + + + +
+ + +
+ + + setGroupName(sGrpName) + +
+
+ Markers are grouped up by this name. declutterGroup makes use of this. + + +
+ + + + +
+
Parameters:
+ +
+ sGrpName + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setHover(hover) + +
+
+ Sets that the marker info is displayed on hover + + +
+ + + + +
+
Parameters:
+ +
+ {Boolean} hover + +
+
set to true if marker should display info on hover
+ +
+ + + + + + + + +
+ + +
+ + + setHoverIcon(hoverIconUrl) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ hoverIconUrl + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setIcon(iconUrl, iconSize, iconAnchor) + +
+
+ Sets the icon for a marker + + +
+ + + + +
+
Parameters:
+ +
+ {String} iconUrl + +
+
The URL of the image you want to be the icon
+ +
+ iconSize + +
+
+ +
+ iconAnchor + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setIconAnchor(iconAnchor) + +
+
+ Sets the anchor point for a marker + + +
+ + + + +
+
Parameters:
+ +
+ {Array} iconAnchor + +
+
The array offset in pixels of the anchor point from top left: [ right, down ]
+ +
+ + + + + + + + +
+ + +
+ + + setIconSize(iconSize) + +
+
+ Sets the size of the icon for a marker + + +
+ + + + +
+
Parameters:
+ +
+ {Array} iconSize + +
+
The array size in pixels of the marker image: [ width, height ]
+ +
+ + + + + + + + +
+ + +
+ + + setInfoBubble(infoBubble) + +
+
+ Sets the html/text content for a bubble popup for a marker + + +
+ + + + +
+
Parameters:
+ +
+ {String} infoBubble + +
+
the html/text you want displayed
+ +
+ + + + + + + + +
+ + +
+ + + setInfoDiv(infoDiv, div) + +
+
+ Sets the text and the id of the div element where to the information useful for putting information in a div outside of the map + + +
+ + + + +
+
Parameters:
+ +
+ {String} infoDiv + +
+
the html/text you want displayed
+ +
+ {String} div + +
+
the element id to use for displaying the text/html
+ +
+ + + + + + + + +
+ + +
+ + + setLabel(labelText) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ labelText + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setShadowIcon(iconUrl, iconShadowSize) + +
+
+ Sets the icon for a marker + + +
+ + + + +
+
Parameters:
+ +
+ {String} iconUrl + +
+
The URL of the image you want to be the icon
+ +
+ iconShadowSize + +
+
+ +
+ + + + + + + + +
+ + +
+ + + show() + +
+
+ Show the marker. + + +
+ + + + + + + + + + + +
+ + +
+ + + toProprietary(apiId) + +
+
+ Converts the current Marker to a proprietary one for the API specified by apiId. + + +
+ + + + +
+
Parameters:
+ +
+ {String} apiId + +
+
The API ID of the proprietary marker.
+ +
+ + + + + +
+
Returns:
+ +
A proprietary marker.
+ +
+ + + + +
+ + +
+ + + update() + +
+
+ Updates the Marker with the location of the attached proprietary marker on the map. + + +
+ + + + + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Polyline.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Polyline.html new file mode 100644 index 0000000000..488516e75a --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Polyline.html @@ -0,0 +1,1110 @@ + + + + + + + JsDoc Reference - mxn.Polyline + + + + + + + + + + + + + +
+ +

+ + Class mxn.Polyline +

+ + +

+ + + + + +
Defined in: mxn.core.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.Polyline(points) +
+
Instantiates a new Polyline.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
addData(options) +
+
addData convieniently set a hash of options on a polyline
+
  +
fromProprietary(apiId, polyline) +
+
Retrieve the settings from a proprietary polyline.
+
  +
getAttribute(key) +
+
Gets the value of "key"
+
  +
hide() +
+
Hide the polyline.
+
  + +
Whether the polyline is hidden.
+
  +
setAttribute(key, value) +
+
Set an arbitrary key/value pair on a polyline
+
  +
setChild(some_proprietary_polyline) +
+
+
  +
setClosed(bClosed) +
+
Marks the polyline as a closed polygon
+
  +
setColor(color) +
+
in the form: #RRGGBB Note map24 insists on upper case, so we convert it.
+
  +
setFillColor(sFillColor) +
+
Fill color for a closed polyline as HTML color value e.g.
+
  +
setFillOpacity(opacity) +
+
Set the opacity of the fill for a closed polyline
+
  +
setOpacity(opacity) +
+
Set the opacity of the line
+
  +
setWidth(width) +
+
Stroke width of the polyline
+
  +
show() +
+
Show the polyline.
+
  +
simplify(tolerance) +
+
Simplifies a polyline, averaging and reducing the points
+
  +
toProprietary(apiId) +
+
Converts the current Polyline to a proprietary one for the API specified by apiId.
+
  +
update() +
+
Updates the Polyline with the path of the attached proprietary polyline on the map.
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.Polyline(points) +
+ +
+ Instantiates a new Polyline. + +
+ + + + + +
+
Parameters:
+ +
+ {Point[]} points + +
+
Points that make up the Polyline.
+ +
+ + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + + addData(options) + +
+
+ addData convieniently set a hash of options on a polyline + + +
+ + + + +
+
Parameters:
+ +
+ {Object} options + +
+
An object literal hash of key value pairs. Keys are: color, width, opacity, closed, fillColor.
+ +
+ + + + + + + + +
+ + +
+ + + fromProprietary(apiId, polyline) + +
+
+ Retrieve the settings from a proprietary polyline. + + +
+ + + + +
+
Parameters:
+ +
+ {String} apiId + +
+
The API ID of the proprietary polyline.
+ +
+ {Object} polyline + +
+
The proprietary polyline.
+ +
+ + + + + + + + +
+ + +
+ + + getAttribute(key) + +
+
+ Gets the value of "key" + + +
+ + + + +
+
Parameters:
+ +
+ {String} key + +
+
+ +
+ + + + + +
+
Returns:
+ +
value
+ +
+ + + + +
+ + +
+ + + hide() + +
+
+ Hide the polyline. + + +
+ + + + + + + + + + + +
+ + +
+ + + isHidden() + +
+
+ Whether the polyline is hidden. + + +
+ + + + + + + + +
+
Returns:
+ +
True if the polyline is hidden
+ +
+ + + + +
+ + +
+ + + setAttribute(key, value) + +
+
+ Set an arbitrary key/value pair on a polyline + + +
+ + + + +
+
Parameters:
+ +
+ {String} key + +
+
+ +
+ value + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setChild(some_proprietary_polyline) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ some_proprietary_polyline + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setClosed(bClosed) + +
+
+ Marks the polyline as a closed polygon + + +
+ + + + +
+
Parameters:
+ +
+ {Boolean} bClosed + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setColor(color) + +
+
+ in the form: #RRGGBB Note map24 insists on upper case, so we convert it. + + +
+ + + + +
+
Parameters:
+ +
+ color + +
+
+ +
+ + + + + + + + +
+ + +
+ + + setFillColor(sFillColor) + +
+
+ Fill color for a closed polyline as HTML color value e.g. #RRGGBB + + +
+ + + + +
+
Parameters:
+ +
+ {String} sFillColor + +
+
HTML color value #RRGGBB
+ +
+ + + + + + + + +
+ + +
+ + + setFillOpacity(opacity) + +
+
+ Set the opacity of the fill for a closed polyline + + +
+ + + + +
+
Parameters:
+ +
+ {Float} opacity + +
+
A float between 0.0 and 1.0
+ +
+ + + + + + + + +
+ + +
+ + + setOpacity(opacity) + +
+
+ Set the opacity of the line + + +
+ + + + +
+
Parameters:
+ +
+ {Float} opacity + +
+
A float between 0.0 and 1.0
+ +
+ + + + + + + + +
+ + +
+ + + setWidth(width) + +
+
+ Stroke width of the polyline + + +
+ + + + +
+
Parameters:
+ +
+ {Integer} width + +
+
+ +
+ + + + + + + + +
+ + +
+ + + show() + +
+
+ Show the polyline. + + +
+ + + + + + + + + + + +
+ + +
+ + + simplify(tolerance) + +
+
+ Simplifies a polyline, averaging and reducing the points + + +
+ + + + +
+
Parameters:
+ +
+ {Number} tolerance + +
+
(1.0 is a good starting point)
+ +
+ + + + + + + + +
+ + +
+ + + toProprietary(apiId) + +
+
+ Converts the current Polyline to a proprietary one for the API specified by apiId. + + +
+ + + + +
+
Parameters:
+ +
+ {String} apiId + +
+
The API ID of the proprietary polyline.
+ +
+ + + + + +
+
Returns:
+ +
A proprietary polyline.
+ +
+ + + + +
+ + +
+ + + update() + +
+
+ Updates the Polyline with the path of the attached proprietary polyline on the map. + + +
+ + + + + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Radius.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Radius.html new file mode 100644 index 0000000000..8f4ec80cc8 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.Radius.html @@ -0,0 +1,420 @@ + + + + + + + JsDoc Reference - mxn.Radius + + + + + + + + + + + + + +
+ +

+ + Class mxn.Radius +

+ + +

+ + + + + +
Defined in: mxn.core.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.Radius(center, quality) +
+
Creates a new radius object for drawing circles around a point, does a lot of initial calculation to increase load time
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  +
getPolyline(radius, color) +
+
Returns polyline of a circle around the point based on new radius
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.Radius(center, quality) +
+ +
+ Creates a new radius object for drawing circles around a point, does a lot of initial calculation to increase load time + +
+ + + + + +
+
Parameters:
+ +
+ {LatLonPoint} center + +
+
LatLonPoint of the radius
+ +
+ {Number} quality + +
+
Number of points that comprise the approximated circle (20 is a good starting point)
+ +
+ + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + {Polyline} + getPolyline(radius, color) + +
+
+ Returns polyline of a circle around the point based on new radius + + +
+ + + + +
+
Parameters:
+ +
+ {Radius} radius + +
+
+ +
+ {Color} color + +
+
+ +
+ + + + + +
+
Returns:
+ +
{Polyline} Polyline
+ +
+ + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.html new file mode 100644 index 0000000000..206d00df50 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.html @@ -0,0 +1,599 @@ + + + + + + + JsDoc Reference - mxn + + + + + + + + + + + + + +
+ +

+ + Namespace mxn +

+ + +

+ + + + + +
Defined in: mxn.js. + +

+ + + + + + + + + + + + + + + + + +
Namespace Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
<static>   +
mxn.addEvents(oEvtSrc, aEvtNames) +
+
Bulk add some named events to an object.
+
<static>   +
mxn.addProxyMethods(func, aryMethods, bWithApiArg) +
+
Adds a list of named proxy methods to the prototype of a specified constructor function.
+
<static>   +
mxn.checkLoad(funcDetails) +
+
+
<static>   +
mxn.deferUntilLoaded(fnCall) +
+
+
<static>   +
mxn.register(sApiId, oApiImpl) +
+
Registers a set of provider specific implementation functions.
+
+ + + + + + + + + +
+
+ Namespace Detail +
+ +
+ mxn +
+ +
+ + +
+ + + + + + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
<static> + + + mxn.addEvents(oEvtSrc, aEvtNames) + +
+
+ Bulk add some named events to an object. + + +
+ + + + +
+
Parameters:
+ +
+ {Object} oEvtSrc + +
+
The event source object.
+ +
+ {String[]} aEvtNames + +
+
Event names to add.
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.addProxyMethods(func, aryMethods, bWithApiArg) + +
+
+ Adds a list of named proxy methods to the prototype of a specified constructor function. + + +
+ + + + +
+
Parameters:
+ +
+ {Function} func + +
+
Constructor function to add methods to
+ +
+ {Array} aryMethods + +
+
Array of method names to create
+ +
+ {Boolean} bWithApiArg + +
+
Optional. Whether the proxy methods will use an API argument
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.checkLoad(funcDetails) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ funcDetails + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.deferUntilLoaded(fnCall) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ fnCall + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.register(sApiId, oApiImpl) + +
+
+ Registers a set of provider specific implementation functions. + + +
+ + + + +
+
Parameters:
+ +
+ {String} sApiId + +
+
The API ID to register implementing functions for.
+ +
+ {Object} oApiImpl + +
+
An object containing the API implementation.
+ +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:41 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.util.Color.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.util.Color.html new file mode 100644 index 0000000000..8bd156370b --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.util.Color.html @@ -0,0 +1,431 @@ + + + + + + + JsDoc Reference - mxn.util.Color + + + + + + + + + + + + + +
+ +

+ + Class mxn.util.Color +

+ + +

+ + + + + +
Defined in: mxn.js. + +

+ + + + + + + + + + + + + + + + + +
Class Summary
Constructor AttributesConstructor Name and Description
  + +
Class for converting between HTML and RGB integer color formats.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
  + +
Retrieve the color value as an HTML hex string.
+
  +
setHexColor(strHexColor) +
+
Set the color from the supplied HTML hex string.
+
+ + + + + + + + + +
+
+ Class Detail +
+ +
+ mxn.util.Color() +
+ +
+ Class for converting between HTML and RGB integer color formats. Accepts either a HTML color string argument or three integers for R, G and B. + +
+ + + + + + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
+ + {String} + getHexColor() + +
+
+ Retrieve the color value as an HTML hex string. + + +
+ + + + + + + + +
+
Returns:
+ +
{String} Format '#00FF88'.
+ +
+ + + + +
+ + +
+ + + setHexColor(strHexColor) + +
+
+ Set the color from the supplied HTML hex string. + + +
+ + + + +
+
Parameters:
+ +
+ {String} strHexColor + +
+
A HTML hex color string e.g. '#00FF88'.
+ +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.util.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.util.html new file mode 100644 index 0000000000..dcb810382e --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/mxn.util.html @@ -0,0 +1,1125 @@ + + + + + + + JsDoc Reference - mxn.util + + + + + + + + + + + + + +
+ +

+ + Namespace mxn.util +

+ + +

+ + + + + +
Defined in: mxn.js. + +

+ + + + + + + + + + + + + + + + + +
Namespace Summary
Constructor AttributesConstructor Name and Description
  +
+ mxn.util +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
Method AttributesMethod Name and Description
<static>   +
mxn.util.$m() +
+
$m, the dollar function, elegantising getElementById()
+
<static>   +
mxn.util.convertLatLonXY_Yahoo(point, level) +
+
+
<static>   +
mxn.util.getAvailableProviders() +
+
Returns array of loaded provider apis
+
<static>   +
mxn.util.getDegreesFromGoogleZoomLevel(pixels, zoom) +
+
+
<static>   +
mxn.util.getGoogleZoomLevelFromDegrees(pixels, degrees) +
+
+
<static>   +
mxn.util.getStyle(el, prop) +
+
getStyle provides cross-browser access to css
+
<static>   +
mxn.util.KMToMiles(km) +
+
Convert kilometres to miles
+
<static>   +
mxn.util.loadScript(src, callback) +
+
loadScript is a JSON data fetcher
+
<static>   +
mxn.util.loadStyle(href) +
+
Load a stylesheet from a remote file.
+
<static>   +
mxn.util.logN(number, base) +
+
+
<static>   +
mxn.util.lonToMetres(lon, lat) +
+
Convert longitude to metres http://www.uwgb.edu/dutchs/UsefulData/UTMFormulas.HTM "A degree of longitude at the equator is 111.2km.
+
<static>   +
mxn.util.merge(oRecv, oGive) +
+
Merges properties of one object into another recursively.
+
<static>   +
mxn.util.metresToLon(m, lat) +
+
Convert metres to longitude
+
<static>   +
mxn.util.milesToKM(miles) +
+
Convert miles to kilometres
+
<static>   +
mxn.util.stringFormat(strIn) +
+
Formats a string, inserting values of subsequent parameters at specified locations.
+
<static>   +
mxn.util.traverse(start) +
+
Traverses an object graph using a series of map functions provided as arguments 2 to n.
+
+ + + + + + + + + +
+
+ Namespace Detail +
+ +
+ mxn.util +
+ +
+ + +
+ + + + + + + + + + + + +
+ + + + + + + +
+ Method Detail +
+ + +
<static> + + + mxn.util.$m() + +
+
+ $m, the dollar function, elegantising getElementById() + + +
+ + + + + + + + +
+
Returns:
+ +
An HTML element or array of HTML elements
+ +
+ + + + +
+ + +
<static> + + + mxn.util.convertLatLonXY_Yahoo(point, level) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ {Object} point + +
+
+ +
+ {Object} level + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + {Array} + mxn.util.getAvailableProviders() + +
+
+ Returns array of loaded provider apis + + +
+ + + + + + + + +
+
Returns:
+ +
{Array} providers
+ +
+ + + + +
+ + +
<static> + + + mxn.util.getDegreesFromGoogleZoomLevel(pixels, zoom) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ {Object} pixels + +
+
+ +
+ {Object} zoom + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.getGoogleZoomLevelFromDegrees(pixels, degrees) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ {Object} pixels + +
+
+ +
+ {Object} degrees + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.getStyle(el, prop) + +
+
+ getStyle provides cross-browser access to css + + +
+ + + + +
+
Parameters:
+ +
+ {Object} el + +
+
HTML Element
+ +
+ {String} prop + +
+
Style property name
+ +
+ + + + + + + + +
+ + +
<static> + + {Float} + mxn.util.KMToMiles(km) + +
+
+ Convert kilometres to miles + + +
+ + + + +
+
Parameters:
+ +
+ {Float} km + +
+
+ +
+ + + + + +
+
Returns:
+ +
{Float} miles
+ +
+ + + + +
+ + +
<static> + + + mxn.util.loadScript(src, callback) + +
+
+ loadScript is a JSON data fetcher + + +
+ + + + +
+
Parameters:
+ +
+ {String} src + +
+
URL to JSON file
+ +
+ {Function} callback + +
+
Callback function
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.loadStyle(href) + +
+
+ Load a stylesheet from a remote file. + + +
+ + + + +
+
Parameters:
+ +
+ {String} href + +
+
URL to the CSS file
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.logN(number, base) + +
+
+ + + +
+ + + + +
+
Parameters:
+ +
+ {Object} number + +
+
+ +
+ {Object} base + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.lonToMetres(lon, lat) + +
+
+ Convert longitude to metres http://www.uwgb.edu/dutchs/UsefulData/UTMFormulas.HTM "A degree of longitude at the equator is 111.2km... For other latitudes, multiply by cos(lat)" assumes the earth is a sphere but good enough for our purposes + + +
+ + + + +
+
Parameters:
+ +
+ {Float} lon + +
+
+ +
+ {Float} lat + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.merge(oRecv, oGive) + +
+
+ Merges properties of one object into another recursively. + + +
+ + + + +
+
Parameters:
+ +
+ {Object} oRecv + +
+
The object receiveing properties
+ +
+ {Object} oGive + +
+
The object donating properties
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.metresToLon(m, lat) + +
+
+ Convert metres to longitude + + +
+ + + + +
+
Parameters:
+ +
+ {Object} m + +
+
+ +
+ {Object} lat + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + {Float} + mxn.util.milesToKM(miles) + +
+
+ Convert miles to kilometres + + +
+ + + + +
+
Parameters:
+ +
+ {Float} miles + +
+
+ +
+ + + + + +
+
Returns:
+ +
{Float} km
+ +
+ + + + +
+ + +
<static> + + + mxn.util.stringFormat(strIn) + +
+
+ Formats a string, inserting values of subsequent parameters at specified locations. e.g. stringFormat('{0} {1}', 'hello', 'world'); + + +
+ + + + +
+
Parameters:
+ +
+ strIn + +
+
+ +
+ + + + + + + + +
+ + +
<static> + + + mxn.util.traverse(start) + +
+
+ Traverses an object graph using a series of map functions provided as arguments 2 to n. Map functions are only called if the working object is not undefined/null. For usage see mxn.google.geocoder.js. + + +
+ + + + +
+
Parameters:
+ +
+ start + +
+
+ +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ ©2009
+ Documentation generated by JsDoc Toolkit 2.1.1 on Sat Aug 06 2011 13:39:42 GMT-0700 (PDT) +
+ + diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.core.js.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.core.js.html new file mode 100644 index 0000000000..9676047e25 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.core.js.html @@ -0,0 +1,1997 @@ +
  1 (function(){
+  2 
+  3 /**
+  4  * @exports mxn.util.$m as $m
+  5  */
+  6 var $m = mxn.util.$m;
+  7 
+  8 /**
+  9  * Initialise our provider. This function should only be called 
+ 10  * from within mapstraction code, not exposed as part of the API.
+ 11  * @private
+ 12  */
+ 13 var init = function() {
+ 14 	this.invoker.go('init', [ this.currentElement, this.api ]);
+ 15 	this.applyOptions();
+ 16 };
+ 17 
+ 18 /**
+ 19  * Mapstraction instantiates a map with some API choice into the HTML element given
+ 20  * @name mxn.Mapstraction
+ 21  * @constructor
+ 22  * @param {String} element The HTML element to replace with a map
+ 23  * @param {String} api The API to use, one of 'google', 'googlev3', 'yahoo', 'microsoft', 'openstreetmap', 'multimap', 'map24', 'openlayers', 'mapquest'. If omitted, first loaded provider implementation is used.
+ 24  * @param {Bool} debug optional parameter to turn on debug support - this uses alert panels for unsupported actions
+ 25  * @exports Mapstraction as mxn.Mapstraction
+ 26  */
+ 27 var Mapstraction = mxn.Mapstraction = function(element, api, debug) {
+ 28 	if (!api){
+ 29 		api = mxn.util.getAvailableProviders()[0];
+ 30 	}
+ 31 	
+ 32 	/**
+ 33 	 * The name of the active API.
+ 34 	 * @name mxn.Mapstraction#api
+ 35 	 * @type {String}
+ 36 	 */
+ 37 	this.api = api;
+ 38 		
+ 39 	this.maps = {};
+ 40 	
+ 41 	/**
+ 42 	 * The DOM element containing the map.
+ 43 	 * @name mxn.Mapstraction#currentElement
+ 44 	 * @property
+ 45 	 * @type {DOMElement}
+ 46 	 */
+ 47 	this.currentElement = $m(element);
+ 48 	
+ 49 	this.eventListeners = [];
+ 50 	
+ 51 	/**
+ 52 	 * The markers currently loaded.
+ 53 	 * @name mxn.Mapstraction#markers
+ 54 	 * @property
+ 55 	 * @type {Array}
+ 56 	 */
+ 57 	this.markers = [];
+ 58 		
+ 59 	/**
+ 60 	 * The polylines currently loaded.
+ 61 	 * @name mxn.Mapstraction#polylines
+ 62 	 * @property
+ 63 	 * @type {Array}
+ 64 	 */
+ 65 	this.polylines = [];
+ 66 	
+ 67 	this.images = [];
+ 68 	this.controls = [];	
+ 69 	this.loaded = {};
+ 70 	this.onload = {};
+ 71 	//this.loaded[api] = true; // FIXME does this need to be true? -ajturner
+ 72 	this.onload[api] = [];
+ 73 	
+ 74 	/**
+ 75 	 * The original element value passed to the constructor.
+ 76 	 * @name mxn.Mapstraction#element
+ 77 	 * @property
+ 78 	 * @type {String|DOMElement}
+ 79 	 */
+ 80 	this.element = element;
+ 81 	
+ 82 	/**
+ 83 	 * Options defaults.
+ 84 	 * @name mxn.Mapstraction#options
+ 85 	 * @property {Object}
+ 86 	 */
+ 87 	this.options = {
+ 88 		enableScrollWheelZoom: false,
+ 89 		enableDragging: true,
+ 90 		enableMultipleBubbles: false
+ 91 	};
+ 92 	
+ 93 	this.addControlsArgs = {};
+ 94 	
+ 95 	// set up our invoker for calling API methods
+ 96 	this.invoker = new mxn.Invoker(this, 'Mapstraction', function(){ return this.api; });
+ 97 	
+ 98 	// Adding our events
+ 99 	mxn.addEvents(this, [
+100 		
+101 		/**
+102 		 * Map has loaded
+103 		 * @name mxn.Mapstraction#load
+104 		 * @event
+105 		 */
+106 		'load',
+107 		
+108 		/**
+109 		 * Map is clicked {location: LatLonPoint}
+110 		 * @name mxn.Mapstraction#click
+111 		 * @event
+112 		 */
+113 		'click',
+114 		
+115 		/**
+116 		 * Map is panned
+117 		 * @name mxn.Mapstraction#endPan
+118 		 * @event
+119 		 */
+120 		'endPan',
+121 		
+122 		/**
+123 		 * Zoom is changed
+124 		 * @name mxn.Mapstraction#changeZoom
+125 		 * @event
+126 		 */
+127 		'changeZoom',
+128 		
+129 		/**
+130 		 * Marker is removed {marker: Marker}
+131 		 * @name mxn.Mapstraction#markerAdded
+132 		 * @event
+133 		 */
+134 		'markerAdded',
+135 		
+136 		/**
+137 		 * Marker is removed {marker: Marker}
+138 		 * @name mxn.Mapstraction#markerRemoved
+139 		 * @event
+140 		 */
+141 		'markerRemoved',
+142 		
+143 		/**
+144 		 * Polyline is added {polyline: Polyline}
+145 		 * @name mxn.Mapstraction#polylineAdded
+146 		 * @event
+147 		 */
+148 		'polylineAdded',
+149 		
+150 		/**
+151 		 * Polyline is removed {polyline: Polyline}
+152 		 * @name mxn.Mapstraction#polylineRemoved
+153 		 * @event
+154 		 */
+155 		'polylineRemoved'
+156 	]);
+157 	
+158 	// finally initialize our proper API map
+159 	init.apply(this);
+160 };
+161 
+162 // Map type constants
+163 Mapstraction.ROAD = 1;
+164 Mapstraction.SATELLITE = 2;
+165 Mapstraction.HYBRID = 3;
+166 Mapstraction.PHYSICAL = 4;
+167 
+168 // methods that have no implementation in mapstraction core
+169 mxn.addProxyMethods(Mapstraction, [ 
+170 	/**
+171 	 * Adds a large map panning control and zoom buttons to the map
+172 	 * @name mxn.Mapstraction#addLargeControls
+173 	 * @function
+174 	 */
+175 	'addLargeControls',
+176 		
+177 	/**
+178 	 * Adds a map type control to the map (streets, aerial imagery etc)
+179 	 * @name mxn.Mapstraction#addMapTypeControls
+180 	 * @function
+181 	 */
+182 	'addMapTypeControls', 
+183 	
+184 	/**
+185 	 * Adds a GeoRSS or KML overlay to the map
+186 	 *  some flavors of GeoRSS and KML are not supported by some of the Map providers
+187 	 * @name mxn.Mapstraction#addOverlay
+188 	 * @function
+189 	 * @param {String} url GeoRSS or KML feed URL
+190 	 * @param {Boolean} autoCenterAndZoom Set true to auto center and zoom after the feed is loaded
+191 	 */
+192 	'addOverlay', 
+193 	
+194 	/**
+195 	 * Adds a small map panning control and zoom buttons to the map
+196 	 * @name mxn.Mapstraction#addSmallControls
+197 	 * @function
+198 	 */
+199 	'addSmallControls', 
+200 	
+201 	/**
+202 	 * Applies the current option settings
+203 	 * @name mxn.Mapstraction#applyOptions
+204 	 * @function
+205 	 */
+206 	'applyOptions',
+207 	
+208 	/**
+209 	 * Gets the BoundingBox of the map
+210 	 * @name mxn.Mapstraction#getBounds
+211 	 * @function
+212 	 * @returns {BoundingBox} The bounding box for the current map state
+213 	 */
+214 	'getBounds', 
+215 	
+216 	/**
+217 	 * Gets the central point of the map
+218 	 * @name mxn.Mapstraction#getCenter
+219 	 * @function
+220 	 * @returns {LatLonPoint} The center point of the map
+221 	 */
+222 	'getCenter', 
+223 	
+224 	/**
+225 	 * Gets the imagery type for the map.
+226 	 * The type can be one of:
+227 	 *  mxn.Mapstraction.ROAD
+228 	 *  mxn.Mapstraction.SATELLITE
+229 	 *  mxn.Mapstraction.HYBRID
+230 	 *  mxn.Mapstraction.PHYSICAL
+231 	 * @name mxn.Mapstraction#getMapType
+232 	 * @function
+233 	 * @returns {Number} 
+234 	 */
+235 	'getMapType', 
+236 
+237 	/**
+238 	 * Returns a ratio to turn distance into pixels based on current projection
+239 	 * @name mxn.Mapstraction#getPixelRatio
+240 	 * @function
+241 	 * @returns {Float} ratio
+242 	 */
+243 	'getPixelRatio', 
+244 	
+245 	/**
+246 	 * Returns the zoom level of the map
+247 	 * @name mxn.Mapstraction#getZoom
+248 	 * @function
+249 	 * @returns {Integer} The zoom level of the map
+250 	 */
+251 	'getZoom', 
+252 	
+253 	/**
+254 	 * Returns the best zoom level for bounds given
+255 	 * @name mxn.Mapstraction#getZoomLevelForBoundingBox
+256 	 * @function
+257 	 * @param {BoundingBox} bbox The bounds to fit
+258 	 * @returns {Integer} The closest zoom level that contains the bounding box
+259 	 */
+260 	'getZoomLevelForBoundingBox', 
+261 	
+262 	/**
+263 	 * Displays the coordinates of the cursor in the HTML element
+264 	 * @name mxn.Mapstraction#mousePosition
+265 	 * @function
+266 	 * @param {String} element ID of the HTML element to display the coordinates in
+267 	 */
+268 	'mousePosition',
+269 	
+270 	/**
+271 	 * Resize the current map to the specified width and height
+272 	 * (since it is actually on a child div of the mapElement passed
+273 	 * as argument to the Mapstraction constructor, the resizing of this
+274 	 * mapElement may have no effect on the size of the actual map)
+275 	 * @name mxn.Mapstraction#resizeTo
+276 	 * @function
+277 	 * @param {Integer} width The width the map should be.
+278 	 * @param {Integer} height The width the map should be.
+279 	 */
+280 	'resizeTo', 
+281 	
+282 	/**
+283 	 * Sets the map to the appropriate location and zoom for a given BoundingBox
+284 	 * @name mxn.Mapstraction#setBounds
+285 	 * @function
+286 	 * @param {BoundingBox} bounds The bounding box you want the map to show
+287 	 */
+288 	'setBounds', 
+289 	
+290 	/**
+291 	 * setCenter sets the central point of the map
+292 	 * @name mxn.Mapstraction#setCenter
+293 	 * @function
+294 	 * @param {LatLonPoint} point The point at which to center the map
+295 	 * @param {Object} options Optional parameters
+296 	 * @param {Boolean} options.pan Whether the map should move to the locations using a pan or just jump straight there
+297 	 */
+298 	'setCenter', 
+299 	
+300 	/**
+301 	 * Centers the map to some place and zoom level
+302 	 * @name mxn.Mapstraction#setCenterAndZoom
+303 	 * @function
+304 	 * @param {LatLonPoint} point Where the center of the map should be
+305 	 * @param {Integer} zoom The zoom level where 0 is all the way out.
+306 	 */
+307 	'setCenterAndZoom', 
+308 	
+309 	/**
+310 	 * Sets the imagery type for the map
+311 	 * The type can be one of:
+312 	 *  mxn.Mapstraction.ROAD
+313 	 *  mxn.Mapstraction.SATELLITE
+314 	 *  mxn.Mapstraction.HYBRID
+315 	 *  mxn.Mapstraction.PHYSICAL
+316 	 * @name mxn.Mapstraction#setMapType
+317 	 * @function
+318 	 * @param {Number} type 
+319 	 */
+320 	'setMapType', 
+321 	
+322 	/**
+323 	 * Sets the zoom level for the map
+324 	 * MS doesn't seem to do zoom=0, and Gg's sat goes closer than it's maps, and MS's sat goes closer than Y!'s
+325 	 * TODO: Mapstraction.prototype.getZoomLevels or something.
+326 	 * @name mxn.Mapstraction#setZoom
+327 	 * @function
+328 	 * @param {Number} zoom The (native to the map) level zoom the map to.
+329 	 */
+330 	'setZoom',
+331 	
+332 	/**
+333 	 * Turns a Tile Layer on or off
+334 	 * @name mxn.Mapstraction#toggleTileLayer
+335 	 * @function
+336 	 * @param {tile_url} url of the tile layer that was created.
+337 	 */
+338 	'toggleTileLayer',
+339 	
+340 	/**
+341 	 * Opens an info bubble at a given point, with given content
+342 	 * @name mxn.Mapstraction#openBubble
+343 	 * @function
+344 	 * @param {point} LatLonPoint where the window should open
+345 	 * @param {content} Content string for the window
+346 	 */
+347 	'openBubble',
+348 	
+349 	/**
+350 	 * Closes the map-based info bubble, if open
+351 	 * @name mxn.Mapstraction#closeBubble
+352 	 * @function
+353 	 */
+354 	'closeBubble'
+355 ]);
+356 
+357 /**
+358  * Sets the current options to those specified in oOpts and applies them
+359  * @param {Object} oOpts Hash of options to set
+360  */
+361 Mapstraction.prototype.setOptions = function(oOpts){
+362 	mxn.util.merge(this.options, oOpts);
+363 	this.applyOptions();
+364 };
+365 
+366 /**
+367  * Sets an option and applies it.
+368  * @param {String} sOptName Option name
+369  * @param vVal Option value
+370  */
+371 Mapstraction.prototype.setOption = function(sOptName, vVal){
+372 	this.options[sOptName] = vVal;
+373 	this.applyOptions();
+374 };
+375 
+376 /**
+377  * Enable scroll wheel zooming
+378  * @deprecated Use setOption instead.
+379  */
+380 Mapstraction.prototype.enableScrollWheelZoom = function() {
+381 	this.setOption('enableScrollWheelZoom', true);
+382 };
+383 
+384 /**
+385  * Enable/disable dragging of the map
+386  * @param {Boolean} on
+387  * @deprecated Use setOption instead.
+388  */
+389 Mapstraction.prototype.dragging = function(on) {
+390 	this.setOption('enableDragging', on);
+391 };
+392 
+393 /**
+394  * Change the current api on the fly
+395  * @param {String} api The API to swap to
+396  * @param element
+397  */
+398 Mapstraction.prototype.swap = function(element,api) {
+399 	if (this.api === api) {
+400 		return;
+401 	}
+402 
+403 	var center = this.getCenter();
+404 	var zoom = this.getZoom();
+405 
+406 	this.currentElement.style.visibility = 'hidden';
+407 	this.currentElement.style.display = 'none';
+408 
+409 	this.currentElement = $m(element);
+410 	this.currentElement.style.visibility = 'visible';
+411 	this.currentElement.style.display = 'block';
+412 
+413 	this.api = api;
+414 	this.onload[api] = [];
+415 	
+416 	if (this.maps[this.api] === undefined) {	
+417 		init.apply(this);
+418 
+419 		for (var i = 0; i < this.markers.length; i++) {
+420 			this.addMarker(this.markers[i], true);
+421 		}
+422 
+423 		for (var j = 0; j < this.polylines.length; j++) {
+424 			this.addPolyline( this.polylines[j], true);
+425 		}
+426 
+427 		this.setCenterAndZoom(center,zoom);		
+428 	}
+429 	else {
+430 
+431 		//sync the view
+432 		this.setCenterAndZoom(center,zoom);
+433 
+434 		//TODO synchronize the markers and polylines too
+435 		// (any overlays created after api instantiation are not sync'd)
+436 	}
+437 
+438 	this.addControls(this.addControlsArgs);
+439 
+440 };
+441 
+442 /**
+443  * Returns the loaded state of a Map Provider
+444  * @param {String} api Optional API to query for. If not specified, returns state of the originally created API
+445  */
+446 Mapstraction.prototype.isLoaded = function(api){
+447 	if (api === null) {
+448 		api = this.api;
+449 	}
+450 	return this.loaded[api];
+451 };
+452 
+453 /**
+454  * Set the debugging on or off - shows alert panels for functions that don't exist in Mapstraction
+455  * @param {Boolean} debug true to turn on debugging, false to turn it off
+456  */
+457 Mapstraction.prototype.setDebug = function(debug){
+458 	if(debug !== null) {
+459 		this.debug = debug;
+460 	}
+461 	return this.debug;
+462 };
+463 
+464 /**
+465  * Set the api call deferment on or off - When it's on, mxn.invoke will queue up provider API calls until
+466  * runDeferred is called, at which time everything in the queue will be run in the order it was added. 
+467  * @param {Boolean} set deferred to true to turn on deferment
+468  */
+469 Mapstraction.prototype.setDefer = function(deferred){
+470 	this.loaded[this.api] = !deferred;
+471 };
+472 
+473 /**
+474  * Run any queued provider API calls for the methods defined in the provider's implementation.
+475  * For example, if defferable in mxn.[provider].core.js is set to {getCenter: true, setCenter: true}
+476  * then any calls to map.setCenter or map.getCenter will be queued up in this.onload. When the provider's
+477  * implementation loads the map, it calls this.runDeferred and any queued calls will be run.
+478  */
+479 Mapstraction.prototype.runDeferred = function(){
+480 	while(this.onload[this.api].length > 0) {  
+481 		this.onload[this.api].shift().apply(this); //run deferred calls
+482 	}
+483 };
+484 
+485 /////////////////////////
+486 //
+487 // Event Handling
+488 //
+489 // FIXME need to consolidate some of these handlers...
+490 //
+491 ///////////////////////////
+492 
+493 // Click handler attached to native API
+494 Mapstraction.prototype.clickHandler = function(lat, lon, me) {
+495 	this.callEventListeners('click', {
+496 		location: new LatLonPoint(lat, lon)
+497 	});
+498 };
+499 
+500 // Move and zoom handler attached to native API
+501 Mapstraction.prototype.moveendHandler = function(me) {
+502 	this.callEventListeners('moveend', {});
+503 };
+504 
+505 /**
+506  * Add a listener for an event.
+507  * @param {String} type Event type to attach listener to
+508  * @param {Function} func Callback function
+509  * @param {Object} caller Callback object
+510  */
+511 Mapstraction.prototype.addEventListener = function() {
+512 	var listener = {};
+513 	listener.event_type = arguments[0];
+514 	listener.callback_function = arguments[1];
+515 
+516 	// added the calling object so we can retain scope of callback function
+517 	if(arguments.length == 3) {
+518 		listener.back_compat_mode = false;
+519 		listener.callback_object = arguments[2];
+520 	}
+521 	else {
+522 		listener.back_compat_mode = true;
+523 		listener.callback_object = null;
+524 	}
+525 	this.eventListeners.push(listener);
+526 };
+527 
+528 /**
+529  * Call listeners for a particular event.
+530  * @param {String} sEventType Call listeners of this event type
+531  * @param {Object} oEventArgs Event args object to pass back to the callback
+532  */
+533 Mapstraction.prototype.callEventListeners = function(sEventType, oEventArgs) {
+534 	oEventArgs.source = this;
+535 	for(var i = 0; i < this.eventListeners.length; i++) {
+536 		var evLi = this.eventListeners[i];
+537 		if(evLi.event_type == sEventType) {
+538 			// only two cases for this, click and move
+539 			if(evLi.back_compat_mode) {
+540 				if(evLi.event_type == 'click') {
+541 					evLi.callback_function(oEventArgs.location);
+542 				}
+543 				else {
+544 					evLi.callback_function();
+545 				}
+546 			}
+547 			else {
+548 				var scope = evLi.callback_object || this;
+549 				evLi.callback_function.call(scope, oEventArgs);
+550 			}
+551 		}
+552 	}
+553 };
+554 
+555 
+556 ////////////////////
+557 //
+558 // map manipulation
+559 //
+560 /////////////////////
+561 
+562 
+563 /**
+564  * addControls adds controls to the map. You specify which controls to add in
+565  * the associative array that is the only argument.
+566  * addControls can be called multiple time, with different args, to dynamically change controls.
+567  *
+568  * args = {
+569  *	 pan:	  true,
+570  *	 zoom:	 'large' || 'small',
+571  *	 overview: true,
+572  *	 scale:	true,
+573  *	 map_type: true,
+574  * }
+575  * @param {array} args Which controls to switch on
+576  */
+577 Mapstraction.prototype.addControls = function( args ) {
+578 	this.addControlsArgs = args;
+579 	this.invoker.go('addControls', arguments);
+580 };
+581 
+582 /**
+583  * Adds a marker pin to the map
+584  * @param {Marker} marker The marker to add
+585  * @param {Boolean} old If true, doesn't add this marker to the markers array. Used by the "swap" method
+586  */
+587 Mapstraction.prototype.addMarker = function(marker, old) {
+588 	marker.mapstraction = this;
+589 	marker.api = this.api;
+590 	marker.location.api = this.api;
+591 	marker.map = this.maps[this.api]; 
+592 	var propMarker = this.invoker.go('addMarker', arguments);
+593 	marker.setChild(propMarker);
+594 	if (!old) {
+595 		this.markers.push(marker);
+596 	}
+597 	this.markerAdded.fire({'marker': marker});
+598 };
+599 
+600 /**
+601  * addMarkerWithData will addData to the marker, then add it to the map
+602  * @param {Marker} marker The marker to add
+603  * @param {Object} data A data has to add
+604  */
+605 Mapstraction.prototype.addMarkerWithData = function(marker, data) {
+606 	marker.addData(data);
+607 	this.addMarker(marker);
+608 };
+609 
+610 /**
+611  * addPolylineWithData will addData to the polyline, then add it to the map
+612  * @param {Polyline} polyline The polyline to add
+613  * @param {Object} data A data has to add
+614  */
+615 Mapstraction.prototype.addPolylineWithData = function(polyline, data) {
+616 	polyline.addData(data);
+617 	this.addPolyline(polyline);
+618 };
+619 
+620 /**
+621  * removeMarker removes a Marker from the map
+622  * @param {Marker} marker The marker to remove
+623  */
+624 Mapstraction.prototype.removeMarker = function(marker) {	
+625 	var current_marker;
+626 	for(var i = 0; i < this.markers.length; i++){
+627 		current_marker = this.markers[i];
+628 		if(marker == current_marker) {
+629 			this.invoker.go('removeMarker', arguments);
+630 			marker.onmap = false;
+631 			this.markers.splice(i, 1);
+632 			this.markerRemoved.fire({'marker': marker});
+633 			break;
+634 		}
+635 	}
+636 };
+637 
+638 /**
+639  * removeAllMarkers removes all the Markers on a map
+640  */
+641 Mapstraction.prototype.removeAllMarkers = function() {
+642 	var current_marker;
+643 	while(this.markers.length > 0) {
+644 		current_marker = this.markers.pop();
+645 		this.invoker.go('removeMarker', [current_marker]);
+646 	}
+647 };
+648 
+649 /**
+650  * Declutter the markers on the map, group together overlapping markers.
+651  * @param {Object} opts Declutter options
+652  */
+653 Mapstraction.prototype.declutterMarkers = function(opts) {
+654 	if(this.loaded[this.api] === false) {
+655 		var me = this;
+656 		this.onload[this.api].push( function() {
+657 			me.declutterMarkers(opts);
+658 		} );
+659 		return;
+660 	}
+661 
+662 	var map = this.maps[this.api];
+663 
+664 	switch(this.api)
+665 	{
+666 		//	case 'yahoo':
+667 		//
+668 		//	  break;
+669 		//	case 'google':
+670 		//
+671 		//	  break;
+672 		//	case 'openstreetmap':
+673 		//
+674 		//	  break;
+675 		//	case 'microsoft':
+676 		//
+677 		//	  break;
+678 		//	case 'openlayers':
+679 		//
+680 		//	  break;
+681 		case 'multimap':
+682 			/*
+683 			 * Multimap supports quite a lot of decluttering options such as whether
+684 			 * to use an accurate of fast declutter algorithm and what icon to use to
+685 			 * represent a cluster. Using all this would mean abstracting all the enums
+686 			 * etc so we're only implementing the group name function at the moment.
+687 			 */
+688 			map.declutterGroup(opts.groupName);
+689 			break;
+690 		//	case 'mapquest':
+691 		//
+692 		//	  break;
+693 		//	case 'map24':
+694 		//
+695 		//	  break;
+696 		case '  dummy':
+697 			break;
+698 		default:
+699 			if(this.debug) {
+700 				alert(this.api + ' not supported by Mapstraction.declutterMarkers');
+701 			}
+702 	}
+703 };
+704 
+705 /**
+706  * Add a polyline to the map
+707  * @param {Polyline} polyline The Polyline to add to the map
+708  * @param {Boolean} old If true replaces an existing Polyline
+709  */
+710 Mapstraction.prototype.addPolyline = function(polyline, old) {
+711 	polyline.api = this.api;
+712 	polyline.map = this.maps[this.api];
+713 	var propPoly = this.invoker.go('addPolyline', arguments);
+714 	polyline.setChild(propPoly);
+715 	if(!old) {
+716 		this.polylines.push(polyline);
+717 	}
+718 	this.polylineAdded.fire({'polyline': polyline});
+719 };
+720 
+721 // Private remove implementation
+722 var removePolylineImpl = function(polyline) {
+723 	this.invoker.go('removePolyline', arguments);
+724 	polyline.onmap = false;
+725 	this.polylineRemoved.fire({'polyline': polyline});
+726 };
+727 
+728 /**
+729  * Remove the polyline from the map
+730  * @param {Polyline} polyline The Polyline to remove from the map
+731  */
+732 Mapstraction.prototype.removePolyline = function(polyline) {
+733 	var current_polyline;
+734 	for(var i = 0; i < this.polylines.length; i++){
+735 		current_polyline = this.polylines[i];
+736 		if(polyline == current_polyline) {
+737 			this.polylines.splice(i, 1);
+738 			removePolylineImpl.call(this, polyline);
+739 			break;
+740 		}
+741 	}
+742 };
+743 
+744 /**
+745  * Removes all polylines from the map
+746  */
+747 Mapstraction.prototype.removeAllPolylines = function() {
+748 	var current_polyline;
+749 	while(this.polylines.length > 0) {
+750 		current_polyline = this.polylines.pop();
+751 		removePolylineImpl.call(this, current_polyline);
+752 	}
+753 };
+754 
+755 /**
+756  * autoCenterAndZoom sets the center and zoom of the map to the smallest bounding box
+757  * containing all markers
+758  */
+759 Mapstraction.prototype.autoCenterAndZoom = function() {
+760 	var lat_max = -90;
+761 	var lat_min = 90;
+762 	var lon_max = -180;
+763 	var lon_min = 180;
+764 	var lat, lon;
+765 	var checkMinMax = function(){
+766 		if (lat > lat_max) {
+767 			lat_max = lat;
+768 		}
+769 		if (lat < lat_min) {
+770 			lat_min = lat;
+771 		}
+772 		if (lon > lon_max) {
+773 			lon_max = lon;
+774 		}
+775 		if (lon < lon_min) {
+776 			lon_min = lon;
+777 		}
+778 	};
+779 	for (var i = 0; i < this.markers.length; i++) {
+780 		lat = this.markers[i].location.lat;
+781 		lon = this.markers[i].location.lon;
+782 		checkMinMax();
+783 	}
+784 	for(i = 0; i < this.polylines.length; i++) {
+785 		for (var j = 0; j < this.polylines[i].points.length; j++) {
+786 			lat = this.polylines[i].points[j].lat;
+787 			lon = this.polylines[i].points[j].lon;
+788 			checkMinMax();
+789 		}
+790 	}
+791 	this.setBounds( new BoundingBox(lat_min, lon_min, lat_max, lon_max) );
+792 };
+793 
+794 /**
+795  * centerAndZoomOnPoints sets the center and zoom of the map from an array of points
+796  *
+797  * This is useful if you don't want to have to add markers to the map
+798  */
+799 Mapstraction.prototype.centerAndZoomOnPoints = function(points) {
+800 	var bounds = new BoundingBox(points[0].lat,points[0].lon,points[0].lat,points[0].lon);
+801 
+802 	for (var i=1, len = points.length ; i<len; i++) {
+803 		bounds.extend(points[i]);
+804 	}
+805 
+806 	this.setBounds(bounds);
+807 };
+808 
+809 /**
+810  * Sets the center and zoom of the map to the smallest bounding box
+811  * containing all visible markers and polylines
+812  * will only include markers and polylines with an attribute of "visible"
+813  */
+814 Mapstraction.prototype.visibleCenterAndZoom = function() {
+815 	var lat_max = -90;
+816 	var lat_min = 90;
+817 	var lon_max = -180;
+818 	var lon_min = 180;
+819 	var lat, lon;
+820 	var checkMinMax = function(){
+821 		if (lat > lat_max) {
+822 			lat_max = lat;
+823 		}
+824 		if (lat < lat_min) {
+825 			lat_min = lat;
+826 		}
+827 		if (lon > lon_max) {
+828 			lon_max = lon;
+829 		}
+830 		if (lon < lon_min) {
+831 			lon_min = lon;
+832 		}
+833 	};
+834 	for (var i=0; i<this.markers.length; i++) {
+835 		if (this.markers[i].getAttribute("visible")) {
+836 			lat = this.markers[i].location.lat;
+837 			lon = this.markers[i].location.lon;
+838 			checkMinMax();
+839 		}
+840 	}
+841 
+842 	for (i=0; i<this.polylines.length; i++){
+843 		if (this.polylines[i].getAttribute("visible")) {
+844 			for (j=0; j<this.polylines[i].points.length; j++) {
+845 				lat = this.polylines[i].points[j].lat;
+846 				lon = this.polylines[i].points[j].lon;
+847 				checkMinMax();
+848 			}
+849 		}
+850 	}
+851 
+852 	this.setBounds(new BoundingBox(lat_min, lon_min, lat_max, lon_max));
+853 };
+854 
+855 /**
+856  * Automatically sets center and zoom level to show all polylines
+857  * Takes into account radious of polyline
+858  * @param {Int} radius
+859  */
+860 Mapstraction.prototype.polylineCenterAndZoom = function(radius) {
+861 	var lat_max = -90;
+862 	var lat_min = 90;
+863 	var lon_max = -180;
+864 	var lon_min = 180;
+865 
+866 	for (var i=0; i < mapstraction.polylines.length; i++)
+867 	{
+868 		for (var j=0; j<mapstraction.polylines[i].points.length; j++)
+869 		{
+870 			lat = mapstraction.polylines[i].points[j].lat;
+871 			lon = mapstraction.polylines[i].points[j].lon;
+872 
+873 			latConv = lonConv = radius;
+874 
+875 			if (radius > 0)
+876 			{
+877 				latConv = (radius / mapstraction.polylines[i].points[j].latConv());
+878 				lonConv = (radius / mapstraction.polylines[i].points[j].lonConv());
+879 			}
+880 
+881 			if ((lat + latConv) > lat_max) {
+882 				lat_max = (lat + latConv);
+883 			}
+884 			if ((lat - latConv) < lat_min) {
+885 				lat_min = (lat - latConv);
+886 			}
+887 			if ((lon + lonConv) > lon_max) {
+888 				lon_max = (lon + lonConv);
+889 			}
+890 			if ((lon - lonConv) < lon_min) {
+891 				lon_min = (lon - lonConv);
+892 			}
+893 		}
+894 	}
+895 
+896 	this.setBounds(new BoundingBox(lat_min, lon_min, lat_max, lon_max));
+897 };
+898 
+899 /**
+900  * addImageOverlay layers an georeferenced image over the map
+901  * @param {id} unique DOM identifier
+902  * @param {src} url of image
+903  * @param {opacity} opacity 0-100
+904  * @param {west} west boundary
+905  * @param {south} south boundary
+906  * @param {east} east boundary
+907  * @param {north} north boundary
+908  */
+909 Mapstraction.prototype.addImageOverlay = function(id, src, opacity, west, south, east, north) {
+910 	
+911 	var b = document.createElement("img");
+912 	b.style.display = 'block';
+913 	b.setAttribute('id',id);
+914 	b.setAttribute('src',src);
+915 	b.style.position = 'absolute';
+916 	b.style.zIndex = 1;
+917 	b.setAttribute('west',west);
+918 	b.setAttribute('south',south);
+919 	b.setAttribute('east',east);
+920 	b.setAttribute('north',north);
+921 	
+922 	var oContext = {
+923 		imgElm: b
+924 	};
+925 	
+926 	this.invoker.go('addImageOverlay', arguments, { context: oContext });
+927 };
+928 
+929 Mapstraction.prototype.setImageOpacity = function(id, opacity) {
+930 	if (opacity < 0) {
+931 		opacity = 0;
+932 	}
+933 	if (opacity >= 100) {
+934 		opacity = 100;
+935 	}
+936 	var c = opacity / 100;
+937 	var d = document.getElementById(id);
+938 	if(typeof(d.style.filter)=='string'){
+939 		d.style.filter='alpha(opacity:'+opacity+')';
+940 	}
+941 	if(typeof(d.style.KHTMLOpacity)=='string'){
+942 		d.style.KHTMLOpacity=c;
+943 	}
+944 	if(typeof(d.style.MozOpacity)=='string'){
+945 		d.style.MozOpacity=c;
+946 	}
+947 	if(typeof(d.style.opacity)=='string'){
+948 		d.style.opacity=c;
+949 	}
+950 };
+951 
+952 Mapstraction.prototype.setImagePosition = function(id) {
+953 	var imgElement = document.getElementById(id);
+954 	var oContext = {
+955 		latLng: { 
+956 			top: imgElement.getAttribute('north'),
+957 			left: imgElement.getAttribute('west'),
+958 			bottom: imgElement.getAttribute('south'),
+959 			right: imgElement.getAttribute('east')
+960 		},
+961 		pixels: { top: 0, right: 0, bottom: 0, left: 0 }
+962 	};
+963 	
+964 	this.invoker.go('setImagePosition', arguments, { context: oContext });
+965 
+966 	imgElement.style.top = oContext.pixels.top.toString() + 'px';
+967 	imgElement.style.left = oContext.pixels.left.toString() + 'px';
+968 	imgElement.style.width = (oContext.pixels.right - oContext.pixels.left).toString() + 'px';
+969 	imgElement.style.height = (oContext.pixels.bottom - oContext.pixels.top).toString() + 'px';
+970 };
+971 
+972 Mapstraction.prototype.addJSON = function(json) {
+973 	var features;
+974 	if (typeof(json) == "string") {
+975 		features = eval('(' + json + ')');
+976 	} else {
+977 		features = json;
+978 	}
+979 	features = features.features;
+980 	var map = this.maps[this.api];
+981 	var html = "";
+982 	var item;
+983 	var polyline;
+984 	var marker;
+985 	var markers = [];
+986 
+987 	if(features.type == "FeatureCollection") {
+988 		this.addJSON(features.features);
+989 	}
+990 
+991 	for (var i = 0; i < features.length; i++) {
+992 		item = features[i];
+993 		switch(item.geometry.type) {
+994 			case "Point":
+995 				html = "<strong>" + item.title + "</strong><p>" + item.description + "</p>";
+996 				marker = new Marker(new LatLonPoint(item.geometry.coordinates[1],item.geometry.coordinates[0]));
+997 				markers.push(marker);
+998 				this.addMarkerWithData(marker,{
+999 					infoBubble : html,
+1000 					label : item.title,
+1001 					date : "new Date(\""+item.date+"\")",
+1002 					iconShadow : item.icon_shadow,
+1003 					marker : item.id,
+1004 					iconShadowSize : item.icon_shadow_size,
+1005 					icon : item.icon,
+1006 					iconSize : item.icon_size,
+1007 					category : item.source_id,
+1008 					draggable : false,
+1009 					hover : false
+1010 				});
+1011 				break;
+1012 			case "Polygon":
+1013 				var points = [];
+1014 				polyline = new Polyline(points);
+1015 				mapstraction.addPolylineWithData(polyline,{
+1016 					fillColor : item.poly_color,
+1017 					date : "new Date(\""+item.date+"\")",
+1018 					category : item.source_id,
+1019 					width : item.line_width,
+1020 					opacity : item.line_opacity,
+1021 					color : item.line_color,
+1022 					polygon : true
+1023 				});
+1024 				markers.push(polyline);
+1025 				break;
+1026 			default:
+1027 		// console.log("Geometry: " + features.items[i].geometry.type);
+1028 		}
+1029 	}
+1030 	return markers;
+1031 };
+1032 
+1033 /**
+1034  * Adds a Tile Layer to the map
+1035  *
+1036  * Requires providing a parameterized tile url. Use {Z}, {X}, and {Y} to specify where the parameters
+1037  *  should go in the URL.
+1038  *
+1039  * For example, the OpenStreetMap tiles are:
+1040  *  m.addTileLayer("http://tile.openstreetmap.org/{Z}/{X}/{Y}.png", 1.0, "OSM", 1, 19, true);
+1041  *
+1042  * @param {tile_url} template url of the tiles.
+1043  * @param {opacity} opacity of the tile layer - 0 is transparent, 1 is opaque. (default=0.6)
+1044  * @param {copyright_text} copyright text to use for the tile layer. (default=Mapstraction)
+1045  * @param {min_zoom} Minimum (furtherest out) zoom level that tiles are available (default=1)
+1046  * @param {max_zoom} Maximum (closest) zoom level that the tiles are available (default=18)
+1047  * @param {map_type} Should the tile layer be a selectable map type in the layers palette (default=false)
+1048  */
+1049 Mapstraction.prototype.addTileLayer = function(tile_url, opacity, copyright_text, min_zoom, max_zoom, map_type) {
+1050 	if(!tile_url) {
+1051 		return;
+1052 	}
+1053 	
+1054 	this.tileLayers = this.tileLayers || [];	
+1055 	opacity = opacity || 0.6;
+1056 	copyright_text = copyright_text || "Mapstraction";
+1057 	min_zoom = min_zoom || 1;
+1058 	max_zoom = max_zoom || 18;
+1059 	map_type = map_type || false;
+1060 
+1061 	return this.invoker.go('addTileLayer', [ tile_url, opacity, copyright_text, min_zoom, max_zoom, map_type] );
+1062 };
+1063 
+1064 /**
+1065  * addFilter adds a marker filter
+1066  * @param {field} name of attribute to filter on
+1067  * @param {operator} presently only "ge" or "le"
+1068  * @param {value} the value to compare against
+1069  */
+1070 Mapstraction.prototype.addFilter = function(field, operator, value) {
+1071 	if (!this.filters) {
+1072 		this.filters = [];
+1073 	}
+1074 	this.filters.push( [field, operator, value] );
+1075 };
+1076 
+1077 /**
+1078  * Remove the specified filter
+1079  * @param {Object} field
+1080  * @param {Object} operator
+1081  * @param {Object} value
+1082  */
+1083 Mapstraction.prototype.removeFilter = function(field, operator, value) {
+1084 	if (!this.filters) {
+1085 		return;
+1086 	}
+1087 
+1088 	var del;
+1089 	for (var f=0; f<this.filters.length; f++) {
+1090 		if (this.filters[f][0] == field &&
+1091 			(! operator || (this.filters[f][1] == operator && this.filters[f][2] == value))) {
+1092 			this.filters.splice(f,1);
+1093 			f--; //array size decreased
+1094 		}
+1095 	}
+1096 };
+1097 
+1098 /**
+1099  * Delete the current filter if present; otherwise add it
+1100  * @param {Object} field
+1101  * @param {Object} operator
+1102  * @param {Object} value
+1103  */
+1104 Mapstraction.prototype.toggleFilter = function(field, operator, value) {
+1105 	if (!this.filters) {
+1106 		this.filters = [];
+1107 	}
+1108 
+1109 	var found = false;
+1110 	for (var f = 0; f < this.filters.length; f++) {
+1111 		if (this.filters[f][0] == field && this.filters[f][1] == operator && this.filters[f][2] == value) {
+1112 			this.filters.splice(f,1);
+1113 			f--; //array size decreased
+1114 			found = true;
+1115 		}
+1116 	}
+1117 
+1118 	if (! found) {
+1119 		this.addFilter(field, operator, value);
+1120 	}
+1121 };
+1122 
+1123 /**
+1124  * removeAllFilters
+1125  */
+1126 Mapstraction.prototype.removeAllFilters = function() {
+1127 	this.filters = [];
+1128 };
+1129 
+1130 /**
+1131  * doFilter executes all filters added since last call
+1132  * Now supports a callback function for when a marker is shown or hidden
+1133  * @param {Function} showCallback
+1134  * @param {Function} hideCallback
+1135  * @returns {Int} count of visible markers
+1136  */
+1137 Mapstraction.prototype.doFilter = function(showCallback, hideCallback) {
+1138 	var map = this.maps[this.api];
+1139 	var visibleCount = 0;
+1140 	var f;
+1141 	if (this.filters) {
+1142 		switch (this.api) {
+1143 			case 'multimap':
+1144 				/* TODO polylines aren't filtered in multimap */
+1145 				var mmfilters = [];
+1146 				for (f=0; f<this.filters.length; f++) {
+1147 					mmfilters.push( new MMSearchFilter( this.filters[f][0], this.filters[f][1], this.filters[f][2] ));
+1148 				}
+1149 				map.setMarkerFilters( mmfilters );
+1150 				map.redrawMap();
+1151 				break;
+1152 			case '  dummy':
+1153 				break;
+1154 			default:
+1155 				var vis;
+1156 				for (var m=0; m<this.markers.length; m++) {
+1157 					vis = true;
+1158 					for (f = 0; f < this.filters.length; f++) {
+1159 						if (! this.applyFilter(this.markers[m], this.filters[f])) {
+1160 							vis = false;
+1161 						}
+1162 					}
+1163 					if (vis) {
+1164 						visibleCount ++;
+1165 						if (showCallback){
+1166 							showCallback(this.markers[m]);
+1167 						}
+1168 						else {
+1169 							this.markers[m].show();
+1170 						}
+1171 					} 
+1172 					else { 
+1173 						if (hideCallback){
+1174 							hideCallback(this.markers[m]);
+1175 						}
+1176 						else {
+1177 							this.markers[m].hide();
+1178 						}
+1179 					}
+1180 
+1181 					this.markers[m].setAttribute("visible", vis);
+1182 				}
+1183 				break;
+1184 		}
+1185 	}
+1186 	return visibleCount;
+1187 };
+1188 
+1189 Mapstraction.prototype.applyFilter = function(o, f) {
+1190 	var vis = true;
+1191 	switch (f[1]) {
+1192 		case 'ge':
+1193 			if (o.getAttribute( f[0] ) < f[2]) {
+1194 				vis = false;
+1195 			}
+1196 			break;
+1197 		case 'le':
+1198 			if (o.getAttribute( f[0] ) > f[2]) {
+1199 				vis = false;
+1200 			}
+1201 			break;
+1202 		case 'eq':
+1203 			if (o.getAttribute( f[0] ) == f[2]) {
+1204 				vis = false;
+1205 			}
+1206 			break;
+1207 	}
+1208 
+1209 	return vis;
+1210 };
+1211 
+1212 /**
+1213  * getAttributeExtremes returns the minimum/maximum of "field" from all markers
+1214  * @param {field} name of "field" to query
+1215  * @returns {array} of minimum/maximum
+1216  */
+1217 Mapstraction.prototype.getAttributeExtremes = function(field) {
+1218 	var min;
+1219 	var max;
+1220 	for (var m=0; m<this.markers.length; m++) {
+1221 		if (! min || min > this.markers[m].getAttribute(field)) {
+1222 			min = this.markers[m].getAttribute(field);
+1223 		}
+1224 		if (! max || max < this.markers[m].getAttribute(field)) {
+1225 			max = this.markers[m].getAttribute(field);
+1226 		}
+1227 	}
+1228 	for (var p=0; m<this.polylines.length; m++) {
+1229 		if (! min || min > this.polylines[p].getAttribute(field)) {
+1230 			min = this.polylines[p].getAttribute(field);
+1231 		}
+1232 		if (! max || max < this.polylines[p].getAttribute(field)) {
+1233 			max = this.polylines[p].getAttribute(field);
+1234 		}
+1235 	}
+1236 
+1237 	return [min, max];
+1238 };
+1239 
+1240 /**
+1241  * getMap returns the native map object that mapstraction is talking to
+1242  * @returns the native map object mapstraction is using
+1243  */
+1244 Mapstraction.prototype.getMap = function() {
+1245 	// FIXME in an ideal world this shouldn't exist right?
+1246 	return this.maps[this.api];
+1247 };
+1248 
+1249 
+1250 //////////////////////////////
+1251 //
+1252 //   LatLonPoint
+1253 //
+1254 /////////////////////////////
+1255 
+1256 /**
+1257  * LatLonPoint is a point containing a latitude and longitude with helper methods
+1258  * @name mxn.LatLonPoint
+1259  * @constructor
+1260  * @param {double} lat is the latitude
+1261  * @param {double} lon is the longitude
+1262  * @exports LatLonPoint as mxn.LatLonPoint
+1263  */
+1264 var LatLonPoint = mxn.LatLonPoint = function(lat, lon) {
+1265 	// TODO error if undefined?
+1266 	//  if (lat == undefined) alert('undefined lat');
+1267 	//  if (lon == undefined) alert('undefined lon');
+1268 	this.lat = lat;
+1269 	this.lon = lon;
+1270 	this.lng = lon; // lets be lon/lng agnostic
+1271 	
+1272 	this.invoker = new mxn.Invoker(this, 'LatLonPoint');		
+1273 };
+1274 
+1275 mxn.addProxyMethods(LatLonPoint, [ 
+1276 	/**
+1277 	 * Retrieve the lat and lon values from a proprietary point.
+1278 	 * @name mxn.LatLonPoint#fromProprietary
+1279 	 * @function
+1280 	 * @param {String} apiId The API ID of the proprietary point.
+1281 	 * @param {Object} point The proprietary point.
+1282 	 */
+1283 	'fromProprietary',
+1284 	
+1285 	/**
+1286 	 * Converts the current LatLonPoint to a proprietary one for the API specified by apiId.
+1287 	 * @name mxn.LatLonPoint#toProprietary
+1288 	 * @function
+1289 	 * @param {String} apiId The API ID of the proprietary point.
+1290 	 * @returns A proprietary point.
+1291 	 */
+1292 	'toProprietary'
+1293 ], true);
+1294 
+1295 /**
+1296  * toString returns a string represntation of a point
+1297  * @returns a string like '51.23, -0.123'
+1298  * @type String
+1299  */
+1300 LatLonPoint.prototype.toString = function() {
+1301 	return this.lat + ', ' + this.lon;
+1302 };
+1303 
+1304 /**
+1305  * distance returns the distance in kilometers between two points
+1306  * @param {LatLonPoint} otherPoint The other point to measure the distance from to this one
+1307  * @returns the distance between the points in kilometers
+1308  * @type double
+1309  */
+1310 LatLonPoint.prototype.distance = function(otherPoint) {
+1311 	// Uses Haversine formula from http://www.movable-type.co.uk
+1312 	var rads = Math.PI / 180;
+1313 	var diffLat = (this.lat-otherPoint.lat) * rads;
+1314 	var diffLon = (this.lon-otherPoint.lon) * rads; 
+1315 	var a = Math.sin(diffLat / 2) * Math.sin(diffLat / 2) +
+1316 		Math.cos(this.lat*rads) * Math.cos(otherPoint.lat*rads) * 
+1317 		Math.sin(diffLon/2) * Math.sin(diffLon/2); 
+1318 	return 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)) * 6371; // Earth's mean radius in km
+1319 };
+1320 
+1321 /**
+1322  * equals tests if this point is the same as some other one
+1323  * @param {LatLonPoint} otherPoint The other point to test with
+1324  * @returns true or false
+1325  * @type boolean
+1326  */
+1327 LatLonPoint.prototype.equals = function(otherPoint) {
+1328 	return this.lat == otherPoint.lat && this.lon == otherPoint.lon;
+1329 };
+1330 
+1331 /**
+1332  * Returns latitude conversion based on current projection
+1333  * @returns {Float} conversion
+1334  */
+1335 LatLonPoint.prototype.latConv = function() {
+1336 	return this.distance(new LatLonPoint(this.lat + 0.1, this.lon))*10;
+1337 };
+1338 
+1339 /**
+1340  * Returns longitude conversion based on current projection
+1341  * @returns {Float} conversion
+1342  */
+1343 LatLonPoint.prototype.lonConv = function() {
+1344 	return this.distance(new LatLonPoint(this.lat, this.lon + 0.1))*10;
+1345 };
+1346 
+1347 
+1348 //////////////////////////
+1349 //
+1350 //  BoundingBox
+1351 //
+1352 //////////////////////////
+1353 
+1354 /**
+1355  * BoundingBox creates a new bounding box object
+1356  * @name mxn.BoundingBox
+1357  * @constructor
+1358  * @param {double} swlat the latitude of the south-west point
+1359  * @param {double} swlon the longitude of the south-west point
+1360  * @param {double} nelat the latitude of the north-east point
+1361  * @param {double} nelon the longitude of the north-east point
+1362  * @exports BoundingBox as mxn.BoundingBox
+1363  */
+1364 var BoundingBox = mxn.BoundingBox = function(swlat, swlon, nelat, nelon) {
+1365 	//FIXME throw error if box bigger than world
+1366 	//alert('new bbox ' + swlat + ',' +  swlon + ',' +  nelat + ',' + nelon);
+1367 	this.sw = new LatLonPoint(swlat, swlon);
+1368 	this.ne = new LatLonPoint(nelat, nelon);
+1369 };
+1370 
+1371 /**
+1372  * getSouthWest returns a LatLonPoint of the south-west point of the bounding box
+1373  * @returns the south-west point of the bounding box
+1374  * @type LatLonPoint
+1375  */
+1376 BoundingBox.prototype.getSouthWest = function() {
+1377 	return this.sw;
+1378 };
+1379 
+1380 /**
+1381  * getNorthEast returns a LatLonPoint of the north-east point of the bounding box
+1382  * @returns the north-east point of the bounding box
+1383  * @type LatLonPoint
+1384  */
+1385 BoundingBox.prototype.getNorthEast = function() {
+1386 	return this.ne;
+1387 };
+1388 
+1389 /**
+1390  * isEmpty finds if this bounding box has zero area
+1391  * @returns whether the north-east and south-west points of the bounding box are the same point
+1392  * @type boolean
+1393  */
+1394 BoundingBox.prototype.isEmpty = function() {
+1395 	var box = this;
+1396 	// works for both 0 area and undefined points
+1397 	return (box.ne.lat == box.sw.lat && box.ne.lon == box.sw.lon) ||
+1398         (isNaN(box.ne.lat) || isNaN(box.sw.lat));
+1399 };
+1400 
+1401 /**
+1402  * contains finds whether a given point is within a bounding box
+1403  * @param {LatLonPoint} point the point to test with
+1404  * @returns whether point is within this bounding box
+1405  * @type boolean
+1406  */
+1407 BoundingBox.prototype.contains = function(point){
+1408 	return point.lat >= this.sw.lat && point.lat <= this.ne.lat && point.lon >= this.sw.lon && point.lon <= this.ne.lon;
+1409 };
+1410 
+1411 /**
+1412  * toSpan returns a LatLonPoint with the lat and lon as the height and width of the bounding box
+1413  * @returns a LatLonPoint containing the height and width of this bounding box
+1414  * @type LatLonPoint
+1415  */
+1416 BoundingBox.prototype.toSpan = function() {
+1417 	return new LatLonPoint( Math.abs(this.sw.lat - this.ne.lat), Math.abs(this.sw.lon - this.ne.lon) );
+1418 };
+1419 
+1420 /**
+1421  * extend extends the bounding box to include the new point
+1422  */
+1423 BoundingBox.prototype.extend = function(point) {
+1424 	var box = this;
+1425 	// checking undefined here allows extending an empty box
+1426 	if (box.sw.lat === undefined || box.sw.lat > point.lat) {
+1427 		box.sw.lat = point.lat;
+1428 	}
+1429 	if (box.sw.lon === undefined || box.sw.lon > point.lon) {
+1430 		box.sw.lon = point.lon;
+1431 	}
+1432 	if (box.ne.lat === undefined || box.ne.lat < point.lat) {
+1433 		box.ne.lat = point.lat;
+1434 	}
+1435 	if (box.ne.lon === undefined || box.ne.lon < point.lon) {
+1436 		box.ne.lon = point.lon;
+1437 	}
+1438 };
+1439 
+1440 /** 
+1441  * getCenter calculates the center of a bounding box. 
+1442  * @returns a LatLonPoint at the center of this bounding box.
+1443  */
+1444 BoundingBox.prototype.getCenter = function() {
+1445 	var box = this,
+1446 		ne = box.getNorthEast(),
+1447 		sw = box.getSouthWest();
+1448 	return new LatLonPoint(
+1449 		sw.lat + (ne.lat - sw.lat)/2,
+1450 		sw.lon + (ne.lon - sw.lon)/2
+1451 	);
+1452 };
+1453 
+1454 //////////////////////////////
+1455 //
+1456 //  Marker
+1457 //
+1458 ///////////////////////////////
+1459 
+1460 /**
+1461  * Marker create's a new marker pin
+1462  * @name mxn.Marker
+1463  * @constructor
+1464  * @param {LatLonPoint} point the point on the map where the marker should go
+1465  * @exports Marker as mxn.Marker
+1466  */
+1467 var Marker = mxn.Marker = function(point) {
+1468 	this.api = null;
+1469 	this.location = point;
+1470 	this.onmap = false;
+1471 	this.proprietary_marker = false;
+1472 	this.attributes = [];
+1473 	this.invoker = new mxn.Invoker(this, 'Marker', function(){return this.api;});
+1474 	mxn.addEvents(this, [ 
+1475 		'openInfoBubble',	// Info bubble opened
+1476 		'closeInfoBubble', 	// Info bubble closed
+1477 		'click'				// Marker clicked
+1478 	]);
+1479 };
+1480 
+1481 mxn.addProxyMethods(Marker, [ 
+1482 	/**
+1483 	 * Retrieve the settings from a proprietary marker.
+1484 	 * @name mxn.Marker#fromProprietary
+1485 	 * @function
+1486 	 * @param {String} apiId The API ID of the proprietary point.
+1487 	 * @param {Object} marker The proprietary marker.
+1488 	 */
+1489 	'fromProprietary',
+1490 	
+1491 	/**
+1492 	 * Hide the marker.
+1493 	 * @name mxn.Marker#hide
+1494 	 * @function
+1495 	 */
+1496 	'hide',
+1497 	
+1498 	/**
+1499 	 * Whether the marker is hidden.
+1500 	 * @name mxn.Marker#isHidden
+1501 	 * @function
+1502 	 */
+1503 	'isHidden',
+1504 	
+1505 	/**
+1506 	 * Open the marker's info bubble.
+1507 	 * @name mxn.Marker#openBubble
+1508 	 * @function
+1509 	 */
+1510 	'openBubble',
+1511 	
+1512 	/**
+1513 	 * Closes the marker's info bubble.
+1514 	 * @name mxn.Marker#closeBubble
+1515 	 * @function
+1516 	 */
+1517 	'closeBubble',
+1518 	
+1519 	/**
+1520 	 * Show the marker.
+1521 	 * @name mxn.Marker#show
+1522 	 * @function
+1523 	 */
+1524 	'show',
+1525 	
+1526 	/**
+1527 	 * Converts the current Marker to a proprietary one for the API specified by apiId.
+1528 	 * @name mxn.Marker#toProprietary
+1529 	 * @function
+1530 	 * @param {String} apiId The API ID of the proprietary marker.
+1531 	 * @returns A proprietary marker.
+1532 	 */
+1533 	'toProprietary',
+1534 	
+1535 	/**
+1536 	 * Updates the Marker with the location of the attached proprietary marker on the map.
+1537 	 * @name mxn.Marker#update
+1538 	 * @function
+1539 	 */
+1540 	'update'
+1541 ]);
+1542 
+1543 Marker.prototype.setChild = function(some_proprietary_marker) {
+1544 	this.proprietary_marker = some_proprietary_marker;
+1545 	some_proprietary_marker.mapstraction_marker = this;
+1546 	this.onmap = true;
+1547 };
+1548 
+1549 Marker.prototype.setLabel = function(labelText) {
+1550 	this.labelText = labelText;
+1551 };
+1552 
+1553 /**
+1554  * addData conviniently set a hash of options on a marker
+1555  * @param {Object} options An object literal hash of key value pairs. Keys are: label, infoBubble, icon, iconShadow, infoDiv, draggable, hover, hoverIcon, openBubble, groupName.
+1556  */
+1557 Marker.prototype.addData = function(options){
+1558 	for(var sOptKey in options) {
+1559 		if(options.hasOwnProperty(sOptKey)){
+1560 			switch(sOptKey) {
+1561 				case 'label':
+1562 					this.setLabel(options.label);
+1563 					break;
+1564 				case 'infoBubble':
+1565 					this.setInfoBubble(options.infoBubble);
+1566 					break;
+1567 				case 'icon':
+1568 					if(options.iconSize && options.iconAnchor) {
+1569 						this.setIcon(options.icon, options.iconSize, options.iconAnchor);
+1570 					}
+1571 					else if(options.iconSize) {
+1572 						this.setIcon(options.icon, options.iconSize);
+1573 					}
+1574 					else {
+1575 						this.setIcon(options.icon);
+1576 					}
+1577 					break;
+1578 				case 'iconShadow':
+1579 					if(options.iconShadowSize) {
+1580 						this.setShadowIcon(options.iconShadow, [ options.iconShadowSize[0], options.iconShadowSize[1] ]);
+1581 					}
+1582 					else {
+1583 						this.setIcon(options.iconShadow);
+1584 					}
+1585 					break;
+1586 				case 'infoDiv':
+1587 					this.setInfoDiv(options.infoDiv[0],options.infoDiv[1]);
+1588 					break;
+1589 				case 'draggable':
+1590 					this.setDraggable(options.draggable);
+1591 					break;
+1592 				case 'hover':
+1593 					this.setHover(options.hover);
+1594 					this.setHoverIcon(options.hoverIcon);
+1595 					break;
+1596 				case 'hoverIcon':
+1597 					this.setHoverIcon(options.hoverIcon);
+1598 					break;
+1599 				case 'openBubble':
+1600 					this.openBubble();
+1601 					break;
+1602 				case 'closeBubble':
+1603 					this.closeBubble();
+1604 					break;
+1605 				case 'groupName':
+1606 					this.setGroupName(options.groupName);
+1607 					break;
+1608 				default:
+1609 					// don't have a specific action for this bit of
+1610 					// data so set a named attribute
+1611 					this.setAttribute(sOptKey, options[sOptKey]);
+1612 					break;
+1613 			}
+1614 		}
+1615 	}
+1616 };
+1617 
+1618 /**
+1619  * Sets the html/text content for a bubble popup for a marker
+1620  * @param {String} infoBubble the html/text you want displayed
+1621  */
+1622 Marker.prototype.setInfoBubble = function(infoBubble) {
+1623 	this.infoBubble = infoBubble;
+1624 };
+1625 
+1626 /**
+1627  * Sets the text and the id of the div element where to the information
+1628  * useful for putting information in a div outside of the map
+1629  * @param {String} infoDiv the html/text you want displayed
+1630  * @param {String} div the element id to use for displaying the text/html
+1631  */
+1632 Marker.prototype.setInfoDiv = function(infoDiv,div){
+1633 	this.infoDiv = infoDiv;
+1634 	this.div = div;
+1635 };
+1636 
+1637 /**
+1638  * Sets the icon for a marker
+1639  * @param {String} iconUrl The URL of the image you want to be the icon
+1640  */
+1641 Marker.prototype.setIcon = function(iconUrl, iconSize, iconAnchor) {
+1642 	this.iconUrl = iconUrl;
+1643 	if(iconSize) {
+1644 		this.iconSize = iconSize;
+1645 	}
+1646 	if(iconAnchor) {
+1647 		this.iconAnchor = iconAnchor;
+1648 	}
+1649 };
+1650 
+1651 /**
+1652  * Sets the size of the icon for a marker
+1653  * @param {Array} iconSize The array size in pixels of the marker image: [ width, height ]
+1654  */
+1655 Marker.prototype.setIconSize = function(iconSize){
+1656 	if(iconSize) {
+1657 		this.iconSize = iconSize;
+1658 	}
+1659 };
+1660 
+1661 /**
+1662  * Sets the anchor point for a marker
+1663  * @param {Array} iconAnchor The array offset in pixels of the anchor point from top left: [ right, down ]
+1664  */
+1665 Marker.prototype.setIconAnchor = function(iconAnchor){
+1666 	if(iconAnchor) {
+1667 		this.iconAnchor = iconAnchor;
+1668 	}
+1669 };
+1670 
+1671 /**
+1672  * Sets the icon for a marker
+1673  * @param {String} iconUrl The URL of the image you want to be the icon
+1674  */
+1675 Marker.prototype.setShadowIcon = function(iconShadowUrl, iconShadowSize){
+1676 	this.iconShadowUrl = iconShadowUrl;
+1677 	if(iconShadowSize) {
+1678 		this.iconShadowSize = iconShadowSize;
+1679 	}
+1680 };
+1681 
+1682 Marker.prototype.setHoverIcon = function(hoverIconUrl){
+1683 	this.hoverIconUrl = hoverIconUrl;
+1684 };
+1685 
+1686 /**
+1687  * Sets the draggable state of the marker
+1688  * @param {Bool} draggable set to true if marker should be draggable by the user
+1689  */
+1690 Marker.prototype.setDraggable = function(draggable) {
+1691 	this.draggable = draggable;
+1692 };
+1693 
+1694 /**
+1695  * Sets that the marker info is displayed on hover
+1696  * @param {Boolean} hover set to true if marker should display info on hover
+1697  */
+1698 Marker.prototype.setHover = function(hover) {
+1699 	this.hover = hover;
+1700 };
+1701 
+1702 /**
+1703  * Markers are grouped up by this name. declutterGroup makes use of this.
+1704  */
+1705 Marker.prototype.setGroupName = function(sGrpName) {
+1706 	this.groupName = sGrpName;
+1707 };
+1708 
+1709 /**
+1710  * Set an arbitrary key/value pair on a marker
+1711  * @param {String} key
+1712  * @param value
+1713  */
+1714 Marker.prototype.setAttribute = function(key,value) {
+1715 	this.attributes[key] = value;
+1716 };
+1717 
+1718 /**
+1719  * getAttribute: gets the value of "key"
+1720  * @param {String} key
+1721  * @returns value
+1722  */
+1723 Marker.prototype.getAttribute = function(key) {
+1724 	return this.attributes[key];
+1725 };
+1726 
+1727 
+1728 ///////////////
+1729 // Polyline ///
+1730 ///////////////
+1731 
+1732 /**
+1733  * Instantiates a new Polyline.
+1734  * @name mxn.Polyline
+1735  * @constructor
+1736  * @param {Point[]} points Points that make up the Polyline.
+1737  * @exports Polyline as mxn.Polyline
+1738  */
+1739 var Polyline = mxn.Polyline = function(points) {
+1740 	this.api = null;
+1741 	this.points = points;
+1742 	this.attributes = [];
+1743 	this.onmap = false;
+1744 	this.proprietary_polyline = false;
+1745 	this.pllID = "mspll-"+new Date().getTime()+'-'+(Math.floor(Math.random()*Math.pow(2,16)));
+1746 	this.invoker = new mxn.Invoker(this, 'Polyline', function(){return this.api;});
+1747 	mxn.addEvents(this, [ 
+1748 		'click'				// Polyline clicked
+1749 	]);
+1750 };
+1751 
+1752 mxn.addProxyMethods(Polyline, [ 
+1753 
+1754 	/**
+1755 	 * Retrieve the settings from a proprietary polyline.
+1756 	 * @name mxn.Polyline#fromProprietary
+1757 	 * @function
+1758 	 * @param {String} apiId The API ID of the proprietary polyline.
+1759 	 * @param {Object} polyline The proprietary polyline.
+1760 	 */
+1761 	'fromProprietary', 
+1762 	
+1763 	/**
+1764 	 * Hide the polyline.
+1765 	 * @name mxn.Polyline#hide
+1766 	 * @function
+1767 	 */
+1768 	'hide',
+1769 	
+1770 	/**
+1771 	 * Show the polyline.
+1772 	 * @name mxn.Polyline#show
+1773 	 * @function
+1774 	 */
+1775 	'show',
+1776 	
+1777 	/**
+1778 	 * Whether the polyline is hidden.
+1779 	 * @name mxn.Polyline#isHidden
+1780 	 * @function
+1781 	 * @returns True if the polyline is hidden
+1782 	 */
+1783 	'isHidden',
+1784 	
+1785 	/**
+1786 	 * Converts the current Polyline to a proprietary one for the API specified by apiId.
+1787 	 * @name mxn.Polyline#toProprietary
+1788 	 * @function
+1789 	 * @param {String} apiId The API ID of the proprietary polyline.
+1790 	 * @returns A proprietary polyline.
+1791 	 */
+1792 	'toProprietary',
+1793 	
+1794 	/**
+1795 	 * Updates the Polyline with the path of the attached proprietary polyline on the map.
+1796 	 * @name mxn.Polyline#update
+1797 	 * @function
+1798 	 */
+1799 	'update'
+1800 ]);
+1801 
+1802 /**
+1803  * addData convieniently set a hash of options on a polyline
+1804  * @param {Object} options An object literal hash of key value pairs. Keys are: color, width, opacity, closed, fillColor.
+1805  */
+1806 Polyline.prototype.addData = function(options){
+1807 	for(var sOpt in options) {
+1808 		if(options.hasOwnProperty(sOpt)){
+1809 			switch(sOpt) {
+1810 				case 'color':
+1811 					this.setColor(options.color);
+1812 					break;
+1813 				case 'width':
+1814 					this.setWidth(options.width);
+1815 					break;
+1816 				case 'opacity':
+1817 					this.setOpacity(options.opacity);
+1818 					break;
+1819 				case 'closed':
+1820 					this.setClosed(options.closed);
+1821 					break;
+1822 				case 'fillColor':
+1823 					this.setFillColor(options.fillColor);
+1824 					break;
+1825 				case 'fillOpacity':
+1826 					this.setFillOpacity(options.fillOpacity);
+1827 					break;
+1828 				default:
+1829 					this.setAttribute(sOpt, options[sOpt]);
+1830 					break;
+1831 			}
+1832 		}
+1833 	}
+1834 };
+1835 
+1836 Polyline.prototype.setChild = function(some_proprietary_polyline) {
+1837 	this.proprietary_polyline = some_proprietary_polyline;
+1838 	some_proprietary_polyline.mapstraction_polyline = this;
+1839 	this.onmap = true;
+1840 };
+1841 
+1842 /**
+1843  * in the form: #RRGGBB
+1844  * Note map24 insists on upper case, so we convert it.
+1845  */
+1846 Polyline.prototype.setColor = function(color){
+1847 	this.color = (color.length==7 && color[0]=="#") ? color.toUpperCase() : color;
+1848 };
+1849 
+1850 /**
+1851  * Stroke width of the polyline
+1852  * @param {Integer} width
+1853  */
+1854 Polyline.prototype.setWidth = function(width){
+1855 	this.width = width;
+1856 };
+1857 
+1858 /**
+1859  * Set the opacity of the line
+1860  * @param {Float} opacity A float between 0.0 and 1.0
+1861  */
+1862 Polyline.prototype.setOpacity = function(opacity){
+1863 	this.opacity = opacity;
+1864 };
+1865 
+1866 /**
+1867  * Marks the polyline as a closed polygon
+1868  * @param {Boolean} bClosed
+1869  */
+1870 Polyline.prototype.setClosed = function(bClosed){
+1871 	this.closed = bClosed;
+1872 };
+1873 
+1874 /**
+1875  * Fill color for a closed polyline as HTML color value e.g. #RRGGBB
+1876  * @param {String} sFillColor HTML color value #RRGGBB
+1877  */
+1878 Polyline.prototype.setFillColor = function(sFillColor) {
+1879 	this.fillColor = sFillColor;
+1880 };
+1881 
+1882 /**
+1883  * Set the opacity of the fill for a closed polyline
+1884  * @param {Float} opacity A float between 0.0 and 1.0
+1885  */
+1886 Polyline.prototype.setFillOpacity = function(opacity){
+1887 	this.fillOpacity = opacity;
+1888 };
+1889 
+1890 
+1891 /**
+1892  * Set an arbitrary key/value pair on a polyline
+1893  * @param {String} key
+1894  * @param value
+1895  */
+1896 Polyline.prototype.setAttribute = function(key,value) {
+1897 	this.attributes[key] = value;
+1898 };
+1899 
+1900 /**
+1901  * Gets the value of "key"
+1902  * @param {String} key
+1903  * @returns value
+1904  */
+1905 Polyline.prototype.getAttribute = function(key) {
+1906 	return this.attributes[key];
+1907 };
+1908 
+1909 /**
+1910  * Simplifies a polyline, averaging and reducing the points
+1911  * @param {Number} tolerance (1.0 is a good starting point)
+1912  */
+1913 Polyline.prototype.simplify = function(tolerance) {
+1914 	var reduced = [];
+1915 
+1916 	// First point
+1917 	reduced[0] = this.points[0];
+1918 
+1919 	var markerPoint = 0;
+1920 
+1921 	for (var i = 1; i < this.points.length-1; i++){
+1922 		if (this.points[i].distance(this.points[markerPoint]) >= tolerance)
+1923 		{
+1924 			reduced[reduced.length] = this.points[i];
+1925 			markerPoint = i;
+1926 		}
+1927 	}
+1928 
+1929 	// Last point
+1930 	reduced[reduced.length] = this.points[this.points.length-1];
+1931 
+1932 	// Revert
+1933 	this.points = reduced;
+1934 };
+1935 
+1936 ///////////////
+1937 // Radius	//
+1938 ///////////////
+1939 
+1940 /**
+1941  * Creates a new radius object for drawing circles around a point, does a lot of initial calculation to increase load time
+1942  * @name mxn.Radius
+1943  * @constructor
+1944  * @param {LatLonPoint} center LatLonPoint of the radius
+1945  * @param {Number} quality Number of points that comprise the approximated circle (20 is a good starting point)
+1946  * @exports Radius as mxn.Radius
+1947  */
+1948 var Radius = mxn.Radius = function(center, quality) {
+1949 	this.center = center;
+1950 	var latConv = center.latConv();
+1951 	var lonConv = center.lonConv();
+1952 
+1953 	// Create Radian conversion constant
+1954 	var rad = Math.PI / 180;
+1955 	this.calcs = [];
+1956 
+1957 	for(var i = 0; i < 360; i += quality){
+1958 		this.calcs.push([Math.cos(i * rad) / latConv, Math.sin(i * rad) / lonConv]);
+1959 	}
+1960 };
+1961 
+1962 /**
+1963  * Returns polyline of a circle around the point based on new radius
+1964  * @param {Radius} radius
+1965  * @param {Color} color
+1966  * @returns {Polyline} Polyline
+1967  */
+1968 Radius.prototype.getPolyline = function(radius, color) {
+1969 	var points = [];
+1970 
+1971 	for(var i = 0; i < this.calcs.length; i++){
+1972 		var point = new LatLonPoint(
+1973 			this.center.lat + (radius * this.calcs[i][0]),
+1974 			this.center.lon + (radius * this.calcs[i][1])
+1975 		);
+1976 		points.push(point);
+1977 	}
+1978 	
+1979 	// Add first point
+1980 	points.push(points[0]);
+1981 
+1982 	var line = new Polyline(points);
+1983 	line.setColor(color);
+1984 
+1985 	return line;
+1986 };
+1987 
+1988 
+1989 })();
+1990 
\ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.geocoder.js.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.geocoder.js.html new file mode 100644 index 0000000000..d4fdf80ffc --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.geocoder.js.html @@ -0,0 +1,67 @@ +
  1 (function(){
+  2 
+  3 /**
+  4  * Initialise our provider. This function should only be called 
+  5  * from within mapstraction code, not exposed as part of the API.
+  6  * @private
+  7  */
+  8 var init = function() {
+  9 	this.invoker.go('init');
+ 10 };
+ 11 
+ 12 /**
+ 13  * Geocoder instantiates a geocoder with some API choice
+ 14  * @name mxn.Geocoder
+ 15  * @constructor
+ 16  * @param {String} api The API to use, currently only 'mapquest' is supported
+ 17  * @param {Function} callback The function to call when a geocode request returns (function(waypoint))
+ 18  * @param {Function} error_callback The optional function to call when a geocode request fails
+ 19  * @exports Geocoder as mxn.Geocoder
+ 20  */
+ 21 var Geocoder = mxn.Geocoder = function (api, callback, error_callback) {
+ 22 	this.api = api;
+ 23 	this.geocoders = {};
+ 24 	this.callback = callback;
+ 25 	this.error_callback = error_callback || function(){};
+ 26 	  
+ 27 	// set up our invoker for calling API methods
+ 28 	this.invoker = new mxn.Invoker(this, 'Geocoder', function(){ return this.api; });
+ 29 	init.apply(this);
+ 30 };
+ 31 
+ 32 mxn.addProxyMethods(Geocoder, [
+ 33 	
+ 34 	/**
+ 35 	 * Geocodes the provided address.
+ 36 	 * @name mxn.Geocoder#geocode
+ 37 	 * @function
+ 38 	 * @param {Object} address Address hash, keys are: street, locality, region, country.
+ 39 	 */
+ 40 	'geocode',
+ 41 	
+ 42 	'geocode_callback'
+ 43 
+ 44 ]);
+ 45 
+ 46 /**
+ 47  * Change the geocoding API in use
+ 48  * @name mxn.Geocoder#swap
+ 49  * @param {String} api The API to swap to
+ 50  */
+ 51 Geocoder.prototype.swap = function(api) {
+ 52 	if (this.api == api) { return; }
+ 53 
+ 54 	this.api = api;
+ 55 	if (!this.geocoders.hasOwnProperty(this.api)) {
+ 56 		init.apply(this);
+ 57 	}
+ 58 };
+ 59 
+ 60 })();
\ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.js.html b/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.js.html new file mode 100644 index 0000000000..3981314048 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/docs/symbols/src/C__Users_nick_Documents_timemap_mxn_build_timemap_mxn.js.html @@ -0,0 +1,575 @@ +
  1 // Auto-load scripts
+  2 //
+  3 // specify which map providers to load by using
+  4 // <script src="mxn.js?(provider1,provider2,[module1,module2])" ...
+  5 // in your HTML
+  6 //
+  7 // for each provider mxn.provider.module.js and mxn.module.js will be loaded
+  8 // module 'core' is always loaded
+  9 //
+ 10 // NOTE: if you call without providers
+ 11 // <script src="mxn.js" ...
+ 12 // no scripts will be loaded at all and it is then up to you to load the scripts independently
+ 13 (function() {
+ 14 	var providers = null;
+ 15 	var modules = 'core';
+ 16 	var scriptBase;
+ 17 	var scripts = document.getElementsByTagName('script');
+ 18 
+ 19 	// Determine which scripts we need to load	
+ 20 	for (var i = 0; i < scripts.length; i++) {
+ 21 		var match = scripts[i].src.replace(/%20/g , '').match(/^(.*?)mxn\.js(\?\(\[?(.*?)\]?\))?$/);
+ 22 		if (match !== null) {
+ 23 			scriptBase = match[1];
+ 24 			if (match[3]) {
+ 25 				var settings = match[3].split(',[');
+ 26 				providers = settings[0].replace(']' , '');
+ 27 				if (settings[1]) {
+ 28 					modules += ',' + settings[1];
+ 29 				}
+ 30 			}
+ 31 			break;
+ 32 	   }
+ 33 	}
+ 34 	
+ 35 	if (providers === null || providers == 'none') {
+ 36 		return; // Bail out if no auto-load has been found
+ 37 	}
+ 38 	providers = providers.replace(/ /g, '').split(',');
+ 39 	modules = modules.replace(/ /g, '').split(',');
+ 40 
+ 41 	// Actually load the scripts
+ 42 	var scriptTagStart = '<script type="text/javascript" src="' + scriptBase + 'mxn.';
+ 43 	var scriptTagEnd = '.js"></script>';
+ 44 	var scriptsAry = [];
+ 45 	for (i = 0; i < modules.length; i++) {
+ 46 		scriptsAry.push(scriptTagStart + modules[i] + scriptTagEnd);
+ 47 		for (var j = 0; j < providers.length; j++) {
+ 48 			scriptsAry.push(scriptTagStart + providers[j] + '.' + modules[i] + scriptTagEnd);
+ 49 		}
+ 50 	}
+ 51 	document.write(scriptsAry.join(''));
+ 52 })();
+ 53 
+ 54 (function(){
+ 55 
+ 56 // holds all our implementing functions
+ 57 var apis = {};
+ 58 
+ 59 // Our special private methods
+ 60 /**
+ 61  * Calls the API specific implementation of a particular method.
+ 62  * Deferrable: If the API implmentation includes a deferable hash such as { getCenter: true, setCenter: true},
+ 63  * then the methods calls mentioned with in it will be queued until runDeferred is called.
+ 64  *   
+ 65  * @private
+ 66  */
+ 67 var invoke = function(sApiId, sObjName, sFnName, oScope, args){
+ 68 	if(!hasImplementation(sApiId, sObjName, sFnName)) {
+ 69 		throw 'Method ' + sFnName + ' of object ' + sObjName + ' is not supported by API ' + sApiId + '. Are you missing a script tag?';
+ 70 	}
+ 71 	if(typeof(apis[sApiId][sObjName].deferrable) != 'undefined' && apis[sApiId][sObjName].deferrable[sFnName] === true) {
+ 72 		mxn.deferUntilLoaded.call(oScope, function() {return apis[sApiId][sObjName][sFnName].apply(oScope, args);} );
+ 73 	} 
+ 74 	else {
+ 75 		return apis[sApiId][sObjName][sFnName].apply(oScope, args);
+ 76 	} 
+ 77 };
+ 78 	
+ 79 /**
+ 80  * Determines whether the specified API provides an implementation for the 
+ 81  * specified object and function name.
+ 82  * @private
+ 83  */
+ 84 var hasImplementation = function(sApiId, sObjName, sFnName){
+ 85 	if(typeof(apis[sApiId]) == 'undefined') {
+ 86 		throw 'API ' + sApiId + ' not loaded. Are you missing a script tag?';
+ 87 	}
+ 88 	if(typeof(apis[sApiId][sObjName]) == 'undefined') {
+ 89 		throw 'Object definition ' + sObjName + ' in API ' + sApiId + ' not loaded. Are you missing a script tag?'; 
+ 90 	}
+ 91 	return typeof(apis[sApiId][sObjName][sFnName]) == 'function';
+ 92 };
+ 93 
+ 94 /**
+ 95  * @name mxn
+ 96  * @namespace
+ 97  */
+ 98 var mxn = window.mxn = /** @lends mxn */ {
+ 99 	
+100 	/**
+101 	 * Registers a set of provider specific implementation functions.
+102 	 * @function
+103 	 * @param {String} sApiId The API ID to register implementing functions for.
+104 	 * @param {Object} oApiImpl An object containing the API implementation.
+105 	 */
+106 	register: function(sApiId, oApiImpl){
+107 		if(!apis.hasOwnProperty(sApiId)){
+108 			apis[sApiId] = {};
+109 		}
+110 		mxn.util.merge(apis[sApiId], oApiImpl);
+111 	},		
+112 	
+113 	/**
+114 	 * Adds a list of named proxy methods to the prototype of a 
+115 	 * specified constructor function.
+116 	 * @function
+117 	 * @param {Function} func Constructor function to add methods to
+118 	 * @param {Array} aryMethods Array of method names to create
+119 	 * @param {Boolean} bWithApiArg Optional. Whether the proxy methods will use an API argument
+120 	 */
+121 	addProxyMethods: function(func, aryMethods, bWithApiArg){
+122 		for(var i = 0; i < aryMethods.length; i++) {
+123 			var sMethodName = aryMethods[i];
+124 			if(bWithApiArg){
+125 				func.prototype[sMethodName] = new Function('return this.invoker.go(\'' + sMethodName + '\', arguments, { overrideApi: true } );');
+126 			}
+127 			else {
+128 				func.prototype[sMethodName] = new Function('return this.invoker.go(\'' + sMethodName + '\', arguments);');
+129 			}
+130 		}
+131 	},
+132 	
+133 	checkLoad: function(funcDetails){
+134 		if(this.loaded[this.api] === false) {
+135 			var scope = this;
+136 			this.onload[this.api].push( function() { funcDetails.callee.apply(scope, funcDetails); } );
+137 			return true;
+138 		}
+139 		return false;
+140 	},
+141 	
+142 	deferUntilLoaded: function(fnCall) {
+143 		if(this.loaded[this.api] === false) {
+144 			var scope = this;
+145 			this.onload[this.api].push( fnCall );
+146 		} else {
+147 			fnCall.call(this);
+148 		}
+149 	},
+150 
+151 	/**
+152 	 * Bulk add some named events to an object.
+153 	 * @function
+154 	 * @param {Object} oEvtSrc The event source object.
+155 	 * @param {String[]} aEvtNames Event names to add.
+156 	 */
+157 	addEvents: function(oEvtSrc, aEvtNames){
+158 		for(var i = 0; i < aEvtNames.length; i++){
+159 			var sEvtName = aEvtNames[i];
+160 			if(sEvtName in oEvtSrc){
+161 				throw 'Event or method ' + sEvtName + ' already declared.';
+162 			}
+163 			oEvtSrc[sEvtName] = new mxn.Event(sEvtName, oEvtSrc);
+164 		}
+165 	}
+166 	
+167 };
+168 
+169 /**
+170  * Instantiates a new Event 
+171  * @constructor
+172  * @param {String} sEvtName The name of the event.
+173  * @param {Object} oEvtSource The source object of the event.
+174  */
+175 mxn.Event = function(sEvtName, oEvtSource){
+176 	var handlers = [];
+177 	if(!sEvtName){
+178 		throw 'Event name must be provided';
+179 	}
+180 	/**
+181 	 * Add a handler to the Event.
+182 	 * @param {Function} fn The handler function.
+183 	 * @param {Object} ctx The context of the handler function.
+184 	 */
+185 	this.addHandler = function(fn, ctx){
+186 		handlers.push({context: ctx, handler: fn});
+187 	};
+188 	/**
+189 	 * Remove a handler from the Event.
+190 	 * @param {Function} fn The handler function.
+191 	 * @param {Object} ctx The context of the handler function.
+192 	 */
+193 	this.removeHandler = function(fn, ctx){
+194 		for(var i = 0; i < handlers.length; i++){
+195 			if(handlers[i].handler == fn && handlers[i].context == ctx){
+196 				handlers.splice(i, 1);
+197 			}
+198 		}
+199 	};
+200 	/**
+201 	 * Remove all handlers from the Event.
+202 	 */
+203 	this.removeAllHandlers = function(){
+204 		handlers = [];
+205 	};
+206 	/**
+207 	 * Fires the Event.
+208 	 * @param {Object} oEvtArgs Event arguments object to be passed to the handlers.
+209 	 */
+210 	this.fire = function(oEvtArgs){
+211 		var args = [sEvtName, oEvtSource, oEvtArgs];
+212 		for(var i = 0; i < handlers.length; i++){
+213 			handlers[i].handler.apply(handlers[i].context, args);
+214 		}
+215 	};
+216 };
+217 
+218 /**
+219  * Creates a new Invoker, a class which helps with on-the-fly 
+220  * invocation of the correct API methods.
+221  * @constructor
+222  * @param {Object} aobj The core object whose methods will make cals to go()
+223  * @param {String} asClassName The name of the Mapstraction class to be invoked, normally the same name as aobj's constructor function
+224  * @param {Function} afnApiIdGetter The function on object aobj which will return the active API ID
+225  */
+226 mxn.Invoker = function(aobj, asClassName, afnApiIdGetter){
+227 	var obj = aobj;
+228 	var sClassName = asClassName;
+229 	var fnApiIdGetter = afnApiIdGetter;
+230 	var defOpts = { 
+231 		overrideApi: false, // {Boolean} API ID is overridden by value in first argument
+232 		context: null, // {Object} Local vars can be passed from the body of the method to the API method within this object
+233 		fallback: null // {Function} If an API implementation doesn't exist this function is run instead
+234 	};
+235 	
+236 	/**
+237 	 * Invoke the API implementation of a specific method.
+238 	 * @param {String} sMethodName The method name to invoke
+239 	 * @param {Array} args Arguments to pass on
+240 	 * @param {Object} oOptions Optional. Extra options for invocation
+241 	 * @param {Boolean} oOptions.overrideApi When true the first argument is used as the API ID.
+242 	 * @param {Object} oOptions.context A context object for passing extra information on to the provider implementation.
+243 	 * @param {Function} oOptions.fallback A fallback function to run if the provider implementation is missing.
+244 	 */
+245 	this.go = function(sMethodName, args, oOptions){
+246 		
+247 		// make sure args is an array
+248 		args = typeof(args) != 'undefined' ? Array.prototype.slice.apply(args) : [];
+249 		
+250 		if(typeof(oOptions) == 'undefined'){
+251 			oOptions = defOpts;
+252 		}
+253 		
+254 		var sApiId;
+255 		if(oOptions.overrideApi){
+256 			sApiId = args.shift();
+257 		}
+258 		else {
+259 			sApiId = fnApiIdGetter.apply(obj);
+260 		}
+261 		
+262 		if(typeof(sApiId) != 'string'){
+263 			throw 'API ID not available.';
+264 		}
+265 		
+266 		if(typeof(oOptions.context) != 'undefined' && oOptions.context !== null){
+267 			args.push(oOptions.context);
+268 		}
+269 		
+270 		if(typeof(oOptions.fallback) == 'function' && !hasImplementation(sApiId, sClassName, sMethodName)){
+271 			// we've got no implementation but have got a fallback function
+272 			return oOptions.fallback.apply(obj, args);
+273 		}
+274 		else {
+275 			return invoke(sApiId, sClassName, sMethodName, obj, args);
+276 		}
+277 		
+278 	};
+279 	
+280 };
+281 
+282 /**
+283  * @namespace
+284  */
+285 mxn.util = {
+286 			
+287 	/**
+288 	 * Merges properties of one object into another recursively.
+289 	 * @param {Object} oRecv The object receiveing properties
+290 	 * @param {Object} oGive The object donating properties
+291 	 */
+292 	merge: function(oRecv, oGive){
+293 		for (var sPropName in oGive){
+294 			if (oGive.hasOwnProperty(sPropName)) {
+295 				if(!oRecv.hasOwnProperty(sPropName) || typeof(oRecv[sPropName]) !== 'object' || typeof(oGive[sPropName]) !== 'object'){
+296 					oRecv[sPropName] = oGive[sPropName];
+297 				}
+298 				else {
+299 					mxn.util.merge(oRecv[sPropName], oGive[sPropName]);
+300 				}
+301 			}
+302 		}
+303 	},
+304 	
+305 	/**
+306 	 * $m, the dollar function, elegantising getElementById()
+307 	 * @return An HTML element or array of HTML elements
+308 	 */
+309 	$m: function() {
+310 		var elements = [];
+311 		for (var i = 0; i < arguments.length; i++) {
+312 			var element = arguments[i];
+313 			if (typeof(element) == 'string') {
+314 				element = document.getElementById(element);
+315 			}
+316 			if (arguments.length == 1) {
+317 				return element;
+318 			}
+319 			elements.push(element);
+320 		}
+321 		return elements;
+322 	},
+323 
+324 	/**
+325 	 * loadScript is a JSON data fetcher
+326 	 * @param {String} src URL to JSON file
+327 	 * @param {Function} callback Callback function
+328 	 */
+329 	loadScript: function(src, callback) {
+330 		var script = document.createElement('script');
+331 		script.type = 'text/javascript';
+332 		script.src = src;
+333 		if (callback) {
+334 			if(script.addEventListener){
+335 				script.addEventListener('load', callback, true);
+336 			}
+337 			else if(script.attachEvent){
+338 				var done = false;
+339 				script.attachEvent("onreadystatechange",function(){
+340 					if ( !done && document.readyState === "complete" ) {
+341 						done = true;
+342 						callback();
+343 					}
+344 				});
+345 			}			
+346 		}
+347 		var h = document.getElementsByTagName('head')[0];
+348 		h.appendChild( script );
+349 		return;
+350 	},
+351 
+352 	/**
+353 	 *
+354 	 * @param {Object} point
+355 	 * @param {Object} level
+356 	 */
+357 	convertLatLonXY_Yahoo: function(point, level) { //Mercator
+358 		var size = 1 << (26 - level);
+359 		var pixel_per_degree = size / 360.0;
+360 		var pixel_per_radian = size / (2 * Math.PI);
+361 		var origin = new YCoordPoint(size / 2 , size / 2);
+362 		var answer = new YCoordPoint();
+363 		answer.x = Math.floor(origin.x + point.lon * pixel_per_degree);
+364 		var sin = Math.sin(point.lat * Math.PI / 180.0);
+365 		answer.y = Math.floor(origin.y + 0.5 * Math.log((1 + sin) / (1 - sin)) * -pixel_per_radian);
+366 		return answer;
+367 	},
+368 
+369 	/**
+370 	 * Load a stylesheet from a remote file.
+371 	 * @param {String} href URL to the CSS file
+372 	 */
+373 	loadStyle: function(href) {
+374 		var link = document.createElement('link');
+375 		link.type = 'text/css';
+376 		link.rel = 'stylesheet';
+377 		link.href = href;
+378 		document.getElementsByTagName('head')[0].appendChild(link);
+379 		return;
+380 	},
+381 
+382 	/**
+383 	 * getStyle provides cross-browser access to css
+384 	 * @param {Object} el HTML Element
+385 	 * @param {String} prop Style property name
+386 	 */
+387 	getStyle: function(el, prop) {
+388 		var y;
+389 		if (el.currentStyle) {
+390 			y = el.currentStyle[prop];
+391 		}
+392 		else if (window.getComputedStyle) {
+393 			y = window.getComputedStyle( el, '').getPropertyValue(prop);
+394 		}
+395 		return y;
+396 	},
+397 
+398 	/**
+399 	 * Convert longitude to metres
+400 	 * http://www.uwgb.edu/dutchs/UsefulData/UTMFormulas.HTM
+401 	 * "A degree of longitude at the equator is 111.2km... For other latitudes,
+402 	 * multiply by cos(lat)"
+403 	 * assumes the earth is a sphere but good enough for our purposes
+404 	 * @param {Float} lon
+405 	 * @param {Float} lat
+406 	 */
+407 	lonToMetres: function(lon, lat) {
+408 		return lon * (111200 * Math.cos(lat * (Math.PI / 180)));
+409 	},
+410 
+411 	/**
+412 	 * Convert metres to longitude
+413 	 * @param {Object} m
+414 	 * @param {Object} lat
+415 	 */
+416 	metresToLon: function(m, lat) {
+417 		return m / (111200 * Math.cos(lat * (Math.PI / 180)));
+418 	},
+419 
+420 	/**
+421 	 * Convert kilometres to miles
+422 	 * @param {Float} km
+423 	 * @returns {Float} miles
+424 	 */
+425 	KMToMiles: function(km) {
+426 		return km / 1.609344;
+427 	},
+428 
+429 	/**
+430 	 * Convert miles to kilometres
+431 	 * @param {Float} miles
+432 	 * @returns {Float} km
+433 	 */
+434 	milesToKM: function(miles) {
+435 		return miles * 1.609344;
+436 	},
+437 
+438 	// stuff to convert google zoom levels to/from degrees
+439 	// assumes zoom 0 = 256 pixels = 360 degrees
+440 	//		 zoom 1 = 256 pixels = 180 degrees
+441 	// etc.
+442 
+443 	/**
+444 	 *
+445 	 * @param {Object} pixels
+446 	 * @param {Object} zoom
+447 	 */
+448 	getDegreesFromGoogleZoomLevel: function(pixels, zoom) {
+449 		return (360 * pixels) / (Math.pow(2, zoom + 8));
+450 	},
+451 
+452 	/**
+453 	 *
+454 	 * @param {Object} pixels
+455 	 * @param {Object} degrees
+456 	 */
+457 	getGoogleZoomLevelFromDegrees: function(pixels, degrees) {
+458 		return mxn.util.logN((360 * pixels) / degrees, 2) - 8;
+459 	},
+460 
+461 	/**
+462 	 *
+463 	 * @param {Object} number
+464 	 * @param {Object} base
+465 	 */
+466 	logN: function(number, base) {
+467 		return Math.log(number) / Math.log(base);
+468 	},
+469 			
+470 	/**
+471 	 * Returns array of loaded provider apis
+472 	 * @returns {Array} providers
+473 	 */
+474 	getAvailableProviders : function () {
+475 		var providers = [];
+476 		for (var propertyName in apis){
+477 			if (apis.hasOwnProperty(propertyName)) {
+478 				providers.push(propertyName);
+479 			}
+480 		}
+481 		return providers;
+482 	},
+483 	
+484 	/**
+485 	 * Formats a string, inserting values of subsequent parameters at specified 
+486 	 * locations. e.g. stringFormat('{0} {1}', 'hello', 'world');
+487 	 */
+488 	stringFormat: function(strIn){
+489 		var replaceRegEx = /\{\d+\}/g;
+490 		var args = Array.prototype.slice.apply(arguments);
+491 		args.shift();
+492 		return strIn.replace(replaceRegEx, function(strVal){
+493 			var num = strVal.slice(1, -1);
+494 			return args[num];
+495 		});
+496 	},
+497 	
+498 	/**
+499 	 * Traverses an object graph using a series of map functions provided as arguments 
+500 	 * 2 to n. Map functions are only called if the working object is not undefined/null.
+501 	 * For usage see mxn.google.geocoder.js.
+502 	 */
+503 	traverse: function(start) {
+504 		var args = Array.prototype.slice.apply(arguments);
+505 		args.shift();
+506 		var working = start;
+507 		while(typeof(working) != 'undefined' && working !== null && args.length > 0){
+508 			var op = args.shift();
+509 			working = op(working);
+510 		}
+511 	}
+512 };
+513 
+514 /**
+515  * Class for converting between HTML and RGB integer color formats.
+516  * Accepts either a HTML color string argument or three integers for R, G and B.
+517  * @constructor
+518  */
+519 mxn.util.Color = function() {
+520 	if(arguments.length == 3) {
+521 		this.red = arguments[0];
+522 		this.green = arguments[1];
+523 		this.blue = arguments[2];
+524 	}
+525 	else if(arguments.length == 1) {
+526 		this.setHexColor(arguments[0]);
+527 	}
+528 };
+529 
+530 mxn.util.Color.prototype.reHex = /^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/;
+531 
+532 /**
+533  * Set the color from the supplied HTML hex string.
+534  * @param {String} strHexColor A HTML hex color string e.g. '#00FF88'.
+535  */
+536 mxn.util.Color.prototype.setHexColor = function(strHexColor) {
+537 	var match = strHexColor.match(this.reHex);
+538 	if(match) {
+539 		// grab the code - strips off the preceding # if there is one
+540 		strHexColor = match[1];
+541 	}
+542 	else {
+543 		throw 'Invalid HEX color format, expected #000, 000, #000000 or 000000';
+544 	}
+545 	// if a three character hex code was provided, double up the values
+546 	if(strHexColor.length == 3) {
+547 		strHexColor = strHexColor.replace(/\w/g, function(str){return str.concat(str);});
+548 	}
+549 	this.red = parseInt(strHexColor.substr(0,2), 16);
+550 	this.green = parseInt(strHexColor.substr(2,2), 16);
+551 	this.blue = parseInt(strHexColor.substr(4,2), 16);
+552 };
+553 
+554 /**
+555  * Retrieve the color value as an HTML hex string.
+556  * @returns {String} Format '#00FF88'.
+557  */
+558 mxn.util.Color.prototype.getHexColor = function() {
+559 	var rgb = this.blue | (this.green << 8) | (this.red << 16);
+560 	var hexString = rgb.toString(16).toUpperCase();
+561 	if(hexString.length <  6){
+562 		hexString = '0' + hexString;
+563 	}
+564 	return '#' + hexString;
+565 };
+566 	
+567 })();
+568 
\ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/mxn-min.js b/plugins/timemap/media/timemap/js/mxn/mxn-min.js new file mode 100644 index 0000000000..de08d0d5cc --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/mxn-min.js @@ -0,0 +1,15 @@ +/* +MAPSTRACTION vtimemap http://www.mapstraction.com + +Copyright (c) 2011 Tom Carden, Steve Coast, Mikel Maron, Andrew Turner, Henri Bergius, Rob Moran, Derek Fowler, Gary Gale +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Neither the name of the Mapstraction nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +(function(){var g=null;var c="core";var d;var e=document.getElementsByTagName("script");for(var h=0;h0){var g=f.shift();e=g(e)}}};a.util.Color=function(){if(arguments.length==3){this.red=arguments[0];this.green=arguments[1];this.blue=arguments[2]}else{if(arguments.length==1){this.setHexColor(arguments[0])}}};a.util.Color.prototype.reHex=/^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/;a.util.Color.prototype.setHexColor=function(f){var e=f.match(this.reHex);if(e){f=e[1]}else{throw"Invalid HEX color format, expected #000, 000, #000000 or 000000"}if(f.length==3){f=f.replace(/\w/g,function(g){return g.concat(g)})}this.red=parseInt(f.substr(0,2),16);this.green=parseInt(f.substr(2,2),16);this.blue=parseInt(f.substr(4,2),16)};a.util.Color.prototype.getHexColor=function(){var f=this.blue|(this.green<<8)|(this.red<<16);var e=f.toString(16).toUpperCase();if(e.length<6){e="0"+e}return"#"+e}})(); \ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/mxn.cartociudad.geocoder-min.js b/plugins/timemap/media/timemap/js/mxn/mxn.cartociudad.geocoder-min.js new file mode 100644 index 0000000000..2798b8cfb6 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/mxn.cartociudad.geocoder-min.js @@ -0,0 +1,15 @@ +/* +MAPSTRACTION vtimemap http://www.mapstraction.com + +Copyright (c) 2011 Tom Carden, Steve Coast, Mikel Maron, Andrew Turner, Henri Bergius, Rob Moran, Derek Fowler, Gary Gale +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Neither the name of the Mapstraction nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +mxn.register("cartociudad",{Geocoder:{init:function(){this.geocoders[this.api]=new metodosCartociudad()},geocode:function(b){var a={};var c=this;b.error=0;this.geocoders[this.api].queryNomenclator(b);if(b.error!==0){this.error_callback(b)}else{this.geocoders[this.api].addressToMapstraction(b);this.callback(b)}},geocode_callback:function(b,c){var a={}}}}); \ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/mxn.cartociudad.geocoder.js b/plugins/timemap/media/timemap/js/mxn/mxn.cartociudad.geocoder.js new file mode 100644 index 0000000000..39edbcc977 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/mxn.cartociudad.geocoder.js @@ -0,0 +1,46 @@ +/* +MAPSTRACTION vtimemap http://www.mapstraction.com + +Copyright (c) 2011 Tom Carden, Steve Coast, Mikel Maron, Andrew Turner, Henri Bergius, Rob Moran, Derek Fowler, Gary Gale +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Neither the name of the Mapstraction nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +mxn.register('cartociudad', { + +Geocoder: { + + init: function() { + this.geocoders[this.api] = new metodosCartociudad(); + }, + + geocode: function(address){ + var return_location = {}; + var mapstraction_geodocer = this; + + address.error = 0; //creamos una variable para devolver errores + + this.geocoders[this.api].queryNomenclator(address); + + if (address.error !== 0) { + this.error_callback(address); + } + else { + this.geocoders[this.api].addressToMapstraction(address); + this.callback(address); + } + }, + + geocode_callback: function(response, mapstraction_geocoder){ + var return_location = {}; + + // TODO: Add provider code + } +} +}); \ No newline at end of file diff --git a/plugins/timemap/media/timemap/js/mxn/mxn.cloudmade.core-min.js b/plugins/timemap/media/timemap/js/mxn/mxn.cloudmade.core-min.js new file mode 100644 index 0000000000..7618f09cb2 --- /dev/null +++ b/plugins/timemap/media/timemap/js/mxn/mxn.cloudmade.core-min.js @@ -0,0 +1,15 @@ +/* +MAPSTRACTION vtimemap http://www.mapstraction.com + +Copyright (c) 2011 Tom Carden, Steve Coast, Mikel Maron, Andrew Turner, Henri Bergius, Rob Moran, Derek Fowler, Gary Gale +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Neither the name of the Mapstraction nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +mxn.register("cloudmade",{Mapstraction:{init:function(a,b){var d=this;var c={key:cloudmade_key};if(typeof cloudmade_styleId!="undefined"){c.styleId=cloudmade_styleId}var e=new CM.Tiles.CloudMade.Web(c);this.maps[b]=new CM.Map(a,e);this.loaded[b]=true;CM.Event.addListener(this.maps[b],"click",function(g,f){if(f&&f.mapstraction_marker){f.mapstraction_marker.click.fire()}else{if(g){d.click.fire({location:new mxn.LatLonPoint(g.lat(),g.lng())})}}if(g){d.clickHandler(g.lat(),g.lng(),g,d)}});CM.Event.addListener(this.maps[b],"dragend",function(){d.endPan.fire()});CM.Event.addListener(this.maps[b],"zoomend",function(){d.changeZoom.fire()})},applyOptions:function(){var a=this.maps[this.api];if(this.options.enableScrollWheelZoom){a.enableScrollWheelZoom()}},resizeTo:function(b,a){this.maps[this.api].checkResize()},addControls:function(a){var b=this.maps[this.api];var d=this.addControlsArgs;switch(d.zoom){case"large":this.addLargeControls();break;case"small":this.addSmallControls();break}if(d.map_type){this.addMapTypeControls()}if(d.scale){b.addControl(new CM.ScaleControl());this.addControlsArgs.scale=true}},addSmallControls:function(){var a=this.maps[this.api];a.addControl(new CM.SmallMapControl());this.addControlsArgs.zoom="small"},addLargeControls:function(){var a=this.maps[this.api];a.addControl(new CM.LargeMapControl());this.addControlsArgs.zoom="large"},addMapTypeControls:function(){var a=this.maps[this.api];a.addControl(new CM.TileLayerControl());this.addControlsArgs.map_type=true},dragging:function(a){var b=this.maps[this.api];if(a){b.enableDragging()}else{b.disableDragging()}},setCenterAndZoom:function(a,b){var d=this.maps[this.api];var c=a.toProprietary(this.api);d.setCenter(c,b)},addMarker:function(b,a){var d=this.maps[this.api];var c=b.toProprietary(this.api);d.addOverlay(c);return c},removeMarker:function(a){var b=this.maps[this.api];a.proprietary_marker.closeInfoWindow();b.removeOverlay(a.proprietary_marker)},declutterMarkers:function(a){var b=this.maps[this.api]},addPolyline:function(b,a){var d=this.maps[this.api];var c=b.toProprietary(this.api);d.addOverlay(c);return c},removePolyline:function(a){var b=this.maps[this.api];b.removeOverlay(a.proprietary_polyline)},getCenter:function(){var b=this.maps[this.api];var a=b.getCenter();return new mxn.LatLonPoint(a.lat(),a.lng())},setCenter:function(a,b){var d=this.maps[this.api];var c=a.toProprietary(this.api);if(b!==null&&b.pan){d.panTo(c)}else{d.setCenter(c)}},setZoom:function(a){var b=this.maps[this.api];b.setZoom(a)},getZoom:function(){var a=this.maps[this.api];return a.getZoom()},getZoomLevelForBoundingBox:function(e){var d=this.maps[this.api];var c=e.getNorthEast();var a=e.getSouthWest();var b=d.getBoundsZoomLevel(new CM.LatLngBounds(a.toProprietary(this.api),c.toProprietary(this.api)));return b},setMapType:function(a){var b=this.maps[this.api];switch(a){case mxn.Mapstraction.ROAD:break;case mxn.Mapstraction.SATELLITE:break;case mxn.Mapstraction.HYBRID:break;default:}},getMapType:function(){var a=this.maps[this.api];return mxn.Mapstraction.ROAD},getBounds:function(){var d=this.maps[this.api];var b=d.getBounds();var a=b.getSouthWest();var c=b.getNorthEast();return new mxn.BoundingBox(a.lat(),a.lng(),c.lat(),c.lng())},setBounds:function(b){var d=this.maps[this.api];var a=b.getSouthWest();var c=b.getNorthEast();d.zoomToBounds(new CM.LatLngBounds(a.toProprietary(this.api),c.toProprietary(this.api)))},addImageOverlay:function(c,a,e,i,f,g,d,h){var b=this.maps[this.api]},setImagePosition:function(e,b){var d=this.maps[this.api];var c;var a},addOverlay:function(a,b){var c=this.maps[this.api]},addTileLayer:function(f,a,b,d,e){var c=this.maps[this.api]},toggleTileLayer:function(b){var a=this.maps[this.api]},getPixelRatio:function(){var a=this.maps[this.api]},mousePosition:function(a){var b=this.maps[this.api]}},LatLonPoint:{toProprietary:function(){var a=new CM.LatLng(this.lat,this.lon);return a},fromProprietary:function(a){this.lat=a.lat();this.lon=a.lng()}},Marker:{toProprietary:function(){var d=this.location.toProprietary(this.api);var a={};if(this.iconUrl){var b=new CM.Icon();b.image=this.iconUrl;if(this.iconSize){b.iconSize=new CM.Size(this.iconSize[0],this.iconSize[1]);if(this.iconAnchor){b.iconAnchor=new CM.Point(this.iconAnchor[0],this.iconAnchor[1])}}if(this.iconShadowUrl){b.shadow=this.iconShadowUrl;if(this.iconShadowSize){b.shadowSize=new CM.Size(this.iconShadowSize[0],this.iconShadowSize[1])}}a.icon=b}if(this.labelText){a.title=this.labelText}var c=new CM.Marker(d,a);if(this.infoBubble){c.bindInfoWindow(this.infoBubble)}return c},openBubble:function(){var a=this.proprietary_marker;a.openInfoWindow(this.infoBubble)},hide:function(){var a=this.proprietary_marker;a.hide()},show:function(){var a=this.proprietary_marker;a.show()},update:function(){}},Polyline:{toProprietary:function(){var d=[];var c;for(var a=0,b=this.points.length;a0){this.onload[this.api].shift().apply(this)}};Mapstraction.prototype.clickHandler=function(lat,lon,me){this.callEventListeners("click",{location:new LatLonPoint(lat,lon)})};Mapstraction.prototype.moveendHandler=function(me){this.callEventListeners("moveend",{})};Mapstraction.prototype.addEventListener=function(){var listener={};listener.event_type=arguments[0];listener.callback_function=arguments[1];if(arguments.length==3){listener.back_compat_mode=false;listener.callback_object=arguments[2]}else{listener.back_compat_mode=true;listener.callback_object=null}this.eventListeners.push(listener)};Mapstraction.prototype.callEventListeners=function(sEventType,oEventArgs){oEventArgs.source=this;for(var i=0;i0){current_marker=this.markers.pop();this.invoker.go("removeMarker",[current_marker])}};Mapstraction.prototype.declutterMarkers=function(opts){if(this.loaded[this.api]===false){var me=this;this.onload[this.api].push(function(){me.declutterMarkers(opts)});return}var map=this.maps[this.api];switch(this.api){case"multimap":map.declutterGroup(opts.groupName);break;case" dummy":break;default:if(this.debug){alert(this.api+" not supported by Mapstraction.declutterMarkers")}}};Mapstraction.prototype.addPolyline=function(polyline,old){polyline.api=this.api;polyline.map=this.maps[this.api];var propPoly=this.invoker.go("addPolyline",arguments);polyline.setChild(propPoly);if(!old){this.polylines.push(polyline)}this.polylineAdded.fire({polyline:polyline})};var removePolylineImpl=function(polyline){this.invoker.go("removePolyline",arguments);polyline.onmap=false;this.polylineRemoved.fire({polyline:polyline})};Mapstraction.prototype.removePolyline=function(polyline){var current_polyline;for(var i=0;i0){current_polyline=this.polylines.pop();removePolylineImpl.call(this,current_polyline)}};Mapstraction.prototype.autoCenterAndZoom=function(){var lat_max=-90;var lat_min=90;var lon_max=-180;var lon_min=180;var lat,lon;var checkMinMax=function(){if(lat>lat_max){lat_max=lat}if(latlon_max){lon_max=lon}if(lonlat_max){lat_max=lat}if(latlon_max){lon_max=lon}if(lon0){latConv=(radius/mapstraction.polylines[i].points[j].latConv());lonConv=(radius/mapstraction.polylines[i].points[j].lonConv())}if((lat+latConv)>lat_max){lat_max=(lat+latConv)}if((lat-latConv)lon_max){lon_max=(lon+lonConv)}if((lon-lonConv)=100){opacity=100}var c=opacity/100;var d=document.getElementById(id);if(typeof(d.style.filter)=="string"){d.style.filter="alpha(opacity:"+opacity+")"}if(typeof(d.style.KHTMLOpacity)=="string"){d.style.KHTMLOpacity=c}if(typeof(d.style.MozOpacity)=="string"){d.style.MozOpacity=c}if(typeof(d.style.opacity)=="string"){d.style.opacity=c}};Mapstraction.prototype.setImagePosition=function(id){var imgElement=document.getElementById(id);var oContext={latLng:{top:imgElement.getAttribute("north"),left:imgElement.getAttribute("west"),bottom:imgElement.getAttribute("south"),right:imgElement.getAttribute("east")},pixels:{top:0,right:0,bottom:0,left:0}};this.invoker.go("setImagePosition",arguments,{context:oContext});imgElement.style.top=oContext.pixels.top.toString()+"px";imgElement.style.left=oContext.pixels.left.toString()+"px";imgElement.style.width=(oContext.pixels.right-oContext.pixels.left).toString()+"px";imgElement.style.height=(oContext.pixels.bottom-oContext.pixels.top).toString()+"px"};Mapstraction.prototype.addJSON=function(json){var features;if(typeof(json)=="string"){features=eval("("+json+")")}else{features=json}features=features.features;var map=this.maps[this.api];var html="";var item;var polyline;var marker;var markers=[];if(features.type=="FeatureCollection"){this.addJSON(features.features)}for(var i=0;i"+item.title+"

"+item.description+"

";marker=new Marker(new LatLonPoint(item.geometry.coordinates[1],item.geometry.coordinates[0]));markers.push(marker);this.addMarkerWithData(marker,{infoBubble:html,label:item.title,date:'new Date("'+item.date+'")',iconShadow:item.icon_shadow,marker:item.id,iconShadowSize:item.icon_shadow_size,icon:item.icon,iconSize:item.icon_size,category:item.source_id,draggable:false,hover:false});break;case"Polygon":var points=[];polyline=new Polyline(points);mapstraction.addPolylineWithData(polyline,{fillColor:item.poly_color,date:'new Date("'+item.date+'")',category:item.source_id,width:item.line_width,opacity:item.line_opacity,color:item.line_color,polygon:true});markers.push(polyline);break;default:}}return markers};Mapstraction.prototype.addTileLayer=function(tile_url,opacity,copyright_text,min_zoom,max_zoom,map_type){if(!tile_url){return}this.tileLayers=this.tileLayers||[];opacity=opacity||0.6;copyright_text=copyright_text||"Mapstraction";min_zoom=min_zoom||1;max_zoom=max_zoom||18;map_type=map_type||false;return this.invoker.go("addTileLayer",[tile_url,opacity,copyright_text,min_zoom,max_zoom,map_type])};Mapstraction.prototype.addFilter=function(field,operator,value){if(!this.filters){this.filters=[]}this.filters.push([field,operator,value])};Mapstraction.prototype.removeFilter=function(field,operator,value){if(!this.filters){return}var del;for(var f=0;ff[2]){vis=false}break;case"eq":if(o.getAttribute(f[0])==f[2]){vis=false}break}return vis};Mapstraction.prototype.getAttributeExtremes=function(field){var min;var max;for(var m=0;mthis.markers[m].getAttribute(field)){min=this.markers[m].getAttribute(field)}if(!max||maxthis.polylines[p].getAttribute(field)){min=this.polylines[p].getAttribute(field)}if(!max||max=this.sw.lat&&point.lat<=this.ne.lat&&point.lon>=this.sw.lon&&point.lon<=this.ne.lon};BoundingBox.prototype.toSpan=function(){return new LatLonPoint(Math.abs(this.sw.lat-this.ne.lat),Math.abs(this.sw.lon-this.ne.lon))};BoundingBox.prototype.extend=function(point){var box=this;if(box.sw.lat===undefined||box.sw.lat>point.lat){box.sw.lat=point.lat}if(box.sw.lon===undefined||box.sw.lon>point.lon){box.sw.lon=point.lon}if(box.ne.lat===undefined||box.ne.lat=tolerance){reduced[reduced.length]=this.points[i];markerPoint=i}}reduced[reduced.length]=this.points[this.points.length-1];this.points=reduced};var Radius=mxn.Radius=function(center,quality){this.center=center;var latConv=center.latConv();var lonConv=center.lonConv();var rad=Math.PI/180;this.calcs=[];for(var i=0;i<360;i+=quality){this.calcs.push([Math.cos(i*rad)/latConv,Math.sin(i*rad)/lonConv])}};Radius.prototype.getPolyline=function(radius,color){var points=[];for(var i=0;i 0) { + this.onload[this.api].shift().apply(this); //run deferred calls + } +}; + +///////////////////////// +// +// Event Handling +// +// FIXME need to consolidate some of these handlers... +// +/////////////////////////// + +// Click handler attached to native API +Mapstraction.prototype.clickHandler = function(lat, lon, me) { + this.callEventListeners('click', { + location: new LatLonPoint(lat, lon) + }); +}; + +// Move and zoom handler attached to native API +Mapstraction.prototype.moveendHandler = function(me) { + this.callEventListeners('moveend', {}); +}; + +/** + * Add a listener for an event. + * @param {String} type Event type to attach listener to + * @param {Function} func Callback function + * @param {Object} caller Callback object + */ +Mapstraction.prototype.addEventListener = function() { + var listener = {}; + listener.event_type = arguments[0]; + listener.callback_function = arguments[1]; + + // added the calling object so we can retain scope of callback function + if(arguments.length == 3) { + listener.back_compat_mode = false; + listener.callback_object = arguments[2]; + } + else { + listener.back_compat_mode = true; + listener.callback_object = null; + } + this.eventListeners.push(listener); +}; + +/** + * Call listeners for a particular event. + * @param {String} sEventType Call listeners of this event type + * @param {Object} oEventArgs Event args object to pass back to the callback + */ +Mapstraction.prototype.callEventListeners = function(sEventType, oEventArgs) { + oEventArgs.source = this; + for(var i = 0; i < this.eventListeners.length; i++) { + var evLi = this.eventListeners[i]; + if(evLi.event_type == sEventType) { + // only two cases for this, click and move + if(evLi.back_compat_mode) { + if(evLi.event_type == 'click') { + evLi.callback_function(oEventArgs.location); + } + else { + evLi.callback_function(); + } + } + else { + var scope = evLi.callback_object || this; + evLi.callback_function.call(scope, oEventArgs); + } + } + } +}; + + +//////////////////// +// +// map manipulation +// +///////////////////// + + +/** + * addControls adds controls to the map. You specify which controls to add in + * the associative array that is the only argument. + * addControls can be called multiple time, with different args, to dynamically change controls. + * + * args = { + * pan: true, + * zoom: 'large' || 'small', + * overview: true, + * scale: true, + * map_type: true, + * } + * @param {array} args Which controls to switch on + */ +Mapstraction.prototype.addControls = function( args ) { + this.addControlsArgs = args; + this.invoker.go('addControls', arguments); +}; + +/** + * Adds a marker pin to the map + * @param {Marker} marker The marker to add + * @param {Boolean} old If true, doesn't add this marker to the markers array. Used by the "swap" method + */ +Mapstraction.prototype.addMarker = function(marker, old) { + marker.mapstraction = this; + marker.api = this.api; + marker.location.api = this.api; + marker.map = this.maps[this.api]; + var propMarker = this.invoker.go('addMarker', arguments); + marker.setChild(propMarker); + if (!old) { + this.markers.push(marker); + } + this.markerAdded.fire({'marker': marker}); +}; + +/** + * addMarkerWithData will addData to the marker, then add it to the map + * @param {Marker} marker The marker to add + * @param {Object} data A data has to add + */ +Mapstraction.prototype.addMarkerWithData = function(marker, data) { + marker.addData(data); + this.addMarker(marker); +}; + +/** + * addPolylineWithData will addData to the polyline, then add it to the map + * @param {Polyline} polyline The polyline to add + * @param {Object} data A data has to add + */ +Mapstraction.prototype.addPolylineWithData = function(polyline, data) { + polyline.addData(data); + this.addPolyline(polyline); +}; + +/** + * removeMarker removes a Marker from the map + * @param {Marker} marker The marker to remove + */ +Mapstraction.prototype.removeMarker = function(marker) { + var current_marker; + for(var i = 0; i < this.markers.length; i++){ + current_marker = this.markers[i]; + if(marker == current_marker) { + this.invoker.go('removeMarker', arguments); + marker.onmap = false; + this.markers.splice(i, 1); + this.markerRemoved.fire({'marker': marker}); + break; + } + } +}; + +/** + * removeAllMarkers removes all the Markers on a map + */ +Mapstraction.prototype.removeAllMarkers = function() { + var current_marker; + while(this.markers.length > 0) { + current_marker = this.markers.pop(); + this.invoker.go('removeMarker', [current_marker]); + } +}; + +/** + * Declutter the markers on the map, group together overlapping markers. + * @param {Object} opts Declutter options + */ +Mapstraction.prototype.declutterMarkers = function(opts) { + if(this.loaded[this.api] === false) { + var me = this; + this.onload[this.api].push( function() { + me.declutterMarkers(opts); + } ); + return; + } + + var map = this.maps[this.api]; + + switch(this.api) + { + // case 'yahoo': + // + // break; + // case 'google': + // + // break; + // case 'openstreetmap': + // + // break; + // case 'microsoft': + // + // break; + // case 'openlayers': + // + // break; + case 'multimap': + /* + * Multimap supports quite a lot of decluttering options such as whether + * to use an accurate of fast declutter algorithm and what icon to use to + * represent a cluster. Using all this would mean abstracting all the enums + * etc so we're only implementing the group name function at the moment. + */ + map.declutterGroup(opts.groupName); + break; + // case 'mapquest': + // + // break; + // case 'map24': + // + // break; + case ' dummy': + break; + default: + if(this.debug) { + alert(this.api + ' not supported by Mapstraction.declutterMarkers'); + } + } +}; + +/** + * Add a polyline to the map + * @param {Polyline} polyline The Polyline to add to the map + * @param {Boolean} old If true replaces an existing Polyline + */ +Mapstraction.prototype.addPolyline = function(polyline, old) { + polyline.api = this.api; + polyline.map = this.maps[this.api]; + var propPoly = this.invoker.go('addPolyline', arguments); + polyline.setChild(propPoly); + if(!old) { + this.polylines.push(polyline); + } + this.polylineAdded.fire({'polyline': polyline}); +}; + +// Private remove implementation +var removePolylineImpl = function(polyline) { + this.invoker.go('removePolyline', arguments); + polyline.onmap = false; + this.polylineRemoved.fire({'polyline': polyline}); +}; + +/** + * Remove the polyline from the map + * @param {Polyline} polyline The Polyline to remove from the map + */ +Mapstraction.prototype.removePolyline = function(polyline) { + var current_polyline; + for(var i = 0; i < this.polylines.length; i++){ + current_polyline = this.polylines[i]; + if(polyline == current_polyline) { + this.polylines.splice(i, 1); + removePolylineImpl.call(this, polyline); + break; + } + } +}; + +/** + * Removes all polylines from the map + */ +Mapstraction.prototype.removeAllPolylines = function() { + var current_polyline; + while(this.polylines.length > 0) { + current_polyline = this.polylines.pop(); + removePolylineImpl.call(this, current_polyline); + } +}; + +/** + * autoCenterAndZoom sets the center and zoom of the map to the smallest bounding box + * containing all markers + */ +Mapstraction.prototype.autoCenterAndZoom = function() { + var lat_max = -90; + var lat_min = 90; + var lon_max = -180; + var lon_min = 180; + var lat, lon; + var checkMinMax = function(){ + if (lat > lat_max) { + lat_max = lat; + } + if (lat < lat_min) { + lat_min = lat; + } + if (lon > lon_max) { + lon_max = lon; + } + if (lon < lon_min) { + lon_min = lon; + } + }; + for (var i = 0; i < this.markers.length; i++) { + lat = this.markers[i].location.lat; + lon = this.markers[i].location.lon; + checkMinMax(); + } + for(i = 0; i < this.polylines.length; i++) { + for (var j = 0; j < this.polylines[i].points.length; j++) { + lat = this.polylines[i].points[j].lat; + lon = this.polylines[i].points[j].lon; + checkMinMax(); + } + } + this.setBounds( new BoundingBox(lat_min, lon_min, lat_max, lon_max) ); +}; + +/** + * centerAndZoomOnPoints sets the center and zoom of the map from an array of points + * + * This is useful if you don't want to have to add markers to the map + */ +Mapstraction.prototype.centerAndZoomOnPoints = function(points) { + var bounds = new BoundingBox(points[0].lat,points[0].lon,points[0].lat,points[0].lon); + + for (var i=1, len = points.length ; i lat_max) { + lat_max = lat; + } + if (lat < lat_min) { + lat_min = lat; + } + if (lon > lon_max) { + lon_max = lon; + } + if (lon < lon_min) { + lon_min = lon; + } + }; + for (var i=0; i 0) + { + latConv = (radius / mapstraction.polylines[i].points[j].latConv()); + lonConv = (radius / mapstraction.polylines[i].points[j].lonConv()); + } + + if ((lat + latConv) > lat_max) { + lat_max = (lat + latConv); + } + if ((lat - latConv) < lat_min) { + lat_min = (lat - latConv); + } + if ((lon + lonConv) > lon_max) { + lon_max = (lon + lonConv); + } + if ((lon - lonConv) < lon_min) { + lon_min = (lon - lonConv); + } + } + } + + this.setBounds(new BoundingBox(lat_min, lon_min, lat_max, lon_max)); +}; + +/** + * addImageOverlay layers an georeferenced image over the map + * @param {id} unique DOM identifier + * @param {src} url of image + * @param {opacity} opacity 0-100 + * @param {west} west boundary + * @param {south} south boundary + * @param {east} east boundary + * @param {north} north boundary + */ +Mapstraction.prototype.addImageOverlay = function(id, src, opacity, west, south, east, north) { + + var b = document.createElement("img"); + b.style.display = 'block'; + b.setAttribute('id',id); + b.setAttribute('src',src); + b.style.position = 'absolute'; + b.style.zIndex = 1; + b.setAttribute('west',west); + b.setAttribute('south',south); + b.setAttribute('east',east); + b.setAttribute('north',north); + + var oContext = { + imgElm: b + }; + + this.invoker.go('addImageOverlay', arguments, { context: oContext }); +}; + +Mapstraction.prototype.setImageOpacity = function(id, opacity) { + if (opacity < 0) { + opacity = 0; + } + if (opacity >= 100) { + opacity = 100; + } + var c = opacity / 100; + var d = document.getElementById(id); + if(typeof(d.style.filter)=='string'){ + d.style.filter='alpha(opacity:'+opacity+')'; + } + if(typeof(d.style.KHTMLOpacity)=='string'){ + d.style.KHTMLOpacity=c; + } + if(typeof(d.style.MozOpacity)=='string'){ + d.style.MozOpacity=c; + } + if(typeof(d.style.opacity)=='string'){ + d.style.opacity=c; + } +}; + +Mapstraction.prototype.setImagePosition = function(id) { + var imgElement = document.getElementById(id); + var oContext = { + latLng: { + top: imgElement.getAttribute('north'), + left: imgElement.getAttribute('west'), + bottom: imgElement.getAttribute('south'), + right: imgElement.getAttribute('east') + }, + pixels: { top: 0, right: 0, bottom: 0, left: 0 } + }; + + this.invoker.go('setImagePosition', arguments, { context: oContext }); + + imgElement.style.top = oContext.pixels.top.toString() + 'px'; + imgElement.style.left = oContext.pixels.left.toString() + 'px'; + imgElement.style.width = (oContext.pixels.right - oContext.pixels.left).toString() + 'px'; + imgElement.style.height = (oContext.pixels.bottom - oContext.pixels.top).toString() + 'px'; +}; + +Mapstraction.prototype.addJSON = function(json) { + var features; + if (typeof(json) == "string") { + features = eval('(' + json + ')'); + } else { + features = json; + } + features = features.features; + var map = this.maps[this.api]; + var html = ""; + var item; + var polyline; + var marker; + var markers = []; + + if(features.type == "FeatureCollection") { + this.addJSON(features.features); + } + + for (var i = 0; i < features.length; i++) { + item = features[i]; + switch(item.geometry.type) { + case "Point": + html = "" + item.title + "

" + item.description + "

"; + marker = new Marker(new LatLonPoint(item.geometry.coordinates[1],item.geometry.coordinates[0])); + markers.push(marker); + this.addMarkerWithData(marker,{ + infoBubble : html, + label : item.title, + date : "new Date(\""+item.date+"\")", + iconShadow : item.icon_shadow, + marker : item.id, + iconShadowSize : item.icon_shadow_size, + icon : item.icon, + iconSize : item.icon_size, + category : item.source_id, + draggable : false, + hover : false + }); + break; + case "Polygon": + var points = []; + polyline = new Polyline(points); + mapstraction.addPolylineWithData(polyline,{ + fillColor : item.poly_color, + date : "new Date(\""+item.date+"\")", + category : item.source_id, + width : item.line_width, + opacity : item.line_opacity, + color : item.line_color, + polygon : true + }); + markers.push(polyline); + break; + default: + // console.log("Geometry: " + features.items[i].geometry.type); + } + } + return markers; +}; + +/** + * Adds a Tile Layer to the map + * + * Requires providing a parameterized tile url. Use {Z}, {X}, and {Y} to specify where the parameters + * should go in the URL. + * + * For example, the OpenStreetMap tiles are: + * m.addTileLayer("http://tile.openstreetmap.org/{Z}/{X}/{Y}.png", 1.0, "OSM", 1, 19, true); + * + * @param {tile_url} template url of the tiles. + * @param {opacity} opacity of the tile layer - 0 is transparent, 1 is opaque. (default=0.6) + * @param {copyright_text} copyright text to use for the tile layer. (default=Mapstraction) + * @param {min_zoom} Minimum (furtherest out) zoom level that tiles are available (default=1) + * @param {max_zoom} Maximum (closest) zoom level that the tiles are available (default=18) + * @param {map_type} Should the tile layer be a selectable map type in the layers palette (default=false) + */ +Mapstraction.prototype.addTileLayer = function(tile_url, opacity, copyright_text, min_zoom, max_zoom, map_type) { + if(!tile_url) { + return; + } + + this.tileLayers = this.tileLayers || []; + opacity = opacity || 0.6; + copyright_text = copyright_text || "Mapstraction"; + min_zoom = min_zoom || 1; + max_zoom = max_zoom || 18; + map_type = map_type || false; + + return this.invoker.go('addTileLayer', [ tile_url, opacity, copyright_text, min_zoom, max_zoom, map_type] ); +}; + +/** + * addFilter adds a marker filter + * @param {field} name of attribute to filter on + * @param {operator} presently only "ge" or "le" + * @param {value} the value to compare against + */ +Mapstraction.prototype.addFilter = function(field, operator, value) { + if (!this.filters) { + this.filters = []; + } + this.filters.push( [field, operator, value] ); +}; + +/** + * Remove the specified filter + * @param {Object} field + * @param {Object} operator + * @param {Object} value + */ +Mapstraction.prototype.removeFilter = function(field, operator, value) { + if (!this.filters) { + return; + } + + var del; + for (var f=0; f

strong>Skrev du adressen (URL) själv?
Du kanske har kanske har skrivit in adressen felaktigt? Kolla adressen för att säkerhetsställa att denna är korrekt, stavning, versaler, etc.